Well done, Mr. Moose! The image has been added to our gallery
here.
I've often wondered what binary operations on the data (i.e binary AND, binary OR) would produce. Moose's result set provides the equivalent of an AND operation if you convert the blocks equal to 3 to a 1 and the rest of the values to 0. To get the equivalent to an OR operation, you convert all non-zero values to 1. Performing each of these operations produces two "new" sets of banner dots:
J-Banners - Binary AND
1010010110011101010100000010
1010011001000001101010110101
0000001010010000110011010110
0000011000001001100101101011
J-Banners - Binary OR
1011010110111101010111111110
1011111111111111111111111101
0101001011111100110011011110
1111111100101101101101101011
I dropped these new data sets into my binary analyzer program and set it to decode ASCII in four different ways. I turned up a big nothing, but am providing the data for proof/reference. I also grouped the data into 7-bit bytes, performed the same eight decodings, and also got nothing. If anyone really wants that data I can provide it as well.
Below are the ASCII conversions of these new sets of dots, assuming 8-bit bytes. Values in brackets ([]) are within the ASCII range but are non-printable. Values in braces ({}) are outside the valid ASCII range. Valid ASCII values are decoded into the corresponding ASCII character.
J-Banner Binary AND ASCII Conversion: Dot=1, L-R, T-B, Big Endian01,10100101,{165}
02,10011101,{157}
03,01010000,P
04,00101010,*
05,01100100,d
06,00011010,[26]
07,10110101,{181}
08,00000010,[2]
09,10010000,{144}
10,11001101,{205}
11,01100000,`
12,01100000,`
13,10011001,{153}
14,01101011,k
J-Banner Binary AND ASCII Conversion: Dot=0, L-R, T-B, Big Endian01,01011010,Z
02,01100010,b
03,10101111,{175}
04,11010101,{213}
05,10011011,{155}
06,11100101,{229}
07,01001010,J
08,11111101,{253}
09,01101111,o
10,00110010,2
11,10011111,{159}
12,10011111,{159}
13,01100110,f
14,10010100,{148}
J-Banner Binary AND ASCII Conversion: Dot=1, L-R, T-B, Little Endian01,10100101,{165}
02,10111001,{185}
03,00001010,[10]
04,01010100,T
05,00100110,&
06,01011000,X
07,10101101,{173}
08,01000000,@
09,00001001,[9]
10,10110011,{179}
11,00000110,[6]
12,00000110,[6]
13,10011001,{153}
14,11010110,{214}
J-Banner Binary AND ASCII Conversion: Dot=0, L-R, T-B, Little Endian01,01011010,Z
02,01000110,F
03,11110101,{245}
04,10101011,{171}
05,11011001,{217}
06,10100111,{167}
07,01010010,R
08,10111111,{191}
09,11110110,{246}
10,01001100,L
11,11111001,{249}
12,11111001,{249}
13,01100110,f
14,00101001,)
J-Banner Binary OR ASCII Conversion: Dot=1, L-R, T-B, Big Endian01,10110101,{181}
02,10111101,{189}
03,01011111,_
04,11101011,{235}
05,11111111,{255}
06,11111111,{255}
07,11111101,{253}
08,01010010,R
09,11111100,{252}
10,11001101,{205}
11,11101111,{239}
12,11110010,{242}
13,11011011,{219}
14,01101011,k
J-Banner Binary OR ASCII Conversion: Dot=0, L-R, T-B, Big Endian01,01001010,J
02,01000010,B
03,10100000,{160}
04,00010100,[20]
05,00000000,[0]
06,00000000,[0]
07,00000010,[2]
08,10101101,{173}
09,00000011,[3]
10,00110010,2
11,00010000,[16]
12,00001101,[13]
13,00100100,$
14,10010100,{148}
J-Banner Binary OR ASCII Conversion: Dot=1, L-R, T-B, Little Endian01,10101101,{173}
02,10111101,{189}
03,11111010,{250}
04,11010111,{215}
05,11111111,{255}
06,11111111,{255}
07,10111111,{191}
08,01001010,J
09,00111111,?
10,10110011,{179}
11,11110111,{247}
12,01001111,O
13,11011011,{219}
14,11010110,{214}
J-Banner Binary OR ASCII Conversion: Dot=0, L-R, T-B, Little Endian01,01010010,R
02,01000010,B
03,00000101,[5]
04,00101000,(
05,00000000,[0]
06,00000000,[0]
07,01000000,@
08,10110101,{181}
09,11000000,{192}
10,01001100,L
11,00001000,[8]
12,10110000,{176}
13,00100100,$
14,00101001,)