├── .gitattributes ├── .github ├── calcrom │ ├── calcrom.pl │ └── webhook.sh └── workflows │ └── build.yml ├── .gitignore ├── Makefile ├── README.md ├── asm ├── bg_2.s ├── macros.inc ├── macros │ ├── function.inc │ ├── m4a.inc │ ├── music_voice.inc │ └── scriptcmd.inc └── rom_header.inc ├── asmdiff.sh ├── config.mk ├── constants ├── constants.inc ├── gba.inc └── m4a.inc ├── data └── graphics.s ├── graphics.mk ├── graphics ├── animations │ ├── animation01.seq │ ├── animation02.seq │ ├── animation03.seq │ ├── animation04.seq │ ├── animation05.seq │ ├── animation06.seq │ ├── animation07.seq │ ├── animation08.seq │ ├── animation09.seq │ ├── animation10.seq │ ├── animation100.seq │ ├── animation101.seq │ ├── animation102.seq │ ├── animation103.seq │ ├── animation104.seq │ ├── animation105.seq │ ├── animation106.seq │ ├── animation107.seq │ ├── animation108.seq │ ├── animation109.seq │ ├── animation11.seq │ ├── animation110.seq │ ├── animation111.seq │ ├── animation112.seq │ ├── animation12.seq │ ├── animation13.seq │ ├── animation14.seq │ ├── animation15.seq │ ├── animation16.seq │ ├── animation17.seq │ ├── animation18.seq │ ├── animation19.seq │ ├── animation20.seq │ ├── animation21.seq │ ├── animation22.seq │ ├── animation23.seq │ ├── animation24.seq │ ├── animation25.seq │ ├── animation26.seq │ ├── animation27.seq │ ├── animation28.seq │ ├── animation29.seq │ ├── animation30.seq │ ├── animation31.seq │ ├── animation32.seq │ ├── animation33.seq │ ├── animation34.seq │ ├── animation35.seq │ ├── animation36.seq │ ├── animation37.seq │ ├── animation38.seq │ ├── animation39.seq │ ├── animation40.seq │ ├── animation41.seq │ ├── animation42.seq │ ├── animation43.seq │ ├── animation44.seq │ ├── animation45.seq │ ├── animation46.seq │ ├── animation47.seq │ ├── animation48.seq │ ├── animation49.seq │ ├── animation50.seq │ ├── animation51.seq │ ├── animation52.seq │ ├── animation53.seq │ ├── animation54.seq │ ├── animation55.seq │ ├── animation56.seq │ ├── animation57.seq │ ├── animation58.seq │ ├── animation59.seq │ ├── animation60.seq │ ├── animation61.seq │ ├── animation62.seq │ ├── animation63.seq │ ├── animation64.seq │ ├── animation65.seq │ ├── animation66.seq │ ├── animation67.seq │ ├── animation68.seq │ ├── animation69.seq │ ├── animation70.seq │ ├── animation71.seq │ ├── animation72.seq │ ├── animation73.seq │ ├── animation74.seq │ ├── animation75.seq │ ├── animation76.seq │ ├── animation77.seq │ ├── animation78.seq │ ├── animation79.seq │ ├── animation80.seq │ ├── animation81.seq │ ├── animation82.seq │ ├── animation83.seq │ ├── animation84.seq │ ├── animation85.seq │ ├── animation86.seq │ ├── animation87.seq │ ├── animation88.seq │ ├── animation89.seq │ ├── animation90.seq │ ├── animation91.seq │ ├── animation92.seq │ ├── animation93.seq │ ├── animation94.seq │ ├── animation95.seq │ ├── animation96.seq │ ├── animation97.seq │ ├── animation98.seq │ ├── animation99.seq │ ├── characters │ │ ├── animation01.pix │ │ ├── animation01.seq │ │ ├── animation02.pix │ │ ├── animation02.seq │ │ ├── animation03.pix │ │ ├── animation03.seq │ │ ├── animation04.pix │ │ ├── animation04.seq │ │ ├── animation05.pix │ │ ├── animation05.seq │ │ ├── animation06.pix │ │ ├── animation06.seq │ │ ├── animation07.pix │ │ ├── animation07.seq │ │ ├── animation08.pix │ │ ├── animation08.seq │ │ ├── animation09.pix │ │ ├── animation09.seq │ │ ├── animation10.pix │ │ ├── animation10.seq │ │ ├── animation11.pix │ │ ├── animation11.seq │ │ ├── animation12.pix │ │ ├── animation12.seq │ │ ├── animation13.pix │ │ ├── animation13.seq │ │ ├── animation14.pix │ │ ├── animation14.seq │ │ ├── animation15.pix │ │ ├── animation15.seq │ │ ├── animation16.pix │ │ ├── animation16.seq │ │ ├── animation17.pix │ │ ├── animation17.seq │ │ ├── animation18.pix │ │ ├── animation18.seq │ │ ├── animation19.pix │ │ ├── animation19.seq │ │ ├── animation20.pix │ │ ├── animation20.seq │ │ ├── animation21.pix │ │ ├── animation21.seq │ │ ├── animation22.pix │ │ ├── animation22.seq │ │ ├── animation23.pix │ │ ├── animation23.seq │ │ ├── animation24.pix │ │ ├── animation24.seq │ │ ├── animation25.pix │ │ ├── animation25.seq │ │ ├── animation26.pix │ │ ├── animation26.seq │ │ ├── animation27.pix │ │ ├── animation27.seq │ │ ├── animation28.pix │ │ ├── animation28.seq │ │ ├── animation29.pix │ │ ├── animation29.seq │ │ ├── animation30.pix │ │ ├── animation30.seq │ │ ├── animation31.pix │ │ ├── animation31.seq │ │ ├── animation32.pix │ │ ├── animation32.seq │ │ ├── animation33.pix │ │ ├── animation33.seq │ │ ├── animation34.pix │ │ ├── animation34.seq │ │ ├── animation35.pix │ │ └── animation35.seq │ ├── tileset01.pix │ ├── tileset02.pix │ └── tileset03.pix ├── bustup_edgeworth.bin ├── bustup_edgeworth.png ├── bustup_franziska.bin ├── bustup_franziska.pal ├── bustup_franziska.png ├── bustup_phoenix.bin ├── bustup_phoenix.png ├── case1_opening_purple_cloud_palettes.pal ├── charset.pal ├── charset.png ├── choice_greyed_out.pal ├── choice_selected.pal ├── counsel_bench.pal ├── counsel_bench_1.png ├── counsel_bench_2.png ├── counsel_bench_3.png ├── counsel_bench_4.png ├── court_scrolls │ └── court_scroll.png ├── detention_center_bottom_tiles.png ├── episode_select_options.png ├── evidence_profile_descriptions │ ├── evidence │ │ ├── 001828C8_0.png │ │ ├── 001828C8_1.png │ │ ├── 001828C8_2.png │ │ ├── admission_ticket.png │ │ ├── bear_clock.png │ │ ├── bear_puzzle_0.png │ │ ├── bear_puzzle_1.png │ │ ├── bellboy_uniform_0.png │ │ ├── bellboy_uniform_1.png │ │ ├── bloody_button.png │ │ ├── bloody_knife.png │ │ ├── bloody_scarf.png │ │ ├── broken_bottle.png │ │ ├── broken_glasses.png │ │ ├── dustins_baseball_glove.png │ │ ├── engagement_ring.png │ │ ├── franziskas_whip.png │ │ ├── frequency_detector.png │ │ ├── gatewater_hotel_button.png │ │ ├── generic_affidavit_0.png │ │ ├── generic_affidavit_1.png │ │ ├── generic_autopsy_report_0.png │ │ ├── generic_autopsy_report_1.png │ │ ├── generic_autopsy_report_2.png │ │ ├── generic_autopsy_report_3.png │ │ ├── generic_autopsy_report_4.png │ │ ├── generic_envelope_0.png │ │ ├── generic_envelope_1.png │ │ ├── generic_letter_0.png │ │ ├── generic_letter_1.png │ │ ├── generic_letter_2.png │ │ ├── generic_newspaper_clipping_0.png │ │ ├── generic_newspaper_clipping_1.png │ │ ├── generic_photo_0.png │ │ ├── generic_photo_1.png │ │ ├── generic_photo_10.png │ │ ├── generic_photo_11.png │ │ ├── generic_photo_2.png │ │ ├── generic_photo_3.png │ │ ├── generic_photo_4.png │ │ ├── generic_photo_5.png │ │ ├── generic_photo_6.png │ │ ├── generic_photo_7.png │ │ ├── generic_photo_8.png │ │ ├── generic_photo_9.png │ │ ├── generic_video_0.png │ │ ├── generic_video_1.png │ │ ├── gossip_column.png │ │ ├── greys_gun.png │ │ ├── guitar_case_0.png │ │ ├── guitar_case_1.png │ │ ├── gumshoes_coat.png │ │ ├── imported_bear.png │ │ ├── juans_autograph.png │ │ ├── kurain_sacred_urn_0.png │ │ ├── kurain_sacred_urn_1.png │ │ ├── large_box.png │ │ ├── large_chest.png │ │ ├── leon.png │ │ ├── lottas_camera_case_0.png │ │ ├── lottas_camera_case_1.png │ │ ├── magatama_charged.png │ │ ├── magatama_discharged.png │ │ ├── max_poster.png │ │ ├── max_silk_hat.png │ │ ├── mayas_cellphone.png │ │ ├── mayas_knife.png │ │ ├── mayas_robe_0.png │ │ ├── mayas_robe_1.png │ │ ├── meeting_room_key.png │ │ ├── meeting_room_screen.png │ │ ├── milk.png │ │ ├── moes_grapes.png │ │ ├── money.png │ │ ├── newspaper_article.png │ │ ├── note_from_the_safe_0.png │ │ ├── note_from_the_safe_1.png │ │ ├── note_from_the_safe_2.png │ │ ├── note_from_the_safe_3.png │ │ ├── pearls_ball.png │ │ ├── pepper.png │ │ ├── phoenix_badge.png │ │ ├── phoenix_business_card_0.png │ │ ├── phoenix_business_card_1.png │ │ ├── phoenix_cellphone_0.png │ │ ├── phoenix_cellphone_1.png │ │ ├── photo_of_celeste.png │ │ ├── playing_card.png │ │ ├── playing_cards.png │ │ ├── receipt.png │ │ ├── regent.png │ │ ├── reginas_west.png │ │ ├── shelly_pistol_0.png │ │ ├── shelly_pistol_1.png │ │ ├── shellys_calling_card.png │ │ ├── shoe.png │ │ ├── swatch_from_mayas_robe.png │ │ ├── threatening_note_full_0.png │ │ ├── threatening_note_full_1.png │ │ ├── threatening_note_full_2.png │ │ ├── threatening_note_full_3.png │ │ ├── threatening_note_torn.png │ │ ├── tomato_juice_0.png │ │ ├── tomato_juice_1.png │ │ ├── tracking_device.png │ │ ├── transceiver_0.png │ │ ├── transceiver_1.png │ │ ├── trilo.png │ │ ├── video_camera.png │ │ └── video_transmitter.png │ ├── evidence_profile_descriptions.pal │ └── profiles │ │ ├── acro_0.png │ │ ├── acro_1.png │ │ ├── adrian_andrews.png │ │ ├── ami_fey.png │ │ ├── bat.png │ │ ├── ben_0.png │ │ ├── ben_1.png │ │ ├── celeste_inpax_0.png │ │ ├── celeste_inpax_1.png │ │ ├── dick_gumshoe.png │ │ ├── disguised_shelly_de_killer.png │ │ ├── dr_hotti.png │ │ ├── dustin_prince.png │ │ ├── franziska_von_karma_0.png │ │ ├── franziska_von_karma_1.png │ │ ├── ini_miney_0.png │ │ ├── ini_miney_1.png │ │ ├── ini_miney_2.png │ │ ├── juan_corrida.png │ │ ├── lotta_hart_0.png │ │ ├── lotta_hart_1.png │ │ ├── maggey_byrde.png │ │ ├── matt_engarde_0.png │ │ ├── matt_engarde_1.png │ │ ├── maximillion_galactica.png │ │ ├── maya_fey_0.png │ │ ├── maya_fey_1.png │ │ ├── maya_fey_2.png │ │ ├── maya_fey_3.png │ │ ├── mia_fey.png │ │ ├── miles_edgeworth.png │ │ ├── mimi_miney.png │ │ ├── moe.png │ │ ├── morgan_fey_0.png │ │ ├── morgan_fey_1.png │ │ ├── pearl_fey_0.png │ │ ├── pearl_fey_1.png │ │ ├── regina_berry.png │ │ ├── richard_wellington.png │ │ ├── russell_berry.png │ │ ├── shelly_de_killer.png │ │ ├── turner_grey_0.png │ │ ├── turner_grey_1.png │ │ ├── wendy_oldbag.png │ │ ├── will_powers.png │ │ └── winston_payne.png ├── evidence_profile_pictures │ ├── dummy_00180848.png │ ├── dummy_00185168.png │ ├── dummy_00191468.png │ ├── evidence │ │ ├── 001828C8.png │ │ ├── 001A6188.png │ │ ├── admission_ticket.png │ │ ├── bear_clock.png │ │ ├── bear_puzzle.png │ │ ├── bellboy_uniform.png │ │ ├── bloody_button.png │ │ ├── bloody_knife.png │ │ ├── bloody_scarf.png │ │ ├── broken_bottle.png │ │ ├── broken_glasses.png │ │ ├── dustins_baseball_glove.png │ │ ├── engagement_ring.png │ │ ├── franziskas_whip.png │ │ ├── frequency_detector.png │ │ ├── gatewater_hotel_button.png │ │ ├── generic_affidavit.png │ │ ├── generic_autopsy_report.png │ │ ├── generic_envelope.png │ │ ├── generic_letter.png │ │ ├── generic_newspaper_clipping.png │ │ ├── generic_photo.png │ │ ├── generic_video.png │ │ ├── gossip_column.png │ │ ├── greys_gun.png │ │ ├── guitar_case.png │ │ ├── gumshoes_coat.png │ │ ├── imported_bear.png │ │ ├── juans_autograph.png │ │ ├── kurain_sacred_urn.png │ │ ├── large_box.png │ │ ├── large_chest.png │ │ ├── leon.png │ │ ├── lottas_camera_case.png │ │ ├── magatama_charged.png │ │ ├── magatama_discharged.png │ │ ├── max_poster.png │ │ ├── max_silk_hat.png │ │ ├── mayas_cellphone.png │ │ ├── mayas_knife.png │ │ ├── mayas_robe.png │ │ ├── meeting_room_key.png │ │ ├── meeting_room_screen.png │ │ ├── milk.png │ │ ├── moes_grapes.png │ │ ├── money.png │ │ ├── newspaper_article.png │ │ ├── note_from_the_safe.png │ │ ├── pearls_ball.png │ │ ├── pepper.png │ │ ├── phoenix_badge.png │ │ ├── phoenix_business_card.png │ │ ├── phoenix_cellphone.png │ │ ├── photo_of_celeste.png │ │ ├── playing_card.png │ │ ├── playing_cards.png │ │ ├── receipt.png │ │ ├── regent.png │ │ ├── reginas_west.png │ │ ├── shelly_pistol.png │ │ ├── shellys_calling_card.png │ │ ├── shoe.png │ │ ├── swatch_from_mayas_robe.png │ │ ├── threatening_note_full.png │ │ ├── threatening_note_torn.png │ │ ├── tomato_juice.png │ │ ├── tracking_device.png │ │ ├── transceiver.png │ │ ├── trilo.png │ │ ├── video_camera.png │ │ └── video_transmitter.png │ └── profiles │ │ ├── acro.png │ │ ├── adrian_andrews.png │ │ ├── ami_fey.png │ │ ├── bat.png │ │ ├── ben.png │ │ ├── celeste_inpax.png │ │ ├── dick_gumshoe.png │ │ ├── disguised_shelly_de_killer.png │ │ ├── dr_hotti.png │ │ ├── dustin_prince.png │ │ ├── franziska_von_karma.png │ │ ├── ini_miney.png │ │ ├── juan_corrida.png │ │ ├── lotta_hart.png │ │ ├── maggey_byrde.png │ │ ├── manfred_von_karma.png │ │ ├── matt_engarde.png │ │ ├── maximillion_galactica.png │ │ ├── maya_fey.png │ │ ├── mia_fey.png │ │ ├── miles_edgeworth.png │ │ ├── mimi_miney.png │ │ ├── moe.png │ │ ├── morgan_fey.png │ │ ├── pearl_fey.png │ │ ├── regina_berry.png │ │ ├── richard_wellington.png │ │ ├── russell_berry.png │ │ ├── shelly_de_killer.png │ │ ├── turner_grey.png │ │ ├── wendy_oldbag.png │ │ ├── will_powers.png │ │ └── winston_payne.png ├── from_save_or_beginning_options.png ├── location_choices │ ├── 001DE3E8.png │ ├── 001DEBE8.png │ ├── 001DF3E8.png │ ├── 001DFBE8.png │ ├── 001E03E8.png │ ├── 001E0BE8.png │ ├── 001E13E8.png │ ├── 001E1BE8.png │ ├── 001E23E8.png │ ├── 001E2BE8.png │ ├── 001E33E8.png │ ├── 001E3BE8.png │ ├── 001E43E8.png │ ├── 001E4BE8.png │ ├── 001E53E8.png │ ├── 001E5BE8.png │ ├── 001E63E8.png │ ├── 001E6BE8.png │ ├── 001E73E8.png │ ├── 001E7BE8.png │ ├── 001E83E8.png │ ├── 001E8BE8.png │ ├── 001E93E8.png │ ├── 001E9BE8.png │ ├── 001EA3E8.png │ └── 001EABE8.png ├── map_markers │ ├── case3_main_gate.png │ ├── case4_boat_horizontal.png │ ├── case4_boat_rental_shop.png │ ├── case4_boat_vertical.png │ ├── case4_lotta_suv.png │ ├── double_door_diagram.png │ ├── folding_screen.png │ ├── green.png │ ├── killer.png │ ├── palette.pal │ ├── red_dot.png │ └── victim.png ├── nickel_samurai_case3_op_zoomin.bin ├── nickel_samurai_case3_op_zoomin.png ├── psyche_lock_chain_animation_01.bin ├── psyche_lock_chain_animation_02.bin ├── psyche_lock_chain_animation_03.bin ├── psyche_lock_chain_animation_04.bin ├── psyche_lock_chain_animation_05.bin ├── psyche_lock_chain_animation_06.bin ├── psyche_lock_chain_animation_07.bin ├── psyche_lock_chain_animation_08.bin ├── psyche_lock_chain_animation_09.bin ├── psyche_lock_chain_animation_10.bin ├── psyche_lock_chain_animation_11.bin ├── psyche_lock_chain_animation_12.bin ├── psyche_lock_chain_animation_13.bin ├── psyche_lock_chain_animation_14.bin ├── psyche_lock_chain_animation_15.bin ├── psyche_lock_chain_animation_16.bin ├── psyche_lock_chain_animation_17.bin ├── psyche_lock_chain_animation_18.bin ├── psyche_lock_chain_animation_19.bin ├── psyche_lock_chain_animation_20.bin ├── psyche_lock_chain_tileset.png ├── save_yes_no.png ├── speedlines_first_and_last_columns.png ├── striped_images │ ├── backgrounds │ │ ├── acros_room.png │ │ ├── airport.png │ │ ├── berry_big_circus_entrance_day.png │ │ ├── berry_big_circus_entrance_night.png │ │ ├── circus_cafeteria.png │ │ ├── circus_courtyard.png │ │ ├── circus_tent.png │ │ ├── court │ │ │ ├── co_counsel.png │ │ │ ├── court_room.png │ │ │ ├── defendant_lobby.png │ │ │ ├── defense_side.png │ │ │ ├── judge_seat.png │ │ │ ├── prosecution_side.png │ │ │ └── witness_backdrop.png │ │ ├── gatewater_hotel_ballroom.png │ │ ├── gatewater_hotel_hallway.png │ │ ├── gatewater_hotel_lobby.png │ │ ├── gavel │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ ├── hotti_clinic.png │ │ ├── juan_corridas_hotel_room.png │ │ ├── kurain_main_hall.png │ │ ├── kurain_spare_room.png │ │ ├── kurain_spare_room_with_box.png │ │ ├── matt_engardes_hotel_room.png │ │ ├── matt_engardes_house.png │ │ ├── meeting_room.png │ │ ├── moes_room.png │ │ ├── mr_berrys_office.png │ │ ├── secret_room.png │ │ ├── steel_samurai.png │ │ ├── winding_way.png │ │ ├── wine_cellar.png │ │ └── wright_co_law_offices_day.png │ ├── capcom_screen.png │ ├── capcom_screen_bw.png │ ├── case1_intro_nightmare_1.png │ ├── case1_intro_nightmare_2.png │ ├── case1_intro_richard_looking.png │ ├── case1_intro_richard_with_fire_extinguisher.png │ ├── case1_maggey_spotting_richard.png │ ├── case1_maggey_with_dustin.png │ ├── case1_photo_of_dustin_dead.png │ ├── case1_photo_of_maggeys_name.png │ ├── case2_box_behind_screen.png │ ├── case2_diagram_of_fey_manor.png │ ├── case2_diagram_of_meeting_room.png │ ├── case2_ini_with_sleeping_maya.png │ ├── case2_ini_with_summoned_mimi.png │ ├── case2_intro_car.png │ ├── case2_intro_car_crash.png │ ├── case2_intro_car_lights.png │ ├── case2_intro_phoenix_with_maya.png │ ├── case2_maya_with_summoned_mia.png │ ├── case2_maya_with_turner.png │ ├── case2_mayas_robe.png │ ├── case2_mimi_in_hospital.png │ ├── case2_morgan_fey.png │ ├── case2_newspaper_car_crash_page_1.png │ ├── case2_newspaper_car_crash_page_2.png │ ├── case2_newspaper_car_crash_page_3.png │ ├── case2_pearl_fixing_urn.png │ ├── case2_photo_of_attacker.png │ ├── case2_photo_of_incident.png │ ├── case2_photo_of_summoned_mia.png │ ├── case2_turner_with_gun.png │ ├── case3_acro_dropping_statue.png │ ├── case3_acro_spotting_statue.png │ ├── case3_acros_bottom_half_in_wheelchair.png │ ├── case3_bat_with_lion.png │ ├── case3_ben_spotting_max.png │ ├── case3_bust_of_maximillion.png │ ├── case3_dead_russell_outside.png │ ├── case3_diagram_circus.png │ ├── case3_edgeworth_at_airport.png │ ├── case3_intro_circus.png │ ├── case3_intro_lion_blue_yellow.png │ ├── case3_intro_lion_green_red.png │ ├── case3_intro_maximillion.png │ ├── case3_max_grabbing_bottle.png │ ├── case3_maximillion_with_contract.png │ ├── case3_photo_of_maximillion_with_trophy.png │ ├── case3_photo_of_russell.png │ ├── case3_poster_of_maximillion.png │ ├── case3_russell_about_to_get_hit.png │ ├── case3_russell_getting_hit.png │ ├── case3_threatening_note_text.png │ ├── case4_adrian_finding_juan_with_juice.png │ ├── case4_adrian_puttin_on_costume.png │ ├── case4_adrian_with_sleeping_matt.png │ ├── case4_backdrop_of_matt_with_partner.png │ ├── case4_calling_card.png │ ├── case4_calling_card_with_drawing.png │ ├── case4_diagram_hotel.png │ ├── case4_franziska_entering.png │ ├── case4_intro_heroes_lined_up.png │ ├── case4_intro_nickel_samurai_appears.png │ ├── case4_intro_nickel_samurai_with_fan.png │ ├── case4_jammin_ninja_poster.png │ ├── case4_juan_finding_dead_celeste.png │ ├── case4_matt_getting_juice_from_shelly.png │ ├── case4_nickel_samurai_poster.png │ ├── case4_over_the_clouds.png │ ├── case4_phoenix_leaving_bad_end.png │ ├── case4_phoenix_with_maya_and_pearl.png │ ├── case4_photo_of_juan_dead.png │ ├── case4_photo_of_nickel_samurai_in_hall.png │ ├── case4_shelly_handing_over_bear.png │ ├── case4_tabloid_article.png │ ├── court_room_blue.png │ ├── detention_center.png │ ├── dummy_background_1.png │ ├── dummy_background_2.png │ ├── kurain_village.png │ ├── police_station_lobby.png │ ├── pwaa1_class_trial_edgeworth.png │ ├── pwaa1_dead_mia_in_office.png │ ├── pwaa1_edgeworth_picking_up_gun.png │ └── speedlines.png ├── talk_choices │ ├── 001EB3E8.png │ ├── 001EBBE8.png │ ├── 001EC3E8.png │ ├── 001ECBE8.png │ ├── 001ED3E8.png │ ├── 001EDBE8.png │ ├── 001EE3E8.png │ ├── 001EEBE8.png │ ├── 001EF3E8.png │ ├── 001EFBE8.png │ ├── 001F03E8.png │ ├── 001F0BE8.png │ ├── 001F13E8.png │ ├── 001F1BE8.png │ ├── 001F23E8.png │ ├── 001F2BE8.png │ ├── 001F33E8.png │ ├── 001F3BE8.png │ ├── 001F43E8.png │ ├── 001F4BE8.png │ ├── 001F53E8.png │ ├── 001F5BE8.png │ ├── 001F63E8.png │ ├── 001F6BE8.png │ ├── 001F73E8.png │ ├── 001F7BE8.png │ ├── 001F83E8.png │ ├── 001F8BE8.png │ ├── 001F93E8.png │ ├── 001F9BE8.png │ ├── 001FA3E8.png │ ├── 001FABE8.png │ ├── 001FB3E8.png │ ├── 001FBBE8.png │ ├── 001FC3E8.png │ ├── 001FCBE8.png │ ├── 001FD3E8.png │ ├── 001FDBE8.png │ ├── 001FE3E8.png │ ├── 001FEBE8.png │ ├── 001FF3E8.png │ ├── 001FFBE8.png │ ├── 002003E8.png │ ├── 00200BE8.png │ ├── 002013E8.png │ ├── 00201BE8.png │ ├── 002023E8.png │ ├── 00202BE8.png │ ├── 002033E8.png │ ├── 00203BE8.png │ ├── 002043E8.png │ ├── 00204BE8.png │ ├── 002053E8.png │ ├── 00205BE8.png │ ├── 002063E8.png │ ├── 00206BE8.png │ ├── 002073E8.png │ ├── 00207BE8.png │ ├── 002083E8.png │ ├── 00208BE8.png │ ├── 002093E8.png │ ├── 00209BE8.png │ ├── 0020A3E8.png │ ├── 0020ABE8.png │ ├── 0020B3E8.png │ ├── 0020BBE8.png │ ├── 0020C3E8.png │ ├── 0020CBE8.png │ ├── 0020D3E8.png │ ├── 0020DBE8.png │ ├── 0020E3E8.png │ ├── 0020EBE8.png │ ├── 0020F3E8.png │ ├── 0020FBE8.png │ ├── 002103E8.png │ ├── 00210BE8.png │ ├── 002113E8.png │ ├── 00211BE8.png │ ├── 002123E8.png │ ├── 00212BE8.png │ ├── 002133E8.png │ ├── 00213BE8.png │ ├── 002143E8.png │ ├── 00214BE8.png │ ├── 002153E8.png │ ├── 00215BE8.png │ ├── 002163E8.png │ ├── 00216BE8.png │ ├── 002173E8.png │ ├── 00217BE8.png │ ├── 002183E8.png │ ├── 00218BE8.png │ ├── 002193E8.png │ ├── 00219BE8.png │ ├── 0021A3E8.png │ ├── 0021ABE8.png │ ├── 0021B3E8.png │ ├── 0021BBE8.png │ ├── 0021C3E8.png │ ├── 0021CBE8.png │ ├── 0021D3E8.png │ ├── 0021DBE8.png │ ├── 0021E3E8.png │ ├── 0021EBE8.png │ ├── 0021F3E8.png │ ├── 0021FBE8.png │ ├── 002203E8.png │ ├── 00220BE8.png │ ├── 002213E8.png │ ├── 00221BE8.png │ ├── 002223E8.png │ ├── 00222BE8.png │ ├── 002233E8.png │ ├── 00223BE8.png │ ├── 002243E8.png │ ├── 00224BE8.png │ ├── 002253E8.png │ ├── 00225BE8.png │ ├── 002263E8.png │ ├── 00226BE8.png │ ├── 002273E8.png │ ├── 00227BE8.png │ ├── 002283E8.png │ ├── 00228BE8.png │ ├── 002293E8.png │ ├── 00229BE8.png │ ├── 0022A3E8.png │ ├── 0022ABE8.png │ ├── 0022B3E8.png │ ├── 0022BBE8.png │ ├── 0022C3E8.png │ ├── 0022CBE8.png │ ├── 0022D3E8.png │ ├── 0022DBE8.png │ ├── 0022E3E8.png │ ├── 0022EBE8.png │ ├── 0022F3E8.png │ ├── 0022FBE8.png │ ├── 002303E8.png │ ├── 00230BE8.png │ └── 002313E8.png ├── title_screen.png ├── title_screen_demo.png ├── ui │ ├── court_record │ │ ├── controller_buttons.png │ │ ├── controls_blurb.pal │ │ ├── evidence_text.png │ │ ├── present_back_text.png │ │ └── profiles_text.png │ ├── healthbar_frame.pal │ ├── healthbar_frame_1.png │ ├── healthbar_frame_2.png │ ├── healthbar_frame_3.png │ ├── healthbar_progress.png │ ├── healthbar_progress_1.pal │ ├── healthbar_progress_2.pal │ ├── healthbar_progress_3.pal │ ├── healthbar_progress_4.pal │ ├── healthbar_progress_5.pal │ ├── healthbar_progress_6.pal │ ├── healthbar_progress_7.pal │ ├── healthbar_progress_8.pal │ ├── investigation │ │ ├── action_buttons.png │ │ ├── action_buttons_0.pal │ │ ├── action_buttons_1.pal │ │ ├── checkmark.png │ │ ├── examine_cursor.png │ │ ├── examine_cursor_00.pal │ │ ├── examine_cursor_01.pal │ │ ├── examine_cursor_02.pal │ │ ├── examine_cursor_03.pal │ │ ├── examine_cursor_04.pal │ │ ├── examine_cursor_05.pal │ │ ├── examine_cursor_06.pal │ │ ├── examine_cursor_07.pal │ │ ├── examine_cursor_08.pal │ │ ├── examine_cursor_09.pal │ │ ├── examine_cursor_10.pal │ │ ├── examine_cursor_11.pal │ │ ├── examine_cursor_12.pal │ │ ├── examine_cursor_13.pal │ │ ├── examine_cursor_14.pal │ │ ├── examine_cursor_15.pal │ │ ├── examine_cursor_16.pal │ │ ├── psyche_lock.pal │ │ ├── psyche_lock.png │ │ ├── scroll_prompt.png │ │ └── stop_button.png │ ├── left_right_arrows.png │ ├── message_box │ │ ├── nametags.png │ │ └── save_game_tiles.png │ ├── new_game_continue.png │ ├── new_game_continue_0.pal │ ├── new_game_continue_1.pal │ ├── new_game_continue_2.pal │ ├── new_game_continue_3.pal │ ├── new_game_continue_4.pal │ ├── new_game_continue_5.pal │ └── trial │ │ ├── confetti.png │ │ ├── confetti_0.pal │ │ ├── confetti_1.pal │ │ ├── confetti_2.pal │ │ ├── confetti_3.pal │ │ ├── game_over_doors.png │ │ ├── game_over_text.png │ │ ├── guilty.pal │ │ ├── guilty1.png │ │ ├── guilty_not_guilty2.png │ │ ├── not_guilty.pal │ │ ├── not_guilty1.png │ │ ├── press_present_buttons.png │ │ ├── testimony_text_tiles.png │ │ └── unused_testimony_characters.png ├── unk_13DC7C.png ├── unk_14DA60.pal ├── unk_14DA80.pal ├── unk_14E060.pal ├── unk_194100.pal ├── unused_ascii_charset.png ├── witness_bench.pal ├── witness_bench_1.png └── witness_bench_2.png ├── include ├── agb_sram.h ├── animation.h ├── background.h ├── case_data.h ├── case_intro.h ├── constants │ ├── animation.h │ ├── bg.h │ ├── court_record.h │ ├── oam_allocations.h │ ├── persons.h │ ├── process.h │ ├── script.h │ └── songs.h ├── court.h ├── court_record.h ├── declarations.h ├── ewram.h ├── global.h ├── graphics.h ├── investigation.h ├── m4a.h ├── m4a_internal.h ├── main.h ├── psyche_lock.h ├── save.h ├── script.h ├── sound.h ├── structs.h └── utils.h ├── ld_script.txt ├── pwaa2.sha1 ├── rodata └── sound.s ├── script ├── scenario_0_0_script.phscr ├── scenario_0_1_script.phscr ├── scenario_1_0_script.phscr ├── scenario_1_1_script.phscr ├── scenario_1_2_script.phscr ├── scenario_1_3_script.phscr ├── scenario_1_4_script.phscr ├── scenario_1_5_script.phscr ├── scenario_2_0_script.phscr ├── scenario_2_1_script.phscr ├── scenario_2_2_script.phscr ├── scenario_2_3_script.phscr ├── scenario_2_4_script.phscr ├── scenario_2_5_script.phscr ├── scenario_3_0_script.phscr ├── scenario_3_1_script.phscr ├── scenario_3_2_script.phscr ├── scenario_3_3_script.phscr ├── scenario_3_4_script.phscr ├── scenario_3_5_script.phscr ├── scenario_3_6_script.phscr ├── scenario_3_7_script.phscr └── std_scripts.phscr ├── sound ├── direct_sound_samples │ ├── 0802ED30.bin │ ├── 080305C4.bin │ ├── 08030B68.bin │ ├── 080311E0.bin │ ├── 08031574.bin │ ├── 0803291C.bin │ ├── 08032EE8.bin │ ├── 08033450.bin │ ├── 08033A08.bin │ ├── 0803494C.bin │ ├── 080350F4.bin │ ├── 08035650.bin │ ├── 08037328.bin │ ├── 08038C18.bin │ ├── 0803BA9C.bin │ ├── 0803BC90.bin │ ├── 0803BDD0.bin │ ├── 0803ED38.bin │ ├── 08040020.bin │ ├── 08041BEC.bin │ ├── 080458B0.bin │ ├── 080497E0.bin │ ├── 0804C85C.bin │ ├── 0804E6B0.bin │ ├── 08050A6C.bin │ ├── 08053064.bin │ ├── 08053280.bin │ ├── 080558BC.bin │ ├── 0805A050.bin │ ├── 0805E164.bin │ ├── 08060B20.bin │ ├── 08060C60.bin │ ├── 08060DA0.bin │ ├── 08060EE0.bin │ ├── 08061020.bin │ ├── 08061160.bin │ ├── 080612A0.bin │ ├── 080613E0.bin │ ├── 08061520.bin │ ├── 08061660.bin │ ├── 0806287C.bin │ ├── 0806316C.bin │ ├── 08064BE0.bin │ ├── 080653A4.bin │ ├── 0806582C.bin │ ├── 08066330.bin │ ├── 0806676C.bin │ ├── 08066E00.bin │ ├── 08068B54.bin │ ├── 08069008.bin │ ├── 0806C6B4.bin │ ├── 0806D9D0.bin │ ├── 0806DFAC.bin │ ├── 08070670.bin │ ├── 080721AC.bin │ ├── 080747BC.bin │ ├── 080760B8.bin │ ├── 0807765C.bin │ ├── 080791D4.bin │ ├── 0807C4CC.bin │ ├── 0808082C.bin │ ├── 08083ED8.bin │ ├── 08086D20.bin │ ├── 08088F30.bin │ ├── 0808C5DC.bin │ ├── 0808FC88.bin │ ├── 08092DEC.bin │ ├── 08094380.bin │ ├── 08096688.bin │ ├── 0809E224.bin │ ├── 0809E900.bin │ ├── 0809EFC8.bin │ ├── 080A1530.bin │ ├── 080A1588.bin │ ├── 080A15B8.bin │ ├── 080A1FB4.bin │ ├── 080A36C8.bin │ ├── 080ABD1C.bin │ ├── 080AD008.bin │ ├── 080AF33C.bin │ ├── 080B0F40.bin │ ├── 080B1C7C.bin │ ├── 080B2DC0.bin │ ├── 080B3770.bin │ ├── 080B5698.bin │ ├── 080B6E7C.bin │ ├── 080B83A8.bin │ ├── 080B86EC.bin │ ├── 080BA1C0.bin │ ├── 080BBC94.bin │ ├── 080BEC28.bin │ ├── 080C40D8.bin │ ├── 080C76C8.bin │ ├── 080C88D4.bin │ ├── 080CA6A0.bin │ ├── 080CC504.bin │ ├── 080CED34.bin │ ├── 080CEF5C.bin │ ├── 080CF184.bin │ ├── 080CF3AC.bin │ ├── 080CF5D4.bin │ ├── 080CF7FC.bin │ ├── 080CFFF0.bin │ ├── 080D3754.bin │ ├── 080D6BBC.bin │ ├── 080D6FFC.bin │ ├── 080DA6A8.bin │ ├── 080DEE3C.bin │ ├── 080E1040.bin │ ├── 080E248C.bin │ ├── 080E34B8.bin │ ├── 080E5CCC.bin │ ├── 080E8660.bin │ ├── 080EA2EC.bin │ ├── 080EC424.bin │ ├── 080EF80C.bin │ ├── 080EFCA8.bin │ ├── 080F04B4.bin │ ├── 080F1478.bin │ ├── 080F243C.bin │ └── 080F42E0.bin └── programmable_wave_samples │ ├── 0802E444.pcm │ ├── 0802E454.pcm │ ├── 0802E464.pcm │ ├── 0802E474.pcm │ ├── 0802E484.pcm │ ├── 0802E494.pcm │ ├── 0802E4A4.pcm │ ├── 0802E4B4.pcm │ ├── 0802E4C4.pcm │ ├── 0802E4D4.pcm │ ├── 0802E4E4.pcm │ ├── 0802E4F4.pcm │ ├── 0802E504.pcm │ ├── 0802E514.pcm │ ├── 0802E524.pcm │ ├── 0802E534.pcm │ └── 0802E544.pcm ├── src ├── agb_sram.c ├── animation.c ├── bg.c ├── bg_2.c ├── bg_3.c ├── case_data.c ├── case_intro.c ├── court.c ├── court_record.c ├── crt0.s ├── data │ ├── animation.h │ └── background.h ├── episode_load_processes.c ├── gameover_process.c ├── hp_bar.c ├── investigation.c ├── investigation_segment_1_0.c ├── investigation_segment_1_2.c ├── investigation_segment_2_0.c ├── investigation_segment_2_2.c ├── investigation_segment_3_0.c ├── investigation_segment_3_2.c ├── investigation_segment_3_4.c ├── investigation_segment_3_6.c ├── libagbsyscall.s ├── m4a.c ├── m4a_1.s ├── m4a_tables.c ├── main.c ├── psyche_lock.c ├── save_processes.c ├── script_commands.c ├── script_main.c ├── scripts.c ├── signal_detector.c ├── sound.c ├── title_processes.c └── utils.c ├── sym_ewram.txt ├── sym_iwram.txt └── tools ├── br_ips ├── .gitignore ├── Makefile ├── br_ips.c ├── global.h └── ips_patch.c ├── gbafix ├── .gitignore ├── COPYING ├── Makefile ├── elf.h └── gbafix.c ├── gbagfx ├── .gitignore ├── LICENSE ├── Makefile ├── convert_png.c ├── convert_png.h ├── font.c ├── font.h ├── gfx.c ├── gfx.h ├── global.h ├── huff.c ├── huff.h ├── jasc_pal.c ├── jasc_pal.h ├── lz.c ├── lz.h ├── main.c ├── options.h ├── rl.c ├── rl.h ├── util.c └── util.h ├── mid2agb ├── .gitignore ├── LICENSE ├── Makefile ├── agb.cpp ├── agb.h ├── error.cpp ├── error.h ├── main.cpp ├── main.h ├── midi.cpp ├── midi.h ├── tables.cpp └── tables.h ├── preproc ├── .gitignore ├── LICENSE ├── Makefile ├── asm_file.cpp ├── asm_file.h ├── c_file.cpp ├── c_file.h ├── char_util.h ├── preproc.cpp ├── preproc.h ├── string_parser.cpp ├── string_parser.h ├── utf8.cpp └── utf8.h └── scaninc ├── .gitignore ├── LICENSE ├── Makefile ├── asm_file.cpp ├── asm_file.h ├── c_file.cpp ├── c_file.h ├── scaninc.cpp ├── scaninc.h ├── source_file.cpp └── source_file.h /asm/macros.inc: -------------------------------------------------------------------------------- 1 | .include "asm/macros/function.inc" 2 | .include "asm/macros/m4a.inc" 3 | .include "asm/macros/music_voice.inc" 4 | .include "asm/macros/scriptcmd.inc" 5 | -------------------------------------------------------------------------------- /constants/constants.inc: -------------------------------------------------------------------------------- 1 | .include "constants/gba.inc" 2 | .include "constants/m4a.inc" 3 | -------------------------------------------------------------------------------- /graphics/animations/animation01.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation01.seq -------------------------------------------------------------------------------- /graphics/animations/animation02.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation02.seq -------------------------------------------------------------------------------- /graphics/animations/animation03.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation03.seq -------------------------------------------------------------------------------- /graphics/animations/animation04.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation04.seq -------------------------------------------------------------------------------- /graphics/animations/animation05.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation05.seq -------------------------------------------------------------------------------- /graphics/animations/animation06.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation06.seq -------------------------------------------------------------------------------- /graphics/animations/animation07.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation07.seq -------------------------------------------------------------------------------- /graphics/animations/animation08.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation08.seq -------------------------------------------------------------------------------- /graphics/animations/animation09.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation09.seq -------------------------------------------------------------------------------- /graphics/animations/animation10.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation10.seq -------------------------------------------------------------------------------- /graphics/animations/animation100.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation100.seq -------------------------------------------------------------------------------- /graphics/animations/animation101.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation101.seq -------------------------------------------------------------------------------- /graphics/animations/animation102.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation102.seq -------------------------------------------------------------------------------- /graphics/animations/animation103.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation103.seq -------------------------------------------------------------------------------- /graphics/animations/animation104.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation104.seq -------------------------------------------------------------------------------- /graphics/animations/animation105.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation105.seq -------------------------------------------------------------------------------- /graphics/animations/animation106.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation106.seq -------------------------------------------------------------------------------- /graphics/animations/animation107.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation107.seq -------------------------------------------------------------------------------- /graphics/animations/animation108.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation108.seq -------------------------------------------------------------------------------- /graphics/animations/animation109.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation109.seq -------------------------------------------------------------------------------- /graphics/animations/animation11.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation11.seq -------------------------------------------------------------------------------- /graphics/animations/animation110.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation110.seq -------------------------------------------------------------------------------- /graphics/animations/animation111.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation111.seq -------------------------------------------------------------------------------- /graphics/animations/animation112.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation112.seq -------------------------------------------------------------------------------- /graphics/animations/animation12.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation12.seq -------------------------------------------------------------------------------- /graphics/animations/animation13.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation13.seq -------------------------------------------------------------------------------- /graphics/animations/animation14.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation14.seq -------------------------------------------------------------------------------- /graphics/animations/animation15.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation15.seq -------------------------------------------------------------------------------- /graphics/animations/animation16.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation16.seq -------------------------------------------------------------------------------- /graphics/animations/animation17.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation17.seq -------------------------------------------------------------------------------- /graphics/animations/animation18.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation18.seq -------------------------------------------------------------------------------- /graphics/animations/animation19.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation19.seq -------------------------------------------------------------------------------- /graphics/animations/animation20.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation20.seq -------------------------------------------------------------------------------- /graphics/animations/animation21.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation21.seq -------------------------------------------------------------------------------- /graphics/animations/animation22.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation22.seq -------------------------------------------------------------------------------- /graphics/animations/animation23.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation23.seq -------------------------------------------------------------------------------- /graphics/animations/animation24.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation24.seq -------------------------------------------------------------------------------- /graphics/animations/animation25.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation25.seq -------------------------------------------------------------------------------- /graphics/animations/animation26.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation26.seq -------------------------------------------------------------------------------- /graphics/animations/animation27.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation27.seq -------------------------------------------------------------------------------- /graphics/animations/animation28.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation28.seq -------------------------------------------------------------------------------- /graphics/animations/animation29.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation29.seq -------------------------------------------------------------------------------- /graphics/animations/animation30.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation30.seq -------------------------------------------------------------------------------- /graphics/animations/animation31.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation31.seq -------------------------------------------------------------------------------- /graphics/animations/animation32.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation32.seq -------------------------------------------------------------------------------- /graphics/animations/animation33.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation33.seq -------------------------------------------------------------------------------- /graphics/animations/animation34.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation34.seq -------------------------------------------------------------------------------- /graphics/animations/animation35.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation35.seq -------------------------------------------------------------------------------- /graphics/animations/animation36.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation36.seq -------------------------------------------------------------------------------- /graphics/animations/animation37.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation37.seq -------------------------------------------------------------------------------- /graphics/animations/animation38.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation38.seq -------------------------------------------------------------------------------- /graphics/animations/animation39.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation39.seq -------------------------------------------------------------------------------- /graphics/animations/animation40.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation40.seq -------------------------------------------------------------------------------- /graphics/animations/animation41.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation41.seq -------------------------------------------------------------------------------- /graphics/animations/animation42.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation42.seq -------------------------------------------------------------------------------- /graphics/animations/animation43.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation43.seq -------------------------------------------------------------------------------- /graphics/animations/animation44.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation44.seq -------------------------------------------------------------------------------- /graphics/animations/animation45.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation45.seq -------------------------------------------------------------------------------- /graphics/animations/animation46.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation46.seq -------------------------------------------------------------------------------- /graphics/animations/animation47.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation47.seq -------------------------------------------------------------------------------- /graphics/animations/animation48.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation48.seq -------------------------------------------------------------------------------- /graphics/animations/animation49.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation49.seq -------------------------------------------------------------------------------- /graphics/animations/animation50.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation50.seq -------------------------------------------------------------------------------- /graphics/animations/animation51.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation51.seq -------------------------------------------------------------------------------- /graphics/animations/animation52.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation52.seq -------------------------------------------------------------------------------- /graphics/animations/animation53.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation53.seq -------------------------------------------------------------------------------- /graphics/animations/animation54.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation54.seq -------------------------------------------------------------------------------- /graphics/animations/animation55.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation55.seq -------------------------------------------------------------------------------- /graphics/animations/animation56.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation56.seq -------------------------------------------------------------------------------- /graphics/animations/animation57.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation57.seq -------------------------------------------------------------------------------- /graphics/animations/animation58.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation58.seq -------------------------------------------------------------------------------- /graphics/animations/animation59.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation59.seq -------------------------------------------------------------------------------- /graphics/animations/animation60.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation60.seq -------------------------------------------------------------------------------- /graphics/animations/animation61.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation61.seq -------------------------------------------------------------------------------- /graphics/animations/animation62.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation62.seq -------------------------------------------------------------------------------- /graphics/animations/animation63.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation63.seq -------------------------------------------------------------------------------- /graphics/animations/animation64.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation64.seq -------------------------------------------------------------------------------- /graphics/animations/animation65.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation65.seq -------------------------------------------------------------------------------- /graphics/animations/animation66.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation66.seq -------------------------------------------------------------------------------- /graphics/animations/animation67.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation67.seq -------------------------------------------------------------------------------- /graphics/animations/animation68.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation68.seq -------------------------------------------------------------------------------- /graphics/animations/animation69.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation69.seq -------------------------------------------------------------------------------- /graphics/animations/animation70.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation70.seq -------------------------------------------------------------------------------- /graphics/animations/animation71.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation71.seq -------------------------------------------------------------------------------- /graphics/animations/animation72.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation72.seq -------------------------------------------------------------------------------- /graphics/animations/animation73.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation73.seq -------------------------------------------------------------------------------- /graphics/animations/animation74.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation74.seq -------------------------------------------------------------------------------- /graphics/animations/animation75.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation75.seq -------------------------------------------------------------------------------- /graphics/animations/animation76.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation76.seq -------------------------------------------------------------------------------- /graphics/animations/animation77.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation77.seq -------------------------------------------------------------------------------- /graphics/animations/animation78.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation78.seq -------------------------------------------------------------------------------- /graphics/animations/animation79.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation79.seq -------------------------------------------------------------------------------- /graphics/animations/animation80.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation80.seq -------------------------------------------------------------------------------- /graphics/animations/animation81.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation81.seq -------------------------------------------------------------------------------- /graphics/animations/animation82.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation82.seq -------------------------------------------------------------------------------- /graphics/animations/animation83.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation83.seq -------------------------------------------------------------------------------- /graphics/animations/animation84.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation84.seq -------------------------------------------------------------------------------- /graphics/animations/animation85.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation85.seq -------------------------------------------------------------------------------- /graphics/animations/animation86.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation86.seq -------------------------------------------------------------------------------- /graphics/animations/animation87.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation87.seq -------------------------------------------------------------------------------- /graphics/animations/animation88.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation88.seq -------------------------------------------------------------------------------- /graphics/animations/animation89.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation89.seq -------------------------------------------------------------------------------- /graphics/animations/animation90.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation90.seq -------------------------------------------------------------------------------- /graphics/animations/animation91.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation91.seq -------------------------------------------------------------------------------- /graphics/animations/animation92.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation92.seq -------------------------------------------------------------------------------- /graphics/animations/animation93.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation93.seq -------------------------------------------------------------------------------- /graphics/animations/animation94.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation94.seq -------------------------------------------------------------------------------- /graphics/animations/animation95.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation95.seq -------------------------------------------------------------------------------- /graphics/animations/animation96.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation96.seq -------------------------------------------------------------------------------- /graphics/animations/animation97.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation97.seq -------------------------------------------------------------------------------- /graphics/animations/animation98.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation98.seq -------------------------------------------------------------------------------- /graphics/animations/animation99.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/animation99.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation01.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation01.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation01.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation01.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation02.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation02.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation02.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation02.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation03.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation03.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation03.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation03.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation04.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation04.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation04.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation04.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation05.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation05.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation05.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation05.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation06.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation06.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation06.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation06.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation07.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation07.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation07.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation07.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation08.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation08.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation08.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation08.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation09.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation09.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation09.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation09.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation10.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation10.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation10.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation10.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation11.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation11.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation11.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation11.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation12.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation12.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation12.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation12.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation13.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation13.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation13.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation13.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation14.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation14.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation14.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation14.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation15.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation15.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation15.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation15.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation16.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation16.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation16.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation16.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation17.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation17.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation17.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation17.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation18.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation18.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation18.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation18.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation19.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation19.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation19.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation19.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation20.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation20.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation20.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation20.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation21.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation21.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation21.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation21.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation22.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation22.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation22.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation22.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation23.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation23.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation23.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation23.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation24.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation24.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation24.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation24.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation25.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation25.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation25.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation25.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation26.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation26.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation26.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation26.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation27.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation27.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation27.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation27.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation28.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation28.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation28.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation28.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation29.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation29.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation29.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation29.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation30.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation30.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation30.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation30.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation31.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation31.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation31.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation31.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation32.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation32.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation32.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation32.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation33.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation33.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation33.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation33.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation34.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation34.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation34.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation34.seq -------------------------------------------------------------------------------- /graphics/animations/characters/animation35.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation35.pix -------------------------------------------------------------------------------- /graphics/animations/characters/animation35.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/characters/animation35.seq -------------------------------------------------------------------------------- /graphics/animations/tileset01.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/tileset01.pix -------------------------------------------------------------------------------- /graphics/animations/tileset02.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/tileset02.pix -------------------------------------------------------------------------------- /graphics/animations/tileset03.pix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/animations/tileset03.pix -------------------------------------------------------------------------------- /graphics/bustup_edgeworth.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/bustup_edgeworth.bin -------------------------------------------------------------------------------- /graphics/bustup_edgeworth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/bustup_edgeworth.png -------------------------------------------------------------------------------- /graphics/bustup_franziska.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/bustup_franziska.bin -------------------------------------------------------------------------------- /graphics/bustup_franziska.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/bustup_franziska.png -------------------------------------------------------------------------------- /graphics/bustup_phoenix.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/bustup_phoenix.bin -------------------------------------------------------------------------------- /graphics/bustup_phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/bustup_phoenix.png -------------------------------------------------------------------------------- /graphics/charset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/charset.png -------------------------------------------------------------------------------- /graphics/counsel_bench_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/counsel_bench_1.png -------------------------------------------------------------------------------- /graphics/counsel_bench_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/counsel_bench_2.png -------------------------------------------------------------------------------- /graphics/counsel_bench_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/counsel_bench_3.png -------------------------------------------------------------------------------- /graphics/counsel_bench_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/counsel_bench_4.png -------------------------------------------------------------------------------- /graphics/court_scrolls/court_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/court_scrolls/court_scroll.png -------------------------------------------------------------------------------- /graphics/detention_center_bottom_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/detention_center_bottom_tiles.png -------------------------------------------------------------------------------- /graphics/episode_select_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/episode_select_options.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/leon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/evidence/leon.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/evidence/milk.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/evidence/money.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/evidence/pepper.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/receipt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/evidence/receipt.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/regent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/evidence/regent.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/shoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/evidence/shoe.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/evidence/trilo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/evidence/trilo.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/acro_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/profiles/acro_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/acro_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/profiles/acro_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/ami_fey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/profiles/ami_fey.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/profiles/bat.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/ben_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/profiles/ben_0.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/ben_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/profiles/ben_1.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/mia_fey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/profiles/mia_fey.png -------------------------------------------------------------------------------- /graphics/evidence_profile_descriptions/profiles/moe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_descriptions/profiles/moe.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/dummy_00180848.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/dummy_00180848.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/dummy_00185168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/dummy_00185168.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/dummy_00191468.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/dummy_00191468.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/001828C8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/001828C8.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/001A6188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/001A6188.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/bear_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/bear_clock.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/bear_puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/bear_puzzle.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/greys_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/greys_gun.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/guitar_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/guitar_case.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/large_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/large_box.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/large_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/large_chest.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/leon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/leon.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/max_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/max_poster.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/mayas_knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/mayas_knife.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/mayas_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/mayas_robe.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/milk.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/moes_grapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/moes_grapes.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/money.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/pearls_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/pearls_ball.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/pepper.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/receipt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/receipt.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/regent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/regent.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/shoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/shoe.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/transceiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/transceiver.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/evidence/trilo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/evidence/trilo.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/acro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/acro.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/ami_fey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/ami_fey.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/bat.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/ben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/ben.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/dr_hotti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/dr_hotti.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/ini_miney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/ini_miney.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/lotta_hart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/lotta_hart.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/maya_fey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/maya_fey.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/mia_fey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/mia_fey.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/mimi_miney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/mimi_miney.png -------------------------------------------------------------------------------- /graphics/evidence_profile_pictures/profiles/moe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/evidence_profile_pictures/profiles/moe.png -------------------------------------------------------------------------------- /graphics/from_save_or_beginning_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/from_save_or_beginning_options.png -------------------------------------------------------------------------------- /graphics/location_choices/001DE3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001DE3E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001DEBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001DEBE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001DF3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001DF3E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001DFBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001DFBE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E03E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E03E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E0BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E0BE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E13E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E13E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E1BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E1BE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E23E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E23E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E2BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E2BE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E33E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E33E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E3BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E3BE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E43E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E43E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E4BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E4BE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E53E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E53E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E5BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E5BE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E63E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E63E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E6BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E6BE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E73E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E73E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E7BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E7BE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E83E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E83E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E8BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E8BE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E93E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E93E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001E9BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001E9BE8.png -------------------------------------------------------------------------------- /graphics/location_choices/001EA3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001EA3E8.png -------------------------------------------------------------------------------- /graphics/location_choices/001EABE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/location_choices/001EABE8.png -------------------------------------------------------------------------------- /graphics/map_markers/case3_main_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/case3_main_gate.png -------------------------------------------------------------------------------- /graphics/map_markers/case4_boat_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/case4_boat_horizontal.png -------------------------------------------------------------------------------- /graphics/map_markers/case4_boat_rental_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/case4_boat_rental_shop.png -------------------------------------------------------------------------------- /graphics/map_markers/case4_boat_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/case4_boat_vertical.png -------------------------------------------------------------------------------- /graphics/map_markers/case4_lotta_suv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/case4_lotta_suv.png -------------------------------------------------------------------------------- /graphics/map_markers/double_door_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/double_door_diagram.png -------------------------------------------------------------------------------- /graphics/map_markers/folding_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/folding_screen.png -------------------------------------------------------------------------------- /graphics/map_markers/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/green.png -------------------------------------------------------------------------------- /graphics/map_markers/killer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/killer.png -------------------------------------------------------------------------------- /graphics/map_markers/red_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/red_dot.png -------------------------------------------------------------------------------- /graphics/map_markers/victim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/map_markers/victim.png -------------------------------------------------------------------------------- /graphics/nickel_samurai_case3_op_zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/nickel_samurai_case3_op_zoomin.png -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_01.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_02.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_03.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_04.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_05.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_06.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_07.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_08.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_09.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_10.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_11.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_12.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_13.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_14.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_14.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_15.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_16.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_17.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_17.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_18.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_18.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_19.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_19.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_animation_20.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_animation_20.bin -------------------------------------------------------------------------------- /graphics/psyche_lock_chain_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/psyche_lock_chain_tileset.png -------------------------------------------------------------------------------- /graphics/save_yes_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/save_yes_no.png -------------------------------------------------------------------------------- /graphics/speedlines_first_and_last_columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/speedlines_first_and_last_columns.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/acros_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/acros_room.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/airport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/airport.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/circus_cafeteria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/circus_cafeteria.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/circus_courtyard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/circus_courtyard.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/circus_tent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/circus_tent.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/court/co_counsel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/court/co_counsel.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/court/court_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/court/court_room.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/court/judge_seat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/court/judge_seat.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/gavel/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/gavel/1.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/gavel/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/gavel/2.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/gavel/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/gavel/3.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/hotti_clinic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/hotti_clinic.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/kurain_main_hall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/kurain_main_hall.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/meeting_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/meeting_room.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/moes_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/moes_room.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/mr_berrys_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/mr_berrys_office.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/secret_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/secret_room.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/steel_samurai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/steel_samurai.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/winding_way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/winding_way.png -------------------------------------------------------------------------------- /graphics/striped_images/backgrounds/wine_cellar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/backgrounds/wine_cellar.png -------------------------------------------------------------------------------- /graphics/striped_images/capcom_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/capcom_screen.png -------------------------------------------------------------------------------- /graphics/striped_images/capcom_screen_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/capcom_screen_bw.png -------------------------------------------------------------------------------- /graphics/striped_images/case1_intro_nightmare_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case1_intro_nightmare_1.png -------------------------------------------------------------------------------- /graphics/striped_images/case1_intro_nightmare_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case1_intro_nightmare_2.png -------------------------------------------------------------------------------- /graphics/striped_images/case1_intro_richard_looking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case1_intro_richard_looking.png -------------------------------------------------------------------------------- /graphics/striped_images/case1_maggey_with_dustin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case1_maggey_with_dustin.png -------------------------------------------------------------------------------- /graphics/striped_images/case1_photo_of_dustin_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case1_photo_of_dustin_dead.png -------------------------------------------------------------------------------- /graphics/striped_images/case1_photo_of_maggeys_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case1_photo_of_maggeys_name.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_box_behind_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_box_behind_screen.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_diagram_of_fey_manor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_diagram_of_fey_manor.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_ini_with_sleeping_maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_ini_with_sleeping_maya.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_ini_with_summoned_mimi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_ini_with_summoned_mimi.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_intro_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_intro_car.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_intro_car_crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_intro_car_crash.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_intro_car_lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_intro_car_lights.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_maya_with_summoned_mia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_maya_with_summoned_mia.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_maya_with_turner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_maya_with_turner.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_mayas_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_mayas_robe.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_mimi_in_hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_mimi_in_hospital.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_morgan_fey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_morgan_fey.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_pearl_fixing_urn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_pearl_fixing_urn.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_photo_of_attacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_photo_of_attacker.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_photo_of_incident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_photo_of_incident.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_photo_of_summoned_mia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_photo_of_summoned_mia.png -------------------------------------------------------------------------------- /graphics/striped_images/case2_turner_with_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case2_turner_with_gun.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_acro_dropping_statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_acro_dropping_statue.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_acro_spotting_statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_acro_spotting_statue.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_bat_with_lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_bat_with_lion.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_ben_spotting_max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_ben_spotting_max.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_bust_of_maximillion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_bust_of_maximillion.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_dead_russell_outside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_dead_russell_outside.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_diagram_circus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_diagram_circus.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_edgeworth_at_airport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_edgeworth_at_airport.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_intro_circus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_intro_circus.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_intro_lion_blue_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_intro_lion_blue_yellow.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_intro_lion_green_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_intro_lion_green_red.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_intro_maximillion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_intro_maximillion.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_max_grabbing_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_max_grabbing_bottle.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_photo_of_russell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_photo_of_russell.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_poster_of_maximillion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_poster_of_maximillion.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_russell_getting_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_russell_getting_hit.png -------------------------------------------------------------------------------- /graphics/striped_images/case3_threatening_note_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case3_threatening_note_text.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_calling_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case4_calling_card.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_diagram_hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case4_diagram_hotel.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_franziska_entering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case4_franziska_entering.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_intro_heroes_lined_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case4_intro_heroes_lined_up.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_jammin_ninja_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case4_jammin_ninja_poster.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_nickel_samurai_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case4_nickel_samurai_poster.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_over_the_clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case4_over_the_clouds.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_photo_of_juan_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case4_photo_of_juan_dead.png -------------------------------------------------------------------------------- /graphics/striped_images/case4_tabloid_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/case4_tabloid_article.png -------------------------------------------------------------------------------- /graphics/striped_images/court_room_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/court_room_blue.png -------------------------------------------------------------------------------- /graphics/striped_images/detention_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/detention_center.png -------------------------------------------------------------------------------- /graphics/striped_images/dummy_background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/dummy_background_1.png -------------------------------------------------------------------------------- /graphics/striped_images/dummy_background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/dummy_background_2.png -------------------------------------------------------------------------------- /graphics/striped_images/kurain_village.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/kurain_village.png -------------------------------------------------------------------------------- /graphics/striped_images/police_station_lobby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/police_station_lobby.png -------------------------------------------------------------------------------- /graphics/striped_images/pwaa1_class_trial_edgeworth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/pwaa1_class_trial_edgeworth.png -------------------------------------------------------------------------------- /graphics/striped_images/pwaa1_dead_mia_in_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/pwaa1_dead_mia_in_office.png -------------------------------------------------------------------------------- /graphics/striped_images/speedlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/striped_images/speedlines.png -------------------------------------------------------------------------------- /graphics/talk_choices/001EB3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001EB3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001EBBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001EBBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001EC3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001EC3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001ECBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001ECBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001ED3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001ED3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001EDBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001EDBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001EE3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001EE3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001EEBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001EEBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001EF3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001EF3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001EFBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001EFBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F03E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F03E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F0BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F0BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F13E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F13E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F1BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F1BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F23E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F23E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F2BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F2BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F33E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F33E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F3BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F3BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F43E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F43E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F4BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F4BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F53E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F53E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F5BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F5BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F63E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F63E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F6BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F6BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F73E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F73E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F7BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F7BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F83E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F83E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F8BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F8BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F93E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F93E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001F9BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001F9BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FA3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FA3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FABE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FABE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FB3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FB3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FBBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FBBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FC3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FC3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FCBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FCBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FD3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FD3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FDBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FDBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FE3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FE3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FEBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FEBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FF3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FF3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/001FFBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/001FFBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002003E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002003E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00200BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00200BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002013E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002013E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00201BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00201BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002023E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002023E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00202BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00202BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002033E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002033E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00203BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00203BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002043E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002043E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00204BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00204BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002053E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002053E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00205BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00205BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002063E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002063E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00206BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00206BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002073E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002073E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00207BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00207BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002083E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002083E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00208BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00208BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002093E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002093E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00209BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00209BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020A3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020A3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020ABE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020ABE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020B3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020B3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020BBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020BBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020C3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020C3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020CBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020CBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020D3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020D3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020DBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020DBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020E3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020E3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020EBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020EBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020F3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020F3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0020FBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0020FBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002103E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002103E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00210BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00210BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002113E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002113E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00211BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00211BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002123E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002123E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00212BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00212BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002133E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002133E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00213BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00213BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002143E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002143E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00214BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00214BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002153E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002153E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00215BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00215BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002163E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002163E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00216BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00216BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002173E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002173E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00217BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00217BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002183E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002183E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00218BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00218BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002193E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002193E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00219BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00219BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021A3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021A3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021ABE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021ABE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021B3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021B3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021BBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021BBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021C3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021C3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021CBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021CBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021D3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021D3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021DBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021DBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021E3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021E3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021EBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021EBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021F3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021F3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0021FBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0021FBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002203E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002203E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00220BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00220BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002213E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002213E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00221BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00221BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002223E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002223E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00222BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00222BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002233E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002233E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00223BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00223BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002243E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002243E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00224BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00224BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002253E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002253E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00225BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00225BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002263E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002263E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00226BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00226BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002273E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002273E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00227BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00227BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002283E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002283E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00228BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00228BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002293E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002293E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00229BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00229BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022A3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022A3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022ABE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022ABE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022B3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022B3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022BBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022BBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022C3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022C3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022CBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022CBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022D3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022D3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022DBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022DBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022E3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022E3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022EBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022EBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022F3E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022F3E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/0022FBE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/0022FBE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002303E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002303E8.png -------------------------------------------------------------------------------- /graphics/talk_choices/00230BE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/00230BE8.png -------------------------------------------------------------------------------- /graphics/talk_choices/002313E8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/talk_choices/002313E8.png -------------------------------------------------------------------------------- /graphics/title_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/title_screen.png -------------------------------------------------------------------------------- /graphics/title_screen_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/title_screen_demo.png -------------------------------------------------------------------------------- /graphics/ui/court_record/controller_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/court_record/controller_buttons.png -------------------------------------------------------------------------------- /graphics/ui/court_record/evidence_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/court_record/evidence_text.png -------------------------------------------------------------------------------- /graphics/ui/court_record/present_back_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/court_record/present_back_text.png -------------------------------------------------------------------------------- /graphics/ui/court_record/profiles_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/court_record/profiles_text.png -------------------------------------------------------------------------------- /graphics/ui/healthbar_frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/healthbar_frame_1.png -------------------------------------------------------------------------------- /graphics/ui/healthbar_frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/healthbar_frame_2.png -------------------------------------------------------------------------------- /graphics/ui/healthbar_frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/healthbar_frame_3.png -------------------------------------------------------------------------------- /graphics/ui/healthbar_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/healthbar_progress.png -------------------------------------------------------------------------------- /graphics/ui/investigation/action_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/investigation/action_buttons.png -------------------------------------------------------------------------------- /graphics/ui/investigation/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/investigation/checkmark.png -------------------------------------------------------------------------------- /graphics/ui/investigation/examine_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/investigation/examine_cursor.png -------------------------------------------------------------------------------- /graphics/ui/investigation/psyche_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/investigation/psyche_lock.png -------------------------------------------------------------------------------- /graphics/ui/investigation/scroll_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/investigation/scroll_prompt.png -------------------------------------------------------------------------------- /graphics/ui/investigation/stop_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/investigation/stop_button.png -------------------------------------------------------------------------------- /graphics/ui/left_right_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/left_right_arrows.png -------------------------------------------------------------------------------- /graphics/ui/message_box/nametags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/message_box/nametags.png -------------------------------------------------------------------------------- /graphics/ui/message_box/save_game_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/message_box/save_game_tiles.png -------------------------------------------------------------------------------- /graphics/ui/new_game_continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/new_game_continue.png -------------------------------------------------------------------------------- /graphics/ui/trial/confetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/trial/confetti.png -------------------------------------------------------------------------------- /graphics/ui/trial/game_over_doors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/trial/game_over_doors.png -------------------------------------------------------------------------------- /graphics/ui/trial/game_over_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/trial/game_over_text.png -------------------------------------------------------------------------------- /graphics/ui/trial/guilty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/trial/guilty1.png -------------------------------------------------------------------------------- /graphics/ui/trial/guilty_not_guilty2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/trial/guilty_not_guilty2.png -------------------------------------------------------------------------------- /graphics/ui/trial/not_guilty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/trial/not_guilty1.png -------------------------------------------------------------------------------- /graphics/ui/trial/press_present_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/trial/press_present_buttons.png -------------------------------------------------------------------------------- /graphics/ui/trial/testimony_text_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/trial/testimony_text_tiles.png -------------------------------------------------------------------------------- /graphics/ui/trial/unused_testimony_characters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/ui/trial/unused_testimony_characters.png -------------------------------------------------------------------------------- /graphics/unk_13DC7C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/unk_13DC7C.png -------------------------------------------------------------------------------- /graphics/unused_ascii_charset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/unused_ascii_charset.png -------------------------------------------------------------------------------- /graphics/witness_bench_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/witness_bench_1.png -------------------------------------------------------------------------------- /graphics/witness_bench_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/graphics/witness_bench_2.png -------------------------------------------------------------------------------- /include/constants/bg.h: -------------------------------------------------------------------------------- 1 | #ifndef GUARD_CONST_BG_H 2 | #define GUARD_CONST_BG_H 3 | 4 | #endif//GUARD_BG_H 5 | -------------------------------------------------------------------------------- /include/constants/court_record.h: -------------------------------------------------------------------------------- 1 | #ifndef GUARD_CONST_COURT_RECORD_H 2 | #define GUARD_CONST_COURT_RECORD_H 3 | 4 | #endif //GUARD_COURT_RECORD_H 5 | -------------------------------------------------------------------------------- /include/constants/script.h: -------------------------------------------------------------------------------- 1 | #ifndef GUARD_CONST_SCRIPT_H 2 | #define GUARD_CONST_SCRIPT_H 3 | 4 | #endif //GUARD_SCRIPT_H 5 | -------------------------------------------------------------------------------- /pwaa2.sha1: -------------------------------------------------------------------------------- 1 | f7a156dbed52d3edb8104112ae40e6e2aaca57f9 pwaa2.gba 2 | -------------------------------------------------------------------------------- /script/scenario_0_0_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_0_0_script.phscr -------------------------------------------------------------------------------- /script/scenario_0_1_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_0_1_script.phscr -------------------------------------------------------------------------------- /script/scenario_1_0_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_1_0_script.phscr -------------------------------------------------------------------------------- /script/scenario_1_1_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_1_1_script.phscr -------------------------------------------------------------------------------- /script/scenario_1_2_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_1_2_script.phscr -------------------------------------------------------------------------------- /script/scenario_1_3_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_1_3_script.phscr -------------------------------------------------------------------------------- /script/scenario_1_4_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_1_4_script.phscr -------------------------------------------------------------------------------- /script/scenario_1_5_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_1_5_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_0_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_2_0_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_1_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_2_1_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_2_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_2_2_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_3_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_2_3_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_4_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_2_4_script.phscr -------------------------------------------------------------------------------- /script/scenario_2_5_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_2_5_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_0_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_3_0_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_1_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_3_1_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_2_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_3_2_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_3_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_3_3_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_4_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_3_4_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_5_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_3_5_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_6_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_3_6_script.phscr -------------------------------------------------------------------------------- /script/scenario_3_7_script.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/scenario_3_7_script.phscr -------------------------------------------------------------------------------- /script/std_scripts.phscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/script/std_scripts.phscr -------------------------------------------------------------------------------- /sound/direct_sound_samples/0802ED30.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0802ED30.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080305C4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080305C4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08030B68.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08030B68.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080311E0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080311E0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08031574.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08031574.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0803291C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0803291C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08032EE8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08032EE8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08033450.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08033450.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08033A08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08033A08.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0803494C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0803494C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080350F4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080350F4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08035650.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08035650.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08037328.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08037328.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08038C18.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08038C18.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0803BA9C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0803BA9C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0803BC90.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0803BC90.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0803BDD0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0803BDD0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0803ED38.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0803ED38.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08040020.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08040020.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08041BEC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08041BEC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080458B0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080458B0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080497E0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080497E0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0804C85C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0804C85C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0804E6B0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0804E6B0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08050A6C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08050A6C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08053064.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08053064.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08053280.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08053280.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080558BC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080558BC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0805A050.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0805A050.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0805E164.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0805E164.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08060B20.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08060B20.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08060C60.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08060C60.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08060DA0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08060DA0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08060EE0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08060EE0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08061020.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08061020.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08061160.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08061160.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080612A0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080612A0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080613E0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080613E0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08061520.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08061520.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08061660.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08061660.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0806287C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0806287C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0806316C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0806316C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08064BE0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08064BE0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080653A4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080653A4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0806582C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0806582C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08066330.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08066330.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0806676C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0806676C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08066E00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08066E00.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08068B54.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08068B54.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08069008.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08069008.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0806C6B4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0806C6B4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0806D9D0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0806D9D0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0806DFAC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0806DFAC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08070670.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08070670.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080721AC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080721AC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080747BC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080747BC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080760B8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080760B8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0807765C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0807765C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080791D4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080791D4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0807C4CC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0807C4CC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0808082C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0808082C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08083ED8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08083ED8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08086D20.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08086D20.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08088F30.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08088F30.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0808C5DC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0808C5DC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0808FC88.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0808FC88.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08092DEC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08092DEC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08094380.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08094380.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/08096688.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/08096688.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0809E224.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0809E224.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0809E900.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0809E900.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/0809EFC8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/0809EFC8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080A1530.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080A1530.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080A1588.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080A1588.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080A15B8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080A15B8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080A1FB4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080A1FB4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080A36C8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080A36C8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080ABD1C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080ABD1C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080AD008.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080AD008.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080AF33C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080AF33C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080B0F40.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080B0F40.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080B1C7C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080B1C7C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080B2DC0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080B2DC0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080B3770.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080B3770.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080B5698.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080B5698.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080B6E7C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080B6E7C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080B83A8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080B83A8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080B86EC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080B86EC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080BA1C0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080BA1C0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080BBC94.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080BBC94.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080BEC28.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080BEC28.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080C40D8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080C40D8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080C76C8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080C76C8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080C88D4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080C88D4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CA6A0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080CA6A0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CC504.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080CC504.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CED34.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080CED34.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CEF5C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080CEF5C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CF184.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080CF184.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CF3AC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080CF3AC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CF5D4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080CF5D4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CF7FC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080CF7FC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080CFFF0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080CFFF0.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080D3754.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080D3754.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080D6BBC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080D6BBC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080D6FFC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080D6FFC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080DA6A8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080DA6A8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080DEE3C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080DEE3C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080E1040.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080E1040.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080E248C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080E248C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080E34B8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080E34B8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080E5CCC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080E5CCC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080E8660.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080E8660.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080EA2EC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080EA2EC.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080EC424.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080EC424.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080EF80C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080EF80C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080EFCA8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080EFCA8.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080F04B4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080F04B4.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080F1478.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080F1478.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080F243C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080F243C.bin -------------------------------------------------------------------------------- /sound/direct_sound_samples/080F42E0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/direct_sound_samples/080F42E0.bin -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E444.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E444.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E454.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E454.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E464.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E464.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E474.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E474.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E484.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E484.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E494.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E494.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E4A4.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E4A4.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E4B4.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E4B4.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E4C4.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E4C4.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E4D4.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E4D4.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E4E4.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E4E4.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E4F4.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E4F4.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E504.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E504.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E514.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E514.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E524.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E524.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E534.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E534.pcm -------------------------------------------------------------------------------- /sound/programmable_wave_samples/0802E544.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atasro2/pwaa2/20cc4a4eba8712a103c4b1834e7495e902e9b9ca/sound/programmable_wave_samples/0802E544.pcm -------------------------------------------------------------------------------- /tools/br_ips/.gitignore: -------------------------------------------------------------------------------- 1 | br_ips 2 | br_ips.exe 3 | ips_patch 4 | ips_patch.exe -------------------------------------------------------------------------------- /tools/gbafix/.gitignore: -------------------------------------------------------------------------------- 1 | gbafix 2 | gbafix.exe 3 | README 4 | -------------------------------------------------------------------------------- /tools/gbagfx/.gitignore: -------------------------------------------------------------------------------- 1 | gbagfx 2 | gbagfx.exe 3 | -------------------------------------------------------------------------------- /tools/mid2agb/.gitignore: -------------------------------------------------------------------------------- 1 | mid2agb 2 | -------------------------------------------------------------------------------- /tools/preproc/.gitignore: -------------------------------------------------------------------------------- 1 | preproc 2 | -------------------------------------------------------------------------------- /tools/scaninc/.gitignore: -------------------------------------------------------------------------------- 1 | scaninc 2 | scaninc.exe 3 | --------------------------------------------------------------------------------