public ToyMP3Decoder()
		{
			Reset();
			bs = new BitStream();
			Scf = new Scalefactor[2,2];
			for(int i=0; i<2; i++)
			{
				for(int j=0; j<2; j++)
				{
					Scf[i, j] = new Scalefactor();
					Scf[i, j].LongBlock  = new int[22];
					Scf[i, j].ShortBlock = new int[3, 14];
				}
			}

			// Initializing ScalefactorBandIndex
			ScfBandIndex = new ScalefactorBandIndex[3];
			// fs = 32kHz
			ScfBandIndex[0].LongBlock = new int[]{
				0,4,8,12,16,20,24,30,36,44,52,62,74,90,110,
				134,162,196,238,288,342,418,576
			};
			ScfBandIndex[0].ShortBlock = new int[]{
				0,4,8,12,16,20,30,40,52,66,84,106,136,192
			};
			// fs = 44.1kHz
			ScfBandIndex[1].LongBlock = new int[]{
				0,4,8,12,16,20,24,30,36,42,50,60,72,88,106,
				128,156,190,230,276,330,384,576
			};
			ScfBandIndex[1].ShortBlock = new int[]{
				0,4,8,12,16,22,28,38,50,64,80,100,126,192
			};
			// fs = 48kHz
			ScfBandIndex[2].LongBlock = new int[]{
				0,4,8,12,16,20,24,30,36,44,54,66,82,102,126,
				156,194,240,296,364,448,550,576
			};
			ScfBandIndex[2].ShortBlock = new int[]{
				0,4,8,12,16,22,30,42,58,78,104,138,180,192
			};

			// Initializing HuffmanTable
			for(int i=0; i<2; i++)
			{
				hfq[i] = new HuffmanTableQ();
				HuffmanTreeQ[i] = new HuffNodeQ();
			}

			hfq[0].l.Add(new HuffmanCodeQ("1", new int[]{ 0, 0, 0, 0}));
			hfq[0].l.Add(new HuffmanCodeQ("0101", new int[]{ 0, 0, 0, 1}));
			hfq[0].l.Add(new HuffmanCodeQ("0100", new int[]{ 0, 0, 1, 0}));
			hfq[0].l.Add(new HuffmanCodeQ("00101", new int[]{ 0, 0, 1, 1}));
			hfq[0].l.Add(new HuffmanCodeQ("0110", new int[]{ 0, 1, 0, 0}));
			hfq[0].l.Add(new HuffmanCodeQ("000101", new int[]{ 0, 1, 0, 1}));
			hfq[0].l.Add(new HuffmanCodeQ("00100", new int[]{ 0, 1, 1, 0}));
			hfq[0].l.Add(new HuffmanCodeQ("000100", new int[]{ 0, 1, 1, 1}));
			hfq[0].l.Add(new HuffmanCodeQ("0111", new int[]{ 1, 0, 0, 0}));
			hfq[0].l.Add(new HuffmanCodeQ("00011", new int[]{ 1, 0, 0, 1}));
			hfq[0].l.Add(new HuffmanCodeQ("00110", new int[]{ 1, 0, 1, 0}));
			hfq[0].l.Add(new HuffmanCodeQ("000000", new int[]{ 1, 0, 1, 1}));
			hfq[0].l.Add(new HuffmanCodeQ("00111", new int[]{ 1, 1, 0, 0}));
			hfq[0].l.Add(new HuffmanCodeQ("000010", new int[]{ 1, 1, 0, 1}));
			hfq[0].l.Add(new HuffmanCodeQ("000011", new int[]{ 1, 1, 1, 0}));
			hfq[0].l.Add(new HuffmanCodeQ("000001", new int[]{ 1, 1, 1, 1}));

			hfq[1].l.Add(new HuffmanCodeQ("1111", new int[]{ 0, 0, 0, 0}));
			hfq[1].l.Add(new HuffmanCodeQ("1110", new int[]{ 0, 0, 0, 1}));
			hfq[1].l.Add(new HuffmanCodeQ("1101", new int[]{ 0, 0, 1, 0}));
			hfq[1].l.Add(new HuffmanCodeQ("1100", new int[]{ 0, 0, 1, 1}));
			hfq[1].l.Add(new HuffmanCodeQ("1011", new int[]{ 0, 1, 0, 0}));
			hfq[1].l.Add(new HuffmanCodeQ("1010", new int[]{ 0, 1, 0, 1}));
			hfq[1].l.Add(new HuffmanCodeQ("1001", new int[]{ 0, 1, 1, 0}));
			hfq[1].l.Add(new HuffmanCodeQ("1000", new int[]{ 0, 1, 1, 1}));
			hfq[1].l.Add(new HuffmanCodeQ("0111", new int[]{ 1, 0, 0, 0}));
			hfq[1].l.Add(new HuffmanCodeQ("0110", new int[]{ 1, 0, 0, 1}));
			hfq[1].l.Add(new HuffmanCodeQ("0101", new int[]{ 1, 0, 1, 0}));
			hfq[1].l.Add(new HuffmanCodeQ("0100", new int[]{ 1, 0, 1, 1}));
			hfq[1].l.Add(new HuffmanCodeQ("0011", new int[]{ 1, 1, 0, 0}));
			hfq[1].l.Add(new HuffmanCodeQ("0010", new int[]{ 1, 1, 0, 1}));
			hfq[1].l.Add(new HuffmanCodeQ("0001", new int[]{ 1, 1, 1, 0}));
			hfq[1].l.Add(new HuffmanCodeQ("0000", new int[]{ 1, 1, 1, 1}));

			linbits = new int[]{
				0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
				0, 0, 0, 0, 0, 0, 1, 2, 3, 4,
				6, 8,10,13, 4, 5, 6, 7, 8, 9,11,13};

			for(int i=0; i<32; i++)
			{
				hf[i] = new HuffmanTable();
				HuffmanTree[i] = new HuffNode();
			}
			HuffmanTree[0].XY = new int[]{0,0};

			// Initialize HuffmanTable
			hf[1].l.Add(new HuffmanCode("1", new int[]{ 0, 0}));
			hf[1].l.Add(new HuffmanCode("001", new int[]{ 0, 1}));
			hf[1].l.Add(new HuffmanCode("01", new int[]{ 1, 0}));
			hf[1].l.Add(new HuffmanCode("000", new int[]{ 1, 1}));

			hf[2].l.Add(new HuffmanCode("1", new int[]{ 0, 0}));
			hf[2].l.Add(new HuffmanCode("010", new int[]{ 0, 1}));
			hf[2].l.Add(new HuffmanCode("000001", new int[]{ 0, 2}));
			hf[2].l.Add(new HuffmanCode("011", new int[]{ 1, 0}));
			hf[2].l.Add(new HuffmanCode("001", new int[]{ 1, 1}));
			hf[2].l.Add(new HuffmanCode("00001", new int[]{ 1, 2}));
			hf[2].l.Add(new HuffmanCode("00011", new int[]{ 2, 0}));
			hf[2].l.Add(new HuffmanCode("00010", new int[]{ 2, 1}));
			hf[2].l.Add(new HuffmanCode("000000", new int[]{ 2, 2}));
			
			hf[3].l.Add(new HuffmanCode("11", new int[]{ 0, 0}));
			hf[3].l.Add(new HuffmanCode("10", new int[]{ 0, 1}));
			hf[3].l.Add(new HuffmanCode("000001", new int[]{ 0, 2}));
			hf[3].l.Add(new HuffmanCode("001", new int[]{ 1, 0}));
			hf[3].l.Add(new HuffmanCode("01", new int[]{ 1, 1}));
			hf[3].l.Add(new HuffmanCode("00001", new int[]{ 1, 2}));
			hf[3].l.Add(new HuffmanCode("00011", new int[]{ 2, 0}));
			hf[3].l.Add(new HuffmanCode("00010", new int[]{ 2, 1}));
			hf[3].l.Add(new HuffmanCode("000000", new int[]{ 2, 2}));

			HuffmanTree[4] = new HuffNode();
			hf[4].Linbits = linbits[4];

			hf[5].l.Add(new HuffmanCode("1", new int[]{ 0, 0}));
			hf[5].l.Add(new HuffmanCode("010", new int[]{ 0, 1}));
			hf[5].l.Add(new HuffmanCode("000110", new int[]{ 0, 2}));
			hf[5].l.Add(new HuffmanCode("0000101", new int[]{ 0, 3}));
			hf[5].l.Add(new HuffmanCode("011", new int[]{ 1, 0}));
			hf[5].l.Add(new HuffmanCode("001", new int[]{ 1, 1}));
			hf[5].l.Add(new HuffmanCode("000100", new int[]{ 1, 2}));
			hf[5].l.Add(new HuffmanCode("0000100", new int[]{ 1, 3}));
			hf[5].l.Add(new HuffmanCode("000111", new int[]{ 2, 0}));
			hf[5].l.Add(new HuffmanCode("000101", new int[]{ 2, 1}));
			hf[5].l.Add(new HuffmanCode("0000111", new int[]{ 2, 2}));
			hf[5].l.Add(new HuffmanCode("00000001", new int[]{ 2, 3}));
			hf[5].l.Add(new HuffmanCode("0000110", new int[]{ 3, 0}));
			hf[5].l.Add(new HuffmanCode("000001", new int[]{ 3, 1}));
			hf[5].l.Add(new HuffmanCode("0000001", new int[]{ 3, 2}));
			hf[5].l.Add(new HuffmanCode("00000000", new int[]{ 3, 3}));

			hf[6].l.Add(new HuffmanCode("111", new int[]{ 0, 0}));
			hf[6].l.Add(new HuffmanCode("011", new int[]{ 0, 1}));
			hf[6].l.Add(new HuffmanCode("00101", new int[]{ 0, 2}));
			hf[6].l.Add(new HuffmanCode("0000001", new int[]{ 0, 3}));
			hf[6].l.Add(new HuffmanCode("110", new int[]{ 1, 0}));
			hf[6].l.Add(new HuffmanCode("10", new int[]{ 1, 1}));
			hf[6].l.Add(new HuffmanCode("0011", new int[]{ 1, 2}));
			hf[6].l.Add(new HuffmanCode("00010", new int[]{ 1, 3}));
			hf[6].l.Add(new HuffmanCode("0101", new int[]{ 2, 0}));
			hf[6].l.Add(new HuffmanCode("0100", new int[]{ 2, 1}));
			hf[6].l.Add(new HuffmanCode("00100", new int[]{ 2, 2}));
			hf[6].l.Add(new HuffmanCode("000001", new int[]{ 2, 3}));
			hf[6].l.Add(new HuffmanCode("000011", new int[]{ 3, 0}));
			hf[6].l.Add(new HuffmanCode("00011", new int[]{ 3, 1}));
			hf[6].l.Add(new HuffmanCode("000010", new int[]{ 3, 2}));
			hf[6].l.Add(new HuffmanCode("0000000", new int[]{ 3, 3}));

			hf[7].l.Add(new HuffmanCode("1", new int[]{ 0, 0}));
			hf[7].l.Add(new HuffmanCode("010", new int[]{ 0, 1}));
			hf[7].l.Add(new HuffmanCode("001010", new int[]{ 0, 2}));
			hf[7].l.Add(new HuffmanCode("00010011", new int[]{ 0, 3}));
			hf[7].l.Add(new HuffmanCode("00010000", new int[]{ 0, 4}));
			hf[7].l.Add(new HuffmanCode("000001010", new int[]{ 0, 5}));
			hf[7].l.Add(new HuffmanCode("011", new int[]{ 1, 0}));
			hf[7].l.Add(new HuffmanCode("0011", new int[]{ 1, 1}));
			hf[7].l.Add(new HuffmanCode("000111", new int[]{ 1, 2}));
			hf[7].l.Add(new HuffmanCode("0001010", new int[]{ 1, 3}));
			hf[7].l.Add(new HuffmanCode("0000101", new int[]{ 1, 4}));
			hf[7].l.Add(new HuffmanCode("00000011", new int[]{ 1, 5}));
			hf[7].l.Add(new HuffmanCode("001011", new int[]{ 2, 0}));
			hf[7].l.Add(new HuffmanCode("00100", new int[]{ 2, 1}));
			hf[7].l.Add(new HuffmanCode("0001101", new int[]{ 2, 2}));
			hf[7].l.Add(new HuffmanCode("00010001", new int[]{ 2, 3}));
			hf[7].l.Add(new HuffmanCode("00001000", new int[]{ 2, 4}));
			hf[7].l.Add(new HuffmanCode("000000100", new int[]{ 2, 5}));
			hf[7].l.Add(new HuffmanCode("0001100", new int[]{ 3, 0}));
			hf[7].l.Add(new HuffmanCode("0001011", new int[]{ 3, 1}));
			hf[7].l.Add(new HuffmanCode("00010010", new int[]{ 3, 2}));
			hf[7].l.Add(new HuffmanCode("000001111", new int[]{ 3, 3}));
			hf[7].l.Add(new HuffmanCode("000001011", new int[]{ 3, 4}));
			hf[7].l.Add(new HuffmanCode("000000010", new int[]{ 3, 5}));
			hf[7].l.Add(new HuffmanCode("0000111", new int[]{ 4, 0}));
			hf[7].l.Add(new HuffmanCode("0000110", new int[]{ 4, 1}));
			hf[7].l.Add(new HuffmanCode("00001001", new int[]{ 4, 2}));
			hf[7].l.Add(new HuffmanCode("000001110", new int[]{ 4, 3}));
			hf[7].l.Add(new HuffmanCode("000000011", new int[]{ 4, 4}));
			hf[7].l.Add(new HuffmanCode("0000000001", new int[]{ 4, 5}));
			hf[7].l.Add(new HuffmanCode("00000110", new int[]{ 5, 0}));
			hf[7].l.Add(new HuffmanCode("00000100", new int[]{ 5, 1}));
			hf[7].l.Add(new HuffmanCode("000000101", new int[]{ 5, 2}));
			hf[7].l.Add(new HuffmanCode("0000000011", new int[]{ 5, 3}));
			hf[7].l.Add(new HuffmanCode("0000000010", new int[]{ 5, 4}));
			hf[7].l.Add(new HuffmanCode("0000000000", new int[]{ 5, 5}));

			hf[8].l.Add(new HuffmanCode("11", new int[]{ 0, 0}));
			hf[8].l.Add(new HuffmanCode("100", new int[]{ 0, 1}));
			hf[8].l.Add(new HuffmanCode("000110", new int[]{ 0, 2}));
			hf[8].l.Add(new HuffmanCode("00010010", new int[]{ 0, 3}));
			hf[8].l.Add(new HuffmanCode("00001100", new int[]{ 0, 4}));
			hf[8].l.Add(new HuffmanCode("000000101", new int[]{ 0, 5}));
			hf[8].l.Add(new HuffmanCode("101", new int[]{ 1, 0}));
			hf[8].l.Add(new HuffmanCode("01", new int[]{ 1, 1}));
			hf[8].l.Add(new HuffmanCode("0010", new int[]{ 1, 2}));
			hf[8].l.Add(new HuffmanCode("00010000", new int[]{ 1, 3}));
			hf[8].l.Add(new HuffmanCode("00001001", new int[]{ 1, 4}));
			hf[8].l.Add(new HuffmanCode("00000011", new int[]{ 1, 5}));
			hf[8].l.Add(new HuffmanCode("000111", new int[]{ 2, 0}));
			hf[8].l.Add(new HuffmanCode("0011", new int[]{ 2, 1}));
			hf[8].l.Add(new HuffmanCode("000101", new int[]{ 2, 2}));
			hf[8].l.Add(new HuffmanCode("00001110", new int[]{ 2, 3}));
			hf[8].l.Add(new HuffmanCode("00000111", new int[]{ 2, 4}));
			hf[8].l.Add(new HuffmanCode("000000011", new int[]{ 2, 5}));
			hf[8].l.Add(new HuffmanCode("00010011", new int[]{ 3, 0}));
			hf[8].l.Add(new HuffmanCode("00010001", new int[]{ 3, 1}));
			hf[8].l.Add(new HuffmanCode("00001111", new int[]{ 3, 2}));
			hf[8].l.Add(new HuffmanCode("000001101", new int[]{ 3, 3}));
			hf[8].l.Add(new HuffmanCode("000001010", new int[]{ 3, 4}));
			hf[8].l.Add(new HuffmanCode("0000000100", new int[]{ 3, 5}));
			hf[8].l.Add(new HuffmanCode("00001101", new int[]{ 4, 0}));
			hf[8].l.Add(new HuffmanCode("0000101", new int[]{ 4, 1}));
			hf[8].l.Add(new HuffmanCode("00001000", new int[]{ 4, 2}));
			hf[8].l.Add(new HuffmanCode("000001011", new int[]{ 4, 3}));
			hf[8].l.Add(new HuffmanCode("0000000101", new int[]{ 4, 4}));
			hf[8].l.Add(new HuffmanCode("0000000001", new int[]{ 4, 5}));
			hf[8].l.Add(new HuffmanCode("000001100", new int[]{ 5, 0}));
			hf[8].l.Add(new HuffmanCode("00000100", new int[]{ 5, 1}));
			hf[8].l.Add(new HuffmanCode("000000100", new int[]{ 5, 2}));
			hf[8].l.Add(new HuffmanCode("000000001", new int[]{ 5, 3}));
			hf[8].l.Add(new HuffmanCode("00000000001", new int[]{ 5, 4}));
			hf[8].l.Add(new HuffmanCode("00000000000", new int[]{ 5, 5}));

			hf[9].l.Add(new HuffmanCode("111", new int[]{ 0, 0}));
			hf[9].l.Add(new HuffmanCode("101", new int[]{ 0, 1}));
			hf[9].l.Add(new HuffmanCode("01001", new int[]{ 0, 2}));
			hf[9].l.Add(new HuffmanCode("001110", new int[]{ 0, 3}));
			hf[9].l.Add(new HuffmanCode("00001111", new int[]{ 0, 4}));
			hf[9].l.Add(new HuffmanCode("000000111", new int[]{ 0, 5}));
			hf[9].l.Add(new HuffmanCode("110", new int[]{ 1, 0}));
			hf[9].l.Add(new HuffmanCode("100", new int[]{ 1, 1}));
			hf[9].l.Add(new HuffmanCode("0101", new int[]{ 1, 2}));
			hf[9].l.Add(new HuffmanCode("00101", new int[]{ 1, 3}));
			hf[9].l.Add(new HuffmanCode("000110", new int[]{ 1, 4}));
			hf[9].l.Add(new HuffmanCode("00000111", new int[]{ 1, 5}));
			hf[9].l.Add(new HuffmanCode("0111", new int[]{ 2, 0}));
			hf[9].l.Add(new HuffmanCode("0110", new int[]{ 2, 1}));
			hf[9].l.Add(new HuffmanCode("01000", new int[]{ 2, 2}));
			hf[9].l.Add(new HuffmanCode("001000", new int[]{ 2, 3}));
			hf[9].l.Add(new HuffmanCode("0001000", new int[]{ 2, 4}));
			hf[9].l.Add(new HuffmanCode("00000101", new int[]{ 2, 5}));
			hf[9].l.Add(new HuffmanCode("001111", new int[]{ 3, 0}));
			hf[9].l.Add(new HuffmanCode("00110", new int[]{ 3, 1}));
			hf[9].l.Add(new HuffmanCode("001001", new int[]{ 3, 2}));
			hf[9].l.Add(new HuffmanCode("0001010", new int[]{ 3, 3}));
			hf[9].l.Add(new HuffmanCode("0000101", new int[]{ 3, 4}));
			hf[9].l.Add(new HuffmanCode("00000001", new int[]{ 3, 5}));
			hf[9].l.Add(new HuffmanCode("0001011", new int[]{ 4, 0}));
			hf[9].l.Add(new HuffmanCode("000111", new int[]{ 4, 1}));
			hf[9].l.Add(new HuffmanCode("0001001", new int[]{ 4, 2}));
			hf[9].l.Add(new HuffmanCode("0000110", new int[]{ 4, 3}));
			hf[9].l.Add(new HuffmanCode("00000100", new int[]{ 4, 4}));
			hf[9].l.Add(new HuffmanCode("000000001", new int[]{ 4, 5}));
			hf[9].l.Add(new HuffmanCode("00001110", new int[]{ 5, 0}));
			hf[9].l.Add(new HuffmanCode("0000100", new int[]{ 5, 1}));
			hf[9].l.Add(new HuffmanCode("00000110", new int[]{ 5, 2}));
			hf[9].l.Add(new HuffmanCode("00000010", new int[]{ 5, 3}));
			hf[9].l.Add(new HuffmanCode("000000110", new int[]{ 5, 4}));
			hf[9].l.Add(new HuffmanCode("000000000", new int[]{ 5, 5}));

			HuffmanTree[10] = new HuffNode();
			hf[10].Linbits = linbits[10];
			hf[10].l.Add(new HuffmanCode("1", new int[]{ 0, 0}));
			hf[10].l.Add(new HuffmanCode("010", new int[]{ 0, 1}));
			hf[10].l.Add(new HuffmanCode("001010", new int[]{ 0, 2}));
			hf[10].l.Add(new HuffmanCode("00010111", new int[]{ 0, 3}));
			hf[10].l.Add(new HuffmanCode("000100011", new int[]{ 0, 4}));
			hf[10].l.Add(new HuffmanCode("000011110", new int[]{ 0, 5}));
			hf[10].l.Add(new HuffmanCode("000001100", new int[]{ 0, 6}));
			hf[10].l.Add(new HuffmanCode("0000010001", new int[]{ 0, 7}));
			hf[10].l.Add(new HuffmanCode("011", new int[]{ 1, 0}));
			hf[10].l.Add(new HuffmanCode("0011", new int[]{ 1, 1}));
			hf[10].l.Add(new HuffmanCode("001000", new int[]{ 1, 2}));
			hf[10].l.Add(new HuffmanCode("0001100", new int[]{ 1, 3}));
			hf[10].l.Add(new HuffmanCode("00010010", new int[]{ 1, 4}));
			hf[10].l.Add(new HuffmanCode("000010101", new int[]{ 1, 5}));
			hf[10].l.Add(new HuffmanCode("00001100", new int[]{ 1, 6}));
			hf[10].l.Add(new HuffmanCode("00000111", new int[]{ 1, 7}));
			hf[10].l.Add(new HuffmanCode("001011", new int[]{ 2, 0}));
			hf[10].l.Add(new HuffmanCode("001001", new int[]{ 2, 1}));
			hf[10].l.Add(new HuffmanCode("0001111", new int[]{ 2, 2}));
			hf[10].l.Add(new HuffmanCode("00010101", new int[]{ 2, 3}));
			hf[10].l.Add(new HuffmanCode("000100000", new int[]{ 2, 4}));
			hf[10].l.Add(new HuffmanCode("0000101000", new int[]{ 2, 5}));
			hf[10].l.Add(new HuffmanCode("000010011", new int[]{ 2, 6}));
			hf[10].l.Add(new HuffmanCode("000000110", new int[]{ 2, 7}));
			hf[10].l.Add(new HuffmanCode("0001110", new int[]{ 3, 0}));
			hf[10].l.Add(new HuffmanCode("0001101", new int[]{ 3, 1}));
			hf[10].l.Add(new HuffmanCode("00010110", new int[]{ 3, 2}));
			hf[10].l.Add(new HuffmanCode("000100010", new int[]{ 3, 3}));
			hf[10].l.Add(new HuffmanCode("0000101110", new int[]{ 3, 4}));
			hf[10].l.Add(new HuffmanCode("0000010111", new int[]{ 3, 5}));
			hf[10].l.Add(new HuffmanCode("000010010", new int[]{ 3, 6}));
			hf[10].l.Add(new HuffmanCode("0000000111", new int[]{ 3, 7}));
			hf[10].l.Add(new HuffmanCode("00010100", new int[]{ 4, 0}));
			hf[10].l.Add(new HuffmanCode("00010011", new int[]{ 4, 1}));
			hf[10].l.Add(new HuffmanCode("000100001", new int[]{ 4, 2}));
			hf[10].l.Add(new HuffmanCode("0000101111", new int[]{ 4, 3}));
			hf[10].l.Add(new HuffmanCode("0000011011", new int[]{ 4, 4}));
			hf[10].l.Add(new HuffmanCode("0000010110", new int[]{ 4, 5}));
			hf[10].l.Add(new HuffmanCode("0000001001", new int[]{ 4, 6}));
			hf[10].l.Add(new HuffmanCode("0000000011", new int[]{ 4, 7}));
			hf[10].l.Add(new HuffmanCode("000011111", new int[]{ 5, 0}));
			hf[10].l.Add(new HuffmanCode("000010110", new int[]{ 5, 1}));
			hf[10].l.Add(new HuffmanCode("0000101001", new int[]{ 5, 2}));
			hf[10].l.Add(new HuffmanCode("0000011010", new int[]{ 5, 3}));
			hf[10].l.Add(new HuffmanCode("00000010101", new int[]{ 5, 4}));
			hf[10].l.Add(new HuffmanCode("00000010100", new int[]{ 5, 5}));
			hf[10].l.Add(new HuffmanCode("0000000101", new int[]{ 5, 6}));
			hf[10].l.Add(new HuffmanCode("00000000011", new int[]{ 5, 7}));
			hf[10].l.Add(new HuffmanCode("00001110", new int[]{ 6, 0}));
			hf[10].l.Add(new HuffmanCode("00001101", new int[]{ 6, 1}));
			hf[10].l.Add(new HuffmanCode("000001010", new int[]{ 6, 2}));
			hf[10].l.Add(new HuffmanCode("0000001011", new int[]{ 6, 3}));
			hf[10].l.Add(new HuffmanCode("0000010000", new int[]{ 6, 4}));
			hf[10].l.Add(new HuffmanCode("0000000110", new int[]{ 6, 5}));
			hf[10].l.Add(new HuffmanCode("00000000101", new int[]{ 6, 6}));
			hf[10].l.Add(new HuffmanCode("00000000001", new int[]{ 6, 7}));
			hf[10].l.Add(new HuffmanCode("000001001", new int[]{ 7, 0}));
			hf[10].l.Add(new HuffmanCode("00001000", new int[]{ 7, 1}));
			hf[10].l.Add(new HuffmanCode("000000111", new int[]{ 7, 2}));
			hf[10].l.Add(new HuffmanCode("0000001000", new int[]{ 7, 3}));
			hf[10].l.Add(new HuffmanCode("0000000100", new int[]{ 7, 4}));
			hf[10].l.Add(new HuffmanCode("00000000100", new int[]{ 7, 5}));
			hf[10].l.Add(new HuffmanCode("00000000010", new int[]{ 7, 6}));
			hf[10].l.Add(new HuffmanCode("00000000000", new int[]{ 7, 7}));

			hf[11].l.Add(new HuffmanCode("11", new int[]{ 0, 0}));
			hf[11].l.Add(new HuffmanCode("100", new int[]{ 0, 1}));
			hf[11].l.Add(new HuffmanCode("01010", new int[]{ 0, 2}));
			hf[11].l.Add(new HuffmanCode("0011000", new int[]{ 0, 3}));
			hf[11].l.Add(new HuffmanCode("00100010", new int[]{ 0, 4}));
			hf[11].l.Add(new HuffmanCode("000100001", new int[]{ 0, 5}));
			hf[11].l.Add(new HuffmanCode("00010101", new int[]{ 0, 6}));
			hf[11].l.Add(new HuffmanCode("000001111", new int[]{ 0, 7}));
			hf[11].l.Add(new HuffmanCode("101", new int[]{ 1, 0}));
			hf[11].l.Add(new HuffmanCode("011", new int[]{ 1, 1}));
			hf[11].l.Add(new HuffmanCode("0100", new int[]{ 1, 2}));
			hf[11].l.Add(new HuffmanCode("001010", new int[]{ 1, 3}));
			hf[11].l.Add(new HuffmanCode("00100000", new int[]{ 1, 4}));
			hf[11].l.Add(new HuffmanCode("00010001", new int[]{ 1, 5}));
			hf[11].l.Add(new HuffmanCode("0001011", new int[]{ 1, 6}));
			hf[11].l.Add(new HuffmanCode("00001010", new int[]{ 1, 7}));
			hf[11].l.Add(new HuffmanCode("01011", new int[]{ 2, 0}));
			hf[11].l.Add(new HuffmanCode("00111", new int[]{ 2, 1}));
			hf[11].l.Add(new HuffmanCode("001101", new int[]{ 2, 2}));
			hf[11].l.Add(new HuffmanCode("0010010", new int[]{ 2, 3}));
			hf[11].l.Add(new HuffmanCode("00011110", new int[]{ 2, 4}));
			hf[11].l.Add(new HuffmanCode("000011111", new int[]{ 2, 5}));
			hf[11].l.Add(new HuffmanCode("00010100", new int[]{ 2, 6}));
			hf[11].l.Add(new HuffmanCode("00000101", new int[]{ 2, 7}));
			hf[11].l.Add(new HuffmanCode("0011001", new int[]{ 3, 0}));
			hf[11].l.Add(new HuffmanCode("001011", new int[]{ 3, 1}));
			hf[11].l.Add(new HuffmanCode("0010011", new int[]{ 3, 2}));
			hf[11].l.Add(new HuffmanCode("000111011", new int[]{ 3, 3}));
			hf[11].l.Add(new HuffmanCode("00011011", new int[]{ 3, 4}));
			hf[11].l.Add(new HuffmanCode("0000010010", new int[]{ 3, 5}));
			hf[11].l.Add(new HuffmanCode("00001100", new int[]{ 3, 6}));
			hf[11].l.Add(new HuffmanCode("000000101", new int[]{ 3, 7}));
			hf[11].l.Add(new HuffmanCode("00100011", new int[]{ 4, 0}));
			hf[11].l.Add(new HuffmanCode("00100001", new int[]{ 4, 1}));
			hf[11].l.Add(new HuffmanCode("00011111", new int[]{ 4, 2}));
			hf[11].l.Add(new HuffmanCode("000111010", new int[]{ 4, 3}));
			hf[11].l.Add(new HuffmanCode("000011110", new int[]{ 4, 4}));
			hf[11].l.Add(new HuffmanCode("0000010000", new int[]{ 4, 5}));
			hf[11].l.Add(new HuffmanCode("000000111", new int[]{ 4, 6}));
			hf[11].l.Add(new HuffmanCode("0000000101", new int[]{ 4, 7}));
			hf[11].l.Add(new HuffmanCode("00011100", new int[]{ 5, 0}));
			hf[11].l.Add(new HuffmanCode("00011010", new int[]{ 5, 1}));
			hf[11].l.Add(new HuffmanCode("000100000", new int[]{ 5, 2}));
			hf[11].l.Add(new HuffmanCode("0000010011", new int[]{ 5, 3}));
			hf[11].l.Add(new HuffmanCode("0000010001", new int[]{ 5, 4}));
			hf[11].l.Add(new HuffmanCode("0000000111", new int[]{ 5, 5}));
			hf[11].l.Add(new HuffmanCode("0000001000", new int[]{ 5, 6}));
			hf[11].l.Add(new HuffmanCode("0000000111", new int[]{ 5, 7}));
			hf[11].l.Add(new HuffmanCode("00001110", new int[]{ 6, 0}));
			hf[11].l.Add(new HuffmanCode("0001100", new int[]{ 6, 1}));
			hf[11].l.Add(new HuffmanCode("0001001", new int[]{ 6, 2}));
			hf[11].l.Add(new HuffmanCode("00001101", new int[]{ 6, 3}));
			hf[11].l.Add(new HuffmanCode("000001110", new int[]{ 6, 4}));
			hf[11].l.Add(new HuffmanCode("0000001001", new int[]{ 6, 5}));
			hf[11].l.Add(new HuffmanCode("0000000100", new int[]{ 6, 6}));
			hf[11].l.Add(new HuffmanCode("0000000001", new int[]{ 6, 7}));
			hf[11].l.Add(new HuffmanCode("00001011", new int[]{ 7, 0}));
			hf[11].l.Add(new HuffmanCode("0000100", new int[]{ 7, 1}));
			hf[11].l.Add(new HuffmanCode("00000110", new int[]{ 7, 2}));
			hf[11].l.Add(new HuffmanCode("000000110", new int[]{ 7, 3}));
			hf[11].l.Add(new HuffmanCode("0000000110", new int[]{ 7, 4}));
			hf[11].l.Add(new HuffmanCode("0000000011", new int[]{ 7, 5}));
			hf[11].l.Add(new HuffmanCode("0000000010", new int[]{ 7, 6}));
			hf[11].l.Add(new HuffmanCode("0000000000", new int[]{ 7, 7}));

			hf[12].l.Add(new HuffmanCode("1001", new int[]{ 0, 0}));
			hf[12].l.Add(new HuffmanCode("110", new int[]{ 0, 1}));
			hf[12].l.Add(new HuffmanCode("10000", new int[]{ 0, 2}));
			hf[12].l.Add(new HuffmanCode("0100001", new int[]{ 0, 3}));
			hf[12].l.Add(new HuffmanCode("00101001", new int[]{ 0, 4}));
			hf[12].l.Add(new HuffmanCode("000100111", new int[]{ 0, 5}));
			hf[12].l.Add(new HuffmanCode("000100110", new int[]{ 0, 6}));
			hf[12].l.Add(new HuffmanCode("000011010", new int[]{ 0, 7}));
			hf[12].l.Add(new HuffmanCode("111", new int[]{ 1, 0}));
			hf[12].l.Add(new HuffmanCode("101", new int[]{ 1, 1}));
			hf[12].l.Add(new HuffmanCode("0110", new int[]{ 1, 2}));
			hf[12].l.Add(new HuffmanCode("01001", new int[]{ 1, 3}));
			hf[12].l.Add(new HuffmanCode("0010111", new int[]{ 1, 4}));
			hf[12].l.Add(new HuffmanCode("0010000", new int[]{ 1, 5}));
			hf[12].l.Add(new HuffmanCode("00011010", new int[]{ 1, 6}));
			hf[12].l.Add(new HuffmanCode("00001011", new int[]{ 1, 7}));
			hf[12].l.Add(new HuffmanCode("10001", new int[]{ 2, 0}));
			hf[12].l.Add(new HuffmanCode("0111", new int[]{ 2, 1}));
			hf[12].l.Add(new HuffmanCode("01011", new int[]{ 2, 2}));
			hf[12].l.Add(new HuffmanCode("001110", new int[]{ 2, 3}));
			hf[12].l.Add(new HuffmanCode("0010101", new int[]{ 2, 4}));
			hf[12].l.Add(new HuffmanCode("00011110", new int[]{ 2, 5}));
			hf[12].l.Add(new HuffmanCode("0001010", new int[]{ 2, 6}));
			hf[12].l.Add(new HuffmanCode("00000111", new int[]{ 2, 7}));
			hf[12].l.Add(new HuffmanCode("010001", new int[]{ 3, 0}));
			hf[12].l.Add(new HuffmanCode("01010", new int[]{ 3, 1}));
			hf[12].l.Add(new HuffmanCode("001111", new int[]{ 3, 2}));
			hf[12].l.Add(new HuffmanCode("001100", new int[]{ 3, 3}));
			hf[12].l.Add(new HuffmanCode("0010010", new int[]{ 3, 4}));
			hf[12].l.Add(new HuffmanCode("00011100", new int[]{ 3, 5}));
			hf[12].l.Add(new HuffmanCode("00001110", new int[]{ 3, 6}));
			hf[12].l.Add(new HuffmanCode("00000101", new int[]{ 3, 7}));
			hf[12].l.Add(new HuffmanCode("0100000", new int[]{ 4, 0}));
			hf[12].l.Add(new HuffmanCode("001101", new int[]{ 4, 1}));
			hf[12].l.Add(new HuffmanCode("0010110", new int[]{ 4, 2}));
			hf[12].l.Add(new HuffmanCode("0010011", new int[]{ 4, 3}));
			hf[12].l.Add(new HuffmanCode("00010010", new int[]{ 4, 4}));
			hf[12].l.Add(new HuffmanCode("00010000", new int[]{ 4, 5}));
			hf[12].l.Add(new HuffmanCode("00001001", new int[]{ 4, 6}));
			hf[12].l.Add(new HuffmanCode("000000101", new int[]{ 4, 7}));
			hf[12].l.Add(new HuffmanCode("00101000", new int[]{ 5, 0}));
			hf[12].l.Add(new HuffmanCode("0010001", new int[]{ 5, 1}));
			hf[12].l.Add(new HuffmanCode("00011111", new int[]{ 5, 2}));
			hf[12].l.Add(new HuffmanCode("00011101", new int[]{ 5, 3}));
			hf[12].l.Add(new HuffmanCode("00010001", new int[]{ 5, 4}));
			hf[12].l.Add(new HuffmanCode("000001101", new int[]{ 5, 5}));
			hf[12].l.Add(new HuffmanCode("00000100", new int[]{ 5, 6}));
			hf[12].l.Add(new HuffmanCode("000000010", new int[]{ 5, 7}));
			hf[12].l.Add(new HuffmanCode("00011011", new int[]{ 6, 0}));
			hf[12].l.Add(new HuffmanCode("0001100", new int[]{ 6, 1}));
			hf[12].l.Add(new HuffmanCode("0001011", new int[]{ 6, 2}));
			hf[12].l.Add(new HuffmanCode("00001111", new int[]{ 6, 3}));
			hf[12].l.Add(new HuffmanCode("00001010", new int[]{ 6, 4}));
			hf[12].l.Add(new HuffmanCode("000000111", new int[]{ 6, 5}));
			hf[12].l.Add(new HuffmanCode("000000100", new int[]{ 6, 6}));
			hf[12].l.Add(new HuffmanCode("0000000001", new int[]{ 6, 7}));
			hf[12].l.Add(new HuffmanCode("000011011", new int[]{ 7, 0}));
			hf[12].l.Add(new HuffmanCode("00001100", new int[]{ 7, 1}));
			hf[12].l.Add(new HuffmanCode("00001000", new int[]{ 7, 2}));
			hf[12].l.Add(new HuffmanCode("000001100", new int[]{ 7, 3}));
			hf[12].l.Add(new HuffmanCode("000000110", new int[]{ 7, 4}));
			hf[12].l.Add(new HuffmanCode("000000011", new int[]{ 7, 5}));
			hf[12].l.Add(new HuffmanCode("000000001", new int[]{ 7, 6}));
			hf[12].l.Add(new HuffmanCode("0000000000", new int[]{ 7, 7}));

			hf[13].l.Add(new HuffmanCode("1", new int[]{ 0 , 0 }));
			hf[13].l.Add(new HuffmanCode("0101", new int[]{ 0 , 1 }));
			hf[13].l.Add(new HuffmanCode("001110", new int[]{ 0 , 2 }));
			hf[13].l.Add(new HuffmanCode("0010101", new int[]{ 0 , 3 }));
			hf[13].l.Add(new HuffmanCode("00100010", new int[]{ 0 , 4 }));
			hf[13].l.Add(new HuffmanCode("000110011", new int[]{ 0 , 5 }));
			hf[13].l.Add(new HuffmanCode("000101110", new int[]{ 0 , 6 }));
			hf[13].l.Add(new HuffmanCode("0001000111", new int[]{ 0 , 7 }));
			hf[13].l.Add(new HuffmanCode("000101010", new int[]{ 0 , 8 }));
			hf[13].l.Add(new HuffmanCode("0000110100", new int[]{ 0 , 9 }));
			hf[13].l.Add(new HuffmanCode("00001000100", new int[]{ 0 , 10}));
			hf[13].l.Add(new HuffmanCode("00000110100", new int[]{ 0 , 11}));
			hf[13].l.Add(new HuffmanCode("000001000011", new int[]{ 0 , 12}));
			hf[13].l.Add(new HuffmanCode("000000101100", new int[]{ 0 , 13}));
			hf[13].l.Add(new HuffmanCode("0000000101011", new int[]{ 0 , 14}));
			hf[13].l.Add(new HuffmanCode("0000000010011", new int[]{ 0 , 15}));
			hf[13].l.Add(new HuffmanCode("011", new int[]{ 1 , 0 }));
			hf[13].l.Add(new HuffmanCode("0100", new int[]{ 1 , 1 }));
			hf[13].l.Add(new HuffmanCode("001100", new int[]{ 1 , 2 }));
			hf[13].l.Add(new HuffmanCode("0010011", new int[]{ 1 , 3 }));
			hf[13].l.Add(new HuffmanCode("00011111", new int[]{ 1 , 4 }));
			hf[13].l.Add(new HuffmanCode("00011010", new int[]{ 1 , 5 }));
			hf[13].l.Add(new HuffmanCode("000101100", new int[]{ 1 , 6 }));
			hf[13].l.Add(new HuffmanCode("000100001", new int[]{ 1 , 7 }));
			hf[13].l.Add(new HuffmanCode("000011111", new int[]{ 1 , 8 }));
			hf[13].l.Add(new HuffmanCode("000011000", new int[]{ 1 , 9 }));
			hf[13].l.Add(new HuffmanCode("0000100000", new int[]{ 1 , 10}));
			hf[13].l.Add(new HuffmanCode("0000011000", new int[]{ 1 , 11}));
			hf[13].l.Add(new HuffmanCode("00000011111", new int[]{ 1 , 12}));
			hf[13].l.Add(new HuffmanCode("000000100011", new int[]{ 1 , 13}));
			hf[13].l.Add(new HuffmanCode("000000010110", new int[]{ 1 , 14}));
			hf[13].l.Add(new HuffmanCode("000000001110", new int[]{ 1 , 15}));
			hf[13].l.Add(new HuffmanCode("001111", new int[]{ 2 , 0 }));
			hf[13].l.Add(new HuffmanCode("001101", new int[]{ 2 , 1 }));
			hf[13].l.Add(new HuffmanCode("0010111", new int[]{ 2 , 2 }));
			hf[13].l.Add(new HuffmanCode("00100100", new int[]{ 2 , 3 }));
			hf[13].l.Add(new HuffmanCode("000111011", new int[]{ 2 , 4 }));
			hf[13].l.Add(new HuffmanCode("000110001", new int[]{ 2 , 5 }));
			hf[13].l.Add(new HuffmanCode("0001001101", new int[]{ 2 , 6 }));
			hf[13].l.Add(new HuffmanCode("0001000001", new int[]{ 2 , 7 }));
			hf[13].l.Add(new HuffmanCode("000011101", new int[]{ 2 , 8 }));
			hf[13].l.Add(new HuffmanCode("0000101000", new int[]{ 2 , 9 }));
			hf[13].l.Add(new HuffmanCode("0000011110", new int[]{ 2 , 10}));
			hf[13].l.Add(new HuffmanCode("00000101000", new int[]{ 2 , 11}));
			hf[13].l.Add(new HuffmanCode("00000011011", new int[]{ 2 , 12}));
			hf[13].l.Add(new HuffmanCode("000000100001", new int[]{ 2 , 13}));
			hf[13].l.Add(new HuffmanCode("0000000101010", new int[]{ 2 , 14}));
			hf[13].l.Add(new HuffmanCode("0000000010000", new int[]{ 2 , 15}));
			hf[13].l.Add(new HuffmanCode("0010110", new int[]{ 3 , 0 }));
			hf[13].l.Add(new HuffmanCode("0010100", new int[]{ 3 , 1 }));
			hf[13].l.Add(new HuffmanCode("00100101", new int[]{ 3 , 2 }));
			hf[13].l.Add(new HuffmanCode("000111101", new int[]{ 3 , 3 }));
			hf[13].l.Add(new HuffmanCode("000111000", new int[]{ 3 , 4 }));
			hf[13].l.Add(new HuffmanCode("0001001111", new int[]{ 3 , 5 }));
			hf[13].l.Add(new HuffmanCode("0001001001", new int[]{ 3 , 6 }));
			hf[13].l.Add(new HuffmanCode("0001000000", new int[]{ 3 , 7 }));
			hf[13].l.Add(new HuffmanCode("0000101011", new int[]{ 3 , 8 }));
			hf[13].l.Add(new HuffmanCode("00001001100", new int[]{ 3 , 9 }));
			hf[13].l.Add(new HuffmanCode("00000111000", new int[]{ 3 , 10}));
			hf[13].l.Add(new HuffmanCode("00000100101", new int[]{ 3 , 11}));
			hf[13].l.Add(new HuffmanCode("00000011010", new int[]{ 3 , 12}));
			hf[13].l.Add(new HuffmanCode("000000011111", new int[]{ 3 , 13}));
			hf[13].l.Add(new HuffmanCode("0000000011001", new int[]{ 3 , 14}));
			hf[13].l.Add(new HuffmanCode("0000000001110", new int[]{ 3 , 15}));
			hf[13].l.Add(new HuffmanCode("00100011", new int[]{ 4 , 0 }));
			hf[13].l.Add(new HuffmanCode("0010000", new int[]{ 4 , 1 }));
			hf[13].l.Add(new HuffmanCode("000111100", new int[]{ 4 , 2 }));
			hf[13].l.Add(new HuffmanCode("000111001", new int[]{ 4 , 3 }));
			hf[13].l.Add(new HuffmanCode("0001100001", new int[]{ 4 , 4 }));
			hf[13].l.Add(new HuffmanCode("0001001011", new int[]{ 4 , 5 }));
			hf[13].l.Add(new HuffmanCode("00001110010", new int[]{ 4 , 6 }));
			hf[13].l.Add(new HuffmanCode("00001011011", new int[]{ 4 , 7 }));
			hf[13].l.Add(new HuffmanCode("0000110110", new int[]{ 4 , 8 }));
			hf[13].l.Add(new HuffmanCode("00001001001", new int[]{ 4 , 9 }));
			hf[13].l.Add(new HuffmanCode("00000110111", new int[]{ 4 , 10}));
			hf[13].l.Add(new HuffmanCode("000000101001", new int[]{ 4 , 11}));
			hf[13].l.Add(new HuffmanCode("000000110000", new int[]{ 4 , 12}));
			hf[13].l.Add(new HuffmanCode("0000000110101", new int[]{ 4 , 13}));
			hf[13].l.Add(new HuffmanCode("0000000010111", new int[]{ 4 , 14}));
			hf[13].l.Add(new HuffmanCode("00000000011000", new int[]{ 4 , 15}));
			hf[13].l.Add(new HuffmanCode("000111010", new int[]{ 5 , 0 }));
			hf[13].l.Add(new HuffmanCode("00011011", new int[]{ 5 , 1 }));
			hf[13].l.Add(new HuffmanCode("000110010", new int[]{ 5 , 2 }));
			hf[13].l.Add(new HuffmanCode("0001100000", new int[]{ 5 , 3 }));
			hf[13].l.Add(new HuffmanCode("0001001100", new int[]{ 5 , 4 }));
			hf[13].l.Add(new HuffmanCode("0001000110", new int[]{ 5 , 5 }));
			hf[13].l.Add(new HuffmanCode("00001011101", new int[]{ 5 , 6 }));
			hf[13].l.Add(new HuffmanCode("00001010100", new int[]{ 5 , 7 }));
			hf[13].l.Add(new HuffmanCode("00001001101", new int[]{ 5 , 8 }));
			hf[13].l.Add(new HuffmanCode("00000111010", new int[]{ 5 , 9 }));
			hf[13].l.Add(new HuffmanCode("000001001111", new int[]{ 5 , 10}));
			hf[13].l.Add(new HuffmanCode("00000011101", new int[]{ 5 , 11}));
			hf[13].l.Add(new HuffmanCode("0000001001010", new int[]{ 5 , 12}));
			hf[13].l.Add(new HuffmanCode("0000000110001", new int[]{ 5 , 13}));
			hf[13].l.Add(new HuffmanCode("00000000101001", new int[]{ 5 , 14}));
			hf[13].l.Add(new HuffmanCode("00000000010001", new int[]{ 5 , 15}));
			hf[13].l.Add(new HuffmanCode("000101111", new int[]{ 6 , 0 }));
			hf[13].l.Add(new HuffmanCode("000101101", new int[]{ 6 , 1 }));
			hf[13].l.Add(new HuffmanCode("0001001110", new int[]{ 6 , 2 }));
			hf[13].l.Add(new HuffmanCode("0001001010", new int[]{ 6 , 3 }));
			hf[13].l.Add(new HuffmanCode("00001110011", new int[]{ 6 , 4 }));
			hf[13].l.Add(new HuffmanCode("00001011110", new int[]{ 6 , 5 }));
			hf[13].l.Add(new HuffmanCode("00001011010", new int[]{ 6 , 6 }));
			hf[13].l.Add(new HuffmanCode("00001001111", new int[]{ 6 , 7 }));
			hf[13].l.Add(new HuffmanCode("00001000101", new int[]{ 6 , 8 }));
			hf[13].l.Add(new HuffmanCode("000001010011", new int[]{ 6 , 9 }));
			hf[13].l.Add(new HuffmanCode("000001000111", new int[]{ 6 , 10}));
			hf[13].l.Add(new HuffmanCode("000000110010", new int[]{ 6 , 11}));
			hf[13].l.Add(new HuffmanCode("0000000111011", new int[]{ 6 , 12}));
			hf[13].l.Add(new HuffmanCode("0000000100110", new int[]{ 6 , 13}));
			hf[13].l.Add(new HuffmanCode("00000000100100", new int[]{ 6 , 14}));
			hf[13].l.Add(new HuffmanCode("00000000001111", new int[]{ 6 , 15}));
			hf[13].l.Add(new HuffmanCode("0001001000", new int[]{ 7 , 0 }));
			hf[13].l.Add(new HuffmanCode("000100010", new int[]{ 7 , 1 }));
			hf[13].l.Add(new HuffmanCode("0000111000", new int[]{ 7 , 2 }));
			hf[13].l.Add(new HuffmanCode("00001011111", new int[]{ 7 , 3 }));
			hf[13].l.Add(new HuffmanCode("00001011100", new int[]{ 7 , 4 }));
			hf[13].l.Add(new HuffmanCode("00001010101", new int[]{ 7 , 5 }));
			hf[13].l.Add(new HuffmanCode("000001011011", new int[]{ 7 , 6 }));
			hf[13].l.Add(new HuffmanCode("000001011010", new int[]{ 7 , 7 }));
			hf[13].l.Add(new HuffmanCode("000001010110", new int[]{ 7 , 8 }));
			hf[13].l.Add(new HuffmanCode("000001001001", new int[]{ 7 , 9 }));
			hf[13].l.Add(new HuffmanCode("0000001001101", new int[]{ 7 , 10}));
			hf[13].l.Add(new HuffmanCode("0000001000001", new int[]{ 7 , 11}));
			hf[13].l.Add(new HuffmanCode("0000000110011", new int[]{ 7 , 12}));
			hf[13].l.Add(new HuffmanCode("00000000101100", new int[]{ 7 , 13}));
			hf[13].l.Add(new HuffmanCode("0000000000101011", new int[]{ 7 , 14}));
			hf[13].l.Add(new HuffmanCode("0000000000101010", new int[]{ 7 , 15}));
			hf[13].l.Add(new HuffmanCode("000101011", new int[]{ 8 , 0 }));
			hf[13].l.Add(new HuffmanCode("00010100", new int[]{ 8 , 1 }));
			hf[13].l.Add(new HuffmanCode("000011110", new int[]{ 8 , 2 }));
			hf[13].l.Add(new HuffmanCode("0000101100", new int[]{ 8 , 3 }));
			hf[13].l.Add(new HuffmanCode("0000110111", new int[]{ 8 , 4 }));
			hf[13].l.Add(new HuffmanCode("00001001110", new int[]{ 8 , 5 }));
			hf[13].l.Add(new HuffmanCode("00001001000", new int[]{ 8 , 6 }));
			hf[13].l.Add(new HuffmanCode("000001010111", new int[]{ 8 , 7 }));
			hf[13].l.Add(new HuffmanCode("000001001110", new int[]{ 8 , 8 }));
			hf[13].l.Add(new HuffmanCode("000000111101", new int[]{ 8 , 9 }));
			hf[13].l.Add(new HuffmanCode("000000101110", new int[]{ 8 , 10}));
			hf[13].l.Add(new HuffmanCode("0000000110110", new int[]{ 8 , 11}));
			hf[13].l.Add(new HuffmanCode("0000000100101", new int[]{ 8 , 12}));
			hf[13].l.Add(new HuffmanCode("00000000011110", new int[]{ 8 , 13}));
			hf[13].l.Add(new HuffmanCode("000000000010100", new int[]{ 8 , 14}));
			hf[13].l.Add(new HuffmanCode("000000000010000", new int[]{ 8 , 15}));
			hf[13].l.Add(new HuffmanCode("0000110101", new int[]{ 9 , 0 }));
			hf[13].l.Add(new HuffmanCode("000011001", new int[]{ 9 , 1 }));
			hf[13].l.Add(new HuffmanCode("0000101001", new int[]{ 9 , 2 }));
			hf[13].l.Add(new HuffmanCode("0000100101", new int[]{ 9 , 3 }));
			hf[13].l.Add(new HuffmanCode("00000101100", new int[]{ 9 , 4 }));
			hf[13].l.Add(new HuffmanCode("00000111011", new int[]{ 9 , 5 }));
			hf[13].l.Add(new HuffmanCode("00000110110", new int[]{ 9 , 6 }));
			hf[13].l.Add(new HuffmanCode("0000001010001", new int[]{ 9 , 7 }));
			hf[13].l.Add(new HuffmanCode("000001000010", new int[]{ 9 , 8 }));
			hf[13].l.Add(new HuffmanCode("0000001001100", new int[]{ 9 , 9 }));
			hf[13].l.Add(new HuffmanCode("0000000111001", new int[]{ 9 , 10}));
			hf[13].l.Add(new HuffmanCode("00000000110110", new int[]{ 9 , 11}));
			hf[13].l.Add(new HuffmanCode("00000000100101", new int[]{ 9 , 12}));
			hf[13].l.Add(new HuffmanCode("00000000010010", new int[]{ 9 , 13}));
			hf[13].l.Add(new HuffmanCode("0000000000100111", new int[]{ 9 , 14}));
			hf[13].l.Add(new HuffmanCode("000000000001011", new int[]{ 9 , 15}));
			hf[13].l.Add(new HuffmanCode("0000100011", new int[]{ 10, 0 }));
			hf[13].l.Add(new HuffmanCode("0000100001", new int[]{ 10, 1 }));
			hf[13].l.Add(new HuffmanCode("0000011111", new int[]{ 10, 2 }));
			hf[13].l.Add(new HuffmanCode("00000111001", new int[]{ 10, 3 }));
			hf[13].l.Add(new HuffmanCode("00000101010", new int[]{ 10, 4 }));
			hf[13].l.Add(new HuffmanCode("000001010010", new int[]{ 10, 5 }));
			hf[13].l.Add(new HuffmanCode("000001001000", new int[]{ 10, 6 }));
			hf[13].l.Add(new HuffmanCode("0000001010000", new int[]{ 10, 7 }));
			hf[13].l.Add(new HuffmanCode("000000101111", new int[]{ 10, 8 }));
			hf[13].l.Add(new HuffmanCode("0000000111010", new int[]{ 10, 9 }));
			hf[13].l.Add(new HuffmanCode("00000000110111", new int[]{ 10, 10}));
			hf[13].l.Add(new HuffmanCode("0000000010101", new int[]{ 10, 11}));
			hf[13].l.Add(new HuffmanCode("00000000010110", new int[]{ 10, 12}));
			hf[13].l.Add(new HuffmanCode("000000000011010", new int[]{ 10, 13}));
			hf[13].l.Add(new HuffmanCode("0000000000100110", new int[]{ 10, 14}));
			hf[13].l.Add(new HuffmanCode("00000000000010110", new int[]{ 10, 15}));
			hf[13].l.Add(new HuffmanCode("00000110101", new int[]{ 11, 0 }));
			hf[13].l.Add(new HuffmanCode("0000011001", new int[]{ 11, 1 }));
			hf[13].l.Add(new HuffmanCode("0000010111", new int[]{ 11, 2 }));
			hf[13].l.Add(new HuffmanCode("00000100110", new int[]{ 11, 3 }));
			hf[13].l.Add(new HuffmanCode("000001000110", new int[]{ 11, 4 }));
			hf[13].l.Add(new HuffmanCode("000000111100", new int[]{ 11, 5 }));
			hf[13].l.Add(new HuffmanCode("000000110011", new int[]{ 11, 6 }));
			hf[13].l.Add(new HuffmanCode("000000100100", new int[]{ 11, 7 }));
			hf[13].l.Add(new HuffmanCode("0000000110111", new int[]{ 11, 8 }));
			hf[13].l.Add(new HuffmanCode("0000000011010", new int[]{ 11, 9 }));
			hf[13].l.Add(new HuffmanCode("0000000100010", new int[]{ 11, 10}));
			hf[13].l.Add(new HuffmanCode("00000000010111", new int[]{ 11, 11}));
			hf[13].l.Add(new HuffmanCode("000000000011011", new int[]{ 11, 12}));
			hf[13].l.Add(new HuffmanCode("000000000001110", new int[]{ 11, 13}));
			hf[13].l.Add(new HuffmanCode("000000000001001", new int[]{ 11, 14}));
			hf[13].l.Add(new HuffmanCode("0000000000000111", new int[]{ 11, 15}));
			hf[13].l.Add(new HuffmanCode("00000100010", new int[]{ 12, 0 }));
			hf[13].l.Add(new HuffmanCode("00000100000", new int[]{ 12, 1 }));
			hf[13].l.Add(new HuffmanCode("00000011100", new int[]{ 12, 2 }));
			hf[13].l.Add(new HuffmanCode("000000100111", new int[]{ 12, 3 }));
			hf[13].l.Add(new HuffmanCode("000000110001", new int[]{ 12, 4 }));
			hf[13].l.Add(new HuffmanCode("0000001001011", new int[]{ 12, 5 }));
			hf[13].l.Add(new HuffmanCode("000000011110", new int[]{ 12, 6 }));
			hf[13].l.Add(new HuffmanCode("0000000110100", new int[]{ 12, 7 }));
			hf[13].l.Add(new HuffmanCode("00000000110000", new int[]{ 12, 8 }));
			hf[13].l.Add(new HuffmanCode("00000000101000", new int[]{ 12, 9 }));
			hf[13].l.Add(new HuffmanCode("000000000110100", new int[]{ 12, 10}));
			hf[13].l.Add(new HuffmanCode("000000000011100", new int[]{ 12, 11}));
			hf[13].l.Add(new HuffmanCode("000000000010010", new int[]{ 12, 12}));
			hf[13].l.Add(new HuffmanCode("0000000000010001", new int[]{ 12, 13}));
			hf[13].l.Add(new HuffmanCode("0000000000001001", new int[]{ 12, 14}));
			hf[13].l.Add(new HuffmanCode("0000000000000101", new int[]{ 12, 15}));
			hf[13].l.Add(new HuffmanCode("000000101101", new int[]{ 13, 0 }));
			hf[13].l.Add(new HuffmanCode("00000010101", new int[]{ 13, 1 }));
			hf[13].l.Add(new HuffmanCode("000000100010", new int[]{ 13, 2 }));
			hf[13].l.Add(new HuffmanCode("0000001000000", new int[]{ 13, 3 }));
			hf[13].l.Add(new HuffmanCode("0000000111000", new int[]{ 13, 4 }));
			hf[13].l.Add(new HuffmanCode("0000000110010", new int[]{ 13, 5 }));
			hf[13].l.Add(new HuffmanCode("00000000110001", new int[]{ 13, 6 }));
			hf[13].l.Add(new HuffmanCode("00000000101101", new int[]{ 13, 7 }));
			hf[13].l.Add(new HuffmanCode("00000000011111", new int[]{ 13, 8 }));
			hf[13].l.Add(new HuffmanCode("00000000010011", new int[]{ 13, 9 }));
			hf[13].l.Add(new HuffmanCode("00000000001100", new int[]{ 13, 10}));
			hf[13].l.Add(new HuffmanCode("000000000001111", new int[]{ 13, 11}));
			hf[13].l.Add(new HuffmanCode("0000000000001010", new int[]{ 13, 12}));
			hf[13].l.Add(new HuffmanCode("000000000000111", new int[]{ 13, 13}));
			hf[13].l.Add(new HuffmanCode("0000000000000110", new int[]{ 13, 14}));
			hf[13].l.Add(new HuffmanCode("0000000000000011", new int[]{ 13, 15}));
			hf[13].l.Add(new HuffmanCode("0000000110000", new int[]{ 14, 0 }));
			hf[13].l.Add(new HuffmanCode("000000010111", new int[]{ 14, 1 }));
			hf[13].l.Add(new HuffmanCode("000000010100", new int[]{ 14, 2 }));
			hf[13].l.Add(new HuffmanCode("0000000100111", new int[]{ 14, 3 }));
			hf[13].l.Add(new HuffmanCode("0000000100100", new int[]{ 14, 4 }));
			hf[13].l.Add(new HuffmanCode("0000000100011", new int[]{ 14, 5 }));
			hf[13].l.Add(new HuffmanCode("000000000110101", new int[]{ 14, 6 }));
			hf[13].l.Add(new HuffmanCode("00000000010101", new int[]{ 14, 7 }));
			hf[13].l.Add(new HuffmanCode("00000000010000", new int[]{ 14, 8 }));
			hf[13].l.Add(new HuffmanCode("00000000000010111", new int[]{ 14, 9 }));
			hf[13].l.Add(new HuffmanCode("000000000001101", new int[]{ 14, 10}));
			hf[13].l.Add(new HuffmanCode("000000000001010", new int[]{ 14, 11}));
			hf[13].l.Add(new HuffmanCode("000000000000110", new int[]{ 14, 12}));
			hf[13].l.Add(new HuffmanCode("00000000000000001", new int[]{ 14, 13}));
			hf[13].l.Add(new HuffmanCode("0000000000000100", new int[]{ 14, 14}));
			hf[13].l.Add(new HuffmanCode("0000000000000010", new int[]{ 14, 15}));
			hf[13].l.Add(new HuffmanCode("000000010000", new int[]{ 15, 0 }));
			hf[13].l.Add(new HuffmanCode("000000001111", new int[]{ 15, 1 }));
			hf[13].l.Add(new HuffmanCode("0000000010001", new int[]{ 15, 2 }));
			hf[13].l.Add(new HuffmanCode("00000000011011", new int[]{ 15, 3 }));
			hf[13].l.Add(new HuffmanCode("00000000011001", new int[]{ 15, 4 }));
			hf[13].l.Add(new HuffmanCode("00000000010100", new int[]{ 15, 5 }));
			hf[13].l.Add(new HuffmanCode("000000000011101", new int[]{ 15, 6 }));
			hf[13].l.Add(new HuffmanCode("00000000001011", new int[]{ 15, 7 }));
			hf[13].l.Add(new HuffmanCode("000000000010001", new int[]{ 15, 8 }));
			hf[13].l.Add(new HuffmanCode("000000000001100", new int[]{ 15, 9 }));
			hf[13].l.Add(new HuffmanCode("0000000000010000", new int[]{ 15, 10}));
			hf[13].l.Add(new HuffmanCode("0000000000001000", new int[]{ 15, 11}));
			hf[13].l.Add(new HuffmanCode("0000000000000000001", new int[]{ 15, 12}));
			hf[13].l.Add(new HuffmanCode("000000000000000001", new int[]{ 15, 13}));
			hf[13].l.Add(new HuffmanCode("0000000000000000000", new int[]{ 15, 14}));
			hf[13].l.Add(new HuffmanCode("0000000000000001", new int[]{ 15, 15}));

			hf[15].l.Add(new HuffmanCode("111", new int[]{ 0 , 0 }));
			hf[15].l.Add(new HuffmanCode("1100", new int[]{ 0 , 1 }));
			hf[15].l.Add(new HuffmanCode("10010", new int[]{ 0 , 2 }));
			hf[15].l.Add(new HuffmanCode("0110101", new int[]{ 0 , 3 }));
			hf[15].l.Add(new HuffmanCode("0101111", new int[]{ 0 , 4 }));
			hf[15].l.Add(new HuffmanCode("01001100", new int[]{ 0 , 5 }));
			hf[15].l.Add(new HuffmanCode("001111100", new int[]{ 0 , 6 }));
			hf[15].l.Add(new HuffmanCode("001101100", new int[]{ 0 , 7 }));
			hf[15].l.Add(new HuffmanCode("001011001", new int[]{ 0 , 8 }));
			hf[15].l.Add(new HuffmanCode("0001111011", new int[]{ 0 , 9 }));
			hf[15].l.Add(new HuffmanCode("0001101100", new int[]{ 0 , 10}));
			hf[15].l.Add(new HuffmanCode("00001110111", new int[]{ 0 , 11}));
			hf[15].l.Add(new HuffmanCode("00001101011", new int[]{ 0 , 12}));
			hf[15].l.Add(new HuffmanCode("00001010001", new int[]{ 0 , 13}));
			hf[15].l.Add(new HuffmanCode("000001111010", new int[]{ 0 , 14}));
			hf[15].l.Add(new HuffmanCode("0000000111111", new int[]{ 0 , 15}));
			hf[15].l.Add(new HuffmanCode("1101", new int[]{ 1 , 0 }));
			hf[15].l.Add(new HuffmanCode("101", new int[]{ 1 , 1 }));
			hf[15].l.Add(new HuffmanCode("10000", new int[]{ 1 , 2 }));
			hf[15].l.Add(new HuffmanCode("011011", new int[]{ 1 , 3 }));
			hf[15].l.Add(new HuffmanCode("0101110", new int[]{ 1 , 4 }));
			hf[15].l.Add(new HuffmanCode("0100100", new int[]{ 1 , 5 }));
			hf[15].l.Add(new HuffmanCode("00111101", new int[]{ 1 , 6 }));
			hf[15].l.Add(new HuffmanCode("00110011", new int[]{ 1 , 7 }));
			hf[15].l.Add(new HuffmanCode("00101010", new int[]{ 1 , 8 }));
			hf[15].l.Add(new HuffmanCode("001000110", new int[]{ 1 , 9 }));
			hf[15].l.Add(new HuffmanCode("000110100", new int[]{ 1 , 10}));
			hf[15].l.Add(new HuffmanCode("0001010011", new int[]{ 1 , 11}));
			hf[15].l.Add(new HuffmanCode("0001000001", new int[]{ 1 , 12}));
			hf[15].l.Add(new HuffmanCode("0000101001", new int[]{ 1 , 13}));
			hf[15].l.Add(new HuffmanCode("00000111011", new int[]{ 1 , 14}));
			hf[15].l.Add(new HuffmanCode("00000100100", new int[]{ 1 , 15}));
			hf[15].l.Add(new HuffmanCode("10011", new int[]{ 2 , 0 }));
			hf[15].l.Add(new HuffmanCode("10001", new int[]{ 2 , 1 }));
			hf[15].l.Add(new HuffmanCode("01111", new int[]{ 2 , 2 }));
			hf[15].l.Add(new HuffmanCode("011000", new int[]{ 2 , 3 }));
			hf[15].l.Add(new HuffmanCode("0101001", new int[]{ 2 , 4 }));
			hf[15].l.Add(new HuffmanCode("0100010", new int[]{ 2 , 5 }));
			hf[15].l.Add(new HuffmanCode("00111011", new int[]{ 2 , 6 }));
			hf[15].l.Add(new HuffmanCode("00110000", new int[]{ 2 , 7 }));
			hf[15].l.Add(new HuffmanCode("00101000", new int[]{ 2 , 8 }));
			hf[15].l.Add(new HuffmanCode("001000000", new int[]{ 2 , 9 }));
			hf[15].l.Add(new HuffmanCode("000110010", new int[]{ 2 , 10}));
			hf[15].l.Add(new HuffmanCode("0001001110", new int[]{ 2 , 11}));
			hf[15].l.Add(new HuffmanCode("0000111110", new int[]{ 2 , 12}));
			hf[15].l.Add(new HuffmanCode("00001010000", new int[]{ 2 , 13}));
			hf[15].l.Add(new HuffmanCode("00000111000", new int[]{ 2 , 14}));
			hf[15].l.Add(new HuffmanCode("00000100001", new int[]{ 2 , 15}));
			hf[15].l.Add(new HuffmanCode("011101", new int[]{ 3 , 0 }));
			hf[15].l.Add(new HuffmanCode("011100", new int[]{ 3 , 1 }));
			hf[15].l.Add(new HuffmanCode("011001", new int[]{ 3 , 2 }));
			hf[15].l.Add(new HuffmanCode("0101011", new int[]{ 3 , 3 }));
			hf[15].l.Add(new HuffmanCode("0100111", new int[]{ 3 , 4 }));
			hf[15].l.Add(new HuffmanCode("00111111", new int[]{ 3 , 5 }));
			hf[15].l.Add(new HuffmanCode("00110111", new int[]{ 3 , 6 }));
			hf[15].l.Add(new HuffmanCode("001011101", new int[]{ 3 , 7 }));
			hf[15].l.Add(new HuffmanCode("001001100", new int[]{ 3 , 8 }));
			hf[15].l.Add(new HuffmanCode("000111011", new int[]{ 3 , 9 }));
			hf[15].l.Add(new HuffmanCode("0001011101", new int[]{ 3 , 10}));
			hf[15].l.Add(new HuffmanCode("0001001000", new int[]{ 3 , 11}));
			hf[15].l.Add(new HuffmanCode("0000110110", new int[]{ 3 , 12}));
			hf[15].l.Add(new HuffmanCode("00001001011", new int[]{ 3 , 13}));
			hf[15].l.Add(new HuffmanCode("00000110010", new int[]{ 3 , 14}));
			hf[15].l.Add(new HuffmanCode("00000011101", new int[]{ 3 , 15}));
			hf[15].l.Add(new HuffmanCode("0110100", new int[]{ 4 , 0 }));
			hf[15].l.Add(new HuffmanCode("010110", new int[]{ 4 , 1 }));
			hf[15].l.Add(new HuffmanCode("0101010", new int[]{ 4 , 2 }));
			hf[15].l.Add(new HuffmanCode("0101000", new int[]{ 4 , 3 }));
			hf[15].l.Add(new HuffmanCode("01000011", new int[]{ 4 , 4 }));
			hf[15].l.Add(new HuffmanCode("00111001", new int[]{ 4 , 5 }));
			hf[15].l.Add(new HuffmanCode("001011111", new int[]{ 4 , 6 }));
			hf[15].l.Add(new HuffmanCode("001001111", new int[]{ 4 , 7 }));
			hf[15].l.Add(new HuffmanCode("001001000", new int[]{ 4 , 8 }));
			hf[15].l.Add(new HuffmanCode("000111001", new int[]{ 4 , 9 }));
			hf[15].l.Add(new HuffmanCode("0001011001", new int[]{ 4 , 10}));
			hf[15].l.Add(new HuffmanCode("0001000101", new int[]{ 4 , 11}));
			hf[15].l.Add(new HuffmanCode("0000110001", new int[]{ 4 , 12}));
			hf[15].l.Add(new HuffmanCode("00001000010", new int[]{ 4 , 13}));
			hf[15].l.Add(new HuffmanCode("00000101110", new int[]{ 4 , 14}));
			hf[15].l.Add(new HuffmanCode("00000011011", new int[]{ 4 , 15}));
			hf[15].l.Add(new HuffmanCode("01001101", new int[]{ 5 , 0 }));
			hf[15].l.Add(new HuffmanCode("0100101", new int[]{ 5 , 1 }));
			hf[15].l.Add(new HuffmanCode("0100011", new int[]{ 5 , 2 }));
			hf[15].l.Add(new HuffmanCode("01000010", new int[]{ 5 , 3 }));
			hf[15].l.Add(new HuffmanCode("00111010", new int[]{ 5 , 4 }));
			hf[15].l.Add(new HuffmanCode("00110100", new int[]{ 5 , 5 }));
			hf[15].l.Add(new HuffmanCode("001011011", new int[]{ 5 , 6 }));
			hf[15].l.Add(new HuffmanCode("001001010", new int[]{ 5 , 7 }));
			hf[15].l.Add(new HuffmanCode("000111110", new int[]{ 5 , 8 }));
			hf[15].l.Add(new HuffmanCode("000110000", new int[]{ 5 , 9 }));
			hf[15].l.Add(new HuffmanCode("0001001111", new int[]{ 5 , 10}));
			hf[15].l.Add(new HuffmanCode("0000111111", new int[]{ 5 , 11}));
			hf[15].l.Add(new HuffmanCode("00001011010", new int[]{ 5 , 12}));
			hf[15].l.Add(new HuffmanCode("00000111110", new int[]{ 5 , 13}));
			hf[15].l.Add(new HuffmanCode("00000101000", new int[]{ 5 , 14}));
			hf[15].l.Add(new HuffmanCode("000000100110", new int[]{ 5 , 15}));
			hf[15].l.Add(new HuffmanCode("001111101", new int[]{ 6 , 0 }));
			hf[15].l.Add(new HuffmanCode("0100000", new int[]{ 6 , 1 }));
			hf[15].l.Add(new HuffmanCode("00111100", new int[]{ 6 , 2 }));
			hf[15].l.Add(new HuffmanCode("00111000", new int[]{ 6 , 3 }));
			hf[15].l.Add(new HuffmanCode("00110010", new int[]{ 6 , 4 }));
			hf[15].l.Add(new HuffmanCode("001011100", new int[]{ 6 , 5 }));
			hf[15].l.Add(new HuffmanCode("001001110", new int[]{ 6 , 6 }));
			hf[15].l.Add(new HuffmanCode("001000001", new int[]{ 6 , 7 }));
			hf[15].l.Add(new HuffmanCode("000110111", new int[]{ 6 , 8 }));
			hf[15].l.Add(new HuffmanCode("0001010111", new int[]{ 6 , 9 }));
			hf[15].l.Add(new HuffmanCode("0001000111", new int[]{ 6 , 10}));
			hf[15].l.Add(new HuffmanCode("0000110011", new int[]{ 6 , 11}));
			hf[15].l.Add(new HuffmanCode("00001001001", new int[]{ 6 , 12}));
			hf[15].l.Add(new HuffmanCode("00000110011", new int[]{ 6 , 13}));
			hf[15].l.Add(new HuffmanCode("000001000110", new int[]{ 6 , 14}));
			hf[15].l.Add(new HuffmanCode("000000011110", new int[]{ 6 , 15}));
			hf[15].l.Add(new HuffmanCode("001101101", new int[]{ 7 , 0 }));
			hf[15].l.Add(new HuffmanCode("00110101", new int[]{ 7 , 1 }));
			hf[15].l.Add(new HuffmanCode("00110001", new int[]{ 7 , 2 }));
			hf[15].l.Add(new HuffmanCode("001011110", new int[]{ 7 , 3 }));
			hf[15].l.Add(new HuffmanCode("001011000", new int[]{ 7 , 4 }));
			hf[15].l.Add(new HuffmanCode("001001011", new int[]{ 7 , 5 }));
			hf[15].l.Add(new HuffmanCode("001000010", new int[]{ 7 , 6 }));
			hf[15].l.Add(new HuffmanCode("0001111010", new int[]{ 7 , 7 }));
			hf[15].l.Add(new HuffmanCode("0001011011", new int[]{ 7 , 8 }));
			hf[15].l.Add(new HuffmanCode("0001001001", new int[]{ 7 , 9 }));
			hf[15].l.Add(new HuffmanCode("0000111000", new int[]{ 7 , 10}));
			hf[15].l.Add(new HuffmanCode("0000101010", new int[]{ 7 , 11}));
			hf[15].l.Add(new HuffmanCode("00001000000", new int[]{ 7 , 12}));
			hf[15].l.Add(new HuffmanCode("00000101100", new int[]{ 7 , 13}));
			hf[15].l.Add(new HuffmanCode("00000010101", new int[]{ 7 , 14}));
			hf[15].l.Add(new HuffmanCode("000000011001", new int[]{ 7 , 15}));
			hf[15].l.Add(new HuffmanCode("001011010", new int[]{ 8 , 0 }));
			hf[15].l.Add(new HuffmanCode("00101011", new int[]{ 8 , 1 }));
			hf[15].l.Add(new HuffmanCode("00101001", new int[]{ 8 , 2 }));
			hf[15].l.Add(new HuffmanCode("001001101", new int[]{ 8 , 3 }));
			hf[15].l.Add(new HuffmanCode("001001001", new int[]{ 8 , 4 }));
			hf[15].l.Add(new HuffmanCode("000111111", new int[]{ 8 , 5 }));
			hf[15].l.Add(new HuffmanCode("000111000", new int[]{ 8 , 6 }));
			hf[15].l.Add(new HuffmanCode("0001011100", new int[]{ 8 , 7 }));
			hf[15].l.Add(new HuffmanCode("0001001101", new int[]{ 8 , 8 }));
			hf[15].l.Add(new HuffmanCode("0001000010", new int[]{ 8 , 9 }));
			hf[15].l.Add(new HuffmanCode("0000101111", new int[]{ 8 , 10}));
			hf[15].l.Add(new HuffmanCode("00001000011", new int[]{ 8 , 11}));
			hf[15].l.Add(new HuffmanCode("00000110000", new int[]{ 8 , 12}));
			hf[15].l.Add(new HuffmanCode("000000110101", new int[]{ 8 , 13}));
			hf[15].l.Add(new HuffmanCode("000000100100", new int[]{ 8 , 14}));
			hf[15].l.Add(new HuffmanCode("000000010100", new int[]{ 8 , 15}));
			hf[15].l.Add(new HuffmanCode("001000111", new int[]{ 9 , 0 }));
			hf[15].l.Add(new HuffmanCode("00100010", new int[]{ 9 , 1 }));
			hf[15].l.Add(new HuffmanCode("001000011", new int[]{ 9 , 2 }));
			hf[15].l.Add(new HuffmanCode("000111100", new int[]{ 9 , 3 }));
			hf[15].l.Add(new HuffmanCode("000111010", new int[]{ 9 , 4 }));
			hf[15].l.Add(new HuffmanCode("000110001", new int[]{ 9 , 5 }));
			hf[15].l.Add(new HuffmanCode("0001011000", new int[]{ 9 , 6 }));
			hf[15].l.Add(new HuffmanCode("0001001100", new int[]{ 9 , 7 }));
			hf[15].l.Add(new HuffmanCode("0001000011", new int[]{ 9 , 8 }));
			hf[15].l.Add(new HuffmanCode("00001101010", new int[]{ 9 , 9 }));
			hf[15].l.Add(new HuffmanCode("00001000111", new int[]{ 9 , 10}));
			hf[15].l.Add(new HuffmanCode("00000110110", new int[]{ 9 , 11}));
			hf[15].l.Add(new HuffmanCode("00000100110", new int[]{ 9 , 12}));
			hf[15].l.Add(new HuffmanCode("000000100111", new int[]{ 9 , 13}));
			hf[15].l.Add(new HuffmanCode("000000010111", new int[]{ 9 , 14}));
			hf[15].l.Add(new HuffmanCode("000000001111", new int[]{ 9 , 15}));
			hf[15].l.Add(new HuffmanCode("0001101101", new int[]{ 10, 0 }));
			hf[15].l.Add(new HuffmanCode("000110101", new int[]{ 10, 1 }));
			hf[15].l.Add(new HuffmanCode("000110011", new int[]{ 10, 2 }));
			hf[15].l.Add(new HuffmanCode("000101111", new int[]{ 10, 3 }));
			hf[15].l.Add(new HuffmanCode("0001011010", new int[]{ 10, 4 }));
			hf[15].l.Add(new HuffmanCode("0001010010", new int[]{ 10, 5 }));
			hf[15].l.Add(new HuffmanCode("0000111010", new int[]{ 10, 6 }));
			hf[15].l.Add(new HuffmanCode("0000111001", new int[]{ 10, 7 }));
			hf[15].l.Add(new HuffmanCode("0000110000", new int[]{ 10, 8 }));
			hf[15].l.Add(new HuffmanCode("00001001000", new int[]{ 10, 9 }));
			hf[15].l.Add(new HuffmanCode("00000111001", new int[]{ 10, 10}));
			hf[15].l.Add(new HuffmanCode("00000101001", new int[]{ 10, 11}));
			hf[15].l.Add(new HuffmanCode("00000010111", new int[]{ 10, 12}));
			hf[15].l.Add(new HuffmanCode("000000011011", new int[]{ 10, 13}));
			hf[15].l.Add(new HuffmanCode("0000000111110", new int[]{ 10, 14}));
			hf[15].l.Add(new HuffmanCode("000000001001", new int[]{ 10, 15}));
			hf[15].l.Add(new HuffmanCode("0001010110", new int[]{ 11, 0 }));
			hf[15].l.Add(new HuffmanCode("000101010", new int[]{ 11, 1 }));
			hf[15].l.Add(new HuffmanCode("000101000", new int[]{ 11, 2 }));
			hf[15].l.Add(new HuffmanCode("000100101", new int[]{ 11, 3 }));
			hf[15].l.Add(new HuffmanCode("0001000110", new int[]{ 11, 4 }));
			hf[15].l.Add(new HuffmanCode("0001000000", new int[]{ 11, 5 }));
			hf[15].l.Add(new HuffmanCode("0000110100", new int[]{ 11, 6 }));
			hf[15].l.Add(new HuffmanCode("0000101011", new int[]{ 11, 7 }));
			hf[15].l.Add(new HuffmanCode("00001000110", new int[]{ 11, 8 }));
			hf[15].l.Add(new HuffmanCode("00000110111", new int[]{ 11, 9 }));
			hf[15].l.Add(new HuffmanCode("00000101010", new int[]{ 11, 10}));
			hf[15].l.Add(new HuffmanCode("00000011001", new int[]{ 11, 11}));
			hf[15].l.Add(new HuffmanCode("000000011101", new int[]{ 11, 12}));
			hf[15].l.Add(new HuffmanCode("000000010010", new int[]{ 11, 13}));
			hf[15].l.Add(new HuffmanCode("000000001011", new int[]{ 11, 14}));
			hf[15].l.Add(new HuffmanCode("0000000001011", new int[]{ 11, 15}));
			hf[15].l.Add(new HuffmanCode("00001110110", new int[]{ 12, 0 }));
			hf[15].l.Add(new HuffmanCode("0001000100", new int[]{ 12, 1 }));
			hf[15].l.Add(new HuffmanCode("000011110", new int[]{ 12, 2 }));
			hf[15].l.Add(new HuffmanCode("0000110111", new int[]{ 12, 3 }));
			hf[15].l.Add(new HuffmanCode("0000110010", new int[]{ 12, 4 }));
			hf[15].l.Add(new HuffmanCode("0000101110", new int[]{ 12, 5 }));
			hf[15].l.Add(new HuffmanCode("00001001010", new int[]{ 12, 6 }));
			hf[15].l.Add(new HuffmanCode("00001000001", new int[]{ 12, 7 }));
			hf[15].l.Add(new HuffmanCode("00000110001", new int[]{ 12, 8 }));
			hf[15].l.Add(new HuffmanCode("00000100111", new int[]{ 12, 9 }));
			hf[15].l.Add(new HuffmanCode("00000011000", new int[]{ 12, 10}));
			hf[15].l.Add(new HuffmanCode("00000010000", new int[]{ 12, 11}));
			hf[15].l.Add(new HuffmanCode("000000010110", new int[]{ 12, 12}));
			hf[15].l.Add(new HuffmanCode("000000001101", new int[]{ 12, 13}));
			hf[15].l.Add(new HuffmanCode("0000000001110", new int[]{ 12, 14}));
			hf[15].l.Add(new HuffmanCode("0000000000111", new int[]{ 12, 15}));
			hf[15].l.Add(new HuffmanCode("00001011011", new int[]{ 13, 0 }));
			hf[15].l.Add(new HuffmanCode("0000101100", new int[]{ 13, 1 }));
			hf[15].l.Add(new HuffmanCode("0000100111", new int[]{ 13, 2 }));
			hf[15].l.Add(new HuffmanCode("0000100110", new int[]{ 13, 3 }));
			hf[15].l.Add(new HuffmanCode("0000100010", new int[]{ 13, 4 }));
			hf[15].l.Add(new HuffmanCode("00000111111", new int[]{ 13, 5 }));
			hf[15].l.Add(new HuffmanCode("00000110100", new int[]{ 13, 6 }));
			hf[15].l.Add(new HuffmanCode("00000101101", new int[]{ 13, 7 }));
			hf[15].l.Add(new HuffmanCode("00000011111", new int[]{ 13, 8 }));
			hf[15].l.Add(new HuffmanCode("000000110100", new int[]{ 13, 9 }));
			hf[15].l.Add(new HuffmanCode("000000011100", new int[]{ 13, 10}));
			hf[15].l.Add(new HuffmanCode("000000010011", new int[]{ 13, 11}));
			hf[15].l.Add(new HuffmanCode("000000001110", new int[]{ 13, 12}));
			hf[15].l.Add(new HuffmanCode("000000001000", new int[]{ 13, 13}));
			hf[15].l.Add(new HuffmanCode("0000000001001", new int[]{ 13, 14}));
			hf[15].l.Add(new HuffmanCode("0000000000011", new int[]{ 13, 15}));
			hf[15].l.Add(new HuffmanCode("000001111011", new int[]{ 14, 0 }));
			hf[15].l.Add(new HuffmanCode("00000111100", new int[]{ 14, 1 }));
			hf[15].l.Add(new HuffmanCode("00000111010", new int[]{ 14, 2 }));
			hf[15].l.Add(new HuffmanCode("00000110101", new int[]{ 14, 3 }));
			hf[15].l.Add(new HuffmanCode("00000101111", new int[]{ 14, 4 }));
			hf[15].l.Add(new HuffmanCode("00000101011", new int[]{ 14, 5 }));
			hf[15].l.Add(new HuffmanCode("00000100000", new int[]{ 14, 6 }));
			hf[15].l.Add(new HuffmanCode("00000010110", new int[]{ 14, 7 }));
			hf[15].l.Add(new HuffmanCode("000000100101", new int[]{ 14, 8 }));
			hf[15].l.Add(new HuffmanCode("000000011000", new int[]{ 14, 9 }));
			hf[15].l.Add(new HuffmanCode("000000010001", new int[]{ 14, 10}));
			hf[15].l.Add(new HuffmanCode("000000001100", new int[]{ 14, 11}));
			hf[15].l.Add(new HuffmanCode("0000000001111", new int[]{ 14, 12}));
			hf[15].l.Add(new HuffmanCode("0000000001010", new int[]{ 14, 13}));
			hf[15].l.Add(new HuffmanCode("000000000010", new int[]{ 14, 14}));
			hf[15].l.Add(new HuffmanCode("0000000000001", new int[]{ 14, 15}));
			hf[15].l.Add(new HuffmanCode("000001000111", new int[]{ 15, 0 }));
			hf[15].l.Add(new HuffmanCode("00000100101", new int[]{ 15, 1 }));
			hf[15].l.Add(new HuffmanCode("00000100010", new int[]{ 15, 2 }));
			hf[15].l.Add(new HuffmanCode("00000011110", new int[]{ 15, 3 }));
			hf[15].l.Add(new HuffmanCode("00000011100", new int[]{ 15, 4 }));
			hf[15].l.Add(new HuffmanCode("00000010100", new int[]{ 15, 5 }));
			hf[15].l.Add(new HuffmanCode("00000010001", new int[]{ 15, 6 }));
			hf[15].l.Add(new HuffmanCode("000000011010", new int[]{ 15, 7 }));
			hf[15].l.Add(new HuffmanCode("000000010101", new int[]{ 15, 8 }));
			hf[15].l.Add(new HuffmanCode("000000010000", new int[]{ 15, 9 }));
			hf[15].l.Add(new HuffmanCode("000000001010", new int[]{ 15, 10}));
			hf[15].l.Add(new HuffmanCode("000000000110", new int[]{ 15, 11}));
			hf[15].l.Add(new HuffmanCode("0000000001000", new int[]{ 15, 12}));
			hf[15].l.Add(new HuffmanCode("0000000000110", new int[]{ 15, 13}));
			hf[15].l.Add(new HuffmanCode("0000000000010", new int[]{ 15, 14}));
			hf[15].l.Add(new HuffmanCode("0000000000000", new int[]{ 15, 15}));

			hf[16].l.Add(new HuffmanCode("1", new int[]{ 0 , 0 }));
			hf[16].l.Add(new HuffmanCode("0101", new int[]{ 0 , 1 }));
			hf[16].l.Add(new HuffmanCode("001110", new int[]{ 0 , 2 }));
			hf[16].l.Add(new HuffmanCode("00101100", new int[]{ 0 , 3 }));
			hf[16].l.Add(new HuffmanCode("001001010", new int[]{ 0 , 4 }));
			hf[16].l.Add(new HuffmanCode("000111111", new int[]{ 0 , 5 }));
			hf[16].l.Add(new HuffmanCode("0001101110", new int[]{ 0 , 6 }));
			hf[16].l.Add(new HuffmanCode("0001011101", new int[]{ 0 , 7 }));
			hf[16].l.Add(new HuffmanCode("00010101100", new int[]{ 0 , 8 }));
			hf[16].l.Add(new HuffmanCode("00010010101", new int[]{ 0 , 9 }));
			hf[16].l.Add(new HuffmanCode("00010001010", new int[]{ 0 , 10}));
			hf[16].l.Add(new HuffmanCode("000011110010", new int[]{ 0 , 11}));
			hf[16].l.Add(new HuffmanCode("000011100001", new int[]{ 0 , 12}));
			hf[16].l.Add(new HuffmanCode("000011000011", new int[]{ 0 , 13}));
			hf[16].l.Add(new HuffmanCode("0000101111000", new int[]{ 0 , 14}));
			hf[16].l.Add(new HuffmanCode("000010001", new int[]{ 0 , 15}));
			hf[16].l.Add(new HuffmanCode("011", new int[]{ 1 , 0 }));
			hf[16].l.Add(new HuffmanCode("0100", new int[]{ 1 , 1 }));
			hf[16].l.Add(new HuffmanCode("001100", new int[]{ 1 , 2 }));
			hf[16].l.Add(new HuffmanCode("0010100", new int[]{ 1 , 3 }));
			hf[16].l.Add(new HuffmanCode("00100011", new int[]{ 1 , 4 }));
			hf[16].l.Add(new HuffmanCode("000111110", new int[]{ 1 , 5 }));
			hf[16].l.Add(new HuffmanCode("000110101", new int[]{ 1 , 6 }));
			hf[16].l.Add(new HuffmanCode("000101111", new int[]{ 1 , 7 }));
			hf[16].l.Add(new HuffmanCode("0001010011", new int[]{ 1 , 8 }));
			hf[16].l.Add(new HuffmanCode("0001001011", new int[]{ 1 , 9 }));
			hf[16].l.Add(new HuffmanCode("0001000100", new int[]{ 1 , 10}));
			hf[16].l.Add(new HuffmanCode("00001110111", new int[]{ 1 , 11}));
			hf[16].l.Add(new HuffmanCode("000011001001", new int[]{ 1 , 12}));
			hf[16].l.Add(new HuffmanCode("00001101011", new int[]{ 1 , 13}));
			hf[16].l.Add(new HuffmanCode("000011001111", new int[]{ 1 , 14}));
			hf[16].l.Add(new HuffmanCode("00001001", new int[]{ 1 , 15}));
			hf[16].l.Add(new HuffmanCode("001111", new int[]{ 2 , 0 }));
			hf[16].l.Add(new HuffmanCode("001101", new int[]{ 2 , 1 }));
			hf[16].l.Add(new HuffmanCode("0010111", new int[]{ 2 , 2 }));
			hf[16].l.Add(new HuffmanCode("00100110", new int[]{ 2 , 3 }));
			hf[16].l.Add(new HuffmanCode("001000011", new int[]{ 2 , 4 }));
			hf[16].l.Add(new HuffmanCode("000111010", new int[]{ 2 , 5 }));
			hf[16].l.Add(new HuffmanCode("0001100111", new int[]{ 2 , 6 }));
			hf[16].l.Add(new HuffmanCode("0001011010", new int[]{ 2 , 7 }));
			hf[16].l.Add(new HuffmanCode("00010100001", new int[]{ 2 , 8 }));
			hf[16].l.Add(new HuffmanCode("0001001000", new int[]{ 2 , 9 }));
			hf[16].l.Add(new HuffmanCode("00001111111", new int[]{ 2 , 10}));
			hf[16].l.Add(new HuffmanCode("00001110101", new int[]{ 2 , 11}));
			hf[16].l.Add(new HuffmanCode("00001101110", new int[]{ 2 , 12}));
			hf[16].l.Add(new HuffmanCode("000011010001", new int[]{ 2 , 13}));
			hf[16].l.Add(new HuffmanCode("000011001110", new int[]{ 2 , 14}));
			hf[16].l.Add(new HuffmanCode("000010000", new int[]{ 2 , 15}));
			hf[16].l.Add(new HuffmanCode("00101101", new int[]{ 3 , 0 }));
			hf[16].l.Add(new HuffmanCode("0010101", new int[]{ 3 , 1 }));
			hf[16].l.Add(new HuffmanCode("00100111", new int[]{ 3 , 2 }));
			hf[16].l.Add(new HuffmanCode("001000101", new int[]{ 3 , 3 }));
			hf[16].l.Add(new HuffmanCode("001000000", new int[]{ 3 , 4 }));
			hf[16].l.Add(new HuffmanCode("0001110010", new int[]{ 3 , 5 }));
			hf[16].l.Add(new HuffmanCode("0001100011", new int[]{ 3 , 6 }));
			hf[16].l.Add(new HuffmanCode("0001010111", new int[]{ 3 , 7 }));
			hf[16].l.Add(new HuffmanCode("00010011110", new int[]{ 3 , 8 }));
			hf[16].l.Add(new HuffmanCode("00010001100", new int[]{ 3 , 9 }));
			hf[16].l.Add(new HuffmanCode("000011111100", new int[]{ 3 , 10}));
			hf[16].l.Add(new HuffmanCode("000011010100", new int[]{ 3 , 11}));
			hf[16].l.Add(new HuffmanCode("000011000111", new int[]{ 3 , 12}));
			hf[16].l.Add(new HuffmanCode("0000110000011", new int[]{ 3 , 13}));
			hf[16].l.Add(new HuffmanCode("0000101101101", new int[]{ 3 , 14}));
			hf[16].l.Add(new HuffmanCode("0000011010", new int[]{ 3 , 15}));
			hf[16].l.Add(new HuffmanCode("001001011", new int[]{ 4 , 0 }));
			hf[16].l.Add(new HuffmanCode("00100100", new int[]{ 4 , 1 }));
			hf[16].l.Add(new HuffmanCode("001000100", new int[]{ 4 , 2 }));
			hf[16].l.Add(new HuffmanCode("001000001", new int[]{ 4 , 3 }));
			hf[16].l.Add(new HuffmanCode("0001110011", new int[]{ 4 , 4 }));
			hf[16].l.Add(new HuffmanCode("0001100101", new int[]{ 4 , 5 }));
			hf[16].l.Add(new HuffmanCode("00010110011", new int[]{ 4 , 6 }));
			hf[16].l.Add(new HuffmanCode("00010100100", new int[]{ 4 , 7 }));
			hf[16].l.Add(new HuffmanCode("00010011011", new int[]{ 4 , 8 }));
			hf[16].l.Add(new HuffmanCode("000100001000", new int[]{ 4 , 9 }));
			hf[16].l.Add(new HuffmanCode("000011110110", new int[]{ 4 , 10}));
			hf[16].l.Add(new HuffmanCode("000011100010", new int[]{ 4 , 11}));
			hf[16].l.Add(new HuffmanCode("0000110001011", new int[]{ 4 , 12}));
			hf[16].l.Add(new HuffmanCode("0000101111110", new int[]{ 4 , 13}));
			hf[16].l.Add(new HuffmanCode("0000101101010", new int[]{ 4 , 14}));
			hf[16].l.Add(new HuffmanCode("000001001", new int[]{ 4 , 15}));
			hf[16].l.Add(new HuffmanCode("001000010", new int[]{ 5 , 0 }));
			hf[16].l.Add(new HuffmanCode("00011110", new int[]{ 5 , 1 }));
			hf[16].l.Add(new HuffmanCode("000111011", new int[]{ 5 , 2 }));
			hf[16].l.Add(new HuffmanCode("000111000", new int[]{ 5 , 3 }));
			hf[16].l.Add(new HuffmanCode("0001100110", new int[]{ 5 , 4 }));
			hf[16].l.Add(new HuffmanCode("00010111001", new int[]{ 5 , 5 }));
			hf[16].l.Add(new HuffmanCode("00010101101", new int[]{ 5 , 6 }));
			hf[16].l.Add(new HuffmanCode("000100001001", new int[]{ 5 , 7 }));
			hf[16].l.Add(new HuffmanCode("00010001110", new int[]{ 5 , 8 }));
			hf[16].l.Add(new HuffmanCode("000011111101", new int[]{ 5 , 9 }));
			hf[16].l.Add(new HuffmanCode("000011101000", new int[]{ 5 , 10}));
			hf[16].l.Add(new HuffmanCode("0000110010000", new int[]{ 5 , 11}));
			hf[16].l.Add(new HuffmanCode("0000110000100", new int[]{ 5 , 12}));
			hf[16].l.Add(new HuffmanCode("0000101111010", new int[]{ 5 , 13}));
			hf[16].l.Add(new HuffmanCode("00000110111101", new int[]{ 5 , 14}));
			hf[16].l.Add(new HuffmanCode("0000010000", new int[]{ 5 , 15}));
			hf[16].l.Add(new HuffmanCode("0001101111", new int[]{ 6 , 0 }));
			hf[16].l.Add(new HuffmanCode("000110110", new int[]{ 6 , 1 }));
			hf[16].l.Add(new HuffmanCode("000110100", new int[]{ 6 , 2 }));
			hf[16].l.Add(new HuffmanCode("0001100100", new int[]{ 6 , 3 }));
			hf[16].l.Add(new HuffmanCode("00010111000", new int[]{ 6 , 4 }));
			hf[16].l.Add(new HuffmanCode("00010110010", new int[]{ 6 , 5 }));
			hf[16].l.Add(new HuffmanCode("00010100000", new int[]{ 6 , 6 }));
			hf[16].l.Add(new HuffmanCode("00010000101", new int[]{ 6 , 7 }));
			hf[16].l.Add(new HuffmanCode("000100000001", new int[]{ 6 , 8 }));
			hf[16].l.Add(new HuffmanCode("000011110100", new int[]{ 6 , 9 }));
			hf[16].l.Add(new HuffmanCode("000011100100", new int[]{ 6 , 10}));
			hf[16].l.Add(new HuffmanCode("000011011001", new int[]{ 6 , 11}));
			hf[16].l.Add(new HuffmanCode("0000110000001", new int[]{ 6 , 12}));
			hf[16].l.Add(new HuffmanCode("0000101101110", new int[]{ 6 , 13}));
			hf[16].l.Add(new HuffmanCode("00001011001011", new int[]{ 6 , 14}));
			hf[16].l.Add(new HuffmanCode("0000001010", new int[]{ 6 , 15}));
			hf[16].l.Add(new HuffmanCode("0001100010", new int[]{ 7 , 0 }));
			hf[16].l.Add(new HuffmanCode("000110000", new int[]{ 7 , 1 }));
			hf[16].l.Add(new HuffmanCode("0001011011", new int[]{ 7 , 2 }));
			hf[16].l.Add(new HuffmanCode("0001011000", new int[]{ 7 , 3 }));
			hf[16].l.Add(new HuffmanCode("00010100101", new int[]{ 7 , 4 }));
			hf[16].l.Add(new HuffmanCode("00010011101", new int[]{ 7 , 5 }));
			hf[16].l.Add(new HuffmanCode("00010010100", new int[]{ 7 , 6 }));
			hf[16].l.Add(new HuffmanCode("000100000101", new int[]{ 7 , 7 }));
			hf[16].l.Add(new HuffmanCode("000011111000", new int[]{ 7 , 8 }));
			hf[16].l.Add(new HuffmanCode("0000110010111", new int[]{ 7 , 9 }));
			hf[16].l.Add(new HuffmanCode("0000110001101", new int[]{ 7 , 10}));
			hf[16].l.Add(new HuffmanCode("0000101110100", new int[]{ 7 , 11}));
			hf[16].l.Add(new HuffmanCode("0000101111100", new int[]{ 7 , 12}));
			hf[16].l.Add(new HuffmanCode("000001101111001", new int[]{ 7 , 13}));
			hf[16].l.Add(new HuffmanCode("000001101110100", new int[]{ 7 , 14}));
			hf[16].l.Add(new HuffmanCode("0000001000", new int[]{ 7 , 15}));
			hf[16].l.Add(new HuffmanCode("0001010101", new int[]{ 8 , 0 }));
			hf[16].l.Add(new HuffmanCode("0001010100", new int[]{ 8 , 1 }));
			hf[16].l.Add(new HuffmanCode("0001010001", new int[]{ 8 , 2 }));
			hf[16].l.Add(new HuffmanCode("00010011111", new int[]{ 8 , 3 }));
			hf[16].l.Add(new HuffmanCode("00010011100", new int[]{ 8 , 4 }));
			hf[16].l.Add(new HuffmanCode("00010001111", new int[]{ 8 , 5 }));
			hf[16].l.Add(new HuffmanCode("000100000100", new int[]{ 8 , 6 }));
			hf[16].l.Add(new HuffmanCode("000011111001", new int[]{ 8 , 7 }));
			hf[16].l.Add(new HuffmanCode("0000110101011", new int[]{ 8 , 8 }));
			hf[16].l.Add(new HuffmanCode("0000110010001", new int[]{ 8 , 9 }));
			hf[16].l.Add(new HuffmanCode("0000110001000", new int[]{ 8 , 10}));
			hf[16].l.Add(new HuffmanCode("0000101111111", new int[]{ 8 , 11}));
			hf[16].l.Add(new HuffmanCode("00001011010111", new int[]{ 8 , 12}));
			hf[16].l.Add(new HuffmanCode("00001011001001", new int[]{ 8 , 13}));
			hf[16].l.Add(new HuffmanCode("00001011000100", new int[]{ 8 , 14}));
			hf[16].l.Add(new HuffmanCode("0000000111", new int[]{ 8 , 15}));
			hf[16].l.Add(new HuffmanCode("00010011010", new int[]{ 9 , 0 }));
			hf[16].l.Add(new HuffmanCode("0001001100", new int[]{ 9 , 1 }));
			hf[16].l.Add(new HuffmanCode("0001001001", new int[]{ 9 , 2 }));
			hf[16].l.Add(new HuffmanCode("00010001101", new int[]{ 9 , 3 }));
			hf[16].l.Add(new HuffmanCode("00010000011", new int[]{ 9 , 4 }));
			hf[16].l.Add(new HuffmanCode("000100000000", new int[]{ 9 , 5 }));
			hf[16].l.Add(new HuffmanCode("000011110101", new int[]{ 9 , 6 }));
			hf[16].l.Add(new HuffmanCode("0000110101010", new int[]{ 9 , 7 }));
			hf[16].l.Add(new HuffmanCode("0000110010110", new int[]{ 9 , 8 }));
			hf[16].l.Add(new HuffmanCode("0000110001010", new int[]{ 9 , 9 }));
			hf[16].l.Add(new HuffmanCode("0000110000000", new int[]{ 9 , 10}));
			hf[16].l.Add(new HuffmanCode("00001011011111", new int[]{ 9 , 11}));
			hf[16].l.Add(new HuffmanCode("0000101100111", new int[]{ 9 , 12}));
			hf[16].l.Add(new HuffmanCode("00001011000110", new int[]{ 9 , 13}));
			hf[16].l.Add(new HuffmanCode("0000101100000", new int[]{ 9 , 14}));
			hf[16].l.Add(new HuffmanCode("00000001011", new int[]{ 9 , 15}));
			hf[16].l.Add(new HuffmanCode("00010001011", new int[]{ 10, 0 }));
			hf[16].l.Add(new HuffmanCode("00010000001", new int[]{ 10, 1 }));
			hf[16].l.Add(new HuffmanCode("0001000011", new int[]{ 10, 2 }));
			hf[16].l.Add(new HuffmanCode("00001111101", new int[]{ 10, 3 }));
			hf[16].l.Add(new HuffmanCode("000011110111", new int[]{ 10, 4 }));
			hf[16].l.Add(new HuffmanCode("000011101001", new int[]{ 10, 5 }));
			hf[16].l.Add(new HuffmanCode("000011100101", new int[]{ 10, 6 }));
			hf[16].l.Add(new HuffmanCode("000011011011", new int[]{ 10, 7 }));
			hf[16].l.Add(new HuffmanCode("0000110001001", new int[]{ 10, 8 }));
			hf[16].l.Add(new HuffmanCode("00001011100111", new int[]{ 10, 9 }));
			hf[16].l.Add(new HuffmanCode("00001011100001", new int[]{ 10, 10}));
			hf[16].l.Add(new HuffmanCode("00001011010000", new int[]{ 10, 11}));
			hf[16].l.Add(new HuffmanCode("000001101110101", new int[]{ 10, 12}));
			hf[16].l.Add(new HuffmanCode("000001101110010", new int[]{ 10, 13}));
			hf[16].l.Add(new HuffmanCode("00000110110111", new int[]{ 10, 14}));
			hf[16].l.Add(new HuffmanCode("0000000100", new int[]{ 10, 15}));
			hf[16].l.Add(new HuffmanCode("000011110011", new int[]{ 11, 0 }));
			hf[16].l.Add(new HuffmanCode("00001111000", new int[]{ 11, 1 }));
			hf[16].l.Add(new HuffmanCode("00001110110", new int[]{ 11, 2 }));
			hf[16].l.Add(new HuffmanCode("00001110011", new int[]{ 11, 3 }));
			hf[16].l.Add(new HuffmanCode("000011100011", new int[]{ 11, 4 }));
			hf[16].l.Add(new HuffmanCode("000011011111", new int[]{ 11, 5 }));
			hf[16].l.Add(new HuffmanCode("0000110001100", new int[]{ 11, 6 }));
			hf[16].l.Add(new HuffmanCode("00001011101010", new int[]{ 11, 7 }));
			hf[16].l.Add(new HuffmanCode("00001011100110", new int[]{ 11, 8 }));
			hf[16].l.Add(new HuffmanCode("00001011100000", new int[]{ 11, 9 }));
			hf[16].l.Add(new HuffmanCode("00001011010001", new int[]{ 11, 10}));
			hf[16].l.Add(new HuffmanCode("00001011001000", new int[]{ 11, 11}));
			hf[16].l.Add(new HuffmanCode("00001011000010", new int[]{ 11, 12}));
			hf[16].l.Add(new HuffmanCode("0000011011111", new int[]{ 11, 13}));
			hf[16].l.Add(new HuffmanCode("00000110110100", new int[]{ 11, 14}));
			hf[16].l.Add(new HuffmanCode("00000000110", new int[]{ 11, 15}));
			hf[16].l.Add(new HuffmanCode("000011001010", new int[]{ 12, 0 }));
			hf[16].l.Add(new HuffmanCode("000011100000", new int[]{ 12, 1 }));
			hf[16].l.Add(new HuffmanCode("000011011110", new int[]{ 12, 2 }));
			hf[16].l.Add(new HuffmanCode("000011011010", new int[]{ 12, 3 }));
			hf[16].l.Add(new HuffmanCode("000011011000", new int[]{ 12, 4 }));
			hf[16].l.Add(new HuffmanCode("0000110000101", new int[]{ 12, 5 }));
			hf[16].l.Add(new HuffmanCode("0000110000010", new int[]{ 12, 6 }));
			hf[16].l.Add(new HuffmanCode("0000101111101", new int[]{ 12, 7 }));
			hf[16].l.Add(new HuffmanCode("0000101101100", new int[]{ 12, 8 }));
			hf[16].l.Add(new HuffmanCode("000001101111000", new int[]{ 12, 9 }));
			hf[16].l.Add(new HuffmanCode("00000110111011", new int[]{ 12, 10}));
			hf[16].l.Add(new HuffmanCode("00001011000011", new int[]{ 12, 11}));
			hf[16].l.Add(new HuffmanCode("00000110111000", new int[]{ 12, 12}));
			hf[16].l.Add(new HuffmanCode("00000110110101", new int[]{ 12, 13}));
			hf[16].l.Add(new HuffmanCode("0000011011000000", new int[]{ 12, 14}));
			hf[16].l.Add(new HuffmanCode("00000000100", new int[]{ 12, 15}));
			hf[16].l.Add(new HuffmanCode("00001011101011", new int[]{ 13, 0 }));
			hf[16].l.Add(new HuffmanCode("000011010011", new int[]{ 13, 1 }));
			hf[16].l.Add(new HuffmanCode("000011010010", new int[]{ 13, 2 }));
			hf[16].l.Add(new HuffmanCode("000011010000", new int[]{ 13, 3 }));
			hf[16].l.Add(new HuffmanCode("0000101110010", new int[]{ 13, 4 }));
			hf[16].l.Add(new HuffmanCode("0000101111011", new int[]{ 13, 5 }));
			hf[16].l.Add(new HuffmanCode("00001011011110", new int[]{ 13, 6 }));
			hf[16].l.Add(new HuffmanCode("00001011010011", new int[]{ 13, 7 }));
			hf[16].l.Add(new HuffmanCode("00001011001010", new int[]{ 13, 8 }));
			hf[16].l.Add(new HuffmanCode("0000011011000111", new int[]{ 13, 9 }));
			hf[16].l.Add(new HuffmanCode("000001101110011", new int[]{ 13, 10}));
			hf[16].l.Add(new HuffmanCode("000001101101101", new int[]{ 13, 11}));
			hf[16].l.Add(new HuffmanCode("000001101101100", new int[]{ 13, 12}));
			hf[16].l.Add(new HuffmanCode("00000110110000011", new int[]{ 13, 13}));
			hf[16].l.Add(new HuffmanCode("000001101100001", new int[]{ 13, 14}));
			hf[16].l.Add(new HuffmanCode("00000000010", new int[]{ 13, 15}));
			hf[16].l.Add(new HuffmanCode("0000101111001", new int[]{ 14, 0 }));
			hf[16].l.Add(new HuffmanCode("0000101110001", new int[]{ 14, 1 }));
			hf[16].l.Add(new HuffmanCode("00001100110", new int[]{ 14, 2 }));
			hf[16].l.Add(new HuffmanCode("000010111011", new int[]{ 14, 3 }));
			hf[16].l.Add(new HuffmanCode("00001011010110", new int[]{ 14, 4 }));
			hf[16].l.Add(new HuffmanCode("00001011010010", new int[]{ 14, 5 }));
			hf[16].l.Add(new HuffmanCode("0000101100110", new int[]{ 14, 6 }));
			hf[16].l.Add(new HuffmanCode("00001011000111", new int[]{ 14, 7 }));
			hf[16].l.Add(new HuffmanCode("00001011000101", new int[]{ 14, 8 }));
			hf[16].l.Add(new HuffmanCode("000001101100010", new int[]{ 14, 9 }));
			hf[16].l.Add(new HuffmanCode("0000011011000110", new int[]{ 14, 10}));
			hf[16].l.Add(new HuffmanCode("000001101100111", new int[]{ 14, 11}));
			hf[16].l.Add(new HuffmanCode("00000110110000010", new int[]{ 14, 12}));
			hf[16].l.Add(new HuffmanCode("000001101100110", new int[]{ 14, 13}));
			hf[16].l.Add(new HuffmanCode("00000110110010", new int[]{ 14, 14}));
			hf[16].l.Add(new HuffmanCode("00000000000", new int[]{ 14, 15}));
			hf[16].l.Add(new HuffmanCode("000001100", new int[]{ 15, 0 }));
			hf[16].l.Add(new HuffmanCode("00001010", new int[]{ 15, 1 }));
			hf[16].l.Add(new HuffmanCode("00000111", new int[]{ 15, 2 }));
			hf[16].l.Add(new HuffmanCode("000001011", new int[]{ 15, 3 }));
			hf[16].l.Add(new HuffmanCode("000001010", new int[]{ 15, 4 }));
			hf[16].l.Add(new HuffmanCode("0000010001", new int[]{ 15, 5 }));
			hf[16].l.Add(new HuffmanCode("0000001011", new int[]{ 15, 6 }));
			hf[16].l.Add(new HuffmanCode("0000001001", new int[]{ 15, 7 }));
			hf[16].l.Add(new HuffmanCode("00000001101", new int[]{ 15, 8 }));
			hf[16].l.Add(new HuffmanCode("00000001100", new int[]{ 15, 9 }));
			hf[16].l.Add(new HuffmanCode("00000001010", new int[]{ 15, 10}));
			hf[16].l.Add(new HuffmanCode("00000000111", new int[]{ 15, 11}));
			hf[16].l.Add(new HuffmanCode("00000000101", new int[]{ 15, 12}));
			hf[16].l.Add(new HuffmanCode("00000000011", new int[]{ 15, 13}));
			hf[16].l.Add(new HuffmanCode("00000000001", new int[]{ 15, 14}));
			hf[16].l.Add(new HuffmanCode("00000011", new int[]{ 15, 15}));

			HuffmanTree[17] = HuffmanTree[16];
			HuffmanTree[18] = HuffmanTree[16];
			HuffmanTree[19] = HuffmanTree[16];
			HuffmanTree[20] = HuffmanTree[16];
			HuffmanTree[21] = HuffmanTree[16];
			HuffmanTree[22] = HuffmanTree[16];
			HuffmanTree[23] = HuffmanTree[16];


			hf[24].l.Add(new HuffmanCode("1111", new int[]{ 0 , 0 }));
			hf[24].l.Add(new HuffmanCode("1101", new int[]{ 0 , 1 }));
			hf[24].l.Add(new HuffmanCode("101110", new int[]{ 0 , 2 }));
			hf[24].l.Add(new HuffmanCode("1010000", new int[]{ 0 , 3 }));
			hf[24].l.Add(new HuffmanCode("10010010", new int[]{ 0 , 4 }));
			hf[24].l.Add(new HuffmanCode("100000110", new int[]{ 0 , 5 }));
			hf[24].l.Add(new HuffmanCode("011111000", new int[]{ 0 , 6 }));
			hf[24].l.Add(new HuffmanCode("0110110010", new int[]{ 0 , 7 }));
			hf[24].l.Add(new HuffmanCode("0110101010", new int[]{ 0 , 8 }));
			hf[24].l.Add(new HuffmanCode("01010011101", new int[]{ 0 , 9 }));
			hf[24].l.Add(new HuffmanCode("01010001101", new int[]{ 0 , 10}));
			hf[24].l.Add(new HuffmanCode("01010001001", new int[]{ 0 , 11}));
			hf[24].l.Add(new HuffmanCode("01001101101", new int[]{ 0 , 12}));
			hf[24].l.Add(new HuffmanCode("01000000101", new int[]{ 0 , 13}));
			hf[24].l.Add(new HuffmanCode("010000001000", new int[]{ 0 , 14}));
			hf[24].l.Add(new HuffmanCode("001011000", new int[]{ 0 , 15}));
			hf[24].l.Add(new HuffmanCode("1110", new int[]{ 1 , 0 }));
			hf[24].l.Add(new HuffmanCode("1100", new int[]{ 1 , 1 }));
			hf[24].l.Add(new HuffmanCode("10101", new int[]{ 1 , 2 }));
			hf[24].l.Add(new HuffmanCode("100110", new int[]{ 1 , 3 }));
			hf[24].l.Add(new HuffmanCode("1000111", new int[]{ 1 , 4 }));
			hf[24].l.Add(new HuffmanCode("10000010", new int[]{ 1 , 5 }));
			hf[24].l.Add(new HuffmanCode("01111010", new int[]{ 1 , 6 }));
			hf[24].l.Add(new HuffmanCode("011011000", new int[]{ 1 , 7 }));
			hf[24].l.Add(new HuffmanCode("011010001", new int[]{ 1 , 8 }));
			hf[24].l.Add(new HuffmanCode("011000110", new int[]{ 1 , 9 }));
			hf[24].l.Add(new HuffmanCode("0101000111", new int[]{ 1 , 10}));
			hf[24].l.Add(new HuffmanCode("0101011001", new int[]{ 1 , 11}));
			hf[24].l.Add(new HuffmanCode("0100111111", new int[]{ 1 , 12}));
			hf[24].l.Add(new HuffmanCode("0100101001", new int[]{ 1 , 13}));
			hf[24].l.Add(new HuffmanCode("0100010111", new int[]{ 1 , 14}));
			hf[24].l.Add(new HuffmanCode("00101010", new int[]{ 1 , 15}));
			hf[24].l.Add(new HuffmanCode("101111", new int[]{ 2 , 0 }));
			hf[24].l.Add(new HuffmanCode("10110", new int[]{ 2 , 1 }));
			hf[24].l.Add(new HuffmanCode("101001", new int[]{ 2 , 2 }));
			hf[24].l.Add(new HuffmanCode("1001010", new int[]{ 2 , 3 }));
			hf[24].l.Add(new HuffmanCode("1000100", new int[]{ 2 , 4 }));
			hf[24].l.Add(new HuffmanCode("10000000", new int[]{ 2 , 5 }));
			hf[24].l.Add(new HuffmanCode("01111000", new int[]{ 2 , 6 }));
			hf[24].l.Add(new HuffmanCode("011011101", new int[]{ 2 , 7 }));
			hf[24].l.Add(new HuffmanCode("011001111", new int[]{ 2 , 8 }));
			hf[24].l.Add(new HuffmanCode("011000010", new int[]{ 2 , 9 }));
			hf[24].l.Add(new HuffmanCode("010110110", new int[]{ 2 , 10}));
			hf[24].l.Add(new HuffmanCode("0101010100", new int[]{ 2 , 11}));
			hf[24].l.Add(new HuffmanCode("0100111011", new int[]{ 2 , 12}));
			hf[24].l.Add(new HuffmanCode("0100100111", new int[]{ 2 , 13}));
			hf[24].l.Add(new HuffmanCode("01000011101", new int[]{ 2 , 14}));
			hf[24].l.Add(new HuffmanCode("0010010", new int[]{ 2 , 15}));
			hf[24].l.Add(new HuffmanCode("1010001", new int[]{ 3 , 0 }));
			hf[24].l.Add(new HuffmanCode("100111", new int[]{ 3 , 1 }));
			hf[24].l.Add(new HuffmanCode("1001011", new int[]{ 3 , 2 }));
			hf[24].l.Add(new HuffmanCode("1000110", new int[]{ 3 , 3 }));
			hf[24].l.Add(new HuffmanCode("10000110", new int[]{ 3 , 4 }));
			hf[24].l.Add(new HuffmanCode("01111101", new int[]{ 3 , 5 }));
			hf[24].l.Add(new HuffmanCode("01110100", new int[]{ 3 , 6 }));
			hf[24].l.Add(new HuffmanCode("011011100", new int[]{ 3 , 7 }));
			hf[24].l.Add(new HuffmanCode("011001100", new int[]{ 3 , 8 }));
			hf[24].l.Add(new HuffmanCode("010111110", new int[]{ 3 , 9 }));
			hf[24].l.Add(new HuffmanCode("010110010", new int[]{ 3 , 10}));
			hf[24].l.Add(new HuffmanCode("0101000101", new int[]{ 3 , 11}));
			hf[24].l.Add(new HuffmanCode("0100110111", new int[]{ 3 , 12}));
			hf[24].l.Add(new HuffmanCode("0100100101", new int[]{ 3 , 13}));
			hf[24].l.Add(new HuffmanCode("0100001111", new int[]{ 3 , 14}));
			hf[24].l.Add(new HuffmanCode("0010000", new int[]{ 3 , 15}));
			hf[24].l.Add(new HuffmanCode("10010011", new int[]{ 4 , 0 }));
			hf[24].l.Add(new HuffmanCode("1001000", new int[]{ 4 , 1 }));
			hf[24].l.Add(new HuffmanCode("1000101", new int[]{ 4 , 2 }));
			hf[24].l.Add(new HuffmanCode("10000111", new int[]{ 4 , 3 }));
			hf[24].l.Add(new HuffmanCode("01111111", new int[]{ 4 , 4 }));
			hf[24].l.Add(new HuffmanCode("01110110", new int[]{ 4 , 5 }));
			hf[24].l.Add(new HuffmanCode("01110000", new int[]{ 4 , 6 }));
			hf[24].l.Add(new HuffmanCode("011010010", new int[]{ 4 , 7 }));
			hf[24].l.Add(new HuffmanCode("011001000", new int[]{ 4 , 8 }));
			hf[24].l.Add(new HuffmanCode("010111100", new int[]{ 4 , 9 }));
			hf[24].l.Add(new HuffmanCode("0101100000", new int[]{ 4 , 10}));
			hf[24].l.Add(new HuffmanCode("0101000011", new int[]{ 4 , 11}));
			hf[24].l.Add(new HuffmanCode("0100110010", new int[]{ 4 , 12}));
			hf[24].l.Add(new HuffmanCode("0100011101", new int[]{ 4 , 13}));
			hf[24].l.Add(new HuffmanCode("01000011100", new int[]{ 4 , 14}));
			hf[24].l.Add(new HuffmanCode("0001110", new int[]{ 4 , 15}));
			hf[24].l.Add(new HuffmanCode("100000111", new int[]{ 5 , 0 }));
			hf[24].l.Add(new HuffmanCode("1000010", new int[]{ 5 , 1 }));
			hf[24].l.Add(new HuffmanCode("10000001", new int[]{ 5 , 2 }));
			hf[24].l.Add(new HuffmanCode("01111110", new int[]{ 5 , 3 }));
			hf[24].l.Add(new HuffmanCode("01110111", new int[]{ 5 , 4 }));
			hf[24].l.Add(new HuffmanCode("01110010", new int[]{ 5 , 5 }));
			hf[24].l.Add(new HuffmanCode("011010110", new int[]{ 5 , 6 }));
			hf[24].l.Add(new HuffmanCode("011001010", new int[]{ 5 , 7 }));
			hf[24].l.Add(new HuffmanCode("011000000", new int[]{ 5 , 8 }));
			hf[24].l.Add(new HuffmanCode("010110100", new int[]{ 5 , 9 }));
			hf[24].l.Add(new HuffmanCode("0101010101", new int[]{ 5 , 10}));
			hf[24].l.Add(new HuffmanCode("0100111101", new int[]{ 5 , 11}));
			hf[24].l.Add(new HuffmanCode("0100101101", new int[]{ 5 , 12}));
			hf[24].l.Add(new HuffmanCode("0100011001", new int[]{ 5 , 13}));
			hf[24].l.Add(new HuffmanCode("0100000110", new int[]{ 5 , 14}));
			hf[24].l.Add(new HuffmanCode("0001100", new int[]{ 5 , 15}));
			hf[24].l.Add(new HuffmanCode("011111001", new int[]{ 6 , 0 }));
			hf[24].l.Add(new HuffmanCode("01111011", new int[]{ 6 , 1 }));
			hf[24].l.Add(new HuffmanCode("01111001", new int[]{ 6 , 2 }));
			hf[24].l.Add(new HuffmanCode("01110101", new int[]{ 6 , 3 }));
			hf[24].l.Add(new HuffmanCode("01110001", new int[]{ 6 , 4 }));
			hf[24].l.Add(new HuffmanCode("011010111", new int[]{ 6 , 5 }));
			hf[24].l.Add(new HuffmanCode("011001110", new int[]{ 6 , 6 }));
			hf[24].l.Add(new HuffmanCode("011000011", new int[]{ 6 , 7 }));
			hf[24].l.Add(new HuffmanCode("010111001", new int[]{ 6 , 8 }));
			hf[24].l.Add(new HuffmanCode("0101011011", new int[]{ 6 , 9 }));
			hf[24].l.Add(new HuffmanCode("0101001010", new int[]{ 6 , 10}));
			hf[24].l.Add(new HuffmanCode("0100110100", new int[]{ 6 , 11}));
			hf[24].l.Add(new HuffmanCode("0100100011", new int[]{ 6 , 12}));
			hf[24].l.Add(new HuffmanCode("0100010000", new int[]{ 6 , 13}));
			hf[24].l.Add(new HuffmanCode("01000001000", new int[]{ 6 , 14}));
			hf[24].l.Add(new HuffmanCode("0001010", new int[]{ 6 , 15}));
			hf[24].l.Add(new HuffmanCode("0110110011", new int[]{ 7 , 0 }));
			hf[24].l.Add(new HuffmanCode("01110011", new int[]{ 7 , 1 }));
			hf[24].l.Add(new HuffmanCode("01101111", new int[]{ 7 , 2 }));
			hf[24].l.Add(new HuffmanCode("01101101", new int[]{ 7 , 3 }));
			hf[24].l.Add(new HuffmanCode("011010011", new int[]{ 7 , 4 }));
			hf[24].l.Add(new HuffmanCode("011001011", new int[]{ 7 , 5 }));
			hf[24].l.Add(new HuffmanCode("011000100", new int[]{ 7 , 6 }));
			hf[24].l.Add(new HuffmanCode("010111011", new int[]{ 7 , 7 }));
			hf[24].l.Add(new HuffmanCode("0101100001", new int[]{ 7 , 8 }));
			hf[24].l.Add(new HuffmanCode("0101001100", new int[]{ 7 , 9 }));
			hf[24].l.Add(new HuffmanCode("0100111001", new int[]{ 7 , 10}));
			hf[24].l.Add(new HuffmanCode("0100101010", new int[]{ 7 , 11}));
			hf[24].l.Add(new HuffmanCode("0100011011", new int[]{ 7 , 12}));
			hf[24].l.Add(new HuffmanCode("01000010011", new int[]{ 7 , 13}));
			hf[24].l.Add(new HuffmanCode("00101111101", new int[]{ 7 , 14}));
			hf[24].l.Add(new HuffmanCode("00010001", new int[]{ 7 , 15}));
			hf[24].l.Add(new HuffmanCode("0110101011", new int[]{ 8 , 0 }));
			hf[24].l.Add(new HuffmanCode("011010100", new int[]{ 8 , 1 }));
			hf[24].l.Add(new HuffmanCode("011010000", new int[]{ 8 , 2 }));
			hf[24].l.Add(new HuffmanCode("011001101", new int[]{ 8 , 3 }));
			hf[24].l.Add(new HuffmanCode("011001001", new int[]{ 8 , 4 }));
			hf[24].l.Add(new HuffmanCode("011000001", new int[]{ 8 , 5 }));
			hf[24].l.Add(new HuffmanCode("010111010", new int[]{ 8 , 6 }));
			hf[24].l.Add(new HuffmanCode("010110001", new int[]{ 8 , 7 }));
			hf[24].l.Add(new HuffmanCode("010101001", new int[]{ 8 , 8 }));
			hf[24].l.Add(new HuffmanCode("0101000000", new int[]{ 8 , 9 }));
			hf[24].l.Add(new HuffmanCode("0100101111", new int[]{ 8 , 10}));
			hf[24].l.Add(new HuffmanCode("0100011110", new int[]{ 8 , 11}));
			hf[24].l.Add(new HuffmanCode("0100001100", new int[]{ 8 , 12}));
			hf[24].l.Add(new HuffmanCode("01000000010", new int[]{ 8 , 13}));
			hf[24].l.Add(new HuffmanCode("00101111001", new int[]{ 8 , 14}));
			hf[24].l.Add(new HuffmanCode("00010000", new int[]{ 8 , 15}));
			hf[24].l.Add(new HuffmanCode("0101001111", new int[]{ 9 , 0 }));
			hf[24].l.Add(new HuffmanCode("011000111", new int[]{ 9 , 1 }));
			hf[24].l.Add(new HuffmanCode("011000101", new int[]{ 9 , 2 }));
			hf[24].l.Add(new HuffmanCode("010111111", new int[]{ 9 , 3 }));
			hf[24].l.Add(new HuffmanCode("010111101", new int[]{ 9 , 4 }));
			hf[24].l.Add(new HuffmanCode("010110101", new int[]{ 9 , 5 }));
			hf[24].l.Add(new HuffmanCode("010101110", new int[]{ 9 , 6 }));
			hf[24].l.Add(new HuffmanCode("0101001101", new int[]{ 9 , 7 }));
			hf[24].l.Add(new HuffmanCode("0101000001", new int[]{ 9 , 8 }));
			hf[24].l.Add(new HuffmanCode("0100110001", new int[]{ 9 , 9 }));
			hf[24].l.Add(new HuffmanCode("0100100001", new int[]{ 9 , 10}));
			hf[24].l.Add(new HuffmanCode("0100010011", new int[]{ 9 , 11}));
			hf[24].l.Add(new HuffmanCode("01000001001", new int[]{ 9 , 12}));
			hf[24].l.Add(new HuffmanCode("00101111011", new int[]{ 9 , 13}));
			hf[24].l.Add(new HuffmanCode("00101110011", new int[]{ 9 , 14}));
			hf[24].l.Add(new HuffmanCode("00001011", new int[]{ 9 , 15}));
			hf[24].l.Add(new HuffmanCode("01010011100", new int[]{ 10, 0 }));
			hf[24].l.Add(new HuffmanCode("010111000", new int[]{ 10, 1 }));
			hf[24].l.Add(new HuffmanCode("010110111", new int[]{ 10, 2 }));
			hf[24].l.Add(new HuffmanCode("010110011", new int[]{ 10, 3 }));
			hf[24].l.Add(new HuffmanCode("010101111", new int[]{ 10, 4 }));
			hf[24].l.Add(new HuffmanCode("0101011000", new int[]{ 10, 5 }));
			hf[24].l.Add(new HuffmanCode("0101001011", new int[]{ 10, 6 }));
			hf[24].l.Add(new HuffmanCode("0100111010", new int[]{ 10, 7 }));
			hf[24].l.Add(new HuffmanCode("0100110000", new int[]{ 10, 8 }));
			hf[24].l.Add(new HuffmanCode("0100100010", new int[]{ 10, 9 }));
			hf[24].l.Add(new HuffmanCode("0100010101", new int[]{ 10, 10}));
			hf[24].l.Add(new HuffmanCode("01000010010", new int[]{ 10, 11}));
			hf[24].l.Add(new HuffmanCode("00101111111", new int[]{ 10, 12}));
			hf[24].l.Add(new HuffmanCode("00101110101", new int[]{ 10, 13}));
			hf[24].l.Add(new HuffmanCode("00101101110", new int[]{ 10, 14}));
			hf[24].l.Add(new HuffmanCode("00001010", new int[]{ 10, 15}));
			hf[24].l.Add(new HuffmanCode("01010001100", new int[]{ 11, 0 }));
			hf[24].l.Add(new HuffmanCode("0101011010", new int[]{ 11, 1 }));
			hf[24].l.Add(new HuffmanCode("010101011", new int[]{ 11, 2 }));
			hf[24].l.Add(new HuffmanCode("010101000", new int[]{ 11, 3 }));
			hf[24].l.Add(new HuffmanCode("010100100", new int[]{ 11, 4 }));
			hf[24].l.Add(new HuffmanCode("0100111110", new int[]{ 11, 5 }));
			hf[24].l.Add(new HuffmanCode("0100110101", new int[]{ 11, 6 }));
			hf[24].l.Add(new HuffmanCode("0100101011", new int[]{ 11, 7 }));
			hf[24].l.Add(new HuffmanCode("0100011111", new int[]{ 11, 8 }));
			hf[24].l.Add(new HuffmanCode("0100010100", new int[]{ 11, 9 }));
			hf[24].l.Add(new HuffmanCode("0100000111", new int[]{ 11, 10}));
			hf[24].l.Add(new HuffmanCode("01000000001", new int[]{ 11, 11}));
			hf[24].l.Add(new HuffmanCode("00101110111", new int[]{ 11, 12}));
			hf[24].l.Add(new HuffmanCode("00101110000", new int[]{ 11, 13}));
			hf[24].l.Add(new HuffmanCode("00101101010", new int[]{ 11, 14}));
			hf[24].l.Add(new HuffmanCode("00000110", new int[]{ 11, 15}));
			hf[24].l.Add(new HuffmanCode("01010001000", new int[]{ 12, 0 }));
			hf[24].l.Add(new HuffmanCode("0101000010", new int[]{ 12, 1 }));
			hf[24].l.Add(new HuffmanCode("0100111100", new int[]{ 12, 2 }));
			hf[24].l.Add(new HuffmanCode("0100111000", new int[]{ 12, 3 }));
			hf[24].l.Add(new HuffmanCode("0100110011", new int[]{ 12, 4 }));
			hf[24].l.Add(new HuffmanCode("0100101110", new int[]{ 12, 5 }));
			hf[24].l.Add(new HuffmanCode("0100100100", new int[]{ 12, 6 }));
			hf[24].l.Add(new HuffmanCode("0100011100", new int[]{ 12, 7 }));
			hf[24].l.Add(new HuffmanCode("0100001101", new int[]{ 12, 8 }));
			hf[24].l.Add(new HuffmanCode("0100000101", new int[]{ 12, 9 }));
			hf[24].l.Add(new HuffmanCode("01000000000", new int[]{ 12, 10}));
			hf[24].l.Add(new HuffmanCode("00101111000", new int[]{ 12, 11}));
			hf[24].l.Add(new HuffmanCode("00101110010", new int[]{ 12, 12}));
			hf[24].l.Add(new HuffmanCode("00101101100", new int[]{ 12, 13}));
			hf[24].l.Add(new HuffmanCode("00101100111", new int[]{ 12, 14}));
			hf[24].l.Add(new HuffmanCode("00000100", new int[]{ 12, 15}));
			hf[24].l.Add(new HuffmanCode("01001101100", new int[]{ 13, 0 }));
			hf[24].l.Add(new HuffmanCode("0100101100", new int[]{ 13, 1 }));
			hf[24].l.Add(new HuffmanCode("0100101000", new int[]{ 13, 2 }));
			hf[24].l.Add(new HuffmanCode("0100100110", new int[]{ 13, 3 }));
			hf[24].l.Add(new HuffmanCode("0100100000", new int[]{ 13, 4 }));
			hf[24].l.Add(new HuffmanCode("0100011010", new int[]{ 13, 5 }));
			hf[24].l.Add(new HuffmanCode("0100010001", new int[]{ 13, 6 }));
			hf[24].l.Add(new HuffmanCode("0100001010", new int[]{ 13, 7 }));
			hf[24].l.Add(new HuffmanCode("01000000011", new int[]{ 13, 8 }));
			hf[24].l.Add(new HuffmanCode("00101111100", new int[]{ 13, 9 }));
			hf[24].l.Add(new HuffmanCode("00101110110", new int[]{ 13, 10}));
			hf[24].l.Add(new HuffmanCode("00101110001", new int[]{ 13, 11}));
			hf[24].l.Add(new HuffmanCode("00101101101", new int[]{ 13, 12}));
			hf[24].l.Add(new HuffmanCode("00101101001", new int[]{ 13, 13}));
			hf[24].l.Add(new HuffmanCode("00101100101", new int[]{ 13, 14}));
			hf[24].l.Add(new HuffmanCode("00000010", new int[]{ 13, 15}));
			hf[24].l.Add(new HuffmanCode("010000001001", new int[]{ 14, 0 }));
			hf[24].l.Add(new HuffmanCode("0100011000", new int[]{ 14, 1 }));
			hf[24].l.Add(new HuffmanCode("0100010110", new int[]{ 14, 2 }));
			hf[24].l.Add(new HuffmanCode("0100010010", new int[]{ 14, 3 }));
			hf[24].l.Add(new HuffmanCode("0100001011", new int[]{ 14, 4 }));
			hf[24].l.Add(new HuffmanCode("0100001000", new int[]{ 14, 5 }));
			hf[24].l.Add(new HuffmanCode("0100000011", new int[]{ 14, 6 }));
			hf[24].l.Add(new HuffmanCode("00101111110", new int[]{ 14, 7 }));
			hf[24].l.Add(new HuffmanCode("00101111010", new int[]{ 14, 8 }));
			hf[24].l.Add(new HuffmanCode("00101110100", new int[]{ 14, 9 }));
			hf[24].l.Add(new HuffmanCode("00101101111", new int[]{ 14, 10}));
			hf[24].l.Add(new HuffmanCode("00101101011", new int[]{ 14, 11}));
			hf[24].l.Add(new HuffmanCode("00101101000", new int[]{ 14, 12}));
			hf[24].l.Add(new HuffmanCode("00101100110", new int[]{ 14, 13}));
			hf[24].l.Add(new HuffmanCode("00101100100", new int[]{ 14, 14}));
			hf[24].l.Add(new HuffmanCode("00000000", new int[]{ 14, 15}));
			hf[24].l.Add(new HuffmanCode("00101011", new int[]{ 15, 0 }));
			hf[24].l.Add(new HuffmanCode("0010100", new int[]{ 15, 1 }));
			hf[24].l.Add(new HuffmanCode("0010011", new int[]{ 15, 2 }));
			hf[24].l.Add(new HuffmanCode("0010001", new int[]{ 15, 3 }));
			hf[24].l.Add(new HuffmanCode("0001111", new int[]{ 15, 4 }));
			hf[24].l.Add(new HuffmanCode("0001101", new int[]{ 15, 5 }));
			hf[24].l.Add(new HuffmanCode("0001011", new int[]{ 15, 6 }));
			hf[24].l.Add(new HuffmanCode("0001001", new int[]{ 15, 7 }));
			hf[24].l.Add(new HuffmanCode("0000111", new int[]{ 15, 8 }));
			hf[24].l.Add(new HuffmanCode("0000110", new int[]{ 15, 9 }));
			hf[24].l.Add(new HuffmanCode("0000100", new int[]{ 15, 10}));
			hf[24].l.Add(new HuffmanCode("00000111", new int[]{ 15, 11}));
			hf[24].l.Add(new HuffmanCode("00000101", new int[]{ 15, 12}));
			hf[24].l.Add(new HuffmanCode("00000011", new int[]{ 15, 13}));
			hf[24].l.Add(new HuffmanCode("00000001", new int[]{ 15, 14}));
			hf[24].l.Add(new HuffmanCode("0011", new int[]{ 15, 15}));

			HuffmanTree[25] = HuffmanTree[24];
			HuffmanTree[26] = HuffmanTree[24];
			HuffmanTree[27] = HuffmanTree[24];
			HuffmanTree[28] = HuffmanTree[24];
			HuffmanTree[29] = HuffmanTree[24];
			HuffmanTree[30] = HuffmanTree[24];
			HuffmanTree[31] = HuffmanTree[24];

			// Initialize HuffmanBinaryTree
			InitHuffmanBinaryTreeQ(hfq[0], HuffmanTreeQ[0]);
			InitHuffmanBinaryTreeQ(hfq[1], HuffmanTreeQ[1]);
			
			InitHuffmanBinaryTree(hf[1], HuffmanTree[1]);
			InitHuffmanBinaryTree(hf[2], HuffmanTree[2]);
			InitHuffmanBinaryTree(hf[3], HuffmanTree[3]);
			InitHuffmanBinaryTree(hf[4], HuffmanTree[4]);
			InitHuffmanBinaryTree(hf[5], HuffmanTree[5]);
			InitHuffmanBinaryTree(hf[6], HuffmanTree[6]);
			InitHuffmanBinaryTree(hf[7], HuffmanTree[7]);
			InitHuffmanBinaryTree(hf[8], HuffmanTree[8]);
			InitHuffmanBinaryTree(hf[9], HuffmanTree[9]);
			InitHuffmanBinaryTree(hf[10], HuffmanTree[10]);
			InitHuffmanBinaryTree(hf[11], HuffmanTree[11]);
			InitHuffmanBinaryTree(hf[12], HuffmanTree[12]);
			InitHuffmanBinaryTree(hf[13], HuffmanTree[13]);
			InitHuffmanBinaryTree(hf[15], HuffmanTree[15]);
			InitHuffmanBinaryTree(hf[16], HuffmanTree[16]);
			InitHuffmanBinaryTree(hf[24], HuffmanTree[24]);
		}
		private void InitHuffmanBinaryTree(HuffmanTable t, HuffNode hn)
		{
			var w = hn;
			foreach(HuffmanCode hc in t.l)
			{
				int tmp;
				for(int i=0; i<hc.hcode.Length; i++)
				{
					tmp = int.Parse(hc.hcode.Substring(i,1));
					if(w.n == null)
					{
						w.Add();
					}
					w=w.n[tmp];
				}
				w.XY=hc.XY;
				// return to root node.
				w = hn;
			}
		}