diff --git a/ootw/Makefile b/ootw/Makefile index ae2afe3a..b19e2beb 100644 --- a/ootw/Makefile +++ b/ootw/Makefile @@ -277,6 +277,7 @@ ootw_c15.o: ootw_c15.s \ keyboard.s gr_run_sequence.s physicist.s \ collision.s door.s laser.s gun.s blast.s shield.s \ ootw_graphics/sprites/physicist.inc \ + ootw_graphics/l15final/ootw_c15_bath.inc \ ootw_graphics/l15final/ootw_c15_final.inc ca65 -o ootw_c15.o ootw_c15.s -l ootw_c15.lst @@ -459,6 +460,11 @@ compress_test.o: compress_test.s lz4_decode.s compress_test.inc ##### +zip: ootw.dsk ootw_side2.dsk + zip ootw.zip ootw.dsk ootw_side2.dsk + +##### + clean: rm -f *~ *.o *.lst *.lz4 HELLO TITLE \ OOTW_C1 OOTW_C2 OOTW_C3 OOTW_C4 INTRO LOADER \ diff --git a/ootw/ootw_c15.s b/ootw/ootw_c15.s index 81a75777..52cfaf64 100644 --- a/ootw/ootw_c15.s +++ b/ootw/ootw_c15.s @@ -6,6 +6,13 @@ .include "zp.inc" .include "hardware.inc" +; bath: +; after crash, hop out of sphere. move quickly as you can get lasered +; right near the pod, but if you walk by the column you can stand +; forever and not get shot +; walkway1: +; does not appear you can re-enter bath? lasers from behind come in +; but don't hurt you unless you try to walk back in ;============================ ; ENTRY POINT FOR LEVEL @@ -21,6 +28,12 @@ ootw_c15: ootw_c15_restart: + ;=================================== + ; run bath intro + ;=================================== + + jsr bath_intro + ;=================================== ; re-initialize level state ;=================================== @@ -116,7 +129,7 @@ ootw_c15_level_init: sta HAVE_GUN sta DIRECTION ; right - lda #0 + lda #22 sta PHYSICIST_X lda #10 sta PHYSICIST_Y @@ -168,9 +181,9 @@ room: sta PHYSICIST_Y ; load background - lda #>(bath_rle) + lda #>(bath_end_rle) sta GBASH - lda #<(bath_rle) + lda #<(bath_end_rle) jmp room_setup_done @@ -630,6 +643,8 @@ end_message: ;.include "gr_offsets_hl.s" .include "gr_hlin.s" .include "keyboard.s" +.include "gr_overlay.s" +.include "gr_run_sequence.s" .include "physicist.s" .include "alien.s" @@ -645,8 +660,120 @@ end_message: .include "collision.s" ; room backgrounds +.include "ootw_graphics/l15final/ootw_c15_bath.inc" .include "ootw_graphics/l15final/ootw_c15_final.inc" ; sprites .include "ootw_graphics/sprites/physicist.inc" .include "ootw_graphics/sprites/alien.inc" +;======================= +; Bath intro + +bath_intro: + ;=========================== + ; Enable graphics + + bit LORES + bit SET_GR + bit FULLGR + + bit KEYRESET + + ;=========================== + ; Setup pages (is this necessary?) + + lda #0 + sta DRAW_PAGE + lda #1 + sta DISP_PAGE + + lda #bath_arrival_sequence + sta INTRO_LOOPH + + jmp run_sequence + +; rts + +;======================= +; Bath Arrival Sequence + +bath_arrival_sequence: + .byte 255 + .word bath_00_rle + .byte 25 + .word bath_01_rle + .byte 25 + .word bath_02_rle + .byte 25 + .word bath_03_rle + .byte 25 + .word bath_04_rle + .byte 25 + .word bath_05_rle + .byte 25 + .word bath_06_rle + .byte 25 + .word bath_07_rle + .byte 25 + .word bath_08_rle + .byte 25 + .word bath_09_rle + .byte 25 + .word bath_10_rle + .byte 25 + .word bath_11_rle + .byte 25 + .word bath_12_rle + .byte 25 + .word bath_13_rle + .byte 25 + .word bath_14_rle + .byte 25 + .word bath_15_rle + .byte 25 + .word bath_16_rle + .byte 25 + .word bath_17_rle + .byte 25 + .word bath_18_rle + .byte 25 + .word bath_19_rle + .byte 25 + .word bath_20_rle + .byte 25 + .word bath_21_rle + .byte 25 + .word bath_22_rle + .byte 25 + .word bath_23_rle + .byte 25 + .word bath_24_rle + .byte 25 + .word bath_25_rle + .byte 25 + .word bath_26_rle + .byte 25 + .word bath_27_rle + .byte 25 + .word bath_28_rle + .byte 25 + .word bath_29_rle + .byte 25 + .word bath_30_rle + .byte 25 + .word bath_31_rle + .byte 25 + .word bath_32_rle + .byte 25 + .word bath_33_rle + .byte 25 + .word bath_34_rle + .byte 25 + .word bath_35_rle + .byte 25 + .word bath_35_rle + .byte 0 + + diff --git a/ootw/ootw_graphics/l15final/Makefile b/ootw/ootw_graphics/l15final/Makefile index ec141600..d0cd2698 100644 --- a/ootw/ootw_graphics/l15final/Makefile +++ b/ootw/ootw_graphics/l15final/Makefile @@ -3,14 +3,60 @@ include ../../../Makefile.inc PNG2RLE = ../../../gr-utils/png2rle PNG2LZ4 = ../../../gr-utils/png2lz4 -all: ootw_c15_final.inc +all: ootw_c15_bath.inc ootw_c15_final.inc ##### +ootw_c15_bath.inc: $(PNG2RLE) \ + bath_00.png bath_01.png bath_02.png bath_03.png bath_04.png \ + bath_05.png bath_06.png bath_07.png bath_08.png bath_09.png \ + bath_10.png bath_11.png bath_12.png bath_13.png bath_14.png \ + bath_15.png bath_16.png bath_17.png bath_18.png bath_19.png \ + bath_20.png bath_21.png bath_22.png bath_23.png bath_24.png \ + bath_25.png bath_26.png bath_27.png bath_28.png bath_29.png \ + bath_30.png bath_31.png bath_32.png bath_33.png bath_34.png \ + bath_35.png bath_end.png + $(PNG2RLE) asm bath_00.png bath_00_rle > ootw_c15_bath.inc + $(PNG2RLE) asm bath_01.png bath_01_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_02.png bath_02_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_03.png bath_03_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_04.png bath_04_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_05.png bath_05_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_06.png bath_06_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_07.png bath_07_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_08.png bath_08_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_09.png bath_09_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_10.png bath_10_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_11.png bath_11_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_12.png bath_12_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_13.png bath_13_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_14.png bath_14_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_15.png bath_15_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_16.png bath_16_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_17.png bath_17_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_18.png bath_18_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_19.png bath_19_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_20.png bath_20_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_21.png bath_21_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_22.png bath_22_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_23.png bath_23_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_24.png bath_24_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_25.png bath_25_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_26.png bath_26_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_27.png bath_27_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_28.png bath_28_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_29.png bath_29_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_30.png bath_30_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_31.png bath_31_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_32.png bath_32_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_33.png bath_33_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_34.png bath_34_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_35.png bath_35_rle >> ootw_c15_bath.inc + $(PNG2RLE) asm bath_end.png bath_end_rle >> ootw_c15_bath.inc + ootw_c15_final.inc: $(PNG2RLE) \ - bath.png walkway1.png walkway2.png walkway3.png above_pit.png final.png - $(PNG2RLE) asm bath.png bath_rle > ootw_c15_final.inc - $(PNG2RLE) asm walkway1.png walkway1_rle >> ootw_c15_final.inc + walkway1.png walkway2.png walkway3.png above_pit.png final.png + $(PNG2RLE) asm walkway1.png walkway1_rle > ootw_c15_final.inc $(PNG2RLE) asm walkway2.png walkway2_rle >> ootw_c15_final.inc $(PNG2RLE) asm walkway3.png walkway3_rle >> ootw_c15_final.inc $(PNG2RLE) asm above_pit.png above_pit_rle >> ootw_c15_final.inc diff --git a/ootw/ootw_graphics/l15final/bath_00.png b/ootw/ootw_graphics/l15final/bath_00.png new file mode 100644 index 00000000..8d267602 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_00.png differ diff --git a/ootw/ootw_graphics/l15final/bath_01.png b/ootw/ootw_graphics/l15final/bath_01.png new file mode 100644 index 00000000..21cb0723 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_01.png differ diff --git a/ootw/ootw_graphics/l15final/bath_02.png b/ootw/ootw_graphics/l15final/bath_02.png new file mode 100644 index 00000000..4bcf140c Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_02.png differ diff --git a/ootw/ootw_graphics/l15final/bath_03.png b/ootw/ootw_graphics/l15final/bath_03.png new file mode 100644 index 00000000..7c5a0243 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_03.png differ diff --git a/ootw/ootw_graphics/l15final/bath_04.png b/ootw/ootw_graphics/l15final/bath_04.png new file mode 100644 index 00000000..cbb65929 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_04.png differ diff --git a/ootw/ootw_graphics/l15final/bath_05.png b/ootw/ootw_graphics/l15final/bath_05.png new file mode 100644 index 00000000..df039cd5 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_05.png differ diff --git a/ootw/ootw_graphics/l15final/bath_06.png b/ootw/ootw_graphics/l15final/bath_06.png new file mode 100644 index 00000000..3587a94a Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_06.png differ diff --git a/ootw/ootw_graphics/l15final/bath_07.png b/ootw/ootw_graphics/l15final/bath_07.png new file mode 100644 index 00000000..ed97fdf8 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_07.png differ diff --git a/ootw/ootw_graphics/l15final/bath_08.png b/ootw/ootw_graphics/l15final/bath_08.png new file mode 100644 index 00000000..8893ac3e Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_08.png differ diff --git a/ootw/ootw_graphics/l15final/bath_09.png b/ootw/ootw_graphics/l15final/bath_09.png new file mode 100644 index 00000000..83531511 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_09.png differ diff --git a/ootw/ootw_graphics/l15final/bath_10.png b/ootw/ootw_graphics/l15final/bath_10.png new file mode 100644 index 00000000..f8430a06 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_10.png differ diff --git a/ootw/ootw_graphics/l15final/bath_11.png b/ootw/ootw_graphics/l15final/bath_11.png new file mode 100644 index 00000000..4eefbbf0 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_11.png differ diff --git a/ootw/ootw_graphics/l15final/bath_12.png b/ootw/ootw_graphics/l15final/bath_12.png new file mode 100644 index 00000000..0b3b41a1 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_12.png differ diff --git a/ootw/ootw_graphics/l15final/bath_13.png b/ootw/ootw_graphics/l15final/bath_13.png new file mode 100644 index 00000000..81d15fa0 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_13.png differ diff --git a/ootw/ootw_graphics/l15final/bath_14.png b/ootw/ootw_graphics/l15final/bath_14.png new file mode 100644 index 00000000..708fb959 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_14.png differ diff --git a/ootw/ootw_graphics/l15final/bath_15.png b/ootw/ootw_graphics/l15final/bath_15.png new file mode 100644 index 00000000..07a213b5 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_15.png differ diff --git a/ootw/ootw_graphics/l15final/bath_16.png b/ootw/ootw_graphics/l15final/bath_16.png new file mode 100644 index 00000000..bd0ddcb6 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_16.png differ diff --git a/ootw/ootw_graphics/l15final/bath_17.png b/ootw/ootw_graphics/l15final/bath_17.png new file mode 100644 index 00000000..a53fabe0 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_17.png differ diff --git a/ootw/ootw_graphics/l15final/bath_18.png b/ootw/ootw_graphics/l15final/bath_18.png new file mode 100644 index 00000000..4a3ef29e Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_18.png differ diff --git a/ootw/ootw_graphics/l15final/bath_19.png b/ootw/ootw_graphics/l15final/bath_19.png new file mode 100644 index 00000000..49cd833a Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_19.png differ diff --git a/ootw/ootw_graphics/l15final/bath_20.png b/ootw/ootw_graphics/l15final/bath_20.png new file mode 100644 index 00000000..ac4c0081 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_20.png differ diff --git a/ootw/ootw_graphics/l15final/bath_21.png b/ootw/ootw_graphics/l15final/bath_21.png new file mode 100644 index 00000000..e769d387 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_21.png differ diff --git a/ootw/ootw_graphics/l15final/bath_22.png b/ootw/ootw_graphics/l15final/bath_22.png new file mode 100644 index 00000000..24875a8b Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_22.png differ diff --git a/ootw/ootw_graphics/l15final/bath_23.png b/ootw/ootw_graphics/l15final/bath_23.png new file mode 100644 index 00000000..2fc8f050 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_23.png differ diff --git a/ootw/ootw_graphics/l15final/bath_24.png b/ootw/ootw_graphics/l15final/bath_24.png new file mode 100644 index 00000000..52be20a2 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_24.png differ diff --git a/ootw/ootw_graphics/l15final/bath_25.png b/ootw/ootw_graphics/l15final/bath_25.png new file mode 100644 index 00000000..7ad0bfa0 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_25.png differ diff --git a/ootw/ootw_graphics/l15final/bath_26.png b/ootw/ootw_graphics/l15final/bath_26.png new file mode 100644 index 00000000..c4910f3f Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_26.png differ diff --git a/ootw/ootw_graphics/l15final/bath_27.png b/ootw/ootw_graphics/l15final/bath_27.png new file mode 100644 index 00000000..f9b0298a Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_27.png differ diff --git a/ootw/ootw_graphics/l15final/bath_28.png b/ootw/ootw_graphics/l15final/bath_28.png new file mode 100644 index 00000000..c1ab0ba3 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_28.png differ diff --git a/ootw/ootw_graphics/l15final/bath_29.png b/ootw/ootw_graphics/l15final/bath_29.png new file mode 100644 index 00000000..85c1f8e6 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_29.png differ diff --git a/ootw/ootw_graphics/l15final/bath_30.png b/ootw/ootw_graphics/l15final/bath_30.png new file mode 100644 index 00000000..5f9a2aac Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_30.png differ diff --git a/ootw/ootw_graphics/l15final/bath_31.png b/ootw/ootw_graphics/l15final/bath_31.png new file mode 100644 index 00000000..5ea3a0ea Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_31.png differ diff --git a/ootw/ootw_graphics/l15final/bath_32.png b/ootw/ootw_graphics/l15final/bath_32.png new file mode 100644 index 00000000..2cc85c6a Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_32.png differ diff --git a/ootw/ootw_graphics/l15final/bath_33.png b/ootw/ootw_graphics/l15final/bath_33.png new file mode 100644 index 00000000..433c1079 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_33.png differ diff --git a/ootw/ootw_graphics/l15final/bath_34.png b/ootw/ootw_graphics/l15final/bath_34.png new file mode 100644 index 00000000..725ac827 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_34.png differ diff --git a/ootw/ootw_graphics/l15final/bath_35.png b/ootw/ootw_graphics/l15final/bath_35.png new file mode 100644 index 00000000..4440e56d Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_35.png differ diff --git a/ootw/ootw_graphics/l15final/bath_end.png b/ootw/ootw_graphics/l15final/bath_end.png new file mode 100644 index 00000000..65375c70 Binary files /dev/null and b/ootw/ootw_graphics/l15final/bath_end.png differ diff --git a/ootw/ootw_graphics/l15final/ootw_c15_bath.inc b/ootw/ootw_graphics/l15final/ootw_c15_bath.inc new file mode 100644 index 00000000..5a350d45 --- /dev/null +++ b/ootw/ootw_graphics/l15final/ootw_c15_bath.inc @@ -0,0 +1,759 @@ +bath_00_rle: .byte $28 ; ysize=48 + .byte $A3,$00, $40, $0C, $40, $04,$04, $00, $C4 + .byte $0C, $44,$44, $94, $91,$91, $40, $00, $40 + .byte $0C, $44,$44, $49, $19,$19, $09, $00, $04 + .byte $00, $04, $00, $4C, $40, $0C, $40 + .byte $09, $04, $40, $C0, $A4,$00, $40, $00 + .byte $0C, $00, $02, $04, $0C, $40,$40, $04 + .byte $09, $99, $19, $04, $00, $44, $00,$00 + .byte $40, $00, $04, $A4,$00, $40, $04, $44 + .byte $00, $90,$90, $44,$44, $04, $44,$44, $04, $00,$00 + .byte $04, $00, $40, $04, $A4,$00, $04,$04, $44 + .byte $00, $01, $40, $99,$99, $00, $C4, $C0 + .byte $44,$44, $A8,$00, $09, $99, $91, $10, $04,$04 + .byte $A3,$00, $40, $00, $04, $00, $04, $00 + .byte $C0, $2C, $20, $A5,$00, $44, $04, $19 + .byte $01, $40, $00, $C4, $00, $04, $A9,$00 + .byte $19, $99, $09, $A3,$00, $20,$20, $4C, $A3,$00 + .byte $40, $00,$00, $04,$04, $22, $00, $40, $44 + .byte $A4,$00, $10, $00, $44, $4C, $00, $A3,$44 + .byte $AB,$00, $20, $02, $A4,$00, $40, $C4, $A6,$00 + .byte $22, $04,$04, $00,$00, $20, $99, $91, $11 + .byte $00, $20, $00,$00, $44,$44, $A5,$00, $04, $A5,$00 + .byte $22, $00,$00, $77, $20, $00, $04, $00 + .byte $20,$20, $50,$50, $70, $A5,$00, $22, $A4,$00, $C0 + .byte $00, $20, $00, $04,$04, $A7,$00, $A4,$40, $00,$00 + .byte $70, $17, $12, $A3,$00, $12, $52, $15 + .byte $55, $17, $00,$00, $A3,$20, $70,$70, $A3,$00, $0C + .byte $00, $02, $AB,$00, $44, $77, $44, $00,$00 + .byte $77, $27, $11, $A3,$00, $11, $55, $11 + .byte $55, $11, $00,$00, $02, $52, $42, $27 + .byte $07, $A7,$00, $20,$20, $70, $A7,$00, $55, $A0,$01,$AA + .byte $55, $00, $20, $77, $22, $21, $20 + .byte $00,$00, $01, $55, $A0,$01,$A1, $55, $01, $A3,$00 + .byte $55, $44, $77, $A5,$00, $20, $00, $50 + .byte $A0,$01,$A2, $52, $17, $A4,$00, $20, $00,$00, $55 + .byte $A0,$01,$AA, $55, $00, $22, $77, $A4,$22, $20,$20 + .byte $55, $A0,$01,$AA, $55, $A3,$00, $22, $55, $40 + .byte $74, $A3,$00, $20, $02, $00,$00, $55, $A0,$01,$AA + .byte $55, $11, $A3,$00, $20, $02, $00,$00, $55 + .byte $A0,$01,$AA, $55, $00, $22, $77, $A6,$22, $55 + .byte $A0,$01,$AA, $55, $22, $20,$20, $22, $55, $46 + .byte $74, $22, $A5,$00, $20, $55, $A0,$01,$AA, $55 + .byte $20, $A3,$02, $00, $20, $02, $50, $55 + .byte $A0,$01,$AA, $55, $02, $00, $77, $A6,$22, $55 + .byte $A0,$01,$AA, $55, $00, $02,$02, $00, $55, $40 + .byte $44, $22, $20, $00, $20,$20, $00, $22 + .byte $55, $A0,$01,$AA, $55, $22, $20,$20, $00, $02 + .byte $00,$00, $25, $55, $A0,$01,$AA, $55, $00,$00, $77 + .byte $A6,$22, $55, $A0,$01,$AA, $55, $22, $00, $20 + .byte $22, $55, $46, $77, $22,$22, $20, $00,$00 + .byte $22, $02, $55, $A0,$01,$AA, $55, $02, $66 + .byte $00, $62, $20,$20, $55, $22, $55, $A0,$01,$AA + .byte $55, $20, $22, $77, $22, $00,$00, $A3,$22 + .byte $55, $A0,$01,$AA, $55, $A4,$22, $55, $40, $77 + .byte $A5,$22, $00, $22, $55, $A0,$01,$AA, $55, $00 + .byte $66, $00, $66, $00, $52, $22, $02 + .byte $55, $A0,$01,$AA, $55, $22,$22, $77, $22, $00,$00 + .byte $A3,$22, $55, $A0,$01,$AA, $55, $A4,$22, $55, $46 + .byte $77, $A4,$22, $20, $22, $02, $55, $A0,$01,$AA + .byte $55, $00, $26, $00, $66, $00, $25 + .byte $22, $00, $55, $A0,$01,$AA, $55, $52, $55 + .byte $77, $22, $00,$00, $A3,$82, $85, $8A, $85 + .byte $82, $A3,$22, $55, $40, $74, $A5,$22, $02 + .byte $00, $55, $A0,$01,$AA, $55, $00, $22, $00 + .byte $22, $00, $22, $00,$00, $55, $A0,$01,$AA, $55 + .byte $25, $22, $77, $22, $00,$00, $A5,$44, $77 + .byte $87, $78, $87, $82, $85, $74, $87 + .byte $A5,$82, $80,$80, $85, $8A, $85, $80, $82 + .byte $80, $52, $00, $82, $80,$80, $85, $8A + .byte $85, $82,$82, $87, $82, $00,$00, $24, $55 + .byte $00, $A4,$24, $27, $28, $27,$27, $AB,$00, $55 + .byte $A3,$00, $55, $A6,$00, $55, $A6,$00, $22, $55 + .byte $00, $52, $A7,$22, $AB,$00, $50, $00, $55 + .byte $00, $50, $00, $50, $00,$00, $55, $00 + .byte $50, $A6,$00, $52, $55, $50, $55, $A0,$12,$22 + .byte $55, $50, $55, $22, $55,$55, $25, $22,$22 + .byte $55, $50, $25, $52, $A3,$22, $00,$00, $A4,$55 + .byte $22,$22, $82, $AA,$22, $42, $A4,$22, $A3,$55, $22 + .byte $55,$55, $52, $22,$22, $55,$55, $22, $55, $A3,$22 + .byte $00,$00, $A4,$55, $22, $82, $A3,$88, $58, $85 + .byte $A4,$22, $82, $88, $44,$44, $82,$82, $A4,$55, $82 + .byte $55,$55, $A0,$01,$A5, $42, $52, $55,$55, $52, $85 + .byte $82, $88,$88, $00,$00, $55,$55, $A0,$02,$A5, $88, $85 + .byte $58,$58, $AA,$88, $44, $88,$88, $85,$85, $8A,$8A, $A4,$88 + .byte $44, $85,$85, $8A,$8A, $A4,$88 + .byte $A1 +; cycles=10097 +bath_01_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$A1,$AA, $A4,$0A, $A0,$23,$AA, $0A, $A4,$00, $0A + .byte $A0,$21,$AA, $A8,$00, $A0,$1A,$AA, $0A, $A5,$AA, $A0,$01,$A0, $A8,$00 + .byte $A0,$19,$AA, $00, $A0,$02,$AA, $7A, $0A, $A0,$02,$AA, $57 + .byte $70, $A6,$00, $A0,$19,$AA, $77, $A0,$02,$AA, $77, $00 + .byte $A0,$02,$AA, $77, $7F, $70, $A5,$00, $0A, $A0,$18,$AA + .byte $A0,$01,$A7, $A0,$02,$AA, $77, $55, $A0,$02,$AA, $A3,$77, $00,$00 + .byte $10,$10, $A3,$00, $0A, $A0,$19,$AA, $A0,$01,$A7, $A3,$AA, $77,$77 + .byte $A8,$00, $0A, $A0,$1E,$AA, $AA,$00, $A0,$1E,$AA, $AA,$00, $A0,$1E,$AA + .byte $AA,$00, $A0,$1E,$AA, $AA,$00, $A0,$1E,$AA, $AA,$00, $A0,$1E,$AA, $AA,$00 + .byte $AE,$AA + .byte $A1 +; cycles=1719 +bath_02_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$9A,$AA, $A8,$0A, $A0,$20,$AA, $A0,$01,$A0, $A7,$00, $0A + .byte $A0,$20,$AA, $70, $A7,$00, $A0,$1E,$AA, $0A, $A0,$01,$AA, $75 + .byte $F0, $A6,$00, $0A, $A0,$1D,$AA, $00, $A0,$01,$AA, $77,$77 + .byte $70, $A6,$00, $A0,$1D,$AA, $77, $A0,$01,$AA, $77,$77, $07 + .byte $00,$00, $A3,$10, $00, $A0,$1D,$AA, $A0,$01,$A7, $A0,$01,$AA, $A0,$01,$A7 + .byte $07, $A8,$00, $A0,$1E,$AA, $0A, $A9,$00, $A0,$1D,$AA, $0A + .byte $A0,$01,$A0, $A0,$01,$AA, $A9,$00, $AB,$AA, $A0,$01,$A0, $55, $A0,$01,$AA + .byte $00, $AD,$AA, $A0,$01,$A0, $A0,$02,$AA, $A9,$00, $A0,$1F,$AA, $A9,$00 + .byte $A6,$AA, $2A, $A7,$AA, $5A, $2A, $AF,$AA, $A9,$00 + .byte $A6,$AA, $A0,$01,$A7, $A4,$AA, $A0,$01,$A7, $A0,$02,$AA, $A0,$01,$A5, $A0,$10,$AA + .byte $A9,$00, $A0,$1F,$AA, $A9,$00, $A0,$13,$AA + .byte $A1 +; cycles=616 +bath_03_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$97,$AA, $A5,$0A, $A0,$21,$AA, $A7,$00, $0A, $A0,$20,$AA + .byte $A0,$01,$A0, $A8,$00, $A0,$20,$AA, $57, $F0, $A6,$00, $A0,$20,$AA + .byte $77,$77, $70, $A6,$00, $0A, $A0,$01,$AA, $00, $77 + .byte $A0,$1B,$AA, $A3,$77, $00,$00, $A3,$10, $00,$00, $0A, $A0,$01,$AA + .byte $77, $A0,$1B,$AA, $77, $07, $A8,$00, $A0,$02,$AA, $77 + .byte $A0,$1C,$AA, $A9,$00, $0A, $A0,$01,$AA, $A0,$01,$A7, $A0,$1A,$AA, $0A + .byte $00, $0A, $A9,$00, $A0,$11,$AA, $55, $00,$00, $A7,$AA + .byte $0A, $A0,$01,$A0, $A0,$01,$AA, $AA,$00, $A0,$11,$AA, $55, $00 + .byte $A0,$01,$A0, $AB,$AA, $A9,$00, $AB,$AA, $0A, $A5,$AA, $A0,$01,$A5 + .byte $00, $5A, $2A, $AA,$AA, $A9,$00, $AB,$AA, $A0,$01,$A7 + .byte $A3,$AA, $A0,$01,$A7, $A3,$AA, $55, $A0,$01,$A2, $AA,$AA, $A9,$00 + .byte $A0,$1F,$AA, $A9,$00, $A0,$18,$AA + .byte $A1 +; cycles=751 +bath_04_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$B9,$AA, $A6,$0A, $A0,$22,$AA, $A7,$00, $A0,$21,$AA, $70 + .byte $A7,$00, $0A, $A0,$1F,$AA, $75, $F0, $A7,$00, $A0,$02,$AA + .byte $7A, $0A, $A3,$AA, $00, $77, $A0,$16,$AA, $A3,$77 + .byte $A6,$00, $0A, $A0,$01,$AA, $77, $00, $A4,$AA, $77 + .byte $A0,$16,$AA, $77,$77, $07, $00,$00, $A3,$01, $00,$00, $0A + .byte $77, $A5,$AA, $77, $A0,$16,$AA, $77, $07, $A8,$00 + .byte $A0,$01,$AA, $A0,$01,$A7, $A5,$AA, $A0,$01,$A7, $A0,$16,$AA, $AB,$00, $A0,$16,$AA + .byte $55, $00,$00, $A4,$AA, $AB,$00, $A0,$16,$AA, $55, $A0,$01,$AA + .byte $A0,$01,$A0, $A4,$AA, $AB,$00, $A0,$16,$AA, $55, $0A, $5A + .byte $2A, $A3,$AA, $AB,$00, $A0,$10,$AA, $A0,$01,$A7, $A0,$02,$AA, $A0,$01,$A7 + .byte $A0,$02,$AA, $55, $A0,$01,$AA, $55, $A0,$01,$A2, $A3,$AA, $AB,$00 + .byte $A0,$1D,$AA, $AB,$00, $A0,$1D,$AA + .byte $A1 +; cycles=886 +bath_05_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$B9,$AA, $0A,$0A, $A0,$26,$AA, $A3,$00, $A0,$25,$AA, $A3,$00 + .byte $A5,$AA, $0A, $A0,$1F,$AA, $A3,$00, $0A, $A4,$AA, $70 + .byte $A0,$02,$AA, $7A, $0A, $A3,$AA, $00, $77, $A0,$16,$AA + .byte $A5,$00, $A3,$AA, $77, $A0,$02,$AA, $77, $00, $A4,$AA + .byte $77, $A0,$16,$AA, $A3,$01, $00,$00, $A0,$01,$A0, $A0,$02,$AA, $A0,$01,$A7 + .byte $A0,$02,$AA, $77, $A5,$AA, $77, $A0,$16,$AA, $A5,$00, $0A + .byte $A5,$AA, $A0,$01,$A7, $A5,$AA, $A0,$01,$A7, $AA,$AA, $8A, $0A + .byte $5A, $A9,$AA, $A6,$00, $A0,$16,$AA, $00,$00, $55, $A0,$02,$AA + .byte $55, $00,$00, $A4,$AA, $A6,$00, $A0,$17,$AA, $00, $50 + .byte $A0,$02,$AA, $55, $A0,$01,$AA, $A0,$01,$A0, $A4,$AA, $A6,$00, $A0,$18,$AA + .byte $FA, $A9,$AA, $A6,$00, $A0,$11,$AA, $A0,$01,$A7, $A3,$AA, $A0,$01,$A7 + .byte $A0,$02,$AA, $A0,$01,$AF, $A9,$AA, $A6,$00, $A0,$22,$AA, $A6,$00, $A0,$22,$AA + .byte $A1 +; cycles=1021 +bath_06_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$12,$AA, $0A, $A0,$27,$AA, $70, $A0,$02,$AA + .byte $7A, $0A, $A3,$AA, $00, $77, $A0,$1E,$AA, $77 + .byte $A0,$02,$AA, $77, $00, $A4,$AA, $77, $A0,$1E,$AA, $A0,$01,$A7 + .byte $A0,$02,$AA, $77, $A5,$AA, $77, $A0,$21,$AA, $A0,$01,$A7, $A5,$AA + .byte $A0,$01,$A7, $AA,$AA, $8A, $0A, $5A, $A0,$25,$AA, $00,$00 + .byte $55, $A0,$02,$AA, $55, $00,$00, $A0,$21,$AA, $00, $50 + .byte $A0,$02,$AA, $55, $A0,$01,$AA, $A0,$01,$A0, $A0,$1A,$AA, $7A,$7A, $A0,$26,$AA + .byte $A0,$02,$A7, $A3,$AA, $A0,$01,$A7, $A0,$5C,$AA + .byte $A1 +; cycles=2587 +bath_07_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$12,$AA, $0A, $A0,$27,$AA, $70, $A0,$02,$AA + .byte $7A, $0A, $A3,$AA, $00, $77, $A0,$1E,$AA, $77 + .byte $A0,$02,$AA, $77, $00, $A4,$AA, $77, $A0,$1E,$AA, $A0,$01,$A7 + .byte $A0,$02,$AA, $77, $A5,$AA, $77, $A0,$21,$AA, $A0,$01,$A7, $A5,$AA + .byte $A0,$01,$A7, $AA,$AA, $8A, $0A, $5A, $A0,$25,$AA, $00,$00 + .byte $55, $A0,$02,$AA, $55, $00,$00, $A0,$21,$AA, $00, $50 + .byte $A0,$02,$AA, $55, $A0,$01,$AA, $A0,$01,$A0, $A0,$19,$AA, $7A,$7A, $0A + .byte $A0,$25,$AA, $A3,$A7, $A3,$AA, $A0,$01,$A7, $A0,$5C,$AA + .byte $A1 +; cycles=2587 +bath_08_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$12,$AA, $0A, $A0,$27,$AA, $70, $A0,$02,$AA + .byte $7A, $0A, $A3,$AA, $00, $77, $A0,$1E,$AA, $77 + .byte $A0,$02,$AA, $77, $00, $A4,$AA, $77, $A0,$1E,$AA, $A0,$01,$A7 + .byte $A0,$02,$AA, $77, $A5,$AA, $77, $A0,$21,$AA, $A0,$01,$A7, $A5,$AA + .byte $A0,$01,$A7, $AA,$AA, $8A, $0A, $5A, $A0,$25,$AA, $00,$00 + .byte $55, $A0,$02,$AA, $55, $00,$00, $A0,$21,$AA, $00, $50 + .byte $A0,$02,$AA, $55, $A0,$01,$AA, $A0,$01,$A0, $A0,$18,$AA, $7A,$7A, $0A + .byte $A0,$25,$AA, $A4,$A7, $A3,$AA, $A0,$01,$A7, $A0,$5C,$AA + .byte $A1 +; cycles=2587 +bath_09_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$12,$AA, $0A, $A0,$27,$AA, $70, $A0,$02,$AA + .byte $7A, $0A, $A4,$AA, $0A, $A0,$1E,$AA, $77, $A0,$02,$AA + .byte $77, $00, $A4,$AA, $50, $A0,$1E,$AA, $A0,$01,$A7, $A0,$02,$AA + .byte $77, $A5,$AA, $55, $A0,$21,$AA, $A0,$01,$A7, $A5,$AA, $A0,$01,$A5 + .byte $AA,$AA, $8A, $0A, $5A, $A0,$25,$AA, $00,$00, $55 + .byte $A0,$02,$AA, $55, $00,$00, $A0,$21,$AA, $00, $50, $A0,$02,$AA + .byte $55, $A0,$01,$AA, $A0,$01,$A0, $A0,$18,$AA, $7A,$7A, $0A, $A0,$25,$AA + .byte $A4,$A7, $A3,$AA, $A0,$01,$A7, $A0,$5C,$AA + .byte $A1 +; cycles=2587 +bath_10_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$12,$AA, $0A, $A0,$27,$AA, $70, $A0,$02,$AA + .byte $7A, $0A, $A0,$23,$AA, $77, $A0,$02,$AA, $77, $00 + .byte $A4,$AA, $00, $A0,$1E,$AA, $A0,$01,$A7, $A0,$02,$AA, $77, $A5,$AA + .byte $55, $A0,$21,$AA, $A0,$01,$A7, $A5,$AA, $A0,$01,$A5, $AA,$AA, $8A + .byte $0A, $5A, $A0,$25,$AA, $00,$00, $55, $A0,$26,$AA, $00 + .byte $50, $A0,$1C,$AA, $7A,$7A, $0A, $A0,$25,$AA, $A4,$A7, $A0,$61,$AA + .byte $A1 +; cycles=2722 +bath_11_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$12,$AA, $0A, $A0,$27,$AA, $70, $A0,$02,$AA + .byte $7A, $0A, $A0,$23,$AA, $77, $A0,$02,$AA, $77, $00 + .byte $A4,$AA, $0A, $A0,$1E,$AA, $A0,$01,$A7, $A0,$02,$AA, $77, $A5,$AA + .byte $50, $A0,$21,$AA, $A0,$01,$A7, $A5,$AA, $A0,$01,$A5, $AA,$AA, $8A + .byte $0A, $5A, $A0,$25,$AA, $00,$00, $55, $A0,$26,$AA, $00 + .byte $50, $A0,$1B,$AA, $7A,$7A, $0A, $A0,$25,$AA, $A4,$A7, $A0,$62,$AA + .byte $A1 +; cycles=2749 +bath_12_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$12,$AA, $0A, $A0,$27,$AA, $70, $A0,$02,$AA + .byte $7A, $0A, $A0,$23,$AA, $77, $A0,$02,$AA, $77, $00 + .byte $A0,$23,$AA, $A0,$01,$A7, $A0,$02,$AA, $77, $A5,$AA, $0A, $A0,$21,$AA + .byte $A0,$01,$A7, $A5,$AA, $A0,$01,$A0, $AA,$AA, $8A, $0A, $5A + .byte $A0,$25,$AA, $00,$00, $55, $A0,$26,$AA, $00, $50, $A0,$1A,$AA + .byte $7A,$7A, $0A, $A0,$25,$AA, $A4,$A7, $A0,$02,$AA, $A0,$01,$A7, $A0,$60,$AA + .byte $A1 +; cycles=2695 +bath_13_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$12,$AA, $0A, $A0,$27,$AA, $70, $A0,$02,$AA + .byte $7A, $0A, $A0,$23,$AA, $77, $A0,$02,$AA, $77, $00 + .byte $A0,$23,$AA, $A0,$01,$A7, $A0,$02,$AA, $77, $A0,$27,$AA, $A0,$01,$A7, $A0,$10,$AA + .byte $8A, $0A, $5A, $A0,$25,$AA, $00,$00, $55, $A0,$26,$AA + .byte $00, $50, $A0,$19,$AA, $7A,$7A, $0A, $A0,$25,$AA, $A4,$A7 + .byte $A0,$02,$AA, $A0,$01,$A7, $A0,$61,$AA + .byte $A1 +; cycles=2722 +bath_14_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$12,$AA, $0A, $A0,$27,$AA, $70, $A0,$02,$AA + .byte $7A, $0A, $A0,$23,$AA, $77, $A0,$02,$AA, $77, $00 + .byte $A0,$23,$AA, $A0,$01,$A7, $A0,$02,$AA, $77, $A0,$27,$AA, $A0,$01,$A7, $A0,$10,$AA + .byte $8A, $0A, $5A, $A0,$25,$AA, $00,$00, $55, $A0,$26,$AA + .byte $00, $50, $A0,$18,$AA, $7A,$7A, $0A, $A0,$25,$AA, $A4,$A7 + .byte $A0,$02,$AA, $A0,$01,$A7, $A0,$62,$AA + .byte $A1 +; cycles=2749 +bath_15_rle: .byte $28 ; ysize=48 + .byte $A0,$02,$AA, $A0,$01,$AC, $A0,$01,$A1, $A3,$A9, $A4,$AA, $A0,$01,$A9, $A0,$22,$AA + .byte $A0,$01,$A9, $99, $A0,$FF,$AA, $A0,$E1,$AA, $0A, $A0,$27,$AA, $70 + .byte $A0,$02,$AA, $7A, $0A, $A0,$23,$AA, $77, $A0,$02,$AA, $77 + .byte $00, $A0,$23,$AA, $A0,$01,$A7, $A0,$02,$AA, $77, $A0,$27,$AA, $A0,$01,$A7 + .byte $A0,$7A,$AA, $7A,$7A, $0A, $A0,$25,$AA, $A4,$A7, $A0,$02,$AA, $A0,$01,$A7 + .byte $A0,$63,$AA + .byte $A1 +; cycles=2776 +bath_16_rle: .byte $28 ; ysize=48 + .byte $A0,$02,$AA, $A0,$01,$AC, $A0,$01,$A1, $A3,$A9, $A4,$AA, $A0,$01,$A9, $A0,$20,$AA + .byte $99, $A0,$01,$AA, $A0,$01,$A9, $22, $9A, $00, $A0,$25,$AA + .byte $A0,$01,$A2, $29, $A0,$01,$A0, $0A, $A0,$23,$AA, $00, $A0,$01,$AA + .byte $92, $2A, $00, $A0,$02,$AA, $A3,$A9, $A0,$1E,$AA, $A0,$01,$A0 + .byte $0A, $A0,$01,$AA, $22, $A0,$01,$AA, $00, $A0,$02,$AA, $9A,$9A + .byte $A0,$1C,$AA, $CC, $A0,$02,$AA, $A0,$01,$A0, $0A, $A0,$01,$AA, $22 + .byte $CA, $00, $A0,$02,$AA, $A0,$01,$A9, $A0,$20,$AA, $A0,$01,$A0, $0A + .byte $A0,$01,$AA, $CC, $A0,$01,$AA, $00, $A0,$20,$AA, $A0,$02,$A9, $A0,$02,$AA + .byte $00, $A0,$01,$AA, $22, $A0,$01,$AA, $00, $A0,$22,$AA, $99 + .byte $A0,$01,$AA, $0A, $A0,$01,$A2, $2A, $A0,$01,$AA, $00, $A0,$23,$AA + .byte $A0,$01,$A0, $A0,$01,$AA, $A0,$01,$A2, $A3,$0A, $A0,$23,$AA, $A0,$01,$A0, $0A + .byte $A3,$00, $0A, $A0,$23,$AA, $A5,$00, $A0,$22,$AA, $9A, $A4,$00 + .byte $A0,$01,$A0, $A0,$24,$AA, $A0,$02,$A0, $A0,$93,$AA, $5A, $0A, $A0,$17,$AA + .byte $8A, $A0,$27,$AA, $00, $A0,$27,$AA, $A0,$01,$A5, $A0,$01,$AA, $A0,$01,$A5 + .byte $AB,$AA, $A0,$01,$A5, $A0,$01,$AA, $A0,$01,$A5, $A0,$01,$AA, $5A, $A5,$AA + .byte $7A,$7A, $0A, $A0,$15,$AA, $2A, $A5,$AA, $22, $A9,$AA + .byte $A4,$A7, $A0,$02,$AA, $A0,$01,$A7, $A0,$11,$AA, $22, $A0,$1F,$AA, $A3,$8A + .byte $A5,$AA, $A0,$01,$A2, $A5,$AA, $A4,$8A, $A0,$22,$AA + .byte $A1 +; cycles=1021 +bath_17_rle: .byte $28 ; ysize=48 + .byte $A0,$A6,$AA, $9A, $A0,$29,$AA, $9A, $A0,$23,$AA, $99, $A0,$01,$AA + .byte $A0,$01,$A4, $A0,$01,$AA, $A0,$01,$A9, $A0,$7B,$AA, $A0,$01,$A0, $0A, $A0,$01,$AA + .byte $A3,$9A, $A0,$1E,$AA, $9A, $A3,$AA, $CC, $0A, $A0,$01,$A0 + .byte $0A, $A0,$20,$AA, $A0,$01,$A9, $A3,$AA, $0C, $A0,$01,$AA, $A0,$01,$A0 + .byte $0A, $A0,$01,$A0, $A0,$24,$AA, $A0,$01,$A0, $0A, $A0,$01,$AA, $9A + .byte $A0,$01,$A0, $0A, $A0,$19,$AA, $CA, $AA,$AA, $0A, $A0,$01,$A0 + .byte $0A, $A0,$01,$AA, $0A, $6A,$6A, $A0,$16,$AA, $A0,$01,$AC, $A5,$AA + .byte $9A, $A5,$AA, $A0,$01,$A0, $0A, $00,$00, $22, $66,$66 + .byte $A0,$1B,$AA, $A0,$01,$A9, $A6,$AA, $0A, $00,$00, $02, $22 + .byte $66, $A0,$23,$AA, $A5,$00, $A0,$14,$AA, $4A,$4A, $A0,$01,$AA, $9A,$9A + .byte $AB,$AA, $A3,$00, $A0,$01,$A0, $A0,$02,$AA, $0A, $A0,$02,$AA, $A3,$8A + .byte $AC,$AA, $24, $04, $A0,$15,$AA, $55, $A0,$01,$AA, $00 + .byte $A6,$AA, $00, $A7,$AA, $22, $00, $2A,$2A, $A0,$11,$AA + .byte $A0,$01,$A5, $A3,$AA, $00, $A0,$01,$AA, $0A, $A0,$02,$AA, $00 + .byte $A8,$AA, $22, $A0,$01,$AA, $00, $A0,$01,$AA, $2A,$2A, $A3,$AA + .byte $7A,$7A, $0A, $A3,$AA, $FA, $AB,$AA, $00, $A6,$AA + .byte $2A, $A5,$AA, $22, $A8,$AA, $A4,$A7, $A0,$02,$AA, $A0,$01,$A7 + .byte $AA,$AA, $FA, $A0,$01,$AA, $FF, $A5,$AA, $22, $A5,$AA + .byte $22, $A0,$14,$AA, $82, $A4,$AA, $8F, $8A, $8F + .byte $A0,$01,$AA, $A4,$8A, $A0,$01,$A2, $A5,$AA, $A4,$88, $A0,$11,$AA, $A4,$A8 + .byte $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_18_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$BF,$AA, $A0,$01,$A9, $A0,$4F,$AA, $A0,$01,$A4, $AB,$AA, $0A + .byte $6A,$6A, $A0,$1B,$AA, $99, $A8,$AA, $00,$00, $B9, $66,$66 + .byte $A0,$01,$AA, $2A, $A0,$14,$AA, $9A, $AC,$AA, $00,$00, $0B + .byte $22, $66, $A0,$01,$A2, $A0,$15,$AA, $A0,$01,$A9, $AC,$AA, $A5,$00 + .byte $2A, $A0,$01,$A2, $A0,$13,$AA, $4A,$4A, $AD,$AA, $A3,$00, $A0,$01,$A0 + .byte $A6,$AA, $A3,$8A, $AC,$AA, $24,$24, $FA, $A4,$AA, $9A + .byte $A0,$01,$AA, $CA, $A0,$02,$AA, $A3,$9A, $A6,$AA, $00, $A0,$01,$AA + .byte $00, $A0,$01,$AA, $00, $A5,$AA, $FF, $00, $A7,$AA + .byte $22, $CC, $FF, $A4,$AA, $A0,$01,$A9, $A0,$01,$AA, $A0,$01,$AC + .byte $AB,$AA, $00, $A0,$01,$AA, $00, $A0,$01,$AA, $00, $FA + .byte $0A, $A0,$02,$AA, $00, $FF, $0A, $A6,$AA, $2A + .byte $A3,$22, $A4,$AA, $7A,$7A, $0A, $A0,$02,$AA, $A3,$FA, $A6,$AA + .byte $A3,$22, $A0,$01,$AA, $22, $FF, $A0,$01,$A2, $A0,$02,$AA, $66 + .byte $FF, $A0,$01,$AA, $2A, $A5,$AA, $22, $F2, $22 + .byte $62, $A4,$AA, $A4,$A7, $AB,$AA, $02, $A0,$02,$AA, $62 + .byte $FF, $66, $A0,$02,$AA, $66, $FF, $66, $22 + .byte $A5,$AA, $22, $FF, $22, $66, $A0,$11,$AA, $82 + .byte $8A, $80, $8A, $A0,$01,$AA, $86, $8F, $86 + .byte $A0,$01,$AA, $8A, $86, $8F, $86, $A0,$01,$A2, $A5,$AA + .byte $A4,$88, $A0,$11,$AA, $A4,$A8, $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_19_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$1B,$AA, $0A, $6A,$6A, $A0,$24,$AA, $00,$00 + .byte $B9, $66,$66, $A0,$23,$AA, $00,$00, $0B, $22, $66 + .byte $A0,$23,$AA, $A5,$00, $A0,$16,$AA, $4A,$4A, $A0,$01,$AA, $A0,$01,$A9, $AA,$AA + .byte $A3,$00, $A0,$01,$A0, $A7,$AA, $A3,$8A, $AC,$AA, $24,$24, $2A + .byte $A0,$02,$AA, $9A, $AF,$AA, $00, $A0,$01,$AA, $00, $A0,$01,$AA + .byte $00, $A5,$AA, $00,$00, $A7,$AA, $22, $F2,$F2, $A0,$01,$A4 + .byte $A0,$01,$AA, $A0,$01,$A9, $A0,$01,$AA, $FA, $A0,$01,$AA, $FA, $AB,$AA + .byte $00, $FA, $00, $A0,$01,$AA, $00, $0A,$0A, $A0,$02,$AA + .byte $00, $FF, $0A, $A6,$AA, $2A, $A3,$22, $A3,$AA + .byte $7A,$7A, $0A, $A3,$AA, $A3,$FA, $A6,$AA, $22, $FF + .byte $22, $A0,$01,$AA, $22,$22, $A0,$01,$A2, $A0,$02,$AA, $22, $FF + .byte $A0,$01,$AA, $2A, $A5,$AA, $A4,$22, $A3,$AA, $A4,$A7, $AB,$AA + .byte $66, $FF, $62, $A0,$01,$AA, $22, $FF, $22 + .byte $A0,$02,$AA, $66, $FF, $22,$22, $A5,$AA, $22, $F2 + .byte $22, $66, $A0,$11,$AA, $82, $86, $8F, $86 + .byte $A0,$01,$AA, $82, $8F, $82, $A0,$01,$AA, $8A, $86 + .byte $8F, $86, $A0,$01,$A2, $A5,$AA, $A4,$88, $A0,$11,$AA, $A4,$A8 + .byte $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_20_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$1B,$AA, $0A, $6A,$6A, $A0,$24,$AA, $00,$00 + .byte $B9, $66,$66, $A0,$23,$AA, $00,$00, $0B, $22, $66 + .byte $A0,$23,$AA, $A5,$00, $A0,$16,$AA, $4A,$4A, $AC,$AA, $A3,$00, $A0,$01,$A0 + .byte $A7,$AA, $A3,$8A, $AC,$AA, $24,$24, $2A, $6A, $A0,$11,$AA + .byte $00, $A0,$01,$AA, $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00 + .byte $A7,$AA, $A3,$22, $A0,$01,$AF, $A0,$01,$AA, $F6, $AF,$AA, $00 + .byte $0A, $00, $A0,$01,$AA, $00, $0A,$0A, $A0,$02,$AA, $00,$00 + .byte $0A, $A6,$AA, $2A, $A3,$22, $A0,$02,$AA, $7A,$7A, $0A + .byte $AD,$AA, $A3,$22, $A0,$01,$AA, $22,$22, $A0,$01,$A2, $A0,$02,$AA, $22,$22 + .byte $A0,$01,$A2, $2A, $A5,$AA, $A4,$22, $A0,$02,$AA, $A4,$A7, $A0,$02,$AA + .byte $A0,$01,$A7, $A9,$AA, $22, $F2, $22, $A0,$01,$AA, $A3,$22 + .byte $A0,$02,$AA, $A4,$22, $A5,$AA, $A4,$22, $A0,$11,$AA, $82,$82, $8F + .byte $86, $A0,$01,$AA, $A3,$82, $A0,$01,$AA, $8A, $A3,$82, $A0,$01,$A2 + .byte $A5,$AA, $A4,$88, $A0,$11,$AA, $A4,$A8, $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_21_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$1B,$AA, $0A, $6A,$6A, $A0,$24,$AA, $00,$00 + .byte $B9, $66,$66, $A0,$23,$AA, $00,$00, $0B, $22, $66 + .byte $A0,$23,$AA, $A5,$00, $A0,$16,$AA, $4A,$4A, $AC,$AA, $A3,$00, $A0,$01,$A0 + .byte $A7,$AA, $A3,$8A, $AC,$AA, $24,$24, $2A,$2A, $A0,$11,$AA, $00 + .byte $A0,$01,$AA, $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A7,$AA + .byte $A3,$22, $A0,$01,$AF, $A0,$11,$AA, $00, $0A, $00, $A0,$01,$AA + .byte $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A, $A6,$AA, $2A + .byte $A3,$22, $A0,$01,$AA, $7A,$7A, $0A, $AE,$AA, $A3,$22, $A0,$01,$AA + .byte $22,$22, $A0,$01,$A2, $A0,$02,$AA, $22,$22, $A0,$01,$A2, $2A, $A5,$AA + .byte $A4,$22, $A0,$01,$AA, $A4,$A7, $A0,$02,$AA, $A0,$01,$A7, $AA,$AA, $A3,$22 + .byte $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22, $A5,$AA, $A4,$22, $A0,$11,$AA + .byte $A4,$82, $A0,$01,$AA, $A3,$82, $A0,$01,$AA, $8A, $A3,$82, $A0,$01,$A2 + .byte $A5,$AA, $A4,$88, $A0,$11,$AA, $A4,$A8, $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_22_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$1B,$AA, $0A, $6A,$6A, $A0,$24,$AA, $00,$00 + .byte $B9, $66,$66, $A0,$23,$AA, $00,$00, $0B, $22, $66 + .byte $A0,$23,$AA, $A5,$00, $A0,$16,$AA, $4A,$4A, $AC,$AA, $A3,$00, $A0,$01,$A0 + .byte $A7,$AA, $A3,$8A, $AC,$AA, $24,$24, $2A,$2A, $A0,$11,$AA, $00 + .byte $A0,$01,$AA, $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A7,$AA + .byte $A3,$22, $A0,$01,$A2, $A0,$11,$AA, $00, $0A, $00, $A0,$01,$AA + .byte $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A, $A6,$AA, $2A + .byte $A3,$22, $7A,$7A, $0A, $AF,$AA, $A3,$22, $A0,$01,$AA, $22,$22 + .byte $A0,$01,$A2, $A0,$02,$AA, $22,$22, $A0,$01,$A2, $2A, $A5,$AA, $A4,$22 + .byte $A4,$A7, $A0,$02,$AA, $A0,$01,$A7, $AB,$AA, $A3,$22, $A0,$01,$AA, $A3,$22 + .byte $A0,$02,$AA, $A4,$22, $A5,$AA, $A4,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA + .byte $A3,$82, $A0,$01,$AA, $8A, $A3,$82, $A0,$01,$A2, $A5,$AA, $A4,$88 + .byte $A0,$11,$AA, $A4,$A8, $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_23_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$1B,$AA, $0A, $6A,$6A, $A0,$24,$AA, $00,$00 + .byte $B9, $66,$66, $A0,$23,$AA, $00,$00, $0B, $22, $66 + .byte $A0,$23,$AA, $A5,$00, $A0,$16,$AA, $4A,$4A, $AC,$AA, $A3,$00, $A0,$01,$A0 + .byte $A7,$AA, $A3,$8A, $AC,$AA, $24,$24, $2A,$2A, $A0,$11,$AA, $00 + .byte $A0,$01,$AA, $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A7,$AA + .byte $A3,$22, $A0,$01,$A2, $A0,$11,$AA, $00, $0A, $00, $A0,$01,$AA + .byte $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A, $A6,$AA, $2A + .byte $22,$22, $72, $7A, $0A, $A0,$10,$AA, $A3,$22, $A0,$01,$AA + .byte $22,$22, $A0,$01,$A2, $A0,$02,$AA, $22,$22, $A0,$01,$A2, $2A, $A5,$AA + .byte $A3,$22, $27, $A3,$A7, $A0,$02,$AA, $A0,$01,$A7, $AC,$AA, $A3,$22 + .byte $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22, $A5,$AA, $A4,$22, $A0,$11,$AA + .byte $A4,$82, $A0,$01,$AA, $A3,$82, $A0,$01,$AA, $8A, $A3,$82, $A0,$01,$A2 + .byte $A5,$AA, $A4,$88, $A0,$11,$AA, $A4,$A8, $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_24_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$12,$AA, $A0,$01,$A7, $77, $A7,$AA, $0A + .byte $6A,$6A, $A0,$1D,$AA, $70, $A6,$AA, $00,$00, $B9, $66,$66 + .byte $A0,$1B,$AA, $7A,$7A, $A6,$AA, $00,$00, $0B, $22, $66 + .byte $A0,$23,$AA, $A5,$00, $A0,$16,$AA, $4A,$4A, $AC,$AA, $A3,$00, $A0,$01,$A0 + .byte $A7,$AA, $A3,$8A, $AC,$AA, $24,$24, $2A,$2A, $A0,$11,$AA, $00 + .byte $A0,$01,$AA, $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A7,$AA + .byte $A3,$22, $A0,$01,$A2, $A0,$11,$AA, $00, $0A, $00, $A0,$01,$AA + .byte $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A, $A6,$AA, $2A + .byte $22, $72,$72, $0A, $A0,$11,$AA, $A3,$22, $A0,$01,$AA, $22,$22 + .byte $A0,$01,$A2, $A0,$02,$AA, $22,$22, $A0,$01,$A2, $2A, $A5,$AA, $22,$22 + .byte $27,$27, $A0,$02,$A7, $A0,$02,$AA, $A0,$01,$A7, $AD,$AA, $A3,$22, $A0,$01,$AA + .byte $A3,$22, $A0,$02,$AA, $A4,$22, $A5,$AA, $A4,$22, $A0,$11,$AA, $A4,$82 + .byte $A0,$01,$AA, $A3,$82, $A0,$01,$AA, $8A, $A3,$82, $A0,$01,$A2, $A5,$AA + .byte $A4,$88, $A0,$11,$AA, $A4,$A8, $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_25_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$13,$AA, $77,$77, $A6,$AA, $0A, $6A,$6A + .byte $A0,$1D,$AA, $15, $10, $7A, $A4,$AA, $00,$00, $B9 + .byte $66,$66, $A0,$1C,$AA, $70, $50, $A5,$AA, $00,$00, $0B + .byte $22, $66, $A0,$1C,$AA, $77, $55, $A5,$AA, $A5,$00 + .byte $A0,$16,$AA, $4A,$4A, $AC,$AA, $A3,$00, $A0,$01,$A0, $A7,$AA, $A3,$8A + .byte $AC,$AA, $24,$24, $2A,$2A, $A0,$11,$AA, $00, $A0,$01,$AA, $00 + .byte $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A7,$AA, $A3,$22, $A0,$01,$A2 + .byte $A0,$11,$AA, $00, $0A, $00, $A0,$01,$AA, $00, $0A,$0A + .byte $A0,$02,$AA, $00,$00, $0A, $A6,$AA, $2A, $72,$72, $02 + .byte $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $22,$22, $A0,$01,$A2, $A0,$02,$AA, $22,$22 + .byte $A0,$01,$A2, $2A, $A5,$AA, $22, $A3,$27, $A0,$01,$A7, $A0,$02,$AA + .byte $A0,$01,$A7, $AE,$AA, $A3,$22, $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22 + .byte $A5,$AA, $A4,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA, $A3,$82, $A0,$01,$AA + .byte $8A, $A3,$82, $A0,$01,$A2, $A5,$AA, $A4,$88, $A0,$11,$AA, $A4,$A8 + .byte $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_26_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$13,$AA, $77,$77, $A6,$AA, $0A, $6A,$6A + .byte $A0,$1D,$AA, $15, $10, $7A, $A4,$AA, $00,$00, $B9 + .byte $66,$66, $A0,$1C,$AA, $70, $50, $A5,$AA, $00,$00, $0B + .byte $22, $66, $A0,$1C,$AA, $77, $55, $A5,$AA, $A5,$00 + .byte $A0,$16,$AA, $4A,$4A, $AC,$AA, $A3,$00, $A0,$01,$A0, $A7,$AA, $A3,$8A + .byte $AC,$AA, $24,$24, $2A,$2A, $A0,$11,$AA, $00, $A0,$01,$AA, $00 + .byte $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A7,$AA, $A3,$22, $A0,$01,$A2 + .byte $A0,$11,$AA, $00, $0A, $00, $A0,$01,$AA, $00, $0A,$0A + .byte $A0,$02,$AA, $00,$00, $0A, $A6,$AA, $7A, $72, $02 + .byte $22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $22,$22, $A0,$01,$A2, $A0,$02,$AA + .byte $22,$22, $A0,$01,$A2, $2A, $A5,$AA, $A4,$27, $A0,$02,$AA, $A0,$01,$A7 + .byte $AF,$AA, $A3,$22, $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22, $A5,$AA + .byte $A4,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA, $A3,$82, $A0,$01,$AA, $8A + .byte $A3,$82, $A0,$01,$A2, $A5,$AA, $A4,$88, $A0,$11,$AA, $A4,$A8, $A5,$AA + .byte $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_27_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$13,$AA, $77,$77, $A6,$AA, $0A, $6A,$6A + .byte $A0,$1D,$AA, $15, $10, $7A, $A4,$AA, $00,$00, $99 + .byte $B9, $A0,$01,$A6, $A0,$1C,$AA, $70, $50, $A5,$AA, $00,$00 + .byte $09, $2B, $6A, $A0,$1C,$AA, $77, $55, $A5,$AA + .byte $A5,$00, $A0,$16,$AA, $4A,$4A, $AC,$AA, $A3,$00, $A0,$01,$A0, $A7,$AA + .byte $A3,$8A, $AC,$AA, $24,$24, $2A,$2A, $A0,$11,$AA, $00, $A0,$01,$AA + .byte $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A7,$AA, $A3,$22 + .byte $A0,$01,$A2, $A0,$11,$AA, $00, $0A, $00, $A0,$01,$AA, $00 + .byte $0A,$0A, $A0,$02,$AA, $00,$00, $0A, $A6,$AA, $7A, $02 + .byte $22,$22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $22,$22, $A0,$01,$A2, $A0,$02,$AA + .byte $22,$22, $A0,$01,$A2, $2A, $A5,$AA, $A3,$27, $22, $A0,$01,$AA + .byte $A0,$01,$A7, $A0,$10,$AA, $A3,$22, $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22 + .byte $A5,$AA, $A4,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA, $A3,$82, $A0,$01,$AA + .byte $8A, $A3,$82, $A0,$01,$A2, $A5,$AA, $A4,$88, $A0,$11,$AA, $A4,$A8 + .byte $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_28_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$FF,$AA, $A0,$13,$AA, $77,$77, $A6,$AA, $0A, $6A + .byte $9A,$9A, $A0,$1C,$AA, $15, $10, $7A, $A4,$AA, $00,$00 + .byte $A0,$01,$AA, $99, $BB, $A0,$1C,$AA, $70, $50, $A5,$AA + .byte $00,$00, $0A, $0B, $6A, $A0,$1C,$AA, $77, $55 + .byte $A5,$AA, $A5,$00, $A0,$16,$AA, $4A,$4A, $AC,$AA, $A3,$00, $A0,$01,$A0 + .byte $A7,$AA, $A3,$8A, $AC,$AA, $24,$24, $2A,$2A, $A0,$11,$AA, $00 + .byte $A0,$01,$AA, $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A7,$AA + .byte $A3,$22, $A0,$01,$A2, $A0,$11,$AA, $00, $0A, $00, $A0,$01,$AA + .byte $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A, $A6,$AA, $0A + .byte $A3,$22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $22,$22, $A0,$01,$A2, $A0,$02,$AA + .byte $22,$22, $A0,$01,$A2, $2A, $A5,$AA, $27,$27, $22,$22, $A0,$01,$A7 + .byte $A0,$11,$AA, $A3,$22, $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22, $A5,$AA + .byte $A4,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA, $A3,$82, $A0,$01,$AA, $8A + .byte $A3,$82, $A0,$01,$A2, $A5,$AA, $A4,$88, $A0,$11,$AA, $A4,$A8, $A5,$AA + .byte $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_29_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$B9,$AA, $7A,$7A, $A0,$11,$AA, $9A,$9A, $A0,$13,$AA, $A3,$77 + .byte $A0,$10,$AA, $99, $BB, $A0,$13,$AA, $A3,$77, $A4,$AA, $0A,$0A + .byte $07, $77, $A6,$AA, $0A, $6A, $0B, $A8,$AA + .byte $A0,$01,$A7, $77,$77, $A9,$AA, $07, $77,$77, $A3,$AA, $7A + .byte $00, $70, $15, $10, $7A, $A4,$AA, $A3,$00 + .byte $BB, $AA,$AA, $00, $A9,$AA, $00,$00, $07, $A0,$01,$AA + .byte $7A,$7A, $A3,$77, $70, $50, $A5,$AA, $00,$00, $04 + .byte $0B, $6A, $A0,$13,$AA, $00,$00, $70, $A7,$77, $55 + .byte $A5,$AA, $A5,$00, $A7,$AA, $A3,$A7, $A9,$AA, $00, $70 + .byte $A6,$77, $A0,$01,$A7, $A8,$AA, $A3,$00, $A0,$01,$A0, $A7,$AA, $A3,$8A + .byte $A9,$AA, $00, $A5,$77, $27, $A0,$11,$AA, $00, $A0,$01,$AA + .byte $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A4,$AA, $00 + .byte $A3,$77, $27, $22, $A0,$01,$A2, $A0,$11,$AA, $00, $0A + .byte $00, $A0,$01,$AA, $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A + .byte $A4,$AA, $00, $07, $27,$27, $22,$22, $A0,$12,$AA, $A3,$22 + .byte $A0,$01,$AA, $22,$22, $A0,$01,$A2, $A0,$02,$AA, $22,$22, $A0,$01,$A2, $2A + .byte $A3,$AA, $00,$00, $27, $22,$22, $27, $A0,$12,$AA, $A3,$22 + .byte $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22, $A3,$AA, $00,$00, $A4,$22 + .byte $A0,$11,$AA, $A4,$82, $A0,$01,$AA, $A3,$82, $A0,$01,$AA, $8A, $A3,$82 + .byte $A0,$01,$A2, $A3,$AA, $00,$00, $A4,$88, $A0,$11,$AA, $A4,$A8, $A5,$AA + .byte $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_30_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$B9,$AA, $A4,$7A, $AF,$AA, $99, $B9, $A0,$13,$AA + .byte $A5,$77, $AE,$AA, $B9, $A0,$01,$AB, $A0,$13,$AA, $A5,$77, $A3,$AA + .byte $0A, $00, $77, $A6,$AA, $0A, $6A, $B0 + .byte $AA,$AA, $77,$77, $A8,$AA, $A3,$00, $77, $A0,$01,$A7, $A0,$02,$AA + .byte $7A, $70, $15, $10, $7A, $A4,$AA, $00,$00 + .byte $6B, $00, $AA,$AA, $70, $00, $A8,$AA, $A4,$00 + .byte $A0,$01,$AA, $7A, $A3,$77, $70, $50, $A5,$AA, $00,$00 + .byte $06, $04, $4A, $A9,$AA, $07, $01, $A0,$01,$A5 + .byte $A7,$AA, $A3,$00, $70, $A6,$77, $55, $A5,$AA, $A5,$00 + .byte $A9,$AA, $77, $55, $A8,$AA, $00,$00, $70, $A5,$77 + .byte $A9,$AA, $A3,$00, $A0,$01,$A0, $A7,$AA, $8A,$8A, $87, $A0,$01,$A5 + .byte $A8,$AA, $00,$00, $07, $A3,$77, $27, $A0,$11,$AA, $00 + .byte $A0,$01,$AA, $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A4,$AA + .byte $A3,$00, $07, $27,$27, $A0,$01,$A2, $A0,$11,$AA, $00, $0A + .byte $00, $A0,$01,$AA, $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A + .byte $A4,$AA, $A4,$00, $22,$22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $22,$22 + .byte $A0,$01,$A2, $A0,$02,$AA, $22,$22, $A0,$01,$A2, $2A, $A3,$AA, $A4,$00 + .byte $27, $22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $A3,$22, $A0,$02,$AA + .byte $A4,$22, $A3,$AA, $A4,$00, $22,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA + .byte $A3,$82, $A0,$01,$AA, $8A, $A3,$82, $A0,$01,$A2, $A3,$AA, $A4,$00 + .byte $88,$88, $A0,$11,$AA, $A4,$A8, $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_31_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$B9,$AA, $A4,$7A, $A0,$10,$AA, $99, $B9, $A0,$12,$AA + .byte $A5,$77, $AF,$AA, $B9, $A0,$01,$AB, $A0,$12,$AA, $A5,$77, $A3,$AA + .byte $0A, $00, $77, $A6,$AA, $0A, $6A, $A0,$01,$AA + .byte $00, $A9,$AA, $77,$77, $A8,$AA, $A3,$00, $77, $A0,$01,$A7 + .byte $A0,$02,$AA, $7A, $70, $15, $10, $7A, $A4,$AA + .byte $00,$00, $66, $0A, $0B, $A0,$01,$AB, $A8,$AA, $70 + .byte $00, $A8,$AA, $A4,$00, $A0,$01,$AA, $7A, $A3,$77, $70 + .byte $50, $A5,$AA, $00,$00, $06, $04, $44, $4A + .byte $A8,$AA, $01,$01, $A0,$01,$A5, $A7,$AA, $A3,$00, $70, $A6,$77 + .byte $55, $A5,$AA, $A5,$00, $44, $A8,$AA, $77, $55 + .byte $A8,$AA, $00,$00, $70, $A5,$77, $A9,$AA, $A3,$00, $A0,$01,$A0 + .byte $A0,$02,$AF, $A5,$AA, $8A,$8A, $87, $A0,$01,$A5, $A8,$AA, $00,$00 + .byte $07, $A3,$77, $27, $A0,$11,$AA, $00, $A0,$01,$AA, $00 + .byte $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A4,$AA, $A3,$00, $07 + .byte $27,$27, $A0,$01,$A2, $A0,$11,$AA, $00, $0A, $00, $A0,$01,$AA + .byte $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A, $A4,$AA, $A4,$00 + .byte $22,$22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $22,$22, $A0,$01,$A2, $A0,$02,$AA + .byte $22,$22, $A0,$01,$A2, $2A, $A3,$AA, $A4,$00, $22,$22, $A0,$12,$AA + .byte $A3,$22, $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22, $A3,$AA, $A4,$00 + .byte $22,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA, $A3,$82, $A0,$01,$AA, $8A + .byte $A3,$82, $A0,$01,$A2, $A3,$AA, $A4,$00, $88,$88, $A0,$11,$AA, $A4,$A8 + .byte $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_32_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$A6,$AA, $9A,$9A, $A0,$11,$AA, $A4,$7A, $A0,$11,$AA, $99 + .byte $BB, $A0,$11,$AA, $A5,$77, $A0,$10,$AA, $0B, $A0,$12,$AA, $A5,$77 + .byte $A3,$AA, $0A, $00, $77, $A6,$AA, $0A, $6A + .byte $A0,$02,$AA, $00, $A0,$02,$AB, $A6,$AA, $77,$77, $A8,$AA, $A3,$00 + .byte $77, $A0,$01,$A7, $A0,$02,$AA, $7A, $70, $15, $10 + .byte $7A, $A4,$AA, $00,$00, $66, $A0,$02,$AA, $40, $A8,$AA + .byte $70, $00, $A8,$AA, $A4,$00, $A0,$01,$AA, $7A, $A3,$77 + .byte $70, $50, $A5,$AA, $00,$00, $06, $64,$64, $A0,$01,$A4 + .byte $CC, $A7,$AA, $01,$01, $A0,$01,$A5, $A7,$AA, $A3,$00, $70 + .byte $A6,$77, $55, $A5,$AA, $A5,$00, $A0,$01,$AA, $CC, $A7,$AA + .byte $77, $55, $A8,$AA, $00,$00, $70, $A5,$77, $A9,$AA + .byte $A3,$00, $A0,$01,$A0, $A0,$01,$AA, $A0,$02,$AF, $A4,$AA, $8A,$8A, $87 + .byte $A0,$01,$A5, $A8,$AA, $00,$00, $07, $A3,$77, $27, $A0,$11,$AA + .byte $00, $A0,$01,$AA, $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00 + .byte $A4,$AA, $A3,$00, $07, $27,$27, $A0,$01,$A2, $A0,$11,$AA, $00 + .byte $0A, $00, $A0,$01,$AA, $00, $0A,$0A, $A0,$02,$AA, $00,$00 + .byte $0A, $A4,$AA, $A4,$00, $22,$22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA + .byte $22,$22, $A0,$01,$A2, $A0,$02,$AA, $22,$22, $A0,$01,$A2, $2A, $A3,$AA + .byte $A4,$00, $22,$22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $A3,$22, $A0,$02,$AA + .byte $A4,$22, $A3,$AA, $A4,$00, $22,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA + .byte $A3,$82, $A0,$01,$AA, $8A, $A3,$82, $A0,$01,$A2, $A3,$AA, $A4,$00 + .byte $88,$88, $A0,$11,$AA, $A4,$A8, $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_33_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$7E,$AA, $1A,$1A, $A0,$01,$A1, $A0,$21,$AA, $1A,$1A, $A0,$02,$A1 + .byte $A0,$01,$AA, $9A,$9A, $A0,$10,$AA, $A4,$7A, $A9,$AA, $1A,$1A, $11 + .byte $A0,$02,$A1, $A4,$AA, $99, $BB, $A0,$10,$AA, $A5,$77, $A5,$AA + .byte $1A, $11, $A0,$02,$A1, $A8,$AA, $0B, $A0,$11,$AA, $A5,$77 + .byte $A3,$AA, $0A, $00, $77, $A6,$AA, $0A, $6A + .byte $A3,$AA, $BB, $BA, $A6,$AA, $77,$77, $A8,$AA, $A3,$00 + .byte $77, $A0,$01,$A7, $A0,$02,$AA, $7A, $70, $15, $10 + .byte $7A, $A4,$AA, $00,$00, $66, $A3,$AA, $40, $A7,$AA + .byte $70, $00, $A8,$AA, $A4,$00, $A0,$01,$AA, $7A, $A3,$77 + .byte $70, $50, $A5,$AA, $00,$00, $06, $6A,$6A, $A0,$01,$AA + .byte $C4, $4A, $A6,$AA, $01,$01, $A0,$01,$A5, $A7,$AA, $A3,$00 + .byte $70, $A6,$77, $55, $A5,$AA, $A5,$00, $A0,$01,$AA, $CC + .byte $44, $A6,$AA, $77, $55, $A8,$AA, $00,$00, $70 + .byte $A5,$77, $A9,$AA, $A3,$00, $A0,$01,$A0, $A0,$01,$AA, $A0,$01,$AF, $F4 + .byte $FA, $A3,$AA, $8A,$8A, $87, $A0,$01,$A5, $A8,$AA, $00,$00 + .byte $07, $A3,$77, $27, $A0,$11,$AA, $00, $A0,$01,$AA, $00 + .byte $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A4,$AA, $A3,$00, $07 + .byte $27,$27, $A0,$01,$A2, $A0,$11,$AA, $00, $0A, $00, $A0,$01,$AA + .byte $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A, $A4,$AA, $A4,$00 + .byte $22,$22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $22,$22, $A0,$01,$A2, $A0,$02,$AA + .byte $22,$22, $A0,$01,$A2, $2A, $A3,$AA, $A4,$00, $22,$22, $A0,$12,$AA + .byte $A3,$22, $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22, $A3,$AA, $A4,$00 + .byte $22,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA, $A3,$82, $A0,$01,$AA, $8A + .byte $A3,$82, $A0,$01,$A2, $A3,$AA, $A4,$00, $88,$88, $A0,$11,$AA, $A4,$A8 + .byte $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_34_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$A8,$AA, $9A,$9A, $AF,$AA, $A4,$7A, $A0,$13,$AA, $99 + .byte $BB, $AF,$AA, $A5,$77, $A0,$12,$AA, $0B, $A0,$10,$AA, $A5,$77 + .byte $A3,$AA, $0A, $00, $77, $A6,$AA, $0A, $6A + .byte $A4,$AA, $0B, $BA, $A0,$01,$AA, $7A,$7A, $A0,$02,$AA, $77,$77 + .byte $A8,$AA, $A3,$00, $77, $A0,$01,$A7, $A0,$02,$AA, $7A, $70 + .byte $15, $10, $7A, $A4,$AA, $00,$00, $66, $A4,$AA + .byte $00, $A0,$01,$AB, $A0,$02,$AA, $07, $A0,$02,$AA, $70, $00 + .byte $A8,$AA, $A4,$00, $A0,$01,$AA, $7A, $A3,$77, $70, $50 + .byte $A5,$AA, $00,$00, $06, $6A,$6A, $A0,$02,$AA, $44, $4A + .byte $A0,$02,$AA, $00, $A0,$02,$AA, $01,$01, $A0,$01,$A5, $A7,$AA, $A3,$00 + .byte $70, $A6,$77, $55, $A5,$AA, $A5,$00, $A0,$02,$AA, $CC + .byte $44, $A0,$01,$AA, $A0,$02,$A7, $A0,$02,$AA, $77, $55, $A8,$AA + .byte $00,$00, $70, $A5,$77, $A9,$AA, $A3,$00, $A0,$01,$A0, $A0,$02,$AA + .byte $5C, $F4, $FA, $A0,$02,$AA, $8A,$8A, $87, $A0,$01,$A5 + .byte $A8,$AA, $00,$00, $07, $A3,$77, $27, $A0,$11,$AA, $00 + .byte $A0,$01,$AA, $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A4,$AA + .byte $A3,$00, $07, $27,$27, $A0,$01,$A2, $A0,$11,$AA, $00, $0A + .byte $00, $A0,$01,$AA, $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A + .byte $A4,$AA, $A4,$00, $22,$22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $22,$22 + .byte $A0,$01,$A2, $A0,$02,$AA, $22,$22, $A0,$01,$A2, $2A, $A3,$AA, $A4,$00 + .byte $22,$22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22 + .byte $A3,$AA, $A4,$00, $22,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA, $A3,$82 + .byte $A0,$01,$AA, $8A, $A3,$82, $A0,$01,$A2, $A3,$AA, $A4,$00, $88,$88 + .byte $A0,$11,$AA, $A4,$A8, $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_35_rle: .byte $28 ; ysize=48 + .byte $A0,$FF,$AA, $A0,$A9,$AA, $9A,$9A, $AE,$AA, $A4,$7A, $A0,$14,$AA, $99 + .byte $BB, $AE,$AA, $A5,$77, $A0,$13,$AA, $0B, $AF,$AA, $A5,$77 + .byte $A3,$AA, $0A, $00, $77, $A6,$AA, $0A, $6A + .byte $A5,$AA, $BB, $A0,$02,$AA, $7A,$7A, $A0,$01,$AA, $77,$77, $A8,$AA + .byte $A3,$00, $77, $A0,$01,$A7, $A0,$02,$AA, $7A, $70, $15 + .byte $10, $7A, $A4,$AA, $00,$00, $66, $A5,$AA, $BB + .byte $A0,$02,$AA, $77, $07, $A0,$01,$AA, $70, $00, $A8,$AA + .byte $A4,$00, $A0,$01,$AA, $7A, $A3,$77, $70, $50, $A5,$AA + .byte $00,$00, $06, $6A,$6A, $A3,$AA, $44, $A0,$02,$AA, $01,$01 + .byte $A0,$01,$AA, $01,$01, $A0,$01,$A5, $A7,$AA, $A3,$00, $70, $A6,$77 + .byte $55, $A5,$AA, $A5,$00, $A3,$AA, $44, $A0,$02,$AA, $77 + .byte $55, $A0,$01,$AA, $77, $55, $A8,$AA, $00,$00, $70 + .byte $A5,$77, $A9,$AA, $A3,$00, $A0,$01,$A0, $A3,$AA, $F4, $FA + .byte $A0,$01,$AA, $A0,$01,$A7, $85, $8A, $87, $A0,$01,$A5, $A8,$AA + .byte $00,$00, $07, $A3,$77, $27, $A0,$11,$AA, $00, $A0,$01,$AA + .byte $00, $A0,$01,$AA, $00, $A5,$AA, $00,$00, $A4,$AA, $A3,$00 + .byte $07, $27,$27, $A0,$01,$A2, $A0,$11,$AA, $00, $0A, $00 + .byte $A0,$01,$AA, $00, $0A,$0A, $A0,$02,$AA, $00,$00, $0A, $A4,$AA + .byte $A4,$00, $22,$22, $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $22,$22, $A0,$01,$A2 + .byte $A0,$02,$AA, $22,$22, $A0,$01,$A2, $2A, $A3,$AA, $A4,$00, $22,$22 + .byte $A0,$12,$AA, $A3,$22, $A0,$01,$AA, $A3,$22, $A0,$02,$AA, $A4,$22, $A3,$AA + .byte $A4,$00, $22,$22, $A0,$11,$AA, $A4,$82, $A0,$01,$AA, $A3,$82, $A0,$01,$AA + .byte $8A, $A3,$82, $A0,$01,$A2, $A3,$AA, $A4,$00, $88,$88, $A0,$11,$AA + .byte $A4,$A8, $A5,$AA, $A4,$A8, $A4,$AA + .byte $A1 +; cycles=1337 +bath_end_rle: .byte $28 ; ysize=48 + .byte $A3,$00, $40, $0C, $40, $04,$04, $00, $C4 + .byte $0C, $44,$44, $94, $91,$91, $40, $00, $40 + .byte $0C, $44,$44, $49, $19,$19, $09, $00, $04 + .byte $00, $04, $00, $4C, $40, $0C, $40 + .byte $09, $04, $40, $C0, $A4,$00, $40, $00 + .byte $0C, $00, $02, $04, $0C, $40,$40, $04 + .byte $09, $99, $19, $04, $00, $44, $00,$00 + .byte $40, $00, $04, $A4,$00, $40, $04, $44 + .byte $00, $90,$90, $44,$44, $04, $44,$44, $04, $00,$00 + .byte $04, $00, $40, $04, $A4,$00, $04,$04, $44 + .byte $00, $01, $40, $99,$99, $00, $C4, $C0 + .byte $44,$44, $A8,$00, $09, $99, $91, $10, $04,$04 + .byte $A3,$00, $40, $00, $04, $00, $04, $00 + .byte $C0, $2C, $20, $A5,$00, $44, $04, $19 + .byte $01, $40, $00, $C4, $00, $04, $A9,$00 + .byte $19, $99, $09, $A3,$00, $20,$20, $4C, $A3,$00 + .byte $40, $00,$00, $04,$04, $22, $00, $40, $44 + .byte $A4,$00, $10, $00, $44, $4C, $00, $A3,$44 + .byte $AB,$00, $20, $02, $A4,$00, $40, $C4, $A6,$00 + .byte $22, $04,$04, $00,$00, $20, $99, $91, $11 + .byte $00, $20, $00,$00, $44,$44, $A5,$00, $04, $A5,$00 + .byte $22, $00,$00, $77, $20, $00, $04, $00 + .byte $20,$20, $50,$50, $70, $A5,$00, $22, $A4,$00, $C0 + .byte $00, $20, $00, $04,$04, $A7,$00, $A4,$40, $00,$00 + .byte $70, $17, $12, $A3,$00, $12, $52, $15 + .byte $55, $17, $00,$00, $A3,$20, $70,$70, $A3,$00, $0C + .byte $00, $02, $AB,$00, $44, $77, $44, $00,$00 + .byte $77, $27, $11, $A3,$00, $11, $55, $11 + .byte $55, $11, $00,$00, $02, $52, $42, $27 + .byte $07, $A7,$00, $20,$20, $70, $A7,$00, $55, $A0,$01,$AA + .byte $55, $00, $20, $77, $22, $21, $20 + .byte $00,$00, $01, $55, $A0,$01,$A1, $55, $01, $A3,$00 + .byte $55, $44, $77, $A5,$00, $20, $00, $50 + .byte $A0,$01,$A2, $52, $17, $A4,$00, $20, $00,$00, $55 + .byte $A0,$01,$AA, $55, $00, $22, $77, $A4,$22, $20,$20 + .byte $55, $A0,$01,$AA, $55, $A3,$00, $22, $55, $40 + .byte $74, $A3,$00, $20, $02, $00,$00, $55, $A0,$01,$AA + .byte $55, $11, $A3,$00, $20, $02, $00,$00, $55 + .byte $A0,$01,$AA, $55, $00, $22, $77, $A6,$22, $55 + .byte $A0,$01,$AA, $55, $22, $20,$20, $22, $55, $46 + .byte $74, $22, $A5,$00, $20, $55, $A0,$01,$AA, $55 + .byte $20, $A3,$02, $00, $20, $02, $50, $55 + .byte $A0,$01,$AA, $55, $02, $00, $77, $A6,$22, $55 + .byte $A0,$01,$AA, $55, $00, $02,$02, $00, $55, $40 + .byte $44, $22, $20, $00, $20,$20, $00, $22 + .byte $55, $A0,$01,$AA, $55, $22, $20,$20, $00, $02 + .byte $00,$00, $25, $55, $A0,$01,$AA, $55, $00,$00, $77 + .byte $A6,$22, $55, $A0,$01,$AA, $55, $22, $77,$77, $22 + .byte $55, $46, $77, $22,$22, $00, $60, $00 + .byte $22, $02, $55, $A0,$01,$AA, $55, $02, $66 + .byte $70, $72, $20, $77,$77, $22, $55, $A0,$01,$AA + .byte $55, $20, $22, $77, $22, $00,$00, $A3,$22 + .byte $55, $A0,$01,$AA, $55, $22, $15, $10, $72 + .byte $55, $40, $77, $22, $00,$00, $66, $02 + .byte $00, $22, $55, $A0,$01,$AA, $55, $00, $66 + .byte $77, $07, $00, $70, $00, $02, $55 + .byte $A0,$01,$AA, $55, $22,$22, $77, $22, $00,$00, $A3,$22 + .byte $55, $A0,$01,$AA, $55, $22, $70, $50, $22 + .byte $55, $46, $77, $22, $00,$00, $06, $60 + .byte $62, $02, $55, $A0,$01,$AA, $55, $00, $26 + .byte $01,$01, $00, $01,$01, $05, $55, $A0,$01,$AA, $55 + .byte $52, $55, $77, $22, $00,$00, $A3,$82, $85 + .byte $8A, $85, $82, $77, $55, $22, $55 + .byte $40, $74, $22, $A6,$00, $55, $A0,$01,$AA, $55 + .byte $00, $22, $77, $55, $00, $77, $55 + .byte $00, $55, $A0,$01,$AA, $55, $25, $22, $77 + .byte $22, $00,$00, $A5,$44, $77, $87, $78, $87 + .byte $82, $85, $74, $87, $82,$82, $A3,$00, $80,$80 + .byte $85, $8A, $85, $80, $82, $87, $85 + .byte $80, $87, $85, $80, $85, $8A, $85 + .byte $82,$82, $87, $82, $00,$00, $A7,$24, $27, $28 + .byte $27,$27, $A0,$1D,$00, $AB,$22, $A0,$1D,$00, $A0,$26,$22, $00,$00, $A6,$22 + .byte $82, $AA,$22, $42, $A0,$14,$22, $00,$00, $A5,$22, $82 + .byte $A3,$88, $58, $85, $A4,$22, $82, $88, $44,$44 + .byte $AA,$82, $42, $A6,$82, $88,$88, $00,$00, $A5,$88, $85 + .byte $58,$58, $AA,$88, $44, $AA,$88, $44, $A8,$88 + .byte $A1 +; cycles=4691 diff --git a/ootw/ootw_graphics/l15final/ootw_c15_final.inc b/ootw/ootw_graphics/l15final/ootw_c15_final.inc index 10223677..2d264bd1 100644 --- a/ootw/ootw_graphics/l15final/ootw_c15_final.inc +++ b/ootw/ootw_graphics/l15final/ootw_c15_final.inc @@ -1,93 +1,3 @@ -bath_rle: .byte $28 ; ysize=48 - .byte $A3,$00, $40, $0C, $40, $04,$04, $00, $C4 - .byte $0C, $44,$44, $94, $91,$91, $40, $00, $40 - .byte $0C, $44,$44, $49, $19,$19, $09, $00, $04 - .byte $00, $04, $00, $4C, $40, $0C, $40 - .byte $09, $04, $40, $C0, $A4,$00, $40, $00 - .byte $0C, $00, $02, $04, $0C, $40,$40, $04 - .byte $09, $99, $19, $04, $00, $44, $00,$00 - .byte $40, $00, $04, $A4,$00, $40, $04, $44 - .byte $00, $90,$90, $44,$44, $04, $44,$44, $04, $00,$00 - .byte $04, $00, $40, $04, $A4,$00, $04,$04, $44 - .byte $00, $01, $40, $99,$99, $00, $C4, $C0 - .byte $44,$44, $A8,$00, $09, $99, $91, $10, $04,$04 - .byte $A3,$00, $40, $00, $04, $00, $04, $00 - .byte $C0, $2C, $20, $A5,$00, $44, $04, $19 - .byte $01, $40, $00, $C4, $00, $04, $A9,$00 - .byte $19, $99, $09, $A3,$00, $20,$20, $4C, $A3,$00 - .byte $40, $00,$00, $04,$04, $22, $00, $40, $44 - .byte $A4,$00, $10, $00, $44, $4C, $00, $A3,$44 - .byte $AB,$00, $20, $02, $A4,$00, $40, $C4, $A6,$00 - .byte $22, $04,$04, $00,$00, $20, $99, $91, $11 - .byte $00, $20, $00,$00, $44,$44, $A5,$00, $04, $A5,$00 - .byte $22, $00,$00, $77, $20, $00, $04, $00 - .byte $20,$20, $50,$50, $70, $A5,$00, $22, $A4,$00, $C0 - .byte $00, $20, $00, $04,$04, $A7,$00, $A4,$40, $00,$00 - .byte $70, $17, $12, $A3,$00, $12, $52, $15 - .byte $55, $17, $00,$00, $A3,$20, $70,$70, $A3,$00, $0C - .byte $00, $02, $AB,$00, $44, $77, $44, $00,$00 - .byte $77, $57, $11, $A3,$00, $11, $55, $11 - .byte $55, $11, $00,$00, $02, $52, $42, $27 - .byte $07, $A7,$00, $20,$20, $70, $A7,$00, $55, $A0,$01,$AA - .byte $55, $00, $20, $77, $55, $21, $20 - .byte $00,$00, $01, $55, $A0,$01,$A1, $55, $01, $A3,$00 - .byte $55, $44, $77, $A5,$00, $20, $00, $50 - .byte $A0,$01,$A2, $52, $17, $A4,$00, $20, $00,$00, $55 - .byte $A0,$01,$AA, $55, $00, $22, $77, $55, $A3,$22 - .byte $20,$20, $55, $A0,$01,$AA, $55, $A3,$00, $22, $55 - .byte $40, $74, $A3,$00, $20, $02, $00,$00, $55 - .byte $A0,$01,$AA, $55, $11, $A3,$00, $20, $02, $00,$00 - .byte $55, $A0,$01,$AA, $55, $00, $22, $77, $55 - .byte $A5,$22, $55, $A0,$01,$AA, $55, $22, $20,$20, $22 - .byte $55, $46, $74, $22, $A6,$00, $55, $A0,$01,$AA - .byte $55, $20, $A3,$02, $00, $20, $02, $50 - .byte $55, $A0,$01,$AA, $55, $02, $00, $77, $55 - .byte $A5,$22, $55, $A0,$01,$AA, $55, $00, $02,$02, $00 - .byte $55, $40, $44, $22, $20, $00, $20,$20 - .byte $00, $22, $55, $A0,$01,$AA, $55, $22, $20,$20 - .byte $00, $02, $00,$00, $25, $55, $A0,$01,$AA, $55 - .byte $00,$00, $77, $55, $A5,$22, $55, $A0,$01,$AA, $55 - .byte $02, $00, $20, $22, $55, $46, $77 - .byte $22,$22, $20, $00,$00, $22, $02, $55, $A0,$01,$AA - .byte $55, $02, $66, $00, $62, $20,$20, $55 - .byte $22, $55, $A0,$01,$AA, $55, $20, $22, $77 - .byte $55, $00,$00, $A3,$22, $55, $A0,$01,$AA, $55, $00 - .byte $52, $22, $52, $05, $40, $77, $A5,$22 - .byte $00, $22, $55, $A0,$01,$AA, $55, $00, $66 - .byte $00, $66, $00, $52, $22, $02, $55 - .byte $A0,$01,$AA, $55, $22,$22, $77, $55, $00,$00, $A3,$22 - .byte $55, $A0,$01,$AA, $55,$55, $25, $22, $55, $50 - .byte $46, $77, $22, $77, $00, $22, $20 - .byte $22, $02, $55, $A0,$01,$AA, $55, $00, $26 - .byte $00, $66, $00, $25, $22, $00, $55 - .byte $A0,$01,$AA, $55, $52, $55, $77, $55, $00,$00 - .byte $A3,$82, $85, $8A, $85,$85, $22,$22, $55,$55, $40 - .byte $74, $22, $55, $50, $22,$22, $02, $00 - .byte $55, $A0,$01,$AA, $55, $00, $22, $00, $22 - .byte $00, $22, $00,$00, $55, $A0,$01,$AA, $55, $25 - .byte $22, $77, $55, $00,$00, $A5,$44, $77, $87 - .byte $78, $87, $85,$85, $74, $87, $82, $87 - .byte $85, $82,$82, $80,$80, $85, $8A, $85, $80 - .byte $82, $80, $82, $00, $52, $80,$80, $85 - .byte $8A, $85, $82,$82, $87, $85, $00,$00, $24 - .byte $55, $00, $A4,$24, $27, $28, $27,$27, $AB,$00 - .byte $55, $A3,$00, $50, $00, $55, $A4,$00, $55 - .byte $A6,$00, $22, $55, $00, $52, $A7,$22, $AB,$00 - .byte $50, $00, $55, $00, $55, $00, $55 - .byte $00,$00, $55, $00, $50, $A6,$00, $52, $55 - .byte $50, $55, $AD,$22, $52, $02, $A3,$22, $55 - .byte $50, $55, $22, $55,$55, $25, $22,$22, $55 - .byte $50, $25, $52, $A3,$22, $00,$00, $A4,$55, $22,$22 - .byte $82, $A9,$22, $52, $45, $A4,$52, $A3,$55, $22 - .byte $55,$55, $52, $22,$22, $55,$55, $22, $55, $A3,$22 - .byte $00,$00, $A4,$55, $22, $82, $A3,$88, $58, $85 - .byte $A4,$22, $82, $88, $44,$44, $85,$85, $A4,$55, $82 - .byte $55,$55, $A0,$01,$A5, $42, $52, $55,$55, $52, $85 - .byte $82, $88,$88, $00,$00, $55,$55, $A0,$02,$A5, $88, $85 - .byte $58,$58, $AA,$88, $44, $88,$88, $85,$85, $8A,$8A, $A4,$88 - .byte $44, $85,$85, $8A,$8A, $A4,$88 - .byte $A1 -; cycles=65252 walkway1_rle: .byte $28 ; ysize=48 .byte $22, $55, $05, $22, $55, $A8,$66, $A3,$22 .byte $A0,$12,$66, $A3,$22, $A3,$66, $22, $55, $00, $02