diff --git a/WebHostLib/tracker.py b/WebHostLib/tracker.py index d2289c12..c4713b54 100644 --- a/WebHostLib/tracker.py +++ b/WebHostLib/tracker.py @@ -634,7 +634,8 @@ def __renderOoTTracker(multisave: Dict[str, Any], room: Room, locations: Dict[in "Shadow Temple": (67485, 67532), "Spirit Temple": (67533, 67582), "Ice Cavern": (67583, 67596), - "Gerudo Training Grounds": (67597, 67635), + "Gerudo Training Ground": (67597, 67635), + "Thieves' Hideout": (67259, 67263), "Ganon's Castle": (67636, 67673), } @@ -642,7 +643,7 @@ def __renderOoTTracker(multisave: Dict[str, Any], room: Room, locations: Dict[in full_name = lookup_any_location_id_to_name[id] if id == 67673: return full_name[13:] # Ganons Tower Boss Key Chest - if area != 'Overworld': + if area not in ["Overworld", "Thieves' Hideout"]: # trim dungeon name. leaves an extra space that doesn't display, or trims fully for DC/Jabu/GC return full_name[len(area):] return full_name @@ -653,6 +654,13 @@ def __renderOoTTracker(multisave: Dict[str, Any], room: Room, locations: Dict[in checks_done = {area: len(list(filter(lambda x: x, location_info[area].values()))) for area in area_id_ranges} checks_in_area = {area: len([id for id in range(min_id, max_id+1) if id in locations[player]]) for area, (min_id, max_id) in area_id_ranges.items()} + + # Remove Thieves' Hideout checks from Overworld, since it's in the middle of the range + checks_in_area["Overworld"] -= checks_in_area["Thieves' Hideout"] + checks_done["Overworld"] -= checks_done["Thieves' Hideout"] + for loc in location_info["Thieves' Hideout"]: + del location_info["Overworld"][loc] + checks_done['Total'] = sum(checks_done.values()) checks_in_area['Total'] = sum(checks_in_area.values()) @@ -670,7 +678,8 @@ def __renderOoTTracker(multisave: Dict[str, Any], room: Room, locations: Dict[in "Spirit Temple": inventory[66178], "Shadow Temple": inventory[66179], "Bottom of the Well": inventory[66180], - "Gerudo Training Grounds": inventory[66181], + "Gerudo Training Ground": inventory[66181], + "Thieves' Hideout": inventory[66182], "Ganon's Castle": inventory[66183], } boss_key_counts = { diff --git a/data/lua/OOT/oot_connector.lua b/data/lua/OOT/oot_connector.lua index 0d42e626..2f48a4bf 100644 --- a/data/lua/OOT/oot_connector.lua +++ b/data/lua/OOT/oot_connector.lua @@ -1546,7 +1546,7 @@ local player_names_address = coop_context + 20 local player_name_length = 8 -- 8 bytes local rom_name_location = player_names_address + 0x800 -local master_quest_table_address = rando_context + 0xB220 +local master_quest_table_address = rando_context + 0xB5A8 local save_context_addr = 0x11A5D0 local internal_count_addr = save_context_addr + 0x90 diff --git a/worlds/oot/DungeonList.py b/worlds/oot/DungeonList.py index 8d3a9534..ab4fc881 100644 --- a/worlds/oot/DungeonList.py +++ b/worlds/oot/DungeonList.py @@ -87,8 +87,8 @@ dungeon_table = [ 'dungeon_item': 1, }, { - 'name': 'Gerudo Training Grounds', - 'hint': 'the Gerudo Training Grounds', + 'name': 'Gerudo Training Ground', + 'hint': 'the Gerudo Training Ground', 'font_color': 'Yellow', 'boss_key': 0, 'small_key': 9, @@ -122,7 +122,7 @@ def create_dungeons(ootworld): hint = dungeon_info['hint'] if 'hint' in dungeon_info else name font_color = dungeon_info['font_color'] if 'font_color' in dungeon_info else 'White' - if ootworld.logic_rules == 'glitchless': + if ootworld.logic_rules == 'glitchless' or ootworld.logic_rules == 'no_logic': # ER + NL if not ootworld.dungeon_mq[name]: dungeon_json = os.path.join(data_path('World'), name + '.json') else: diff --git a/worlds/oot/EntranceShuffle.py b/worlds/oot/EntranceShuffle.py index 9008ccdf..08d1e3ff 100644 --- a/worlds/oot/EntranceShuffle.py +++ b/worlds/oot/EntranceShuffle.py @@ -93,8 +93,8 @@ entrance_shuffle_table = [ ('Bottom of the Well -> Kakariko Village', { 'index': 0x02A6 })), ('Dungeon', ('ZF Ice Ledge -> Ice Cavern Beginning', { 'index': 0x0088 }), ('Ice Cavern Beginning -> ZF Ice Ledge', { 'index': 0x03D4 })), - ('Dungeon', ('Gerudo Fortress -> Gerudo Training Grounds Lobby', { 'index': 0x0008 }), - ('Gerudo Training Grounds Lobby -> Gerudo Fortress', { 'index': 0x03A8 })), + ('Dungeon', ('Gerudo Fortress -> Gerudo Training Ground Lobby', { 'index': 0x0008 }), + ('Gerudo Training Ground Lobby -> Gerudo Fortress', { 'index': 0x03A8 })), ('Interior', ('Kokiri Forest -> KF Midos House', { 'index': 0x0433 }), ('KF Midos House -> Kokiri Forest', { 'index': 0x0443 })), @@ -251,8 +251,8 @@ entrance_shuffle_table = [ ('Graveyard Shield Grave -> Graveyard', { 'index': 0x035D })), ('Grave', ('Graveyard -> Graveyard Heart Piece Grave', { 'index': 0x031C }), ('Graveyard Heart Piece Grave -> Graveyard', { 'index': 0x0361 })), - ('Grave', ('Graveyard -> Graveyard Composers Grave', { 'index': 0x002D }), - ('Graveyard Composers Grave -> Graveyard', { 'index': 0x050B })), + ('Grave', ('Graveyard -> Graveyard Royal Familys Tomb', { 'index': 0x002D }), + ('Graveyard Royal Familys Tomb -> Graveyard', { 'index': 0x050B })), ('Grave', ('Graveyard -> Graveyard Dampes Grave', { 'index': 0x044F }), ('Graveyard Dampes Grave -> Graveyard', { 'index': 0x0359 })), diff --git a/worlds/oot/HintList.py b/worlds/oot/HintList.py index e94fd5f3..06af1a9b 100644 --- a/worlds/oot/HintList.py +++ b/worlds/oot/HintList.py @@ -6,7 +6,7 @@ from BaseClasses import LocationProgressType # DMC Death Mountain Crater # DMT Death Mountain Trail # GC Goron City -# GF Gerudo Fortress +# GF Gerudo's Fortress # GS Gold Skulltula # GV Gerudo Valley # HC Hyrule Castle @@ -17,6 +17,7 @@ from BaseClasses import LocationProgressType # LW Lost Woods # OGC Outside Ganon's Castle # SFM Sacred Forest Meadow +# TH Thieves' Hideout # ZD Zora's Domain # ZF Zora's Fountain # ZR Zora's River @@ -247,7 +248,7 @@ hintTable = { 'BossKey': (["a master of unlocking", "a dungeon's master pass"], "a Boss Key", 'item'), 'GanonBossKey': (["a master of unlocking", "a dungeon's master pass"], "a Boss Key", 'item'), 'SmallKey': (["a tool for unlocking", "a dungeon pass", "a lock remover", "a lockpick"], "a Small Key", 'item'), - 'FortressSmallKey': (["a get out of jail free card"], "a Jail Key", 'item'), + 'HideoutSmallKey': (["a get out of jail free card"], "a Jail Key", 'item'), 'KeyError': (["something mysterious", "an unknown treasure"], "An Error (Please Report This)", 'item'), 'Arrows (5)': (["a few danger darts", "a few sharp shafts"], "Arrows (5 pieces)", 'item'), 'Arrows (10)': (["some danger darts", "some sharp shafts"], "Arrows (10 pieces)", 'item'), @@ -271,7 +272,7 @@ hintTable = { 'KF Links House Cow': ("the #bovine bounty of a horseback hustle# gifts", "#Malon's obstacle course# leads to", 'always'), 'Song from Ocarina of Time': ("the #Ocarina of Time# teaches", None, ['song', 'sometimes']), - 'Song from Composers Grave': (["#ReDead in the Composers' Grave# guard", "the #Composer Brothers wrote#"], None, ['song', 'sometimes']), + 'Song from Royal Familys Tomb': (["#ReDead in the royal tomb# guard", "the #Composer Brothers wrote#"], None, ['song', 'sometimes']), 'Sheik in Forest': ("#in a meadow# Sheik teaches", None, ['song', 'sometimes']), 'Sheik at Temple': ("Sheik waits at a #monument to time# to teach", None, ['song', 'sometimes']), 'Sheik in Crater': ("the #crater's melody# is", None, ['song', 'sometimes']), @@ -304,7 +305,7 @@ hintTable = { 'ZF GS Hidden Cave': ("a spider high #above the icy waters# holds", None, ['overworld', 'sometimes']), 'Wasteland Chest': (["#deep in the wasteland# is", "beneath #the sands#, flames reveal"], None, ['overworld', 'sometimes']), 'Wasteland GS': ("a #spider in the wasteland# holds", None, ['overworld', 'sometimes']), - 'Graveyard Composers Grave Chest': (["#flames in the Composers' Grave# reveal", "the #Composer Brothers hid#"], None, ['overworld', 'sometimes']), + 'Royal Familys Tomb Chest': (["#flames in the royal tomb# reveal", "the #Composer Brothers hid#"], None, ['overworld', 'sometimes']), 'ZF Bottom Freestanding PoH': ("#under the icy waters# lies", None, ['overworld', 'sometimes']), 'GC Pot Freestanding PoH': ("spinning #Goron pottery# contains", None, ['overworld', 'sometimes']), 'ZD King Zora Thawed': ("a #defrosted dignitary# gifts", "unfreezing #King Zora# grants", ['overworld', 'sometimes']), @@ -327,10 +328,10 @@ hintTable = { 'Water Temple MQ Freestanding Key': ("hidden in a #box under the lake# lies", "hidden in a #box in the Water Temple# lies", ['dungeon', 'sometimes']), 'Water Temple MQ GS Freestanding Key Area': ("the #locked spider under the lake# holds", "the #locked spider in the Water Temple# holds", ['dungeon', 'sometimes']), 'Water Temple MQ GS Triple Wall Torch': ("a spider behind a #gate under the lake# holds", "a spider behind a #gate in the Water Temple# holds", ['dungeon', 'sometimes']), - 'Gerudo Training Grounds Underwater Silver Rupee Chest': (["those who seek #sunken silver rupees# will find", "the #thieves' underwater training# rewards"], None, ['dungeon', 'sometimes']), - 'Gerudo Training Grounds MQ Underwater Silver Rupee Chest': (["those who seek #sunken silver rupees# will find", "the #thieves' underwater training# rewards"], None, ['dungeon', 'sometimes']), - 'Gerudo Training Grounds Maze Path Final Chest': ("the final prize of #the thieves' training# is", None, ['dungeon', 'sometimes']), - 'Gerudo Training Grounds MQ Ice Arrows Chest': ("the final prize of #the thieves' training# is", None, ['dungeon', 'sometimes']), + 'Gerudo Training Ground Underwater Silver Rupee Chest': (["those who seek #sunken silver rupees# will find", "the #thieves' underwater training# rewards"], None, ['dungeon', 'sometimes']), + 'Gerudo Training Ground MQ Underwater Silver Rupee Chest': (["those who seek #sunken silver rupees# will find", "the #thieves' underwater training# rewards"], None, ['dungeon', 'sometimes']), + 'Gerudo Training Ground Maze Path Final Chest': ("the final prize of #the thieves' training# is", None, ['dungeon', 'sometimes']), + 'Gerudo Training Ground MQ Ice Arrows Chest': ("the final prize of #the thieves' training# is", None, ['dungeon', 'sometimes']), 'Bottom of the Well Lens of Truth Chest': (["the well's #grasping ghoul# hides", "a #nether dweller in the well# holds"], "#Dead Hand in the well# holds", ['dungeon', 'sometimes']), 'Bottom of the Well MQ Compass Chest': (["the well's #grasping ghoul# hides", "a #nether dweller in the well# holds"], "#Dead Hand in the well# holds", ['dungeon', 'sometimes']), 'Spirit Temple Silver Gauntlets Chest': ("the treasure #sought by Nabooru# is", "upon the #Colossus's right hand# is", ['dungeon', 'sometimes']), @@ -402,7 +403,7 @@ hintTable = { 'LLR Talons Chickens': ("#finding Super Cuccos# is rewarded with", None, 'exclude'), 'GC Rolling Goron as Child': ("the prize offered by a #large rolling Goron# is", None, 'exclude'), 'LH Underwater Item': ("the #sunken treasure in a lake# is", None, 'exclude'), - 'GF Gerudo Membership Card': ("#rescuing captured carpenters# is rewarded with", None, 'exclude'), + 'Hideout Gerudo Membership Card': ("#rescuing captured carpenters# is rewarded with", None, 'exclude'), 'Wasteland Bombchu Salesman': ("a #carpet guru# sells", None, 'exclude'), 'Kak Impas House Freestanding PoH': ("#imprisoned in a house# lies", None, 'exclude'), @@ -422,10 +423,10 @@ hintTable = { 'DMT Freestanding PoH': ("above a #mountain cavern entrance# is", None, 'exclude'), 'DMC Wall Freestanding PoH': ("nestled in a #volcanic wall# is", None, 'exclude'), 'DMC Volcano Freestanding PoH': ("obscured by #volcanic ash# is", None, 'exclude'), - 'GF North F1 Carpenter': ("#defeating Gerudo guards# reveals", None, 'exclude'), - 'GF North F2 Carpenter': ("#defeating Gerudo guards# reveals", None, 'exclude'), - 'GF South F1 Carpenter': ("#defeating Gerudo guards# reveals", None, 'exclude'), - 'GF South F2 Carpenter': ("#defeating Gerudo guards# reveals", None, 'exclude'), + 'Hideout Jail Guard (1 Torch)': ("#defeating Gerudo guards# reveals", None, 'exclude'), + 'Hideout Jail Guard (2 Torches)': ("#defeating Gerudo guards# reveals", None, 'exclude'), + 'Hideout Jail Guard (3 Torches)': ("#defeating Gerudo guards# reveals", None, 'exclude'), + 'Hideout Jail Guard (4 Torches)': ("#defeating Gerudo guards# reveals", None, 'exclude'), 'Deku Tree Map Chest': ("in the #center of the Deku Tree# lies", None, 'exclude'), 'Deku Tree Slingshot Chest': ("the #treasure guarded by a scrub# in the Deku Tree is", None, 'exclude'), @@ -641,42 +642,42 @@ hintTable = { 'Ice Cavern MQ Map Chest': ("a #wall of ice# protects", None, 'exclude'), 'Ice Cavern MQ Freestanding PoH': ("#winds of ice# surround", None, 'exclude'), - 'Gerudo Training Grounds Lobby Left Chest': ("a #blinded eye in the Gerudo Training Grounds# drops", None, 'exclude'), - 'Gerudo Training Grounds Lobby Right Chest': ("a #blinded eye in the Gerudo Training Grounds# drops", None, 'exclude'), - 'Gerudo Training Grounds Stalfos Chest': ("#soldiers walking on shifting sands# in the Gerudo Training Grounds guard", None, 'exclude'), - 'Gerudo Training Grounds Beamos Chest': ("#reptilian warriors# in the Gerudo Training Grounds protect", None, 'exclude'), - 'Gerudo Training Grounds Hidden Ceiling Chest': ("the #Eye of Truth# in the Gerudo Training Grounds reveals", None, 'exclude'), - 'Gerudo Training Grounds Maze Path First Chest': ("the first prize of #the thieves' training# is", None, 'exclude'), - 'Gerudo Training Grounds Maze Path Second Chest': ("the second prize of #the thieves' training# is", None, 'exclude'), - 'Gerudo Training Grounds Maze Path Third Chest': ("the third prize of #the thieves' training# is", None, 'exclude'), - 'Gerudo Training Grounds Maze Right Central Chest': ("the #Song of Time# in the Gerudo Training Grounds leads to", None, 'exclude'), - 'Gerudo Training Grounds Maze Right Side Chest': ("the #Song of Time# in the Gerudo Training Grounds leads to", None, 'exclude'), - 'Gerudo Training Grounds Hammer Room Clear Chest': ("#fiery foes# in the Gerudo Training Grounds guard", None, 'exclude'), - 'Gerudo Training Grounds Hammer Room Switch Chest': ("#engulfed in flame# where thieves train lies", None, 'exclude'), - 'Gerudo Training Grounds Eye Statue Chest': ("thieves #blind four faces# to find", None, 'exclude'), - 'Gerudo Training Grounds Near Scarecrow Chest': ("thieves #blind four faces# to find", None, 'exclude'), - 'Gerudo Training Grounds Before Heavy Block Chest': ("#before a block of silver# thieves can find", None, 'exclude'), - 'Gerudo Training Grounds Heavy Block First Chest': ("a #feat of strength# rewards thieves with", None, 'exclude'), - 'Gerudo Training Grounds Heavy Block Second Chest': ("a #feat of strength# rewards thieves with", None, 'exclude'), - 'Gerudo Training Grounds Heavy Block Third Chest': ("a #feat of strength# rewards thieves with", None, 'exclude'), - 'Gerudo Training Grounds Heavy Block Fourth Chest': ("a #feat of strength# rewards thieves with", None, 'exclude'), - 'Gerudo Training Grounds Freestanding Key': ("the #Song of Time# in the Gerudo Training Grounds leads to", None, 'exclude'), + 'Gerudo Training Ground Lobby Left Chest': ("a #blinded eye in the Gerudo Training Ground# drops", None, 'exclude'), + 'Gerudo Training Ground Lobby Right Chest': ("a #blinded eye in the Gerudo Training Ground# drops", None, 'exclude'), + 'Gerudo Training Ground Stalfos Chest': ("#soldiers walking on shifting sands# in the Gerudo Training Ground guard", None, 'exclude'), + 'Gerudo Training Ground Beamos Chest': ("#reptilian warriors# in the Gerudo Training Ground protect", None, 'exclude'), + 'Gerudo Training Ground Hidden Ceiling Chest': ("the #Eye of Truth# in the Gerudo Training Ground reveals", None, 'exclude'), + 'Gerudo Training Ground Maze Path First Chest': ("the first prize of #the thieves' training# is", None, 'exclude'), + 'Gerudo Training Ground Maze Path Second Chest': ("the second prize of #the thieves' training# is", None, 'exclude'), + 'Gerudo Training Ground Maze Path Third Chest': ("the third prize of #the thieves' training# is", None, 'exclude'), + 'Gerudo Training Ground Maze Right Central Chest': ("the #Song of Time# in the Gerudo Training Ground leads to", None, 'exclude'), + 'Gerudo Training Ground Maze Right Side Chest': ("the #Song of Time# in the Gerudo Training Ground leads to", None, 'exclude'), + 'Gerudo Training Ground Hammer Room Clear Chest': ("#fiery foes# in the Gerudo Training Ground guard", None, 'exclude'), + 'Gerudo Training Ground Hammer Room Switch Chest': ("#engulfed in flame# where thieves train lies", None, 'exclude'), + 'Gerudo Training Ground Eye Statue Chest': ("thieves #blind four faces# to find", None, 'exclude'), + 'Gerudo Training Ground Near Scarecrow Chest': ("thieves #blind four faces# to find", None, 'exclude'), + 'Gerudo Training Ground Before Heavy Block Chest': ("#before a block of silver# thieves can find", None, 'exclude'), + 'Gerudo Training Ground Heavy Block First Chest': ("a #feat of strength# rewards thieves with", None, 'exclude'), + 'Gerudo Training Ground Heavy Block Second Chest': ("a #feat of strength# rewards thieves with", None, 'exclude'), + 'Gerudo Training Ground Heavy Block Third Chest': ("a #feat of strength# rewards thieves with", None, 'exclude'), + 'Gerudo Training Ground Heavy Block Fourth Chest': ("a #feat of strength# rewards thieves with", None, 'exclude'), + 'Gerudo Training Ground Freestanding Key': ("the #Song of Time# in the Gerudo Training Ground leads to", None, 'exclude'), - 'Gerudo Training Grounds MQ Lobby Right Chest': ("#thieves prepare for training# with", None, 'exclude'), - 'Gerudo Training Grounds MQ Lobby Left Chest': ("#thieves prepare for training# with", None, 'exclude'), - 'Gerudo Training Grounds MQ First Iron Knuckle Chest': ("#soldiers walking on shifting sands# in the Gerudo Training Grounds guard", None, 'exclude'), - 'Gerudo Training Grounds MQ Before Heavy Block Chest': ("#before a block of silver# thieves can find", None, 'exclude'), - 'Gerudo Training Grounds MQ Eye Statue Chest': ("thieves #blind four faces# to find", None, 'exclude'), - 'Gerudo Training Grounds MQ Flame Circle Chest': ("#engulfed in flame# where thieves train lies", None, 'exclude'), - 'Gerudo Training Grounds MQ Second Iron Knuckle Chest': ("#fiery foes# in the Gerudo Training Grounds guard", None, 'exclude'), - 'Gerudo Training Grounds MQ Dinolfos Chest': ("#reptilian warriors# in the Gerudo Training Grounds protect", None, 'exclude'), - 'Gerudo Training Grounds MQ Maze Right Central Chest': ("a #path of fire# leads thieves to", None, 'exclude'), - 'Gerudo Training Grounds MQ Maze Path First Chest': ("the first prize of #the thieves' training# is", None, 'exclude'), - 'Gerudo Training Grounds MQ Maze Right Side Chest': ("a #path of fire# leads thieves to", None, 'exclude'), - 'Gerudo Training Grounds MQ Maze Path Third Chest': ("the third prize of #the thieves' training# is", None, 'exclude'), - 'Gerudo Training Grounds MQ Maze Path Second Chest': ("the second prize of #the thieves' training# is", None, 'exclude'), - 'Gerudo Training Grounds MQ Hidden Ceiling Chest': ("the #Eye of Truth# in the Gerudo Training Grounds reveals", None, 'exclude'), - 'Gerudo Training Grounds MQ Heavy Block Chest': ("a #feat of strength# rewards thieves with", None, 'exclude'), + 'Gerudo Training Ground MQ Lobby Right Chest': ("#thieves prepare for training# with", None, 'exclude'), + 'Gerudo Training Ground MQ Lobby Left Chest': ("#thieves prepare for training# with", None, 'exclude'), + 'Gerudo Training Ground MQ First Iron Knuckle Chest': ("#soldiers walking on shifting sands# in the Gerudo Training Ground guard", None, 'exclude'), + 'Gerudo Training Ground MQ Before Heavy Block Chest': ("#before a block of silver# thieves can find", None, 'exclude'), + 'Gerudo Training Ground MQ Eye Statue Chest': ("thieves #blind four faces# to find", None, 'exclude'), + 'Gerudo Training Ground MQ Flame Circle Chest': ("#engulfed in flame# where thieves train lies", None, 'exclude'), + 'Gerudo Training Ground MQ Second Iron Knuckle Chest': ("#fiery foes# in the Gerudo Training Ground guard", None, 'exclude'), + 'Gerudo Training Ground MQ Dinolfos Chest': ("#reptilian warriors# in the Gerudo Training Ground protect", None, 'exclude'), + 'Gerudo Training Ground MQ Maze Right Central Chest': ("a #path of fire# leads thieves to", None, 'exclude'), + 'Gerudo Training Ground MQ Maze Path First Chest': ("the first prize of #the thieves' training# is", None, 'exclude'), + 'Gerudo Training Ground MQ Maze Right Side Chest': ("a #path of fire# leads thieves to", None, 'exclude'), + 'Gerudo Training Ground MQ Maze Path Third Chest': ("the third prize of #the thieves' training# is", None, 'exclude'), + 'Gerudo Training Ground MQ Maze Path Second Chest': ("the second prize of #the thieves' training# is", None, 'exclude'), + 'Gerudo Training Ground MQ Hidden Ceiling Chest': ("the #Eye of Truth# in the Gerudo Training Ground reveals", None, 'exclude'), + 'Gerudo Training Ground MQ Heavy Block Chest': ("a #feat of strength# rewards thieves with", None, 'exclude'), 'Ganons Tower Boss Key Chest': ("the #Evil King# hoards", None, 'exclude'), @@ -1038,7 +1039,7 @@ hintTable = { 'GV Fortress Side -> GV Carpenter Tent': ("a #tent in the valley# covers", None, 'entrance'), 'Graveyard Warp Pad Region -> Shadow Temple Entryway': ("at the #back of the Graveyard#, there is", None, 'entrance'), 'Lake Hylia -> Water Temple Lobby': ("deep #under a vast lake#, one can find", None, 'entrance'), - 'Gerudo Fortress -> Gerudo Training Grounds Lobby': ("paying a #fee to the Gerudos# grants access to", None, 'entrance'), + 'Gerudo Fortress -> Gerudo Training Ground Lobby': ("paying a #fee to the Gerudos# grants access to", None, 'entrance'), 'Zoras Fountain -> Jabu Jabus Belly Beginning': ("inside #Jabu Jabu#, one can find", None, 'entrance'), 'Kakariko Village -> Bottom of the Well': ("a #village well# leads to", None, 'entrance'), @@ -1085,7 +1086,7 @@ hintTable = { 'ZF Great Fairy Fountain': ("a #Great Fairy Fountain#", None, 'region'), 'Graveyard Shield Grave': ("a #grave with a free chest#", None, 'region'), 'Graveyard Heart Piece Grave': ("a chest spawned by #Sun's Song#", None, 'region'), - 'Graveyard Composers Grave': ("the #Composers' Grave#", None, 'region'), + 'Royal Familys Tomb': ("the #Royal Family's Tomb#", None, 'region'), 'Graveyard Dampes Grave': ("Dampé's Grave", None, 'region'), 'DMT Cow Grotto': ("a solitary #Cow#", None, 'region'), 'HC Storms Grotto': ("a sandy grotto with #fragile walls#", None, 'region'), @@ -1198,7 +1199,7 @@ hintTable = { 'Spirit Temple': ("the goddess of the sand", "Spirit Temple", 'dungeonName'), 'Ice Cavern': ("a frozen maze", "Ice Cavern", 'dungeonName'), 'Bottom of the Well': ("a shadow\'s prison", "Bottom of the Well", 'dungeonName'), - 'Gerudo Training Grounds': ("the test of thieves", "Gerudo Training Grounds", 'dungeonName'), + 'Gerudo Training Ground': ("the test of thieves", "Gerudo Training Ground", 'dungeonName'), 'Ganons Castle': ("a conquered citadel", "Inside Ganon's Castle", 'dungeonName'), 'Queen Gohma': ("One inside an #ancient tree#...", "One in the #Deku Tree#...", 'boss'), diff --git a/worlds/oot/Hints.py b/worlds/oot/Hints.py index 0f28ca9c..4250c559 100644 --- a/worlds/oot/Hints.py +++ b/worlds/oot/Hints.py @@ -636,7 +636,7 @@ def buildWorldGossipHints(world, checkedLocations=None): world.woth_dungeon = 0 if checkedLocations is None: - checkedLocations = {player: set() for player in world.world.player_ids} + checkedLocations = {player: set() for player in world.world.get_all_ids()} # If Ganondorf hints Light Arrows and is reachable without them, add to checkedLocations to prevent extra hinting # Can only be forced with vanilla bridge or trials diff --git a/worlds/oot/ItemPool.py b/worlds/oot/ItemPool.py index d4b77f07..24dda8e2 100644 --- a/worlds/oot/ItemPool.py +++ b/worlds/oot/ItemPool.py @@ -570,15 +570,15 @@ vanillaSK = { 'Forest Temple Well Chest': 'Small Key (Forest Temple)', 'Ganons Castle Light Trial Invisible Enemies Chest': 'Small Key (Ganons Castle)', 'Ganons Castle Light Trial Lullaby Chest': 'Small Key (Ganons Castle)', - 'Gerudo Training Grounds Beamos Chest': 'Small Key (Gerudo Training Grounds)', - 'Gerudo Training Grounds Eye Statue Chest': 'Small Key (Gerudo Training Grounds)', - 'Gerudo Training Grounds Hammer Room Switch Chest': 'Small Key (Gerudo Training Grounds)', - 'Gerudo Training Grounds Heavy Block Third Chest': 'Small Key (Gerudo Training Grounds)', - 'Gerudo Training Grounds Hidden Ceiling Chest': 'Small Key (Gerudo Training Grounds)', - 'Gerudo Training Grounds Near Scarecrow Chest': 'Small Key (Gerudo Training Grounds)', - 'Gerudo Training Grounds Stalfos Chest': 'Small Key (Gerudo Training Grounds)', - 'Gerudo Training Grounds Underwater Silver Rupee Chest': 'Small Key (Gerudo Training Grounds)', - 'Gerudo Training Grounds Freestanding Key': 'Small Key (Gerudo Training Grounds)', + 'Gerudo Training Ground Beamos Chest': 'Small Key (Gerudo Training Ground)', + 'Gerudo Training Ground Eye Statue Chest': 'Small Key (Gerudo Training Ground)', + 'Gerudo Training Ground Hammer Room Switch Chest': 'Small Key (Gerudo Training Ground)', + 'Gerudo Training Ground Heavy Block Third Chest': 'Small Key (Gerudo Training Ground)', + 'Gerudo Training Ground Hidden Ceiling Chest': 'Small Key (Gerudo Training Ground)', + 'Gerudo Training Ground Near Scarecrow Chest': 'Small Key (Gerudo Training Ground)', + 'Gerudo Training Ground Stalfos Chest': 'Small Key (Gerudo Training Ground)', + 'Gerudo Training Ground Underwater Silver Rupee Chest': 'Small Key (Gerudo Training Ground)', + 'Gerudo Training Ground Freestanding Key': 'Small Key (Gerudo Training Ground)', 'Shadow Temple After Wind Hidden Chest': 'Small Key (Shadow Temple)', 'Shadow Temple Early Silver Rupee Chest': 'Small Key (Shadow Temple)', 'Shadow Temple Falling Spikes Switch Chest': 'Small Key (Shadow Temple)', @@ -612,9 +612,9 @@ vanillaSK = { 'Ganons Castle MQ Shadow Trial Eye Switch Chest': 'Small Key (Ganons Castle)', 'Ganons Castle MQ Spirit Trial Sun Back Left Chest': 'Small Key (Ganons Castle)', 'Ganons Castle MQ Forest Trial Freestanding Key': 'Small Key (Ganons Castle)', - 'Gerudo Training Grounds MQ Dinolfos Chest': 'Small Key (Gerudo Training Grounds)', - 'Gerudo Training Grounds MQ Flame Circle Chest': 'Small Key (Gerudo Training Grounds)', - 'Gerudo Training Grounds MQ Underwater Silver Rupee Chest': 'Small Key (Gerudo Training Grounds)', + 'Gerudo Training Ground MQ Dinolfos Chest': 'Small Key (Gerudo Training Ground)', + 'Gerudo Training Ground MQ Flame Circle Chest': 'Small Key (Gerudo Training Ground)', + 'Gerudo Training Ground MQ Underwater Silver Rupee Chest': 'Small Key (Gerudo Training Ground)', 'Shadow Temple MQ Falling Spikes Switch Chest': 'Small Key (Shadow Temple)', 'Shadow Temple MQ Invisible Blades Invisible Chest': 'Small Key (Shadow Temple)', 'Shadow Temple MQ Early Gibdos Chest': 'Small Key (Shadow Temple)', @@ -1031,7 +1031,7 @@ def get_pool_core(world): pool.extend(['Bombchus'] * 2) if not world.dungeon_mq['Bottom of the Well']: pool.extend(['Bombchus']) - if world.dungeon_mq['Gerudo Training Grounds']: + if world.dungeon_mq['Gerudo Training Ground']: pool.extend(['Bombchus']) if world.shuffle_medigoron_carpet_salesman: pool.append('Bombchus') @@ -1044,7 +1044,7 @@ def get_pool_core(world): pool.extend(['Bombchus (10)'] * 2) if not world.dungeon_mq['Bottom of the Well']: pool.extend(['Bombchus (10)']) - if world.dungeon_mq['Gerudo Training Grounds']: + if world.dungeon_mq['Gerudo Training Ground']: pool.extend(['Bombchus (10)']) if world.dungeon_mq['Ganons Castle']: pool.extend(['Bombchus (10)']) @@ -1058,49 +1058,49 @@ def get_pool_core(world): skip_in_spoiler_locations.append('Wasteland Bombchu Salesman') pool.extend(['Ice Trap']) - if not world.dungeon_mq['Gerudo Training Grounds']: + if not world.dungeon_mq['Gerudo Training Ground']: pool.extend(['Ice Trap']) if not world.dungeon_mq['Ganons Castle']: pool.extend(['Ice Trap'] * 4) if world.gerudo_fortress == 'open': - placed_items['GF North F1 Carpenter'] = 'Recovery Heart' - placed_items['GF North F2 Carpenter'] = 'Recovery Heart' - placed_items['GF South F1 Carpenter'] = 'Recovery Heart' - placed_items['GF South F2 Carpenter'] = 'Recovery Heart' - skip_in_spoiler_locations.extend(['GF North F1 Carpenter', 'GF North F2 Carpenter', 'GF South F1 Carpenter', 'GF South F2 Carpenter']) + placed_items['Hideout Jail Guard (1 Torch)'] = 'Recovery Heart' + placed_items['Hideout Jail Guard (2 Torches)'] = 'Recovery Heart' + placed_items['Hideout Jail Guard (3 Torches)'] = 'Recovery Heart' + placed_items['Hideout Jail Guard (4 Torches)'] = 'Recovery Heart' + skip_in_spoiler_locations.extend(['Hideout Jail Guard (1 Torch)', 'Hideout Jail Guard (2 Torches)', 'Hideout Jail Guard (3 Torches)', 'Hideout Jail Guard (4 Torches)']) elif world.shuffle_fortresskeys in ['any_dungeon', 'overworld', 'keysanity']: if world.gerudo_fortress == 'fast': - pool.append('Small Key (Gerudo Fortress)') - placed_items['GF North F2 Carpenter'] = 'Recovery Heart' - placed_items['GF South F1 Carpenter'] = 'Recovery Heart' - placed_items['GF South F2 Carpenter'] = 'Recovery Heart' - skip_in_spoiler_locations.extend(['GF North F2 Carpenter', 'GF South F1 Carpenter', 'GF South F2 Carpenter']) + pool.append('Small Key (Thieves Hideout)') + placed_items['Hideout Jail Guard (2 Torches)'] = 'Recovery Heart' + placed_items['Hideout Jail Guard (3 Torches)'] = 'Recovery Heart' + placed_items['Hideout Jail Guard (4 Torches)'] = 'Recovery Heart' + skip_in_spoiler_locations.extend(['Hideout Jail Guard (2 Torches)', 'Hideout Jail Guard (3 Torches)', 'Hideout Jail Guard (4 Torches)']) else: - pool.extend(['Small Key (Gerudo Fortress)'] * 4) + pool.extend(['Small Key (Thieves Hideout)'] * 4) if world.item_pool_value == 'plentiful': - pending_junk_pool.append('Small Key (Gerudo Fortress)') + pending_junk_pool.append('Small Key (Thieves Hideout)') else: if world.gerudo_fortress == 'fast': - placed_items['GF North F1 Carpenter'] = 'Small Key (Gerudo Fortress)' - placed_items['GF North F2 Carpenter'] = 'Recovery Heart' - placed_items['GF South F1 Carpenter'] = 'Recovery Heart' - placed_items['GF South F2 Carpenter'] = 'Recovery Heart' - skip_in_spoiler_locations.extend(['GF North F2 Carpenter', 'GF South F1 Carpenter', 'GF South F2 Carpenter']) + placed_items['Hideout Jail Guard (1 Torch)'] = 'Small Key (Thieves Hideout)' + placed_items['Hideout Jail Guard (2 Torches)'] = 'Recovery Heart' + placed_items['Hideout Jail Guard (3 Torches)'] = 'Recovery Heart' + placed_items['Hideout Jail Guard (4 Torches)'] = 'Recovery Heart' + skip_in_spoiler_locations.extend(['Hideout Jail Guard (2 Torches)', 'Hideout Jail Guard (3 Torches)', 'Hideout Jail Guard (4 Torches)']) else: - placed_items['GF North F1 Carpenter'] = 'Small Key (Gerudo Fortress)' - placed_items['GF North F2 Carpenter'] = 'Small Key (Gerudo Fortress)' - placed_items['GF South F1 Carpenter'] = 'Small Key (Gerudo Fortress)' - placed_items['GF South F2 Carpenter'] = 'Small Key (Gerudo Fortress)' + placed_items['Hideout Jail Guard (1 Torch)'] = 'Small Key (Gerudo Fortress)' + placed_items['Hideout Jail Guard (2 Torches)'] = 'Small Key (Gerudo Fortress)' + placed_items['Hideout Jail Guard (3 Torches)'] = 'Small Key (Gerudo Fortress)' + placed_items['Hideout Jail Guard (4 Torches)'] = 'Small Key (Gerudo Fortress)' if world.shuffle_gerudo_card and world.gerudo_fortress != 'open': pool.append('Gerudo Membership Card') elif world.shuffle_gerudo_card: pending_junk_pool.append('Gerudo Membership Card') - placed_items['GF Gerudo Membership Card'] = 'Ice Trap' - skip_in_spoiler_locations.append('GF Gerudo Membership Card') + placed_items['Hideout Gerudo Membership Card'] = 'Ice Trap' + skip_in_spoiler_locations.append('Hideout Gerudo Membership Card') else: - placed_items['GF Gerudo Membership Card'] = 'Gerudo Membership Card' + placed_items['Hideout Gerudo Membership Card'] = 'Gerudo Membership Card' if world.shuffle_gerudo_card and world.item_pool_value == 'plentiful': pending_junk_pool.append('Gerudo Membership Card') @@ -1111,7 +1111,7 @@ def get_pool_core(world): pending_junk_pool.append('Small Key (Water Temple)') pending_junk_pool.append('Small Key (Shadow Temple)') pending_junk_pool.append('Small Key (Spirit Temple)') - pending_junk_pool.append('Small Key (Gerudo Training Grounds)') + pending_junk_pool.append('Small Key (Gerudo Training Ground)') pending_junk_pool.append('Small Key (Ganons Castle)') if world.item_pool_value == 'plentiful' and world.shuffle_bosskeys in ['any_dungeon', 'overworld', 'keysanity']: @@ -1250,7 +1250,7 @@ def get_pool_core(world): pool.extend(ShT_vanilla) if not world.dungeon_mq['Bottom of the Well']: pool.extend(BW_vanilla) - if world.dungeon_mq['Gerudo Training Grounds']: + if world.dungeon_mq['Gerudo Training Ground']: pool.extend(GTG_MQ) else: pool.extend(GTG_vanilla) diff --git a/worlds/oot/Items.py b/worlds/oot/Items.py index 964137f8..9cf16424 100644 --- a/worlds/oot/Items.py +++ b/worlds/oot/Items.py @@ -6,7 +6,7 @@ def oot_data_to_ap_id(data, event): if event or data[2] is None or data[0] == 'Shop': return None offset = 66000 - if data[0] in ['Item', 'BossKey', 'Compass', 'Map', 'SmallKey', 'Token', 'GanonBossKey', 'FortressSmallKey', 'Song']: + if data[0] in ['Item', 'BossKey', 'Compass', 'Map', 'SmallKey', 'Token', 'GanonBossKey', 'HideoutSmallKey', 'Song']: return offset + data[2] else: raise Exception(f'Unexpected OOT item type found: {data[0]}') @@ -53,7 +53,7 @@ class OOTItem(Item): @property def dungeonitem(self) -> bool: - return self.type in ['SmallKey', 'FortressSmallKey', 'BossKey', 'GanonBossKey', 'Map', 'Compass'] + return self.type in ['SmallKey', 'HideoutSmallKey', 'BossKey', 'GanonBossKey', 'Map', 'Compass'] @@ -193,8 +193,8 @@ item_table = { 'Small Key (Spirit Temple)': ('SmallKey', True, 0xB2, {'progressive': float('Inf')}), 'Small Key (Shadow Temple)': ('SmallKey', True, 0xB3, {'progressive': float('Inf')}), 'Small Key (Bottom of the Well)': ('SmallKey', True, 0xB4, {'progressive': float('Inf')}), - 'Small Key (Gerudo Training Grounds)': ('SmallKey',True, 0xB5, {'progressive': float('Inf')}), - 'Small Key (Gerudo Fortress)': ('FortressSmallKey',True, 0xB6, {'progressive': float('Inf')}), + 'Small Key (Gerudo Training Ground)': ('SmallKey',True, 0xB5, {'progressive': float('Inf')}), + 'Small Key (Thieves Hideout)': ('HideoutSmallKey',True, 0xB6, {'progressive': float('Inf')}), 'Small Key (Ganons Castle)': ('SmallKey', True, 0xB7, {'progressive': float('Inf')}), 'Double Defense': ('Item', True, 0xB8, None), 'Magic Bean Pack': ('Item', True, 0xC9, None), diff --git a/worlds/oot/LocationList.py b/worlds/oot/LocationList.py index e487522f..829ec702 100644 --- a/worlds/oot/LocationList.py +++ b/worlds/oot/LocationList.py @@ -19,6 +19,7 @@ def shop_address(shop_id, shelf_id): # LW Lost Woods # OGC Outside Ganon's Castle # SFM Sacred Forest Meadow +# TH Thieves' Hideout # ToT Temple of Time # ZD Zora's Domain # ZF Zora's Fountain @@ -52,7 +53,7 @@ location_table = OrderedDict([ ("Song from Impa", ("Song", 0xFF, 0x26, (0x2E8E925, 0x2E8E925), 'Zeldas Lullaby', ("Hyrule Castle", "Market", "Songs"))), ("Song from Malon", ("Song", 0xFF, 0x27, (0x0D7EB53, 0x0D7EBCF), 'Eponas Song', ("Lon Lon Ranch", "Songs",))), ("Song from Saria", ("Song", 0xFF, 0x28, (0x20B1DB1, 0x20B1DB1), 'Sarias Song', ("Sacred Forest Meadow", "Forest", "Songs"))), - ("Song from Composers Grave", ("Song", 0xFF, 0x29, (0x332A871, 0x332A871), 'Suns Song', ("the Graveyard", "Kakariko", "Songs"))), + ("Song from Royal Familys Tomb", ("Song", 0xFF, 0x29, (0x332A871, 0x332A871), 'Suns Song', ("the Graveyard", "Kakariko", "Songs"))), ("Song from Ocarina of Time", ("Song", 0xFF, 0x2A, (0x252FC89, 0x252FC89), 'Song of Time', ("Hyrule Field", "Songs", "Need Spiritual Stones"))), ("Song from Windmill", ("Song", 0xFF, 0x2B, (0x0E42C07, 0x0E42B8B), 'Song of Storms', ("Kakariko Village", "Kakariko", "Songs"))), ("Sheik in Forest", ("Song", 0xFF, 0x20, (0x20B0809, 0x20B0809), 'Minuet of Forest', ("Sacred Forest Meadow", "Forest", "Songs"))), @@ -70,7 +71,7 @@ location_table = OrderedDict([ ("KF Midos Bottom Right Chest", ("Chest", 0x28, 0x03, None, 'Recovery Heart', ("Kokiri Forest", "Forest",))), ("KF Kokiri Sword Chest", ("Chest", 0x55, 0x00, None, 'Kokiri Sword', ("Kokiri Forest", "Forest",))), ("KF Storms Grotto Chest", ("Chest", 0x3E, 0x0C, None, 'Rupees (20)', ("Kokiri Forest", "Forest", "Grottos"))), - ("KF Links House Cow", ("NPC", 0x34, 0x15, None, 'Milk', ("KF Links House", "Forest", "Cow", "Minigames"))), + ("KF Links House Cow", ("NPC", 0x34, 0x15, None, 'Milk', ("Kokiri Forest", "Forest", "Cow", "Minigames"))), ("KF GS Know It All House", ("GS Token", 0x0C, 0x02, None, 'Gold Skulltula Token', ("Kokiri Forest", "Skulltulas",))), ("KF GS Bean Patch", ("GS Token", 0x0C, 0x01, None, 'Gold Skulltula Token', ("Kokiri Forest", "Skulltulas",))), ("KF GS House of Twins", ("GS Token", 0x0C, 0x04, None, 'Gold Skulltula Token', ("Kokiri Forest", "Skulltulas",))), @@ -163,7 +164,7 @@ location_table = OrderedDict([ ("HC GS Storms Grotto", ("GS Token", 0x0E, 0x02, None, 'Gold Skulltula Token', ("Hyrule Castle", "Skulltulas", "Grottos"))), # Lon Lon Ranch - ("LLR Talons Chickens", ("NPC", 0x4C, 0x14, None, 'Bottle with Milk', ("Lon Lon Ranch", "Kakariko", "Minigames"))), + ("LLR Talons Chickens", ("NPC", 0x4C, 0x14, None, 'Bottle with Milk', ("Lon Lon Ranch", "Minigames"))), ("LLR Freestanding PoH", ("Collectable", 0x4C, 0x01, None, 'Piece of Heart', ("Lon Lon Ranch",))), ("LLR Deku Scrub Grotto Left", ("GrottoNPC", 0xFC, 0x30, None, 'Buy Deku Nut (5)', ("Lon Lon Ranch", "Deku Scrub", "Grottos"))), ("LLR Deku Scrub Grotto Center", ("GrottoNPC", 0xFC, 0x33, None, 'Buy Deku Seeds (30)', ("Lon Lon Ranch", "Deku Scrub", "Grottos"))), @@ -218,7 +219,7 @@ location_table = OrderedDict([ # Graveyard ("Graveyard Shield Grave Chest", ("Chest", 0x40, 0x00, None, 'Hylian Shield', ("the Graveyard", "Kakariko",))), ("Graveyard Heart Piece Grave Chest", ("Chest", 0x3F, 0x00, None, 'Piece of Heart', ("the Graveyard", "Kakariko",))), - ("Graveyard Composers Grave Chest", ("Chest", 0x41, 0x00, None, 'Bombs (5)', ("the Graveyard", "Kakariko",))), + ("Graveyard Royal Familys Tomb Chest", ("Chest", 0x41, 0x00, None, 'Bombs (5)', ("the Graveyard", "Kakariko",))), ("Graveyard Freestanding PoH", ("Collectable", 0x53, 0x04, None, 'Piece of Heart', ("the Graveyard", "Kakariko",))), ("Graveyard Dampe Gravedigging Tour", ("Collectable", 0x53, 0x08, None, 'Piece of Heart', ("the Graveyard", "Kakariko",))), ("Graveyard Hookshot Chest", ("Chest", 0x48, 0x00, None, 'Progressive Hookshot', ("the Graveyard", "Kakariko",))), @@ -337,12 +338,14 @@ location_table = OrderedDict([ ("GV GS Behind Tent", ("GS Token", 0x13, 0x08, None, 'Gold Skulltula Token', ("Gerudo Valley", "Skulltulas",))), ("GV GS Pillar", ("GS Token", 0x13, 0x04, None, 'Gold Skulltula Token', ("Gerudo Valley", "Skulltulas",))), + # Thieves' Hideout + ("Hideout Jail Guard (1 Torch)", ("Collectable", 0x0C, 0x0C, None, 'Small Key (Thieves Hideout)', ("Thieves' Hideout", "Gerudo",))), + ("Hideout Jail Guard (2 Torches)", ("Collectable", 0x0C, 0x0F, None, 'Small Key (Thieves Hideout)', ("Thieves' Hideout", "Gerudo",))), + ("Hideout Jail Guard (3 Torches)", ("Collectable", 0x0C, 0x0A, None, 'Small Key (Thieves Hideout)', ("Thieves' Hideout", "Gerudo",))), + ("Hideout Jail Guard (4 Torches)", ("Collectable", 0x0C, 0x0E, None, 'Small Key (Thieves Hideout)', ("Thieves' Hideout", "Gerudo",))), + ("Hideout Gerudo Membership Card", ("NPC", 0x0C, 0x3A, None, 'Gerudo Membership Card', ("Thieves' Hideout", "Gerudo",))), + # Gerudo's Fortress - ("GF North F1 Carpenter", ("Collectable", 0x0C, 0x0C, None, 'Small Key (Gerudo Fortress)', ("Gerudo's Fortress", "Gerudo",))), - ("GF North F2 Carpenter", ("Collectable", 0x0C, 0x0A, None, 'Small Key (Gerudo Fortress)', ("Gerudo's Fortress", "Gerudo",))), - ("GF South F1 Carpenter", ("Collectable", 0x0C, 0x0E, None, 'Small Key (Gerudo Fortress)', ("Gerudo's Fortress", "Gerudo",))), - ("GF South F2 Carpenter", ("Collectable", 0x0C, 0x0F, None, 'Small Key (Gerudo Fortress)', ("Gerudo's Fortress", "Gerudo",))), - ("GF Gerudo Membership Card", ("NPC", 0x0C, 0x3A, None, 'Gerudo Membership Card', ("Gerudo's Fortress", "Gerudo",))), ("GF Chest", ("Chest", 0x5D, 0x00, None, 'Piece of Heart', ("Gerudo's Fortress", "Gerudo",))), ("GF HBA 1000 Points", ("NPC", 0x5D, 0x3E, None, 'Piece of Heart', ("Gerudo's Fortress", "Gerudo", "Minigames"))), ("GF HBA 1500 Points", ("NPC", 0x5D, 0x30, None, 'Bow', ("Gerudo's Fortress", "Gerudo", "Minigames"))), @@ -364,8 +367,8 @@ location_table = OrderedDict([ ("Colossus GS Hill", ("GS Token", 0x15, 0x04, None, 'Gold Skulltula Token', ("Desert Colossus", "Skulltulas",))), # Outside Ganon's Castle - ("OGC Great Fairy Reward", ("Cutscene", 0xFF, 0x15, None, 'Double Defense', ("outside Ganon's Castle", "Market", "Fairies"))), - ("OGC GS", ("GS Token", 0x0E, 0x01, None, 'Gold Skulltula Token', ("outside Ganon's Castle", "Skulltulas",))), + ("OGC Great Fairy Reward", ("Cutscene", 0xFF, 0x15, None, 'Double Defense', ("Outside Ganon's Castle", "Market", "Fairies"))), + ("OGC GS", ("GS Token", 0x0E, 0x01, None, 'Gold Skulltula Token', ("Outside Ganon's Castle", "Skulltulas",))), ## Dungeons # Deku Tree vanilla @@ -725,47 +728,47 @@ location_table = OrderedDict([ ("Ice Cavern MQ GS Ice Block", ("GS Token", 0x09, 0x04, None, 'Gold Skulltula Token', ("Ice Cavern", "Master Quest", "Skulltulas",))), ("Ice Cavern MQ GS Scarecrow", ("GS Token", 0x09, 0x01, None, 'Gold Skulltula Token', ("Ice Cavern", "Master Quest", "Skulltulas",))), - # Gerudo Training Grounds vanilla - ("Gerudo Training Grounds Lobby Left Chest", ("Chest", 0x0B, 0x13, None, 'Rupees (5)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Lobby Right Chest", ("Chest", 0x0B, 0x07, None, 'Arrows (10)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Stalfos Chest", ("Chest", 0x0B, 0x00, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Before Heavy Block Chest", ("Chest", 0x0B, 0x11, None, 'Arrows (30)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Heavy Block First Chest", ("Chest", 0x0B, 0x0F, None, 'Rupees (200)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Heavy Block Second Chest", ("Chest", 0x0B, 0x0E, None, 'Rupees (5)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Heavy Block Third Chest", ("Chest", 0x0B, 0x14, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Heavy Block Fourth Chest", ("Chest", 0x0B, 0x02, None, 'Ice Trap', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Eye Statue Chest", ("Chest", 0x0B, 0x03, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Near Scarecrow Chest", ("Chest", 0x0B, 0x04, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Hammer Room Clear Chest", ("Chest", 0x0B, 0x12, None, 'Arrows (10)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Hammer Room Switch Chest", ("Chest", 0x0B, 0x10, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Freestanding Key", ("Collectable", 0x0B, 0x01, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Maze Right Central Chest", ("Chest", 0x0B, 0x05, None, 'Bombchus (5)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Maze Right Side Chest", ("Chest", 0x0B, 0x08, None, 'Arrows (30)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Underwater Silver Rupee Chest", ("Chest", 0x0B, 0x0D, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Beamos Chest", ("Chest", 0x0B, 0x01, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Hidden Ceiling Chest", ("Chest", 0x0B, 0x0B, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Maze Path First Chest", ("Chest", 0x0B, 0x06, None, 'Rupees (50)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Maze Path Second Chest", ("Chest", 0x0B, 0x0A, None, 'Rupees (20)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Maze Path Third Chest", ("Chest", 0x0B, 0x09, None, 'Arrows (30)', ("Gerudo Training Grounds", "Vanilla",))), - ("Gerudo Training Grounds Maze Path Final Chest", ("Chest", 0x0B, 0x0C, None, 'Ice Arrows', ("Gerudo Training Grounds", "Vanilla",))), - # Gerudo Training Grounds MQ - ("Gerudo Training Grounds MQ Lobby Left Chest", ("Chest", 0x0B, 0x13, None, 'Arrows (10)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Lobby Right Chest", ("Chest", 0x0B, 0x07, None, 'Bombchus (5)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ First Iron Knuckle Chest", ("Chest", 0x0B, 0x00, None, 'Rupees (5)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Before Heavy Block Chest", ("Chest", 0x0B, 0x11, None, 'Arrows (10)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Heavy Block Chest", ("Chest", 0x0B, 0x02, None, 'Rupees (50)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Eye Statue Chest", ("Chest", 0x0B, 0x03, None, 'Bombchus (10)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Ice Arrows Chest", ("Chest", 0x0B, 0x04, None, 'Ice Arrows', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Second Iron Knuckle Chest", ("Chest", 0x0B, 0x12, None, 'Arrows (10)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Flame Circle Chest", ("Chest", 0x0B, 0x0E, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Maze Right Central Chest", ("Chest", 0x0B, 0x05, None, 'Rupees (5)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Maze Right Side Chest", ("Chest", 0x0B, 0x08, None, 'Rupee (Treasure Chest Game)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Underwater Silver Rupee Chest", ("Chest", 0x0B, 0x0D, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Dinolfos Chest", ("Chest", 0x0B, 0x01, None, 'Small Key (Gerudo Training Grounds)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Hidden Ceiling Chest", ("Chest", 0x0B, 0x0B, None, 'Rupees (50)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Maze Path First Chest", ("Chest", 0x0B, 0x06, None, 'Rupee (1)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Maze Path Third Chest", ("Chest", 0x0B, 0x09, None, 'Rupee (Treasure Chest Game)', ("Gerudo Training Grounds", "Master Quest",))), - ("Gerudo Training Grounds MQ Maze Path Second Chest", ("Chest", 0x0B, 0x0A, None, 'Rupees (20)', ("Gerudo Training Grounds", "Master Quest",))), + # Gerudo Training Ground vanilla + ("Gerudo Training Ground Lobby Left Chest", ("Chest", 0x0B, 0x13, None, 'Rupees (5)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Lobby Right Chest", ("Chest", 0x0B, 0x07, None, 'Arrows (10)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Stalfos Chest", ("Chest", 0x0B, 0x00, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Before Heavy Block Chest", ("Chest", 0x0B, 0x11, None, 'Arrows (30)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Heavy Block First Chest", ("Chest", 0x0B, 0x0F, None, 'Rupees (200)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Heavy Block Second Chest", ("Chest", 0x0B, 0x0E, None, 'Rupees (5)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Heavy Block Third Chest", ("Chest", 0x0B, 0x14, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Heavy Block Fourth Chest", ("Chest", 0x0B, 0x02, None, 'Ice Trap', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Eye Statue Chest", ("Chest", 0x0B, 0x03, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Near Scarecrow Chest", ("Chest", 0x0B, 0x04, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Hammer Room Clear Chest", ("Chest", 0x0B, 0x12, None, 'Arrows (10)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Hammer Room Switch Chest", ("Chest", 0x0B, 0x10, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Freestanding Key", ("Collectable", 0x0B, 0x01, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Maze Right Central Chest", ("Chest", 0x0B, 0x05, None, 'Bombchus (5)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Maze Right Side Chest", ("Chest", 0x0B, 0x08, None, 'Arrows (30)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Underwater Silver Rupee Chest", ("Chest", 0x0B, 0x0D, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Beamos Chest", ("Chest", 0x0B, 0x01, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Hidden Ceiling Chest", ("Chest", 0x0B, 0x0B, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Maze Path First Chest", ("Chest", 0x0B, 0x06, None, 'Rupees (50)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Maze Path Second Chest", ("Chest", 0x0B, 0x0A, None, 'Rupees (20)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Maze Path Third Chest", ("Chest", 0x0B, 0x09, None, 'Arrows (30)', ("Gerudo Training Ground", "Vanilla",))), + ("Gerudo Training Ground Maze Path Final Chest", ("Chest", 0x0B, 0x0C, None, 'Ice Arrows', ("Gerudo Training Ground", "Vanilla",))), + # Gerudo Training Ground MQ + ("Gerudo Training Ground MQ Lobby Left Chest", ("Chest", 0x0B, 0x13, None, 'Arrows (10)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Lobby Right Chest", ("Chest", 0x0B, 0x07, None, 'Bombchus (5)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ First Iron Knuckle Chest", ("Chest", 0x0B, 0x00, None, 'Rupees (5)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Before Heavy Block Chest", ("Chest", 0x0B, 0x11, None, 'Arrows (10)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Heavy Block Chest", ("Chest", 0x0B, 0x02, None, 'Rupees (50)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Eye Statue Chest", ("Chest", 0x0B, 0x03, None, 'Bombchus (10)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Ice Arrows Chest", ("Chest", 0x0B, 0x04, None, 'Ice Arrows', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Second Iron Knuckle Chest", ("Chest", 0x0B, 0x12, None, 'Arrows (10)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Flame Circle Chest", ("Chest", 0x0B, 0x0E, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Maze Right Central Chest", ("Chest", 0x0B, 0x05, None, 'Rupees (5)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Maze Right Side Chest", ("Chest", 0x0B, 0x08, None, 'Rupee (Treasure Chest Game)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Underwater Silver Rupee Chest", ("Chest", 0x0B, 0x0D, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Dinolfos Chest", ("Chest", 0x0B, 0x01, None, 'Small Key (Gerudo Training Ground)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Hidden Ceiling Chest", ("Chest", 0x0B, 0x0B, None, 'Rupees (50)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Maze Path First Chest", ("Chest", 0x0B, 0x06, None, 'Rupee (1)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Maze Path Third Chest", ("Chest", 0x0B, 0x09, None, 'Rupee (Treasure Chest Game)', ("Gerudo Training Ground", "Master Quest",))), + ("Gerudo Training Ground MQ Maze Path Second Chest", ("Chest", 0x0B, 0x0A, None, 'Rupees (20)', ("Gerudo Training Ground", "Master Quest",))), # Ganon's Castle vanilla ("Ganons Castle Forest Trial Chest", ("Chest", 0x0D, 0x09, None, 'Rupees (5)', ("Ganon's Castle", "Vanilla",))), @@ -902,7 +905,7 @@ business_scrubs = [ (0x79, 40, 0x10DD, ["enable you to pick up more \x05\x41Deku\x01Nuts", "sell you a \x05\x42mysterious item"]), ] -dungeons = ('Deku Tree', 'Dodongo\'s Cavern', 'Jabu Jabu\'s Belly', 'Forest Temple', 'Fire Temple', 'Water Temple', 'Spirit Temple', 'Shadow Temple', 'Ice Cavern', 'Bottom of the Well', 'Gerudo Training Grounds', 'Ganon\'s Castle') +dungeons = ('Deku Tree', 'Dodongo\'s Cavern', 'Jabu Jabu\'s Belly', 'Forest Temple', 'Fire Temple', 'Water Temple', 'Spirit Temple', 'Shadow Temple', 'Ice Cavern', 'Bottom of the Well', 'Gerudo Training Ground', 'Ganon\'s Castle') location_groups = { 'Song': [name for (name, data) in location_table.items() if data[0] == 'Song'], 'Chest': [name for (name, data) in location_table.items() if data[0] == 'Chest'], diff --git a/worlds/oot/LogicTricks.py b/worlds/oot/LogicTricks.py index db8b792a..6950bc21 100644 --- a/worlds/oot/LogicTricks.py +++ b/worlds/oot/LogicTricks.py @@ -1,7 +1,7 @@ known_logic_tricks = { 'Fewer Tunic Requirements': { 'name' : 'logic_fewer_tunic_requirements', - 'tags' : ("General", "Fire Temple", "Water Temple", "Gerudo Training Grounds", "Zora's Fountain",), + 'tags' : ("General", "Fire Temple", "Water Temple", "Gerudo Training Ground", "Zora's Fountain",), 'tooltip' : '''\ Allows the following possible without Tunics: - Enter Water Temple. The key below the center @@ -10,7 +10,7 @@ known_logic_tricks = { accessible, and not Volvagia. - Zora's Fountain Bottom Freestanding PoH. Might not have enough health to resurface. - - Gerudo Training Grounds Underwater + - Gerudo Training Ground Underwater Silver Rupee Chest. May need to make multiple trips. '''}, @@ -73,9 +73,9 @@ known_logic_tricks = { from below, by shooting it through the vines, bypassing the need to lower the staircase. '''}, - 'Gerudo Fortress "Kitchen" with No Additional Items': { + 'Thieves\' Hideout "Kitchen" with No Additional Items': { 'name' : 'logic_gerudo_kitchen', - 'tags' : ("Gerudo's Fortress",), + 'tags' : ("Thieves' Hideout", "Gerudo's Fortress"), 'tooltip' : '''\ The logic normally guarantees one of Bow, Hookshot, or Hover Boots. @@ -185,9 +185,9 @@ known_logic_tricks = { a particularly egregious example. Logic normally expects Din's Fire and Song of Time. '''}, - 'Gerudo Training Grounds MQ Left Side Silver Rupees with Hookshot': { + 'Gerudo Training Ground MQ Left Side Silver Rupees with Hookshot': { 'name' : 'logic_gtg_mq_with_hookshot', - 'tags' : ("Gerudo Training Grounds",), + 'tags' : ("Gerudo Training Ground",), 'tooltip' : '''\ The highest silver rupee can be obtained by hookshotting the target and then immediately jump @@ -239,14 +239,6 @@ known_logic_tricks = { or hit the shortcut switch at the top of the room and jump from the glass blocks that spawn. '''}, - 'Forest Temple MQ Twisted Hallway Switch with Hookshot': { - 'name' : 'logic_forest_mq_hallway_switch_hookshot', - 'tags' : ("Forest Temple",), - 'tooltip' : '''\ - There's a very small gap between the glass block - and the wall. Through that gap you can hookshot - the target on the ceiling. - '''}, 'Death Mountain Trail Chest with Strength': { 'name' : 'logic_dmt_bombable', 'tags' : ("Death Mountain Trail",), @@ -907,9 +899,9 @@ known_logic_tricks = { Skulltula and obtain the token by having the Boomerang interact with it along the return path. '''}, - 'Gerudo Training Grounds Left Side Silver Rupees without Hookshot': { + 'Gerudo Training Ground Left Side Silver Rupees without Hookshot': { 'name' : 'logic_gtg_without_hookshot', - 'tags' : ("Gerudo Training Grounds",), + 'tags' : ("Gerudo Training Ground",), 'tooltip' : '''\ After collecting the rest of the silver rupees in the room, you can reach the final silver rupee on the ceiling by being @@ -919,9 +911,9 @@ known_logic_tricks = { the edge of a flame wall before it can rise up to block you. To do so without taking damage is more precise. '''}, - 'Gerudo Training Grounds MQ Left Side Silver Rupees without Hookshot': { + 'Gerudo Training Ground MQ Left Side Silver Rupees without Hookshot': { 'name' : 'logic_gtg_mq_without_hookshot', - 'tags' : ("Gerudo Training Grounds",), + 'tags' : ("Gerudo Training Ground",), 'tooltip' : '''\ After collecting the rest of the silver rupees in the room, you can reach the final silver rupee on the ceiling by being @@ -932,18 +924,18 @@ known_logic_tricks = { Also included with this trick is that fact that the switch that unbars the door to the final chest of GTG can be hit without a projectile, using a precise jump slash. - This trick supersedes "Gerudo Training Grounds MQ Left Side + This trick supersedes "Gerudo Training Ground MQ Left Side Silver Rupees with Hookshot". '''}, - 'Reach Gerudo Training Grounds Fake Wall Ledge with Hover Boots': { + 'Reach Gerudo Training Ground Fake Wall Ledge with Hover Boots': { 'name' : 'logic_gtg_fake_wall', - 'tags' : ("Gerudo Training Grounds",), + 'tags' : ("Gerudo Training Ground",), 'tooltip' : '''\ A precise Hover Boots use from the top of the chest can allow you to grab the ledge without needing the usual requirements. In Master Quest, this always skips a Song of Time requirement. In Vanilla, this skips a Hookshot requirement, but is only - relevant if "Gerudo Training Grounds Left Side Silver Rupees + relevant if "Gerudo Training Ground Left Side Silver Rupees without Hookshot" is enabled. '''}, 'Water Temple Cracked Wall with No Additional Items': { @@ -1299,19 +1291,19 @@ known_logic_tricks = { Removes the requirements for the Lens of Truth in Ganon's Castle. '''}, - 'Gerudo Training Grounds MQ without Lens of Truth': { + 'Gerudo Training Ground MQ without Lens of Truth': { 'name' : 'logic_lens_gtg_mq', - 'tags' : ("Lens of Truth","Gerudo Training Grounds",), + 'tags' : ("Lens of Truth","Gerudo Training Ground",), 'tooltip' : '''\ Removes the requirements for the Lens of Truth - in Gerudo Training Grounds MQ. + in Gerudo Training Ground MQ. '''}, - 'Gerudo Training Grounds without Lens of Truth': { + 'Gerudo Training Ground without Lens of Truth': { 'name' : 'logic_lens_gtg', - 'tags' : ("Lens of Truth","Gerudo Training Grounds",), + 'tags' : ("Lens of Truth","Gerudo Training Ground",), 'tooltip' : '''\ Removes the requirements for the Lens of Truth - in Gerudo Training Grounds. + in Gerudo Training Ground. '''}, 'Jabu MQ without Lens of Truth': { 'name' : 'logic_lens_jabu_mq', diff --git a/worlds/oot/Messages.py b/worlds/oot/Messages.py index 84235626..e576b96b 100644 --- a/worlds/oot/Messages.py +++ b/worlds/oot/Messages.py @@ -308,7 +308,7 @@ KEYSANITY_MESSAGES = { 0x0095: "\x13\x77\x08You found a \x05\x41Small Key\x05\x40\x01for the \x05\x43Water Temple\x05\x40!\x09", 0x009B: "\x13\x77\x08You found a \x05\x41Small Key\x05\x40\x01for the \x05\x45Bottom of the Well\x05\x40!\x09", 0x009F: "\x13\x77\x08You found a \x05\x41Small Key\x05\x40\x01for the \x05\x46Gerudo Training\x01Grounds\x05\x40!\x09", - 0x00A0: "\x13\x77\x08You found a \x05\x41Small Key\x05\x40\x01for the \x05\x46Gerudo's Fortress\x05\x40!\x09", + 0x00A0: "\x13\x77\x08You found a \x05\x41Small Key\x05\x40\x01for the \x05\x46Thieves' Hideout\x05\x40!\x09", 0x00A1: "\x13\x77\x08You found a \x05\x41Small Key\x05\x40\x01for \x05\x41Ganon's Castle\x05\x40!\x09", 0x00A2: "\x13\x75\x08You found the \x05\x41Compass\x05\x40\x01for the \x05\x45Bottom of the Well\x05\x40!\x09", 0x00A3: "\x13\x76\x08You found the \x05\x41Dungeon Map\x05\x40\x01for the \x05\x45Shadow Temple\x05\x40!\x09", diff --git a/worlds/oot/Options.py b/worlds/oot/Options.py index f0715f2a..beac7639 100644 --- a/worlds/oot/Options.py +++ b/worlds/oot/Options.py @@ -421,8 +421,8 @@ class ShuffleKeys(Choice): class ShuffleGerudoKeys(Choice): - """Control where to shuffle the Gerudo Fortress small keys.""" - display_name = "Gerudo Fortress Keys" + """Control where to shuffle the Thieves' Hideout small keys.""" + display_name = "Thieves' Hideout Keys" option_vanilla = 0 option_overworld = 1 option_any_dungeon = 2 diff --git a/worlds/oot/Patches.py b/worlds/oot/Patches.py index cb7732f1..bb1c5888 100644 --- a/worlds/oot/Patches.py +++ b/worlds/oot/Patches.py @@ -710,7 +710,7 @@ def patch_rom(world, rom): rom.write_byte(address,0x01) # Allow Warp Songs in additional places - rom.write_byte(0xB6D3D2, 0x00) # Gerudo Training Grounds + rom.write_byte(0xB6D3D2, 0x00) # Gerudo Training Ground rom.write_byte(0xB6D42A, 0x00) # Inside Ganon's Castle #Tell Sheik at Ice Cavern we are always an Adult @@ -719,10 +719,10 @@ def patch_rom(world, rom): rom.write_int32(0xc7BCA4, 0x00000000) # Allow Farore's Wind in dungeons where it's normally forbidden - rom.write_byte(0xB6D3D3, 0x00) # Gerudo Training Grounds + rom.write_byte(0xB6D3D3, 0x00) # Gerudo Training Ground rom.write_byte(0xB6D42B, 0x00) # Inside Ganon's Castle - # Remove disruptive text from Gerudo Training Grounds and early Shadow Temple (vanilla) + # Remove disruptive text from Gerudo Training Ground and early Shadow Temple (vanilla) Wonder_text = [0x27C00BC, 0x27C00CC, 0x27C00DC, 0x27C00EC, 0x27C00FC, 0x27C010C, 0x27C011C, 0x27C012C, 0x27CE080, 0x27CE090, 0x2887070, 0x2887080, 0x2887090, 0x2897070, 0x28C7134, 0x28D91BC, 0x28A60F4, 0x28AE084, 0x28B9174, 0x28BF168, 0x28BF178, 0x28BF188, 0x28A1144, 0x28A6104, 0x28D0094] @@ -826,10 +826,6 @@ def patch_rom(world, rom): exit_table = generate_exit_lookup_table() - if world.entrance_shuffle: - # Disable the fog state entirely to avoid fog glitches - rom.write_byte(rom.sym('NO_FOG_STATE'), 1) - if world.disable_trade_revert: # Disable trade quest timers and prevent trade items from ever reverting rom.write_byte(rom.sym('DISABLE_TIMERS'), 0x01) @@ -1202,7 +1198,7 @@ def patch_rom(world, rom): if world.dungeon_mq['Ice Cavern']: mq_scenes.append(9) # Scene 10 has no layout changes, so it doesn't need to be patched - if world.dungeon_mq['Gerudo Training Grounds']: + if world.dungeon_mq['Gerudo Training Ground']: mq_scenes.append(11) if world.dungeon_mq['Ganons Castle']: mq_scenes.append(13) @@ -1378,7 +1374,7 @@ def patch_rom(world, rom): rom.write_byte(0x2E8E931, special['text_id']) #Fix text box elif location.name == 'Song from Malon': rom.write_byte(rom.sym('MALON_TEXT_ID'), special['text_id']) - elif location.name == 'Song from Composers Grave': + elif location.name == 'Song from Royal Familys Tomb': rom.write_int16(0xE09F66, bit_mask_pointer) rom.write_byte(0x332A87D, special['text_id']) #Fix text box elif location.name == 'Song from Saria': @@ -1685,7 +1681,7 @@ def patch_rom(world, rom): 'Shadow Temple': ("the \x05\x45Shadow Temple", 'Bongo Bongo', 0x7f, 0xa3), } for dungeon in world.dungeon_mq: - if dungeon in ['Gerudo Training Grounds', 'Ganons Castle']: + if dungeon in ['Gerudo Training Ground', 'Ganons Castle']: pass elif dungeon in ['Bottom of the Well', 'Ice Cavern']: dungeon_name, boss_name, compass_id, map_id = dungeon_list[dungeon] @@ -2184,7 +2180,7 @@ def configure_dungeon_info(rom, world): codes = ['Deku Tree', 'Dodongos Cavern', 'Jabu Jabus Belly', 'Forest Temple', 'Fire Temple', 'Water Temple', 'Spirit Temple', 'Shadow Temple', 'Bottom of the Well', 'Ice Cavern', 'Tower (N/A)', - 'Gerudo Training Grounds', 'Hideout (N/A)', 'Ganons Castle'] + 'Gerudo Training Ground', 'Hideout (N/A)', 'Ganons Castle'] dungeon_is_mq = [1 if world.dungeon_mq.get(c) else 0 for c in codes] rom.write_int32(rom.sym('cfg_dungeon_info_enable'), 1) diff --git a/worlds/oot/__init__.py b/worlds/oot/__init__.py index cc68488c..b5dab0d9 100644 --- a/worlds/oot/__init__.py +++ b/worlds/oot/__init__.py @@ -81,7 +81,7 @@ class OOTWorld(World): remote_items: bool = False remote_start_inventory: bool = False - data_version = 1 + data_version = 2 required_client_version = (0, 3, 2) @@ -167,12 +167,20 @@ class OOTWorld(World): self.dungeon_mq = {item['name']: (item in mq_dungeons) for item in dungeon_table} # Determine tricks in logic - for trick in self.logic_tricks: - normalized_name = trick.casefold() - if normalized_name in normalized_name_tricks: - setattr(self, normalized_name_tricks[normalized_name]['name'], True) - else: - raise Exception(f'Unknown OOT logic trick for player {self.player}: {trick}') + if self.logic_rules == 'glitchless': + for trick in self.logic_tricks: + normalized_name = trick.casefold() + if normalized_name in normalized_name_tricks: + setattr(self, normalized_name_tricks[normalized_name]['name'], True) + else: + raise Exception(f'Unknown OOT logic trick for player {self.player}: {trick}') + + # No Logic forces all tricks on, prog balancing off and beatable-only + elif self.logic_rules == 'no_logic': + self.world.progression_balancing[self.player].value = False + self.world.accessibility[self.player] = self.world.accessibility[self.player].from_text("minimal") + for trick in normalized_name_tricks.values(): + setattr(self, trick['name'], True) # Not implemented for now, but needed to placate the generator. Remove as they are implemented self.mq_dungeons_random = False # this will be a deprecated option later @@ -295,8 +303,7 @@ class OOTWorld(World): continue new_location.parent_region = new_region new_location.rule_string = rule - if self.world.logic_rules != 'none': - self.parser.parse_spot_rule(new_location) + self.parser.parse_spot_rule(new_location) if new_location.never: # We still need to fill the location even if ALR is off. logger.debug('Unreachable location: %s', new_location.name) @@ -308,8 +315,7 @@ class OOTWorld(World): lname = '%s from %s' % (event, new_region.name) new_location = OOTLocation(self.player, lname, type='Event', parent=new_region) new_location.rule_string = rule - if self.world.logic_rules != 'none': - self.parser.parse_spot_rule(new_location) + self.parser.parse_spot_rule(new_location) if new_location.never: logger.debug('Dropping unreachable event: %s', new_location.name) else: @@ -433,7 +439,7 @@ class OOTWorld(World): return item def create_regions(self): # create and link regions - if self.logic_rules == 'glitchless': + if self.logic_rules == 'glitchless' or self.logic_rules == 'no_logic': # enables ER + NL world_type = 'World' else: world_type = 'Glitched World' @@ -503,6 +509,8 @@ class OOTWorld(World): raise e # Restore original state and delete assumed entrances for entrance in self.get_shuffled_entrances(): + if entrance.connected_region is not None: + entrance.disconnect() entrance.connect(self.world.get_region(entrance.vanilla_connected_region, self.player)) if entrance.assumed: assumed_entrance = entrance.assumed @@ -580,7 +588,7 @@ class OOTWorld(World): # only one exists "Bottom of the Well Lens of Truth Chest", "Bottom of the Well MQ Lens of Truth Chest", # only one exists - "Gerudo Training Grounds Maze Path Final Chest", "Gerudo Training Grounds MQ Ice Arrows Chest", + "Gerudo Training Ground Maze Path Final Chest", "Gerudo Training Ground MQ Ice Arrows Chest", ] # Place/set rules for dungeon items @@ -616,32 +624,33 @@ class OOTWorld(World): # Now fill items that can go into any dungeon. Retrieve the Gerudo Fortress keys from the pool if necessary if self.shuffle_fortresskeys == 'any_dungeon': - fortresskeys = filter(lambda item: item.player == self.player and item.type == 'FortressSmallKey', + fortresskeys = filter(lambda item: item.player == self.player and item.type == 'HideoutSmallKey', self.world.itempool) itempools['any_dungeon'].extend(fortresskeys) if itempools['any_dungeon']: for item in itempools['any_dungeon']: self.world.itempool.remove(item) itempools['any_dungeon'].sort(key=lambda item: - {'GanonBossKey': 4, 'BossKey': 3, 'SmallKey': 2, 'FortressSmallKey': 1}.get(item.type, 0)) + {'GanonBossKey': 4, 'BossKey': 3, 'SmallKey': 2, 'HideoutSmallKey': 1}.get(item.type, 0)) self.world.random.shuffle(any_dungeon_locations) fill_restrictive(self.world, self.world.get_all_state(False), any_dungeon_locations, itempools['any_dungeon'], True, True) # If anything is overworld-only, fill into local non-dungeon locations if self.shuffle_fortresskeys == 'overworld': - fortresskeys = filter(lambda item: item.player == self.player and item.type == 'FortressSmallKey', + fortresskeys = filter(lambda item: item.player == self.player and item.type == 'HideoutSmallKey', self.world.itempool) itempools['overworld'].extend(fortresskeys) if itempools['overworld']: for item in itempools['overworld']: self.world.itempool.remove(item) itempools['overworld'].sort(key=lambda item: - {'GanonBossKey': 4, 'BossKey': 3, 'SmallKey': 2, 'FortressSmallKey': 1}.get(item.type, 0)) + {'GanonBossKey': 4, 'BossKey': 3, 'SmallKey': 2, 'HideoutSmallKey': 1}.get(item.type, 0)) non_dungeon_locations = [loc for loc in self.get_locations() if - not loc.item and loc not in any_dungeon_locations - and loc.type != 'Shop' and ( - loc.type != 'Song' or self.shuffle_song_items != 'song')] + not loc.item and loc not in any_dungeon_locations and + (loc.type != 'Shop' or loc.name in self.shop_prices) and + (loc.type != 'Song' or self.shuffle_song_items != 'song') and + (loc.name not in dungeon_song_locations or self.shuffle_song_items != 'dungeon')] self.world.random.shuffle(non_dungeon_locations) fill_restrictive(self.world, self.world.get_all_state(False), non_dungeon_locations, itempools['overworld'], True, True) @@ -840,7 +849,7 @@ class OOTWorld(World): if loc.game == "Ocarina of Time" and loc.item.code and (not loc.locked or (loc.item.type == 'Song' or (loc.item.type == 'SmallKey' and world.worlds[loc.player].shuffle_smallkeys == 'any_dungeon') or - (loc.item.type == 'FortressSmallKey' and world.worlds[loc.player].shuffle_fortresskeys == 'any_dungeon') or + (loc.item.type == 'HideoutSmallKey' and world.worlds[loc.player].shuffle_fortresskeys == 'any_dungeon') or (loc.item.type == 'BossKey' and world.worlds[loc.player].shuffle_bosskeys == 'any_dungeon') or (loc.item.type == 'GanonBossKey' and world.worlds[loc.player].shuffle_ganon_bosskey == 'any_dungeon'))): if loc.player in barren_hint_players: @@ -885,14 +894,29 @@ class OOTWorld(World): if len(entrance) > 2: hint_entrances.add(entrance[2][0]) + # Get main hint entrance to region. + # If the region is directly adjacent to a hint-entrance, we return that one. + # If it's in a dungeon, scan all the entrances for all the regions in the dungeon. + # This should terminate on the first region anyway, but we scan everything to be safe. + # If it's one of the special cases, go one level deeper. + # Otherwise return None. def get_entrance_to_region(region): - if region.name == 'Root': - return None + special_case_regions = { + "Beyond Door of Time", + "Kak Impas House Near Cow", + } + for entrance in region.entrances: if entrance.name in hint_entrances: return entrance - for entrance in region.entrances: - return get_entrance_to_region(entrance.parent_region) + if region.dungeon is not None: + for r in region.dungeon.regions: + for e in r.entrances: + if e.name in hint_entrances: + return e + if region.name in special_case_regions: + return get_entrance_to_region(region.entrances[0].parent_region) + return None # Remove undesired items from start_inventory for item_name in self.remove_from_start_inventory: @@ -907,6 +931,8 @@ class OOTWorld(World): if self.shuffle_interior_entrances != 'off' or self.shuffle_dungeon_entrances or self.shuffle_grotto_entrances: er_hint_data = {} for region in self.regions: + if not any(bool(loc.address) for loc in region.locations): # check if region has any non-event locations + continue main_entrance = get_entrance_to_region(region) if main_entrance is not None and main_entrance.shuffled: for location in region.locations: @@ -955,7 +981,7 @@ class OOTWorld(World): return False if item.type == 'SmallKey' and self.shuffle_smallkeys in ['dungeon', 'vanilla']: return False - if item.type == 'FortressSmallKey' and self.shuffle_fortresskeys == 'vanilla': + if item.type == 'HideoutSmallKey' and self.shuffle_fortresskeys == 'vanilla': return False if item.type == 'BossKey' and self.shuffle_bosskeys in ['dungeon', 'vanilla']: return False diff --git a/worlds/oot/data/Glitched World/Gerudo Training Ground MQ.json b/worlds/oot/data/Glitched World/Gerudo Training Ground MQ.json new file mode 100644 index 00000000..d36472fc --- /dev/null +++ b/worlds/oot/data/Glitched World/Gerudo Training Ground MQ.json @@ -0,0 +1,79 @@ +[ + { + "region_name": "Gerudo Training Ground Lobby", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ Lobby Left Chest": "True", + "Gerudo Training Ground MQ Lobby Right Chest": "True", + "Gerudo Training Ground MQ Hidden Ceiling Chest": "logic_lens_gtg_mq or can_use(Lens_of_Truth)", + "Gerudo Training Ground MQ Maze Path First Chest": "True", + "Gerudo Training Ground MQ Maze Path Second Chest": "True", + "Gerudo Training Ground MQ Maze Path Third Chest": "(Small_Key_Gerudo_Training_Ground, 1)" + }, + "exits": { + "Gerudo Fortress": "True", + "Gerudo Training Ground Left Side": "has_fire_source", + "Gerudo Training Ground Right Side": "Bow" + } + }, + { + "region_name": "Gerudo Training Ground Right Side", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ Dinolfos Chest": "True", + "Gerudo Training Ground MQ Underwater Silver Rupee Chest": " + (Hover_Boots or at('Gerudo Training Ground Central Maze Right', can_use(Longshot) or Bow)) and + has_fire_source and Iron_Boots and (logic_fewer_tunic_requirements or can_use(Zora_Tunic)) and + can_take_damage", + "Wall Fairy": "has_bottle and can_use(Bow)" #in the Dinalfos room shoot the Gerudo symbol above the door to the lava room. + } + }, + { + "region_name": "Gerudo Training Ground Left Side", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ First Iron Knuckle Chest": "True" + }, + "exits": { + "Gerudo Training Ground Stalfos Room": "can_use(Longshot) or (logic_gtg_mq_with_hookshot and can_use(Hookshot))" + } + }, + { + "region_name": "Gerudo Training Ground Stalfos Room", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ Before Heavy Block Chest": "True", + "Gerudo Training Ground MQ Heavy Block Chest": "can_use(Silver_Gauntlets)", + "Blue Fire": "has_bottle" + }, + "exits": { + "Gerudo Training Ground Back Areas": "can_play(Song_of_Time) and (logic_lens_gtg_mq or can_use(Lens_of_Truth)) and Blue_Fire" + } + }, + { + "region_name": "Gerudo Training Ground Back Areas", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ Eye Statue Chest": "Bow", + "Gerudo Training Ground MQ Second Iron Knuckle Chest": "True", + "Gerudo Training Ground MQ Flame Circle Chest": "True" + }, + "exits": { + "Gerudo Training Ground Central Maze Right": "Megaton_Hammer", + "Gerudo Training Ground Right Side": "can_use(Longshot)" + } + }, + { + "region_name": "Gerudo Training Ground Central Maze Right", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ Maze Right Central Chest": "True", + "Gerudo Training Ground MQ Maze Right Side Chest": "True", + "Gerudo Training Ground MQ Ice Arrows Chest": " + (Small_Key_Gerudo_Training_Ground, 3)" + }, + "exits": { + "Gerudo Training Ground Right Side": "True" + } + } +] diff --git a/worlds/oot/data/Glitched World/Gerudo Training Ground.json b/worlds/oot/data/Glitched World/Gerudo Training Ground.json new file mode 100644 index 00000000..7c46ee62 --- /dev/null +++ b/worlds/oot/data/Glitched World/Gerudo Training Ground.json @@ -0,0 +1,112 @@ +[ + { + "region_name": "Gerudo Training Ground Lobby", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Lobby Left Chest": "can_use(Bow) or can_use(Slingshot)", + "Gerudo Training Ground Lobby Right Chest": "can_use(Bow) or can_use(Slingshot)", + "Gerudo Training Ground Stalfos Chest": "can_jumpslash", + "Gerudo Training Ground Beamos Chest": "has_explosives and can_jumpslash", + "Wall Fairy": "has_bottle and can_use(Bow)" #in the Beamos room shoot the Gerudo symbol above the door to the lava room. + }, + "exits": { + "Gerudo Training Ground Heavy Block Room": "True", + "Gerudo Training Ground Lava Room": " + here(has_explosives and can_jumpslash)", + "Gerudo Training Ground Central Maze": "True" + } + }, + { + "region_name": "Gerudo Training Ground Central Maze", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Hidden Ceiling Chest": "(Small_Key_Gerudo_Training_Ground, 3) + or (can_use(Hookshot) and can_mega) or (is_child and has_explosives and (can_live_dmg(0.5) or can_use(Nayrus_Love)))", + "Gerudo Training Ground Maze Path First Chest": "(Small_Key_Gerudo_Training_Ground, 4) + or (can_use(Hookshot) and can_mega) or (is_child and has_explosives and (can_live_dmg(1.0) or can_use(Nayrus_Love)))", + "Gerudo Training Ground Maze Path Second Chest": "(Small_Key_Gerudo_Training_Ground, 6) + or (can_use(Hookshot) and can_mega) or (is_child and has_explosives and (can_live_dmg(1.0) or can_use(Nayrus_Love)))", + "Gerudo Training Ground Maze Path Third Chest": "(Small_Key_Gerudo_Training_Ground, 7) + or (can_use(Hookshot) and can_mega) or (is_child and has_explosives and (can_live_dmg(0.5) or can_use(Nayrus_Love)))", + "Gerudo Training Ground Maze Path Final Chest": "(Small_Key_Gerudo_Training_Ground, 9) + or (can_use(Hookshot) and can_mega) or (is_child and has_explosives and (can_live_dmg(0.5) or can_use(Nayrus_Love)))" + }, + "exits": { + "Gerudo Training Ground Central Maze Right": "(Small_Key_Gerudo_Training_Ground, 9) + or (can_use(Hookshot) and can_mega) or (is_child and has_explosives)" + } + }, + { + "region_name": "Gerudo Training Ground Central Maze Right", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Maze Right Central Chest": "True", + "Gerudo Training Ground Maze Right Side Chest": "True", + "Gerudo Training Ground Freestanding Key": "True" + }, + "exits": { + "Gerudo Training Ground Lava Room": "True" + } + }, + { + "region_name": "Gerudo Training Ground Lava Room", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Underwater Silver Rupee Chest": " + can_use(Hookshot) and (can_play(Song_of_Time) or can_mega) and Iron_Boots" + }, + "exits": { + "Gerudo Training Ground Central Maze Right": "can_play(Song_of_Time) or is_child + or (can_use(Hookshot) and can_use(Hover_Boots) and can_shield and Bombs)", + "Gerudo Training Ground Hammer Room": "can_use(Hookshot)" + } + }, + { + "region_name": "Gerudo Training Ground Hammer Room", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Hammer Room Clear Chest": "True", + "Gerudo Training Ground Hammer Room Switch Chest": "can_use(Megaton_Hammer) or + can_live_dmg(0.5) or can_use(Nayrus_Love)" + }, + "exits": { + "Gerudo Training Ground Eye Statue Lower": "can_use(Bow)", + "Gerudo Training Ground Lava Room": "True" + } + }, + { + "region_name": "Gerudo Training Ground Eye Statue Lower", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Eye Statue Chest": "can_use(Bow)" + }, + "exits": { + "Gerudo Training Ground Hammer Room": "True" + } + }, + { + "region_name": "Gerudo Training Ground Eye Statue Upper", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Near Scarecrow Chest": "can_use(Bow)" + }, + "exits": { + "Gerudo Training Ground Eye Statue Lower": "True" + } + }, + { + "region_name": "Gerudo Training Ground Heavy Block Room", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Before Heavy Block Chest": "True", + "Gerudo Training Ground Heavy Block First Chest": "can_use(Silver_Gauntlets)", + "Gerudo Training Ground Heavy Block Second Chest": "can_use(Silver_Gauntlets)", + "Gerudo Training Ground Heavy Block Third Chest": "can_use(Silver_Gauntlets)", + "Gerudo Training Ground Heavy Block Fourth Chest": "can_use(Silver_Gauntlets)" + }, + "exits": { + "Gerudo Training Ground Eye Statue Upper": "can_use(Hookshot) or can_hover or + (is_adult and (Hover_Boots or (can_shield and Bombs)))" + } + } +] diff --git a/worlds/oot/data/Glitched World/Gerudo Training Grounds MQ.json b/worlds/oot/data/Glitched World/Gerudo Training Grounds MQ.json deleted file mode 100644 index 388d4b59..00000000 --- a/worlds/oot/data/Glitched World/Gerudo Training Grounds MQ.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "region_name": "Gerudo Training Grounds Lobby", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ Lobby Left Chest": "True", - "Gerudo Training Grounds MQ Lobby Right Chest": "True", - "Gerudo Training Grounds MQ Hidden Ceiling Chest": "logic_lens_gtg_mq or can_use(Lens_of_Truth)", - "Gerudo Training Grounds MQ Maze Path First Chest": "True", - "Gerudo Training Grounds MQ Maze Path Second Chest": "True", - "Gerudo Training Grounds MQ Maze Path Third Chest": "(Small_Key_Gerudo_Training_Grounds, 1)" - }, - "exits": { - "Gerudo Fortress": "True", - "Gerudo Training Grounds Left Side": "has_fire_source", - "Gerudo Training Grounds Right Side": "Bow" - } - }, - { - "region_name": "Gerudo Training Grounds Right Side", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ Dinolfos Chest": "True", - "Gerudo Training Grounds MQ Underwater Silver Rupee Chest": " - (Hover_Boots or at('Gerudo Training Grounds Central Maze Right', can_use(Longshot) or Bow)) and - has_fire_source and Iron_Boots and (logic_fewer_tunic_requirements or can_use(Zora_Tunic)) and - can_take_damage", - "Wall Fairy": "has_bottle and can_use(Bow)" #in the Dinalfos room shoot the Gerudo symbol above the door to the lava room. - } - }, - { - "region_name": "Gerudo Training Grounds Left Side", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ First Iron Knuckle Chest": "True" - }, - "exits": { - "Gerudo Training Grounds Stalfos Room": "can_use(Longshot) or (logic_gtg_mq_with_hookshot and can_use(Hookshot))" - } - }, - { - "region_name": "Gerudo Training Grounds Stalfos Room", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ Before Heavy Block Chest": "True", - "Gerudo Training Grounds MQ Heavy Block Chest": "can_use(Silver_Gauntlets)", - "Blue Fire": "has_bottle" - }, - "exits": { - "Gerudo Training Grounds Back Areas": "can_play(Song_of_Time) and (logic_lens_gtg_mq or can_use(Lens_of_Truth)) and Blue_Fire" - } - }, - { - "region_name": "Gerudo Training Grounds Back Areas", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ Eye Statue Chest": "Bow", - "Gerudo Training Grounds MQ Second Iron Knuckle Chest": "True", - "Gerudo Training Grounds MQ Flame Circle Chest": "True" - }, - "exits": { - "Gerudo Training Grounds Central Maze Right": "Megaton_Hammer", - "Gerudo Training Grounds Right Side": "can_use(Longshot)" - } - }, - { - "region_name": "Gerudo Training Grounds Central Maze Right", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ Maze Right Central Chest": "True", - "Gerudo Training Grounds MQ Maze Right Side Chest": "True", - "Gerudo Training Grounds MQ Ice Arrows Chest": " - (Small_Key_Gerudo_Training_Grounds, 3)" - }, - "exits": { - "Gerudo Training Grounds Right Side": "True" - } - } -] diff --git a/worlds/oot/data/Glitched World/Gerudo Training Grounds.json b/worlds/oot/data/Glitched World/Gerudo Training Grounds.json deleted file mode 100644 index 793c115b..00000000 --- a/worlds/oot/data/Glitched World/Gerudo Training Grounds.json +++ /dev/null @@ -1,112 +0,0 @@ -[ - { - "region_name": "Gerudo Training Grounds Lobby", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Lobby Left Chest": "can_use(Bow) or can_use(Slingshot)", - "Gerudo Training Grounds Lobby Right Chest": "can_use(Bow) or can_use(Slingshot)", - "Gerudo Training Grounds Stalfos Chest": "can_jumpslash", - "Gerudo Training Grounds Beamos Chest": "has_explosives and can_jumpslash", - "Wall Fairy": "has_bottle and can_use(Bow)" #in the Beamos room shoot the Gerudo symbol above the door to the lava room. - }, - "exits": { - "Gerudo Training Grounds Heavy Block Room": "True", - "Gerudo Training Grounds Lava Room": " - here(has_explosives and can_jumpslash)", - "Gerudo Training Grounds Central Maze": "True" - } - }, - { - "region_name": "Gerudo Training Grounds Central Maze", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Hidden Ceiling Chest": "(Small_Key_Gerudo_Training_Grounds, 3) - or (can_use(Hookshot) and can_mega) or (is_child and has_explosives and (can_live_dmg(0.5) or can_use(Nayrus_Love)))", - "Gerudo Training Grounds Maze Path First Chest": "(Small_Key_Gerudo_Training_Grounds, 4) - or (can_use(Hookshot) and can_mega) or (is_child and has_explosives and (can_live_dmg(1.0) or can_use(Nayrus_Love)))", - "Gerudo Training Grounds Maze Path Second Chest": "(Small_Key_Gerudo_Training_Grounds, 6) - or (can_use(Hookshot) and can_mega) or (is_child and has_explosives and (can_live_dmg(1.0) or can_use(Nayrus_Love)))", - "Gerudo Training Grounds Maze Path Third Chest": "(Small_Key_Gerudo_Training_Grounds, 7) - or (can_use(Hookshot) and can_mega) or (is_child and has_explosives and (can_live_dmg(0.5) or can_use(Nayrus_Love)))", - "Gerudo Training Grounds Maze Path Final Chest": "(Small_Key_Gerudo_Training_Grounds, 9) - or (can_use(Hookshot) and can_mega) or (is_child and has_explosives and (can_live_dmg(0.5) or can_use(Nayrus_Love)))" - }, - "exits": { - "Gerudo Training Grounds Central Maze Right": "(Small_Key_Gerudo_Training_Grounds, 9) - or (can_use(Hookshot) and can_mega) or (is_child and has_explosives)" - } - }, - { - "region_name": "Gerudo Training Grounds Central Maze Right", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Maze Right Central Chest": "True", - "Gerudo Training Grounds Maze Right Side Chest": "True", - "Gerudo Training Grounds Freestanding Key": "True" - }, - "exits": { - "Gerudo Training Grounds Lava Room": "True" - } - }, - { - "region_name": "Gerudo Training Grounds Lava Room", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Underwater Silver Rupee Chest": " - can_use(Hookshot) and (can_play(Song_of_Time) or can_mega) and Iron_Boots" - }, - "exits": { - "Gerudo Training Grounds Central Maze Right": "can_play(Song_of_Time) or is_child - or (can_use(Hookshot) and can_use(Hover_Boots) and can_shield and Bombs)", - "Gerudo Training Grounds Hammer Room": "can_use(Hookshot)" - } - }, - { - "region_name": "Gerudo Training Grounds Hammer Room", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Hammer Room Clear Chest": "True", - "Gerudo Training Grounds Hammer Room Switch Chest": "can_use(Megaton_Hammer) or - can_live_dmg(0.5) or can_use(Nayrus_Love)" - }, - "exits": { - "Gerudo Training Grounds Eye Statue Lower": "can_use(Bow)", - "Gerudo Training Grounds Lava Room": "True" - } - }, - { - "region_name": "Gerudo Training Grounds Eye Statue Lower", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Eye Statue Chest": "can_use(Bow)" - }, - "exits": { - "Gerudo Training Grounds Hammer Room": "True" - } - }, - { - "region_name": "Gerudo Training Grounds Eye Statue Upper", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Near Scarecrow Chest": "can_use(Bow)" - }, - "exits": { - "Gerudo Training Grounds Eye Statue Lower": "True" - } - }, - { - "region_name": "Gerudo Training Grounds Heavy Block Room", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Before Heavy Block Chest": "True", - "Gerudo Training Grounds Heavy Block First Chest": "can_use(Silver_Gauntlets)", - "Gerudo Training Grounds Heavy Block Second Chest": "can_use(Silver_Gauntlets)", - "Gerudo Training Grounds Heavy Block Third Chest": "can_use(Silver_Gauntlets)", - "Gerudo Training Grounds Heavy Block Fourth Chest": "can_use(Silver_Gauntlets)" - }, - "exits": { - "Gerudo Training Grounds Eye Statue Upper": "can_use(Hookshot) or can_hover or - (is_adult and (Hover_Boots or (can_shield and Bombs)))" - } - } -] diff --git a/worlds/oot/data/Glitched World/Overworld.json b/worlds/oot/data/Glitched World/Overworld.json index 056aa9ee..f47c85a0 100644 --- a/worlds/oot/data/Glitched World/Overworld.json +++ b/worlds/oot/data/Glitched World/Overworld.json @@ -324,18 +324,18 @@ Gerudo_Membership_Card and can_ride_epona and Bow and is_adult", "GF HBA 1500 Points": " Gerudo_Membership_Card and can_ride_epona and Bow and is_adult", - "GF North F1 Carpenter": "is_adult or (is_child and can_child_damage)", - "GF North F2 Carpenter": "is_adult or (is_child and can_child_damage)", - "GF South F1 Carpenter": "is_adult or (is_child and can_child_damage)", - "GF South F2 Carpenter": "is_adult or (is_child and can_child_damage)", - "GF Gerudo Membership Card": "can_finish_GerudoFortress", + "Hideout Jail Guard (1 Torch)": "is_adult or (is_child and can_child_damage)", + "Hideout Jail Guard (2 Torches)": "is_adult or (is_child and can_child_damage)", + "Hideout Jail Guard (3 Torches)": "is_adult or (is_child and can_child_damage)", + "Hideout Jail Guard (4 Torches)": "is_adult or (is_child and can_child_damage)", + "Hideout Gerudo Membership Card": "can_finish_GerudoFortress", "GF GS Archery Range": "can_use(Hookshot) and at_night", "GF GS Top Floor": "at_night and is_adult" }, "exits": { "Haunted Wasteland": "is_child or 'GF Gate Open' or ((Progressive_Hookshot and (Hover_Boots or can_mega)) or (can_isg and Bombs) )", - "Gerudo Training Grounds Lobby": "True" + "Gerudo Training Ground Lobby": "True" } }, { @@ -707,7 +707,7 @@ }, "exits": { "Graveyard Shield Grave": "True", - "Graveyard Composers Grave": "can_play(Zeldas_Lullaby) or at('Graveyard Warp Pad Region', True)", + "Graveyard Royal Familys Tomb": "can_play(Zeldas_Lullaby) or at('Graveyard Warp Pad Region', True)", "Graveyard Heart Piece Grave": "True", "Graveyard Dampes Grave": "is_adult or at('Graveyard Warp Pad Region', True)", "Graveyard Dampes House": "True", @@ -728,10 +728,10 @@ } }, { - "region_name": "Graveyard Composers Grave", + "region_name": "Graveyard Royal Familys Tomb", "locations": { - "Graveyard Composers Grave Chest": "has_fire_source or (is_child and Sticks and (can_live_dmg(0.75) or can_use(Nayrus_Love)))", - "Song from Composers Grave": " + "Graveyard Royal Familys Tomb Chest": "has_fire_source or (is_child and Sticks and (can_live_dmg(0.75) or can_use(Nayrus_Love)))", + "Song from Royal Familys Tomb": " is_adult or (Slingshot or Boomerang or Sticks or has_explosives or Kokiri_Sword)" diff --git a/worlds/oot/data/LogicHelpers.json b/worlds/oot/data/LogicHelpers.json index c1766a1e..099aa2ea 100644 --- a/worlds/oot/data/LogicHelpers.json +++ b/worlds/oot/data/LogicHelpers.json @@ -83,8 +83,8 @@ "has_fire_source_with_torch": "has_fire_source or (is_child and Sticks)", # Gerudo Fortress - "can_finish_GerudoFortress": "(gerudo_fortress == 'normal' and (Small_Key_Gerudo_Fortress, 4) and (is_adult or Kokiri_Sword or is_glitched) and (is_adult and (Bow or Hookshot or Hover_Boots) or Gerudo_Membership_Card or logic_gerudo_kitchen or is_glitched)) - or (gerudo_fortress == 'fast' and Small_Key_Gerudo_Fortress and (is_adult or Kokiri_Sword or is_glitched)) + "can_finish_GerudoFortress": "(gerudo_fortress == 'normal' and (Small_Key_Thieves_Hideout, 4) and (is_adult or Kokiri_Sword or is_glitched) and (is_adult and (Bow or Hookshot or Hover_Boots) or Gerudo_Membership_Card or logic_gerudo_kitchen or is_glitched)) + or (gerudo_fortress == 'fast' and Small_Key_Thieves_Hideout and (is_adult or Kokiri_Sword or is_glitched)) or (gerudo_fortress != 'normal' and gerudo_fortress != 'fast')", # Mirror shield does not count because it cannot reflect scrub attack. "has_shield": "(is_adult and Hylian_Shield) or (is_child and Deku_Shield)", diff --git a/worlds/oot/data/World/Deku Tree MQ.json b/worlds/oot/data/World/Deku Tree MQ.json index 3fbafc35..e5fc840e 100644 --- a/worlds/oot/data/World/Deku Tree MQ.json +++ b/worlds/oot/data/World/Deku Tree MQ.json @@ -32,7 +32,7 @@ (can_use(Hookshot) or can_use(Boomerang)) and here(has_bombchus or (Bombs and (can_play(Song_of_Time) or is_adult)) or - (can_use(Hammer) and (can_play(Song_of_Time) or logic_deku_mq_compass_gs)))" + (can_use(Megaton_Hammer) and (can_play(Song_of_Time) or logic_deku_mq_compass_gs)))" }, "exits": { "Deku Tree Lobby": "True" diff --git a/worlds/oot/data/World/Dodongos Cavern MQ.json b/worlds/oot/data/World/Dodongos Cavern MQ.json index 298604be..cd466cc6 100644 --- a/worlds/oot/data/World/Dodongos Cavern MQ.json +++ b/worlds/oot/data/World/Dodongos Cavern MQ.json @@ -41,7 +41,7 @@ (logic_dc_mq_eyes and Progressive_Strength_Upgrade and (is_adult or logic_dc_mq_child_back) and (here(can_use(Sticks)) or can_use(Dins_Fire) or - (is_adult and (logic_dc_jump or Hammer or Hover_Boots or Hookshot))))" + (is_adult and (logic_dc_jump or Megaton_Hammer or Hover_Boots or Hookshot))))" } }, { diff --git a/worlds/oot/data/World/Forest Temple MQ.json b/worlds/oot/data/World/Forest Temple MQ.json index a2594122..4050a6fb 100644 --- a/worlds/oot/data/World/Forest Temple MQ.json +++ b/worlds/oot/data/World/Forest Temple MQ.json @@ -33,8 +33,7 @@ is_adult and (Progressive_Strength_Upgrade or (logic_forest_mq_block_puzzle and has_bombchus and can_use(Hookshot)))", "Forest Temple Outdoor Ledge": " - (logic_forest_mq_hallway_switch_jumpslash and can_use(Hover_Boots)) or - (logic_forest_mq_hallway_switch_hookshot and can_use(Hookshot))", + (logic_forest_mq_hallway_switch_jumpslash and can_use(Hover_Boots))", "Forest Temple Boss Region": " Forest_Temple_Jo_and_Beth and Forest_Temple_Amy_and_Meg" } diff --git a/worlds/oot/data/World/Gerudo Training Ground MQ.json b/worlds/oot/data/World/Gerudo Training Ground MQ.json new file mode 100644 index 00000000..98c68b87 --- /dev/null +++ b/worlds/oot/data/World/Gerudo Training Ground MQ.json @@ -0,0 +1,98 @@ +[ + { + "region_name": "Gerudo Training Ground Lobby", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ Lobby Left Chest": "True", + "Gerudo Training Ground MQ Lobby Right Chest": "True", + "Gerudo Training Ground MQ Hidden Ceiling Chest": "logic_lens_gtg_mq or can_use(Lens_of_Truth)", + "Gerudo Training Ground MQ Maze Path First Chest": "True", + "Gerudo Training Ground MQ Maze Path Second Chest": "True", + "Gerudo Training Ground MQ Maze Path Third Chest": "(Small_Key_Gerudo_Training_Ground, 1)" + }, + "exits": { + "Gerudo Fortress": "True", + "Gerudo Training Ground Left Side": "here(has_fire_source)", + "Gerudo Training Ground Right Side": "here(can_use(Bow) or can_use(Slingshot))" + } + }, + { + "region_name": "Gerudo Training Ground Right Side", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ Dinolfos Chest": "is_adult", + "Wall Fairy": "has_bottle and can_use(Bow)" #in the Dinalfos room shoot the Gerudo symbol above the door to the lava room. + }, + "exits": { + # Still requires has_fire_source in the room + "Gerudo Training Ground Underwater": " + (Bow or can_use(Longshot)) and can_use(Hover_Boots)" + } + }, + { + "region_name": "Gerudo Training Ground Underwater", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ Underwater Silver Rupee Chest": " + has_fire_source and can_use(Iron_Boots) and + (logic_fewer_tunic_requirements or can_use(Zora_Tunic)) and can_take_damage" + } + }, + { + "region_name": "Gerudo Training Ground Left Side", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ First Iron Knuckle Chest": "is_adult or Kokiri_Sword or has_explosives" + }, + "exits": { + "Gerudo Training Ground Stalfos Room": " + can_use(Longshot) or logic_gtg_mq_without_hookshot or + (logic_gtg_mq_with_hookshot and can_use(Hookshot))" + } + }, + { + "region_name": "Gerudo Training Ground Stalfos Room", + "dungeon": "Gerudo Training Ground", + "locations": { + # Very difficult to fight the Stalfos and Stulltulas under the time limit as child. + "Gerudo Training Ground MQ Before Heavy Block Chest": "is_adult", + "Gerudo Training Ground MQ Heavy Block Chest": "can_use(Silver_Gauntlets)", + "Blue Fire": "has_bottle" + }, + "exits": { + "Gerudo Training Ground Back Areas": " + is_adult and (logic_lens_gtg_mq or can_use(Lens_of_Truth)) and Blue_Fire and + (can_play(Song_of_Time) or (logic_gtg_fake_wall and can_use(Hover_Boots)))" + } + }, + { + "region_name": "Gerudo Training Ground Back Areas", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ Eye Statue Chest": "Bow", + "Gerudo Training Ground MQ Second Iron Knuckle Chest": "True", + "Gerudo Training Ground MQ Flame Circle Chest": "can_use(Hookshot) or Bow or has_explosives" + }, + "exits": { + "Gerudo Training Ground Central Maze Right": "Megaton_Hammer", + "Gerudo Training Ground Right Side": "can_use(Longshot)" + } + }, + { + "region_name": "Gerudo Training Ground Central Maze Right", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground MQ Maze Right Central Chest": "True", + "Gerudo Training Ground MQ Maze Right Side Chest": "True", + # The switch that opens the door to the Ice Arrows chest can be hit with a precise jumpslash. + "Gerudo Training Ground MQ Ice Arrows Chest": " + (Small_Key_Gerudo_Training_Ground, 3)" + }, + "exits": { + # guarantees fire with torch + "Gerudo Training Ground Underwater": " + can_use(Longshot) or (can_use(Hookshot) and Bow)", + "Gerudo Training Ground Right Side": "can_use(Hookshot)" + } + } +] diff --git a/worlds/oot/data/World/Gerudo Training Ground.json b/worlds/oot/data/World/Gerudo Training Ground.json new file mode 100644 index 00000000..dfaed49a --- /dev/null +++ b/worlds/oot/data/World/Gerudo Training Ground.json @@ -0,0 +1,120 @@ +[ + { + "region_name": "Gerudo Training Ground Lobby", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Lobby Left Chest": "can_use(Bow) or can_use(Slingshot)", + "Gerudo Training Ground Lobby Right Chest": "can_use(Bow) or can_use(Slingshot)", + "Gerudo Training Ground Stalfos Chest": "is_adult or Kokiri_Sword", + "Gerudo Training Ground Beamos Chest": "has_explosives and (is_adult or Kokiri_Sword)", + "Wall Fairy": "has_bottle and can_use(Bow)" #in the Beamos room shoot the Gerudo symbol above the door to the lava room. + }, + "exits": { + "Gerudo Fortress": "True", + "Gerudo Training Ground Heavy Block Room": " + (is_adult or Kokiri_Sword) and + (can_use(Hookshot) or logic_gtg_without_hookshot)", + "Gerudo Training Ground Lava Room": " + here(has_explosives and (is_adult or Kokiri_Sword))", + "Gerudo Training Ground Central Maze": "True" + } + }, + { + "region_name": "Gerudo Training Ground Central Maze", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Hidden Ceiling Chest": "(Small_Key_Gerudo_Training_Ground, 3) and (logic_lens_gtg or can_use(Lens_of_Truth))", + "Gerudo Training Ground Maze Path First Chest": "(Small_Key_Gerudo_Training_Ground, 4)", + "Gerudo Training Ground Maze Path Second Chest": "(Small_Key_Gerudo_Training_Ground, 6)", + "Gerudo Training Ground Maze Path Third Chest": "(Small_Key_Gerudo_Training_Ground, 7)", + "Gerudo Training Ground Maze Path Final Chest": "(Small_Key_Gerudo_Training_Ground, 9)" + }, + "exits": { + "Gerudo Training Ground Central Maze Right": "(Small_Key_Gerudo_Training_Ground, 9)" + } + }, + { + "region_name": "Gerudo Training Ground Central Maze Right", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Maze Right Central Chest": "True", + "Gerudo Training Ground Maze Right Side Chest": "True", + "Gerudo Training Ground Freestanding Key": "True" + }, + "exits": { + "Gerudo Training Ground Hammer Room": "can_use(Hookshot)", + "Gerudo Training Ground Lava Room": "True" + } + }, + { + "region_name": "Gerudo Training Ground Lava Room", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Underwater Silver Rupee Chest": " + can_use(Hookshot) and can_play(Song_of_Time) and Iron_Boots and + (logic_fewer_tunic_requirements or can_use(Zora_Tunic))" + }, + "exits": { + "Gerudo Training Ground Central Maze Right": "can_play(Song_of_Time) or is_child", + "Gerudo Training Ground Hammer Room": " + can_use(Longshot) or (can_use(Hookshot) and can_use(Hover_Boots))" + } + }, + { + "region_name": "Gerudo Training Ground Hammer Room", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Hammer Room Clear Chest": "True", + "Gerudo Training Ground Hammer Room Switch Chest": "can_use(Megaton_Hammer)" + }, + "exits": { + "Gerudo Training Ground Eye Statue Lower": "can_use(Megaton_Hammer) and Bow", + "Gerudo Training Ground Lava Room": "True" + } + }, + { + "region_name": "Gerudo Training Ground Eye Statue Lower", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Eye Statue Chest": "can_use(Bow)" + }, + "exits": { + "Gerudo Training Ground Hammer Room": "True" + } + }, + { + "region_name": "Gerudo Training Ground Eye Statue Upper", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Near Scarecrow Chest": "can_use(Bow)" + }, + "exits": { + "Gerudo Training Ground Eye Statue Lower": "True" + } + }, + { + "region_name": "Gerudo Training Ground Heavy Block Room", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Before Heavy Block Chest": "True" + }, + "exits": { + "Gerudo Training Ground Eye Statue Upper": " + (logic_lens_gtg or can_use(Lens_of_Truth)) and + (can_use(Hookshot) or (logic_gtg_fake_wall and can_use(Hover_Boots)))", + "Gerudo Training Ground Like Like Room": " + can_use(Silver_Gauntlets) and (logic_lens_gtg or can_use(Lens_of_Truth)) and + (can_use(Hookshot) or (logic_gtg_fake_wall and can_use(Hover_Boots)))" + } + }, + { + "region_name": "Gerudo Training Ground Like Like Room", + "dungeon": "Gerudo Training Ground", + "locations": { + "Gerudo Training Ground Heavy Block First Chest": "True", + "Gerudo Training Ground Heavy Block Second Chest": "True", + "Gerudo Training Ground Heavy Block Third Chest": "True", + "Gerudo Training Ground Heavy Block Fourth Chest": "True" + } + } +] diff --git a/worlds/oot/data/World/Gerudo Training Grounds MQ.json b/worlds/oot/data/World/Gerudo Training Grounds MQ.json deleted file mode 100644 index 34dc2f2f..00000000 --- a/worlds/oot/data/World/Gerudo Training Grounds MQ.json +++ /dev/null @@ -1,98 +0,0 @@ -[ - { - "region_name": "Gerudo Training Grounds Lobby", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ Lobby Left Chest": "True", - "Gerudo Training Grounds MQ Lobby Right Chest": "True", - "Gerudo Training Grounds MQ Hidden Ceiling Chest": "logic_lens_gtg_mq or can_use(Lens_of_Truth)", - "Gerudo Training Grounds MQ Maze Path First Chest": "True", - "Gerudo Training Grounds MQ Maze Path Second Chest": "True", - "Gerudo Training Grounds MQ Maze Path Third Chest": "(Small_Key_Gerudo_Training_Grounds, 1)" - }, - "exits": { - "Gerudo Fortress": "True", - "Gerudo Training Grounds Left Side": "here(has_fire_source)", - "Gerudo Training Grounds Right Side": "here(can_use(Bow) or can_use(Slingshot))" - } - }, - { - "region_name": "Gerudo Training Grounds Right Side", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ Dinolfos Chest": "is_adult", - "Wall Fairy": "has_bottle and can_use(Bow)" #in the Dinalfos room shoot the Gerudo symbol above the door to the lava room. - }, - "exits": { - # Still requires has_fire_source in the room - "Gerudo Training Grounds Underwater": " - (Bow or can_use(Longshot)) and can_use(Hover_Boots)" - } - }, - { - "region_name": "Gerudo Training Grounds Underwater", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ Underwater Silver Rupee Chest": " - has_fire_source and can_use(Iron_Boots) and - (logic_fewer_tunic_requirements or can_use(Zora_Tunic)) and can_take_damage" - } - }, - { - "region_name": "Gerudo Training Grounds Left Side", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ First Iron Knuckle Chest": "is_adult or Kokiri_Sword or has_explosives" - }, - "exits": { - "Gerudo Training Grounds Stalfos Room": " - can_use(Longshot) or logic_gtg_mq_without_hookshot or - (logic_gtg_mq_with_hookshot and can_use(Hookshot))" - } - }, - { - "region_name": "Gerudo Training Grounds Stalfos Room", - "dungeon": "Gerudo Training Grounds", - "locations": { - # Very difficult to fight the Stalfos and Stulltulas under the time limit as child. - "Gerudo Training Grounds MQ Before Heavy Block Chest": "is_adult", - "Gerudo Training Grounds MQ Heavy Block Chest": "can_use(Silver_Gauntlets)", - "Blue Fire": "has_bottle" - }, - "exits": { - "Gerudo Training Grounds Back Areas": " - is_adult and (logic_lens_gtg_mq or can_use(Lens_of_Truth)) and Blue_Fire and - (can_play(Song_of_Time) or (logic_gtg_fake_wall and can_use(Hover_Boots)))" - } - }, - { - "region_name": "Gerudo Training Grounds Back Areas", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ Eye Statue Chest": "Bow", - "Gerudo Training Grounds MQ Second Iron Knuckle Chest": "True", - "Gerudo Training Grounds MQ Flame Circle Chest": "can_use(Hookshot) or Bow or has_explosives" - }, - "exits": { - "Gerudo Training Grounds Central Maze Right": "Megaton_Hammer", - "Gerudo Training Grounds Right Side": "can_use(Longshot)" - } - }, - { - "region_name": "Gerudo Training Grounds Central Maze Right", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds MQ Maze Right Central Chest": "True", - "Gerudo Training Grounds MQ Maze Right Side Chest": "True", - # The switch that opens the door to the Ice Arrows chest can be hit with a precise jumpslash. - "Gerudo Training Grounds MQ Ice Arrows Chest": " - (Small_Key_Gerudo_Training_Grounds, 3)" - }, - "exits": { - # guarantees fire with torch - "Gerudo Training Grounds Underwater": " - can_use(Longshot) or (can_use(Hookshot) and Bow)", - "Gerudo Training Grounds Right Side": "can_use(Hookshot)" - } - } -] diff --git a/worlds/oot/data/World/Gerudo Training Grounds.json b/worlds/oot/data/World/Gerudo Training Grounds.json deleted file mode 100644 index a5b4f940..00000000 --- a/worlds/oot/data/World/Gerudo Training Grounds.json +++ /dev/null @@ -1,120 +0,0 @@ -[ - { - "region_name": "Gerudo Training Grounds Lobby", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Lobby Left Chest": "can_use(Bow) or can_use(Slingshot)", - "Gerudo Training Grounds Lobby Right Chest": "can_use(Bow) or can_use(Slingshot)", - "Gerudo Training Grounds Stalfos Chest": "is_adult or Kokiri_Sword", - "Gerudo Training Grounds Beamos Chest": "has_explosives and (is_adult or Kokiri_Sword)", - "Wall Fairy": "has_bottle and can_use(Bow)" #in the Beamos room shoot the Gerudo symbol above the door to the lava room. - }, - "exits": { - "Gerudo Fortress": "True", - "Gerudo Training Grounds Heavy Block Room": " - (is_adult or Kokiri_Sword) and - (can_use(Hookshot) or logic_gtg_without_hookshot)", - "Gerudo Training Grounds Lava Room": " - here(has_explosives and (is_adult or Kokiri_Sword))", - "Gerudo Training Grounds Central Maze": "True" - } - }, - { - "region_name": "Gerudo Training Grounds Central Maze", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Hidden Ceiling Chest": "(Small_Key_Gerudo_Training_Grounds, 3) and (logic_lens_gtg or can_use(Lens_of_Truth))", - "Gerudo Training Grounds Maze Path First Chest": "(Small_Key_Gerudo_Training_Grounds, 4)", - "Gerudo Training Grounds Maze Path Second Chest": "(Small_Key_Gerudo_Training_Grounds, 6)", - "Gerudo Training Grounds Maze Path Third Chest": "(Small_Key_Gerudo_Training_Grounds, 7)", - "Gerudo Training Grounds Maze Path Final Chest": "(Small_Key_Gerudo_Training_Grounds, 9)" - }, - "exits": { - "Gerudo Training Grounds Central Maze Right": "(Small_Key_Gerudo_Training_Grounds, 9)" - } - }, - { - "region_name": "Gerudo Training Grounds Central Maze Right", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Maze Right Central Chest": "True", - "Gerudo Training Grounds Maze Right Side Chest": "True", - "Gerudo Training Grounds Freestanding Key": "True" - }, - "exits": { - "Gerudo Training Grounds Hammer Room": "can_use(Hookshot)", - "Gerudo Training Grounds Lava Room": "True" - } - }, - { - "region_name": "Gerudo Training Grounds Lava Room", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Underwater Silver Rupee Chest": " - can_use(Hookshot) and can_play(Song_of_Time) and Iron_Boots and - (logic_fewer_tunic_requirements or can_use(Zora_Tunic))" - }, - "exits": { - "Gerudo Training Grounds Central Maze Right": "can_play(Song_of_Time) or is_child", - "Gerudo Training Grounds Hammer Room": " - can_use(Longshot) or (can_use(Hookshot) and can_use(Hover_Boots))" - } - }, - { - "region_name": "Gerudo Training Grounds Hammer Room", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Hammer Room Clear Chest": "True", - "Gerudo Training Grounds Hammer Room Switch Chest": "can_use(Megaton_Hammer)" - }, - "exits": { - "Gerudo Training Grounds Eye Statue Lower": "can_use(Megaton_Hammer) and Bow", - "Gerudo Training Grounds Lava Room": "True" - } - }, - { - "region_name": "Gerudo Training Grounds Eye Statue Lower", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Eye Statue Chest": "can_use(Bow)" - }, - "exits": { - "Gerudo Training Grounds Hammer Room": "True" - } - }, - { - "region_name": "Gerudo Training Grounds Eye Statue Upper", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Near Scarecrow Chest": "can_use(Bow)" - }, - "exits": { - "Gerudo Training Grounds Eye Statue Lower": "True" - } - }, - { - "region_name": "Gerudo Training Grounds Heavy Block Room", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Before Heavy Block Chest": "True" - }, - "exits": { - "Gerudo Training Grounds Eye Statue Upper": " - (logic_lens_gtg or can_use(Lens_of_Truth)) and - (can_use(Hookshot) or (logic_gtg_fake_wall and can_use(Hover_Boots)))", - "Gerudo Training Grounds Like Like Room": " - can_use(Silver_Gauntlets) and (logic_lens_gtg or can_use(Lens_of_Truth)) and - (can_use(Hookshot) or (logic_gtg_fake_wall and can_use(Hover_Boots)))" - } - }, - { - "region_name": "Gerudo Training Grounds Like Like Room", - "dungeon": "Gerudo Training Grounds", - "locations": { - "Gerudo Training Grounds Heavy Block First Chest": "True", - "Gerudo Training Grounds Heavy Block Second Chest": "True", - "Gerudo Training Grounds Heavy Block Third Chest": "True", - "Gerudo Training Grounds Heavy Block Fourth Chest": "True" - } - } -] diff --git a/worlds/oot/data/World/Overworld.json b/worlds/oot/data/World/Overworld.json index fa01ab60..fca10a7a 100644 --- a/worlds/oot/data/World/Overworld.json +++ b/worlds/oot/data/World/Overworld.json @@ -589,14 +589,14 @@ Gerudo_Membership_Card and can_ride_epona and Bow and at_day", "GF HBA 1500 Points": " Gerudo_Membership_Card and can_ride_epona and Bow and at_day", - "GF North F1 Carpenter": "is_adult or Kokiri_Sword", - "GF North F2 Carpenter": " + "Hideout Jail Guard (1 Torch)": "is_adult or Kokiri_Sword", + "Hideout Jail Guard (2 Torches)": "is_adult or Kokiri_Sword", + "Hideout Jail Guard (3 Torches)": " (is_adult or Kokiri_Sword) and (Gerudo_Membership_Card or can_use(Bow) or can_use(Hookshot) or can_use(Hover_Boots) or logic_gerudo_kitchen)", - "GF South F1 Carpenter": "is_adult or Kokiri_Sword", - "GF South F2 Carpenter": "is_adult or Kokiri_Sword", - "GF Gerudo Membership Card": "can_finish_GerudoFortress", + "Hideout Jail Guard (4 Torches)": "is_adult or Kokiri_Sword", + "Hideout Gerudo Membership Card": "can_finish_GerudoFortress", "GF GS Archery Range": " can_use(Hookshot) and Gerudo_Membership_Card and at_night", "GF GS Top Floor": " @@ -607,7 +607,7 @@ "exits": { "GV Fortress Side": "True", "GF Outside Gate": "'GF Gate Open'", - "Gerudo Training Grounds Lobby": "Gerudo_Membership_Card and is_adult", + "Gerudo Training Ground Lobby": "Gerudo_Membership_Card and is_adult", "GF Storms Grotto": "is_adult and can_open_storm_grotto" # Not there as child } }, @@ -1290,7 +1290,7 @@ }, "exits": { "Graveyard Shield Grave": "is_adult or at_night", - "Graveyard Composers Grave": "can_play(Zeldas_Lullaby)", + "Graveyard Royal Familys Tomb": "can_play(Zeldas_Lullaby)", "Graveyard Heart Piece Grave": "is_adult or at_night", "Graveyard Dampes Grave": "is_adult", "Graveyard Dampes House": "is_adult or at_dampe_time", @@ -1321,12 +1321,12 @@ } }, { - "region_name": "Graveyard Composers Grave", - "pretty_name": "the Composers' Grave", - "scene": "Graveyard Composers Grave", + "region_name": "Graveyard Royal Familys Tomb", + "pretty_name": "the Royal Family's Tomb", + "scene": "Graveyard Royal Familys Tomb", "locations": { - "Graveyard Composers Grave Chest": "has_fire_source", - "Song from Composers Grave": " + "Graveyard Royal Familys Tomb Chest": "has_fire_source", + "Song from Royal Familys Tomb": " is_adult or (Slingshot or Boomerang or Sticks or has_explosives or Kokiri_Sword)" diff --git a/worlds/oot/data/generated/rom_patch.txt b/worlds/oot/data/generated/rom_patch.txt index 78e8e76f..67225a58 100644 --- a/worlds/oot/data/generated/rom_patch.txt +++ b/worlds/oot/data/generated/rom_patch.txt @@ -1,7 +1,7 @@ -10,107b723a -14,b03a17fc +10,107b6b3a +14,36f34be0 d1b0,3480000 -d1b4,348ef80 +d1b4,348f310 d1b8,3480000 d1c0,0 d1c4,0 @@ -186,23 +186,23 @@ d288,0 89ebe8,0 89ebec,0 89ebf0,0 -a88f78,c102366 -a89048,c10237f -a98c30,c1003c6 -a9e838,810077c -ac7ad4,c100346 +a88f78,c1023a6 +a89048,c1023bf +a98c30,c1003c5 +a9e838,810077b +ac7ad4,c100345 ac8608,902025 ac860c,848e00a4 ac8610,34010043 ac8614,0 ac8618,0 ac91b4,0 -ac9abc,c100407 +ac9abc,c100406 ac9ac0,0 -accd34,c1004c1 +accd34,c1004c0 accd38,8e190000 -accde0,c101b73 -acce18,c1008d6 +accde0,c101ba4 +acce18,c1008d5 acce1c,8e0200a4 acce20,1060001e acce24,0 @@ -211,7 +211,7 @@ acce2c,0 acce34,0 acce38,0 acce3c,0 -acce88,c101a37 +acce88,c101a68 acce8c,34040001 acce90,0 acce94,0 @@ -229,45 +229,45 @@ adaa78,0 adaba8,0 adabcc,0 adabe4,0 -ae5764,81006a2 +ae5764,81006a1 ae5768,0 -ae59e0,81006be -ae5df8,c1003ff +ae59e0,81006bd +ae5df8,c1003fe ae5e04,0 ae74d8,340e0000 ae807c,6010007 ae8080,84b80030 -ae8084,c100b2d +ae8084,c100b23 ae8088,0 ae8090,0 ae8094,0 ae8098,0 -ae986c,8100b0d +ae986c,8100b03 ae9870,3c01800f ae9ed8,35ee0000 -aeb67c,c1009b3 +aeb67c,c1009b2 aeb680,0 aeb764,26380008 aeb768,ae9802b0 -aeb76c,c101daf +aeb76c,c101de0 aeb778,400821 -af1814,c100e6e +af1814,c100e64 af1818,0 af74f8,afbf0044 -af74fc,c100a3e +af74fc,c100a34 af7500,0 af7504,8fbf0044 af7650,afbf0034 -af7654,c100a4c +af7654,c100a42 af7658,0 af765c,8fbf0034 af76b8,afbf000c -af76bc,c100a33 +af76bc,c100a29 af76c4,8fbf000c b06400,820f0ede b0640c,31f80002 b06bb8,34190000 -b06c2c,c1007bd +b06c2c,c1007bc b06c30,a2280020 b10218,afa40020 b1021c,30a8fffe @@ -319,22 +319,23 @@ b10320,242983fc b10324,242a82c4 b10328,242b83e4 b1032c,242c83d8 -b10cc0,c1004a9 +b10cc0,c1004a8 b10cc4,3c010001 -b12a34,c100655 +b12a34,c100654 b12a38,0 -b12a60,8101f93 -b12e44,8101fa2 +b12a60,8101fc2 +b12e30,c101fd3 +b12e44,8101fe2 b17bb4,afbf001c b17bb8,afa40140 b17bbc,3c048040 -b17bc0,3406ef80 +b17bc0,3406f310 b17bc4,c00037c b17bc8,3c050348 -b17bcc,c100339 +b17bcc,c100338 b17bd0,0 b17bd4,0 -b2b488,c100bf8 +b2b488,c100bee b2b48c,0 b2b490,0 b2b494,0 @@ -343,7 +344,7 @@ b2b49c,0 b2b4f0,3c048013 b2b4f4,24848a50 b2b4f8,3c058040 -b2b4fc,24a52fc0 +b2b4fc,24a52f98 b2b500,c015c0c b2b504,34060018 b2b508,3c048013 @@ -364,53 +365,53 @@ b2e830,8ca5b188 b2e854,3c058001 b2e858,8ca5b198 b3dd3c,3c018040 -b3dd40,8c242fd8 +b3dd40,8c242fb0 b3dd44,c02e195 -b3dd48,8c252fdc +b3dd48,8c252fb4 b3dd4c,8fbf0014 b3dd54,27bd0018 -b51694,c1007d0 -b516c4,c1007d7 -b52784,c1007f1 +b51694,c1007cf +b516c4,c1007d6 +b52784,c1007f0 b52788,0 b5278c,8fbf003c b5293c,10000018 -b54b38,c10076b -b54e5c,c100758 +b54b38,c10076a +b54e5c,c100757 b55428,a42063ed -b55a64,c1007a2 +b55a64,c1007a1 b575c8,acae0000 b58320,afbf0000 -b58324,c1009f8 +b58324,c1009ee b58328,0 b5832c,8fbf0000 b58330,0 b7ec4c,8009a3ac -ba16ac,c100ce2 +ba16ac,c100cd8 ba16b0,a42fca2a -ba16e0,c100ced +ba16e0,c100ce3 ba16e4,a439ca2a ba18c4,340c00c8 ba1980,340800c8 ba19dc,0 -ba1c68,c100cf8 +ba1c68,c100cee ba1c6c,a42dca2a ba1c70,850e4a38 -ba1cd0,c100d03 +ba1cd0,c100cf9 ba1cd4,a439ca2a -ba1d04,c100d0e +ba1d04,c100d04 ba1d08,0 ba1e20,340d00c8 -ba32cc,c100d19 +ba32cc,c100d0f ba32d0,a439ca2a -ba3300,c100d24 +ba3300,c100d1a ba3304,a42bca2a ba34dc,341800c8 ba3654,0 ba39d0,340d00c8 -baa168,c100ccc +baa168,c100cc2 baa16c,a42eca2a -baa198,c100cd7 +baa198,c100ccd baa19c,a42dca2a baa3ac,a07025 bac064,7821 @@ -421,10 +422,10 @@ bae5a4,a46b4a6c bae5c8,0 bae864,0 baed6c,0 -baf4f4,c100d2f +baf4f4,c100d25 baf4f8,2002025 baf738,102825 -baf73c,c101877 +baf73c,c101848 baf740,330400ff baf744,8fb00018 baf748,8fbf001c @@ -456,91 +457,92 @@ bb6134,0 bb6138,0 bb61e0,0 bb61e4,0 -bb6688,c100664 +bb6688,c100663 bb668c,0 -bb67c4,c100664 +bb67c4,c100663 bb67c8,1826021 -bb6cf0,c100693 +bb6cf0,c100692 bb6cf4,0 bb77b4,0 bb7894,0 bb7ba0,0 bb7bfc,0 -bb7c88,c10065e +bb7c88,c10065d bb7c8c,1cf8821 -bb7d10,c10065e +bb7d10,c10065d bb7d14,0 -bc088c,c100671 +bc088c,c100670 bc0890,0 -bcdbd8,c100d41 -bcecbc,8100377 +bcdbd8,c100d37 +bcecbc,8100376 bcecc0,0 bcecc4,0 bcecc8,0 bceccc,0 bcecd0,0 bcf73c,afbf0000 -bcf740,c10080f +bcf740,c10080e bcf744,0 bcf748,8fbf0000 -bcf914,c100807 +bcf914,c100806 bcf918,0 -bd4c58,c100ba1 +bd4c58,c100b97 bd4c5c,270821 -bd5c58,c1005c0 +bd5c58,c1005bf bd5c5c,301c825 -bd6958,c100a29 +bd6958,c100a1f bd695c,0 -bd9a04,c1009d9 +bd9a04,c1009cf bd9a08,0 -bda0a0,c10034a -bda0d8,c100367 +bda0a0,c100349 +bda0d8,c100366 bda0e4,0 -bda264,c10036a +bda264,c100369 bda270,0 -bda2e8,c100385 +bda2e8,c100384 bda2ec,812a0002 bda2f0,5600018 bda2f4,0 -be1bc8,c1005d1 +be1bc8,c1005d0 be1bcc,afa50034 be1c98,3c014218 -be4a14,c100e1c -be4a40,c100e36 -be4a60,8100e4e +be4a14,c100e12 +be4a40,c100e2c +be4a60,8100e44 be4a64,0 -be5d8c,c100e78 +be5d8c,c100e6e be5d90,0 -be9ac0,c1003a1 -be9ad8,c1003ac +be9ac0,c1003a0 +be9ad8,c1003ab be9adc,8fa20024 be9ae4,8fa40028 be9bdc,24018383 -bea044,c100485 +bea044,c100484 bea048,0 -c004ec,81005fa +c004ec,81005f9 c0067c,28610064 c0082c,340e0018 c00830,8c4f00a0 -c01078,c100844 +c01078,c100843 c0107c,0 c01080,0 c01084,0 c01088,0 c0108c,0 -c018a0,c10060f -c064bc,c1009bd -c06e5c,c1009bd -c0722c,c1009bd -c07230,add80008 -c07494,c1009bd -c075a8,c1009c8 -c07648,c1009c8 -c0e77c,c1007b7 +c018a0,c10060e +c06198,c1009bc +c064bc,920201ec +c06e5c,920201ec +c07230,920201ec +c07494,920201ec +c075a8,931901ed +c07648,931901ed +c0796c,1f0 +c0e77c,c1007b6 c0e780,ac400428 -c5a9f0,c100cc7 -c6c7a8,c10061f -c6c920,c10061f +c5a9f0,c100cbd +c6c7a8,c10061e +c6c920,c10061e c6cedc,340b0001 c6ed84,946f00a2 c6ed88,31f80018 @@ -550,7 +552,7 @@ c6ff38,4600848d c6ff3c,44069000 c6ff44,27bdffe8 c6ff48,afbf0004 -c6ff4c,c100a04 +c6ff4c,c1009fa c6ff50,0 c6ff54,8fbf0004 c6ff58,27bd0018 @@ -561,7 +563,7 @@ c6ff68,0 c6ff6c,0 c6ff70,0 c6ff74,0 -c72c64,c100bdf +c72c64,c100bd5 c72c68,2002021 c72c70,15e00006 c72c74,0 @@ -575,32 +577,32 @@ c7bd08,0 c82550,0 c892dc,340e0001 c8931c,340a0001 -c89744,c1003d3 +c89744,c1003d2 c89868,920e1d28 c898a4,92191d29 c898c8,920a1d2a -c8b24c,c100504 +c8b24c,c100503 c8b250,2002025 -ca6dc0,81023a1 +ca6dc0,81023e1 ca6dc4,0 -cb6874,c10069c -cc0038,c100465 +cb6874,c10069b +cc0038,c100464 cc003c,8fa40018 cc3fa8,a20101f8 cc4024,0 -cc4038,c1009a2 +cc4038,c1009a1 cc403c,240c0004 cc453c,806 -cc8594,c1005e4 +cc8594,c1005e3 cc8598,24180006 -cc85b8,c100e01 +cc85b8,c100df7 cc85bc,afa50064 -cce9a4,c100ec0 +cce9a4,c100eb6 cce9a8,8e04011c cdf3ec,0 cdf404,0 -cdf420,c1005b4 -cdf638,c1005c8 +cdf420,c1005b3 +cdf638,c1005c7 cdf63c,e7a40034 cdf790,2405001e cf1ab8,0 @@ -609,44 +611,44 @@ cf1ac0,31280040 cf1ac4,35390040 cf1ac8,af19b4a8 cf1acc,34090006 -cf73c8,c100bb9 +cf73c8,c100baf cf73cc,3c010001 -cf7ad4,c1005ae +cf7ad4,c1005ad cf7ad8,afa50044 d12f78,340f0000 -d357d4,c100b1b +d357d4,c100b11 d35efc,0 d35f54,10000008 -d4bcb0,c100ddc +d4bcb0,c100dd2 d4bcb4,8619001c -d4be6c,c100986 -d52698,c1004e0 +d4be6c,c100985 +d52698,c1004df d5269c,8e190024 -d5b264,c100aa9 -d5b660,8100aac +d5b264,c100a9f +d5b660,8100aa2 d5b664,0 -d5ff94,c100eb6 +d5ff94,c100eac d5ff98,44d9f800 -d62100,c100c69 +d62100,c100c5f d62110,3c014248 d62128,0 d6215c,0 -d621cc,c100c77 +d621cc,c100c6d d621dc,3c014248 d6221c,0 -d68d68,c100c21 +d68d68,c100c17 d68d6c,afb20044 d68d70,3c098040 -d68d74,2529307c +d68d74,25293054 d68d78,81290000 d68d7c,11200186 d68d80,8fbf004c -d68d84,c100c35 +d68d84,c100c2b d68d88,f7b80030 -d69c80,c100c3d -d6cc18,c100cbf +d69c80,c100c33 +d6cc18,c100cb5 d6cc1c,0 -d6cdd4,c100cc3 +d6cdd4,c100cb9 d6cdd8,0 d73118,0 d73128,0 @@ -713,34 +715,34 @@ d7e8d4,340e0001 d7e8d8,804f0ede d7e8e0,5700000f d7eb4c,0 -d7eb70,c100d5e +d7eb70,c100d54 d7eb74,acc80004 d7ebbc,0 -d7ebc8,c100d66 +d7ebc8,c100d5c d7ebf0,27bdffe8 d7ebf4,afbf0014 -d7ebf8,c100d71 +d7ebf8,c100d67 d7ebfc,8ca21c44 d7ec04,0 -d7ec10,c100d75 +d7ec10,c100d6b d7ec14,971804c6 d7ec2c,0 -d7ec34,c100d8c +d7ec34,c100d82 d7ec40,0 d7ec54,0 -d7ec60,8100d7e -d7ec70,8100da4 +d7ec60,8100d74 +d7ec70,8100d9a db13d0,24090076 -db532c,c100435 -db53e8,81023d3 +db532c,c100434 +db53e8,8102413 db53ec,0 dbec80,34020000 -dbf428,c1007f9 +dbf428,c1007f8 dbf434,44989000 dbf438,e652019c dbf484,0 dbf4a8,0 -dc7090,c100819 +dc7090,c100818 dc7094,c60a0198 dc87a0,0 dc87bc,0 @@ -760,7 +762,7 @@ dd3754,3c064000 dd375c,3c074000 dd3760,0 dd3764,0 -de1018,c1023ec +de1018,c10242c de101c,0 de1020,0 de1024,0 @@ -770,20 +772,20 @@ de1030,0 de1034,0 de1038,0 de103c,0 -de1050,81023ec +de1050,810242c de1054,0 df2644,76 df7a90,340e0018 df7a94,8c4f00a0 -df7cb0,c10063f +df7cb0,c10063e dfec3c,3c188012 dfec40,8f18ae8c dfec48,33190010 dfec4c,0 e09f68,806f0ede e09f74,31f80004 -e09fb0,c100422 -e0ec50,c100c0f +e09fb0,c100421 +e0ec50,c100c05 e0ec54,2202825 e11e98,9442a674 e11e9c,304e0040 @@ -798,35 +800,35 @@ e11ebc,0 e11ec0,0 e11ec4,0 e11ec8,0 -e11f90,c1004eb +e11f90,c1004ea e11f94,0 -e12a04,c100e55 +e12a04,c100e4b e12a20,ac8302a4 e1f72c,27bdffe8 e1f730,afbf0014 -e1f734,c100e9a +e1f734,c100e90 e1f738,0 e1f73c,8fbf0014 e1f740,27bd0018 e1f744,28410005 e1f748,14200012 e1f74c,24010005 -e1feac,c100eac +e1feac,c100ea2 e1feb0,3c0743cf -e20410,c100b47 +e20410,c100b3d e20414,0 -e206dc,c100b55 +e206dc,c100b4b e206e0,0 -e2076c,c100b65 +e2076c,c100b5b e20770,afa40020 -e20798,c100b5d +e20798,c100b53 e2079c,0 -e24e7c,c1004b8 +e24e7c,c1004b7 e24e80,0 -e29388,8100443 -e2a044,c10044c -e2b0b4,c100454 -e2b434,c100857 +e29388,8100442 +e2a044,c10044b +e2b0b4,c100453 +e2b434,c100856 e2b438,0 e2b43c,0 e2b440,0 @@ -838,28 +840,28 @@ e2b454,0 e2b458,0 e2b45c,0 e2b460,0 -e2c03c,c100979 +e2c03c,c100978 e2c040,2442a5d0 e2cc1c,3c058012 e2cc20,24a5a5d0 e2cc24,86080270 e2cc28,15000009 e2cc2c,90b9008a -e2d714,c100826 +e2d714,c100825 e2d71c,340900bf e2d720,0 -e2d890,c100835 +e2d890,c100834 e2d894,0 e2f090,34 -e429dc,c100559 +e429dc,c100558 e429e0,0 e429e4,10000053 e429e8,0 -e42b5c,c10053f +e42b5c,c10053e e42b64,1000000d e42b68,0 -e42c00,c100537 -e42c44,c1005a0 +e42c00,c100536 +e42c44,c10059f e42c48,860e008a e42c4c,15400045 e50888,340403e7 @@ -867,18 +869,37 @@ e55c4c,340c0000 e56290,0 e56294,340b401f e56298,0 -e565d0,c100c00 +e565d0,c100bf6 e565d4,0 e565d8,2002025 +e571d0,3c038041 +e571d4,906db5a4 +e571d8,340c0001 +e571dc,11ac0004 +e571e0,0 +e57208,3c038041 +e5720c,906db5a4 +e57210,340c0002 +e57214,11ac000d +e57218,0 +e5721c,0 +e57220,0 +e57224,0 +e57228,0 +e5722c,0 +e57230,0 +e57234,0 +e57238,0 +e5723c,0 e59cd4,0 e59cd8,0 -e59e68,8102425 +e59e68,8102465 e59e6c,0 -e59ecc,810244e +e59ecc,810248e e59ed0,0 -e5b2f4,c100e83 +e5b2f4,c100e79 e5b2f8,afa5001c -e5b538,c100e8f +e5b538,c100e85 e5b53c,3c07461c e62630,a48001f8 e62634,2463a5d0 @@ -934,7 +955,7 @@ e6befc,0 e6bf4c,340d0000 e6bf50,0 e7cc90,240e000c -e7d19c,c100d35 +e7d19c,c100d2b e7d1a0,3c050600 e7d1a4,10a80003 e7d1a8,3025 @@ -954,19 +975,19 @@ e9f5b0,3e00008 e9f5b4,0 e9f5b8,0 e9f5bc,0 -e9f678,c1004eb +e9f678,c1004ea e9f67c,0 -e9f7a8,c1004eb +e9f7a8,c1004ea e9f7ac,0 -ebb85c,c10062a +ebb85c,c100629 ebb864,14400012 ebb86c,10000014 -ec1120,c1004eb +ec1120,c1004ea ec1124,0 ec68bc,8fad002c ec68c0,340c000a ec68c4,a5ac0110 -ec68c8,c101b31 +ec68c8,c101b62 ec68cc,2002021 ec68d0,0 ec68d4,0 @@ -976,14 +997,14 @@ ec68e0,0 ec69ac,8fad002c ec69b0,340c000a ec69b4,a5ac0110 -ec69b8,c101b31 +ec69b8,c101b62 ec69bc,2002021 ec69c0,0 ec69c4,0 ec69c8,0 ec69cc,0 ec69d0,0 -ec6b04,81023ba +ec6b04,81023fa ec6b08,0 ec9ce4,2419007a ed2858,20180008 @@ -991,9 +1012,9 @@ ed2fac,806e0f18 ed2fec,340a0000 ed5a28,340e0018 ed5a2c,8ccf00a0 -ed645c,c100822 +ed645c,c100821 ed6460,0 -ee7b84,c100950 +ee7b84,c10094f ee7b8c,0 ee7b90,0 ee7b94,0 @@ -1001,19 +1022,19 @@ ee7b98,0 ee7b9c,0 ee7ba0,0 ee7ba4,0 -ee7e4c,c100a8f -ef32b8,c100a84 +ee7e4c,c100a85 +ef32b8,c100a7a ef32bc,0 ef32c0,8fbf003c -ef36e4,c100a5a +ef36e4,c100a50 ef36e8,0 -ef373c,c100a6c -ef4f98,c100795 +ef373c,c100a62 +ef4f98,c100794 ef4f9c,0 26c10e0,38ff 3480000,80400020 3480004,80400844 -3480008,80409fd4 +3480008,8040a314 3480020,3 3480034,dfdfdfdf 3480038,dfdfdfdf @@ -1546,12054 +1567,12279 @@ ef4f9c,0 3480888,100 3480cd0,640000 3480cd4,100 -3480ce4,27bdffe8 -3480ce8,afbf0010 -3480cec,c101f73 -3480cf4,3c028012 -3480cf8,2442d2a0 -3480cfc,240e0140 -3480d00,3c018010 -3480d04,ac2ee500 -3480d08,240f00f0 -3480d0c,8fbf0010 -3480d10,3e00008 -3480d14,27bd0018 -3480d18,3c088040 -3480d1c,ac4815d4 -3480d20,3e00008 -3480d24,340215c0 -3480d28,308400ff -3480d2c,3c088012 -3480d30,2508a5d0 -3480d34,3401008c -3480d38,10810016 -3480d3c,91020075 -3480d40,3401008d -3480d44,10810013 -3480d48,91020075 -3480d4c,10800011 -3480d50,91020074 -3480d54,3401008a -3480d58,1081000e -3480d5c,91020074 -3480d60,3401008b -3480d64,1081000b -3480d68,91020074 -3480d6c,34010058 -3480d70,10810008 -3480d74,34020000 -3480d78,34010078 -3480d7c,10810005 -3480d80,34020000 -3480d84,34010079 -3480d88,10810002 -3480d8c,34020000 -3480d90,340200ff -3480d94,3e00008 -3480d9c,8fa60030 -3480da0,810036d -3480da4,84c50004 -3480da8,8fb9002c -3480dac,810036d -3480db0,87250004 -3480db4,3c0a8041 -3480db8,254ab1e8 -3480dbc,8d4a0000 -3480dc0,11400004 -3480dc8,3c058041 -3480dcc,24a5b1dc -3480dd0,8ca50000 -3480dd4,3e00008 -3480ddc,3c088041 -3480de0,2508b1e8 -3480de4,8d080000 -3480de8,11000004 -3480df0,3c038041 -3480df4,2463b1d8 -3480df8,8c630000 -3480dfc,30fc3 -3480e00,614026 -3480e04,1014023 -3480e08,a0880852 -3480e0c,3e00008 -3480e14,3c088040 -3480e18,25080cd6 -3480e1c,91080000 -3480e20,1500000c -3480e24,240bffff -3480e28,3c088041 -3480e2c,2508b1e8 -3480e30,8d080000 -3480e34,11000007 -3480e38,1405821 -3480e3c,3c088041 -3480e40,2508b1d4 -3480e44,8d080000 -3480e48,15000002 -3480e4c,240bffff -3480e50,340b0001 -3480e54,5600009 -3480e5c,27bdffe8 -3480e60,afab0010 -3480e64,afbf0014 -3480e68,c01c508 -3480e70,8fab0010 -3480e74,8fbf0014 -3480e78,27bd0018 -3480e7c,3e00008 -3480e84,90450003 -3480e88,3c088041 -3480e8c,2508b1e8 -3480e90,8d080000 -3480e94,11000004 -3480e9c,3c058041 -3480ea0,24a5b1e0 -3480ea4,8ca50000 -3480ea8,3e00008 -3480eb0,27bdffe8 -3480eb4,afb00010 -3480eb8,afbf0014 -3480ebc,3c088041 -3480ec0,2508b1ec -3480ec4,8d080000 -3480ec8,31080001 -3480ecc,1500000b -3480ed0,34100041 -3480ed4,3c048041 -3480ed8,2484b1e8 -3480edc,8c840000 -3480ee0,10800006 -3480ee4,90500000 -3480ee8,3c088041 -3480eec,2508b1e4 -3480ef0,8d100000 -3480ef4,c101eca -3480efc,c101a84 -3480f04,2002821 -3480f08,8fb00010 -3480f0c,8fbf0014 -3480f10,3e00008 -3480f14,27bd0018 -3480f18,27bdffe0 -3480f1c,afa70010 -3480f20,afa20014 -3480f24,afa30018 -3480f28,afbf001c -3480f2c,c101af5 -3480f30,e02821 -3480f34,8fa70010 -3480f38,8fa20014 -3480f3c,8fa30018 -3480f40,8fbf001c -3480f44,3e00008 -3480f48,27bd0020 -3480f4c,27bdffe8 -3480f50,afbf0010 -3480f54,8c881d2c -3480f58,34090001 -3480f5c,94e00 -3480f60,1091024 -3480f64,10400021 -3480f6c,94ca02dc -3480f70,3c0b8012 -3480f74,256ba5d0 -3480f78,948c00a4 -3480f7c,3401003d -3480f80,1181000a -3480f88,8a6021 -3480f8c,918d1d28 -3480f90,15a00014 -3480f98,340d0001 -3480f9c,a18d1d28 -3480fa0,254a0013 -3480fa4,1000000a -3480fac,340c0001 -3480fb0,14c6004 -3480fb4,916d0ef2 -3480fb8,1ac7024 -3480fbc,15c00009 -3480fc4,1ac7025 -3480fc8,a16e0ef2 -3480fcc,254a0010 -3480fd0,1294827 -3480fd4,1094024 -3480fd8,ac881d2c -3480fdc,c101a37 -3480fe0,1402021 -3480fe4,c1024f2 -3480fec,8fbf0010 -3480ff0,34020000 -3480ff4,3e00008 -3480ff8,27bd0018 -3480ffc,27bdffe8 -3481000,afbf0010 -3481004,c101a37 -3481008,20e4ffc6 -348100c,340200ff -3481010,8fbf0010 -3481014,3e00008 -3481018,27bd0018 -348101c,27bdffe0 -3481020,afa10010 -3481024,afa30014 -3481028,afbf0018 -348102c,c101a37 -3481030,34040023 -3481034,8fa10010 -3481038,8fa30014 -348103c,8fbf0018 -3481040,3e00008 -3481044,27bd0020 -3481048,27bdffe0 -348104c,afa60010 -3481050,afa70014 -3481054,afbf0018 -3481058,3c018012 -348105c,2421a5d0 -3481060,80280ede -3481064,35080001 -3481068,a0280ede -348106c,c101a37 -3481070,34040027 -3481074,8fa60010 -3481078,8fa70014 -348107c,8fbf0018 -3481080,3e00008 -3481084,27bd0020 -3481088,27bdffe8 -348108c,afa30010 -3481090,afbf0014 -3481094,3c018012 -3481098,2421a5d0 -348109c,80280ede -34810a0,35080004 -34810a4,a0280ede -34810a8,3c188040 -34810ac,83180cd8 -34810b0,13000003 -34810b8,c101a37 -34810bc,34040029 -34810c0,240f0001 -34810c4,8fa30010 -34810c8,8fbf0014 -34810cc,3e00008 -34810d0,27bd0018 -34810d4,27bdffd8 -34810d8,afa40010 -34810dc,afa20014 -34810e0,afaf0018 -34810e4,afbf0020 -34810e8,c101a37 -34810ec,3404002a -34810f0,34050003 -34810f4,8fa40010 -34810f8,8fa20014 -34810fc,8faf0018 -3481100,8fbf0020 -3481104,3e00008 -3481108,27bd0028 -348110c,607821 -3481110,81ec0edf -3481114,318e0080 -3481118,11c00003 -348111c,34030005 -3481120,3e00008 -3481124,34020002 -3481128,3e00008 -348112c,601021 -3481130,85c200a4 -3481134,3c088012 -3481138,2508a5d0 -348113c,81090edf -3481140,35290080 -3481144,a1090edf -3481148,3e00008 -3481150,27bdfff0 -3481154,afbf0004 -3481158,c035886 -3481160,3c0c8012 -3481164,258ca5d0 -3481168,858d0f2e -348116c,8d980004 -3481170,13000002 -3481174,340e0001 -3481178,340e0002 -348117c,1ae6825 -3481180,a58d0f2e -3481184,8fbf0004 -3481188,27bd0010 -348118c,3e00008 -3481194,24090041 -3481198,27bdffe0 -348119c,afa80004 -34811a0,afa90008 -34811a4,afaa000c -34811a8,afac0010 -34811ac,3c0affff -34811b0,a5403 -34811b4,3c08801d -34811b8,850c894c -34811bc,118a0002 -34811c4,a500894c -34811c8,3c08801e -34811cc,810a887c -34811d0,11400009 -34811d8,3c090036 -34811dc,94c03 -34811e0,a109887c -34811e4,3c090002 -34811e8,94c03 -34811ec,a109895f -34811f0,3c08801f -34811f4,a1008d38 -34811f8,8fac0010 -34811fc,8faa000c -3481200,8fa90008 -3481204,8fa80004 -3481208,3e00008 -348120c,27bd0020 -3481214,3c0a8010 -3481218,254ae49c -348121c,8d4a0000 -3481220,1140001e -3481228,3c08801d -348122c,250884a0 -3481230,3c0b0001 -3481234,356b04c4 -3481238,10b4020 -348123c,85090000 -3481240,3c0b0002 -3481244,356b26cc -3481248,14b5020 -348124c,94840 -3481250,12a5021 -3481254,85490000 -3481258,a5091956 -348125c,3c0c801e -3481260,258c84a0 -3481264,34090003 -3481268,a1891e5e -348126c,34090014 -3481270,a1091951 -3481274,34090001 -3481278,3c018040 -348127c,a0291210 -3481280,3c088012 -3481284,2508a5d0 -3481288,850913d2 -348128c,11200003 -3481294,34090001 -3481298,a50913d4 -348129c,3e00008 -34812a4,3421241c -34812a8,3c0d8040 -34812ac,25ad1210 -34812b0,81a90000 -34812b4,11200008 -34812b8,862a00a4 -34812bc,340b005e -34812c0,114b0005 -34812c4,3c0c801e -34812c8,258c84a0 -34812cc,34090003 -34812d0,a1891e5e -34812d4,a1a00000 -34812d8,3e00008 -34812e0,3c02801d -34812e4,244284a0 -34812e8,3c010001 -34812ec,411020 -34812f0,3401047e -34812f4,a4411e1a -34812f8,34010014 -34812fc,3e00008 -3481300,a0411e15 -3481304,27bdffe8 -3481308,afbf0014 -348130c,afa40018 -3481310,8e190004 -3481314,17200015 -3481318,8e190000 -348131c,3c018010 -3481320,24219c90 -3481324,19c880 -3481328,3210820 -348132c,90210000 -3481330,34190052 -3481334,1721000d -3481338,8e190000 -348133c,960200a6 -3481340,304c0007 -3481344,398c0007 -3481348,15800008 -348134c,240400aa -3481350,c00a22d -3481358,14400004 -348135c,8e190000 -3481360,341900db -3481364,10000002 -3481368,ae190000 -348136c,340101e1 -3481370,8fbf0014 -3481374,8fa40018 -3481378,3e00008 -348137c,27bd0018 -3481380,3c088040 -3481384,81080cdf -3481388,11000005 -348138c,3c018012 -3481390,2421a5d0 -3481394,80280ed6 -3481398,35080001 -348139c,a0280ed6 -34813a0,34080000 -34813a4,3e00008 -34813a8,adf90000 -34813ac,3c0b801d -34813b0,256b84a0 -34813b4,856b00a4 -34813b8,340c005a -34813bc,156c0003 -34813c0,340b01a5 -34813c4,a42b1e1a -34813c8,1000000e -34813cc,3c0c8012 -34813d0,258ca5d0 -34813d4,8d8c0004 -34813d8,15800008 -34813dc,3c0b8040 -34813e0,816b0cdf -34813e4,11600007 -34813e8,842b1e1a -34813ec,340c01a5 -34813f0,116c0002 -34813f8,10000002 -34813fc,340b0129 -3481400,a42b1e1a -3481404,3e00008 -3481410,2202825 -3481414,3c0a801e -3481418,254aaa30 -348141c,c544002c -3481420,3c0bc43c -3481424,256b8000 -3481428,448b3000 -348142c,4606203c -3481434,45000026 -348143c,c5440024 -3481440,3c0bc28a -3481444,448b3000 -3481448,4606203c -3481450,4501001f -3481458,3c0b41c8 -348145c,448b3000 -3481460,4606203c -3481468,45000019 -3481470,3c098040 -3481474,2529140c -3481478,814b0424 -348147c,1160000e -3481480,812e0000 -3481484,340c007e -3481488,116c000b -3481490,15c00009 -3481494,340c0001 -3481498,a12c0000 -348149c,3c0dc1a0 -34814a0,ad4d0024 -34814a4,3c0d4120 -34814a8,ad4d0028 -34814ac,3c0dc446 -34814b0,25ad8000 -34814b4,ad4d002c -34814b8,11c00005 -34814c0,15600003 -34814c4,340d8000 -34814c8,a54d00b6 -34814cc,a1200000 -34814d0,3e00008 -34814dc,3c0a801e -34814e0,254aaa30 -34814e4,8d4b066c -34814e8,3c0cd000 -34814ec,258cffff -34814f0,16c5824 -34814f4,3e00008 -34814f8,ad4b066c -34814fc,27bdffe0 -3481500,afbf0014 -3481504,afa40018 -3481508,1c17825 -348150c,ac4f0680 -3481510,34040001 -3481514,c01b638 -348151c,3c088040 -3481520,81080cd8 -3481524,15000007 -348152c,3c04801d -3481530,248484a0 -3481534,3c058040 -3481538,80a50cd9 -348153c,c037500 -3481544,8fa40018 -3481548,8c880138 -348154c,8d090010 -3481550,252a03d4 -3481554,ac8a029c -3481558,8fbf0014 -348155c,3e00008 -3481560,27bd0020 -3481564,27bdffe0 -3481568,afbf0014 -348156c,afa40018 -3481570,3c088040 -3481574,81080cd8 -3481578,1500001a -3481580,3c09801e -3481584,2529887c -3481588,81280000 -348158c,340b0036 -3481590,150b001e -3481598,3c088040 -348159c,810814d8 -34815a0,1500001a -34815a8,34080001 -34815ac,3c018040 -34815b0,a02814d8 -34815b4,3c04801d -34815b8,248484a0 -34815bc,3c058040 -34815c0,90a50cda -34815c4,34060000 -34815c8,c037385 -34815d0,34044802 -34815d4,c0191bc -34815dc,10000025 -34815e4,3c04801d -34815e8,248484a0 -34815ec,34050065 -34815f0,c01bf73 -34815f8,34040032 -34815fc,c01b638 -3481604,1000000c -348160c,8fa40018 -3481610,3c05801d -3481614,24a584a0 -3481618,c008ab4 -3481620,10400014 -3481628,3c088040 -348162c,810814d8 -3481630,11000010 -3481638,8fa40018 -348163c,8c880138 -3481640,8d090010 -3481644,252a035c -3481648,ac8a029c -348164c,3c028012 -3481650,2442a5d0 -3481654,94490ee0 -3481658,352a0020 -348165c,a44a0ee0 -3481660,8c880004 -3481664,3c09ffff -3481668,2529ffff -348166c,1094024 -3481670,ac880004 -3481674,8fbf0014 -3481678,3e00008 -348167c,27bd0020 -3481680,860f00b6 -3481684,9739b4ae -3481688,3c09801e -348168c,2529aa30 -3481690,812a0424 -3481694,11400004 -348169c,3409007e -34816a0,15490003 -34816a8,3e00008 -34816ac,340a0000 -34816b0,3e00008 -34816b4,340a0001 -34816b8,8c8e0134 -34816bc,15c00002 -34816c0,3c0e4480 -34816c4,ac8e0024 -34816c8,3e00008 -34816cc,8fae0044 -34816d0,260501a4 -34816d4,27bdffe0 -34816d8,afbf0014 -34816dc,afa50018 -34816e0,8625001c -34816e4,52a03 -34816e8,c008134 -34816ec,30a5003f -34816f0,8fa50018 -34816f4,8fbf0014 -34816f8,3e00008 -34816fc,27bd0020 -3481700,ae19066c -3481704,8e0a0428 -3481708,3c09801e -348170c,2529aa30 -3481710,854b00b6 -3481714,216b8000 -3481718,3e00008 -348171c,a52b00b6 -3481720,3c08801e -3481724,2508aa30 -3481728,810a0434 -348172c,340b0008 -3481730,154b0002 -3481734,34090007 -3481738,a1090434 -348173c,3e00008 -3481740,c606000c -3481744,3c08801e -3481748,2508aa30 -348174c,8d0901ac -3481750,3c0a0400 -3481754,254a2f98 -3481758,152a000b -348175c,8d0b01bc -3481760,3c0c42cf -3481764,156c0003 -3481768,3c0d4364 -348176c,10000006 -3481770,ad0d01bc -3481774,3c0c4379 -3481778,156c0003 -348177c,3c09803b -3481780,2529967c -3481784,ad090664 -3481788,3e00008 -348178c,260501a4 -3481790,a498017c -3481794,3c08801d -3481798,250884a0 -348179c,850900a4 -34817a0,340a0002 -34817a4,152a000e -34817a8,8c890138 -34817ac,8d290010 -34817b0,252a3398 -34817b4,ac8a0184 -34817b8,340b0001 -34817bc,a48b017c -34817c0,27bdffe8 -34817c4,afbf0014 -34817c8,3c053dcd -34817cc,24a5cccd -34817d0,c0083e2 -34817d8,8fbf0014 -34817dc,27bd0018 -34817e0,3e00008 -34817e8,948e001c -34817ec,21cdffce -34817f0,5a00010 -34817f4,34020000 -34817f8,31a90007 -34817fc,340a0001 -3481800,12a5004 -3481804,d48c2 -3481808,3c0c8012 -348180c,258ca5d0 -3481810,1896020 -3481814,918b05b4 -3481818,16a5824 -348181c,34020000 -3481820,11600004 -3481828,340d0026 -348182c,a48d001c -3481830,34020001 -3481834,3e00008 -348183c,94ae001c -3481840,21cdffce -3481844,5a0000b -3481848,34020000 -348184c,31a90007 -3481850,340a0001 -3481854,12a5004 -3481858,d48c2 -348185c,3c0c8012 -3481860,258ca5d0 -3481864,1896020 -3481868,918b05b4 -348186c,16a5825 -3481870,a18b05b4 -3481874,3e00008 -348187c,27bdfff0 -3481880,afbf0008 -3481884,28810032 -3481888,10200003 -348188c,801021 -3481890,320f809 -3481898,8fbf0008 -348189c,27bd0010 -34818a0,3e00008 -34818a8,3c08801d -34818ac,250884a0 -34818b0,3c098012 -34818b4,2529a5d0 -34818b8,950a00a4 -34818bc,3401003e -34818c0,15410002 -34818c4,912b1397 -34818c8,216aff2a -34818cc,960b001c -34818d0,216b0001 -34818d4,340c0001 -34818d8,16c6004 -34818dc,3401001c -34818e0,1410018 -34818e4,6812 -34818e8,12d7020 -34818ec,8dcf00e4 -34818f0,18f1024 -34818f4,3e00008 -34818fc,3c08801d -3481900,250884a0 -3481904,3c098012 -3481908,2529a5d0 -348190c,950a00a4 -3481910,3401003e -3481914,15410002 -3481918,912b1397 -348191c,216aff2a -3481920,848b001c -3481924,216b0001 -3481928,340c0001 -348192c,16c6004 -3481930,3401001c -3481934,1410018 -3481938,6812 -348193c,12d7020 -3481940,8dcf00e4 -3481944,18f7825 -3481948,adcf00e4 -348194c,3e00008 -3481954,27bdffe8 -3481958,afbf0010 -348195c,c101f82 -3481964,8fbf0010 -3481968,27bd0018 -348196c,8fae0018 -3481970,3e00008 -3481974,3c018010 -3481978,340100ff -348197c,15210002 -3481980,92220000 -3481984,340200ff -3481988,3e00008 -348198c,34010009 -3481990,27bdffe8 -3481994,afa20010 -3481998,afbf0014 -348199c,c100688 -34819a4,14400002 -34819a8,91830000 -34819ac,340300ff -34819b0,8fa20010 -34819b4,8fbf0014 -34819b8,27bd0018 -34819bc,3e00008 -34819c0,34010009 -34819c4,27bdffe8 -34819c8,afa20010 -34819cc,afbf0014 -34819d0,960201e8 -34819d4,34010003 -34819d8,14410007 -34819e0,c100688 -34819e8,14400007 -34819f0,10000005 -34819f4,3403007a -34819f8,3401017a -34819fc,14610002 -3481a04,3403007a -3481a08,36280 -3481a0c,18d2821 -3481a10,8fa20010 -3481a14,8fbf0014 -3481a18,3e00008 -3481a1c,27bd0018 -3481a20,27bdfff0 -3481a24,afbf0000 -3481a28,afa30004 -3481a2c,afa40008 -3481a30,c101faf -3481a38,8fbf0000 -3481a3c,8fa30004 -3481a40,8fa40008 -3481a44,3e00008 -3481a48,27bd0010 -3481a4c,6d7024 -3481a50,15c00002 -3481a54,91ec0000 -3481a58,27ff003c -3481a5c,3e00008 -3481a70,3c088012 -3481a74,2508a5d0 -3481a78,8509009c -3481a7c,352a0002 -3481a80,3e00008 -3481a84,a50a009c -3481a88,3c058012 -3481a8c,24a5a5d0 -3481a90,3c088040 -3481a94,25081a64 -3481a98,8ca90068 -3481a9c,ad090000 -3481aa0,8ca9006c -3481aa4,ad090004 -3481aa8,94a90070 -3481aac,a5090008 -3481ab0,94a9009c -3481ab4,a509000a -3481ab8,340807e4 -3481abc,1054021 -3481ac0,34090e64 -3481ac4,1254821 -3481ac8,340a0008 -3481acc,8d0b0000 -3481ad0,8d2c0000 -3481ad4,ad2b0000 -3481ad8,ad0c0000 -3481adc,2508001c -3481ae0,25290004 -3481ae4,254affff -3481ae8,1d40fff8 -3481af0,801be03 -3481af8,27bdffe0 -3481afc,afb00010 -3481b00,afb10014 -3481b04,afbf0018 -3481b08,3c108012 -3481b0c,2610a5d0 -3481b10,3c118040 -3481b14,26311a64 -3481b18,8e080004 -3481b1c,11000005 -3481b24,c1006e8 -3481b2c,10000003 -3481b34,c1006fb -3481b3c,c1006db -3481b40,34040000 -3481b44,c1006db -3481b48,34040001 -3481b4c,c1006db -3481b50,34040002 -3481b54,8fb00010 -3481b58,8fb10014 -3481b5c,8fbf0018 -3481b60,27bd0020 -3481b64,3e00008 -3481b6c,2044021 -3481b70,9109006c -3481b74,340100ff -3481b78,11210007 -3481b80,2094821 -3481b84,91290074 -3481b88,3401002c -3481b8c,11210002 -3481b94,a1090069 -3481b98,3e00008 -3481ba0,27bdffe8 -3481ba4,afbf0010 -3481ba8,8e280000 -3481bac,ae080040 -3481bb0,8e280004 -3481bb4,ae080044 -3481bb8,96280008 -3481bbc,a6080048 -3481bc0,a2000f33 -3481bc4,9208004a -3481bc8,340100ff -3481bcc,15010003 -3481bd4,c10070e -3481bdc,8fbf0010 -3481be0,27bd0018 -3481be4,3e00008 -3481bec,8e080040 -3481bf0,ae080068 -3481bf4,8e080044 -3481bf8,ae08006c -3481bfc,96080048 -3481c00,9209009d -3481c04,31290020 -3481c08,15200002 -3481c10,3108ffdf -3481c14,a6080070 -3481c18,92080068 -3481c1c,340100ff -3481c20,15010003 -3481c28,34080001 -3481c2c,a2080f33 -3481c30,3e00008 -3481c38,27bdffe8 -3481c3c,afbf0010 -3481c40,9608009c -3481c44,31080040 -3481c48,11000005 -3481c50,96080070 -3481c54,3108ff0f -3481c58,35080030 -3481c5c,a6080070 -3481c60,92280001 -3481c64,a2080069 -3481c68,96280002 -3481c6c,a608006a -3481c70,8e280004 -3481c74,ae08006c -3481c78,c100728 -3481c7c,34040000 -3481c80,c100728 -3481c84,34040001 -3481c88,c100728 -3481c8c,34040002 -3481c90,8fbf0010 -3481c94,27bd0018 -3481c98,3e00008 -3481ca0,2044021 -3481ca4,3c098040 -3481ca8,25291d48 -3481cac,910a006c -3481cb0,340100ff -3481cb4,11410005 -3481cbc,12a4821 -3481cc0,91290000 -3481cc4,1520001c -3481ccc,3c098040 -3481cd0,25291d3f -3481cd4,25290001 -3481cd8,912a0000 -3481cdc,11400013 -3481ce4,20a5821 -3481ce8,916b0074 -3481cec,340100ff -3481cf0,1161fff8 -3481cf8,920c006c -3481cfc,118afff5 -3481d04,920c006d -3481d08,118afff2 -3481d10,920c006e -3481d14,118affef -3481d1c,a10b0069 -3481d20,a10a006c -3481d24,10000004 -3481d2c,340900ff -3481d30,a1090069 -3481d34,a109006c -3481d38,3e00008 -3481d40,90f0203 -3481d44,10d0b00 -3481d48,10101 -3481d4c,1010001 -3481d50,1010101 -3481d54,10001 -3481d58,1010101 -3481d5c,1010100 -3481d60,330821 -3481d64,200f0047 -3481d68,15ea000e -3481d6c,3c028012 -3481d70,8c42a5d4 -3481d74,8e6f00a4 -3481d78,f7a03 -3481d7c,14400005 -3481d80,34024830 -3481d84,15e20007 -3481d8c,24190003 -3481d90,10000004 -3481d94,34026311 -3481d98,15e20002 -3481da0,24190003 -3481da4,3e00008 -3481dac,330821 -3481db0,3c028012 -3481db4,8c42a5d4 -3481db8,8e6f00a4 -3481dbc,f7a03 -3481dc0,14400005 -3481dc4,34024830 -3481dc8,15e20007 -3481dd0,24190003 -3481dd4,10000004 -3481dd8,34026311 -3481ddc,15e20002 -3481de4,24190003 -3481de8,3e00008 -3481df0,34010018 -3481df4,14810015 -3481dfc,14400013 -3481e04,3c0a8012 -3481e08,254aa5d0 -3481e0c,814800a6 -3481e10,31080020 -3481e14,1100000d -3481e18,34020000 -3481e1c,8148007b -3481e20,34090007 -3481e24,11090005 -3481e28,34090008 -3481e2c,11090003 -3481e34,8100793 -3481e38,34020000 -3481e3c,81480ed6 -3481e40,35080001 -3481e44,a1480ed6 -3481e48,34020001 -3481e4c,3e00008 -3481e54,3c018040 -3481e58,8c210ccc -3481e5c,10200006 -3481e64,94480670 -3481e68,31010800 -3481e6c,34080800 -3481e70,3e00008 -3481e78,950804c6 -3481e7c,3401000b -3481e80,3e00008 -3481e88,27bdffe8 -3481e8c,afa50000 -3481e90,afa60004 -3481e94,afa70008 -3481e98,afbf0010 -3481e9c,80a80000 -3481ea0,25090001 -3481ea4,15200005 -3481eac,52025 -3481eb0,24a50008 -3481eb4,c015c0c -3481eb8,24c6fff8 -3481ebc,c1024fc -3481ec4,8fbf0010 -3481ec8,8fa70008 -3481ecc,8fa60004 -3481ed0,8fa50000 -3481ed4,8015c0c -3481ed8,27bd0018 -3481edc,ac4d066c -3481ee0,a0400141 -3481ee4,a0400144 -3481ee8,340e00fe -3481eec,3e00008 -3481ef0,a04e0142 -3481ef4,a2250021 -3481ef8,3c108040 -3481efc,26100898 -3481f00,26100004 -3481f04,8e0a0000 -3481f08,1140000b -3481f10,a7c02 -3481f14,1f17820 -3481f18,3158ff00 -3481f1c,18c202 -3481f20,17000003 -3481f24,315900ff -3481f28,81ea0000 -3481f2c,32ac825 -3481f30,81007c0 -3481f34,a1f90000 -3481f38,3e00008 -3481f40,27bdfff0 -3481f44,afbf0008 -3481f48,c1007de -3481f4c,2264ffff -3481f50,344a0000 -3481f54,8fbf0008 -3481f58,27bd0010 -3481f5c,27bdfff0 -3481f60,afbf0008 -3481f64,c1007de -3481f68,36440000 -3481f6c,34500000 -3481f70,8fbf0008 -3481f74,27bd0010 -3481f78,3c088040 -3481f7c,25080025 -3481f80,91080000 -3481f84,15000007 -3481f8c,3c088012 -3481f90,2508a5d0 -3481f94,1044020 -3481f98,91020024 -3481f9c,10000007 -3481fa4,840c0 -3481fa8,3c028040 -3481fac,24420034 -3481fb0,1024020 -3481fb4,1044020 -3481fb8,91020000 -3481fbc,3e00008 -3481fc4,8fb60030 -3481fc8,8fb70034 -3481fcc,8fbe0038 -3481fd0,3c088040 -3481fd4,25080025 -3481fd8,a1000000 -3481fdc,3e00008 -3481fe4,3c0a8012 -3481fe8,8d4aa5d4 -3481fec,15400006 -3481ff0,31780001 -3481ff4,17000007 -3481ff8,3c184230 -3481ffc,3c184250 -3482000,3e00008 -3482008,17000002 -348200c,3c184210 -3482010,3c184238 -3482014,3e00008 -348201c,906e13e2 -3482020,90620068 -3482024,34010059 -3482028,10410002 -348202c,34010fff -3482030,340100ff -3482034,3e00008 -348203c,3c048012 -3482040,2484a5d0 -3482044,908e13e2 -3482048,90820068 -348204c,34010059 -3482050,10410002 -3482054,34010fff -3482058,340100ff -348205c,3e00008 -3482064,3c08801f -3482068,25085de0 -348206c,8d01009c -3482070,14200003 -3482074,46025102 -3482078,3c083f80 -348207c,44882000 -3482080,3e00008 -3482088,ac800118 -348208c,27ff0030 -3482090,3e00008 -3482094,ac8e0180 -3482098,3c018040 -348209c,8c210cbc -34820a0,10200008 -34820a8,81efa64c -34820ac,34180009 -34820b0,11f80002 -34820b4,34180001 -34820b8,34180000 -34820bc,3e00008 -34820c4,8defa670 -34820c8,31f80018 -34820cc,3e00008 -34820d4,3c018040 -34820d8,8c210cbc -34820dc,10200008 -34820e4,816ba64c -34820e8,340c0009 -34820ec,116c0002 -34820f0,340c0001 -34820f4,340c0000 -34820f8,3e00008 -3482100,8d6ba670 -3482104,316c0018 -3482108,3e00008 -3482110,3c018040 -3482114,8c210cbc -3482118,10200008 -3482120,3c098012 -3482124,812aa64c -3482128,340b0009 -348212c,114b0009 -3482130,34020000 -3482134,3e00008 -3482138,34020002 -348213c,3c098012 -3482140,812aa673 -3482144,314a0038 -3482148,15400002 -348214c,34020000 -3482150,34020002 -3482154,3e00008 -348215c,3c0a8040 -3482160,8d4a0cc0 -3482164,1140000a -3482168,34010001 -348216c,1141000b -3482170,34010002 -3482174,11410026 -3482178,34010003 -348217c,11410051 -3482180,34010004 -3482184,11410069 -3482188,34010005 -348218c,11410061 -3482190,34010000 -3482194,3e00008 -3482198,340a0000 -348219c,3401003f -34821a0,415024 -34821a4,340f0000 -34821a8,31580001 -34821ac,13000002 -34821b4,25ef0001 -34821b8,31580002 -34821bc,13000002 -34821c4,25ef0001 -34821c8,31580004 -34821cc,13000002 -34821d4,25ef0001 -34821d8,31580008 -34821dc,13000002 -34821e4,25ef0001 -34821e8,31580010 -34821ec,13000002 -34821f4,25ef0001 -34821f8,31580020 -34821fc,13000002 -3482204,25ef0001 -3482208,10000043 -3482210,3c01001c -3482214,2421003f -3482218,415024 -348221c,340f0000 -3482220,31580001 -3482224,13000002 -348222c,25ef0001 -3482230,31580002 -3482234,13000002 -348223c,25ef0001 -3482240,31580004 -3482244,13000002 -348224c,25ef0001 -3482250,31580008 -3482254,13000002 -348225c,25ef0001 -3482260,31580010 -3482264,13000002 -348226c,25ef0001 -3482270,31580020 -3482274,13000002 -348227c,25ef0001 -3482280,3c180004 -3482284,158c024 -3482288,13000002 -3482290,25ef0001 -3482294,3c180008 -3482298,158c024 -348229c,13000002 -34822a4,25ef0001 -34822a8,3c180010 -34822ac,158c024 -34822b0,13000002 -34822b8,25ef0001 -34822bc,10000016 -34822c4,3c01001c -34822c8,415024 -34822cc,340f0000 -34822d0,3c180004 -34822d4,158c024 -34822d8,13000002 -34822e0,25ef0001 -34822e4,3c180008 -34822e8,158c024 -34822ec,13000002 -34822f4,25ef0001 -34822f8,3c180010 -34822fc,158c024 -3482300,13000002 -3482308,25ef0001 -348230c,10000002 -3482314,84ef00d0 -3482318,34010000 -348231c,3c188040 -3482320,87180cd0 -3482324,3e00008 -3482328,1f8502a -348232c,34010018 -3482330,415024 -3482334,15410006 -348233c,90ef0084 -3482340,340a0012 -3482344,114f0002 -348234c,3401ffff -3482350,3e00008 -3482354,415024 -3482358,3c098040 -348235c,8d290cc4 -3482360,340a0001 -3482364,112a000e -3482368,340a0002 -348236c,112a0029 -3482370,340a0003 -3482374,112a0054 -3482378,340a0004 -348237c,112a0066 -3482384,340b0018 -3482388,4b5024 -348238c,156a0002 -3482390,34030000 -3482394,34030001 -3482398,3e00008 -34823a0,3401003f -34823a4,415024 -34823a8,340c0000 -34823ac,314b0001 -34823b0,11600002 -34823b8,258c0001 -34823bc,314b0002 -34823c0,11600002 -34823c8,258c0001 -34823cc,314b0004 -34823d0,11600002 -34823d8,258c0001 -34823dc,314b0008 -34823e0,11600002 -34823e8,258c0001 -34823ec,314b0010 -34823f0,11600002 -34823f8,258c0001 -34823fc,314b0020 -3482400,11600002 -3482408,258c0001 -348240c,10000043 -3482414,3c01001c -3482418,2421003f -348241c,415024 -3482420,340c0000 -3482424,314b0001 -3482428,11600002 -3482430,258c0001 -3482434,314b0002 -3482438,11600002 -3482440,258c0001 -3482444,314b0004 -3482448,11600002 -3482450,258c0001 -3482454,314b0008 -3482458,11600002 -3482460,258c0001 -3482464,314b0010 -3482468,11600002 -3482470,258c0001 -3482474,314b0020 -3482478,11600002 -3482480,258c0001 -3482484,3c0b0004 -3482488,14b5824 -348248c,11600002 -3482494,258c0001 -3482498,3c0b0008 -348249c,14b5824 -34824a0,11600002 -34824a8,258c0001 -34824ac,3c0b0010 -34824b0,14b5824 -34824b4,11600002 -34824bc,258c0001 -34824c0,10000016 -34824c8,3c01001c -34824cc,415024 -34824d0,340c0000 -34824d4,3c0b0004 -34824d8,14b5824 -34824dc,11600002 -34824e4,258c0001 -34824e8,3c0b0008 -34824ec,14b5824 -34824f0,11600002 -34824f8,258c0001 -34824fc,3c0b0010 -3482500,14b5824 -3482504,11600002 -348250c,258c0001 -3482510,10000002 -3482518,860c00d0 -348251c,34010000 -3482520,3c0b8040 -3482524,856b0cd2 -3482528,18b602a -348252c,15800002 -3482530,34030000 -3482534,34030001 -3482538,3e00008 -3482540,27bdffe4 -3482544,afb10014 -3482548,afbf0018 -348254c,3c038012 -3482550,2463a5d0 -3482554,860f001c -3482558,31f800ff -348255c,340100ff -3482560,17010004 -3482564,27110400 -3482568,90781397 -348256c,3318001f -3482570,27110430 -3482574,31e18000 -3482578,14200015 -3482580,3c088040 -3482584,8d080cc8 -3482588,1100000b -348258c,34010001 -3482590,11010003 -3482598,1000000d -34825a0,806100a5 -34825a4,30210020 -34825a8,10200008 -34825b0,10000007 -34825b8,c01e6d1 -34825c0,34010008 -34825c4,10410002 -34825cc,34112053 -34825d0,a611010e -34825d4,8fbf0018 -34825d8,8fb10014 -34825dc,3e00008 -34825e0,27bd001c -34825e4,9059008a -34825e8,340900ff -34825ec,11390007 -34825f4,2b290031 -34825f8,15200005 -34825fc,34190000 -3482600,34190001 -3482604,10000002 -348260c,34190000 -3482610,3e00008 -3482618,27bdfff0 -348261c,afa80000 -3482620,e7a20004 -3482624,e7a40008 -3482628,3c088040 -348262c,25080cd4 -3482630,91080000 -3482634,1100000f -3482638,340d0200 -348263c,3c08801e -3482640,2508aa30 -3482644,c5020028 -3482648,3c08c496 -348264c,44882000 -3482654,4604103c -348265c,45010004 -3482664,340d0200 -3482668,10000002 -3482670,340d00c0 -3482674,c7a40008 -3482678,c7a20004 -348267c,8fa80000 -3482680,3e00008 -3482684,27bd0010 -3482688,8e2a1d44 -348268c,314a0100 -3482690,1540000a -3482698,8e2a1d48 -348269c,314a0100 -34826a0,15400007 -34826a8,8e211d48 -34826ac,342a0100 -34826b0,ae2a1d48 -34826b4,10000003 -34826b8,5024 -34826bc,240c0000 -34826c0,340a0001 -34826c4,3e00008 -34826cc,27bdfff0 -34826d0,afbf0000 -34826d4,c10106e -34826dc,8ece1c44 -34826e0,3c18db06 -34826e4,8fbf0000 -34826e8,3e00008 -34826ec,27bd0010 -34826f4,27bdfff0 +3480ce0,27bdffe8 +3480ce4,afbf0010 +3480ce8,c101fa4 +3480cf0,3c028012 +3480cf4,2442d2a0 +3480cf8,240e0140 +3480cfc,3c018010 +3480d00,ac2ee500 +3480d04,240f00f0 +3480d08,8fbf0010 +3480d0c,3e00008 +3480d10,27bd0018 +3480d14,3c088040 +3480d18,ac4815d4 +3480d1c,3e00008 +3480d20,340215c0 +3480d24,308400ff +3480d28,3c088012 +3480d2c,2508a5d0 +3480d30,3401008c +3480d34,10810016 +3480d38,91020075 +3480d3c,3401008d +3480d40,10810013 +3480d44,91020075 +3480d48,10800011 +3480d4c,91020074 +3480d50,3401008a +3480d54,1081000e +3480d58,91020074 +3480d5c,3401008b +3480d60,1081000b +3480d64,91020074 +3480d68,34010058 +3480d6c,10810008 +3480d70,34020000 +3480d74,34010078 +3480d78,10810005 +3480d7c,34020000 +3480d80,34010079 +3480d84,10810002 +3480d88,34020000 +3480d8c,340200ff +3480d90,3e00008 +3480d98,8fa60030 +3480d9c,810036c +3480da0,84c50004 +3480da4,8fb9002c +3480da8,810036c +3480dac,87250004 +3480db0,3c0a8041 +3480db4,254ab56c +3480db8,8d4a0000 +3480dbc,11400004 +3480dc4,3c058041 +3480dc8,24a5b560 +3480dcc,8ca50000 +3480dd0,3e00008 +3480dd8,3c088041 +3480ddc,2508b56c +3480de0,8d080000 +3480de4,11000004 +3480dec,3c038041 +3480df0,2463b55c +3480df4,8c630000 +3480df8,30fc3 +3480dfc,614026 +3480e00,1014023 +3480e04,a0880852 +3480e08,3e00008 +3480e10,3c088040 +3480e14,25080cd6 +3480e18,91080000 +3480e1c,1500000c +3480e20,240bffff +3480e24,3c088041 +3480e28,2508b56c +3480e2c,8d080000 +3480e30,11000007 +3480e34,1405821 +3480e38,3c088041 +3480e3c,2508b558 +3480e40,8d080000 +3480e44,15000002 +3480e48,240bffff +3480e4c,340b0001 +3480e50,5600009 +3480e58,27bdffe8 +3480e5c,afab0010 +3480e60,afbf0014 +3480e64,c01c508 +3480e6c,8fab0010 +3480e70,8fbf0014 +3480e74,27bd0018 +3480e78,3e00008 +3480e80,90450003 +3480e84,3c088041 +3480e88,2508b56c +3480e8c,8d080000 +3480e90,11000004 +3480e98,3c058041 +3480e9c,24a5b564 +3480ea0,8ca50000 +3480ea4,3e00008 +3480eac,27bdffe8 +3480eb0,afb00010 +3480eb4,afbf0014 +3480eb8,3c088041 +3480ebc,2508b570 +3480ec0,8d080000 +3480ec4,31080001 +3480ec8,1500000b +3480ecc,34100041 +3480ed0,3c048041 +3480ed4,2484b56c +3480ed8,8c840000 +3480edc,10800006 +3480ee0,90500000 +3480ee4,3c088041 +3480ee8,2508b568 +3480eec,8d100000 +3480ef0,c101efb +3480ef8,c101ab5 +3480f00,2002821 +3480f04,8fb00010 +3480f08,8fbf0014 +3480f0c,3e00008 +3480f10,27bd0018 +3480f14,27bdffe0 +3480f18,afa70010 +3480f1c,afa20014 +3480f20,afa30018 +3480f24,afbf001c +3480f28,c101b26 +3480f2c,e02821 +3480f30,8fa70010 +3480f34,8fa20014 +3480f38,8fa30018 +3480f3c,8fbf001c +3480f40,3e00008 +3480f44,27bd0020 +3480f48,27bdffe8 +3480f4c,afbf0010 +3480f50,8c881d2c +3480f54,34090001 +3480f58,94e00 +3480f5c,1091024 +3480f60,10400021 +3480f68,94ca02dc +3480f6c,3c0b8012 +3480f70,256ba5d0 +3480f74,948c00a4 +3480f78,3401003d +3480f7c,1181000a +3480f84,8a6021 +3480f88,918d1d28 +3480f8c,15a00014 +3480f94,340d0001 +3480f98,a18d1d28 +3480f9c,254a0013 +3480fa0,1000000a +3480fa8,340c0001 +3480fac,14c6004 +3480fb0,916d0ef2 +3480fb4,1ac7024 +3480fb8,15c00009 +3480fc0,1ac7025 +3480fc4,a16e0ef2 +3480fc8,254a0010 +3480fcc,1294827 +3480fd0,1094024 +3480fd4,ac881d2c +3480fd8,c101a68 +3480fdc,1402021 +3480fe0,c102532 +3480fe8,8fbf0010 +3480fec,34020000 +3480ff0,3e00008 +3480ff4,27bd0018 +3480ff8,27bdffe8 +3480ffc,afbf0010 +3481000,c101a68 +3481004,20e4ffc6 +3481008,340200ff +348100c,8fbf0010 +3481010,3e00008 +3481014,27bd0018 +3481018,27bdffe0 +348101c,afa10010 +3481020,afa30014 +3481024,afbf0018 +3481028,c101a68 +348102c,34040023 +3481030,8fa10010 +3481034,8fa30014 +3481038,8fbf0018 +348103c,3e00008 +3481040,27bd0020 +3481044,27bdffe0 +3481048,afa60010 +348104c,afa70014 +3481050,afbf0018 +3481054,3c018012 +3481058,2421a5d0 +348105c,80280ede +3481060,35080001 +3481064,a0280ede +3481068,c101a68 +348106c,34040027 +3481070,8fa60010 +3481074,8fa70014 +3481078,8fbf0018 +348107c,3e00008 +3481080,27bd0020 +3481084,27bdffe8 +3481088,afa30010 +348108c,afbf0014 +3481090,3c018012 +3481094,2421a5d0 +3481098,80280ede +348109c,35080004 +34810a0,a0280ede +34810a4,3c188040 +34810a8,83180cd8 +34810ac,13000003 +34810b4,c101a68 +34810b8,34040029 +34810bc,240f0001 +34810c0,8fa30010 +34810c4,8fbf0014 +34810c8,3e00008 +34810cc,27bd0018 +34810d0,27bdffd8 +34810d4,afa40010 +34810d8,afa20014 +34810dc,afaf0018 +34810e0,afbf0020 +34810e4,c101a68 +34810e8,3404002a +34810ec,34050003 +34810f0,8fa40010 +34810f4,8fa20014 +34810f8,8faf0018 +34810fc,8fbf0020 +3481100,3e00008 +3481104,27bd0028 +3481108,607821 +348110c,81ec0edf +3481110,318e0080 +3481114,11c00003 +3481118,34030005 +348111c,3e00008 +3481120,34020002 +3481124,3e00008 +3481128,601021 +348112c,85c200a4 +3481130,3c088012 +3481134,2508a5d0 +3481138,81090edf +348113c,35290080 +3481140,a1090edf +3481144,3e00008 +348114c,27bdfff0 +3481150,afbf0004 +3481154,c035886 +348115c,3c0c8012 +3481160,258ca5d0 +3481164,858d0f2e +3481168,8d980004 +348116c,13000002 +3481170,340e0001 +3481174,340e0002 +3481178,1ae6825 +348117c,a58d0f2e +3481180,8fbf0004 +3481184,27bd0010 +3481188,3e00008 +3481190,24090041 +3481194,27bdffe0 +3481198,afa80004 +348119c,afa90008 +34811a0,afaa000c +34811a4,afac0010 +34811a8,3c0affff +34811ac,a5403 +34811b0,3c08801d +34811b4,850c894c +34811b8,118a0002 +34811c0,a500894c +34811c4,3c08801e +34811c8,810a887c +34811cc,11400009 +34811d4,3c090036 +34811d8,94c03 +34811dc,a109887c +34811e0,3c090002 +34811e4,94c03 +34811e8,a109895f +34811ec,3c08801f +34811f0,a1008d38 +34811f4,8fac0010 +34811f8,8faa000c +34811fc,8fa90008 +3481200,8fa80004 +3481204,3e00008 +3481208,27bd0020 +3481210,3c0a8010 +3481214,254ae49c +3481218,8d4a0000 +348121c,1140001e +3481224,3c08801d +3481228,250884a0 +348122c,3c0b0001 +3481230,356b04c4 +3481234,10b4020 +3481238,85090000 +348123c,3c0b0002 +3481240,356b26cc +3481244,14b5020 +3481248,94840 +348124c,12a5021 +3481250,85490000 +3481254,a5091956 +3481258,3c0c801e +348125c,258c84a0 +3481260,34090003 +3481264,a1891e5e +3481268,34090014 +348126c,a1091951 +3481270,34090001 +3481274,3c018040 +3481278,a029120c +348127c,3c088012 +3481280,2508a5d0 +3481284,850913d2 +3481288,11200003 +3481290,34090001 +3481294,a50913d4 +3481298,3e00008 +34812a0,3421241c +34812a4,3c0d8040 +34812a8,25ad120c +34812ac,81a90000 +34812b0,11200008 +34812b4,862a00a4 +34812b8,340b005e +34812bc,114b0005 +34812c0,3c0c801e +34812c4,258c84a0 +34812c8,34090003 +34812cc,a1891e5e +34812d0,a1a00000 +34812d4,3e00008 +34812dc,3c02801d +34812e0,244284a0 +34812e4,3c010001 +34812e8,411020 +34812ec,3401047e +34812f0,a4411e1a +34812f4,34010014 +34812f8,3e00008 +34812fc,a0411e15 +3481300,27bdffe8 +3481304,afbf0014 +3481308,afa40018 +348130c,8e190004 +3481310,17200015 +3481314,8e190000 +3481318,3c018010 +348131c,24219c90 +3481320,19c880 +3481324,3210820 +3481328,90210000 +348132c,34190052 +3481330,1721000d +3481334,8e190000 +3481338,960200a6 +348133c,304c0007 +3481340,398c0007 +3481344,15800008 +3481348,240400aa +348134c,c00a22d +3481354,14400004 +3481358,8e190000 +348135c,341900db +3481360,10000002 +3481364,ae190000 +3481368,340101e1 +348136c,8fbf0014 +3481370,8fa40018 +3481374,3e00008 +3481378,27bd0018 +348137c,3c088040 +3481380,81080cde +3481384,11000005 +3481388,3c018012 +348138c,2421a5d0 +3481390,80280ed6 +3481394,35080001 +3481398,a0280ed6 +348139c,34080000 +34813a0,3e00008 +34813a4,adf90000 +34813a8,3c0b801d +34813ac,256b84a0 +34813b0,856b00a4 +34813b4,340c005a +34813b8,156c0003 +34813bc,340b01a5 +34813c0,a42b1e1a +34813c4,1000000e +34813c8,3c0c8012 +34813cc,258ca5d0 +34813d0,8d8c0004 +34813d4,15800008 +34813d8,3c0b8040 +34813dc,816b0cde +34813e0,11600007 +34813e4,842b1e1a +34813e8,340c01a5 +34813ec,116c0002 +34813f4,10000002 +34813f8,340b0129 +34813fc,a42b1e1a +3481400,3e00008 +348140c,2202825 +3481410,3c0a801e +3481414,254aaa30 +3481418,c544002c +348141c,3c0bc43c +3481420,256b8000 +3481424,448b3000 +3481428,4606203c +3481430,45000026 +3481438,c5440024 +348143c,3c0bc28a +3481440,448b3000 +3481444,4606203c +348144c,4501001f +3481454,3c0b41c8 +3481458,448b3000 +348145c,4606203c +3481464,45000019 +348146c,3c098040 +3481470,25291408 +3481474,814b0424 +3481478,1160000e +348147c,812e0000 +3481480,340c007e +3481484,116c000b +348148c,15c00009 +3481490,340c0001 +3481494,a12c0000 +3481498,3c0dc1a0 +348149c,ad4d0024 +34814a0,3c0d4120 +34814a4,ad4d0028 +34814a8,3c0dc446 +34814ac,25ad8000 +34814b0,ad4d002c +34814b4,11c00005 +34814bc,15600003 +34814c0,340d8000 +34814c4,a54d00b6 +34814c8,a1200000 +34814cc,3e00008 +34814d8,3c0a801e +34814dc,254aaa30 +34814e0,8d4b066c +34814e4,3c0cd000 +34814e8,258cffff +34814ec,16c5824 +34814f0,3e00008 +34814f4,ad4b066c +34814f8,27bdffe0 +34814fc,afbf0014 +3481500,afa40018 +3481504,1c17825 +3481508,ac4f0680 +348150c,34040001 +3481510,c01b638 +3481518,3c088040 +348151c,81080cd8 +3481520,15000007 +3481528,3c04801d +348152c,248484a0 +3481530,3c058040 +3481534,80a50cd9 +3481538,c037500 +3481540,8fa40018 +3481544,8c880138 +3481548,8d090010 +348154c,252a03d4 +3481550,ac8a029c +3481554,8fbf0014 +3481558,3e00008 +348155c,27bd0020 +3481560,27bdffe0 +3481564,afbf0014 +3481568,afa40018 +348156c,3c088040 +3481570,81080cd8 +3481574,1500001a +348157c,3c09801e +3481580,2529887c +3481584,81280000 +3481588,340b0036 +348158c,150b001e +3481594,3c088040 +3481598,810814d4 +348159c,1500001a +34815a4,34080001 +34815a8,3c018040 +34815ac,a02814d4 +34815b0,3c04801d +34815b4,248484a0 +34815b8,3c058040 +34815bc,90a50cda +34815c0,34060000 +34815c4,c037385 +34815cc,34044802 +34815d0,c0191bc +34815d8,10000025 +34815e0,3c04801d +34815e4,248484a0 +34815e8,34050065 +34815ec,c01bf73 +34815f4,34040032 +34815f8,c01b638 +3481600,1000000c +3481608,8fa40018 +348160c,3c05801d +3481610,24a584a0 +3481614,c008ab4 +348161c,10400014 +3481624,3c088040 +3481628,810814d4 +348162c,11000010 +3481634,8fa40018 +3481638,8c880138 +348163c,8d090010 +3481640,252a035c +3481644,ac8a029c +3481648,3c028012 +348164c,2442a5d0 +3481650,94490ee0 +3481654,352a0020 +3481658,a44a0ee0 +348165c,8c880004 +3481660,3c09ffff +3481664,2529ffff +3481668,1094024 +348166c,ac880004 +3481670,8fbf0014 +3481674,3e00008 +3481678,27bd0020 +348167c,860f00b6 +3481680,9739b4ae +3481684,3c09801e +3481688,2529aa30 +348168c,812a0424 +3481690,11400004 +3481698,3409007e +348169c,15490003 +34816a4,3e00008 +34816a8,340a0000 +34816ac,3e00008 +34816b0,340a0001 +34816b4,8c8e0134 +34816b8,15c00002 +34816bc,3c0e4480 +34816c0,ac8e0024 +34816c4,3e00008 +34816c8,8fae0044 +34816cc,260501a4 +34816d0,27bdffe0 +34816d4,afbf0014 +34816d8,afa50018 +34816dc,8625001c +34816e0,52a03 +34816e4,c008134 +34816e8,30a5003f +34816ec,8fa50018 +34816f0,8fbf0014 +34816f4,3e00008 +34816f8,27bd0020 +34816fc,ae19066c +3481700,8e0a0428 +3481704,3c09801e +3481708,2529aa30 +348170c,854b00b6 +3481710,216b8000 +3481714,3e00008 +3481718,a52b00b6 +348171c,3c08801e +3481720,2508aa30 +3481724,810a0434 +3481728,340b0008 +348172c,154b0002 +3481730,34090007 +3481734,a1090434 +3481738,3e00008 +348173c,c606000c +3481740,3c08801e +3481744,2508aa30 +3481748,8d0901ac +348174c,3c0a0400 +3481750,254a2f98 +3481754,152a000b +3481758,8d0b01bc +348175c,3c0c42cf +3481760,156c0003 +3481764,3c0d4364 +3481768,10000006 +348176c,ad0d01bc +3481770,3c0c4379 +3481774,156c0003 +3481778,3c09803b +348177c,2529967c +3481780,ad090664 +3481784,3e00008 +3481788,260501a4 +348178c,a498017c +3481790,3c08801d +3481794,250884a0 +3481798,850900a4 +348179c,340a0002 +34817a0,152a000e +34817a4,8c890138 +34817a8,8d290010 +34817ac,252a3398 +34817b0,ac8a0184 +34817b4,340b0001 +34817b8,a48b017c +34817bc,27bdffe8 +34817c0,afbf0014 +34817c4,3c053dcd +34817c8,24a5cccd +34817cc,c0083e2 +34817d4,8fbf0014 +34817d8,27bd0018 +34817dc,3e00008 +34817e4,948e001c +34817e8,21cdffce +34817ec,5a00010 +34817f0,34020000 +34817f4,31a90007 +34817f8,340a0001 +34817fc,12a5004 +3481800,d48c2 +3481804,3c0c8012 +3481808,258ca5d0 +348180c,1896020 +3481810,918b05b4 +3481814,16a5824 +3481818,34020000 +348181c,11600004 +3481824,340d0026 +3481828,a48d001c +348182c,34020001 +3481830,3e00008 +3481838,94ae001c +348183c,21cdffce +3481840,5a0000b +3481844,34020000 +3481848,31a90007 +348184c,340a0001 +3481850,12a5004 +3481854,d48c2 +3481858,3c0c8012 +348185c,258ca5d0 +3481860,1896020 +3481864,918b05b4 +3481868,16a5825 +348186c,a18b05b4 +3481870,3e00008 +3481878,27bdfff0 +348187c,afbf0008 +3481880,28810032 +3481884,10200003 +3481888,801021 +348188c,320f809 +3481894,8fbf0008 +3481898,27bd0010 +348189c,3e00008 +34818a4,3c08801d +34818a8,250884a0 +34818ac,3c098012 +34818b0,2529a5d0 +34818b4,950a00a4 +34818b8,3401003e +34818bc,15410002 +34818c0,912b1397 +34818c4,216aff2a +34818c8,960b001c +34818cc,216b0001 +34818d0,340c0001 +34818d4,16c6004 +34818d8,3401001c +34818dc,1410018 +34818e0,6812 +34818e4,12d7020 +34818e8,8dcf00e4 +34818ec,18f1024 +34818f0,3e00008 +34818f8,3c08801d +34818fc,250884a0 +3481900,3c098012 +3481904,2529a5d0 +3481908,950a00a4 +348190c,3401003e +3481910,15410002 +3481914,912b1397 +3481918,216aff2a +348191c,848b001c +3481920,216b0001 +3481924,340c0001 +3481928,16c6004 +348192c,3401001c +3481930,1410018 +3481934,6812 +3481938,12d7020 +348193c,8dcf00e4 +3481940,18f7825 +3481944,adcf00e4 +3481948,3e00008 +3481950,27bdffe8 +3481954,afbf0010 +3481958,c101fb3 +3481960,8fbf0010 +3481964,27bd0018 +3481968,8fae0018 +348196c,3e00008 +3481970,3c018010 +3481974,340100ff +3481978,15210002 +348197c,92220000 +3481980,340200ff +3481984,3e00008 +3481988,34010009 +348198c,27bdffe8 +3481990,afa20010 +3481994,afbf0014 +3481998,c100687 +34819a0,14400002 +34819a4,91830000 +34819a8,340300ff +34819ac,8fa20010 +34819b0,8fbf0014 +34819b4,27bd0018 +34819b8,3e00008 +34819bc,34010009 +34819c0,27bdffe8 +34819c4,afa20010 +34819c8,afbf0014 +34819cc,960201e8 +34819d0,34010003 +34819d4,14410007 +34819dc,c100687 +34819e4,14400007 +34819ec,10000005 +34819f0,3403007a +34819f4,3401017a +34819f8,14610002 +3481a00,3403007a +3481a04,36280 +3481a08,18d2821 +3481a0c,8fa20010 +3481a10,8fbf0014 +3481a14,3e00008 +3481a18,27bd0018 +3481a1c,27bdfff0 +3481a20,afbf0000 +3481a24,afa30004 +3481a28,afa40008 +3481a2c,c101fef +3481a34,8fbf0000 +3481a38,8fa30004 +3481a3c,8fa40008 +3481a40,3e00008 +3481a44,27bd0010 +3481a48,6d7024 +3481a4c,15c00002 +3481a50,91ec0000 +3481a54,27ff003c +3481a58,3e00008 +3481a6c,3c088012 +3481a70,2508a5d0 +3481a74,8509009c +3481a78,352a0002 +3481a7c,3e00008 +3481a80,a50a009c +3481a84,3c058012 +3481a88,24a5a5d0 +3481a8c,3c088040 +3481a90,25081a60 +3481a94,8ca90068 +3481a98,ad090000 +3481a9c,8ca9006c +3481aa0,ad090004 +3481aa4,94a90070 +3481aa8,a5090008 +3481aac,94a9009c +3481ab0,a509000a +3481ab4,340807e4 +3481ab8,1054021 +3481abc,34090e64 +3481ac0,1254821 +3481ac4,340a0008 +3481ac8,8d0b0000 +3481acc,8d2c0000 +3481ad0,ad2b0000 +3481ad4,ad0c0000 +3481ad8,2508001c +3481adc,25290004 +3481ae0,254affff +3481ae4,1d40fff8 +3481aec,801be03 +3481af4,27bdffe0 +3481af8,afb00010 +3481afc,afb10014 +3481b00,afbf0018 +3481b04,3c108012 +3481b08,2610a5d0 +3481b0c,3c118040 +3481b10,26311a60 +3481b14,8e080004 +3481b18,11000005 +3481b20,c1006e7 +3481b28,10000003 +3481b30,c1006fa +3481b38,c1006da +3481b3c,34040000 +3481b40,c1006da +3481b44,34040001 +3481b48,c1006da +3481b4c,34040002 +3481b50,8fb00010 +3481b54,8fb10014 +3481b58,8fbf0018 +3481b5c,27bd0020 +3481b60,3e00008 +3481b68,2044021 +3481b6c,9109006c +3481b70,340100ff +3481b74,11210007 +3481b7c,2094821 +3481b80,91290074 +3481b84,3401002c +3481b88,11210002 +3481b90,a1090069 +3481b94,3e00008 +3481b9c,27bdffe8 +3481ba0,afbf0010 +3481ba4,8e280000 +3481ba8,ae080040 +3481bac,8e280004 +3481bb0,ae080044 +3481bb4,96280008 +3481bb8,a6080048 +3481bbc,a2000f33 +3481bc0,9208004a +3481bc4,340100ff +3481bc8,15010003 +3481bd0,c10070d +3481bd8,8fbf0010 +3481bdc,27bd0018 +3481be0,3e00008 +3481be8,8e080040 +3481bec,ae080068 +3481bf0,8e080044 +3481bf4,ae08006c +3481bf8,96080048 +3481bfc,9209009d +3481c00,31290020 +3481c04,15200002 +3481c0c,3108ffdf +3481c10,a6080070 +3481c14,92080068 +3481c18,340100ff +3481c1c,15010003 +3481c24,34080001 +3481c28,a2080f33 +3481c2c,3e00008 +3481c34,27bdffe8 +3481c38,afbf0010 +3481c3c,9608009c +3481c40,31080040 +3481c44,11000005 +3481c4c,96080070 +3481c50,3108ff0f +3481c54,35080030 +3481c58,a6080070 +3481c5c,92280001 +3481c60,a2080069 +3481c64,96280002 +3481c68,a608006a +3481c6c,8e280004 +3481c70,ae08006c +3481c74,c100727 +3481c78,34040000 +3481c7c,c100727 +3481c80,34040001 +3481c84,c100727 +3481c88,34040002 +3481c8c,8fbf0010 +3481c90,27bd0018 +3481c94,3e00008 +3481c9c,2044021 +3481ca0,3c098040 +3481ca4,25291d44 +3481ca8,910a006c +3481cac,340100ff +3481cb0,11410005 +3481cb8,12a4821 +3481cbc,91290000 +3481cc0,1520001c +3481cc8,3c098040 +3481ccc,25291d3b +3481cd0,25290001 +3481cd4,912a0000 +3481cd8,11400013 +3481ce0,20a5821 +3481ce4,916b0074 +3481ce8,340100ff +3481cec,1161fff8 +3481cf4,920c006c +3481cf8,118afff5 +3481d00,920c006d +3481d04,118afff2 +3481d0c,920c006e +3481d10,118affef +3481d18,a10b0069 +3481d1c,a10a006c +3481d20,10000004 +3481d28,340900ff +3481d2c,a1090069 +3481d30,a109006c +3481d34,3e00008 +3481d3c,90f0203 +3481d40,10d0b00 +3481d44,10101 +3481d48,1010001 +3481d4c,1010101 +3481d50,10001 +3481d54,1010101 +3481d58,1010100 +3481d5c,330821 +3481d60,200f0047 +3481d64,15ea000e +3481d68,3c028012 +3481d6c,8c42a5d4 +3481d70,8e6f00a4 +3481d74,f7a03 +3481d78,14400005 +3481d7c,34024830 +3481d80,15e20007 +3481d88,24190003 +3481d8c,10000004 +3481d90,34026311 +3481d94,15e20002 +3481d9c,24190003 +3481da0,3e00008 +3481da8,330821 +3481dac,3c028012 +3481db0,8c42a5d4 +3481db4,8e6f00a4 +3481db8,f7a03 +3481dbc,14400005 +3481dc0,34024830 +3481dc4,15e20007 +3481dcc,24190003 +3481dd0,10000004 +3481dd4,34026311 +3481dd8,15e20002 +3481de0,24190003 +3481de4,3e00008 +3481dec,34010018 +3481df0,14810015 +3481df8,14400013 +3481e00,3c0a8012 +3481e04,254aa5d0 +3481e08,814800a6 +3481e0c,31080020 +3481e10,1100000d +3481e14,34020000 +3481e18,8148007b +3481e1c,34090007 +3481e20,11090005 +3481e24,34090008 +3481e28,11090003 +3481e30,8100792 +3481e34,34020000 +3481e38,81480ed6 +3481e3c,35080001 +3481e40,a1480ed6 +3481e44,34020001 +3481e48,3e00008 +3481e50,3c018040 +3481e54,8c210ccc +3481e58,10200006 +3481e60,94480670 +3481e64,31010800 +3481e68,34080800 +3481e6c,3e00008 +3481e74,950804c6 +3481e78,3401000b +3481e7c,3e00008 +3481e84,27bdffe8 +3481e88,afa50000 +3481e8c,afa60004 +3481e90,afa70008 +3481e94,afbf0010 +3481e98,80a80000 +3481e9c,25090001 +3481ea0,15200005 +3481ea8,52025 +3481eac,24a50008 +3481eb0,c015c0c +3481eb4,24c6fff8 +3481eb8,c10253c +3481ec0,8fbf0010 +3481ec4,8fa70008 +3481ec8,8fa60004 +3481ecc,8fa50000 +3481ed0,8015c0c +3481ed4,27bd0018 +3481ed8,ac4d066c +3481edc,a0400141 +3481ee0,a0400144 +3481ee4,340e00fe +3481ee8,3e00008 +3481eec,a04e0142 +3481ef0,a2250021 +3481ef4,3c108040 +3481ef8,26100898 +3481efc,26100004 +3481f00,8e0a0000 +3481f04,1140000b +3481f0c,a7c02 +3481f10,1f17820 +3481f14,3158ff00 +3481f18,18c202 +3481f1c,17000003 +3481f20,315900ff +3481f24,81ea0000 +3481f28,32ac825 +3481f2c,81007bf +3481f30,a1f90000 +3481f34,3e00008 +3481f3c,27bdfff0 +3481f40,afbf0008 +3481f44,c1007dd +3481f48,2264ffff +3481f4c,344a0000 +3481f50,8fbf0008 +3481f54,27bd0010 +3481f58,27bdfff0 +3481f5c,afbf0008 +3481f60,c1007dd +3481f64,36440000 +3481f68,34500000 +3481f6c,8fbf0008 +3481f70,27bd0010 +3481f74,3c088040 +3481f78,25080025 +3481f7c,91080000 +3481f80,15000007 +3481f88,3c088012 +3481f8c,2508a5d0 +3481f90,1044020 +3481f94,91020024 +3481f98,10000007 +3481fa0,840c0 +3481fa4,3c028040 +3481fa8,24420034 +3481fac,1024020 +3481fb0,1044020 +3481fb4,91020000 +3481fb8,3e00008 +3481fc0,8fb60030 +3481fc4,8fb70034 +3481fc8,8fbe0038 +3481fcc,3c088040 +3481fd0,25080025 +3481fd4,a1000000 +3481fd8,3e00008 +3481fe0,3c0a8012 +3481fe4,8d4aa5d4 +3481fe8,15400006 +3481fec,31780001 +3481ff0,17000007 +3481ff4,3c184230 +3481ff8,3c184250 +3481ffc,3e00008 +3482004,17000002 +3482008,3c184210 +348200c,3c184238 +3482010,3e00008 +3482018,906e13e2 +348201c,90620068 +3482020,34010059 +3482024,10410002 +3482028,34010fff +348202c,340100ff +3482030,3e00008 +3482038,3c048012 +348203c,2484a5d0 +3482040,908e13e2 +3482044,90820068 +3482048,34010059 +348204c,10410002 +3482050,34010fff +3482054,340100ff +3482058,3e00008 +3482060,3c08801f +3482064,25085de0 +3482068,8d01009c +348206c,14200003 +3482070,46025102 +3482074,3c083f80 +3482078,44882000 +348207c,3e00008 +3482084,ac800118 +3482088,27ff0030 +348208c,3e00008 +3482090,ac8e0180 +3482094,3c018040 +3482098,8c210cbc +348209c,10200008 +34820a4,81efa64c +34820a8,34180009 +34820ac,11f80002 +34820b0,34180001 +34820b4,34180000 +34820b8,3e00008 +34820c0,8defa670 +34820c4,31f80018 +34820c8,3e00008 +34820d0,3c018040 +34820d4,8c210cbc +34820d8,10200008 +34820e0,816ba64c +34820e4,340c0009 +34820e8,116c0002 +34820ec,340c0001 +34820f0,340c0000 +34820f4,3e00008 +34820fc,8d6ba670 +3482100,316c0018 +3482104,3e00008 +348210c,3c018040 +3482110,8c210cbc +3482114,10200008 +348211c,3c098012 +3482120,812aa64c +3482124,340b0009 +3482128,114b0009 +348212c,34020000 +3482130,3e00008 +3482134,34020002 +3482138,3c098012 +348213c,812aa673 +3482140,314a0038 +3482144,15400002 +3482148,34020000 +348214c,34020002 +3482150,3e00008 +3482158,3c0a8040 +348215c,8d4a0cc0 +3482160,1140000a +3482164,34010001 +3482168,1141000b +348216c,34010002 +3482170,11410026 +3482174,34010003 +3482178,11410051 +348217c,34010004 +3482180,11410069 +3482184,34010005 +3482188,11410061 +348218c,34010000 +3482190,3e00008 +3482194,340a0000 +3482198,3401003f +348219c,415024 +34821a0,340f0000 +34821a4,31580001 +34821a8,13000002 +34821b0,25ef0001 +34821b4,31580002 +34821b8,13000002 +34821c0,25ef0001 +34821c4,31580004 +34821c8,13000002 +34821d0,25ef0001 +34821d4,31580008 +34821d8,13000002 +34821e0,25ef0001 +34821e4,31580010 +34821e8,13000002 +34821f0,25ef0001 +34821f4,31580020 +34821f8,13000002 +3482200,25ef0001 +3482204,10000043 +348220c,3c01001c +3482210,2421003f +3482214,415024 +3482218,340f0000 +348221c,31580001 +3482220,13000002 +3482228,25ef0001 +348222c,31580002 +3482230,13000002 +3482238,25ef0001 +348223c,31580004 +3482240,13000002 +3482248,25ef0001 +348224c,31580008 +3482250,13000002 +3482258,25ef0001 +348225c,31580010 +3482260,13000002 +3482268,25ef0001 +348226c,31580020 +3482270,13000002 +3482278,25ef0001 +348227c,3c180004 +3482280,158c024 +3482284,13000002 +348228c,25ef0001 +3482290,3c180008 +3482294,158c024 +3482298,13000002 +34822a0,25ef0001 +34822a4,3c180010 +34822a8,158c024 +34822ac,13000002 +34822b4,25ef0001 +34822b8,10000016 +34822c0,3c01001c +34822c4,415024 +34822c8,340f0000 +34822cc,3c180004 +34822d0,158c024 +34822d4,13000002 +34822dc,25ef0001 +34822e0,3c180008 +34822e4,158c024 +34822e8,13000002 +34822f0,25ef0001 +34822f4,3c180010 +34822f8,158c024 +34822fc,13000002 +3482304,25ef0001 +3482308,10000002 +3482310,84ef00d0 +3482314,34010000 +3482318,3c188040 +348231c,87180cd0 +3482320,3e00008 +3482324,1f8502a +3482328,34010018 +348232c,415024 +3482330,15410006 +3482338,90ef0084 +348233c,340a0012 +3482340,114f0002 +3482348,3401ffff +348234c,3e00008 +3482350,415024 +3482354,3c098040 +3482358,8d290cc4 +348235c,340a0001 +3482360,112a000e +3482364,340a0002 +3482368,112a0029 +348236c,340a0003 +3482370,112a0054 +3482374,340a0004 +3482378,112a0066 +3482380,340b0018 +3482384,4b5024 +3482388,156a0002 +348238c,34030000 +3482390,34030001 +3482394,3e00008 +348239c,3401003f +34823a0,415024 +34823a4,340c0000 +34823a8,314b0001 +34823ac,11600002 +34823b4,258c0001 +34823b8,314b0002 +34823bc,11600002 +34823c4,258c0001 +34823c8,314b0004 +34823cc,11600002 +34823d4,258c0001 +34823d8,314b0008 +34823dc,11600002 +34823e4,258c0001 +34823e8,314b0010 +34823ec,11600002 +34823f4,258c0001 +34823f8,314b0020 +34823fc,11600002 +3482404,258c0001 +3482408,10000043 +3482410,3c01001c +3482414,2421003f +3482418,415024 +348241c,340c0000 +3482420,314b0001 +3482424,11600002 +348242c,258c0001 +3482430,314b0002 +3482434,11600002 +348243c,258c0001 +3482440,314b0004 +3482444,11600002 +348244c,258c0001 +3482450,314b0008 +3482454,11600002 +348245c,258c0001 +3482460,314b0010 +3482464,11600002 +348246c,258c0001 +3482470,314b0020 +3482474,11600002 +348247c,258c0001 +3482480,3c0b0004 +3482484,14b5824 +3482488,11600002 +3482490,258c0001 +3482494,3c0b0008 +3482498,14b5824 +348249c,11600002 +34824a4,258c0001 +34824a8,3c0b0010 +34824ac,14b5824 +34824b0,11600002 +34824b8,258c0001 +34824bc,10000016 +34824c4,3c01001c +34824c8,415024 +34824cc,340c0000 +34824d0,3c0b0004 +34824d4,14b5824 +34824d8,11600002 +34824e0,258c0001 +34824e4,3c0b0008 +34824e8,14b5824 +34824ec,11600002 +34824f4,258c0001 +34824f8,3c0b0010 +34824fc,14b5824 +3482500,11600002 +3482508,258c0001 +348250c,10000002 +3482514,860c00d0 +3482518,34010000 +348251c,3c0b8040 +3482520,856b0cd2 +3482524,18b602a +3482528,15800002 +348252c,34030000 +3482530,34030001 +3482534,3e00008 +348253c,27bdffe4 +3482540,afb10014 +3482544,afbf0018 +3482548,3c038012 +348254c,2463a5d0 +3482550,860f001c +3482554,31f800ff +3482558,340100ff +348255c,17010004 +3482560,27110400 +3482564,90781397 +3482568,3318001f +348256c,27110430 +3482570,31e18000 +3482574,14200015 +348257c,3c088040 +3482580,8d080cc8 +3482584,1100000b +3482588,34010001 +348258c,11010003 +3482594,1000000d +348259c,806100a5 +34825a0,30210020 +34825a4,10200008 +34825ac,10000007 +34825b4,c01e6d1 +34825bc,34010008 +34825c0,10410002 +34825c8,34112053 +34825cc,a611010e +34825d0,8fbf0018 +34825d4,8fb10014 +34825d8,3e00008 +34825dc,27bd001c +34825e0,9059008a +34825e4,340900ff +34825e8,11390007 +34825f0,2b290031 +34825f4,15200005 +34825f8,34190000 +34825fc,34190001 +3482600,10000002 +3482608,34190000 +348260c,3e00008 +3482614,27bdfff0 +3482618,afa80000 +348261c,e7a20004 +3482620,e7a40008 +3482624,3c088040 +3482628,25080cd4 +348262c,91080000 +3482630,1100000f +3482634,340d0200 +3482638,3c08801e +348263c,2508aa30 +3482640,c5020028 +3482644,3c08c496 +3482648,44882000 +3482650,4604103c +3482658,45010004 +3482660,340d0200 +3482664,10000002 +348266c,340d00c0 +3482670,c7a40008 +3482674,c7a20004 +3482678,8fa80000 +348267c,3e00008 +3482680,27bd0010 +3482684,8e2a1d44 +3482688,314a0100 +348268c,1540000a +3482694,8e2a1d48 +3482698,314a0100 +348269c,15400007 +34826a4,8e211d48 +34826a8,342a0100 +34826ac,ae2a1d48 +34826b0,10000003 +34826b4,5024 +34826b8,240c0000 +34826bc,340a0001 +34826c0,3e00008 +34826c8,27bdfff0 +34826cc,afbf0000 +34826d0,c10103f +34826d8,8ece1c44 +34826dc,3c18db06 +34826e0,8fbf0000 +34826e4,3e00008 +34826e8,27bd0010 +34826f0,a21901e9 +34826f4,27bdffe0 34826f8,afbf0004 34826fc,afa40008 -3482700,afa1000c -3482704,c100f64 -3482708,2002021 -348270c,8fbf0004 -3482710,8fa40008 -3482714,8fa1000c -3482718,3e00008 -348271c,27bd0010 -3482720,27bdffe0 -3482724,afbf0004 -3482728,afa10008 -348272c,afa2000c -3482730,afa30010 -3482734,afac0014 -3482738,c100f8b -348273c,3002021 -3482740,40c821 -3482744,8fbf0004 -3482748,8fa10008 -348274c,8fa2000c -3482750,8fa30010 -3482754,8fac0014 -3482758,3e00008 -348275c,27bd0020 -3482760,3f800000 -3482764,34080004 -3482768,3c09801d -348276c,252984a0 -3482770,8d291c44 -3482774,11200016 -348277c,3c018040 -3482780,c4362760 -3482788,46166302 -348278c,9127014f -3482790,1507000f -3482794,448f2000 -3482798,3c07803a -348279c,24e78bc0 -34827a0,8d280664 -34827a4,1507000a -34827ac,3c088040 -34827b0,25080ce0 -34827b4,91080000 -34827b8,11000005 -34827c0,3c083fc0 -34827c4,4488b000 -34827cc,46166302 -34827d4,44056000 -34827d8,3e00008 -34827e0,3c188040 -34827e4,97180848 -34827e8,a5d80794 -34827ec,3c188040 -34827f0,9718084a -34827f4,a5d80796 -34827f8,3c188040 -34827fc,9718084c -3482800,a5d80798 -3482804,ec021 -3482808,3e00008 -3482810,27bdffe8 -3482814,afbf0004 -3482818,afb00008 -348281c,808021 +3482700,afa5000c +3482704,afa80010 +3482708,e7aa0014 +348270c,e7b00018 +3482710,c100f58 +3482714,2002021 +3482718,8fbf0004 +348271c,8fa40008 +3482720,8fa5000c +3482724,8fa80010 +3482728,c7aa0014 +348272c,c7b00018 +3482730,3e00008 +3482734,27bd0020 +3482738,3f800000 +348273c,34080004 +3482740,3c09801d +3482744,252984a0 +3482748,8d291c44 +348274c,11200016 +3482754,3c018040 +3482758,c4362738 +3482760,46166302 +3482764,9127014f +3482768,1507000f +348276c,448f2000 +3482770,3c07803a +3482774,24e78bc0 +3482778,8d280664 +348277c,1507000a +3482784,3c088040 +3482788,25080cdf +348278c,91080000 +3482790,11000005 +3482798,3c083fc0 +348279c,4488b000 +34827a4,46166302 +34827ac,44056000 +34827b0,3e00008 +34827b8,3c188040 +34827bc,97180848 +34827c0,a5d80794 +34827c4,3c188040 +34827c8,9718084a +34827cc,a5d80796 +34827d0,3c188040 +34827d4,9718084c +34827d8,a5d80798 +34827dc,ec021 +34827e0,3e00008 +34827e8,27bdffe8 +34827ec,afbf0004 +34827f0,afb00008 +34827f4,808021 +34827f8,3c048040 +34827fc,9484086c +3482800,c100a14 +3482808,ae02022c +348280c,3c048040 +3482810,9484086e +3482814,c100a14 +348281c,ae020230 3482820,3c048040 -3482824,9484086c -3482828,c100a1e -3482830,ae02022c -3482834,3c048040 -3482838,9484086e -348283c,c100a1e -3482844,ae020230 -3482848,3c048040 -348284c,94840870 -3482850,c100a1e -3482858,ae020234 -348285c,c100a1e -3482860,340400ff -3482864,ae020238 -3482868,8fbf0004 -348286c,8fb00008 +3482824,94840870 +3482828,c100a14 +3482830,ae020234 +3482834,c100a14 +3482838,340400ff +348283c,ae020238 +3482840,8fbf0004 +3482844,8fb00008 +3482848,3e00008 +348284c,27bd0018 +3482850,28810020 +3482854,14200005 +3482858,288100e0 +348285c,10200003 +3482864,10000002 +3482868,861023 +348286c,851023 3482870,3e00008 -3482874,27bd0018 -3482878,28810020 -348287c,14200005 -3482880,288100e0 -3482884,10200003 -348288c,10000002 -3482890,861023 -3482894,851023 -3482898,3e00008 -348289c,304200ff -34828a4,2b010192 -34828a8,10200004 -34828b0,3c088010 -34828b4,3e00008 -34828b8,25088ff8 -34828bc,3c088040 -34828c0,25080c9c -34828c4,3e00008 -34828c8,2718fe6d -34828cc,8e1821 -34828d0,28c10192 -34828d4,10200004 -34828dc,3c198010 -34828e0,3e00008 -34828e4,27398ff8 -34828e8,3c198040 -34828ec,27390c9c +3482874,304200ff +348287c,2b010192 +3482880,10200004 +3482888,3c088010 +348288c,3e00008 +3482890,25088ff8 +3482894,3c088040 +3482898,25080c9c +348289c,3e00008 +34828a0,2718fe6d +34828a4,8e1821 +34828a8,28c10192 +34828ac,10200004 +34828b4,3c198010 +34828b8,3e00008 +34828bc,27398ff8 +34828c0,3c198040 +34828c4,27390c9c +34828c8,3e00008 +34828cc,24c6fe6d +34828d0,86190000 +34828d4,8e050004 +34828d8,26040008 +34828dc,194023 +34828e0,29010192 +34828e4,10200004 +34828ec,3c138010 34828f0,3e00008 -34828f4,24c6fe6d -34828f8,86190000 -34828fc,8e050004 -3482900,26040008 -3482904,194023 -3482908,29010192 -348290c,10200004 -3482914,3c138010 -3482918,3e00008 -348291c,26738ff8 -3482920,3c138040 -3482924,26730c9c -3482928,3e00008 -348292c,2508fe6d -3482930,8e040010 -3482934,28610192 -3482938,10200004 -3482940,3c138010 -3482944,8100a56 -3482948,26738ff8 -348294c,3c138040 -3482950,26730c9c -3482954,2463fe6d -3482958,378c0 -348295c,26f1021 -3482960,3e00008 -3482964,8c450000 -3482968,8fa40020 -348296c,3c088040 -3482970,81080cd7 -3482974,24060050 -3482978,1100000b -3482980,84860014 -3482984,50c00008 -3482988,24060050 -348298c,80a81d44 -3482990,c85824 -3482994,55600004 -3482998,24060050 -348299c,1064025 -34829a0,a0a81d44 -34829a4,24c60014 -34829a8,3e00008 -34829b0,27bdfff0 -34829b4,afbf0004 -34829b8,afa80008 -34829bc,afa9000c -34829c0,3c088040 -34829c4,81080cd7 -34829c8,11000009 -34829d0,86080014 -34829d4,11000006 -34829dc,82291d44 -34829e0,1094024 -34829e4,24020001 -34829e8,11000003 -34829f0,c01c6a5 -34829f8,8fbf0004 -34829fc,8fa80008 -3482a00,8fa9000c -3482a04,27bd0010 -3482a08,3e00008 -3482a10,8fb00034 -3482a14,848800b4 -3482a18,11000002 -3482a20,a48000b0 -3482a24,3e00008 -3482a2c,1b9fcd5 -3482a30,fb251ad2 -3482a34,f2dc -3482a38,8022 -3482a3c,23bdffec -3482a40,afbf0010 -3482a44,9608001c -3482a48,31088000 -3482a4c,1100000f -3482a54,3c038012 -3482a58,2463a5d0 -3482a5c,946d0edc -3482a60,31ad0400 -3482a64,11a0000b -3482a6c,8c6e0004 -3482a70,15c00008 -3482a78,948d1d2a -3482a7c,35ae0001 -3482a80,a48e1d2a -3482a84,10000003 -3482a8c,c037385 -3482a94,8fbf0010 -3482a98,23bd0014 -3482a9c,3e00008 -3482aa4,8c6e0004 -3482aa8,3e00008 -3482ab0,8488001c -3482ab4,34010002 -3482ab8,15010015 -3482ac0,3c028012 -3482ac4,2442a5d0 -3482ac8,8c4b0004 -3482acc,15600012 -3482ad4,3c098040 -3482ad8,25292b20 -3482adc,ac890154 -3482ae0,27bdffe0 -3482ae4,afbf0010 -3482ae8,afa50014 -3482aec,8fa60014 -3482af0,3c058040 -3482af4,24a52a2c -3482af8,c009571 -3482afc,24c41c24 -3482b00,8fbf0010 -3482b04,27bd0020 -3482b08,10000003 -3482b10,afa40000 -3482b14,afa50004 -3482b18,3e00008 -3482b20,27bdffd8 -3482b24,afb00020 -3482b28,afbf0024 -3482b2c,afa5002c -3482b30,808025 -3482b34,c600015c -3482b38,3c01c4a4 -3482b3c,24212000 -3482b40,44811000 -3482b44,3c028012 -3482b48,2442a5d0 -3482b4c,944b0edc -3482b50,316c0400 -3482b54,944b0ee0 -3482b58,11800031 -3482b60,94ad1d2a -3482b64,31ae0001 -3482b68,11c00006 -3482b70,31adfffe -3482b74,a4ad1d2a -3482b78,34010200 -3482b7c,1615826 -3482b80,a44b0ee0 -3482b84,316c0200 -3482b88,1180000b -3482b90,34010000 +34828f4,26738ff8 +34828f8,3c138040 +34828fc,26730c9c +3482900,3e00008 +3482904,2508fe6d +3482908,8e040010 +348290c,28610192 +3482910,10200004 +3482918,3c138010 +348291c,8100a4c +3482920,26738ff8 +3482924,3c138040 +3482928,26730c9c +348292c,2463fe6d +3482930,378c0 +3482934,26f1021 +3482938,3e00008 +348293c,8c450000 +3482940,8fa40020 +3482944,3c088040 +3482948,81080cd7 +348294c,24060050 +3482950,1100000b +3482958,84860014 +348295c,50c00008 +3482960,24060050 +3482964,80a81d44 +3482968,c85824 +348296c,55600004 +3482970,24060050 +3482974,1064025 +3482978,a0a81d44 +348297c,24c60014 +3482980,3e00008 +3482988,27bdfff0 +348298c,afbf0004 +3482990,afa80008 +3482994,afa9000c +3482998,3c088040 +348299c,81080cd7 +34829a0,11000009 +34829a8,86080014 +34829ac,11000006 +34829b4,82291d44 +34829b8,1094024 +34829bc,24020001 +34829c0,11000003 +34829c8,c01c6a5 +34829d0,8fbf0004 +34829d4,8fa80008 +34829d8,8fa9000c +34829dc,27bd0010 +34829e0,3e00008 +34829e8,8fb00034 +34829ec,848800b4 +34829f0,11000002 +34829f8,a48000b0 +34829fc,3e00008 +3482a04,1b9fcd5 +3482a08,fb251ad2 +3482a0c,f2dc +3482a10,8022 +3482a14,23bdffec +3482a18,afbf0010 +3482a1c,9608001c +3482a20,31088000 +3482a24,1100000f +3482a2c,3c038012 +3482a30,2463a5d0 +3482a34,946d0edc +3482a38,31ad0400 +3482a3c,11a0000b +3482a44,8c6e0004 +3482a48,15c00008 +3482a50,948d1d2a +3482a54,35ae0001 +3482a58,a48e1d2a +3482a5c,10000003 +3482a64,c037385 +3482a6c,8fbf0010 +3482a70,23bd0014 +3482a74,3e00008 +3482a7c,8c6e0004 +3482a80,3e00008 +3482a88,8488001c +3482a8c,34010002 +3482a90,15010015 +3482a98,3c028012 +3482a9c,2442a5d0 +3482aa0,8c4b0004 +3482aa4,15600012 +3482aac,3c098040 +3482ab0,25292af8 +3482ab4,ac890154 +3482ab8,27bdffe0 +3482abc,afbf0010 +3482ac0,afa50014 +3482ac4,8fa60014 +3482ac8,3c058040 +3482acc,24a52a04 +3482ad0,c009571 +3482ad4,24c41c24 +3482ad8,8fbf0010 +3482adc,27bd0020 +3482ae0,10000003 +3482ae8,afa40000 +3482aec,afa50004 +3482af0,3e00008 +3482af8,27bdffd8 +3482afc,afb00020 +3482b00,afbf0024 +3482b04,afa5002c +3482b08,808025 +3482b0c,c600015c +3482b10,3c01c4a4 +3482b14,24212000 +3482b18,44811000 +3482b1c,3c028012 +3482b20,2442a5d0 +3482b24,944b0edc +3482b28,316c0400 +3482b2c,944b0ee0 +3482b30,11800031 +3482b38,94ad1d2a +3482b3c,31ae0001 +3482b40,11c00006 +3482b48,31adfffe +3482b4c,a4ad1d2a +3482b50,34010200 +3482b54,1615826 +3482b58,a44b0ee0 +3482b5c,316c0200 +3482b60,1180000b +3482b68,34010000 +3482b6c,44812000 +3482b70,3c064080 +3482b74,44863000 +3482b7c,46060200 +3482b80,4604403c +3482b88,10000009 +3482b90,3c01c42a 3482b94,44812000 -3482b98,3c064080 +3482b98,3c06c080 3482b9c,44863000 3482ba4,46060200 -3482ba8,4604403c -3482bb0,10000009 -3482bb8,3c01c42a -3482bbc,44812000 -3482bc0,3c06c080 -3482bc4,44863000 -3482bcc,46060200 -3482bd0,4608203c -3482bd8,45000005 -3482be0,46004106 -3482be4,c008c42 -3482be8,3405205e -3482bec,2002025 -3482bf0,e604015c -3482bf4,46022100 -3482bf8,e6040028 -3482bfc,4600240d -3482c00,44098000 -3482c04,8fa2002c -3482c08,8c5807c0 -3482c0c,8f190028 -3482c10,240ffb57 -3482c14,a72f0012 -3482c18,a7290022 -3482c1c,a7290032 -3482c20,8fbf0024 -3482c24,8fb00020 -3482c28,27bd0028 -3482c2c,3e00008 -3482c34,ac20753c -3482c38,3c018040 -3482c3c,90210cdc -3482c40,10200008 -3482c44,3c01801d -3482c48,242184a0 -3482c4c,94211d2c -3482c50,302100c0 -3482c54,14200003 -3482c5c,801ce4c -3482c64,801ce45 -3482c6c,3c088012 -3482c70,2508a5d0 -3482c74,8d0a0004 -3482c78,11400006 -3482c7c,8d090000 -3482c80,3401003b -3482c84,15210008 -3482c8c,3c0bc47a -3482c90,ac8b0028 -3482c94,3401016d -3482c98,15210003 -3482ca0,3c0bc47a -3482ca4,ac8b0028 -3482ca8,3e00008 -3482cac,340e0001 -3482cb4,3c0f8040 -3482cb8,25ef2cb0 -3482cbc,81ef0000 -3482cc0,3c188040 -3482cc4,27182cb1 -3482cc8,83180000 -3482ccc,1f87820 -3482cd0,5e00007 -3482cd4,34010003 -3482cd8,1e1082a -3482cdc,14200002 -3482ce4,340f0008 -3482ce8,10000003 -3482cec,1f08004 -3482cf0,f7822 -3482cf4,1f08007 -3482cf8,90af003d -3482cfc,11e00004 -3482d04,108043 -3482d08,108400 -3482d0c,108403 -3482d10,3e00008 -3482d1c,4f1021 -3482d20,3c098040 -3482d24,81292d18 -3482d28,11200008 -3482d2c,8042a65c -3482d30,3c0a801d -3482d34,254a84a0 -3482d38,8d491d44 -3482d3c,31210002 -3482d40,14200002 -3482d44,3402000a -3482d48,34020000 -3482d4c,3e00008 -3482d54,594021 -3482d58,3c0a8040 -3482d5c,814a2d18 -3482d60,11400002 -3482d64,8109008c -3482d68,34090000 -3482d6c,3e00008 -3482d74,1ee7821 -3482d78,3c0a8040 -3482d7c,814a2d18 -3482d80,11400002 -3482d84,81efa65c -3482d88,340f0000 +3482ba8,4608203c +3482bb0,45000005 +3482bb8,46004106 +3482bbc,c008c42 +3482bc0,3405205e +3482bc4,2002025 +3482bc8,e604015c +3482bcc,46022100 +3482bd0,e6040028 +3482bd4,4600240d +3482bd8,44098000 +3482bdc,8fa2002c +3482be0,8c5807c0 +3482be4,8f190028 +3482be8,240ffb57 +3482bec,a72f0012 +3482bf0,a7290022 +3482bf4,a7290032 +3482bf8,8fbf0024 +3482bfc,8fb00020 +3482c00,27bd0028 +3482c04,3e00008 +3482c0c,ac20753c +3482c10,3c018040 +3482c14,90210cdc +3482c18,10200008 +3482c1c,3c01801d +3482c20,242184a0 +3482c24,94211d2c +3482c28,302100c0 +3482c2c,14200003 +3482c34,801ce4c +3482c3c,801ce45 +3482c44,3c088012 +3482c48,2508a5d0 +3482c4c,8d0a0004 +3482c50,11400006 +3482c54,8d090000 +3482c58,3401003b +3482c5c,15210008 +3482c64,3c0bc47a +3482c68,ac8b0028 +3482c6c,3401016d +3482c70,15210003 +3482c78,3c0bc47a +3482c7c,ac8b0028 +3482c80,3e00008 +3482c84,340e0001 +3482c8c,3c0f8040 +3482c90,25ef2c88 +3482c94,81ef0000 +3482c98,3c188040 +3482c9c,27182c89 +3482ca0,83180000 +3482ca4,1f87820 +3482ca8,5e00007 +3482cac,34010003 +3482cb0,1e1082a +3482cb4,14200002 +3482cbc,340f0008 +3482cc0,10000003 +3482cc4,1f08004 +3482cc8,f7822 +3482ccc,1f08007 +3482cd0,90af003d +3482cd4,11e00004 +3482cdc,108043 +3482ce0,108400 +3482ce4,108403 +3482ce8,3e00008 +3482cf4,4f1021 +3482cf8,3c098040 +3482cfc,81292cf0 +3482d00,11200008 +3482d04,8042a65c +3482d08,3c0a801d +3482d0c,254a84a0 +3482d10,8d491d44 +3482d14,31210002 +3482d18,14200002 +3482d1c,3402000a +3482d20,34020000 +3482d24,3e00008 +3482d2c,594021 +3482d30,3c0a8040 +3482d34,814a2cf0 +3482d38,11400002 +3482d3c,8109008c +3482d40,34090000 +3482d44,3e00008 +3482d4c,1ee7821 +3482d50,3c0a8040 +3482d54,814a2cf0 +3482d58,11400002 +3482d5c,81efa65c +3482d60,340f0000 +3482d64,3e00008 +3482d6c,3c098040 +3482d70,81292cf0 +3482d74,11200005 +3482d78,3c0a801d +3482d7c,254a84a0 +3482d80,8d491d44 +3482d84,35290002 +3482d88,ad491d44 3482d8c,3e00008 -3482d94,3c098040 -3482d98,81292d18 -3482d9c,11200005 -3482da0,3c0a801d -3482da4,254a84a0 -3482da8,8d491d44 -3482dac,35290002 -3482db0,ad491d44 -3482db4,3e00008 -3482db8,afa50024 -3482e80,ff00 -3482e84,3c0a8040 -3482e88,254a2e82 -3482e8c,914b0000 -3482e90,340c00ff -3482e94,a14c0000 -3482e98,34087fff -3482e9c,15c80006 -3482ea0,3c098040 -3482ea4,25292e40 -3482ea8,116c000c -3482eac,b5840 -3482eb0,12b4821 -3482eb4,952e0000 -3482eb8,27bdfff0 -3482ebc,afbf0004 -3482ec0,afa40008 -3482ec4,c100bcb -3482ec8,1c02021 -3482ecc,407021 -3482ed0,8fbf0004 -3482ed4,8fa40008 -3482ed8,27bd0010 -3482edc,3e00008 -3482ee0,a42e1e1a -3482ee4,9608001c -3482ee8,84303 -3482eec,3108000f -3482ef0,29090002 -3482ef4,1520000b -3482efc,960d0018 -3482f00,27bdfff0 -3482f04,afbf0004 -3482f08,afa40008 -3482f0c,c100bcb -3482f10,1a02021 -3482f14,406821 -3482f18,8fbf0004 -3482f1c,8fa40008 -3482f20,27bd0010 -3482f24,3e00008 -3482f28,270821 -3482f2c,34087ff9 -3482f30,884022 -3482f34,501000f -3482f38,34081000 -3482f3c,884022 -3482f40,500000c -3482f44,3c098012 -3482f48,2529a5d0 -3482f4c,3c0a8040 -3482f50,254a2dbc -3482f54,3c0b8040 -3482f58,256b2e82 -3482f5c,a1680000 -3482f60,84080 -3482f64,1485021 -3482f68,95440000 -3482f6c,91480002 -3482f70,a1281397 -3482f74,3e00008 -3482f78,801021 -3482f7c,8c6d0004 -3482f80,3c0e8040 -3482f84,81ce0cde -3482f88,1ae7825 -3482f8c,11e0000a -3482f94,11c00006 -3482f9c,946e0ed4 -3482fa0,31ce0010 -3482fa4,1cd7025 -3482fa8,11c00003 -3482fb0,3e00008 -3482fb4,340f0001 -3482fb8,3e00008 -3482fbc,340f0000 -3482fc0,1000 -3482fc4,4800 -3482fcc,7000 -3482fd0,4800 -3482fd8,8040ef80 -3482fdc,42890 -3482fe0,34191000 -3482fe4,340a4800 -3482fe8,340d0000 -3482fec,340c7000 -3482ff0,340e4800 -3482ff4,3e00008 -3482ff8,34180000 -3483000,3c088012 -3483004,2508a5d0 -3483008,95090eda -348300c,31290008 -3483010,15200008 -3483014,8d090004 -3483018,15200004 -348301c,3c098040 -3483020,81292ffc -3483024,15200003 -348302c,3e00008 -3483030,34090000 -3483034,3e00008 -3483038,34090001 -348303c,3c08801d -3483040,25082578 -3483044,3409006c -3483048,8d0a6300 -348304c,112a0009 -3483050,340a0001 -3483054,340b0036 -3483058,ad0a6300 -348305c,a10b6304 -3483060,240cffff -3483064,810e63e7 -3483068,15cc0002 -348306c,340d0002 -3483070,a10d63e7 -3483074,3e00008 -3483078,24060022 -3483084,afb0003c -3483088,27bdffe0 -348308c,afbf0014 -3483090,3c098040 -3483094,2529307c -3483098,812a0000 -348309c,1540000a -34830a4,8e4b0028 -34830a8,3c0c4370 -34830ac,16c082a -34830b0,14200005 -34830b4,340d0001 -34830b8,a12d0000 -34830bc,3404001b -34830c0,c032a9c -34830c8,8fbf0014 -34830cc,3e00008 -34830d0,27bd0020 -34830d4,8e721c44 -34830d8,240e0003 -34830dc,a22e05b0 -34830e0,926f07af -34830e4,4406b000 -34830e8,4407a000 -34830ec,3e00008 -34830f4,90580000 -34830f8,27bdffd0 -34830fc,afbf0014 -3483100,afa40018 -3483104,afa5001c -3483108,afa60020 -348310c,afa70024 -3483110,3c048040 -3483114,8084307c -3483118,1080001b -3483120,3c048040 -3483124,8c843080 -3483128,2885001e -348312c,14a00016 -3483134,28850050 -3483138,10a0000c -3483140,3c043d4d -3483144,2484cccd -3483148,ae4404d0 -348314c,2402025 -3483150,248404c8 -3483154,3c05437f -3483158,3c063f80 -348315c,3c074120 -3483160,c0190a0 -3483168,10000007 -348316c,2402025 -3483170,248404c8 -3483174,34050000 -3483178,3c063f80 -348317c,3c074120 -3483180,c0190a0 -3483188,8fbf0014 -348318c,8fa40018 -3483190,8fa5001c -3483194,8fa60020 -3483198,8fa70024 -348319c,3e00008 -34831a0,27bd0030 -34831a4,860800b6 -34831a8,25084000 -34831ac,a60800b6 -34831b0,34080001 -34831b4,a20805e8 -34831b8,a2000554 -34831bc,8e090004 -34831c0,240afffe -34831c4,1495824 -34831c8,ae0b0004 -34831cc,3c088040 -34831d0,25083214 -34831d4,3e00008 -34831d8,ae08013c -34831dc,860800b6 -34831e0,2508c000 -34831e4,a60800b6 -34831e8,34080001 -34831ec,a20805e8 -34831f0,a2000554 -34831f4,8e090004 -34831f8,240afffe -34831fc,1495824 -3483200,ae0b0004 -3483204,3c088040 -3483208,25083214 -348320c,3e00008 -3483210,ae08013c -3483214,27bdffd0 -3483218,afbf0014 -348321c,afa40018 -3483220,afa5001c -3483224,34080001 -3483228,a0880554 -348322c,8488001c -3483230,11000006 -3483238,3c048040 -348323c,8c843080 -3483240,24850001 -3483244,3c018040 -3483248,ac253080 -348324c,3c048040 -3483250,8c843080 -3483254,34050003 -3483258,14850009 -3483260,8fa40018 -3483264,8488001c -3483268,34090001 -348326c,11090002 -3483270,240539b0 -3483274,240539b1 -3483278,c008bf4 -3483280,28850028 -3483284,14a0001a -348328c,8fa40018 -3483290,24840028 -3483294,3c0543c8 -3483298,3c063f80 -348329c,3c0740c0 -34832a0,c0190a0 -34832a8,8fa40018 -34832ac,24840558 -34832b0,c023270 -34832b8,8fa40018 -34832bc,c008bf4 -34832c0,2405311f -34832c4,3c048040 -34832c8,8c843080 -34832cc,34080061 -34832d0,14880007 -34832d8,8fa40018 -34832dc,8fa5001c -34832e0,8c8b0138 -34832e4,8d6b0010 -34832e8,256913ec -34832ec,ac89013c -34832f0,8fbf0014 -34832f4,3e00008 -34832f8,27bd0030 -34832fc,3c01c416 -3483300,44816000 -3483304,3e00008 -3483308,3025 -348330c,3c014416 -3483310,44816000 -3483314,3e00008 -3483318,3025 -348331c,afa40018 -3483320,3c08801e -3483324,2508aa30 -3483328,3e00008 -348332c,ad000678 -3483330,27bdffe8 -3483334,afaa0004 -3483338,846f4a2a -348333c,340a0002 -3483340,15ea0002 -3483344,340a0001 -3483348,a46a4a2a -348334c,846f4a2a -3483350,8faa0004 -3483354,3e00008 -3483358,27bd0018 -348335c,27bdffe8 -3483360,afaa0004 -3483364,846e4a2a -3483368,340a0002 -348336c,15ca0002 -3483370,340a0003 -3483374,a46a4a2a -3483378,846e4a2a -348337c,8faa0004 -3483380,3e00008 -3483384,27bd0018 -3483388,27bdffe8 -348338c,afaa0004 -3483390,85034a2a -3483394,340a0002 -3483398,146a0002 -348339c,340a0001 -34833a0,a50a4a2a -34833a4,85034a2a -34833a8,8faa0004 -34833ac,3e00008 -34833b0,27bd0018 -34833b4,27bdffe8 -34833b8,afaa0004 -34833bc,85034a2a -34833c0,340a0002 -34833c4,146a0002 -34833c8,340a0003 -34833cc,a50a4a2a -34833d0,85034a2a -34833d4,8faa0004 -34833d8,3e00008 -34833dc,27bd0018 -34833e0,27bdffe8 -34833e4,afaa0004 -34833e8,85034a2a -34833ec,340a0002 -34833f0,146a0002 -34833f4,340a0001 -34833f8,a50a4a2a -34833fc,85034a2a -3483400,8faa0004 -3483404,3e00008 -3483408,27bd0018 -348340c,27bdffe8 -3483410,afaa0004 -3483414,85034a2a -3483418,340a0002 -348341c,146a0002 -3483420,340a0003 -3483424,a50a4a2a -3483428,85034a2a -348342c,8faa0004 -3483430,3e00008 -3483434,27bd0018 -3483438,27bdffe8 -348343c,afaa0004 -3483440,a42bca2a -3483444,340a0002 -3483448,156a0002 -348344c,340a0003 -3483450,a50a4a2a -3483454,85034a2a -3483458,8faa0004 -348345c,3e00008 -3483460,27bd0018 -3483464,27bdffe8 -3483468,afaa0004 -348346c,85034a2a -3483470,340a0002 -3483474,146a0002 -3483478,340a0001 -348347c,a50a4a2a -3483480,85034a2a -3483484,8faa0004 -3483488,3e00008 -348348c,27bd0018 -3483490,27bdffe8 -3483494,afaa0004 -3483498,85034a2a -348349c,340a0002 -34834a0,146a0002 -34834a4,340a0003 -34834a8,a50a4a2a -34834ac,85034a2a -34834b0,8faa0004 -34834b4,3e00008 -34834b8,27bd0018 -34834bc,3c08801e -34834c0,25084ee8 -34834c4,3409f000 -34834c8,a5090000 -34834cc,3e00008 -34834d0,84cb4a2e -34834d4,24a56f04 -34834d8,8c880144 -34834dc,11050007 -34834e0,3c09801e -34834e4,2529aa30 -34834e8,3c0a446a -34834ec,254ac000 -34834f0,3c0bc324 -34834f4,ad2a0024 -34834f8,ad2b002c -34834fc,3e00008 -3483504,27bdffd8 -3483508,afbf0024 -348350c,afa40028 -3483510,afa5002c -3483514,afa60030 -3483518,c022865 -348351c,8fa40030 -3483520,44822000 -3483524,44800000 -3483528,240e0002 -348352c,468021a0 -3483530,afae0018 -3483534,8fa40028 -3483538,8fa5002c -348353c,8fa60030 -3483540,3c073f80 -3483544,3c080400 -3483548,250832b0 -348354c,14c80002 -3483554,3c074040 -3483558,e7a60014 -348355c,e7a00010 -3483560,c023000 -3483564,e7a0001c -3483568,8fbf0024 -348356c,8fbf0024 -3483570,3e00008 -3483574,27bd0028 +3482d90,afa50024 +3482e58,ff00 +3482e5c,3c0a8040 +3482e60,254a2e5a +3482e64,914b0000 +3482e68,340c00ff +3482e6c,a14c0000 +3482e70,34087fff +3482e74,15c80006 +3482e78,3c098040 +3482e7c,25292e18 +3482e80,116c000c +3482e84,b5840 +3482e88,12b4821 +3482e8c,952e0000 +3482e90,27bdfff0 +3482e94,afbf0004 +3482e98,afa40008 +3482e9c,c100bc1 +3482ea0,1c02021 +3482ea4,407021 +3482ea8,8fbf0004 +3482eac,8fa40008 +3482eb0,27bd0010 +3482eb4,3e00008 +3482eb8,a42e1e1a +3482ebc,9608001c +3482ec0,84303 +3482ec4,3108000f +3482ec8,29090002 +3482ecc,1520000b +3482ed4,960d0018 +3482ed8,27bdfff0 +3482edc,afbf0004 +3482ee0,afa40008 +3482ee4,c100bc1 +3482ee8,1a02021 +3482eec,406821 +3482ef0,8fbf0004 +3482ef4,8fa40008 +3482ef8,27bd0010 +3482efc,3e00008 +3482f00,270821 +3482f04,34087ff9 +3482f08,884022 +3482f0c,501000f +3482f10,34081000 +3482f14,884022 +3482f18,500000c +3482f1c,3c098012 +3482f20,2529a5d0 +3482f24,3c0a8040 +3482f28,254a2d94 +3482f2c,3c0b8040 +3482f30,256b2e5a +3482f34,a1680000 +3482f38,84080 +3482f3c,1485021 +3482f40,95440000 +3482f44,91480002 +3482f48,a1281397 +3482f4c,3e00008 +3482f50,801021 +3482f54,8c6d0004 +3482f58,3c0e8040 +3482f5c,81ce0cdd +3482f60,1ae7825 +3482f64,11e0000a +3482f6c,11c00006 +3482f74,946e0ed4 +3482f78,31ce0010 +3482f7c,1cd7025 +3482f80,11c00003 +3482f88,3e00008 +3482f8c,340f0001 +3482f90,3e00008 +3482f94,340f0000 +3482f98,1000 +3482f9c,4800 +3482fa4,7000 +3482fa8,4800 +3482fb0,8040f310 +3482fb4,42890 +3482fb8,34191000 +3482fbc,340a4800 +3482fc0,340d0000 +3482fc4,340c7000 +3482fc8,340e4800 +3482fcc,3e00008 +3482fd0,34180000 +3482fd8,3c088012 +3482fdc,2508a5d0 +3482fe0,95090eda +3482fe4,31290008 +3482fe8,15200008 +3482fec,8d090004 +3482ff0,15200004 +3482ff4,3c098040 +3482ff8,81292fd4 +3482ffc,15200003 +3483004,3e00008 +3483008,34090000 +348300c,3e00008 +3483010,34090001 +3483014,3c08801d +3483018,25082578 +348301c,3409006c +3483020,8d0a6300 +3483024,112a0009 +3483028,340a0001 +348302c,340b0036 +3483030,ad0a6300 +3483034,a10b6304 +3483038,240cffff +348303c,810e63e7 +3483040,15cc0002 +3483044,340d0002 +3483048,a10d63e7 +348304c,3e00008 +3483050,24060022 +348305c,afb0003c +3483060,27bdffe0 +3483064,afbf0014 +3483068,3c098040 +348306c,25293054 +3483070,812a0000 +3483074,1540000a +348307c,8e4b0028 +3483080,3c0c4370 +3483084,16c082a +3483088,14200005 +348308c,340d0001 +3483090,a12d0000 +3483094,3404001b +3483098,c032a9c +34830a0,8fbf0014 +34830a4,3e00008 +34830a8,27bd0020 +34830ac,8e721c44 +34830b0,240e0003 +34830b4,a22e05b0 +34830b8,926f07af +34830bc,4406b000 +34830c0,4407a000 +34830c4,3e00008 +34830cc,90580000 +34830d0,27bdffd0 +34830d4,afbf0014 +34830d8,afa40018 +34830dc,afa5001c +34830e0,afa60020 +34830e4,afa70024 +34830e8,3c048040 +34830ec,80843054 +34830f0,1080001b +34830f8,3c048040 +34830fc,8c843058 +3483100,2885001e +3483104,14a00016 +348310c,28850050 +3483110,10a0000c +3483118,3c043d4d +348311c,2484cccd +3483120,ae4404d0 +3483124,2402025 +3483128,248404c8 +348312c,3c05437f +3483130,3c063f80 +3483134,3c074120 +3483138,c0190a0 +3483140,10000007 +3483144,2402025 +3483148,248404c8 +348314c,34050000 +3483150,3c063f80 +3483154,3c074120 +3483158,c0190a0 +3483160,8fbf0014 +3483164,8fa40018 +3483168,8fa5001c +348316c,8fa60020 +3483170,8fa70024 +3483174,3e00008 +3483178,27bd0030 +348317c,860800b6 +3483180,25084000 +3483184,a60800b6 +3483188,34080001 +348318c,a20805e8 +3483190,a2000554 +3483194,8e090004 +3483198,240afffe +348319c,1495824 +34831a0,ae0b0004 +34831a4,3c088040 +34831a8,250831ec +34831ac,3e00008 +34831b0,ae08013c +34831b4,860800b6 +34831b8,2508c000 +34831bc,a60800b6 +34831c0,34080001 +34831c4,a20805e8 +34831c8,a2000554 +34831cc,8e090004 +34831d0,240afffe +34831d4,1495824 +34831d8,ae0b0004 +34831dc,3c088040 +34831e0,250831ec +34831e4,3e00008 +34831e8,ae08013c +34831ec,27bdffd0 +34831f0,afbf0014 +34831f4,afa40018 +34831f8,afa5001c +34831fc,34080001 +3483200,a0880554 +3483204,8488001c +3483208,11000006 +3483210,3c048040 +3483214,8c843058 +3483218,24850001 +348321c,3c018040 +3483220,ac253058 +3483224,3c048040 +3483228,8c843058 +348322c,34050003 +3483230,14850009 +3483238,8fa40018 +348323c,8488001c +3483240,34090001 +3483244,11090002 +3483248,240539b0 +348324c,240539b1 +3483250,c008bf4 +3483258,28850028 +348325c,14a0001a +3483264,8fa40018 +3483268,24840028 +348326c,3c0543c8 +3483270,3c063f80 +3483274,3c0740c0 +3483278,c0190a0 +3483280,8fa40018 +3483284,24840558 +3483288,c023270 +3483290,8fa40018 +3483294,c008bf4 +3483298,2405311f +348329c,3c048040 +34832a0,8c843058 +34832a4,34080061 +34832a8,14880007 +34832b0,8fa40018 +34832b4,8fa5001c +34832b8,8c8b0138 +34832bc,8d6b0010 +34832c0,256913ec +34832c4,ac89013c +34832c8,8fbf0014 +34832cc,3e00008 +34832d0,27bd0030 +34832d4,3c01c416 +34832d8,44816000 +34832dc,3e00008 +34832e0,3025 +34832e4,3c014416 +34832e8,44816000 +34832ec,3e00008 +34832f0,3025 +34832f4,afa40018 +34832f8,3c08801e +34832fc,2508aa30 +3483300,3e00008 +3483304,ad000678 +3483308,27bdffe8 +348330c,afaa0004 +3483310,846f4a2a +3483314,340a0002 +3483318,15ea0002 +348331c,340a0001 +3483320,a46a4a2a +3483324,846f4a2a +3483328,8faa0004 +348332c,3e00008 +3483330,27bd0018 +3483334,27bdffe8 +3483338,afaa0004 +348333c,846e4a2a +3483340,340a0002 +3483344,15ca0002 +3483348,340a0003 +348334c,a46a4a2a +3483350,846e4a2a +3483354,8faa0004 +3483358,3e00008 +348335c,27bd0018 +3483360,27bdffe8 +3483364,afaa0004 +3483368,85034a2a +348336c,340a0002 +3483370,146a0002 +3483374,340a0001 +3483378,a50a4a2a +348337c,85034a2a +3483380,8faa0004 +3483384,3e00008 +3483388,27bd0018 +348338c,27bdffe8 +3483390,afaa0004 +3483394,85034a2a +3483398,340a0002 +348339c,146a0002 +34833a0,340a0003 +34833a4,a50a4a2a +34833a8,85034a2a +34833ac,8faa0004 +34833b0,3e00008 +34833b4,27bd0018 +34833b8,27bdffe8 +34833bc,afaa0004 +34833c0,85034a2a +34833c4,340a0002 +34833c8,146a0002 +34833cc,340a0001 +34833d0,a50a4a2a +34833d4,85034a2a +34833d8,8faa0004 +34833dc,3e00008 +34833e0,27bd0018 +34833e4,27bdffe8 +34833e8,afaa0004 +34833ec,85034a2a +34833f0,340a0002 +34833f4,146a0002 +34833f8,340a0003 +34833fc,a50a4a2a +3483400,85034a2a +3483404,8faa0004 +3483408,3e00008 +348340c,27bd0018 +3483410,27bdffe8 +3483414,afaa0004 +3483418,a42bca2a +348341c,340a0002 +3483420,156a0002 +3483424,340a0003 +3483428,a50a4a2a +348342c,85034a2a +3483430,8faa0004 +3483434,3e00008 +3483438,27bd0018 +348343c,27bdffe8 +3483440,afaa0004 +3483444,85034a2a +3483448,340a0002 +348344c,146a0002 +3483450,340a0001 +3483454,a50a4a2a +3483458,85034a2a +348345c,8faa0004 +3483460,3e00008 +3483464,27bd0018 +3483468,27bdffe8 +348346c,afaa0004 +3483470,85034a2a +3483474,340a0002 +3483478,146a0002 +348347c,340a0003 +3483480,a50a4a2a +3483484,85034a2a +3483488,8faa0004 +348348c,3e00008 +3483490,27bd0018 +3483494,3c08801e +3483498,25084ee8 +348349c,3409f000 +34834a0,a5090000 +34834a4,3e00008 +34834a8,84cb4a2e +34834ac,24a56f04 +34834b0,8c880144 +34834b4,11050007 +34834b8,3c09801e +34834bc,2529aa30 +34834c0,3c0a446a +34834c4,254ac000 +34834c8,3c0bc324 +34834cc,ad2a0024 +34834d0,ad2b002c +34834d4,3e00008 +34834dc,27bdffd8 +34834e0,afbf0024 +34834e4,afa40028 +34834e8,afa5002c +34834ec,afa60030 +34834f0,c022865 +34834f4,8fa40030 +34834f8,44822000 +34834fc,44800000 +3483500,240e0002 +3483504,468021a0 +3483508,afae0018 +348350c,8fa40028 +3483510,8fa5002c +3483514,8fa60030 +3483518,3c073f80 +348351c,3c080400 +3483520,250832b0 +3483524,14c80002 +348352c,3c074040 +3483530,e7a60014 +3483534,e7a00010 +3483538,c023000 +348353c,e7a0001c +3483540,8fbf0024 +3483544,8fbf0024 +3483548,3e00008 +348354c,27bd0028 +3483550,3c0a8040 +3483554,814a0cd8 +3483558,11400003 +348355c,8ccb0138 +3483560,8d6b0010 +3483564,25690adc +3483568,3e00008 +348356c,acc90180 +3483570,27bdffe8 +3483574,afbf0014 3483578,3c0a8040 348357c,814a0cd8 -3483580,11400003 -3483584,8ccb0138 -3483588,8d6b0010 -348358c,25690adc -3483590,3e00008 -3483594,acc90180 -3483598,27bdffe8 -348359c,afbf0014 -34835a0,3c0a8040 -34835a4,814a0cd8 -34835a8,15400003 -34835b0,c037500 -34835b8,8fbf0014 -34835bc,3e00008 -34835c0,27bd0018 -34835c4,3c010080 -34835c8,3c180001 -34835cc,3e00008 -34835d0,8c4e0670 -34835d4,3c0a8040 -34835d8,814a0cd8 -34835dc,11400002 -34835e4,34180003 -34835e8,3c078012 -34835ec,24e7a5d0 -34835f0,3e00008 -34835f4,24010003 -34835f8,3c0a8040 -34835fc,814a0cd8 -3483600,11400008 -3483608,c100412 -3483610,3c08801e -3483614,25088966 -3483618,34090004 -348361c,a5090000 -3483624,8fbf0014 -3483628,3e00008 -348362c,27bd0018 -3483630,27bdffe0 -3483634,afbf0014 -3483638,afa10018 -348363c,afa4001c -3483640,3c0a8040 -3483644,814a0cd8 -3483648,1540000b -3483650,3c04801d -3483654,248484a0 -3483658,3c058040 -348365c,90a50cdb -3483660,34060000 -3483664,c037385 -348366c,34044802 -3483670,c0191bc -3483678,8fa4001c -348367c,8fa10018 -3483680,8fbf0014 -3483684,3e00008 -3483688,27bd0020 -3483690,27bdffe0 -3483694,afbf0014 -3483698,afa40018 -348369c,3c0d8040 -34836a0,81ad368c -34836a4,15a0000c -34836ac,3c08801e -34836b0,2508aa30 -34836b4,8d090670 -34836b8,340a4000 -34836bc,12a5824 -34836c0,1160000d -34836c8,34080001 -34836cc,3c018040 -34836d0,a028368c -34836d4,10000023 -34836d8,3c08801e -34836dc,2508aa30 -34836e0,8d090670 -34836e4,340a4000 -34836e8,12a5824 -34836ec,1160000c -34836f4,1000001b -34836f8,24a420d8 -34836fc,c037519 -3483704,24010002 -3483708,14410016 -3483710,3c08801e -3483714,25088966 -3483718,34090004 -348371c,a5090000 -3483720,3c0b8012 -3483724,256ba5d0 -3483728,816c0ede -348372c,358c0001 -3483730,a16c0ede -3483734,3c09801e -3483738,2529a2ba -348373c,340802ae -3483740,a5280000 -3483744,3408002a -3483748,3c09801e -348374c,2529a2fe -3483750,a1280000 -3483754,34080014 -3483758,3c09801e -348375c,2529a2b5 -3483760,a1280000 -3483764,8fbf0014 -3483768,3e00008 -348376c,27bd0020 -3483770,27bdffd0 -3483774,afbf0014 -3483778,afa80018 -348377c,afa9001c -3483780,afaa0020 -3483784,afab0024 -3483788,afac0028 -348378c,afad002c -3483790,3c088012 -3483794,2508a5d0 -3483798,85090f20 -348379c,31290040 -34837a0,1120000e -34837a4,3c08801e -34837a8,2508aa30 -34837ac,8d09039c -34837b0,1120000a -34837b4,340a00a1 -34837b8,852b0000 -34837bc,154b0007 -34837c0,240cf7ff -34837c4,8d0d066c -34837c8,18d6824 -34837cc,ad0d066c -34837d0,ad00039c -34837d4,ad00011c -34837d8,ad200118 -34837dc,afad002c -34837e0,afac0028 -34837e4,afab0024 -34837e8,afaa0020 -34837ec,afa9001c -34837f0,afa80018 -34837f4,afbf0014 -34837f8,860e001c -34837fc,3e00008 -3483800,27bd0030 -3483804,27bdffd0 -3483808,afbf0014 -348380c,afa80018 -3483810,afa9001c -3483814,afaa0020 -3483818,84a800a4 -348381c,34090002 -3483820,1509000c -3483824,340a0006 -3483828,80880003 -348382c,150a0009 -3483834,3c088012 -3483838,2508a5d0 -348383c,85090f20 -3483840,31290040 -3483844,11200003 -348384c,c0083ad -3483854,8faa0020 -3483858,8fa9001c -348385c,8fa80018 -3483860,8fbf0014 -3483864,8602001c -3483868,3e00008 -348386c,27bd0030 -3483870,27bdffd0 -3483874,afbf001c -3483878,afa40020 -348387c,afa50024 -3483880,e7a00028 -3483884,4602003c -348388c,45010005 -3483894,c100ecc -348389c,10000003 -34838a4,c100ece -34838ac,34060014 -34838b0,3407000a -34838b4,44801000 -34838b8,c7a00028 -34838bc,8fa50024 -34838c0,8fa40020 -34838c4,8fbf001c -34838c8,4602003c -34838cc,27bd0030 -34838d0,3e00008 -34838d8,27bdffd0 -34838dc,afbf001c -34838e0,afa40020 -34838e4,afa50024 -34838e8,e7a40028 -34838ec,e7a6002c -34838f0,4606203c -34838f8,45000003 -3483900,c100ed9 -3483908,34060014 -348390c,3407000a -3483910,44801000 -3483914,c7a6002c -3483918,c7a40028 -348391c,8fa50024 -3483920,8fa40020 -3483924,8fbf001c -3483928,4606203c -348392c,27bd0030 -3483930,3e00008 -3483938,c100f3c -3483940,8fbf001c -3483944,27bd0020 -3483948,3e00008 -3483954,27bdffe8 -3483958,afbf0014 -348395c,c008ab4 -3483964,8fbf0014 -3483968,27bd0018 -348396c,8fa40018 -3483970,8c8a0138 -3483974,8d4a0010 -3483978,25431618 -348397c,3c088040 -3483980,81083950 -3483984,1100000a -3483988,3c098012 -348398c,2529a5d0 -3483990,95281406 -3483994,290105dc -3483998,14200005 -348399c,9488029c -34839a0,31080002 -34839a4,15000002 -34839ac,254314d0 +3483580,15400003 +3483588,c037500 +3483590,8fbf0014 +3483594,3e00008 +3483598,27bd0018 +348359c,3c010080 +34835a0,3c180001 +34835a4,3e00008 +34835a8,8c4e0670 +34835ac,3c0a8040 +34835b0,814a0cd8 +34835b4,11400002 +34835bc,34180003 +34835c0,3c078012 +34835c4,24e7a5d0 +34835c8,3e00008 +34835cc,24010003 +34835d0,3c0a8040 +34835d4,814a0cd8 +34835d8,11400008 +34835e0,c100411 +34835e8,3c08801e +34835ec,25088966 +34835f0,34090004 +34835f4,a5090000 +34835fc,8fbf0014 +3483600,3e00008 +3483604,27bd0018 +3483608,27bdffe0 +348360c,afbf0014 +3483610,afa10018 +3483614,afa4001c +3483618,3c0a8040 +348361c,814a0cd8 +3483620,1540000b +3483628,3c04801d +348362c,248484a0 +3483630,3c058040 +3483634,90a50cdb +3483638,34060000 +348363c,c037385 +3483644,34044802 +3483648,c0191bc +3483650,8fa4001c +3483654,8fa10018 +3483658,8fbf0014 +348365c,3e00008 +3483660,27bd0020 +3483668,27bdffe0 +348366c,afbf0014 +3483670,afa40018 +3483674,3c0d8040 +3483678,81ad3664 +348367c,15a0000c +3483684,3c08801e +3483688,2508aa30 +348368c,8d090670 +3483690,340a4000 +3483694,12a5824 +3483698,1160000d +34836a0,34080001 +34836a4,3c018040 +34836a8,a0283664 +34836ac,10000023 +34836b0,3c08801e +34836b4,2508aa30 +34836b8,8d090670 +34836bc,340a4000 +34836c0,12a5824 +34836c4,1160000c +34836cc,1000001b +34836d0,24a420d8 +34836d4,c037519 +34836dc,24010002 +34836e0,14410016 +34836e8,3c08801e +34836ec,25088966 +34836f0,34090004 +34836f4,a5090000 +34836f8,3c0b8012 +34836fc,256ba5d0 +3483700,816c0ede +3483704,358c0001 +3483708,a16c0ede +348370c,3c09801e +3483710,2529a2ba +3483714,340802ae +3483718,a5280000 +348371c,3408002a +3483720,3c09801e +3483724,2529a2fe +3483728,a1280000 +348372c,34080014 +3483730,3c09801e +3483734,2529a2b5 +3483738,a1280000 +348373c,8fbf0014 +3483740,3e00008 +3483744,27bd0020 +3483748,27bdffd0 +348374c,afbf0014 +3483750,afa80018 +3483754,afa9001c +3483758,afaa0020 +348375c,afab0024 +3483760,afac0028 +3483764,afad002c +3483768,3c088012 +348376c,2508a5d0 +3483770,85090f20 +3483774,31290040 +3483778,1120000e +348377c,3c08801e +3483780,2508aa30 +3483784,8d09039c +3483788,1120000a +348378c,340a00a1 +3483790,852b0000 +3483794,154b0007 +3483798,240cf7ff +348379c,8d0d066c +34837a0,18d6824 +34837a4,ad0d066c +34837a8,ad00039c +34837ac,ad00011c +34837b0,ad200118 +34837b4,afad002c +34837b8,afac0028 +34837bc,afab0024 +34837c0,afaa0020 +34837c4,afa9001c +34837c8,afa80018 +34837cc,afbf0014 +34837d0,860e001c +34837d4,3e00008 +34837d8,27bd0030 +34837dc,27bdffd0 +34837e0,afbf0014 +34837e4,afa80018 +34837e8,afa9001c +34837ec,afaa0020 +34837f0,84a800a4 +34837f4,34090002 +34837f8,1509000c +34837fc,340a0006 +3483800,80880003 +3483804,150a0009 +348380c,3c088012 +3483810,2508a5d0 +3483814,85090f20 +3483818,31290040 +348381c,11200003 +3483824,c0083ad +348382c,8faa0020 +3483830,8fa9001c +3483834,8fa80018 +3483838,8fbf0014 +348383c,8602001c +3483840,3e00008 +3483844,27bd0030 +3483848,27bdffd0 +348384c,afbf001c +3483850,afa40020 +3483854,afa50024 +3483858,e7a00028 +348385c,4602003c +3483864,45010005 +348386c,c100ec0 +3483874,10000003 +348387c,c100ec2 +3483884,34060014 +3483888,3407000a +348388c,44801000 +3483890,c7a00028 +3483894,8fa50024 +3483898,8fa40020 +348389c,8fbf001c +34838a0,4602003c +34838a4,27bd0030 +34838a8,3e00008 +34838b0,27bdffd0 +34838b4,afbf001c +34838b8,afa40020 +34838bc,afa50024 +34838c0,e7a40028 +34838c4,e7a6002c +34838c8,4606203c +34838d0,45000003 +34838d8,c100ecd +34838e0,34060014 +34838e4,3407000a +34838e8,44801000 +34838ec,c7a6002c +34838f0,c7a40028 +34838f4,8fa50024 +34838f8,8fa40020 +34838fc,8fbf001c +3483900,4606203c +3483904,27bd0030 +3483908,3e00008 +3483910,c100f30 +3483918,8fbf001c +348391c,27bd0020 +3483920,3e00008 +348392c,27bdffe8 +3483930,afbf0014 +3483934,c008ab4 +348393c,8fbf0014 +3483940,27bd0018 +3483944,8fa40018 +3483948,8c8a0138 +348394c,8d4a0010 +3483950,25431618 +3483954,3c088040 +3483958,81083928 +348395c,1100000a +3483960,3c098012 +3483964,2529a5d0 +3483968,95281406 +348396c,290105dc +3483970,14200005 +3483974,9488029c +3483978,31080002 +348397c,15000002 +3483984,254314d0 +3483988,3e00008 +3483990,3c188012 +3483994,2718a5d0 +3483998,8f180004 +348399c,17000003 +34839a4,3c0a8041 +34839a8,254ab4b8 +34839ac,24780008 34839b0,3e00008 -34839b8,3c188012 -34839bc,2718a5d0 -34839c0,8f180004 -34839c4,17000003 -34839cc,3c0a8041 -34839d0,254ab138 -34839d4,24780008 +34839b4,adf802c0 +34839b8,3c0f8012 +34839bc,25efa5d0 +34839c0,8def0004 +34839c4,15e00003 +34839cc,3c0e8041 +34839d0,25ceb4b8 +34839d4,ac4e0004 34839d8,3e00008 -34839dc,adf802c0 -34839e0,3c0f8012 -34839e4,25efa5d0 -34839e8,8def0004 -34839ec,15e00003 -34839f4,3c0e8041 -34839f8,25ceb138 -34839fc,ac4e0004 -3483a00,3e00008 -3483a04,820f013f -3483a0c,3c088040 -3483a10,81083a08 -3483a14,11000007 -3483a18,3c09801d -3483a1c,252984a0 -3483a20,8d281d44 -3483a24,31080002 -3483a28,11000002 -3483a30,34069100 +34839dc,820f013f +34839e4,3c088040 +34839e8,810839e0 +34839ec,11000007 +34839f0,3c09801d +34839f4,252984a0 +34839f8,8d281d44 +34839fc,31080002 +3483a00,11000002 +3483a08,34069100 +3483a0c,3e00008 +3483a10,afa60020 +3483a14,3c088040 +3483a18,810839e0 +3483a1c,11000005 +3483a20,3c09801d +3483a24,252984a0 +3483a28,8d281d44 +3483a2c,35080002 +3483a30,ad281d44 3483a34,3e00008 -3483a38,afa60020 -3483a3c,3c088040 -3483a40,81083a08 -3483a44,11000005 -3483a48,3c09801d -3483a4c,252984a0 -3483a50,8d281d44 -3483a54,35080002 -3483a58,ad281d44 -3483a5c,3e00008 -3483a60,34e74000 -3483a68,3c038012 -3483a6c,2463a5d0 -3483a70,8c6e0004 -3483a74,15c0000c -3483a78,24020005 -3483a7c,24020011 -3483a80,3c088040 -3483a84,81083a64 -3483a88,11000007 -3483a8c,3c09801d -3483a90,252984a0 -3483a94,8d281d44 -3483a98,31080002 -3483a9c,11000002 -3483aa0,34020001 -3483aa4,34020003 +3483a38,34e74000 +3483a40,3c038012 +3483a44,2463a5d0 +3483a48,8c6e0004 +3483a4c,15c0000c +3483a50,24020005 +3483a54,24020011 +3483a58,3c088040 +3483a5c,81083a3c +3483a60,11000007 +3483a64,3c09801d +3483a68,252984a0 +3483a6c,8d281d44 +3483a70,31080002 +3483a74,11000002 +3483a78,34020001 +3483a7c,34020003 +3483a80,3e00008 +3483a84,3c048010 +3483a88,3c088040 +3483a8c,81083a3c +3483a90,11000005 +3483a94,3c09801d +3483a98,252984a0 +3483a9c,8d281d44 +3483aa0,35080002 +3483aa4,ad281d44 3483aa8,3e00008 -3483aac,3c048010 -3483ab0,3c088040 -3483ab4,81083a64 -3483ab8,11000005 -3483abc,3c09801d -3483ac0,252984a0 -3483ac4,8d281d44 -3483ac8,35080002 -3483acc,ad281d44 +3483aac,34e78000 +3483ab0,27bdffe8 +3483ab4,afa20010 +3483ab8,afbf0014 +3483abc,c10215e +3483ac0,46000306 +3483ac4,406821 +3483ac8,8fa20010 +3483acc,8fbf0014 3483ad0,3e00008 -3483ad4,34e78000 -3483ad8,27bdffe8 -3483adc,afa20010 -3483ae0,afbf0014 -3483ae4,c10211e -3483ae8,46000306 -3483aec,406821 -3483af0,8fa20010 -3483af4,8fbf0014 +3483ad4,27bd0018 +3483ad8,ac800130 +3483adc,ac800134 +3483ae0,3c018012 +3483ae4,2421a5d0 +3483ae8,80280edc +3483aec,35080008 +3483af0,a0280edc +3483af4,3c013f80 3483af8,3e00008 -3483afc,27bd0018 -3483b00,ac800130 -3483b04,ac800134 -3483b08,3c018012 -3483b0c,2421a5d0 -3483b10,80280edc -3483b14,35080008 -3483b18,a0280edc -3483b1c,3c013f80 -3483b20,3e00008 -3483b24,44813000 -3483b30,3e00008 -3483b38,3c028041 -3483b3c,8c439f10 -3483b40,3c028041 -3483b44,24429c82 -3483b48,14620004 -3483b4c,3c038041 -3483b50,3c028041 -3483b54,24429c84 -3483b58,ac629f10 -3483b5c,3e00008 -3483b64,3c028041 -3483b68,8c439f10 -3483b6c,3c028041 -3483b70,24429c68 -3483b74,10620003 -3483b78,3c028041 -3483b7c,10000003 -3483b80,24429c88 -3483b84,3c028041 -3483b88,24429c6a -3483b8c,3c038041 -3483b90,3e00008 -3483b94,ac629f10 -3483b98,27bdffc8 -3483b9c,afbf0034 -3483ba0,afb40030 -3483ba4,afb3002c -3483ba8,afb20028 -3483bac,afb10024 -3483bb0,afb00020 -3483bb4,809025 -3483bb8,3c02801c -3483bbc,344284a0 -3483bc0,3c030001 -3483bc4,431021 -3483bc8,90420745 -3483bcc,240300aa -3483bd0,14430002 -3483bd4,a08825 -3483bd8,240200ff -3483bdc,3c03801c -3483be0,346384a0 -3483be4,8c700000 -3483be8,8e0302b0 -3483bec,24640008 -3483bf0,ae0402b0 -3483bf4,3c04de00 -3483bf8,ac640000 -3483bfc,3c048041 -3483c00,2484a0e8 -3483c04,ac640004 -3483c08,8e0302b0 -3483c0c,24640008 -3483c10,ae0402b0 -3483c14,3c04e700 -3483c18,ac640000 -3483c1c,ac600004 -3483c20,8e0302b0 -3483c24,24640008 -3483c28,ae0402b0 -3483c2c,3c04fc11 -3483c30,34849623 -3483c34,ac640000 -3483c38,3c04ff2f -3483c3c,3484ffff -3483c40,ac640004 -3483c44,8e0402b0 -3483c48,24830008 -3483c4c,ae0302b0 -3483c50,3c03fa00 -3483c54,ac830000 -3483c58,401825 -3483c5c,c2102b -3483c60,10400002 -3483c64,261302a8 -3483c68,c01825 -3483c6c,2402ff00 -3483c70,621825 -3483c74,ac830004 -3483c78,24070001 -3483c7c,24060009 -3483c80,3c148041 -3483c84,2685a0a8 -3483c88,c101ba6 -3483c8c,2602025 -3483c90,24020010 -3483c94,afa20018 -3483c98,afa20014 -3483c9c,263100bd -3483ca0,afb10010 -3483ca4,2647001b -3483ca8,3025 -3483cac,2685a0a8 -3483cb0,c101c0e -3483cb4,2602025 -3483cb8,8e0202b0 -3483cbc,24430008 -3483cc0,ae0302b0 -3483cc4,3c03e700 -3483cc8,ac430000 -3483ccc,ac400004 -3483cd0,8fbf0034 -3483cd4,8fb40030 -3483cd8,8fb3002c -3483cdc,8fb20028 -3483ce0,8fb10024 -3483ce4,8fb00020 -3483ce8,3e00008 -3483cec,27bd0038 -3483cf0,3c028041 -3483cf4,8c439f10 -3483cf8,3c028041 -3483cfc,24429c68 -3483d00,10620021 -3483d08,27bdffe8 -3483d0c,afbf0014 -3483d10,90660000 -3483d14,90620001 -3483d18,22600 -3483d1c,42603 -3483d20,42183 -3483d24,3042003f -3483d28,21040 -3483d2c,3c038041 -3483d30,24639c68 -3483d34,621021 -3483d38,3c038041 -3483d3c,ac629f10 -3483d40,3c02801c -3483d44,344284a0 -3483d48,944300a4 -3483d4c,28620011 -3483d50,10400008 -3483d54,2825 -3483d58,3c028011 -3483d5c,3442a5d0 -3483d60,431021 -3483d64,804500bc -3483d68,52fc3 -3483d6c,30a50011 -3483d70,24a5ffef -3483d74,c100ee6 -3483d7c,8fbf0014 -3483d80,3e00008 -3483d84,27bd0018 -3483d88,3e00008 -3483d90,27bdffd8 -3483d94,afbf0024 -3483d98,afb10020 -3483d9c,afb0001c -3483da0,3c028040 -3483da4,8c4226f0 -3483da8,14400003 -3483dac,808025 -3483db0,10000019 -3483db4,908201e9 -3483db8,9487001c -3483dbc,73943 -3483dc0,30e7007f -3483dc4,3c02801c -3483dc8,344284a0 -3483dcc,904600a5 -3483dd0,802825 -3483dd4,c1019a8 -3483dd8,27a40010 -3483ddc,97b10014 -3483de0,16200003 -3483de8,1000000b -3483dec,920201e9 -3483df0,c101ea3 -3483df4,93a40017 -3483df8,54400004 -3483dfc,90420007 -3483e00,c101ea3 -3483e04,2202025 -3483e08,90420007 -3483e0c,30420001 -3483e10,54400001 -3483e14,24020005 -3483e18,8fbf0024 -3483e1c,8fb10020 -3483e20,8fb0001c -3483e24,3e00008 -3483e28,27bd0028 -3483e2c,27bdffd8 -3483e30,afbf0024 -3483e34,afb10020 -3483e38,afb0001c -3483e3c,3c028040 -3483e40,8c4226f0 -3483e44,14400003 -3483e48,808025 -3483e4c,10000017 -3483e50,908201e9 -3483e54,9487001c -3483e58,73943 -3483e5c,30e7007f -3483e60,3c02801c -3483e64,344284a0 -3483e68,904600a5 -3483e6c,802825 -3483e70,c1019a8 -3483e74,27a40010 -3483e78,97b10014 -3483e7c,16200003 -3483e84,10000009 -3483e88,920201e9 -3483e8c,c101ea3 -3483e90,93a40017 -3483e94,54400004 -3483e98,90420007 -3483e9c,c101ea3 -3483ea0,2202025 -3483ea4,90420007 -3483ea8,30420002 -3483eac,8fbf0024 -3483eb0,8fb10020 -3483eb4,8fb0001c -3483eb8,3e00008 -3483ebc,27bd0028 -3483ec0,27bdffd8 -3483ec4,afbf0024 -3483ec8,afb10020 -3483ecc,afb0001c -3483ed0,3c02801c -3483ed4,344284a0 -3483ed8,94500020 -3483edc,3c02801d -3483ee0,3442aa30 -3483ee4,8c42066c -3483ee8,3c033000 -3483eec,24630483 -3483ef0,431024 -3483ef4,544000ac -3483ef8,8fbf0024 -3483efc,3c02801c -3483f00,344284a0 -3483f04,8c430008 -3483f08,3c02800f -3483f0c,8c4213ec -3483f10,546200a5 -3483f14,8fbf0024 -3483f18,3c028011 -3483f1c,3442a5d0 -3483f20,8c43135c -3483f24,24020001 -3483f28,1062009e -3483f2c,3c02800e -3483f30,3442f1b0 -3483f34,8c420000 -3483f38,30420020 -3483f3c,5440009a -3483f40,8fbf0024 -3483f44,3c028011 -3483f48,3442a5d0 -3483f4c,8c42009c -3483f50,3c036000 -3483f54,431024 -3483f58,10400007 -3483f5c,3c028011 -3483f60,3442a5d0 -3483f64,8c420004 -3483f68,50400010 -3483f6c,32020200 -3483f70,10000085 -3483f74,3c028011 -3483f78,3442a5d0 -3483f7c,8042007b -3483f80,24030007 -3483f84,10430003 -3483f88,24030008 -3483f8c,14430086 -3483f90,8fbf0024 -3483f94,3c028011 -3483f98,3442a5d0 -3483f9c,8c420004 -3483fa0,54400053 -3483fa4,32100400 -3483fa8,32020200 -3483fac,10400026 -3483fb0,3211ffff +3483afc,44813000 +3483b00,3e00008 +3483b08,3c028041 +3483b0c,8c43a250 +3483b10,3c028041 +3483b14,24429fc2 +3483b18,14620004 +3483b1c,3c038041 +3483b20,3c028041 +3483b24,24429fc4 +3483b28,ac62a250 +3483b2c,3e00008 +3483b34,3c028041 +3483b38,8c43a250 +3483b3c,3c028041 +3483b40,24429fa8 +3483b44,10620003 +3483b48,3c028041 +3483b4c,10000003 +3483b50,24429fc8 +3483b54,3c028041 +3483b58,24429faa +3483b5c,3c038041 +3483b60,3e00008 +3483b64,ac62a250 +3483b68,27bdffc8 +3483b6c,afbf0034 +3483b70,afb40030 +3483b74,afb3002c +3483b78,afb20028 +3483b7c,afb10024 +3483b80,afb00020 +3483b84,809025 +3483b88,3c02801c +3483b8c,344284a0 +3483b90,3c030001 +3483b94,431021 +3483b98,90420745 +3483b9c,240300aa +3483ba0,14430002 +3483ba4,a08825 +3483ba8,240200ff +3483bac,3c03801c +3483bb0,346384a0 +3483bb4,8c700000 +3483bb8,8e0302b0 +3483bbc,24640008 +3483bc0,ae0402b0 +3483bc4,3c04de00 +3483bc8,ac640000 +3483bcc,3c048041 +3483bd0,2484a468 +3483bd4,ac640004 +3483bd8,8e0302b0 +3483bdc,24640008 +3483be0,ae0402b0 +3483be4,3c04e700 +3483be8,ac640000 +3483bec,ac600004 +3483bf0,8e0302b0 +3483bf4,24640008 +3483bf8,ae0402b0 +3483bfc,3c04fc11 +3483c00,34849623 +3483c04,ac640000 +3483c08,3c04ff2f +3483c0c,3484ffff +3483c10,ac640004 +3483c14,8e0402b0 +3483c18,24830008 +3483c1c,ae0302b0 +3483c20,3c03fa00 +3483c24,ac830000 +3483c28,401825 +3483c2c,c2102b +3483c30,10400002 +3483c34,261302a8 +3483c38,c01825 +3483c3c,2402ff00 +3483c40,621825 +3483c44,ac830004 +3483c48,24070001 +3483c4c,24060009 +3483c50,3c148041 +3483c54,2685a428 +3483c58,c101bd7 +3483c5c,2602025 +3483c60,24020010 +3483c64,afa20018 +3483c68,afa20014 +3483c6c,263100bd +3483c70,afb10010 +3483c74,2647001b +3483c78,3025 +3483c7c,2685a428 +3483c80,c101c3f +3483c84,2602025 +3483c88,8e0202b0 +3483c8c,24430008 +3483c90,ae0302b0 +3483c94,3c03e700 +3483c98,ac430000 +3483c9c,ac400004 +3483ca0,8fbf0034 +3483ca4,8fb40030 +3483ca8,8fb3002c +3483cac,8fb20028 +3483cb0,8fb10024 +3483cb4,8fb00020 +3483cb8,3e00008 +3483cbc,27bd0038 +3483cc0,3c028041 +3483cc4,8c43a250 +3483cc8,3c028041 +3483ccc,24429fa8 +3483cd0,10620021 +3483cd8,27bdffe8 +3483cdc,afbf0014 +3483ce0,90660000 +3483ce4,90620001 +3483ce8,22600 +3483cec,42603 +3483cf0,42183 +3483cf4,3042003f +3483cf8,21040 +3483cfc,3c038041 +3483d00,24639fa8 +3483d04,621021 +3483d08,3c038041 +3483d0c,ac62a250 +3483d10,3c02801c +3483d14,344284a0 +3483d18,944300a4 +3483d1c,28620011 +3483d20,10400008 +3483d24,2825 +3483d28,3c028011 +3483d2c,3442a5d0 +3483d30,431021 +3483d34,804500bc +3483d38,52fc3 +3483d3c,30a50011 +3483d40,24a5ffef +3483d44,c100eda +3483d4c,8fbf0014 +3483d50,3e00008 +3483d54,27bd0018 +3483d58,3e00008 +3483d60,27bdffd8 +3483d64,afbf0024 +3483d68,afb20020 +3483d6c,afb1001c +3483d70,afb00018 +3483d74,808025 +3483d78,909101e9 +3483d7c,3c028040 +3483d80,8c4326ec +3483d84,10600018 +3483d88,2201025 +3483d8c,9487001c +3483d90,73943 +3483d94,30e7007f +3483d98,3c02801c +3483d9c,344284a0 +3483da0,904600a5 +3483da4,802825 +3483da8,c1019d9 +3483dac,27a40010 +3483db0,97b20014 +3483db4,1240000c +3483db8,2201025 +3483dbc,c101ed4 +3483dc0,93a40017 +3483dc4,54400004 +3483dc8,90420007 +3483dcc,c101ed4 +3483dd0,2402025 +3483dd4,90420007 +3483dd8,30510001 +3483ddc,56200001 +3483de0,24110005 +3483de4,30420002 +3483de8,a21101ec +3483dec,a20201ed +3483df0,8fbf0024 +3483df4,8fb20020 +3483df8,8fb1001c +3483dfc,8fb00018 +3483e00,3e00008 +3483e04,27bd0028 +3483e08,27bdffd8 +3483e0c,afbf0024 +3483e10,afb10020 +3483e14,afb0001c +3483e18,3c02801c +3483e1c,344284a0 +3483e20,94500020 +3483e24,3c02801d +3483e28,3442aa30 +3483e2c,8c42066c +3483e30,3c033000 +3483e34,24630483 +3483e38,431024 +3483e3c,544000ab +3483e40,8fbf0024 +3483e44,3c02801c +3483e48,344284a0 +3483e4c,8c430008 +3483e50,3c02800f +3483e54,8c4213ec +3483e58,546200a4 +3483e5c,8fbf0024 +3483e60,3c028011 +3483e64,3442a5d0 +3483e68,8c42135c +3483e6c,5440009f +3483e70,8fbf0024 +3483e74,3c02800e +3483e78,3442f1b0 +3483e7c,8c420000 +3483e80,30420020 +3483e84,54400099 +3483e88,8fbf0024 +3483e8c,3c028011 +3483e90,3442a5d0 +3483e94,8c42009c +3483e98,3c036000 +3483e9c,431024 +3483ea0,10400007 +3483ea4,3c028011 +3483ea8,3442a5d0 +3483eac,8c420004 +3483eb0,50400010 +3483eb4,32020200 +3483eb8,10000085 +3483ebc,3c028011 +3483ec0,3442a5d0 +3483ec4,8042007b +3483ec8,24030007 +3483ecc,10430003 +3483ed0,24030008 +3483ed4,14430085 +3483ed8,8fbf0024 +3483edc,3c028011 +3483ee0,3442a5d0 +3483ee4,8c420004 +3483ee8,54400053 +3483eec,32100400 +3483ef0,32020200 +3483ef4,10400026 +3483ef8,3211ffff +3483efc,3c028011 +3483f00,3442a5d0 +3483f04,9442009c +3483f08,30422000 +3483f0c,50400021 +3483f10,32310100 +3483f14,3c028011 +3483f18,3442a5d0 +3483f1c,94420070 +3483f20,3042f000 +3483f24,38422000 +3483f28,2102b +3483f2c,24420001 +3483f30,3c048011 +3483f34,3484a5d0 +3483f38,21300 +3483f3c,94830070 +3483f40,30630fff +3483f44,621025 +3483f48,a4820070 +3483f4c,3c04801d +3483f50,3485aa30 +3483f54,3c028007 +3483f58,34429764 +3483f5c,40f809 +3483f60,248484a0 +3483f64,3c058010 +3483f68,24a243a8 +3483f6c,afa20014 +3483f70,24a743a0 +3483f74,afa70010 +3483f78,24060004 +3483f7c,24a54394 +3483f80,3c02800c +3483f84,3442806c +3483f88,40f809 +3483f8c,24040835 +3483f90,32310100 +3483f94,52200028 +3483f98,32100400 +3483f9c,3c028011 +3483fa0,3442a5d0 +3483fa4,9442009c +3483fa8,30424000 +3483fac,50400022 +3483fb0,32100400 3483fb4,3c028011 3483fb8,3442a5d0 -3483fbc,9442009c -3483fc0,30422000 -3483fc4,50400021 -3483fc8,32310100 -3483fcc,3c028011 -3483fd0,3442a5d0 -3483fd4,94420070 -3483fd8,3042f000 -3483fdc,38422000 -3483fe0,2102b -3483fe4,24420001 -3483fe8,3c048011 -3483fec,3484a5d0 -3483ff0,21300 -3483ff4,94830070 -3483ff8,30630fff -3483ffc,621025 -3484000,a4820070 -3484004,3c04801d -3484008,3485aa30 -348400c,3c028007 -3484010,34429764 -3484014,40f809 -3484018,248484a0 -348401c,3c058010 -3484020,24a243a8 -3484024,afa20014 -3484028,24a743a0 -348402c,afa70010 -3484030,24060004 -3484034,24a54394 -3484038,3c02800c -348403c,3442806c -3484040,40f809 -3484044,24040835 -3484048,32310100 -348404c,52200028 -3484050,32100400 -3484054,3c028011 -3484058,3442a5d0 -348405c,9442009c -3484060,30424000 -3484064,50400022 -3484068,32100400 -348406c,3c028011 -3484070,3442a5d0 -3484074,94420070 -3484078,3042f000 -348407c,24033000 -3484080,50430002 -3484084,24040001 -3484088,24040003 -348408c,3c038011 -3484090,3463a5d0 -3484094,42300 -3484098,94620070 -348409c,30420fff -34840a0,441025 -34840a4,a4620070 -34840a8,3c04801d -34840ac,3485aa30 -34840b0,3c028007 -34840b4,34429764 -34840b8,40f809 -34840bc,248484a0 -34840c0,3c058010 -34840c4,24a243a8 -34840c8,afa20014 -34840cc,24a743a0 -34840d0,afa70010 -34840d4,24060004 -34840d8,24a54394 -34840dc,3c02800c -34840e0,3442806c -34840e4,40f809 -34840e8,24040835 -34840ec,32100400 -34840f0,1200002d -34840f4,8fbf0024 -34840f8,3c02801c -34840fc,344284a0 -3484100,3c030001 -3484104,431021 -3484108,94420934 -348410c,14400027 -3484110,8fb10020 +3483fbc,94420070 +3483fc0,3042f000 +3483fc4,24033000 +3483fc8,50430002 +3483fcc,24040001 +3483fd0,24040003 +3483fd4,3c038011 +3483fd8,3463a5d0 +3483fdc,42300 +3483fe0,94620070 +3483fe4,30420fff +3483fe8,441025 +3483fec,a4620070 +3483ff0,3c04801d +3483ff4,3485aa30 +3483ff8,3c028007 +3483ffc,34429764 +3484000,40f809 +3484004,248484a0 +3484008,3c058010 +348400c,24a243a8 +3484010,afa20014 +3484014,24a743a0 +3484018,afa70010 +348401c,24060004 +3484020,24a54394 +3484024,3c02800c +3484028,3442806c +348402c,40f809 +3484030,24040835 +3484034,32100400 +3484038,1200002c +348403c,8fbf0024 +3484040,3c02801c +3484044,344284a0 +3484048,3c030001 +348404c,431021 +3484050,94420934 +3484054,14400026 +3484058,8fb10020 +348405c,3c028011 +3484060,3442a5d0 +3484064,9046007b +3484068,24c2fff9 +348406c,304200ff +3484070,2c420002 +3484074,1040001f +3484078,8fb0001c +348407c,3c02801c +3484080,344284a0 +3484084,431021 +3484088,90420758 +348408c,14400019 +3484090,3c02801d +3484094,3442aa30 +3484098,8c42066c +348409c,3c0308a0 +34840a0,24630800 +34840a4,431024 +34840a8,14400012 +34840ac,24070002 +34840b0,3c04801d +34840b4,3485aa30 +34840b8,3c028038 +34840bc,3442c9a0 +34840c0,40f809 +34840c4,248484a0 +34840c8,10000008 +34840cc,8fbf0024 +34840d0,3442a5d0 +34840d4,8042007b +34840d8,24030007 +34840dc,1043ffd5 +34840e0,24030008 +34840e4,1043ffd3 +34840e8,8fbf0024 +34840ec,8fb10020 +34840f0,8fb0001c +34840f4,3e00008 +34840f8,27bd0028 +34840fc,3c028011 +3484100,3442a5d0 +3484104,8c42009c +3484108,3c036000 +348410c,431024 +3484110,10400006 3484114,3c028011 3484118,3442a5d0 -348411c,9046007b -3484120,24c2fff9 -3484124,304200ff -3484128,2c420002 -348412c,10400020 -3484130,8fb0001c -3484134,3c02801c -3484138,344284a0 -348413c,431021 -3484140,90420758 -3484144,1440001a -3484148,3c02801d -348414c,3442aa30 -3484150,8c42066c -3484154,3c0308a0 -3484158,24630800 -348415c,431024 -3484160,14400013 -3484164,24070002 -3484168,3c04801d -348416c,3485aa30 -3484170,3c028038 -3484174,3442c9a0 -3484178,40f809 -348417c,248484a0 -3484180,10000009 -3484184,8fbf0024 -3484188,3442a5d0 -348418c,8042007b -3484190,24030007 -3484194,1043ffd5 -3484198,24030008 -348419c,1043ffd4 -34841a0,32100400 -34841a4,8fbf0024 -34841a8,8fb10020 -34841ac,8fb0001c -34841b0,3e00008 -34841b4,27bd0028 -34841b8,3c028011 -34841bc,3442a5d0 -34841c0,8c42009c -34841c4,3c036000 -34841c8,431024 -34841cc,10400006 -34841d0,3c028011 -34841d4,3442a5d0 -34841d8,8c420004 -34841dc,1040000a -34841e0,3c028040 -34841e4,3c028011 -34841e8,3442a5d0 -34841ec,9042007b -34841f0,2442fff9 -34841f4,304200ff -34841f8,2c420002 -34841fc,10400123 -3484204,3c028040 -3484208,9042088a -348420c,1040011f -3484214,27bdffc8 -3484218,afbf0034 -348421c,afb30030 -3484220,afb2002c -3484224,afb10028 -3484228,afb00024 -348422c,3c02801c -3484230,344284a0 -3484234,8c500000 -3484238,8e0302b0 -348423c,24640008 -3484240,ae0402b0 -3484244,3c04de00 -3484248,ac640000 -348424c,3c048041 -3484250,2484a0e8 -3484254,ac640004 -3484258,8e0302b0 -348425c,24640008 -3484260,ae0402b0 -3484264,3c04e700 -3484268,ac640000 -348426c,ac600004 -3484270,8e0302b0 -3484274,24640008 -3484278,ae0402b0 -348427c,3c04fc11 -3484280,34849623 -3484284,ac640000 -3484288,3c04ff2f -348428c,3484ffff -3484290,ac640004 -3484294,3c030001 -3484298,431021 -348429c,94520744 -34842a0,240200aa -34842a4,124200e0 -34842a8,24070001 -34842ac,261102a8 +348411c,8c420004 +3484120,1040000a +3484124,3c028040 +3484128,3c028011 +348412c,3442a5d0 +3484130,9042007b +3484134,2442fff9 +3484138,304200ff +348413c,2c420002 +3484140,10400123 +3484148,3c028040 +348414c,9042088a +3484150,1040011f +3484158,27bdffc8 +348415c,afbf0034 +3484160,afb30030 +3484164,afb2002c +3484168,afb10028 +348416c,afb00024 +3484170,3c02801c +3484174,344284a0 +3484178,8c500000 +348417c,8e0302b0 +3484180,24640008 +3484184,ae0402b0 +3484188,3c04de00 +348418c,ac640000 +3484190,3c048041 +3484194,2484a468 +3484198,ac640004 +348419c,8e0302b0 +34841a0,24640008 +34841a4,ae0402b0 +34841a8,3c04e700 +34841ac,ac640000 +34841b0,ac600004 +34841b4,8e0302b0 +34841b8,24640008 +34841bc,ae0402b0 +34841c0,3c04fc11 +34841c4,34849623 +34841c8,ac640000 +34841cc,3c04ff2f +34841d0,3484ffff +34841d4,ac640004 +34841d8,3c030001 +34841dc,431021 +34841e0,94520744 +34841e4,240200aa +34841e8,124200e0 +34841ec,24070001 +34841f0,261102a8 +34841f4,8e0202b0 +34841f8,24430008 +34841fc,ae0302b0 +3484200,3c03fa00 +3484204,ac430000 +3484208,2403ff00 +348420c,2431825 +3484210,ac430004 +3484214,3025 +3484218,3c138041 +348421c,2665a408 +3484220,c101bd7 +3484224,2202025 +3484228,24020010 +348422c,afa20018 +3484230,afa20014 +3484234,24020040 +3484238,afa20010 +348423c,2407010f +3484240,3025 +3484244,2665a408 +3484248,c101c3f +348424c,2202025 +3484250,240200ff +3484254,16420023 +3484258,3c028011 +348425c,3c02801d +3484260,3442aa30 +3484264,8c42066c +3484268,3c033000 +348426c,24630483 +3484270,431024 +3484274,10400009 +3484278,3c02801c +348427c,8e0202b0 +3484280,24430008 +3484284,ae0302b0 +3484288,3c03fa00 +348428c,ac430000 +3484290,2403ff46 +3484294,10000012 +3484298,ac430004 +348429c,344284a0 +34842a0,8c430008 +34842a4,3c02800f +34842a8,8c4213ec +34842ac,5462fff4 34842b0,8e0202b0 -34842b4,24430008 -34842b8,ae0302b0 -34842bc,3c03fa00 -34842c0,ac430000 -34842c4,2403ff00 -34842c8,2431825 -34842cc,ac430004 -34842d0,3025 -34842d4,3c138041 -34842d8,2665a088 -34842dc,c101ba6 -34842e0,2202025 -34842e4,24020010 -34842e8,afa20018 -34842ec,afa20014 -34842f0,24020040 -34842f4,afa20010 -34842f8,2407010f -34842fc,3025 -3484300,2665a088 -3484304,c101c0e -3484308,2202025 -348430c,240200ff -3484310,16420023 -3484314,3c028011 -3484318,3c02801d -348431c,3442aa30 -3484320,8c42066c -3484324,3c033000 -3484328,24630483 -348432c,431024 -3484330,10400009 -3484334,3c02801c -3484338,8e0202b0 -348433c,24430008 -3484340,ae0302b0 -3484344,3c03fa00 -3484348,ac430000 -348434c,2403ff46 -3484350,10000012 -3484354,ac430004 -3484358,344284a0 -348435c,8c430008 -3484360,3c02800f -3484364,8c4213ec -3484368,5462fff4 -348436c,8e0202b0 -3484370,3c028011 -3484374,3442a5d0 -3484378,8c43135c -348437c,24020001 -3484380,1062ffed -3484384,3c02800e -3484388,3442f1b0 -348438c,8c420000 -3484390,30420020 -3484394,5440ffe9 -3484398,8e0202b0 -348439c,3c028011 -34843a0,3442a5d0 -34843a4,9442009c -34843a8,30422000 -34843ac,1040002a -34843b0,3c028011 -34843b4,3442a5d0 -34843b8,8c420004 -34843bc,14400054 -34843c0,3c028011 -34843c4,24070001 -34843c8,24060045 -34843cc,3c058041 -34843d0,24a5a0b8 -34843d4,c101ba6 -34843d8,2202025 -34843dc,3c028011 -34843e0,3442a5d0 -34843e4,94420070 -34843e8,3042f000 -34843ec,24032000 -34843f0,5443000e -34843f4,2402000c -34843f8,24020010 -34843fc,afa20018 -3484400,afa20014 -3484404,24020040 -3484408,afa20010 -348440c,24070102 -3484410,3025 -3484414,3c058041 -3484418,24a5a0b8 -348441c,c101c0e -3484420,2202025 -3484424,1000000c -3484428,3c028011 -348442c,afa20018 -3484430,afa20014 -3484434,24020042 -3484438,afa20010 -348443c,24070104 -3484440,3025 -3484444,3c058041 -3484448,24a5a0b8 -348444c,c101c0e -3484450,2202025 -3484454,3c028011 -3484458,3442a5d0 -348445c,9442009c -3484460,30424000 -3484464,1040002a -3484468,3c028011 -348446c,3442a5d0 -3484470,8c420004 -3484474,14400026 -3484478,3c028011 -348447c,24070001 -3484480,24060046 -3484484,3c058041 -3484488,24a5a0b8 -348448c,c101ba6 -3484490,2202025 -3484494,3c028011 -3484498,3442a5d0 -348449c,94420070 -34844a0,3042f000 -34844a4,24033000 -34844a8,5443000e -34844ac,2402000c -34844b0,24020010 -34844b4,afa20018 -34844b8,afa20014 -34844bc,24020040 -34844c0,afa20010 -34844c4,2407011b -34844c8,3025 -34844cc,3c058041 -34844d0,24a5a0b8 -34844d4,c101c0e -34844d8,2202025 -34844dc,1000000c -34844e0,3c028011 -34844e4,afa20018 -34844e8,afa20014 -34844ec,24020042 -34844f0,afa20010 -34844f4,2407011d -34844f8,3025 -34844fc,3c058041 -3484500,24a5a0b8 -3484504,c101c0e -3484508,2202025 -348450c,3c028011 -3484510,3442a5d0 -3484514,9042007b -3484518,2442fff9 -348451c,304200ff -3484520,2c420002 -3484524,50400034 -3484528,8e0202b0 -348452c,240200ff -3484530,1642001f -3484534,24070001 -3484538,3c02801c -348453c,344284a0 -3484540,3c030001 -3484544,431021 -3484548,94420934 -348454c,10400009 -3484550,3c02801c -3484554,8e0202b0 -3484558,24430008 -348455c,ae0302b0 -3484560,3c03fa00 -3484564,ac430000 -3484568,2403ff46 -348456c,1000000f -3484570,ac430004 -3484574,344284a0 -3484578,3c030001 -348457c,431021 -3484580,90420758 -3484584,5440fff4 -3484588,8e0202b0 -348458c,3c02801d -3484590,3442aa30 -3484594,8c42066c -3484598,3c0308a0 -348459c,24630800 -34845a0,431024 -34845a4,5440ffec -34845a8,8e0202b0 -34845ac,24070001 -34845b0,3c028011 -34845b4,3442a5d0 -34845b8,8046007b -34845bc,3c128041 -34845c0,2645a0b8 -34845c4,c101ba6 -34845c8,2202025 -34845cc,2402000c -34845d0,afa20018 -34845d4,afa20014 -34845d8,2402004d -34845dc,afa20010 -34845e0,24070111 -34845e4,3025 -34845e8,2645a0b8 -34845ec,c101c0e -34845f0,2202025 -34845f4,8e0202b0 -34845f8,24430008 -34845fc,ae0302b0 -3484600,3c03e700 -3484604,ac430000 -3484608,ac400004 -348460c,8fbf0034 -3484610,8fb30030 -3484614,8fb2002c -3484618,8fb10028 -348461c,8fb00024 -3484620,3e00008 -3484624,27bd0038 -3484628,261102a8 -348462c,8e0202b0 -3484630,24430008 -3484634,ae0302b0 -3484638,3c03fa00 -348463c,ac430000 -3484640,2403ffff -3484644,ac430004 -3484648,3025 -348464c,3c128041 -3484650,2645a088 -3484654,c101ba6 -3484658,2202025 -348465c,24020010 -3484660,afa20018 -3484664,afa20014 -3484668,24020040 -348466c,afa20010 -3484670,2407010f -3484674,3025 -3484678,2645a088 -348467c,c101c0e -3484680,2202025 -3484684,1000ff24 -3484688,241200ff -348468c,3e00008 -3484694,3c028041 -3484698,8c42b11c -348469c,10400274 -34846a0,3c02801c -34846a4,27bdff90 -34846a8,afbf006c -34846ac,afbe0068 -34846b0,afb70064 -34846b4,afb60060 -34846b8,afb5005c -34846bc,afb40058 -34846c0,afb30054 -34846c4,afb20050 -34846c8,afb1004c -34846cc,afb00048 -34846d0,344284a0 -34846d4,3c030001 -34846d8,431021 -34846dc,94430934 -34846e0,24020006 -34846e4,14620256 -34846e8,808025 -34846ec,3c02801c -34846f0,344284a0 -34846f4,3c030001 -34846f8,431021 -34846fc,94420948 -3484700,1440024f -3484704,3c02801c -3484708,344284a0 -348470c,431021 -3484710,94420944 -3484714,1440024a -3484718,3c02801c -348471c,344284a0 -3484720,84420014 -3484724,4430247 -3484728,8fbf006c -348472c,8c820004 -3484730,24430008 -3484734,ac830008 -3484738,3c03de00 -348473c,ac430000 -3484740,3c038041 -3484744,2463a0e8 -3484748,ac430004 -348474c,3c028011 -3484750,3442a5d0 -3484754,94430f2e -3484758,3c028041 -348475c,8c42b118 -3484760,10400012 -3484764,3025 -3484768,3c028041 -348476c,8c42b1b4 -3484770,10400010 -3484774,24060001 -3484778,30620001 -348477c,54400006 -3484780,30630002 -3484784,3c028041 -3484788,8c42b1b4 -348478c,1040000c -3484790,3025 -3484794,30630002 -3484798,24020001 -348479c,1460000a -34847a0,afa2003c -34847a4,10000008 -34847a8,afa0003c -34847ac,10000006 -34847b0,afa0003c -34847b4,24020001 -34847b8,10000003 -34847bc,afa2003c -34847c0,24020001 -34847c4,afa2003c -34847c8,3c028041 -34847cc,8c55b1c0 -34847d0,12a00007 -34847d4,2a01825 -34847d8,3c028041 -34847dc,9442a09c -34847e0,21840 -34847e4,621821 -34847e8,31840 -34847ec,24630001 -34847f0,3c028041 -34847f4,9442a09c -34847f8,210c0 -34847fc,24420057 -3484800,431021 -3484804,24030140 -3484808,621823 -348480c,38fc2 -3484810,2238821 -3484814,118843 -3484818,26230001 -348481c,afa30038 -3484820,8e030008 -3484824,24640008 -3484828,ae040008 -348482c,3c04fcff -3484830,3484ffff -3484834,ac640000 -3484838,3c04fffd -348483c,3484f6fb -3484840,ac640004 -3484844,8e030008 -3484848,24640008 -348484c,ae040008 -3484850,3c04fa00 -3484854,ac640000 -3484858,240400d0 -348485c,ac640004 -3484860,511021 -3484864,21380 -3484868,3c0300ff -348486c,3463f000 -3484870,431024 -3484874,3c04e400 -3484878,2484039c -348487c,441025 -3484880,afa20020 -3484884,111380 -3484888,431024 -348488c,34420024 -3484890,afa20024 -3484894,3c02e100 -3484898,afa20028 -348489c,afa0002c -34848a0,3c02f100 -34848a4,afa20030 -34848a8,3c020400 -34848ac,24420400 -34848b0,afa20034 -34848b4,27a20020 -34848b8,27a70038 -34848bc,8e030008 -34848c0,24640008 -34848c4,ae040008 -34848c8,8c450004 -34848cc,8c440000 -34848d0,ac650004 -34848d4,24420008 -34848d8,14e2fff8 -34848dc,ac640000 -34848e0,8e020008 -34848e4,24430008 -34848e8,ae030008 -34848ec,3c03e700 -34848f0,ac430000 -34848f4,ac400004 -34848f8,8e020008 -34848fc,24430008 -3484900,ae030008 -3484904,3c03fc11 -3484908,34639623 -348490c,ac430000 -3484910,3c03ff2f -3484914,3463ffff -3484918,10c0004c -348491c,ac430004 -3484920,3c058041 -3484924,24a5a0c8 -3484928,94a70008 -348492c,3025 -3484930,c101ba6 -3484934,2002025 -3484938,3c028041 -348493c,8c42b120 -3484940,18400042 -3484944,3c028041 -3484948,3c128041 -348494c,26529f38 -3484950,2414000a -3484954,9825 -3484958,3c1e8041 -348495c,3c168041 -3484960,26d69f14 -3484964,24429f24 -3484968,afa20040 -348496c,3c028041 -3484970,2442a0c8 -3484974,afa20044 -3484978,3c178041 -348497c,8fc2b1b8 -3484980,5040000b -3484984,92420000 -3484988,92430000 -348498c,3c028011 -3484990,3442a5d0 -3484994,431021 -3484998,904200a8 -348499c,21042 -34849a0,30420001 -34849a4,50400024 -34849a8,26730001 -34849ac,92420000 -34849b0,561021 -34849b4,80460000 -34849b8,28c20003 -34849bc,5440001e -34849c0,26730001 -34849c4,24c6fffd -34849c8,61840 -34849cc,661821 -34849d0,8fa20040 -34849d4,621821 -34849d8,90620000 -34849dc,21600 -34849e0,90640002 -34849e4,42200 -34849e8,441025 -34849ec,90630001 -34849f0,31c00 -34849f4,431025 -34849f8,344200ff -34849fc,8e030008 -3484a00,24640008 -3484a04,ae040008 -3484a08,3c04fa00 -3484a0c,ac640000 -3484a10,ac620004 -3484a14,24020010 -3484a18,afa20018 -3484a1c,afa20014 -3484a20,afb40010 -3484a24,8fa70038 -3484a28,8fa50044 -3484a2c,c101c0e -3484a30,2002025 -3484a34,26730001 -3484a38,2652000c -3484a3c,8ee2b120 -3484a40,262102a -3484a44,1440ffcd -3484a48,26940011 -3484a4c,8e020008 -3484a50,24430008 -3484a54,ae030008 -3484a58,3c03fa00 -3484a5c,ac430000 -3484a60,2403ffff -3484a64,ac430004 -3484a68,8fa2003c -3484a6c,10400037 -3484a70,3c028041 -3484a74,3c058041 -3484a78,24a5a0d8 -3484a7c,94a70008 -3484a80,3025 -3484a84,c101ba6 -3484a88,2002025 +34842b4,3c028011 +34842b8,3442a5d0 +34842bc,8c42135c +34842c0,5440ffef +34842c4,8e0202b0 +34842c8,3c02800e +34842cc,3442f1b0 +34842d0,8c420000 +34842d4,30420020 +34842d8,5440ffe9 +34842dc,8e0202b0 +34842e0,3c028011 +34842e4,3442a5d0 +34842e8,9442009c +34842ec,30422000 +34842f0,1040002a +34842f4,3c028011 +34842f8,3442a5d0 +34842fc,8c420004 +3484300,14400054 +3484304,3c028011 +3484308,24070001 +348430c,24060045 +3484310,3c058041 +3484314,24a5a438 +3484318,c101bd7 +348431c,2202025 +3484320,3c028011 +3484324,3442a5d0 +3484328,94420070 +348432c,3042f000 +3484330,24032000 +3484334,5443000e +3484338,2402000c +348433c,24020010 +3484340,afa20018 +3484344,afa20014 +3484348,24020040 +348434c,afa20010 +3484350,24070102 +3484354,3025 +3484358,3c058041 +348435c,24a5a438 +3484360,c101c3f +3484364,2202025 +3484368,1000000c +348436c,3c028011 +3484370,afa20018 +3484374,afa20014 +3484378,24020042 +348437c,afa20010 +3484380,24070104 +3484384,3025 +3484388,3c058041 +348438c,24a5a438 +3484390,c101c3f +3484394,2202025 +3484398,3c028011 +348439c,3442a5d0 +34843a0,9442009c +34843a4,30424000 +34843a8,1040002a +34843ac,3c028011 +34843b0,3442a5d0 +34843b4,8c420004 +34843b8,14400026 +34843bc,3c028011 +34843c0,24070001 +34843c4,24060046 +34843c8,3c058041 +34843cc,24a5a438 +34843d0,c101bd7 +34843d4,2202025 +34843d8,3c028011 +34843dc,3442a5d0 +34843e0,94420070 +34843e4,3042f000 +34843e8,24033000 +34843ec,5443000e +34843f0,2402000c +34843f4,24020010 +34843f8,afa20018 +34843fc,afa20014 +3484400,24020040 +3484404,afa20010 +3484408,2407011b +348440c,3025 +3484410,3c058041 +3484414,24a5a438 +3484418,c101c3f +348441c,2202025 +3484420,1000000c +3484424,3c028011 +3484428,afa20018 +348442c,afa20014 +3484430,24020042 +3484434,afa20010 +3484438,2407011d +348443c,3025 +3484440,3c058041 +3484444,24a5a438 +3484448,c101c3f +348444c,2202025 +3484450,3c028011 +3484454,3442a5d0 +3484458,9042007b +348445c,2442fff9 +3484460,304200ff +3484464,2c420002 +3484468,50400034 +348446c,8e0202b0 +3484470,240200ff +3484474,1642001f +3484478,24070001 +348447c,3c02801c +3484480,344284a0 +3484484,3c030001 +3484488,431021 +348448c,94420934 +3484490,10400009 +3484494,3c02801c +3484498,8e0202b0 +348449c,24430008 +34844a0,ae0302b0 +34844a4,3c03fa00 +34844a8,ac430000 +34844ac,2403ff46 +34844b0,1000000f +34844b4,ac430004 +34844b8,344284a0 +34844bc,3c030001 +34844c0,431021 +34844c4,90420758 +34844c8,5440fff4 +34844cc,8e0202b0 +34844d0,3c02801d +34844d4,3442aa30 +34844d8,8c42066c +34844dc,3c0308a0 +34844e0,24630800 +34844e4,431024 +34844e8,5440ffec +34844ec,8e0202b0 +34844f0,24070001 +34844f4,3c028011 +34844f8,3442a5d0 +34844fc,8046007b +3484500,3c128041 +3484504,2645a438 +3484508,c101bd7 +348450c,2202025 +3484510,2402000c +3484514,afa20018 +3484518,afa20014 +348451c,2402004d +3484520,afa20010 +3484524,24070111 +3484528,3025 +348452c,2645a438 +3484530,c101c3f +3484534,2202025 +3484538,8e0202b0 +348453c,24430008 +3484540,ae0302b0 +3484544,3c03e700 +3484548,ac430000 +348454c,ac400004 +3484550,8fbf0034 +3484554,8fb30030 +3484558,8fb2002c +348455c,8fb10028 +3484560,8fb00024 +3484564,3e00008 +3484568,27bd0038 +348456c,261102a8 +3484570,8e0202b0 +3484574,24430008 +3484578,ae0302b0 +348457c,3c03fa00 +3484580,ac430000 +3484584,2403ffff +3484588,ac430004 +348458c,3025 +3484590,3c128041 +3484594,2645a408 +3484598,c101bd7 +348459c,2202025 +34845a0,24020010 +34845a4,afa20018 +34845a8,afa20014 +34845ac,24020040 +34845b0,afa20010 +34845b4,2407010f +34845b8,3025 +34845bc,2645a408 +34845c0,c101c3f +34845c4,2202025 +34845c8,1000ff24 +34845cc,241200ff +34845d0,3e00008 +34845d8,3c028041 +34845dc,8c42b49c +34845e0,10400274 +34845e4,3c02801c +34845e8,27bdff90 +34845ec,afbf006c +34845f0,afbe0068 +34845f4,afb70064 +34845f8,afb60060 +34845fc,afb5005c +3484600,afb40058 +3484604,afb30054 +3484608,afb20050 +348460c,afb1004c +3484610,afb00048 +3484614,344284a0 +3484618,3c030001 +348461c,431021 +3484620,94430934 +3484624,24020006 +3484628,14620256 +348462c,808025 +3484630,3c02801c +3484634,344284a0 +3484638,3c030001 +348463c,431021 +3484640,94420948 +3484644,1440024f +3484648,3c02801c +348464c,344284a0 +3484650,431021 +3484654,94420944 +3484658,1440024a +348465c,3c02801c +3484660,344284a0 +3484664,84420014 +3484668,4430247 +348466c,8fbf006c +3484670,8c820004 +3484674,24430008 +3484678,ac830008 +348467c,3c03de00 +3484680,ac430000 +3484684,3c038041 +3484688,2463a468 +348468c,ac430004 +3484690,3c028011 +3484694,3442a5d0 +3484698,94430f2e +348469c,3c028041 +34846a0,8c42b498 +34846a4,10400012 +34846a8,3025 +34846ac,3c028041 +34846b0,8c42b534 +34846b4,10400010 +34846b8,24060001 +34846bc,30620001 +34846c0,54400006 +34846c4,30630002 +34846c8,3c028041 +34846cc,8c42b534 +34846d0,1040000c +34846d4,3025 +34846d8,30630002 +34846dc,24020001 +34846e0,1460000a +34846e4,afa2003c +34846e8,10000008 +34846ec,afa0003c +34846f0,10000006 +34846f4,afa0003c +34846f8,24020001 +34846fc,10000003 +3484700,afa2003c +3484704,24020001 +3484708,afa2003c +348470c,3c028041 +3484710,8c55b540 +3484714,12a00007 +3484718,2a01825 +348471c,3c028041 +3484720,9442a41c +3484724,21840 +3484728,621821 +348472c,31840 +3484730,24630001 +3484734,3c028041 +3484738,9442a41c +348473c,210c0 +3484740,24420057 +3484744,431021 +3484748,24030140 +348474c,621823 +3484750,38fc2 +3484754,2238821 +3484758,118843 +348475c,26230001 +3484760,afa30038 +3484764,8e030008 +3484768,24640008 +348476c,ae040008 +3484770,3c04fcff +3484774,3484ffff +3484778,ac640000 +348477c,3c04fffd +3484780,3484f6fb +3484784,ac640004 +3484788,8e030008 +348478c,24640008 +3484790,ae040008 +3484794,3c04fa00 +3484798,ac640000 +348479c,240400d0 +34847a0,ac640004 +34847a4,511021 +34847a8,21380 +34847ac,3c0300ff +34847b0,3463f000 +34847b4,431024 +34847b8,3c04e400 +34847bc,2484039c +34847c0,441025 +34847c4,afa20020 +34847c8,111380 +34847cc,431024 +34847d0,34420024 +34847d4,afa20024 +34847d8,3c02e100 +34847dc,afa20028 +34847e0,afa0002c +34847e4,3c02f100 +34847e8,afa20030 +34847ec,3c020400 +34847f0,24420400 +34847f4,afa20034 +34847f8,27a20020 +34847fc,27a70038 +3484800,8e030008 +3484804,24640008 +3484808,ae040008 +348480c,8c450004 +3484810,8c440000 +3484814,ac650004 +3484818,24420008 +348481c,14e2fff8 +3484820,ac640000 +3484824,8e020008 +3484828,24430008 +348482c,ae030008 +3484830,3c03e700 +3484834,ac430000 +3484838,ac400004 +348483c,8e020008 +3484840,24430008 +3484844,ae030008 +3484848,3c03fc11 +348484c,34639623 +3484850,ac430000 +3484854,3c03ff2f +3484858,3463ffff +348485c,10c0004c +3484860,ac430004 +3484864,3c058041 +3484868,24a5a448 +348486c,94a70008 +3484870,3025 +3484874,c101bd7 +3484878,2002025 +348487c,3c028041 +3484880,8c42b4a0 +3484884,18400042 +3484888,3c028041 +348488c,3c128041 +3484890,2652a278 +3484894,2414000a +3484898,9825 +348489c,3c1e8041 +34848a0,3c168041 +34848a4,26d6a254 +34848a8,2442a264 +34848ac,afa20040 +34848b0,3c028041 +34848b4,2442a448 +34848b8,afa20044 +34848bc,3c178041 +34848c0,8fc2b538 +34848c4,5040000b +34848c8,92420000 +34848cc,92430000 +34848d0,3c028011 +34848d4,3442a5d0 +34848d8,431021 +34848dc,904200a8 +34848e0,21042 +34848e4,30420001 +34848e8,50400024 +34848ec,26730001 +34848f0,92420000 +34848f4,561021 +34848f8,80460000 +34848fc,28c20003 +3484900,5440001e +3484904,26730001 +3484908,24c6fffd +348490c,61840 +3484910,661821 +3484914,8fa20040 +3484918,621821 +348491c,90620000 +3484920,21600 +3484924,90640002 +3484928,42200 +348492c,441025 +3484930,90630001 +3484934,31c00 +3484938,431025 +348493c,344200ff +3484940,8e030008 +3484944,24640008 +3484948,ae040008 +348494c,3c04fa00 +3484950,ac640000 +3484954,ac620004 +3484958,24020010 +348495c,afa20018 +3484960,afa20014 +3484964,afb40010 +3484968,8fa70038 +348496c,8fa50044 +3484970,c101c3f +3484974,2002025 +3484978,26730001 +348497c,2652000c +3484980,8ee2b4a0 +3484984,262102a +3484988,1440ffcd +348498c,26940011 +3484990,8e020008 +3484994,24430008 +3484998,ae030008 +348499c,3c03fa00 +34849a0,ac430000 +34849a4,2403ffff +34849a8,ac430004 +34849ac,8fa2003c +34849b0,10400037 +34849b4,3c028041 +34849b8,3c058041 +34849bc,24a5a458 +34849c0,94a70008 +34849c4,3025 +34849c8,c101bd7 +34849cc,2002025 +34849d0,3c028041 +34849d4,8c42b4a0 +34849d8,18400168 +34849dc,3c1e8041 +34849e0,3c128041 +34849e4,2652a278 +34849e8,2414000a +34849ec,9825 +34849f0,3c168041 +34849f4,26d6a254 +34849f8,3c028041 +34849fc,2442a458 +3484a00,afa20040 +3484a04,3c028011 +3484a08,3442a5d0 +3484a0c,afa2003c +3484a10,3c178041 +3484a14,8fc2b538 +3484a18,10400009 +3484a1c,92420000 +3484a20,8fa3003c +3484a24,621021 +3484a28,904200a8 +3484a2c,21042 +3484a30,30420001 +3484a34,50400010 +3484a38,26730001 +3484a3c,92420000 +3484a40,561021 +3484a44,80460000 +3484a48,2cc20003 +3484a4c,5040000a +3484a50,26730001 +3484a54,24020010 +3484a58,afa20018 +3484a5c,afa20014 +3484a60,afb40010 +3484a64,8fa70038 +3484a68,8fa50040 +3484a6c,c101c3f +3484a70,2002025 +3484a74,26730001 +3484a78,2652000c +3484a7c,8ee2b4a0 +3484a80,262102a +3484a84,1440ffe3 +3484a88,26940011 3484a8c,3c028041 -3484a90,8c42b120 -3484a94,18400168 -3484a98,3c1e8041 +3484a90,8c42b4a0 +3484a94,18400010 +3484a98,26310012 3484a9c,3c128041 -3484aa0,26529f38 -3484aa4,2414000a +3484aa0,2652a27a +3484aa4,2414000b 3484aa8,9825 3484aac,3c168041 -3484ab0,26d69f14 -3484ab4,3c028041 -3484ab8,2442a0d8 -3484abc,afa20040 -3484ac0,3c028011 -3484ac4,3442a5d0 -3484ac8,afa2003c -3484acc,3c178041 -3484ad0,8fc2b1b8 -3484ad4,10400009 -3484ad8,92420000 -3484adc,8fa3003c -3484ae0,621021 -3484ae4,904200a8 -3484ae8,21042 -3484aec,30420001 -3484af0,50400010 -3484af4,26730001 -3484af8,92420000 -3484afc,561021 -3484b00,80460000 -3484b04,2cc20003 -3484b08,5040000a -3484b0c,26730001 -3484b10,24020010 -3484b14,afa20018 -3484b18,afa20014 -3484b1c,afb40010 -3484b20,8fa70038 -3484b24,8fa50040 -3484b28,c101c0e -3484b2c,2002025 -3484b30,26730001 -3484b34,2652000c -3484b38,8ee2b120 -3484b3c,262102a -3484b40,1440ffe3 -3484b44,26940011 -3484b48,3c028041 -3484b4c,8c42b120 -3484b50,18400010 -3484b54,26310012 -3484b58,3c128041 -3484b5c,26529f3a -3484b60,2414000b -3484b64,9825 -3484b68,3c168041 -3484b6c,2803025 -3484b70,2202825 -3484b74,c102519 -3484b78,2402025 -3484b7c,26730001 -3484b80,2652000c -3484b84,8ec2b120 -3484b88,262102a -3484b8c,1440fff7 -3484b90,26940011 -3484b94,3c028041 -3484b98,9456a09c -3484b9c,16b0c0 -3484ba0,26d60001 -3484ba4,2d1b021 -3484ba8,24070001 -3484bac,24060011 -3484bb0,3c058041 -3484bb4,24a5a0a8 -3484bb8,c101ba6 -3484bbc,2002025 -3484bc0,3c028041 -3484bc4,8c42b120 -3484bc8,18400024 -3484bcc,241e3000 -3484bd0,3c118041 -3484bd4,26319f38 -3484bd8,2413000b -3484bdc,9025 -3484be0,3c178011 -3484be4,36f7a5d0 -3484be8,3c148041 -3484bec,82220001 -3484bf0,4430015 -3484bf4,26520001 -3484bf8,92220000 -3484bfc,2e21021 -3484c00,904200bc -3484c04,21e00 -3484c08,31e03 -3484c0c,2863000a -3484c10,50600001 -3484c14,24020009 -3484c18,21e00 -3484c1c,31e03 -3484c20,4620001 -3484c24,1025 -3484c28,a7be0020 -3484c2c,24420030 -3484c30,a3a20020 -3484c34,2603025 -3484c38,2c02825 -3484c3c,c102519 -3484c40,27a40020 -3484c44,26520001 -3484c48,2631000c -3484c4c,8e82b120 -3484c50,242102a -3484c54,1440ffe5 -3484c58,26730011 -3484c5c,26de0011 -3484c60,24070001 -3484c64,2406000e -3484c68,3c058041 -3484c6c,24a5a0a8 -3484c70,c101ba6 -3484c74,2002025 -3484c78,3c028041 -3484c7c,8c42b120 -3484c80,18400027 -3484c84,3c028041 -3484c88,3c118041 -3484c8c,26319f38 -3484c90,2413000a -3484c94,9025 -3484c98,3c178011 -3484c9c,36f7a5d0 -3484ca0,2442a0a8 -3484ca4,afa20038 -3484ca8,3c148041 -3484cac,92230000 -3484cb0,2404000d -3484cb4,14640002 -3484cb8,2201025 -3484cbc,2403000a -3484cc0,90420001 -3484cc4,30420040 -3484cc8,50400010 -3484ccc,26520001 -3484cd0,2e31821 -3484cd4,906200a8 -3484cd8,30420001 -3484cdc,5040000b -3484ce0,26520001 -3484ce4,24020010 -3484ce8,afa20018 -3484cec,afa20014 -3484cf0,afb30010 -3484cf4,3c03825 -3484cf8,3025 -3484cfc,8fa50038 -3484d00,c101c0e -3484d04,2002025 -3484d08,26520001 -3484d0c,2631000c -3484d10,8e82b120 -3484d14,242102a -3484d18,1440ffe4 -3484d1c,26730011 -3484d20,24070001 -3484d24,2406000a -3484d28,3c058041 -3484d2c,24a5a0a8 -3484d30,c101ba6 -3484d34,2002025 -3484d38,3c028041 -3484d3c,8c42b120 -3484d40,18400022 -3484d44,3c028041 -3484d48,3c118041 -3484d4c,26319f39 -3484d50,2413000a -3484d54,9025 -3484d58,3c178011 -3484d5c,36f7a5d0 -3484d60,2442a0a8 -3484d64,afa20038 -3484d68,3c148041 -3484d6c,92220000 -3484d70,30420020 -3484d74,50400010 -3484d78,26520001 -3484d7c,8ee200a4 -3484d80,3c030040 -3484d84,431024 -3484d88,5040000b -3484d8c,26520001 -3484d90,24020010 -3484d94,afa20018 -3484d98,afa20014 -3484d9c,afb30010 -3484da0,3c03825 -3484da4,3025 -3484da8,8fa50038 -3484dac,c101c0e -3484db0,2002025 -3484db4,26520001 -3484db8,2631000c -3484dbc,8e82b120 -3484dc0,242102a -3484dc4,1440ffe9 -3484dc8,26730011 -3484dcc,26de0022 +3484ab0,2803025 +3484ab4,2202825 +3484ab8,c102559 +3484abc,2402025 +3484ac0,26730001 +3484ac4,2652000c +3484ac8,8ec2b4a0 +3484acc,262102a +3484ad0,1440fff7 +3484ad4,26940011 +3484ad8,3c028041 +3484adc,9456a41c +3484ae0,16b0c0 +3484ae4,26d60001 +3484ae8,2d1b021 +3484aec,24070001 +3484af0,24060011 +3484af4,3c058041 +3484af8,24a5a428 +3484afc,c101bd7 +3484b00,2002025 +3484b04,3c028041 +3484b08,8c42b4a0 +3484b0c,18400024 +3484b10,241e3000 +3484b14,3c118041 +3484b18,2631a278 +3484b1c,2413000b +3484b20,9025 +3484b24,3c178011 +3484b28,36f7a5d0 +3484b2c,3c148041 +3484b30,82220001 +3484b34,4430015 +3484b38,26520001 +3484b3c,92220000 +3484b40,2e21021 +3484b44,904200bc +3484b48,21e00 +3484b4c,31e03 +3484b50,2863000a +3484b54,50600001 +3484b58,24020009 +3484b5c,21e00 +3484b60,31e03 +3484b64,4620001 +3484b68,1025 +3484b6c,a7be0020 +3484b70,24420030 +3484b74,a3a20020 +3484b78,2603025 +3484b7c,2c02825 +3484b80,c102559 +3484b84,27a40020 +3484b88,26520001 +3484b8c,2631000c +3484b90,8e82b4a0 +3484b94,242102a +3484b98,1440ffe5 +3484b9c,26730011 +3484ba0,26de0011 +3484ba4,24070001 +3484ba8,2406000e +3484bac,3c058041 +3484bb0,24a5a428 +3484bb4,c101bd7 +3484bb8,2002025 +3484bbc,3c028041 +3484bc0,8c42b4a0 +3484bc4,18400027 +3484bc8,3c028041 +3484bcc,3c118041 +3484bd0,2631a278 +3484bd4,2413000a +3484bd8,9025 +3484bdc,3c178011 +3484be0,36f7a5d0 +3484be4,2442a428 +3484be8,afa20038 +3484bec,3c148041 +3484bf0,92230000 +3484bf4,2404000d +3484bf8,14640002 +3484bfc,2201025 +3484c00,2403000a +3484c04,90420001 +3484c08,30420040 +3484c0c,50400010 +3484c10,26520001 +3484c14,2e31821 +3484c18,906200a8 +3484c1c,30420001 +3484c20,5040000b +3484c24,26520001 +3484c28,24020010 +3484c2c,afa20018 +3484c30,afa20014 +3484c34,afb30010 +3484c38,3c03825 +3484c3c,3025 +3484c40,8fa50038 +3484c44,c101c3f +3484c48,2002025 +3484c4c,26520001 +3484c50,2631000c +3484c54,8e82b4a0 +3484c58,242102a +3484c5c,1440ffe4 +3484c60,26730011 +3484c64,24070001 +3484c68,2406000a +3484c6c,3c058041 +3484c70,24a5a428 +3484c74,c101bd7 +3484c78,2002025 +3484c7c,3c028041 +3484c80,8c42b4a0 +3484c84,18400022 +3484c88,3c028041 +3484c8c,3c118041 +3484c90,2631a279 +3484c94,2413000a +3484c98,9025 +3484c9c,3c178011 +3484ca0,36f7a5d0 +3484ca4,2442a428 +3484ca8,afa20038 +3484cac,3c148041 +3484cb0,92220000 +3484cb4,30420020 +3484cb8,50400010 +3484cbc,26520001 +3484cc0,8ee200a4 +3484cc4,3c030040 +3484cc8,431024 +3484ccc,5040000b +3484cd0,26520001 +3484cd4,24020010 +3484cd8,afa20018 +3484cdc,afa20014 +3484ce0,afb30010 +3484ce4,3c03825 +3484ce8,3025 +3484cec,8fa50038 +3484cf0,c101c3f +3484cf4,2002025 +3484cf8,26520001 +3484cfc,2631000c +3484d00,8e82b4a0 +3484d04,242102a +3484d08,1440ffe9 +3484d0c,26730011 +3484d10,26de0022 +3484d14,24070001 +3484d18,24060010 +3484d1c,3c058041 +3484d20,24a5a428 +3484d24,c101bd7 +3484d28,2002025 +3484d2c,3c028041 +3484d30,8c42b4a0 +3484d34,18400024 +3484d38,3c118041 +3484d3c,2631a278 +3484d40,2413000a +3484d44,9025 +3484d48,3c178011 +3484d4c,36f7a5d0 +3484d50,3c028041 +3484d54,2442a428 +3484d58,afa20038 +3484d5c,3c148041 +3484d60,92220001 +3484d64,30420010 +3484d68,50400012 +3484d6c,26520001 +3484d70,92220000 +3484d74,2e21021 +3484d78,904200a8 +3484d7c,21082 +3484d80,30420001 +3484d84,5040000b +3484d88,26520001 +3484d8c,24020010 +3484d90,afa20018 +3484d94,afa20014 +3484d98,afb30010 +3484d9c,3c03825 +3484da0,3025 +3484da4,8fa50038 +3484da8,c101c3f +3484dac,2002025 +3484db0,26520001 +3484db4,2631000c +3484db8,8e82b4a0 +3484dbc,242102a +3484dc0,1440ffe7 +3484dc4,26730011 +3484dc8,26c20033 +3484dcc,afa20038 3484dd0,24070001 -3484dd4,24060010 +3484dd4,2406000f 3484dd8,3c058041 -3484ddc,24a5a0a8 -3484de0,c101ba6 +3484ddc,24a5a428 +3484de0,c101bd7 3484de4,2002025 3484de8,3c028041 -3484dec,8c42b120 -3484df0,18400024 -3484df4,3c118041 -3484df8,26319f38 -3484dfc,2413000a -3484e00,9025 -3484e04,3c178011 -3484e08,36f7a5d0 -3484e0c,3c028041 -3484e10,2442a0a8 -3484e14,afa20038 -3484e18,3c148041 -3484e1c,92220001 -3484e20,30420010 -3484e24,50400012 -3484e28,26520001 -3484e2c,92220000 -3484e30,2e21021 -3484e34,904200a8 -3484e38,21082 -3484e3c,30420001 -3484e40,5040000b -3484e44,26520001 -3484e48,24020010 -3484e4c,afa20018 -3484e50,afa20014 -3484e54,afb30010 -3484e58,3c03825 -3484e5c,3025 -3484e60,8fa50038 -3484e64,c101c0e -3484e68,2002025 -3484e6c,26520001 -3484e70,2631000c -3484e74,8e82b120 -3484e78,242102a -3484e7c,1440ffe7 -3484e80,26730011 -3484e84,26c20033 -3484e88,afa20038 -3484e8c,24070001 -3484e90,2406000f -3484e94,3c058041 -3484e98,24a5a0a8 -3484e9c,c101ba6 -3484ea0,2002025 -3484ea4,3c028041 -3484ea8,8c42b120 -3484eac,18400053 -3484eb0,3c148041 -3484eb4,26949f38 -3484eb8,2808825 -3484ebc,2413000a -3484ec0,9025 -3484ec4,3c1e8011 -3484ec8,37dea5d0 -3484ecc,3c028041 -3484ed0,2442a0a8 -3484ed4,afa2003c -3484ed8,3c178041 -3484edc,92220001 -3484ee0,30420010 -3484ee4,50400012 -3484ee8,26520001 -3484eec,92220000 -3484ef0,3c21021 -3484ef4,904200a8 -3484ef8,21042 -3484efc,30420001 -3484f00,5040000b -3484f04,26520001 -3484f08,24020010 -3484f0c,afa20018 -3484f10,afa20014 -3484f14,afb30010 -3484f18,8fa70038 -3484f1c,3025 -3484f20,8fa5003c -3484f24,c101c0e -3484f28,2002025 -3484f2c,26520001 -3484f30,8ee2b120 -3484f34,2631000c -3484f38,242182a -3484f3c,1460ffe7 -3484f40,26730011 -3484f44,12a0002d -3484f4c,1840002b -3484f50,26d60044 -3484f54,2412000b -3484f58,8825 -3484f5c,3c1e8041 -3484f60,3c158041 -3484f64,26b5b220 -3484f68,3c138041 -3484f6c,26739e98 -3484f70,3c028041 -3484f74,24429e9c -3484f78,afa20038 -3484f7c,3c178041 -3484f80,8fc2b1bc -3484f84,5040000f -3484f88,92820000 -3484f8c,92820001 -3484f90,30420010 -3484f94,5040000b -3484f98,92820000 -3484f9c,92830000 -3484fa0,3c028011 -3484fa4,3442a5d0 -3484fa8,431021 -3484fac,904200a8 -3484fb0,21082 -3484fb4,30420001 -3484fb8,5040000b -3484fbc,26310001 -3484fc0,92820000 -3484fc4,551021 -3484fc8,90420000 -3484fcc,14400002 -3484fd0,2602025 -3484fd4,8fa40038 -3484fd8,2403025 -3484fdc,c102519 -3484fe0,2c02825 -3484fe4,26310001 -3484fe8,2694000c -3484fec,8ee2b120 -3484ff0,222102a -3484ff4,1440ffe2 -3484ff8,26520011 -3484ffc,c102543 -3485000,2002025 -3485004,8e020008 -3485008,24430008 -348500c,ae030008 -3485010,3c03e900 -3485014,ac430000 -3485018,ac400004 -348501c,8e020008 -3485020,24430008 -3485024,ae030008 -3485028,3c03df00 -348502c,ac430000 -3485030,10000003 -3485034,ac400004 -3485038,1000fed6 -348503c,26310012 -3485040,8fbf006c -3485044,8fbe0068 -3485048,8fb70064 -348504c,8fb60060 -3485050,8fb5005c -3485054,8fb40058 -3485058,8fb30054 -348505c,8fb20050 -3485060,8fb1004c -3485064,8fb00048 -3485068,3e00008 -348506c,27bd0070 -3485070,3e00008 -3485078,44860000 -348507c,44801000 -3485084,46020032 -348508c,45030011 -3485090,46007006 -3485094,460e603c -348509c,45000007 -34850a0,460c0000 -34850a4,4600703c -34850ac,45000009 -34850b4,3e00008 -34850b8,46007006 -34850bc,460e003c -34850c4,45000003 -34850cc,3e00008 -34850d0,46007006 -34850d4,3e00008 -34850dc,3c02801c -34850e0,344284a0 -34850e4,c44000d4 -34850e8,3c028041 -34850ec,3e00008 -34850f0,e440b128 -34850f4,27bdffe8 -34850f8,afbf0014 -34850fc,3c028041 -3485100,90429fe0 -3485104,5040001b -3485108,3c028041 -348510c,3c038011 -3485110,3463a5d0 -3485114,8c630070 -3485118,31f02 -348511c,1062000d -3485120,21300 -3485124,3c048011 -3485128,3484a5d0 -348512c,94830070 -3485130,30630fff -3485134,621025 -3485138,a4820070 -348513c,3c04801d -3485140,3485aa30 -3485144,3c028007 -3485148,34429764 -348514c,40f809 -3485150,248484a0 +3484dec,8c42b4a0 +3484df0,18400053 +3484df4,3c148041 +3484df8,2694a278 +3484dfc,2808825 +3484e00,2413000a +3484e04,9025 +3484e08,3c1e8011 +3484e0c,37dea5d0 +3484e10,3c028041 +3484e14,2442a428 +3484e18,afa2003c +3484e1c,3c178041 +3484e20,92220001 +3484e24,30420010 +3484e28,50400012 +3484e2c,26520001 +3484e30,92220000 +3484e34,3c21021 +3484e38,904200a8 +3484e3c,21042 +3484e40,30420001 +3484e44,5040000b +3484e48,26520001 +3484e4c,24020010 +3484e50,afa20018 +3484e54,afa20014 +3484e58,afb30010 +3484e5c,8fa70038 +3484e60,3025 +3484e64,8fa5003c +3484e68,c101c3f +3484e6c,2002025 +3484e70,26520001 +3484e74,8ee2b4a0 +3484e78,2631000c +3484e7c,242182a +3484e80,1460ffe7 +3484e84,26730011 +3484e88,12a0002d +3484e90,1840002b +3484e94,26d60044 +3484e98,2412000b +3484e9c,8825 +3484ea0,3c1e8041 +3484ea4,3c158041 +3484ea8,26b5b5a8 +3484eac,3c138041 +3484eb0,2673a1d8 +3484eb4,3c028041 +3484eb8,2442a1dc +3484ebc,afa20038 +3484ec0,3c178041 +3484ec4,8fc2b53c +3484ec8,5040000f +3484ecc,92820000 +3484ed0,92820001 +3484ed4,30420010 +3484ed8,5040000b +3484edc,92820000 +3484ee0,92830000 +3484ee4,3c028011 +3484ee8,3442a5d0 +3484eec,431021 +3484ef0,904200a8 +3484ef4,21082 +3484ef8,30420001 +3484efc,5040000b +3484f00,26310001 +3484f04,92820000 +3484f08,551021 +3484f0c,90420000 +3484f10,14400002 +3484f14,2602025 +3484f18,8fa40038 +3484f1c,2403025 +3484f20,c102559 +3484f24,2c02825 +3484f28,26310001 +3484f2c,2694000c +3484f30,8ee2b4a0 +3484f34,222102a +3484f38,1440ffe2 +3484f3c,26520011 +3484f40,c102583 +3484f44,2002025 +3484f48,8e020008 +3484f4c,24430008 +3484f50,ae030008 +3484f54,3c03e900 +3484f58,ac430000 +3484f5c,ac400004 +3484f60,8e020008 +3484f64,24430008 +3484f68,ae030008 +3484f6c,3c03df00 +3484f70,ac430000 +3484f74,10000003 +3484f78,ac400004 +3484f7c,1000fed6 +3484f80,26310012 +3484f84,8fbf006c +3484f88,8fbe0068 +3484f8c,8fb70064 +3484f90,8fb60060 +3484f94,8fb5005c +3484f98,8fb40058 +3484f9c,8fb30054 +3484fa0,8fb20050 +3484fa4,8fb1004c +3484fa8,8fb00048 +3484fac,3e00008 +3484fb0,27bd0070 +3484fb4,3e00008 +3484fbc,44860000 +3484fc0,44801000 +3484fc8,46020032 +3484fd0,45030011 +3484fd4,46007006 +3484fd8,460e603c +3484fe0,45000007 +3484fe4,460c0000 +3484fe8,4600703c +3484ff0,45000009 +3484ff8,3e00008 +3484ffc,46007006 +3485000,460e003c +3485008,45000003 +3485010,3e00008 +3485014,46007006 +3485018,3e00008 +3485020,3c02801c +3485024,344284a0 +3485028,c44000d4 +348502c,3c028041 +3485030,3e00008 +3485034,e440b4a8 +3485038,27bdffe8 +348503c,afbf0014 +3485040,3c028041 +3485044,9042a320 +3485048,5040001b +348504c,3c028041 +3485050,3c038011 +3485054,3463a5d0 +3485058,8c630070 +348505c,31f02 +3485060,1062000d +3485064,21300 +3485068,3c048011 +348506c,3484a5d0 +3485070,94830070 +3485074,30630fff +3485078,621025 +348507c,a4820070 +3485080,3c04801d +3485084,3485aa30 +3485088,3c028007 +348508c,34429764 +3485090,40f809 +3485094,248484a0 +3485098,3c028041 +348509c,9043a320 +34850a0,24020001 +34850a4,14620004 +34850a8,3c028041 +34850ac,3c028041 +34850b0,a040a320 +34850b4,3c028041 +34850b8,c44ea318 +34850bc,44800000 +34850c4,46007032 +34850cc,45010010 +34850d0,3c02801c +34850d4,344284a0 +34850d8,c44000d4 +34850dc,46007032 +34850e4,45010019 +34850e8,3c02801c +34850ec,3c028041 +34850f0,8c46a1e4 +34850f4,3c028041 +34850f8,c1013ef +34850fc,c44cb4a4 +3485100,3c02801c +3485104,344284a0 +3485108,1000000f +348510c,e44000d4 +3485110,344284a0 +3485114,c44c00d4 +3485118,3c028041 +348511c,c44eb4a8 +3485120,460e6032 +3485128,45010008 +348512c,3c02801c +3485130,3c028041 +3485134,c1013ef +3485138,8c46a1e8 +348513c,3c02801c +3485140,344284a0 +3485144,e44000d4 +3485148,3c02801c +348514c,344284a0 +3485150,c44000d4 3485154,3c028041 -3485158,90439fe0 -348515c,24020001 -3485160,14620004 -3485164,3c028041 -3485168,3c028041 -348516c,a0409fe0 -3485170,3c028041 -3485174,c44e9fd8 -3485178,44800000 -3485180,46007032 -3485188,45010010 -348518c,3c02801c -3485190,344284a0 -3485194,c44000d4 -3485198,46007032 -34851a0,45010019 -34851a4,3c02801c -34851a8,3c028041 -34851ac,8c469ea4 -34851b0,3c028041 -34851b4,c10141e -34851b8,c44cb124 -34851bc,3c02801c -34851c0,344284a0 -34851c4,1000000f -34851c8,e44000d4 -34851cc,344284a0 -34851d0,c44c00d4 -34851d4,3c028041 -34851d8,c44eb128 -34851dc,460e6032 -34851e4,45010008 -34851e8,3c02801c +3485158,e440b4a4 +348515c,3c028041 +3485160,9042a321 +3485164,24030001 +3485168,1443000f +348516c,24030002 +3485170,3c02801c +3485174,344284a0 +3485178,94420322 +348517c,3c038041 +3485180,24639fd0 +3485184,431021 +3485188,90420000 +348518c,10400018 +3485190,3c028041 +3485194,3c02801c +3485198,344284a0 +348519c,24030035 +34851a0,10000012 +34851a4,a4430322 +34851a8,14430011 +34851ac,3c028041 +34851b0,3c02801c +34851b4,344284a0 +34851b8,94420322 +34851bc,3c038041 +34851c0,24639fd0 +34851c4,431021 +34851c8,90420000 +34851cc,10400006 +34851d0,3c028041 +34851d4,3c02801c +34851d8,344284a0 +34851dc,2403001f +34851e0,a4430322 +34851e4,3c028041 +34851e8,a040a321 34851ec,3c028041 -34851f0,c10141e -34851f4,8c469ea8 -34851f8,3c02801c -34851fc,344284a0 -3485200,e44000d4 -3485204,3c02801c -3485208,344284a0 -348520c,c44000d4 -3485210,3c028041 -3485214,e440b124 -3485218,3c028041 -348521c,90429fe1 -3485220,24030001 -3485224,1443000f -3485228,24030002 -348522c,3c02801c -3485230,344284a0 -3485234,94420322 -3485238,3c038041 -348523c,24639c90 -3485240,431021 -3485244,90420000 -3485248,10400018 -348524c,3c028041 -3485250,3c02801c -3485254,344284a0 -3485258,24030035 -348525c,10000012 -3485260,a4430322 -3485264,14430011 -3485268,3c028041 +34851f0,2442a314 +34851f4,c4400008 +34851f8,3c038040 +34851fc,e4602738 +3485200,9044000e +3485204,3c038040 +3485208,a0642c89 +348520c,9042000f +3485210,50400006 +3485214,3c028041 +3485218,2442ffff +348521c,3c038041 +3485220,c101df7 +3485224,a062a323 +3485228,3c028041 +348522c,9042a324 +3485230,1040000b +3485234,3c028041 +3485238,3c02801c +348523c,344284a0 +3485240,94430014 +3485244,2404dfff +3485248,641824 +348524c,a4430014 +3485250,94430020 +3485254,641824 +3485258,a4430020 +348525c,3c028041 +3485260,9042a325 +3485264,10400016 +3485268,8fbf0014 348526c,3c02801c 3485270,344284a0 -3485274,94420322 -3485278,3c038041 -348527c,24639c90 -3485280,431021 -3485284,90420000 -3485288,10400006 -348528c,3c028041 -3485290,3c02801c -3485294,344284a0 -3485298,2403001f -348529c,a4430322 -34852a0,3c028041 -34852a4,a0409fe1 -34852a8,3c028041 -34852ac,24429fd4 -34852b0,c4400008 -34852b4,3c038040 -34852b8,e4602760 -34852bc,9044000e -34852c0,3c038040 -34852c4,a0642cb1 -34852c8,9042000f -34852cc,50400006 -34852d0,3c028041 -34852d4,2442ffff -34852d8,3c038041 -34852dc,c101dc6 -34852e0,a0629fe3 -34852e4,3c028041 -34852e8,90429fe4 -34852ec,1040000b -34852f0,3c028041 -34852f4,3c02801c -34852f8,344284a0 -34852fc,94430014 -3485300,2404dfff -3485304,641824 -3485308,a4430014 -348530c,94430020 -3485310,641824 -3485314,a4430020 -3485318,3c028041 -348531c,90429fe5 -3485320,10400016 -3485324,8fbf0014 -3485328,3c02801c -348532c,344284a0 -3485330,90430016 -3485334,31823 -3485338,a0430016 -348533c,90430017 -3485340,31823 -3485344,a0430017 -3485348,90430022 -348534c,31823 -3485350,a0430022 -3485354,90430023 -3485358,31823 -348535c,a0430023 -3485360,90430028 -3485364,31823 -3485368,a0430028 -348536c,90430029 -3485370,31823 -3485374,a0430029 -3485378,8fbf0014 -348537c,3e00008 -3485380,27bd0018 -3485384,850018 -3485388,1812 -348538c,24620001 -3485390,3042ffff -3485394,31a02 -3485398,431021 -348539c,21203 -34853a0,3e00008 -34853a4,304200ff -34853a8,2402ffff -34853ac,a0820002 -34853b0,a0820001 -34853b4,4a00031 -34853b8,a0820000 -34853bc,a01825 -34853c0,28a503e8 -34853c4,50a00001 -34853c8,240303e7 -34853cc,31c00 -34853d0,31c03 -34853d4,3c026666 -34853d8,24426667 -34853dc,620018 -34853e0,1010 -34853e4,21083 -34853e8,32fc3 -34853ec,451023 -34853f0,22880 -34853f4,a22821 -34853f8,52840 -34853fc,651823 -3485400,21400 -3485404,21403 -3485408,1040001c -348540c,a0830002 -3485410,3c036666 -3485414,24636667 -3485418,430018 -348541c,1810 -3485420,31883 -3485424,22fc3 -3485428,651823 -348542c,32880 -3485430,a32821 -3485434,52840 -3485438,451023 -348543c,a0820001 -3485440,31400 -3485444,21403 -3485448,1040000c -348544c,3c036666 -3485450,24636667 -3485454,430018 -3485458,1810 -348545c,31883 -3485460,22fc3 -3485464,651823 -3485468,32880 -348546c,a31821 -3485470,31840 -3485474,431023 -3485478,a0820000 -348547c,3e00008 -3485484,27bdffd0 -3485488,afbf002c -348548c,afb20028 -3485490,afb10024 -3485494,afb00020 -3485498,808025 -348549c,a08825 -34854a0,afa7003c -34854a4,8fb20040 -34854a8,c101ba6 -34854ac,24070001 -34854b0,93a7003c -34854b4,afb20018 -34854b8,afb20014 -34854bc,83a2003d -34854c0,2442005c -34854c4,afa20010 -34854c8,24e70037 -34854cc,3025 -34854d0,2202825 -34854d4,c101c0e -34854d8,2002025 -34854dc,8fbf002c -34854e0,8fb20028 -34854e4,8fb10024 -34854e8,8fb00020 -34854ec,3e00008 -34854f0,27bd0030 -34854f4,27bdffe0 -34854f8,afbf001c -34854fc,afb20018 -3485500,afb10014 -3485504,afb00010 -3485508,808025 -348550c,24850074 -3485510,24070001 -3485514,4825 -3485518,3c028041 -348551c,24429d54 -3485520,2408ffe0 -3485524,3c048041 -3485528,24849d9c -348552c,90430000 -3485530,1031824 -3485534,14600005 -3485538,80a60000 -348553c,90430001 -3485540,30c600ff -3485544,50660001 -3485548,1274825 -348554c,24420004 -3485550,73840 -3485554,1444fff5 -3485558,24a50001 -348555c,3c028041 -3485560,ac49b230 -3485564,8e1100a4 -3485568,2442b230 -348556c,3223003f -3485570,a0430004 -3485574,9602009c -3485578,8203003e -348557c,10600002 -3485580,3042fffb -3485584,34420004 -3485588,3c038041 -348558c,a462b236 -3485590,112c02 -3485594,30a5007c -3485598,26030086 -348559c,2606008a -34855a0,2407001b -34855a4,90640000 -34855a8,2482ffec -34855ac,304200ff -34855b0,2c42000d -34855b4,50400004 -34855b8,24630001 -34855bc,54870001 -34855c0,34a50001 -34855c4,24630001 -34855c8,5466fff7 -34855cc,90640000 -34855d0,3c028041 -34855d4,a045b235 -34855d8,9203007b -34855dc,2462fff9 -34855e0,304200ff -34855e4,2c420002 -34855e8,14400003 -34855ec,2025 -34855f0,10000002 -34855f4,24030007 -34855f8,24040001 -34855fc,3c028041 -3485600,2442b230 -3485604,a0440008 -3485608,a0430009 -348560c,9203007d -3485610,2462fff6 -3485614,304200ff -3485618,2c420002 -348561c,14400003 -3485620,2025 -3485624,10000002 -3485628,2403000a -348562c,24040001 -3485630,3c028041 -3485634,2442b230 -3485638,a044000a -348563c,a043000b -3485640,86020ef6 -3485644,4400016 -3485648,2403002b -348564c,96020ef4 -3485650,210c2 -3485654,3042008f -3485658,2c430010 -348565c,10600012 -3485660,2403002b -3485664,50400007 -3485668,9203008b -348566c,3c038041 -3485670,24639cd4 -3485674,431021 -3485678,90430000 -348567c,1000000d -3485680,24040001 -3485684,2462ffdf -3485688,304200ff -348568c,2c420003 -3485690,14400008 -3485694,24040001 -3485698,10000005 -348569c,2403002b -34856a0,10000004 -34856a4,24040001 -34856a8,10000002 -34856ac,24040001 -34856b0,2025 -34856b4,3c028041 -34856b8,2442b230 -34856bc,a043000d -34856c0,a044000c -34856c4,9203008a -34856c8,2462ffd3 -34856cc,304200ff -34856d0,2c42000b -34856d4,14400003 -34856d8,24040001 -34856dc,24030037 -34856e0,2025 -34856e4,3c028041 -34856e8,2442b230 -34856ec,a043000f -34856f0,a044000e -34856f4,9202003c -34856f8,10400005 -34856fc,3c028041 -3485700,24030013 -3485704,a043b241 -3485708,10000004 -348570c,24030001 -3485710,24030012 -3485714,a043b241 -3485718,9203003a -348571c,3c028041 -3485720,a043b240 -3485724,8e0200a0 -3485728,21182 -348572c,30420007 -3485730,10400009 -3485734,2025 -3485738,401825 -348573c,2c420004 -3485740,50400001 -3485744,24030003 -3485748,2463004f -348574c,306300ff -3485750,10000002 -3485754,24040001 -3485758,24030050 -348575c,3c028041 -3485760,2442b230 -3485764,a0440012 -3485768,a0430013 -348576c,8e0200a0 -3485770,21242 -3485774,30420007 -3485778,50400009 -348577c,2025 -3485780,401825 -3485784,2c420003 -3485788,50400001 -348578c,24030002 -3485790,24630052 -3485794,306300ff -3485798,10000002 -348579c,24040001 -34857a0,24030053 -34857a4,3c028041 -34857a8,2442b230 -34857ac,a0440014 -34857b0,a0430015 -34857b4,8e0300a0 -34857b8,31b02 -34857bc,30630003 -34857c0,a0430016 -34857c4,86050034 -34857c8,3c048041 -34857cc,c1014ea -34857d0,2484b24b -34857d4,3c020080 -34857d8,2221024 -34857dc,10400002 -34857e0,2825 -34857e4,860500d0 -34857e8,3c048041 -34857ec,c1014ea -34857f0,2484b24e -34857f4,860508c6 -34857f8,58a00001 -34857fc,2405ffff -3485800,3c048041 -3485804,c1014ea -3485808,2484b251 -348580c,3c128041 -3485810,2652b230 -3485814,9202003d -3485818,a2420017 -348581c,8602002e -3485820,22fc3 -3485824,30a5000f -3485828,a22821 -348582c,52903 -3485830,3c048041 -3485834,c1014ea -3485838,2484b248 -348583c,86050022 -3485840,3c048041 -3485844,c1014ea -3485848,2484b254 -348584c,118982 -3485850,32310fff -3485854,a6510028 -3485858,8fbf001c -348585c,8fb20018 -3485860,8fb10014 -3485864,8fb00010 -3485868,3e00008 -348586c,27bd0020 -3485870,27bdff88 -3485874,afbf0074 -3485878,afbe0070 -348587c,afb7006c -3485880,afb60068 -3485884,afb50064 -3485888,afb40060 -348588c,afb3005c -3485890,afb20058 -3485894,afb10054 -3485898,afb00050 -348589c,3c020002 -34858a0,a21021 -34858a4,9443ca42 -34858a8,24020008 -34858ac,14620021 -34858b0,808825 -34858b4,3c020002 -34858b8,a21021 -34858bc,9442ca36 -34858c0,14400006 -34858c4,3c020002 -34858c8,a21021 -34858cc,9444ca2e -34858d0,24020002 -34858d4,10820009 -34858d8,3c020002 -34858dc,a21021 -34858e0,9442ca30 -34858e4,24040005 -34858e8,50440005 -34858ec,3c020002 -34858f0,24040016 -34858f4,14440010 -34858f8,3c020002 -34858fc,3c020002 -3485900,a21021 -3485904,9443ca38 -3485908,31080 -348590c,431021 -3485910,21980 -3485914,431021 -3485918,21100 -348591c,24420020 -3485920,8ca401d8 -3485924,c10153d -3485928,822021 -348592c,10000220 -3485930,8fbf0074 -3485934,3c020002 -3485938,a21021 -348593c,9042ca37 -3485940,1440001d -3485944,2c44009a -3485948,3c020002 -348594c,a22821 -3485950,90a2ca31 -3485954,34420080 -3485958,2c44009a -348595c,10800214 -3485960,8fbf0074 -3485964,2c440086 -3485968,14800211 -348596c,2442007a -3485970,24040001 -3485974,441004 -3485978,3c040008 -348597c,24840014 -3485980,442024 -3485984,1480003b -3485988,3c040002 -348598c,24840081 -3485990,442024 -3485994,54800030 -3485998,24020008 -348599c,3c030004 -34859a0,24630002 -34859a4,431024 -34859a8,10400202 -34859ac,8fbe0070 -34859b0,10000039 -34859b4,241600c8 -34859b8,108001fd -34859bc,8fbf0074 -34859c0,2c440086 -34859c4,5080000e -34859c8,2442007a -34859cc,24040004 -34859d0,10440028 -34859d4,2c440005 -34859d8,5080001b -34859dc,24030006 -34859e0,24040002 -34859e4,5044001c -34859e8,24020008 -34859ec,24030003 -34859f0,1043002d -34859f4,241600c8 -34859f8,100001ee -34859fc,8fbe0070 -3485a00,24040001 -3485a04,441004 -3485a08,3c040008 -3485a0c,24840014 -3485a10,442024 -3485a14,14800017 -3485a18,3c040002 -3485a1c,24840081 -3485a20,442024 -3485a24,5480000c -3485a28,24020008 -3485a2c,3c030004 -3485a30,24630002 -3485a34,431024 -3485a38,104001dd -3485a3c,8fbf0074 -3485a40,10000017 -3485a44,241600c8 -3485a48,10430017 -3485a4c,241600c8 -3485a50,100001d7 -3485a54,8fbf0074 -3485a58,431023 -3485a5c,21840 -3485a60,431821 -3485a64,318c0 -3485a68,431021 -3485a6c,10000006 -3485a70,305600ff -3485a74,31040 -3485a78,621021 -3485a7c,210c0 -3485a80,621821 -3485a84,307600ff -3485a88,12c001c9 -3485a8c,8fbf0074 -3485a90,10000006 -3485a94,8e220008 -3485a98,10000004 -3485a9c,8e220008 -3485aa0,10000002 -3485aa4,8e220008 -3485aa8,8e220008 -3485aac,24430008 -3485ab0,ae230008 -3485ab4,3c03e700 -3485ab8,ac430000 -3485abc,ac400004 -3485ac0,8e220008 -3485ac4,24430008 -3485ac8,ae230008 -3485acc,3c03fc11 -3485ad0,34639623 -3485ad4,ac430000 -3485ad8,3c03ff2f -3485adc,3463ffff -3485ae0,ac430004 -3485ae4,2c02825 -3485ae8,c1014e1 -3485aec,24040090 -3485af0,afa20048 -3485af4,afa20044 -3485af8,a025 -3485afc,24030040 -3485b00,3c028041 -3485b04,afa20030 -3485b08,3c028041 -3485b0c,2442b230 -3485b10,afa2004c -3485b14,3c178041 -3485b18,26f79ed4 -3485b1c,3c158041 -3485b20,26b59e54 -3485b24,8e240008 -3485b28,24820008 -3485b2c,ae220008 -3485b30,3c02fa00 -3485b34,ac820000 -3485b38,31600 -3485b3c,32c00 -3485b40,451025 -3485b44,8fa50044 -3485b48,451025 -3485b4c,31a00 -3485b50,431025 -3485b54,ac820004 -3485b58,8fa20030 -3485b5c,24539dd4 -3485b60,8fbe004c -3485b64,2670ff80 -3485b68,8fd20000 -3485b6c,92020000 -3485b70,3042001f -3485b74,50400012 -3485b78,26100004 -3485b7c,32420001 -3485b80,5682000f -3485b84,26100004 -3485b88,8e020000 -3485b8c,21f42 -3485b90,31880 -3485b94,751821 -3485b98,21602 -3485b9c,3042001f -3485ba0,afa20010 -3485ba4,96070002 -3485ba8,73c00 -3485bac,92060001 -3485bb0,8c650000 -3485bb4,c101521 -3485bb8,2202025 -3485bbc,26100004 -3485bc0,1613ffea -3485bc4,129042 -3485bc8,26730080 -3485bcc,16f3ffe5 -3485bd0,27de0004 -3485bd4,2c02825 -3485bd8,c1014e1 -3485bdc,240400ff -3485be0,afa20044 -3485be4,26940001 -3485be8,24020002 -3485bec,1682ffcd -3485bf0,240300ff -3485bf4,8fa50048 -3485bf8,9825 -3485bfc,24030040 -3485c00,3c178041 -3485c04,3c1e8041 -3485c08,3c158041 -3485c0c,26b59e54 -3485c10,2416000c -3485c14,3c148041 -3485c18,10000002 -3485c1c,2694b246 -3485c20,8fa50044 -3485c24,8e240008 -3485c28,24820008 -3485c2c,ae220008 -3485c30,3c02fa00 -3485c34,ac820000 -3485c38,31600 -3485c3c,33400 -3485c40,461025 -3485c44,451025 -3485c48,31a00 -3485c4c,431025 -3485c50,ac820004 -3485c54,26f29d3c -3485c58,27d0b238 -3485c5c,92020000 -3485c60,5453000f -3485c64,26100002 -3485c68,92420000 -3485c6c,21080 -3485c70,551021 -3485c74,afb60010 -3485c78,92430001 -3485c7c,31a00 -3485c80,92470002 -3485c84,e33825 -3485c88,73c00 -3485c8c,92060001 -3485c90,8c450000 -3485c94,c101521 -3485c98,2202025 -3485c9c,26100002 -3485ca0,1614ffee -3485ca4,26520003 -3485ca8,26730001 -3485cac,327300ff -3485cb0,24020002 -3485cb4,1662ffda -3485cb8,240300ff -3485cbc,3c028041 -3485cc0,9456b258 -3485cc4,24070001 -3485cc8,3025 -3485ccc,3c058041 -3485cd0,24a5a068 -3485cd4,c101ba6 -3485cd8,2202025 -3485cdc,afa00038 -3485ce0,afa00034 -3485ce4,afa00030 -3485ce8,b825 -3485cec,3c108041 -3485cf0,26109d00 -3485cf4,8fa20044 -3485cf8,afa2003c -3485cfc,3c028041 -3485d00,2442a068 -3485d04,afa20040 -3485d08,3c1e8041 -3485d0c,10000005 -3485d10,27de9d3c -3485d14,afb50038 -3485d18,afb40034 -3485d1c,afb30030 -3485d20,240b825 -3485d24,92120000 -3485d28,92130001 -3485d2c,92140002 -3485d30,32c20001 -3485d34,1440000e -3485d38,8fb5003c -3485d3c,24050040 -3485d40,c1014e1 -3485d44,2402025 -3485d48,409025 -3485d4c,24050040 -3485d50,c1014e1 -3485d54,2602025 -3485d58,409825 -3485d5c,24050040 -3485d60,c1014e1 -3485d64,2802025 -3485d68,40a025 -3485d6c,8fb50048 -3485d70,16570007 -3485d74,8fa20030 -3485d78,14530005 -3485d7c,8fa20034 -3485d80,16820003 -3485d84,8fa20038 -3485d88,5055000e -3485d8c,92070003 +3485274,90430016 +3485278,31823 +348527c,a0430016 +3485280,90430017 +3485284,31823 +3485288,a0430017 +348528c,90430022 +3485290,31823 +3485294,a0430022 +3485298,90430023 +348529c,31823 +34852a0,a0430023 +34852a4,90430028 +34852a8,31823 +34852ac,a0430028 +34852b0,90430029 +34852b4,31823 +34852b8,a0430029 +34852bc,8fbf0014 +34852c0,3e00008 +34852c4,27bd0018 +34852c8,850018 +34852cc,1812 +34852d0,24620001 +34852d4,3042ffff +34852d8,31a02 +34852dc,431021 +34852e0,21203 +34852e4,3e00008 +34852e8,304200ff +34852ec,2402ffff +34852f0,a0820002 +34852f4,a0820001 +34852f8,4a00031 +34852fc,a0820000 +3485300,a01825 +3485304,28a503e8 +3485308,50a00001 +348530c,240303e7 +3485310,31c00 +3485314,31c03 +3485318,3c026666 +348531c,24426667 +3485320,620018 +3485324,1010 +3485328,21083 +348532c,32fc3 +3485330,451023 +3485334,22880 +3485338,a22821 +348533c,52840 +3485340,651823 +3485344,21400 +3485348,21403 +348534c,1040001c +3485350,a0830002 +3485354,3c036666 +3485358,24636667 +348535c,430018 +3485360,1810 +3485364,31883 +3485368,22fc3 +348536c,651823 +3485370,32880 +3485374,a32821 +3485378,52840 +348537c,451023 +3485380,a0820001 +3485384,31400 +3485388,21403 +348538c,1040000c +3485390,3c036666 +3485394,24636667 +3485398,430018 +348539c,1810 +34853a0,31883 +34853a4,22fc3 +34853a8,651823 +34853ac,32880 +34853b0,a31821 +34853b4,31840 +34853b8,431023 +34853bc,a0820000 +34853c0,3e00008 +34853c8,27bdffd0 +34853cc,afbf002c +34853d0,afb20028 +34853d4,afb10024 +34853d8,afb00020 +34853dc,808025 +34853e0,a08825 +34853e4,afa7003c +34853e8,8fb20040 +34853ec,c101bd7 +34853f0,24070001 +34853f4,93a7003c +34853f8,afb20018 +34853fc,afb20014 +3485400,83a2003d +3485404,2442005c +3485408,afa20010 +348540c,24e70037 +3485410,3025 +3485414,2202825 +3485418,c101c3f +348541c,2002025 +3485420,8fbf002c +3485424,8fb20028 +3485428,8fb10024 +348542c,8fb00020 +3485430,3e00008 +3485434,27bd0030 +3485438,27bdffe0 +348543c,afbf001c +3485440,afb20018 +3485444,afb10014 +3485448,afb00010 +348544c,808025 +3485450,24850074 +3485454,24070001 +3485458,4825 +348545c,3c028041 +3485460,2442a094 +3485464,2408ffe0 +3485468,3c048041 +348546c,2484a0dc +3485470,90430000 +3485474,1031824 +3485478,14600005 +348547c,80a60000 +3485480,90430001 +3485484,30c600ff +3485488,50660001 +348548c,1274825 +3485490,24420004 +3485494,73840 +3485498,1444fff5 +348549c,24a50001 +34854a0,3c028041 +34854a4,ac49b5b8 +34854a8,8e1100a4 +34854ac,2442b5b8 +34854b0,3223003f +34854b4,a0430004 +34854b8,9602009c +34854bc,8203003e +34854c0,10600002 +34854c4,3042fffb +34854c8,34420004 +34854cc,3c038041 +34854d0,a462b5be +34854d4,112c02 +34854d8,30a5007c +34854dc,26030086 +34854e0,2606008a +34854e4,2407001b +34854e8,90640000 +34854ec,2482ffec +34854f0,304200ff +34854f4,2c42000d +34854f8,50400004 +34854fc,24630001 +3485500,54870001 +3485504,34a50001 +3485508,24630001 +348550c,5466fff7 +3485510,90640000 +3485514,3c028041 +3485518,a045b5bd +348551c,9203007b +3485520,2462fff9 +3485524,304200ff +3485528,2c420002 +348552c,14400003 +3485530,2025 +3485534,10000002 +3485538,24030007 +348553c,24040001 +3485540,3c028041 +3485544,2442b5b8 +3485548,a0440008 +348554c,a0430009 +3485550,9203007d +3485554,2462fff6 +3485558,304200ff +348555c,2c420002 +3485560,14400003 +3485564,2025 +3485568,10000002 +348556c,2403000a +3485570,24040001 +3485574,3c028041 +3485578,2442b5b8 +348557c,a044000a +3485580,a043000b +3485584,86020ef6 +3485588,4400016 +348558c,2403002b +3485590,96020ef4 +3485594,210c2 +3485598,3042008f +348559c,2c430010 +34855a0,10600012 +34855a4,2403002b +34855a8,50400007 +34855ac,9203008b +34855b0,3c038041 +34855b4,2463a014 +34855b8,431021 +34855bc,90430000 +34855c0,1000000d +34855c4,24040001 +34855c8,2462ffdf +34855cc,304200ff +34855d0,2c420003 +34855d4,14400008 +34855d8,24040001 +34855dc,10000005 +34855e0,2403002b +34855e4,10000004 +34855e8,24040001 +34855ec,10000002 +34855f0,24040001 +34855f4,2025 +34855f8,3c028041 +34855fc,2442b5b8 +3485600,a043000d +3485604,a044000c +3485608,9203008a +348560c,2462ffd3 +3485610,304200ff +3485614,2c42000b +3485618,14400003 +348561c,24040001 +3485620,24030037 +3485624,2025 +3485628,3c028041 +348562c,2442b5b8 +3485630,a043000f +3485634,a044000e +3485638,9202003c +348563c,10400005 +3485640,3c028041 +3485644,24030013 +3485648,a043b5c9 +348564c,10000004 +3485650,24030001 +3485654,24030012 +3485658,a043b5c9 +348565c,9203003a +3485660,3c028041 +3485664,a043b5c8 +3485668,8e0200a0 +348566c,21182 +3485670,30420007 +3485674,10400009 +3485678,2025 +348567c,401825 +3485680,2c420004 +3485684,50400001 +3485688,24030003 +348568c,2463004f +3485690,306300ff +3485694,10000002 +3485698,24040001 +348569c,24030050 +34856a0,3c028041 +34856a4,2442b5b8 +34856a8,a0440012 +34856ac,a0430013 +34856b0,8e0200a0 +34856b4,21242 +34856b8,30420007 +34856bc,50400009 +34856c0,2025 +34856c4,401825 +34856c8,2c420003 +34856cc,50400001 +34856d0,24030002 +34856d4,24630052 +34856d8,306300ff +34856dc,10000002 +34856e0,24040001 +34856e4,24030053 +34856e8,3c028041 +34856ec,2442b5b8 +34856f0,a0440014 +34856f4,a0430015 +34856f8,8e0300a0 +34856fc,31b02 +3485700,30630003 +3485704,a0430016 +3485708,86050034 +348570c,3c048041 +3485710,c1014bb +3485714,2484b5d3 +3485718,3c020080 +348571c,2221024 +3485720,10400002 +3485724,2825 +3485728,860500d0 +348572c,3c048041 +3485730,c1014bb +3485734,2484b5d6 +3485738,860508c6 +348573c,58a00001 +3485740,2405ffff +3485744,3c048041 +3485748,c1014bb +348574c,2484b5d9 +3485750,3c128041 +3485754,2652b5b8 +3485758,9202003d +348575c,a2420017 +3485760,8602002e +3485764,22fc3 +3485768,30a5000f +348576c,a22821 +3485770,52903 +3485774,3c048041 +3485778,c1014bb +348577c,2484b5d0 +3485780,86050022 +3485784,3c048041 +3485788,c1014bb +348578c,2484b5dc +3485790,118982 +3485794,32310fff +3485798,a6510028 +348579c,8fbf001c +34857a0,8fb20018 +34857a4,8fb10014 +34857a8,8fb00010 +34857ac,3e00008 +34857b0,27bd0020 +34857b4,27bdff88 +34857b8,afbf0074 +34857bc,afbe0070 +34857c0,afb7006c +34857c4,afb60068 +34857c8,afb50064 +34857cc,afb40060 +34857d0,afb3005c +34857d4,afb20058 +34857d8,afb10054 +34857dc,afb00050 +34857e0,3c020002 +34857e4,a21021 +34857e8,9443ca42 +34857ec,24020008 +34857f0,14620021 +34857f4,808825 +34857f8,3c020002 +34857fc,a21021 +3485800,9442ca36 +3485804,14400006 +3485808,3c020002 +348580c,a21021 +3485810,9444ca2e +3485814,24020002 +3485818,10820009 +348581c,3c020002 +3485820,a21021 +3485824,9442ca30 +3485828,24040005 +348582c,50440005 +3485830,3c020002 +3485834,24040016 +3485838,14440010 +348583c,3c020002 +3485840,3c020002 +3485844,a21021 +3485848,9443ca38 +348584c,31080 +3485850,431021 +3485854,21980 +3485858,431021 +348585c,21100 +3485860,24420020 +3485864,8ca401d8 +3485868,c10150e +348586c,822021 +3485870,10000220 +3485874,8fbf0074 +3485878,3c020002 +348587c,a21021 +3485880,9042ca37 +3485884,1440001d +3485888,2c44009a +348588c,3c020002 +3485890,a22821 +3485894,90a2ca31 +3485898,34420080 +348589c,2c44009a +34858a0,10800214 +34858a4,8fbf0074 +34858a8,2c440086 +34858ac,14800211 +34858b0,2442007a +34858b4,24040001 +34858b8,441004 +34858bc,3c040008 +34858c0,24840014 +34858c4,442024 +34858c8,1480003b +34858cc,3c040002 +34858d0,24840081 +34858d4,442024 +34858d8,54800030 +34858dc,24020008 +34858e0,3c030004 +34858e4,24630002 +34858e8,431024 +34858ec,10400202 +34858f0,8fbe0070 +34858f4,10000039 +34858f8,241600c8 +34858fc,108001fd +3485900,8fbf0074 +3485904,2c440086 +3485908,5080000e +348590c,2442007a +3485910,24040004 +3485914,10440028 +3485918,2c440005 +348591c,5080001b +3485920,24030006 +3485924,24040002 +3485928,5044001c +348592c,24020008 +3485930,24030003 +3485934,1043002d +3485938,241600c8 +348593c,100001ee +3485940,8fbe0070 +3485944,24040001 +3485948,441004 +348594c,3c040008 +3485950,24840014 +3485954,442024 +3485958,14800017 +348595c,3c040002 +3485960,24840081 +3485964,442024 +3485968,5480000c +348596c,24020008 +3485970,3c030004 +3485974,24630002 +3485978,431024 +348597c,104001dd +3485980,8fbf0074 +3485984,10000017 +3485988,241600c8 +348598c,10430017 +3485990,241600c8 +3485994,100001d7 +3485998,8fbf0074 +348599c,431023 +34859a0,21840 +34859a4,431821 +34859a8,318c0 +34859ac,431021 +34859b0,10000006 +34859b4,305600ff +34859b8,31040 +34859bc,621021 +34859c0,210c0 +34859c4,621821 +34859c8,307600ff +34859cc,12c001c9 +34859d0,8fbf0074 +34859d4,10000006 +34859d8,8e220008 +34859dc,10000004 +34859e0,8e220008 +34859e4,10000002 +34859e8,8e220008 +34859ec,8e220008 +34859f0,24430008 +34859f4,ae230008 +34859f8,3c03e700 +34859fc,ac430000 +3485a00,ac400004 +3485a04,8e220008 +3485a08,24430008 +3485a0c,ae230008 +3485a10,3c03fc11 +3485a14,34639623 +3485a18,ac430000 +3485a1c,3c03ff2f +3485a20,3463ffff +3485a24,ac430004 +3485a28,2c02825 +3485a2c,c1014b2 +3485a30,24040090 +3485a34,afa20048 +3485a38,afa20044 +3485a3c,a025 +3485a40,24030040 +3485a44,3c028041 +3485a48,afa20030 +3485a4c,3c028041 +3485a50,2442b5b8 +3485a54,afa2004c +3485a58,3c178041 +3485a5c,26f7a214 +3485a60,3c158041 +3485a64,26b5a194 +3485a68,8e240008 +3485a6c,24820008 +3485a70,ae220008 +3485a74,3c02fa00 +3485a78,ac820000 +3485a7c,31600 +3485a80,32c00 +3485a84,451025 +3485a88,8fa50044 +3485a8c,451025 +3485a90,31a00 +3485a94,431025 +3485a98,ac820004 +3485a9c,8fa20030 +3485aa0,2453a114 +3485aa4,8fbe004c +3485aa8,2670ff80 +3485aac,8fd20000 +3485ab0,92020000 +3485ab4,3042001f +3485ab8,50400012 +3485abc,26100004 +3485ac0,32420001 +3485ac4,5682000f +3485ac8,26100004 +3485acc,8e020000 +3485ad0,21f42 +3485ad4,31880 +3485ad8,751821 +3485adc,21602 +3485ae0,3042001f +3485ae4,afa20010 +3485ae8,96070002 +3485aec,73c00 +3485af0,92060001 +3485af4,8c650000 +3485af8,c1014f2 +3485afc,2202025 +3485b00,26100004 +3485b04,1613ffea +3485b08,129042 +3485b0c,26730080 +3485b10,16f3ffe5 +3485b14,27de0004 +3485b18,2c02825 +3485b1c,c1014b2 +3485b20,240400ff +3485b24,afa20044 +3485b28,26940001 +3485b2c,24020002 +3485b30,1682ffcd +3485b34,240300ff +3485b38,8fa50048 +3485b3c,9825 +3485b40,24030040 +3485b44,3c178041 +3485b48,3c1e8041 +3485b4c,3c158041 +3485b50,26b5a194 +3485b54,2416000c +3485b58,3c148041 +3485b5c,10000002 +3485b60,2694b5ce +3485b64,8fa50044 +3485b68,8e240008 +3485b6c,24820008 +3485b70,ae220008 +3485b74,3c02fa00 +3485b78,ac820000 +3485b7c,31600 +3485b80,33400 +3485b84,461025 +3485b88,451025 +3485b8c,31a00 +3485b90,431025 +3485b94,ac820004 +3485b98,26f2a07c +3485b9c,27d0b5c0 +3485ba0,92020000 +3485ba4,5453000f +3485ba8,26100002 +3485bac,92420000 +3485bb0,21080 +3485bb4,551021 +3485bb8,afb60010 +3485bbc,92430001 +3485bc0,31a00 +3485bc4,92470002 +3485bc8,e33825 +3485bcc,73c00 +3485bd0,92060001 +3485bd4,8c450000 +3485bd8,c1014f2 +3485bdc,2202025 +3485be0,26100002 +3485be4,1614ffee +3485be8,26520003 +3485bec,26730001 +3485bf0,327300ff +3485bf4,24020002 +3485bf8,1662ffda +3485bfc,240300ff +3485c00,3c028041 +3485c04,9456b5e0 +3485c08,24070001 +3485c0c,3025 +3485c10,3c058041 +3485c14,24a5a3e8 +3485c18,c101bd7 +3485c1c,2202025 +3485c20,afa00038 +3485c24,afa00034 +3485c28,afa00030 +3485c2c,b825 +3485c30,3c108041 +3485c34,2610a040 +3485c38,8fa20044 +3485c3c,afa2003c +3485c40,3c028041 +3485c44,2442a3e8 +3485c48,afa20040 +3485c4c,3c1e8041 +3485c50,10000005 +3485c54,27dea07c +3485c58,afb50038 +3485c5c,afb40034 +3485c60,afb30030 +3485c64,240b825 +3485c68,92120000 +3485c6c,92130001 +3485c70,92140002 +3485c74,32c20001 +3485c78,1440000e +3485c7c,8fb5003c +3485c80,24050040 +3485c84,c1014b2 +3485c88,2402025 +3485c8c,409025 +3485c90,24050040 +3485c94,c1014b2 +3485c98,2602025 +3485c9c,409825 +3485ca0,24050040 +3485ca4,c1014b2 +3485ca8,2802025 +3485cac,40a025 +3485cb0,8fb50048 +3485cb4,16570007 +3485cb8,8fa20030 +3485cbc,14530005 +3485cc0,8fa20034 +3485cc4,16820003 +3485cc8,8fa20038 +3485ccc,5055000e +3485cd0,92070003 +3485cd4,8e230008 +3485cd8,24620008 +3485cdc,ae220008 +3485ce0,3c02fa00 +3485ce4,ac620000 +3485ce8,121600 +3485cec,132400 +3485cf0,441025 +3485cf4,551025 +3485cf8,142200 +3485cfc,441025 +3485d00,ac620004 +3485d04,92070003 +3485d08,2402000a +3485d0c,afa20018 +3485d10,24020006 +3485d14,afa20014 +3485d18,82020004 +3485d1c,2442005c +3485d20,afa20010 +3485d24,24e70037 +3485d28,3025 +3485d2c,8fa50040 +3485d30,c101c3f +3485d34,2202025 +3485d38,26100005 +3485d3c,161effc6 +3485d40,16b042 +3485d44,3c108041 +3485d48,2610b5b8 +3485d4c,92020016 +3485d50,8fb50044 +3485d54,2a09025 +3485d58,21840 +3485d5c,621821 +3485d60,3c028041 +3485d64,2442a1a0 +3485d68,621821 +3485d6c,90620000 +3485d70,21600 +3485d74,90640001 +3485d78,42400 +3485d7c,441025 +3485d80,90630002 +3485d84,31a00 +3485d88,431025 +3485d8c,551025 3485d90,8e230008 -3485d94,24620008 -3485d98,ae220008 -3485d9c,3c02fa00 -3485da0,ac620000 -3485da4,121600 -3485da8,132400 -3485dac,441025 -3485db0,551025 -3485db4,142200 -3485db8,441025 -3485dbc,ac620004 -3485dc0,92070003 -3485dc4,2402000a -3485dc8,afa20018 -3485dcc,24020006 -3485dd0,afa20014 -3485dd4,82020004 -3485dd8,2442005c -3485ddc,afa20010 -3485de0,24e70037 -3485de4,3025 -3485de8,8fa50040 -3485dec,c101c0e -3485df0,2202025 -3485df4,26100005 -3485df8,161effc6 -3485dfc,16b042 -3485e00,3c108041 -3485e04,2610b230 -3485e08,92020016 -3485e0c,8fb50044 -3485e10,2a09025 -3485e14,21840 -3485e18,621821 -3485e1c,3c028041 -3485e20,24429e60 -3485e24,621821 -3485e28,90620000 -3485e2c,21600 -3485e30,90640001 -3485e34,42400 -3485e38,441025 -3485e3c,90630002 -3485e40,31a00 -3485e44,431025 -3485e48,551025 -3485e4c,8e230008 -3485e50,24640008 -3485e54,ae240008 -3485e58,3c13fa00 -3485e5c,ac730000 -3485e60,ac620004 -3485e64,3c028041 -3485e68,24429ce4 -3485e6c,24030010 -3485e70,afa30010 -3485e74,90430005 -3485e78,31a00 -3485e7c,90470006 -3485e80,e33825 -3485e84,73c00 -3485e88,24060001 -3485e8c,3c058041 -3485e90,24a5a058 -3485e94,c101521 +3485d94,24640008 +3485d98,ae240008 +3485d9c,3c13fa00 +3485da0,ac730000 +3485da4,ac620004 +3485da8,3c028041 +3485dac,2442a024 +3485db0,24030010 +3485db4,afa30010 +3485db8,90430005 +3485dbc,31a00 +3485dc0,90470006 +3485dc4,e33825 +3485dc8,73c00 +3485dcc,24060001 +3485dd0,3c058041 +3485dd4,24a5a3d8 +3485dd8,c1014f2 +3485ddc,2202025 +3485de0,2414ff00 +3485de4,2b4a025 +3485de8,8e220008 +3485dec,24430008 +3485df0,ae230008 +3485df4,ac530000 +3485df8,ac540004 +3485dfc,24070001 +3485e00,2406000c +3485e04,3c058041 +3485e08,24a5a428 +3485e0c,c101bd7 +3485e10,2202025 +3485e14,92020017 +3485e18,1440000e +3485e1c,24100010 +3485e20,24020010 +3485e24,afa20018 +3485e28,afa20014 +3485e2c,2402005c +3485e30,afa20010 +3485e34,2407003c +3485e38,3025 +3485e3c,3c058041 +3485e40,24a5a428 +3485e44,c101c3f +3485e48,2202025 +3485e4c,10000014 +3485e50,3c028041 +3485e54,afb00018 +3485e58,afb00014 +3485e5c,2415005c +3485e60,afb50010 +3485e64,2407003a +3485e68,3025 +3485e6c,3c138041 +3485e70,2665a428 +3485e74,c101c3f +3485e78,2202025 +3485e7c,afb00018 +3485e80,afb00014 +3485e84,afb50010 +3485e88,2407003e +3485e8c,3025 +3485e90,2665a428 +3485e94,c101c3f 3485e98,2202025 -3485e9c,2414ff00 -3485ea0,2b4a025 -3485ea4,8e220008 -3485ea8,24430008 -3485eac,ae230008 -3485eb0,ac530000 -3485eb4,ac540004 -3485eb8,24070001 -3485ebc,2406000c -3485ec0,3c058041 -3485ec4,24a5a0a8 -3485ec8,c101ba6 -3485ecc,2202025 -3485ed0,92020017 -3485ed4,1440000e -3485ed8,24100010 -3485edc,24020010 -3485ee0,afa20018 -3485ee4,afa20014 -3485ee8,2402005c -3485eec,afa20010 -3485ef0,2407003c -3485ef4,3025 -3485ef8,3c058041 -3485efc,24a5a0a8 -3485f00,c101c0e -3485f04,2202025 -3485f08,10000014 -3485f0c,3c028041 -3485f10,afb00018 -3485f14,afb00014 -3485f18,2415005c -3485f1c,afb50010 -3485f20,2407003a -3485f24,3025 -3485f28,3c138041 -3485f2c,2665a0a8 -3485f30,c101c0e -3485f34,2202025 -3485f38,afb00018 -3485f3c,afb00014 -3485f40,afb50010 -3485f44,2407003e -3485f48,3025 -3485f4c,2665a0a8 -3485f50,c101c0e -3485f54,2202025 -3485f58,3c028041 -3485f5c,9042b256 -3485f60,2c42000a -3485f64,1040000b -3485f68,24070001 -3485f6c,2402000a -3485f70,afa20010 -3485f74,3c028041 -3485f78,8c479cf8 -3485f7c,24060001 -3485f80,3c058041 -3485f84,24a5a038 -3485f88,c101521 -3485f8c,2202025 -3485f90,24070001 -3485f94,2406000b -3485f98,3c108041 -3485f9c,2605a0a8 -3485fa0,c101ba6 -3485fa4,2202025 -3485fa8,24020010 -3485fac,afa20018 -3485fb0,afa20014 -3485fb4,24020086 -3485fb8,afa20010 -3485fbc,2407003c -3485fc0,3025 -3485fc4,2605a0a8 -3485fc8,c101c0e -3485fcc,2202025 -3485fd0,3c028041 -3485fd4,9042b253 -3485fd8,2c42000a -3485fdc,1040001d -3485fe0,8e220008 -3485fe4,24430008 -3485fe8,ae230008 -3485fec,3c03fa00 -3485ff0,ac430000 -3485ff4,3c03f4ec -3485ff8,24633000 -3485ffc,2439025 -3486000,ac520004 -3486004,3c038041 -3486008,9062b1c4 -348600c,24440001 -3486010,a064b1c4 -3486014,3c038041 -3486018,24639ce4 -348601c,21082 -3486020,24040010 -3486024,afa40010 -3486028,9064000f -348602c,42200 -3486030,90670010 -3486034,e43825 -3486038,73c00 -348603c,3046000f -3486040,3c058041 -3486044,24a5a078 -3486048,c101521 -348604c,2202025 -3486050,8e220008 -3486054,24430008 -3486058,ae230008 -348605c,3c03fa00 -3486060,ac430000 -3486064,ac540004 -3486068,2407000a -348606c,3025 -3486070,3c058041 -3486074,24a5a048 -3486078,c101ba6 -348607c,2202025 -3486080,8fa2004c -3486084,2453001b -3486088,3c168041 -348608c,26d6b248 -3486090,3c148041 -3486094,26949ce4 -3486098,26820019 -348609c,afa20034 -34860a0,24170001 -34860a4,241e0008 -34860a8,3c028041 -34860ac,2442a048 -34860b0,afa20038 -34860b4,afa00020 -34860b8,afa00024 -34860bc,afa00028 -34860c0,afa0002c -34860c4,27b20020 -34860c8,2401825 -34860cc,2c02025 -34860d0,90820000 -34860d4,54570006 -34860d8,2c42000a -34860dc,8c620000 -34860e0,2442ffff -34860e4,ac620000 -34860e8,10000003 -34860ec,24020005 -34860f0,21023 -34860f4,30420006 -34860f8,8c650000 -34860fc,a21021 -3486100,ac620004 -3486104,24840001 -3486108,1493fff1 -348610c,24630004 -3486110,92950000 -3486114,26b50037 -3486118,82820002 -348611c,2a2a821 -3486120,92820004 -3486124,10400006 -3486128,2801825 -348612c,8fa4002c -3486130,417c2 -3486134,441021 -3486138,21043 -348613c,2a2a823 -3486140,80620001 -3486144,2442005c -3486148,80630003 -348614c,431021 -3486150,afa20030 -3486154,2c08025 -3486158,92060000 -348615c,2cc2000a -3486160,5040000b -3486164,26100001 -3486168,8e470000 -348616c,afbe0018 -3486170,afbe0014 -3486174,8fa20030 -3486178,afa20010 -348617c,2a73821 -3486180,8fa50038 -3486184,c101c0e -3486188,2202025 -348618c,26100001 -3486190,1613fff1 -3486194,26520004 -3486198,26730003 -348619c,26940005 -34861a0,8fa20034 -34861a4,1454ffc3 -34861a8,26d60003 -34861ac,8fbf0074 -34861b0,8fbe0070 -34861b4,8fb7006c -34861b8,8fb60068 -34861bc,8fb50064 -34861c0,8fb40060 -34861c4,8fb3005c -34861c8,8fb20058 -34861cc,8fb10054 -34861d0,8fb00050 -34861d4,3e00008 -34861d8,27bd0078 -34861dc,27bdffa0 -34861e0,afbf005c -34861e4,afbe0058 -34861e8,afb70054 -34861ec,afb60050 -34861f0,afb5004c -34861f4,afb40048 -34861f8,afb30044 -34861fc,afb20040 -3486200,afb1003c -3486204,afb00038 -3486208,afa40060 -348620c,afa50064 -3486210,3c02801c -3486214,344284a0 -3486218,8c500000 -348621c,261402b8 -3486220,8e0202c0 -3486224,24430008 -3486228,ae0302c0 -348622c,3c03de00 -3486230,ac430000 -3486234,3c038041 -3486238,2463a0e8 -348623c,ac430004 -3486240,8e0202c0 -3486244,24430008 -3486248,ae0302c0 -348624c,3c03e700 -3486250,ac430000 -3486254,ac400004 -3486258,8e0202c0 -348625c,24430008 -3486260,ae0302c0 -3486264,3c03fc11 -3486268,34639623 -348626c,ac430000 -3486270,3c03ff2f -3486274,3463ffff -3486278,ac430004 -348627c,8e0202c0 -3486280,24430008 -3486284,ae0302c0 -3486288,3c03fa00 -348628c,ac430000 -3486290,2403ffff -3486294,ac430004 -3486298,3c028041 -348629c,8c52b1c8 -34862a0,24110054 -34862a4,3c178041 -34862a8,26f79fe8 -34862ac,3c168041 -34862b0,26d6b12c -34862b4,24150018 -34862b8,241e000c -34862bc,3242001f -34862c0,21040 -34862c4,129143 -34862c8,571021 -34862cc,90430000 -34862d0,31880 -34862d4,761821 -34862d8,8c730000 -34862dc,24070001 -34862e0,90460001 -34862e4,2602825 -34862e8,c101ba6 -34862ec,2802025 -34862f0,afb50018 -34862f4,afb50014 -34862f8,afbe0010 -34862fc,2203825 -3486300,3025 -3486304,2602825 -3486308,c101c0e -348630c,2802025 -3486310,26310020 -3486314,240200f4 -3486318,1622ffe9 -348631c,3242001f -3486320,8fa50064 -3486324,c10161c -3486328,2802025 -348632c,8e0202c0 -3486330,24430008 -3486334,ae0302c0 -3486338,3c03e700 -348633c,ac430000 -3486340,ac400004 -3486344,8e0202c0 -3486348,24430008 -348634c,ae0302c0 -3486350,3c03fcff -3486354,3463ffff -3486358,ac430000 -348635c,3c03fffd -3486360,3463f6fb -3486364,ac430004 -3486368,8e0202c0 -348636c,24430008 -3486370,ae0302c0 -3486374,3c03fa00 -3486378,ac430000 -348637c,93a30063 -3486380,ac430004 -3486384,3c02e450 -3486388,244203c0 -348638c,afa20020 -3486390,afa00024 -3486394,3c02e100 -3486398,afa20028 -348639c,afa0002c -34863a0,3c02f100 -34863a4,afa20030 -34863a8,3c020400 -34863ac,24420400 -34863b0,afa20034 -34863b4,27a20020 -34863b8,27a60038 -34863bc,8e0302c0 -34863c0,24640008 -34863c4,ae0402c0 -34863c8,8c450004 -34863cc,8c440000 -34863d0,ac650004 -34863d4,24420008 -34863d8,14c2fff8 -34863dc,ac640000 -34863e0,8fbf005c -34863e4,8fbe0058 -34863e8,8fb70054 -34863ec,8fb60050 -34863f0,8fb5004c -34863f4,8fb40048 -34863f8,8fb30044 -34863fc,8fb20040 -3486400,8fb1003c -3486404,8fb00038 -3486408,3e00008 -348640c,27bd0060 -3486410,3c028040 -3486414,90420cdd -3486418,10400002 -348641c,3c02800f -3486420,a0401640 -3486424,3e00008 -348642c,3c028041 -3486430,9042b1cc -3486434,1040000d -3486438,3c028011 -348643c,3442a5d0 -3486440,8c430000 -3486444,24020517 -3486448,14620008 -3486450,27bdffe8 -3486454,afbf0014 -3486458,c1024f2 -3486460,8fbf0014 -3486464,3e00008 -3486468,27bd0018 -348646c,3e00008 -3486474,27bdffe8 -3486478,afbf0014 -348647c,3c028041 -3486480,8c42b1fc -3486484,218c0 -3486488,3c048041 -348648c,2484b274 -3486490,641821 -3486494,8c630000 -3486498,1060000c -348649c,24420001 -34864a0,220c0 -34864a4,3c038041 -34864a8,2463b274 -34864ac,641821 -34864b0,402825 -34864b4,8c640000 -34864b8,24420001 -34864bc,1480fffc -34864c0,24630008 -34864c4,3c028041 -34864c8,ac45b1fc -34864cc,c1026fa -34864d0,2404013c -34864d4,3c038041 -34864d8,ac62b1f8 -34864dc,24030001 -34864e0,ac430130 -34864e4,8fbf0014 -34864e8,3e00008 -34864ec,27bd0018 -34864f0,801025 -34864f4,84a30000 -34864f8,2404000a -34864fc,14640012 -3486500,24040015 -3486504,24030010 -3486508,14c30008 -348650c,94a3001c -3486510,31942 -3486514,3063007f -3486518,24040075 -348651c,54640003 -3486520,94a3001c -3486524,3e00008 -3486528,ac400000 -348652c,3063001f -3486530,a0400000 -3486534,a0460001 -3486538,24040001 -348653c,a0440002 -3486540,3e00008 -3486544,a0430003 -3486548,14640010 -348654c,2404019c -3486550,90a3001d -3486554,24040006 -3486558,10640005 -348655c,24040011 -3486560,50640004 -3486564,90a30141 -3486568,3e00008 -348656c,ac400000 -3486570,90a30141 -3486574,a0400000 -3486578,a0460001 -348657c,24040002 -3486580,a0440002 -3486584,3e00008 -3486588,a0430003 -348658c,1464000a -3486590,2404003e -3486594,94a4001c -3486598,a0400000 -348659c,41a02 -34865a0,3063001f -34865a4,a0430001 -34865a8,24030003 -34865ac,a0430002 -34865b0,3e00008 -34865b4,a0440003 -34865b8,54c4000d -34865bc,a4400000 -34865c0,2404011a -34865c4,5464000a -34865c8,a4400000 -34865cc,3c038011 -34865d0,3463a5d0 -34865d4,90631397 -34865d8,a0400000 -34865dc,a0430001 -34865e0,24030004 -34865e4,a0430002 +3485e9c,3c028041 +3485ea0,9042b5de +3485ea4,2c42000a +3485ea8,1040000b +3485eac,24070001 +3485eb0,2402000a +3485eb4,afa20010 +3485eb8,3c028041 +3485ebc,8c47a038 +3485ec0,24060001 +3485ec4,3c058041 +3485ec8,24a5a3b8 +3485ecc,c1014f2 +3485ed0,2202025 +3485ed4,24070001 +3485ed8,2406000b +3485edc,3c108041 +3485ee0,2605a428 +3485ee4,c101bd7 +3485ee8,2202025 +3485eec,24020010 +3485ef0,afa20018 +3485ef4,afa20014 +3485ef8,24020086 +3485efc,afa20010 +3485f00,2407003c +3485f04,3025 +3485f08,2605a428 +3485f0c,c101c3f +3485f10,2202025 +3485f14,3c028041 +3485f18,9042b5db +3485f1c,2c42000a +3485f20,1040001d +3485f24,8e220008 +3485f28,24430008 +3485f2c,ae230008 +3485f30,3c03fa00 +3485f34,ac430000 +3485f38,3c03f4ec +3485f3c,24633000 +3485f40,2439025 +3485f44,ac520004 +3485f48,3c038041 +3485f4c,9062b544 +3485f50,24440001 +3485f54,a064b544 +3485f58,3c038041 +3485f5c,2463a024 +3485f60,21082 +3485f64,24040010 +3485f68,afa40010 +3485f6c,9064000f +3485f70,42200 +3485f74,90670010 +3485f78,e43825 +3485f7c,73c00 +3485f80,3046000f +3485f84,3c058041 +3485f88,24a5a3f8 +3485f8c,c1014f2 +3485f90,2202025 +3485f94,8e220008 +3485f98,24430008 +3485f9c,ae230008 +3485fa0,3c03fa00 +3485fa4,ac430000 +3485fa8,ac540004 +3485fac,2407000a +3485fb0,3025 +3485fb4,3c058041 +3485fb8,24a5a3c8 +3485fbc,c101bd7 +3485fc0,2202025 +3485fc4,8fa2004c +3485fc8,2453001b +3485fcc,3c168041 +3485fd0,26d6b5d0 +3485fd4,3c148041 +3485fd8,2694a024 +3485fdc,26820019 +3485fe0,afa20034 +3485fe4,24170001 +3485fe8,241e0008 +3485fec,3c028041 +3485ff0,2442a3c8 +3485ff4,afa20038 +3485ff8,afa00020 +3485ffc,afa00024 +3486000,afa00028 +3486004,afa0002c +3486008,27b20020 +348600c,2401825 +3486010,2c02025 +3486014,90820000 +3486018,54570006 +348601c,2c42000a +3486020,8c620000 +3486024,2442ffff +3486028,ac620000 +348602c,10000003 +3486030,24020005 +3486034,21023 +3486038,30420006 +348603c,8c650000 +3486040,a21021 +3486044,ac620004 +3486048,24840001 +348604c,1493fff1 +3486050,24630004 +3486054,92950000 +3486058,26b50037 +348605c,82820002 +3486060,2a2a821 +3486064,92820004 +3486068,10400006 +348606c,2801825 +3486070,8fa4002c +3486074,417c2 +3486078,441021 +348607c,21043 +3486080,2a2a823 +3486084,80620001 +3486088,2442005c +348608c,80630003 +3486090,431021 +3486094,afa20030 +3486098,2c08025 +348609c,92060000 +34860a0,2cc2000a +34860a4,5040000b +34860a8,26100001 +34860ac,8e470000 +34860b0,afbe0018 +34860b4,afbe0014 +34860b8,8fa20030 +34860bc,afa20010 +34860c0,2a73821 +34860c4,8fa50038 +34860c8,c101c3f +34860cc,2202025 +34860d0,26100001 +34860d4,1613fff1 +34860d8,26520004 +34860dc,26730003 +34860e0,26940005 +34860e4,8fa20034 +34860e8,1454ffc3 +34860ec,26d60003 +34860f0,8fbf0074 +34860f4,8fbe0070 +34860f8,8fb7006c +34860fc,8fb60068 +3486100,8fb50064 +3486104,8fb40060 +3486108,8fb3005c +348610c,8fb20058 +3486110,8fb10054 +3486114,8fb00050 +3486118,3e00008 +348611c,27bd0078 +3486120,27bdffa0 +3486124,afbf005c +3486128,afbe0058 +348612c,afb70054 +3486130,afb60050 +3486134,afb5004c +3486138,afb40048 +348613c,afb30044 +3486140,afb20040 +3486144,afb1003c +3486148,afb00038 +348614c,afa40060 +3486150,afa50064 +3486154,3c02801c +3486158,344284a0 +348615c,8c500000 +3486160,261402b8 +3486164,8e0202c0 +3486168,24430008 +348616c,ae0302c0 +3486170,3c03de00 +3486174,ac430000 +3486178,3c038041 +348617c,2463a468 +3486180,ac430004 +3486184,8e0202c0 +3486188,24430008 +348618c,ae0302c0 +3486190,3c03e700 +3486194,ac430000 +3486198,ac400004 +348619c,8e0202c0 +34861a0,24430008 +34861a4,ae0302c0 +34861a8,3c03fc11 +34861ac,34639623 +34861b0,ac430000 +34861b4,3c03ff2f +34861b8,3463ffff +34861bc,ac430004 +34861c0,8e0202c0 +34861c4,24430008 +34861c8,ae0302c0 +34861cc,3c03fa00 +34861d0,ac430000 +34861d4,2403ffff +34861d8,ac430004 +34861dc,3c028041 +34861e0,8c52b548 +34861e4,24110054 +34861e8,3c178041 +34861ec,26f7a328 +34861f0,3c168041 +34861f4,26d6b4ac +34861f8,24150018 +34861fc,241e000c +3486200,3242001f +3486204,21040 +3486208,129143 +348620c,571021 +3486210,90430000 +3486214,31880 +3486218,761821 +348621c,8c730000 +3486220,24070001 +3486224,90460001 +3486228,2602825 +348622c,c101bd7 +3486230,2802025 +3486234,afb50018 +3486238,afb50014 +348623c,afbe0010 +3486240,2203825 +3486244,3025 +3486248,2602825 +348624c,c101c3f +3486250,2802025 +3486254,26310020 +3486258,240200f4 +348625c,1622ffe9 +3486260,3242001f +3486264,8fa50064 +3486268,c1015ed +348626c,2802025 +3486270,8e0202c0 +3486274,24430008 +3486278,ae0302c0 +348627c,3c03e700 +3486280,ac430000 +3486284,ac400004 +3486288,8e0202c0 +348628c,24430008 +3486290,ae0302c0 +3486294,3c03fcff +3486298,3463ffff +348629c,ac430000 +34862a0,3c03fffd +34862a4,3463f6fb +34862a8,ac430004 +34862ac,8e0202c0 +34862b0,24430008 +34862b4,ae0302c0 +34862b8,3c03fa00 +34862bc,ac430000 +34862c0,93a30063 +34862c4,ac430004 +34862c8,3c02e450 +34862cc,244203c0 +34862d0,afa20020 +34862d4,afa00024 +34862d8,3c02e100 +34862dc,afa20028 +34862e0,afa0002c +34862e4,3c02f100 +34862e8,afa20030 +34862ec,3c020400 +34862f0,24420400 +34862f4,afa20034 +34862f8,27a20020 +34862fc,27a60038 +3486300,8e0302c0 +3486304,24640008 +3486308,ae0402c0 +348630c,8c450004 +3486310,8c440000 +3486314,ac650004 +3486318,24420008 +348631c,14c2fff8 +3486320,ac640000 +3486324,8fbf005c +3486328,8fbe0058 +348632c,8fb70054 +3486330,8fb60050 +3486334,8fb5004c +3486338,8fb40048 +348633c,8fb30044 +3486340,8fb20040 +3486344,8fb1003c +3486348,8fb00038 +348634c,3e00008 +3486350,27bd0060 +3486354,3c028041 +3486358,9042b54c +348635c,1040000d +3486360,3c028011 +3486364,3442a5d0 +3486368,8c430000 +348636c,24020517 +3486370,14620008 +3486378,27bdffe8 +348637c,afbf0014 +3486380,c102532 +3486388,8fbf0014 +348638c,3e00008 +3486390,27bd0018 +3486394,3e00008 +348639c,14800003 +34863a0,3c028041 +34863a4,3e00008 +34863a8,8c42a368 +34863ac,27bdffe8 +34863b0,afbf0014 +34863b4,afb00010 +34863b8,808025 +34863bc,c1018e7 +34863c0,42102 +34863c4,3210000f +34863c8,108080 +34863cc,3c038041 +34863d0,2463a368 +34863d4,2038021 +34863d8,8e030000 +34863dc,431021 +34863e0,8fbf0014 +34863e4,8fb00010 +34863e8,3e00008 +34863ec,27bd0018 +34863f0,3c028011 +34863f4,3442a5d0 +34863f8,8c42135c +34863fc,1440004c +3486400,3c028041 +3486404,9042b550 +3486408,10400049 +348640c,3c038011 +3486410,3463a5d0 +3486414,906300b2 +3486418,30630001 +348641c,14600044 +3486420,24030003 +3486424,27bdffe8 +3486428,10430028 +348642c,afbf0014 +3486430,2c430004 +3486434,10600007 +3486438,24030001 +348643c,1043000a +3486440,24030002 +3486444,10430014 +3486448,3c028011 +348644c,10000036 +3486450,8fbf0014 +3486454,24030004 +3486458,10430029 +348645c,3c028011 +3486460,10000031 +3486464,8fbf0014 +3486468,3c028011 +348646c,3442a5d0 +3486470,8c4400a4 +3486474,c1018e7 +3486478,3084003f +348647c,3c038041 +3486480,9463b54e +3486484,43102b +3486488,10400024 +348648c,8fbf0014 +3486490,10000025 +3486498,3442a5d0 +348649c,8c4400a4 +34864a0,3c02001c +34864a4,2442003f +34864a8,c1018e7 +34864ac,822024 +34864b0,3c038041 +34864b4,9463b54e +34864b8,43102b +34864bc,10400017 +34864c0,8fbf0014 +34864c4,10000018 +34864cc,3c028011 +34864d0,3442a5d0 +34864d4,8c4400a4 +34864d8,3c02001c +34864dc,c1018e7 +34864e0,822024 +34864e4,3c038041 +34864e8,9463b54e +34864ec,43102b +34864f0,1040000a +34864f4,8fbf0014 +34864f8,1000000b +3486500,3442a5d0 +3486504,844200d0 +3486508,3c038041 +348650c,9463b54e +3486510,43102a +3486514,14400004 +3486518,8fbf0014 +348651c,c101a68 +3486520,24040003 +3486524,8fbf0014 +3486528,3e00008 +348652c,27bd0018 +3486530,3e00008 +3486538,27bdffe8 +348653c,afbf0014 +3486540,3c028041 +3486544,8c42b580 +3486548,218c0 +348654c,3c048041 +3486550,2484b5fc +3486554,641821 +3486558,8c630000 +348655c,1060000c +3486560,24420001 +3486564,220c0 +3486568,3c038041 +348656c,2463b5fc +3486570,641821 +3486574,402825 +3486578,8c640000 +348657c,24420001 +3486580,1480fffc +3486584,24630008 +3486588,3c028041 +348658c,ac45b580 +3486590,c10273a +3486594,2404013c +3486598,3c038041 +348659c,ac62b57c +34865a0,24030001 +34865a4,ac430130 +34865a8,8fbf0014 +34865ac,3e00008 +34865b0,27bd0018 +34865b4,801025 +34865b8,84a30000 +34865bc,2404000a +34865c0,14640012 +34865c4,24040015 +34865c8,24030010 +34865cc,14c30008 +34865d0,94a3001c +34865d4,31942 +34865d8,3063007f +34865dc,24040075 +34865e0,54640003 +34865e4,94a3001c 34865e8,3e00008 -34865ec,a0470003 -34865f0,a0400002 -34865f4,a0460001 -34865f8,3e00008 -34865fc,a0470003 -3486600,3c038041 -3486604,8c67b1fc -3486608,24e7ffff -348660c,4e00021 -3486610,801025 -3486614,27bdfff8 -3486618,4825 -348661c,3c0a8041 -3486620,254ab274 -3486624,1273021 -3486628,61fc2 -348662c,661821 -3486630,31843 -3486634,330c0 -3486638,ca3021 -348663c,8cc80000 -3486640,8cc60004 -3486644,afa60004 -3486648,a8302b -348664c,10c00003 -3486650,105302b -3486654,10000008 -3486658,2467ffff -348665c,50c00003 -3486660,ac480000 -3486664,10000004 -3486668,24690001 -348666c,8fa30004 -3486670,10000006 -3486674,ac430004 -3486678,e9182a -348667c,1060ffea -3486680,1273021 -3486684,ac400000 -3486688,ac400004 -348668c,3e00008 -3486690,27bd0008 -3486694,ac800000 -3486698,3e00008 -348669c,ac800004 -34866a0,27bdffe0 -34866a4,afbf001c -34866a8,afb00018 -34866ac,808025 -34866b0,c10193c -34866b4,27a40010 -34866b8,8fa50010 -34866bc,14a00004 -34866c4,ae000000 -34866c8,10000003 -34866cc,ae000004 -34866d0,c101980 -34866d4,2002025 -34866d8,2001025 -34866dc,8fbf001c -34866e0,8fb00018 -34866e4,3e00008 -34866e8,27bd0020 -34866ec,27bdffe8 -34866f0,afbf0014 -34866f4,afb00010 -34866f8,afa40018 -34866fc,58202 -3486700,afa5001c -3486704,321000ff -3486708,c101eb2 -348670c,52402 -3486710,c101ea3 -3486714,402025 -3486718,3c038041 -348671c,8fa40018 -3486720,ac64b1f0 -3486724,2463b1f0 -3486728,8fa4001c -348672c,ac640004 -3486730,10202b -3486734,3c038041 -3486738,ac64b1ec -348673c,3c038041 -3486740,ac62b1e8 -3486744,90440001 -3486748,3c038041 -348674c,ac64b1e4 -3486750,94440002 -3486754,3c038041 -3486758,ac64b1e0 -348675c,94440004 -3486760,3c038041 -3486764,ac64b1dc -3486768,80440006 -348676c,3c038041 -3486770,ac64b1d8 -3486774,90420007 -3486778,30420001 -348677c,3c038041 -3486780,16000003 -3486784,ac62b1d4 -3486788,3c028040 -348678c,90500024 -3486790,3c028040 -3486794,a0500025 -3486798,8fbf0014 -348679c,8fb00010 -34867a0,3e00008 -34867a4,27bd0018 -34867a8,3c028041 -34867ac,ac40b1f0 -34867b0,2442b1f0 -34867b4,ac400004 -34867b8,3c028041 -34867bc,ac40b1ec -34867c0,3c028041 -34867c4,ac40b1e8 -34867c8,3c028041 -34867cc,ac40b1e4 -34867d0,3c028041 -34867d4,ac40b1e0 -34867d8,3c028041 -34867dc,ac40b1dc -34867e0,3c028041 -34867e4,ac40b1d8 -34867e8,3c028041 -34867ec,3e00008 -34867f0,ac40b1d4 -34867f4,8c830000 -34867f8,3c028040 -34867fc,ac43002c -3486800,94830004 -3486804,3c028040 -3486808,a4430030 -348680c,90830006 -3486810,3c028040 -3486814,3e00008 -3486818,a4430032 -348681c,afa40000 -3486820,afa50004 -3486824,3c028041 -3486828,2442b25c -348682c,1825 -3486830,24060003 -3486834,8c450000 -3486838,14a0000a -3486840,318c0 -3486844,3c028041 -3486848,2442b25c -348684c,621821 -3486850,8fa20000 -3486854,ac620000 -3486858,8fa20004 -348685c,3e00008 -3486860,ac620004 -3486864,10a40003 -3486868,24630001 -348686c,1466fff1 -3486870,24420008 -3486874,3e00008 -348687c,3c028040 -3486880,94420028 -3486884,10400013 -3486888,2403ffff -348688c,27bdffe0 -3486890,afbf001c -3486894,afa00010 -3486898,afa00014 -348689c,a3a30011 -34868a0,24040005 -34868a4,a3a40012 -34868a8,a3a30013 -34868ac,3c038040 -34868b0,94630026 -34868b4,a3a30016 -34868b8,a7a20014 -34868bc,8fa40010 -34868c0,c101a07 -34868c4,8fa50014 -34868c8,8fbf001c -34868cc,3e00008 -34868d0,27bd0020 -34868d4,3e00008 -34868dc,27bdffe0 -34868e0,afbf001c -34868e4,3c0200ff -34868e8,34420500 -34868ec,442825 -34868f0,c101980 -34868f4,27a40010 -34868f8,8fa20010 -34868fc,10400005 -3486900,8fbf001c -3486904,402025 -3486908,c101a07 -348690c,8fa50014 -3486910,8fbf001c -3486914,3e00008 -3486918,27bd0020 -348691c,3c038041 -3486920,2462b25c -3486924,8c450008 -3486928,8c44000c -348692c,ac65b25c -3486930,ac440004 -3486934,8c440010 -3486938,8c430014 -348693c,ac440008 -3486940,ac43000c -3486944,ac400010 -3486948,3e00008 -348694c,ac400014 -3486950,801825 -3486954,3084ffff -3486958,240205ff -348695c,1482000b -3486960,27bdfff8 -3486964,3c028011 -3486968,3442a660 -348696c,94430000 -3486970,24630001 -3486974,a4430000 -3486978,3c028040 -348697c,a4400028 -3486980,3c028040 -3486984,10000009 -3486988,a4400026 -348698c,3c020057 -3486990,24420058 -3486994,14620005 -3486998,3c02801c -348699c,344284a0 -34869a0,8c431d38 -34869a4,34630001 -34869a8,ac431d38 -34869ac,3e00008 -34869b0,27bd0008 -34869b4,27bdffe0 -34869b8,afbf001c -34869bc,afb00018 -34869c0,3c028041 -34869c4,8c50b25c -34869c8,2442b25c -34869cc,8c420004 -34869d0,afa20010 -34869d4,2403ff00 -34869d8,431024 -34869dc,3c03007c -34869e0,14430008 -34869e4,8fbf001c -34869e8,c101dc6 -34869f0,c101a47 -34869f8,c101a54 -34869fc,2002025 -3486a00,8fbf001c -3486a04,8fb00018 -3486a08,3e00008 -3486a0c,27bd0020 -3486a10,27bdffe8 -3486a14,afbf0014 -3486a18,afb00010 -3486a1c,3c028041 -3486a20,8c50b1f0 -3486a24,1200000e -3486a28,8fbf0014 -3486a2c,c1019fd -3486a30,2444b1f0 -3486a34,3c028041 -3486a38,8c42b25c -3486a3c,14500003 -3486a44,c101a47 -3486a4c,c101a54 -3486a50,2002025 -3486a54,c1019ea -3486a5c,8fbf0014 -3486a60,8fb00010 -3486a64,3e00008 -3486a68,27bd0018 -3486a6c,27bdffe0 -3486a70,afbf001c -3486a74,3c028041 -3486a78,8c43b25c -3486a7c,2442b25c -3486a80,8c420004 -3486a84,afa30010 -3486a88,1060000d -3486a8c,afa20014 -3486a90,602025 -3486a94,c1019bb -3486a98,402825 -3486a9c,3c02801d -3486aa0,3442aa30 -3486aa4,3c038041 -3486aa8,8c63b1f8 -3486aac,ac430428 -3486ab0,3c038041 -3486ab4,8c63b1e8 -3486ab8,80630000 -3486abc,a0430424 -3486ac0,8fbf001c -3486ac4,3e00008 -3486ac8,27bd0020 -3486acc,27bdffe8 -3486ad0,afbf0014 -3486ad4,c101a1f -3486adc,3c02801d -3486ae0,3442aa30 -3486ae4,8c42066c -3486ae8,3c03fcac -3486aec,24632485 -3486af0,431024 -3486af4,14400033 +34865ec,ac400000 +34865f0,3063001f +34865f4,a0400000 +34865f8,a0460001 +34865fc,24040001 +3486600,a0440002 +3486604,3e00008 +3486608,a0430003 +348660c,14640010 +3486610,2404019c +3486614,90a3001d +3486618,24040006 +348661c,10640005 +3486620,24040011 +3486624,50640004 +3486628,90a30141 +348662c,3e00008 +3486630,ac400000 +3486634,90a30141 +3486638,a0400000 +348663c,a0460001 +3486640,24040002 +3486644,a0440002 +3486648,3e00008 +348664c,a0430003 +3486650,1464000a +3486654,2404003e +3486658,94a4001c +348665c,a0400000 +3486660,41a02 +3486664,3063001f +3486668,a0430001 +348666c,24030003 +3486670,a0430002 +3486674,3e00008 +3486678,a0440003 +348667c,54c4000d +3486680,a4400000 +3486684,2404011a +3486688,5464000a +348668c,a4400000 +3486690,3c038011 +3486694,3463a5d0 +3486698,90631397 +348669c,a0400000 +34866a0,a0430001 +34866a4,24030004 +34866a8,a0430002 +34866ac,3e00008 +34866b0,a0470003 +34866b4,a0400002 +34866b8,a0460001 +34866bc,3e00008 +34866c0,a0470003 +34866c4,3c038041 +34866c8,8c67b580 +34866cc,24e7ffff +34866d0,4e00021 +34866d4,801025 +34866d8,27bdfff8 +34866dc,4825 +34866e0,3c0a8041 +34866e4,254ab5fc +34866e8,1273021 +34866ec,61fc2 +34866f0,661821 +34866f4,31843 +34866f8,330c0 +34866fc,ca3021 +3486700,8cc80000 +3486704,8cc60004 +3486708,afa60004 +348670c,a8302b +3486710,10c00003 +3486714,105302b +3486718,10000008 +348671c,2467ffff +3486720,50c00003 +3486724,ac480000 +3486728,10000004 +348672c,24690001 +3486730,8fa30004 +3486734,10000006 +3486738,ac430004 +348673c,e9182a +3486740,1060ffea +3486744,1273021 +3486748,ac400000 +348674c,ac400004 +3486750,3e00008 +3486754,27bd0008 +3486758,ac800000 +348675c,3e00008 +3486760,ac800004 +3486764,27bdffe0 +3486768,afbf001c +348676c,afb00018 +3486770,808025 +3486774,c10196d +3486778,27a40010 +348677c,8fa50010 +3486780,14a00004 +3486788,ae000000 +348678c,10000003 +3486790,ae000004 +3486794,c1019b1 +3486798,2002025 +348679c,2001025 +34867a0,8fbf001c +34867a4,8fb00018 +34867a8,3e00008 +34867ac,27bd0020 +34867b0,27bdffe8 +34867b4,afbf0014 +34867b8,afb00010 +34867bc,afa40018 +34867c0,58202 +34867c4,afa5001c +34867c8,321000ff +34867cc,c101ee3 +34867d0,52402 +34867d4,c101ed4 +34867d8,402025 +34867dc,3c038041 +34867e0,8fa40018 +34867e4,ac64b574 +34867e8,2463b574 +34867ec,8fa4001c +34867f0,ac640004 +34867f4,10202b +34867f8,3c038041 +34867fc,ac64b570 +3486800,3c038041 +3486804,ac62b56c +3486808,90440001 +348680c,3c038041 +3486810,ac64b568 +3486814,94440002 +3486818,3c038041 +348681c,ac64b564 +3486820,94440004 +3486824,3c038041 +3486828,ac64b560 +348682c,80440006 +3486830,3c038041 +3486834,ac64b55c +3486838,90420007 +348683c,30420001 +3486840,3c038041 +3486844,16000003 +3486848,ac62b558 +348684c,3c028040 +3486850,90500024 +3486854,3c028040 +3486858,a0500025 +348685c,8fbf0014 +3486860,8fb00010 +3486864,3e00008 +3486868,27bd0018 +348686c,3c028041 +3486870,ac40b574 +3486874,2442b574 +3486878,ac400004 +348687c,3c028041 +3486880,ac40b570 +3486884,3c028041 +3486888,ac40b56c +348688c,3c028041 +3486890,ac40b568 +3486894,3c028041 +3486898,ac40b564 +348689c,3c028041 +34868a0,ac40b560 +34868a4,3c028041 +34868a8,ac40b55c +34868ac,3c028041 +34868b0,3e00008 +34868b4,ac40b558 +34868b8,8c830000 +34868bc,3c028040 +34868c0,ac43002c +34868c4,94830004 +34868c8,3c028040 +34868cc,a4430030 +34868d0,90830006 +34868d4,3c028040 +34868d8,3e00008 +34868dc,a4430032 +34868e0,afa40000 +34868e4,afa50004 +34868e8,3c028041 +34868ec,2442b5e4 +34868f0,1825 +34868f4,24060003 +34868f8,8c450000 +34868fc,14a0000a +3486904,318c0 +3486908,3c028041 +348690c,2442b5e4 +3486910,621821 +3486914,8fa20000 +3486918,ac620000 +348691c,8fa20004 +3486920,3e00008 +3486924,ac620004 +3486928,10a40003 +348692c,24630001 +3486930,1466fff1 +3486934,24420008 +3486938,3e00008 +3486940,3c028040 +3486944,94420028 +3486948,10400013 +348694c,2403ffff +3486950,27bdffe0 +3486954,afbf001c +3486958,afa00010 +348695c,afa00014 +3486960,a3a30011 +3486964,24040005 +3486968,a3a40012 +348696c,a3a30013 +3486970,3c038040 +3486974,94630026 +3486978,a3a30016 +348697c,a7a20014 +3486980,8fa40010 +3486984,c101a38 +3486988,8fa50014 +348698c,8fbf001c +3486990,3e00008 +3486994,27bd0020 +3486998,3e00008 +34869a0,27bdffe0 +34869a4,afbf001c +34869a8,3c0200ff +34869ac,34420500 +34869b0,442825 +34869b4,c1019b1 +34869b8,27a40010 +34869bc,8fa20010 +34869c0,10400005 +34869c4,8fbf001c +34869c8,402025 +34869cc,c101a38 +34869d0,8fa50014 +34869d4,8fbf001c +34869d8,3e00008 +34869dc,27bd0020 +34869e0,3c038041 +34869e4,2462b5e4 +34869e8,8c450008 +34869ec,8c44000c +34869f0,ac65b5e4 +34869f4,ac440004 +34869f8,8c440010 +34869fc,8c430014 +3486a00,ac440008 +3486a04,ac43000c +3486a08,ac400010 +3486a0c,3e00008 +3486a10,ac400014 +3486a14,801825 +3486a18,3084ffff +3486a1c,240205ff +3486a20,1482000b +3486a24,27bdfff8 +3486a28,3c028011 +3486a2c,3442a660 +3486a30,94430000 +3486a34,24630001 +3486a38,a4430000 +3486a3c,3c028040 +3486a40,a4400028 +3486a44,3c028040 +3486a48,10000009 +3486a4c,a4400026 +3486a50,3c020057 +3486a54,24420058 +3486a58,14620005 +3486a5c,3c02801c +3486a60,344284a0 +3486a64,8c431d38 +3486a68,34630001 +3486a6c,ac431d38 +3486a70,3e00008 +3486a74,27bd0008 +3486a78,27bdffe0 +3486a7c,afbf001c +3486a80,afb00018 +3486a84,3c028041 +3486a88,8c50b5e4 +3486a8c,2442b5e4 +3486a90,8c420004 +3486a94,afa20010 +3486a98,2403ff00 +3486a9c,431024 +3486aa0,3c03007c +3486aa4,14430008 +3486aa8,8fbf001c +3486aac,c101df7 +3486ab4,c101a78 +3486abc,c101a85 +3486ac0,2002025 +3486ac4,8fbf001c +3486ac8,8fb00018 +3486acc,3e00008 +3486ad0,27bd0020 +3486ad4,27bdffe8 +3486ad8,afbf0014 +3486adc,afb00010 +3486ae0,3c028041 +3486ae4,8c50b574 +3486ae8,1200000e +3486aec,8fbf0014 +3486af0,c101a2e +3486af4,2444b574 3486af8,3c028041 -3486afc,3c02801d -3486b00,3442aa30 -3486b04,94420088 -3486b08,30420001 -3486b0c,1040002a -3486b10,1025 -3486b14,3c02801d -3486b18,3442aa30 -3486b1c,8c420670 -3486b20,3c03000c -3486b24,431024 -3486b28,14400023 -3486b2c,1025 -3486b30,3c02800e -3486b34,3442f1b0 -3486b38,8c420000 -3486b3c,30420020 -3486b40,1440001d -3486b44,1025 -3486b48,3c02801c -3486b4c,344284a0 -3486b50,8c420794 -3486b54,14400018 -3486b58,1025 -3486b5c,3c028041 -3486b60,9042b1d0 -3486b64,24420001 -3486b68,304200ff -3486b6c,2c430002 -3486b70,14600012 +3486afc,8c42b5e4 +3486b00,14500003 +3486b08,c101a78 +3486b10,c101a85 +3486b14,2002025 +3486b18,c101a1b +3486b20,8fbf0014 +3486b24,8fb00010 +3486b28,3e00008 +3486b2c,27bd0018 +3486b30,27bdffe0 +3486b34,afbf001c +3486b38,3c028041 +3486b3c,8c43b5e4 +3486b40,2442b5e4 +3486b44,8c420004 +3486b48,afa30010 +3486b4c,1060000d +3486b50,afa20014 +3486b54,602025 +3486b58,c1019ec +3486b5c,402825 +3486b60,3c02801d +3486b64,3442aa30 +3486b68,3c038041 +3486b6c,8c63b57c +3486b70,ac430428 3486b74,3c038041 -3486b78,3c028041 -3486b7c,c101a6d -3486b80,a040b1d0 -3486b84,c101dc2 -3486b8c,10400005 -3486b94,c101dcb -3486b9c,1000000b -3486ba0,8fbf0014 -3486ba4,c101a9b -3486bac,10000007 -3486bb0,8fbf0014 -3486bb4,1025 -3486bb8,3c038041 -3486bbc,10000002 -3486bc0,a062b1d0 -3486bc4,a040b1d0 -3486bc8,8fbf0014 -3486bcc,3e00008 -3486bd0,27bd0018 -3486bd4,27bdffd8 -3486bd8,afbf0024 -3486bdc,afb20020 -3486be0,afb1001c -3486be4,afb00018 -3486be8,a09025 -3486bec,10800012 -3486bf0,c08825 -3486bf4,10c00010 -3486bf8,808025 -3486bfc,4c10004 -3486c00,c03825 -3486c04,63823 -3486c08,73e00 -3486c0c,73e03 -3486c10,30e700ff -3486c14,3c02801c -3486c18,344284a0 -3486c1c,904600a5 -3486c20,2002825 -3486c24,c1019a8 -3486c28,27a40010 -3486c2c,8fa20010 -3486c30,14400005 -3486c34,8fa40010 -3486c38,c1019ea -3486c40,10000019 -3486c44,2201025 -3486c48,c1019bb -3486c4c,8fa50014 -3486c50,3c028041 -3486c54,8c42b1e8 -3486c58,86040000 -3486c5c,2403000a -3486c60,1483000c -3486c64,80420000 -3486c68,8fa30014 -3486c6c,2404ff00 -3486c70,641824 -3486c74,3c04007c -3486c78,50640001 -3486c7c,2402007c -3486c80,9603001c -3486c84,3063f01f -3486c88,22140 -3486c8c,641825 -3486c90,a603001c -3486c94,6230005 -3486c98,a2420424 -3486c9c,21023 -3486ca0,21600 -3486ca4,21603 -3486ca8,a2420424 -3486cac,8fbf0024 -3486cb0,8fb20020 -3486cb4,8fb1001c -3486cb8,8fb00018 -3486cbc,3e00008 -3486cc0,27bd0028 -3486cc4,27bdffd8 -3486cc8,afbf0024 -3486ccc,afb20020 -3486cd0,afb1001c -3486cd4,afb00018 -3486cd8,808825 -3486cdc,3825 -3486ce0,3025 -3486ce4,802825 -3486ce8,c1019a8 +3486b78,8c63b56c +3486b7c,80630000 +3486b80,a0430424 +3486b84,8fbf001c +3486b88,3e00008 +3486b8c,27bd0020 +3486b90,27bdffe8 +3486b94,afbf0014 +3486b98,c101a50 +3486ba0,3c02801d +3486ba4,3442aa30 +3486ba8,8c42066c +3486bac,3c03fcac +3486bb0,24632485 +3486bb4,431024 +3486bb8,14400033 +3486bbc,3c028041 +3486bc0,3c02801d +3486bc4,3442aa30 +3486bc8,94420088 +3486bcc,30420001 +3486bd0,1040002a +3486bd4,1025 +3486bd8,3c02801d +3486bdc,3442aa30 +3486be0,8c420670 +3486be4,3c03000c +3486be8,431024 +3486bec,14400023 +3486bf0,1025 +3486bf4,3c02800e +3486bf8,3442f1b0 +3486bfc,8c420000 +3486c00,30420020 +3486c04,1440001d +3486c08,1025 +3486c0c,3c02801c +3486c10,344284a0 +3486c14,8c420794 +3486c18,14400018 +3486c1c,1025 +3486c20,3c028041 +3486c24,9042b554 +3486c28,24420001 +3486c2c,304200ff +3486c30,2c430002 +3486c34,14600012 +3486c38,3c038041 +3486c3c,3c028041 +3486c40,c101a9e +3486c44,a040b554 +3486c48,c101df3 +3486c50,10400005 +3486c58,c101dfc +3486c60,1000000b +3486c64,8fbf0014 +3486c68,c101acc +3486c70,10000007 +3486c74,8fbf0014 +3486c78,1025 +3486c7c,3c038041 +3486c80,10000002 +3486c84,a062b554 +3486c88,a040b554 +3486c8c,8fbf0014 +3486c90,3e00008 +3486c94,27bd0018 +3486c98,27bdffd8 +3486c9c,afbf0024 +3486ca0,afb20020 +3486ca4,afb1001c +3486ca8,afb00018 +3486cac,a09025 +3486cb0,10800012 +3486cb4,c08825 +3486cb8,10c00010 +3486cbc,808025 +3486cc0,4c10004 +3486cc4,c03825 +3486cc8,63823 +3486ccc,73e00 +3486cd0,73e03 +3486cd4,30e700ff +3486cd8,3c02801c +3486cdc,344284a0 +3486ce0,904600a5 +3486ce4,2002825 +3486ce8,c1019d9 3486cec,27a40010 3486cf0,8fa20010 -3486cf4,10400029 -3486cf8,93b20016 -3486cfc,c101eb2 -3486d00,97a40014 -3486d04,c101ea3 -3486d08,402025 -3486d0c,408025 -3486d10,ae200134 -3486d14,3c028040 -3486d18,16400015 -3486d1c,a0520025 -3486d20,3c028040 -3486d24,90430024 -3486d28,3c028040 -3486d2c,a0430025 -3486d30,3025 -3486d34,96050002 -3486d38,3c11801c -3486d3c,3c02800d -3486d40,3442ce14 -3486d44,40f809 -3486d48,362484a0 -3486d4c,92050001 -3486d50,3c028006 -3486d54,3442fdcc -3486d58,40f809 -3486d5c,362484a0 -3486d60,c101eca -3486d64,2002025 -3486d68,10000013 -3486d6c,8fbf0024 -3486d70,3025 -3486d74,96050002 -3486d78,3c04801c -3486d7c,3c02800d -3486d80,3442ce14 -3486d84,40f809 -3486d88,348484a0 -3486d8c,c1019fd -3486d90,27a40010 -3486d94,10000008 -3486d98,8fbf0024 -3486d9c,c101eb2 -3486da0,2404005b -3486da4,c101ea3 -3486da8,402025 -3486dac,408025 -3486db0,1000ffdb -3486db4,ae200134 -3486db8,8fb20020 -3486dbc,8fb1001c -3486dc0,8fb00018 -3486dc4,3e00008 -3486dc8,27bd0028 -3486dcc,27bdffe8 -3486dd0,afbf0014 -3486dd4,afb00010 -3486dd8,3c028011 -3486ddc,3442a5d0 -3486de0,94500eec -3486de4,32100002 -3486de8,1600000c +3486cf4,14400005 +3486cf8,8fa40010 +3486cfc,c101a1b +3486d04,10000019 +3486d08,2201025 +3486d0c,c1019ec +3486d10,8fa50014 +3486d14,3c028041 +3486d18,8c42b56c +3486d1c,86040000 +3486d20,2403000a +3486d24,1483000c +3486d28,80420000 +3486d2c,8fa30014 +3486d30,2404ff00 +3486d34,641824 +3486d38,3c04007c +3486d3c,50640001 +3486d40,2402007c +3486d44,9603001c +3486d48,3063f01f +3486d4c,22140 +3486d50,641825 +3486d54,a603001c +3486d58,6230005 +3486d5c,a2420424 +3486d60,21023 +3486d64,21600 +3486d68,21603 +3486d6c,a2420424 +3486d70,8fbf0024 +3486d74,8fb20020 +3486d78,8fb1001c +3486d7c,8fb00018 +3486d80,3e00008 +3486d84,27bd0028 +3486d88,27bdffd8 +3486d8c,afbf0024 +3486d90,afb20020 +3486d94,afb1001c +3486d98,afb00018 +3486d9c,808825 +3486da0,3825 +3486da4,3025 +3486da8,802825 +3486dac,c1019d9 +3486db0,27a40010 +3486db4,8fa20010 +3486db8,10400029 +3486dbc,93b20016 +3486dc0,c101ee3 +3486dc4,97a40014 +3486dc8,c101ed4 +3486dcc,402025 +3486dd0,408025 +3486dd4,ae200134 +3486dd8,3c028040 +3486ddc,16400015 +3486de0,a0520025 +3486de4,3c028040 +3486de8,90430024 3486dec,3c028040 -3486df0,90420cd5 -3486df4,50400004 -3486df8,3c028011 -3486dfc,c101a37 -3486e00,24040002 -3486e04,3c028011 -3486e08,3442a5d0 -3486e0c,94430eec -3486e10,34630002 -3486e14,a4430eec -3486e18,3c028040 -3486e1c,90430cd5 -3486e20,14600002 -3486e24,24020001 -3486e28,10102b -3486e2c,8fbf0014 -3486e30,8fb00010 -3486e34,3e00008 -3486e38,27bd0018 -3486e3c,94830004 -3486e40,94820006 -3486e44,620018 -3486e48,9082000c -3486e4c,1812 -3486e58,620018 -3486e5c,1012 -3486e60,3e00008 -3486e68,27bdffe8 -3486e6c,afbf0014 -3486e70,afb00010 -3486e74,c101b8f -3486e78,808025 -3486e7c,96030008 -3486e80,620018 -3486e84,1012 -3486e88,8fbf0014 -3486e8c,8fb00010 -3486e90,3e00008 -3486e94,27bd0018 -3486e98,27bdff98 -3486e9c,afbf0064 -3486ea0,afb60060 -3486ea4,afb5005c -3486ea8,afb40058 -3486eac,afb30054 -3486eb0,afb20050 -3486eb4,afb1004c -3486eb8,afb00048 -3486ebc,808025 -3486ec0,a0a025 -3486ec4,c0a825 -3486ec8,94b10004 -3486ecc,94a20006 -3486ed0,470018 -3486ed4,9012 -3486ed8,90b6000b -3486edc,90b3000a -3486ee0,139d40 -3486ee4,3c0200e0 -3486ee8,2629824 -3486eec,1614c0 -3486ef0,3c030018 -3486ef4,431024 -3486ef8,2629825 -3486efc,2622ffff -3486f00,30420fff -3486f04,531025 -3486f08,3c03fd00 -3486f0c,431025 -3486f10,afa20010 -3486f14,c101b8f -3486f18,a02025 -3486f1c,550018 -3486f20,8e820000 -3486f24,1812 -3486f28,431021 -3486f2c,afa20014 -3486f30,2ec30002 -3486f34,10600003 -3486f38,24020010 -3486f3c,24020004 -3486f40,2c21004 -3486f44,510018 -3486f48,1812 -3486f4c,2463003f -3486f50,317c3 -3486f54,3042003f -3486f58,431021 -3486f5c,210c0 -3486f60,3c030003 -3486f64,3463fe00 -3486f68,431024 -3486f6c,531025 -3486f70,3c03f500 -3486f74,431025 -3486f78,afa20018 -3486f7c,3c040700 -3486f80,afa4001c -3486f84,3c03e600 -3486f88,afa30020 -3486f8c,afa00024 -3486f90,3c03f400 -3486f94,afa30028 -3486f98,2623ffff -3486f9c,31b80 -3486fa0,3c0500ff -3486fa4,34a5f000 -3486fa8,651824 -3486fac,2652ffff -3486fb0,129080 -3486fb4,32520ffc -3486fb8,721825 -3486fbc,642025 -3486fc0,afa4002c -3486fc4,3c04e700 -3486fc8,afa40030 -3486fcc,afa00034 -3486fd0,afa20038 -3486fd4,afa0003c -3486fd8,3c02f200 -3486fdc,afa20040 -3486fe0,afa30044 -3486fe4,27a20010 -3486fe8,27a60048 -3486fec,8e030008 -3486ff0,24640008 -3486ff4,ae040008 -3486ff8,8c450004 -3486ffc,8c440000 -3487000,ac650004 -3487004,24420008 -3487008,1446fff8 -348700c,ac640000 -3487010,8fbf0064 -3487014,8fb60060 -3487018,8fb5005c -348701c,8fb40058 -3487020,8fb30054 -3487024,8fb20050 -3487028,8fb1004c -348702c,8fb00048 -3487030,3e00008 -3487034,27bd0068 -3487038,27bdffe0 -348703c,8fa80030 -3487040,8fa20034 -3487044,8faa0038 -3487048,94a30004 -348704c,31a80 -3487050,14400002 -3487054,62001a -3487058,7000d -348705c,4812 -3487060,94a30006 -3487064,471021 -3487068,21380 -348706c,3c0b00ff -3487070,356bf000 -3487074,4b1024 -3487078,1482821 -348707c,52880 -3487080,30a50fff -3487084,451025 -3487088,3c05e400 -348708c,451025 -3487090,afa20000 -3487094,73b80 -3487098,eb3824 -348709c,84080 -34870a0,31080fff -34870a4,e83825 -34870a8,afa70004 -34870ac,3c02e100 -34870b0,afa20008 -34870b4,660018 -34870b8,1012 -34870bc,21140 -34870c0,3042ffff -34870c4,afa2000c -34870c8,3c02f100 -34870cc,afa20010 -34870d0,31a80 -34870d4,15400002 -34870d8,6a001a -34870dc,7000d -34870e0,1012 -34870e4,3042ffff -34870e8,94c00 -34870ec,491025 -34870f0,afa20014 -34870f4,afbd0018 -34870f8,27a50018 -34870fc,8c820008 -3487100,24430008 -3487104,ac830008 -3487108,8fa30018 -348710c,8c670004 -3487110,8c660000 -3487114,ac470004 -3487118,ac460000 -348711c,24620008 -3487120,1445fff6 -3487124,afa20018 -3487128,3e00008 -348712c,27bd0020 -3487130,27bdffa0 -3487134,afbf005c -3487138,afb10058 -348713c,afb00054 -3487140,afa00010 -3487144,3c0201a0 -3487148,24422000 -348714c,afa20014 -3487150,3c110003 -3487154,362295c0 -3487158,afa20018 -348715c,c102709 -3487160,27a40010 -3487164,afa0001c -3487168,3c020084 -348716c,24426000 -3487170,afa20020 -3487174,3402b400 -3487178,afa20024 -348717c,c102709 -3487180,27a4001c -3487184,afa00028 -3487188,3c02007b -348718c,3442d000 -3487190,afa2002c -3487194,3c100008 -3487198,361088a0 -348719c,afb00030 -34871a0,c102709 -34871a4,27a40028 -34871a8,afa00034 -34871ac,3c0201a3 -34871b0,3442c000 -34871b4,afa20038 -34871b8,24023b00 -34871bc,afa2003c -34871c0,c102709 -34871c4,27a40034 -34871c8,afa00040 -34871cc,3c020085 -34871d0,3442e000 -34871d4,afa20044 -34871d8,24021d80 -34871dc,afa20048 -34871e0,c102709 -34871e4,27a40040 -34871e8,8fa20010 -34871ec,2631a300 -34871f0,518821 -34871f4,3c038041 -34871f8,ac71a0d8 -34871fc,24422980 -3487200,3c038041 -3487204,ac62a0c8 -3487208,8fa20028 -348720c,3c038041 -3487210,ac62a0b8 -3487214,3c038041 -3487218,8fa4001c -348721c,ac64a0a8 -3487220,3c048041 -3487224,3c038041 -3487228,2463d780 -348722c,ac83a088 -3487230,3c048041 -3487234,3c038041 -3487238,2463df80 -348723c,ac83a078 -3487240,2610f7a0 -3487244,501021 -3487248,3c038041 -348724c,ac62a068 -3487250,8fa20034 -3487254,24441e00 -3487258,3c038041 -348725c,ac64a058 -3487260,244435c0 -3487264,3c038041 -3487268,ac64a048 -348726c,8fa30040 -3487270,24631980 -3487274,3c048041 -3487278,ac83a038 -348727c,3c038041 -3487280,ac62a028 -3487284,3c118041 -3487288,c101b9a -348728c,2624a098 -3487290,408025 -3487294,c1026fa -3487298,402025 -348729c,104fc2 -34872a0,1304821 -34872a4,2a100002 -34872a8,16000018 -34872ac,ae22a098 -34872b0,94843 -34872b4,3c038041 -34872b8,2463c2b8 -34872bc,2025 -34872c0,3025 -34872c4,2204025 -34872c8,2407fff0 -34872cc,8d05a098 -34872d0,a42821 -34872d4,90620000 -34872d8,21102 -34872dc,471025 -34872e0,a0a20000 -34872e4,8d02a098 -34872e8,441021 -34872ec,90650000 -34872f0,a72825 -34872f4,a0450001 -34872f8,24c60001 -34872fc,24630001 -3487300,c9102a -3487304,1440fff1 -3487308,24840002 -348730c,8fbf005c -3487310,8fb10058 -3487314,8fb00054 -3487318,3e00008 -348731c,27bd0060 -3487320,3c038040 -3487324,9462084e -3487328,2463084e -348732c,94640002 -3487330,94630004 -3487334,3c058041 -3487338,8ca5b1a0 -348733c,a4a20000 -3487340,a4a40002 -3487344,a4a30004 -3487348,3c058041 -348734c,8ca6b19c -3487350,a4c20000 -3487354,8ca5b19c -3487358,a4a40004 -348735c,a4a30008 -3487360,240500ff -3487364,1445000a -3487368,3c058041 -348736c,24050046 -3487370,14850007 -3487374,3c058041 -3487378,24050032 -348737c,14650004 -3487380,3c058041 -3487384,1825 -3487388,2025 -348738c,240200c8 -3487390,8ca5b198 -3487394,a4a20000 -3487398,a4a40002 -348739c,a4a30004 -34873a0,3c058041 -34873a4,8ca5b194 -34873a8,a4a20000 -34873ac,a4a40002 -34873b0,a4a30004 -34873b4,3c028041 -34873b8,8c43b190 -34873bc,3c028040 -34873c0,94450854 -34873c4,24420854 -34873c8,94440002 -34873cc,94420004 -34873d0,a4650000 -34873d4,a4640002 -34873d8,a4620004 -34873dc,3c028041 -34873e0,8c43b18c -34873e4,3c028040 -34873e8,9445085a -34873ec,2442085a -34873f0,94440002 -34873f4,94420004 -34873f8,a4650000 -34873fc,a4640002 -3487400,a4620004 -3487404,3c028041 -3487408,8c43b188 -348740c,3c028040 -3487410,94450860 -3487414,24420860 -3487418,94440002 -348741c,94420004 -3487420,a4650000 -3487424,a4640002 -3487428,a4620004 -348742c,3c028041 -3487430,8c42b184 -3487434,3c068040 -3487438,94c30872 -348743c,a4430000 -3487440,3c028041 -3487444,8c43b180 -3487448,24c20872 -348744c,94440002 -3487450,a4640000 -3487454,3c038041 -3487458,8c63b17c -348745c,94440004 -3487460,a4640000 -3487464,3c038041 -3487468,8c63b178 -348746c,3c058040 -3487470,94a40878 -3487474,a4640000 -3487478,3c038041 -348747c,8c64b174 -3487480,24a30878 -3487484,94670002 -3487488,a4870000 -348748c,3c048041 -3487490,8c84b170 -3487494,94670004 -3487498,a4870000 -348749c,3c048041 -34874a0,8c84b16c -34874a4,94c80872 -34874a8,94470002 -34874ac,94460004 -34874b0,a4880000 -34874b4,a4870002 -34874b8,a4860004 -34874bc,3c048041 -34874c0,8c84b15c -34874c4,94a60878 -34874c8,94650002 -34874cc,94630004 -34874d0,a4860000 -34874d4,a4850002 -34874d8,a4830004 -34874dc,94420002 -34874e0,3043ffff -34874e4,2c6300ce -34874e8,50600001 -34874ec,240200cd -34874f0,24420032 -34874f4,3047ffff -34874f8,3c028040 -34874fc,94420876 -3487500,3043ffff -3487504,2c6300ce -3487508,50600001 -348750c,240200cd -3487510,24420032 -3487514,3046ffff -3487518,3c028040 -348751c,94420878 -3487520,3043ffff -3487524,2c6300ce -3487528,50600001 -348752c,240200cd -3487530,24420032 -3487534,3044ffff -3487538,3c028040 -348753c,9442087a -3487540,3043ffff -3487544,2c6300ce -3487548,50600001 -348754c,240200cd -3487550,24420032 -3487554,3043ffff -3487558,3c028040 -348755c,9442087c -3487560,3045ffff -3487564,2ca500ce -3487568,50a00001 -348756c,240200cd -3487570,24420032 -3487574,3c058041 -3487578,8ca8b168 -348757c,3c058040 -3487580,94a50872 -3487584,30a9ffff -3487588,2d2900ce -348758c,15200002 -3487590,3042ffff -3487594,240500cd -3487598,24a50032 -348759c,a5050000 -34875a0,a5070002 -34875a4,a5060004 -34875a8,3c058041 -34875ac,8ca5b158 -34875b0,a4a40000 -34875b4,a4a30002 -34875b8,a4a20004 -34875bc,3c028041 -34875c0,8c43b160 -34875c4,3c028040 -34875c8,94450872 -34875cc,24420872 -34875d0,94440002 -34875d4,94420004 -34875d8,a4650000 -34875dc,a4640002 -34875e0,a4620004 -34875e4,3c028041 -34875e8,8c43b150 -34875ec,3c028040 -34875f0,94450878 -34875f4,24420878 -34875f8,94440002 -34875fc,94420004 -3487600,a4650000 -3487604,a4640002 -3487608,a4620004 -348760c,3c028041 -3487610,8c43b14c -3487614,3c028040 -3487618,94460866 -348761c,24440866 -3487620,94850002 -3487624,94840004 -3487628,a4660000 -348762c,a4650002 -3487630,a4640004 -3487634,94420866 -3487638,3043ffff -348763c,2c6300ce -3487640,50600001 -3487644,240200cd -3487648,24420032 -348764c,3044ffff -3487650,3c028040 -3487654,94420868 -3487658,3043ffff -348765c,2c6300ce -3487660,50600001 -3487664,240200cd -3487668,24420032 -348766c,3043ffff -3487670,3c028040 -3487674,9442086a -3487678,3045ffff -348767c,2ca500ce -3487680,50a00001 -3487684,240200cd -3487688,24420032 -348768c,3042ffff -3487690,3c058041 -3487694,8ca5b148 -3487698,a4a40000 -348769c,a4a30002 -34876a0,a4a20004 -34876a4,3c058041 -34876a8,8ca5b140 -34876ac,a4a40000 -34876b0,a4a30002 -34876b4,3e00008 -34876b8,a4a20004 -34876bc,3c028011 -34876c0,3442a5d0 -34876c4,8c4200a0 -34876c8,21302 -34876cc,30420003 -34876d0,21840 -34876d4,621821 -34876d8,3c028041 -34876dc,24429e60 -34876e0,621821 -34876e4,90640000 -34876e8,42600 -34876ec,90620001 -34876f0,21400 -34876f4,822021 -34876f8,90620002 -34876fc,21200 -3487700,3e00008 -3487704,821021 -3487708,3c028041 -348770c,9042b200 -3487710,3e00008 -3487714,2102b -3487718,3c038041 -348771c,9062b200 -3487720,24420001 -3487724,3e00008 -3487728,a062b200 -348772c,3c028041 -3487730,9042b200 -3487734,1040001b -3487738,2442ffff -348773c,27bdffd8 -3487740,afbf0024 -3487744,afb10020 -3487748,afb0001c -348774c,3c038041 -3487750,a062b200 -3487754,3c108038 -3487758,3610e578 -348775c,24050014 -3487760,3c11801d -3487764,200f809 -3487768,3624aa30 -348776c,24020014 -3487770,afa20014 -3487774,afa00010 -3487778,26100130 -348777c,3825 -3487780,24060003 -3487784,3625aa30 -3487788,200f809 -348778c,262484a0 -3487790,8fbf0024 -3487794,8fb10020 -3487798,8fb0001c -348779c,3e00008 -34877a0,27bd0028 -34877a4,3e00008 -34877ac,3e00008 -34877b4,24020140 -34877b8,3e00008 -34877bc,a4821424 -34877c0,27bdffe0 -34877c4,afbf001c -34877c8,afb10018 -34877cc,afb00014 -34877d0,808025 -34877d4,8c8208c4 -34877d8,24420001 -34877dc,c102598 -34877e0,ac8208c4 -34877e4,3c028041 -34877e8,9442b1b2 -34877ec,8e0308c4 -34877f0,1462001e -34877f4,8fbf001c -34877f8,920200b2 -34877fc,34420001 -3487800,a20200b2 -3487804,3c04801c -3487808,348484a0 -348780c,3c110001 -3487810,918821 -3487814,86221e1a -3487818,ae020000 -348781c,948200a4 -3487820,a6020066 -3487824,3c108009 -3487828,3602d894 -348782c,40f809 -3487830,261005d4 -3487834,3c04a34b -3487838,200f809 -348783c,3484e820 -3487840,3c028011 -3487844,3442a5d0 -3487848,2403fff8 -348784c,a4431412 -3487850,240200a0 -3487854,a6221e1a -3487858,24020014 -348785c,a2221e15 -3487860,24020001 -3487864,a2221e5e -3487868,8fbf001c -348786c,8fb10018 -3487870,8fb00014 -3487874,3e00008 -3487878,27bd0020 -348787c,8c8200a0 -3487880,34423000 -3487884,ac8200a0 -3487888,3c028041 -348788c,9042b203 -3487890,304200ff -3487894,10400005 -3487898,52840 -348789c,3c028010 -34878a0,451021 -34878a4,94428cec -34878a8,a4820034 -34878ac,3e00008 -34878b4,24020001 -34878b8,3e00008 -34878bc,a082003e -34878c0,24020012 -34878c4,2406ffff -34878c8,24070016 -34878cc,821821 -34878d0,80630074 -34878d4,54660004 -34878d8,24420001 -34878dc,822021 -34878e0,3e00008 -34878e4,a0850074 -34878e8,1447fff9 -34878ec,821821 -34878f0,3e00008 -34878f8,862021 -34878fc,908200a8 -3487900,a22825 -3487904,3e00008 -3487908,a08500a8 -348790c,852021 -3487910,908200bc -3487914,21e00 -3487918,31e03 -348791c,4620001 -3487920,1025 -3487924,24420001 -3487928,3e00008 -348792c,a08200bc -3487930,24020001 -3487934,a082003d -3487938,24020014 -348793c,a08200cf -3487940,24020140 -3487944,3e00008 -3487948,a4821424 -348794c,24020001 -3487950,a0820032 -3487954,a082003a -3487958,24020030 -348795c,a48213f4 -3487960,3e00008 -3487964,a0820033 -3487968,24020002 -348796c,a0820032 -3487970,24020001 -3487974,a082003a -3487978,a082003c -348797c,24020060 -3487980,a48213f4 -3487984,3e00008 -3487988,a0820033 -348798c,24020007 -3487990,3e00008 -3487994,a082007b -3487998,24020001 -348799c,a21004 -34879a0,8c8500a4 -34879a4,a22825 -34879a8,3e00008 -34879ac,ac8500a4 -34879b0,27bdffe8 -34879b4,afbf0014 -34879b8,c101dc6 -34879c0,8fbf0014 -34879c4,3e00008 -34879c8,27bd0018 -34879cc,24020010 -34879d0,a0820082 -34879d4,9082009a -34879d8,2442000a -34879dc,3e00008 -34879e0,a082009a -34879e4,3c028041 -34879e8,9042b203 -34879ec,304200ff -34879f0,10400005 -34879f4,52840 -34879f8,3c028010 -34879fc,451021 -3487a00,94428cec -3487a04,a4820034 +3486df0,a0430025 +3486df4,3025 +3486df8,96050002 +3486dfc,3c11801c +3486e00,3c02800d +3486e04,3442ce14 +3486e08,40f809 +3486e0c,362484a0 +3486e10,92050001 +3486e14,3c028006 +3486e18,3442fdcc +3486e1c,40f809 +3486e20,362484a0 +3486e24,c101efb +3486e28,2002025 +3486e2c,10000013 +3486e30,8fbf0024 +3486e34,3025 +3486e38,96050002 +3486e3c,3c04801c +3486e40,3c02800d +3486e44,3442ce14 +3486e48,40f809 +3486e4c,348484a0 +3486e50,c101a2e +3486e54,27a40010 +3486e58,10000008 +3486e5c,8fbf0024 +3486e60,c101ee3 +3486e64,2404005b +3486e68,c101ed4 +3486e6c,402025 +3486e70,408025 +3486e74,1000ffdb +3486e78,ae200134 +3486e7c,8fb20020 +3486e80,8fb1001c +3486e84,8fb00018 +3486e88,3e00008 +3486e8c,27bd0028 +3486e90,27bdffe8 +3486e94,afbf0014 +3486e98,afb00010 +3486e9c,3c028011 +3486ea0,3442a5d0 +3486ea4,94500eec +3486ea8,32100002 +3486eac,1600000c +3486eb0,3c028040 +3486eb4,90420cd5 +3486eb8,50400004 +3486ebc,3c028011 +3486ec0,c101a68 +3486ec4,24040002 +3486ec8,3c028011 +3486ecc,3442a5d0 +3486ed0,94430eec +3486ed4,34630002 +3486ed8,a4430eec +3486edc,3c028040 +3486ee0,90430cd5 +3486ee4,14600002 +3486ee8,24020001 +3486eec,10102b +3486ef0,8fbf0014 +3486ef4,8fb00010 +3486ef8,3e00008 +3486efc,27bd0018 +3486f00,94830004 +3486f04,94820006 +3486f08,620018 +3486f0c,9082000c +3486f10,1812 +3486f1c,620018 +3486f20,1012 +3486f24,3e00008 +3486f2c,27bdffe8 +3486f30,afbf0014 +3486f34,afb00010 +3486f38,c101bc0 +3486f3c,808025 +3486f40,96030008 +3486f44,620018 +3486f48,1012 +3486f4c,8fbf0014 +3486f50,8fb00010 +3486f54,3e00008 +3486f58,27bd0018 +3486f5c,27bdff98 +3486f60,afbf0064 +3486f64,afb60060 +3486f68,afb5005c +3486f6c,afb40058 +3486f70,afb30054 +3486f74,afb20050 +3486f78,afb1004c +3486f7c,afb00048 +3486f80,808025 +3486f84,a0a025 +3486f88,c0a825 +3486f8c,94b10004 +3486f90,94a20006 +3486f94,470018 +3486f98,9012 +3486f9c,90b6000b +3486fa0,90b3000a +3486fa4,139d40 +3486fa8,3c0200e0 +3486fac,2629824 +3486fb0,1614c0 +3486fb4,3c030018 +3486fb8,431024 +3486fbc,2629825 +3486fc0,2622ffff +3486fc4,30420fff +3486fc8,531025 +3486fcc,3c03fd00 +3486fd0,431025 +3486fd4,afa20010 +3486fd8,c101bc0 +3486fdc,a02025 +3486fe0,550018 +3486fe4,8e820000 +3486fe8,1812 +3486fec,431021 +3486ff0,afa20014 +3486ff4,2ec30002 +3486ff8,10600003 +3486ffc,24020010 +3487000,24020004 +3487004,2c21004 +3487008,510018 +348700c,1812 +3487010,2463003f +3487014,317c3 +3487018,3042003f +348701c,431021 +3487020,210c0 +3487024,3c030003 +3487028,3463fe00 +348702c,431024 +3487030,531025 +3487034,3c03f500 +3487038,431025 +348703c,afa20018 +3487040,3c040700 +3487044,afa4001c +3487048,3c03e600 +348704c,afa30020 +3487050,afa00024 +3487054,3c03f400 +3487058,afa30028 +348705c,2623ffff +3487060,31b80 +3487064,3c0500ff +3487068,34a5f000 +348706c,651824 +3487070,2652ffff +3487074,129080 +3487078,32520ffc +348707c,721825 +3487080,642025 +3487084,afa4002c +3487088,3c04e700 +348708c,afa40030 +3487090,afa00034 +3487094,afa20038 +3487098,afa0003c +348709c,3c02f200 +34870a0,afa20040 +34870a4,afa30044 +34870a8,27a20010 +34870ac,27a60048 +34870b0,8e030008 +34870b4,24640008 +34870b8,ae040008 +34870bc,8c450004 +34870c0,8c440000 +34870c4,ac650004 +34870c8,24420008 +34870cc,1446fff8 +34870d0,ac640000 +34870d4,8fbf0064 +34870d8,8fb60060 +34870dc,8fb5005c +34870e0,8fb40058 +34870e4,8fb30054 +34870e8,8fb20050 +34870ec,8fb1004c +34870f0,8fb00048 +34870f4,3e00008 +34870f8,27bd0068 +34870fc,27bdffe0 +3487100,8fa80030 +3487104,8fa20034 +3487108,8faa0038 +348710c,94a30004 +3487110,31a80 +3487114,14400002 +3487118,62001a +348711c,7000d +3487120,4812 +3487124,94a30006 +3487128,471021 +348712c,21380 +3487130,3c0b00ff +3487134,356bf000 +3487138,4b1024 +348713c,1482821 +3487140,52880 +3487144,30a50fff +3487148,451025 +348714c,3c05e400 +3487150,451025 +3487154,afa20000 +3487158,73b80 +348715c,eb3824 +3487160,84080 +3487164,31080fff +3487168,e83825 +348716c,afa70004 +3487170,3c02e100 +3487174,afa20008 +3487178,660018 +348717c,1012 +3487180,21140 +3487184,3042ffff +3487188,afa2000c +348718c,3c02f100 +3487190,afa20010 +3487194,31a80 +3487198,15400002 +348719c,6a001a +34871a0,7000d +34871a4,1012 +34871a8,3042ffff +34871ac,94c00 +34871b0,491025 +34871b4,afa20014 +34871b8,afbd0018 +34871bc,27a50018 +34871c0,8c820008 +34871c4,24430008 +34871c8,ac830008 +34871cc,8fa30018 +34871d0,8c670004 +34871d4,8c660000 +34871d8,ac470004 +34871dc,ac460000 +34871e0,24620008 +34871e4,1445fff6 +34871e8,afa20018 +34871ec,3e00008 +34871f0,27bd0020 +34871f4,27bdffa0 +34871f8,afbf005c +34871fc,afb10058 +3487200,afb00054 +3487204,afa00010 +3487208,3c0201a0 +348720c,24422000 +3487210,afa20014 +3487214,3c110003 +3487218,362295c0 +348721c,afa20018 +3487220,c102749 +3487224,27a40010 +3487228,afa0001c +348722c,3c020084 +3487230,24426000 +3487234,afa20020 +3487238,3402b400 +348723c,afa20024 +3487240,c102749 +3487244,27a4001c +3487248,afa00028 +348724c,3c02007b +3487250,3442d000 +3487254,afa2002c +3487258,3c100008 +348725c,361088a0 +3487260,afb00030 +3487264,c102749 +3487268,27a40028 +348726c,afa00034 +3487270,3c0201a3 +3487274,3442c000 +3487278,afa20038 +348727c,24023b00 +3487280,afa2003c +3487284,c102749 +3487288,27a40034 +348728c,afa00040 +3487290,3c020085 +3487294,3442e000 +3487298,afa20044 +348729c,24021d80 +34872a0,afa20048 +34872a4,c102749 +34872a8,27a40040 +34872ac,8fa20010 +34872b0,2631a300 +34872b4,518821 +34872b8,3c038041 +34872bc,ac71a458 +34872c0,24422980 +34872c4,3c038041 +34872c8,ac62a448 +34872cc,8fa20028 +34872d0,3c038041 +34872d4,ac62a438 +34872d8,3c038041 +34872dc,8fa4001c +34872e0,ac64a428 +34872e4,3c048041 +34872e8,3c038041 +34872ec,2463db08 +34872f0,ac83a408 +34872f4,3c048041 +34872f8,3c038041 +34872fc,2463e308 +3487300,ac83a3f8 +3487304,2610f7a0 +3487308,501021 +348730c,3c038041 +3487310,ac62a3e8 +3487314,8fa20034 +3487318,24441e00 +348731c,3c038041 +3487320,ac64a3d8 +3487324,244435c0 +3487328,3c038041 +348732c,ac64a3c8 +3487330,8fa30040 +3487334,24631980 +3487338,3c048041 +348733c,ac83a3b8 +3487340,3c038041 +3487344,ac62a3a8 +3487348,3c118041 +348734c,c101bcb +3487350,2624a418 +3487354,408025 +3487358,c10273a +348735c,402025 +3487360,104fc2 +3487364,1304821 +3487368,2a100002 +348736c,16000018 +3487370,ae22a418 +3487374,94843 +3487378,3c038041 +348737c,2463c640 +3487380,2025 +3487384,3025 +3487388,2204025 +348738c,2407fff0 +3487390,8d05a418 +3487394,a42821 +3487398,90620000 +348739c,21102 +34873a0,471025 +34873a4,a0a20000 +34873a8,8d02a418 +34873ac,441021 +34873b0,90650000 +34873b4,a72825 +34873b8,a0450001 +34873bc,24c60001 +34873c0,24630001 +34873c4,c9102a +34873c8,1440fff1 +34873cc,24840002 +34873d0,8fbf005c +34873d4,8fb10058 +34873d8,8fb00054 +34873dc,3e00008 +34873e0,27bd0060 +34873e4,3c038040 +34873e8,9462084e +34873ec,2463084e +34873f0,94640002 +34873f4,94630004 +34873f8,3c058041 +34873fc,8ca5b520 +3487400,a4a20000 +3487404,a4a40002 +3487408,a4a30004 +348740c,3c058041 +3487410,8ca6b51c +3487414,a4c20000 +3487418,8ca5b51c +348741c,a4a40004 +3487420,a4a30008 +3487424,240500ff +3487428,1445000a +348742c,3c058041 +3487430,24050046 +3487434,14850007 +3487438,3c058041 +348743c,24050032 +3487440,14650004 +3487444,3c058041 +3487448,1825 +348744c,2025 +3487450,240200c8 +3487454,8ca5b518 +3487458,a4a20000 +348745c,a4a40002 +3487460,a4a30004 +3487464,3c058041 +3487468,8ca5b514 +348746c,a4a20000 +3487470,a4a40002 +3487474,a4a30004 +3487478,3c028041 +348747c,8c43b510 +3487480,3c028040 +3487484,94450854 +3487488,24420854 +348748c,94440002 +3487490,94420004 +3487494,a4650000 +3487498,a4640002 +348749c,a4620004 +34874a0,3c028041 +34874a4,8c43b50c +34874a8,3c028040 +34874ac,9445085a +34874b0,2442085a +34874b4,94440002 +34874b8,94420004 +34874bc,a4650000 +34874c0,a4640002 +34874c4,a4620004 +34874c8,3c028041 +34874cc,8c43b508 +34874d0,3c028040 +34874d4,94450860 +34874d8,24420860 +34874dc,94440002 +34874e0,94420004 +34874e4,a4650000 +34874e8,a4640002 +34874ec,a4620004 +34874f0,3c028041 +34874f4,8c42b504 +34874f8,3c068040 +34874fc,94c30872 +3487500,a4430000 +3487504,3c028041 +3487508,8c43b500 +348750c,24c20872 +3487510,94440002 +3487514,a4640000 +3487518,3c038041 +348751c,8c63b4fc +3487520,94440004 +3487524,a4640000 +3487528,3c038041 +348752c,8c63b4f8 +3487530,3c058040 +3487534,94a40878 +3487538,a4640000 +348753c,3c038041 +3487540,8c64b4f4 +3487544,24a30878 +3487548,94670002 +348754c,a4870000 +3487550,3c048041 +3487554,8c84b4f0 +3487558,94670004 +348755c,a4870000 +3487560,3c048041 +3487564,8c84b4ec +3487568,94c80872 +348756c,94470002 +3487570,94460004 +3487574,a4880000 +3487578,a4870002 +348757c,a4860004 +3487580,3c048041 +3487584,8c84b4dc +3487588,94a60878 +348758c,94650002 +3487590,94630004 +3487594,a4860000 +3487598,a4850002 +348759c,a4830004 +34875a0,94420002 +34875a4,3043ffff +34875a8,2c6300ce +34875ac,50600001 +34875b0,240200cd +34875b4,24420032 +34875b8,3047ffff +34875bc,3c028040 +34875c0,94420876 +34875c4,3043ffff +34875c8,2c6300ce +34875cc,50600001 +34875d0,240200cd +34875d4,24420032 +34875d8,3046ffff +34875dc,3c028040 +34875e0,94420878 +34875e4,3043ffff +34875e8,2c6300ce +34875ec,50600001 +34875f0,240200cd +34875f4,24420032 +34875f8,3044ffff +34875fc,3c028040 +3487600,9442087a +3487604,3043ffff +3487608,2c6300ce +348760c,50600001 +3487610,240200cd +3487614,24420032 +3487618,3043ffff +348761c,3c028040 +3487620,9442087c +3487624,3045ffff +3487628,2ca500ce +348762c,50a00001 +3487630,240200cd +3487634,24420032 +3487638,3c058041 +348763c,8ca8b4e8 +3487640,3c058040 +3487644,94a50872 +3487648,30a9ffff +348764c,2d2900ce +3487650,15200002 +3487654,3042ffff +3487658,240500cd +348765c,24a50032 +3487660,a5050000 +3487664,a5070002 +3487668,a5060004 +348766c,3c058041 +3487670,8ca5b4d8 +3487674,a4a40000 +3487678,a4a30002 +348767c,a4a20004 +3487680,3c028041 +3487684,8c43b4e0 +3487688,3c028040 +348768c,94450872 +3487690,24420872 +3487694,94440002 +3487698,94420004 +348769c,a4650000 +34876a0,a4640002 +34876a4,a4620004 +34876a8,3c028041 +34876ac,8c43b4d0 +34876b0,3c028040 +34876b4,94450878 +34876b8,24420878 +34876bc,94440002 +34876c0,94420004 +34876c4,a4650000 +34876c8,a4640002 +34876cc,a4620004 +34876d0,3c028041 +34876d4,8c43b4cc +34876d8,3c028040 +34876dc,94460866 +34876e0,24440866 +34876e4,94850002 +34876e8,94840004 +34876ec,a4660000 +34876f0,a4650002 +34876f4,a4640004 +34876f8,94420866 +34876fc,3043ffff +3487700,2c6300ce +3487704,50600001 +3487708,240200cd +348770c,24420032 +3487710,3044ffff +3487714,3c028040 +3487718,94420868 +348771c,3043ffff +3487720,2c6300ce +3487724,50600001 +3487728,240200cd +348772c,24420032 +3487730,3043ffff +3487734,3c028040 +3487738,9442086a +348773c,3045ffff +3487740,2ca500ce +3487744,50a00001 +3487748,240200cd +348774c,24420032 +3487750,3042ffff +3487754,3c058041 +3487758,8ca5b4c8 +348775c,a4a40000 +3487760,a4a30002 +3487764,a4a20004 +3487768,3c058041 +348776c,8ca5b4c0 +3487770,a4a40000 +3487774,a4a30002 +3487778,3e00008 +348777c,a4a20004 +3487780,3c028011 +3487784,3442a5d0 +3487788,8c4200a0 +348778c,21302 +3487790,30420003 +3487794,21840 +3487798,621821 +348779c,3c028041 +34877a0,2442a1a0 +34877a4,621821 +34877a8,90640000 +34877ac,42600 +34877b0,90620001 +34877b4,21400 +34877b8,822021 +34877bc,90620002 +34877c0,21200 +34877c4,3e00008 +34877c8,821021 +34877cc,3c028041 +34877d0,9042b584 +34877d4,3e00008 +34877d8,2102b +34877dc,3c038041 +34877e0,9062b584 +34877e4,24420001 +34877e8,3e00008 +34877ec,a062b584 +34877f0,3c028041 +34877f4,9042b584 +34877f8,1040001b +34877fc,2442ffff +3487800,27bdffd8 +3487804,afbf0024 +3487808,afb10020 +348780c,afb0001c +3487810,3c038041 +3487814,a062b584 +3487818,3c108038 +348781c,3610e578 +3487820,24050014 +3487824,3c11801d +3487828,200f809 +348782c,3624aa30 +3487830,24020014 +3487834,afa20014 +3487838,afa00010 +348783c,26100130 +3487840,3825 +3487844,24060003 +3487848,3625aa30 +348784c,200f809 +3487850,262484a0 +3487854,8fbf0024 +3487858,8fb10020 +348785c,8fb0001c +3487860,3e00008 +3487864,27bd0028 +3487868,3e00008 +3487870,3e00008 +3487878,24020140 +348787c,3e00008 +3487880,a4821424 +3487884,27bdffe0 +3487888,afbf001c +348788c,afb10018 +3487890,afb00014 +3487894,808025 +3487898,8c8208c4 +348789c,24420001 +34878a0,c1025d8 +34878a4,ac8208c4 +34878a8,3c028041 +34878ac,9442b532 +34878b0,8e0308c4 +34878b4,1462001e +34878b8,8fbf001c +34878bc,920200b2 +34878c0,34420001 +34878c4,a20200b2 +34878c8,3c04801c +34878cc,348484a0 +34878d0,3c110001 +34878d4,918821 +34878d8,86221e1a +34878dc,ae020000 +34878e0,948200a4 +34878e4,a6020066 +34878e8,3c108009 +34878ec,3602d894 +34878f0,40f809 +34878f4,261005d4 +34878f8,3c04a34b +34878fc,200f809 +3487900,3484e820 +3487904,3c028011 +3487908,3442a5d0 +348790c,2403fff8 +3487910,a4431412 +3487914,240200a0 +3487918,a6221e1a +348791c,24020014 +3487920,a2221e15 +3487924,24020001 +3487928,a2221e5e +348792c,8fbf001c +3487930,8fb10018 +3487934,8fb00014 +3487938,3e00008 +348793c,27bd0020 +3487940,8c8200a0 +3487944,34423000 +3487948,ac8200a0 +348794c,3c028041 +3487950,9042b587 +3487954,304200ff +3487958,10400005 +348795c,52840 +3487960,3c028010 +3487964,451021 +3487968,94428cec +348796c,a4820034 +3487970,3e00008 +3487978,24020001 +348797c,3e00008 +3487980,a082003e +3487984,24020012 +3487988,2406ffff +348798c,24070016 +3487990,821821 +3487994,80630074 +3487998,54660004 +348799c,24420001 +34879a0,822021 +34879a4,3e00008 +34879a8,a0850074 +34879ac,1447fff9 +34879b0,821821 +34879b4,3e00008 +34879bc,862021 +34879c0,908200a8 +34879c4,a22825 +34879c8,3e00008 +34879cc,a08500a8 +34879d0,852021 +34879d4,908200bc +34879d8,21e00 +34879dc,31e03 +34879e0,4620001 +34879e4,1025 +34879e8,24420001 +34879ec,3e00008 +34879f0,a08200bc +34879f4,24020001 +34879f8,a082003d +34879fc,24020014 +3487a00,a08200cf +3487a04,24020140 3487a08,3e00008 -3487a10,3c028041 -3487a14,9042b202 -3487a18,1040000c -3487a1c,3c028041 -3487a20,94820f06 -3487a24,34420040 -3487a28,a4820f06 -3487a2c,3c028041 -3487a30,9042b201 -3487a34,54400009 -3487a38,94820f06 -3487a3c,94820ef4 -3487a40,3042fb87 -3487a44,3e00008 -3487a48,a4820ef4 -3487a4c,9042b201 -3487a50,1040000c -3487a58,94820f06 -3487a5c,34420080 -3487a60,a4820f06 -3487a64,94820ef6 -3487a68,24038f00 -3487a6c,431025 -3487a70,a4820ef6 -3487a74,94820ee4 -3487a78,2403f000 -3487a7c,431025 -3487a80,a4820ee4 -3487a84,3e00008 -3487a8c,2c8200cd -3487a90,1040000b -3487a94,41880 -3487a98,641021 -3487a9c,21080 -3487aa0,3c058041 -3487aa4,24a5a110 -3487aa8,a21021 -3487aac,80430000 -3487ab0,3182b -3487ab4,31823 -3487ab8,3e00008 -3487abc,431024 -3487ac0,3e00008 -3487ac4,1025 -3487ac8,27bdffe0 -3487acc,afbf001c -3487ad0,afb20018 -3487ad4,afb10014 -3487ad8,afb00010 -3487adc,808025 -3487ae0,3c128011 -3487ae4,3652a5d0 -3487ae8,c101ea3 -3487aec,2002025 -3487af0,2008825 -3487af4,8c420008 -3487af8,2002825 -3487afc,40f809 -3487b00,2402025 -3487b04,1622fff8 -3487b08,408025 -3487b0c,2201025 -3487b10,8fbf001c -3487b14,8fb20018 -3487b18,8fb10014 -3487b1c,8fb00010 -3487b20,3e00008 -3487b24,27bd0020 -3487b28,27bdffe8 -3487b2c,afbf0014 -3487b30,8c82000c -3487b34,84860012 -3487b38,84850010 -3487b3c,3c048011 -3487b40,40f809 -3487b44,3484a5d0 -3487b48,8fbf0014 -3487b4c,3e00008 -3487b50,27bd0018 -3487b54,3e00008 -3487b58,a01025 -3487b5c,8082007d -3487b60,21027 -3487b64,2102b -3487b68,3e00008 -3487b6c,24420008 -3487b70,8c8200a0 -3487b74,21182 -3487b78,30420007 -3487b7c,10400005 -3487b84,38420001 -3487b88,2102b -3487b8c,3e00008 -3487b90,24420035 -3487b94,3e00008 -3487b98,24020054 -3487b9c,8c8200a0 -3487ba0,210c2 -3487ba4,30420007 -3487ba8,10400005 -3487bb0,38420001 -3487bb4,2102b -3487bb8,3e00008 -3487bbc,24420033 -3487bc0,3e00008 -3487bc4,24020032 -3487bc8,8c8200a0 -3487bcc,30420007 -3487bd0,10400005 -3487bd8,38420001 -3487bdc,2102b -3487be0,3e00008 -3487be4,24420030 -3487be8,3e00008 -3487bec,24020004 -3487bf0,8c8300a0 -3487bf4,31b82 -3487bf8,30630007 -3487bfc,10600005 -3487c00,24040001 -3487c04,14640004 -3487c08,2402007b -3487c0c,3e00008 -3487c10,24020060 -3487c14,24020005 +3487a0c,a4821424 +3487a10,24020001 +3487a14,a0820032 +3487a18,a082003a +3487a1c,24020030 +3487a20,a48213f4 +3487a24,3e00008 +3487a28,a0820033 +3487a2c,24020002 +3487a30,a0820032 +3487a34,24020001 +3487a38,a082003a +3487a3c,a082003c +3487a40,24020060 +3487a44,a48213f4 +3487a48,3e00008 +3487a4c,a0820033 +3487a50,24020007 +3487a54,3e00008 +3487a58,a082007b +3487a5c,24020001 +3487a60,a21004 +3487a64,8c8500a4 +3487a68,a22825 +3487a6c,3e00008 +3487a70,ac8500a4 +3487a74,27bdffe8 +3487a78,afbf0014 +3487a7c,c101df7 +3487a84,8fbf0014 +3487a88,3e00008 +3487a8c,27bd0018 +3487a90,24020010 +3487a94,a0820082 +3487a98,9082009a +3487a9c,2442000a +3487aa0,3e00008 +3487aa4,a082009a +3487aa8,3c028041 +3487aac,9042b587 +3487ab0,304200ff +3487ab4,10400005 +3487ab8,52840 +3487abc,3c028010 +3487ac0,451021 +3487ac4,94428cec +3487ac8,a4820034 +3487acc,3e00008 +3487ad4,3c028041 +3487ad8,9042b586 +3487adc,1040000c +3487ae0,3c028041 +3487ae4,94820f06 +3487ae8,34420040 +3487aec,a4820f06 +3487af0,3c028041 +3487af4,9042b585 +3487af8,54400009 +3487afc,94820f06 +3487b00,94820ef4 +3487b04,3042fb87 +3487b08,3e00008 +3487b0c,a4820ef4 +3487b10,9042b585 +3487b14,1040000c +3487b1c,94820f06 +3487b20,34420080 +3487b24,a4820f06 +3487b28,94820ef6 +3487b2c,24038f00 +3487b30,431025 +3487b34,a4820ef6 +3487b38,94820ee4 +3487b3c,2403f000 +3487b40,431025 +3487b44,a4820ee4 +3487b48,3e00008 +3487b50,2c8200cd +3487b54,1040000b +3487b58,41880 +3487b5c,641021 +3487b60,21080 +3487b64,3c058041 +3487b68,24a5a490 +3487b6c,a21021 +3487b70,80430000 +3487b74,3182b +3487b78,31823 +3487b7c,3e00008 +3487b80,431024 +3487b84,3e00008 +3487b88,1025 +3487b8c,27bdffe0 +3487b90,afbf001c +3487b94,afb20018 +3487b98,afb10014 +3487b9c,afb00010 +3487ba0,808025 +3487ba4,3c128011 +3487ba8,3652a5d0 +3487bac,c101ed4 +3487bb0,2002025 +3487bb4,2008825 +3487bb8,8c420008 +3487bbc,2002825 +3487bc0,40f809 +3487bc4,2402025 +3487bc8,1622fff8 +3487bcc,408025 +3487bd0,2201025 +3487bd4,8fbf001c +3487bd8,8fb20018 +3487bdc,8fb10014 +3487be0,8fb00010 +3487be4,3e00008 +3487be8,27bd0020 +3487bec,27bdffe8 +3487bf0,afbf0014 +3487bf4,8c82000c +3487bf8,84860012 +3487bfc,84850010 +3487c00,3c048011 +3487c04,40f809 +3487c08,3484a5d0 +3487c0c,8fbf0014 +3487c10,3e00008 +3487c14,27bd0018 3487c18,3e00008 -3487c20,8c8300a0 -3487c24,31b02 -3487c28,30630003 -3487c2c,10600005 -3487c30,24040001 -3487c34,14640004 -3487c38,240200c7 -3487c3c,3e00008 -3487c40,24020046 -3487c44,24020045 -3487c48,3e00008 -3487c50,8c8200a0 -3487c54,21242 -3487c58,30420007 -3487c5c,2102b -3487c60,3e00008 -3487c64,24420037 -3487c68,8c8200a0 -3487c6c,21502 -3487c70,30420007 -3487c74,2c420002 -3487c78,2c420001 +3487c1c,a01025 +3487c20,8082007d +3487c24,21027 +3487c28,2102b +3487c2c,3e00008 +3487c30,24420008 +3487c34,8c8200a0 +3487c38,21182 +3487c3c,30420007 +3487c40,10400005 +3487c48,38420001 +3487c4c,2102b +3487c50,3e00008 +3487c54,24420035 +3487c58,3e00008 +3487c5c,24020054 +3487c60,8c8200a0 +3487c64,210c2 +3487c68,30420007 +3487c6c,10400005 +3487c74,38420001 +3487c78,2102b 3487c7c,3e00008 -3487c80,24420079 -3487c84,8c8200a0 -3487c88,21442 -3487c8c,30420007 -3487c90,2c420002 -3487c94,2c420001 -3487c98,3e00008 -3487c9c,24420077 -3487ca0,9082003a -3487ca4,2102b -3487ca8,3e00008 -3487cac,244200b9 -3487cb0,8083007c -3487cb4,2402ffff -3487cb8,50620007 -3487cbc,2402006b -3487cc0,80830094 -3487cc4,28630006 -3487cc8,10600003 -3487ccc,2402006a +3487c80,24420033 +3487c84,3e00008 +3487c88,24020032 +3487c8c,8c8200a0 +3487c90,30420007 +3487c94,10400005 +3487c9c,38420001 +3487ca0,2102b +3487ca4,3e00008 +3487ca8,24420030 +3487cac,3e00008 +3487cb0,24020004 +3487cb4,8c8300a0 +3487cb8,31b82 +3487cbc,30630007 +3487cc0,10600005 +3487cc4,24040001 +3487cc8,14640004 +3487ccc,2402007b 3487cd0,3e00008 -3487cd4,24020003 -3487cd8,3e00008 -3487ce0,8083007b -3487ce4,2402ffff -3487ce8,10620003 -3487cf0,3e00008 -3487cf4,2402000c -3487cf8,3e00008 -3487cfc,2402003b -3487d00,8c8300a0 -3487d04,30630007 -3487d08,14600002 -3487d0c,a01025 -3487d10,2402004d -3487d14,3e00008 -3487d1c,8c8300a0 -3487d20,30630038 -3487d24,14600002 -3487d28,a01025 -3487d2c,2402004d -3487d30,3e00008 -3487d38,8c8300a0 -3487d3c,3c040001 -3487d40,3484c000 -3487d44,641824 -3487d48,14600002 -3487d4c,a01025 -3487d50,2402004d -3487d54,3e00008 -3487d5c,94820eda -3487d60,30420008 -3487d64,14400010 -3487d6c,80830086 -3487d70,2402001b -3487d74,1062000e -3487d7c,80830087 -3487d80,1062000d -3487d88,80830088 -3487d8c,1062000c -3487d90,2403001b -3487d94,80840089 -3487d98,1483000a -3487d9c,a01025 -3487da0,3e00008 -3487da4,240200c8 -3487da8,3e00008 -3487dac,240200c8 -3487db0,3e00008 -3487db4,240200c8 -3487db8,3e00008 -3487dbc,240200c8 -3487dc0,240200c8 -3487dc4,3e00008 -3487dcc,27bdffe8 -3487dd0,afbf0014 -3487dd4,c1026f5 -3487ddc,c101c4c -3487de4,c10250e -3487dec,c10191d -3487df4,c102321 -3487dfc,8fbf0014 -3487e00,3e00008 -3487e04,27bd0018 -3487e08,27bdffe8 -3487e0c,afbf0014 -3487e10,c101ab3 -3487e18,c100fb0 -3487e20,c102244 -3487e28,c101cc8 -3487e30,c10143d -3487e38,c101904 -3487e40,8fbf0014 -3487e44,3e00008 -3487e48,27bd0018 -3487e4c,27bdffe8 -3487e50,afbf0014 -3487e54,afb00010 -3487e58,3c10801c -3487e5c,361084a0 -3487e60,8e040000 -3487e64,c1011a5 -3487e68,248402a8 -3487e6c,8e040000 -3487e70,c1025a2 -3487e74,248402a8 -3487e78,8fbf0014 -3487e7c,8fb00010 -3487e80,3e00008 -3487e84,27bd0018 -3487e88,27bdffe8 -3487e8c,afbf0014 -3487e90,c10190b -3487e98,c1026f0 -3487ea0,c102334 -3487ea8,c101437 -3487eb0,8fbf0014 -3487eb4,3e00008 -3487eb8,27bd0018 -3487ebc,3c02801c -3487ec0,344284a0 -3487ec4,3c030001 -3487ec8,431021 -3487ecc,84430988 -3487ed0,14600022 -3487ed4,3c02801c -3487ed8,344284a0 -3487edc,3c030001 -3487ee0,431021 -3487ee4,84420992 -3487ee8,14400014 -3487eec,21840 -3487ef0,3c028011 -3487ef4,3442a5d0 -3487ef8,8c420004 -3487efc,14400009 -3487f00,3c028011 -3487f04,3442a5d0 -3487f08,8c4300a0 -3487f0c,3c020001 -3487f10,3442c007 -3487f14,621824 -3487f18,14600026 -3487f1c,24020001 -3487f20,3c028011 -3487f24,3442a5d0 -3487f28,8c4200a0 -3487f2c,21382 -3487f30,30420007 -3487f34,3e00008 -3487f38,2102b -3487f3c,621821 -3487f40,3c028011 -3487f44,3442a5d0 -3487f48,8c4200a0 -3487f4c,621006 -3487f50,30420007 -3487f54,3e00008 -3487f58,2102b -3487f5c,344284a0 -3487f60,3c040001 -3487f64,441021 -3487f68,84440992 -3487f6c,1480000a -3487f70,3c028011 -3487f74,24020003 -3487f78,14620007 -3487f7c,3c028011 -3487f80,3442a5d0 -3487f84,8c42009c -3487f88,3c03000c -3487f8c,431024 -3487f90,3e00008 -3487f94,2102b -3487f98,3442a5d0 -3487f9c,9442009c -3487fa0,42080 -3487fa4,2463ffff -3487fa8,832021 -3487fac,821007 -3487fb0,30420001 +3487cd4,24020060 +3487cd8,24020005 +3487cdc,3e00008 +3487ce4,8c8300a0 +3487ce8,31b02 +3487cec,30630003 +3487cf0,10600005 +3487cf4,24040001 +3487cf8,14640004 +3487cfc,240200c7 +3487d00,3e00008 +3487d04,24020046 +3487d08,24020045 +3487d0c,3e00008 +3487d14,8c8200a0 +3487d18,21242 +3487d1c,30420007 +3487d20,2102b +3487d24,3e00008 +3487d28,24420037 +3487d2c,8c8200a0 +3487d30,21502 +3487d34,30420007 +3487d38,2c420002 +3487d3c,2c420001 +3487d40,3e00008 +3487d44,24420079 +3487d48,8c8200a0 +3487d4c,21442 +3487d50,30420007 +3487d54,2c420002 +3487d58,2c420001 +3487d5c,3e00008 +3487d60,24420077 +3487d64,9082003a +3487d68,2102b +3487d6c,3e00008 +3487d70,244200b9 +3487d74,8083007c +3487d78,2402ffff +3487d7c,50620007 +3487d80,2402006b +3487d84,80830094 +3487d88,28630006 +3487d8c,10600003 +3487d90,2402006a +3487d94,3e00008 +3487d98,24020003 +3487d9c,3e00008 +3487da4,8083007b +3487da8,2402ffff +3487dac,10620003 +3487db4,3e00008 +3487db8,2402000c +3487dbc,3e00008 +3487dc0,2402003b +3487dc4,8c8300a0 +3487dc8,30630007 +3487dcc,14600002 +3487dd0,a01025 +3487dd4,2402004d +3487dd8,3e00008 +3487de0,8c8300a0 +3487de4,30630038 +3487de8,14600002 +3487dec,a01025 +3487df0,2402004d +3487df4,3e00008 +3487dfc,8c8300a0 +3487e00,3c040001 +3487e04,3484c000 +3487e08,641824 +3487e0c,14600002 +3487e10,a01025 +3487e14,2402004d +3487e18,3e00008 +3487e20,94820eda +3487e24,30420008 +3487e28,14400010 +3487e30,80830086 +3487e34,2402001b +3487e38,1062000e +3487e40,80830087 +3487e44,1062000d +3487e4c,80830088 +3487e50,1062000c +3487e54,2403001b +3487e58,80840089 +3487e5c,1483000a +3487e60,a01025 +3487e64,3e00008 +3487e68,240200c8 +3487e6c,3e00008 +3487e70,240200c8 +3487e74,3e00008 +3487e78,240200c8 +3487e7c,3e00008 +3487e80,240200c8 +3487e84,240200c8 +3487e88,3e00008 +3487e90,27bdffe8 +3487e94,afbf0014 +3487e98,c102735 +3487ea0,c101c7d +3487ea8,c10254e +3487eb0,c10194e +3487eb8,c102361 +3487ec0,8fbf0014 +3487ec4,3e00008 +3487ec8,27bd0018 +3487ecc,27bdffe8 +3487ed0,afbf0014 +3487ed4,c101ae4 +3487edc,c100f82 +3487ee4,c102284 +3487eec,c101cf9 +3487ef4,c10140e +3487efc,8fbf0014 +3487f00,3e00008 +3487f04,27bd0018 +3487f08,27bdffe8 +3487f0c,afbf0014 +3487f10,afb00010 +3487f14,3c10801c +3487f18,361084a0 +3487f1c,8e040000 +3487f20,c101176 +3487f24,248402a8 +3487f28,8e040000 +3487f2c,c1025e2 +3487f30,248402a8 +3487f34,c1018fc +3487f3c,8fbf0014 +3487f40,8fb00010 +3487f44,3e00008 +3487f48,27bd0018 +3487f4c,27bdffe0 +3487f50,afbf001c +3487f54,afb10018 +3487f58,afb00014 +3487f5c,808025 +3487f60,c10275a +3487f64,a08825 +3487f68,2202825 +3487f6c,c027368 +3487f70,2002025 +3487f74,8fbf001c +3487f78,8fb10018 +3487f7c,8fb00014 +3487f80,3e00008 +3487f84,27bd0020 +3487f88,27bdffe8 +3487f8c,afbf0014 +3487f90,c1018d5 +3487f98,c102730 +3487fa0,c102374 +3487fa8,c101408 +3487fb0,8fbf0014 3487fb4,3e00008 -3487fbc,27bdffe0 -3487fc0,afbf001c -3487fc4,3c028040 -3487fc8,9042088b -3487fcc,10400010 -3487fd0,3c028040 -3487fd4,2406000c -3487fd8,3c028041 -3487fdc,8c45b204 -3487fe0,c102467 -3487fe4,27a40010 -3487fe8,3c028011 -3487fec,97a30010 -3487ff0,a4435dd2 -3487ff4,93a30012 -3487ff8,a0435dd4 -3487ffc,97a30010 -3488000,a4435dda -3488004,93a30012 -3488008,a0435ddc -348800c,3c028040 -3488010,9042088c -3488014,10400010 -3488018,8fbf001c -348801c,2406000a -3488020,3c028041 -3488024,8c45b204 -3488028,c102467 -348802c,27a40010 -3488030,3c028011 -3488034,97a30010 -3488038,a4435dce -348803c,93a30012 -3488040,a0435dd0 -3488044,97a30010 -3488048,a4435dd6 -348804c,93a30012 -3488050,a0435dd8 -3488054,8fbf001c -3488058,3e00008 -348805c,27bd0020 -3488060,3c02801d -3488064,3442aa30 -3488068,8c420678 -348806c,10400063 -3488074,8c430130 -3488078,10600060 -3488080,8c4201c8 -3488084,2c43001f -3488088,1060005c -3488090,27bdffd8 -3488094,afbf0024 -3488098,afb10020 -348809c,afb0001c -34880a0,280c0 -34880a4,2028023 -34880a8,108080 -34880ac,2028023 -34880b0,108100 -34880b4,3c028011 -34880b8,2028021 -34880bc,3c028040 -34880c0,9042088d -34880c4,10400018 -34880c8,2610572c -34880cc,3c118041 -34880d0,24060006 -34880d4,8e25b204 -34880d8,c102467 -34880dc,27a40010 -34880e0,93a20010 -34880e4,a2020192 -34880e8,93a20011 -34880ec,a2020193 -34880f0,93a20012 -34880f4,a2020194 -34880f8,8e25b204 -34880fc,24060006 -3488100,24a5000c -3488104,c102467 -3488108,27a40010 -348810c,93a20010 -3488110,a202019a -3488114,93a20011 -3488118,a202019b -348811c,93a20012 -3488120,1000000c -3488124,a202019c -3488128,3c028040 -348812c,9044087e -3488130,a2040192 -3488134,2442087e -3488138,90430001 -348813c,a2030193 -3488140,90420002 -3488144,a2020194 -3488148,a204019a -348814c,a203019b -3488150,a202019c -3488154,3c028040 -3488158,9042088e -348815c,10400018 -3488160,3c028040 -3488164,3c118041 -3488168,24060005 -348816c,8e25b204 -3488170,c102467 -3488174,27a40010 -3488178,93a20010 -348817c,a2020196 -3488180,93a20011 -3488184,a2020197 -3488188,93a20012 -348818c,a2020198 -3488190,8e25b204 -3488194,24060005 -3488198,24a5000a -348819c,c102467 -34881a0,27a40010 -34881a4,93a20010 -34881a8,a202019e -34881ac,93a20011 -34881b0,a202019f -34881b4,93a20012 -34881b8,1000000b -34881bc,a20201a0 -34881c0,90440881 -34881c4,a2040196 -34881c8,24420881 -34881cc,90430001 -34881d0,a2030197 -34881d4,90420002 -34881d8,a2020198 -34881dc,a204019e -34881e0,a203019f -34881e4,a20201a0 -34881e8,8fbf0024 -34881ec,8fb10020 -34881f0,8fb0001c -34881f4,3e00008 -34881f8,27bd0028 -34881fc,3e00008 -3488204,27bdffd0 -3488208,afbf002c -348820c,afb20028 -3488210,afb10024 -3488214,afb00020 -3488218,3c028040 -348821c,90430884 -3488220,240200fa -3488224,14620008 -3488228,24100001 -348822c,3c028040 -3488230,24420884 -3488234,90500001 -3488238,90420002 -348823c,2028025 -3488240,321000ff -3488244,10802b -3488248,3c028040 -348824c,90430887 -3488250,240200fa -3488254,14620008 -3488258,24110001 -348825c,3c028040 -3488260,24420887 -3488264,90510001 -3488268,90420002 -348826c,2228825 -3488270,323100ff -3488274,11882b -3488278,3c128041 -348827c,24060009 -3488280,8e45b204 -3488284,c102467 -3488288,27a40010 -348828c,8e45b204 -3488290,24060009 -3488294,24a50012 -3488298,c102467 -348829c,27a40014 -34882a0,24060007 -34882a4,8e45b204 -34882a8,c102467 -34882ac,27a40018 -34882b0,8e45b204 -34882b4,24060007 -34882b8,24a5000e -34882bc,c102467 -34882c0,27a4001c -34882c4,3c02801c -34882c8,344284a0 -34882cc,8c421c4c -34882d0,10400064 -34882d4,8fbf002c -34882d8,240500da -34882dc,3c068011 -34882e0,24c65c3c -34882e4,3c088040 -34882e8,3c078040 -34882ec,3c0a8040 -34882f0,254c0887 -34882f4,3c098040 -34882f8,252b0884 -34882fc,8c430130 -3488300,50600055 -3488304,8c420124 -3488308,84430000 -348830c,54650052 -3488310,8c420124 -3488314,8c43016c -3488318,320c0 -348831c,832023 -3488320,42080 -3488324,832023 -3488328,42100 -348832c,2484faf0 -3488330,862021 -3488334,8c4d0170 -3488338,d18c0 -348833c,6d1823 -3488340,31880 -3488344,6d1823 -3488348,31900 -348834c,2463faf0 -3488350,910d088f -3488354,11a0000e -3488358,661821 -348835c,97ae0010 -3488360,a48e0192 -3488364,93ad0012 -3488368,a08d0194 -348836c,a46e0192 -3488370,a06d0194 -3488374,97ae0014 -3488378,a48e019a -348837c,93ad0016 -3488380,a08d019c -3488384,a46e019a -3488388,10000012 -348838c,a06d019c -3488390,12000011 -3488394,90ed0890 -3488398,912f0884 -348839c,a08f0192 -34883a0,916e0001 -34883a4,a08e0193 -34883a8,916d0002 -34883ac,a08d0194 -34883b0,a06f0192 -34883b4,a06e0193 -34883b8,a06d0194 -34883bc,a08f019a -34883c0,a08e019b -34883c4,a08d019c -34883c8,a06f019a -34883cc,a06e019b -34883d0,a06d019c -34883d4,90ed0890 -34883d8,11a0000d -34883dc,97ae0018 -34883e0,a48e0196 -34883e4,93ad001a -34883e8,a08d0198 -34883ec,a46e0196 -34883f0,a06d0198 -34883f4,97ae001c -34883f8,a48e019e -34883fc,93ad001e -3488400,a08d01a0 -3488404,a46e019e -3488408,10000012 -348840c,a06d01a0 -3488410,52200011 -3488414,8c420124 -3488418,914f0887 -348841c,a08f0196 -3488420,918e0001 -3488424,a08e0197 -3488428,918d0002 -348842c,a08d0198 -3488430,a06f0196 -3488434,a06e0197 -3488438,a06d0198 -348843c,a08f019e -3488440,a08e019f -3488444,a08d01a0 -3488448,a06f019e -348844c,a06e019f -3488450,a06d01a0 -3488454,8c420124 -3488458,5440ffa9 -348845c,8c430130 -3488460,8fbf002c -3488464,8fb20028 -3488468,8fb10024 -348846c,8fb00020 -3488470,3e00008 -3488474,27bd0030 -3488478,27bdffd8 -348847c,afbf001c -3488480,f7b40020 -3488484,3c028040 -3488488,9042088f -348848c,1040000a -3488490,46006506 -3488494,24060009 -3488498,3c028041 -348849c,8c45b204 -34884a0,c102467 -34884a4,27a40010 -34884a8,93a20010 -34884ac,93a30011 -34884b0,10000006 -34884b4,93a40012 -34884b8,3c048040 -34884bc,90820884 -34884c0,24840884 -34884c4,90830001 -34884c8,90840002 -34884cc,240500fa -34884d0,14450043 -34884d4,642825 -34884d8,14a00041 -34884e0,3c028041 -34884e4,c4409eac -34884e8,4600a002 -34884ec,3c028041 -34884f0,c4429eb0 -34884f4,46020000 -34884f8,3c028041 -34884fc,c4429eb4 -3488500,4600103e -3488508,45030005 -348850c,46020001 -3488510,4600000d -3488514,44020000 -3488518,10000006 -348851c,304200ff -3488520,4600000d -3488524,44020000 -3488528,3c038000 -348852c,431025 -3488530,304200ff -3488534,3c038041 -3488538,c4609eb8 -348853c,4600a002 -3488540,3c038041 -3488544,c4629eb0 -3488548,46020000 -348854c,3c038041 -3488550,c4629eb4 -3488554,4600103e -348855c,45030005 -3488560,46020001 -3488564,4600000d -3488568,44030000 -348856c,10000006 -3488570,306300ff -3488574,4600000d -3488578,44030000 -348857c,3c048000 -3488580,641825 -3488584,306300ff -3488588,3c048041 -348858c,c4809ebc -3488590,4600a002 -3488594,3c048041 -3488598,c4829ec0 -348859c,46020000 -34885a0,3c048041 -34885a4,c4829eb4 -34885a8,4600103e -34885b0,45030005 -34885b4,46020001 -34885b8,4600000d -34885bc,44040000 -34885c0,10000040 -34885c4,308400ff -34885c8,4600000d -34885cc,44040000 -34885d0,3c058000 -34885d4,852025 -34885d8,1000003a -34885dc,308400ff -34885e0,44820000 -34885e8,46800020 -34885ec,46140002 -34885f0,3c028041 -34885f4,c4429eb4 -34885f8,4600103e -3488600,45030005 -3488604,46020001 -3488608,4600000d -348860c,44020000 -3488610,10000006 -3488614,304200ff -3488618,4600000d -348861c,44020000 -3488620,3c058000 -3488624,451025 -3488628,304200ff -348862c,44830000 -3488634,46800020 -3488638,46140002 -348863c,3c038041 -3488640,c4629eb4 -3488644,4600103e -348864c,45030005 -3488650,46020001 -3488654,4600000d -3488658,44030000 -348865c,10000006 -3488660,306300ff +3487fb8,27bd0018 +3487fbc,3c02801c +3487fc0,344284a0 +3487fc4,3c030001 +3487fc8,431021 +3487fcc,84430988 +3487fd0,14600022 +3487fd4,3c02801c +3487fd8,344284a0 +3487fdc,3c030001 +3487fe0,431021 +3487fe4,84420992 +3487fe8,14400014 +3487fec,21840 +3487ff0,3c028011 +3487ff4,3442a5d0 +3487ff8,8c420004 +3487ffc,14400009 +3488000,3c028011 +3488004,3442a5d0 +3488008,8c4300a0 +348800c,3c020001 +3488010,3442c007 +3488014,621824 +3488018,14600026 +348801c,24020001 +3488020,3c028011 +3488024,3442a5d0 +3488028,8c4200a0 +348802c,21382 +3488030,30420007 +3488034,3e00008 +3488038,2102b +348803c,621821 +3488040,3c028011 +3488044,3442a5d0 +3488048,8c4200a0 +348804c,621006 +3488050,30420007 +3488054,3e00008 +3488058,2102b +348805c,344284a0 +3488060,3c040001 +3488064,441021 +3488068,84440992 +348806c,1480000a +3488070,3c028011 +3488074,24020003 +3488078,14620007 +348807c,3c028011 +3488080,3442a5d0 +3488084,8c42009c +3488088,3c03000c +348808c,431024 +3488090,3e00008 +3488094,2102b +3488098,3442a5d0 +348809c,9442009c +34880a0,42080 +34880a4,2463ffff +34880a8,832021 +34880ac,821007 +34880b0,30420001 +34880b4,3e00008 +34880bc,27bdffe0 +34880c0,afbf001c +34880c4,3c028040 +34880c8,9042088b +34880cc,10400010 +34880d0,3c028040 +34880d4,2406000c +34880d8,3c028041 +34880dc,8c45b588 +34880e0,c1024a7 +34880e4,27a40010 +34880e8,3c028011 +34880ec,97a30010 +34880f0,a4435dd2 +34880f4,93a30012 +34880f8,a0435dd4 +34880fc,97a30010 +3488100,a4435dda +3488104,93a30012 +3488108,a0435ddc +348810c,3c028040 +3488110,9042088c +3488114,10400010 +3488118,8fbf001c +348811c,2406000a +3488120,3c028041 +3488124,8c45b588 +3488128,c1024a7 +348812c,27a40010 +3488130,3c028011 +3488134,97a30010 +3488138,a4435dce +348813c,93a30012 +3488140,a0435dd0 +3488144,97a30010 +3488148,a4435dd6 +348814c,93a30012 +3488150,a0435dd8 +3488154,8fbf001c +3488158,3e00008 +348815c,27bd0020 +3488160,3c02801d +3488164,3442aa30 +3488168,8c420678 +348816c,10400063 +3488174,8c430130 +3488178,10600060 +3488180,8c4201c8 +3488184,2c43001f +3488188,1060005c +3488190,27bdffd8 +3488194,afbf0024 +3488198,afb10020 +348819c,afb0001c +34881a0,280c0 +34881a4,2028023 +34881a8,108080 +34881ac,2028023 +34881b0,108100 +34881b4,3c028011 +34881b8,2028021 +34881bc,3c028040 +34881c0,9042088d +34881c4,10400018 +34881c8,2610572c +34881cc,3c118041 +34881d0,24060006 +34881d4,8e25b588 +34881d8,c1024a7 +34881dc,27a40010 +34881e0,93a20010 +34881e4,a2020192 +34881e8,93a20011 +34881ec,a2020193 +34881f0,93a20012 +34881f4,a2020194 +34881f8,8e25b588 +34881fc,24060006 +3488200,24a5000c +3488204,c1024a7 +3488208,27a40010 +348820c,93a20010 +3488210,a202019a +3488214,93a20011 +3488218,a202019b +348821c,93a20012 +3488220,1000000c +3488224,a202019c +3488228,3c028040 +348822c,9044087e +3488230,a2040192 +3488234,2442087e +3488238,90430001 +348823c,a2030193 +3488240,90420002 +3488244,a2020194 +3488248,a204019a +348824c,a203019b +3488250,a202019c +3488254,3c028040 +3488258,9042088e +348825c,10400018 +3488260,3c028040 +3488264,3c118041 +3488268,24060005 +348826c,8e25b588 +3488270,c1024a7 +3488274,27a40010 +3488278,93a20010 +348827c,a2020196 +3488280,93a20011 +3488284,a2020197 +3488288,93a20012 +348828c,a2020198 +3488290,8e25b588 +3488294,24060005 +3488298,24a5000a +348829c,c1024a7 +34882a0,27a40010 +34882a4,93a20010 +34882a8,a202019e +34882ac,93a20011 +34882b0,a202019f +34882b4,93a20012 +34882b8,1000000b +34882bc,a20201a0 +34882c0,90440881 +34882c4,a2040196 +34882c8,24420881 +34882cc,90430001 +34882d0,a2030197 +34882d4,90420002 +34882d8,a2020198 +34882dc,a204019e +34882e0,a203019f +34882e4,a20201a0 +34882e8,8fbf0024 +34882ec,8fb10020 +34882f0,8fb0001c +34882f4,3e00008 +34882f8,27bd0028 +34882fc,3e00008 +3488304,27bdffd0 +3488308,afbf002c +348830c,afb20028 +3488310,afb10024 +3488314,afb00020 +3488318,3c028040 +348831c,90430884 +3488320,240200fa +3488324,14620008 +3488328,24100001 +348832c,3c028040 +3488330,24420884 +3488334,90500001 +3488338,90420002 +348833c,2028025 +3488340,321000ff +3488344,10802b +3488348,3c028040 +348834c,90430887 +3488350,240200fa +3488354,14620008 +3488358,24110001 +348835c,3c028040 +3488360,24420887 +3488364,90510001 +3488368,90420002 +348836c,2228825 +3488370,323100ff +3488374,11882b +3488378,3c128041 +348837c,24060009 +3488380,8e45b588 +3488384,c1024a7 +3488388,27a40010 +348838c,8e45b588 +3488390,24060009 +3488394,24a50012 +3488398,c1024a7 +348839c,27a40014 +34883a0,24060007 +34883a4,8e45b588 +34883a8,c1024a7 +34883ac,27a40018 +34883b0,8e45b588 +34883b4,24060007 +34883b8,24a5000e +34883bc,c1024a7 +34883c0,27a4001c +34883c4,3c02801c +34883c8,344284a0 +34883cc,8c421c4c +34883d0,10400064 +34883d4,8fbf002c +34883d8,240500da +34883dc,3c068011 +34883e0,24c65c3c +34883e4,3c088040 +34883e8,3c078040 +34883ec,3c0a8040 +34883f0,254c0887 +34883f4,3c098040 +34883f8,252b0884 +34883fc,8c430130 +3488400,50600055 +3488404,8c420124 +3488408,84430000 +348840c,54650052 +3488410,8c420124 +3488414,8c43016c +3488418,320c0 +348841c,832023 +3488420,42080 +3488424,832023 +3488428,42100 +348842c,2484faf0 +3488430,862021 +3488434,8c4d0170 +3488438,d18c0 +348843c,6d1823 +3488440,31880 +3488444,6d1823 +3488448,31900 +348844c,2463faf0 +3488450,910d088f +3488454,11a0000e +3488458,661821 +348845c,97ae0010 +3488460,a48e0192 +3488464,93ad0012 +3488468,a08d0194 +348846c,a46e0192 +3488470,a06d0194 +3488474,97ae0014 +3488478,a48e019a +348847c,93ad0016 +3488480,a08d019c +3488484,a46e019a +3488488,10000012 +348848c,a06d019c +3488490,12000011 +3488494,90ed0890 +3488498,912f0884 +348849c,a08f0192 +34884a0,916e0001 +34884a4,a08e0193 +34884a8,916d0002 +34884ac,a08d0194 +34884b0,a06f0192 +34884b4,a06e0193 +34884b8,a06d0194 +34884bc,a08f019a +34884c0,a08e019b +34884c4,a08d019c +34884c8,a06f019a +34884cc,a06e019b +34884d0,a06d019c +34884d4,90ed0890 +34884d8,11a0000d +34884dc,97ae0018 +34884e0,a48e0196 +34884e4,93ad001a +34884e8,a08d0198 +34884ec,a46e0196 +34884f0,a06d0198 +34884f4,97ae001c +34884f8,a48e019e +34884fc,93ad001e +3488500,a08d01a0 +3488504,a46e019e +3488508,10000012 +348850c,a06d01a0 +3488510,52200011 +3488514,8c420124 +3488518,914f0887 +348851c,a08f0196 +3488520,918e0001 +3488524,a08e0197 +3488528,918d0002 +348852c,a08d0198 +3488530,a06f0196 +3488534,a06e0197 +3488538,a06d0198 +348853c,a08f019e +3488540,a08e019f +3488544,a08d01a0 +3488548,a06f019e +348854c,a06e019f +3488550,a06d01a0 +3488554,8c420124 +3488558,5440ffa9 +348855c,8c430130 +3488560,8fbf002c +3488564,8fb20028 +3488568,8fb10024 +348856c,8fb00020 +3488570,3e00008 +3488574,27bd0030 +3488578,27bdffd8 +348857c,afbf001c +3488580,f7b40020 +3488584,3c028040 +3488588,9042088f +348858c,1040000a +3488590,46006506 +3488594,24060009 +3488598,3c028041 +348859c,8c45b588 +34885a0,c1024a7 +34885a4,27a40010 +34885a8,93a20010 +34885ac,93a30011 +34885b0,10000006 +34885b4,93a40012 +34885b8,3c048040 +34885bc,90820884 +34885c0,24840884 +34885c4,90830001 +34885c8,90840002 +34885cc,240500fa +34885d0,14450043 +34885d4,642825 +34885d8,14a00041 +34885e0,3c028041 +34885e4,c440a1ec +34885e8,4600a002 +34885ec,3c028041 +34885f0,c442a1f0 +34885f4,46020000 +34885f8,3c028041 +34885fc,c442a1f4 +3488600,4600103e +3488608,45030005 +348860c,46020001 +3488610,4600000d +3488614,44020000 +3488618,10000006 +348861c,304200ff +3488620,4600000d +3488624,44020000 +3488628,3c038000 +348862c,431025 +3488630,304200ff +3488634,3c038041 +3488638,c460a1f8 +348863c,4600a002 +3488640,3c038041 +3488644,c462a1f0 +3488648,46020000 +348864c,3c038041 +3488650,c462a1f4 +3488654,4600103e +348865c,45030005 +3488660,46020001 3488664,4600000d 3488668,44030000 -348866c,3c058000 -3488670,651825 -3488674,306300ff -3488678,44840000 -3488680,46800020 -3488684,46140002 +348866c,10000006 +3488670,306300ff +3488674,4600000d +3488678,44030000 +348867c,3c048000 +3488680,641825 +3488684,306300ff 3488688,3c048041 -348868c,c4829eb4 -3488690,4600103e -3488698,45030005 -348869c,46020001 -34886a0,4600000d -34886a4,44040000 -34886a8,10000006 -34886ac,308400ff -34886b0,4600000d -34886b4,44040000 -34886b8,3c058000 -34886bc,852025 -34886c0,308400ff -34886c4,21600 -34886c8,42200 -34886cc,441025 -34886d0,31c00 -34886d4,431025 -34886d8,344200ff -34886dc,8fbf001c -34886e0,d7b40020 -34886e4,3e00008 -34886e8,27bd0028 -34886ec,27bdffd8 -34886f0,afbf0024 -34886f4,afb20020 -34886f8,afb1001c -34886fc,afb00018 -3488700,3c02801c -3488704,344284a0 -3488708,90421cda -348870c,24030004 -3488710,10430015 -3488714,2c430005 -3488718,50600006 -348871c,2442fffb -3488720,24030002 -3488724,50430008 -3488728,3c028040 -348872c,10000013 -3488730,3c028040 -3488734,304200fb -3488738,54400010 -348873c,3c028040 -3488740,10000005 -3488744,3c028040 -3488748,90500891 -348874c,3c028040 -3488750,1000000d -3488754,90510892 -3488758,90500893 -348875c,3c028040 -3488760,10000009 -3488764,90510894 -3488768,3c028040 -348876c,90500895 -3488770,3c028040 -3488774,10000004 -3488778,90510896 -348877c,90500897 -3488780,3c028040 -3488784,90510898 -3488788,2111025 -348878c,1040005b -3488790,8fbf0024 -3488794,3c128041 -3488798,2406000e -348879c,8e45b204 -34887a0,c102467 -34887a4,27a40010 -34887a8,2406000c -34887ac,8e45b204 -34887b0,c102467 -34887b4,27a40014 -34887b8,1200000a -34887bc,3c02801c -34887c0,344284a0 -34887c4,90431cda -34887c8,318c0 -34887cc,3c02800f -34887d0,431021 -34887d4,97a30010 -34887d8,a4438214 -34887dc,93a30012 -34887e0,a0438216 -34887e4,1220000a -34887e8,3c02801c -34887ec,344284a0 -34887f0,90431cda -34887f4,318c0 -34887f8,3c02800f -34887fc,431021 -3488800,97a30014 -3488804,a4438218 -3488808,93a30016 -348880c,a043821a -3488810,12000010 -3488814,3c02801d -3488818,3c02801c -348881c,344284a0 -3488820,97a30010 -3488824,a4431cf0 -3488828,93a30012 -348882c,a0431cf2 -3488830,97a30010 -3488834,a4431d04 -3488838,93a30012 -348883c,a0431d06 -3488840,97a30010 -3488844,a4431d18 -3488848,93a30012 -348884c,a0431d1a -3488850,3c02801d -3488854,3442aa30 -3488858,8c42067c -348885c,10400027 -3488860,8fbf0024 -3488864,8c430130 -3488868,10600025 -348886c,8fb20020 -3488870,12000010 -3488874,24430234 -3488878,93a40010 -348887c,44840000 -3488884,46800020 -3488888,e4400234 -348888c,93a20011 -3488890,44820000 -3488898,46800020 -348889c,e4600004 -34888a0,93a20012 -34888a4,44820000 -34888ac,46800020 -34888b0,e4600008 -34888b4,12200011 -34888b8,8fbf0024 -34888bc,93a20014 -34888c0,44820000 -34888c8,46800020 -34888cc,e4600010 -34888d0,93a20015 -34888d4,44820000 -34888dc,46800020 -34888e0,e4600014 -34888e4,93a20016 -34888e8,44820000 -34888f0,46800020 -34888f4,e4600018 -34888f8,8fbf0024 -34888fc,8fb20020 -3488900,8fb1001c -3488904,8fb00018 -3488908,3e00008 -348890c,27bd0028 -3488910,27bdffe8 -3488914,afbf0014 -3488918,3c038041 -348891c,8c62b204 -3488920,24420001 -3488924,c101fef -3488928,ac62b204 -348892c,c102018 -3488934,c102081 -348893c,c1021bb -3488944,8fbf0014 -3488948,3e00008 -348894c,27bd0018 -3488950,27bdffe8 -3488954,afbf0014 -3488958,801025 -348895c,2c430193 -3488960,10600006 -3488964,a02025 -3488968,210c0 -348896c,3c03800f -3488970,34638ff8 -3488974,10000008 -3488978,431021 -348897c,2442fe6e -3488980,21080 -3488984,2403fff8 -3488988,431024 -348898c,3c038040 -3488990,24630c9c -3488994,621021 -3488998,8c450000 -348899c,8c460004 -34889a0,3c028000 -34889a4,24420df0 -34889a8,40f809 -34889ac,c53023 -34889b0,8fbf0014 -34889b4,3e00008 -34889b8,27bd0018 -34889bc,27bdffe8 -34889c0,afbf0014 -34889c4,801025 -34889c8,a02025 -34889cc,a4450000 -34889d0,c102254 -34889d4,8c450004 -34889d8,8fbf0014 -34889dc,3e00008 -34889e0,27bd0018 -34889e4,27bdffe8 -34889e8,afbf0014 -34889ec,afb00010 -34889f0,3c028041 -34889f4,2442c274 -34889f8,24450040 -34889fc,94430000 -3488a00,1064000b -3488a04,408025 -3488a08,54600006 -3488a0c,24420008 -3488a10,802825 -3488a14,c10226f -3488a18,402025 -3488a1c,10000005 -3488a20,2001025 -3488a24,5445fff6 -3488a28,94430000 -3488a2c,8025 -3488a30,2001025 -3488a34,8fbf0014 -3488a38,8fb00010 -3488a3c,3e00008 -3488a40,27bd0018 -3488a44,3c03801c -3488a48,346384a0 -3488a4c,8c620000 -3488a50,8c860004 -3488a54,8c4502d0 -3488a58,24a70008 -3488a5c,ac4702d0 -3488a60,3c02db06 -3488a64,24420018 -3488a68,aca20000 -3488a6c,aca60004 -3488a70,8c650000 -3488a74,8c840004 -3488a78,8ca302c0 -3488a7c,24660008 -3488a80,aca602c0 -3488a84,ac620000 -3488a88,3e00008 -3488a8c,ac640004 -3488a90,27bdffe0 -3488a94,afbf0014 -3488a98,f7b40018 -3488a9c,3c02800a -3488aa0,3442a78c -3488aa4,40f809 -3488aa8,46006506 -3488aac,2442000c -3488ab0,2025 -3488ab4,1000000a -3488ab8,2405000c -3488abc,c4600000 -3488ac0,46140002 -3488ac4,e4600000 -3488ac8,24630004 -3488acc,5462fffc -3488ad0,c4600000 -3488ad4,24840004 -3488ad8,10850003 -3488adc,24420010 -3488ae0,1000fff6 -3488ae4,2443fff4 -3488ae8,8fbf0014 -3488aec,d7b40018 -3488af0,3e00008 -3488af4,27bd0020 -3488af8,27bdffd8 -3488afc,afbf0024 -3488b00,afb30020 -3488b04,afb2001c -3488b08,afb10018 -3488b0c,afb00014 -3488b10,809825 -3488b14,a09025 -3488b18,c08025 -3488b1c,3c118002 -3488b20,26222438 -3488b24,3025 -3488b28,2002825 -3488b2c,40f809 -3488b30,2402025 -3488b34,26312554 -3488b38,3025 -3488b3c,2002825 -3488b40,220f809 -3488b44,2402025 -3488b48,2602825 -3488b4c,3c028005 -3488b50,244270c0 -3488b54,40f809 -3488b58,2002025 -3488b5c,8fbf0024 -3488b60,8fb30020 -3488b64,8fb2001c -3488b68,8fb10018 -3488b6c,8fb00014 -3488b70,3e00008 -3488b74,27bd0028 -3488b78,44860000 -3488b7c,24020063 -3488b80,54820005 -3488b84,84a20000 -3488b88,3c028041 -3488b8c,c4429ec8 -3488b90,3e00008 -3488b94,46020002 -3488b98,240300f1 -3488b9c,54430008 -3488ba0,24030015 -3488ba4,24020046 -3488ba8,1082000d -3488bac,2402002f -3488bb0,1482000e -3488bb4,3c028041 -3488bb8,3e00008 -3488bbc,c4409ec4 -3488bc0,1443000a -3488bc4,24020011 -3488bc8,90a3001d -3488bcc,14620007 -3488bd0,3c028041 -3488bd4,c4429ec8 -3488bd8,3e00008 -3488bdc,46020002 -3488be0,3c028041 -3488be4,3e00008 -3488be8,c4409ec4 -3488bec,3e00008 -3488bf4,27bdffd8 -3488bf8,afbf001c -3488bfc,afb20018 -3488c00,afb10014 -3488c04,afb00010 -3488c08,f7b40020 -3488c0c,48202 -3488c10,afa40028 -3488c14,a08825 -3488c18,c09025 -3488c1c,4487a000 -3488c20,108600 -3488c24,108603 -3488c28,c102279 -3488c2c,42402 -3488c30,c102291 -3488c34,402025 -3488c38,4406a000 -3488c3c,2202825 -3488c40,c1022de -3488c44,2002025 -3488c48,c1022a4 -3488c4c,46000306 -3488c50,2604ffff -3488c54,2403025 -3488c58,2202825 -3488c5c,42600 -3488c60,c1022be -3488c64,42603 -3488c68,8fbf001c -3488c6c,8fb20018 -3488c70,8fb10014 -3488c74,8fb00010 -3488c78,d7b40020 -3488c7c,3e00008 -3488c80,27bd0028 -3488c84,27bdffe0 -3488c88,afbf001c -3488c8c,afb10018 -3488c90,afb00014 -3488c94,3c108041 -3488c98,2610c274 -3488c9c,26110040 -3488ca0,a6000000 -3488ca4,c1026fa -3488ca8,24041e70 -3488cac,ae020004 -3488cb0,26100008 -3488cb4,5611fffb -3488cb8,a6000000 -3488cbc,8fbf001c -3488cc0,8fb10018 -3488cc4,8fb00014 -3488cc8,3e00008 -3488ccc,27bd0020 +348868c,c480a1fc +3488690,4600a002 +3488694,3c048041 +3488698,c482a200 +348869c,46020000 +34886a0,3c048041 +34886a4,c482a1f4 +34886a8,4600103e +34886b0,45030005 +34886b4,46020001 +34886b8,4600000d +34886bc,44040000 +34886c0,10000040 +34886c4,308400ff +34886c8,4600000d +34886cc,44040000 +34886d0,3c058000 +34886d4,852025 +34886d8,1000003a +34886dc,308400ff +34886e0,44820000 +34886e8,46800020 +34886ec,46140002 +34886f0,3c028041 +34886f4,c442a1f4 +34886f8,4600103e +3488700,45030005 +3488704,46020001 +3488708,4600000d +348870c,44020000 +3488710,10000006 +3488714,304200ff +3488718,4600000d +348871c,44020000 +3488720,3c058000 +3488724,451025 +3488728,304200ff +348872c,44830000 +3488734,46800020 +3488738,46140002 +348873c,3c038041 +3488740,c462a1f4 +3488744,4600103e +348874c,45030005 +3488750,46020001 +3488754,4600000d +3488758,44030000 +348875c,10000006 +3488760,306300ff +3488764,4600000d +3488768,44030000 +348876c,3c058000 +3488770,651825 +3488774,306300ff +3488778,44840000 +3488780,46800020 +3488784,46140002 +3488788,3c048041 +348878c,c482a1f4 +3488790,4600103e +3488798,45030005 +348879c,46020001 +34887a0,4600000d +34887a4,44040000 +34887a8,10000006 +34887ac,308400ff +34887b0,4600000d +34887b4,44040000 +34887b8,3c058000 +34887bc,852025 +34887c0,308400ff +34887c4,21600 +34887c8,42200 +34887cc,441025 +34887d0,31c00 +34887d4,431025 +34887d8,344200ff +34887dc,8fbf001c +34887e0,d7b40020 +34887e4,3e00008 +34887e8,27bd0028 +34887ec,27bdffd8 +34887f0,afbf0024 +34887f4,afb20020 +34887f8,afb1001c +34887fc,afb00018 +3488800,3c02801c +3488804,344284a0 +3488808,90421cda +348880c,24030004 +3488810,10430015 +3488814,2c430005 +3488818,50600006 +348881c,2442fffb +3488820,24030002 +3488824,50430008 +3488828,3c028040 +348882c,10000013 +3488830,3c028040 +3488834,304200fb +3488838,54400010 +348883c,3c028040 +3488840,10000005 +3488844,3c028040 +3488848,90500891 +348884c,3c028040 +3488850,1000000d +3488854,90510892 +3488858,90500893 +348885c,3c028040 +3488860,10000009 +3488864,90510894 +3488868,3c028040 +348886c,90500895 +3488870,3c028040 +3488874,10000004 +3488878,90510896 +348887c,90500897 +3488880,3c028040 +3488884,90510898 +3488888,2111025 +348888c,1040005b +3488890,8fbf0024 +3488894,3c128041 +3488898,2406000e +348889c,8e45b588 +34888a0,c1024a7 +34888a4,27a40010 +34888a8,2406000c +34888ac,8e45b588 +34888b0,c1024a7 +34888b4,27a40014 +34888b8,1200000a +34888bc,3c02801c +34888c0,344284a0 +34888c4,90431cda +34888c8,318c0 +34888cc,3c02800f +34888d0,431021 +34888d4,97a30010 +34888d8,a4438214 +34888dc,93a30012 +34888e0,a0438216 +34888e4,1220000a +34888e8,3c02801c +34888ec,344284a0 +34888f0,90431cda +34888f4,318c0 +34888f8,3c02800f +34888fc,431021 +3488900,97a30014 +3488904,a4438218 +3488908,93a30016 +348890c,a043821a +3488910,12000010 +3488914,3c02801d +3488918,3c02801c +348891c,344284a0 +3488920,97a30010 +3488924,a4431cf0 +3488928,93a30012 +348892c,a0431cf2 +3488930,97a30010 +3488934,a4431d04 +3488938,93a30012 +348893c,a0431d06 +3488940,97a30010 +3488944,a4431d18 +3488948,93a30012 +348894c,a0431d1a +3488950,3c02801d +3488954,3442aa30 +3488958,8c42067c +348895c,10400027 +3488960,8fbf0024 +3488964,8c430130 +3488968,10600025 +348896c,8fb20020 +3488970,12000010 +3488974,24430234 +3488978,93a40010 +348897c,44840000 +3488984,46800020 +3488988,e4400234 +348898c,93a20011 +3488990,44820000 +3488998,46800020 +348899c,e4600004 +34889a0,93a20012 +34889a4,44820000 +34889ac,46800020 +34889b0,e4600008 +34889b4,12200011 +34889b8,8fbf0024 +34889bc,93a20014 +34889c0,44820000 +34889c8,46800020 +34889cc,e4600010 +34889d0,93a20015 +34889d4,44820000 +34889dc,46800020 +34889e0,e4600014 +34889e4,93a20016 +34889e8,44820000 +34889f0,46800020 +34889f4,e4600018 +34889f8,8fbf0024 +34889fc,8fb20020 +3488a00,8fb1001c +3488a04,8fb00018 +3488a08,3e00008 +3488a0c,27bd0028 +3488a10,27bdffe8 +3488a14,afbf0014 +3488a18,3c038041 +3488a1c,8c62b588 +3488a20,24420001 +3488a24,c10202f +3488a28,ac62b588 +3488a2c,c102058 +3488a34,c1020c1 +3488a3c,c1021fb +3488a44,8fbf0014 +3488a48,3e00008 +3488a4c,27bd0018 +3488a50,27bdffe8 +3488a54,afbf0014 +3488a58,801025 +3488a5c,2c430193 +3488a60,10600006 +3488a64,a02025 +3488a68,210c0 +3488a6c,3c03800f +3488a70,34638ff8 +3488a74,10000008 +3488a78,431021 +3488a7c,2442fe6e +3488a80,21080 +3488a84,2403fff8 +3488a88,431024 +3488a8c,3c038040 +3488a90,24630c9c +3488a94,621021 +3488a98,8c450000 +3488a9c,8c460004 +3488aa0,3c028000 +3488aa4,24420df0 +3488aa8,40f809 +3488aac,c53023 +3488ab0,8fbf0014 +3488ab4,3e00008 +3488ab8,27bd0018 +3488abc,27bdffe8 +3488ac0,afbf0014 +3488ac4,801025 +3488ac8,a02025 +3488acc,a4450000 +3488ad0,c102294 +3488ad4,8c450004 +3488ad8,8fbf0014 +3488adc,3e00008 +3488ae0,27bd0018 +3488ae4,27bdffe8 +3488ae8,afbf0014 +3488aec,afb00010 +3488af0,3c028041 +3488af4,2442c5fc +3488af8,24450040 +3488afc,94430000 +3488b00,1064000b +3488b04,408025 +3488b08,54600006 +3488b0c,24420008 +3488b10,802825 +3488b14,c1022af +3488b18,402025 +3488b1c,10000005 +3488b20,2001025 +3488b24,5445fff6 +3488b28,94430000 +3488b2c,8025 +3488b30,2001025 +3488b34,8fbf0014 +3488b38,8fb00010 +3488b3c,3e00008 +3488b40,27bd0018 +3488b44,3c03801c +3488b48,346384a0 +3488b4c,8c620000 +3488b50,8c860004 +3488b54,8c4502d0 +3488b58,24a70008 +3488b5c,ac4702d0 +3488b60,3c02db06 +3488b64,24420018 +3488b68,aca20000 +3488b6c,aca60004 +3488b70,8c650000 +3488b74,8c840004 +3488b78,8ca302c0 +3488b7c,24660008 +3488b80,aca602c0 +3488b84,ac620000 +3488b88,3e00008 +3488b8c,ac640004 +3488b90,27bdffe0 +3488b94,afbf0014 +3488b98,f7b40018 +3488b9c,3c02800a +3488ba0,3442a78c +3488ba4,40f809 +3488ba8,46006506 +3488bac,2442000c +3488bb0,2025 +3488bb4,1000000a +3488bb8,2405000c +3488bbc,c4600000 +3488bc0,46140002 +3488bc4,e4600000 +3488bc8,24630004 +3488bcc,5462fffc +3488bd0,c4600000 +3488bd4,24840004 +3488bd8,10850003 +3488bdc,24420010 +3488be0,1000fff6 +3488be4,2443fff4 +3488be8,8fbf0014 +3488bec,d7b40018 +3488bf0,3e00008 +3488bf4,27bd0020 +3488bf8,27bdffd8 +3488bfc,afbf0024 +3488c00,afb30020 +3488c04,afb2001c +3488c08,afb10018 +3488c0c,afb00014 +3488c10,809825 +3488c14,a09025 +3488c18,c08025 +3488c1c,3c118002 +3488c20,26222438 +3488c24,3025 +3488c28,2002825 +3488c2c,40f809 +3488c30,2402025 +3488c34,26312554 +3488c38,3025 +3488c3c,2002825 +3488c40,220f809 +3488c44,2402025 +3488c48,2602825 +3488c4c,3c028005 +3488c50,244270c0 +3488c54,40f809 +3488c58,2002025 +3488c5c,8fbf0024 +3488c60,8fb30020 +3488c64,8fb2001c +3488c68,8fb10018 +3488c6c,8fb00014 +3488c70,3e00008 +3488c74,27bd0028 +3488c78,44860000 +3488c7c,24020063 +3488c80,54820005 +3488c84,84a20000 +3488c88,3c028041 +3488c8c,c442a208 +3488c90,3e00008 +3488c94,46020002 +3488c98,240300f1 +3488c9c,54430008 +3488ca0,24030015 +3488ca4,24020046 +3488ca8,1082000d +3488cac,2402002f +3488cb0,1482000e +3488cb4,3c028041 +3488cb8,3e00008 +3488cbc,c440a204 +3488cc0,1443000a +3488cc4,24020011 +3488cc8,90a3001d +3488ccc,14620007 3488cd0,3c028041 -3488cd4,a440c274 -3488cd8,2442c274 -3488cdc,a4400008 -3488ce0,a4400010 -3488ce4,a4400018 -3488ce8,a4400020 -3488cec,a4400028 -3488cf0,a4400030 -3488cf4,3e00008 -3488cf8,a4400038 -3488cfc,27bdffe8 -3488d00,afbf0014 +3488cd4,c442a208 +3488cd8,3e00008 +3488cdc,46020002 +3488ce0,3c028041 +3488ce4,3e00008 +3488ce8,c440a204 +3488cec,3e00008 +3488cf4,27bdffd8 +3488cf8,afbf001c +3488cfc,afb20018 +3488d00,afb10014 3488d04,afb00010 -3488d08,afa5001c -3488d0c,10a0000e -3488d10,afa60020 -3488d14,808025 -3488d18,93a40023 -3488d1c,50800002 -3488d20,97a40020 -3488d24,3084ffff -3488d28,c101eb2 -3488d30,c101ea3 +3488d08,f7b40020 +3488d0c,48202 +3488d10,afa40028 +3488d14,a08825 +3488d18,c09025 +3488d1c,4487a000 +3488d20,108600 +3488d24,108603 +3488d28,c1022b9 +3488d2c,42402 +3488d30,c1022d1 3488d34,402025 -3488d38,94430004 -3488d3c,a6030000 -3488d40,80420006 -3488d44,a2020002 -3488d48,8fbf0014 -3488d4c,8fb00010 -3488d50,3e00008 -3488d54,27bd0018 -3488d58,27bdffe0 -3488d5c,afbf001c -3488d60,afb00018 -3488d64,808025 -3488d68,30e700ff -3488d6c,90c600a5 -3488d70,c1019a8 -3488d74,27a40010 -3488d78,8fa50010 -3488d7c,8fa60014 -3488d80,c10233f -3488d84,2002025 -3488d88,8fbf001c -3488d8c,8fb00018 -3488d90,3e00008 -3488d94,27bd0020 -3488d98,27bdffd8 -3488d9c,afbf0024 -3488da0,afb10020 -3488da4,afb0001c -3488da8,808025 -3488dac,a08825 -3488db0,3c028041 -3488db4,8c429e6c -3488db8,afa20010 -3488dbc,3825 -3488dc0,a03025 -3488dc4,802825 -3488dc8,c102356 -3488dcc,27a40010 +3488d38,4406a000 +3488d3c,2202825 +3488d40,c10231e +3488d44,2002025 +3488d48,c1022e4 +3488d4c,46000306 +3488d50,2604ffff +3488d54,2403025 +3488d58,2202825 +3488d5c,42600 +3488d60,c1022fe +3488d64,42603 +3488d68,8fbf001c +3488d6c,8fb20018 +3488d70,8fb10014 +3488d74,8fb00010 +3488d78,d7b40020 +3488d7c,3e00008 +3488d80,27bd0028 +3488d84,27bdffe0 +3488d88,afbf001c +3488d8c,afb10018 +3488d90,afb00014 +3488d94,3c108041 +3488d98,2610c5fc +3488d9c,26110040 +3488da0,a6000000 +3488da4,c10273a +3488da8,24041e70 +3488dac,ae020004 +3488db0,26100008 +3488db4,5611fffb +3488db8,a6000000 +3488dbc,8fbf001c +3488dc0,8fb10018 +3488dc4,8fb00014 +3488dc8,3e00008 +3488dcc,27bd0020 3488dd0,3c028041 -3488dd4,8c479ecc -3488dd8,2203025 -3488ddc,2002825 -3488de0,c1022fd -3488de4,8fa40010 -3488de8,8fbf0024 -3488dec,8fb10020 -3488df0,8fb0001c +3488dd4,a440c5fc +3488dd8,2442c5fc +3488ddc,a4400008 +3488de0,a4400010 +3488de4,a4400018 +3488de8,a4400020 +3488dec,a4400028 +3488df0,a4400030 3488df4,3e00008 -3488df8,27bd0028 -3488dfc,27bdffd8 -3488e00,afbf0024 -3488e04,afb10020 -3488e08,afb0001c -3488e0c,808025 -3488e10,9083001d -3488e14,24020011 -3488e18,10620007 -3488e1c,a08825 -3488e20,3c028001 -3488e24,24423268 -3488e28,40f809 -3488e30,10000010 -3488e34,8fbf0024 -3488e38,3c028041 -3488e3c,8c429e70 -3488e40,afa20010 -3488e44,3825 -3488e48,a03025 -3488e4c,802825 -3488e50,c102356 -3488e54,27a40010 -3488e58,3c028041 -3488e5c,8c479ecc -3488e60,2203025 -3488e64,2002825 -3488e68,c1022fd -3488e6c,8fa40010 -3488e70,8fbf0024 -3488e74,8fb10020 -3488e78,8fb0001c -3488e7c,3e00008 -3488e80,27bd0028 -3488e84,27bdffd8 -3488e88,afbf0024 -3488e8c,afb10020 -3488e90,afb0001c -3488e94,808025 -3488e98,a08825 -3488e9c,3c028041 -3488ea0,8c429e74 -3488ea4,afa20010 -3488ea8,2407004f -3488eac,a03025 -3488eb0,802825 -3488eb4,c102356 -3488eb8,27a40010 -3488ebc,3c028041 -3488ec0,8c479ed0 -3488ec4,2203025 -3488ec8,2002825 -3488ecc,c1022fd -3488ed0,8fa40010 -3488ed4,8fbf0024 -3488ed8,8fb10020 -3488edc,8fb0001c -3488ee0,3e00008 -3488ee4,27bd0028 -3488ee8,27bdffd8 -3488eec,afbf0024 -3488ef0,afb10020 -3488ef4,afb0001c -3488ef8,808025 -3488efc,a08825 -3488f00,3c028041 -3488f04,8c429e78 -3488f08,afa20010 -3488f0c,3825 -3488f10,a03025 -3488f14,802825 -3488f18,c102356 -3488f1c,27a40010 -3488f20,3c028041 -3488f24,8c479ed4 -3488f28,2203025 -3488f2c,2002825 -3488f30,c1022fd -3488f34,8fa40010 -3488f38,8fbf0024 -3488f3c,8fb10020 -3488f40,8fb0001c -3488f44,3e00008 -3488f48,27bd0028 -3488f4c,27bdffd8 -3488f50,afbf0024 -3488f54,afb10020 -3488f58,afb0001c -3488f5c,808025 -3488f60,a08825 -3488f64,3c028041 -3488f68,8c429e7c -3488f6c,afa20010 -3488f70,2407000c -3488f74,a03025 -3488f78,802825 -3488f7c,c102356 -3488f80,27a40010 -3488f84,3c028041 -3488f88,8c479ed8 -3488f8c,2203025 -3488f90,2002825 -3488f94,c1022fd -3488f98,8fa40010 -3488f9c,8fbf0024 -3488fa0,8fb10020 -3488fa4,8fb0001c -3488fa8,3e00008 -3488fac,27bd0028 -3488fb0,27bdffd0 -3488fb4,afbf002c -3488fb8,afb10028 -3488fbc,afb00024 -3488fc0,808025 -3488fc4,afa00010 -3488fc8,afa00014 -3488fcc,9482001c -3488fd0,24030001 -3488fd4,14430008 -3488fd8,a08825 -3488fdc,24070015 -3488fe0,90a600a5 -3488fe4,802825 -3488fe8,c1019a8 -3488fec,27a40010 -3488ff0,10000012 -3488ff4,afa00018 -3488ff8,24030007 -3488ffc,14430008 -3489000,24030a0c -3489004,24070058 -3489008,90a600a5 -348900c,802825 -3489010,c1019a8 -3489014,27a40010 -3489018,10000008 -348901c,afa00018 -3489020,54430006 -3489024,afa00018 -3489028,3c050010 -348902c,34a5010a -3489030,c101980 -3489034,27a40010 -3489038,afa00018 -348903c,8fa50010 -3489040,8fa60014 -3489044,c10233f -3489048,27a40018 -348904c,97a20018 -3489050,10400008 -3489054,2203025 -3489058,3c028041 -348905c,8c479ec4 -3489060,2002825 -3489064,c1022fd -3489068,8fa40018 -348906c,10000005 -3489070,8fbf002c -3489074,2002825 -3489078,c1022be -348907c,82040141 -3489080,8fbf002c -3489084,8fb10028 -3489088,8fb00024 -348908c,3e00008 -3489090,27bd0030 -3489094,27bdffd0 -3489098,afbf002c -348909c,afb10028 -34890a0,afb00024 -34890a4,808025 -34890a8,afa00010 -34890ac,afa00014 -34890b0,9482001c -34890b4,10400004 -34890b8,a08825 -34890bc,24030005 -34890c0,54430007 -34890c4,afa00018 -34890c8,24070034 -34890cc,922600a5 -34890d0,2002825 -34890d4,c1019a8 -34890d8,27a40010 -34890dc,afa00018 -34890e0,8fa50010 -34890e4,8fa60014 -34890e8,c10233f -34890ec,27a40018 -34890f0,97a20018 -34890f4,10400008 -34890f8,2203025 -34890fc,3c028041 -3489100,8c479ec4 -3489104,2002825 -3489108,c1022fd -348910c,8fa40018 -3489110,10000005 -3489114,8fbf002c -3489118,2002825 -348911c,c1022be -3489120,82040147 -3489124,8fbf002c -3489128,8fb10028 -348912c,8fb00024 -3489130,3e00008 -3489134,27bd0030 -3489138,27bdffd8 -348913c,afbf0024 -3489140,afb10020 -3489144,afb0001c -3489148,808025 -348914c,a08825 -3489150,3c028041 -3489154,8c429e6c -3489158,afa20010 -348915c,2407003e -3489160,a03025 -3489164,802825 -3489168,c102356 -348916c,27a40010 -3489170,3c028041 -3489174,8c479ec4 -3489178,2203025 -348917c,2002825 -3489180,c1022fd -3489184,8fa40010 -3489188,8fbf0024 -348918c,8fb10020 -3489190,8fb0001c -3489194,3e00008 -3489198,27bd0028 -348919c,801025 -34891a0,14c00002 -34891a4,a6001b -34891a8,7000d -34891ac,2810 -34891b0,3812 -34891b4,3c03aaaa -34891b8,3463aaab -34891bc,e30019 -34891c0,1810 -34891c4,31882 -34891c8,32040 -34891cc,831821 -34891d0,31840 -34891d4,e31823 -34891d8,44850000 -34891dc,4a10004 -34891e0,468000a1 -34891e4,3c048041 -34891e8,d4809ee8 -34891ec,46201080 -34891f0,462010a0 -34891f4,44860000 -34891f8,4c10004 -34891fc,46800021 -3489200,3c048041 -3489204,d4849ee8 -3489208,46240000 -348920c,46200020 -3489210,46001083 -3489214,3c048041 -3489218,c4849edc -348921c,46022101 -3489220,24640001 -3489224,3c068041 -3489228,24c69e80 -348922c,32840 -3489230,a32821 -3489234,c52821 -3489238,90a50001 -348923c,44850000 -3489244,46800020 -3489248,46040002 -348924c,42840 -3489250,a42821 -3489254,c53021 -3489258,90c50001 -348925c,44853000 -3489264,468031a0 -3489268,46023182 -348926c,46060000 -3489270,3c058041 -3489274,c4a69ee0 -3489278,4600303e -3489280,45030005 -3489284,46060001 -3489288,4600000d -348928c,44050000 -3489290,10000006 -3489294,30a700ff -3489298,4600000d -348929c,44050000 -34892a0,3c068000 -34892a4,a62825 -34892a8,30a700ff -34892ac,3c068041 -34892b0,24c69e80 -34892b4,32840 -34892b8,a32821 -34892bc,c52821 -34892c0,90a50002 -34892c4,44850000 -34892cc,46800020 -34892d0,46040002 -34892d4,42840 -34892d8,a42821 -34892dc,c53021 -34892e0,90c50002 -34892e4,44853000 -34892ec,468031a0 -34892f0,46023182 -34892f4,46060000 -34892f8,3c058041 -34892fc,c4a69ee0 -3489300,4600303e -3489308,45030005 -348930c,46060001 -3489310,4600000d -3489314,44050000 -3489318,10000006 -348931c,30a600ff -3489320,4600000d -3489324,44050000 -3489328,3c068000 -348932c,a62825 -3489330,30a600ff -3489334,32840 -3489338,a31821 -348933c,3c088041 -3489340,25089e80 -3489344,681821 -3489348,90650000 -348934c,44850000 -3489354,46800020 -3489358,46040002 -348935c,41840 -3489360,641821 -3489364,681821 -3489368,90630000 -348936c,44832000 -3489374,46802120 -3489378,46022082 -348937c,46020000 -3489380,3c038041 -3489384,c4629ee0 -3489388,4600103e -3489390,45030005 -3489394,46020001 +3488df8,a4400038 +3488dfc,27bdffe8 +3488e00,afbf0014 +3488e04,afb00010 +3488e08,afa5001c +3488e0c,10a0000e +3488e10,afa60020 +3488e14,808025 +3488e18,93a40023 +3488e1c,50800002 +3488e20,97a40020 +3488e24,3084ffff +3488e28,c101ee3 +3488e30,c101ed4 +3488e34,402025 +3488e38,94430004 +3488e3c,a6030000 +3488e40,80420006 +3488e44,a2020002 +3488e48,8fbf0014 +3488e4c,8fb00010 +3488e50,3e00008 +3488e54,27bd0018 +3488e58,27bdffe0 +3488e5c,afbf001c +3488e60,afb00018 +3488e64,808025 +3488e68,30e700ff +3488e6c,90c600a5 +3488e70,c1019d9 +3488e74,27a40010 +3488e78,8fa50010 +3488e7c,8fa60014 +3488e80,c10237f +3488e84,2002025 +3488e88,8fbf001c +3488e8c,8fb00018 +3488e90,3e00008 +3488e94,27bd0020 +3488e98,27bdffd8 +3488e9c,afbf0024 +3488ea0,afb10020 +3488ea4,afb0001c +3488ea8,808025 +3488eac,a08825 +3488eb0,3c028041 +3488eb4,8c42a1ac +3488eb8,afa20010 +3488ebc,3825 +3488ec0,a03025 +3488ec4,802825 +3488ec8,c102396 +3488ecc,27a40010 +3488ed0,3c028041 +3488ed4,8c47a20c +3488ed8,2203025 +3488edc,2002825 +3488ee0,c10233d +3488ee4,8fa40010 +3488ee8,8fbf0024 +3488eec,8fb10020 +3488ef0,8fb0001c +3488ef4,3e00008 +3488ef8,27bd0028 +3488efc,27bdffd8 +3488f00,afbf0024 +3488f04,afb10020 +3488f08,afb0001c +3488f0c,808025 +3488f10,9083001d +3488f14,24020011 +3488f18,10620007 +3488f1c,a08825 +3488f20,3c028001 +3488f24,24423268 +3488f28,40f809 +3488f30,10000010 +3488f34,8fbf0024 +3488f38,3c028041 +3488f3c,8c42a1b0 +3488f40,afa20010 +3488f44,3825 +3488f48,a03025 +3488f4c,802825 +3488f50,c102396 +3488f54,27a40010 +3488f58,3c028041 +3488f5c,8c47a20c +3488f60,2203025 +3488f64,2002825 +3488f68,c10233d +3488f6c,8fa40010 +3488f70,8fbf0024 +3488f74,8fb10020 +3488f78,8fb0001c +3488f7c,3e00008 +3488f80,27bd0028 +3488f84,27bdffd8 +3488f88,afbf0024 +3488f8c,afb10020 +3488f90,afb0001c +3488f94,808025 +3488f98,a08825 +3488f9c,3c028041 +3488fa0,8c42a1b4 +3488fa4,afa20010 +3488fa8,2407004f +3488fac,a03025 +3488fb0,802825 +3488fb4,c102396 +3488fb8,27a40010 +3488fbc,3c028041 +3488fc0,8c47a210 +3488fc4,2203025 +3488fc8,2002825 +3488fcc,c10233d +3488fd0,8fa40010 +3488fd4,8fbf0024 +3488fd8,8fb10020 +3488fdc,8fb0001c +3488fe0,3e00008 +3488fe4,27bd0028 +3488fe8,27bdffd8 +3488fec,afbf0024 +3488ff0,afb10020 +3488ff4,afb0001c +3488ff8,808025 +3488ffc,a08825 +3489000,3c028041 +3489004,8c42a1b8 +3489008,afa20010 +348900c,3825 +3489010,a03025 +3489014,802825 +3489018,c102396 +348901c,27a40010 +3489020,3c028041 +3489024,8c47a214 +3489028,2203025 +348902c,2002825 +3489030,c10233d +3489034,8fa40010 +3489038,8fbf0024 +348903c,8fb10020 +3489040,8fb0001c +3489044,3e00008 +3489048,27bd0028 +348904c,27bdffd8 +3489050,afbf0024 +3489054,afb10020 +3489058,afb0001c +348905c,808025 +3489060,a08825 +3489064,3c028041 +3489068,8c42a1bc +348906c,afa20010 +3489070,2407000c +3489074,a03025 +3489078,802825 +348907c,c102396 +3489080,27a40010 +3489084,3c028041 +3489088,8c47a218 +348908c,2203025 +3489090,2002825 +3489094,c10233d +3489098,8fa40010 +348909c,8fbf0024 +34890a0,8fb10020 +34890a4,8fb0001c +34890a8,3e00008 +34890ac,27bd0028 +34890b0,27bdffd0 +34890b4,afbf002c +34890b8,afb10028 +34890bc,afb00024 +34890c0,808025 +34890c4,afa00010 +34890c8,afa00014 +34890cc,9482001c +34890d0,24030001 +34890d4,14430008 +34890d8,a08825 +34890dc,24070015 +34890e0,90a600a5 +34890e4,802825 +34890e8,c1019d9 +34890ec,27a40010 +34890f0,10000012 +34890f4,afa00018 +34890f8,24030007 +34890fc,14430008 +3489100,24030a0c +3489104,24070058 +3489108,90a600a5 +348910c,802825 +3489110,c1019d9 +3489114,27a40010 +3489118,10000008 +348911c,afa00018 +3489120,54430006 +3489124,afa00018 +3489128,3c050010 +348912c,34a5010a +3489130,c1019b1 +3489134,27a40010 +3489138,afa00018 +348913c,8fa50010 +3489140,8fa60014 +3489144,c10237f +3489148,27a40018 +348914c,97a20018 +3489150,10400008 +3489154,2203025 +3489158,3c028041 +348915c,8c47a204 +3489160,2002825 +3489164,c10233d +3489168,8fa40018 +348916c,10000005 +3489170,8fbf002c +3489174,2002825 +3489178,c1022fe +348917c,82040141 +3489180,8fbf002c +3489184,8fb10028 +3489188,8fb00024 +348918c,3e00008 +3489190,27bd0030 +3489194,27bdffd0 +3489198,afbf002c +348919c,afb10028 +34891a0,afb00024 +34891a4,808025 +34891a8,afa00010 +34891ac,afa00014 +34891b0,9482001c +34891b4,10400004 +34891b8,a08825 +34891bc,24030005 +34891c0,54430007 +34891c4,afa00018 +34891c8,24070034 +34891cc,922600a5 +34891d0,2002825 +34891d4,c1019d9 +34891d8,27a40010 +34891dc,afa00018 +34891e0,8fa50010 +34891e4,8fa60014 +34891e8,c10237f +34891ec,27a40018 +34891f0,97a20018 +34891f4,10400008 +34891f8,2203025 +34891fc,3c028041 +3489200,8c47a204 +3489204,2002825 +3489208,c10233d +348920c,8fa40018 +3489210,10000005 +3489214,8fbf002c +3489218,2002825 +348921c,c1022fe +3489220,82040147 +3489224,8fbf002c +3489228,8fb10028 +348922c,8fb00024 +3489230,3e00008 +3489234,27bd0030 +3489238,27bdffd8 +348923c,afbf0024 +3489240,afb10020 +3489244,afb0001c +3489248,808025 +348924c,a08825 +3489250,3c028041 +3489254,8c42a1ac +3489258,afa20010 +348925c,2407003e +3489260,a03025 +3489264,802825 +3489268,c102396 +348926c,27a40010 +3489270,3c028041 +3489274,8c47a204 +3489278,2203025 +348927c,2002825 +3489280,c10233d +3489284,8fa40010 +3489288,8fbf0024 +348928c,8fb10020 +3489290,8fb0001c +3489294,3e00008 +3489298,27bd0028 +348929c,801025 +34892a0,14c00002 +34892a4,a6001b +34892a8,7000d +34892ac,2810 +34892b0,3812 +34892b4,3c03aaaa +34892b8,3463aaab +34892bc,e30019 +34892c0,1810 +34892c4,31882 +34892c8,32040 +34892cc,831821 +34892d0,31840 +34892d4,e31823 +34892d8,44850000 +34892dc,4a10004 +34892e0,468000a1 +34892e4,3c048041 +34892e8,d480a228 +34892ec,46201080 +34892f0,462010a0 +34892f4,44860000 +34892f8,4c10004 +34892fc,46800021 +3489300,3c048041 +3489304,d484a228 +3489308,46240000 +348930c,46200020 +3489310,46001083 +3489314,3c048041 +3489318,c484a21c +348931c,46022101 +3489320,24640001 +3489324,3c068041 +3489328,24c6a1c0 +348932c,32840 +3489330,a32821 +3489334,c52821 +3489338,90a50001 +348933c,44850000 +3489344,46800020 +3489348,46040002 +348934c,42840 +3489350,a42821 +3489354,c53021 +3489358,90c50001 +348935c,44853000 +3489364,468031a0 +3489368,46023182 +348936c,46060000 +3489370,3c058041 +3489374,c4a6a220 +3489378,4600303e +3489380,45030005 +3489384,46060001 +3489388,4600000d +348938c,44050000 +3489390,10000006 +3489394,30a700ff 3489398,4600000d -348939c,44030000 -34893a0,10000006 -34893a4,a0430000 -34893a8,4600000d -34893ac,44030000 -34893b0,3c048000 -34893b4,641825 -34893b8,a0430000 -34893bc,a0470001 -34893c0,3e00008 -34893c4,a0460002 -34893c8,3c028011 -34893cc,3442a5d0 -34893d0,24030140 -34893d4,a4431424 -34893d8,90440032 -34893dc,41840 -34893e0,641821 -34893e4,31900 -34893e8,3e00008 -34893ec,a0430033 -34893f0,24a20002 -34893f4,24a50082 -34893f8,24065700 -34893fc,24070004 -3489400,9443fffe -3489404,50660008 -3489408,24420004 -348940c,50600006 -3489410,24420004 -3489414,94430000 -3489418,2c630004 -348941c,54600001 -3489420,a4470000 -3489424,24420004 -3489428,5445fff6 -348942c,9443fffe -3489430,3e00008 -3489438,27bdffe8 -348943c,afbf0014 -3489440,c1026fa -3489444,24040400 -3489448,3c038041 -348944c,ac62b208 -3489450,3c038041 -3489454,ac62b20c -3489458,8fbf0014 -348945c,3e00008 -3489460,27bd0018 -3489464,80820000 -3489468,10400026 -348946c,24870001 -3489470,3c038041 -3489474,8c68b208 -3489478,25080400 -348947c,3c038041 -3489480,8c63b20c -3489484,5825 -3489488,3c0aff00 -348948c,254a0fff -3489490,30c60fff -3489494,240df000 -3489498,3c098041 -348949c,2529a098 -34894a0,240c0001 -34894a4,68202b -34894a8,54800005 -34894ac,a0620000 -34894b0,11600014 -34894b4,3c028041 -34894b8,3e00008 -34894bc,ac43b20c -34894c0,30a40fff -34894c4,42300 -34894c8,8c620000 -34894cc,4a1024 -34894d0,441025 -34894d4,4d1024 -34894d8,461025 -34894dc,ac620000 -34894e0,24630004 -34894e4,95220004 -34894e8,a22821 -34894ec,24e70001 -34894f0,80e2ffff -34894f4,1440ffeb -34894f8,1805825 -34894fc,3c028041 -3489500,ac43b20c -3489504,3e00008 -348950c,27bdffb8 -3489510,afbf0044 -3489514,afbe0040 -3489518,afb7003c -348951c,afb60038 -3489520,afb50034 -3489524,afb40030 -3489528,afb3002c -348952c,afb20028 -3489530,afb10024 -3489534,afb00020 -3489538,80a825 -348953c,b025 -3489540,9025 -3489544,3c138041 -3489548,2673a098 -348954c,3c178041 -3489550,3c148041 -3489554,3c1e38e3 -3489558,24070012 -348955c,2c03025 -3489560,2602825 -3489564,c101ba6 -3489568,2a02025 -348956c,8ef0b208 -3489570,8e82b20c -3489574,202102b -3489578,50400026 -348957c,26520001 -3489580,37d18e39 -3489584,82020000 -3489588,2002825 -348958c,2442ffe0 -3489590,510018 -3489594,1810 -3489598,31883 -348959c,227c3 -34895a0,641823 -34895a4,14720016 -34895a8,26100004 -34895ac,8ca70000 -34895b0,73b02 -34895b4,510018 -34895b8,1810 -34895bc,31883 -34895c0,641823 -34895c4,330c0 -34895c8,c33021 -34895cc,63040 -34895d0,96630006 -34895d4,afa30018 -34895d8,96630004 -34895dc,afa30014 -34895e0,8ca30000 -34895e4,30630fff -34895e8,afa30010 -34895ec,30e70fff -34895f0,463023 -34895f4,2602825 -34895f8,c101c0e -34895fc,2a02025 -3489600,8e82b20c -3489604,202102b -3489608,5440ffdf -348960c,82020000 -3489610,26520001 -3489614,24020006 -3489618,1642ffcf -348961c,26d60012 -3489620,3c028041 -3489624,8c43b208 -3489628,3c028041 -348962c,ac43b20c -3489630,8fbf0044 -3489634,8fbe0040 -3489638,8fb7003c -348963c,8fb60038 -3489640,8fb50034 -3489644,8fb40030 -3489648,8fb3002c -348964c,8fb20028 -3489650,8fb10024 -3489654,8fb00020 -3489658,3e00008 -348965c,27bd0048 -3489660,3c028041 -3489664,24030001 -3489668,ac43b214 -348966c,3c038041 -3489670,8c62b218 -3489674,2c440006 -3489678,50800001 -348967c,24020005 -3489680,3e00008 -3489684,ac62b218 -3489688,27bdffb8 -348968c,afbf0044 -3489690,afbe0040 -3489694,afb6003c -3489698,afb50038 -348969c,afb40034 -34896a0,afb30030 -34896a4,afb2002c -34896a8,afb10028 -34896ac,afb00024 -34896b0,3a0f025 -34896b4,3c028041 -34896b8,9442b210 -34896bc,10400133 -34896c0,3a0a825 -34896c4,3c02801d -34896c8,3442aa30 -34896cc,8c42066c -34896d0,3c033000 -34896d4,24630483 -34896d8,431024 -34896dc,1440012b -34896e0,808025 -34896e4,3c02801c -34896e8,344284a0 -34896ec,8c430008 -34896f0,3c02800f -34896f4,8c4213ec -34896f8,54620125 -34896fc,2a0e825 -3489700,3c028011 -3489704,3442a5d0 -3489708,8c47135c -348970c,14e0011f -3489710,3c02800e -3489714,3442f1b0 -3489718,8c420000 -348971c,30420020 -3489720,1440011a -3489724,3c028041 -3489728,8c43b214 -348972c,24020001 -3489730,1062000a -3489734,3c02801c -3489738,344284a0 -348973c,3c030001 -3489740,431021 -3489744,94430934 -3489748,24020006 -348974c,54620110 -3489750,2a0e825 -3489754,10000009 -3489758,3c038041 -348975c,344284a0 -3489760,3c030001 -3489764,431021 -3489768,94430934 -348976c,24020006 -3489770,14620007 -3489774,3c028041 -3489778,3c038041 -348977c,8c62b218 -3489780,3042001f -3489784,ac62b218 -3489788,10000022 -348978c,241300ff -3489790,8c42b218 -3489794,2c430006 -3489798,1060000a -348979c,2c43006a -34897a0,29a00 -34897a4,2629823 -34897a8,3c02cccc -34897ac,3442cccd -34897b0,2620019 -34897b4,9810 -34897b8,139882 -34897bc,10000015 -34897c0,327300ff -34897c4,14600013 -34897c8,241300ff -34897cc,2c4300ba -34897d0,1060000b -34897d4,21a00 -34897d8,621023 -34897dc,24429769 -34897e0,3c03cccc -34897e4,3463cccd -34897e8,430019 -34897ec,1010 -34897f0,29982 -34897f4,139827 -34897f8,10000006 -34897fc,327300ff -3489800,3c028041 -3489804,ac40b214 -3489808,3c028041 -348980c,100000df -3489810,ac40b218 -3489814,3c038041 -3489818,8c62b218 -348981c,24420001 -3489820,ac62b218 -3489824,3c028011 -3489828,3442a5d0 -348982c,8c4808c4 -3489830,19000011 -3489834,1001025 -3489838,e05025 -348983c,3c056666 -3489840,24a56667 -3489844,254a0001 -3489848,401825 -348984c,450018 -3489850,2010 -3489854,42083 -3489858,217c3 -348985c,2863000a -3489860,1060fff8 -3489864,821023 -3489868,15400005 -348986c,3c028041 -3489870,10000002 -3489874,240a0001 -3489878,240a0001 -348987c,3c028041 -3489880,9445b1b2 -3489884,18a00010 -3489888,a01025 -348988c,3c066666 -3489890,24c66667 -3489894,24e70001 -3489898,401825 -348989c,460018 -34898a0,2010 -34898a4,42083 -34898a8,217c3 -34898ac,2863000a -34898b0,1060fff8 -34898b4,821023 -34898b8,54e00005 -34898bc,1473821 -34898c0,10000002 -34898c4,24070001 -34898c8,24070001 -34898cc,1473821 -34898d0,24f40001 -34898d4,3c028041 -34898d8,2442a098 -34898dc,94430004 -34898e0,740018 -34898e4,2012 -34898e8,3c038041 -34898ec,2463a078 -34898f0,94660004 -34898f4,862021 -34898f8,497c2 -34898fc,2449021 -3489900,129043 -3489904,129023 -3489908,265200a0 -348990c,94420006 -3489910,44820000 -3489918,46800021 -348991c,3c028041 -3489920,d4469ef0 -3489924,46260002 -3489928,3c028041 -348992c,d4429ef8 -3489930,46201001 -3489934,3c028041 -3489938,d4449f00 -348993c,46240000 -3489940,4620000d -3489944,44060000 -3489948,94620006 -348994c,44820000 -3489954,46800021 -3489958,46260002 -348995c,46201081 -3489960,3c028041 -3489964,d4409f08 -3489968,46201080 -348996c,46241080 -3489970,4620100d -3489974,44110000 -3489978,24e20009 -348997c,210c2 -3489980,210c0 -3489984,3a2e823 -3489988,27a40020 -348998c,941021 -3489990,19400015 -3489994,a0400000 -3489998,2549ffff -348999c,894821 -34899a0,806025 -34899a4,3c0b6666 -34899a8,256b6667 -34899ac,10b0018 -34899b0,1810 -34899b4,31883 -34899b8,817c3 -34899bc,621823 -34899c0,31080 -34899c4,431021 -34899c8,21040 -34899cc,1021023 -34899d0,24420030 -34899d4,a1220000 -34899d8,604025 -34899dc,1201025 -34899e0,144cfff2 -34899e4,2529ffff -34899e8,8a1021 -34899ec,2403002f -34899f0,a0430000 -34899f4,147102a -34899f8,10400012 -34899fc,873821 -3489a00,8a5021 -3489a04,3c086666 -3489a08,25086667 -3489a0c,a80018 -3489a10,1810 -3489a14,31883 -3489a18,517c3 -3489a1c,621823 -3489a20,31080 -3489a24,431021 -3489a28,21040 -3489a2c,a21023 -3489a30,24420030 -3489a34,a0e20000 -3489a38,24e7ffff -3489a3c,14eafff3 -3489a40,602825 -3489a44,8e020008 -3489a48,24430008 -3489a4c,ae030008 -3489a50,3c03de00 -3489a54,ac430000 -3489a58,3c038041 -3489a5c,2463a0e8 -3489a60,ac430004 -3489a64,8e020008 -3489a68,24430008 -3489a6c,ae030008 -3489a70,3c03e700 -3489a74,ac430000 -3489a78,ac400004 -3489a7c,8e020008 -3489a80,24430008 -3489a84,ae030008 -3489a88,3c03fc11 -3489a8c,34639623 -3489a90,ac430000 -3489a94,3c03ff2f -3489a98,3463ffff -3489a9c,ac430004 -3489aa0,8e030008 -3489aa4,24620008 -3489aa8,ae020008 -3489aac,3c16fa00 -3489ab0,ac760000 -3489ab4,3c02dad3 -3489ab8,24420b00 -3489abc,2621025 -3489ac0,ac620004 -3489ac4,c102519 -3489ac8,2402825 -3489acc,3c028041 -3489ad0,9442a09c -3489ad4,540018 -3489ad8,a012 -3489adc,292a021 -3489ae0,8e020008 -3489ae4,24430008 -3489ae8,ae030008 -3489aec,ac560000 -3489af0,3c03f4ec -3489af4,24633000 -3489af8,2639825 -3489afc,ac530004 -3489b00,3c028041 -3489b04,8c46b218 -3489b08,63042 -3489b0c,24070001 -3489b10,30c6000f -3489b14,3c128041 -3489b18,2645a078 -3489b1c,c101ba6 -3489b20,2002025 -3489b24,2645a078 -3489b28,94a20006 -3489b2c,afa20018 -3489b30,94a20004 -3489b34,afa20014 -3489b38,afb10010 -3489b3c,2803825 -3489b40,3025 -3489b44,c101c0e -3489b48,2002025 -3489b4c,c102543 -3489b50,2002025 -3489b54,8e020008 -3489b58,24430008 -3489b5c,ae030008 -3489b60,3c03e900 -3489b64,ac430000 -3489b68,ac400004 -3489b6c,8e020008 -3489b70,24430008 -3489b74,ae030008 -3489b78,3c03df00 -3489b7c,ac430000 -3489b80,ac400004 -3489b84,10000002 -3489b88,2a0e825 -3489b8c,2a0e825 -3489b90,3c0e825 -3489b94,8fbf0044 -3489b98,8fbe0040 -3489b9c,8fb6003c -3489ba0,8fb50038 -3489ba4,8fb40034 -3489ba8,8fb30030 -3489bac,8fb2002c -3489bb0,8fb10028 -3489bb4,8fb00024 -3489bb8,3e00008 -3489bbc,27bd0048 -3489bc0,3c028040 -3489bc4,a040307c -3489bc8,3c028040 -3489bcc,3e00008 -3489bd0,ac403080 -3489bd4,3c038041 -3489bd8,3c028050 -3489bdc,24420000 -3489be0,3e00008 -3489be4,ac62b21c -3489be8,3082000f -3489bec,10400009 -3489bf0,3c038041 -3489bf4,417c3 -3489bf8,21702 -3489bfc,821821 -3489c00,3063000f -3489c04,431023 -3489c08,24420010 -3489c0c,822021 -3489c10,3c038041 -3489c14,8c62b21c -3489c18,442021 -3489c1c,3e00008 -3489c20,ac64b21c -3489c24,27bdffe8 -3489c28,afbf0014 -3489c2c,afb00010 -3489c30,808025 -3489c34,c1026fa -3489c38,8c840008 -3489c3c,402025 -3489c40,ae020000 -3489c44,8e060008 -3489c48,3c028000 -3489c4c,24420df0 -3489c50,40f809 -3489c54,8e050004 -3489c58,8fbf0014 -3489c5c,8fb00010 -3489c60,3e00008 -3489c64,27bd0018 -3489c68,33c2 -3489c6c,664399c4 -3489c70,cc45ffc6 -3489c74,ff47ffc8 -3489c78,ff49e0ca -3489c7c,c24ba3cc -3489c80,854d660d -3489c84,440f2200 -3489c88,85d1a352 -3489c8c,c2d3e045 -3489c90,1010101 -3489c94,1010101 -3489c98,1010101 -3489c9c,1010101 -3489ca0,1010101 -3489cbc,1010000 -3489cc4,1010101 -3489cc8,1000101 -3489ccc,10101 -3489cd0,10000 -3489cd4,2b242525 -3489cd8,26262626 -3489cdc,27272727 -3489ce0,27272727 -3489ce4,500080d -3489ce8,1051508 -3489cec,d01052a -3489cf0,80d0127 -3489cf4,f080b01 -3489cf8,4d510b02 -3489d00,97ff6350 -3489d04,45ff5028 -3489d08,57456397 -3489d0c,ff5e45ff -3489d10,9f006545 -3489d14,ff63ff6c -3489d18,45fff063 -3489d1c,7345ffff -3489d20,ff503aff -3489d24,ffff573a -3489d28,ffffff5e -3489d2c,3affffff -3489d30,653affff -3489d34,ff6c3aff -3489d38,ffff733a -3489d3c,5a0c00 -3489d40,720c0096 -3489d44,c009618 -3489d48,1652a00 -3489d4c,4e2a005a -3489d50,2a000000 -3489d54,c004e00 -3489d58,c015a00 -3489d5c,c026600 -3489d60,c037200 -3489d64,c047e00 -3489d68,c058a00 -3489d6c,c064e0c -3489d70,75a0c -3489d74,c09660c -3489d78,a720c -3489d7c,c0c7e0c -3489d80,c0d8a0c -3489d84,c0e4e18 -3489d88,c0f5a18 -3489d8c,c106618 -3489d90,c117218 -3489d94,c127e18 -3489d98,c138a18 -3489d9c,ffff -3489da0,ffff -3489da4,ffff -3489da8,ffff -3489dac,ffff -3489db0,ffff -3489db4,ffff -3489db8,ffff -3489dbc,ffff -3489dc0,ffff -3489dc4,ffff -3489dc8,ffff -3489dcc,ffff -3489dd0,ffff -3489dd4,c3b7e2a -3489dd8,c3c8a2a -3489ddc,c3d962a -3489de0,ffff -3489de4,c3e7e36 -3489de8,b3f8b37 -3489dec,b409737 -3489df0,ffff -3489df4,c417e42 -3489df8,c428a42 -3489dfc,c439642 -3489e00,ffff -3489e04,c447e4f -3489e08,c458a4f -3489e0c,c46964f -3489e10,ffff -3489e14,c149600 -3489e18,ffff -3489e1c,2c061b31 -3489e20,2c072931 -3489e24,2c083731 -3489e28,2a096f51 -3489e2c,2c0a722a -3489e30,ffff -3489e34,2c00370a -3489e38,2c01371a -3489e3c,2c022922 -3489e40,2c031b1a -3489e44,2c041b0a -3489e48,2c052902 -3489e4c,ffff -3489e50,ffff -3489e54,8040a0b8 -3489e58,8040a0a8 -3489e5c,8040a038 -3489e60,c8ff6482 -3489e64,82ffff64 -3489e68,64ff5aff -3489e6c,bd1400 -3489e70,aa0200 -3489e74,bd1300 -3489e78,15c6300 -3489e7c,de2f00 -3489e80,e01010e0 -3489e84,e01010e0 -3489e88,1010e0e0 -3489e8c,1010e0e0 -3489e90,10e0e010 -3489e94,10000000 -3489e98,4d510000 -3489e9c,4e6f726d -3489ea0,616c0000 -3489ea4,bdcccccd -3489ea8,3dcccccd -3489eac,43510000 -3489eb0,41100000 -3489eb4,4f000000 -3489eb8,42080000 -3489ebc,c20c0000 -3489ec0,420c0000 -3489ec4,3f800000 -3489ec8,3f000000 -3489ecc,41c80000 -3489ed0,3fa00000 -3489ed4,40000000 -3489ed8,40200000 -3489edc,3f800000 -3489ee0,4f000000 -3489ee8,41f00000 -3489ef0,3ff80000 -3489ef8,406e0000 -3489f00,3ff00000 -3489f08,40080000 -3489f10,80409c68 -3489f14,10203 -3489f18,4050607 -3489f1c,ffffffff -3489f20,ffff0000 -3489f24,ff00ff -3489f28,3c000064 -3489f2c,ffff8200 -3489f30,c832ffc8 -3489f34,c8000000 -3489f38,104465 -3489f3c,6b750000 -3489f44,110446f -3489f48,646f6e67 -3489f4c,6f000000 -3489f50,2104a61 -3489f54,62750000 -3489f5c,3d0466f -3489f60,72657374 -3489f68,4d04669 -3489f6c,72650000 -3489f74,5d05761 -3489f78,74657200 -3489f80,7d05368 -3489f84,61646f77 -3489f8c,6d05370 -3489f90,69726974 -3489f98,890426f -3489f9c,74570000 -3489fa4,9104963 -3489fa8,65000000 -3489fb0,ca04765 -3489fb4,7275646f -3489fbc,b804754 -3489fc0,47000000 -3489fc8,dc04761 -3489fcc,6e6f6e00 -3489fd4,2 -3489fdc,3f800000 -3489fe8,1 -3489fec,30006 -3489ff0,70009 -3489ff4,b000e -3489ff8,f0010 -3489ffc,110019 -348a000,1a002b -348a004,2c002e -348a008,300032 -348a00c,35003c -348a010,400041 -348a014,460051 -348a018,540109 -348a01c,10b010c -348a020,10e010f -348a024,1100113 -348a02c,100010 -348a030,a0301 -348a034,1000000 -348a03c,100010 -348a040,20002 -348a044,2000000 -348a04c,80008 -348a050,a0301 -348a054,1000000 -348a05c,100010 -348a060,30301 -348a064,1000000 -348a06c,100018 -348a070,10301 -348a074,1000000 -348a07c,100010 -348a080,100301 -348a084,1000000 -348a08c,200020 -348a090,10302 -348a094,2000000 -348a09c,8000e -348a0a0,5f0301 -348a0a4,1000000 -348a0ac,180018 -348a0b0,140003 -348a0b4,4000000 -348a0bc,200020 -348a0c0,5a0003 -348a0c4,4000000 -348a0cc,100010 -348a0d0,60301 -348a0d4,1000000 -348a0dc,100010 -348a0e0,30003 -348a0e4,4000000 -348a0e8,e7000000 -348a0f0,d9000000 -348a0f8,ed000000 -348a0fc,5003c0 -348a100,ef002cf0 -348a104,504244 -348a108,df000000 -348a124,4d8e0032 -348a128,ce2001 -348a12c,80407d1c -348a130,804077ac -348a134,ffffffff -348a138,4d8c0034 -348a13c,bb1201 -348a140,80407b54 -348a144,804077ac -348a148,ffffffff -348a14c,4d090033 -348a150,d92801 -348a154,80407b54 -348a158,804077ac -348a15c,ffffffff -348a160,53030031 -348a164,e93500 -348a168,80407b54 -348a16c,804077ac -348a170,ffffffff -348a174,53060030 -348a178,e73300 -348a17c,80407b54 -348a180,804077ac -348a184,ffffffff -348a188,530e0035 -348a18c,e83400 -348a190,80407b54 -348a194,804077ac -348a198,ffffffff -348a19c,4d000037 -348a1a0,c71b01 -348a1a4,80407b54 -348a1a8,804077ac -348a1ac,ffffffff -348a1b0,530a0036 -348a1b4,dd2d00 -348a1b8,80407b54 -348a1bc,804077ac -348a1c0,ffffffff -348a1c4,530b004f -348a1c8,dd2e00 -348a1cc,80407b54 -348a1d0,804077ac -348a1d4,ffffffff -348a1d8,530f0039 -348a1dc,ea3600 -348a1e0,80407b54 -348a1e4,804077ac -348a1e8,ffffffff -348a1ec,53230069 -348a1f0,ef3b00 -348a1f4,80407b54 -348a1f8,80407a10 -348a1fc,ffffffff -348a200,5308003a -348a204,de2f00 -348a208,80407b54 -348a20c,804077ac -348a210,ffffffff -348a214,53110038 -348a218,f64100 -348a21c,80407b54 -348a220,804077ac -348a224,ffffffff -348a228,532f0002 -348a22c,1095e00 -348a230,80407b54 -348a234,804077ac -348a238,ffffffff -348a23c,53140042 -348a240,c60100 -348a244,80407b54 -348a248,804077ac -348a24c,ffffffff -348a250,53150043 -348a254,eb3800 -348a258,80407b54 -348a25c,804077ac -348a260,ffffffff -348a264,53160044 -348a268,eb3700 -348a26c,80407b54 -348a270,804077ac -348a274,ffffffff -348a278,53170045 -348a27c,eb3900 -348a280,80407b54 -348a284,804077ac -348a288,ffffffff -348a28c,53180046 -348a290,c60100 -348a294,80407b54 -348a298,804077ac -348a29c,ffffffff -348a2a0,531a0098 -348a2a4,df3000 -348a2a8,80407b54 -348a2ac,804077ac -348a2b0,ffffffff -348a2b4,531b0099 -348a2b8,10b4500 -348a2bc,80407d5c -348a2c0,804077ac -348a2c4,ffffffff -348a2c8,53100048 -348a2cc,f33e01 -348a2d0,80407b54 -348a2d4,804077ac -348a2d8,ffffffff -348a2dc,53250010 -348a2e0,1364f00 -348a2e4,80407b54 -348a2e8,804077ac -348a2ec,ffffffff -348a2f0,53260011 -348a2f4,1353200 -348a2f8,80407b54 -348a2fc,804077ac -348a300,ffffffff -348a304,5322000b -348a308,1094400 -348a30c,80407b54 -348a310,804077ac -348a314,ffffffff -348a318,53240012 -348a31c,1343100 -348a320,80407b54 -348a324,804077ac -348a328,ffffffff -348a32c,53270013 -348a330,1375000 -348a334,80407b54 -348a338,804077ac -348a33c,ffffffff -348a340,532b0017 -348a344,1385100 -348a348,80407b54 -348a34c,804077ac -348a350,ffffffff -348a354,532d9001 -348a358,da2900 -348a35c,80407b54 -348a360,804077ac -348a364,ffffffff -348a368,532e000b -348a36c,1094400 -348a370,80407b54 -348a374,804077ac -348a378,ffffffff -348a37c,53300003 -348a380,1415400 -348a384,80407b54 -348a388,804077ac -348a38c,ffffffff -348a390,53310004 -348a394,1405300 -348a398,80407b54 -348a39c,804077ac -348a3a0,ffffffff -348a3a4,53320005 -348a3a8,f54000 -348a3ac,80407b54 -348a3b0,804077ac -348a3b4,ffffffff -348a3b8,53330008 -348a3bc,1435600 -348a3c0,80407b54 -348a3c4,804077ac -348a3c8,ffffffff -348a3cc,53340009 -348a3d0,1465700 -348a3d4,80407b54 -348a3d8,804077ac -348a3dc,ffffffff -348a3e0,5335000d -348a3e4,1495a00 -348a3e8,80407b54 -348a3ec,804077ac -348a3f0,ffffffff -348a3f4,5336000e -348a3f8,13f5200 -348a3fc,80407b54 -348a400,804077ac -348a404,ffffffff -348a408,5337000a -348a40c,1425500 -348a410,80407b54 -348a414,804077ac -348a418,ffffffff -348a41c,533b00a4 -348a420,18d7400 -348a424,80407b54 -348a428,804077ac -348a42c,ffffffff -348a430,533d004b -348a434,f84300 -348a438,80407b54 -348a43c,804077ac -348a440,ffffffff -348a444,533e004c -348a448,cb1d01 -348a44c,80407b54 -348a450,804077ac -348a454,ffffffff -348a458,533f004d -348a45c,dc2c01 -348a460,80407b54 -348a464,804077ac -348a468,ffffffff -348a46c,5340004e -348a470,ee3a00 -348a474,80407b54 -348a478,804077ac -348a47c,ffffffff -348a480,53420050 -348a484,f23c00 -348a488,80407b54 -348a48c,804077ac -348a490,ffffffff -348a494,53430051 -348a498,f23d00 -348a49c,80407b54 -348a4a0,804077ac -348a4a4,ffffffff -348a4a8,53450053 -348a4ac,1184700 -348a4b0,80407b54 -348a4b4,804077ac -348a4b8,ffffffff -348a4bc,53460054 -348a4c0,1575f00 -348a4c4,80407b54 -348a4c8,804077ac -348a4cc,ffffffff -348a4d0,534b0056 -348a4d4,be1600 -348a4d8,80407b54 -348a4dc,804077ac -348a4e0,ffffffff -348a4e4,534c0057 -348a4e8,be1700 -348a4ec,80407b54 -348a4f0,804077ac -348a4f4,ffffffff -348a4f8,534d0058 -348a4fc,bf1800 -348a500,80407b54 -348a504,804077ac -348a508,ffffffff -348a50c,534e0059 -348a510,bf1900 -348a514,80407b54 -348a518,804077ac -348a51c,ffffffff -348a520,534f005a -348a524,bf1a00 -348a528,80407b54 -348a52c,804077ac -348a530,ffffffff -348a534,5351005b -348a538,12d4900 -348a53c,80407b54 -348a540,804077ac -348a544,ffffffff -348a548,5352005c -348a54c,12d4a00 -348a550,80407b54 -348a554,804077ac -348a558,ffffffff -348a55c,535300cd -348a560,db2a00 -348a564,80407b54 -348a568,804077ac -348a56c,ffffffff -348a570,535400ce -348a574,db2b00 -348a578,80407b54 -348a57c,804077ac -348a580,ffffffff -348a584,536f0068 -348a588,c82100 -348a58c,80407b54 -348a590,804077ac -348a594,ffffffff -348a598,5370007b -348a59c,d72400 -348a5a0,80407b54 -348a5a4,804077ac -348a5a8,ffffffff -348a5ac,5341004a -348a5b0,10e4600 -348a5b4,80407b54 -348a5b8,8040798c -348a5bc,ffffffff -348a5c0,4d5800dc -348a5c4,1194801 -348a5c8,80407d38 -348a5cc,804077ac -348a5d0,ffffffff -348a5d4,3d7200c6 -348a5d8,bd1301 -348a5dc,80407b54 -348a5e0,804077b4 -348a5e4,ffffffff -348a5e8,3e7a00c2 -348a5ec,bd1401 -348a5f0,80407b54 -348a5f4,804077b4 -348a5f8,ffffffff -348a5fc,537400c7 -348a600,b90a02 -348a604,80407b54 -348a608,804077ac -348a60c,ffffffff -348a610,53750067 -348a614,b80b01 -348a618,80407b54 -348a61c,804077ac -348a620,ffffffff -348a624,53760066 -348a628,c81c01 -348a62c,80407b54 -348a630,804077ac -348a634,ffffffff -348a638,53770060 -348a63c,aa0203 -348a640,80407b54 -348a644,804077ac -348a648,ffffffff -348a64c,53780052 -348a650,cd1e01 -348a654,80407b54 -348a658,804077ac -348a65c,ffffffff -348a660,53790052 -348a664,cd1f01 -348a668,80407b54 -348a66c,804077ac -348a670,ffffffff -348a674,5356005e -348a678,d12200 -348a67c,80407b54 -348a680,804079e4 -348a684,1ffff -348a688,5357005f -348a68c,d12300 -348a690,80407b54 -348a694,804079e4 -348a698,2ffff -348a69c,5321009a -348a6a0,da2900 -348a6a4,80407b54 -348a6a8,804077ac -348a6ac,ffffffff -348a6b0,4d830055 -348a6b4,b70901 -348a6b8,80407b54 -348a6bc,804077ac -348a6c0,ffffffff -348a6c4,4d9200e6 -348a6c8,d82501 -348a6cc,80407d00 -348a6d0,804077ac -348a6d4,ffffffff -348a6d8,4d9300e6 -348a6dc,d82601 -348a6e0,80407d00 -348a6e4,804077ac -348a6e8,ffffffff -348a6ec,4d9400e6 -348a6f0,d82701 -348a6f4,80407d00 -348a6f8,804077ac -348a6fc,ffffffff -348a700,4d84006f -348a704,17f6d01 -348a708,80407b54 -348a70c,804077ac -348a710,ffffffff -348a714,4d8500cc -348a718,17f6e01 -348a71c,80407b54 -348a720,804077ac -348a724,ffffffff -348a728,4d8600f0 -348a72c,17f6f01 -348a730,80407b54 -348a734,804077ac -348a738,ffffffff -348a73c,3d7200c6 -348a740,bd1301 -348a744,80407b54 -348a748,804077b4 -348a74c,ffffffff -348a750,53820098 -348a754,df3000 -348a758,80407b54 -348a75c,804077ac -348a760,ffffffff -348a764,53280014 -348a768,1505b00 -348a76c,80407b54 -348a770,804077ac -348a774,ffffffff -348a778,53290015 -348a77c,1515c00 -348a780,80407b54 -348a784,804077ac -348a788,ffffffff -348a78c,532a0016 -348a790,1525d00 -348a794,80407b54 -348a798,804077ac -348a79c,ffffffff -348a7a0,53500079 -348a7a4,1475800 -348a7a8,80407b54 -348a7ac,804077ac -348a7b0,ffffffff -348a7b4,4d8700f1 -348a7b8,17f7101 -348a7bc,80407b54 -348a7c0,804077ac -348a7c4,ffffffff -348a7c8,4d8800f2 -348a7cc,17f7201 -348a7d0,80407b54 -348a7d4,804077ac -348a7d8,ffffffff -348a7dc,533d000c -348a7e0,f84300 -348a7e4,80407b54 -348a7e8,804078b4 -348a7ec,ffffffff -348a7f0,53040070 -348a7f4,1586000 -348a7f8,80407b54 -348a7fc,804077ac -348a800,ffffffff -348a804,530c0071 -348a808,1586100 -348a80c,80407b54 -348a810,804077ac -348a814,ffffffff -348a818,53120072 -348a81c,1586200 -348a820,80407b54 -348a824,804077ac -348a828,ffffffff -348a82c,5b7100b4 -348a830,15c6301 -348a834,80407b54 -348a838,804077ac -348a83c,ffffffff -348a840,530500ad -348a844,15d6400 -348a848,80407b54 -348a84c,804077ac -348a850,ffffffff -348a854,530d00ae -348a858,15d6500 -348a85c,80407b54 -348a860,804077ac -348a864,ffffffff -348a868,531300af -348a86c,15d6600 -348a870,80407b54 -348a874,804077ac -348a878,ffffffff -348a87c,53470007 -348a880,17b6c00 -348a884,80407b54 -348a888,804077ac -348a88c,ffffffff -348a890,53480007 -348a894,17b6c00 -348a898,80407b54 -348a89c,804077ac -348a8a0,ffffffff -348a8a4,4d8a0037 -348a8a8,c71b01 -348a8ac,80407b54 -348a8b0,804077ac -348a8b4,ffffffff -348a8b8,4d8b0037 -348a8bc,c71b01 -348a8c0,80407b54 -348a8c4,804077ac -348a8c8,ffffffff -348a8cc,4d8c0034 -348a8d0,bb1201 -348a8d4,80407b54 -348a8d8,804077ac -348a8dc,ffffffff -348a8e0,4d8d0034 -348a8e4,bb1201 -348a8e8,80407b54 -348a8ec,804077ac -348a8f0,ffffffff -348a8f4,4d020032 -348a8f8,ce2001 -348a8fc,80407d1c -348a900,804077ac -348a904,ffffffff -348a908,4d8f0032 -348a90c,ce2001 -348a910,80407d1c -348a914,804077ac -348a918,ffffffff -348a91c,4d900032 -348a920,ce2001 -348a924,80407d1c -348a928,804077ac -348a92c,ffffffff -348a930,4d910032 -348a934,ce2001 -348a938,80407d1c -348a93c,804077ac -348a940,ffffffff -348a944,4d9500dc -348a948,1194801 -348a94c,80407d38 -348a950,804077ac -348a954,ffffffff -348a958,4d960033 -348a95c,d92801 -348a960,80407b54 -348a964,804077ac -348a968,ffffffff -348a96c,4d970033 -348a970,d92801 -348a974,80407b54 -348a978,804077ac -348a97c,ffffffff -348a980,53190047 -348a984,f43f00 -348a988,80407b54 -348a98c,804077ac -348a990,ffffffff -348a994,531d007a -348a998,1746800 -348a99c,80407b54 -348a9a0,804077ac -348a9a4,ffffffff -348a9a8,531c005d -348a9ac,1736700 -348a9b0,80407b54 -348a9b4,804077ac -348a9b8,ffffffff -348a9bc,53200097 -348a9c0,1766a00 -348a9c4,80407b54 -348a9c8,804077ac -348a9cc,ffffffff -348a9d0,531e00f9 -348a9d4,1767000 -348a9d8,80407b54 -348a9dc,804077ac -348a9e0,ffffffff -348a9e4,537700f3 -348a9e8,aa0201 -348a9ec,80407b54 -348a9f0,804077ac -348a9f4,ffffffff -348a9f8,4d8400f4 -348a9fc,17f6d01 -348aa00,80407b54 -348aa04,804077ac -348aa08,ffffffff -348aa0c,4d8500f5 -348aa10,17f6e01 -348aa14,80407b54 -348aa18,804077ac -348aa1c,ffffffff -348aa20,4d8600f6 -348aa24,17f6f01 -348aa28,80407b54 -348aa2c,804077ac -348aa30,ffffffff -348aa34,4d8700f7 -348aa38,17f7101 -348aa3c,80407b54 -348aa40,804077ac -348aa44,ffffffff -348aa48,537a00fa -348aa4c,bd1401 -348aa50,80407b54 -348aa54,804077b4 -348aa58,ffffffff -348aa5c,53980090 -348aa60,c71b01 -348aa64,80407b54 -348aa68,804077ac -348aa6c,ffffffff -348aa70,53990091 -348aa74,c71b01 -348aa78,80407b54 -348aa7c,804077ac -348aa80,ffffffff -348aa84,539a00a7 -348aa88,bb1201 -348aa8c,80407b54 -348aa90,804077ac -348aa94,ffffffff -348aa98,539b00a8 -348aa9c,bb1201 -348aaa0,80407b54 -348aaa4,804077ac -348aaa8,ffffffff -348aaac,5349006c -348aab0,17b7300 -348aab4,80407b54 -348aab8,804077ac -348aabc,ffffffff -348aac0,53419002 -348aac8,80407b54 -348aacc,804079b0 -348aad0,ffffffff -348ab10,ffffffff -348ab14,dd2d00 -348ab18,80407b5c -348ab1c,804077ac -348ab20,ffffffff -348ab24,ffffffff -348ab28,1475800 -348ab2c,80407b70 -348ab30,804077ac -348ab34,ffffffff -348ab38,ffffffff -348ab3c,bf1800 -348ab40,80407b9c -348ab44,804077ac -348ab48,ffffffff -348ab4c,ffffffff -348ab50,e93500 -348ab54,80407bc8 -348ab58,804077ac -348ab5c,ffffffff -348ab60,ffffffff -348ab64,e73300 -348ab68,80407bf0 -348ab6c,804077ac -348ab70,ffffffff -348ab74,ffffffff -348ab78,d12200 -348ab7c,80407c20 -348ab80,804077ac -348ab84,ffffffff -348ab88,ffffffff -348ab8c,db2a00 -348ab90,80407c50 -348ab94,804077ac -348ab98,ffffffff -348ab9c,ffffffff -348aba0,bb1201 -348aba4,80407c68 -348aba8,804077ac -348abac,ffffffff -348abb0,ffffffff -348abb4,c71b01 -348abb8,80407c84 -348abbc,804077ac -348abc0,ffffffff -348abc4,ffffffff -348abc8,d92800 -348abcc,80407cb0 -348abd0,804077ac -348abd4,ffffffff -348abd8,ffffffff -348abdc,cd1e00 -348abe0,80407ca0 -348abe4,804077ac -348abe8,ffffffff -348abec,ffffffff -348abf0,10e4600 -348abf4,80407ce0 -348abf8,804077ac -348abfc,ffffffff -348ac00,53410043 -348ac04,c60100 -348ac08,80407b54 -348ac0c,804078c0 -348ac10,15ffff -348ac14,53410044 -348ac18,c60100 -348ac1c,80407b54 -348ac20,804078c0 -348ac24,16ffff -348ac28,53410045 -348ac2c,c60100 -348ac30,80407b54 -348ac34,804078c0 -348ac38,17ffff -348ac3c,53410046 -348ac40,1776b00 -348ac44,80407b54 -348ac48,804078c0 -348ac4c,18ffff -348ac50,53410047 -348ac54,f43f00 -348ac58,80407b54 -348ac5c,804078c0 -348ac60,19ffff -348ac64,5341005d -348ac68,1736700 -348ac6c,80407b54 -348ac70,804078c0 -348ac74,1cffff -348ac78,5341007a -348ac7c,1746800 -348ac80,80407b54 -348ac84,804078c0 -348ac88,1dffff -348ac8c,534100f9 -348ac90,1767000 -348ac94,80407b54 -348ac98,804078c0 -348ac9c,1effff -348aca0,53410097 -348aca4,1766a00 -348aca8,80407b54 -348acac,804078c0 -348acb0,20ffff -348acb4,53410006 -348acb8,b90a02 -348acbc,80407b54 -348acc0,804078f8 -348acc4,10003 -348acc8,5341001c -348accc,b90a02 -348acd0,80407b54 -348acd4,804078f8 -348acd8,10004 -348acdc,5341001d -348ace0,b90a02 -348ace4,80407b54 -348ace8,804078f8 -348acec,10005 -348acf0,5341001e -348acf4,b90a02 -348acf8,80407b54 -348acfc,804078f8 -348ad00,10006 -348ad04,5341002a -348ad08,b90a02 -348ad0c,80407b54 -348ad10,804078f8 -348ad14,10007 -348ad18,53410061 -348ad1c,b90a02 -348ad20,80407b54 -348ad24,804078f8 -348ad28,1000a -348ad2c,53410062 -348ad30,b80b01 -348ad34,80407b54 -348ad38,804078f8 -348ad3c,20000 -348ad40,53410063 -348ad44,b80b01 -348ad48,80407b54 -348ad4c,804078f8 -348ad50,20001 -348ad54,53410064 -348ad58,b80b01 -348ad5c,80407b54 -348ad60,804078f8 -348ad64,20002 -348ad68,53410065 -348ad6c,b80b01 -348ad70,80407b54 -348ad74,804078f8 -348ad78,20003 -348ad7c,5341007c -348ad80,b80b01 -348ad84,80407b54 -348ad88,804078f8 -348ad8c,20004 -348ad90,5341007d -348ad94,b80b01 -348ad98,80407b54 -348ad9c,804078f8 -348ada0,20005 -348ada4,5341007e -348ada8,b80b01 -348adac,80407b54 -348adb0,804078f8 -348adb4,20006 -348adb8,5341007f -348adbc,b80b01 -348adc0,80407b54 -348adc4,804078f8 -348adc8,20007 -348adcc,534100a2 -348add0,b80b01 -348add4,80407b54 -348add8,804078f8 -348addc,20008 -348ade0,53410087 -348ade4,b80b01 -348ade8,80407b54 -348adec,804078f8 -348adf0,20009 -348adf4,53410088 -348adf8,c81c01 -348adfc,80407b54 -348ae00,804078f8 -348ae04,40000 -348ae08,53410089 -348ae0c,c81c01 -348ae10,80407b54 -348ae14,804078f8 -348ae18,40001 -348ae1c,5341008a -348ae20,c81c01 -348ae24,80407b54 -348ae28,804078f8 -348ae2c,40002 -348ae30,5341008b -348ae34,c81c01 -348ae38,80407b54 -348ae3c,804078f8 -348ae40,40003 -348ae44,5341008c -348ae48,c81c01 -348ae4c,80407b54 -348ae50,804078f8 -348ae54,40004 -348ae58,5341008e -348ae5c,c81c01 -348ae60,80407b54 -348ae64,804078f8 -348ae68,40005 -348ae6c,5341008f -348ae70,c81c01 -348ae74,80407b54 -348ae78,804078f8 -348ae7c,40006 -348ae80,534100a3 -348ae84,c81c01 -348ae88,80407b54 -348ae8c,804078f8 -348ae90,40007 -348ae94,534100a5 -348ae98,c81c01 -348ae9c,80407b54 -348aea0,804078f8 -348aea4,40008 -348aea8,53410092 -348aeac,c81c01 -348aeb0,80407b54 -348aeb4,804078f8 -348aeb8,40009 -348aebc,53410093 -348aec0,aa0203 -348aec4,80407b54 -348aec8,8040790c -348aecc,3ffff -348aed0,53410094 -348aed4,aa0203 -348aed8,80407b54 -348aedc,8040790c -348aee0,4ffff -348aee4,53410095 -348aee8,aa0203 -348aeec,80407b54 -348aef0,8040790c -348aef4,5ffff -348aef8,534100a6 -348aefc,aa0203 -348af00,80407b54 -348af04,8040790c -348af08,6ffff -348af0c,534100a9 -348af10,aa0203 -348af14,80407b54 -348af18,8040790c -348af1c,7ffff -348af20,5341009b -348af24,aa0203 -348af28,80407b54 -348af2c,8040790c -348af30,8ffff -348af34,5341009f -348af38,aa0203 -348af3c,80407b54 -348af40,8040790c -348af44,bffff -348af48,534100a0 -348af4c,aa0203 -348af50,80407b54 -348af54,8040790c -348af58,cffff -348af5c,534100a1 -348af60,aa0203 -348af64,80407b54 -348af68,8040790c -348af6c,dffff -348af70,534100e9 -348af74,1941300 -348af78,80407b54 -348af7c,80407930 -348af80,ffffffff -348af84,534100e4 -348af88,cd1e00 -348af8c,80407b54 -348af90,8040794c -348af94,ffffffff -348af98,534100e8 -348af9c,cd1f00 -348afa0,80407b54 -348afa4,80407968 -348afa8,ffffffff -348afac,53410073 -348afb0,b60300 -348afb4,80407b54 -348afb8,80407998 -348afbc,6ffff -348afc0,53410074 -348afc4,b60400 -348afc8,80407b54 -348afcc,80407998 -348afd0,7ffff -348afd4,53410075 -348afd8,b60500 -348afdc,80407b54 -348afe0,80407998 -348afe4,8ffff -348afe8,53410076 -348afec,b60600 -348aff0,80407b54 -348aff4,80407998 -348aff8,9ffff -348affc,53410077 -348b000,b60700 -348b004,80407b54 -348b008,80407998 -348b00c,affff -348b010,53410078 -348b014,b60800 -348b018,80407b54 -348b01c,80407998 -348b020,bffff -348b024,534100d4 -348b028,b60400 -348b02c,80407b54 -348b030,80407998 -348b034,cffff -348b038,534100d2 -348b03c,b60600 -348b040,80407b54 -348b044,80407998 -348b048,dffff -348b04c,534100d1 -348b050,b60300 -348b054,80407b54 -348b058,80407998 -348b05c,effff -348b060,534100d3 -348b064,b60800 -348b068,80407b54 -348b06c,80407998 -348b070,fffff -348b074,534100d5 -348b078,b60500 -348b07c,80407b54 -348b080,80407998 -348b084,10ffff -348b088,534100d6 -348b08c,b60700 -348b090,80407b54 -348b094,80407998 -348b098,11ffff -348b09c,534100f8 -348b0a0,d12300 -348b0a4,80407b54 -348b0a8,8040787c -348b0ac,3ffff -348b0b0,53149099 -348b0b4,10b4500 -348b0b8,80407b54 -348b0bc,804077ac -348b0c0,ffffffff -348b0c4,53419048 -348b0c8,f33e00 -348b0cc,80407b54 -348b0d0,804079cc -348b0d4,ffffffff -348b0d8,53419003 -348b0dc,1933500 -348b0e0,80407b54 -348b0e4,804077c0 -348b0e8,ffffffff -348b0ec,53419097 -348b0f0,ef3b00 -348b0f4,80407b54 -348b0f8,804077ac -348b0fc,ffffffff -348b100,4d419098 -348b104,ef3b01 -348b108,80407b54 -348b10c,804077ac -348b110,ffffffff -348b118,1 -348b11c,1 -348b120,d -348b124,41200000 -348b128,41200000 -348b12c,8040a0b8 -348b130,8040a0a8 -348b138,df000000 -348b140,80112f1a -348b144,80112f14 -348b148,80112f0e -348b14c,80112f08 -348b150,8011320a -348b154,80113204 -348b158,801131fe -348b15c,801131f8 -348b160,801131f2 -348b164,801131ec -348b168,801131e6 -348b16c,801131e0 -348b170,8012be1e -348b174,8012be20 -348b178,8012be1c -348b17c,8012be12 -348b180,8012be14 -348b184,8012be10 -348b188,801c7672 -348b18c,801c767a -348b190,801c7950 -348b194,8011bd50 -348b198,8011bd38 -348b19c,801d8b9e -348b1a0,801d8b92 -348b1a4,c80000 -348b1ac,ff0046 -348b1b0,32ffff -348c2f8,db000 -348c2fc,db000 -348c300,db000 -348c304,cb000 -348c308,cb000 -348c30c,ca000 -348c314,db000 -348c318,db000 -348c330,e8ac00 -348c334,e8ac00 -348c338,e8ac00 -348c33c,e8ac00 -348c364,d77d0 -348c368,2e3ab0 -348c36c,7d0c90 -348c370,8ffffffd -348c374,c96e00 -348c378,2e4ac00 -348c37c,effffff4 -348c380,ab0e500 -348c384,c95e000 -348c388,e59c000 -348c3a0,79000 -348c3a4,5ceeb40 -348c3a8,cc8a990 -348c3ac,da79000 -348c3b0,8ecb400 -348c3b4,4adda0 -348c3b8,797e2 -348c3bc,c88aae0 -348c3c0,6ceed70 -348c3c4,79000 -348c3c8,79000 -348c3d8,6dea0000 -348c3dc,c94d6000 -348c3e0,c94d6033 -348c3e4,6deb6bc6 -348c3e8,8cb600 -348c3ec,7ca4cec4 -348c3f0,3109c3bb -348c3f4,9c3bb -348c3f8,2ced4 -348c410,4cefb00 -348c414,ad50000 -348c418,8e30000 -348c41c,9ec0000 -348c420,7e4db0ab -348c424,bb05e8aa -348c428,bc008ed6 -348c42c,7e936ed0 -348c430,8ded9ea -348c448,ca000 -348c44c,ca000 -348c450,ca000 -348c454,ca000 -348c478,c900 -348c47c,7e200 -348c480,cb000 -348c484,e8000 -348c488,6f3000 -348c48c,8e0000 -348c490,8e0000 -348c494,6f4000 -348c498,e8000 -348c49c,cb000 -348c4a0,7e200 -348c4a4,c900 -348c4b0,bb0000 -348c4b4,5e4000 -348c4b8,ca000 -348c4bc,ad000 -348c4c0,7e100 -348c4c4,6f400 -348c4c8,6f400 -348c4cc,7e100 -348c4d0,ad000 -348c4d4,ca000 -348c4d8,5e4000 -348c4dc,bb0000 -348c4f0,a8000 -348c4f4,c8a8ab0 -348c4f8,3beda10 -348c4fc,3beda10 -348c500,c8a8ab0 -348c504,a8000 -348c52c,ca000 -348c530,ca000 -348c534,ca000 -348c538,affffff8 -348c53c,ca000 -348c540,ca000 -348c544,ca000 -348c57c,dd000 -348c580,ec000 -348c584,4f8000 -348c588,9d0000 -348c5ac,dffb00 -348c5ec,ec000 -348c5f0,ec000 -348c608,bc0 -348c60c,4e60 -348c610,bc00 -348c614,3e800 -348c618,ad000 -348c61c,1e9000 -348c620,9e2000 -348c624,da0000 -348c628,7e30000 -348c62c,cb00000 -348c630,6e500000 -348c640,3ceeb00 -348c644,bd57e90 -348c648,e900bd0 -348c64c,5f7009e0 -348c650,6f6cb9e0 -348c654,5f7009e0 -348c658,e900bd0 -348c65c,bd57e90 -348c660,3ceeb00 -348c678,affe000 -348c67c,8e000 -348c680,8e000 -348c684,8e000 -348c688,8e000 -348c68c,8e000 -348c690,8e000 -348c694,8e000 -348c698,8ffffe0 -348c6b0,8deea00 -348c6b4,c837e90 -348c6b8,cc0 -348c6bc,2ea0 -348c6c0,bd20 -348c6c4,bd400 -348c6c8,bd4000 -348c6cc,bd40000 -348c6d0,2fffffd0 -348c6e8,7ceea00 -348c6ec,c837e90 -348c6f0,cb0 -348c6f4,27e90 -348c6f8,bffb00 -348c6fc,27da0 -348c700,ad0 -348c704,5c627db0 -348c708,9deeb30 -348c720,2de00 -348c724,bde00 -348c728,7d9e00 -348c72c,2d79e00 -348c730,bb09e00 -348c734,6e409e00 -348c738,9ffffff7 -348c73c,9e00 -348c740,9e00 -348c758,cffff50 -348c75c,ca00000 -348c760,ca00000 -348c764,ceeea00 -348c768,38e90 -348c76c,bc0 -348c770,bc0 -348c774,5c638e90 -348c778,9deda00 -348c790,aeec30 -348c794,ae83980 -348c798,e900000 -348c79c,4faeec40 -348c7a0,6fd55dc0 -348c7a4,5f9009e0 -348c7a8,e9009e0 -348c7ac,cd55dc0 -348c7b0,3ceec40 -348c7c8,5fffffd0 -348c7cc,da0 -348c7d0,7e40 -348c7d4,cc00 -348c7d8,4e800 -348c7dc,ad000 -348c7e0,da000 -348c7e4,8e4000 -348c7e8,cc0000 -348c800,5ceec30 -348c804,dc45db0 -348c808,e900bd0 -348c80c,bc45d90 -348c810,4dffc20 -348c814,1db45cc0 -348c818,5f6009e0 -348c81c,2eb35cd0 -348c820,7deec50 -348c838,6deeb00 -348c83c,db37e90 -348c840,5f500bd0 -348c844,5f500be0 -348c848,db37ee0 -348c84c,6dedbe0 -348c850,bc0 -348c854,9749e70 -348c858,5ded800 -348c878,ec000 -348c87c,ec000 -348c88c,ec000 -348c890,ec000 -348c8b0,ec000 -348c8b4,ec000 -348c8c4,dd000 -348c8c8,ec000 -348c8cc,4f8000 -348c8d0,9d0000 -348c8e8,29c8 -348c8ec,7bed93 -348c8f0,8dda4000 -348c8f4,8dda4000 -348c8f8,7bec93 -348c8fc,29c8 -348c924,affffff8 -348c930,affffff8 -348c958,ac810000 -348c95c,4adeb600 -348c960,6add6 -348c964,6add6 -348c968,4adeb600 -348c96c,ac810000 -348c988,4beec30 -348c98c,9a46ea0 -348c990,1da0 -348c994,2cd30 -348c998,cc100 -348c99c,e9000 -348c9a4,e9000 -348c9a8,e9000 -348c9c0,1aeed70 -348c9c4,cd739e4 -348c9c8,7e2000c9 -348c9cc,ba0aeeca -348c9d0,d76e64da -348c9d4,d69c00aa -348c9d8,d76e64da -348c9dc,ba0aeeca -348c9e0,6e400000 -348c9e4,ad83000 -348c9e8,8dee90 -348c9f8,3ed000 -348c9fc,9de600 -348ca00,cbcb00 -348ca04,3e8ad00 -348ca08,8e26f60 -348ca0c,cc00ea0 -348ca10,2effffd0 -348ca14,8e5008f5 -348ca18,cd0001ea -348ca30,effec40 -348ca34,e905dc0 -348ca38,e900ae0 -348ca3c,e905dc0 -348ca40,efffd50 -348ca44,e904bd2 -348ca48,e9005f6 -348ca4c,e904be3 -348ca50,effed80 -348ca68,9ded80 -348ca6c,8e936b0 -348ca70,db00000 -348ca74,3f900000 -348ca78,5f700000 -348ca7c,1e900000 -348ca80,db00000 -348ca84,8e947b0 -348ca88,9ded80 -348caa0,5ffed800 -348caa4,5f65ae80 -348caa8,5f600cd0 -348caac,5f6009e0 -348cab0,5f6009f0 -348cab4,5f6009e0 -348cab8,5f600cd0 -348cabc,5f65ae80 -348cac0,5ffed800 -348cad8,dffffe0 -348cadc,db00000 -348cae0,db00000 -348cae4,db00000 -348cae8,dffffc0 -348caec,db00000 -348caf0,db00000 -348caf4,db00000 -348caf8,dfffff0 -348cb10,bfffff4 -348cb14,bd00000 -348cb18,bd00000 -348cb1c,bd00000 -348cb20,bffffc0 -348cb24,bd00000 -348cb28,bd00000 -348cb2c,bd00000 -348cb30,bd00000 -348cb48,1aeed60 -348cb4c,be738a0 -348cb50,4e900000 -348cb54,8f400000 -348cb58,9f10bff2 -348cb5c,7f4007f2 -348cb60,4e9007f2 -348cb64,be739f2 -348cb68,1beed90 -348cb80,5f6009e0 -348cb84,5f6009e0 -348cb88,5f6009e0 -348cb8c,5f6009e0 -348cb90,5fffffe0 -348cb94,5f6009e0 -348cb98,5f6009e0 -348cb9c,5f6009e0 +348939c,44050000 +34893a0,3c068000 +34893a4,a62825 +34893a8,30a700ff +34893ac,3c068041 +34893b0,24c6a1c0 +34893b4,32840 +34893b8,a32821 +34893bc,c52821 +34893c0,90a50002 +34893c4,44850000 +34893cc,46800020 +34893d0,46040002 +34893d4,42840 +34893d8,a42821 +34893dc,c53021 +34893e0,90c50002 +34893e4,44853000 +34893ec,468031a0 +34893f0,46023182 +34893f4,46060000 +34893f8,3c058041 +34893fc,c4a6a220 +3489400,4600303e +3489408,45030005 +348940c,46060001 +3489410,4600000d +3489414,44050000 +3489418,10000006 +348941c,30a600ff +3489420,4600000d +3489424,44050000 +3489428,3c068000 +348942c,a62825 +3489430,30a600ff +3489434,32840 +3489438,a31821 +348943c,3c088041 +3489440,2508a1c0 +3489444,681821 +3489448,90650000 +348944c,44850000 +3489454,46800020 +3489458,46040002 +348945c,41840 +3489460,641821 +3489464,681821 +3489468,90630000 +348946c,44832000 +3489474,46802120 +3489478,46022082 +348947c,46020000 +3489480,3c038041 +3489484,c462a220 +3489488,4600103e +3489490,45030005 +3489494,46020001 +3489498,4600000d +348949c,44030000 +34894a0,10000006 +34894a4,a0430000 +34894a8,4600000d +34894ac,44030000 +34894b0,3c048000 +34894b4,641825 +34894b8,a0430000 +34894bc,a0470001 +34894c0,3e00008 +34894c4,a0460002 +34894c8,3c028011 +34894cc,3442a5d0 +34894d0,24030140 +34894d4,a4431424 +34894d8,90440032 +34894dc,41840 +34894e0,641821 +34894e4,31900 +34894e8,3e00008 +34894ec,a0430033 +34894f0,24a20002 +34894f4,24a50082 +34894f8,24065700 +34894fc,24070004 +3489500,9443fffe +3489504,50660008 +3489508,24420004 +348950c,50600006 +3489510,24420004 +3489514,94430000 +3489518,2c630004 +348951c,54600001 +3489520,a4470000 +3489524,24420004 +3489528,5445fff6 +348952c,9443fffe +3489530,3e00008 +3489538,27bdffe8 +348953c,afbf0014 +3489540,c10273a +3489544,24040400 +3489548,3c038041 +348954c,ac62b58c +3489550,3c038041 +3489554,ac62b590 +3489558,8fbf0014 +348955c,3e00008 +3489560,27bd0018 +3489564,80820000 +3489568,10400026 +348956c,24870001 +3489570,3c038041 +3489574,8c68b58c +3489578,25080400 +348957c,3c038041 +3489580,8c63b590 +3489584,5825 +3489588,3c0aff00 +348958c,254a0fff +3489590,30c60fff +3489594,240df000 +3489598,3c098041 +348959c,2529a418 +34895a0,240c0001 +34895a4,68202b +34895a8,54800005 +34895ac,a0620000 +34895b0,11600014 +34895b4,3c028041 +34895b8,3e00008 +34895bc,ac43b590 +34895c0,30a40fff +34895c4,42300 +34895c8,8c620000 +34895cc,4a1024 +34895d0,441025 +34895d4,4d1024 +34895d8,461025 +34895dc,ac620000 +34895e0,24630004 +34895e4,95220004 +34895e8,a22821 +34895ec,24e70001 +34895f0,80e2ffff +34895f4,1440ffeb +34895f8,1805825 +34895fc,3c028041 +3489600,ac43b590 +3489604,3e00008 +348960c,27bdffb8 +3489610,afbf0044 +3489614,afbe0040 +3489618,afb7003c +348961c,afb60038 +3489620,afb50034 +3489624,afb40030 +3489628,afb3002c +348962c,afb20028 +3489630,afb10024 +3489634,afb00020 +3489638,80a825 +348963c,b025 +3489640,9025 +3489644,3c138041 +3489648,2673a418 +348964c,3c178041 +3489650,3c148041 +3489654,3c1e38e3 +3489658,24070012 +348965c,2c03025 +3489660,2602825 +3489664,c101bd7 +3489668,2a02025 +348966c,8ef0b58c +3489670,8e82b590 +3489674,202102b +3489678,50400026 +348967c,26520001 +3489680,37d18e39 +3489684,82020000 +3489688,2002825 +348968c,2442ffe0 +3489690,510018 +3489694,1810 +3489698,31883 +348969c,227c3 +34896a0,641823 +34896a4,14720016 +34896a8,26100004 +34896ac,8ca70000 +34896b0,73b02 +34896b4,510018 +34896b8,1810 +34896bc,31883 +34896c0,641823 +34896c4,330c0 +34896c8,c33021 +34896cc,63040 +34896d0,96630006 +34896d4,afa30018 +34896d8,96630004 +34896dc,afa30014 +34896e0,8ca30000 +34896e4,30630fff +34896e8,afa30010 +34896ec,30e70fff +34896f0,463023 +34896f4,2602825 +34896f8,c101c3f +34896fc,2a02025 +3489700,8e82b590 +3489704,202102b +3489708,5440ffdf +348970c,82020000 +3489710,26520001 +3489714,24020006 +3489718,1642ffcf +348971c,26d60012 +3489720,3c028041 +3489724,8c43b58c +3489728,3c028041 +348972c,ac43b590 +3489730,8fbf0044 +3489734,8fbe0040 +3489738,8fb7003c +348973c,8fb60038 +3489740,8fb50034 +3489744,8fb40030 +3489748,8fb3002c +348974c,8fb20028 +3489750,8fb10024 +3489754,8fb00020 +3489758,3e00008 +348975c,27bd0048 +3489760,3c028041 +3489764,24030001 +3489768,ac43b598 +348976c,3c038041 +3489770,8c62b59c +3489774,2c440006 +3489778,50800001 +348977c,24020005 +3489780,3e00008 +3489784,ac62b59c +3489788,27bdffb8 +348978c,afbf0044 +3489790,afbe0040 +3489794,afb6003c +3489798,afb50038 +348979c,afb40034 +34897a0,afb30030 +34897a4,afb2002c +34897a8,afb10028 +34897ac,afb00024 +34897b0,3a0f025 +34897b4,3c028041 +34897b8,9442b594 +34897bc,10400133 +34897c0,3a0a825 +34897c4,3c02801d +34897c8,3442aa30 +34897cc,8c42066c +34897d0,3c033000 +34897d4,24630483 +34897d8,431024 +34897dc,1440012b +34897e0,808025 +34897e4,3c02801c +34897e8,344284a0 +34897ec,8c430008 +34897f0,3c02800f +34897f4,8c4213ec +34897f8,54620125 +34897fc,2a0e825 +3489800,3c028011 +3489804,3442a5d0 +3489808,8c47135c +348980c,14e0011f +3489810,3c02800e +3489814,3442f1b0 +3489818,8c420000 +348981c,30420020 +3489820,1440011a +3489824,3c028041 +3489828,8c43b598 +348982c,24020001 +3489830,1062000a +3489834,3c02801c +3489838,344284a0 +348983c,3c030001 +3489840,431021 +3489844,94430934 +3489848,24020006 +348984c,54620110 +3489850,2a0e825 +3489854,10000009 +3489858,3c038041 +348985c,344284a0 +3489860,3c030001 +3489864,431021 +3489868,94430934 +348986c,24020006 +3489870,14620007 +3489874,3c028041 +3489878,3c038041 +348987c,8c62b59c +3489880,3042001f +3489884,ac62b59c +3489888,10000022 +348988c,241300ff +3489890,8c42b59c +3489894,2c430006 +3489898,1060000a +348989c,2c43006a +34898a0,29a00 +34898a4,2629823 +34898a8,3c02cccc +34898ac,3442cccd +34898b0,2620019 +34898b4,9810 +34898b8,139882 +34898bc,10000015 +34898c0,327300ff +34898c4,14600013 +34898c8,241300ff +34898cc,2c4300ba +34898d0,1060000b +34898d4,21a00 +34898d8,621023 +34898dc,24429769 +34898e0,3c03cccc +34898e4,3463cccd +34898e8,430019 +34898ec,1010 +34898f0,29982 +34898f4,139827 +34898f8,10000006 +34898fc,327300ff +3489900,3c028041 +3489904,ac40b598 +3489908,3c028041 +348990c,100000df +3489910,ac40b59c +3489914,3c038041 +3489918,8c62b59c +348991c,24420001 +3489920,ac62b59c +3489924,3c028011 +3489928,3442a5d0 +348992c,8c4808c4 +3489930,19000011 +3489934,1001025 +3489938,e05025 +348993c,3c056666 +3489940,24a56667 +3489944,254a0001 +3489948,401825 +348994c,450018 +3489950,2010 +3489954,42083 +3489958,217c3 +348995c,2863000a +3489960,1060fff8 +3489964,821023 +3489968,15400005 +348996c,3c028041 +3489970,10000002 +3489974,240a0001 +3489978,240a0001 +348997c,3c028041 +3489980,9445b532 +3489984,18a00010 +3489988,a01025 +348998c,3c066666 +3489990,24c66667 +3489994,24e70001 +3489998,401825 +348999c,460018 +34899a0,2010 +34899a4,42083 +34899a8,217c3 +34899ac,2863000a +34899b0,1060fff8 +34899b4,821023 +34899b8,54e00005 +34899bc,1473821 +34899c0,10000002 +34899c4,24070001 +34899c8,24070001 +34899cc,1473821 +34899d0,24f40001 +34899d4,3c028041 +34899d8,2442a418 +34899dc,94430004 +34899e0,740018 +34899e4,2012 +34899e8,3c038041 +34899ec,2463a3f8 +34899f0,94660004 +34899f4,862021 +34899f8,497c2 +34899fc,2449021 +3489a00,129043 +3489a04,129023 +3489a08,265200a0 +3489a0c,94420006 +3489a10,44820000 +3489a18,46800021 +3489a1c,3c028041 +3489a20,d446a230 +3489a24,46260002 +3489a28,3c028041 +3489a2c,d442a238 +3489a30,46201001 +3489a34,3c028041 +3489a38,d444a240 +3489a3c,46240000 +3489a40,4620000d +3489a44,44060000 +3489a48,94620006 +3489a4c,44820000 +3489a54,46800021 +3489a58,46260002 +3489a5c,46201081 +3489a60,3c028041 +3489a64,d440a248 +3489a68,46201080 +3489a6c,46241080 +3489a70,4620100d +3489a74,44110000 +3489a78,24e20009 +3489a7c,210c2 +3489a80,210c0 +3489a84,3a2e823 +3489a88,27a40020 +3489a8c,941021 +3489a90,19400015 +3489a94,a0400000 +3489a98,2549ffff +3489a9c,894821 +3489aa0,806025 +3489aa4,3c0b6666 +3489aa8,256b6667 +3489aac,10b0018 +3489ab0,1810 +3489ab4,31883 +3489ab8,817c3 +3489abc,621823 +3489ac0,31080 +3489ac4,431021 +3489ac8,21040 +3489acc,1021023 +3489ad0,24420030 +3489ad4,a1220000 +3489ad8,604025 +3489adc,1201025 +3489ae0,144cfff2 +3489ae4,2529ffff +3489ae8,8a1021 +3489aec,2403002f +3489af0,a0430000 +3489af4,147102a +3489af8,10400012 +3489afc,873821 +3489b00,8a5021 +3489b04,3c086666 +3489b08,25086667 +3489b0c,a80018 +3489b10,1810 +3489b14,31883 +3489b18,517c3 +3489b1c,621823 +3489b20,31080 +3489b24,431021 +3489b28,21040 +3489b2c,a21023 +3489b30,24420030 +3489b34,a0e20000 +3489b38,24e7ffff +3489b3c,14eafff3 +3489b40,602825 +3489b44,8e020008 +3489b48,24430008 +3489b4c,ae030008 +3489b50,3c03de00 +3489b54,ac430000 +3489b58,3c038041 +3489b5c,2463a468 +3489b60,ac430004 +3489b64,8e020008 +3489b68,24430008 +3489b6c,ae030008 +3489b70,3c03e700 +3489b74,ac430000 +3489b78,ac400004 +3489b7c,8e020008 +3489b80,24430008 +3489b84,ae030008 +3489b88,3c03fc11 +3489b8c,34639623 +3489b90,ac430000 +3489b94,3c03ff2f +3489b98,3463ffff +3489b9c,ac430004 +3489ba0,8e030008 +3489ba4,24620008 +3489ba8,ae020008 +3489bac,3c16fa00 +3489bb0,ac760000 +3489bb4,3c02dad3 +3489bb8,24420b00 +3489bbc,2621025 +3489bc0,ac620004 +3489bc4,c102559 +3489bc8,2402825 +3489bcc,3c028041 +3489bd0,9442a41c +3489bd4,540018 +3489bd8,a012 +3489bdc,292a021 +3489be0,8e020008 +3489be4,24430008 +3489be8,ae030008 +3489bec,ac560000 +3489bf0,3c03f4ec +3489bf4,24633000 +3489bf8,2639825 +3489bfc,ac530004 +3489c00,3c028041 +3489c04,8c46b59c +3489c08,63042 +3489c0c,24070001 +3489c10,30c6000f +3489c14,3c128041 +3489c18,2645a3f8 +3489c1c,c101bd7 +3489c20,2002025 +3489c24,2645a3f8 +3489c28,94a20006 +3489c2c,afa20018 +3489c30,94a20004 +3489c34,afa20014 +3489c38,afb10010 +3489c3c,2803825 +3489c40,3025 +3489c44,c101c3f +3489c48,2002025 +3489c4c,c102583 +3489c50,2002025 +3489c54,8e020008 +3489c58,24430008 +3489c5c,ae030008 +3489c60,3c03e900 +3489c64,ac430000 +3489c68,ac400004 +3489c6c,8e020008 +3489c70,24430008 +3489c74,ae030008 +3489c78,3c03df00 +3489c7c,ac430000 +3489c80,ac400004 +3489c84,10000002 +3489c88,2a0e825 +3489c8c,2a0e825 +3489c90,3c0e825 +3489c94,8fbf0044 +3489c98,8fbe0040 +3489c9c,8fb6003c +3489ca0,8fb50038 +3489ca4,8fb40034 +3489ca8,8fb30030 +3489cac,8fb2002c +3489cb0,8fb10028 +3489cb4,8fb00024 +3489cb8,3e00008 +3489cbc,27bd0048 +3489cc0,3c028040 +3489cc4,a0403054 +3489cc8,3c028040 +3489ccc,3e00008 +3489cd0,ac403058 +3489cd4,3c038041 +3489cd8,3c028050 +3489cdc,24420000 +3489ce0,3e00008 +3489ce4,ac62b5a0 +3489ce8,3082000f +3489cec,10400009 +3489cf0,3c038041 +3489cf4,417c3 +3489cf8,21702 +3489cfc,821821 +3489d00,3063000f +3489d04,431023 +3489d08,24420010 +3489d0c,822021 +3489d10,3c038041 +3489d14,8c62b5a0 +3489d18,442021 +3489d1c,3e00008 +3489d20,ac64b5a0 +3489d24,27bdffe8 +3489d28,afbf0014 +3489d2c,afb00010 +3489d30,808025 +3489d34,c10273a +3489d38,8c840008 +3489d3c,402025 +3489d40,ae020000 +3489d44,8e060008 +3489d48,3c028000 +3489d4c,24420df0 +3489d50,40f809 +3489d54,8e050004 +3489d58,8fbf0014 +3489d5c,8fb00010 +3489d60,3e00008 +3489d64,27bd0018 +3489d68,3c02800f +3489d6c,a0401640 +3489d70,3c028041 +3489d74,a040b5a4 +3489d78,3c028011 +3489d7c,3442a5d0 +3489d80,8c420004 +3489d84,14400086 +3489d88,3c028011 +3489d8c,3442a5d0 +3489d90,8c421360 +3489d94,2c420004 +3489d98,10400081 +3489d9c,3c028011 +3489da0,3442a5d0 +3489da4,8c420000 +3489da8,240301fd +3489dac,14430005 +3489db0,3c038011 +3489db4,3c02800f +3489db8,24030001 +3489dbc,3e00008 +3489dc0,a0431640 +3489dc4,3463a5d0 +3489dc8,94630ed6 +3489dcc,30630100 +3489dd0,1460000a +3489dd4,3c038011 +3489dd8,24030157 +3489ddc,10430003 +3489de0,240301f9 +3489de4,14430005 +3489de8,3c038011 +3489dec,3c02800f +3489df0,24030002 +3489df4,3e00008 +3489df8,a0431640 +3489dfc,3463a5d0 +3489e00,94630edc +3489e04,30640400 +3489e08,54800016 +3489e0c,3c028011 +3489e10,240404da +3489e14,10440005 +3489e18,2404ffbf +3489e1c,441024 +3489e20,2404019d +3489e24,14440005 +3489e28,3c02801c +3489e2c,3c02800f +3489e30,24030003 +3489e34,3e00008 +3489e38,a0431640 +3489e3c,344284a0 +3489e40,944200a4 +3489e44,2442ffa8 +3489e48,2c420002 +3489e4c,10400005 +3489e50,3c028011 +3489e54,3c02800f +3489e58,24030003 +3489e5c,3e00008 +3489e60,a0431640 +3489e64,3442a5d0 +3489e68,8c4200a4 +3489e6c,30420007 +3489e70,24040007 +3489e74,5444001f +3489e78,30630200 +3489e7c,3c028011 +3489e80,3442a5d0 +3489e84,8c42037c +3489e88,30420002 +3489e8c,54400019 +3489e90,30630200 +3489e94,3c02801c +3489e98,344284a0 +3489e9c,944200a4 +3489ea0,2442ffae +3489ea4,2c420002 +3489ea8,50400012 +3489eac,30630200 +3489eb0,3c028041 +3489eb4,24040002 +3489eb8,a044b5a4 +3489ebc,3c028011 +3489ec0,3442a5d0 +3489ec4,8c420000 +3489ec8,24040191 +3489ecc,10440008 +3489ed0,24040205 +3489ed4,10440006 +3489ed8,240400db +3489edc,10440004 +3489ee0,3c02800f +3489ee4,24030005 +3489ee8,3e00008 +3489eec,a0431640 +3489ef0,30630200 +3489ef4,1460002a +3489ef8,3c02801c +3489efc,344284a0 +3489f00,3c030001 +3489f04,431021 +3489f08,84431e1a +3489f0c,240204d6 +3489f10,14620005 +3489f14,3c02801c +3489f18,3c02800f +3489f1c,24030002 +3489f20,3e00008 +3489f24,a0431640 +3489f28,344284a0 +3489f2c,944200a4 +3489f30,2c430054 +3489f34,50600006 +3489f38,2442ffa0 +3489f3c,2c420052 +3489f40,14400017 +3489f44,3c028041 +3489f48,10000006 +3489f4c,9042b5a4 +3489f50,3042ffff +3489f54,2c420002 +3489f58,10400011 +3489f5c,3c028041 +3489f60,9042b5a4 +3489f64,14400005 +3489f68,3c028011 +3489f6c,3c028041 +3489f70,24030001 +3489f74,a043b5a4 +3489f78,3c028011 +3489f7c,3442a5d0 +3489f80,8c420000 +3489f84,240300db +3489f88,10430005 +3489f8c,24030195 +3489f90,10430003 +3489f94,3c02800f +3489f98,24030002 +3489f9c,a0431640 +3489fa0,3e00008 +3489fa8,33c2 +3489fac,664399c4 +3489fb0,cc45ffc6 +3489fb4,ff47ffc8 +3489fb8,ff49e0ca +3489fbc,c24ba3cc +3489fc0,854d660d +3489fc4,440f2200 +3489fc8,85d1a352 +3489fcc,c2d3e045 +3489fd0,1010101 +3489fd4,1010101 +3489fd8,1010101 +3489fdc,1010101 +3489fe0,1010101 +3489ffc,1010000 +348a004,1010101 +348a008,1000101 +348a00c,10101 +348a010,10000 +348a014,2b242525 +348a018,26262626 +348a01c,27272727 +348a020,27272727 +348a024,500080d +348a028,1051508 +348a02c,d01052a +348a030,80d0127 +348a034,f080b01 +348a038,4d510b02 +348a040,97ff6350 +348a044,45ff5028 +348a048,57456397 +348a04c,ff5e45ff +348a050,9f006545 +348a054,ff63ff6c +348a058,45fff063 +348a05c,7345ffff +348a060,ff503aff +348a064,ffff573a +348a068,ffffff5e +348a06c,3affffff +348a070,653affff +348a074,ff6c3aff +348a078,ffff733a +348a07c,5a0c00 +348a080,720c0096 +348a084,c009618 +348a088,1652a00 +348a08c,4e2a005a +348a090,2a000000 +348a094,c004e00 +348a098,c015a00 +348a09c,c026600 +348a0a0,c037200 +348a0a4,c047e00 +348a0a8,c058a00 +348a0ac,c064e0c +348a0b0,75a0c +348a0b4,c09660c +348a0b8,a720c +348a0bc,c0c7e0c +348a0c0,c0d8a0c +348a0c4,c0e4e18 +348a0c8,c0f5a18 +348a0cc,c106618 +348a0d0,c117218 +348a0d4,c127e18 +348a0d8,c138a18 +348a0dc,ffff +348a0e0,ffff +348a0e4,ffff +348a0e8,ffff +348a0ec,ffff +348a0f0,ffff +348a0f4,ffff +348a0f8,ffff +348a0fc,ffff +348a100,ffff +348a104,ffff +348a108,ffff +348a10c,ffff +348a110,ffff +348a114,c3b7e2a +348a118,c3c8a2a +348a11c,c3d962a +348a120,ffff +348a124,c3e7e36 +348a128,b3f8b37 +348a12c,b409737 +348a130,ffff +348a134,c417e42 +348a138,c428a42 +348a13c,c439642 +348a140,ffff +348a144,c447e4f +348a148,c458a4f +348a14c,c46964f +348a150,ffff +348a154,c149600 +348a158,ffff +348a15c,2c061b31 +348a160,2c072931 +348a164,2c083731 +348a168,2a096f51 +348a16c,2c0a722a +348a170,ffff +348a174,2c00370a +348a178,2c01371a +348a17c,2c022922 +348a180,2c031b1a +348a184,2c041b0a +348a188,2c052902 +348a18c,ffff +348a190,ffff +348a194,8040a438 +348a198,8040a428 +348a19c,8040a3b8 +348a1a0,c8ff6482 +348a1a4,82ffff64 +348a1a8,64ff5aff +348a1ac,bd1400 +348a1b0,aa0200 +348a1b4,bd1300 +348a1b8,15c6300 +348a1bc,de2f00 +348a1c0,e01010e0 +348a1c4,e01010e0 +348a1c8,1010e0e0 +348a1cc,1010e0e0 +348a1d0,10e0e010 +348a1d4,10000000 +348a1d8,4d510000 +348a1dc,4e6f726d +348a1e0,616c0000 +348a1e4,bdcccccd +348a1e8,3dcccccd +348a1ec,43510000 +348a1f0,41100000 +348a1f4,4f000000 +348a1f8,42080000 +348a1fc,c20c0000 +348a200,420c0000 +348a204,3f800000 +348a208,3f000000 +348a20c,41c80000 +348a210,3fa00000 +348a214,40000000 +348a218,40200000 +348a21c,3f800000 +348a220,4f000000 +348a228,41f00000 +348a230,3ff80000 +348a238,406e0000 +348a240,3ff00000 +348a248,40080000 +348a250,80409fa8 +348a254,10203 +348a258,4050607 +348a25c,ffffffff +348a260,ffff0000 +348a264,ff00ff +348a268,3c000064 +348a26c,ffff8200 +348a270,c832ffc8 +348a274,c8000000 +348a278,104465 +348a27c,6b750000 +348a284,110446f +348a288,646f6e67 +348a28c,6f000000 +348a290,2104a61 +348a294,62750000 +348a29c,3d0466f +348a2a0,72657374 +348a2a8,4d04669 +348a2ac,72650000 +348a2b4,5d05761 +348a2b8,74657200 +348a2c0,7d05368 +348a2c4,61646f77 +348a2cc,6d05370 +348a2d0,69726974 +348a2d8,890426f +348a2dc,74570000 +348a2e4,9104963 +348a2e8,65000000 +348a2f0,ca04869 +348a2f4,64656f75 +348a2f8,74000000 +348a2fc,b804754 +348a300,47000000 +348a308,dc04761 +348a30c,6e6f6e00 +348a314,2 +348a31c,3f800000 +348a328,1 +348a32c,30006 +348a330,70009 +348a334,b000e +348a338,f0010 +348a33c,110019 +348a340,1a002b +348a344,2c002e +348a348,300032 +348a34c,35003c +348a350,400041 +348a354,460051 +348a358,540109 +348a35c,10b010c +348a360,10e010f +348a364,1100113 +348a36c,1 +348a370,1 +348a374,2 +348a378,1 +348a37c,2 +348a380,2 +348a384,3 +348a388,1 +348a38c,2 +348a390,2 +348a394,3 +348a398,2 +348a39c,3 +348a3a0,3 +348a3a4,4 +348a3ac,100010 +348a3b0,a0301 +348a3b4,1000000 +348a3bc,100010 +348a3c0,20002 +348a3c4,2000000 +348a3cc,80008 +348a3d0,a0301 +348a3d4,1000000 +348a3dc,100010 +348a3e0,30301 +348a3e4,1000000 +348a3ec,100018 +348a3f0,10301 +348a3f4,1000000 +348a3fc,100010 +348a400,100301 +348a404,1000000 +348a40c,200020 +348a410,10302 +348a414,2000000 +348a41c,8000e +348a420,5f0301 +348a424,1000000 +348a42c,180018 +348a430,140003 +348a434,4000000 +348a43c,200020 +348a440,5a0003 +348a444,4000000 +348a44c,100010 +348a450,60301 +348a454,1000000 +348a45c,100010 +348a460,30003 +348a464,4000000 +348a468,e7000000 +348a470,d9000000 +348a478,ed000000 +348a47c,5003c0 +348a480,ef002cf0 +348a484,504244 +348a488,df000000 +348a4a4,4d8e0032 +348a4a8,ce2001 +348a4ac,80407de0 +348a4b0,80407870 +348a4b4,ffffffff +348a4b8,4d8c0034 +348a4bc,bb1201 +348a4c0,80407c18 +348a4c4,80407870 +348a4c8,ffffffff +348a4cc,4d090033 +348a4d0,d92801 +348a4d4,80407c18 +348a4d8,80407870 +348a4dc,ffffffff +348a4e0,53030031 +348a4e4,e93500 +348a4e8,80407c18 +348a4ec,80407870 +348a4f0,ffffffff +348a4f4,53060030 +348a4f8,e73300 +348a4fc,80407c18 +348a500,80407870 +348a504,ffffffff +348a508,530e0035 +348a50c,e83400 +348a510,80407c18 +348a514,80407870 +348a518,ffffffff +348a51c,4d000037 +348a520,c71b01 +348a524,80407c18 +348a528,80407870 +348a52c,ffffffff +348a530,530a0036 +348a534,dd2d00 +348a538,80407c18 +348a53c,80407870 +348a540,ffffffff +348a544,530b004f +348a548,dd2e00 +348a54c,80407c18 +348a550,80407870 +348a554,ffffffff +348a558,530f0039 +348a55c,ea3600 +348a560,80407c18 +348a564,80407870 +348a568,ffffffff +348a56c,53230069 +348a570,ef3b00 +348a574,80407c18 +348a578,80407ad4 +348a57c,ffffffff +348a580,5308003a +348a584,de2f00 +348a588,80407c18 +348a58c,80407870 +348a590,ffffffff +348a594,53110038 +348a598,f64100 +348a59c,80407c18 +348a5a0,80407870 +348a5a4,ffffffff +348a5a8,532f0002 +348a5ac,1095e00 +348a5b0,80407c18 +348a5b4,80407870 +348a5b8,ffffffff +348a5bc,53140042 +348a5c0,c60100 +348a5c4,80407c18 +348a5c8,80407870 +348a5cc,ffffffff +348a5d0,53150043 +348a5d4,eb3800 +348a5d8,80407c18 +348a5dc,80407870 +348a5e0,ffffffff +348a5e4,53160044 +348a5e8,eb3700 +348a5ec,80407c18 +348a5f0,80407870 +348a5f4,ffffffff +348a5f8,53170045 +348a5fc,eb3900 +348a600,80407c18 +348a604,80407870 +348a608,ffffffff +348a60c,53180046 +348a610,c60100 +348a614,80407c18 +348a618,80407870 +348a61c,ffffffff +348a620,531a0098 +348a624,df3000 +348a628,80407c18 +348a62c,80407870 +348a630,ffffffff +348a634,531b0099 +348a638,10b4500 +348a63c,80407e20 +348a640,80407870 +348a644,ffffffff +348a648,53100048 +348a64c,f33e01 +348a650,80407c18 +348a654,80407870 +348a658,ffffffff +348a65c,53250010 +348a660,1364f00 +348a664,80407c18 +348a668,80407870 +348a66c,ffffffff +348a670,53260011 +348a674,1353200 +348a678,80407c18 +348a67c,80407870 +348a680,ffffffff +348a684,5322000b +348a688,1094400 +348a68c,80407c18 +348a690,80407870 +348a694,ffffffff +348a698,53240012 +348a69c,1343100 +348a6a0,80407c18 +348a6a4,80407870 +348a6a8,ffffffff +348a6ac,53270013 +348a6b0,1375000 +348a6b4,80407c18 +348a6b8,80407870 +348a6bc,ffffffff +348a6c0,532b0017 +348a6c4,1385100 +348a6c8,80407c18 +348a6cc,80407870 +348a6d0,ffffffff +348a6d4,532d9001 +348a6d8,da2900 +348a6dc,80407c18 +348a6e0,80407870 +348a6e4,ffffffff +348a6e8,532e000b +348a6ec,1094400 +348a6f0,80407c18 +348a6f4,80407870 +348a6f8,ffffffff +348a6fc,53300003 +348a700,1415400 +348a704,80407c18 +348a708,80407870 +348a70c,ffffffff +348a710,53310004 +348a714,1405300 +348a718,80407c18 +348a71c,80407870 +348a720,ffffffff +348a724,53320005 +348a728,f54000 +348a72c,80407c18 +348a730,80407870 +348a734,ffffffff +348a738,53330008 +348a73c,1435600 +348a740,80407c18 +348a744,80407870 +348a748,ffffffff +348a74c,53340009 +348a750,1465700 +348a754,80407c18 +348a758,80407870 +348a75c,ffffffff +348a760,5335000d +348a764,1495a00 +348a768,80407c18 +348a76c,80407870 +348a770,ffffffff +348a774,5336000e +348a778,13f5200 +348a77c,80407c18 +348a780,80407870 +348a784,ffffffff +348a788,5337000a +348a78c,1425500 +348a790,80407c18 +348a794,80407870 +348a798,ffffffff +348a79c,533b00a4 +348a7a0,18d7400 +348a7a4,80407c18 +348a7a8,80407870 +348a7ac,ffffffff +348a7b0,533d004b +348a7b4,f84300 +348a7b8,80407c18 +348a7bc,80407870 +348a7c0,ffffffff +348a7c4,533e004c +348a7c8,cb1d01 +348a7cc,80407c18 +348a7d0,80407870 +348a7d4,ffffffff +348a7d8,533f004d +348a7dc,dc2c01 +348a7e0,80407c18 +348a7e4,80407870 +348a7e8,ffffffff +348a7ec,5340004e +348a7f0,ee3a00 +348a7f4,80407c18 +348a7f8,80407870 +348a7fc,ffffffff +348a800,53420050 +348a804,f23c00 +348a808,80407c18 +348a80c,80407870 +348a810,ffffffff +348a814,53430051 +348a818,f23d00 +348a81c,80407c18 +348a820,80407870 +348a824,ffffffff +348a828,53450053 +348a82c,1184700 +348a830,80407c18 +348a834,80407870 +348a838,ffffffff +348a83c,53460054 +348a840,1575f00 +348a844,80407c18 +348a848,80407870 +348a84c,ffffffff +348a850,534b0056 +348a854,be1600 +348a858,80407c18 +348a85c,80407870 +348a860,ffffffff +348a864,534c0057 +348a868,be1700 +348a86c,80407c18 +348a870,80407870 +348a874,ffffffff +348a878,534d0058 +348a87c,bf1800 +348a880,80407c18 +348a884,80407870 +348a888,ffffffff +348a88c,534e0059 +348a890,bf1900 +348a894,80407c18 +348a898,80407870 +348a89c,ffffffff +348a8a0,534f005a +348a8a4,bf1a00 +348a8a8,80407c18 +348a8ac,80407870 +348a8b0,ffffffff +348a8b4,5351005b +348a8b8,12d4900 +348a8bc,80407c18 +348a8c0,80407870 +348a8c4,ffffffff +348a8c8,5352005c +348a8cc,12d4a00 +348a8d0,80407c18 +348a8d4,80407870 +348a8d8,ffffffff +348a8dc,535300cd +348a8e0,db2a00 +348a8e4,80407c18 +348a8e8,80407870 +348a8ec,ffffffff +348a8f0,535400ce +348a8f4,db2b00 +348a8f8,80407c18 +348a8fc,80407870 +348a900,ffffffff +348a904,536f0068 +348a908,c82100 +348a90c,80407c18 +348a910,80407870 +348a914,ffffffff +348a918,5370007b +348a91c,d72400 +348a920,80407c18 +348a924,80407870 +348a928,ffffffff +348a92c,5341004a +348a930,10e4600 +348a934,80407c18 +348a938,80407a50 +348a93c,ffffffff +348a940,4d5800dc +348a944,1194801 +348a948,80407dfc +348a94c,80407870 +348a950,ffffffff +348a954,3d7200c6 +348a958,bd1301 +348a95c,80407c18 +348a960,80407878 +348a964,ffffffff +348a968,3e7a00c2 +348a96c,bd1401 +348a970,80407c18 +348a974,80407878 +348a978,ffffffff +348a97c,537400c7 +348a980,b90a02 +348a984,80407c18 +348a988,80407870 +348a98c,ffffffff +348a990,53750067 +348a994,b80b01 +348a998,80407c18 +348a99c,80407870 +348a9a0,ffffffff +348a9a4,53760066 +348a9a8,c81c01 +348a9ac,80407c18 +348a9b0,80407870 +348a9b4,ffffffff +348a9b8,53770060 +348a9bc,aa0203 +348a9c0,80407c18 +348a9c4,80407870 +348a9c8,ffffffff +348a9cc,53780052 +348a9d0,cd1e01 +348a9d4,80407c18 +348a9d8,80407870 +348a9dc,ffffffff +348a9e0,53790052 +348a9e4,cd1f01 +348a9e8,80407c18 +348a9ec,80407870 +348a9f0,ffffffff +348a9f4,5356005e +348a9f8,d12200 +348a9fc,80407c18 +348aa00,80407aa8 +348aa04,1ffff +348aa08,5357005f +348aa0c,d12300 +348aa10,80407c18 +348aa14,80407aa8 +348aa18,2ffff +348aa1c,5321009a +348aa20,da2900 +348aa24,80407c18 +348aa28,80407870 +348aa2c,ffffffff +348aa30,4d830055 +348aa34,b70901 +348aa38,80407c18 +348aa3c,80407870 +348aa40,ffffffff +348aa44,4d9200e6 +348aa48,d82501 +348aa4c,80407dc4 +348aa50,80407870 +348aa54,ffffffff +348aa58,4d9300e6 +348aa5c,d82601 +348aa60,80407dc4 +348aa64,80407870 +348aa68,ffffffff +348aa6c,4d9400e6 +348aa70,d82701 +348aa74,80407dc4 +348aa78,80407870 +348aa7c,ffffffff +348aa80,4d84006f +348aa84,17f6d01 +348aa88,80407c18 +348aa8c,80407870 +348aa90,ffffffff +348aa94,4d8500cc +348aa98,17f6e01 +348aa9c,80407c18 +348aaa0,80407870 +348aaa4,ffffffff +348aaa8,4d8600f0 +348aaac,17f6f01 +348aab0,80407c18 +348aab4,80407870 +348aab8,ffffffff +348aabc,3d7200c6 +348aac0,bd1301 +348aac4,80407c18 +348aac8,80407878 +348aacc,ffffffff +348aad0,53820098 +348aad4,df3000 +348aad8,80407c18 +348aadc,80407870 +348aae0,ffffffff +348aae4,53280014 +348aae8,1505b00 +348aaec,80407c18 +348aaf0,80407870 +348aaf4,ffffffff +348aaf8,53290015 +348aafc,1515c00 +348ab00,80407c18 +348ab04,80407870 +348ab08,ffffffff +348ab0c,532a0016 +348ab10,1525d00 +348ab14,80407c18 +348ab18,80407870 +348ab1c,ffffffff +348ab20,53500079 +348ab24,1475800 +348ab28,80407c18 +348ab2c,80407870 +348ab30,ffffffff +348ab34,4d8700f1 +348ab38,17f7101 +348ab3c,80407c18 +348ab40,80407870 +348ab44,ffffffff +348ab48,4d8800f2 +348ab4c,17f7201 +348ab50,80407c18 +348ab54,80407870 +348ab58,ffffffff +348ab5c,533d000c +348ab60,f84300 +348ab64,80407c18 +348ab68,80407978 +348ab6c,ffffffff +348ab70,53040070 +348ab74,1586000 +348ab78,80407c18 +348ab7c,80407870 +348ab80,ffffffff +348ab84,530c0071 +348ab88,1586100 +348ab8c,80407c18 +348ab90,80407870 +348ab94,ffffffff +348ab98,53120072 +348ab9c,1586200 +348aba0,80407c18 +348aba4,80407870 +348aba8,ffffffff +348abac,5b7100b4 +348abb0,15c6301 +348abb4,80407c18 +348abb8,80407870 +348abbc,ffffffff +348abc0,530500ad +348abc4,15d6400 +348abc8,80407c18 +348abcc,80407870 +348abd0,ffffffff +348abd4,530d00ae +348abd8,15d6500 +348abdc,80407c18 +348abe0,80407870 +348abe4,ffffffff +348abe8,531300af +348abec,15d6600 +348abf0,80407c18 +348abf4,80407870 +348abf8,ffffffff +348abfc,53470007 +348ac00,17b6c00 +348ac04,80407c18 +348ac08,80407870 +348ac0c,ffffffff +348ac10,53480007 +348ac14,17b6c00 +348ac18,80407c18 +348ac1c,80407870 +348ac20,ffffffff +348ac24,4d8a0037 +348ac28,c71b01 +348ac2c,80407c18 +348ac30,80407870 +348ac34,ffffffff +348ac38,4d8b0037 +348ac3c,c71b01 +348ac40,80407c18 +348ac44,80407870 +348ac48,ffffffff +348ac4c,4d8c0034 +348ac50,bb1201 +348ac54,80407c18 +348ac58,80407870 +348ac5c,ffffffff +348ac60,4d8d0034 +348ac64,bb1201 +348ac68,80407c18 +348ac6c,80407870 +348ac70,ffffffff +348ac74,4d020032 +348ac78,ce2001 +348ac7c,80407de0 +348ac80,80407870 +348ac84,ffffffff +348ac88,4d8f0032 +348ac8c,ce2001 +348ac90,80407de0 +348ac94,80407870 +348ac98,ffffffff +348ac9c,4d900032 +348aca0,ce2001 +348aca4,80407de0 +348aca8,80407870 +348acac,ffffffff +348acb0,4d910032 +348acb4,ce2001 +348acb8,80407de0 +348acbc,80407870 +348acc0,ffffffff +348acc4,4d9500dc +348acc8,1194801 +348accc,80407dfc +348acd0,80407870 +348acd4,ffffffff +348acd8,4d960033 +348acdc,d92801 +348ace0,80407c18 +348ace4,80407870 +348ace8,ffffffff +348acec,4d970033 +348acf0,d92801 +348acf4,80407c18 +348acf8,80407870 +348acfc,ffffffff +348ad00,53190047 +348ad04,f43f00 +348ad08,80407c18 +348ad0c,80407870 +348ad10,ffffffff +348ad14,531d007a +348ad18,1746800 +348ad1c,80407c18 +348ad20,80407870 +348ad24,ffffffff +348ad28,531c005d +348ad2c,1736700 +348ad30,80407c18 +348ad34,80407870 +348ad38,ffffffff +348ad3c,53200097 +348ad40,1766a00 +348ad44,80407c18 +348ad48,80407870 +348ad4c,ffffffff +348ad50,531e00f9 +348ad54,1767000 +348ad58,80407c18 +348ad5c,80407870 +348ad60,ffffffff +348ad64,537700f3 +348ad68,aa0201 +348ad6c,80407c18 +348ad70,80407870 +348ad74,ffffffff +348ad78,4d8400f4 +348ad7c,17f6d01 +348ad80,80407c18 +348ad84,80407870 +348ad88,ffffffff +348ad8c,4d8500f5 +348ad90,17f6e01 +348ad94,80407c18 +348ad98,80407870 +348ad9c,ffffffff +348ada0,4d8600f6 +348ada4,17f6f01 +348ada8,80407c18 +348adac,80407870 +348adb0,ffffffff +348adb4,4d8700f7 +348adb8,17f7101 +348adbc,80407c18 +348adc0,80407870 +348adc4,ffffffff +348adc8,537a00fa +348adcc,bd1401 +348add0,80407c18 +348add4,80407878 +348add8,ffffffff +348addc,53980090 +348ade0,c71b01 +348ade4,80407c18 +348ade8,80407870 +348adec,ffffffff +348adf0,53990091 +348adf4,c71b01 +348adf8,80407c18 +348adfc,80407870 +348ae00,ffffffff +348ae04,539a00a7 +348ae08,bb1201 +348ae0c,80407c18 +348ae10,80407870 +348ae14,ffffffff +348ae18,539b00a8 +348ae1c,bb1201 +348ae20,80407c18 +348ae24,80407870 +348ae28,ffffffff +348ae2c,5349006c +348ae30,17b7300 +348ae34,80407c18 +348ae38,80407870 +348ae3c,ffffffff +348ae40,53419002 +348ae48,80407c18 +348ae4c,80407a74 +348ae50,ffffffff +348ae90,ffffffff +348ae94,dd2d00 +348ae98,80407c20 +348ae9c,80407870 +348aea0,ffffffff +348aea4,ffffffff +348aea8,1475800 +348aeac,80407c34 +348aeb0,80407870 +348aeb4,ffffffff +348aeb8,ffffffff +348aebc,bf1800 +348aec0,80407c60 +348aec4,80407870 +348aec8,ffffffff +348aecc,ffffffff +348aed0,e93500 +348aed4,80407c8c +348aed8,80407870 +348aedc,ffffffff +348aee0,ffffffff +348aee4,e73300 +348aee8,80407cb4 +348aeec,80407870 +348aef0,ffffffff +348aef4,ffffffff +348aef8,d12200 +348aefc,80407ce4 +348af00,80407870 +348af04,ffffffff +348af08,ffffffff +348af0c,db2a00 +348af10,80407d14 +348af14,80407870 +348af18,ffffffff +348af1c,ffffffff +348af20,bb1201 +348af24,80407d2c +348af28,80407870 +348af2c,ffffffff +348af30,ffffffff +348af34,c71b01 +348af38,80407d48 +348af3c,80407870 +348af40,ffffffff +348af44,ffffffff +348af48,d92800 +348af4c,80407d74 +348af50,80407870 +348af54,ffffffff +348af58,ffffffff +348af5c,cd1e00 +348af60,80407d64 +348af64,80407870 +348af68,ffffffff +348af6c,ffffffff +348af70,10e4600 +348af74,80407da4 +348af78,80407870 +348af7c,ffffffff +348af80,53410043 +348af84,c60100 +348af88,80407c18 +348af8c,80407984 +348af90,15ffff +348af94,53410044 +348af98,c60100 +348af9c,80407c18 +348afa0,80407984 +348afa4,16ffff +348afa8,53410045 +348afac,c60100 +348afb0,80407c18 +348afb4,80407984 +348afb8,17ffff +348afbc,53410046 +348afc0,1776b00 +348afc4,80407c18 +348afc8,80407984 +348afcc,18ffff +348afd0,53410047 +348afd4,f43f00 +348afd8,80407c18 +348afdc,80407984 +348afe0,19ffff +348afe4,5341005d +348afe8,1736700 +348afec,80407c18 +348aff0,80407984 +348aff4,1cffff +348aff8,5341007a +348affc,1746800 +348b000,80407c18 +348b004,80407984 +348b008,1dffff +348b00c,534100f9 +348b010,1767000 +348b014,80407c18 +348b018,80407984 +348b01c,1effff +348b020,53410097 +348b024,1766a00 +348b028,80407c18 +348b02c,80407984 +348b030,20ffff +348b034,53410006 +348b038,b90a02 +348b03c,80407c18 +348b040,804079bc +348b044,10003 +348b048,5341001c +348b04c,b90a02 +348b050,80407c18 +348b054,804079bc +348b058,10004 +348b05c,5341001d +348b060,b90a02 +348b064,80407c18 +348b068,804079bc +348b06c,10005 +348b070,5341001e +348b074,b90a02 +348b078,80407c18 +348b07c,804079bc +348b080,10006 +348b084,5341002a +348b088,b90a02 +348b08c,80407c18 +348b090,804079bc +348b094,10007 +348b098,53410061 +348b09c,b90a02 +348b0a0,80407c18 +348b0a4,804079bc +348b0a8,1000a +348b0ac,53410062 +348b0b0,b80b01 +348b0b4,80407c18 +348b0b8,804079bc +348b0bc,20000 +348b0c0,53410063 +348b0c4,b80b01 +348b0c8,80407c18 +348b0cc,804079bc +348b0d0,20001 +348b0d4,53410064 +348b0d8,b80b01 +348b0dc,80407c18 +348b0e0,804079bc +348b0e4,20002 +348b0e8,53410065 +348b0ec,b80b01 +348b0f0,80407c18 +348b0f4,804079bc +348b0f8,20003 +348b0fc,5341007c +348b100,b80b01 +348b104,80407c18 +348b108,804079bc +348b10c,20004 +348b110,5341007d +348b114,b80b01 +348b118,80407c18 +348b11c,804079bc +348b120,20005 +348b124,5341007e +348b128,b80b01 +348b12c,80407c18 +348b130,804079bc +348b134,20006 +348b138,5341007f +348b13c,b80b01 +348b140,80407c18 +348b144,804079bc +348b148,20007 +348b14c,534100a2 +348b150,b80b01 +348b154,80407c18 +348b158,804079bc +348b15c,20008 +348b160,53410087 +348b164,b80b01 +348b168,80407c18 +348b16c,804079bc +348b170,20009 +348b174,53410088 +348b178,c81c01 +348b17c,80407c18 +348b180,804079bc +348b184,40000 +348b188,53410089 +348b18c,c81c01 +348b190,80407c18 +348b194,804079bc +348b198,40001 +348b19c,5341008a +348b1a0,c81c01 +348b1a4,80407c18 +348b1a8,804079bc +348b1ac,40002 +348b1b0,5341008b +348b1b4,c81c01 +348b1b8,80407c18 +348b1bc,804079bc +348b1c0,40003 +348b1c4,5341008c +348b1c8,c81c01 +348b1cc,80407c18 +348b1d0,804079bc +348b1d4,40004 +348b1d8,5341008e +348b1dc,c81c01 +348b1e0,80407c18 +348b1e4,804079bc +348b1e8,40005 +348b1ec,5341008f +348b1f0,c81c01 +348b1f4,80407c18 +348b1f8,804079bc +348b1fc,40006 +348b200,534100a3 +348b204,c81c01 +348b208,80407c18 +348b20c,804079bc +348b210,40007 +348b214,534100a5 +348b218,c81c01 +348b21c,80407c18 +348b220,804079bc +348b224,40008 +348b228,53410092 +348b22c,c81c01 +348b230,80407c18 +348b234,804079bc +348b238,40009 +348b23c,53410093 +348b240,aa0203 +348b244,80407c18 +348b248,804079d0 +348b24c,3ffff +348b250,53410094 +348b254,aa0203 +348b258,80407c18 +348b25c,804079d0 +348b260,4ffff +348b264,53410095 +348b268,aa0203 +348b26c,80407c18 +348b270,804079d0 +348b274,5ffff +348b278,534100a6 +348b27c,aa0203 +348b280,80407c18 +348b284,804079d0 +348b288,6ffff +348b28c,534100a9 +348b290,aa0203 +348b294,80407c18 +348b298,804079d0 +348b29c,7ffff +348b2a0,5341009b +348b2a4,aa0203 +348b2a8,80407c18 +348b2ac,804079d0 +348b2b0,8ffff +348b2b4,5341009f +348b2b8,aa0203 +348b2bc,80407c18 +348b2c0,804079d0 +348b2c4,bffff +348b2c8,534100a0 +348b2cc,aa0203 +348b2d0,80407c18 +348b2d4,804079d0 +348b2d8,cffff +348b2dc,534100a1 +348b2e0,aa0203 +348b2e4,80407c18 +348b2e8,804079d0 +348b2ec,dffff +348b2f0,534100e9 +348b2f4,1941300 +348b2f8,80407c18 +348b2fc,804079f4 +348b300,ffffffff +348b304,534100e4 +348b308,cd1e00 +348b30c,80407c18 +348b310,80407a10 +348b314,ffffffff +348b318,534100e8 +348b31c,cd1f00 +348b320,80407c18 +348b324,80407a2c +348b328,ffffffff +348b32c,53410073 +348b330,b60300 +348b334,80407c18 +348b338,80407a5c +348b33c,6ffff +348b340,53410074 +348b344,b60400 +348b348,80407c18 +348b34c,80407a5c +348b350,7ffff +348b354,53410075 +348b358,b60500 +348b35c,80407c18 +348b360,80407a5c +348b364,8ffff +348b368,53410076 +348b36c,b60600 +348b370,80407c18 +348b374,80407a5c +348b378,9ffff +348b37c,53410077 +348b380,b60700 +348b384,80407c18 +348b388,80407a5c +348b38c,affff +348b390,53410078 +348b394,b60800 +348b398,80407c18 +348b39c,80407a5c +348b3a0,bffff +348b3a4,534100d4 +348b3a8,b60400 +348b3ac,80407c18 +348b3b0,80407a5c +348b3b4,cffff +348b3b8,534100d2 +348b3bc,b60600 +348b3c0,80407c18 +348b3c4,80407a5c +348b3c8,dffff +348b3cc,534100d1 +348b3d0,b60300 +348b3d4,80407c18 +348b3d8,80407a5c +348b3dc,effff +348b3e0,534100d3 +348b3e4,b60800 +348b3e8,80407c18 +348b3ec,80407a5c +348b3f0,fffff +348b3f4,534100d5 +348b3f8,b60500 +348b3fc,80407c18 +348b400,80407a5c +348b404,10ffff +348b408,534100d6 +348b40c,b60700 +348b410,80407c18 +348b414,80407a5c +348b418,11ffff +348b41c,534100f8 +348b420,d12300 +348b424,80407c18 +348b428,80407940 +348b42c,3ffff +348b430,53149099 +348b434,10b4500 +348b438,80407c18 +348b43c,80407870 +348b440,ffffffff +348b444,53419048 +348b448,f33e00 +348b44c,80407c18 +348b450,80407a90 +348b454,ffffffff +348b458,53419003 +348b45c,1933500 +348b460,80407c18 +348b464,80407884 +348b468,ffffffff +348b46c,53419097 +348b470,ef3b00 +348b474,80407c18 +348b478,80407870 +348b47c,ffffffff +348b480,4d419098 +348b484,ef3b01 +348b488,80407c18 +348b48c,80407870 +348b490,ffffffff +348b498,1 +348b49c,1 +348b4a0,d +348b4a4,41200000 +348b4a8,41200000 +348b4ac,8040a438 +348b4b0,8040a428 +348b4b8,df000000 +348b4c0,80112f1a +348b4c4,80112f14 +348b4c8,80112f0e +348b4cc,80112f08 +348b4d0,8011320a +348b4d4,80113204 +348b4d8,801131fe +348b4dc,801131f8 +348b4e0,801131f2 +348b4e4,801131ec +348b4e8,801131e6 +348b4ec,801131e0 +348b4f0,8012be1e +348b4f4,8012be20 +348b4f8,8012be1c +348b4fc,8012be12 +348b500,8012be14 +348b504,8012be10 +348b508,801c7672 +348b50c,801c767a +348b510,801c7950 +348b514,8011bd50 +348b518,8011bd38 +348b51c,801d8b9e +348b520,801d8b92 +348b524,c80000 +348b52c,ff0046 +348b530,32ffff +348c680,db000 +348c684,db000 +348c688,db000 +348c68c,cb000 +348c690,cb000 +348c694,ca000 +348c69c,db000 +348c6a0,db000 +348c6b8,e8ac00 +348c6bc,e8ac00 +348c6c0,e8ac00 +348c6c4,e8ac00 +348c6ec,d77d0 +348c6f0,2e3ab0 +348c6f4,7d0c90 +348c6f8,8ffffffd +348c6fc,c96e00 +348c700,2e4ac00 +348c704,effffff4 +348c708,ab0e500 +348c70c,c95e000 +348c710,e59c000 +348c728,79000 +348c72c,5ceeb40 +348c730,cc8a990 +348c734,da79000 +348c738,8ecb400 +348c73c,4adda0 +348c740,797e2 +348c744,c88aae0 +348c748,6ceed70 +348c74c,79000 +348c750,79000 +348c760,6dea0000 +348c764,c94d6000 +348c768,c94d6033 +348c76c,6deb6bc6 +348c770,8cb600 +348c774,7ca4cec4 +348c778,3109c3bb +348c77c,9c3bb +348c780,2ced4 +348c798,4cefb00 +348c79c,ad50000 +348c7a0,8e30000 +348c7a4,9ec0000 +348c7a8,7e4db0ab +348c7ac,bb05e8aa +348c7b0,bc008ed6 +348c7b4,7e936ed0 +348c7b8,8ded9ea +348c7d0,ca000 +348c7d4,ca000 +348c7d8,ca000 +348c7dc,ca000 +348c800,c900 +348c804,7e200 +348c808,cb000 +348c80c,e8000 +348c810,6f3000 +348c814,8e0000 +348c818,8e0000 +348c81c,6f4000 +348c820,e8000 +348c824,cb000 +348c828,7e200 +348c82c,c900 +348c838,bb0000 +348c83c,5e4000 +348c840,ca000 +348c844,ad000 +348c848,7e100 +348c84c,6f400 +348c850,6f400 +348c854,7e100 +348c858,ad000 +348c85c,ca000 +348c860,5e4000 +348c864,bb0000 +348c878,a8000 +348c87c,c8a8ab0 +348c880,3beda10 +348c884,3beda10 +348c888,c8a8ab0 +348c88c,a8000 +348c8b4,ca000 +348c8b8,ca000 +348c8bc,ca000 +348c8c0,affffff8 +348c8c4,ca000 +348c8c8,ca000 +348c8cc,ca000 +348c904,dd000 +348c908,ec000 +348c90c,4f8000 +348c910,9d0000 +348c934,dffb00 +348c974,ec000 +348c978,ec000 +348c990,bc0 +348c994,4e60 +348c998,bc00 +348c99c,3e800 +348c9a0,ad000 +348c9a4,1e9000 +348c9a8,9e2000 +348c9ac,da0000 +348c9b0,7e30000 +348c9b4,cb00000 +348c9b8,6e500000 +348c9c8,3ceeb00 +348c9cc,bd57e90 +348c9d0,e900bd0 +348c9d4,5f7009e0 +348c9d8,6f6cb9e0 +348c9dc,5f7009e0 +348c9e0,e900bd0 +348c9e4,bd57e90 +348c9e8,3ceeb00 +348ca00,affe000 +348ca04,8e000 +348ca08,8e000 +348ca0c,8e000 +348ca10,8e000 +348ca14,8e000 +348ca18,8e000 +348ca1c,8e000 +348ca20,8ffffe0 +348ca38,8deea00 +348ca3c,c837e90 +348ca40,cc0 +348ca44,2ea0 +348ca48,bd20 +348ca4c,bd400 +348ca50,bd4000 +348ca54,bd40000 +348ca58,2fffffd0 +348ca70,7ceea00 +348ca74,c837e90 +348ca78,cb0 +348ca7c,27e90 +348ca80,bffb00 +348ca84,27da0 +348ca88,ad0 +348ca8c,5c627db0 +348ca90,9deeb30 +348caa8,2de00 +348caac,bde00 +348cab0,7d9e00 +348cab4,2d79e00 +348cab8,bb09e00 +348cabc,6e409e00 +348cac0,9ffffff7 +348cac4,9e00 +348cac8,9e00 +348cae0,cffff50 +348cae4,ca00000 +348cae8,ca00000 +348caec,ceeea00 +348caf0,38e90 +348caf4,bc0 +348caf8,bc0 +348cafc,5c638e90 +348cb00,9deda00 +348cb18,aeec30 +348cb1c,ae83980 +348cb20,e900000 +348cb24,4faeec40 +348cb28,6fd55dc0 +348cb2c,5f9009e0 +348cb30,e9009e0 +348cb34,cd55dc0 +348cb38,3ceec40 +348cb50,5fffffd0 +348cb54,da0 +348cb58,7e40 +348cb5c,cc00 +348cb60,4e800 +348cb64,ad000 +348cb68,da000 +348cb6c,8e4000 +348cb70,cc0000 +348cb88,5ceec30 +348cb8c,dc45db0 +348cb90,e900bd0 +348cb94,bc45d90 +348cb98,4dffc20 +348cb9c,1db45cc0 348cba0,5f6009e0 -348cbb8,dffffb0 -348cbbc,db000 -348cbc0,db000 -348cbc4,db000 -348cbc8,db000 -348cbcc,db000 -348cbd0,db000 -348cbd4,db000 -348cbd8,dffffb0 -348cbf0,cfff40 -348cbf4,7f40 -348cbf8,7f40 -348cbfc,7f40 -348cc00,7f40 -348cc04,7f30 -348cc08,75009e00 -348cc0c,8d64dc00 -348cc10,2beec500 -348cc28,5f6009e7 -348cc2c,5f609e70 -348cc30,5f69e700 -348cc34,5fbe8000 -348cc38,5fedb000 -348cc3c,5f87e800 -348cc40,5f60ae40 -348cc44,5f601dc0 -348cc48,5f6006ea -348cc60,cc00000 -348cc64,cc00000 -348cc68,cc00000 -348cc6c,cc00000 -348cc70,cc00000 -348cc74,cc00000 -348cc78,cc00000 -348cc7c,cc00000 -348cc80,cfffff7 -348cc98,afa00cf8 -348cc9c,aed02ee8 -348cca0,add59be8 -348cca4,adaac8e8 -348cca8,ad5de1e8 -348ccac,ad0db0e8 -348ccb0,ad0000e8 -348ccb4,ad0000e8 -348ccb8,ad0000e8 -348ccd0,5fc008e0 -348ccd4,5fe608e0 -348ccd8,5fcb08e0 -348ccdc,5f7e48e0 -348cce0,5f5ca8e0 -348cce4,5f57e8e0 -348cce8,5f50dce0 -348ccec,5f509ee0 -348ccf0,5f502ee0 -348cd08,4ceeb20 -348cd0c,cd56ea0 -348cd10,3e800ae0 -348cd14,7f5008f2 -348cd18,7f4008f4 -348cd1c,7f5008f2 -348cd20,3e800ae0 -348cd24,cd56eb0 -348cd28,4ceeb20 -348cd40,dffed60 -348cd44,db05ce2 -348cd48,db006f6 -348cd4c,db006f6 -348cd50,db05ce2 -348cd54,dffed60 -348cd58,db00000 -348cd5c,db00000 -348cd60,db00000 -348cd78,4ceeb20 -348cd7c,cd56ea0 -348cd80,3e800ae0 -348cd84,7f5008f2 -348cd88,7f4008f4 -348cd8c,7f5008f1 -348cd90,3e800ad0 -348cd94,cd56ea0 -348cd98,4cefc20 -348cd9c,ae50 -348cda0,c80 -348cdb0,5ffeeb20 -348cdb4,5f717eb0 -348cdb8,5f700cd0 -348cdbc,5f716ea0 -348cdc0,5fffea00 -348cdc4,5f72ae40 -348cdc8,5f700db0 -348cdcc,5f7008e5 -348cdd0,5f7000db -348cde8,6ceeb30 -348cdec,dc45a90 -348cdf0,4f600000 -348cdf4,ec60000 -348cdf8,5ceeb40 -348cdfc,6cc0 -348ce00,8e0 -348ce04,c735cd0 -348ce08,8deec50 -348ce20,cffffffb -348ce24,db000 -348ce28,db000 -348ce2c,db000 -348ce30,db000 -348ce34,db000 -348ce38,db000 -348ce3c,db000 -348ce40,db000 -348ce58,4f7009e0 -348ce5c,4f7009e0 -348ce60,4f7009e0 -348ce64,4f7009e0 -348ce68,4f7009e0 -348ce6c,3f7009e0 -348ce70,2e700ad0 -348ce74,dc45dc0 -348ce78,5ceec40 -348ce90,ad0003e8 -348ce94,6f5008e3 -348ce98,e900bc0 -348ce9c,bc00d90 -348cea0,8e15e40 -348cea4,2e7ad00 -348cea8,cbca00 -348ceac,9de600 -348ceb0,3ed000 -348cec8,e80000ad -348cecc,da0000cb -348ced0,cb0000da -348ced4,ac0ec0e8 -348ced8,8d6de1e5 -348cedc,6e9bd8e0 -348cee0,1ec8acd0 -348cee4,de37ec0 -348cee8,cd00ea0 -348cf00,6e7007e7 -348cf04,ad21db0 -348cf08,2daad20 -348cf0c,7ee700 -348cf10,3ee200 -348cf14,bdda00 -348cf18,7e67e60 -348cf1c,3ea00bd0 -348cf20,bd2004e9 -348cf38,ae2005e8 -348cf3c,2da00cc0 -348cf40,7e57e50 -348cf44,ccda00 -348cf48,4ed200 +348cba4,2eb35cd0 +348cba8,7deec50 +348cbc0,6deeb00 +348cbc4,db37e90 +348cbc8,5f500bd0 +348cbcc,5f500be0 +348cbd0,db37ee0 +348cbd4,6dedbe0 +348cbd8,bc0 +348cbdc,9749e70 +348cbe0,5ded800 +348cc00,ec000 +348cc04,ec000 +348cc14,ec000 +348cc18,ec000 +348cc38,ec000 +348cc3c,ec000 +348cc4c,dd000 +348cc50,ec000 +348cc54,4f8000 +348cc58,9d0000 +348cc70,29c8 +348cc74,7bed93 +348cc78,8dda4000 +348cc7c,8dda4000 +348cc80,7bec93 +348cc84,29c8 +348ccac,affffff8 +348ccb8,affffff8 +348cce0,ac810000 +348cce4,4adeb600 +348cce8,6add6 +348ccec,6add6 +348ccf0,4adeb600 +348ccf4,ac810000 +348cd10,4beec30 +348cd14,9a46ea0 +348cd18,1da0 +348cd1c,2cd30 +348cd20,cc100 +348cd24,e9000 +348cd2c,e9000 +348cd30,e9000 +348cd48,1aeed70 +348cd4c,cd739e4 +348cd50,7e2000c9 +348cd54,ba0aeeca +348cd58,d76e64da +348cd5c,d69c00aa +348cd60,d76e64da +348cd64,ba0aeeca +348cd68,6e400000 +348cd6c,ad83000 +348cd70,8dee90 +348cd80,3ed000 +348cd84,9de600 +348cd88,cbcb00 +348cd8c,3e8ad00 +348cd90,8e26f60 +348cd94,cc00ea0 +348cd98,2effffd0 +348cd9c,8e5008f5 +348cda0,cd0001ea +348cdb8,effec40 +348cdbc,e905dc0 +348cdc0,e900ae0 +348cdc4,e905dc0 +348cdc8,efffd50 +348cdcc,e904bd2 +348cdd0,e9005f6 +348cdd4,e904be3 +348cdd8,effed80 +348cdf0,9ded80 +348cdf4,8e936b0 +348cdf8,db00000 +348cdfc,3f900000 +348ce00,5f700000 +348ce04,1e900000 +348ce08,db00000 +348ce0c,8e947b0 +348ce10,9ded80 +348ce28,5ffed800 +348ce2c,5f65ae80 +348ce30,5f600cd0 +348ce34,5f6009e0 +348ce38,5f6009f0 +348ce3c,5f6009e0 +348ce40,5f600cd0 +348ce44,5f65ae80 +348ce48,5ffed800 +348ce60,dffffe0 +348ce64,db00000 +348ce68,db00000 +348ce6c,db00000 +348ce70,dffffc0 +348ce74,db00000 +348ce78,db00000 +348ce7c,db00000 +348ce80,dfffff0 +348ce98,bfffff4 +348ce9c,bd00000 +348cea0,bd00000 +348cea4,bd00000 +348cea8,bffffc0 +348ceac,bd00000 +348ceb0,bd00000 +348ceb4,bd00000 +348ceb8,bd00000 +348ced0,1aeed60 +348ced4,be738a0 +348ced8,4e900000 +348cedc,8f400000 +348cee0,9f10bff2 +348cee4,7f4007f2 +348cee8,4e9007f2 +348ceec,be739f2 +348cef0,1beed90 +348cf08,5f6009e0 +348cf0c,5f6009e0 +348cf10,5f6009e0 +348cf14,5f6009e0 +348cf18,5fffffe0 +348cf1c,5f6009e0 +348cf20,5f6009e0 +348cf24,5f6009e0 +348cf28,5f6009e0 +348cf40,dffffb0 +348cf44,db000 +348cf48,db000 348cf4c,db000 348cf50,db000 348cf54,db000 348cf58,db000 -348cf70,efffff8 -348cf74,bd3 -348cf78,7e70 -348cf7c,3ea00 -348cf80,bd100 -348cf84,8e5000 -348cf88,4e90000 -348cf8c,cc00000 -348cf90,1ffffffa -348cfa0,4ffc00 -348cfa4,4f5000 -348cfa8,4f5000 -348cfac,4f5000 -348cfb0,4f5000 -348cfb4,4f5000 -348cfb8,4f5000 -348cfbc,4f5000 -348cfc0,4f5000 -348cfc4,4f5000 -348cfc8,4f5000 -348cfcc,4ffc00 -348cfe0,6e500000 -348cfe4,cb00000 -348cfe8,7e30000 -348cfec,da0000 -348cff0,9e2000 -348cff4,1e9000 -348cff8,ad000 -348cffc,3e800 -348d000,bc00 -348d004,4e60 -348d008,bc0 -348d010,dfe000 -348d014,8e000 -348d018,8e000 -348d01c,8e000 -348d020,8e000 -348d024,8e000 -348d028,8e000 -348d02c,8e000 -348d030,8e000 -348d034,8e000 -348d038,8e000 -348d03c,dfe000 -348d050,5ed200 -348d054,dcdb00 -348d058,ad25e80 -348d05c,7e5007e5 -348d0b4,fffffffd -348d0bc,2ca0000 -348d0c0,2c9000 -348d100,5ceeb10 -348d104,b936da0 -348d108,bc0 -348d10c,8deffc0 -348d110,3e930bd0 -348d114,4f827ed0 -348d118,aeedbd0 -348d128,d900000 -348d12c,d900000 -348d130,d900000 -348d134,d900000 -348d138,dbdec40 -348d13c,de65dc0 -348d140,db008e0 -348d144,da007f2 -348d148,db008e0 -348d14c,de64db0 -348d150,dbdec40 -348d170,8ded70 -348d174,7e936a0 -348d178,cc00000 -348d17c,db00000 -348d180,cc00000 -348d184,7e936a0 -348d188,8ded70 -348d198,bc0 -348d19c,bc0 -348d1a0,bc0 -348d1a4,bc0 -348d1a8,5dedcc0 -348d1ac,dc48ec0 -348d1b0,5f600cc0 -348d1b4,7f300bc0 -348d1b8,5f600cc0 -348d1bc,dc48ec0 -348d1c0,5dedcc0 -348d1e0,3beec30 -348d1e4,cd54cc0 -348d1e8,4f6007e0 -348d1ec,6ffffff3 -348d1f0,4f500000 -348d1f4,cc538c0 -348d1f8,3beec60 -348d208,5ded0 -348d20c,cb200 -348d210,d9000 -348d214,e8000 -348d218,dffffd0 -348d21c,e8000 -348d220,e8000 -348d224,e8000 -348d228,e8000 -348d22c,e8000 -348d230,e8000 -348d250,5dedcc0 -348d254,dc48ec0 -348d258,5f600cc0 -348d25c,7f300bc0 -348d260,5f600cc0 -348d264,dc48ec0 -348d268,5dedcb0 -348d26c,ca0 -348d270,9947e60 -348d274,4cee900 -348d278,da00000 -348d27c,da00000 -348d280,da00000 -348d284,da00000 -348d288,dbded40 -348d28c,de65da0 -348d290,db00bc0 -348d294,da00bc0 -348d298,da00bc0 -348d29c,da00bc0 -348d2a0,da00bc0 -348d2b0,bc000 -348d2c0,9ffc000 -348d2c4,bc000 -348d2c8,bc000 -348d2cc,bc000 -348d2d0,bc000 -348d2d4,bc000 -348d2d8,effffe0 -348d2e8,7e000 -348d2f8,7ffe000 -348d2fc,7e000 -348d300,7e000 -348d304,7e000 -348d308,7e000 -348d30c,7e000 -348d310,7e000 -348d314,7e000 -348d318,1bd000 -348d31c,dfe7000 -348d320,bc00000 -348d324,bc00000 -348d328,bc00000 -348d32c,bc00000 -348d330,bc03dc2 -348d334,bc3db00 -348d338,bddc000 -348d33c,bfce500 -348d340,bd0cd10 -348d344,bc03db0 -348d348,bc007e8 -348d358,eff4000 -348d35c,5f4000 -348d360,5f4000 -348d364,5f4000 -348d368,5f4000 -348d36c,5f4000 -348d370,5f4000 -348d374,5f4000 -348d378,4f5000 -348d37c,ea000 -348d380,8efb0 -348d3a0,8dddaec0 -348d3a4,8e4dc5e4 -348d3a8,8d0cb0e6 -348d3ac,8d0ba0e7 -348d3b0,8d0ba0e7 -348d3b4,8d0ba0e7 -348d3b8,8d0ba0e7 -348d3d8,dbded40 -348d3dc,de65da0 -348d3e0,db00bc0 -348d3e4,da00bc0 -348d3e8,da00bc0 -348d3ec,da00bc0 -348d3f0,da00bc0 -348d410,4ceeb20 -348d414,cd56da0 -348d418,1e700ad0 -348d41c,5f6008e0 -348d420,1e700ad0 -348d424,cd46db0 -348d428,4ceeb20 -348d448,dbdec30 -348d44c,de65db0 -348d450,db009e0 -348d454,da007e0 -348d458,db008e0 -348d45c,de65db0 -348d460,dbeec40 -348d464,d900000 -348d468,d900000 -348d46c,d900000 -348d480,4cedcc0 -348d484,cc47ec0 -348d488,1e700cc0 -348d48c,5f600bc0 -348d490,2e700cc0 -348d494,cc47ec0 -348d498,5cedbc0 -348d49c,ac0 -348d4a0,ac0 -348d4a4,ac0 -348d4b8,ccdef9 -348d4bc,ce8300 -348d4c0,cb0000 -348d4c4,ca0000 -348d4c8,ca0000 -348d4cc,ca0000 -348d4d0,ca0000 -348d4f0,4ceea10 -348d4f4,bd45b60 -348d4f8,bd40000 -348d4fc,3bddb20 -348d500,4da0 -348d504,b945ea0 -348d508,5ceeb20 -348d520,8e0000 -348d524,8e0000 -348d528,6fffffb0 -348d52c,8e0000 -348d530,8e0000 -348d534,8e0000 -348d538,8e0000 -348d53c,6e7000 -348d540,befb0 -348d560,da00bc0 -348d564,da00bc0 -348d568,da00bc0 -348d56c,da00bc0 -348d570,da00bc0 -348d574,bd47ec0 -348d578,5dedbc0 -348d598,6e3007e3 -348d59c,d900bc0 -348d5a0,ad01e80 -348d5a4,5e48e20 -348d5a8,dacb00 -348d5ac,9de700 -348d5b0,3ee000 -348d5d0,e80000ac -348d5d4,ca0000ca -348d5d8,ac0db0e7 -348d5dc,6e3dd5e2 -348d5e0,eabcad0 -348d5e4,ce79eb0 -348d5e8,ae15f80 -348d608,3da00bc0 -348d60c,6e69e40 -348d610,9ee700 -348d614,2ed000 -348d618,ccda00 -348d61c,9e46e70 -348d620,6e7009e4 -348d640,6e5005e5 -348d644,da00bd0 -348d648,9e00e90 -348d64c,3e78e30 -348d650,cccc00 -348d654,7ee700 -348d658,de000 -348d65c,da000 -348d660,8e5000 -348d664,dea0000 -348d678,bffffc0 -348d67c,5e70 -348d680,3d900 -348d684,cb000 -348d688,bd2000 -348d68c,9e40000 -348d690,dffffc0 -348d6a0,6dea0 -348d6a4,bd300 -348d6a8,cb000 -348d6ac,cb000 -348d6b0,5ea000 -348d6b4,bfd2000 -348d6b8,7e9000 -348d6bc,db000 -348d6c0,cb000 -348d6c4,cb000 -348d6c8,bd400 -348d6cc,5dea0 -348d6d8,ca000 -348d6dc,ca000 -348d6e0,ca000 -348d6e4,ca000 -348d6e8,ca000 -348d6ec,ca000 -348d6f0,ca000 -348d6f4,ca000 -348d6f8,ca000 -348d6fc,ca000 -348d700,ca000 -348d704,ca000 -348d708,ca000 -348d710,bed3000 -348d714,4e9000 -348d718,da000 -348d71c,ca000 -348d720,bc400 -348d724,5efa0 -348d728,bd500 -348d72c,cb000 -348d730,da000 -348d734,da000 -348d738,5e8000 -348d73c,bec2000 -348d760,5ded83a7 -348d764,9838dec3 -348d7d8,7f024429 -348d7dc,3c334133 -348d7e0,41334633 -348d7e4,44297f02 -348d814,5409 -348d818,4dc548ff -348d81c,41ff43ff -348d820,47ff49ff -348d824,43ff20c5 -348d828,c0000 -348d854,3f75 -348d858,49ff33ff -348d85c,28ff2dff -348d860,33ff39ff -348d864,3cff00ff -348d868,770000 -348d894,329d -348d898,37ff1bff -348d89c,21ff28ff -348d8a0,2fff35ff -348d8a4,3cff00ff -348d8a8,9d0000 -348d8d4,329e -348d8d8,35ff21ff -348d8dc,28ff06ff -348d8e0,9ff3cff -348d8e4,42ff00ff -348d8e8,9e0000 -348d914,359e -348d918,39ff27ff -348d91c,2eff00ff -348d920,2ff42ff -348d924,48ff00ff -348d928,9e0000 -348d954,3a9e -348d958,3eff2eff -348d95c,35ff00ff -348d960,dff48ff -348d964,4dff00ff -348d968,9e0000 -348d994,3e9e -348d998,42ff35ff -348d99c,3bff1bff -348d9a0,27ff4dff -348d9a4,53ff00ff -348d9a8,9e0000 -348d9d4,439e -348d9d8,47ff3bff -348d9dc,41ff47ff -348d9e0,4dff52ff -348d9e4,58ff00ff -348d9e8,9e0000 -348da14,4d9e -348da18,4dff41ff -348da1c,47ff4dff -348da20,52ff57ff -348da24,5cff00ff -348da28,9e0000 -348da44,3f04474f -348da48,3e663e66 -348da4c,43664666 -348da50,48664d66 -348da54,57665bc5 -348da58,53ff47ff -348da5c,4dff52ff -348da60,57ff5cff -348da64,60ff0eff -348da68,19c56666 -348da6c,66666466 -348da70,61665f66 -348da74,5c665a66 -348da78,504f3f04 -348da80,6605 -348da84,4ec34bff -348da88,41ff41ff -348da8c,45ff48ff -348da90,4cff4fff -348da94,55ff59ff -348da98,4fff4dff -348da9c,52ff57ff -348daa0,5cff60ff -348daa4,64ff61ff -348daa8,67ff66ff -348daac,64ff62ff -348dab0,60ff5dff -348dab4,5bff57ff -348dab8,49ff0ec3 -348dabc,50000 -348dac0,3958 -348dac4,44ff31ff -348dac8,20ff25ff -348dacc,2bff31ff -348dad0,38ff3eff -348dad4,44ff49ff -348dad8,4dff52ff -348dadc,57ff5cff -348dae0,60ff64ff -348dae4,68ff67ff -348dae8,64ff60ff -348daec,5cff58ff -348daf0,53ff4eff -348daf4,48ff43ff -348daf8,32ff00ff -348dafc,580000 -348db00,2f71 -348db04,36ff1dff -348db08,1fff26ff -348db0c,2dff34ff -348db10,3aff41ff -348db14,47ff4cff -348db18,52ff57ff -348db1c,5cff60ff -348db20,64ff68ff -348db24,67ff64ff -348db28,60ff5bff -348db2c,57ff51ff -348db30,4cff46ff -348db34,40ff3aff -348db38,27ff00ff -348db3c,710000 -348db40,2f71 -348db44,36ff21ff -348db48,16ff00ff -348db4c,ff00ff -348db50,2cff47ff -348db54,4cff52ff -348db58,57ff5cff -348db5c,60ff64ff -348db60,67ff67ff -348db64,64ff60ff -348db68,5bff57ff -348db6c,52ff0dff -348db70,ff00ff -348db74,aff33ff -348db78,21ff00ff -348db7c,710000 -348db80,3371 -348db84,3aff28ff -348db88,22ff0fff -348db8c,13ff19ff -348db90,39ff4cff -348db94,52ff57ff -348db98,5bff60ff -348db9c,64ff67ff -348dba0,67ff64ff -348dba4,60ff5cff -348dba8,57ff52ff -348dbac,4cff1dff -348dbb0,12ff14ff -348dbb4,19ff2dff -348dbb8,1bff00ff -348dbbc,710000 -348dbc0,3871 -348dbc4,3dff2fff -348dbc8,33ff3aff -348dbcc,40ff46ff -348dbd0,4cff51ff -348dbd4,57ff5bff -348dbd8,60ff64ff -348dbdc,67ff68ff -348dbe0,64ff60ff -348dbe4,5cff57ff -348dbe8,52ff4cff -348dbec,47ff41ff -348dbf0,3aff34ff -348dbf4,2dff26ff -348dbf8,12ff00ff -348dbfc,710000 -348dc00,3569 -348dc04,37ff33ff -348dc08,3aff40ff -348dc0c,46ff4cff -348dc10,51ff57ff -348dc14,5bff60ff -348dc18,64ff67ff -348dc1c,68ff64ff -348dc20,60ff5cff -348dc24,57ff52ff -348dc28,4dff47ff -348dc2c,41ff3aff -348dc30,34ff2dff -348dc34,26ff1fff -348dc38,6ff00ff -348dc3c,690000 -348dc40,1e21 -348dc44,2f600ff -348dc48,ff00ff -348dc4c,ff00ff -348dc50,ff00ff -348dc54,2ff1eff -348dc58,60ff68ff -348dc5c,64ff60ff -348dc60,5cff57ff -348dc64,52ff2cff -348dc68,6ff00ff -348dc6c,ff00ff -348dc70,ff00ff -348dc74,ff00ff -348dc78,ff00f6 -348dc7c,210000 -348dc84,3b00ae -348dc88,cc00cc -348dc8c,cc00cc -348dc90,cc00cc -348dc94,cc03ec -348dc98,62ff64ff -348dc9c,60ff5cff -348dca0,57ff52ff -348dca4,4dff00ff -348dca8,ec00cc -348dcac,cc00cc -348dcb0,cc00cc -348dcb4,cc00cc -348dcb8,ae003b -348dcd4,5f9e -348dcd8,65ff60ff -348dcdc,5cff57ff -348dce0,52ff4dff -348dce4,47ff00ff -348dce8,9e0000 -348dd14,659e -348dd18,63ff5cff -348dd1c,57ff52ff -348dd20,4dff47ff -348dd24,41ff00ff -348dd28,9e0000 -348dd54,649e -348dd58,61ff58ff -348dd5c,53ff35ff -348dd60,31ff41ff -348dd64,3bff00ff -348dd68,9e0000 -348dd94,609e -348dd98,5eff53ff -348dd9c,4dff00ff -348dda0,ff3bff -348dda4,35ff00ff -348dda8,9e0000 -348ddd4,5d9e -348ddd8,5bff4dff -348dddc,48ff00ff -348dde0,6ff35ff -348dde4,2eff00ff -348dde8,9e0000 -348de14,5a9e -348de18,57ff48ff -348de1c,42ff03ff -348de20,cff2eff -348de24,28ff00ff -348de28,9e0000 -348de54,559e -348de58,53ff42ff -348de5c,3cff2dff -348de60,28ff28ff -348de64,1fff00ff -348de68,9e0000 -348de94,4b91 -348de98,44ff33ff -348de9c,35ff2fff -348dea0,28ff1fff -348dea4,7ff00ff -348dea8,900000 -348ded4,1229 -348ded8,f700ff -348dedc,ff00ff -348dee0,ff00ff -348dee4,ff00f8 -348dee8,2e0000 -348df18,30008c -348df1c,990099 -348df20,990099 -348df24,8c0030 -348df80,f0f0f0f0 -348df84,f0f0f0f0 -348df88,f0f0f0f0 -348df8c,f0f0f0f0 -348df90,f0f0f0f0 -348df94,f0f0f0f0 -348df98,dff0f0f0 -348df9c,f0f0f0f0 -348dfa0,f0f0f0f0 -348dfa4,f0f0f0df -348dfa8,dff0f0f0 -348dfac,f0f0f0f0 -348dfb0,f0f0f0f0 -348dfb4,f0f0f0df -348dfb8,dfcff0f0 -348dfbc,f0f0f0f0 -348dfc0,f0f0f0f0 -348dfc4,f0f0cfcf -348dfc8,cfcff0f0 -348dfcc,f0f0f0f0 -348dfd0,f0f0f0f0 -348dfd4,f0f0cfcf -348dfd8,cfcfcff0 -348dfdc,f0f0f0f0 -348dfe0,f0f0f0f0 -348dfe4,f0cfcfcf -348dfe8,cfcfcff0 -348dfec,f0f0f0f0 -348dff0,f0f0f0f0 -348dff4,f0cfcfcf -348dff8,cfcfcfcf -348dffc,f0f0f0f0 -348e000,f0f0f0f0 -348e004,cfcfcfcf -348e008,cfbfbfbf -348e00c,f0f0f0f0 -348e010,f0f0f0f0 -348e014,bfbfbfbf -348e018,bfbfbfbf -348e01c,f0f0f0f0 -348e020,f0f0f0bf -348e024,bfbfbfbf -348e028,bfbfbfbf -348e02c,bff0f0f0 -348e030,f0f0f0bf -348e034,bfbff0f0 -348e038,f0f0f0f0 -348e03c,f0f0f0f0 -348e040,f0f0f0f0 -348e044,f0f0f0f0 -348e048,f0f0f0f0 -348e04c,f0f0f0f0 -348e050,f0f0f0f0 -348e054,f0f0f0f0 -348e058,f0f0f0f0 -348e05c,f0f0f0f0 -348e060,f0f0f0f0 -348e064,f0f0f0f0 -348e068,f0f0f0f0 -348e06c,f0f0f0f0 -348e070,f0f0f0f0 -348e074,f0f0f0f0 -348e078,f0f0f0f0 -348e07c,f0f0f0f0 -348e080,f0f0f0f0 -348e084,f0f0f0f0 -348e088,f0f0f0f0 -348e08c,f0f0f0f0 -348e090,f0f0f0f0 -348e094,f0f0f0cf -348e098,cff0f0f0 -348e09c,f0f0f0f0 -348e0a0,f0f0f0f0 -348e0a4,f0f0f0cf -348e0a8,cfcff0f0 -348e0ac,f0f0f0f0 -348e0b0,f0f0f0f0 -348e0b4,f0f0bfcf -348e0b8,cfcff0f0 -348e0bc,f0f0f0f0 -348e0c0,f0f0f0f0 -348e0c4,f0f0bfcf -348e0c8,cfcff0f0 -348e0cc,f0f0f0f0 -348e0d0,f0f0f0f0 -348e0d4,f0bfcfbf -348e0d8,bfbfbff0 -348e0dc,f0f0f0f0 -348e0e0,f0f0f0f0 -348e0e4,f0bfbfbf -348e0e8,bfbfbff0 -348e0ec,f0f0f0f0 -348e0f0,f0f0f0f0 -348e0f4,bfbfbfbf -348e0f8,bfbfbfbf -348e0fc,f0f0f0f0 -348e100,f0f0f0f0 -348e104,bfbfbfbf -348e108,bfbfbfbf -348e10c,f0f0f0f0 -348e110,f0f0f0f0 -348e114,bfbfbfbf -348e118,bfbfbfaf -348e11c,f0f0f0f0 -348e120,f0f0f0af -348e124,bfbfbfbf -348e128,afafaff0 -348e12c,f0f0f0f0 -348e130,f0f0f0bf -348e134,bfbfaff0 -348e138,f0f0f0f0 -348e13c,f0f0f0f0 -348e140,f0f0f0f0 -348e144,f0f0f0f0 -348e148,f0f0f0f0 -348e14c,f0f0f0f0 -348e150,f0f0f0f0 -348e154,f0f0f0f0 -348e158,f0f0f0f0 -348e15c,f0f0f0f0 -348e160,f0f0f0f0 -348e164,f0f0f0f0 -348e168,f0f0f0f0 -348e16c,f0f0f0f0 -348e170,f0f0f0f0 -348e174,f0f0f0f0 -348e178,f0f0f0f0 -348e17c,f0f0f0f0 -348e180,f0f0f0f0 -348e184,f0f0f0f0 -348e188,f0f0f0f0 -348e18c,f0f0f0f0 -348e190,f0f0f0f0 -348e194,f0f0f0ef -348e198,eff0f0f0 -348e19c,f0f0f0f0 -348e1a0,f0f0f0f0 -348e1a4,f0f0f0ef -348e1a8,bfbff0f0 -348e1ac,f0f0f0f0 -348e1b0,f0f0f0f0 -348e1b4,f0f0dfdf -348e1b8,bfbff0f0 -348e1bc,f0f0f0f0 -348e1c0,f0f0f0f0 -348e1c4,f0f0dfbf -348e1c8,afaff0f0 -348e1cc,f0f0f0f0 -348e1d0,f0f0f0f0 -348e1d4,f0dfdfaf -348e1d8,afafaff0 -348e1dc,f0f0f0f0 -348e1e0,f0f0f0f0 -348e1e4,f0dfafaf -348e1e8,afafaff0 -348e1ec,f0f0f0f0 -348e1f0,f0f0f0f0 -348e1f4,dfdfafaf -348e1f8,afafaff0 -348e1fc,f0f0f0f0 -348e200,f0f0f0f0 -348e204,dfdfafaf -348e208,afafaf9f -348e20c,f0f0f0f0 -348e210,f0f0f0f0 -348e214,cfafafaf -348e218,afaf9f9f -348e21c,f0f0f0f0 -348e220,f0f0f0cf -348e224,cfafafaf -348e228,9f9ff0f0 -348e22c,f0f0f0f0 -348e230,f0f0f0cf -348e234,afafaf9f -348e238,f0f0f0f0 -348e23c,f0f0f0f0 -348e240,f0f0f0cf -348e244,aff0f0f0 -348e248,f0f0f0f0 -348e24c,f0f0f0f0 -348e250,f0f0f0f0 -348e254,f0f0f0f0 -348e258,f0f0f0f0 -348e25c,f0f0f0f0 -348e260,f0f0f0f0 -348e264,f0f0f0f0 -348e268,f0f0f0f0 -348e26c,f0f0f0f0 -348e270,f0f0f0f0 -348e274,f0f0f0f0 -348e278,f0f0f0f0 -348e27c,f0f0f0f0 -348e280,f0f0f0f0 -348e284,f0f0f0f0 -348e288,f0f0f0f0 -348e28c,f0f0f0f0 -348e290,f0f0f0f0 -348e294,f0f0f0ff -348e298,ff9ff0f0 -348e29c,f0f0f0f0 -348e2a0,f0f0f0f0 -348e2a4,f0f0ffff -348e2a8,ff9ff0f0 -348e2ac,f0f0f0f0 -348e2b0,f0f0f0f0 -348e2b4,f0f0ffff -348e2b8,9f9ff0f0 -348e2bc,f0f0f0f0 -348e2c0,f0f0f0f0 -348e2c4,f0f0ffff -348e2c8,9f9ff0f0 -348e2cc,f0f0f0f0 -348e2d0,f0f0f0f0 -348e2d4,f0efef9f -348e2d8,9f9f9ff0 -348e2dc,f0f0f0f0 -348e2e0,f0f0f0f0 -348e2e4,f0efef9f -348e2e8,9f9f8ff0 -348e2ec,f0f0f0f0 -348e2f0,f0f0f0f0 -348e2f4,f0efef9f -348e2f8,9f8f8ff0 -348e2fc,f0f0f0f0 -348e300,f0f0f0f0 -348e304,efef9f9f -348e308,8f8f8ff0 +348cf5c,db000 +348cf60,dffffb0 +348cf78,cfff40 +348cf7c,7f40 +348cf80,7f40 +348cf84,7f40 +348cf88,7f40 +348cf8c,7f30 +348cf90,75009e00 +348cf94,8d64dc00 +348cf98,2beec500 +348cfb0,5f6009e7 +348cfb4,5f609e70 +348cfb8,5f69e700 +348cfbc,5fbe8000 +348cfc0,5fedb000 +348cfc4,5f87e800 +348cfc8,5f60ae40 +348cfcc,5f601dc0 +348cfd0,5f6006ea +348cfe8,cc00000 +348cfec,cc00000 +348cff0,cc00000 +348cff4,cc00000 +348cff8,cc00000 +348cffc,cc00000 +348d000,cc00000 +348d004,cc00000 +348d008,cfffff7 +348d020,afa00cf8 +348d024,aed02ee8 +348d028,add59be8 +348d02c,adaac8e8 +348d030,ad5de1e8 +348d034,ad0db0e8 +348d038,ad0000e8 +348d03c,ad0000e8 +348d040,ad0000e8 +348d058,5fc008e0 +348d05c,5fe608e0 +348d060,5fcb08e0 +348d064,5f7e48e0 +348d068,5f5ca8e0 +348d06c,5f57e8e0 +348d070,5f50dce0 +348d074,5f509ee0 +348d078,5f502ee0 +348d090,4ceeb20 +348d094,cd56ea0 +348d098,3e800ae0 +348d09c,7f5008f2 +348d0a0,7f4008f4 +348d0a4,7f5008f2 +348d0a8,3e800ae0 +348d0ac,cd56eb0 +348d0b0,4ceeb20 +348d0c8,dffed60 +348d0cc,db05ce2 +348d0d0,db006f6 +348d0d4,db006f6 +348d0d8,db05ce2 +348d0dc,dffed60 +348d0e0,db00000 +348d0e4,db00000 +348d0e8,db00000 +348d100,4ceeb20 +348d104,cd56ea0 +348d108,3e800ae0 +348d10c,7f5008f2 +348d110,7f4008f4 +348d114,7f5008f1 +348d118,3e800ad0 +348d11c,cd56ea0 +348d120,4cefc20 +348d124,ae50 +348d128,c80 +348d138,5ffeeb20 +348d13c,5f717eb0 +348d140,5f700cd0 +348d144,5f716ea0 +348d148,5fffea00 +348d14c,5f72ae40 +348d150,5f700db0 +348d154,5f7008e5 +348d158,5f7000db +348d170,6ceeb30 +348d174,dc45a90 +348d178,4f600000 +348d17c,ec60000 +348d180,5ceeb40 +348d184,6cc0 +348d188,8e0 +348d18c,c735cd0 +348d190,8deec50 +348d1a8,cffffffb +348d1ac,db000 +348d1b0,db000 +348d1b4,db000 +348d1b8,db000 +348d1bc,db000 +348d1c0,db000 +348d1c4,db000 +348d1c8,db000 +348d1e0,4f7009e0 +348d1e4,4f7009e0 +348d1e8,4f7009e0 +348d1ec,4f7009e0 +348d1f0,4f7009e0 +348d1f4,3f7009e0 +348d1f8,2e700ad0 +348d1fc,dc45dc0 +348d200,5ceec40 +348d218,ad0003e8 +348d21c,6f5008e3 +348d220,e900bc0 +348d224,bc00d90 +348d228,8e15e40 +348d22c,2e7ad00 +348d230,cbca00 +348d234,9de600 +348d238,3ed000 +348d250,e80000ad +348d254,da0000cb +348d258,cb0000da +348d25c,ac0ec0e8 +348d260,8d6de1e5 +348d264,6e9bd8e0 +348d268,1ec8acd0 +348d26c,de37ec0 +348d270,cd00ea0 +348d288,6e7007e7 +348d28c,ad21db0 +348d290,2daad20 +348d294,7ee700 +348d298,3ee200 +348d29c,bdda00 +348d2a0,7e67e60 +348d2a4,3ea00bd0 +348d2a8,bd2004e9 +348d2c0,ae2005e8 +348d2c4,2da00cc0 +348d2c8,7e57e50 +348d2cc,ccda00 +348d2d0,4ed200 +348d2d4,db000 +348d2d8,db000 +348d2dc,db000 +348d2e0,db000 +348d2f8,efffff8 +348d2fc,bd3 +348d300,7e70 +348d304,3ea00 +348d308,bd100 +348d30c,8e5000 +348d310,4e90000 +348d314,cc00000 +348d318,1ffffffa +348d328,4ffc00 +348d32c,4f5000 +348d330,4f5000 +348d334,4f5000 +348d338,4f5000 +348d33c,4f5000 +348d340,4f5000 +348d344,4f5000 +348d348,4f5000 +348d34c,4f5000 +348d350,4f5000 +348d354,4ffc00 +348d368,6e500000 +348d36c,cb00000 +348d370,7e30000 +348d374,da0000 +348d378,9e2000 +348d37c,1e9000 +348d380,ad000 +348d384,3e800 +348d388,bc00 +348d38c,4e60 +348d390,bc0 +348d398,dfe000 +348d39c,8e000 +348d3a0,8e000 +348d3a4,8e000 +348d3a8,8e000 +348d3ac,8e000 +348d3b0,8e000 +348d3b4,8e000 +348d3b8,8e000 +348d3bc,8e000 +348d3c0,8e000 +348d3c4,dfe000 +348d3d8,5ed200 +348d3dc,dcdb00 +348d3e0,ad25e80 +348d3e4,7e5007e5 +348d43c,fffffffd +348d444,2ca0000 +348d448,2c9000 +348d488,5ceeb10 +348d48c,b936da0 +348d490,bc0 +348d494,8deffc0 +348d498,3e930bd0 +348d49c,4f827ed0 +348d4a0,aeedbd0 +348d4b0,d900000 +348d4b4,d900000 +348d4b8,d900000 +348d4bc,d900000 +348d4c0,dbdec40 +348d4c4,de65dc0 +348d4c8,db008e0 +348d4cc,da007f2 +348d4d0,db008e0 +348d4d4,de64db0 +348d4d8,dbdec40 +348d4f8,8ded70 +348d4fc,7e936a0 +348d500,cc00000 +348d504,db00000 +348d508,cc00000 +348d50c,7e936a0 +348d510,8ded70 +348d520,bc0 +348d524,bc0 +348d528,bc0 +348d52c,bc0 +348d530,5dedcc0 +348d534,dc48ec0 +348d538,5f600cc0 +348d53c,7f300bc0 +348d540,5f600cc0 +348d544,dc48ec0 +348d548,5dedcc0 +348d568,3beec30 +348d56c,cd54cc0 +348d570,4f6007e0 +348d574,6ffffff3 +348d578,4f500000 +348d57c,cc538c0 +348d580,3beec60 +348d590,5ded0 +348d594,cb200 +348d598,d9000 +348d59c,e8000 +348d5a0,dffffd0 +348d5a4,e8000 +348d5a8,e8000 +348d5ac,e8000 +348d5b0,e8000 +348d5b4,e8000 +348d5b8,e8000 +348d5d8,5dedcc0 +348d5dc,dc48ec0 +348d5e0,5f600cc0 +348d5e4,7f300bc0 +348d5e8,5f600cc0 +348d5ec,dc48ec0 +348d5f0,5dedcb0 +348d5f4,ca0 +348d5f8,9947e60 +348d5fc,4cee900 +348d600,da00000 +348d604,da00000 +348d608,da00000 +348d60c,da00000 +348d610,dbded40 +348d614,de65da0 +348d618,db00bc0 +348d61c,da00bc0 +348d620,da00bc0 +348d624,da00bc0 +348d628,da00bc0 +348d638,bc000 +348d648,9ffc000 +348d64c,bc000 +348d650,bc000 +348d654,bc000 +348d658,bc000 +348d65c,bc000 +348d660,effffe0 +348d670,7e000 +348d680,7ffe000 +348d684,7e000 +348d688,7e000 +348d68c,7e000 +348d690,7e000 +348d694,7e000 +348d698,7e000 +348d69c,7e000 +348d6a0,1bd000 +348d6a4,dfe7000 +348d6a8,bc00000 +348d6ac,bc00000 +348d6b0,bc00000 +348d6b4,bc00000 +348d6b8,bc03dc2 +348d6bc,bc3db00 +348d6c0,bddc000 +348d6c4,bfce500 +348d6c8,bd0cd10 +348d6cc,bc03db0 +348d6d0,bc007e8 +348d6e0,eff4000 +348d6e4,5f4000 +348d6e8,5f4000 +348d6ec,5f4000 +348d6f0,5f4000 +348d6f4,5f4000 +348d6f8,5f4000 +348d6fc,5f4000 +348d700,4f5000 +348d704,ea000 +348d708,8efb0 +348d728,8dddaec0 +348d72c,8e4dc5e4 +348d730,8d0cb0e6 +348d734,8d0ba0e7 +348d738,8d0ba0e7 +348d73c,8d0ba0e7 +348d740,8d0ba0e7 +348d760,dbded40 +348d764,de65da0 +348d768,db00bc0 +348d76c,da00bc0 +348d770,da00bc0 +348d774,da00bc0 +348d778,da00bc0 +348d798,4ceeb20 +348d79c,cd56da0 +348d7a0,1e700ad0 +348d7a4,5f6008e0 +348d7a8,1e700ad0 +348d7ac,cd46db0 +348d7b0,4ceeb20 +348d7d0,dbdec30 +348d7d4,de65db0 +348d7d8,db009e0 +348d7dc,da007e0 +348d7e0,db008e0 +348d7e4,de65db0 +348d7e8,dbeec40 +348d7ec,d900000 +348d7f0,d900000 +348d7f4,d900000 +348d808,4cedcc0 +348d80c,cc47ec0 +348d810,1e700cc0 +348d814,5f600bc0 +348d818,2e700cc0 +348d81c,cc47ec0 +348d820,5cedbc0 +348d824,ac0 +348d828,ac0 +348d82c,ac0 +348d840,ccdef9 +348d844,ce8300 +348d848,cb0000 +348d84c,ca0000 +348d850,ca0000 +348d854,ca0000 +348d858,ca0000 +348d878,4ceea10 +348d87c,bd45b60 +348d880,bd40000 +348d884,3bddb20 +348d888,4da0 +348d88c,b945ea0 +348d890,5ceeb20 +348d8a8,8e0000 +348d8ac,8e0000 +348d8b0,6fffffb0 +348d8b4,8e0000 +348d8b8,8e0000 +348d8bc,8e0000 +348d8c0,8e0000 +348d8c4,6e7000 +348d8c8,befb0 +348d8e8,da00bc0 +348d8ec,da00bc0 +348d8f0,da00bc0 +348d8f4,da00bc0 +348d8f8,da00bc0 +348d8fc,bd47ec0 +348d900,5dedbc0 +348d920,6e3007e3 +348d924,d900bc0 +348d928,ad01e80 +348d92c,5e48e20 +348d930,dacb00 +348d934,9de700 +348d938,3ee000 +348d958,e80000ac +348d95c,ca0000ca +348d960,ac0db0e7 +348d964,6e3dd5e2 +348d968,eabcad0 +348d96c,ce79eb0 +348d970,ae15f80 +348d990,3da00bc0 +348d994,6e69e40 +348d998,9ee700 +348d99c,2ed000 +348d9a0,ccda00 +348d9a4,9e46e70 +348d9a8,6e7009e4 +348d9c8,6e5005e5 +348d9cc,da00bd0 +348d9d0,9e00e90 +348d9d4,3e78e30 +348d9d8,cccc00 +348d9dc,7ee700 +348d9e0,de000 +348d9e4,da000 +348d9e8,8e5000 +348d9ec,dea0000 +348da00,bffffc0 +348da04,5e70 +348da08,3d900 +348da0c,cb000 +348da10,bd2000 +348da14,9e40000 +348da18,dffffc0 +348da28,6dea0 +348da2c,bd300 +348da30,cb000 +348da34,cb000 +348da38,5ea000 +348da3c,bfd2000 +348da40,7e9000 +348da44,db000 +348da48,cb000 +348da4c,cb000 +348da50,bd400 +348da54,5dea0 +348da60,ca000 +348da64,ca000 +348da68,ca000 +348da6c,ca000 +348da70,ca000 +348da74,ca000 +348da78,ca000 +348da7c,ca000 +348da80,ca000 +348da84,ca000 +348da88,ca000 +348da8c,ca000 +348da90,ca000 +348da98,bed3000 +348da9c,4e9000 +348daa0,da000 +348daa4,ca000 +348daa8,bc400 +348daac,5efa0 +348dab0,bd500 +348dab4,cb000 +348dab8,da000 +348dabc,da000 +348dac0,5e8000 +348dac4,bec2000 +348dae8,5ded83a7 +348daec,9838dec3 +348db60,7f024429 +348db64,3c334133 +348db68,41334633 +348db6c,44297f02 +348db9c,5409 +348dba0,4dc548ff +348dba4,41ff43ff +348dba8,47ff49ff +348dbac,43ff20c5 +348dbb0,c0000 +348dbdc,3f75 +348dbe0,49ff33ff +348dbe4,28ff2dff +348dbe8,33ff39ff +348dbec,3cff00ff +348dbf0,770000 +348dc1c,329d +348dc20,37ff1bff +348dc24,21ff28ff +348dc28,2fff35ff +348dc2c,3cff00ff +348dc30,9d0000 +348dc5c,329e +348dc60,35ff21ff +348dc64,28ff06ff +348dc68,9ff3cff +348dc6c,42ff00ff +348dc70,9e0000 +348dc9c,359e +348dca0,39ff27ff +348dca4,2eff00ff +348dca8,2ff42ff +348dcac,48ff00ff +348dcb0,9e0000 +348dcdc,3a9e +348dce0,3eff2eff +348dce4,35ff00ff +348dce8,dff48ff +348dcec,4dff00ff +348dcf0,9e0000 +348dd1c,3e9e +348dd20,42ff35ff +348dd24,3bff1bff +348dd28,27ff4dff +348dd2c,53ff00ff +348dd30,9e0000 +348dd5c,439e +348dd60,47ff3bff +348dd64,41ff47ff +348dd68,4dff52ff +348dd6c,58ff00ff +348dd70,9e0000 +348dd9c,4d9e +348dda0,4dff41ff +348dda4,47ff4dff +348dda8,52ff57ff +348ddac,5cff00ff +348ddb0,9e0000 +348ddcc,3f04474f +348ddd0,3e663e66 +348ddd4,43664666 +348ddd8,48664d66 +348dddc,57665bc5 +348dde0,53ff47ff +348dde4,4dff52ff +348dde8,57ff5cff +348ddec,60ff0eff +348ddf0,19c56666 +348ddf4,66666466 +348ddf8,61665f66 +348ddfc,5c665a66 +348de00,504f3f04 +348de08,6605 +348de0c,4ec34bff +348de10,41ff41ff +348de14,45ff48ff +348de18,4cff4fff +348de1c,55ff59ff +348de20,4fff4dff +348de24,52ff57ff +348de28,5cff60ff +348de2c,64ff61ff +348de30,67ff66ff +348de34,64ff62ff +348de38,60ff5dff +348de3c,5bff57ff +348de40,49ff0ec3 +348de44,50000 +348de48,3958 +348de4c,44ff31ff +348de50,20ff25ff +348de54,2bff31ff +348de58,38ff3eff +348de5c,44ff49ff +348de60,4dff52ff +348de64,57ff5cff +348de68,60ff64ff +348de6c,68ff67ff +348de70,64ff60ff +348de74,5cff58ff +348de78,53ff4eff +348de7c,48ff43ff +348de80,32ff00ff +348de84,580000 +348de88,2f71 +348de8c,36ff1dff +348de90,1fff26ff +348de94,2dff34ff +348de98,3aff41ff +348de9c,47ff4cff +348dea0,52ff57ff +348dea4,5cff60ff +348dea8,64ff68ff +348deac,67ff64ff +348deb0,60ff5bff +348deb4,57ff51ff +348deb8,4cff46ff +348debc,40ff3aff +348dec0,27ff00ff +348dec4,710000 +348dec8,2f71 +348decc,36ff21ff +348ded0,16ff00ff +348ded4,ff00ff +348ded8,2cff47ff +348dedc,4cff52ff +348dee0,57ff5cff +348dee4,60ff64ff +348dee8,67ff67ff +348deec,64ff60ff +348def0,5bff57ff +348def4,52ff0dff +348def8,ff00ff +348defc,aff33ff +348df00,21ff00ff +348df04,710000 +348df08,3371 +348df0c,3aff28ff +348df10,22ff0fff +348df14,13ff19ff +348df18,39ff4cff +348df1c,52ff57ff +348df20,5bff60ff +348df24,64ff67ff +348df28,67ff64ff +348df2c,60ff5cff +348df30,57ff52ff +348df34,4cff1dff +348df38,12ff14ff +348df3c,19ff2dff +348df40,1bff00ff +348df44,710000 +348df48,3871 +348df4c,3dff2fff +348df50,33ff3aff +348df54,40ff46ff +348df58,4cff51ff +348df5c,57ff5bff +348df60,60ff64ff +348df64,67ff68ff +348df68,64ff60ff +348df6c,5cff57ff +348df70,52ff4cff +348df74,47ff41ff +348df78,3aff34ff +348df7c,2dff26ff +348df80,12ff00ff +348df84,710000 +348df88,3569 +348df8c,37ff33ff +348df90,3aff40ff +348df94,46ff4cff +348df98,51ff57ff +348df9c,5bff60ff +348dfa0,64ff67ff +348dfa4,68ff64ff +348dfa8,60ff5cff +348dfac,57ff52ff +348dfb0,4dff47ff +348dfb4,41ff3aff +348dfb8,34ff2dff +348dfbc,26ff1fff +348dfc0,6ff00ff +348dfc4,690000 +348dfc8,1e21 +348dfcc,2f600ff +348dfd0,ff00ff +348dfd4,ff00ff +348dfd8,ff00ff +348dfdc,2ff1eff +348dfe0,60ff68ff +348dfe4,64ff60ff +348dfe8,5cff57ff +348dfec,52ff2cff +348dff0,6ff00ff +348dff4,ff00ff +348dff8,ff00ff +348dffc,ff00ff +348e000,ff00f6 +348e004,210000 +348e00c,3b00ae +348e010,cc00cc +348e014,cc00cc +348e018,cc00cc +348e01c,cc03ec +348e020,62ff64ff +348e024,60ff5cff +348e028,57ff52ff +348e02c,4dff00ff +348e030,ec00cc +348e034,cc00cc +348e038,cc00cc +348e03c,cc00cc +348e040,ae003b +348e05c,5f9e +348e060,65ff60ff +348e064,5cff57ff +348e068,52ff4dff +348e06c,47ff00ff +348e070,9e0000 +348e09c,659e +348e0a0,63ff5cff +348e0a4,57ff52ff +348e0a8,4dff47ff +348e0ac,41ff00ff +348e0b0,9e0000 +348e0dc,649e +348e0e0,61ff58ff +348e0e4,53ff35ff +348e0e8,31ff41ff +348e0ec,3bff00ff +348e0f0,9e0000 +348e11c,609e +348e120,5eff53ff +348e124,4dff00ff +348e128,ff3bff +348e12c,35ff00ff +348e130,9e0000 +348e15c,5d9e +348e160,5bff4dff +348e164,48ff00ff +348e168,6ff35ff +348e16c,2eff00ff +348e170,9e0000 +348e19c,5a9e +348e1a0,57ff48ff +348e1a4,42ff03ff +348e1a8,cff2eff +348e1ac,28ff00ff +348e1b0,9e0000 +348e1dc,559e +348e1e0,53ff42ff +348e1e4,3cff2dff +348e1e8,28ff28ff +348e1ec,1fff00ff +348e1f0,9e0000 +348e21c,4b91 +348e220,44ff33ff +348e224,35ff2fff +348e228,28ff1fff +348e22c,7ff00ff +348e230,900000 +348e25c,1229 +348e260,f700ff +348e264,ff00ff +348e268,ff00ff +348e26c,ff00f8 +348e270,2e0000 +348e2a0,30008c +348e2a4,990099 +348e2a8,990099 +348e2ac,8c0030 +348e308,f0f0f0f0 348e30c,f0f0f0f0 348e310,f0f0f0f0 -348e314,efef9f8f -348e318,8f8f8ff0 +348e314,f0f0f0f0 +348e318,f0f0f0f0 348e31c,f0f0f0f0 -348e320,f0f0f0ef -348e324,efef8f8f -348e328,8f8ff0f0 -348e32c,f0f0f0f0 -348e330,f0f0f0ef -348e334,ef8f8f8f +348e320,dff0f0f0 +348e324,f0f0f0f0 +348e328,f0f0f0f0 +348e32c,f0f0f0df +348e330,dff0f0f0 +348e334,f0f0f0f0 348e338,f0f0f0f0 -348e33c,f0f0f0f0 -348e340,f0f0f0ef -348e344,ef8f8ff0 +348e33c,f0f0f0df +348e340,dfcff0f0 +348e344,f0f0f0f0 348e348,f0f0f0f0 -348e34c,f0f0f0f0 -348e350,f0f0f0f0 -348e354,8ff0f0f0 +348e34c,f0f0cfcf +348e350,cfcff0f0 +348e354,f0f0f0f0 348e358,f0f0f0f0 -348e35c,f0f0f0f0 -348e360,f0f0f0f0 +348e35c,f0f0cfcf +348e360,cfcfcff0 348e364,f0f0f0f0 348e368,f0f0f0f0 -348e36c,f0f0f0f0 -348e370,f0f0f0f0 +348e36c,f0cfcfcf +348e370,cfcfcff0 348e374,f0f0f0f0 348e378,f0f0f0f0 -348e37c,f0f0f0f0 -348e380,f0f0f0f0 +348e37c,f0cfcfcf +348e380,cfcfcfcf 348e384,f0f0f0f0 348e388,f0f0f0f0 -348e38c,f0f0f0f0 -348e390,f0f0f0f0 -348e394,f0f0f0ff -348e398,ff7ff0f0 -348e39c,f0f0f0f0 -348e3a0,f0f0f0f0 -348e3a4,f0f0ffff -348e3a8,ff7ff0f0 -348e3ac,f0f0f0f0 -348e3b0,f0f0f0f0 -348e3b4,f0f0ffff -348e3b8,ff7ff0f0 -348e3bc,f0f0f0f0 +348e38c,cfcfcfcf +348e390,cfbfbfbf +348e394,f0f0f0f0 +348e398,f0f0f0f0 +348e39c,bfbfbfbf +348e3a0,bfbfbfbf +348e3a4,f0f0f0f0 +348e3a8,f0f0f0bf +348e3ac,bfbfbfbf +348e3b0,bfbfbfbf +348e3b4,bff0f0f0 +348e3b8,f0f0f0bf +348e3bc,bfbff0f0 348e3c0,f0f0f0f0 -348e3c4,f0f0ffff -348e3c8,7f7ff0f0 +348e3c4,f0f0f0f0 +348e3c8,f0f0f0f0 348e3cc,f0f0f0f0 348e3d0,f0f0f0f0 -348e3d4,f0ffffff -348e3d8,7f7ff0f0 +348e3d4,f0f0f0f0 +348e3d8,f0f0f0f0 348e3dc,f0f0f0f0 348e3e0,f0f0f0f0 -348e3e4,f0ffffff -348e3e8,7f7ff0f0 +348e3e4,f0f0f0f0 +348e3e8,f0f0f0f0 348e3ec,f0f0f0f0 348e3f0,f0f0f0f0 -348e3f4,f0ffff7f -348e3f8,7f7f7ff0 +348e3f4,f0f0f0f0 +348e3f8,f0f0f0f0 348e3fc,f0f0f0f0 348e400,f0f0f0f0 -348e404,ffffff7f -348e408,7f7f6ff0 +348e404,f0f0f0f0 +348e408,f0f0f0f0 348e40c,f0f0f0f0 348e410,f0f0f0f0 -348e414,ffffff7f -348e418,7f6f6ff0 -348e41c,f0f0f0f0 -348e420,f0f0f0f0 -348e424,ffffff7f -348e428,7f6ff0f0 -348e42c,f0f0f0f0 -348e430,f0f0f0f0 -348e434,ffff7f7f +348e414,f0f0f0f0 +348e418,f0f0f0f0 +348e41c,f0f0f0cf +348e420,cff0f0f0 +348e424,f0f0f0f0 +348e428,f0f0f0f0 +348e42c,f0f0f0cf +348e430,cfcff0f0 +348e434,f0f0f0f0 348e438,f0f0f0f0 -348e43c,f0f0f0f0 -348e440,f0f0f0ff -348e444,ffff7ff0 +348e43c,f0f0bfcf +348e440,cfcff0f0 +348e444,f0f0f0f0 348e448,f0f0f0f0 -348e44c,f0f0f0f0 -348e450,f0f0f0f0 -348e454,fffff0f0 +348e44c,f0f0bfcf +348e450,cfcff0f0 +348e454,f0f0f0f0 348e458,f0f0f0f0 -348e45c,f0f0f0f0 -348e460,f0f0f0f0 +348e45c,f0bfcfbf +348e460,bfbfbff0 348e464,f0f0f0f0 348e468,f0f0f0f0 -348e46c,f0f0f0f0 -348e470,f0f0f0f0 +348e46c,f0bfbfbf +348e470,bfbfbff0 348e474,f0f0f0f0 348e478,f0f0f0f0 -348e47c,f0f0f0f0 -348e480,f0f0f0f0 +348e47c,bfbfbfbf +348e480,bfbfbfbf 348e484,f0f0f0f0 348e488,f0f0f0f0 -348e48c,f0f0f0f0 -348e490,f0f0f0f0 -348e494,f0f0ffff -348e498,ff5ff0f0 -348e49c,f0f0f0f0 -348e4a0,f0f0f0f0 -348e4a4,f0f0ffff -348e4a8,ff5ff0f0 -348e4ac,f0f0f0f0 -348e4b0,f0f0f0f0 -348e4b4,f0f0ffff -348e4b8,ff5ff0f0 -348e4bc,f0f0f0f0 +348e48c,bfbfbfbf +348e490,bfbfbfbf +348e494,f0f0f0f0 +348e498,f0f0f0f0 +348e49c,bfbfbfbf +348e4a0,bfbfbfaf +348e4a4,f0f0f0f0 +348e4a8,f0f0f0af +348e4ac,bfbfbfbf +348e4b0,afafaff0 +348e4b4,f0f0f0f0 +348e4b8,f0f0f0bf +348e4bc,bfbfaff0 348e4c0,f0f0f0f0 -348e4c4,f0f0ffff -348e4c8,ff5ff0f0 +348e4c4,f0f0f0f0 +348e4c8,f0f0f0f0 348e4cc,f0f0f0f0 348e4d0,f0f0f0f0 -348e4d4,f0f0ffff -348e4d8,ff5ff0f0 +348e4d4,f0f0f0f0 +348e4d8,f0f0f0f0 348e4dc,f0f0f0f0 348e4e0,f0f0f0f0 -348e4e4,f0ffffff -348e4e8,5f5ff0f0 +348e4e4,f0f0f0f0 +348e4e8,f0f0f0f0 348e4ec,f0f0f0f0 348e4f0,f0f0f0f0 -348e4f4,f0ffffff -348e4f8,5f5ff0f0 +348e4f4,f0f0f0f0 +348e4f8,f0f0f0f0 348e4fc,f0f0f0f0 348e500,f0f0f0f0 -348e504,f0ffffff -348e508,5f5ff0f0 +348e504,f0f0f0f0 +348e508,f0f0f0f0 348e50c,f0f0f0f0 348e510,f0f0f0f0 -348e514,f0ffffff -348e518,5f5ff0f0 -348e51c,f0f0f0f0 -348e520,f0f0f0f0 -348e524,ffffffff -348e528,5ff0f0f0 -348e52c,f0f0f0f0 -348e530,f0f0f0f0 -348e534,ffffff5f -348e538,5ff0f0f0 -348e53c,f0f0f0f0 -348e540,f0f0f0f0 -348e544,ffffff5f +348e514,f0f0f0f0 +348e518,f0f0f0f0 +348e51c,f0f0f0ef +348e520,eff0f0f0 +348e524,f0f0f0f0 +348e528,f0f0f0f0 +348e52c,f0f0f0ef +348e530,bfbff0f0 +348e534,f0f0f0f0 +348e538,f0f0f0f0 +348e53c,f0f0dfdf +348e540,bfbff0f0 +348e544,f0f0f0f0 348e548,f0f0f0f0 -348e54c,f0f0f0f0 -348e550,f0f0f0f0 -348e554,ffffff5f +348e54c,f0f0dfbf +348e550,afaff0f0 +348e554,f0f0f0f0 348e558,f0f0f0f0 -348e55c,f0f0f0f0 -348e560,f0f0f0f0 -348e564,f0f0fff0 +348e55c,f0dfdfaf +348e560,afafaff0 +348e564,f0f0f0f0 348e568,f0f0f0f0 -348e56c,f0f0f0f0 -348e570,f0f0f0f0 +348e56c,f0dfafaf +348e570,afafaff0 348e574,f0f0f0f0 348e578,f0f0f0f0 -348e57c,f0f0f0f0 -348e580,f0f0f0f0 +348e57c,dfdfafaf +348e580,afafaff0 348e584,f0f0f0f0 348e588,f0f0f0f0 -348e58c,f0f0f0f0 -348e590,f0f0f0f0 -348e594,f0f0ffff -348e598,fffff0f0 -348e59c,f0f0f0f0 -348e5a0,f0f0f0f0 -348e5a4,f0f0ffff -348e5a8,fffff0f0 -348e5ac,f0f0f0f0 -348e5b0,f0f0f0f0 -348e5b4,f0f0ffff -348e5b8,ff3ff0f0 -348e5bc,f0f0f0f0 +348e58c,dfdfafaf +348e590,afafaf9f +348e594,f0f0f0f0 +348e598,f0f0f0f0 +348e59c,cfafafaf +348e5a0,afaf9f9f +348e5a4,f0f0f0f0 +348e5a8,f0f0f0cf +348e5ac,cfafafaf +348e5b0,9f9ff0f0 +348e5b4,f0f0f0f0 +348e5b8,f0f0f0cf +348e5bc,afafaf9f 348e5c0,f0f0f0f0 -348e5c4,f0f0ffff -348e5c8,ff3ff0f0 -348e5cc,f0f0f0f0 +348e5c4,f0f0f0f0 +348e5c8,f0f0f0cf +348e5cc,aff0f0f0 348e5d0,f0f0f0f0 -348e5d4,f0f0ffff -348e5d8,ff3ff0f0 +348e5d4,f0f0f0f0 +348e5d8,f0f0f0f0 348e5dc,f0f0f0f0 348e5e0,f0f0f0f0 -348e5e4,f0f0ffff -348e5e8,ff3ff0f0 +348e5e4,f0f0f0f0 +348e5e8,f0f0f0f0 348e5ec,f0f0f0f0 348e5f0,f0f0f0f0 -348e5f4,f0f0ffff -348e5f8,ff3ff0f0 +348e5f4,f0f0f0f0 +348e5f8,f0f0f0f0 348e5fc,f0f0f0f0 348e600,f0f0f0f0 -348e604,f0ffffff -348e608,ff3ff0f0 +348e604,f0f0f0f0 +348e608,f0f0f0f0 348e60c,f0f0f0f0 348e610,f0f0f0f0 -348e614,f0ffffff -348e618,fff0f0f0 -348e61c,f0f0f0f0 -348e620,f0f0f0f0 -348e624,f0ffffff -348e628,fff0f0f0 -348e62c,f0f0f0f0 -348e630,f0f0f0f0 -348e634,f0ffffff -348e638,fff0f0f0 -348e63c,f0f0f0f0 -348e640,f0f0f0f0 -348e644,f0ffffff -348e648,fff0f0f0 -348e64c,f0f0f0f0 -348e650,f0f0f0f0 -348e654,f0ffffff -348e658,fff0f0f0 -348e65c,f0f0f0f0 -348e660,f0f0f0f0 -348e664,f0f0f0ff +348e614,f0f0f0f0 +348e618,f0f0f0f0 +348e61c,f0f0f0ff +348e620,ff9ff0f0 +348e624,f0f0f0f0 +348e628,f0f0f0f0 +348e62c,f0f0ffff +348e630,ff9ff0f0 +348e634,f0f0f0f0 +348e638,f0f0f0f0 +348e63c,f0f0ffff +348e640,9f9ff0f0 +348e644,f0f0f0f0 +348e648,f0f0f0f0 +348e64c,f0f0ffff +348e650,9f9ff0f0 +348e654,f0f0f0f0 +348e658,f0f0f0f0 +348e65c,f0efef9f +348e660,9f9f9ff0 +348e664,f0f0f0f0 348e668,f0f0f0f0 -348e66c,f0f0f0f0 -348e670,f0f0f0f0 +348e66c,f0efef9f +348e670,9f9f8ff0 348e674,f0f0f0f0 348e678,f0f0f0f0 -348e67c,f0f0f0f0 -348e680,f0f0f0f0 +348e67c,f0efef9f +348e680,9f8f8ff0 348e684,f0f0f0f0 348e688,f0f0f0f0 -348e68c,f0f0f0f0 -348e690,f0f0f0f0 -348e694,f0f0ffff -348e698,fffff0f0 -348e69c,f0f0f0f0 -348e6a0,f0f0f0f0 -348e6a4,f0f0ffff -348e6a8,fffff0f0 -348e6ac,f0f0f0f0 -348e6b0,f0f0f0f0 -348e6b4,f0f0ffff -348e6b8,fffff0f0 -348e6bc,f0f0f0f0 +348e68c,efef9f9f +348e690,8f8f8ff0 +348e694,f0f0f0f0 +348e698,f0f0f0f0 +348e69c,efef9f8f +348e6a0,8f8f8ff0 +348e6a4,f0f0f0f0 +348e6a8,f0f0f0ef +348e6ac,efef8f8f +348e6b0,8f8ff0f0 +348e6b4,f0f0f0f0 +348e6b8,f0f0f0ef +348e6bc,ef8f8f8f 348e6c0,f0f0f0f0 -348e6c4,f0f0ffff -348e6c8,fffff0f0 -348e6cc,f0f0f0f0 +348e6c4,f0f0f0f0 +348e6c8,f0f0f0ef +348e6cc,ef8f8ff0 348e6d0,f0f0f0f0 -348e6d4,f0f0ffff -348e6d8,fffff0f0 -348e6dc,f0f0f0f0 +348e6d4,f0f0f0f0 +348e6d8,f0f0f0f0 +348e6dc,8ff0f0f0 348e6e0,f0f0f0f0 -348e6e4,f0f0ffff -348e6e8,fffff0f0 +348e6e4,f0f0f0f0 +348e6e8,f0f0f0f0 348e6ec,f0f0f0f0 348e6f0,f0f0f0f0 -348e6f4,f0f0ffff -348e6f8,fffff0f0 +348e6f4,f0f0f0f0 +348e6f8,f0f0f0f0 348e6fc,f0f0f0f0 348e700,f0f0f0f0 -348e704,f0f0ffff -348e708,fffff0f0 +348e704,f0f0f0f0 +348e708,f0f0f0f0 348e70c,f0f0f0f0 348e710,f0f0f0f0 -348e714,f0f0ffff -348e718,fffff0f0 -348e71c,f0f0f0f0 -348e720,f0f0f0f0 -348e724,f0f0ffff -348e728,fffff0f0 -348e72c,f0f0f0f0 -348e730,f0f0f0f0 -348e734,f0f0ffff -348e738,fffff0f0 -348e73c,f0f0f0f0 -348e740,f0f0f0f0 -348e744,f0f0ffff -348e748,fffff0f0 -348e74c,f0f0f0f0 -348e750,f0f0f0f0 -348e754,f0f0ffff -348e758,fffff0f0 -348e75c,f0f0f0f0 -348e760,f0f0f0f0 -348e764,f0f0ffff -348e768,fffff0f0 -348e76c,f0f0f0f0 -348e770,f0f0f0f0 +348e714,f0f0f0f0 +348e718,f0f0f0f0 +348e71c,f0f0f0ff +348e720,ff7ff0f0 +348e724,f0f0f0f0 +348e728,f0f0f0f0 +348e72c,f0f0ffff +348e730,ff7ff0f0 +348e734,f0f0f0f0 +348e738,f0f0f0f0 +348e73c,f0f0ffff +348e740,ff7ff0f0 +348e744,f0f0f0f0 +348e748,f0f0f0f0 +348e74c,f0f0ffff +348e750,7f7ff0f0 +348e754,f0f0f0f0 +348e758,f0f0f0f0 +348e75c,f0ffffff +348e760,7f7ff0f0 +348e764,f0f0f0f0 +348e768,f0f0f0f0 +348e76c,f0ffffff +348e770,7f7ff0f0 348e774,f0f0f0f0 348e778,f0f0f0f0 -348e77c,f0f0f0f0 -348e780,f0f0f0f0 +348e77c,f0ffff7f +348e780,7f7f7ff0 348e784,f0f0f0f0 348e788,f0f0f0f0 -348e78c,f0f0f0f0 -348e790,f0f0f0f0 -348e794,f0f0ffff -348e798,fffff0f0 -348e79c,f0f0f0f0 -348e7a0,f0f0f0f0 -348e7a4,f0f0ffff -348e7a8,fffff0f0 -348e7ac,f0f0f0f0 -348e7b0,f0f0f0f0 -348e7b4,f0f03fff -348e7b8,fffff0f0 -348e7bc,f0f0f0f0 +348e78c,ffffff7f +348e790,7f7f6ff0 +348e794,f0f0f0f0 +348e798,f0f0f0f0 +348e79c,ffffff7f +348e7a0,7f6f6ff0 +348e7a4,f0f0f0f0 +348e7a8,f0f0f0f0 +348e7ac,ffffff7f +348e7b0,7f6ff0f0 +348e7b4,f0f0f0f0 +348e7b8,f0f0f0f0 +348e7bc,ffff7f7f 348e7c0,f0f0f0f0 -348e7c4,f0f03fff -348e7c8,fffff0f0 -348e7cc,f0f0f0f0 +348e7c4,f0f0f0f0 +348e7c8,f0f0f0ff +348e7cc,ffff7ff0 348e7d0,f0f0f0f0 -348e7d4,f0f03fff -348e7d8,fffff0f0 -348e7dc,f0f0f0f0 +348e7d4,f0f0f0f0 +348e7d8,f0f0f0f0 +348e7dc,fffff0f0 348e7e0,f0f0f0f0 -348e7e4,f0f03fff -348e7e8,fffff0f0 +348e7e4,f0f0f0f0 +348e7e8,f0f0f0f0 348e7ec,f0f0f0f0 348e7f0,f0f0f0f0 -348e7f4,f0f03fff -348e7f8,fffff0f0 +348e7f4,f0f0f0f0 +348e7f8,f0f0f0f0 348e7fc,f0f0f0f0 348e800,f0f0f0f0 -348e804,f0f03fff -348e808,fffffff0 +348e804,f0f0f0f0 +348e808,f0f0f0f0 348e80c,f0f0f0f0 348e810,f0f0f0f0 -348e814,f0f0f0ff -348e818,fffffff0 -348e81c,f0f0f0f0 -348e820,f0f0f0f0 -348e824,f0f0f0ff -348e828,fffffff0 -348e82c,f0f0f0f0 -348e830,f0f0f0f0 -348e834,f0f0f0ff -348e838,fffffff0 -348e83c,f0f0f0f0 -348e840,f0f0f0f0 -348e844,f0f0f0ff -348e848,fffffff0 -348e84c,f0f0f0f0 -348e850,f0f0f0f0 -348e854,f0f0f0ff -348e858,fffffff0 -348e85c,f0f0f0f0 -348e860,f0f0f0f0 +348e814,f0f0f0f0 +348e818,f0f0f0f0 +348e81c,f0f0ffff +348e820,ff5ff0f0 +348e824,f0f0f0f0 +348e828,f0f0f0f0 +348e82c,f0f0ffff +348e830,ff5ff0f0 +348e834,f0f0f0f0 +348e838,f0f0f0f0 +348e83c,f0f0ffff +348e840,ff5ff0f0 +348e844,f0f0f0f0 +348e848,f0f0f0f0 +348e84c,f0f0ffff +348e850,ff5ff0f0 +348e854,f0f0f0f0 +348e858,f0f0f0f0 +348e85c,f0f0ffff +348e860,ff5ff0f0 348e864,f0f0f0f0 -348e868,fff0f0f0 -348e86c,f0f0f0f0 -348e870,f0f0f0f0 +348e868,f0f0f0f0 +348e86c,f0ffffff +348e870,5f5ff0f0 348e874,f0f0f0f0 348e878,f0f0f0f0 -348e87c,f0f0f0f0 -348e880,f0f0f0f0 +348e87c,f0ffffff +348e880,5f5ff0f0 348e884,f0f0f0f0 348e888,f0f0f0f0 -348e88c,f0f0f0f0 -348e890,f0f0f0f0 -348e894,f0f05fff -348e898,fffff0f0 -348e89c,f0f0f0f0 -348e8a0,f0f0f0f0 -348e8a4,f0f05fff -348e8a8,fffff0f0 -348e8ac,f0f0f0f0 -348e8b0,f0f0f0f0 -348e8b4,f0f05fff -348e8b8,fffff0f0 -348e8bc,f0f0f0f0 -348e8c0,f0f0f0f0 -348e8c4,f0f05fff -348e8c8,fffff0f0 -348e8cc,f0f0f0f0 +348e88c,f0ffffff +348e890,5f5ff0f0 +348e894,f0f0f0f0 +348e898,f0f0f0f0 +348e89c,f0ffffff +348e8a0,5f5ff0f0 +348e8a4,f0f0f0f0 +348e8a8,f0f0f0f0 +348e8ac,ffffffff +348e8b0,5ff0f0f0 +348e8b4,f0f0f0f0 +348e8b8,f0f0f0f0 +348e8bc,ffffff5f +348e8c0,5ff0f0f0 +348e8c4,f0f0f0f0 +348e8c8,f0f0f0f0 +348e8cc,ffffff5f 348e8d0,f0f0f0f0 -348e8d4,f0f05fff -348e8d8,fffff0f0 -348e8dc,f0f0f0f0 +348e8d4,f0f0f0f0 +348e8d8,f0f0f0f0 +348e8dc,ffffff5f 348e8e0,f0f0f0f0 -348e8e4,f0f05f5f -348e8e8,fffffff0 -348e8ec,f0f0f0f0 +348e8e4,f0f0f0f0 +348e8e8,f0f0f0f0 +348e8ec,f0f0fff0 348e8f0,f0f0f0f0 -348e8f4,f0f05f5f -348e8f8,fffffff0 +348e8f4,f0f0f0f0 +348e8f8,f0f0f0f0 348e8fc,f0f0f0f0 348e900,f0f0f0f0 -348e904,f0f05f5f -348e908,fffffff0 +348e904,f0f0f0f0 +348e908,f0f0f0f0 348e90c,f0f0f0f0 348e910,f0f0f0f0 -348e914,f0f05f5f -348e918,fffffff0 -348e91c,f0f0f0f0 -348e920,f0f0f0f0 -348e924,f0f0f05f -348e928,ffffffff -348e92c,f0f0f0f0 -348e930,f0f0f0f0 -348e934,f0f0f05f -348e938,5fffffff -348e93c,f0f0f0f0 -348e940,f0f0f0f0 +348e914,f0f0f0f0 +348e918,f0f0f0f0 +348e91c,f0f0ffff +348e920,fffff0f0 +348e924,f0f0f0f0 +348e928,f0f0f0f0 +348e92c,f0f0ffff +348e930,fffff0f0 +348e934,f0f0f0f0 +348e938,f0f0f0f0 +348e93c,f0f0ffff +348e940,ff3ff0f0 348e944,f0f0f0f0 -348e948,5fffffff -348e94c,f0f0f0f0 -348e950,f0f0f0f0 +348e948,f0f0f0f0 +348e94c,f0f0ffff +348e950,ff3ff0f0 348e954,f0f0f0f0 -348e958,5fffffff -348e95c,f0f0f0f0 -348e960,f0f0f0f0 +348e958,f0f0f0f0 +348e95c,f0f0ffff +348e960,ff3ff0f0 348e964,f0f0f0f0 -348e968,f0fff0f0 -348e96c,f0f0f0f0 -348e970,f0f0f0f0 +348e968,f0f0f0f0 +348e96c,f0f0ffff +348e970,ff3ff0f0 348e974,f0f0f0f0 348e978,f0f0f0f0 -348e97c,f0f0f0f0 -348e980,f0f0f0f0 +348e97c,f0f0ffff +348e980,ff3ff0f0 348e984,f0f0f0f0 348e988,f0f0f0f0 -348e98c,f0f0f0f0 -348e990,f0f0f0f0 -348e994,f0f07fff -348e998,fff0f0f0 -348e99c,f0f0f0f0 -348e9a0,f0f0f0f0 -348e9a4,f0f07fff -348e9a8,fffff0f0 -348e9ac,f0f0f0f0 -348e9b0,f0f0f0f0 -348e9b4,f0f07fff -348e9b8,fffff0f0 -348e9bc,f0f0f0f0 -348e9c0,f0f0f0f0 -348e9c4,f0f07f7f -348e9c8,fffff0f0 -348e9cc,f0f0f0f0 -348e9d0,f0f0f0f0 -348e9d4,f0f07f7f -348e9d8,fffffff0 -348e9dc,f0f0f0f0 -348e9e0,f0f0f0f0 -348e9e4,f0f07f7f -348e9e8,fffffff0 -348e9ec,f0f0f0f0 +348e98c,f0ffffff +348e990,ff3ff0f0 +348e994,f0f0f0f0 +348e998,f0f0f0f0 +348e99c,f0ffffff +348e9a0,fff0f0f0 +348e9a4,f0f0f0f0 +348e9a8,f0f0f0f0 +348e9ac,f0ffffff +348e9b0,fff0f0f0 +348e9b4,f0f0f0f0 +348e9b8,f0f0f0f0 +348e9bc,f0ffffff +348e9c0,fff0f0f0 +348e9c4,f0f0f0f0 +348e9c8,f0f0f0f0 +348e9cc,f0ffffff +348e9d0,fff0f0f0 +348e9d4,f0f0f0f0 +348e9d8,f0f0f0f0 +348e9dc,f0ffffff +348e9e0,fff0f0f0 +348e9e4,f0f0f0f0 +348e9e8,f0f0f0f0 +348e9ec,f0f0f0ff 348e9f0,f0f0f0f0 -348e9f4,f07f7f7f -348e9f8,7ffffff0 +348e9f4,f0f0f0f0 +348e9f8,f0f0f0f0 348e9fc,f0f0f0f0 348ea00,f0f0f0f0 -348ea04,f06f7f7f -348ea08,7fffffff +348ea04,f0f0f0f0 +348ea08,f0f0f0f0 348ea0c,f0f0f0f0 348ea10,f0f0f0f0 -348ea14,f06f6f7f -348ea18,7fffffff -348ea1c,f0f0f0f0 -348ea20,f0f0f0f0 -348ea24,f0f06f7f -348ea28,7fffffff -348ea2c,f0f0f0f0 -348ea30,f0f0f0f0 +348ea14,f0f0f0f0 +348ea18,f0f0f0f0 +348ea1c,f0f0ffff +348ea20,fffff0f0 +348ea24,f0f0f0f0 +348ea28,f0f0f0f0 +348ea2c,f0f0ffff +348ea30,fffff0f0 348ea34,f0f0f0f0 -348ea38,7f7fffff -348ea3c,f0f0f0f0 -348ea40,f0f0f0f0 +348ea38,f0f0f0f0 +348ea3c,f0f0ffff +348ea40,fffff0f0 348ea44,f0f0f0f0 -348ea48,f07fffff -348ea4c,fff0f0f0 -348ea50,f0f0f0f0 +348ea48,f0f0f0f0 +348ea4c,f0f0ffff +348ea50,fffff0f0 348ea54,f0f0f0f0 -348ea58,f0f0ffff -348ea5c,f0f0f0f0 -348ea60,f0f0f0f0 +348ea58,f0f0f0f0 +348ea5c,f0f0ffff +348ea60,fffff0f0 348ea64,f0f0f0f0 348ea68,f0f0f0f0 -348ea6c,f0f0f0f0 -348ea70,f0f0f0f0 +348ea6c,f0f0ffff +348ea70,fffff0f0 348ea74,f0f0f0f0 348ea78,f0f0f0f0 -348ea7c,f0f0f0f0 -348ea80,f0f0f0f0 +348ea7c,f0f0ffff +348ea80,fffff0f0 348ea84,f0f0f0f0 348ea88,f0f0f0f0 -348ea8c,f0f0f0f0 -348ea90,f0f0f0f0 -348ea94,f0f09fff -348ea98,fff0f0f0 -348ea9c,f0f0f0f0 -348eaa0,f0f0f0f0 -348eaa4,f0f09fff -348eaa8,fffff0f0 -348eaac,f0f0f0f0 -348eab0,f0f0f0f0 -348eab4,f0f09f9f -348eab8,fffff0f0 -348eabc,f0f0f0f0 -348eac0,f0f0f0f0 -348eac4,f0f09f9f -348eac8,fffff0f0 -348eacc,f0f0f0f0 -348ead0,f0f0f0f0 -348ead4,f09f9f9f -348ead8,9fffeff0 -348eadc,f0f0f0f0 -348eae0,f0f0f0f0 -348eae4,f08f9f9f -348eae8,9fefeff0 -348eaec,f0f0f0f0 -348eaf0,f0f0f0f0 -348eaf4,f08f8f9f -348eaf8,9fefeff0 +348ea8c,f0f0ffff +348ea90,fffff0f0 +348ea94,f0f0f0f0 +348ea98,f0f0f0f0 +348ea9c,f0f0ffff +348eaa0,fffff0f0 +348eaa4,f0f0f0f0 +348eaa8,f0f0f0f0 +348eaac,f0f0ffff +348eab0,fffff0f0 +348eab4,f0f0f0f0 +348eab8,f0f0f0f0 +348eabc,f0f0ffff +348eac0,fffff0f0 +348eac4,f0f0f0f0 +348eac8,f0f0f0f0 +348eacc,f0f0ffff +348ead0,fffff0f0 +348ead4,f0f0f0f0 +348ead8,f0f0f0f0 +348eadc,f0f0ffff +348eae0,fffff0f0 +348eae4,f0f0f0f0 +348eae8,f0f0f0f0 +348eaec,f0f0ffff +348eaf0,fffff0f0 +348eaf4,f0f0f0f0 +348eaf8,f0f0f0f0 348eafc,f0f0f0f0 348eb00,f0f0f0f0 -348eb04,f08f8f8f -348eb08,9f9fefef +348eb04,f0f0f0f0 +348eb08,f0f0f0f0 348eb0c,f0f0f0f0 348eb10,f0f0f0f0 -348eb14,f08f8f8f -348eb18,8f9fefef -348eb1c,f0f0f0f0 -348eb20,f0f0f0f0 -348eb24,f0f08f8f -348eb28,8f8fefef -348eb2c,eff0f0f0 -348eb30,f0f0f0f0 +348eb14,f0f0f0f0 +348eb18,f0f0f0f0 +348eb1c,f0f0ffff +348eb20,fffff0f0 +348eb24,f0f0f0f0 +348eb28,f0f0f0f0 +348eb2c,f0f0ffff +348eb30,fffff0f0 348eb34,f0f0f0f0 -348eb38,8f8f8fef -348eb3c,eff0f0f0 -348eb40,f0f0f0f0 +348eb38,f0f0f0f0 +348eb3c,f0f03fff +348eb40,fffff0f0 348eb44,f0f0f0f0 -348eb48,f08f8fef -348eb4c,eff0f0f0 -348eb50,f0f0f0f0 +348eb48,f0f0f0f0 +348eb4c,f0f03fff +348eb50,fffff0f0 348eb54,f0f0f0f0 -348eb58,f0f0f08f -348eb5c,f0f0f0f0 -348eb60,f0f0f0f0 +348eb58,f0f0f0f0 +348eb5c,f0f03fff +348eb60,fffff0f0 348eb64,f0f0f0f0 348eb68,f0f0f0f0 -348eb6c,f0f0f0f0 -348eb70,f0f0f0f0 +348eb6c,f0f03fff +348eb70,fffff0f0 348eb74,f0f0f0f0 348eb78,f0f0f0f0 -348eb7c,f0f0f0f0 -348eb80,f0f0f0f0 +348eb7c,f0f03fff +348eb80,fffff0f0 348eb84,f0f0f0f0 348eb88,f0f0f0f0 -348eb8c,f0f0f0f0 -348eb90,f0f0f0f0 -348eb94,f0f0f0ef -348eb98,eff0f0f0 -348eb9c,f0f0f0f0 -348eba0,f0f0f0f0 -348eba4,f0f0bfbf -348eba8,eff0f0f0 -348ebac,f0f0f0f0 -348ebb0,f0f0f0f0 -348ebb4,f0f0bfbf -348ebb8,dfdff0f0 -348ebbc,f0f0f0f0 -348ebc0,f0f0f0f0 -348ebc4,f0f0afbf -348ebc8,bfdff0f0 -348ebcc,f0f0f0f0 -348ebd0,f0f0f0f0 -348ebd4,f0afafaf -348ebd8,afdfdff0 -348ebdc,f0f0f0f0 -348ebe0,f0f0f0f0 -348ebe4,f0afafaf -348ebe8,afafdff0 +348eb8c,f0f03fff +348eb90,fffffff0 +348eb94,f0f0f0f0 +348eb98,f0f0f0f0 +348eb9c,f0f0f0ff +348eba0,fffffff0 +348eba4,f0f0f0f0 +348eba8,f0f0f0f0 +348ebac,f0f0f0ff +348ebb0,fffffff0 +348ebb4,f0f0f0f0 +348ebb8,f0f0f0f0 +348ebbc,f0f0f0ff +348ebc0,fffffff0 +348ebc4,f0f0f0f0 +348ebc8,f0f0f0f0 +348ebcc,f0f0f0ff +348ebd0,fffffff0 +348ebd4,f0f0f0f0 +348ebd8,f0f0f0f0 +348ebdc,f0f0f0ff +348ebe0,fffffff0 +348ebe4,f0f0f0f0 +348ebe8,f0f0f0f0 348ebec,f0f0f0f0 -348ebf0,f0f0f0f0 -348ebf4,f0afafaf -348ebf8,afafdfdf +348ebf0,fff0f0f0 +348ebf4,f0f0f0f0 +348ebf8,f0f0f0f0 348ebfc,f0f0f0f0 348ec00,f0f0f0f0 -348ec04,9fafafaf -348ec08,afafdfdf +348ec04,f0f0f0f0 +348ec08,f0f0f0f0 348ec0c,f0f0f0f0 348ec10,f0f0f0f0 -348ec14,9f9fafaf -348ec18,afafafcf -348ec1c,f0f0f0f0 -348ec20,f0f0f0f0 -348ec24,f0f09f9f -348ec28,afafafcf -348ec2c,cff0f0f0 -348ec30,f0f0f0f0 +348ec14,f0f0f0f0 +348ec18,f0f0f0f0 +348ec1c,f0f05fff +348ec20,fffff0f0 +348ec24,f0f0f0f0 +348ec28,f0f0f0f0 +348ec2c,f0f05fff +348ec30,fffff0f0 348ec34,f0f0f0f0 -348ec38,9fafafaf -348ec3c,cff0f0f0 -348ec40,f0f0f0f0 +348ec38,f0f0f0f0 +348ec3c,f0f05fff +348ec40,fffff0f0 348ec44,f0f0f0f0 -348ec48,f0f0f0af -348ec4c,cff0f0f0 -348ec50,f0f0f0f0 +348ec48,f0f0f0f0 +348ec4c,f0f05fff +348ec50,fffff0f0 348ec54,f0f0f0f0 348ec58,f0f0f0f0 -348ec5c,f0f0f0f0 -348ec60,f0f0f0f0 +348ec5c,f0f05fff +348ec60,fffff0f0 348ec64,f0f0f0f0 348ec68,f0f0f0f0 -348ec6c,f0f0f0f0 -348ec70,f0f0f0f0 +348ec6c,f0f05f5f +348ec70,fffffff0 348ec74,f0f0f0f0 348ec78,f0f0f0f0 -348ec7c,f0f0f0f0 -348ec80,f0f0f0f0 +348ec7c,f0f05f5f +348ec80,fffffff0 348ec84,f0f0f0f0 348ec88,f0f0f0f0 -348ec8c,f0f0f0f0 -348ec90,f0f0f0f0 -348ec94,f0f0f0cf -348ec98,cff0f0f0 -348ec9c,f0f0f0f0 -348eca0,f0f0f0f0 -348eca4,f0f0cfcf -348eca8,cff0f0f0 -348ecac,f0f0f0f0 -348ecb0,f0f0f0f0 -348ecb4,f0f0cfcf -348ecb8,cfbff0f0 -348ecbc,f0f0f0f0 -348ecc0,f0f0f0f0 -348ecc4,f0f0cfcf -348ecc8,cfbff0f0 +348ec8c,f0f05f5f +348ec90,fffffff0 +348ec94,f0f0f0f0 +348ec98,f0f0f0f0 +348ec9c,f0f05f5f +348eca0,fffffff0 +348eca4,f0f0f0f0 +348eca8,f0f0f0f0 +348ecac,f0f0f05f +348ecb0,ffffffff +348ecb4,f0f0f0f0 +348ecb8,f0f0f0f0 +348ecbc,f0f0f05f +348ecc0,5fffffff +348ecc4,f0f0f0f0 +348ecc8,f0f0f0f0 348eccc,f0f0f0f0 -348ecd0,f0f0f0f0 -348ecd4,f0bfbfbf -348ecd8,cfcfbff0 +348ecd0,5fffffff +348ecd4,f0f0f0f0 +348ecd8,f0f0f0f0 348ecdc,f0f0f0f0 -348ece0,f0f0f0f0 -348ece4,f0bfbfbf -348ece8,bfbfbff0 +348ece0,5fffffff +348ece4,f0f0f0f0 +348ece8,f0f0f0f0 348ecec,f0f0f0f0 -348ecf0,f0f0f0f0 -348ecf4,bfbfbfbf -348ecf8,bfbfbfbf +348ecf0,f0fff0f0 +348ecf4,f0f0f0f0 +348ecf8,f0f0f0f0 348ecfc,f0f0f0f0 348ed00,f0f0f0f0 -348ed04,bfbfbfbf -348ed08,bfbfbfbf +348ed04,f0f0f0f0 +348ed08,f0f0f0f0 348ed0c,f0f0f0f0 348ed10,f0f0f0f0 -348ed14,afafbfbf -348ed18,bfbfbfbf -348ed1c,f0f0f0f0 -348ed20,f0f0f0f0 -348ed24,f0afafaf -348ed28,bfbfbfbf -348ed2c,aff0f0f0 -348ed30,f0f0f0f0 +348ed14,f0f0f0f0 +348ed18,f0f0f0f0 +348ed1c,f0f07fff +348ed20,fff0f0f0 +348ed24,f0f0f0f0 +348ed28,f0f0f0f0 +348ed2c,f0f07fff +348ed30,fffff0f0 348ed34,f0f0f0f0 -348ed38,f0afbfbf -348ed3c,bff0f0f0 -348ed40,f0f0f0f0 +348ed38,f0f0f0f0 +348ed3c,f0f07fff +348ed40,fffff0f0 348ed44,f0f0f0f0 348ed48,f0f0f0f0 -348ed4c,f0f0f0f0 -348ed50,f0f0f0f0 +348ed4c,f0f07f7f +348ed50,fffff0f0 348ed54,f0f0f0f0 348ed58,f0f0f0f0 -348ed5c,f0f0f0f0 -348ed60,f0f0f0f0 +348ed5c,f0f07f7f +348ed60,fffffff0 348ed64,f0f0f0f0 348ed68,f0f0f0f0 -348ed6c,f0f0f0f0 -348ed70,f0f0f0f0 +348ed6c,f0f07f7f +348ed70,fffffff0 348ed74,f0f0f0f0 348ed78,f0f0f0f0 -348ed7c,f0f0f0f0 -348ed80,f0f0f0f0 +348ed7c,f07f7f7f +348ed80,7ffffff0 348ed84,f0f0f0f0 348ed88,f0f0f0f0 -348ed8c,f0f0f0f0 -348ed90,f0f0f0f0 -348ed94,f0f0f0df +348ed8c,f06f7f7f +348ed90,7fffffff +348ed94,f0f0f0f0 348ed98,f0f0f0f0 -348ed9c,f0f0f0f0 -348eda0,f0f0f0f0 -348eda4,f0f0f0df -348eda8,dff0f0f0 -348edac,f0f0f0f0 -348edb0,f0f0f0f0 -348edb4,f0f0cfdf -348edb8,dff0f0f0 +348ed9c,f06f6f7f +348eda0,7fffffff +348eda4,f0f0f0f0 +348eda8,f0f0f0f0 +348edac,f0f06f7f +348edb0,7fffffff +348edb4,f0f0f0f0 +348edb8,f0f0f0f0 348edbc,f0f0f0f0 -348edc0,f0f0f0f0 -348edc4,f0f0cfcf -348edc8,cfcff0f0 +348edc0,7f7fffff +348edc4,f0f0f0f0 +348edc8,f0f0f0f0 348edcc,f0f0f0f0 -348edd0,f0f0f0f0 -348edd4,f0cfcfcf -348edd8,cfcff0f0 +348edd0,f07fffff +348edd4,fff0f0f0 +348edd8,f0f0f0f0 348eddc,f0f0f0f0 -348ede0,f0f0f0f0 -348ede4,f0cfcfcf -348ede8,cfcfcff0 +348ede0,f0f0ffff +348ede4,f0f0f0f0 +348ede8,f0f0f0f0 348edec,f0f0f0f0 348edf0,f0f0f0f0 -348edf4,cfcfcfcf -348edf8,cfcfcff0 +348edf4,f0f0f0f0 +348edf8,f0f0f0f0 348edfc,f0f0f0f0 348ee00,f0f0f0f0 -348ee04,bfbfcfcf -348ee08,cfcfcfcf +348ee04,f0f0f0f0 +348ee08,f0f0f0f0 348ee0c,f0f0f0f0 348ee10,f0f0f0f0 -348ee14,bfbfbfbf -348ee18,bfbfbfbf -348ee1c,f0f0f0f0 -348ee20,f0f0f0bf -348ee24,bfbfbfbf -348ee28,bfbfbfbf -348ee2c,bff0f0f0 -348ee30,f0f0f0f0 +348ee14,f0f0f0f0 +348ee18,f0f0f0f0 +348ee1c,f0f09fff +348ee20,fff0f0f0 +348ee24,f0f0f0f0 +348ee28,f0f0f0f0 +348ee2c,f0f09fff +348ee30,fffff0f0 348ee34,f0f0f0f0 -348ee38,f0f0bfbf -348ee3c,bff0f0f0 -348ee40,f0f0f0f0 +348ee38,f0f0f0f0 +348ee3c,f0f09f9f +348ee40,fffff0f0 348ee44,f0f0f0f0 348ee48,f0f0f0f0 -348ee4c,f0f0f0f0 -348ee50,f0f0f0f0 +348ee4c,f0f09f9f +348ee50,fffff0f0 348ee54,f0f0f0f0 348ee58,f0f0f0f0 -348ee5c,f0f0f0f0 -348ee60,f0f0f0f0 +348ee5c,f09f9f9f +348ee60,9fffeff0 348ee64,f0f0f0f0 348ee68,f0f0f0f0 -348ee6c,f0f0f0f0 -348ee70,f0f0f0f0 +348ee6c,f08f9f9f +348ee70,9fefeff0 348ee74,f0f0f0f0 348ee78,f0f0f0f0 -348ee7c,f0f0f0f0 -348ee80,f0f0f0f0 +348ee7c,f08f8f9f +348ee80,9fefeff0 348ee84,f0f0f0f0 348ee88,f0f0f0f0 -348ee8c,f0f0f0f0 -348ee90,f0f0f0f0 -348ee94,f0f0f0df -348ee98,dff0f0f0 -348ee9c,f0f0f0f0 -348eea0,f0f0f0f0 -348eea4,f0f0f0df -348eea8,dff0f0f0 -348eeac,f0f0f0f0 -348eeb0,f0f0f0f0 -348eeb4,f0f0dfdf -348eeb8,dfdff0f0 +348ee8c,f08f8f8f +348ee90,9f9fefef +348ee94,f0f0f0f0 +348ee98,f0f0f0f0 +348ee9c,f08f8f8f +348eea0,8f9fefef +348eea4,f0f0f0f0 +348eea8,f0f0f0f0 +348eeac,f0f08f8f +348eeb0,8f8fefef +348eeb4,eff0f0f0 +348eeb8,f0f0f0f0 348eebc,f0f0f0f0 -348eec0,f0f0f0f0 -348eec4,f0f0dfdf -348eec8,dfdff0f0 +348eec0,8f8f8fef +348eec4,eff0f0f0 +348eec8,f0f0f0f0 348eecc,f0f0f0f0 -348eed0,f0f0f0f0 -348eed4,f0f0cfcf -348eed8,cfcff0f0 +348eed0,f08f8fef +348eed4,eff0f0f0 +348eed8,f0f0f0f0 348eedc,f0f0f0f0 -348eee0,f0f0f0f0 -348eee4,f0cfcfcf -348eee8,cfcfcff0 +348eee0,f0f0f08f +348eee4,f0f0f0f0 +348eee8,f0f0f0f0 348eeec,f0f0f0f0 348eef0,f0f0f0f0 -348eef4,f0cfcfcf -348eef8,cfcfcff0 +348eef4,f0f0f0f0 +348eef8,f0f0f0f0 348eefc,f0f0f0f0 348ef00,f0f0f0f0 -348ef04,cfcfcfcf -348ef08,cfcfcfcf +348ef04,f0f0f0f0 +348ef08,f0f0f0f0 348ef0c,f0f0f0f0 348ef10,f0f0f0f0 -348ef14,cfcfcfcf -348ef18,cfcfcfcf -348ef1c,f0f0f0f0 -348ef20,f0f0f0bf -348ef24,bfbfbfbf -348ef28,bfbfbfbf -348ef2c,bff0f0f0 -348ef30,f0f0f0f0 +348ef14,f0f0f0f0 +348ef18,f0f0f0f0 +348ef1c,f0f0f0ef +348ef20,eff0f0f0 +348ef24,f0f0f0f0 +348ef28,f0f0f0f0 +348ef2c,f0f0bfbf +348ef30,eff0f0f0 348ef34,f0f0f0f0 348ef38,f0f0f0f0 -348ef3c,f0f0f0f0 -348ef40,f0f0f0f0 +348ef3c,f0f0bfbf +348ef40,dfdff0f0 348ef44,f0f0f0f0 348ef48,f0f0f0f0 -348ef4c,f0f0f0f0 -348ef50,f0f0f0f0 +348ef4c,f0f0afbf +348ef50,bfdff0f0 348ef54,f0f0f0f0 348ef58,f0f0f0f0 -348ef5c,f0f0f0f0 -348ef60,f0f0f0f0 +348ef5c,f0afafaf +348ef60,afdfdff0 348ef64,f0f0f0f0 348ef68,f0f0f0f0 -348ef6c,f0f0f0f0 -348ef70,f0f0f0f0 +348ef6c,f0afafaf +348ef70,afafdff0 348ef74,f0f0f0f0 348ef78,f0f0f0f0 -348ef7c,f0f0f0f0 +348ef7c,f0afafaf +348ef80,afafdfdf +348ef84,f0f0f0f0 +348ef88,f0f0f0f0 +348ef8c,9fafafaf +348ef90,afafdfdf +348ef94,f0f0f0f0 +348ef98,f0f0f0f0 +348ef9c,9f9fafaf +348efa0,afafafcf +348efa4,f0f0f0f0 +348efa8,f0f0f0f0 +348efac,f0f09f9f +348efb0,afafafcf +348efb4,cff0f0f0 +348efb8,f0f0f0f0 +348efbc,f0f0f0f0 +348efc0,9fafafaf +348efc4,cff0f0f0 +348efc8,f0f0f0f0 +348efcc,f0f0f0f0 +348efd0,f0f0f0af +348efd4,cff0f0f0 +348efd8,f0f0f0f0 +348efdc,f0f0f0f0 +348efe0,f0f0f0f0 +348efe4,f0f0f0f0 +348efe8,f0f0f0f0 +348efec,f0f0f0f0 +348eff0,f0f0f0f0 +348eff4,f0f0f0f0 +348eff8,f0f0f0f0 +348effc,f0f0f0f0 +348f000,f0f0f0f0 +348f004,f0f0f0f0 +348f008,f0f0f0f0 +348f00c,f0f0f0f0 +348f010,f0f0f0f0 +348f014,f0f0f0f0 +348f018,f0f0f0f0 +348f01c,f0f0f0cf +348f020,cff0f0f0 +348f024,f0f0f0f0 +348f028,f0f0f0f0 +348f02c,f0f0cfcf +348f030,cff0f0f0 +348f034,f0f0f0f0 +348f038,f0f0f0f0 +348f03c,f0f0cfcf +348f040,cfbff0f0 +348f044,f0f0f0f0 +348f048,f0f0f0f0 +348f04c,f0f0cfcf +348f050,cfbff0f0 +348f054,f0f0f0f0 +348f058,f0f0f0f0 +348f05c,f0bfbfbf +348f060,cfcfbff0 +348f064,f0f0f0f0 +348f068,f0f0f0f0 +348f06c,f0bfbfbf +348f070,bfbfbff0 +348f074,f0f0f0f0 +348f078,f0f0f0f0 +348f07c,bfbfbfbf +348f080,bfbfbfbf +348f084,f0f0f0f0 +348f088,f0f0f0f0 +348f08c,bfbfbfbf +348f090,bfbfbfbf +348f094,f0f0f0f0 +348f098,f0f0f0f0 +348f09c,afafbfbf +348f0a0,bfbfbfbf +348f0a4,f0f0f0f0 +348f0a8,f0f0f0f0 +348f0ac,f0afafaf +348f0b0,bfbfbfbf +348f0b4,aff0f0f0 +348f0b8,f0f0f0f0 +348f0bc,f0f0f0f0 +348f0c0,f0afbfbf +348f0c4,bff0f0f0 +348f0c8,f0f0f0f0 +348f0cc,f0f0f0f0 +348f0d0,f0f0f0f0 +348f0d4,f0f0f0f0 +348f0d8,f0f0f0f0 +348f0dc,f0f0f0f0 +348f0e0,f0f0f0f0 +348f0e4,f0f0f0f0 +348f0e8,f0f0f0f0 +348f0ec,f0f0f0f0 +348f0f0,f0f0f0f0 +348f0f4,f0f0f0f0 +348f0f8,f0f0f0f0 +348f0fc,f0f0f0f0 +348f100,f0f0f0f0 +348f104,f0f0f0f0 +348f108,f0f0f0f0 +348f10c,f0f0f0f0 +348f110,f0f0f0f0 +348f114,f0f0f0f0 +348f118,f0f0f0f0 +348f11c,f0f0f0df +348f120,f0f0f0f0 +348f124,f0f0f0f0 +348f128,f0f0f0f0 +348f12c,f0f0f0df +348f130,dff0f0f0 +348f134,f0f0f0f0 +348f138,f0f0f0f0 +348f13c,f0f0cfdf +348f140,dff0f0f0 +348f144,f0f0f0f0 +348f148,f0f0f0f0 +348f14c,f0f0cfcf +348f150,cfcff0f0 +348f154,f0f0f0f0 +348f158,f0f0f0f0 +348f15c,f0cfcfcf +348f160,cfcff0f0 +348f164,f0f0f0f0 +348f168,f0f0f0f0 +348f16c,f0cfcfcf +348f170,cfcfcff0 +348f174,f0f0f0f0 +348f178,f0f0f0f0 +348f17c,cfcfcfcf +348f180,cfcfcff0 +348f184,f0f0f0f0 +348f188,f0f0f0f0 +348f18c,bfbfcfcf +348f190,cfcfcfcf +348f194,f0f0f0f0 +348f198,f0f0f0f0 +348f19c,bfbfbfbf +348f1a0,bfbfbfbf +348f1a4,f0f0f0f0 +348f1a8,f0f0f0bf +348f1ac,bfbfbfbf +348f1b0,bfbfbfbf +348f1b4,bff0f0f0 +348f1b8,f0f0f0f0 +348f1bc,f0f0f0f0 +348f1c0,f0f0bfbf +348f1c4,bff0f0f0 +348f1c8,f0f0f0f0 +348f1cc,f0f0f0f0 +348f1d0,f0f0f0f0 +348f1d4,f0f0f0f0 +348f1d8,f0f0f0f0 +348f1dc,f0f0f0f0 +348f1e0,f0f0f0f0 +348f1e4,f0f0f0f0 +348f1e8,f0f0f0f0 +348f1ec,f0f0f0f0 +348f1f0,f0f0f0f0 +348f1f4,f0f0f0f0 +348f1f8,f0f0f0f0 +348f1fc,f0f0f0f0 +348f200,f0f0f0f0 +348f204,f0f0f0f0 +348f208,f0f0f0f0 +348f20c,f0f0f0f0 +348f210,f0f0f0f0 +348f214,f0f0f0f0 +348f218,f0f0f0f0 +348f21c,f0f0f0df +348f220,dff0f0f0 +348f224,f0f0f0f0 +348f228,f0f0f0f0 +348f22c,f0f0f0df +348f230,dff0f0f0 +348f234,f0f0f0f0 +348f238,f0f0f0f0 +348f23c,f0f0dfdf +348f240,dfdff0f0 +348f244,f0f0f0f0 +348f248,f0f0f0f0 +348f24c,f0f0dfdf +348f250,dfdff0f0 +348f254,f0f0f0f0 +348f258,f0f0f0f0 +348f25c,f0f0cfcf +348f260,cfcff0f0 +348f264,f0f0f0f0 +348f268,f0f0f0f0 +348f26c,f0cfcfcf +348f270,cfcfcff0 +348f274,f0f0f0f0 +348f278,f0f0f0f0 +348f27c,f0cfcfcf +348f280,cfcfcff0 +348f284,f0f0f0f0 +348f288,f0f0f0f0 +348f28c,cfcfcfcf +348f290,cfcfcfcf +348f294,f0f0f0f0 +348f298,f0f0f0f0 +348f29c,cfcfcfcf +348f2a0,cfcfcfcf +348f2a4,f0f0f0f0 +348f2a8,f0f0f0bf +348f2ac,bfbfbfbf +348f2b0,bfbfbfbf +348f2b4,bff0f0f0 +348f2b8,f0f0f0f0 +348f2bc,f0f0f0f0 +348f2c0,f0f0f0f0 +348f2c4,f0f0f0f0 +348f2c8,f0f0f0f0 +348f2cc,f0f0f0f0 +348f2d0,f0f0f0f0 +348f2d4,f0f0f0f0 +348f2d8,f0f0f0f0 +348f2dc,f0f0f0f0 +348f2e0,f0f0f0f0 +348f2e4,f0f0f0f0 +348f2e8,f0f0f0f0 +348f2ec,f0f0f0f0 +348f2f0,f0f0f0f0 +348f2f4,f0f0f0f0 +348f2f8,f0f0f0f0 +348f2fc,f0f0f0f0 +348f300,f0f0f0f0 +348f304,f0f0f0f0 diff --git a/worlds/oot/data/generated/symbols.json b/worlds/oot/data/generated/symbols.json index 8b868c77..2b84bcfa 100644 --- a/worlds/oot/data/generated/symbols.json +++ b/worlds/oot/data/generated/symbols.json @@ -1,11 +1,11 @@ { - "ADULT_INIT_ITEMS": "03481D40", - "ADULT_VALID_ITEMS": "03481D48", + "ADULT_INIT_ITEMS": "03481D3C", + "ADULT_VALID_ITEMS": "03481D44", "AP_PLAYER_NAME": "03480834", - "AUDIO_THREAD_INFO": "03482FC0", - "AUDIO_THREAD_INFO_MEM_SIZE": "03482FDC", - "AUDIO_THREAD_INFO_MEM_START": "03482FD8", - "AUDIO_THREAD_MEM_START": "0348EF80", + "AUDIO_THREAD_INFO": "03482F98", + "AUDIO_THREAD_INFO_MEM_SIZE": "03482FB4", + "AUDIO_THREAD_INFO_MEM_START": "03482FB0", + "AUDIO_THREAD_MEM_START": "0348F310", "BOMBCHUS_IN_LOGIC": "03480CBC", "CFG_A_BUTTON_COLOR": "03480854", "CFG_A_NOTE_COLOR": "03480872", @@ -16,7 +16,7 @@ "CFG_B_BUTTON_COLOR": "0348085A", "CFG_C_BUTTON_COLOR": "03480860", "CFG_C_NOTE_COLOR": "03480878", - "CFG_DAMAGE_MULTIPLYER": "03482CB0", + "CFG_DAMAGE_MULTIPLYER": "03482C88", "CFG_DISPLAY_DPAD": "0348088A", "CFG_HEART_COLOR": "0348084E", "CFG_MAGIC_COLOR": "03480848", @@ -36,149 +36,151 @@ "CFG_RAINBOW_SWORD_OUTER_ENABLED": "0348088C", "CFG_SHOP_CURSOR_COLOR": "0348086C", "CFG_TEXT_CURSOR_COLOR": "03480866", - "CHAIN_HBA_REWARDS": "03483950", - "CHEST_SIZE_MATCH_CONTENTS": "034826F0", - "COMPLETE_MASK_QUEST": "0348B201", + "CHAIN_HBA_REWARDS": "03483928", + "CHEST_SIZE_MATCH_CONTENTS": "034826EC", + "COMPLETE_MASK_QUEST": "0348B585", "COOP_CONTEXT": "03480020", "COOP_VERSION": "03480020", "COSMETIC_CONTEXT": "03480844", "COSMETIC_FORMAT_VERSION": "03480844", - "CURRENT_GROTTO_ID": "03482E82", + "CURRENT_GROTTO_ID": "03482E5A", "DEATH_LINK": "0348002A", - "DEBUG_OFFSET": "034828A0", + "DEBUG_OFFSET": "03482878", "DISABLE_TIMERS": "03480CDC", - "DPAD_TEXTURE": "0348D780", - "DUNGEONS_SHUFFLED": "03480CDE", + "DPAD_TEXTURE": "0348DB08", + "DUNGEONS_SHUFFLED": "03480CDD", "EXTENDED_OBJECT_TABLE": "03480C9C", - "EXTERN_DAMAGE_MULTIPLYER": "03482CB1", - "FAST_BUNNY_HOOD_ENABLED": "03480CE0", + "EXTERN_DAMAGE_MULTIPLYER": "03482C89", + "FAST_BUNNY_HOOD_ENABLED": "03480CDF", "FAST_CHESTS": "03480CD6", - "FONT_TEXTURE": "0348C2B8", + "FONT_TEXTURE": "0348C640", "FREE_SCARECROW_ENABLED": "03480CCC", - "GET_CHEST_OVERRIDE_COLOR_WRAPPER": "03482720", - "GET_CHEST_OVERRIDE_SIZE_WRAPPER": "034826F4", - "GET_ITEM_TRIGGERED": "0348140C", + "GANON_BOSS_KEY_CONDITION": "0348B550", + "GANON_BOSS_KEY_CONDITION_COUNT": "0348B54E", + "GET_CHEST_OVERRIDE_WRAPPER": "034826F0", + "GET_ITEM_TRIGGERED": "03481408", "GOSSIP_HINT_CONDITION": "03480CC8", - "GROTTO_EXIT_LIST": "03482E40", - "GROTTO_LOAD_TABLE": "03482DBC", + "GROTTO_EXIT_LIST": "03482E18", + "GROTTO_LOAD_TABLE": "03482D94", "INCOMING_ITEM": "03480028", "INCOMING_PLAYER": "03480026", "INITIAL_SAVE_DATA": "0348089C", "JABU_ELEVATOR_ENABLE": "03480CD4", + "KAKARIKO_WEATHER_FORECAST": "0348B5A4", "LACS_CONDITION": "03480CC4", "LACS_CONDITION_COUNT": "03480CD2", - "MALON_GAVE_ICETRAP": "0348368C", + "MALON_GAVE_ICETRAP": "03483664", "MALON_TEXT_ID": "03480CDB", - "MAX_RUPEES": "0348B203", - "MOVED_ADULT_KING_ZORA": "03482FFC", - "NO_ESCAPE_SEQUENCE": "0348B1CC", - "NO_FOG_STATE": "03480CDD", + "MAX_RUPEES": "0348B587", + "MOVED_ADULT_KING_ZORA": "03482FD4", + "NO_ESCAPE_SEQUENCE": "0348B54C", "OCARINAS_SHUFFLED": "03480CD5", - "OPEN_KAKARIKO": "0348B202", + "OPEN_KAKARIKO": "0348B586", "OUTGOING_ITEM": "03480030", "OUTGOING_KEY": "0348002C", "OUTGOING_PLAYER": "03480032", - "OVERWORLD_SHUFFLED": "03480CDF", - "PAYLOAD_END": "0348EF80", + "OVERWORLD_SHUFFLED": "03480CDE", + "PAYLOAD_END": "0348F310", "PAYLOAD_START": "03480000", - "PLAYED_WARP_SONG": "03481210", + "PLAYED_WARP_SONG": "0348120C", "PLAYER_ID": "03480024", "PLAYER_NAMES": "03480034", "PLAYER_NAME_ID": "03480025", "RAINBOW_BRIDGE_CONDITION": "03480CC0", "RAINBOW_BRIDGE_COUNT": "03480CD0", "RANDO_CONTEXT": "03480000", - "SHUFFLE_BEANS": "03482D18", - "SHUFFLE_CARPET_SALESMAN": "03483A08", + "SHUFFLE_BEANS": "03482CF0", + "SHUFFLE_CARPET_SALESMAN": "034839E0", "SHUFFLE_COWS": "03480CD7", - "SHUFFLE_MEDIGORON": "03483A64", + "SHUFFLE_MEDIGORON": "03483A3C", "SONGS_AS_ITEMS": "03480CD8", - "SOS_ITEM_GIVEN": "034814D8", - "SPEED_MULTIPLIER": "03482760", - "START_TWINROVA_FIGHT": "0348307C", - "TIME_TRAVEL_SAVED_EQUIPS": "03481A64", - "TRIFORCE_ICON_TEXTURE": "0348DF80", - "TWINROVA_ACTION_TIMER": "03483080", + "SOS_ITEM_GIVEN": "034814D4", + "SPEED_MULTIPLIER": "03482738", + "START_TWINROVA_FIGHT": "03483054", + "TIME_TRAVEL_SAVED_EQUIPS": "03481A60", + "TRIFORCE_ICON_TEXTURE": "0348E308", + "TWINROVA_ACTION_TIMER": "03483058", "WINDMILL_SONG_ID": "03480CD9", "WINDMILL_TEXT_ID": "03480CDA", - "a_button": "0348B190", - "a_note_b": "0348B17C", - "a_note_font_glow_base": "0348B164", - "a_note_font_glow_max": "0348B160", - "a_note_g": "0348B180", - "a_note_glow_base": "0348B16C", - "a_note_glow_max": "0348B168", - "a_note_r": "0348B184", - "active_item_action_id": "0348B1E4", - "active_item_fast_chest": "0348B1D4", - "active_item_graphic_id": "0348B1D8", - "active_item_object_id": "0348B1DC", - "active_item_row": "0348B1E8", - "active_item_text_id": "0348B1E0", - "active_override": "0348B1F0", - "active_override_is_outgoing": "0348B1EC", - "b_button": "0348B18C", - "beating_dd": "0348B198", - "beating_no_dd": "0348B1A0", - "c_button": "0348B188", - "c_note_b": "0348B170", - "c_note_font_glow_base": "0348B154", - "c_note_font_glow_max": "0348B150", - "c_note_g": "0348B174", - "c_note_glow_base": "0348B15C", - "c_note_glow_max": "0348B158", - "c_note_r": "0348B178", - "cfg_dungeon_info_enable": "0348B11C", - "cfg_dungeon_info_mq_enable": "0348B1C0", - "cfg_dungeon_info_mq_need_map": "0348B1BC", - "cfg_dungeon_info_reward_enable": "0348B118", - "cfg_dungeon_info_reward_need_altar": "0348B1B4", - "cfg_dungeon_info_reward_need_compass": "0348B1B8", - "cfg_dungeon_is_mq": "0348B220", - "cfg_dungeon_rewards": "03489F14", - "cfg_file_select_hash": "0348B1C8", - "cfg_item_overrides": "0348B274", - "defaultDDHeart": "0348B1A4", - "defaultHeart": "0348B1AC", - "dpad_sprite": "0348A088", - "dummy_actor": "0348B1F8", - "dungeon_count": "0348B120", - "dungeons": "03489F38", - "empty_dlist": "0348B138", - "extern_ctxt": "03489FD4", - "font_sprite": "0348A098", - "freecam_modes": "03489C90", - "hash_sprites": "0348B12C", - "hash_symbols": "03489FE8", - "heap_next": "0348B21C", - "heart_sprite": "0348A028", - "icon_sprites": "03489E54", - "item_digit_sprite": "0348A048", - "item_overrides_count": "0348B1FC", - "item_table": "0348A110", - "items_sprite": "0348A0B8", - "key_rupee_clock_sprite": "0348A058", - "last_fog_distance": "0348B124", - "linkhead_skull_sprite": "0348A038", - "medal_colors": "03489F24", - "medals_sprite": "0348A0C8", - "normal_dd": "0348B194", - "normal_no_dd": "0348B19C", - "object_slots": "0348C274", - "pending_freezes": "0348B200", - "pending_item_queue": "0348B25C", - "quest_items_sprite": "0348A0A8", - "rupee_colors": "03489E60", - "satisified_pending_frames": "0348B1D0", - "scene_fog_distance": "0348B128", - "setup_db": "0348A0E8", - "song_note_sprite": "0348A068", - "stones_sprite": "0348A0D8", - "text_cursor_border_base": "0348B144", - "text_cursor_border_max": "0348B140", - "text_cursor_inner_base": "0348B14C", - "text_cursor_inner_max": "0348B148", - "triforce_hunt_enabled": "0348B210", - "triforce_pieces_requied": "0348B1B2", - "triforce_sprite": "0348A078" + "a_button": "0348B510", + "a_note_b": "0348B4FC", + "a_note_font_glow_base": "0348B4E4", + "a_note_font_glow_max": "0348B4E0", + "a_note_g": "0348B500", + "a_note_glow_base": "0348B4EC", + "a_note_glow_max": "0348B4E8", + "a_note_r": "0348B504", + "active_item_action_id": "0348B568", + "active_item_fast_chest": "0348B558", + "active_item_graphic_id": "0348B55C", + "active_item_object_id": "0348B560", + "active_item_row": "0348B56C", + "active_item_text_id": "0348B564", + "active_override": "0348B574", + "active_override_is_outgoing": "0348B570", + "b_button": "0348B50C", + "beating_dd": "0348B518", + "beating_no_dd": "0348B520", + "c_button": "0348B508", + "c_note_b": "0348B4F0", + "c_note_font_glow_base": "0348B4D4", + "c_note_font_glow_max": "0348B4D0", + "c_note_g": "0348B4F4", + "c_note_glow_base": "0348B4DC", + "c_note_glow_max": "0348B4D8", + "c_note_r": "0348B4F8", + "cfg_dungeon_info_enable": "0348B49C", + "cfg_dungeon_info_mq_enable": "0348B540", + "cfg_dungeon_info_mq_need_map": "0348B53C", + "cfg_dungeon_info_reward_enable": "0348B498", + "cfg_dungeon_info_reward_need_altar": "0348B534", + "cfg_dungeon_info_reward_need_compass": "0348B538", + "cfg_dungeon_is_mq": "0348B5A8", + "cfg_dungeon_rewards": "0348A254", + "cfg_file_select_hash": "0348B548", + "cfg_item_overrides": "0348B5FC", + "defaultDDHeart": "0348B524", + "defaultHeart": "0348B52C", + "dpad_sprite": "0348A408", + "dummy_actor": "0348B57C", + "dungeon_count": "0348B4A0", + "dungeons": "0348A278", + "empty_dlist": "0348B4B8", + "extern_ctxt": "0348A314", + "font_sprite": "0348A418", + "freecam_modes": "03489FD0", + "hash_sprites": "0348B4AC", + "hash_symbols": "0348A328", + "heap_next": "0348B5A0", + "heart_sprite": "0348A3A8", + "icon_sprites": "0348A194", + "item_digit_sprite": "0348A3C8", + "item_overrides_count": "0348B580", + "item_table": "0348A490", + "items_sprite": "0348A438", + "key_rupee_clock_sprite": "0348A3D8", + "last_fog_distance": "0348B4A4", + "linkhead_skull_sprite": "0348A3B8", + "medal_colors": "0348A264", + "medals_sprite": "0348A448", + "normal_dd": "0348B514", + "normal_no_dd": "0348B51C", + "num_to_bits": "0348A368", + "object_slots": "0348C5FC", + "pending_freezes": "0348B584", + "pending_item_queue": "0348B5E4", + "quest_items_sprite": "0348A428", + "rupee_colors": "0348A1A0", + "satisified_pending_frames": "0348B554", + "scene_fog_distance": "0348B4A8", + "setup_db": "0348A468", + "song_note_sprite": "0348A3E8", + "stones_sprite": "0348A458", + "text_cursor_border_base": "0348B4C4", + "text_cursor_border_max": "0348B4C0", + "text_cursor_inner_base": "0348B4CC", + "text_cursor_inner_max": "0348B4C8", + "triforce_hunt_enabled": "0348B594", + "triforce_pieces_requied": "0348B532", + "triforce_sprite": "0348A3F8" } \ No newline at end of file