From fd99620ac979e52c934b0cfb7de9d02cb590dd28 Mon Sep 17 00:00:00 2001 From: aerinon Date: Fri, 6 Oct 2023 12:56:29 -0600 Subject: [PATCH 1/5] Standard: generation error fixed --- Rules.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rules.py b/Rules.py index 4140469c..9b6ed1a9 100644 --- a/Rules.py +++ b/Rules.py @@ -1375,12 +1375,12 @@ def find_rules_for_zelda_delivery(world, player): if not rule(blank_state): rule_list.append(rule) next_path.append(ext.name) - if connect.name == 'Sanctuary': + if connect.name == 'Hyrule Castle Throne Room': return rule_list, next_path else: visited.add(connect) queue.append((connect, rule_list, next_path)) - raise Exception('No path to Sanctuary found') + raise Exception('No path to Throne Room found') def set_big_bomb_rules(world, player): From 71eadd051cb10638fd73849d8aeb5ae4e4a8d236 Mon Sep 17 00:00:00 2001 From: aerinon Date: Mon, 13 Nov 2023 15:43:27 -0700 Subject: [PATCH 2/5] fix(key logic): typo fix(bunny logic): multiple paths considered --- KeyDoorShuffle.py | 2 +- Main.py | 2 +- RELEASENOTES.md | 4 ++ Rules.py | 177 ++++++++++++++++++++++++---------------------- 4 files changed, 100 insertions(+), 85 deletions(-) diff --git a/KeyDoorShuffle.py b/KeyDoorShuffle.py index 7284c0cf..6883fb94 100644 --- a/KeyDoorShuffle.py +++ b/KeyDoorShuffle.py @@ -1800,7 +1800,7 @@ def imp_locations_factory(world, player): imp_locations = ['Agahnim 1', 'Agahnim 2', 'Attic Cracked Floor', 'Suspicious Maiden'] if world.mode[player] == 'standard': imp_locations.append('Zelda Pickup') - imp_locations.append('Zelda Dropoff') + imp_locations.append('Zelda Drop Off') return imp_locations diff --git a/Main.py b/Main.py index 24fa0080..d5b39084 100644 --- a/Main.py +++ b/Main.py @@ -34,7 +34,7 @@ from source.overworld.EntranceShuffle2 import link_entrances_new from source.tools.BPS import create_bps_from_data from source.classes.CustomSettings import CustomSettings -version_number = '1.2.0.21' +version_number = '1.2.0.22' version_branch = '-u' __version__ = f'{version_number}{version_branch}' diff --git a/RELEASENOTES.md b/RELEASENOTES.md index cae2bc56..5abff4a8 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -109,6 +109,10 @@ These are now independent of retro mode and have three options: None, Random, an # Bug Fixes and Notes +* * 1.2.0.22u + * Fixed logic issues: + * Self-locking key not allowed in Sanctuary in standard (typo fixed) + * More advanced bunny-walking logic in dungeons (multiple paths considred) * 1.2.0.21u * Fix that should force items needed for leaving Zelda's cell to before the throne room, so S&Q isn't mandatory * Small fix for Tavern Shuffle (thanks Catobat) diff --git a/Rules.py b/Rules.py index 9b6ed1a9..1560dba2 100644 --- a/Rules.py +++ b/Rules.py @@ -101,16 +101,20 @@ def mirrorless_path_to_castle_courtyard(world, player): else: queue.append((entrance.connected_region, new_path)) + def set_rule(spot, rule): spot.access_rule = rule + def set_defeat_dungeon_boss_rule(location): # Lambda required to defer evaluation of dungeon.boss since it will change later if boos shuffle is used set_rule(location, lambda state: location.parent_region.dungeon.boss.can_defeat(state)) + def set_always_allow(spot, rule): spot.always_allow = rule + def add_rule(spot, rule, combine='and'): old_rule = spot.access_rule if combine == 'or': @@ -140,22 +144,26 @@ def forbid_item(location, item, player): old_rule = location.item_rule location.item_rule = lambda i: (i.name != item or i.player != player) and old_rule(i) + def add_item_rule(location, rule): old_rule = location.item_rule location.item_rule = lambda item: rule(item) and old_rule(item) + def item_in_locations(state, item, player, locations): for location in locations: if item_name(state, location[0], location[1]) == (item, player): return True return False + def item_name(state, location, player): location = state.world.get_location(location, player) if location.item is None: return None return (location.item.name, location.item.player) + def global_rules(world, player): # ganon can only carry triforce add_item_rule(world.get_location('Ganon', player), lambda item: item.name == 'Triforce' and item.player == player) @@ -187,7 +195,7 @@ def global_rules(world, player): set_rule(world.get_location('Ether Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has_beam_sword(player)) set_rule(world.get_location('Bombos Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has_beam_sword(player)) - set_rule(world.get_location('Missing Smith', player), lambda state: state.has('Get Frog', player) and state.can_reach('Blacksmiths Hut', 'Region', player)) # Can't S&Q with smith + set_rule(world.get_location('Missing Smith', player), lambda state: state.has('Get Frog', player) and state.can_reach('Blacksmiths Hut', 'Region', player)) # Can't S&Q with smith set_rule(world.get_location('Dark Blacksmith Ruins', player), lambda state: state.has('Return Smith', player)) set_rule(world.get_location('Purple Chest', player), lambda state: state.has('Pick Up Purple Chest', player)) # Can S&Q with chest @@ -625,7 +633,7 @@ def global_rules(world, player): set_rule(world.get_entrance('Swamp Barrier - Orange', player), lambda state: state.can_reach_orange(world.get_region('Swamp Barrier', player), player)) set_rule(world.get_entrance('Swamp Crystal Switch Inner to Crystal', player), lambda state: state.can_hit_crystal(player)) - set_rule(world.get_entrance('Swamp Crystal Switch Outer to Ranged Crystal', player), lambda state: state.can_hit_crystal_through_barrier(player) or state.has_beam_sword(player) or (state.has('Hookshot', player) and state.can_reach_blue(world.get_region('Swamp Crystal Switch Outer', player), player))) # It is the length of the sword, not the beam itself that allows this + set_rule(world.get_entrance('Swamp Crystal Switch Outer to Ranged Crystal', player), lambda state: state.can_hit_crystal_through_barrier(player) or state.has_beam_sword(player) or (state.has('Hookshot', player) and state.can_reach_blue(world.get_region('Swamp Crystal Switch Outer', player), player))) # It is the length of the sword, not the beam itself that allows this set_rule(world.get_entrance('Swamp Crystal Switch Outer to Inner Bypass', player), lambda state: state.world.can_take_damage or state.has('Cape', player) or state.has('Cane of Byrna', player)) set_rule(world.get_entrance('Swamp Crystal Switch Inner to Outer Bypass', player), lambda state: state.world.can_take_damage or state.has('Cape', player) or state.has('Cane of Byrna', player)) @@ -668,8 +676,8 @@ def global_rules(world, player): set_rule(world.get_entrance('Mire Crystal Left Blue Barrier', player), lambda state: state.can_reach_blue(world.get_region('Mire Crystal Left', player), player)) set_rule(world.get_entrance('Mire Conveyor to Crystal', player), lambda state: state.can_hit_crystal(player)) - set_rule(world.get_entrance('Mire Tall Dark and Roomy to Ranged Crystal', player), lambda state: True) # Can always throw pots - set_rule(world.get_entrance('Mire Fishbone Blue Barrier Bypass', player), lambda state: False) # (state.world.can_take_damage or state.has('Cape', player) or state.has('Cane of Byrna', player)) and state.can_tastate.can_use_bombs(player) // Easy to do but obscure. Should it be in logic? + set_rule(world.get_entrance('Mire Tall Dark and Roomy to Ranged Crystal', player), lambda state: True) # Can always throw pots + set_rule(world.get_entrance('Mire Fishbone Blue Barrier Bypass', player), lambda state: False) # (state.world.can_take_damage or state.has('Cape', player) or state.has('Cane of Byrna', player)) and state.can_tastate.can_use_bombs(player) // Easy to do but obscure. Should it be in logic? set_rule(world.get_location('Turtle Rock - Chain Chomps', player), lambda state: state.can_reach('TR Chain Chomps Top', 'Region', player) and state.can_hit_crystal_through_barrier(player)) set_rule(world.get_entrance('TR Chain Chomps Top to Bottom Barrier - Orange', player), lambda state: state.can_reach_orange(world.get_region('TR Chain Chomps Top', player), player)) @@ -691,14 +699,14 @@ def global_rules(world, player): set_rule(world.get_entrance('TR Pokey 2 Top to Crystal', player), lambda state: state.can_hit_crystal(player)) set_rule(world.get_entrance('TR Crystaroller Top to Crystal', player), lambda state: state.can_hit_crystal(player)) set_rule(world.get_entrance('TR Crystal Maze Start to Crystal', player), lambda state: state.can_hit_crystal(player)) - set_rule(world.get_entrance('TR Chain Chomps Bottom to Ranged Crystal', player), lambda state: state.can_hit_crystal_through_barrier(player) or (state.has('Hookshot', player) and state.can_reach_orange(world.get_region('TR Chain Chomps Bottom', player), player))) # or state.has_beam_sword(player) - set_rule(world.get_entrance('TR Pokey 2 Bottom to Ranged Crystal', player), lambda state: state.can_hit_crystal_through_barrier(player) or (state.has('Hookshot', player) and state.can_reach_blue(world.get_region('TR Pokey 2 Bottom', player), player))) # or state.has_beam_sword(player) - set_rule(world.get_entrance('TR Crystaroller Bottom to Ranged Crystal', player), lambda state: state.can_shoot_arrows(player) or state.has('Fire Rod', player) or state.has('Ice Rod', player) or state.has('Cane of Somaria', player) or (state.has('Hookshot', player) and state.can_reach_orange(world.get_region('TR Crystaroller Bottom', player), player))) # or state.has_beam_sword(player) - set_rule(world.get_entrance('TR Crystaroller Middle to Ranged Crystal', player), lambda state: state.can_hit_crystal_through_barrier(player) or (state.has('Hookshot', player) and state.can_reach_orange(world.get_region('TR Crystaroller Middle', player), player))) # or state.has_beam_sword(player) + set_rule(world.get_entrance('TR Chain Chomps Bottom to Ranged Crystal', player), lambda state: state.can_hit_crystal_through_barrier(player) or (state.has('Hookshot', player) and state.can_reach_orange(world.get_region('TR Chain Chomps Bottom', player), player))) # or state.has_beam_sword(player) + set_rule(world.get_entrance('TR Pokey 2 Bottom to Ranged Crystal', player), lambda state: state.can_hit_crystal_through_barrier(player) or (state.has('Hookshot', player) and state.can_reach_blue(world.get_region('TR Pokey 2 Bottom', player), player))) # or state.has_beam_sword(player) + set_rule(world.get_entrance('TR Crystaroller Bottom to Ranged Crystal', player), lambda state: state.can_shoot_arrows(player) or state.has('Fire Rod', player) or state.has('Ice Rod', player) or state.has('Cane of Somaria', player) or (state.has('Hookshot', player) and state.can_reach_orange(world.get_region('TR Crystaroller Bottom', player), player))) # or state.has_beam_sword(player) + set_rule(world.get_entrance('TR Crystaroller Middle to Ranged Crystal', player), lambda state: state.can_hit_crystal_through_barrier(player) or (state.has('Hookshot', player) and state.can_reach_orange(world.get_region('TR Crystaroller Middle', player), player))) # or state.has_beam_sword(player) set_rule(world.get_entrance('TR Crystaroller Middle to Bottom Bypass', player), lambda state: state.can_use_bombs(player) or state.has('Blue Boomerang', player)) - set_rule(world.get_entrance('TR Crystal Maze End to Ranged Crystal', player), lambda state: state.has('Cane of Somaria', player)) # or state.has('Blue Boomerang', player) or state.has('Red Boomerang', player) // These work by clipping the rang through the two stone blocks, which works sometimes. - set_rule(world.get_entrance('TR Crystal Maze Interior to End Bypass', player), lambda state: state.can_use_bombs(player) or state.can_shoot_arrows(player) or state.has('Red Boomerang', player) or state.has('Blue Boomerang', player) or state.has('Fire Rod', player) or state.has('Ice Rod', player) or state.has('Cane of Somaria', player)) # Beam sword does NOT work - set_rule(world.get_entrance('TR Crystal Maze Interior to Start Bypass', player), lambda state: True) # Can always grab a pot from the interior and walk it to the start region and throw it there + set_rule(world.get_entrance('TR Crystal Maze End to Ranged Crystal', player), lambda state: state.has('Cane of Somaria', player)) # or state.has('Blue Boomerang', player) or state.has('Red Boomerang', player) // These work by clipping the rang through the two stone blocks, which works sometimes. + set_rule(world.get_entrance('TR Crystal Maze Interior to End Bypass', player), lambda state: state.can_use_bombs(player) or state.can_shoot_arrows(player) or state.has('Red Boomerang', player) or state.has('Blue Boomerang', player) or state.has('Fire Rod', player) or state.has('Ice Rod', player) or state.has('Cane of Somaria', player)) # Beam sword does NOT work + set_rule(world.get_entrance('TR Crystal Maze Interior to Start Bypass', player), lambda state: True) # Can always grab a pot from the interior and walk it to the start region and throw it there set_rule(world.get_entrance('GT Hookshot Platform Blue Barrier', player), lambda state: state.can_reach_blue(world.get_region('GT Hookshot South Platform', player), player)) set_rule(world.get_entrance('GT Hookshot Entry Blue Barrier', player), lambda state: state.can_reach_blue(world.get_region('GT Hookshot South Entry', player), player)) @@ -811,7 +819,7 @@ def bomb_rules(world, player): ('TR Tongue Pull WS', True), ('TR Twin Pokeys NW', False), ] - for killdoor,bombable in easy_kill_rooms: + for killdoor, bombable in easy_kill_rooms: if bombable: add_rule(world.get_entrance(killdoor, player), lambda state: (state.can_use_bombs(player) or state.can_kill_most_things(player))) else: @@ -828,47 +836,47 @@ def bomb_rules(world, player): if world.get_entrance('Mire Cross SW', player).door.trapped: add_rule(world.get_entrance('Mire Cross SW', player), lambda state: state.can_kill_most_things(player)) - enemy_kill_drops = [ # Location, bool-bombable + enemy_kill_drops = [ # Location, bool-bombable ('Hyrule Castle - Map Guard Key Drop', True), ('Hyrule Castle - Boomerang Guard Key Drop', True), ('Hyrule Castle - Key Rat Key Drop', True), -# ('Hyrule Castle - Big Key Drop', True), # Pots are available -# ('Eastern Palace - Dark Eyegore Key Drop', True), # Pots are available + # ('Hyrule Castle - Big Key Drop', True), # Pots are available + # ('Eastern Palace - Dark Eyegore Key Drop', True), # Pots are available ('Castle Tower - Dark Archer Key Drop', True), -# ('Castle Tower - Circle of Pots Key Drop', True), # Pots are available -# ('Skull Woods - Spike Corner Key Drop', True), # Pots are available + # ('Castle Tower - Circle of Pots Key Drop', True), # Pots are available + # ('Skull Woods - Spike Corner Key Drop', True), # Pots are available ('Ice Palace - Jelly Key Drop', True), ('Ice Palace - Conveyor Key Drop', True), ('Misery Mire - Conveyor Crystal Key Drop', True), ('Turtle Rock - Pokey 1 Key Drop', True), ('Turtle Rock - Pokey 2 Key Drop', True), -# ('Ganons Tower - Mini Helmasaur Key Drop', True) # Pots are available - ('Castle Tower - Room 03', True), # Two spring soliders - ('Ice Palace - Compass Chest', True) # Pengators + # ('Ganons Tower - Mini Helmasaur Key Drop', True) # Pots are available + ('Castle Tower - Room 03', True), # Two spring soliders + ('Ice Palace - Compass Chest', True) # Pengators ] - for location,bombable in enemy_kill_drops: + for location, bombable in enemy_kill_drops: if bombable: - add_rule(world.get_location(location, player), lambda state: state.can_use_bombs(player) or state.can_kill_most_things(player)) + add_rule(world.get_location(location, player), lambda state: state.can_use_bombs(player) or state.can_kill_most_things(player)) else: add_rule(world.get_location(location, player), lambda state: state.can_kill_most_things(player)) - add_rule(world.get_location('Attic Cracked Floor', player), lambda state: state.can_use_bombs(player)) + add_rule(world.get_location('Attic Cracked Floor', player), lambda state: state.can_use_bombs(player)) bombable_floors = ['PoD Pit Room Bomb Hole', 'Ice Bomb Drop Hole', 'Ice Freezors Bomb Hole', 'GT Bob\'s Room Hole'] for entrance in bombable_floors: - add_rule(world.get_entrance(entrance, player), lambda state: state.can_use_bombs(player)) + add_rule(world.get_entrance(entrance, player), lambda state: state.can_use_bombs(player)) if world.doorShuffle[player] == 'vanilla': - add_rule(world.get_entrance('TR Lazy Eyes SE', player), lambda state: state.can_use_bombs(player)) # ToDo: Add always true for inverted, cross-entrance, and door-variants and so on. - add_rule(world.get_entrance('Turtle Rock Ledge Exit (West)', player), lambda state: state.can_use_bombs(player)) # Is this the same as above? + add_rule(world.get_entrance('TR Lazy Eyes SE', player), lambda state: state.can_use_bombs(player)) # ToDo: Add always true for inverted, cross-entrance, and door-variants and so on. + add_rule(world.get_entrance('Turtle Rock Ledge Exit (West)', player), lambda state: state.can_use_bombs(player)) # Is this the same as above? dungeon_bonkable = ['Sewers Rat Path WS', 'Sewers Rat Path WN', 'PoD Warp Hint SE', 'PoD Jelly Hall NW', 'PoD Jelly Hall NE', 'PoD Mimics 1 SW', 'Thieves Ambush E', 'Thieves Rail Ledge W', 'TR Dash Room NW', 'TR Crystaroller SW', 'TR Dash Room ES', - 'GT Four Torches NW','GT Fairy Abyss SW' + 'GT Four Torches NW', 'GT Fairy Abyss SW' ] dungeon_bombable = ['PoD Map Balcony WS', 'PoD Arena Ledge ES', 'PoD Dark Maze E', 'PoD Big Chest Balcony W', - 'Swamp Pot Row WN','Swamp Map Ledge EN', 'Swamp Hammer Switch WN', 'Swamp Hub Dead Ledge EN', 'Swamp Waterway N', 'Swamp I S', + 'Swamp Pot Row WN', 'Swamp Map Ledge EN', 'Swamp Hammer Switch WN', 'Swamp Hub Dead Ledge EN', 'Swamp Waterway N', 'Swamp I S', 'Skull Pot Circle WN', 'Skull Pull Switch EN', 'Skull Big Key EN', 'Skull Lone Pot WN', 'Thieves Rail Ledge NW', 'Thieves Pot Alcove Bottom SW', 'Ice Bomb Drop Hole', 'Ice Freezors Bomb Hole', @@ -876,9 +884,9 @@ def bomb_rules(world, player): 'GT Warp Maze (Rails) WS', 'GT Bob\'s Room Hole', 'GT Randomizer Room ES', 'GT Bomb Conveyor SW', 'GT Crystal Circles NW', 'GT Cannonball Bridge SE', 'GT Refill NE' ] for entrance in dungeon_bonkable: - add_rule(world.get_entrance(entrance, player), lambda state: state.can_use_bombs(player) or state.has_Boots(player)) + add_rule(world.get_entrance(entrance, player), lambda state: state.can_use_bombs(player) or state.has_Boots(player)) for entrance in dungeon_bombable: - add_rule(world.get_entrance(entrance, player), lambda state: state.can_use_bombs(player)) + add_rule(world.get_entrance(entrance, player), lambda state: state.can_use_bombs(player)) else: doors_to_bomb_check = [x for x in world.doors if x.player == player and x.type in [DoorType.Normal, DoorType.Interior]] for door in doors_to_bomb_check: @@ -984,13 +992,13 @@ def ow_bunny_rules(world, player): add_bunny_rule(world.get_entrance('20 Rupee Cave', player), player) add_bunny_rule(world.get_entrance('50 Rupee Cave', player), player) - add_bunny_rule(world.get_entrance('Skull Woods First Section Hole (North)', player), player) # bunny cannot lift bush - add_bunny_rule(world.get_entrance('Skull Woods Second Section Hole', player), player) # bunny cannot lift bush - add_bunny_rule(world.get_entrance('Skull Woods Final Section', player), player) # bunny cannot use fire rod + add_bunny_rule(world.get_entrance('Skull Woods First Section Hole (North)', player), player) # bunny cannot lift bush + add_bunny_rule(world.get_entrance('Skull Woods Second Section Hole', player), player) # bunny cannot lift bush + add_bunny_rule(world.get_entrance('Skull Woods Final Section', player), player) # bunny cannot use fire rod add_bunny_rule(world.get_entrance('Hookshot Cave', player), player) - add_bunny_rule(world.get_entrance('Thieves Town', player), player) # bunny cannot pull + add_bunny_rule(world.get_entrance('Thieves Town', player), player) # bunny cannot pull add_bunny_rule(world.get_entrance('Turtle Rock', player), player) - add_bunny_rule(world.get_entrance('Palace of Darkness', player), player) # kiki needs pearl + add_bunny_rule(world.get_entrance('Palace of Darkness', player), player) # kiki needs pearl add_bunny_rule(world.get_entrance('Hammer Peg Cave', player), player) add_bunny_rule(world.get_entrance('Bonk Fairy (Dark)', player), player) add_bunny_rule(world.get_entrance('Misery Mire', player), player) @@ -1109,17 +1117,20 @@ def forbid_bomb_jump_requirements(world, player): set_rule(world.get_entrance('Paradox Cave Bomb Jump', player), lambda state: False) set_rule(world.get_entrance('Ice Island To East Pier', player), lambda state: False) + # Light cones in standard depend on which world we actually are in, not which one the location would normally be # We add Lamp requirements only to those locations which lie in the dark world (or everything if open DW_Entrances = ['Bumper Cave (Bottom)', 'Superbunny Cave (Top)', 'Superbunny Cave (Bottom)', 'Hookshot Cave', 'Bumper Cave (Top)', 'Hookshot Cave Back Entrance', 'Dark Death Mountain Ledge (East)', 'Turtle Rock Isolated Ledge Entrance', 'Thieves Town', 'Skull Woods Final Section', 'Ice Palace', 'Misery Mire', 'Palace of Darkness', 'Swamp Palace', 'Turtle Rock', 'Dark Death Mountain Ledge (West)'] + def check_is_dark_world(region): for entrance in region.entrances: if entrance.name in DW_Entrances: return True return False + def add_conditional_lamps(world, player): def add_conditional_lamp(spot, region, spottype='Location'): if spottype == 'Location': @@ -1221,33 +1232,33 @@ def swordless_rules(world, player): # todo: new traps std_kill_rooms = { - 'Hyrule Dungeon Armory Main': ['Hyrule Dungeon Armory S', 'Hyrule Dungeon Armory ES'], # One green guard - 'Hyrule Dungeon Armory Boomerang': ['Hyrule Dungeon Armory Boomerang WS'], # One blue guard - 'Eastern Stalfos Spawn': ['Eastern Stalfos Spawn ES', 'Eastern Stalfos Spawn NW'], # Can use pots - 'Desert Compass Room': ['Desert Compass NE'], # Three popos - 'Desert Four Statues': ['Desert Four Statues NW', 'Desert Four Statues ES'], # Four popos + 'Hyrule Dungeon Armory Main': ['Hyrule Dungeon Armory S', 'Hyrule Dungeon Armory ES'], # One green guard + 'Hyrule Dungeon Armory Boomerang': ['Hyrule Dungeon Armory Boomerang WS'], # One blue guard + 'Eastern Stalfos Spawn': ['Eastern Stalfos Spawn ES', 'Eastern Stalfos Spawn NW'], # Can use pots + 'Desert Compass Room': ['Desert Compass NE'], # Three popos + 'Desert Four Statues': ['Desert Four Statues NW', 'Desert Four Statues ES'], # Four popos 'Hera Beetles': ['Hera Beetles WS'], # Three blue beetles and only two pots, and bombs don't work. - 'Tower Gold Knights': ['Tower Gold Knights SW', 'Tower Gold Knights EN'], # Two ball and chain + 'Tower Gold Knights': ['Tower Gold Knights SW', 'Tower Gold Knights EN'], # Two ball and chain 'Tower Dark Archers': ['Tower Dark Archers WN'], # Not a kill room 'Tower Red Spears': ['Tower Red Spears WN'], # Two spear soldiers - 'Tower Red Guards': ['Tower Red Guards EN', 'Tower Red Guards SW'], # Two usain bolts - 'Tower Circle of Pots': ['Tower Circle of Pots NW'], # Two spear soldiers. Plenty of pots. + 'Tower Red Guards': ['Tower Red Guards EN', 'Tower Red Guards SW'], # Two usain bolts + 'Tower Circle of Pots': ['Tower Circle of Pots NW'], # Two spear soldiers. Plenty of pots. 'PoD Turtle Party': ['PoD Turtle Party ES', 'PoD Turtle Party NW'], # Lots of turtles. - 'Thieves Basement Block': ['Thieves Basement Block WN'], # One blue and one red zazak and one Stalfos. Two pots. Need weapon. - 'Ice Stalfos Hint': ['Ice Stalfos Hint SE'], # Need bombs for big stalfos knights - 'Ice Pengator Trap': ['Ice Pengator Trap NE'], # Five pengators. Bomb-doable? - 'Mire 2': ['Mire 2 NE'], # Wizzrobes. Bombs dont work. - 'Mire Cross': ['Mire Cross ES'], # 4 Sluggulas. Bombs don't work - 'TR Twin Pokeys': ['TR Twin Pokeys EN', 'TR Twin Pokeys SW'], # Two pokeys - 'GT Petting Zoo': ['GT Petting Zoo SE'], # Dont make anyone do this room with bombs. - 'GT DMs Room': ['GT DMs Room SW'], # Four red stalfos - 'GT Gauntlet 1': ['GT Gauntlet 1 WN'], # Stalfos/zazaks - 'GT Gauntlet 2': ['GT Gauntlet 2 EN', 'GT Gauntlet 2 SW'], # Red stalfos - 'GT Gauntlet 3': ['GT Gauntlet 3 NW', 'GT Gauntlet 3 SW'], # Blue zazaks - 'GT Gauntlet 4': ['GT Gauntlet 4 NW', 'GT Gauntlet 4 SW'], # Red zazaks - 'GT Gauntlet 5': ['GT Gauntlet 5 NW', 'GT Gauntlet 5 WS'], # Stalfos and zazak - 'GT Wizzrobes 1': ['GT Wizzrobes 1 SW'], # Wizzrobes. Bombs don't work - 'GT Wizzrobes 2': ['GT Wizzrobes 2 SE', 'GT Wizzrobes 2 NE'] # Wizzrobes. Bombs don't work + 'Thieves Basement Block': ['Thieves Basement Block WN'], # One blue and one red zazak and one Stalfos. Two pots. Need weapon. + 'Ice Stalfos Hint': ['Ice Stalfos Hint SE'], # Need bombs for big stalfos knights + 'Ice Pengator Trap': ['Ice Pengator Trap NE'], # Five pengators. Bomb-doable? + 'Mire 2': ['Mire 2 NE'], # Wizzrobes. Bombs dont work. + 'Mire Cross': ['Mire Cross ES'], # 4 Sluggulas. Bombs don't work + 'TR Twin Pokeys': ['TR Twin Pokeys EN', 'TR Twin Pokeys SW'], # Two pokeys + 'GT Petting Zoo': ['GT Petting Zoo SE'], # Dont make anyone do this room with bombs. + 'GT DMs Room': ['GT DMs Room SW'], # Four red stalfos + 'GT Gauntlet 1': ['GT Gauntlet 1 WN'], # Stalfos/zazaks + 'GT Gauntlet 2': ['GT Gauntlet 2 EN', 'GT Gauntlet 2 SW'], # Red stalfos + 'GT Gauntlet 3': ['GT Gauntlet 3 NW', 'GT Gauntlet 3 SW'], # Blue zazaks + 'GT Gauntlet 4': ['GT Gauntlet 4 NW', 'GT Gauntlet 4 SW'], # Red zazaks + 'GT Gauntlet 5': ['GT Gauntlet 5 NW', 'GT Gauntlet 5 WS'], # Stalfos and zazak + 'GT Wizzrobes 1': ['GT Wizzrobes 1 SW'], # Wizzrobes. Bombs don't work + 'GT Wizzrobes 2': ['GT Wizzrobes 2 SE', 'GT Wizzrobes 2 NE'] # Wizzrobes. Bombs don't work } # all trap rooms? std_kill_doors_if_trapped = { @@ -1262,6 +1273,7 @@ std_kill_doors_if_trapped = { # 'Ice Lobby S' # can melt rule is sufficient } + def add_connection(parent_name, target_name, entrance_name, world, player): parent = world.get_region(parent_name, player) target = world.get_region(target_name, player) @@ -1299,7 +1311,7 @@ def standard_rules(world, player): return loc.item and loc.item.name in ['Bomb Upgrade (+10)' if world.bombbag[player] else 'Bombs (10)'] def standard_escape_rule(state): - return state.can_kill_most_things(player) or bomb_escape_rule() + return state.can_kill_most_things(player) or bomb_escape_rule() add_item_rule(world.get_location('Link\'s Uncle', player), uncle_item_rule) @@ -1326,6 +1338,7 @@ def standard_rules(world, player): def check_rule_list(state, r_list): return True if len(r_list) <= 0 else r_list[0](state) and check_rule_list(state, r_list[1:]) + rule_list, debug_path = find_rules_for_zelda_delivery(world, player) set_rule(world.get_entrance('Hyrule Castle Throne Room Tapestry', player), lambda state: state.has('Zelda Herself', player) and check_rule_list(state, rule_list)) @@ -1502,7 +1515,7 @@ def set_big_bomb_rules(world, player): set_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_reach('East Dark World', 'Region', player) and state.can_reach('Big Bomb Shop', 'Region', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player)) - #crossing peg bridge starting from the southern dark world + # crossing peg bridge starting from the southern dark world def cross_peg_bridge(state): return state.has('Hammer', player) and state.has_Pearl(player) @@ -1524,28 +1537,28 @@ def set_big_bomb_rules(world, player): # G = Glove if bombshop_entrance.name in Normal_LW_entrances: - #1. basic routes - #2. Can reach Eastern dark world some other way, mirror, get bomb, return to mirror spot, walk to pyramid: Needs mirror + # 1. basic routes + # 2. Can reach Eastern dark world some other way, mirror, get bomb, return to mirror spot, walk to pyramid: Needs mirror # -> M or BR add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: basic_routes(state) or state.has_Mirror(player)) elif bombshop_entrance.name in LW_walkable_entrances: - #1. Mirror then basic routes + # 1. Mirror then basic routes # -> M and BR add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and basic_routes(state)) elif bombshop_entrance.name in Northern_DW_entrances: - #1. Mirror and basic routes - #2. Go to south DW and then cross peg bridge: Need Mitts and hammer and moon pearl + # 1. Mirror and basic routes + # 2. Go to south DW and then cross peg bridge: Need Mitts and hammer and moon pearl # -> (Mitts and CPB) or (M and BR) add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.can_lift_heavy_rocks(player) and cross_peg_bridge(state)) or (state.has_Mirror(player) and basic_routes(state))) elif bombshop_entrance.name == 'Bumper Cave (Bottom)': - #1. Mirror and Lift rock and basic_routes - #2. Mirror and Flute and basic routes (can make difference if accessed via insanity or w/ mirror from connector, and then via hyrule castle gate, because no gloves are needed in that case) - #3. Go to south DW and then cross peg bridge: Need Mitts and hammer and moon pearl + # 1. Mirror and Lift rock and basic_routes + # 2. Mirror and Flute and basic routes (can make difference if accessed via insanity or w/ mirror from connector, and then via hyrule castle gate, because no gloves are needed in that case) + # 3. Go to south DW and then cross peg bridge: Need Mitts and hammer and moon pearl # -> (Mitts and CPB) or (((G or Flute) and M) and BR)) add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.can_lift_heavy_rocks(player) and cross_peg_bridge(state)) or (((state.can_lift_rocks(player) or state.can_flute(player)) and state.has_Mirror(player)) and basic_routes(state))) elif bombshop_entrance.name in Southern_DW_entrances: - #1. Mirror and enter via gate: Need mirror and Aga1 - #2. cross peg bridge: Need hammer and moon pearl + # 1. Mirror and enter via gate: Need mirror and Aga1 + # 2. cross peg bridge: Need hammer and moon pearl # -> CPB or (M and A) add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: cross_peg_bridge(state) or (state.has_Mirror(player) and state.has('Beat Agahnim 1', player))) elif bombshop_entrance.name in Isolated_DW_entrances: @@ -1809,7 +1822,6 @@ def set_inverted_big_bomb_rules(world, player): def set_bunny_rules(world, player, inverted): - # regions for the exits of multi-entrace caves/drops that bunny cannot pass # Note spiral cave may be technically passible, but it would be too absurd to require since OHKO mode is a thing. bunny_impassable_caves = ['Bumper Cave (top)', 'Bumper Cave (bottom)', 'Two Brothers House', @@ -1848,13 +1860,14 @@ def set_bunny_rules(world, player, inverted): return region.is_light_world else: return region.is_dark_world + def is_link(region): if inverted: return region.is_dark_world else: return region.is_light_world - def get_rule_to_add(region, location = None, connecting_entrance = None): + def get_rule_to_add(region, location=None, connecting_entrance=None): # In OWG, a location can potentially be superbunny-mirror accessible or # bunny revival accessible. if world.logic[player] == 'owglitches': @@ -1877,16 +1890,15 @@ def set_bunny_rules(world, player, inverted): # for each such entrance a new option is added that consist of: # a) being able to reach it, and # b) being able to access all entrances from there to `region` - seen = {region} - queue = deque([(region, [])]) + queue = deque([(region, [], {region})]) while queue: - (current, path) = queue.popleft() + (current, path, seen) = queue.popleft() for entrance in current.entrances: new_region = entrance.parent_region if new_region.type in (RegionType.Cave, RegionType.Dungeon) and new_region in seen: continue new_path = path + [entrance.access_rule] - seen.add(new_region) + new_seen = seen.union({new_region}) if not is_link(new_region): if world.logic[player] == 'owglitches': if region.type == RegionType.Dungeon and new_region.type != RegionType.Dungeon: @@ -1923,7 +1935,7 @@ def set_bunny_rules(world, player, inverted): else: continue if is_bunny(new_region): - queue.append((new_region, new_path)) + queue.append((new_region, new_path, new_seen)) else: # we have reached pure light world, so we have a new possible option possible_options.append(path_to_access_rule(new_path, entrance)) @@ -1975,7 +1987,6 @@ drop_dungeon_entrances = { "Skull Back Drop" } - bunny_revivable_entrances = { "Sewers Pull Switch", "TR Dash Room", "Swamp Boss", "Hera Boss", "Tower Agahnim 1", "Ice Lobby", "Sewers Rat Path", "PoD Falling Bridge", @@ -2035,14 +2046,14 @@ bunny_impassible_doors = { 'PoD Arena Landing Bonk Path', 'PoD Sexy Statue NW', 'PoD Map Balcony Drop Down', 'PoD Mimics 1 NW', 'PoD Falling Bridge Path N', 'PoD Falling Bridge Path S', 'PoD Mimics 2 NW', 'PoD Bow Statue Down Ladder', 'PoD Dark Pegs Landing to Right', - 'PoD Dark Pegs Left to Middle Barrier - Blue', 'PoD Dark Pegs Left to Ranged Crystal', + 'PoD Dark Pegs Left to Middle Barrier - Blue', 'PoD Dark Pegs Left to Ranged Crystal', 'PoD Turtle Party ES', 'PoD Turtle Party NW', 'PoD Callback Warp', 'Swamp Lobby Moat', 'Swamp Entrance Moat', 'Swamp Trench 1 Approach Swim Depart', 'Swamp Trench 1 Approach Key', 'Swamp Trench 1 Key Approach', 'Swamp Trench 1 Key Ledge Depart', 'Swamp Trench 1 Departure Approach', 'Swamp Trench 1 Departure Key', 'Swamp Hub Hook Path', 'Swamp Shortcut Blue Barrier', 'Swamp Trench 2 Pots Blue Barrier', 'Swamp Trench 2 Pots Wet', 'Swamp Trench 2 Departure Wet', 'Swamp West Ledge Hook Path', 'Swamp Barrier Ledge Hook Path', 'Swamp Attic Left Pit', 'Swamp Attic Right Pit', 'Swamp Push Statue NW', 'Swamp Push Statue NE', - 'Swamp Drain Right Switch', 'Swamp Waterway NE', 'Swamp Waterway N', 'Swamp Waterway NW', + 'Swamp Drain Right Switch', 'Swamp Waterway NE', 'Swamp Waterway N', 'Swamp Waterway NW', 'Skull Pot Circle WN', 'Skull Pot Circle Star Path', 'Skull Pull Switch S', 'Skull Big Chest N', 'Skull Big Chest Hookpath', 'Skull 2 East Lobby NW', 'Skull Back Drop Star Path', 'Skull 2 West Lobby NW', 'Skull 3 Lobby EN', 'Skull Star Pits SW', 'Skull Star Pits ES', 'Skull Torch Room WN', 'Skull Vines NW', @@ -2077,7 +2088,7 @@ bunny_impassible_doors = { 'GT Double Switch Exit to Blue Barrier', 'GT Firesnake Room Hook Path', 'GT Falling Bridge WN', 'GT Falling Bridge WS', 'GT Ice Armos NE', 'GT Ice Armos WS', 'GT Crystal Paths SW', 'GT Mimics 1 NW', 'GT Mimics 1 ES', 'GT Mimics 2 WS', 'GT Mimics 2 NE', 'GT Hidden Spikes EN', 'GT Cannonball Bridge SE', 'GT Gauntlet 1 WN', 'GT Gauntlet 2 EN', - 'GT Gauntlet 2 SW', 'GT Gauntlet 3 NW', 'GT Gauntlet 3 SW', 'GT Gauntlet 4 NW', 'GT Gauntlet 4 SW', + 'GT Gauntlet 2 SW', 'GT Gauntlet 3 NW', 'GT Gauntlet 3 SW', 'GT Gauntlet 4 NW', 'GT Gauntlet 4 SW', 'GT Gauntlet 5 NW', 'GT Gauntlet 5 WS', 'GT Lanmolas 2 ES', 'GT Lanmolas 2 NW', 'GT Wizzrobes 1 SW', 'GT Wizzrobes 2 SE', 'GT Wizzrobes 2 NE', 'GT Torch Cross ES', 'GT Falling Torches NE', 'GT Moldorm Gap', 'GT Validation Block Path' @@ -2227,7 +2238,7 @@ def create_key_rule(small_key_name, player, keys): def create_key_rule_allow_small(small_key_name, player, keys, location): loc = location.name - return lambda state: state.has_sm_key(small_key_name, player, keys) or (item_name(state, loc, player) in [(small_key_name, player)] and state.has_sm_key(small_key_name, player, keys-1)) + return lambda state: state.has_sm_key(small_key_name, player, keys) or (item_name(state, loc, player) in [(small_key_name, player)] and state.has_sm_key(small_key_name, player, keys - 1)) def create_key_rule_bk_exception(small_key_name, big_key_name, player, keys, bk_keys, bk_locs): @@ -2238,7 +2249,7 @@ def create_key_rule_bk_exception(small_key_name, big_key_name, player, keys, bk_ def create_key_rule_bk_exception_or_allow(small_key_name, big_key_name, player, keys, location, bk_keys, bk_locs): loc = location.name chest_names = [x.name for x in bk_locs] - return lambda state: (state.has_sm_key(small_key_name, player, keys) and not item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names)))) or (item_name(state, loc, player) in [(small_key_name, player)] and state.has_sm_key(small_key_name, player, keys-1)) or (item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names))) and state.has_sm_key(small_key_name, player, bk_keys)) + return lambda state: (state.has_sm_key(small_key_name, player, keys) and not item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names)))) or (item_name(state, loc, player) in [(small_key_name, player)] and state.has_sm_key(small_key_name, player, keys - 1)) or (item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names))) and state.has_sm_key(small_key_name, player, bk_keys)) def create_advanced_key_rule(key_logic, player, rule): From 7030ff01be58dc914c2e8f4928d9dce74a5cd806 Mon Sep 17 00:00:00 2001 From: aerinon Date: Wed, 15 Nov 2023 13:25:13 -0700 Subject: [PATCH 3/5] fix(ER): Links house on Dm won't allow a cave to be used twice anymore --- RELEASENOTES.md | 4 +++- source/overworld/EntranceShuffle2.py | 8 ++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 5abff4a8..a2486806 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -109,7 +109,9 @@ These are now independent of retro mode and have three options: None, Random, an # Bug Fixes and Notes -* * 1.2.0.22u +* 1.2.0.22u + * ? + * ER: Minor fix for Link's House on DM in Insanity (escape cave should not be re-used) * Fixed logic issues: * Self-locking key not allowed in Sanctuary in standard (typo fixed) * More advanced bunny-walking logic in dungeons (multiple paths considred) diff --git a/source/overworld/EntranceShuffle2.py b/source/overworld/EntranceShuffle2.py index da71c661..9f7ee90a 100644 --- a/source/overworld/EntranceShuffle2.py +++ b/source/overworld/EntranceShuffle2.py @@ -497,10 +497,14 @@ def do_links_house(entrances, exits, avail, cross_world): entrances.remove(chosen_dm_escape) entrances.remove(chosen_landing) else: - connect_entrance(chosen_dm_escape, chosen_cave.pop(0), avail) + chosen_cave_first = chosen_cave.pop(0) + connect_entrance(chosen_dm_escape, chosen_cave_first, avail) connect_exit(chosen_cave.pop(), chosen_landing, avail) entrances.remove(chosen_dm_escape) + avail.decoupled_exits.remove(chosen_cave_first) avail.decoupled_entrances.remove(chosen_landing) + # chosen cave has already been removed from exits + exits.add(chosen_cave_first) # this needs to be added back in if len(chosen_cave): exits.update([x for x in chosen_cave]) exits.update([x for item in multi_exit_caves for x in item]) @@ -1094,7 +1098,7 @@ def connect_entrance(entrancename, exit_name, avail): def connect_exit(exit_name, entrancename, avail): - world, player = avail.world, avail. player + world, player = avail.world, avail.player entrance = world.get_entrance(entrancename, player) exit = world.get_entrance(exit_name, player) From a50170c54f0ad5694888f4635ef456d015ee3e32 Mon Sep 17 00:00:00 2001 From: aerinon Date: Wed, 15 Nov 2023 14:33:11 -0700 Subject: [PATCH 4/5] fix: Flute doesn't work in rain state (even if pre-activated) except for glitched modes fix(msu): GTBK Music in DR --- RELEASENOTES.md | 5 +++-- Rom.py | 2 +- data/base2current.bps | Bin 94199 -> 90613 bytes 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index a2486806..0c754ac6 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -110,11 +110,12 @@ These are now independent of retro mode and have three options: None, Random, an # Bug Fixes and Notes * 1.2.0.22u - * ? + * Flute can't be activated in rain state (except glitched modes) (Thanks codemann!) * ER: Minor fix for Link's House on DM in Insanity (escape cave should not be re-used) - * Fixed logic issues: + * Logic issues: * Self-locking key not allowed in Sanctuary in standard (typo fixed) * More advanced bunny-walking logic in dungeons (multiple paths considred) + * MSU: GTBK song fix for DR (Thanks codemann!) * 1.2.0.21u * Fix that should force items needed for leaving Zelda's cell to before the throne room, so S&Q isn't mandatory * Small fix for Tavern Shuffle (thanks Catobat) diff --git a/Rom.py b/Rom.py index 9351970c..637cac4b 100644 --- a/Rom.py +++ b/Rom.py @@ -37,7 +37,7 @@ from source.dungeon.RoomList import Room0127 JAP10HASH = '03a63945398191337e896e5771f77173' -RANDOMIZERBASEHASH = '9b6e57f6e9d92934ce14276afd715849' +RANDOMIZERBASEHASH = '45778dbb52eca64611fbdb43a3a11ec8' class JsonRom(object): diff --git a/data/base2current.bps b/data/base2current.bps index 643e68f74b79b1aa1e7712e5e48e71831c6eedc5..f5e4d204be7572897f98e8a1cfc4ad9c9c9f9dd6 100644 GIT binary patch delta 4867 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 delta 8559 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 Date: Wed, 15 Nov 2023 16:47:17 -0700 Subject: [PATCH 5/5] build: forgot to include lower case --- Rom.py | 2 +- data/base2current.bps | Bin 90613 -> 94262 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 637cac4b..11bf35ce 100644 --- a/Rom.py +++ b/Rom.py @@ -37,7 +37,7 @@ from source.dungeon.RoomList import Room0127 JAP10HASH = '03a63945398191337e896e5771f77173' -RANDOMIZERBASEHASH = '45778dbb52eca64611fbdb43a3a11ec8' +RANDOMIZERBASEHASH = '7ba119d84e56617f8da16669f8b519c1' class JsonRom(object): diff --git a/data/base2current.bps b/data/base2current.bps index f5e4d204be7572897f98e8a1cfc4ad9c9c9f9dd6..14084390990019b05bc8462cea1d18ba84db3938 100644 GIT binary patch delta 5268 zcmYk94^&e}zQ-p76aGX33NR((V!uBCU65m z!X>#)E*QcE`IFKVqeV$sH5bJ#wxw$8+ig$nAKKlu_I3A}t#*wz!W;VDJLjF8&z+gy z{LReo{Jt~4jLjOJoOSkfUf_{eP7Vwe@tk702wF?u{hL`)N#3K=wSD)@P4~?3o@wL6 zrkC?3%q82#JCD6Sdfg3jdoA&~5G}c9TE61N&0DrN(c*{~M9GU`<6p!lo89Fl zXNERJca8Bw{1fH(6u@10xG7z>`gdH zZ{1~1rHt{Oue$>4O!0y{z5khwek6TSQTz%)QwR@J8J zRMpWr*VrSQuOrrWmFi|LlgXl+JUHHsvWAMF(GPT*&)b>B!4pjW?>=^HzrbWdCis0W z=#Si@A+``2N+ekXEx2G!3xtm9cgbgCm>S5=sy}D0FjvqONPAc`M-)phX(AsBT!9p~ zsGiE!vqzi;IRH-KS@y_T@=Auw&g{@RHlK4;yw|SN_yGVNwi6e|N#+XD(MdXLSv@1E zW0h`p(R(+QgG|&}*O4x=i`j9(!P7Cd3vN4JOSo-Pa(lY+PYHEw^qPM#*=20s%=yX3W_}L!tV18O z1r+`B(DH0&nc_5~9PEBh^1H;_i6c29^oxUR{y8?Eq!zj@#gaVPO&PP)Wy$Z#?+Tyn zuldTL54`nWS%Tpre?eor7W^UMP6D#+ z-oPO-UHdX5Bf^-t$d6o$2ALWTP6$%+4p5zNXR?f&aZlx@xZNx zPrga29{#1^>c7LdU0?M+k?aK>B*0%@?m#ji1IkGLK(Z|%+i$-r`?4>1+0-%>JH2l|p_+`##Nh3o=JrW&i{AzV9nkg9cEOX& znx~R|^l4J~gnFw_vJba;G6{f}e$OJ=7X+qr*;U9i4Q_>$nFG;4LEJB4WhWnYBs-nd z)lc8)>?UUi)){k&LEzzNO2}Xwohjd0~LFq5Q&Q=Ow zX#H~{_XZsVfjk(FiNnY+N=!aRg{j0qOe>}fa~3m-xrLd;crieL`(xrTGK>d8x7=*{b#9?F@B_RW@DW09Zn zbm0KE!^kj7Og=`1sl-4`E2ax`7Bh;ug_#61^WzK%z!PEOFfxo1laEnhDlrh#%9JP9 z(aO?K&fUT*9>v_k*0ViX5PQlb&W>WdonaYWw)J{b7p^}$yng|tPol}O_=ZO{I@Cp= z7j`0N*%9~N4HoMhaEjTpiucbs;*@v$wiN^6G!CP@-`nz+ zoN@17&HFNj$N<@38ms{_umPmt+$u0*Ne9W*U_Ca^nB=%pfzu4IiXaw1Ks238!UZ`t z%0L##ax{JSK5jY<(y%oHtOMgXpNhMGf$N6Pt;G4&*s=}}mh1S|bQ!lzr6-vXXp~hG zAd6mv3~3W#Vy@seiW*;@L96I?mjE7U$A&O**{* zbzjDr96WR;^$Ns=Y}{r&NTaJz`$b%n1lBP}bS69_NTE0D95FhS&ggA6<}fni@y~6c zRXV$DX43aS68#ezq2GXXROuYpJ!89s7oBYj#6@bjF9RfltQqSt{S&nb8FIli9SBh- zGwxW0#sZKb2gn%xcHZKp>Emh0bPnW#Oj=L5o#l`Z!yy&X$jnDLnkrEHYP?>&eD|l@ zd9@5h`yGef9!8+Hy{((P`?{jg_scF6AgapSl^j&coD%aqQ;A z56APXKkOsGj^}qgPhe+o?X3&?6a9&+>nwyo zE4(Z1@32g%w3DSiDN;i8U>DL=qdKCEm{4q05K=-Rl}g27Xex7x@BiMf_ceP{M<;>z zpl_afO{G{Sj^PUd4+Qx2>P_c!-hY_uuk=lN!6fl7;sNoi;)J3$jY!o1;S@D>bLw0F zH-67oQ!!&34)oaa;(PjJ;!??0SzhwS)z(=d$S&|b5Iq(|-*shEMmb23ShsB=5EH(D zGaVKw6^ETo8)1hk(AS{?KnMc)B7U%7tsqXiRsgUw^h*9FnULL(1^92s0FZ*Hkf@Lu z$$e@&R_md5bg)Xi#fvLFtO&c&Jof-EB~&G?3i~ehN`^IdX}hVpQm+nR_B})0h}hKj zcVU`%iL_Ko5DG$p1p@dcC%pAOz3+y9swYnV0Skt${E~+Dt+G;yOf0pPGM4DOWAZ7$ zRGeY*njGpf4;$3T?k)AOWthzeJq$SP=}Q(Zkt~*^X(~P6@|xN7QV*41$BOERH_WLo z3>)ypiLF{U%*>uWPHO6g!sZKMPq%G%A;%RIa>i*bQrQ-GZfAM8@6fbk!%Lh^@DfL6 zNo;8%&RU_iJ4*9!JHq$Og(iH#HLI=K<3q^XBOYOv9}vQUM@9Cd1}!SLlv`XuOM{^C zsNtw#x(1S3MZgxpvCsIw;8R|pwX#p=^osk7I@f6 zDjKzWaZC1qiAhG5j4OZufJ@Nz%%#tj$g^hp34-zOu`Q7v&;Wq1r}~+zH~Vo<+C|&^ zOJupFXTjxeI}U+>(4qq-Ht{l*03EwFbIkmgIlKYxYcImgdQ!zYt|5sn(|x&e-|S?nnvr)-iiRVzMV3RZkTUt$+RgW$1&w~ zqq<(>c_GJr0+wOZcBy{0rqYPhX+42h) zG&*&CWuvN9*@a~UFy8Ss!$w)IEVpN|G8ocx0M?)IvbfiJh!<9WVI*)kH0QJ%+e^a! zbw|9(ML&N$2s*3l4V{`g+piojGCZT9CgaK-fzhalEtJ`g?c!WZ*Ks|oyRbvZ>0LU5 zCN(ysqcPxI~%mEoO@wU|M&p@_Ne=-kRGs-VedCkt*lxdTyaT^@&iV7`Cn#Ky*fpVfNcFKMr!)q2MTF0RG7YZr$s?t(n-^KM5iqAJkP+{$3+ zD5?pDHbMc(3fh*nl7O7@B+bKWd_$uf3PSY$7MJvd$53P`a>+!TVYLl zXSY}j529{C^uqYG>@~SLOie;4Z1<__{Q;vHrwd+fp|cW0p>t8AJF}inuo{C>!V@n_ z=Z8Z2XmluatRyXh8bL4+(~D2KR_P3#@-dfy&^uOE&4tF;LZBE|pO_1os^%YLI!nsO zk`hS?-E0^D_s4Vec2Sb#IZ3f>f~_(>-R{hHz2?|&-fu2#%k+TE@cVC-w;uFldd0rL zNeS?>74>W+Bt<_{&{0f%{)Xpbj)&V|HOVE#so6}H!M)aGQ?+q`9EcSWNip~dEYC{( z%(<`Ah#$WiX6MpS*aKvt(57P0G_&v2j7M8Hgd;8%xq!I_3i&Z&g;b@$;)taYg2~ZT zugE9xV{ydN$is(EtkkZklB&|OLyxTS;qWs#DsL-Jy{6Vb44Fvkj}1c>0U^{%@Ah{P z7S+_G)>q1{H;ygRo1#U@k`hM0!fxTRcN17x6s%v~g{+D2MLhZRcEVP_Nyh8?~@ zRR`V$As=fhj!SE$ae}qDd`Z$PA^s-AqUsNza~e!itf*1c3W%Scw$g3$;BQe`BcF$T zLPsAv?g@r>v?$>Y)+sSBHZ(=53ag6!4oAOH;8nF%Hmmji06*UrGoQOyTG{Y-p;VkE z#TttR7KcaRo%DGpd{|=rH=Ju0P2+?8oj3?yAXaZ&y)ijYwpCIpmH{dACOLRF8pqx# zf51#MW@?QNjRi|BU2Q?J^sXj4znhI{wq;Y@$r7x!_$CTivwak6Etmx0^seFtT9L>h zK<_&@SYgKQq?2Er3COIhfTQMKd^(d)9T)nfDyd2=6G{lIpZu7=P9#4J@nYSblrW_s zPliiYG}&@OpL7#K1(43H%Vr*!^7?_VvKe5-rSpe+B#>F&VH7=(l&}T$-9RoWk>Aj; zT6%v6H~);Qx}GY7&b(S~)*NPT;{k~@)>a-Q;I69b#Cz3 z6&Ly@*c;@Uhl1=(iDbzK|CezdjSkp6_MOyHRDwd)98%y?9)oFxTn7AD_Hx`H!;VLwVi*4axDu A`v3p{ delta 1593 zcmW+!3vg3K6y29LP^86vu{70wX!!`(XbYrRCDaP)@JWOU%CB^aqE=c&pkUj#oA^jm zj7#%qwl#!Jg*MPMeGO^y5}Ohz0|lwVh`;f}#~JG|f;giN!wgQ`FgtVa-E+@5_wKwG zxS{;_ta4xz7yo46x2t{CocmG5hC|}ZDRU;*nOeSk^uWim<}H&Cro6-{N`4Y+)8-{; zi$~*++t;T0y3!UYmK^)dS#UsHwce`1mi$w{IIDz*Ne3UM8@}Z`t!tpca6rg5W)p0bZ2vSgak>w!Jo_Wu7<5%3T6pqug@;TVkTf2lyv(NKr?k=) z8*bC`)D9_2chxM`TJ8LlF$(mTXnfFd4>+pLyVaMREI~G&H`BfS-Hl*>L+n^S0F|#C+TM z?Nkq4U%K>0GCx4oMiT0BRNHGD)g#aGzLj3QWY5M70*W)#I!8@8Tw|Degg+-S3FE1F9r*%9LXFbb)Bz zy-1S8GAERZA{%#-yyyhyuQWnYmrqsMYK@&GhTQY>r6OfNPOn}EoGOo zg*&F~X7RZ41dDx24~qjzuaa)GidVlY%E0ei#Rb~2uDIpt-6QJHwDCutD8A{N`u&C3 zX=vNxKX&KdS+?k4R^BJ5!Zv*ok~hV1zLZqk#7W&p;;UTf^yihSh^)@PCl_RJA>|~c z_6wvSiuG1`Jd2}>M^?@K33aBy$LICR_;F5BObX#%L*v)$$dp!;-li0oN$g_?FT~`b`7)j zhnUze?m(SGjL`=M$p?luFI%HuTw!o!8<0%)+wEj05?AS=hsi*1%>N|l6Dy3k&@k+0 z=6#?)28P+*r|i!|95@$b8-!z6fKkJ-abgC<3L_dKqptbrtOA)&gI;ofEmt^09(@+E zkt2+=pEMbds)ab13|)H!8(=n&9e{GX(C%_-_Jt>f!spC{C=}R4dCI3XS5Vq}}Jnqep-ch~# wtNI~I{;A_~^Wv7cJAYNX$1}F=J6gKRP_%D