Image encoding/decoding of PBM format
parent
5478913e19
commit
3d4dadffe2
|
@ -0,0 +1 @@
|
||||||
|
Erik Charlebois
|
|
@ -0,0 +1,7 @@
|
||||||
|
! Copyright (C) 2010 Erik Charlebois.
|
||||||
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
|
USING: images.testing ;
|
||||||
|
IN: images.pbm.tests
|
||||||
|
|
||||||
|
"vocab:images/testing/pbm/test.binary.pbm" decode-test
|
||||||
|
"vocab:images/testing/pbm/test.ascii.pbm" decode-test
|
|
@ -0,0 +1,85 @@
|
||||||
|
! Copyright (C) 2010 Erik Charlebois.
|
||||||
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
|
USING: accessors alien.c-types arrays ascii bit-arrays byte-arrays
|
||||||
|
combinators continuations grouping images images.loader io
|
||||||
|
io.encodings.ascii io.encodings.string kernel locals make math
|
||||||
|
math.functions math.parser sequences specialized-arrays ;
|
||||||
|
SPECIALIZED-ARRAY: ushort
|
||||||
|
IN: images.pbm
|
||||||
|
|
||||||
|
SINGLETON: pbm-image
|
||||||
|
"pbm" pbm-image register-image-class
|
||||||
|
|
||||||
|
<PRIVATE
|
||||||
|
: read-token ( -- token )
|
||||||
|
[ read1 dup blank?
|
||||||
|
[ t ]
|
||||||
|
[ dup CHAR: # =
|
||||||
|
[ "\n" read-until 2drop t ]
|
||||||
|
[ f ] if
|
||||||
|
] if
|
||||||
|
] [ drop ] while
|
||||||
|
" \n\r\t" read-until drop swap
|
||||||
|
prefix ascii decode ;
|
||||||
|
|
||||||
|
: read-number ( -- number )
|
||||||
|
read-token string>number ;
|
||||||
|
|
||||||
|
: read-ascii-bits ( -- )
|
||||||
|
read1 {
|
||||||
|
{ CHAR: 1 [ 0 , read-ascii-bits ] }
|
||||||
|
{ CHAR: 0 [ 255 , read-ascii-bits ] }
|
||||||
|
{ f [ ] }
|
||||||
|
[ drop read-ascii-bits ]
|
||||||
|
} case ;
|
||||||
|
|
||||||
|
:: read-binary-bits ( width height -- )
|
||||||
|
width 8 align 8 / height * read
|
||||||
|
width 8 align 8 / <groups> [| row |
|
||||||
|
width iota [| n |
|
||||||
|
n 8 / floor row nth
|
||||||
|
n 8 mod 7 swap - bit?
|
||||||
|
[ 0 ] [ 255 ] if ,
|
||||||
|
] each
|
||||||
|
] each ;
|
||||||
|
|
||||||
|
:: write-binary-bits ( bitmap width -- )
|
||||||
|
bitmap width <groups> [
|
||||||
|
width 8 align 255 pad-tail
|
||||||
|
8 <groups> [
|
||||||
|
[ 255 = [ f ] [ t ] if ] { } map-as
|
||||||
|
>bit-array reverse bit-array>integer
|
||||||
|
1array >byte-array write
|
||||||
|
] each
|
||||||
|
] each ;
|
||||||
|
|
||||||
|
:: read-pbm ( -- image )
|
||||||
|
read-token :> type
|
||||||
|
read-number :> width
|
||||||
|
read-number :> height
|
||||||
|
width height * :> npixels
|
||||||
|
width 8 mod :> leftover
|
||||||
|
|
||||||
|
type {
|
||||||
|
{ "P1" [ [ [ read-ascii-bits ] ignore-errors ] B{ } make ] }
|
||||||
|
{ "P4" [ [ width height read-binary-bits ] B{ } make ] }
|
||||||
|
} case :> data
|
||||||
|
|
||||||
|
image new
|
||||||
|
L >>component-order
|
||||||
|
{ width height } >>dim
|
||||||
|
f >>upside-down?
|
||||||
|
data >>bitmap
|
||||||
|
ubyte-components >>component-type ;
|
||||||
|
PRIVATE>
|
||||||
|
|
||||||
|
M: pbm-image stream>image
|
||||||
|
drop [ read-pbm ] with-input-stream ;
|
||||||
|
|
||||||
|
M: pbm-image image>stream
|
||||||
|
drop {
|
||||||
|
[ drop "P4\n" ascii encode write ]
|
||||||
|
[ dim>> first number>string " " append ascii encode write ]
|
||||||
|
[ dim>> second number>string "\n" append ascii encode write ]
|
||||||
|
[ [ bitmap>> ] [ dim>> first ] bi write-binary-bits ]
|
||||||
|
} cleave ;
|
|
@ -0,0 +1 @@
|
||||||
|
Image loading for PBM image files.
|
Binary file not shown.
|
@ -0,0 +1,369 @@
|
||||||
|
P1
|
||||||
|
# CREATOR: GIMP PNM Filter Version 1.1
|
||||||
|
160 160
|
||||||
|
1111111100000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000111111111111111100000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000011111111111111111000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000111111111111111111
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0111111111111111111000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000111111111111111110000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000001111111111111111100000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000011111111
|
||||||
|
1111111110000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000111111101111110000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000001011111001010000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000101000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000001111
|
||||||
|
1111111111111111111111010000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000011111111111111111111111111111111000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000001111111111111111111111111111111111100
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000111111111111111111
|
||||||
|
1111111111111111111000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0111111111111111111111111111111111111111000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000001111111111111111111111111111111111111110000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000011111111111111111111111111111
|
||||||
|
1111111111000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000001111111111
|
||||||
|
1111111111111111111111111111110000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000111111111111111111111111111111111111111100000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000011111111111111111111111111111111111111111
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000111111111111111111111
|
||||||
|
1111111111111111111100000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000001
|
||||||
|
1111111111111111111111111111111111111111000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000111111111111000000000000000001111111111110000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000001111111111110000000000000000011
|
||||||
|
1111111111000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000011111111111
|
||||||
|
1000000000000000001111111111110000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000001111111111110000000000000000011111111111100000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000011111111111100000000000000000111111111111
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000111111111111000000000
|
||||||
|
0000000011111111111100000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000001
|
||||||
|
1111111111100000000000000000111111111111000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000111111111111000000000000000001111111111110000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000001111111111110000000000000000011
|
||||||
|
1111111111000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000011110100000000000000000000000000000000000000000011111111111
|
||||||
|
1000000000000000001111111111110000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000111111111110000000000000000000000000000000
|
||||||
|
0000000001111111111110000000000000000011111111111100000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000111111111111110000000000
|
||||||
|
0000000000000000000000000000011111111111100000000000000000111111111111
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000001111111
|
||||||
|
1111111111100000000000000000000000000000000000000111111111111000000000
|
||||||
|
0000000111111111111100000000000000000000000000000000000000000000000000
|
||||||
|
0000000000111111111111111111111100000000000000000000000000000000000001
|
||||||
|
1111111111100000000000000001111111111110000000000000000000000000000000
|
||||||
|
0000000000000000000000000000011111111111111111111111000000000000000000
|
||||||
|
0000000000000000001111111111111000000000000000011111111111100000000000
|
||||||
|
0000000000000000000000000000000000000000000000011111111111111111111111
|
||||||
|
1110000000000000000000000000000000000001111111111100000000000000000111
|
||||||
|
1111111110000000000000000000000000000000000000000000000000000000001111
|
||||||
|
1111111111111111111111100000000000000000000000000000000000111111111111
|
||||||
|
0000000000000000011111111111100000000000000000000000000000000000000000
|
||||||
|
0000000000000011111111111111111111111111111000000000000000000000000000
|
||||||
|
0000000011111111111100000000000000000111111111110000000000000000000000
|
||||||
|
0000000000000000000000000000000011111111111111111111111111111110000000
|
||||||
|
0000000000000000000000000000111111111111000000000000000011111111111100
|
||||||
|
0000000000000000000000000000000000000000000000000001111111111111111111
|
||||||
|
1111111111111000000000000000000000000000000000001111111111110000000000
|
||||||
|
0000001111111111110000000000000000000000000000000000000000000000000000
|
||||||
|
1111111111111111111111111111111110000000000000000000000000000000000011
|
||||||
|
1111111111000000000000000011111111111100000000000000000000000000000000
|
||||||
|
0000000000000000000111111111111111111111111111111111110000000000000000
|
||||||
|
0000000000000000001111111111110000000000000000111111111111000000000000
|
||||||
|
0000000000000000000000000000000000000001111111111111111111111011111111
|
||||||
|
1111000000000000000000000000000000000111111111111100000000000000001111
|
||||||
|
1111111100000000000000000000000000000000000000000000000000011111111111
|
||||||
|
1111110000001111111111110000000000000000000000000000000011111111111110
|
||||||
|
0000000000000000111111111111000000000000000000000000000000000000000000
|
||||||
|
0000000011111111111111111000000011111111111110000000000000000000000000
|
||||||
|
0000011111111111111000000000000000001111111111110000000000000000000000
|
||||||
|
0000000000000000000000000000111111111111111000000000011111111111000000
|
||||||
|
0000000000000000000000000111111111111110000000000000000011111111111100
|
||||||
|
0000000000000000000000000000000000000000000000001111111111111100000000
|
||||||
|
0001111111111110000000000000000000000000000011111111111111000000000000
|
||||||
|
0000001111111111110000000000000000000000000000000000000000000000000011
|
||||||
|
1111111111000000000000011111111111100000000000000000000000000011111111
|
||||||
|
1111111100000000000000000011111111111100000000000000000000000000000000
|
||||||
|
0000000000000000001111111111100000000000000111111111111000000000000000
|
||||||
|
0000000000001111111111111110000000000000000000111111111111000000000000
|
||||||
|
0000000000000000000000000000000000000111111111111000000000000001111111
|
||||||
|
1111100000000000000000000000000111111111111111000000000000000000001111
|
||||||
|
1111111100000000000000000000000000000000000000000000000001111111111110
|
||||||
|
0000000000000111111111111000000000000000000000000011111111111111110000
|
||||||
|
0000000000000000111111111111000000000000000000000000000000000000000000
|
||||||
|
0000000111111111111000000000000001111111111110000000000000000000000001
|
||||||
|
1111111111111110000000000000000000001111111111110000000000000000000000
|
||||||
|
0000000000000000000000000001111111111110000000000000011111111111110000
|
||||||
|
0000000000000000000111111111111111000000000000000000000011111111111100
|
||||||
|
0000000000000000000000000000000000000000000000011111111111100000000000
|
||||||
|
0000111111111111000000000000000000000111111111111111100000000000000000
|
||||||
|
0000001111111111110000000000000000000000000000000000000000000000000111
|
||||||
|
1111111110000000000000001111111111110000000000000000000011111111111111
|
||||||
|
1100000000000000000000000011111111111100000000000000000000000000000000
|
||||||
|
0000000000000000011111111111100000000000000011111111111110000000000000
|
||||||
|
0000011111111111111110000000000000000000000000111111111111000000000000
|
||||||
|
0000000000000000000000000000000000000111111111111000000000000000011111
|
||||||
|
1111111000000000000000000111111111111111100000000000000000000000001111
|
||||||
|
1111111100000000000000000000000000000000000000000000000001111111111110
|
||||||
|
0000000000000001111111111110000000000000000111111111111111100000000000
|
||||||
|
0000000000000000111111111110000000000000000000000000000000000000000000
|
||||||
|
0000000111111111111000000000000000011111111111100000000000000001111111
|
||||||
|
1111111110000000000000000000000000011111111111110000000000000000000000
|
||||||
|
0000000000000000000000000001111111111110000000000000000111111111111000
|
||||||
|
0000000000001111111111111111000000000000000000000000000111111111111000
|
||||||
|
0000000000000000000000000000000000000000000000011111111111100000000000
|
||||||
|
0000011111111111110000000000000111111111111111100000000000000000000000
|
||||||
|
0000011111111111100000000000000000000000000000000000000000000000000111
|
||||||
|
1111111110000000000000000011111111111100000000000011111111111111110000
|
||||||
|
0000000000000000000000000111111111111000000000000000000000000000000000
|
||||||
|
0000000000000000011111111111100000000000000000111111111111000000000001
|
||||||
|
1111111111111100000000000000000000000000000001111111111110000000000000
|
||||||
|
0000000000000000000000000000000000000111111111111000000000000000001111
|
||||||
|
1111111110000000001111111111111111000000000000000000000000000000011111
|
||||||
|
1111111000000000000000000000000000000000000000000000000001111111111110
|
||||||
|
0000000000000000011111111111100000000111111111111111100000000000000000
|
||||||
|
0000000000000001111111111110000000000000000000000000000000000000000000
|
||||||
|
0000000111111111111000000000000000000111111111111000000111111111111111
|
||||||
|
1100000000000000000000000000000000011111111111100000000000000000000000
|
||||||
|
0000000000000000000000000001111111111110000000000000000001111111111110
|
||||||
|
0000011111111111111110000000000000000000000000000000000111111111111000
|
||||||
|
0000000000000000000000000000000000000000000000011111111111100000000000
|
||||||
|
0000000111111111111000011111111111111111000000000000000000000000000000
|
||||||
|
0000011111111111100000000000000000000000000000000000000000000000000111
|
||||||
|
1111111110000000000000000000111111111111001111111111111111110000000000
|
||||||
|
0000000000000000000000000111111111111000000000000000000000000000000000
|
||||||
|
0000000000000000011111111111100000000000000000001111111111110111111111
|
||||||
|
1111111100000000000000000000000000000000000001111111111110000000000000
|
||||||
|
0000000000000000000000000000000000000111111111111000000000000000000011
|
||||||
|
1111111111111111111111111111000000000000000000000000000000000000011111
|
||||||
|
1111111000000000000000000000000000000000000000000000000001111111111110
|
||||||
|
0000000000000000001111111111111111111111111111000000000000000000000000
|
||||||
|
0000000000000001111111111110000000000000000000000000000000000000000000
|
||||||
|
0000000111111111111000000000000000000001111111111111111111111111100000
|
||||||
|
0000000000000000000000000000000000011111111111100000000000000000000000
|
||||||
|
0000000000000000000000000001111111111110000000000000000000011111111111
|
||||||
|
1111111111111100000000000000000000000000000000000000001111111111110000
|
||||||
|
0000000000000000000000000000000000000000000000011111111111100000000000
|
||||||
|
0000000001111111111111111111111110000000000000000000000000000000000000
|
||||||
|
0000111111111111000000000000000000000000000000000000000000000000000111
|
||||||
|
1111111110000000000000000000011111111111111111111111000000000000000000
|
||||||
|
0000000000000000000000001111111111110000000000000000000000000000000000
|
||||||
|
0000000000000000011111111111100000000000000000000111111111111111111111
|
||||||
|
0000000000000000000000000000000000000000000011111111111100000000000000
|
||||||
|
0000000000000000000000000000000000000111111111111000000000000000000001
|
||||||
|
1111111111111111111000000000000000000000000000000000000000000000111111
|
||||||
|
1111110000000000000000000000000000000000000000000000000001111111111110
|
||||||
|
0000000000000000000111111111111111111100000000000000000000000000000000
|
||||||
|
0000000000000011111111111100000000000000000000000000000000000000000000
|
||||||
|
0000000111111111111000000000000000000000111111111111111110000000000000
|
||||||
|
0000000000000000000000000000000000111111111111000000000000000000000000
|
||||||
|
0000000000000000000000000001111111111110000000000000000000001111111111
|
||||||
|
1111111000000000000000000000000000000000000000000000001111111111110000
|
||||||
|
0000000000000000000000000000000000000000000000011111111111100000000000
|
||||||
|
0000000000111111111111111000000000000000000000000000000000000000000000
|
||||||
|
0000111111111111000000000000000000000000000000000000000000000000000111
|
||||||
|
1111111110000000000000000000001111111111111000000000000000000000000000
|
||||||
|
0000000000000000000000001111111111110000000000000000000000000000000000
|
||||||
|
0000000000000000011111111111100000000000000000000001111111111110000000
|
||||||
|
0000000000000000000000000000000000000000000011111111111100000000000000
|
||||||
|
0000000000000000000000000000000000000111111111111000000000000000000000
|
||||||
|
0011111111110000000000000000000000000000000000000000000000000000111111
|
||||||
|
1111110000000000000000000000000000000000000000000000000001111111111110
|
||||||
|
0000000000000000000000011111110000001011111111111110100000000000000000
|
||||||
|
0000000000000011111111111100000000000000000000000000000000000000000000
|
||||||
|
0000000111111111111000000000000000000000000000101010111111111111111111
|
||||||
|
1111111111000000000000000000000000111111111111000000000000000000000000
|
||||||
|
0000000000000000000000000001111111111110000000000000000000000000001111
|
||||||
|
1111111111111111111111111111111100000000000000000000001111111111110000
|
||||||
|
0000000000000000000000000000000000000000000000011111111111100000000000
|
||||||
|
0000000101111111111111111111111111111111111111111111100000000000000000
|
||||||
|
0000111111111111000000000000000000000000000000000000000000000000000111
|
||||||
|
1111111110000000000000101111111111111111111111111111111111111111111111
|
||||||
|
1110000000000000000000001111111111110000000000000000000000000000000000
|
||||||
|
0000000000000000011111111111100000101111111111111111111111111111111111
|
||||||
|
1111111111111111111111110000000000000000000011111111111100000000000000
|
||||||
|
0000000000000000000000000000000000000111111111111000111111111111111111
|
||||||
|
1111111111111111111111111111111111111111111100000000000000000000111111
|
||||||
|
1111110000000000000000000000000000000000000000000000000001111111111110
|
||||||
|
0011111111111111111111111111111111111111111111111111111111111111000000
|
||||||
|
0000000000000011111111111100000000000000000000000000000000000000000000
|
||||||
|
0000000111111111111111111111111111111111111111111111111111111111111111
|
||||||
|
1111111111111100000000000000000000111111111111000000000000000000000000
|
||||||
|
0000000000000000000000000001111111111111111111111111111111111111111111
|
||||||
|
1111111111111111111111111111111110000000000000000000011111111111110000
|
||||||
|
0000000000000000000000000000000000000000000000011111111111111111111111
|
||||||
|
1111111111111111111111111111111111111111111111111111100000000000000000
|
||||||
|
0001111111111110000000000000000000000000000000000000000000000000000111
|
||||||
|
1111111111111111111111111111111111111111111111111111111111111111111111
|
||||||
|
1100000000000000000000011111111111100000000000000000000000000000000000
|
||||||
|
0000000000000000011111111111111111111111111111111111111111111111111111
|
||||||
|
1111111111111111111100000000000000000000000111111111111000000000000000
|
||||||
|
0000000000000000000000000000000000000111111111111111111111111111111111
|
||||||
|
1111111111111111111111111111111111111000000000000000000000000011111111
|
||||||
|
1111100000000000000000000000000000000000000000000000000001111111111111
|
||||||
|
1111111111111111111111111111111111111111111111111111110000000000000000
|
||||||
|
0000000000011111111111110000000000000000000000000000000000000000000000
|
||||||
|
0000000111111111111111111111111111110100000000111111111111111111111111
|
||||||
|
1100000000000000000000000000000111111111111100000000000000000000000000
|
||||||
|
0000000000000000000000000001111111111111111111111111010000000000011111
|
||||||
|
1111111111111111111000000000000000000000000000000111111111111111000000
|
||||||
|
0000000000000000000000000000000000000000000000111111111111111111111000
|
||||||
|
0000000000000111111111111111111111111000000000000000000000000000000001
|
||||||
|
1111111111111000000000000000000000000000000000000000000000000000001111
|
||||||
|
1111111111111110000000000000000111111111111111111111111000000000000000
|
||||||
|
0000000000000000011111111111111110000000000000000000000000000000000000
|
||||||
|
0000000000000000111111111111111100000000000000000111111111111111111111
|
||||||
|
1111000000000000000000000000000000011111111111111111000000000000000000
|
||||||
|
0000000000000000000000000000000000001111111111111110000000000000000011
|
||||||
|
1111111111111111111110000000000000000000000000000000001111111111111111
|
||||||
|
1000000000000000000000000000000000000000000000000000000001111111111110
|
||||||
|
0000000000000000001111111111111111111101000000000000000000000000000000
|
||||||
|
0001111111111111111110000000000000000000000000000000000000000000000000
|
||||||
|
0000000111111111110000000000000000000111111111111111111110000000000000
|
||||||
|
0000000000000000000001111111111111111111000000000000000000000000000000
|
||||||
|
0000000000000000000000000000111111111000000000000000000011111111111111
|
||||||
|
1111110000000000000000000000000000000000011111111111111111100000000000
|
||||||
|
0000000000000000000000000000000000000000000000000111111100000000000000
|
||||||
|
0000001111111111111111100000000000000000000000000000000000011111111111
|
||||||
|
1111111100000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0010100000000000000000000011111111111111110000000000000000000000000000
|
||||||
|
0000000011111111111111111110000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000111111111111111000000000
|
||||||
|
0000000000000000000000000011111111111111111110000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000001111
|
||||||
|
1111111110000000000000000000000000000000000000111111111111111111100000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000111111111111000000000000000000000000000000000000011111
|
||||||
|
1111111111110000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000001111111111110000000000000000000000
|
||||||
|
0000000000000011111111111111111000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000011111111111100
|
||||||
|
0000000000000000000000000000000001111111111111111100000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000001111111111110000000000000000000000000000000000111111111111111111
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000001111111111100000000000000000000000000000000
|
||||||
|
1111111111111111110000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000011111111111100000000000
|
||||||
|
0000000000000000000111111111111111111000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000111
|
||||||
|
1111111110000000000000000000000000000111111111111111111100000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000011111111111110000000000000000000000000011111111111111
|
||||||
|
1111000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000011111111111100000000000000000000
|
||||||
|
0000111111111111111111110000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000111111111111
|
||||||
|
1000000000000000000000011111111111111111110000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000011111111111110000000000000000000011111111111111111111000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000011111111111110000000000000000000111111111
|
||||||
|
1111111111100000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000111111111111100000000
|
||||||
|
0000000001111111111111111111100000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
1111111111110000000000000000111111111111111111110000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000011111111111110000000000000011111111111111111110000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000011111111111100000000000001111
|
||||||
|
1111111111111110000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000111111111
|
||||||
|
1111000000000001111111111111111110000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000011111111111110000000000111111111111111111000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000011111111111110000000011111111111111111
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000111111111111110000
|
||||||
|
0011111111111111111100000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0001111111111111000011111111111111111100000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000001111111111111100111111111111111110000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000011111111111111111111111111
|
||||||
|
1111100000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000011111
|
||||||
|
1111111111111111111111110000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000001111111111111111111111111111100000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000001111111111111111111111111110000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000011111111111111
|
||||||
|
1111111111110000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0000000111111111111111111111110000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000000101000000101000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000111111111111111111111000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000011111100111111000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000111111111111111111110
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000001111111
|
||||||
|
1111111110000000000000000000000000000000000000000000000000000000000000
|
||||||
|
1111111111111111100000000000000000000000000000000000000000000000000000
|
||||||
|
0000000000001111111111111111110000000000000000000000000000000000000000
|
||||||
|
0000000000000000000001111111111111111000000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000011111111111111111100000000000000000000
|
||||||
|
0000000000000000000000000000000000000000011111111111111000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000001111111111111111111
|
||||||
|
1000000000000000000000000000000000000000000000000000000000000001111111
|
||||||
|
1111000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
0111111111111111111100000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000001111101000000000000000000000000000000000000000000000000
|
||||||
|
0000000000000000000000111111111111111111000000000000000000000000000000
|
||||||
|
0000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
|
00000000000000000000000000000000000000000011111111
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue