mirror of
https://github.com/lscharen/iigs-game-engine.git
synced 2024-12-26 05:31:42 +00:00
Sync up with current WIP
This commit is contained in:
parent
bcf8820fbe
commit
dfd5549918
BIN
demos/shell/assets/tilesets/smb-256-128-1bpp.png
Normal file
BIN
demos/shell/assets/tilesets/smb-256-128-1bpp.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
@ -35,7 +35,7 @@ DOWN_ARROW equ $0A
|
||||
ldy #0
|
||||
jsl SetPalette
|
||||
|
||||
ldx #0 ; Mode 0 is full-screen
|
||||
ldx #5 ; Mode 0 is full-screen, mode 5 is 256x160
|
||||
jsl SetScreenMode
|
||||
|
||||
; Set up our level data
|
||||
@ -48,6 +48,51 @@ DOWN_ARROW equ $0A
|
||||
sta oldOneSecondCounter
|
||||
jsr UdtOverlay
|
||||
|
||||
; Allocate a buffer for loading files
|
||||
jsl AllocBank ; Alloc 64KB for Load/Unpack
|
||||
sta BankLoad ; Store "Bank Pointer"
|
||||
|
||||
; Load in the 256 color background into BG1 buffer
|
||||
DoLoadBG1
|
||||
lda BankLoad
|
||||
ldx #BG1DataFile
|
||||
jsr LoadFile
|
||||
|
||||
ldx BankLoad
|
||||
lda #0
|
||||
ldy BG1DataBank
|
||||
jsl CopyPicToBG1
|
||||
|
||||
; Copy the palettes into place
|
||||
|
||||
stz tmp0
|
||||
:ploop
|
||||
lda tmp0
|
||||
tay
|
||||
asl
|
||||
asl
|
||||
asl
|
||||
asl
|
||||
asl
|
||||
clc
|
||||
adc #$7E00
|
||||
tax
|
||||
|
||||
lda BankLoad
|
||||
jsl SetPalette
|
||||
|
||||
inc tmp0
|
||||
lda tmp0
|
||||
cmp #16
|
||||
bcc :ploop
|
||||
|
||||
; Bind the SCBs
|
||||
|
||||
lda BankLoad
|
||||
ora #$8000 ; set high bit to bind to BG1 Y-position
|
||||
ldx #$7D00
|
||||
jsl SetSCBArray
|
||||
|
||||
; Initialize the sprite's global position (this is tracked outside of the tile engine)
|
||||
lda #16
|
||||
sta PlayerGlobalX
|
||||
@ -70,7 +115,7 @@ DOWN_ARROW equ $0A
|
||||
brl Exit ; If we could not allocate a sprite, exit
|
||||
|
||||
:sprite_ok
|
||||
sta PlayerID
|
||||
; sta PlayerID
|
||||
|
||||
; Draw the initial screen
|
||||
|
||||
@ -236,7 +281,12 @@ Exit
|
||||
bcs Fatal
|
||||
Fatal brk $00
|
||||
|
||||
MyPalette dw $068F,$0EDA,$0000,$0E51,$0BF1,$00A0,$0EEE,$0456,$0FA4,$0F59,$0E30,$01CE,$02E3,$0870,$0F93,$0FD7
|
||||
BG1DataFile strl '1/octane.c1'
|
||||
|
||||
; Color palette
|
||||
; MyPalette dw $068F,$0EDA,$0000,$0E51,$0BF1,$00A0,$0EEE,$0456,$0FA4,$0F59,$0E30,$01CE,$02E3,$0870,$0F93,$0FD7
|
||||
; B&W Palette
|
||||
MyPalette dw $0000,$0EDA,$0000,$0E51,$0BF1,$00A0,$0EEE,$0456,$0FA4,$0F59,$0E30,$01CE,$02E3,$0870,$0F93,$0FFF
|
||||
PlayerGlobalX ds 2
|
||||
PlayerGlobalY ds 2
|
||||
|
||||
@ -327,6 +377,10 @@ UpdateCameraPos
|
||||
bcc :y_ok
|
||||
lda MaxBG0Y
|
||||
:y_ok jsl SetBG0YPos
|
||||
|
||||
lda StartY
|
||||
lsr
|
||||
jsl SetBG1YPos
|
||||
rts
|
||||
|
||||
; Convert the global coordinates to adjusted local coordinated (compensating for wrap-around)
|
||||
@ -359,6 +413,7 @@ UpdatePlayerPos
|
||||
adc #16
|
||||
tay
|
||||
jsr GetTileAt
|
||||
and #$1FF
|
||||
cmp #EMPTY_TILE
|
||||
beq :no_ground_check
|
||||
|
||||
@ -466,11 +521,76 @@ MovePlayerToOrigin
|
||||
jsl SetBG0YPos
|
||||
rts
|
||||
|
||||
openRec dw 2 ; pCount
|
||||
ds 2 ; refNum
|
||||
adrl BG1DataFile ; pathname
|
||||
|
||||
eofRec dw 2 ; pCount
|
||||
ds 2 ; refNum
|
||||
ds 4 ; eof
|
||||
|
||||
readRec dw 4 ; pCount
|
||||
ds 2 ; refNum
|
||||
ds 4 ; dataBuffer
|
||||
ds 4 ; requestCount
|
||||
ds 4 ; transferCount
|
||||
|
||||
closeRec dw 1 ; pCount
|
||||
ds 2 ; refNum
|
||||
|
||||
qtRec adrl $0000
|
||||
da $00
|
||||
|
||||
vsync dw $0000
|
||||
|
||||
|
||||
LoadFile
|
||||
stx openRec+4 ; X=File, A=Bank (high word) assumed zero for low
|
||||
stz readRec+4
|
||||
sta readRec+6
|
||||
|
||||
:openFile _OpenGS openRec
|
||||
bcs :openReadErr
|
||||
lda openRec+2
|
||||
sta eofRec+2
|
||||
sta readRec+2
|
||||
|
||||
_GetEOFGS eofRec
|
||||
lda eofRec+4
|
||||
sta readRec+8
|
||||
lda eofRec+6
|
||||
sta readRec+10
|
||||
|
||||
_ReadGS readRec
|
||||
bcs :openReadErr
|
||||
|
||||
:closeFile _CloseGS closeRec
|
||||
clc
|
||||
lda eofRec+4 ; File Size
|
||||
rts
|
||||
|
||||
:openReadErr jsr :closeFile
|
||||
nop
|
||||
nop
|
||||
|
||||
PushWord #0
|
||||
PushLong #msgLine1
|
||||
PushLong #msgLine2
|
||||
PushLong #msgLine3
|
||||
PushLong #msgLine4
|
||||
_TLTextMountVolume
|
||||
pla
|
||||
cmp #1
|
||||
bne :loadFileErr
|
||||
brl :openFile
|
||||
:loadFileErr sec
|
||||
rts
|
||||
|
||||
msgLine1 str 'Unable to load File'
|
||||
msgLine2 str 'Press a key :'
|
||||
msgLine3 str ' -> Return to Try Again'
|
||||
msgLine4 str ' -> Esc to Quit'
|
||||
|
||||
PUT ../shell/Overlay.s
|
||||
PUT gen/App.TileMapBG0.s
|
||||
PUT gen/App.TileSetAnim.s
|
||||
|
4
demos/sprites/assets/_FileInformation.txt
Normal file
4
demos/sprites/assets/_FileInformation.txt
Normal file
@ -0,0 +1,4 @@
|
||||
mario1.c1=Type(C1),AuxType(0000),VersionCreate(70),MinVersion(BE),Access(E3),FolderInfo1(000000000000000000000000000000000000),FolderInfo2(000000000000000000000000000000000000)
|
||||
octane.c1=Type(C1),AuxType(0000),VersionCreate(70),MinVersion(BE),Access(E3),FolderInfo1(000000000000000000000000000000000000),FolderInfo2(000000000000000000000000000000000000)
|
||||
pix.forest.c1=Type(C1),AuxType(0000),VersionCreate(70),MinVersion(BE),Access(E3),FolderInfo1(000000000000000000000000000000000000),FolderInfo2(000000000000000000000000000000000000)
|
||||
sunset.c1=Type(C1),AuxType(0000),VersionCreate(70),MinVersion(BE),Access(E3),FolderInfo1(000000000000000000000000000000000000),FolderInfo2(000000000000000000000000000000000000)
|
5
demos/sprites/assets/mario1.c1
Normal file
5
demos/sprites/assets/mario1.c1
Normal file
File diff suppressed because one or more lines are too long
BIN
demos/sprites/assets/octane.c1
Normal file
BIN
demos/sprites/assets/octane.c1
Normal file
Binary file not shown.
BIN
demos/sprites/assets/pix.forest.c1
Normal file
BIN
demos/sprites/assets/pix.forest.c1
Normal file
Binary file not shown.
BIN
demos/sprites/assets/sunset.c1
Normal file
BIN
demos/sprites/assets/sunset.c1
Normal file
Binary file not shown.
@ -14,3 +14,9 @@ REM Cadius does not overwrite files, so clear the root folder first
|
||||
|
||||
REM Now copy files and folders as needed
|
||||
%CADIUS% ADDFILE %IMAGE% %FOLDER% .\GTETestSprites
|
||||
|
||||
REM Copy in the image assets
|
||||
%CADIUS% ADDFILE %IMAGE% %FOLDER% .\assets\mario1.c1
|
||||
%CADIUS% ADDFILE %IMAGE% %FOLDER% .\assets\octane.c1
|
||||
%CADIUS% ADDFILE %IMAGE% %FOLDER% .\assets\pix.forest.c1
|
||||
%CADIUS% ADDFILE %IMAGE% %FOLDER% .\assets\sunset.c1
|
||||
|
@ -16,242 +16,242 @@ BG0SetUp
|
||||
rts
|
||||
|
||||
App_TileMapBG0
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0099,$009a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0099,$009a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00b9,$00ba,$00ba,$00bb,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00b9,$00ba,$00ba,$00bb,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0099,$009a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$009b,$009c,$009d,$009e,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0099,$009a,$0099,$009a,$0099,$009a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0099,$009a,$0099,$009a,$0099,$009a,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$003b,$003c,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0099,$009a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$009b,$009c,$009d,$009e,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0099,$009a,$0099,$009a,$0099,$009a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0099,$009a,$0099,$009a,$0099,$009a,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$003b,$003c,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00b9,$00ba,$00ba,$00bb,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00b9,$00ba,$00ba,$00ba,$00ba,$00ba,$00ba,$00bb,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00b9,$00ba,$00ba,$00ba,$00ba,$00ba,$00ba,$00bb
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0037,$0038,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00b9,$00ba,$00ba,$00bb,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00b9,$00ba,$00ba,$00ba,$00ba,$00ba,$00ba,$00bb,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00b9,$00ba,$00ba,$00ba,$00ba,$00ba,$00ba,$00bb
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0037,$0038,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$009b,$009c,$009d,$009e,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$009b,$009c,$009d,$009c,$009d,$009c,$009d,$009e,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$009b,$009c,$009d,$009c,$009d,$009c,$009d,$009e
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0037,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$009b,$009c,$009d,$009e,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$009b,$009c,$009d,$009c,$009d,$009c,$009d,$009e,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$009b,$009c,$009d,$009c,$009d,$009c,$009d,$009e
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0037,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$009f,$00a0,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$0021,$0021,$0021,$0021,$0021,$0021,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$009f,$00a0,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$009f,$00a0,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $00bc,$00bc,$009f,$00a0,$009f,$00a0,$00bc,$00bc,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$009f,$00a0,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$1021,$1021,$1021,$1021,$1021,$1021,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$009f,$00a0,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$009f,$00a0,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bc,$00bc,$00bc,$00bc,$00bc,$00bc,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $00bc,$00bc,$009f,$00a0,$009f,$00a0,$00bc,$00bc,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bf,$00c0,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$001a,$001a,$00bf,$00c0,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bf,$00c0,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$001a,$001a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $001a,$001a,$00bf,$00c0,$00bf,$00c0,$001a,$001a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bf,$00c0,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$001a,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$001a,$001a,$00bf,$00c0,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bf,$00c0,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$001a,$001a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $001a,$001a,$00bf,$00c0,$00bf,$00c0,$001a,$001a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001f,$0020,$001f,$0020,$001f,$0020,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001f,$0020,$001f,$0020,$001f,$0020,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$001a,$001a,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$001a,$001a,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$001a,$001a,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$001a,$001a,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$009f,$00a0,$0021,$0021,$0021,$0021,$0021,$0021,$00bc,$00bc,$009f,$00a0,$00bc,$00bc,$009f,$00a0,$00bc,$00bc,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$000b,$000c,$000d,$000e,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$000b,$000c,$000d,$000e,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bc,$00bc,$009f,$00a0,$00bc,$00bc,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bc,$00bc,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bc,$00bc,$00bc,$00bc,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$009f,$00a0,$0021,$0021,$0021,$0021,$009f,$00a0,$0021,$0021,$0021,$0021,$009f,$00a0,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bc,$00bc,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$00bc,$00bc,$00bc,$00bc,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0021,$0021,$0021,$0021,$0005,$0006,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021,$0005,$0006,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bc,$00bc,$00bc,$00bc,$009f,$00a0,$00bc,$00bc,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$0040,$001a,$001a,$0040,$001a,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$009f,$00a0,$1021,$1021,$1021,$1021,$1021,$1021,$00bc,$00bc,$009f,$00a0,$00bc,$00bc,$009f,$00a0,$00bc,$00bc,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$000b,$000c,$000d,$000e,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$000b,$000c,$000d,$000e,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bc,$00bc,$009f,$00a0,$00bc,$00bc,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bc,$00bc,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bc,$00bc,$00bc,$00bc,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$009f,$00a0,$1021,$1021,$1021,$1021,$009f,$00a0,$1021,$1021,$1021,$1021,$009f,$00a0,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bc,$00bc,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$00bc,$00bc,$00bc,$00bc,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$1021,$1021,$1021,$1021,$0005,$0006,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021,$0005,$0006,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bc,$00bc,$00bc,$00bc,$009f,$00a0,$00bc,$00bc,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$0040,$001a,$001a,$0040,$001a,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bf,$00c0,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$00bf,$00c0,$001a,$001a,$00bf,$00c0,$001a,$001a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$000f,$0010,$0011,$0012,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$000f,$0010,$0011,$0012,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$00bf,$00c0,$001a,$001a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$00bf,$00c0,$0021,$0021,$0021,$0021,$00bf,$00c0,$0021,$0021,$0021,$0021,$00bf,$00c0,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$001a,$001a,$001a,$001a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0021,$0021,$0021,$0021,$0007,$0008,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021,$0007,$0008,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$00bf,$00c0,$001a,$001a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$0040,$001a,$001a,$0040,$001a,$0021,$0021,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bf,$00c0,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$00bf,$00c0,$001a,$001a,$00bf,$00c0,$001a,$001a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$000f,$0010,$0011,$0012,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$000f,$0010,$0011,$0012,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$00bf,$00c0,$001a,$001a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$00bf,$00c0,$1021,$1021,$1021,$1021,$00bf,$00c0,$1021,$1021,$1021,$1021,$00bf,$00c0,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$001a,$001a,$001a,$001a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$1021,$1021,$1021,$1021,$0007,$0008,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021,$0007,$0008,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$00bf,$00c0,$001a,$001a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$0040,$001a,$001a,$0040,$001a,$1021,$1021,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$000b,$000c,$000d,$000e,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$001f,$0020,$0018,$0019,$0018,$0019,$0018,$0019,$001f,$0020,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$000b,$000c,$000d,$000e,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$001f,$0020,$0018,$0019,$0018,$0019,$0018,$0019,$001f,$0020,$1021,$1021
|
||||
|
||||
dw $0801,$0801,$0021,$0021,$0031,$0032,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$000f,$0010,$0011,$0012,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0031,$0032,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0031,$0032,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0031,$0032,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0031,$0032,$0021,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$0039,$003a,$001a,$001a,$001a,$001a,$0021,$0021
|
||||
dw $1021,$1021,$1021,$1021,$0031,$0032,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$000f,$0010,$0011,$0012,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$0031,$0032,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$0031,$0032,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0031,$0032,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$0031,$0032,$1021,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$0039,$003a,$001a,$001a,$001a,$001a,$1021,$1021
|
||||
|
||||
dw $0801,$0801,$0021,$0030,$0015,$0036,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$000b,$000c,$000d,$000e,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0030,$0015,$0036,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0030,$0015,$0036,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021,$0021,$0030,$0015,$0036,$0033,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$000b,$000c,$000d,$000e,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$000b,$000c,$000d,$000e,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0030,$0015,$0036,$0033,$0021,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$0040,$0040,$001a,$001a,$001a,$001a,$0021,$0021
|
||||
dw $1021,$1021,$1021,$0030,$0015,$0036,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$000b,$000c,$000d,$000e,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$0030,$0015,$0036,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$0030,$0015,$0036,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021,$1021,$0030,$0015,$0036,$0033,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$000b,$000c,$000d,$000e,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$000b,$000c,$000d,$000e,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$0030,$0015,$0036,$0033,$1021,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$0040,$0040,$001a,$001a,$001a,$001a,$1021,$1021
|
||||
|
||||
dw $0021,$0021,$0030,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0031,$0231,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$000f,$0010,$0011,$0012,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0030,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0031,$0032,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0030,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0031,$0032,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021,$0030,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0031,$0032,$0021,$0021,$000f,$0010,$0011,$0012,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$000f,$0010,$0011,$0012,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0030,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0021,$0021,$0009,$000a,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$0040,$0040,$001a,$001a,$001a,$001a,$0021,$0021
|
||||
dw $1021,$1021,$0030,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0031,$0231,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$000f,$0010,$0011,$0012,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$0030,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$0031,$0032,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$0030,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0031,$0032,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021,$0030,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$0031,$0032,$1021,$1021,$000f,$0010,$0011,$0012,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$000f,$0010,$0011,$0012,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$0030,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$1021,$1021,$0009,$000a,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$0040,$0040,$001a,$001a,$001a,$001a,$1021,$1021
|
||||
|
||||
dw $0021,$0030,$0015,$0036,$0015,$0015,$0036,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0022,$0023,$0022,$0023,$0022,$0023,$0021,$0021,$0021,$0030,$0015,$0036,$0230,$0021,$0021,$4057,$4056,$4057,$4056,$4057,$4056,$4057,$4056,$0021,$0022,$0023,$0021,$0021,$0057,$0056,$0057,$0056,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0022,$0023,$0022,$0023,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0030,$0015,$0036,$0015,$0015,$0036,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0022,$0023,$0022,$0023,$0022,$0023,$0021,$0021
|
||||
dw $0021,$0030,$0015,$0036,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0022,$0023,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0022,$0023,$0022,$0023,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0030,$0015,$0036,$0015,$0015,$0036,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0022,$0023,$0022,$0023,$0022,$0023,$0021,$0021,$0021,$0030,$0015,$0036,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0022,$0023,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0022,$0023,$0022,$0023,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0030,$0015,$0036,$0015,$0015,$0036,$0015,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021
|
||||
dw $0021,$0030,$0015,$0036,$0033,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0000,$0021,$0022,$0023,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0030,$0015,$0036,$0015,$0015,$0036,$0015,$0033,$0021,$0021,$0021,$0005,$0006,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$0040,$0040,$001a,$001a,$001a,$001a,$0021,$0021
|
||||
dw $1021,$0030,$0015,$0036,$0015,$0015,$0036,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0022,$0023,$0022,$0023,$0022,$0023,$1021,$1021,$1021,$0030,$0015,$0036,$0230,$1021,$1021,$0057,$0056,$0057,$0056,$0057,$0056,$0057,$0056,$1021,$0022,$0023,$1021,$1021,$0057,$0056,$0057,$0056,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$0022,$0023,$0022,$0023,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$0030,$0015,$0036,$0015,$0015,$0036,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$0022,$0023,$0022,$0023,$0022,$0023,$1021,$1021
|
||||
dw $1021,$0030,$0015,$0036,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0022,$0023,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0022,$0023,$0022,$0023,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$0030,$0015,$0036,$0015,$0015,$0036,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0022,$0023,$0022,$0023,$0022,$0023,$1021,$1021,$1021,$0030,$0015,$0036,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0022,$0023,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0022,$0023,$0022,$0023,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$0030,$0015,$0036,$0015,$0015,$0036,$0015,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021
|
||||
dw $1021,$0030,$0015,$0036,$0033,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$0000,$1021,$0022,$0023,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$0005,$0006,$1021,$1021,$1021,$1021
|
||||
dw $1021,$0030,$0015,$0036,$0015,$0015,$0036,$0015,$0033,$1021,$1021,$1021,$0005,$0006,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$0040,$0040,$001a,$001a,$001a,$001a,$1021,$1021
|
||||
|
||||
dw $0030,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0024,$0025,$0025,$0025,$0025,$0025,$0025,$0026,$0021,$0030,$0015,$0015,$0015,$0015,$0230,$0021,$4077,$4076,$4077,$4076,$4077,$4076,$4077,$4076,$0024,$0025,$0025,$0026,$0021,$0077,$0076,$0077,$0076,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0024,$0025,$0025,$0025,$0025,$0026,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0030,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0021,$0024,$0025,$0025,$0025,$0025,$0025,$0025,$0026,$0021
|
||||
dw $0030,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0024,$0025,$0025,$0026,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0024,$0025,$0025,$0025,$0025,$0026,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0030,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0024,$0025,$0025,$0025,$0025,$0025,$0025,$0026,$0021,$0030,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0024,$0025,$0025,$0026,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021
|
||||
dw $0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0025,$0025,$0025,$0025,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0030,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0026,$0021
|
||||
dw $0030,$0015,$0015,$0015,$0015,$0033,$0013,$0014,$0015,$0016,$0021,$0021,$0021,$0021,$0000,$0024,$0025,$0025,$0026,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0021,$0013,$0014,$0015,$0016,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0021,$0021,$0021,$0021
|
||||
dw $0030,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0033,$0021,$0021,$0007,$0008,$0021,$0021,$0021,$0021,$0021,$0021,$001a,$001a,$001a,$001a,$0040,$0040,$001a,$001a,$001a,$001a,$0026,$0021
|
||||
dw $0030,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0024,$0025,$0025,$0025,$0025,$0025,$0025,$0026,$1021,$0030,$0015,$0015,$0015,$0015,$0230,$1021,$0077,$0076,$0077,$0076,$0077,$0076,$0077,$0076,$0024,$0025,$0025,$0026,$1021,$0077,$0076,$0077,$0076,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$0024,$0025,$0025,$0025,$0025,$0026,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$0030,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$1021,$0024,$0025,$0025,$0025,$0025,$0025,$0025,$0026,$1021
|
||||
dw $0030,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0024,$0025,$0025,$0026,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0024,$0025,$0025,$0025,$0025,$0026,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $0030,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0024,$0025,$0025,$0025,$0025,$0025,$0025,$0026,$1021,$0030,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0024,$0025,$0025,$0026,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021
|
||||
dw $1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0025,$0025,$0025,$0025,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0030,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0026,$1021
|
||||
dw $0030,$0015,$0015,$0015,$0015,$0033,$0013,$0014,$0015,$0016,$1021,$1021,$1021,$1021,$0000,$0024,$0025,$0025,$0026,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$1021,$0013,$0014,$0015,$0016,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$0007,$0008,$1021,$1021,$1021,$1021
|
||||
dw $0030,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0015,$0033,$1021,$1021,$0007,$0008,$1021,$1021,$1021,$1021,$1021,$1021,$001a,$001a,$001a,$001a,$0040,$0040,$001a,$001a,$001a,$001a,$0026,$1021
|
||||
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0021,$0021,$0021,$0021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0021,$0021,$0021,$0021,$0021,$0021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$1021,$1021,$1021,$1021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$1021,$1021,$1021,$1021,$1021,$1021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0021,$0021,$0021,$0021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$1021,$1021,$1021,$1021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0021,$0021,$0021,$0021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0021,$0021,$0021,$0021,$0021,$0021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$1021,$1021,$1021,$1021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$1021,$1021,$1021,$1021,$1021,$1021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0021,$0021,$0021,$0021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$1021,$1021,$1021,$1021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0021,$0021,$0021,$0021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0021,$0021,$0021,$0021,$0021,$0021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$1021,$1021,$1021,$1021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$1021,$1021,$1021,$1021,$1021,$1021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0021,$0021,$0021,$0021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$1021,$1021,$1021,$1021,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
dw $0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002,$0001,$0002
|
||||
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0021,$0021,$0021,$0021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0021,$0021,$0021,$0021,$0021,$0021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$1021,$1021,$1021,$1021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$1021,$1021,$1021,$1021,$1021,$1021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0021,$0021,$0021,$0021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$1021,$1021,$1021,$1021,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
dw $0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004,$0003,$0004
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -17,7 +17,9 @@
|
||||
"debug": "%npm_package_config_crossrunner% GTETestSprites -Source GTETestSprites_S02_MAINSEG_Output.txt -Debug -CompatibilityLayer",
|
||||
"build": "%npm_package_config_merlin32% -V %npm_package_config_macros% App.s",
|
||||
"build:map": "node %npm_package_config_tiled2iigs% ./assets/tiled/world_1-1.json --output-dir ./gen",
|
||||
"build:tiles": "node %npm_package_config_png2iigs% ../shell/assets/tilesets/smb-256-128-4bpp.png --max-tiles 360 --as-tile-data --transparent-color FF00FF --background-color 6B8CFF > ./gen/App.TileSet.s"
|
||||
"build:map:masked": "node %npm_package_config_tiled2iigs% ./assets/tiled/world_1-1.json --force-masked --empty-tile 33 --no-gen-tiles --output-dir ./gen",
|
||||
"build:tiles": "node %npm_package_config_png2iigs% ../shell/assets/tilesets/smb-256-128-4bpp.png --max-tiles 360 --as-tile-data --transparent-color FF00FF --background-color 6B8CFF > ./gen/App.TileSet.s",
|
||||
"build:tiles:1bpp": "node %npm_package_config_png2iigs% ../shell/assets/tilesets/smb-256-128-1bpp.png --max-tiles 360 --as-tile-data --transparent-color FF00FF --palette 010102,00000,000000,000000,000000,000000,000000,000000,000000,000000,000000,000000,000000,000000,000000,FDFEFE > ./gen/App.TileSet.s"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -34,6 +34,7 @@ ApplyBG1YPosAngle EXT
|
||||
|
||||
CopyPicToField EXT
|
||||
CopyBinToField EXT
|
||||
CopyPicToBG1 EXT
|
||||
CopyBinToBG1 EXT
|
||||
|
||||
AddTimer EXT
|
||||
|
@ -62,7 +62,7 @@ SetPalette ENT
|
||||
plb ; pop 8-bit bank register
|
||||
tya
|
||||
jsr _SetPalette
|
||||
plb ; pop the other half og the 16-bit push off
|
||||
plb ; pop the other half of the 16-bit push off
|
||||
plb ; restore the original data bank
|
||||
rtl
|
||||
|
||||
|
14
src/Render.s
14
src/Render.s
@ -98,9 +98,9 @@ _Render
|
||||
; optimization that can be done here is that the lines can be rendered in any order
|
||||
; since it is not shown on-screen yet.
|
||||
|
||||
ldx #0 ; Blit the full virtual buffer to the screen
|
||||
ldy #8
|
||||
jsr _BltRange
|
||||
; ldx #0 ; Blit the full virtual buffer to the screen
|
||||
; ldy #8
|
||||
; jsr _BltRange
|
||||
|
||||
; Turn shadowing back on
|
||||
|
||||
@ -116,12 +116,16 @@ _Render
|
||||
lda ScreenAddr,x
|
||||
clc
|
||||
adc ScreenX0
|
||||
jsl Overlay
|
||||
; jsl Overlay
|
||||
|
||||
ldx #8 ; Blit the full virtual buffer to the screen
|
||||
ldx #0 ; Blit the full virtual buffer to the screen
|
||||
ldy ScreenHeight
|
||||
jsr _BltRange
|
||||
|
||||
ldx #0
|
||||
ldy ScreenHeight
|
||||
jsr _BltSCB
|
||||
|
||||
lda StartY ; Restore the fields back to their original state
|
||||
ldx ScreenHeight
|
||||
jsr _RestoreBG0Opcodes
|
||||
|
@ -5,7 +5,7 @@ _InitBG1
|
||||
rts
|
||||
|
||||
|
||||
; Copy a binary image data file into BG1. Assumes the file is the correct size.
|
||||
; Copy a binary image data file into BG1. Assumes the file is the correct size (328 x 208)
|
||||
;
|
||||
; A=low word of picture address
|
||||
; X=high word of pixture address
|
||||
@ -17,22 +17,62 @@ CopyBinToBG1 ENT
|
||||
jsr _CopyBinToBG1
|
||||
plb
|
||||
rtl
|
||||
|
||||
_CopyBinToBG1
|
||||
:src_width equ tmp6
|
||||
:src_height equ tmp7
|
||||
|
||||
clc
|
||||
adc #8 ; Advance over the header
|
||||
pha
|
||||
|
||||
lda #164
|
||||
sta :src_width
|
||||
lda #208
|
||||
sta :src_height
|
||||
|
||||
pla
|
||||
jmp _CopyToBG1
|
||||
|
||||
|
||||
; Copy a IIgs $C1 picture into BG1. Assumes the file is the correct size (320 x 200)
|
||||
;
|
||||
; A=low word of picture address
|
||||
; X=high word of pixture address
|
||||
; Y=high word of BG1 bank
|
||||
CopyPicToBG1 ENT
|
||||
phb
|
||||
phk
|
||||
plb
|
||||
jsr _CopyPicToBG1
|
||||
plb
|
||||
rtl
|
||||
|
||||
_CopyPicToBG1
|
||||
:src_width equ tmp6
|
||||
:src_height equ tmp7
|
||||
|
||||
pha
|
||||
lda #160
|
||||
sta :src_width
|
||||
lda #200
|
||||
sta :src_height
|
||||
pla
|
||||
jmp _CopyToBG1
|
||||
|
||||
; Generic routine to copy image data into BG1
|
||||
_CopyToBG1
|
||||
:srcptr equ tmp0
|
||||
:line_cnt equ tmp2
|
||||
:dstptr equ tmp3
|
||||
:col_cnt equ tmp5
|
||||
:src_width equ tmp6
|
||||
:src_height equ tmp7
|
||||
|
||||
sta :srcptr
|
||||
stx :srcptr+2
|
||||
sty :dstptr+2 ; Everything goes into this bank
|
||||
|
||||
; Advance over the header
|
||||
lda :srcptr
|
||||
clc
|
||||
adc #8
|
||||
sta :srcptr
|
||||
|
||||
stz :line_cnt
|
||||
:rloop
|
||||
lda :line_cnt ; get the pointer to the code field line
|
||||
@ -50,20 +90,21 @@ _CopyBinToBG1
|
||||
iny
|
||||
iny
|
||||
|
||||
cpy #164
|
||||
cpy :src_width
|
||||
bcc :cloop
|
||||
|
||||
ldy #254
|
||||
lda [:srcptr] ; Duplicate the last byte in the extra space at the end of the line
|
||||
sta [:dstptr],y
|
||||
|
||||
lda :srcptr
|
||||
clc
|
||||
adc #164 ; Each line is 328 pixels
|
||||
adc :src_width
|
||||
sta :srcptr
|
||||
|
||||
inc :line_cnt
|
||||
lda :line_cnt
|
||||
cmp #208 ; A total of 208 lines
|
||||
cmp :src_height
|
||||
bcc :rloop
|
||||
rts
|
||||
|
||||
|
@ -47,14 +47,14 @@ _BltSCB
|
||||
|
||||
lda ScreenHeight ; Calculate the number of scan lines / entry point
|
||||
asl
|
||||
asl
|
||||
and #$FFFC ; Make sure it's a multiple of 4
|
||||
eor #$FFFF
|
||||
inc
|
||||
clc
|
||||
adc #:scb_end
|
||||
sta :entry+1
|
||||
|
||||
lda ScreenY1 ; Get the SCB address to but into the stack register
|
||||
lda ScreenY1 ; Get the SCB address to put into the stack register
|
||||
dec
|
||||
clc
|
||||
adc #SHADOW_SCREEN_SCB
|
||||
@ -83,7 +83,7 @@ _BltSCB
|
||||
rts
|
||||
|
||||
|
||||
; Quick helper to set the pointer (X = low word, A = hgih work)
|
||||
; Quick helper to set the pointer (X = low word, A = high work)
|
||||
SetSCBArray ENT
|
||||
jsr _SetSCBArray
|
||||
rtl
|
||||
|
@ -274,7 +274,7 @@ BRowTableHigh ds 26*2*2
|
||||
BRowTableLow ds 26*2*2
|
||||
|
||||
; A double-length table of addresses for the BG1 bank. The BG1 buffer is 208 rows of 256 bytes each and
|
||||
; the first row starts $1800 bytes in to cenrer the buffer in the bank
|
||||
; the first row starts $1800 bytes in to center the buffer in the bank
|
||||
]step equ $1800
|
||||
BG1YTable lup 208
|
||||
dw ]step
|
||||
|
@ -49,10 +49,10 @@ async function readTileSet(workdir, tileset) {
|
||||
}
|
||||
|
||||
console.log(`Converting PNG to IIgs bitmap format...`);
|
||||
const buff = png2iigs.pngToIIgsBuff(GLOBALS.options, png);
|
||||
const [buff, mask] = png2iigs.pngToIIgsBuff(GLOBALS.options, png);
|
||||
|
||||
console.log(`Building tiles...`);
|
||||
const tiles = png2iigs.buildTiles(GLOBALS.options, buff, png.width / 2, transparentIndex);
|
||||
const tiles = png2iigs.buildTiles(GLOBALS.options, buff, mask, png.width / 2, transparentIndex);
|
||||
|
||||
// Return the tiles
|
||||
return tiles;
|
||||
@ -214,6 +214,7 @@ let GLOBALS = {
|
||||
* --output-dir : sets the output folder to write all assets into
|
||||
* --force-masked : sets the masked flag on the BG0 map data, event if a BG1 layer is not present. Useful if manually locaing a second background.
|
||||
* --empty-tile : designates a specific tile as the empty (background) tile
|
||||
* --no-gen-tiles : do not try and create the tile set
|
||||
*/
|
||||
async function main(argv) {
|
||||
// Read in the JSON data
|
||||
@ -221,7 +222,8 @@ async function main(argv) {
|
||||
const workdir = path.dirname(fullpath);
|
||||
|
||||
const outdir = getArg(argv, '--output-dir', x => x, workdir);
|
||||
const forceMasked = getArg(argv, '--output-dir', x => true, false);
|
||||
const forceMasked = getArg(argv, '--force-masked', x => true, false);
|
||||
const noGenTiles = getArg(argv, '--no-gen-tiles', x => true, false);
|
||||
const emptyTile = getArg(argv, '--empty-tile', x => parseInt(x, 10), -1);
|
||||
|
||||
console.log(`Reading Tiled JSON file from ${fullpath}`);
|
||||
@ -266,6 +268,7 @@ async function main(argv) {
|
||||
...GLOBALS,
|
||||
outdir,
|
||||
forceMasked,
|
||||
noGenTiles,
|
||||
emptyTile,
|
||||
tileSets,
|
||||
tileLayers
|
||||
@ -280,10 +283,12 @@ async function main(argv) {
|
||||
console.log(`Importing tileset "${record.tileset.name}"`);
|
||||
const tiles = await readTileSet(workdir, record.tileset);
|
||||
|
||||
const outputFilename = path.resolve(path.join(outdir, record.tileset.name + '.s'));
|
||||
console.log(`Writing tiles to ${outputFilename}`);
|
||||
writeTiles(outputFilename, tiles);
|
||||
console.log(`Writing complete`);
|
||||
if (!GLOBALS.noGenTiles) {
|
||||
const outputFilename = path.resolve(path.join(outdir, record.tileset.name + '.s'));
|
||||
console.log(`Writing tiles to ${outputFilename}`);
|
||||
writeTiles(outputFilename, tiles);
|
||||
console.log(`Writing complete`);
|
||||
}
|
||||
|
||||
// Look for tiles with animation sequences. If found, this information need to be propagated
|
||||
// to the tilemap export to mark those tile IDs as Dynamic Tiles.
|
||||
|
Loading…
Reference in New Issue
Block a user