1%% Copyright (c) 2019, Loïc Hoguin <essen@ninenines.eu>
2%%
3%% Permission to use, copy, modify, and/or distribute this software for any
4%% purpose with or without fee is hereby granted, provided that the above
5%% copyright notice and this permission notice appear in all copies.
6%%
7%% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8%% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9%% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10%% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11%% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12%% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13%% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14
15%% This lookup function was created by converting the
16%% table from Nginx[1] into a form better suitable for
17%% Erlang/OTP. This particular table takes a byte-sized
18%% state and 4 bits to determine whether to emit a
19%% character and what the next state is. It is most
20%% appropriate for Erlang/OTP because we can benefit
21%% from binary pattern matching optimizations by
22%% matching the binary one byte at a time, calling
23%% this lookup function twice. This and similar
24%% algorithms are discussed here[2] and there[3].
25%%
26%% It is possible to write a lookup table taking
27%% a full byte instead of just 4 bits, but this
28%% would make this function take 65536 clauses instead
29%% of the current 4096. This could be done later
30%% as a further optimization but might not yield
31%% significant improvements.
32%%
33%% [1] https://hg.nginx.org/nginx/file/tip/src/http/v2/ngx_http_v2_huff_decode.c
34%% [2] http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.9.4248&rep=rep1&type=pdf
35%% [3] https://commandlinefanatic.com/cgi-bin/showarticle.cgi?article=art007
36
37dec_huffman_lookup(16#00, 16#0) -> {more, undefined, 16#04};
38dec_huffman_lookup(16#00, 16#1) -> {more, undefined, 16#05};
39dec_huffman_lookup(16#00, 16#2) -> {more, undefined, 16#07};
40dec_huffman_lookup(16#00, 16#3) -> {more, undefined, 16#08};
41dec_huffman_lookup(16#00, 16#4) -> {more, undefined, 16#0b};
42dec_huffman_lookup(16#00, 16#5) -> {more, undefined, 16#0c};
43dec_huffman_lookup(16#00, 16#6) -> {more, undefined, 16#10};
44dec_huffman_lookup(16#00, 16#7) -> {more, undefined, 16#13};
45dec_huffman_lookup(16#00, 16#8) -> {more, undefined, 16#19};
46dec_huffman_lookup(16#00, 16#9) -> {more, undefined, 16#1c};
47dec_huffman_lookup(16#00, 16#a) -> {more, undefined, 16#20};
48dec_huffman_lookup(16#00, 16#b) -> {more, undefined, 16#23};
49dec_huffman_lookup(16#00, 16#c) -> {more, undefined, 16#2a};
50dec_huffman_lookup(16#00, 16#d) -> {more, undefined, 16#31};
51dec_huffman_lookup(16#00, 16#e) -> {more, undefined, 16#39};
52dec_huffman_lookup(16#00, 16#f) -> {ok, undefined, 16#40};
53dec_huffman_lookup(16#01, 16#0) -> {ok, 16#30, 16#00};
54dec_huffman_lookup(16#01, 16#1) -> {ok, 16#31, 16#00};
55dec_huffman_lookup(16#01, 16#2) -> {ok, 16#32, 16#00};
56dec_huffman_lookup(16#01, 16#3) -> {ok, 16#61, 16#00};
57dec_huffman_lookup(16#01, 16#4) -> {ok, 16#63, 16#00};
58dec_huffman_lookup(16#01, 16#5) -> {ok, 16#65, 16#00};
59dec_huffman_lookup(16#01, 16#6) -> {ok, 16#69, 16#00};
60dec_huffman_lookup(16#01, 16#7) -> {ok, 16#6f, 16#00};
61dec_huffman_lookup(16#01, 16#8) -> {ok, 16#73, 16#00};
62dec_huffman_lookup(16#01, 16#9) -> {ok, 16#74, 16#00};
63dec_huffman_lookup(16#01, 16#a) -> {more, undefined, 16#0d};
64dec_huffman_lookup(16#01, 16#b) -> {more, undefined, 16#0e};
65dec_huffman_lookup(16#01, 16#c) -> {more, undefined, 16#11};
66dec_huffman_lookup(16#01, 16#d) -> {more, undefined, 16#12};
67dec_huffman_lookup(16#01, 16#e) -> {more, undefined, 16#14};
68dec_huffman_lookup(16#01, 16#f) -> {more, undefined, 16#15};
69dec_huffman_lookup(16#02, 16#0) -> {more, 16#30, 16#01};
70dec_huffman_lookup(16#02, 16#1) -> {ok, 16#30, 16#16};
71dec_huffman_lookup(16#02, 16#2) -> {more, 16#31, 16#01};
72dec_huffman_lookup(16#02, 16#3) -> {ok, 16#31, 16#16};
73dec_huffman_lookup(16#02, 16#4) -> {more, 16#32, 16#01};
74dec_huffman_lookup(16#02, 16#5) -> {ok, 16#32, 16#16};
75dec_huffman_lookup(16#02, 16#6) -> {more, 16#61, 16#01};
76dec_huffman_lookup(16#02, 16#7) -> {ok, 16#61, 16#16};
77dec_huffman_lookup(16#02, 16#8) -> {more, 16#63, 16#01};
78dec_huffman_lookup(16#02, 16#9) -> {ok, 16#63, 16#16};
79dec_huffman_lookup(16#02, 16#a) -> {more, 16#65, 16#01};
80dec_huffman_lookup(16#02, 16#b) -> {ok, 16#65, 16#16};
81dec_huffman_lookup(16#02, 16#c) -> {more, 16#69, 16#01};
82dec_huffman_lookup(16#02, 16#d) -> {ok, 16#69, 16#16};
83dec_huffman_lookup(16#02, 16#e) -> {more, 16#6f, 16#01};
84dec_huffman_lookup(16#02, 16#f) -> {ok, 16#6f, 16#16};
85dec_huffman_lookup(16#03, 16#0) -> {more, 16#30, 16#02};
86dec_huffman_lookup(16#03, 16#1) -> {more, 16#30, 16#09};
87dec_huffman_lookup(16#03, 16#2) -> {more, 16#30, 16#17};
88dec_huffman_lookup(16#03, 16#3) -> {ok, 16#30, 16#28};
89dec_huffman_lookup(16#03, 16#4) -> {more, 16#31, 16#02};
90dec_huffman_lookup(16#03, 16#5) -> {more, 16#31, 16#09};
91dec_huffman_lookup(16#03, 16#6) -> {more, 16#31, 16#17};
92dec_huffman_lookup(16#03, 16#7) -> {ok, 16#31, 16#28};
93dec_huffman_lookup(16#03, 16#8) -> {more, 16#32, 16#02};
94dec_huffman_lookup(16#03, 16#9) -> {more, 16#32, 16#09};
95dec_huffman_lookup(16#03, 16#a) -> {more, 16#32, 16#17};
96dec_huffman_lookup(16#03, 16#b) -> {ok, 16#32, 16#28};
97dec_huffman_lookup(16#03, 16#c) -> {more, 16#61, 16#02};
98dec_huffman_lookup(16#03, 16#d) -> {more, 16#61, 16#09};
99dec_huffman_lookup(16#03, 16#e) -> {more, 16#61, 16#17};
100dec_huffman_lookup(16#03, 16#f) -> {ok, 16#61, 16#28};
101dec_huffman_lookup(16#04, 16#0) -> {more, 16#30, 16#03};
102dec_huffman_lookup(16#04, 16#1) -> {more, 16#30, 16#06};
103dec_huffman_lookup(16#04, 16#2) -> {more, 16#30, 16#0a};
104dec_huffman_lookup(16#04, 16#3) -> {more, 16#30, 16#0f};
105dec_huffman_lookup(16#04, 16#4) -> {more, 16#30, 16#18};
106dec_huffman_lookup(16#04, 16#5) -> {more, 16#30, 16#1f};
107dec_huffman_lookup(16#04, 16#6) -> {more, 16#30, 16#29};
108dec_huffman_lookup(16#04, 16#7) -> {ok, 16#30, 16#38};
109dec_huffman_lookup(16#04, 16#8) -> {more, 16#31, 16#03};
110dec_huffman_lookup(16#04, 16#9) -> {more, 16#31, 16#06};
111dec_huffman_lookup(16#04, 16#a) -> {more, 16#31, 16#0a};
112dec_huffman_lookup(16#04, 16#b) -> {more, 16#31, 16#0f};
113dec_huffman_lookup(16#04, 16#c) -> {more, 16#31, 16#18};
114dec_huffman_lookup(16#04, 16#d) -> {more, 16#31, 16#1f};
115dec_huffman_lookup(16#04, 16#e) -> {more, 16#31, 16#29};
116dec_huffman_lookup(16#04, 16#f) -> {ok, 16#31, 16#38};
117dec_huffman_lookup(16#05, 16#0) -> {more, 16#32, 16#03};
118dec_huffman_lookup(16#05, 16#1) -> {more, 16#32, 16#06};
119dec_huffman_lookup(16#05, 16#2) -> {more, 16#32, 16#0a};
120dec_huffman_lookup(16#05, 16#3) -> {more, 16#32, 16#0f};
121dec_huffman_lookup(16#05, 16#4) -> {more, 16#32, 16#18};
122dec_huffman_lookup(16#05, 16#5) -> {more, 16#32, 16#1f};
123dec_huffman_lookup(16#05, 16#6) -> {more, 16#32, 16#29};
124dec_huffman_lookup(16#05, 16#7) -> {ok, 16#32, 16#38};
125dec_huffman_lookup(16#05, 16#8) -> {more, 16#61, 16#03};
126dec_huffman_lookup(16#05, 16#9) -> {more, 16#61, 16#06};
127dec_huffman_lookup(16#05, 16#a) -> {more, 16#61, 16#0a};
128dec_huffman_lookup(16#05, 16#b) -> {more, 16#61, 16#0f};
129dec_huffman_lookup(16#05, 16#c) -> {more, 16#61, 16#18};
130dec_huffman_lookup(16#05, 16#d) -> {more, 16#61, 16#1f};
131dec_huffman_lookup(16#05, 16#e) -> {more, 16#61, 16#29};
132dec_huffman_lookup(16#05, 16#f) -> {ok, 16#61, 16#38};
133dec_huffman_lookup(16#06, 16#0) -> {more, 16#63, 16#02};
134dec_huffman_lookup(16#06, 16#1) -> {more, 16#63, 16#09};
135dec_huffman_lookup(16#06, 16#2) -> {more, 16#63, 16#17};
136dec_huffman_lookup(16#06, 16#3) -> {ok, 16#63, 16#28};
137dec_huffman_lookup(16#06, 16#4) -> {more, 16#65, 16#02};
138dec_huffman_lookup(16#06, 16#5) -> {more, 16#65, 16#09};
139dec_huffman_lookup(16#06, 16#6) -> {more, 16#65, 16#17};
140dec_huffman_lookup(16#06, 16#7) -> {ok, 16#65, 16#28};
141dec_huffman_lookup(16#06, 16#8) -> {more, 16#69, 16#02};
142dec_huffman_lookup(16#06, 16#9) -> {more, 16#69, 16#09};
143dec_huffman_lookup(16#06, 16#a) -> {more, 16#69, 16#17};
144dec_huffman_lookup(16#06, 16#b) -> {ok, 16#69, 16#28};
145dec_huffman_lookup(16#06, 16#c) -> {more, 16#6f, 16#02};
146dec_huffman_lookup(16#06, 16#d) -> {more, 16#6f, 16#09};
147dec_huffman_lookup(16#06, 16#e) -> {more, 16#6f, 16#17};
148dec_huffman_lookup(16#06, 16#f) -> {ok, 16#6f, 16#28};
149dec_huffman_lookup(16#07, 16#0) -> {more, 16#63, 16#03};
150dec_huffman_lookup(16#07, 16#1) -> {more, 16#63, 16#06};
151dec_huffman_lookup(16#07, 16#2) -> {more, 16#63, 16#0a};
152dec_huffman_lookup(16#07, 16#3) -> {more, 16#63, 16#0f};
153dec_huffman_lookup(16#07, 16#4) -> {more, 16#63, 16#18};
154dec_huffman_lookup(16#07, 16#5) -> {more, 16#63, 16#1f};
155dec_huffman_lookup(16#07, 16#6) -> {more, 16#63, 16#29};
156dec_huffman_lookup(16#07, 16#7) -> {ok, 16#63, 16#38};
157dec_huffman_lookup(16#07, 16#8) -> {more, 16#65, 16#03};
158dec_huffman_lookup(16#07, 16#9) -> {more, 16#65, 16#06};
159dec_huffman_lookup(16#07, 16#a) -> {more, 16#65, 16#0a};
160dec_huffman_lookup(16#07, 16#b) -> {more, 16#65, 16#0f};
161dec_huffman_lookup(16#07, 16#c) -> {more, 16#65, 16#18};
162dec_huffman_lookup(16#07, 16#d) -> {more, 16#65, 16#1f};
163dec_huffman_lookup(16#07, 16#e) -> {more, 16#65, 16#29};
164dec_huffman_lookup(16#07, 16#f) -> {ok, 16#65, 16#38};
165dec_huffman_lookup(16#08, 16#0) -> {more, 16#69, 16#03};
166dec_huffman_lookup(16#08, 16#1) -> {more, 16#69, 16#06};
167dec_huffman_lookup(16#08, 16#2) -> {more, 16#69, 16#0a};
168dec_huffman_lookup(16#08, 16#3) -> {more, 16#69, 16#0f};
169dec_huffman_lookup(16#08, 16#4) -> {more, 16#69, 16#18};
170dec_huffman_lookup(16#08, 16#5) -> {more, 16#69, 16#1f};
171dec_huffman_lookup(16#08, 16#6) -> {more, 16#69, 16#29};
172dec_huffman_lookup(16#08, 16#7) -> {ok, 16#69, 16#38};
173dec_huffman_lookup(16#08, 16#8) -> {more, 16#6f, 16#03};
174dec_huffman_lookup(16#08, 16#9) -> {more, 16#6f, 16#06};
175dec_huffman_lookup(16#08, 16#a) -> {more, 16#6f, 16#0a};
176dec_huffman_lookup(16#08, 16#b) -> {more, 16#6f, 16#0f};
177dec_huffman_lookup(16#08, 16#c) -> {more, 16#6f, 16#18};
178dec_huffman_lookup(16#08, 16#d) -> {more, 16#6f, 16#1f};
179dec_huffman_lookup(16#08, 16#e) -> {more, 16#6f, 16#29};
180dec_huffman_lookup(16#08, 16#f) -> {ok, 16#6f, 16#38};
181dec_huffman_lookup(16#09, 16#0) -> {more, 16#73, 16#01};
182dec_huffman_lookup(16#09, 16#1) -> {ok, 16#73, 16#16};
183dec_huffman_lookup(16#09, 16#2) -> {more, 16#74, 16#01};
184dec_huffman_lookup(16#09, 16#3) -> {ok, 16#74, 16#16};
185dec_huffman_lookup(16#09, 16#4) -> {ok, 16#20, 16#00};
186dec_huffman_lookup(16#09, 16#5) -> {ok, 16#25, 16#00};
187dec_huffman_lookup(16#09, 16#6) -> {ok, 16#2d, 16#00};
188dec_huffman_lookup(16#09, 16#7) -> {ok, 16#2e, 16#00};
189dec_huffman_lookup(16#09, 16#8) -> {ok, 16#2f, 16#00};
190dec_huffman_lookup(16#09, 16#9) -> {ok, 16#33, 16#00};
191dec_huffman_lookup(16#09, 16#a) -> {ok, 16#34, 16#00};
192dec_huffman_lookup(16#09, 16#b) -> {ok, 16#35, 16#00};
193dec_huffman_lookup(16#09, 16#c) -> {ok, 16#36, 16#00};
194dec_huffman_lookup(16#09, 16#d) -> {ok, 16#37, 16#00};
195dec_huffman_lookup(16#09, 16#e) -> {ok, 16#38, 16#00};
196dec_huffman_lookup(16#09, 16#f) -> {ok, 16#39, 16#00};
197dec_huffman_lookup(16#0a, 16#0) -> {more, 16#73, 16#02};
198dec_huffman_lookup(16#0a, 16#1) -> {more, 16#73, 16#09};
199dec_huffman_lookup(16#0a, 16#2) -> {more, 16#73, 16#17};
200dec_huffman_lookup(16#0a, 16#3) -> {ok, 16#73, 16#28};
201dec_huffman_lookup(16#0a, 16#4) -> {more, 16#74, 16#02};
202dec_huffman_lookup(16#0a, 16#5) -> {more, 16#74, 16#09};
203dec_huffman_lookup(16#0a, 16#6) -> {more, 16#74, 16#17};
204dec_huffman_lookup(16#0a, 16#7) -> {ok, 16#74, 16#28};
205dec_huffman_lookup(16#0a, 16#8) -> {more, 16#20, 16#01};
206dec_huffman_lookup(16#0a, 16#9) -> {ok, 16#20, 16#16};
207dec_huffman_lookup(16#0a, 16#a) -> {more, 16#25, 16#01};
208dec_huffman_lookup(16#0a, 16#b) -> {ok, 16#25, 16#16};
209dec_huffman_lookup(16#0a, 16#c) -> {more, 16#2d, 16#01};
210dec_huffman_lookup(16#0a, 16#d) -> {ok, 16#2d, 16#16};
211dec_huffman_lookup(16#0a, 16#e) -> {more, 16#2e, 16#01};
212dec_huffman_lookup(16#0a, 16#f) -> {ok, 16#2e, 16#16};
213dec_huffman_lookup(16#0b, 16#0) -> {more, 16#73, 16#03};
214dec_huffman_lookup(16#0b, 16#1) -> {more, 16#73, 16#06};
215dec_huffman_lookup(16#0b, 16#2) -> {more, 16#73, 16#0a};
216dec_huffman_lookup(16#0b, 16#3) -> {more, 16#73, 16#0f};
217dec_huffman_lookup(16#0b, 16#4) -> {more, 16#73, 16#18};
218dec_huffman_lookup(16#0b, 16#5) -> {more, 16#73, 16#1f};
219dec_huffman_lookup(16#0b, 16#6) -> {more, 16#73, 16#29};
220dec_huffman_lookup(16#0b, 16#7) -> {ok, 16#73, 16#38};
221dec_huffman_lookup(16#0b, 16#8) -> {more, 16#74, 16#03};
222dec_huffman_lookup(16#0b, 16#9) -> {more, 16#74, 16#06};
223dec_huffman_lookup(16#0b, 16#a) -> {more, 16#74, 16#0a};
224dec_huffman_lookup(16#0b, 16#b) -> {more, 16#74, 16#0f};
225dec_huffman_lookup(16#0b, 16#c) -> {more, 16#74, 16#18};
226dec_huffman_lookup(16#0b, 16#d) -> {more, 16#74, 16#1f};
227dec_huffman_lookup(16#0b, 16#e) -> {more, 16#74, 16#29};
228dec_huffman_lookup(16#0b, 16#f) -> {ok, 16#74, 16#38};
229dec_huffman_lookup(16#0c, 16#0) -> {more, 16#20, 16#02};
230dec_huffman_lookup(16#0c, 16#1) -> {more, 16#20, 16#09};
231dec_huffman_lookup(16#0c, 16#2) -> {more, 16#20, 16#17};
232dec_huffman_lookup(16#0c, 16#3) -> {ok, 16#20, 16#28};
233dec_huffman_lookup(16#0c, 16#4) -> {more, 16#25, 16#02};
234dec_huffman_lookup(16#0c, 16#5) -> {more, 16#25, 16#09};
235dec_huffman_lookup(16#0c, 16#6) -> {more, 16#25, 16#17};
236dec_huffman_lookup(16#0c, 16#7) -> {ok, 16#25, 16#28};
237dec_huffman_lookup(16#0c, 16#8) -> {more, 16#2d, 16#02};
238dec_huffman_lookup(16#0c, 16#9) -> {more, 16#2d, 16#09};
239dec_huffman_lookup(16#0c, 16#a) -> {more, 16#2d, 16#17};
240dec_huffman_lookup(16#0c, 16#b) -> {ok, 16#2d, 16#28};
241dec_huffman_lookup(16#0c, 16#c) -> {more, 16#2e, 16#02};
242dec_huffman_lookup(16#0c, 16#d) -> {more, 16#2e, 16#09};
243dec_huffman_lookup(16#0c, 16#e) -> {more, 16#2e, 16#17};
244dec_huffman_lookup(16#0c, 16#f) -> {ok, 16#2e, 16#28};
245dec_huffman_lookup(16#0d, 16#0) -> {more, 16#20, 16#03};
246dec_huffman_lookup(16#0d, 16#1) -> {more, 16#20, 16#06};
247dec_huffman_lookup(16#0d, 16#2) -> {more, 16#20, 16#0a};
248dec_huffman_lookup(16#0d, 16#3) -> {more, 16#20, 16#0f};
249dec_huffman_lookup(16#0d, 16#4) -> {more, 16#20, 16#18};
250dec_huffman_lookup(16#0d, 16#5) -> {more, 16#20, 16#1f};
251dec_huffman_lookup(16#0d, 16#6) -> {more, 16#20, 16#29};
252dec_huffman_lookup(16#0d, 16#7) -> {ok, 16#20, 16#38};
253dec_huffman_lookup(16#0d, 16#8) -> {more, 16#25, 16#03};
254dec_huffman_lookup(16#0d, 16#9) -> {more, 16#25, 16#06};
255dec_huffman_lookup(16#0d, 16#a) -> {more, 16#25, 16#0a};
256dec_huffman_lookup(16#0d, 16#b) -> {more, 16#25, 16#0f};
257dec_huffman_lookup(16#0d, 16#c) -> {more, 16#25, 16#18};
258dec_huffman_lookup(16#0d, 16#d) -> {more, 16#25, 16#1f};
259dec_huffman_lookup(16#0d, 16#e) -> {more, 16#25, 16#29};
260dec_huffman_lookup(16#0d, 16#f) -> {ok, 16#25, 16#38};
261dec_huffman_lookup(16#0e, 16#0) -> {more, 16#2d, 16#03};
262dec_huffman_lookup(16#0e, 16#1) -> {more, 16#2d, 16#06};
263dec_huffman_lookup(16#0e, 16#2) -> {more, 16#2d, 16#0a};
264dec_huffman_lookup(16#0e, 16#3) -> {more, 16#2d, 16#0f};
265dec_huffman_lookup(16#0e, 16#4) -> {more, 16#2d, 16#18};
266dec_huffman_lookup(16#0e, 16#5) -> {more, 16#2d, 16#1f};
267dec_huffman_lookup(16#0e, 16#6) -> {more, 16#2d, 16#29};
268dec_huffman_lookup(16#0e, 16#7) -> {ok, 16#2d, 16#38};
269dec_huffman_lookup(16#0e, 16#8) -> {more, 16#2e, 16#03};
270dec_huffman_lookup(16#0e, 16#9) -> {more, 16#2e, 16#06};
271dec_huffman_lookup(16#0e, 16#a) -> {more, 16#2e, 16#0a};
272dec_huffman_lookup(16#0e, 16#b) -> {more, 16#2e, 16#0f};
273dec_huffman_lookup(16#0e, 16#c) -> {more, 16#2e, 16#18};
274dec_huffman_lookup(16#0e, 16#d) -> {more, 16#2e, 16#1f};
275dec_huffman_lookup(16#0e, 16#e) -> {more, 16#2e, 16#29};
276dec_huffman_lookup(16#0e, 16#f) -> {ok, 16#2e, 16#38};
277dec_huffman_lookup(16#0f, 16#0) -> {more, 16#2f, 16#01};
278dec_huffman_lookup(16#0f, 16#1) -> {ok, 16#2f, 16#16};
279dec_huffman_lookup(16#0f, 16#2) -> {more, 16#33, 16#01};
280dec_huffman_lookup(16#0f, 16#3) -> {ok, 16#33, 16#16};
281dec_huffman_lookup(16#0f, 16#4) -> {more, 16#34, 16#01};
282dec_huffman_lookup(16#0f, 16#5) -> {ok, 16#34, 16#16};
283dec_huffman_lookup(16#0f, 16#6) -> {more, 16#35, 16#01};
284dec_huffman_lookup(16#0f, 16#7) -> {ok, 16#35, 16#16};
285dec_huffman_lookup(16#0f, 16#8) -> {more, 16#36, 16#01};
286dec_huffman_lookup(16#0f, 16#9) -> {ok, 16#36, 16#16};
287dec_huffman_lookup(16#0f, 16#a) -> {more, 16#37, 16#01};
288dec_huffman_lookup(16#0f, 16#b) -> {ok, 16#37, 16#16};
289dec_huffman_lookup(16#0f, 16#c) -> {more, 16#38, 16#01};
290dec_huffman_lookup(16#0f, 16#d) -> {ok, 16#38, 16#16};
291dec_huffman_lookup(16#0f, 16#e) -> {more, 16#39, 16#01};
292dec_huffman_lookup(16#0f, 16#f) -> {ok, 16#39, 16#16};
293dec_huffman_lookup(16#10, 16#0) -> {more, 16#2f, 16#02};
294dec_huffman_lookup(16#10, 16#1) -> {more, 16#2f, 16#09};
295dec_huffman_lookup(16#10, 16#2) -> {more, 16#2f, 16#17};
296dec_huffman_lookup(16#10, 16#3) -> {ok, 16#2f, 16#28};
297dec_huffman_lookup(16#10, 16#4) -> {more, 16#33, 16#02};
298dec_huffman_lookup(16#10, 16#5) -> {more, 16#33, 16#09};
299dec_huffman_lookup(16#10, 16#6) -> {more, 16#33, 16#17};
300dec_huffman_lookup(16#10, 16#7) -> {ok, 16#33, 16#28};
301dec_huffman_lookup(16#10, 16#8) -> {more, 16#34, 16#02};
302dec_huffman_lookup(16#10, 16#9) -> {more, 16#34, 16#09};
303dec_huffman_lookup(16#10, 16#a) -> {more, 16#34, 16#17};
304dec_huffman_lookup(16#10, 16#b) -> {ok, 16#34, 16#28};
305dec_huffman_lookup(16#10, 16#c) -> {more, 16#35, 16#02};
306dec_huffman_lookup(16#10, 16#d) -> {more, 16#35, 16#09};
307dec_huffman_lookup(16#10, 16#e) -> {more, 16#35, 16#17};
308dec_huffman_lookup(16#10, 16#f) -> {ok, 16#35, 16#28};
309dec_huffman_lookup(16#11, 16#0) -> {more, 16#2f, 16#03};
310dec_huffman_lookup(16#11, 16#1) -> {more, 16#2f, 16#06};
311dec_huffman_lookup(16#11, 16#2) -> {more, 16#2f, 16#0a};
312dec_huffman_lookup(16#11, 16#3) -> {more, 16#2f, 16#0f};
313dec_huffman_lookup(16#11, 16#4) -> {more, 16#2f, 16#18};
314dec_huffman_lookup(16#11, 16#5) -> {more, 16#2f, 16#1f};
315dec_huffman_lookup(16#11, 16#6) -> {more, 16#2f, 16#29};
316dec_huffman_lookup(16#11, 16#7) -> {ok, 16#2f, 16#38};
317dec_huffman_lookup(16#11, 16#8) -> {more, 16#33, 16#03};
318dec_huffman_lookup(16#11, 16#9) -> {more, 16#33, 16#06};
319dec_huffman_lookup(16#11, 16#a) -> {more, 16#33, 16#0a};
320dec_huffman_lookup(16#11, 16#b) -> {more, 16#33, 16#0f};
321dec_huffman_lookup(16#11, 16#c) -> {more, 16#33, 16#18};
322dec_huffman_lookup(16#11, 16#d) -> {more, 16#33, 16#1f};
323dec_huffman_lookup(16#11, 16#e) -> {more, 16#33, 16#29};
324dec_huffman_lookup(16#11, 16#f) -> {ok, 16#33, 16#38};
325dec_huffman_lookup(16#12, 16#0) -> {more, 16#34, 16#03};
326dec_huffman_lookup(16#12, 16#1) -> {more, 16#34, 16#06};
327dec_huffman_lookup(16#12, 16#2) -> {more, 16#34, 16#0a};
328dec_huffman_lookup(16#12, 16#3) -> {more, 16#34, 16#0f};
329dec_huffman_lookup(16#12, 16#4) -> {more, 16#34, 16#18};
330dec_huffman_lookup(16#12, 16#5) -> {more, 16#34, 16#1f};
331dec_huffman_lookup(16#12, 16#6) -> {more, 16#34, 16#29};
332dec_huffman_lookup(16#12, 16#7) -> {ok, 16#34, 16#38};
333dec_huffman_lookup(16#12, 16#8) -> {more, 16#35, 16#03};
334dec_huffman_lookup(16#12, 16#9) -> {more, 16#35, 16#06};
335dec_huffman_lookup(16#12, 16#a) -> {more, 16#35, 16#0a};
336dec_huffman_lookup(16#12, 16#b) -> {more, 16#35, 16#0f};
337dec_huffman_lookup(16#12, 16#c) -> {more, 16#35, 16#18};
338dec_huffman_lookup(16#12, 16#d) -> {more, 16#35, 16#1f};
339dec_huffman_lookup(16#12, 16#e) -> {more, 16#35, 16#29};
340dec_huffman_lookup(16#12, 16#f) -> {ok, 16#35, 16#38};
341dec_huffman_lookup(16#13, 16#0) -> {more, 16#36, 16#02};
342dec_huffman_lookup(16#13, 16#1) -> {more, 16#36, 16#09};
343dec_huffman_lookup(16#13, 16#2) -> {more, 16#36, 16#17};
344dec_huffman_lookup(16#13, 16#3) -> {ok, 16#36, 16#28};
345dec_huffman_lookup(16#13, 16#4) -> {more, 16#37, 16#02};
346dec_huffman_lookup(16#13, 16#5) -> {more, 16#37, 16#09};
347dec_huffman_lookup(16#13, 16#6) -> {more, 16#37, 16#17};
348dec_huffman_lookup(16#13, 16#7) -> {ok, 16#37, 16#28};
349dec_huffman_lookup(16#13, 16#8) -> {more, 16#38, 16#02};
350dec_huffman_lookup(16#13, 16#9) -> {more, 16#38, 16#09};
351dec_huffman_lookup(16#13, 16#a) -> {more, 16#38, 16#17};
352dec_huffman_lookup(16#13, 16#b) -> {ok, 16#38, 16#28};
353dec_huffman_lookup(16#13, 16#c) -> {more, 16#39, 16#02};
354dec_huffman_lookup(16#13, 16#d) -> {more, 16#39, 16#09};
355dec_huffman_lookup(16#13, 16#e) -> {more, 16#39, 16#17};
356dec_huffman_lookup(16#13, 16#f) -> {ok, 16#39, 16#28};
357dec_huffman_lookup(16#14, 16#0) -> {more, 16#36, 16#03};
358dec_huffman_lookup(16#14, 16#1) -> {more, 16#36, 16#06};
359dec_huffman_lookup(16#14, 16#2) -> {more, 16#36, 16#0a};
360dec_huffman_lookup(16#14, 16#3) -> {more, 16#36, 16#0f};
361dec_huffman_lookup(16#14, 16#4) -> {more, 16#36, 16#18};
362dec_huffman_lookup(16#14, 16#5) -> {more, 16#36, 16#1f};
363dec_huffman_lookup(16#14, 16#6) -> {more, 16#36, 16#29};
364dec_huffman_lookup(16#14, 16#7) -> {ok, 16#36, 16#38};
365dec_huffman_lookup(16#14, 16#8) -> {more, 16#37, 16#03};
366dec_huffman_lookup(16#14, 16#9) -> {more, 16#37, 16#06};
367dec_huffman_lookup(16#14, 16#a) -> {more, 16#37, 16#0a};
368dec_huffman_lookup(16#14, 16#b) -> {more, 16#37, 16#0f};
369dec_huffman_lookup(16#14, 16#c) -> {more, 16#37, 16#18};
370dec_huffman_lookup(16#14, 16#d) -> {more, 16#37, 16#1f};
371dec_huffman_lookup(16#14, 16#e) -> {more, 16#37, 16#29};
372dec_huffman_lookup(16#14, 16#f) -> {ok, 16#37, 16#38};
373dec_huffman_lookup(16#15, 16#0) -> {more, 16#38, 16#03};
374dec_huffman_lookup(16#15, 16#1) -> {more, 16#38, 16#06};
375dec_huffman_lookup(16#15, 16#2) -> {more, 16#38, 16#0a};
376dec_huffman_lookup(16#15, 16#3) -> {more, 16#38, 16#0f};
377dec_huffman_lookup(16#15, 16#4) -> {more, 16#38, 16#18};
378dec_huffman_lookup(16#15, 16#5) -> {more, 16#38, 16#1f};
379dec_huffman_lookup(16#15, 16#6) -> {more, 16#38, 16#29};
380dec_huffman_lookup(16#15, 16#7) -> {ok, 16#38, 16#38};
381dec_huffman_lookup(16#15, 16#8) -> {more, 16#39, 16#03};
382dec_huffman_lookup(16#15, 16#9) -> {more, 16#39, 16#06};
383dec_huffman_lookup(16#15, 16#a) -> {more, 16#39, 16#0a};
384dec_huffman_lookup(16#15, 16#b) -> {more, 16#39, 16#0f};
385dec_huffman_lookup(16#15, 16#c) -> {more, 16#39, 16#18};
386dec_huffman_lookup(16#15, 16#d) -> {more, 16#39, 16#1f};
387dec_huffman_lookup(16#15, 16#e) -> {more, 16#39, 16#29};
388dec_huffman_lookup(16#15, 16#f) -> {ok, 16#39, 16#38};
389dec_huffman_lookup(16#16, 16#0) -> {more, undefined, 16#1a};
390dec_huffman_lookup(16#16, 16#1) -> {more, undefined, 16#1b};
391dec_huffman_lookup(16#16, 16#2) -> {more, undefined, 16#1d};
392dec_huffman_lookup(16#16, 16#3) -> {more, undefined, 16#1e};
393dec_huffman_lookup(16#16, 16#4) -> {more, undefined, 16#21};
394dec_huffman_lookup(16#16, 16#5) -> {more, undefined, 16#22};
395dec_huffman_lookup(16#16, 16#6) -> {more, undefined, 16#24};
396dec_huffman_lookup(16#16, 16#7) -> {more, undefined, 16#25};
397dec_huffman_lookup(16#16, 16#8) -> {more, undefined, 16#2b};
398dec_huffman_lookup(16#16, 16#9) -> {more, undefined, 16#2e};
399dec_huffman_lookup(16#16, 16#a) -> {more, undefined, 16#32};
400dec_huffman_lookup(16#16, 16#b) -> {more, undefined, 16#35};
401dec_huffman_lookup(16#16, 16#c) -> {more, undefined, 16#3a};
402dec_huffman_lookup(16#16, 16#d) -> {more, undefined, 16#3d};
403dec_huffman_lookup(16#16, 16#e) -> {more, undefined, 16#41};
404dec_huffman_lookup(16#16, 16#f) -> {ok, undefined, 16#44};
405dec_huffman_lookup(16#17, 16#0) -> {ok, 16#3d, 16#00};
406dec_huffman_lookup(16#17, 16#1) -> {ok, 16#41, 16#00};
407dec_huffman_lookup(16#17, 16#2) -> {ok, 16#5f, 16#00};
408dec_huffman_lookup(16#17, 16#3) -> {ok, 16#62, 16#00};
409dec_huffman_lookup(16#17, 16#4) -> {ok, 16#64, 16#00};
410dec_huffman_lookup(16#17, 16#5) -> {ok, 16#66, 16#00};
411dec_huffman_lookup(16#17, 16#6) -> {ok, 16#67, 16#00};
412dec_huffman_lookup(16#17, 16#7) -> {ok, 16#68, 16#00};
413dec_huffman_lookup(16#17, 16#8) -> {ok, 16#6c, 16#00};
414dec_huffman_lookup(16#17, 16#9) -> {ok, 16#6d, 16#00};
415dec_huffman_lookup(16#17, 16#a) -> {ok, 16#6e, 16#00};
416dec_huffman_lookup(16#17, 16#b) -> {ok, 16#70, 16#00};
417dec_huffman_lookup(16#17, 16#c) -> {ok, 16#72, 16#00};
418dec_huffman_lookup(16#17, 16#d) -> {ok, 16#75, 16#00};
419dec_huffman_lookup(16#17, 16#e) -> {more, undefined, 16#26};
420dec_huffman_lookup(16#17, 16#f) -> {more, undefined, 16#27};
421dec_huffman_lookup(16#18, 16#0) -> {more, 16#3d, 16#01};
422dec_huffman_lookup(16#18, 16#1) -> {ok, 16#3d, 16#16};
423dec_huffman_lookup(16#18, 16#2) -> {more, 16#41, 16#01};
424dec_huffman_lookup(16#18, 16#3) -> {ok, 16#41, 16#16};
425dec_huffman_lookup(16#18, 16#4) -> {more, 16#5f, 16#01};
426dec_huffman_lookup(16#18, 16#5) -> {ok, 16#5f, 16#16};
427dec_huffman_lookup(16#18, 16#6) -> {more, 16#62, 16#01};
428dec_huffman_lookup(16#18, 16#7) -> {ok, 16#62, 16#16};
429dec_huffman_lookup(16#18, 16#8) -> {more, 16#64, 16#01};
430dec_huffman_lookup(16#18, 16#9) -> {ok, 16#64, 16#16};
431dec_huffman_lookup(16#18, 16#a) -> {more, 16#66, 16#01};
432dec_huffman_lookup(16#18, 16#b) -> {ok, 16#66, 16#16};
433dec_huffman_lookup(16#18, 16#c) -> {more, 16#67, 16#01};
434dec_huffman_lookup(16#18, 16#d) -> {ok, 16#67, 16#16};
435dec_huffman_lookup(16#18, 16#e) -> {more, 16#68, 16#01};
436dec_huffman_lookup(16#18, 16#f) -> {ok, 16#68, 16#16};
437dec_huffman_lookup(16#19, 16#0) -> {more, 16#3d, 16#02};
438dec_huffman_lookup(16#19, 16#1) -> {more, 16#3d, 16#09};
439dec_huffman_lookup(16#19, 16#2) -> {more, 16#3d, 16#17};
440dec_huffman_lookup(16#19, 16#3) -> {ok, 16#3d, 16#28};
441dec_huffman_lookup(16#19, 16#4) -> {more, 16#41, 16#02};
442dec_huffman_lookup(16#19, 16#5) -> {more, 16#41, 16#09};
443dec_huffman_lookup(16#19, 16#6) -> {more, 16#41, 16#17};
444dec_huffman_lookup(16#19, 16#7) -> {ok, 16#41, 16#28};
445dec_huffman_lookup(16#19, 16#8) -> {more, 16#5f, 16#02};
446dec_huffman_lookup(16#19, 16#9) -> {more, 16#5f, 16#09};
447dec_huffman_lookup(16#19, 16#a) -> {more, 16#5f, 16#17};
448dec_huffman_lookup(16#19, 16#b) -> {ok, 16#5f, 16#28};
449dec_huffman_lookup(16#19, 16#c) -> {more, 16#62, 16#02};
450dec_huffman_lookup(16#19, 16#d) -> {more, 16#62, 16#09};
451dec_huffman_lookup(16#19, 16#e) -> {more, 16#62, 16#17};
452dec_huffman_lookup(16#19, 16#f) -> {ok, 16#62, 16#28};
453dec_huffman_lookup(16#1a, 16#0) -> {more, 16#3d, 16#03};
454dec_huffman_lookup(16#1a, 16#1) -> {more, 16#3d, 16#06};
455dec_huffman_lookup(16#1a, 16#2) -> {more, 16#3d, 16#0a};
456dec_huffman_lookup(16#1a, 16#3) -> {more, 16#3d, 16#0f};
457dec_huffman_lookup(16#1a, 16#4) -> {more, 16#3d, 16#18};
458dec_huffman_lookup(16#1a, 16#5) -> {more, 16#3d, 16#1f};
459dec_huffman_lookup(16#1a, 16#6) -> {more, 16#3d, 16#29};
460dec_huffman_lookup(16#1a, 16#7) -> {ok, 16#3d, 16#38};
461dec_huffman_lookup(16#1a, 16#8) -> {more, 16#41, 16#03};
462dec_huffman_lookup(16#1a, 16#9) -> {more, 16#41, 16#06};
463dec_huffman_lookup(16#1a, 16#a) -> {more, 16#41, 16#0a};
464dec_huffman_lookup(16#1a, 16#b) -> {more, 16#41, 16#0f};
465dec_huffman_lookup(16#1a, 16#c) -> {more, 16#41, 16#18};
466dec_huffman_lookup(16#1a, 16#d) -> {more, 16#41, 16#1f};
467dec_huffman_lookup(16#1a, 16#e) -> {more, 16#41, 16#29};
468dec_huffman_lookup(16#1a, 16#f) -> {ok, 16#41, 16#38};
469dec_huffman_lookup(16#1b, 16#0) -> {more, 16#5f, 16#03};
470dec_huffman_lookup(16#1b, 16#1) -> {more, 16#5f, 16#06};
471dec_huffman_lookup(16#1b, 16#2) -> {more, 16#5f, 16#0a};
472dec_huffman_lookup(16#1b, 16#3) -> {more, 16#5f, 16#0f};
473dec_huffman_lookup(16#1b, 16#4) -> {more, 16#5f, 16#18};
474dec_huffman_lookup(16#1b, 16#5) -> {more, 16#5f, 16#1f};
475dec_huffman_lookup(16#1b, 16#6) -> {more, 16#5f, 16#29};
476dec_huffman_lookup(16#1b, 16#7) -> {ok, 16#5f, 16#38};
477dec_huffman_lookup(16#1b, 16#8) -> {more, 16#62, 16#03};
478dec_huffman_lookup(16#1b, 16#9) -> {more, 16#62, 16#06};
479dec_huffman_lookup(16#1b, 16#a) -> {more, 16#62, 16#0a};
480dec_huffman_lookup(16#1b, 16#b) -> {more, 16#62, 16#0f};
481dec_huffman_lookup(16#1b, 16#c) -> {more, 16#62, 16#18};
482dec_huffman_lookup(16#1b, 16#d) -> {more, 16#62, 16#1f};
483dec_huffman_lookup(16#1b, 16#e) -> {more, 16#62, 16#29};
484dec_huffman_lookup(16#1b, 16#f) -> {ok, 16#62, 16#38};
485dec_huffman_lookup(16#1c, 16#0) -> {more, 16#64, 16#02};
486dec_huffman_lookup(16#1c, 16#1) -> {more, 16#64, 16#09};
487dec_huffman_lookup(16#1c, 16#2) -> {more, 16#64, 16#17};
488dec_huffman_lookup(16#1c, 16#3) -> {ok, 16#64, 16#28};
489dec_huffman_lookup(16#1c, 16#4) -> {more, 16#66, 16#02};
490dec_huffman_lookup(16#1c, 16#5) -> {more, 16#66, 16#09};
491dec_huffman_lookup(16#1c, 16#6) -> {more, 16#66, 16#17};
492dec_huffman_lookup(16#1c, 16#7) -> {ok, 16#66, 16#28};
493dec_huffman_lookup(16#1c, 16#8) -> {more, 16#67, 16#02};
494dec_huffman_lookup(16#1c, 16#9) -> {more, 16#67, 16#09};
495dec_huffman_lookup(16#1c, 16#a) -> {more, 16#67, 16#17};
496dec_huffman_lookup(16#1c, 16#b) -> {ok, 16#67, 16#28};
497dec_huffman_lookup(16#1c, 16#c) -> {more, 16#68, 16#02};
498dec_huffman_lookup(16#1c, 16#d) -> {more, 16#68, 16#09};
499dec_huffman_lookup(16#1c, 16#e) -> {more, 16#68, 16#17};
500dec_huffman_lookup(16#1c, 16#f) -> {ok, 16#68, 16#28};
501dec_huffman_lookup(16#1d, 16#0) -> {more, 16#64, 16#03};
502dec_huffman_lookup(16#1d, 16#1) -> {more, 16#64, 16#06};
503dec_huffman_lookup(16#1d, 16#2) -> {more, 16#64, 16#0a};
504dec_huffman_lookup(16#1d, 16#3) -> {more, 16#64, 16#0f};
505dec_huffman_lookup(16#1d, 16#4) -> {more, 16#64, 16#18};
506dec_huffman_lookup(16#1d, 16#5) -> {more, 16#64, 16#1f};
507dec_huffman_lookup(16#1d, 16#6) -> {more, 16#64, 16#29};
508dec_huffman_lookup(16#1d, 16#7) -> {ok, 16#64, 16#38};
509dec_huffman_lookup(16#1d, 16#8) -> {more, 16#66, 16#03};
510dec_huffman_lookup(16#1d, 16#9) -> {more, 16#66, 16#06};
511dec_huffman_lookup(16#1d, 16#a) -> {more, 16#66, 16#0a};
512dec_huffman_lookup(16#1d, 16#b) -> {more, 16#66, 16#0f};
513dec_huffman_lookup(16#1d, 16#c) -> {more, 16#66, 16#18};
514dec_huffman_lookup(16#1d, 16#d) -> {more, 16#66, 16#1f};
515dec_huffman_lookup(16#1d, 16#e) -> {more, 16#66, 16#29};
516dec_huffman_lookup(16#1d, 16#f) -> {ok, 16#66, 16#38};
517dec_huffman_lookup(16#1e, 16#0) -> {more, 16#67, 16#03};
518dec_huffman_lookup(16#1e, 16#1) -> {more, 16#67, 16#06};
519dec_huffman_lookup(16#1e, 16#2) -> {more, 16#67, 16#0a};
520dec_huffman_lookup(16#1e, 16#3) -> {more, 16#67, 16#0f};
521dec_huffman_lookup(16#1e, 16#4) -> {more, 16#67, 16#18};
522dec_huffman_lookup(16#1e, 16#5) -> {more, 16#67, 16#1f};
523dec_huffman_lookup(16#1e, 16#6) -> {more, 16#67, 16#29};
524dec_huffman_lookup(16#1e, 16#7) -> {ok, 16#67, 16#38};
525dec_huffman_lookup(16#1e, 16#8) -> {more, 16#68, 16#03};
526dec_huffman_lookup(16#1e, 16#9) -> {more, 16#68, 16#06};
527dec_huffman_lookup(16#1e, 16#a) -> {more, 16#68, 16#0a};
528dec_huffman_lookup(16#1e, 16#b) -> {more, 16#68, 16#0f};
529dec_huffman_lookup(16#1e, 16#c) -> {more, 16#68, 16#18};
530dec_huffman_lookup(16#1e, 16#d) -> {more, 16#68, 16#1f};
531dec_huffman_lookup(16#1e, 16#e) -> {more, 16#68, 16#29};
532dec_huffman_lookup(16#1e, 16#f) -> {ok, 16#68, 16#38};
533dec_huffman_lookup(16#1f, 16#0) -> {more, 16#6c, 16#01};
534dec_huffman_lookup(16#1f, 16#1) -> {ok, 16#6c, 16#16};
535dec_huffman_lookup(16#1f, 16#2) -> {more, 16#6d, 16#01};
536dec_huffman_lookup(16#1f, 16#3) -> {ok, 16#6d, 16#16};
537dec_huffman_lookup(16#1f, 16#4) -> {more, 16#6e, 16#01};
538dec_huffman_lookup(16#1f, 16#5) -> {ok, 16#6e, 16#16};
539dec_huffman_lookup(16#1f, 16#6) -> {more, 16#70, 16#01};
540dec_huffman_lookup(16#1f, 16#7) -> {ok, 16#70, 16#16};
541dec_huffman_lookup(16#1f, 16#8) -> {more, 16#72, 16#01};
542dec_huffman_lookup(16#1f, 16#9) -> {ok, 16#72, 16#16};
543dec_huffman_lookup(16#1f, 16#a) -> {more, 16#75, 16#01};
544dec_huffman_lookup(16#1f, 16#b) -> {ok, 16#75, 16#16};
545dec_huffman_lookup(16#1f, 16#c) -> {ok, 16#3a, 16#00};
546dec_huffman_lookup(16#1f, 16#d) -> {ok, 16#42, 16#00};
547dec_huffman_lookup(16#1f, 16#e) -> {ok, 16#43, 16#00};
548dec_huffman_lookup(16#1f, 16#f) -> {ok, 16#44, 16#00};
549dec_huffman_lookup(16#20, 16#0) -> {more, 16#6c, 16#02};
550dec_huffman_lookup(16#20, 16#1) -> {more, 16#6c, 16#09};
551dec_huffman_lookup(16#20, 16#2) -> {more, 16#6c, 16#17};
552dec_huffman_lookup(16#20, 16#3) -> {ok, 16#6c, 16#28};
553dec_huffman_lookup(16#20, 16#4) -> {more, 16#6d, 16#02};
554dec_huffman_lookup(16#20, 16#5) -> {more, 16#6d, 16#09};
555dec_huffman_lookup(16#20, 16#6) -> {more, 16#6d, 16#17};
556dec_huffman_lookup(16#20, 16#7) -> {ok, 16#6d, 16#28};
557dec_huffman_lookup(16#20, 16#8) -> {more, 16#6e, 16#02};
558dec_huffman_lookup(16#20, 16#9) -> {more, 16#6e, 16#09};
559dec_huffman_lookup(16#20, 16#a) -> {more, 16#6e, 16#17};
560dec_huffman_lookup(16#20, 16#b) -> {ok, 16#6e, 16#28};
561dec_huffman_lookup(16#20, 16#c) -> {more, 16#70, 16#02};
562dec_huffman_lookup(16#20, 16#d) -> {more, 16#70, 16#09};
563dec_huffman_lookup(16#20, 16#e) -> {more, 16#70, 16#17};
564dec_huffman_lookup(16#20, 16#f) -> {ok, 16#70, 16#28};
565dec_huffman_lookup(16#21, 16#0) -> {more, 16#6c, 16#03};
566dec_huffman_lookup(16#21, 16#1) -> {more, 16#6c, 16#06};
567dec_huffman_lookup(16#21, 16#2) -> {more, 16#6c, 16#0a};
568dec_huffman_lookup(16#21, 16#3) -> {more, 16#6c, 16#0f};
569dec_huffman_lookup(16#21, 16#4) -> {more, 16#6c, 16#18};
570dec_huffman_lookup(16#21, 16#5) -> {more, 16#6c, 16#1f};
571dec_huffman_lookup(16#21, 16#6) -> {more, 16#6c, 16#29};
572dec_huffman_lookup(16#21, 16#7) -> {ok, 16#6c, 16#38};
573dec_huffman_lookup(16#21, 16#8) -> {more, 16#6d, 16#03};
574dec_huffman_lookup(16#21, 16#9) -> {more, 16#6d, 16#06};
575dec_huffman_lookup(16#21, 16#a) -> {more, 16#6d, 16#0a};
576dec_huffman_lookup(16#21, 16#b) -> {more, 16#6d, 16#0f};
577dec_huffman_lookup(16#21, 16#c) -> {more, 16#6d, 16#18};
578dec_huffman_lookup(16#21, 16#d) -> {more, 16#6d, 16#1f};
579dec_huffman_lookup(16#21, 16#e) -> {more, 16#6d, 16#29};
580dec_huffman_lookup(16#21, 16#f) -> {ok, 16#6d, 16#38};
581dec_huffman_lookup(16#22, 16#0) -> {more, 16#6e, 16#03};
582dec_huffman_lookup(16#22, 16#1) -> {more, 16#6e, 16#06};
583dec_huffman_lookup(16#22, 16#2) -> {more, 16#6e, 16#0a};
584dec_huffman_lookup(16#22, 16#3) -> {more, 16#6e, 16#0f};
585dec_huffman_lookup(16#22, 16#4) -> {more, 16#6e, 16#18};
586dec_huffman_lookup(16#22, 16#5) -> {more, 16#6e, 16#1f};
587dec_huffman_lookup(16#22, 16#6) -> {more, 16#6e, 16#29};
588dec_huffman_lookup(16#22, 16#7) -> {ok, 16#6e, 16#38};
589dec_huffman_lookup(16#22, 16#8) -> {more, 16#70, 16#03};
590dec_huffman_lookup(16#22, 16#9) -> {more, 16#70, 16#06};
591dec_huffman_lookup(16#22, 16#a) -> {more, 16#70, 16#0a};
592dec_huffman_lookup(16#22, 16#b) -> {more, 16#70, 16#0f};
593dec_huffman_lookup(16#22, 16#c) -> {more, 16#70, 16#18};
594dec_huffman_lookup(16#22, 16#d) -> {more, 16#70, 16#1f};
595dec_huffman_lookup(16#22, 16#e) -> {more, 16#70, 16#29};
596dec_huffman_lookup(16#22, 16#f) -> {ok, 16#70, 16#38};
597dec_huffman_lookup(16#23, 16#0) -> {more, 16#72, 16#02};
598dec_huffman_lookup(16#23, 16#1) -> {more, 16#72, 16#09};
599dec_huffman_lookup(16#23, 16#2) -> {more, 16#72, 16#17};
600dec_huffman_lookup(16#23, 16#3) -> {ok, 16#72, 16#28};
601dec_huffman_lookup(16#23, 16#4) -> {more, 16#75, 16#02};
602dec_huffman_lookup(16#23, 16#5) -> {more, 16#75, 16#09};
603dec_huffman_lookup(16#23, 16#6) -> {more, 16#75, 16#17};
604dec_huffman_lookup(16#23, 16#7) -> {ok, 16#75, 16#28};
605dec_huffman_lookup(16#23, 16#8) -> {more, 16#3a, 16#01};
606dec_huffman_lookup(16#23, 16#9) -> {ok, 16#3a, 16#16};
607dec_huffman_lookup(16#23, 16#a) -> {more, 16#42, 16#01};
608dec_huffman_lookup(16#23, 16#b) -> {ok, 16#42, 16#16};
609dec_huffman_lookup(16#23, 16#c) -> {more, 16#43, 16#01};
610dec_huffman_lookup(16#23, 16#d) -> {ok, 16#43, 16#16};
611dec_huffman_lookup(16#23, 16#e) -> {more, 16#44, 16#01};
612dec_huffman_lookup(16#23, 16#f) -> {ok, 16#44, 16#16};
613dec_huffman_lookup(16#24, 16#0) -> {more, 16#72, 16#03};
614dec_huffman_lookup(16#24, 16#1) -> {more, 16#72, 16#06};
615dec_huffman_lookup(16#24, 16#2) -> {more, 16#72, 16#0a};
616dec_huffman_lookup(16#24, 16#3) -> {more, 16#72, 16#0f};
617dec_huffman_lookup(16#24, 16#4) -> {more, 16#72, 16#18};
618dec_huffman_lookup(16#24, 16#5) -> {more, 16#72, 16#1f};
619dec_huffman_lookup(16#24, 16#6) -> {more, 16#72, 16#29};
620dec_huffman_lookup(16#24, 16#7) -> {ok, 16#72, 16#38};
621dec_huffman_lookup(16#24, 16#8) -> {more, 16#75, 16#03};
622dec_huffman_lookup(16#24, 16#9) -> {more, 16#75, 16#06};
623dec_huffman_lookup(16#24, 16#a) -> {more, 16#75, 16#0a};
624dec_huffman_lookup(16#24, 16#b) -> {more, 16#75, 16#0f};
625dec_huffman_lookup(16#24, 16#c) -> {more, 16#75, 16#18};
626dec_huffman_lookup(16#24, 16#d) -> {more, 16#75, 16#1f};
627dec_huffman_lookup(16#24, 16#e) -> {more, 16#75, 16#29};
628dec_huffman_lookup(16#24, 16#f) -> {ok, 16#75, 16#38};
629dec_huffman_lookup(16#25, 16#0) -> {more, 16#3a, 16#02};
630dec_huffman_lookup(16#25, 16#1) -> {more, 16#3a, 16#09};
631dec_huffman_lookup(16#25, 16#2) -> {more, 16#3a, 16#17};
632dec_huffman_lookup(16#25, 16#3) -> {ok, 16#3a, 16#28};
633dec_huffman_lookup(16#25, 16#4) -> {more, 16#42, 16#02};
634dec_huffman_lookup(16#25, 16#5) -> {more, 16#42, 16#09};
635dec_huffman_lookup(16#25, 16#6) -> {more, 16#42, 16#17};
636dec_huffman_lookup(16#25, 16#7) -> {ok, 16#42, 16#28};
637dec_huffman_lookup(16#25, 16#8) -> {more, 16#43, 16#02};
638dec_huffman_lookup(16#25, 16#9) -> {more, 16#43, 16#09};
639dec_huffman_lookup(16#25, 16#a) -> {more, 16#43, 16#17};
640dec_huffman_lookup(16#25, 16#b) -> {ok, 16#43, 16#28};
641dec_huffman_lookup(16#25, 16#c) -> {more, 16#44, 16#02};
642dec_huffman_lookup(16#25, 16#d) -> {more, 16#44, 16#09};
643dec_huffman_lookup(16#25, 16#e) -> {more, 16#44, 16#17};
644dec_huffman_lookup(16#25, 16#f) -> {ok, 16#44, 16#28};
645dec_huffman_lookup(16#26, 16#0) -> {more, 16#3a, 16#03};
646dec_huffman_lookup(16#26, 16#1) -> {more, 16#3a, 16#06};
647dec_huffman_lookup(16#26, 16#2) -> {more, 16#3a, 16#0a};
648dec_huffman_lookup(16#26, 16#3) -> {more, 16#3a, 16#0f};
649dec_huffman_lookup(16#26, 16#4) -> {more, 16#3a, 16#18};
650dec_huffman_lookup(16#26, 16#5) -> {more, 16#3a, 16#1f};
651dec_huffman_lookup(16#26, 16#6) -> {more, 16#3a, 16#29};
652dec_huffman_lookup(16#26, 16#7) -> {ok, 16#3a, 16#38};
653dec_huffman_lookup(16#26, 16#8) -> {more, 16#42, 16#03};
654dec_huffman_lookup(16#26, 16#9) -> {more, 16#42, 16#06};
655dec_huffman_lookup(16#26, 16#a) -> {more, 16#42, 16#0a};
656dec_huffman_lookup(16#26, 16#b) -> {more, 16#42, 16#0f};
657dec_huffman_lookup(16#26, 16#c) -> {more, 16#42, 16#18};
658dec_huffman_lookup(16#26, 16#d) -> {more, 16#42, 16#1f};
659dec_huffman_lookup(16#26, 16#e) -> {more, 16#42, 16#29};
660dec_huffman_lookup(16#26, 16#f) -> {ok, 16#42, 16#38};
661dec_huffman_lookup(16#27, 16#0) -> {more, 16#43, 16#03};
662dec_huffman_lookup(16#27, 16#1) -> {more, 16#43, 16#06};
663dec_huffman_lookup(16#27, 16#2) -> {more, 16#43, 16#0a};
664dec_huffman_lookup(16#27, 16#3) -> {more, 16#43, 16#0f};
665dec_huffman_lookup(16#27, 16#4) -> {more, 16#43, 16#18};
666dec_huffman_lookup(16#27, 16#5) -> {more, 16#43, 16#1f};
667dec_huffman_lookup(16#27, 16#6) -> {more, 16#43, 16#29};
668dec_huffman_lookup(16#27, 16#7) -> {ok, 16#43, 16#38};
669dec_huffman_lookup(16#27, 16#8) -> {more, 16#44, 16#03};
670dec_huffman_lookup(16#27, 16#9) -> {more, 16#44, 16#06};
671dec_huffman_lookup(16#27, 16#a) -> {more, 16#44, 16#0a};
672dec_huffman_lookup(16#27, 16#b) -> {more, 16#44, 16#0f};
673dec_huffman_lookup(16#27, 16#c) -> {more, 16#44, 16#18};
674dec_huffman_lookup(16#27, 16#d) -> {more, 16#44, 16#1f};
675dec_huffman_lookup(16#27, 16#e) -> {more, 16#44, 16#29};
676dec_huffman_lookup(16#27, 16#f) -> {ok, 16#44, 16#38};
677dec_huffman_lookup(16#28, 16#0) -> {more, undefined, 16#2c};
678dec_huffman_lookup(16#28, 16#1) -> {more, undefined, 16#2d};
679dec_huffman_lookup(16#28, 16#2) -> {more, undefined, 16#2f};
680dec_huffman_lookup(16#28, 16#3) -> {more, undefined, 16#30};
681dec_huffman_lookup(16#28, 16#4) -> {more, undefined, 16#33};
682dec_huffman_lookup(16#28, 16#5) -> {more, undefined, 16#34};
683dec_huffman_lookup(16#28, 16#6) -> {more, undefined, 16#36};
684dec_huffman_lookup(16#28, 16#7) -> {more, undefined, 16#37};
685dec_huffman_lookup(16#28, 16#8) -> {more, undefined, 16#3b};
686dec_huffman_lookup(16#28, 16#9) -> {more, undefined, 16#3c};
687dec_huffman_lookup(16#28, 16#a) -> {more, undefined, 16#3e};
688dec_huffman_lookup(16#28, 16#b) -> {more, undefined, 16#3f};
689dec_huffman_lookup(16#28, 16#c) -> {more, undefined, 16#42};
690dec_huffman_lookup(16#28, 16#d) -> {more, undefined, 16#43};
691dec_huffman_lookup(16#28, 16#e) -> {more, undefined, 16#45};
692dec_huffman_lookup(16#28, 16#f) -> {ok, undefined, 16#48};
693dec_huffman_lookup(16#29, 16#0) -> {ok, 16#45, 16#00};
694dec_huffman_lookup(16#29, 16#1) -> {ok, 16#46, 16#00};
695dec_huffman_lookup(16#29, 16#2) -> {ok, 16#47, 16#00};
696dec_huffman_lookup(16#29, 16#3) -> {ok, 16#48, 16#00};
697dec_huffman_lookup(16#29, 16#4) -> {ok, 16#49, 16#00};
698dec_huffman_lookup(16#29, 16#5) -> {ok, 16#4a, 16#00};
699dec_huffman_lookup(16#29, 16#6) -> {ok, 16#4b, 16#00};
700dec_huffman_lookup(16#29, 16#7) -> {ok, 16#4c, 16#00};
701dec_huffman_lookup(16#29, 16#8) -> {ok, 16#4d, 16#00};
702dec_huffman_lookup(16#29, 16#9) -> {ok, 16#4e, 16#00};
703dec_huffman_lookup(16#29, 16#a) -> {ok, 16#4f, 16#00};
704dec_huffman_lookup(16#29, 16#b) -> {ok, 16#50, 16#00};
705dec_huffman_lookup(16#29, 16#c) -> {ok, 16#51, 16#00};
706dec_huffman_lookup(16#29, 16#d) -> {ok, 16#52, 16#00};
707dec_huffman_lookup(16#29, 16#e) -> {ok, 16#53, 16#00};
708dec_huffman_lookup(16#29, 16#f) -> {ok, 16#54, 16#00};
709dec_huffman_lookup(16#2a, 16#0) -> {more, 16#45, 16#01};
710dec_huffman_lookup(16#2a, 16#1) -> {ok, 16#45, 16#16};
711dec_huffman_lookup(16#2a, 16#2) -> {more, 16#46, 16#01};
712dec_huffman_lookup(16#2a, 16#3) -> {ok, 16#46, 16#16};
713dec_huffman_lookup(16#2a, 16#4) -> {more, 16#47, 16#01};
714dec_huffman_lookup(16#2a, 16#5) -> {ok, 16#47, 16#16};
715dec_huffman_lookup(16#2a, 16#6) -> {more, 16#48, 16#01};
716dec_huffman_lookup(16#2a, 16#7) -> {ok, 16#48, 16#16};
717dec_huffman_lookup(16#2a, 16#8) -> {more, 16#49, 16#01};
718dec_huffman_lookup(16#2a, 16#9) -> {ok, 16#49, 16#16};
719dec_huffman_lookup(16#2a, 16#a) -> {more, 16#4a, 16#01};
720dec_huffman_lookup(16#2a, 16#b) -> {ok, 16#4a, 16#16};
721dec_huffman_lookup(16#2a, 16#c) -> {more, 16#4b, 16#01};
722dec_huffman_lookup(16#2a, 16#d) -> {ok, 16#4b, 16#16};
723dec_huffman_lookup(16#2a, 16#e) -> {more, 16#4c, 16#01};
724dec_huffman_lookup(16#2a, 16#f) -> {ok, 16#4c, 16#16};
725dec_huffman_lookup(16#2b, 16#0) -> {more, 16#45, 16#02};
726dec_huffman_lookup(16#2b, 16#1) -> {more, 16#45, 16#09};
727dec_huffman_lookup(16#2b, 16#2) -> {more, 16#45, 16#17};
728dec_huffman_lookup(16#2b, 16#3) -> {ok, 16#45, 16#28};
729dec_huffman_lookup(16#2b, 16#4) -> {more, 16#46, 16#02};
730dec_huffman_lookup(16#2b, 16#5) -> {more, 16#46, 16#09};
731dec_huffman_lookup(16#2b, 16#6) -> {more, 16#46, 16#17};
732dec_huffman_lookup(16#2b, 16#7) -> {ok, 16#46, 16#28};
733dec_huffman_lookup(16#2b, 16#8) -> {more, 16#47, 16#02};
734dec_huffman_lookup(16#2b, 16#9) -> {more, 16#47, 16#09};
735dec_huffman_lookup(16#2b, 16#a) -> {more, 16#47, 16#17};
736dec_huffman_lookup(16#2b, 16#b) -> {ok, 16#47, 16#28};
737dec_huffman_lookup(16#2b, 16#c) -> {more, 16#48, 16#02};
738dec_huffman_lookup(16#2b, 16#d) -> {more, 16#48, 16#09};
739dec_huffman_lookup(16#2b, 16#e) -> {more, 16#48, 16#17};
740dec_huffman_lookup(16#2b, 16#f) -> {ok, 16#48, 16#28};
741dec_huffman_lookup(16#2c, 16#0) -> {more, 16#45, 16#03};
742dec_huffman_lookup(16#2c, 16#1) -> {more, 16#45, 16#06};
743dec_huffman_lookup(16#2c, 16#2) -> {more, 16#45, 16#0a};
744dec_huffman_lookup(16#2c, 16#3) -> {more, 16#45, 16#0f};
745dec_huffman_lookup(16#2c, 16#4) -> {more, 16#45, 16#18};
746dec_huffman_lookup(16#2c, 16#5) -> {more, 16#45, 16#1f};
747dec_huffman_lookup(16#2c, 16#6) -> {more, 16#45, 16#29};
748dec_huffman_lookup(16#2c, 16#7) -> {ok, 16#45, 16#38};
749dec_huffman_lookup(16#2c, 16#8) -> {more, 16#46, 16#03};
750dec_huffman_lookup(16#2c, 16#9) -> {more, 16#46, 16#06};
751dec_huffman_lookup(16#2c, 16#a) -> {more, 16#46, 16#0a};
752dec_huffman_lookup(16#2c, 16#b) -> {more, 16#46, 16#0f};
753dec_huffman_lookup(16#2c, 16#c) -> {more, 16#46, 16#18};
754dec_huffman_lookup(16#2c, 16#d) -> {more, 16#46, 16#1f};
755dec_huffman_lookup(16#2c, 16#e) -> {more, 16#46, 16#29};
756dec_huffman_lookup(16#2c, 16#f) -> {ok, 16#46, 16#38};
757dec_huffman_lookup(16#2d, 16#0) -> {more, 16#47, 16#03};
758dec_huffman_lookup(16#2d, 16#1) -> {more, 16#47, 16#06};
759dec_huffman_lookup(16#2d, 16#2) -> {more, 16#47, 16#0a};
760dec_huffman_lookup(16#2d, 16#3) -> {more, 16#47, 16#0f};
761dec_huffman_lookup(16#2d, 16#4) -> {more, 16#47, 16#18};
762dec_huffman_lookup(16#2d, 16#5) -> {more, 16#47, 16#1f};
763dec_huffman_lookup(16#2d, 16#6) -> {more, 16#47, 16#29};
764dec_huffman_lookup(16#2d, 16#7) -> {ok, 16#47, 16#38};
765dec_huffman_lookup(16#2d, 16#8) -> {more, 16#48, 16#03};
766dec_huffman_lookup(16#2d, 16#9) -> {more, 16#48, 16#06};
767dec_huffman_lookup(16#2d, 16#a) -> {more, 16#48, 16#0a};
768dec_huffman_lookup(16#2d, 16#b) -> {more, 16#48, 16#0f};
769dec_huffman_lookup(16#2d, 16#c) -> {more, 16#48, 16#18};
770dec_huffman_lookup(16#2d, 16#d) -> {more, 16#48, 16#1f};
771dec_huffman_lookup(16#2d, 16#e) -> {more, 16#48, 16#29};
772dec_huffman_lookup(16#2d, 16#f) -> {ok, 16#48, 16#38};
773dec_huffman_lookup(16#2e, 16#0) -> {more, 16#49, 16#02};
774dec_huffman_lookup(16#2e, 16#1) -> {more, 16#49, 16#09};
775dec_huffman_lookup(16#2e, 16#2) -> {more, 16#49, 16#17};
776dec_huffman_lookup(16#2e, 16#3) -> {ok, 16#49, 16#28};
777dec_huffman_lookup(16#2e, 16#4) -> {more, 16#4a, 16#02};
778dec_huffman_lookup(16#2e, 16#5) -> {more, 16#4a, 16#09};
779dec_huffman_lookup(16#2e, 16#6) -> {more, 16#4a, 16#17};
780dec_huffman_lookup(16#2e, 16#7) -> {ok, 16#4a, 16#28};
781dec_huffman_lookup(16#2e, 16#8) -> {more, 16#4b, 16#02};
782dec_huffman_lookup(16#2e, 16#9) -> {more, 16#4b, 16#09};
783dec_huffman_lookup(16#2e, 16#a) -> {more, 16#4b, 16#17};
784dec_huffman_lookup(16#2e, 16#b) -> {ok, 16#4b, 16#28};
785dec_huffman_lookup(16#2e, 16#c) -> {more, 16#4c, 16#02};
786dec_huffman_lookup(16#2e, 16#d) -> {more, 16#4c, 16#09};
787dec_huffman_lookup(16#2e, 16#e) -> {more, 16#4c, 16#17};
788dec_huffman_lookup(16#2e, 16#f) -> {ok, 16#4c, 16#28};
789dec_huffman_lookup(16#2f, 16#0) -> {more, 16#49, 16#03};
790dec_huffman_lookup(16#2f, 16#1) -> {more, 16#49, 16#06};
791dec_huffman_lookup(16#2f, 16#2) -> {more, 16#49, 16#0a};
792dec_huffman_lookup(16#2f, 16#3) -> {more, 16#49, 16#0f};
793dec_huffman_lookup(16#2f, 16#4) -> {more, 16#49, 16#18};
794dec_huffman_lookup(16#2f, 16#5) -> {more, 16#49, 16#1f};
795dec_huffman_lookup(16#2f, 16#6) -> {more, 16#49, 16#29};
796dec_huffman_lookup(16#2f, 16#7) -> {ok, 16#49, 16#38};
797dec_huffman_lookup(16#2f, 16#8) -> {more, 16#4a, 16#03};
798dec_huffman_lookup(16#2f, 16#9) -> {more, 16#4a, 16#06};
799dec_huffman_lookup(16#2f, 16#a) -> {more, 16#4a, 16#0a};
800dec_huffman_lookup(16#2f, 16#b) -> {more, 16#4a, 16#0f};
801dec_huffman_lookup(16#2f, 16#c) -> {more, 16#4a, 16#18};
802dec_huffman_lookup(16#2f, 16#d) -> {more, 16#4a, 16#1f};
803dec_huffman_lookup(16#2f, 16#e) -> {more, 16#4a, 16#29};
804dec_huffman_lookup(16#2f, 16#f) -> {ok, 16#4a, 16#38};
805dec_huffman_lookup(16#30, 16#0) -> {more, 16#4b, 16#03};
806dec_huffman_lookup(16#30, 16#1) -> {more, 16#4b, 16#06};
807dec_huffman_lookup(16#30, 16#2) -> {more, 16#4b, 16#0a};
808dec_huffman_lookup(16#30, 16#3) -> {more, 16#4b, 16#0f};
809dec_huffman_lookup(16#30, 16#4) -> {more, 16#4b, 16#18};
810dec_huffman_lookup(16#30, 16#5) -> {more, 16#4b, 16#1f};
811dec_huffman_lookup(16#30, 16#6) -> {more, 16#4b, 16#29};
812dec_huffman_lookup(16#30, 16#7) -> {ok, 16#4b, 16#38};
813dec_huffman_lookup(16#30, 16#8) -> {more, 16#4c, 16#03};
814dec_huffman_lookup(16#30, 16#9) -> {more, 16#4c, 16#06};
815dec_huffman_lookup(16#30, 16#a) -> {more, 16#4c, 16#0a};
816dec_huffman_lookup(16#30, 16#b) -> {more, 16#4c, 16#0f};
817dec_huffman_lookup(16#30, 16#c) -> {more, 16#4c, 16#18};
818dec_huffman_lookup(16#30, 16#d) -> {more, 16#4c, 16#1f};
819dec_huffman_lookup(16#30, 16#e) -> {more, 16#4c, 16#29};
820dec_huffman_lookup(16#30, 16#f) -> {ok, 16#4c, 16#38};
821dec_huffman_lookup(16#31, 16#0) -> {more, 16#4d, 16#01};
822dec_huffman_lookup(16#31, 16#1) -> {ok, 16#4d, 16#16};
823dec_huffman_lookup(16#31, 16#2) -> {more, 16#4e, 16#01};
824dec_huffman_lookup(16#31, 16#3) -> {ok, 16#4e, 16#16};
825dec_huffman_lookup(16#31, 16#4) -> {more, 16#4f, 16#01};
826dec_huffman_lookup(16#31, 16#5) -> {ok, 16#4f, 16#16};
827dec_huffman_lookup(16#31, 16#6) -> {more, 16#50, 16#01};
828dec_huffman_lookup(16#31, 16#7) -> {ok, 16#50, 16#16};
829dec_huffman_lookup(16#31, 16#8) -> {more, 16#51, 16#01};
830dec_huffman_lookup(16#31, 16#9) -> {ok, 16#51, 16#16};
831dec_huffman_lookup(16#31, 16#a) -> {more, 16#52, 16#01};
832dec_huffman_lookup(16#31, 16#b) -> {ok, 16#52, 16#16};
833dec_huffman_lookup(16#31, 16#c) -> {more, 16#53, 16#01};
834dec_huffman_lookup(16#31, 16#d) -> {ok, 16#53, 16#16};
835dec_huffman_lookup(16#31, 16#e) -> {more, 16#54, 16#01};
836dec_huffman_lookup(16#31, 16#f) -> {ok, 16#54, 16#16};
837dec_huffman_lookup(16#32, 16#0) -> {more, 16#4d, 16#02};
838dec_huffman_lookup(16#32, 16#1) -> {more, 16#4d, 16#09};
839dec_huffman_lookup(16#32, 16#2) -> {more, 16#4d, 16#17};
840dec_huffman_lookup(16#32, 16#3) -> {ok, 16#4d, 16#28};
841dec_huffman_lookup(16#32, 16#4) -> {more, 16#4e, 16#02};
842dec_huffman_lookup(16#32, 16#5) -> {more, 16#4e, 16#09};
843dec_huffman_lookup(16#32, 16#6) -> {more, 16#4e, 16#17};
844dec_huffman_lookup(16#32, 16#7) -> {ok, 16#4e, 16#28};
845dec_huffman_lookup(16#32, 16#8) -> {more, 16#4f, 16#02};
846dec_huffman_lookup(16#32, 16#9) -> {more, 16#4f, 16#09};
847dec_huffman_lookup(16#32, 16#a) -> {more, 16#4f, 16#17};
848dec_huffman_lookup(16#32, 16#b) -> {ok, 16#4f, 16#28};
849dec_huffman_lookup(16#32, 16#c) -> {more, 16#50, 16#02};
850dec_huffman_lookup(16#32, 16#d) -> {more, 16#50, 16#09};
851dec_huffman_lookup(16#32, 16#e) -> {more, 16#50, 16#17};
852dec_huffman_lookup(16#32, 16#f) -> {ok, 16#50, 16#28};
853dec_huffman_lookup(16#33, 16#0) -> {more, 16#4d, 16#03};
854dec_huffman_lookup(16#33, 16#1) -> {more, 16#4d, 16#06};
855dec_huffman_lookup(16#33, 16#2) -> {more, 16#4d, 16#0a};
856dec_huffman_lookup(16#33, 16#3) -> {more, 16#4d, 16#0f};
857dec_huffman_lookup(16#33, 16#4) -> {more, 16#4d, 16#18};
858dec_huffman_lookup(16#33, 16#5) -> {more, 16#4d, 16#1f};
859dec_huffman_lookup(16#33, 16#6) -> {more, 16#4d, 16#29};
860dec_huffman_lookup(16#33, 16#7) -> {ok, 16#4d, 16#38};
861dec_huffman_lookup(16#33, 16#8) -> {more, 16#4e, 16#03};
862dec_huffman_lookup(16#33, 16#9) -> {more, 16#4e, 16#06};
863dec_huffman_lookup(16#33, 16#a) -> {more, 16#4e, 16#0a};
864dec_huffman_lookup(16#33, 16#b) -> {more, 16#4e, 16#0f};
865dec_huffman_lookup(16#33, 16#c) -> {more, 16#4e, 16#18};
866dec_huffman_lookup(16#33, 16#d) -> {more, 16#4e, 16#1f};
867dec_huffman_lookup(16#33, 16#e) -> {more, 16#4e, 16#29};
868dec_huffman_lookup(16#33, 16#f) -> {ok, 16#4e, 16#38};
869dec_huffman_lookup(16#34, 16#0) -> {more, 16#4f, 16#03};
870dec_huffman_lookup(16#34, 16#1) -> {more, 16#4f, 16#06};
871dec_huffman_lookup(16#34, 16#2) -> {more, 16#4f, 16#0a};
872dec_huffman_lookup(16#34, 16#3) -> {more, 16#4f, 16#0f};
873dec_huffman_lookup(16#34, 16#4) -> {more, 16#4f, 16#18};
874dec_huffman_lookup(16#34, 16#5) -> {more, 16#4f, 16#1f};
875dec_huffman_lookup(16#34, 16#6) -> {more, 16#4f, 16#29};
876dec_huffman_lookup(16#34, 16#7) -> {ok, 16#4f, 16#38};
877dec_huffman_lookup(16#34, 16#8) -> {more, 16#50, 16#03};
878dec_huffman_lookup(16#34, 16#9) -> {more, 16#50, 16#06};
879dec_huffman_lookup(16#34, 16#a) -> {more, 16#50, 16#0a};
880dec_huffman_lookup(16#34, 16#b) -> {more, 16#50, 16#0f};
881dec_huffman_lookup(16#34, 16#c) -> {more, 16#50, 16#18};
882dec_huffman_lookup(16#34, 16#d) -> {more, 16#50, 16#1f};
883dec_huffman_lookup(16#34, 16#e) -> {more, 16#50, 16#29};
884dec_huffman_lookup(16#34, 16#f) -> {ok, 16#50, 16#38};
885dec_huffman_lookup(16#35, 16#0) -> {more, 16#51, 16#02};
886dec_huffman_lookup(16#35, 16#1) -> {more, 16#51, 16#09};
887dec_huffman_lookup(16#35, 16#2) -> {more, 16#51, 16#17};
888dec_huffman_lookup(16#35, 16#3) -> {ok, 16#51, 16#28};
889dec_huffman_lookup(16#35, 16#4) -> {more, 16#52, 16#02};
890dec_huffman_lookup(16#35, 16#5) -> {more, 16#52, 16#09};
891dec_huffman_lookup(16#35, 16#6) -> {more, 16#52, 16#17};
892dec_huffman_lookup(16#35, 16#7) -> {ok, 16#52, 16#28};
893dec_huffman_lookup(16#35, 16#8) -> {more, 16#53, 16#02};
894dec_huffman_lookup(16#35, 16#9) -> {more, 16#53, 16#09};
895dec_huffman_lookup(16#35, 16#a) -> {more, 16#53, 16#17};
896dec_huffman_lookup(16#35, 16#b) -> {ok, 16#53, 16#28};
897dec_huffman_lookup(16#35, 16#c) -> {more, 16#54, 16#02};
898dec_huffman_lookup(16#35, 16#d) -> {more, 16#54, 16#09};
899dec_huffman_lookup(16#35, 16#e) -> {more, 16#54, 16#17};
900dec_huffman_lookup(16#35, 16#f) -> {ok, 16#54, 16#28};
901dec_huffman_lookup(16#36, 16#0) -> {more, 16#51, 16#03};
902dec_huffman_lookup(16#36, 16#1) -> {more, 16#51, 16#06};
903dec_huffman_lookup(16#36, 16#2) -> {more, 16#51, 16#0a};
904dec_huffman_lookup(16#36, 16#3) -> {more, 16#51, 16#0f};
905dec_huffman_lookup(16#36, 16#4) -> {more, 16#51, 16#18};
906dec_huffman_lookup(16#36, 16#5) -> {more, 16#51, 16#1f};
907dec_huffman_lookup(16#36, 16#6) -> {more, 16#51, 16#29};
908dec_huffman_lookup(16#36, 16#7) -> {ok, 16#51, 16#38};
909dec_huffman_lookup(16#36, 16#8) -> {more, 16#52, 16#03};
910dec_huffman_lookup(16#36, 16#9) -> {more, 16#52, 16#06};
911dec_huffman_lookup(16#36, 16#a) -> {more, 16#52, 16#0a};
912dec_huffman_lookup(16#36, 16#b) -> {more, 16#52, 16#0f};
913dec_huffman_lookup(16#36, 16#c) -> {more, 16#52, 16#18};
914dec_huffman_lookup(16#36, 16#d) -> {more, 16#52, 16#1f};
915dec_huffman_lookup(16#36, 16#e) -> {more, 16#52, 16#29};
916dec_huffman_lookup(16#36, 16#f) -> {ok, 16#52, 16#38};
917dec_huffman_lookup(16#37, 16#0) -> {more, 16#53, 16#03};
918dec_huffman_lookup(16#37, 16#1) -> {more, 16#53, 16#06};
919dec_huffman_lookup(16#37, 16#2) -> {more, 16#53, 16#0a};
920dec_huffman_lookup(16#37, 16#3) -> {more, 16#53, 16#0f};
921dec_huffman_lookup(16#37, 16#4) -> {more, 16#53, 16#18};
922dec_huffman_lookup(16#37, 16#5) -> {more, 16#53, 16#1f};
923dec_huffman_lookup(16#37, 16#6) -> {more, 16#53, 16#29};
924dec_huffman_lookup(16#37, 16#7) -> {ok, 16#53, 16#38};
925dec_huffman_lookup(16#37, 16#8) -> {more, 16#54, 16#03};
926dec_huffman_lookup(16#37, 16#9) -> {more, 16#54, 16#06};
927dec_huffman_lookup(16#37, 16#a) -> {more, 16#54, 16#0a};
928dec_huffman_lookup(16#37, 16#b) -> {more, 16#54, 16#0f};
929dec_huffman_lookup(16#37, 16#c) -> {more, 16#54, 16#18};
930dec_huffman_lookup(16#37, 16#d) -> {more, 16#54, 16#1f};
931dec_huffman_lookup(16#37, 16#e) -> {more, 16#54, 16#29};
932dec_huffman_lookup(16#37, 16#f) -> {ok, 16#54, 16#38};
933dec_huffman_lookup(16#38, 16#0) -> {ok, 16#55, 16#00};
934dec_huffman_lookup(16#38, 16#1) -> {ok, 16#56, 16#00};
935dec_huffman_lookup(16#38, 16#2) -> {ok, 16#57, 16#00};
936dec_huffman_lookup(16#38, 16#3) -> {ok, 16#59, 16#00};
937dec_huffman_lookup(16#38, 16#4) -> {ok, 16#6a, 16#00};
938dec_huffman_lookup(16#38, 16#5) -> {ok, 16#6b, 16#00};
939dec_huffman_lookup(16#38, 16#6) -> {ok, 16#71, 16#00};
940dec_huffman_lookup(16#38, 16#7) -> {ok, 16#76, 16#00};
941dec_huffman_lookup(16#38, 16#8) -> {ok, 16#77, 16#00};
942dec_huffman_lookup(16#38, 16#9) -> {ok, 16#78, 16#00};
943dec_huffman_lookup(16#38, 16#a) -> {ok, 16#79, 16#00};
944dec_huffman_lookup(16#38, 16#b) -> {ok, 16#7a, 16#00};
945dec_huffman_lookup(16#38, 16#c) -> {more, undefined, 16#46};
946dec_huffman_lookup(16#38, 16#d) -> {more, undefined, 16#47};
947dec_huffman_lookup(16#38, 16#e) -> {more, undefined, 16#49};
948dec_huffman_lookup(16#38, 16#f) -> {ok, undefined, 16#4a};
949dec_huffman_lookup(16#39, 16#0) -> {more, 16#55, 16#01};
950dec_huffman_lookup(16#39, 16#1) -> {ok, 16#55, 16#16};
951dec_huffman_lookup(16#39, 16#2) -> {more, 16#56, 16#01};
952dec_huffman_lookup(16#39, 16#3) -> {ok, 16#56, 16#16};
953dec_huffman_lookup(16#39, 16#4) -> {more, 16#57, 16#01};
954dec_huffman_lookup(16#39, 16#5) -> {ok, 16#57, 16#16};
955dec_huffman_lookup(16#39, 16#6) -> {more, 16#59, 16#01};
956dec_huffman_lookup(16#39, 16#7) -> {ok, 16#59, 16#16};
957dec_huffman_lookup(16#39, 16#8) -> {more, 16#6a, 16#01};
958dec_huffman_lookup(16#39, 16#9) -> {ok, 16#6a, 16#16};
959dec_huffman_lookup(16#39, 16#a) -> {more, 16#6b, 16#01};
960dec_huffman_lookup(16#39, 16#b) -> {ok, 16#6b, 16#16};
961dec_huffman_lookup(16#39, 16#c) -> {more, 16#71, 16#01};
962dec_huffman_lookup(16#39, 16#d) -> {ok, 16#71, 16#16};
963dec_huffman_lookup(16#39, 16#e) -> {more, 16#76, 16#01};
964dec_huffman_lookup(16#39, 16#f) -> {ok, 16#76, 16#16};
965dec_huffman_lookup(16#3a, 16#0) -> {more, 16#55, 16#02};
966dec_huffman_lookup(16#3a, 16#1) -> {more, 16#55, 16#09};
967dec_huffman_lookup(16#3a, 16#2) -> {more, 16#55, 16#17};
968dec_huffman_lookup(16#3a, 16#3) -> {ok, 16#55, 16#28};
969dec_huffman_lookup(16#3a, 16#4) -> {more, 16#56, 16#02};
970dec_huffman_lookup(16#3a, 16#5) -> {more, 16#56, 16#09};
971dec_huffman_lookup(16#3a, 16#6) -> {more, 16#56, 16#17};
972dec_huffman_lookup(16#3a, 16#7) -> {ok, 16#56, 16#28};
973dec_huffman_lookup(16#3a, 16#8) -> {more, 16#57, 16#02};
974dec_huffman_lookup(16#3a, 16#9) -> {more, 16#57, 16#09};
975dec_huffman_lookup(16#3a, 16#a) -> {more, 16#57, 16#17};
976dec_huffman_lookup(16#3a, 16#b) -> {ok, 16#57, 16#28};
977dec_huffman_lookup(16#3a, 16#c) -> {more, 16#59, 16#02};
978dec_huffman_lookup(16#3a, 16#d) -> {more, 16#59, 16#09};
979dec_huffman_lookup(16#3a, 16#e) -> {more, 16#59, 16#17};
980dec_huffman_lookup(16#3a, 16#f) -> {ok, 16#59, 16#28};
981dec_huffman_lookup(16#3b, 16#0) -> {more, 16#55, 16#03};
982dec_huffman_lookup(16#3b, 16#1) -> {more, 16#55, 16#06};
983dec_huffman_lookup(16#3b, 16#2) -> {more, 16#55, 16#0a};
984dec_huffman_lookup(16#3b, 16#3) -> {more, 16#55, 16#0f};
985dec_huffman_lookup(16#3b, 16#4) -> {more, 16#55, 16#18};
986dec_huffman_lookup(16#3b, 16#5) -> {more, 16#55, 16#1f};
987dec_huffman_lookup(16#3b, 16#6) -> {more, 16#55, 16#29};
988dec_huffman_lookup(16#3b, 16#7) -> {ok, 16#55, 16#38};
989dec_huffman_lookup(16#3b, 16#8) -> {more, 16#56, 16#03};
990dec_huffman_lookup(16#3b, 16#9) -> {more, 16#56, 16#06};
991dec_huffman_lookup(16#3b, 16#a) -> {more, 16#56, 16#0a};
992dec_huffman_lookup(16#3b, 16#b) -> {more, 16#56, 16#0f};
993dec_huffman_lookup(16#3b, 16#c) -> {more, 16#56, 16#18};
994dec_huffman_lookup(16#3b, 16#d) -> {more, 16#56, 16#1f};
995dec_huffman_lookup(16#3b, 16#e) -> {more, 16#56, 16#29};
996dec_huffman_lookup(16#3b, 16#f) -> {ok, 16#56, 16#38};
997dec_huffman_lookup(16#3c, 16#0) -> {more, 16#57, 16#03};
998dec_huffman_lookup(16#3c, 16#1) -> {more, 16#57, 16#06};
999dec_huffman_lookup(16#3c, 16#2) -> {more, 16#57, 16#0a};
1000dec_huffman_lookup(16#3c, 16#3) -> {more, 16#57, 16#0f};
1001dec_huffman_lookup(16#3c, 16#4) -> {more, 16#57, 16#18};
1002dec_huffman_lookup(16#3c, 16#5) -> {more, 16#57, 16#1f};
1003dec_huffman_lookup(16#3c, 16#6) -> {more, 16#57, 16#29};
1004dec_huffman_lookup(16#3c, 16#7) -> {ok, 16#57, 16#38};
1005dec_huffman_lookup(16#3c, 16#8) -> {more, 16#59, 16#03};
1006dec_huffman_lookup(16#3c, 16#9) -> {more, 16#59, 16#06};
1007dec_huffman_lookup(16#3c, 16#a) -> {more, 16#59, 16#0a};
1008dec_huffman_lookup(16#3c, 16#b) -> {more, 16#59, 16#0f};
1009dec_huffman_lookup(16#3c, 16#c) -> {more, 16#59, 16#18};
1010dec_huffman_lookup(16#3c, 16#d) -> {more, 16#59, 16#1f};
1011dec_huffman_lookup(16#3c, 16#e) -> {more, 16#59, 16#29};
1012dec_huffman_lookup(16#3c, 16#f) -> {ok, 16#59, 16#38};
1013dec_huffman_lookup(16#3d, 16#0) -> {more, 16#6a, 16#02};
1014dec_huffman_lookup(16#3d, 16#1) -> {more, 16#6a, 16#09};
1015dec_huffman_lookup(16#3d, 16#2) -> {more, 16#6a, 16#17};
1016dec_huffman_lookup(16#3d, 16#3) -> {ok, 16#6a, 16#28};
1017dec_huffman_lookup(16#3d, 16#4) -> {more, 16#6b, 16#02};
1018dec_huffman_lookup(16#3d, 16#5) -> {more, 16#6b, 16#09};
1019dec_huffman_lookup(16#3d, 16#6) -> {more, 16#6b, 16#17};
1020dec_huffman_lookup(16#3d, 16#7) -> {ok, 16#6b, 16#28};
1021dec_huffman_lookup(16#3d, 16#8) -> {more, 16#71, 16#02};
1022dec_huffman_lookup(16#3d, 16#9) -> {more, 16#71, 16#09};
1023dec_huffman_lookup(16#3d, 16#a) -> {more, 16#71, 16#17};
1024dec_huffman_lookup(16#3d, 16#b) -> {ok, 16#71, 16#28};
1025dec_huffman_lookup(16#3d, 16#c) -> {more, 16#76, 16#02};
1026dec_huffman_lookup(16#3d, 16#d) -> {more, 16#76, 16#09};
1027dec_huffman_lookup(16#3d, 16#e) -> {more, 16#76, 16#17};
1028dec_huffman_lookup(16#3d, 16#f) -> {ok, 16#76, 16#28};
1029dec_huffman_lookup(16#3e, 16#0) -> {more, 16#6a, 16#03};
1030dec_huffman_lookup(16#3e, 16#1) -> {more, 16#6a, 16#06};
1031dec_huffman_lookup(16#3e, 16#2) -> {more, 16#6a, 16#0a};
1032dec_huffman_lookup(16#3e, 16#3) -> {more, 16#6a, 16#0f};
1033dec_huffman_lookup(16#3e, 16#4) -> {more, 16#6a, 16#18};
1034dec_huffman_lookup(16#3e, 16#5) -> {more, 16#6a, 16#1f};
1035dec_huffman_lookup(16#3e, 16#6) -> {more, 16#6a, 16#29};
1036dec_huffman_lookup(16#3e, 16#7) -> {ok, 16#6a, 16#38};
1037dec_huffman_lookup(16#3e, 16#8) -> {more, 16#6b, 16#03};
1038dec_huffman_lookup(16#3e, 16#9) -> {more, 16#6b, 16#06};
1039dec_huffman_lookup(16#3e, 16#a) -> {more, 16#6b, 16#0a};
1040dec_huffman_lookup(16#3e, 16#b) -> {more, 16#6b, 16#0f};
1041dec_huffman_lookup(16#3e, 16#c) -> {more, 16#6b, 16#18};
1042dec_huffman_lookup(16#3e, 16#d) -> {more, 16#6b, 16#1f};
1043dec_huffman_lookup(16#3e, 16#e) -> {more, 16#6b, 16#29};
1044dec_huffman_lookup(16#3e, 16#f) -> {ok, 16#6b, 16#38};
1045dec_huffman_lookup(16#3f, 16#0) -> {more, 16#71, 16#03};
1046dec_huffman_lookup(16#3f, 16#1) -> {more, 16#71, 16#06};
1047dec_huffman_lookup(16#3f, 16#2) -> {more, 16#71, 16#0a};
1048dec_huffman_lookup(16#3f, 16#3) -> {more, 16#71, 16#0f};
1049dec_huffman_lookup(16#3f, 16#4) -> {more, 16#71, 16#18};
1050dec_huffman_lookup(16#3f, 16#5) -> {more, 16#71, 16#1f};
1051dec_huffman_lookup(16#3f, 16#6) -> {more, 16#71, 16#29};
1052dec_huffman_lookup(16#3f, 16#7) -> {ok, 16#71, 16#38};
1053dec_huffman_lookup(16#3f, 16#8) -> {more, 16#76, 16#03};
1054dec_huffman_lookup(16#3f, 16#9) -> {more, 16#76, 16#06};
1055dec_huffman_lookup(16#3f, 16#a) -> {more, 16#76, 16#0a};
1056dec_huffman_lookup(16#3f, 16#b) -> {more, 16#76, 16#0f};
1057dec_huffman_lookup(16#3f, 16#c) -> {more, 16#76, 16#18};
1058dec_huffman_lookup(16#3f, 16#d) -> {more, 16#76, 16#1f};
1059dec_huffman_lookup(16#3f, 16#e) -> {more, 16#76, 16#29};
1060dec_huffman_lookup(16#3f, 16#f) -> {ok, 16#76, 16#38};
1061dec_huffman_lookup(16#40, 16#0) -> {more, 16#77, 16#01};
1062dec_huffman_lookup(16#40, 16#1) -> {ok, 16#77, 16#16};
1063dec_huffman_lookup(16#40, 16#2) -> {more, 16#78, 16#01};
1064dec_huffman_lookup(16#40, 16#3) -> {ok, 16#78, 16#16};
1065dec_huffman_lookup(16#40, 16#4) -> {more, 16#79, 16#01};
1066dec_huffman_lookup(16#40, 16#5) -> {ok, 16#79, 16#16};
1067dec_huffman_lookup(16#40, 16#6) -> {more, 16#7a, 16#01};
1068dec_huffman_lookup(16#40, 16#7) -> {ok, 16#7a, 16#16};
1069dec_huffman_lookup(16#40, 16#8) -> {ok, 16#26, 16#00};
1070dec_huffman_lookup(16#40, 16#9) -> {ok, 16#2a, 16#00};
1071dec_huffman_lookup(16#40, 16#a) -> {ok, 16#2c, 16#00};
1072dec_huffman_lookup(16#40, 16#b) -> {ok, 16#3b, 16#00};
1073dec_huffman_lookup(16#40, 16#c) -> {ok, 16#58, 16#00};
1074dec_huffman_lookup(16#40, 16#d) -> {ok, 16#5a, 16#00};
1075dec_huffman_lookup(16#40, 16#e) -> {more, undefined, 16#4b};
1076dec_huffman_lookup(16#40, 16#f) -> {ok, undefined, 16#4e};
1077dec_huffman_lookup(16#41, 16#0) -> {more, 16#77, 16#02};
1078dec_huffman_lookup(16#41, 16#1) -> {more, 16#77, 16#09};
1079dec_huffman_lookup(16#41, 16#2) -> {more, 16#77, 16#17};
1080dec_huffman_lookup(16#41, 16#3) -> {ok, 16#77, 16#28};
1081dec_huffman_lookup(16#41, 16#4) -> {more, 16#78, 16#02};
1082dec_huffman_lookup(16#41, 16#5) -> {more, 16#78, 16#09};
1083dec_huffman_lookup(16#41, 16#6) -> {more, 16#78, 16#17};
1084dec_huffman_lookup(16#41, 16#7) -> {ok, 16#78, 16#28};
1085dec_huffman_lookup(16#41, 16#8) -> {more, 16#79, 16#02};
1086dec_huffman_lookup(16#41, 16#9) -> {more, 16#79, 16#09};
1087dec_huffman_lookup(16#41, 16#a) -> {more, 16#79, 16#17};
1088dec_huffman_lookup(16#41, 16#b) -> {ok, 16#79, 16#28};
1089dec_huffman_lookup(16#41, 16#c) -> {more, 16#7a, 16#02};
1090dec_huffman_lookup(16#41, 16#d) -> {more, 16#7a, 16#09};
1091dec_huffman_lookup(16#41, 16#e) -> {more, 16#7a, 16#17};
1092dec_huffman_lookup(16#41, 16#f) -> {ok, 16#7a, 16#28};
1093dec_huffman_lookup(16#42, 16#0) -> {more, 16#77, 16#03};
1094dec_huffman_lookup(16#42, 16#1) -> {more, 16#77, 16#06};
1095dec_huffman_lookup(16#42, 16#2) -> {more, 16#77, 16#0a};
1096dec_huffman_lookup(16#42, 16#3) -> {more, 16#77, 16#0f};
1097dec_huffman_lookup(16#42, 16#4) -> {more, 16#77, 16#18};
1098dec_huffman_lookup(16#42, 16#5) -> {more, 16#77, 16#1f};
1099dec_huffman_lookup(16#42, 16#6) -> {more, 16#77, 16#29};
1100dec_huffman_lookup(16#42, 16#7) -> {ok, 16#77, 16#38};
1101dec_huffman_lookup(16#42, 16#8) -> {more, 16#78, 16#03};
1102dec_huffman_lookup(16#42, 16#9) -> {more, 16#78, 16#06};
1103dec_huffman_lookup(16#42, 16#a) -> {more, 16#78, 16#0a};
1104dec_huffman_lookup(16#42, 16#b) -> {more, 16#78, 16#0f};
1105dec_huffman_lookup(16#42, 16#c) -> {more, 16#78, 16#18};
1106dec_huffman_lookup(16#42, 16#d) -> {more, 16#78, 16#1f};
1107dec_huffman_lookup(16#42, 16#e) -> {more, 16#78, 16#29};
1108dec_huffman_lookup(16#42, 16#f) -> {ok, 16#78, 16#38};
1109dec_huffman_lookup(16#43, 16#0) -> {more, 16#79, 16#03};
1110dec_huffman_lookup(16#43, 16#1) -> {more, 16#79, 16#06};
1111dec_huffman_lookup(16#43, 16#2) -> {more, 16#79, 16#0a};
1112dec_huffman_lookup(16#43, 16#3) -> {more, 16#79, 16#0f};
1113dec_huffman_lookup(16#43, 16#4) -> {more, 16#79, 16#18};
1114dec_huffman_lookup(16#43, 16#5) -> {more, 16#79, 16#1f};
1115dec_huffman_lookup(16#43, 16#6) -> {more, 16#79, 16#29};
1116dec_huffman_lookup(16#43, 16#7) -> {ok, 16#79, 16#38};
1117dec_huffman_lookup(16#43, 16#8) -> {more, 16#7a, 16#03};
1118dec_huffman_lookup(16#43, 16#9) -> {more, 16#7a, 16#06};
1119dec_huffman_lookup(16#43, 16#a) -> {more, 16#7a, 16#0a};
1120dec_huffman_lookup(16#43, 16#b) -> {more, 16#7a, 16#0f};
1121dec_huffman_lookup(16#43, 16#c) -> {more, 16#7a, 16#18};
1122dec_huffman_lookup(16#43, 16#d) -> {more, 16#7a, 16#1f};
1123dec_huffman_lookup(16#43, 16#e) -> {more, 16#7a, 16#29};
1124dec_huffman_lookup(16#43, 16#f) -> {ok, 16#7a, 16#38};
1125dec_huffman_lookup(16#44, 16#0) -> {more, 16#26, 16#01};
1126dec_huffman_lookup(16#44, 16#1) -> {ok, 16#26, 16#16};
1127dec_huffman_lookup(16#44, 16#2) -> {more, 16#2a, 16#01};
1128dec_huffman_lookup(16#44, 16#3) -> {ok, 16#2a, 16#16};
1129dec_huffman_lookup(16#44, 16#4) -> {more, 16#2c, 16#01};
1130dec_huffman_lookup(16#44, 16#5) -> {ok, 16#2c, 16#16};
1131dec_huffman_lookup(16#44, 16#6) -> {more, 16#3b, 16#01};
1132dec_huffman_lookup(16#44, 16#7) -> {ok, 16#3b, 16#16};
1133dec_huffman_lookup(16#44, 16#8) -> {more, 16#58, 16#01};
1134dec_huffman_lookup(16#44, 16#9) -> {ok, 16#58, 16#16};
1135dec_huffman_lookup(16#44, 16#a) -> {more, 16#5a, 16#01};
1136dec_huffman_lookup(16#44, 16#b) -> {ok, 16#5a, 16#16};
1137dec_huffman_lookup(16#44, 16#c) -> {more, undefined, 16#4c};
1138dec_huffman_lookup(16#44, 16#d) -> {more, undefined, 16#4d};
1139dec_huffman_lookup(16#44, 16#e) -> {more, undefined, 16#4f};
1140dec_huffman_lookup(16#44, 16#f) -> {ok, undefined, 16#51};
1141dec_huffman_lookup(16#45, 16#0) -> {more, 16#26, 16#02};
1142dec_huffman_lookup(16#45, 16#1) -> {more, 16#26, 16#09};
1143dec_huffman_lookup(16#45, 16#2) -> {more, 16#26, 16#17};
1144dec_huffman_lookup(16#45, 16#3) -> {ok, 16#26, 16#28};
1145dec_huffman_lookup(16#45, 16#4) -> {more, 16#2a, 16#02};
1146dec_huffman_lookup(16#45, 16#5) -> {more, 16#2a, 16#09};
1147dec_huffman_lookup(16#45, 16#6) -> {more, 16#2a, 16#17};
1148dec_huffman_lookup(16#45, 16#7) -> {ok, 16#2a, 16#28};
1149dec_huffman_lookup(16#45, 16#8) -> {more, 16#2c, 16#02};
1150dec_huffman_lookup(16#45, 16#9) -> {more, 16#2c, 16#09};
1151dec_huffman_lookup(16#45, 16#a) -> {more, 16#2c, 16#17};
1152dec_huffman_lookup(16#45, 16#b) -> {ok, 16#2c, 16#28};
1153dec_huffman_lookup(16#45, 16#c) -> {more, 16#3b, 16#02};
1154dec_huffman_lookup(16#45, 16#d) -> {more, 16#3b, 16#09};
1155dec_huffman_lookup(16#45, 16#e) -> {more, 16#3b, 16#17};
1156dec_huffman_lookup(16#45, 16#f) -> {ok, 16#3b, 16#28};
1157dec_huffman_lookup(16#46, 16#0) -> {more, 16#26, 16#03};
1158dec_huffman_lookup(16#46, 16#1) -> {more, 16#26, 16#06};
1159dec_huffman_lookup(16#46, 16#2) -> {more, 16#26, 16#0a};
1160dec_huffman_lookup(16#46, 16#3) -> {more, 16#26, 16#0f};
1161dec_huffman_lookup(16#46, 16#4) -> {more, 16#26, 16#18};
1162dec_huffman_lookup(16#46, 16#5) -> {more, 16#26, 16#1f};
1163dec_huffman_lookup(16#46, 16#6) -> {more, 16#26, 16#29};
1164dec_huffman_lookup(16#46, 16#7) -> {ok, 16#26, 16#38};
1165dec_huffman_lookup(16#46, 16#8) -> {more, 16#2a, 16#03};
1166dec_huffman_lookup(16#46, 16#9) -> {more, 16#2a, 16#06};
1167dec_huffman_lookup(16#46, 16#a) -> {more, 16#2a, 16#0a};
1168dec_huffman_lookup(16#46, 16#b) -> {more, 16#2a, 16#0f};
1169dec_huffman_lookup(16#46, 16#c) -> {more, 16#2a, 16#18};
1170dec_huffman_lookup(16#46, 16#d) -> {more, 16#2a, 16#1f};
1171dec_huffman_lookup(16#46, 16#e) -> {more, 16#2a, 16#29};
1172dec_huffman_lookup(16#46, 16#f) -> {ok, 16#2a, 16#38};
1173dec_huffman_lookup(16#47, 16#0) -> {more, 16#2c, 16#03};
1174dec_huffman_lookup(16#47, 16#1) -> {more, 16#2c, 16#06};
1175dec_huffman_lookup(16#47, 16#2) -> {more, 16#2c, 16#0a};
1176dec_huffman_lookup(16#47, 16#3) -> {more, 16#2c, 16#0f};
1177dec_huffman_lookup(16#47, 16#4) -> {more, 16#2c, 16#18};
1178dec_huffman_lookup(16#47, 16#5) -> {more, 16#2c, 16#1f};
1179dec_huffman_lookup(16#47, 16#6) -> {more, 16#2c, 16#29};
1180dec_huffman_lookup(16#47, 16#7) -> {ok, 16#2c, 16#38};
1181dec_huffman_lookup(16#47, 16#8) -> {more, 16#3b, 16#03};
1182dec_huffman_lookup(16#47, 16#9) -> {more, 16#3b, 16#06};
1183dec_huffman_lookup(16#47, 16#a) -> {more, 16#3b, 16#0a};
1184dec_huffman_lookup(16#47, 16#b) -> {more, 16#3b, 16#0f};
1185dec_huffman_lookup(16#47, 16#c) -> {more, 16#3b, 16#18};
1186dec_huffman_lookup(16#47, 16#d) -> {more, 16#3b, 16#1f};
1187dec_huffman_lookup(16#47, 16#e) -> {more, 16#3b, 16#29};
1188dec_huffman_lookup(16#47, 16#f) -> {ok, 16#3b, 16#38};
1189dec_huffman_lookup(16#48, 16#0) -> {more, 16#58, 16#02};
1190dec_huffman_lookup(16#48, 16#1) -> {more, 16#58, 16#09};
1191dec_huffman_lookup(16#48, 16#2) -> {more, 16#58, 16#17};
1192dec_huffman_lookup(16#48, 16#3) -> {ok, 16#58, 16#28};
1193dec_huffman_lookup(16#48, 16#4) -> {more, 16#5a, 16#02};
1194dec_huffman_lookup(16#48, 16#5) -> {more, 16#5a, 16#09};
1195dec_huffman_lookup(16#48, 16#6) -> {more, 16#5a, 16#17};
1196dec_huffman_lookup(16#48, 16#7) -> {ok, 16#5a, 16#28};
1197dec_huffman_lookup(16#48, 16#8) -> {ok, 16#21, 16#00};
1198dec_huffman_lookup(16#48, 16#9) -> {ok, 16#22, 16#00};
1199dec_huffman_lookup(16#48, 16#a) -> {ok, 16#28, 16#00};
1200dec_huffman_lookup(16#48, 16#b) -> {ok, 16#29, 16#00};
1201dec_huffman_lookup(16#48, 16#c) -> {ok, 16#3f, 16#00};
1202dec_huffman_lookup(16#48, 16#d) -> {more, undefined, 16#50};
1203dec_huffman_lookup(16#48, 16#e) -> {more, undefined, 16#52};
1204dec_huffman_lookup(16#48, 16#f) -> {ok, undefined, 16#54};
1205dec_huffman_lookup(16#49, 16#0) -> {more, 16#58, 16#03};
1206dec_huffman_lookup(16#49, 16#1) -> {more, 16#58, 16#06};
1207dec_huffman_lookup(16#49, 16#2) -> {more, 16#58, 16#0a};
1208dec_huffman_lookup(16#49, 16#3) -> {more, 16#58, 16#0f};
1209dec_huffman_lookup(16#49, 16#4) -> {more, 16#58, 16#18};
1210dec_huffman_lookup(16#49, 16#5) -> {more, 16#58, 16#1f};
1211dec_huffman_lookup(16#49, 16#6) -> {more, 16#58, 16#29};
1212dec_huffman_lookup(16#49, 16#7) -> {ok, 16#58, 16#38};
1213dec_huffman_lookup(16#49, 16#8) -> {more, 16#5a, 16#03};
1214dec_huffman_lookup(16#49, 16#9) -> {more, 16#5a, 16#06};
1215dec_huffman_lookup(16#49, 16#a) -> {more, 16#5a, 16#0a};
1216dec_huffman_lookup(16#49, 16#b) -> {more, 16#5a, 16#0f};
1217dec_huffman_lookup(16#49, 16#c) -> {more, 16#5a, 16#18};
1218dec_huffman_lookup(16#49, 16#d) -> {more, 16#5a, 16#1f};
1219dec_huffman_lookup(16#49, 16#e) -> {more, 16#5a, 16#29};
1220dec_huffman_lookup(16#49, 16#f) -> {ok, 16#5a, 16#38};
1221dec_huffman_lookup(16#4a, 16#0) -> {more, 16#21, 16#01};
1222dec_huffman_lookup(16#4a, 16#1) -> {ok, 16#21, 16#16};
1223dec_huffman_lookup(16#4a, 16#2) -> {more, 16#22, 16#01};
1224dec_huffman_lookup(16#4a, 16#3) -> {ok, 16#22, 16#16};
1225dec_huffman_lookup(16#4a, 16#4) -> {more, 16#28, 16#01};
1226dec_huffman_lookup(16#4a, 16#5) -> {ok, 16#28, 16#16};
1227dec_huffman_lookup(16#4a, 16#6) -> {more, 16#29, 16#01};
1228dec_huffman_lookup(16#4a, 16#7) -> {ok, 16#29, 16#16};
1229dec_huffman_lookup(16#4a, 16#8) -> {more, 16#3f, 16#01};
1230dec_huffman_lookup(16#4a, 16#9) -> {ok, 16#3f, 16#16};
1231dec_huffman_lookup(16#4a, 16#a) -> {ok, 16#27, 16#00};
1232dec_huffman_lookup(16#4a, 16#b) -> {ok, 16#2b, 16#00};
1233dec_huffman_lookup(16#4a, 16#c) -> {ok, 16#7c, 16#00};
1234dec_huffman_lookup(16#4a, 16#d) -> {more, undefined, 16#53};
1235dec_huffman_lookup(16#4a, 16#e) -> {more, undefined, 16#55};
1236dec_huffman_lookup(16#4a, 16#f) -> {ok, undefined, 16#58};
1237dec_huffman_lookup(16#4b, 16#0) -> {more, 16#21, 16#02};
1238dec_huffman_lookup(16#4b, 16#1) -> {more, 16#21, 16#09};
1239dec_huffman_lookup(16#4b, 16#2) -> {more, 16#21, 16#17};
1240dec_huffman_lookup(16#4b, 16#3) -> {ok, 16#21, 16#28};
1241dec_huffman_lookup(16#4b, 16#4) -> {more, 16#22, 16#02};
1242dec_huffman_lookup(16#4b, 16#5) -> {more, 16#22, 16#09};
1243dec_huffman_lookup(16#4b, 16#6) -> {more, 16#22, 16#17};
1244dec_huffman_lookup(16#4b, 16#7) -> {ok, 16#22, 16#28};
1245dec_huffman_lookup(16#4b, 16#8) -> {more, 16#28, 16#02};
1246dec_huffman_lookup(16#4b, 16#9) -> {more, 16#28, 16#09};
1247dec_huffman_lookup(16#4b, 16#a) -> {more, 16#28, 16#17};
1248dec_huffman_lookup(16#4b, 16#b) -> {ok, 16#28, 16#28};
1249dec_huffman_lookup(16#4b, 16#c) -> {more, 16#29, 16#02};
1250dec_huffman_lookup(16#4b, 16#d) -> {more, 16#29, 16#09};
1251dec_huffman_lookup(16#4b, 16#e) -> {more, 16#29, 16#17};
1252dec_huffman_lookup(16#4b, 16#f) -> {ok, 16#29, 16#28};
1253dec_huffman_lookup(16#4c, 16#0) -> {more, 16#21, 16#03};
1254dec_huffman_lookup(16#4c, 16#1) -> {more, 16#21, 16#06};
1255dec_huffman_lookup(16#4c, 16#2) -> {more, 16#21, 16#0a};
1256dec_huffman_lookup(16#4c, 16#3) -> {more, 16#21, 16#0f};
1257dec_huffman_lookup(16#4c, 16#4) -> {more, 16#21, 16#18};
1258dec_huffman_lookup(16#4c, 16#5) -> {more, 16#21, 16#1f};
1259dec_huffman_lookup(16#4c, 16#6) -> {more, 16#21, 16#29};
1260dec_huffman_lookup(16#4c, 16#7) -> {ok, 16#21, 16#38};
1261dec_huffman_lookup(16#4c, 16#8) -> {more, 16#22, 16#03};
1262dec_huffman_lookup(16#4c, 16#9) -> {more, 16#22, 16#06};
1263dec_huffman_lookup(16#4c, 16#a) -> {more, 16#22, 16#0a};
1264dec_huffman_lookup(16#4c, 16#b) -> {more, 16#22, 16#0f};
1265dec_huffman_lookup(16#4c, 16#c) -> {more, 16#22, 16#18};
1266dec_huffman_lookup(16#4c, 16#d) -> {more, 16#22, 16#1f};
1267dec_huffman_lookup(16#4c, 16#e) -> {more, 16#22, 16#29};
1268dec_huffman_lookup(16#4c, 16#f) -> {ok, 16#22, 16#38};
1269dec_huffman_lookup(16#4d, 16#0) -> {more, 16#28, 16#03};
1270dec_huffman_lookup(16#4d, 16#1) -> {more, 16#28, 16#06};
1271dec_huffman_lookup(16#4d, 16#2) -> {more, 16#28, 16#0a};
1272dec_huffman_lookup(16#4d, 16#3) -> {more, 16#28, 16#0f};
1273dec_huffman_lookup(16#4d, 16#4) -> {more, 16#28, 16#18};
1274dec_huffman_lookup(16#4d, 16#5) -> {more, 16#28, 16#1f};
1275dec_huffman_lookup(16#4d, 16#6) -> {more, 16#28, 16#29};
1276dec_huffman_lookup(16#4d, 16#7) -> {ok, 16#28, 16#38};
1277dec_huffman_lookup(16#4d, 16#8) -> {more, 16#29, 16#03};
1278dec_huffman_lookup(16#4d, 16#9) -> {more, 16#29, 16#06};
1279dec_huffman_lookup(16#4d, 16#a) -> {more, 16#29, 16#0a};
1280dec_huffman_lookup(16#4d, 16#b) -> {more, 16#29, 16#0f};
1281dec_huffman_lookup(16#4d, 16#c) -> {more, 16#29, 16#18};
1282dec_huffman_lookup(16#4d, 16#d) -> {more, 16#29, 16#1f};
1283dec_huffman_lookup(16#4d, 16#e) -> {more, 16#29, 16#29};
1284dec_huffman_lookup(16#4d, 16#f) -> {ok, 16#29, 16#38};
1285dec_huffman_lookup(16#4e, 16#0) -> {more, 16#3f, 16#02};
1286dec_huffman_lookup(16#4e, 16#1) -> {more, 16#3f, 16#09};
1287dec_huffman_lookup(16#4e, 16#2) -> {more, 16#3f, 16#17};
1288dec_huffman_lookup(16#4e, 16#3) -> {ok, 16#3f, 16#28};
1289dec_huffman_lookup(16#4e, 16#4) -> {more, 16#27, 16#01};
1290dec_huffman_lookup(16#4e, 16#5) -> {ok, 16#27, 16#16};
1291dec_huffman_lookup(16#4e, 16#6) -> {more, 16#2b, 16#01};
1292dec_huffman_lookup(16#4e, 16#7) -> {ok, 16#2b, 16#16};
1293dec_huffman_lookup(16#4e, 16#8) -> {more, 16#7c, 16#01};
1294dec_huffman_lookup(16#4e, 16#9) -> {ok, 16#7c, 16#16};
1295dec_huffman_lookup(16#4e, 16#a) -> {ok, 16#23, 16#00};
1296dec_huffman_lookup(16#4e, 16#b) -> {ok, 16#3e, 16#00};
1297dec_huffman_lookup(16#4e, 16#c) -> {more, undefined, 16#56};
1298dec_huffman_lookup(16#4e, 16#d) -> {more, undefined, 16#57};
1299dec_huffman_lookup(16#4e, 16#e) -> {more, undefined, 16#59};
1300dec_huffman_lookup(16#4e, 16#f) -> {ok, undefined, 16#5a};
1301dec_huffman_lookup(16#4f, 16#0) -> {more, 16#3f, 16#03};
1302dec_huffman_lookup(16#4f, 16#1) -> {more, 16#3f, 16#06};
1303dec_huffman_lookup(16#4f, 16#2) -> {more, 16#3f, 16#0a};
1304dec_huffman_lookup(16#4f, 16#3) -> {more, 16#3f, 16#0f};
1305dec_huffman_lookup(16#4f, 16#4) -> {more, 16#3f, 16#18};
1306dec_huffman_lookup(16#4f, 16#5) -> {more, 16#3f, 16#1f};
1307dec_huffman_lookup(16#4f, 16#6) -> {more, 16#3f, 16#29};
1308dec_huffman_lookup(16#4f, 16#7) -> {ok, 16#3f, 16#38};
1309dec_huffman_lookup(16#4f, 16#8) -> {more, 16#27, 16#02};
1310dec_huffman_lookup(16#4f, 16#9) -> {more, 16#27, 16#09};
1311dec_huffman_lookup(16#4f, 16#a) -> {more, 16#27, 16#17};
1312dec_huffman_lookup(16#4f, 16#b) -> {ok, 16#27, 16#28};
1313dec_huffman_lookup(16#4f, 16#c) -> {more, 16#2b, 16#02};
1314dec_huffman_lookup(16#4f, 16#d) -> {more, 16#2b, 16#09};
1315dec_huffman_lookup(16#4f, 16#e) -> {more, 16#2b, 16#17};
1316dec_huffman_lookup(16#4f, 16#f) -> {ok, 16#2b, 16#28};
1317dec_huffman_lookup(16#50, 16#0) -> {more, 16#27, 16#03};
1318dec_huffman_lookup(16#50, 16#1) -> {more, 16#27, 16#06};
1319dec_huffman_lookup(16#50, 16#2) -> {more, 16#27, 16#0a};
1320dec_huffman_lookup(16#50, 16#3) -> {more, 16#27, 16#0f};
1321dec_huffman_lookup(16#50, 16#4) -> {more, 16#27, 16#18};
1322dec_huffman_lookup(16#50, 16#5) -> {more, 16#27, 16#1f};
1323dec_huffman_lookup(16#50, 16#6) -> {more, 16#27, 16#29};
1324dec_huffman_lookup(16#50, 16#7) -> {ok, 16#27, 16#38};
1325dec_huffman_lookup(16#50, 16#8) -> {more, 16#2b, 16#03};
1326dec_huffman_lookup(16#50, 16#9) -> {more, 16#2b, 16#06};
1327dec_huffman_lookup(16#50, 16#a) -> {more, 16#2b, 16#0a};
1328dec_huffman_lookup(16#50, 16#b) -> {more, 16#2b, 16#0f};
1329dec_huffman_lookup(16#50, 16#c) -> {more, 16#2b, 16#18};
1330dec_huffman_lookup(16#50, 16#d) -> {more, 16#2b, 16#1f};
1331dec_huffman_lookup(16#50, 16#e) -> {more, 16#2b, 16#29};
1332dec_huffman_lookup(16#50, 16#f) -> {ok, 16#2b, 16#38};
1333dec_huffman_lookup(16#51, 16#0) -> {more, 16#7c, 16#02};
1334dec_huffman_lookup(16#51, 16#1) -> {more, 16#7c, 16#09};
1335dec_huffman_lookup(16#51, 16#2) -> {more, 16#7c, 16#17};
1336dec_huffman_lookup(16#51, 16#3) -> {ok, 16#7c, 16#28};
1337dec_huffman_lookup(16#51, 16#4) -> {more, 16#23, 16#01};
1338dec_huffman_lookup(16#51, 16#5) -> {ok, 16#23, 16#16};
1339dec_huffman_lookup(16#51, 16#6) -> {more, 16#3e, 16#01};
1340dec_huffman_lookup(16#51, 16#7) -> {ok, 16#3e, 16#16};
1341dec_huffman_lookup(16#51, 16#8) -> {ok, 16#00, 16#00};
1342dec_huffman_lookup(16#51, 16#9) -> {ok, 16#24, 16#00};
1343dec_huffman_lookup(16#51, 16#a) -> {ok, 16#40, 16#00};
1344dec_huffman_lookup(16#51, 16#b) -> {ok, 16#5b, 16#00};
1345dec_huffman_lookup(16#51, 16#c) -> {ok, 16#5d, 16#00};
1346dec_huffman_lookup(16#51, 16#d) -> {ok, 16#7e, 16#00};
1347dec_huffman_lookup(16#51, 16#e) -> {more, undefined, 16#5b};
1348dec_huffman_lookup(16#51, 16#f) -> {ok, undefined, 16#5c};
1349dec_huffman_lookup(16#52, 16#0) -> {more, 16#7c, 16#03};
1350dec_huffman_lookup(16#52, 16#1) -> {more, 16#7c, 16#06};
1351dec_huffman_lookup(16#52, 16#2) -> {more, 16#7c, 16#0a};
1352dec_huffman_lookup(16#52, 16#3) -> {more, 16#7c, 16#0f};
1353dec_huffman_lookup(16#52, 16#4) -> {more, 16#7c, 16#18};
1354dec_huffman_lookup(16#52, 16#5) -> {more, 16#7c, 16#1f};
1355dec_huffman_lookup(16#52, 16#6) -> {more, 16#7c, 16#29};
1356dec_huffman_lookup(16#52, 16#7) -> {ok, 16#7c, 16#38};
1357dec_huffman_lookup(16#52, 16#8) -> {more, 16#23, 16#02};
1358dec_huffman_lookup(16#52, 16#9) -> {more, 16#23, 16#09};
1359dec_huffman_lookup(16#52, 16#a) -> {more, 16#23, 16#17};
1360dec_huffman_lookup(16#52, 16#b) -> {ok, 16#23, 16#28};
1361dec_huffman_lookup(16#52, 16#c) -> {more, 16#3e, 16#02};
1362dec_huffman_lookup(16#52, 16#d) -> {more, 16#3e, 16#09};
1363dec_huffman_lookup(16#52, 16#e) -> {more, 16#3e, 16#17};
1364dec_huffman_lookup(16#52, 16#f) -> {ok, 16#3e, 16#28};
1365dec_huffman_lookup(16#53, 16#0) -> {more, 16#23, 16#03};
1366dec_huffman_lookup(16#53, 16#1) -> {more, 16#23, 16#06};
1367dec_huffman_lookup(16#53, 16#2) -> {more, 16#23, 16#0a};
1368dec_huffman_lookup(16#53, 16#3) -> {more, 16#23, 16#0f};
1369dec_huffman_lookup(16#53, 16#4) -> {more, 16#23, 16#18};
1370dec_huffman_lookup(16#53, 16#5) -> {more, 16#23, 16#1f};
1371dec_huffman_lookup(16#53, 16#6) -> {more, 16#23, 16#29};
1372dec_huffman_lookup(16#53, 16#7) -> {ok, 16#23, 16#38};
1373dec_huffman_lookup(16#53, 16#8) -> {more, 16#3e, 16#03};
1374dec_huffman_lookup(16#53, 16#9) -> {more, 16#3e, 16#06};
1375dec_huffman_lookup(16#53, 16#a) -> {more, 16#3e, 16#0a};
1376dec_huffman_lookup(16#53, 16#b) -> {more, 16#3e, 16#0f};
1377dec_huffman_lookup(16#53, 16#c) -> {more, 16#3e, 16#18};
1378dec_huffman_lookup(16#53, 16#d) -> {more, 16#3e, 16#1f};
1379dec_huffman_lookup(16#53, 16#e) -> {more, 16#3e, 16#29};
1380dec_huffman_lookup(16#53, 16#f) -> {ok, 16#3e, 16#38};
1381dec_huffman_lookup(16#54, 16#0) -> {more, 16#00, 16#01};
1382dec_huffman_lookup(16#54, 16#1) -> {ok, 16#00, 16#16};
1383dec_huffman_lookup(16#54, 16#2) -> {more, 16#24, 16#01};
1384dec_huffman_lookup(16#54, 16#3) -> {ok, 16#24, 16#16};
1385dec_huffman_lookup(16#54, 16#4) -> {more, 16#40, 16#01};
1386dec_huffman_lookup(16#54, 16#5) -> {ok, 16#40, 16#16};
1387dec_huffman_lookup(16#54, 16#6) -> {more, 16#5b, 16#01};
1388dec_huffman_lookup(16#54, 16#7) -> {ok, 16#5b, 16#16};
1389dec_huffman_lookup(16#54, 16#8) -> {more, 16#5d, 16#01};
1390dec_huffman_lookup(16#54, 16#9) -> {ok, 16#5d, 16#16};
1391dec_huffman_lookup(16#54, 16#a) -> {more, 16#7e, 16#01};
1392dec_huffman_lookup(16#54, 16#b) -> {ok, 16#7e, 16#16};
1393dec_huffman_lookup(16#54, 16#c) -> {ok, 16#5e, 16#00};
1394dec_huffman_lookup(16#54, 16#d) -> {ok, 16#7d, 16#00};
1395dec_huffman_lookup(16#54, 16#e) -> {more, undefined, 16#5d};
1396dec_huffman_lookup(16#54, 16#f) -> {ok, undefined, 16#5e};
1397dec_huffman_lookup(16#55, 16#0) -> {more, 16#00, 16#02};
1398dec_huffman_lookup(16#55, 16#1) -> {more, 16#00, 16#09};
1399dec_huffman_lookup(16#55, 16#2) -> {more, 16#00, 16#17};
1400dec_huffman_lookup(16#55, 16#3) -> {ok, 16#00, 16#28};
1401dec_huffman_lookup(16#55, 16#4) -> {more, 16#24, 16#02};
1402dec_huffman_lookup(16#55, 16#5) -> {more, 16#24, 16#09};
1403dec_huffman_lookup(16#55, 16#6) -> {more, 16#24, 16#17};
1404dec_huffman_lookup(16#55, 16#7) -> {ok, 16#24, 16#28};
1405dec_huffman_lookup(16#55, 16#8) -> {more, 16#40, 16#02};
1406dec_huffman_lookup(16#55, 16#9) -> {more, 16#40, 16#09};
1407dec_huffman_lookup(16#55, 16#a) -> {more, 16#40, 16#17};
1408dec_huffman_lookup(16#55, 16#b) -> {ok, 16#40, 16#28};
1409dec_huffman_lookup(16#55, 16#c) -> {more, 16#5b, 16#02};
1410dec_huffman_lookup(16#55, 16#d) -> {more, 16#5b, 16#09};
1411dec_huffman_lookup(16#55, 16#e) -> {more, 16#5b, 16#17};
1412dec_huffman_lookup(16#55, 16#f) -> {ok, 16#5b, 16#28};
1413dec_huffman_lookup(16#56, 16#0) -> {more, 16#00, 16#03};
1414dec_huffman_lookup(16#56, 16#1) -> {more, 16#00, 16#06};
1415dec_huffman_lookup(16#56, 16#2) -> {more, 16#00, 16#0a};
1416dec_huffman_lookup(16#56, 16#3) -> {more, 16#00, 16#0f};
1417dec_huffman_lookup(16#56, 16#4) -> {more, 16#00, 16#18};
1418dec_huffman_lookup(16#56, 16#5) -> {more, 16#00, 16#1f};
1419dec_huffman_lookup(16#56, 16#6) -> {more, 16#00, 16#29};
1420dec_huffman_lookup(16#56, 16#7) -> {ok, 16#00, 16#38};
1421dec_huffman_lookup(16#56, 16#8) -> {more, 16#24, 16#03};
1422dec_huffman_lookup(16#56, 16#9) -> {more, 16#24, 16#06};
1423dec_huffman_lookup(16#56, 16#a) -> {more, 16#24, 16#0a};
1424dec_huffman_lookup(16#56, 16#b) -> {more, 16#24, 16#0f};
1425dec_huffman_lookup(16#56, 16#c) -> {more, 16#24, 16#18};
1426dec_huffman_lookup(16#56, 16#d) -> {more, 16#24, 16#1f};
1427dec_huffman_lookup(16#56, 16#e) -> {more, 16#24, 16#29};
1428dec_huffman_lookup(16#56, 16#f) -> {ok, 16#24, 16#38};
1429dec_huffman_lookup(16#57, 16#0) -> {more, 16#40, 16#03};
1430dec_huffman_lookup(16#57, 16#1) -> {more, 16#40, 16#06};
1431dec_huffman_lookup(16#57, 16#2) -> {more, 16#40, 16#0a};
1432dec_huffman_lookup(16#57, 16#3) -> {more, 16#40, 16#0f};
1433dec_huffman_lookup(16#57, 16#4) -> {more, 16#40, 16#18};
1434dec_huffman_lookup(16#57, 16#5) -> {more, 16#40, 16#1f};
1435dec_huffman_lookup(16#57, 16#6) -> {more, 16#40, 16#29};
1436dec_huffman_lookup(16#57, 16#7) -> {ok, 16#40, 16#38};
1437dec_huffman_lookup(16#57, 16#8) -> {more, 16#5b, 16#03};
1438dec_huffman_lookup(16#57, 16#9) -> {more, 16#5b, 16#06};
1439dec_huffman_lookup(16#57, 16#a) -> {more, 16#5b, 16#0a};
1440dec_huffman_lookup(16#57, 16#b) -> {more, 16#5b, 16#0f};
1441dec_huffman_lookup(16#57, 16#c) -> {more, 16#5b, 16#18};
1442dec_huffman_lookup(16#57, 16#d) -> {more, 16#5b, 16#1f};
1443dec_huffman_lookup(16#57, 16#e) -> {more, 16#5b, 16#29};
1444dec_huffman_lookup(16#57, 16#f) -> {ok, 16#5b, 16#38};
1445dec_huffman_lookup(16#58, 16#0) -> {more, 16#5d, 16#02};
1446dec_huffman_lookup(16#58, 16#1) -> {more, 16#5d, 16#09};
1447dec_huffman_lookup(16#58, 16#2) -> {more, 16#5d, 16#17};
1448dec_huffman_lookup(16#58, 16#3) -> {ok, 16#5d, 16#28};
1449dec_huffman_lookup(16#58, 16#4) -> {more, 16#7e, 16#02};
1450dec_huffman_lookup(16#58, 16#5) -> {more, 16#7e, 16#09};
1451dec_huffman_lookup(16#58, 16#6) -> {more, 16#7e, 16#17};
1452dec_huffman_lookup(16#58, 16#7) -> {ok, 16#7e, 16#28};
1453dec_huffman_lookup(16#58, 16#8) -> {more, 16#5e, 16#01};
1454dec_huffman_lookup(16#58, 16#9) -> {ok, 16#5e, 16#16};
1455dec_huffman_lookup(16#58, 16#a) -> {more, 16#7d, 16#01};
1456dec_huffman_lookup(16#58, 16#b) -> {ok, 16#7d, 16#16};
1457dec_huffman_lookup(16#58, 16#c) -> {ok, 16#3c, 16#00};
1458dec_huffman_lookup(16#58, 16#d) -> {ok, 16#60, 16#00};
1459dec_huffman_lookup(16#58, 16#e) -> {ok, 16#7b, 16#00};
1460dec_huffman_lookup(16#58, 16#f) -> {ok, undefined, 16#5f};
1461dec_huffman_lookup(16#59, 16#0) -> {more, 16#5d, 16#03};
1462dec_huffman_lookup(16#59, 16#1) -> {more, 16#5d, 16#06};
1463dec_huffman_lookup(16#59, 16#2) -> {more, 16#5d, 16#0a};
1464dec_huffman_lookup(16#59, 16#3) -> {more, 16#5d, 16#0f};
1465dec_huffman_lookup(16#59, 16#4) -> {more, 16#5d, 16#18};
1466dec_huffman_lookup(16#59, 16#5) -> {more, 16#5d, 16#1f};
1467dec_huffman_lookup(16#59, 16#6) -> {more, 16#5d, 16#29};
1468dec_huffman_lookup(16#59, 16#7) -> {ok, 16#5d, 16#38};
1469dec_huffman_lookup(16#59, 16#8) -> {more, 16#7e, 16#03};
1470dec_huffman_lookup(16#59, 16#9) -> {more, 16#7e, 16#06};
1471dec_huffman_lookup(16#59, 16#a) -> {more, 16#7e, 16#0a};
1472dec_huffman_lookup(16#59, 16#b) -> {more, 16#7e, 16#0f};
1473dec_huffman_lookup(16#59, 16#c) -> {more, 16#7e, 16#18};
1474dec_huffman_lookup(16#59, 16#d) -> {more, 16#7e, 16#1f};
1475dec_huffman_lookup(16#59, 16#e) -> {more, 16#7e, 16#29};
1476dec_huffman_lookup(16#59, 16#f) -> {ok, 16#7e, 16#38};
1477dec_huffman_lookup(16#5a, 16#0) -> {more, 16#5e, 16#02};
1478dec_huffman_lookup(16#5a, 16#1) -> {more, 16#5e, 16#09};
1479dec_huffman_lookup(16#5a, 16#2) -> {more, 16#5e, 16#17};
1480dec_huffman_lookup(16#5a, 16#3) -> {ok, 16#5e, 16#28};
1481dec_huffman_lookup(16#5a, 16#4) -> {more, 16#7d, 16#02};
1482dec_huffman_lookup(16#5a, 16#5) -> {more, 16#7d, 16#09};
1483dec_huffman_lookup(16#5a, 16#6) -> {more, 16#7d, 16#17};
1484dec_huffman_lookup(16#5a, 16#7) -> {ok, 16#7d, 16#28};
1485dec_huffman_lookup(16#5a, 16#8) -> {more, 16#3c, 16#01};
1486dec_huffman_lookup(16#5a, 16#9) -> {ok, 16#3c, 16#16};
1487dec_huffman_lookup(16#5a, 16#a) -> {more, 16#60, 16#01};
1488dec_huffman_lookup(16#5a, 16#b) -> {ok, 16#60, 16#16};
1489dec_huffman_lookup(16#5a, 16#c) -> {more, 16#7b, 16#01};
1490dec_huffman_lookup(16#5a, 16#d) -> {ok, 16#7b, 16#16};
1491dec_huffman_lookup(16#5a, 16#e) -> {more, undefined, 16#60};
1492dec_huffman_lookup(16#5a, 16#f) -> {ok, undefined, 16#6e};
1493dec_huffman_lookup(16#5b, 16#0) -> {more, 16#5e, 16#03};
1494dec_huffman_lookup(16#5b, 16#1) -> {more, 16#5e, 16#06};
1495dec_huffman_lookup(16#5b, 16#2) -> {more, 16#5e, 16#0a};
1496dec_huffman_lookup(16#5b, 16#3) -> {more, 16#5e, 16#0f};
1497dec_huffman_lookup(16#5b, 16#4) -> {more, 16#5e, 16#18};
1498dec_huffman_lookup(16#5b, 16#5) -> {more, 16#5e, 16#1f};
1499dec_huffman_lookup(16#5b, 16#6) -> {more, 16#5e, 16#29};
1500dec_huffman_lookup(16#5b, 16#7) -> {ok, 16#5e, 16#38};
1501dec_huffman_lookup(16#5b, 16#8) -> {more, 16#7d, 16#03};
1502dec_huffman_lookup(16#5b, 16#9) -> {more, 16#7d, 16#06};
1503dec_huffman_lookup(16#5b, 16#a) -> {more, 16#7d, 16#0a};
1504dec_huffman_lookup(16#5b, 16#b) -> {more, 16#7d, 16#0f};
1505dec_huffman_lookup(16#5b, 16#c) -> {more, 16#7d, 16#18};
1506dec_huffman_lookup(16#5b, 16#d) -> {more, 16#7d, 16#1f};
1507dec_huffman_lookup(16#5b, 16#e) -> {more, 16#7d, 16#29};
1508dec_huffman_lookup(16#5b, 16#f) -> {ok, 16#7d, 16#38};
1509dec_huffman_lookup(16#5c, 16#0) -> {more, 16#3c, 16#02};
1510dec_huffman_lookup(16#5c, 16#1) -> {more, 16#3c, 16#09};
1511dec_huffman_lookup(16#5c, 16#2) -> {more, 16#3c, 16#17};
1512dec_huffman_lookup(16#5c, 16#3) -> {ok, 16#3c, 16#28};
1513dec_huffman_lookup(16#5c, 16#4) -> {more, 16#60, 16#02};
1514dec_huffman_lookup(16#5c, 16#5) -> {more, 16#60, 16#09};
1515dec_huffman_lookup(16#5c, 16#6) -> {more, 16#60, 16#17};
1516dec_huffman_lookup(16#5c, 16#7) -> {ok, 16#60, 16#28};
1517dec_huffman_lookup(16#5c, 16#8) -> {more, 16#7b, 16#02};
1518dec_huffman_lookup(16#5c, 16#9) -> {more, 16#7b, 16#09};
1519dec_huffman_lookup(16#5c, 16#a) -> {more, 16#7b, 16#17};
1520dec_huffman_lookup(16#5c, 16#b) -> {ok, 16#7b, 16#28};
1521dec_huffman_lookup(16#5c, 16#c) -> {more, undefined, 16#61};
1522dec_huffman_lookup(16#5c, 16#d) -> {more, undefined, 16#65};
1523dec_huffman_lookup(16#5c, 16#e) -> {more, undefined, 16#6f};
1524dec_huffman_lookup(16#5c, 16#f) -> {ok, undefined, 16#85};
1525dec_huffman_lookup(16#5d, 16#0) -> {more, 16#3c, 16#03};
1526dec_huffman_lookup(16#5d, 16#1) -> {more, 16#3c, 16#06};
1527dec_huffman_lookup(16#5d, 16#2) -> {more, 16#3c, 16#0a};
1528dec_huffman_lookup(16#5d, 16#3) -> {more, 16#3c, 16#0f};
1529dec_huffman_lookup(16#5d, 16#4) -> {more, 16#3c, 16#18};
1530dec_huffman_lookup(16#5d, 16#5) -> {more, 16#3c, 16#1f};
1531dec_huffman_lookup(16#5d, 16#6) -> {more, 16#3c, 16#29};
1532dec_huffman_lookup(16#5d, 16#7) -> {ok, 16#3c, 16#38};
1533dec_huffman_lookup(16#5d, 16#8) -> {more, 16#60, 16#03};
1534dec_huffman_lookup(16#5d, 16#9) -> {more, 16#60, 16#06};
1535dec_huffman_lookup(16#5d, 16#a) -> {more, 16#60, 16#0a};
1536dec_huffman_lookup(16#5d, 16#b) -> {more, 16#60, 16#0f};
1537dec_huffman_lookup(16#5d, 16#c) -> {more, 16#60, 16#18};
1538dec_huffman_lookup(16#5d, 16#d) -> {more, 16#60, 16#1f};
1539dec_huffman_lookup(16#5d, 16#e) -> {more, 16#60, 16#29};
1540dec_huffman_lookup(16#5d, 16#f) -> {ok, 16#60, 16#38};
1541dec_huffman_lookup(16#5e, 16#0) -> {more, 16#7b, 16#03};
1542dec_huffman_lookup(16#5e, 16#1) -> {more, 16#7b, 16#06};
1543dec_huffman_lookup(16#5e, 16#2) -> {more, 16#7b, 16#0a};
1544dec_huffman_lookup(16#5e, 16#3) -> {more, 16#7b, 16#0f};
1545dec_huffman_lookup(16#5e, 16#4) -> {more, 16#7b, 16#18};
1546dec_huffman_lookup(16#5e, 16#5) -> {more, 16#7b, 16#1f};
1547dec_huffman_lookup(16#5e, 16#6) -> {more, 16#7b, 16#29};
1548dec_huffman_lookup(16#5e, 16#7) -> {ok, 16#7b, 16#38};
1549dec_huffman_lookup(16#5e, 16#8) -> {more, undefined, 16#62};
1550dec_huffman_lookup(16#5e, 16#9) -> {more, undefined, 16#63};
1551dec_huffman_lookup(16#5e, 16#a) -> {more, undefined, 16#66};
1552dec_huffman_lookup(16#5e, 16#b) -> {more, undefined, 16#69};
1553dec_huffman_lookup(16#5e, 16#c) -> {more, undefined, 16#70};
1554dec_huffman_lookup(16#5e, 16#d) -> {more, undefined, 16#77};
1555dec_huffman_lookup(16#5e, 16#e) -> {more, undefined, 16#86};
1556dec_huffman_lookup(16#5e, 16#f) -> {ok, undefined, 16#99};
1557dec_huffman_lookup(16#5f, 16#0) -> {ok, 16#5c, 16#00};
1558dec_huffman_lookup(16#5f, 16#1) -> {ok, 16#c3, 16#00};
1559dec_huffman_lookup(16#5f, 16#2) -> {ok, 16#d0, 16#00};
1560dec_huffman_lookup(16#5f, 16#3) -> {more, undefined, 16#64};
1561dec_huffman_lookup(16#5f, 16#4) -> {more, undefined, 16#67};
1562dec_huffman_lookup(16#5f, 16#5) -> {more, undefined, 16#68};
1563dec_huffman_lookup(16#5f, 16#6) -> {more, undefined, 16#6a};
1564dec_huffman_lookup(16#5f, 16#7) -> {more, undefined, 16#6b};
1565dec_huffman_lookup(16#5f, 16#8) -> {more, undefined, 16#71};
1566dec_huffman_lookup(16#5f, 16#9) -> {more, undefined, 16#74};
1567dec_huffman_lookup(16#5f, 16#a) -> {more, undefined, 16#78};
1568dec_huffman_lookup(16#5f, 16#b) -> {more, undefined, 16#7e};
1569dec_huffman_lookup(16#5f, 16#c) -> {more, undefined, 16#87};
1570dec_huffman_lookup(16#5f, 16#d) -> {more, undefined, 16#8e};
1571dec_huffman_lookup(16#5f, 16#e) -> {more, undefined, 16#9a};
1572dec_huffman_lookup(16#5f, 16#f) -> {ok, undefined, 16#a9};
1573dec_huffman_lookup(16#60, 16#0) -> {more, 16#5c, 16#01};
1574dec_huffman_lookup(16#60, 16#1) -> {ok, 16#5c, 16#16};
1575dec_huffman_lookup(16#60, 16#2) -> {more, 16#c3, 16#01};
1576dec_huffman_lookup(16#60, 16#3) -> {ok, 16#c3, 16#16};
1577dec_huffman_lookup(16#60, 16#4) -> {more, 16#d0, 16#01};
1578dec_huffman_lookup(16#60, 16#5) -> {ok, 16#d0, 16#16};
1579dec_huffman_lookup(16#60, 16#6) -> {ok, 16#80, 16#00};
1580dec_huffman_lookup(16#60, 16#7) -> {ok, 16#82, 16#00};
1581dec_huffman_lookup(16#60, 16#8) -> {ok, 16#83, 16#00};
1582dec_huffman_lookup(16#60, 16#9) -> {ok, 16#a2, 16#00};
1583dec_huffman_lookup(16#60, 16#a) -> {ok, 16#b8, 16#00};
1584dec_huffman_lookup(16#60, 16#b) -> {ok, 16#c2, 16#00};
1585dec_huffman_lookup(16#60, 16#c) -> {ok, 16#e0, 16#00};
1586dec_huffman_lookup(16#60, 16#d) -> {ok, 16#e2, 16#00};
1587dec_huffman_lookup(16#60, 16#e) -> {more, undefined, 16#6c};
1588dec_huffman_lookup(16#60, 16#f) -> {more, undefined, 16#6d};
1589dec_huffman_lookup(16#61, 16#0) -> {more, 16#5c, 16#02};
1590dec_huffman_lookup(16#61, 16#1) -> {more, 16#5c, 16#09};
1591dec_huffman_lookup(16#61, 16#2) -> {more, 16#5c, 16#17};
1592dec_huffman_lookup(16#61, 16#3) -> {ok, 16#5c, 16#28};
1593dec_huffman_lookup(16#61, 16#4) -> {more, 16#c3, 16#02};
1594dec_huffman_lookup(16#61, 16#5) -> {more, 16#c3, 16#09};
1595dec_huffman_lookup(16#61, 16#6) -> {more, 16#c3, 16#17};
1596dec_huffman_lookup(16#61, 16#7) -> {ok, 16#c3, 16#28};
1597dec_huffman_lookup(16#61, 16#8) -> {more, 16#d0, 16#02};
1598dec_huffman_lookup(16#61, 16#9) -> {more, 16#d0, 16#09};
1599dec_huffman_lookup(16#61, 16#a) -> {more, 16#d0, 16#17};
1600dec_huffman_lookup(16#61, 16#b) -> {ok, 16#d0, 16#28};
1601dec_huffman_lookup(16#61, 16#c) -> {more, 16#80, 16#01};
1602dec_huffman_lookup(16#61, 16#d) -> {ok, 16#80, 16#16};
1603dec_huffman_lookup(16#61, 16#e) -> {more, 16#82, 16#01};
1604dec_huffman_lookup(16#61, 16#f) -> {ok, 16#82, 16#16};
1605dec_huffman_lookup(16#62, 16#0) -> {more, 16#5c, 16#03};
1606dec_huffman_lookup(16#62, 16#1) -> {more, 16#5c, 16#06};
1607dec_huffman_lookup(16#62, 16#2) -> {more, 16#5c, 16#0a};
1608dec_huffman_lookup(16#62, 16#3) -> {more, 16#5c, 16#0f};
1609dec_huffman_lookup(16#62, 16#4) -> {more, 16#5c, 16#18};
1610dec_huffman_lookup(16#62, 16#5) -> {more, 16#5c, 16#1f};
1611dec_huffman_lookup(16#62, 16#6) -> {more, 16#5c, 16#29};
1612dec_huffman_lookup(16#62, 16#7) -> {ok, 16#5c, 16#38};
1613dec_huffman_lookup(16#62, 16#8) -> {more, 16#c3, 16#03};
1614dec_huffman_lookup(16#62, 16#9) -> {more, 16#c3, 16#06};
1615dec_huffman_lookup(16#62, 16#a) -> {more, 16#c3, 16#0a};
1616dec_huffman_lookup(16#62, 16#b) -> {more, 16#c3, 16#0f};
1617dec_huffman_lookup(16#62, 16#c) -> {more, 16#c3, 16#18};
1618dec_huffman_lookup(16#62, 16#d) -> {more, 16#c3, 16#1f};
1619dec_huffman_lookup(16#62, 16#e) -> {more, 16#c3, 16#29};
1620dec_huffman_lookup(16#62, 16#f) -> {ok, 16#c3, 16#38};
1621dec_huffman_lookup(16#63, 16#0) -> {more, 16#d0, 16#03};
1622dec_huffman_lookup(16#63, 16#1) -> {more, 16#d0, 16#06};
1623dec_huffman_lookup(16#63, 16#2) -> {more, 16#d0, 16#0a};
1624dec_huffman_lookup(16#63, 16#3) -> {more, 16#d0, 16#0f};
1625dec_huffman_lookup(16#63, 16#4) -> {more, 16#d0, 16#18};
1626dec_huffman_lookup(16#63, 16#5) -> {more, 16#d0, 16#1f};
1627dec_huffman_lookup(16#63, 16#6) -> {more, 16#d0, 16#29};
1628dec_huffman_lookup(16#63, 16#7) -> {ok, 16#d0, 16#38};
1629dec_huffman_lookup(16#63, 16#8) -> {more, 16#80, 16#02};
1630dec_huffman_lookup(16#63, 16#9) -> {more, 16#80, 16#09};
1631dec_huffman_lookup(16#63, 16#a) -> {more, 16#80, 16#17};
1632dec_huffman_lookup(16#63, 16#b) -> {ok, 16#80, 16#28};
1633dec_huffman_lookup(16#63, 16#c) -> {more, 16#82, 16#02};
1634dec_huffman_lookup(16#63, 16#d) -> {more, 16#82, 16#09};
1635dec_huffman_lookup(16#63, 16#e) -> {more, 16#82, 16#17};
1636dec_huffman_lookup(16#63, 16#f) -> {ok, 16#82, 16#28};
1637dec_huffman_lookup(16#64, 16#0) -> {more, 16#80, 16#03};
1638dec_huffman_lookup(16#64, 16#1) -> {more, 16#80, 16#06};
1639dec_huffman_lookup(16#64, 16#2) -> {more, 16#80, 16#0a};
1640dec_huffman_lookup(16#64, 16#3) -> {more, 16#80, 16#0f};
1641dec_huffman_lookup(16#64, 16#4) -> {more, 16#80, 16#18};
1642dec_huffman_lookup(16#64, 16#5) -> {more, 16#80, 16#1f};
1643dec_huffman_lookup(16#64, 16#6) -> {more, 16#80, 16#29};
1644dec_huffman_lookup(16#64, 16#7) -> {ok, 16#80, 16#38};
1645dec_huffman_lookup(16#64, 16#8) -> {more, 16#82, 16#03};
1646dec_huffman_lookup(16#64, 16#9) -> {more, 16#82, 16#06};
1647dec_huffman_lookup(16#64, 16#a) -> {more, 16#82, 16#0a};
1648dec_huffman_lookup(16#64, 16#b) -> {more, 16#82, 16#0f};
1649dec_huffman_lookup(16#64, 16#c) -> {more, 16#82, 16#18};
1650dec_huffman_lookup(16#64, 16#d) -> {more, 16#82, 16#1f};
1651dec_huffman_lookup(16#64, 16#e) -> {more, 16#82, 16#29};
1652dec_huffman_lookup(16#64, 16#f) -> {ok, 16#82, 16#38};
1653dec_huffman_lookup(16#65, 16#0) -> {more, 16#83, 16#01};
1654dec_huffman_lookup(16#65, 16#1) -> {ok, 16#83, 16#16};
1655dec_huffman_lookup(16#65, 16#2) -> {more, 16#a2, 16#01};
1656dec_huffman_lookup(16#65, 16#3) -> {ok, 16#a2, 16#16};
1657dec_huffman_lookup(16#65, 16#4) -> {more, 16#b8, 16#01};
1658dec_huffman_lookup(16#65, 16#5) -> {ok, 16#b8, 16#16};
1659dec_huffman_lookup(16#65, 16#6) -> {more, 16#c2, 16#01};
1660dec_huffman_lookup(16#65, 16#7) -> {ok, 16#c2, 16#16};
1661dec_huffman_lookup(16#65, 16#8) -> {more, 16#e0, 16#01};
1662dec_huffman_lookup(16#65, 16#9) -> {ok, 16#e0, 16#16};
1663dec_huffman_lookup(16#65, 16#a) -> {more, 16#e2, 16#01};
1664dec_huffman_lookup(16#65, 16#b) -> {ok, 16#e2, 16#16};
1665dec_huffman_lookup(16#65, 16#c) -> {ok, 16#99, 16#00};
1666dec_huffman_lookup(16#65, 16#d) -> {ok, 16#a1, 16#00};
1667dec_huffman_lookup(16#65, 16#e) -> {ok, 16#a7, 16#00};
1668dec_huffman_lookup(16#65, 16#f) -> {ok, 16#ac, 16#00};
1669dec_huffman_lookup(16#66, 16#0) -> {more, 16#83, 16#02};
1670dec_huffman_lookup(16#66, 16#1) -> {more, 16#83, 16#09};
1671dec_huffman_lookup(16#66, 16#2) -> {more, 16#83, 16#17};
1672dec_huffman_lookup(16#66, 16#3) -> {ok, 16#83, 16#28};
1673dec_huffman_lookup(16#66, 16#4) -> {more, 16#a2, 16#02};
1674dec_huffman_lookup(16#66, 16#5) -> {more, 16#a2, 16#09};
1675dec_huffman_lookup(16#66, 16#6) -> {more, 16#a2, 16#17};
1676dec_huffman_lookup(16#66, 16#7) -> {ok, 16#a2, 16#28};
1677dec_huffman_lookup(16#66, 16#8) -> {more, 16#b8, 16#02};
1678dec_huffman_lookup(16#66, 16#9) -> {more, 16#b8, 16#09};
1679dec_huffman_lookup(16#66, 16#a) -> {more, 16#b8, 16#17};
1680dec_huffman_lookup(16#66, 16#b) -> {ok, 16#b8, 16#28};
1681dec_huffman_lookup(16#66, 16#c) -> {more, 16#c2, 16#02};
1682dec_huffman_lookup(16#66, 16#d) -> {more, 16#c2, 16#09};
1683dec_huffman_lookup(16#66, 16#e) -> {more, 16#c2, 16#17};
1684dec_huffman_lookup(16#66, 16#f) -> {ok, 16#c2, 16#28};
1685dec_huffman_lookup(16#67, 16#0) -> {more, 16#83, 16#03};
1686dec_huffman_lookup(16#67, 16#1) -> {more, 16#83, 16#06};
1687dec_huffman_lookup(16#67, 16#2) -> {more, 16#83, 16#0a};
1688dec_huffman_lookup(16#67, 16#3) -> {more, 16#83, 16#0f};
1689dec_huffman_lookup(16#67, 16#4) -> {more, 16#83, 16#18};
1690dec_huffman_lookup(16#67, 16#5) -> {more, 16#83, 16#1f};
1691dec_huffman_lookup(16#67, 16#6) -> {more, 16#83, 16#29};
1692dec_huffman_lookup(16#67, 16#7) -> {ok, 16#83, 16#38};
1693dec_huffman_lookup(16#67, 16#8) -> {more, 16#a2, 16#03};
1694dec_huffman_lookup(16#67, 16#9) -> {more, 16#a2, 16#06};
1695dec_huffman_lookup(16#67, 16#a) -> {more, 16#a2, 16#0a};
1696dec_huffman_lookup(16#67, 16#b) -> {more, 16#a2, 16#0f};
1697dec_huffman_lookup(16#67, 16#c) -> {more, 16#a2, 16#18};
1698dec_huffman_lookup(16#67, 16#d) -> {more, 16#a2, 16#1f};
1699dec_huffman_lookup(16#67, 16#e) -> {more, 16#a2, 16#29};
1700dec_huffman_lookup(16#67, 16#f) -> {ok, 16#a2, 16#38};
1701dec_huffman_lookup(16#68, 16#0) -> {more, 16#b8, 16#03};
1702dec_huffman_lookup(16#68, 16#1) -> {more, 16#b8, 16#06};
1703dec_huffman_lookup(16#68, 16#2) -> {more, 16#b8, 16#0a};
1704dec_huffman_lookup(16#68, 16#3) -> {more, 16#b8, 16#0f};
1705dec_huffman_lookup(16#68, 16#4) -> {more, 16#b8, 16#18};
1706dec_huffman_lookup(16#68, 16#5) -> {more, 16#b8, 16#1f};
1707dec_huffman_lookup(16#68, 16#6) -> {more, 16#b8, 16#29};
1708dec_huffman_lookup(16#68, 16#7) -> {ok, 16#b8, 16#38};
1709dec_huffman_lookup(16#68, 16#8) -> {more, 16#c2, 16#03};
1710dec_huffman_lookup(16#68, 16#9) -> {more, 16#c2, 16#06};
1711dec_huffman_lookup(16#68, 16#a) -> {more, 16#c2, 16#0a};
1712dec_huffman_lookup(16#68, 16#b) -> {more, 16#c2, 16#0f};
1713dec_huffman_lookup(16#68, 16#c) -> {more, 16#c2, 16#18};
1714dec_huffman_lookup(16#68, 16#d) -> {more, 16#c2, 16#1f};
1715dec_huffman_lookup(16#68, 16#e) -> {more, 16#c2, 16#29};
1716dec_huffman_lookup(16#68, 16#f) -> {ok, 16#c2, 16#38};
1717dec_huffman_lookup(16#69, 16#0) -> {more, 16#e0, 16#02};
1718dec_huffman_lookup(16#69, 16#1) -> {more, 16#e0, 16#09};
1719dec_huffman_lookup(16#69, 16#2) -> {more, 16#e0, 16#17};
1720dec_huffman_lookup(16#69, 16#3) -> {ok, 16#e0, 16#28};
1721dec_huffman_lookup(16#69, 16#4) -> {more, 16#e2, 16#02};
1722dec_huffman_lookup(16#69, 16#5) -> {more, 16#e2, 16#09};
1723dec_huffman_lookup(16#69, 16#6) -> {more, 16#e2, 16#17};
1724dec_huffman_lookup(16#69, 16#7) -> {ok, 16#e2, 16#28};
1725dec_huffman_lookup(16#69, 16#8) -> {more, 16#99, 16#01};
1726dec_huffman_lookup(16#69, 16#9) -> {ok, 16#99, 16#16};
1727dec_huffman_lookup(16#69, 16#a) -> {more, 16#a1, 16#01};
1728dec_huffman_lookup(16#69, 16#b) -> {ok, 16#a1, 16#16};
1729dec_huffman_lookup(16#69, 16#c) -> {more, 16#a7, 16#01};
1730dec_huffman_lookup(16#69, 16#d) -> {ok, 16#a7, 16#16};
1731dec_huffman_lookup(16#69, 16#e) -> {more, 16#ac, 16#01};
1732dec_huffman_lookup(16#69, 16#f) -> {ok, 16#ac, 16#16};
1733dec_huffman_lookup(16#6a, 16#0) -> {more, 16#e0, 16#03};
1734dec_huffman_lookup(16#6a, 16#1) -> {more, 16#e0, 16#06};
1735dec_huffman_lookup(16#6a, 16#2) -> {more, 16#e0, 16#0a};
1736dec_huffman_lookup(16#6a, 16#3) -> {more, 16#e0, 16#0f};
1737dec_huffman_lookup(16#6a, 16#4) -> {more, 16#e0, 16#18};
1738dec_huffman_lookup(16#6a, 16#5) -> {more, 16#e0, 16#1f};
1739dec_huffman_lookup(16#6a, 16#6) -> {more, 16#e0, 16#29};
1740dec_huffman_lookup(16#6a, 16#7) -> {ok, 16#e0, 16#38};
1741dec_huffman_lookup(16#6a, 16#8) -> {more, 16#e2, 16#03};
1742dec_huffman_lookup(16#6a, 16#9) -> {more, 16#e2, 16#06};
1743dec_huffman_lookup(16#6a, 16#a) -> {more, 16#e2, 16#0a};
1744dec_huffman_lookup(16#6a, 16#b) -> {more, 16#e2, 16#0f};
1745dec_huffman_lookup(16#6a, 16#c) -> {more, 16#e2, 16#18};
1746dec_huffman_lookup(16#6a, 16#d) -> {more, 16#e2, 16#1f};
1747dec_huffman_lookup(16#6a, 16#e) -> {more, 16#e2, 16#29};
1748dec_huffman_lookup(16#6a, 16#f) -> {ok, 16#e2, 16#38};
1749dec_huffman_lookup(16#6b, 16#0) -> {more, 16#99, 16#02};
1750dec_huffman_lookup(16#6b, 16#1) -> {more, 16#99, 16#09};
1751dec_huffman_lookup(16#6b, 16#2) -> {more, 16#99, 16#17};
1752dec_huffman_lookup(16#6b, 16#3) -> {ok, 16#99, 16#28};
1753dec_huffman_lookup(16#6b, 16#4) -> {more, 16#a1, 16#02};
1754dec_huffman_lookup(16#6b, 16#5) -> {more, 16#a1, 16#09};
1755dec_huffman_lookup(16#6b, 16#6) -> {more, 16#a1, 16#17};
1756dec_huffman_lookup(16#6b, 16#7) -> {ok, 16#a1, 16#28};
1757dec_huffman_lookup(16#6b, 16#8) -> {more, 16#a7, 16#02};
1758dec_huffman_lookup(16#6b, 16#9) -> {more, 16#a7, 16#09};
1759dec_huffman_lookup(16#6b, 16#a) -> {more, 16#a7, 16#17};
1760dec_huffman_lookup(16#6b, 16#b) -> {ok, 16#a7, 16#28};
1761dec_huffman_lookup(16#6b, 16#c) -> {more, 16#ac, 16#02};
1762dec_huffman_lookup(16#6b, 16#d) -> {more, 16#ac, 16#09};
1763dec_huffman_lookup(16#6b, 16#e) -> {more, 16#ac, 16#17};
1764dec_huffman_lookup(16#6b, 16#f) -> {ok, 16#ac, 16#28};
1765dec_huffman_lookup(16#6c, 16#0) -> {more, 16#99, 16#03};
1766dec_huffman_lookup(16#6c, 16#1) -> {more, 16#99, 16#06};
1767dec_huffman_lookup(16#6c, 16#2) -> {more, 16#99, 16#0a};
1768dec_huffman_lookup(16#6c, 16#3) -> {more, 16#99, 16#0f};
1769dec_huffman_lookup(16#6c, 16#4) -> {more, 16#99, 16#18};
1770dec_huffman_lookup(16#6c, 16#5) -> {more, 16#99, 16#1f};
1771dec_huffman_lookup(16#6c, 16#6) -> {more, 16#99, 16#29};
1772dec_huffman_lookup(16#6c, 16#7) -> {ok, 16#99, 16#38};
1773dec_huffman_lookup(16#6c, 16#8) -> {more, 16#a1, 16#03};
1774dec_huffman_lookup(16#6c, 16#9) -> {more, 16#a1, 16#06};
1775dec_huffman_lookup(16#6c, 16#a) -> {more, 16#a1, 16#0a};
1776dec_huffman_lookup(16#6c, 16#b) -> {more, 16#a1, 16#0f};
1777dec_huffman_lookup(16#6c, 16#c) -> {more, 16#a1, 16#18};
1778dec_huffman_lookup(16#6c, 16#d) -> {more, 16#a1, 16#1f};
1779dec_huffman_lookup(16#6c, 16#e) -> {more, 16#a1, 16#29};
1780dec_huffman_lookup(16#6c, 16#f) -> {ok, 16#a1, 16#38};
1781dec_huffman_lookup(16#6d, 16#0) -> {more, 16#a7, 16#03};
1782dec_huffman_lookup(16#6d, 16#1) -> {more, 16#a7, 16#06};
1783dec_huffman_lookup(16#6d, 16#2) -> {more, 16#a7, 16#0a};
1784dec_huffman_lookup(16#6d, 16#3) -> {more, 16#a7, 16#0f};
1785dec_huffman_lookup(16#6d, 16#4) -> {more, 16#a7, 16#18};
1786dec_huffman_lookup(16#6d, 16#5) -> {more, 16#a7, 16#1f};
1787dec_huffman_lookup(16#6d, 16#6) -> {more, 16#a7, 16#29};
1788dec_huffman_lookup(16#6d, 16#7) -> {ok, 16#a7, 16#38};
1789dec_huffman_lookup(16#6d, 16#8) -> {more, 16#ac, 16#03};
1790dec_huffman_lookup(16#6d, 16#9) -> {more, 16#ac, 16#06};
1791dec_huffman_lookup(16#6d, 16#a) -> {more, 16#ac, 16#0a};
1792dec_huffman_lookup(16#6d, 16#b) -> {more, 16#ac, 16#0f};
1793dec_huffman_lookup(16#6d, 16#c) -> {more, 16#ac, 16#18};
1794dec_huffman_lookup(16#6d, 16#d) -> {more, 16#ac, 16#1f};
1795dec_huffman_lookup(16#6d, 16#e) -> {more, 16#ac, 16#29};
1796dec_huffman_lookup(16#6d, 16#f) -> {ok, 16#ac, 16#38};
1797dec_huffman_lookup(16#6e, 16#0) -> {more, undefined, 16#72};
1798dec_huffman_lookup(16#6e, 16#1) -> {more, undefined, 16#73};
1799dec_huffman_lookup(16#6e, 16#2) -> {more, undefined, 16#75};
1800dec_huffman_lookup(16#6e, 16#3) -> {more, undefined, 16#76};
1801dec_huffman_lookup(16#6e, 16#4) -> {more, undefined, 16#79};
1802dec_huffman_lookup(16#6e, 16#5) -> {more, undefined, 16#7b};
1803dec_huffman_lookup(16#6e, 16#6) -> {more, undefined, 16#7f};
1804dec_huffman_lookup(16#6e, 16#7) -> {more, undefined, 16#82};
1805dec_huffman_lookup(16#6e, 16#8) -> {more, undefined, 16#88};
1806dec_huffman_lookup(16#6e, 16#9) -> {more, undefined, 16#8b};
1807dec_huffman_lookup(16#6e, 16#a) -> {more, undefined, 16#8f};
1808dec_huffman_lookup(16#6e, 16#b) -> {more, undefined, 16#92};
1809dec_huffman_lookup(16#6e, 16#c) -> {more, undefined, 16#9b};
1810dec_huffman_lookup(16#6e, 16#d) -> {more, undefined, 16#a2};
1811dec_huffman_lookup(16#6e, 16#e) -> {more, undefined, 16#aa};
1812dec_huffman_lookup(16#6e, 16#f) -> {ok, undefined, 16#b4};
1813dec_huffman_lookup(16#6f, 16#0) -> {ok, 16#b0, 16#00};
1814dec_huffman_lookup(16#6f, 16#1) -> {ok, 16#b1, 16#00};
1815dec_huffman_lookup(16#6f, 16#2) -> {ok, 16#b3, 16#00};
1816dec_huffman_lookup(16#6f, 16#3) -> {ok, 16#d1, 16#00};
1817dec_huffman_lookup(16#6f, 16#4) -> {ok, 16#d8, 16#00};
1818dec_huffman_lookup(16#6f, 16#5) -> {ok, 16#d9, 16#00};
1819dec_huffman_lookup(16#6f, 16#6) -> {ok, 16#e3, 16#00};
1820dec_huffman_lookup(16#6f, 16#7) -> {ok, 16#e5, 16#00};
1821dec_huffman_lookup(16#6f, 16#8) -> {ok, 16#e6, 16#00};
1822dec_huffman_lookup(16#6f, 16#9) -> {more, undefined, 16#7a};
1823dec_huffman_lookup(16#6f, 16#a) -> {more, undefined, 16#7c};
1824dec_huffman_lookup(16#6f, 16#b) -> {more, undefined, 16#7d};
1825dec_huffman_lookup(16#6f, 16#c) -> {more, undefined, 16#80};
1826dec_huffman_lookup(16#6f, 16#d) -> {more, undefined, 16#81};
1827dec_huffman_lookup(16#6f, 16#e) -> {more, undefined, 16#83};
1828dec_huffman_lookup(16#6f, 16#f) -> {more, undefined, 16#84};
1829dec_huffman_lookup(16#70, 16#0) -> {more, 16#b0, 16#01};
1830dec_huffman_lookup(16#70, 16#1) -> {ok, 16#b0, 16#16};
1831dec_huffman_lookup(16#70, 16#2) -> {more, 16#b1, 16#01};
1832dec_huffman_lookup(16#70, 16#3) -> {ok, 16#b1, 16#16};
1833dec_huffman_lookup(16#70, 16#4) -> {more, 16#b3, 16#01};
1834dec_huffman_lookup(16#70, 16#5) -> {ok, 16#b3, 16#16};
1835dec_huffman_lookup(16#70, 16#6) -> {more, 16#d1, 16#01};
1836dec_huffman_lookup(16#70, 16#7) -> {ok, 16#d1, 16#16};
1837dec_huffman_lookup(16#70, 16#8) -> {more, 16#d8, 16#01};
1838dec_huffman_lookup(16#70, 16#9) -> {ok, 16#d8, 16#16};
1839dec_huffman_lookup(16#70, 16#a) -> {more, 16#d9, 16#01};
1840dec_huffman_lookup(16#70, 16#b) -> {ok, 16#d9, 16#16};
1841dec_huffman_lookup(16#70, 16#c) -> {more, 16#e3, 16#01};
1842dec_huffman_lookup(16#70, 16#d) -> {ok, 16#e3, 16#16};
1843dec_huffman_lookup(16#70, 16#e) -> {more, 16#e5, 16#01};
1844dec_huffman_lookup(16#70, 16#f) -> {ok, 16#e5, 16#16};
1845dec_huffman_lookup(16#71, 16#0) -> {more, 16#b0, 16#02};
1846dec_huffman_lookup(16#71, 16#1) -> {more, 16#b0, 16#09};
1847dec_huffman_lookup(16#71, 16#2) -> {more, 16#b0, 16#17};
1848dec_huffman_lookup(16#71, 16#3) -> {ok, 16#b0, 16#28};
1849dec_huffman_lookup(16#71, 16#4) -> {more, 16#b1, 16#02};
1850dec_huffman_lookup(16#71, 16#5) -> {more, 16#b1, 16#09};
1851dec_huffman_lookup(16#71, 16#6) -> {more, 16#b1, 16#17};
1852dec_huffman_lookup(16#71, 16#7) -> {ok, 16#b1, 16#28};
1853dec_huffman_lookup(16#71, 16#8) -> {more, 16#b3, 16#02};
1854dec_huffman_lookup(16#71, 16#9) -> {more, 16#b3, 16#09};
1855dec_huffman_lookup(16#71, 16#a) -> {more, 16#b3, 16#17};
1856dec_huffman_lookup(16#71, 16#b) -> {ok, 16#b3, 16#28};
1857dec_huffman_lookup(16#71, 16#c) -> {more, 16#d1, 16#02};
1858dec_huffman_lookup(16#71, 16#d) -> {more, 16#d1, 16#09};
1859dec_huffman_lookup(16#71, 16#e) -> {more, 16#d1, 16#17};
1860dec_huffman_lookup(16#71, 16#f) -> {ok, 16#d1, 16#28};
1861dec_huffman_lookup(16#72, 16#0) -> {more, 16#b0, 16#03};
1862dec_huffman_lookup(16#72, 16#1) -> {more, 16#b0, 16#06};
1863dec_huffman_lookup(16#72, 16#2) -> {more, 16#b0, 16#0a};
1864dec_huffman_lookup(16#72, 16#3) -> {more, 16#b0, 16#0f};
1865dec_huffman_lookup(16#72, 16#4) -> {more, 16#b0, 16#18};
1866dec_huffman_lookup(16#72, 16#5) -> {more, 16#b0, 16#1f};
1867dec_huffman_lookup(16#72, 16#6) -> {more, 16#b0, 16#29};
1868dec_huffman_lookup(16#72, 16#7) -> {ok, 16#b0, 16#38};
1869dec_huffman_lookup(16#72, 16#8) -> {more, 16#b1, 16#03};
1870dec_huffman_lookup(16#72, 16#9) -> {more, 16#b1, 16#06};
1871dec_huffman_lookup(16#72, 16#a) -> {more, 16#b1, 16#0a};
1872dec_huffman_lookup(16#72, 16#b) -> {more, 16#b1, 16#0f};
1873dec_huffman_lookup(16#72, 16#c) -> {more, 16#b1, 16#18};
1874dec_huffman_lookup(16#72, 16#d) -> {more, 16#b1, 16#1f};
1875dec_huffman_lookup(16#72, 16#e) -> {more, 16#b1, 16#29};
1876dec_huffman_lookup(16#72, 16#f) -> {ok, 16#b1, 16#38};
1877dec_huffman_lookup(16#73, 16#0) -> {more, 16#b3, 16#03};
1878dec_huffman_lookup(16#73, 16#1) -> {more, 16#b3, 16#06};
1879dec_huffman_lookup(16#73, 16#2) -> {more, 16#b3, 16#0a};
1880dec_huffman_lookup(16#73, 16#3) -> {more, 16#b3, 16#0f};
1881dec_huffman_lookup(16#73, 16#4) -> {more, 16#b3, 16#18};
1882dec_huffman_lookup(16#73, 16#5) -> {more, 16#b3, 16#1f};
1883dec_huffman_lookup(16#73, 16#6) -> {more, 16#b3, 16#29};
1884dec_huffman_lookup(16#73, 16#7) -> {ok, 16#b3, 16#38};
1885dec_huffman_lookup(16#73, 16#8) -> {more, 16#d1, 16#03};
1886dec_huffman_lookup(16#73, 16#9) -> {more, 16#d1, 16#06};
1887dec_huffman_lookup(16#73, 16#a) -> {more, 16#d1, 16#0a};
1888dec_huffman_lookup(16#73, 16#b) -> {more, 16#d1, 16#0f};
1889dec_huffman_lookup(16#73, 16#c) -> {more, 16#d1, 16#18};
1890dec_huffman_lookup(16#73, 16#d) -> {more, 16#d1, 16#1f};
1891dec_huffman_lookup(16#73, 16#e) -> {more, 16#d1, 16#29};
1892dec_huffman_lookup(16#73, 16#f) -> {ok, 16#d1, 16#38};
1893dec_huffman_lookup(16#74, 16#0) -> {more, 16#d8, 16#02};
1894dec_huffman_lookup(16#74, 16#1) -> {more, 16#d8, 16#09};
1895dec_huffman_lookup(16#74, 16#2) -> {more, 16#d8, 16#17};
1896dec_huffman_lookup(16#74, 16#3) -> {ok, 16#d8, 16#28};
1897dec_huffman_lookup(16#74, 16#4) -> {more, 16#d9, 16#02};
1898dec_huffman_lookup(16#74, 16#5) -> {more, 16#d9, 16#09};
1899dec_huffman_lookup(16#74, 16#6) -> {more, 16#d9, 16#17};
1900dec_huffman_lookup(16#74, 16#7) -> {ok, 16#d9, 16#28};
1901dec_huffman_lookup(16#74, 16#8) -> {more, 16#e3, 16#02};
1902dec_huffman_lookup(16#74, 16#9) -> {more, 16#e3, 16#09};
1903dec_huffman_lookup(16#74, 16#a) -> {more, 16#e3, 16#17};
1904dec_huffman_lookup(16#74, 16#b) -> {ok, 16#e3, 16#28};
1905dec_huffman_lookup(16#74, 16#c) -> {more, 16#e5, 16#02};
1906dec_huffman_lookup(16#74, 16#d) -> {more, 16#e5, 16#09};
1907dec_huffman_lookup(16#74, 16#e) -> {more, 16#e5, 16#17};
1908dec_huffman_lookup(16#74, 16#f) -> {ok, 16#e5, 16#28};
1909dec_huffman_lookup(16#75, 16#0) -> {more, 16#d8, 16#03};
1910dec_huffman_lookup(16#75, 16#1) -> {more, 16#d8, 16#06};
1911dec_huffman_lookup(16#75, 16#2) -> {more, 16#d8, 16#0a};
1912dec_huffman_lookup(16#75, 16#3) -> {more, 16#d8, 16#0f};
1913dec_huffman_lookup(16#75, 16#4) -> {more, 16#d8, 16#18};
1914dec_huffman_lookup(16#75, 16#5) -> {more, 16#d8, 16#1f};
1915dec_huffman_lookup(16#75, 16#6) -> {more, 16#d8, 16#29};
1916dec_huffman_lookup(16#75, 16#7) -> {ok, 16#d8, 16#38};
1917dec_huffman_lookup(16#75, 16#8) -> {more, 16#d9, 16#03};
1918dec_huffman_lookup(16#75, 16#9) -> {more, 16#d9, 16#06};
1919dec_huffman_lookup(16#75, 16#a) -> {more, 16#d9, 16#0a};
1920dec_huffman_lookup(16#75, 16#b) -> {more, 16#d9, 16#0f};
1921dec_huffman_lookup(16#75, 16#c) -> {more, 16#d9, 16#18};
1922dec_huffman_lookup(16#75, 16#d) -> {more, 16#d9, 16#1f};
1923dec_huffman_lookup(16#75, 16#e) -> {more, 16#d9, 16#29};
1924dec_huffman_lookup(16#75, 16#f) -> {ok, 16#d9, 16#38};
1925dec_huffman_lookup(16#76, 16#0) -> {more, 16#e3, 16#03};
1926dec_huffman_lookup(16#76, 16#1) -> {more, 16#e3, 16#06};
1927dec_huffman_lookup(16#76, 16#2) -> {more, 16#e3, 16#0a};
1928dec_huffman_lookup(16#76, 16#3) -> {more, 16#e3, 16#0f};
1929dec_huffman_lookup(16#76, 16#4) -> {more, 16#e3, 16#18};
1930dec_huffman_lookup(16#76, 16#5) -> {more, 16#e3, 16#1f};
1931dec_huffman_lookup(16#76, 16#6) -> {more, 16#e3, 16#29};
1932dec_huffman_lookup(16#76, 16#7) -> {ok, 16#e3, 16#38};
1933dec_huffman_lookup(16#76, 16#8) -> {more, 16#e5, 16#03};
1934dec_huffman_lookup(16#76, 16#9) -> {more, 16#e5, 16#06};
1935dec_huffman_lookup(16#76, 16#a) -> {more, 16#e5, 16#0a};
1936dec_huffman_lookup(16#76, 16#b) -> {more, 16#e5, 16#0f};
1937dec_huffman_lookup(16#76, 16#c) -> {more, 16#e5, 16#18};
1938dec_huffman_lookup(16#76, 16#d) -> {more, 16#e5, 16#1f};
1939dec_huffman_lookup(16#76, 16#e) -> {more, 16#e5, 16#29};
1940dec_huffman_lookup(16#76, 16#f) -> {ok, 16#e5, 16#38};
1941dec_huffman_lookup(16#77, 16#0) -> {more, 16#e6, 16#01};
1942dec_huffman_lookup(16#77, 16#1) -> {ok, 16#e6, 16#16};
1943dec_huffman_lookup(16#77, 16#2) -> {ok, 16#81, 16#00};
1944dec_huffman_lookup(16#77, 16#3) -> {ok, 16#84, 16#00};
1945dec_huffman_lookup(16#77, 16#4) -> {ok, 16#85, 16#00};
1946dec_huffman_lookup(16#77, 16#5) -> {ok, 16#86, 16#00};
1947dec_huffman_lookup(16#77, 16#6) -> {ok, 16#88, 16#00};
1948dec_huffman_lookup(16#77, 16#7) -> {ok, 16#92, 16#00};
1949dec_huffman_lookup(16#77, 16#8) -> {ok, 16#9a, 16#00};
1950dec_huffman_lookup(16#77, 16#9) -> {ok, 16#9c, 16#00};
1951dec_huffman_lookup(16#77, 16#a) -> {ok, 16#a0, 16#00};
1952dec_huffman_lookup(16#77, 16#b) -> {ok, 16#a3, 16#00};
1953dec_huffman_lookup(16#77, 16#c) -> {ok, 16#a4, 16#00};
1954dec_huffman_lookup(16#77, 16#d) -> {ok, 16#a9, 16#00};
1955dec_huffman_lookup(16#77, 16#e) -> {ok, 16#aa, 16#00};
1956dec_huffman_lookup(16#77, 16#f) -> {ok, 16#ad, 16#00};
1957dec_huffman_lookup(16#78, 16#0) -> {more, 16#e6, 16#02};
1958dec_huffman_lookup(16#78, 16#1) -> {more, 16#e6, 16#09};
1959dec_huffman_lookup(16#78, 16#2) -> {more, 16#e6, 16#17};
1960dec_huffman_lookup(16#78, 16#3) -> {ok, 16#e6, 16#28};
1961dec_huffman_lookup(16#78, 16#4) -> {more, 16#81, 16#01};
1962dec_huffman_lookup(16#78, 16#5) -> {ok, 16#81, 16#16};
1963dec_huffman_lookup(16#78, 16#6) -> {more, 16#84, 16#01};
1964dec_huffman_lookup(16#78, 16#7) -> {ok, 16#84, 16#16};
1965dec_huffman_lookup(16#78, 16#8) -> {more, 16#85, 16#01};
1966dec_huffman_lookup(16#78, 16#9) -> {ok, 16#85, 16#16};
1967dec_huffman_lookup(16#78, 16#a) -> {more, 16#86, 16#01};
1968dec_huffman_lookup(16#78, 16#b) -> {ok, 16#86, 16#16};
1969dec_huffman_lookup(16#78, 16#c) -> {more, 16#88, 16#01};
1970dec_huffman_lookup(16#78, 16#d) -> {ok, 16#88, 16#16};
1971dec_huffman_lookup(16#78, 16#e) -> {more, 16#92, 16#01};
1972dec_huffman_lookup(16#78, 16#f) -> {ok, 16#92, 16#16};
1973dec_huffman_lookup(16#79, 16#0) -> {more, 16#e6, 16#03};
1974dec_huffman_lookup(16#79, 16#1) -> {more, 16#e6, 16#06};
1975dec_huffman_lookup(16#79, 16#2) -> {more, 16#e6, 16#0a};
1976dec_huffman_lookup(16#79, 16#3) -> {more, 16#e6, 16#0f};
1977dec_huffman_lookup(16#79, 16#4) -> {more, 16#e6, 16#18};
1978dec_huffman_lookup(16#79, 16#5) -> {more, 16#e6, 16#1f};
1979dec_huffman_lookup(16#79, 16#6) -> {more, 16#e6, 16#29};
1980dec_huffman_lookup(16#79, 16#7) -> {ok, 16#e6, 16#38};
1981dec_huffman_lookup(16#79, 16#8) -> {more, 16#81, 16#02};
1982dec_huffman_lookup(16#79, 16#9) -> {more, 16#81, 16#09};
1983dec_huffman_lookup(16#79, 16#a) -> {more, 16#81, 16#17};
1984dec_huffman_lookup(16#79, 16#b) -> {ok, 16#81, 16#28};
1985dec_huffman_lookup(16#79, 16#c) -> {more, 16#84, 16#02};
1986dec_huffman_lookup(16#79, 16#d) -> {more, 16#84, 16#09};
1987dec_huffman_lookup(16#79, 16#e) -> {more, 16#84, 16#17};
1988dec_huffman_lookup(16#79, 16#f) -> {ok, 16#84, 16#28};
1989dec_huffman_lookup(16#7a, 16#0) -> {more, 16#81, 16#03};
1990dec_huffman_lookup(16#7a, 16#1) -> {more, 16#81, 16#06};
1991dec_huffman_lookup(16#7a, 16#2) -> {more, 16#81, 16#0a};
1992dec_huffman_lookup(16#7a, 16#3) -> {more, 16#81, 16#0f};
1993dec_huffman_lookup(16#7a, 16#4) -> {more, 16#81, 16#18};
1994dec_huffman_lookup(16#7a, 16#5) -> {more, 16#81, 16#1f};
1995dec_huffman_lookup(16#7a, 16#6) -> {more, 16#81, 16#29};
1996dec_huffman_lookup(16#7a, 16#7) -> {ok, 16#81, 16#38};
1997dec_huffman_lookup(16#7a, 16#8) -> {more, 16#84, 16#03};
1998dec_huffman_lookup(16#7a, 16#9) -> {more, 16#84, 16#06};
1999dec_huffman_lookup(16#7a, 16#a) -> {more, 16#84, 16#0a};
2000dec_huffman_lookup(16#7a, 16#b) -> {more, 16#84, 16#0f};
2001dec_huffman_lookup(16#7a, 16#c) -> {more, 16#84, 16#18};
2002dec_huffman_lookup(16#7a, 16#d) -> {more, 16#84, 16#1f};
2003dec_huffman_lookup(16#7a, 16#e) -> {more, 16#84, 16#29};
2004dec_huffman_lookup(16#7a, 16#f) -> {ok, 16#84, 16#38};
2005dec_huffman_lookup(16#7b, 16#0) -> {more, 16#85, 16#02};
2006dec_huffman_lookup(16#7b, 16#1) -> {more, 16#85, 16#09};
2007dec_huffman_lookup(16#7b, 16#2) -> {more, 16#85, 16#17};
2008dec_huffman_lookup(16#7b, 16#3) -> {ok, 16#85, 16#28};
2009dec_huffman_lookup(16#7b, 16#4) -> {more, 16#86, 16#02};
2010dec_huffman_lookup(16#7b, 16#5) -> {more, 16#86, 16#09};
2011dec_huffman_lookup(16#7b, 16#6) -> {more, 16#86, 16#17};
2012dec_huffman_lookup(16#7b, 16#7) -> {ok, 16#86, 16#28};
2013dec_huffman_lookup(16#7b, 16#8) -> {more, 16#88, 16#02};
2014dec_huffman_lookup(16#7b, 16#9) -> {more, 16#88, 16#09};
2015dec_huffman_lookup(16#7b, 16#a) -> {more, 16#88, 16#17};
2016dec_huffman_lookup(16#7b, 16#b) -> {ok, 16#88, 16#28};
2017dec_huffman_lookup(16#7b, 16#c) -> {more, 16#92, 16#02};
2018dec_huffman_lookup(16#7b, 16#d) -> {more, 16#92, 16#09};
2019dec_huffman_lookup(16#7b, 16#e) -> {more, 16#92, 16#17};
2020dec_huffman_lookup(16#7b, 16#f) -> {ok, 16#92, 16#28};
2021dec_huffman_lookup(16#7c, 16#0) -> {more, 16#85, 16#03};
2022dec_huffman_lookup(16#7c, 16#1) -> {more, 16#85, 16#06};
2023dec_huffman_lookup(16#7c, 16#2) -> {more, 16#85, 16#0a};
2024dec_huffman_lookup(16#7c, 16#3) -> {more, 16#85, 16#0f};
2025dec_huffman_lookup(16#7c, 16#4) -> {more, 16#85, 16#18};
2026dec_huffman_lookup(16#7c, 16#5) -> {more, 16#85, 16#1f};
2027dec_huffman_lookup(16#7c, 16#6) -> {more, 16#85, 16#29};
2028dec_huffman_lookup(16#7c, 16#7) -> {ok, 16#85, 16#38};
2029dec_huffman_lookup(16#7c, 16#8) -> {more, 16#86, 16#03};
2030dec_huffman_lookup(16#7c, 16#9) -> {more, 16#86, 16#06};
2031dec_huffman_lookup(16#7c, 16#a) -> {more, 16#86, 16#0a};
2032dec_huffman_lookup(16#7c, 16#b) -> {more, 16#86, 16#0f};
2033dec_huffman_lookup(16#7c, 16#c) -> {more, 16#86, 16#18};
2034dec_huffman_lookup(16#7c, 16#d) -> {more, 16#86, 16#1f};
2035dec_huffman_lookup(16#7c, 16#e) -> {more, 16#86, 16#29};
2036dec_huffman_lookup(16#7c, 16#f) -> {ok, 16#86, 16#38};
2037dec_huffman_lookup(16#7d, 16#0) -> {more, 16#88, 16#03};
2038dec_huffman_lookup(16#7d, 16#1) -> {more, 16#88, 16#06};
2039dec_huffman_lookup(16#7d, 16#2) -> {more, 16#88, 16#0a};
2040dec_huffman_lookup(16#7d, 16#3) -> {more, 16#88, 16#0f};
2041dec_huffman_lookup(16#7d, 16#4) -> {more, 16#88, 16#18};
2042dec_huffman_lookup(16#7d, 16#5) -> {more, 16#88, 16#1f};
2043dec_huffman_lookup(16#7d, 16#6) -> {more, 16#88, 16#29};
2044dec_huffman_lookup(16#7d, 16#7) -> {ok, 16#88, 16#38};
2045dec_huffman_lookup(16#7d, 16#8) -> {more, 16#92, 16#03};
2046dec_huffman_lookup(16#7d, 16#9) -> {more, 16#92, 16#06};
2047dec_huffman_lookup(16#7d, 16#a) -> {more, 16#92, 16#0a};
2048dec_huffman_lookup(16#7d, 16#b) -> {more, 16#92, 16#0f};
2049dec_huffman_lookup(16#7d, 16#c) -> {more, 16#92, 16#18};
2050dec_huffman_lookup(16#7d, 16#d) -> {more, 16#92, 16#1f};
2051dec_huffman_lookup(16#7d, 16#e) -> {more, 16#92, 16#29};
2052dec_huffman_lookup(16#7d, 16#f) -> {ok, 16#92, 16#38};
2053dec_huffman_lookup(16#7e, 16#0) -> {more, 16#9a, 16#01};
2054dec_huffman_lookup(16#7e, 16#1) -> {ok, 16#9a, 16#16};
2055dec_huffman_lookup(16#7e, 16#2) -> {more, 16#9c, 16#01};
2056dec_huffman_lookup(16#7e, 16#3) -> {ok, 16#9c, 16#16};
2057dec_huffman_lookup(16#7e, 16#4) -> {more, 16#a0, 16#01};
2058dec_huffman_lookup(16#7e, 16#5) -> {ok, 16#a0, 16#16};
2059dec_huffman_lookup(16#7e, 16#6) -> {more, 16#a3, 16#01};
2060dec_huffman_lookup(16#7e, 16#7) -> {ok, 16#a3, 16#16};
2061dec_huffman_lookup(16#7e, 16#8) -> {more, 16#a4, 16#01};
2062dec_huffman_lookup(16#7e, 16#9) -> {ok, 16#a4, 16#16};
2063dec_huffman_lookup(16#7e, 16#a) -> {more, 16#a9, 16#01};
2064dec_huffman_lookup(16#7e, 16#b) -> {ok, 16#a9, 16#16};
2065dec_huffman_lookup(16#7e, 16#c) -> {more, 16#aa, 16#01};
2066dec_huffman_lookup(16#7e, 16#d) -> {ok, 16#aa, 16#16};
2067dec_huffman_lookup(16#7e, 16#e) -> {more, 16#ad, 16#01};
2068dec_huffman_lookup(16#7e, 16#f) -> {ok, 16#ad, 16#16};
2069dec_huffman_lookup(16#7f, 16#0) -> {more, 16#9a, 16#02};
2070dec_huffman_lookup(16#7f, 16#1) -> {more, 16#9a, 16#09};
2071dec_huffman_lookup(16#7f, 16#2) -> {more, 16#9a, 16#17};
2072dec_huffman_lookup(16#7f, 16#3) -> {ok, 16#9a, 16#28};
2073dec_huffman_lookup(16#7f, 16#4) -> {more, 16#9c, 16#02};
2074dec_huffman_lookup(16#7f, 16#5) -> {more, 16#9c, 16#09};
2075dec_huffman_lookup(16#7f, 16#6) -> {more, 16#9c, 16#17};
2076dec_huffman_lookup(16#7f, 16#7) -> {ok, 16#9c, 16#28};
2077dec_huffman_lookup(16#7f, 16#8) -> {more, 16#a0, 16#02};
2078dec_huffman_lookup(16#7f, 16#9) -> {more, 16#a0, 16#09};
2079dec_huffman_lookup(16#7f, 16#a) -> {more, 16#a0, 16#17};
2080dec_huffman_lookup(16#7f, 16#b) -> {ok, 16#a0, 16#28};
2081dec_huffman_lookup(16#7f, 16#c) -> {more, 16#a3, 16#02};
2082dec_huffman_lookup(16#7f, 16#d) -> {more, 16#a3, 16#09};
2083dec_huffman_lookup(16#7f, 16#e) -> {more, 16#a3, 16#17};
2084dec_huffman_lookup(16#7f, 16#f) -> {ok, 16#a3, 16#28};
2085dec_huffman_lookup(16#80, 16#0) -> {more, 16#9a, 16#03};
2086dec_huffman_lookup(16#80, 16#1) -> {more, 16#9a, 16#06};
2087dec_huffman_lookup(16#80, 16#2) -> {more, 16#9a, 16#0a};
2088dec_huffman_lookup(16#80, 16#3) -> {more, 16#9a, 16#0f};
2089dec_huffman_lookup(16#80, 16#4) -> {more, 16#9a, 16#18};
2090dec_huffman_lookup(16#80, 16#5) -> {more, 16#9a, 16#1f};
2091dec_huffman_lookup(16#80, 16#6) -> {more, 16#9a, 16#29};
2092dec_huffman_lookup(16#80, 16#7) -> {ok, 16#9a, 16#38};
2093dec_huffman_lookup(16#80, 16#8) -> {more, 16#9c, 16#03};
2094dec_huffman_lookup(16#80, 16#9) -> {more, 16#9c, 16#06};
2095dec_huffman_lookup(16#80, 16#a) -> {more, 16#9c, 16#0a};
2096dec_huffman_lookup(16#80, 16#b) -> {more, 16#9c, 16#0f};
2097dec_huffman_lookup(16#80, 16#c) -> {more, 16#9c, 16#18};
2098dec_huffman_lookup(16#80, 16#d) -> {more, 16#9c, 16#1f};
2099dec_huffman_lookup(16#80, 16#e) -> {more, 16#9c, 16#29};
2100dec_huffman_lookup(16#80, 16#f) -> {ok, 16#9c, 16#38};
2101dec_huffman_lookup(16#81, 16#0) -> {more, 16#a0, 16#03};
2102dec_huffman_lookup(16#81, 16#1) -> {more, 16#a0, 16#06};
2103dec_huffman_lookup(16#81, 16#2) -> {more, 16#a0, 16#0a};
2104dec_huffman_lookup(16#81, 16#3) -> {more, 16#a0, 16#0f};
2105dec_huffman_lookup(16#81, 16#4) -> {more, 16#a0, 16#18};
2106dec_huffman_lookup(16#81, 16#5) -> {more, 16#a0, 16#1f};
2107dec_huffman_lookup(16#81, 16#6) -> {more, 16#a0, 16#29};
2108dec_huffman_lookup(16#81, 16#7) -> {ok, 16#a0, 16#38};
2109dec_huffman_lookup(16#81, 16#8) -> {more, 16#a3, 16#03};
2110dec_huffman_lookup(16#81, 16#9) -> {more, 16#a3, 16#06};
2111dec_huffman_lookup(16#81, 16#a) -> {more, 16#a3, 16#0a};
2112dec_huffman_lookup(16#81, 16#b) -> {more, 16#a3, 16#0f};
2113dec_huffman_lookup(16#81, 16#c) -> {more, 16#a3, 16#18};
2114dec_huffman_lookup(16#81, 16#d) -> {more, 16#a3, 16#1f};
2115dec_huffman_lookup(16#81, 16#e) -> {more, 16#a3, 16#29};
2116dec_huffman_lookup(16#81, 16#f) -> {ok, 16#a3, 16#38};
2117dec_huffman_lookup(16#82, 16#0) -> {more, 16#a4, 16#02};
2118dec_huffman_lookup(16#82, 16#1) -> {more, 16#a4, 16#09};
2119dec_huffman_lookup(16#82, 16#2) -> {more, 16#a4, 16#17};
2120dec_huffman_lookup(16#82, 16#3) -> {ok, 16#a4, 16#28};
2121dec_huffman_lookup(16#82, 16#4) -> {more, 16#a9, 16#02};
2122dec_huffman_lookup(16#82, 16#5) -> {more, 16#a9, 16#09};
2123dec_huffman_lookup(16#82, 16#6) -> {more, 16#a9, 16#17};
2124dec_huffman_lookup(16#82, 16#7) -> {ok, 16#a9, 16#28};
2125dec_huffman_lookup(16#82, 16#8) -> {more, 16#aa, 16#02};
2126dec_huffman_lookup(16#82, 16#9) -> {more, 16#aa, 16#09};
2127dec_huffman_lookup(16#82, 16#a) -> {more, 16#aa, 16#17};
2128dec_huffman_lookup(16#82, 16#b) -> {ok, 16#aa, 16#28};
2129dec_huffman_lookup(16#82, 16#c) -> {more, 16#ad, 16#02};
2130dec_huffman_lookup(16#82, 16#d) -> {more, 16#ad, 16#09};
2131dec_huffman_lookup(16#82, 16#e) -> {more, 16#ad, 16#17};
2132dec_huffman_lookup(16#82, 16#f) -> {ok, 16#ad, 16#28};
2133dec_huffman_lookup(16#83, 16#0) -> {more, 16#a4, 16#03};
2134dec_huffman_lookup(16#83, 16#1) -> {more, 16#a4, 16#06};
2135dec_huffman_lookup(16#83, 16#2) -> {more, 16#a4, 16#0a};
2136dec_huffman_lookup(16#83, 16#3) -> {more, 16#a4, 16#0f};
2137dec_huffman_lookup(16#83, 16#4) -> {more, 16#a4, 16#18};
2138dec_huffman_lookup(16#83, 16#5) -> {more, 16#a4, 16#1f};
2139dec_huffman_lookup(16#83, 16#6) -> {more, 16#a4, 16#29};
2140dec_huffman_lookup(16#83, 16#7) -> {ok, 16#a4, 16#38};
2141dec_huffman_lookup(16#83, 16#8) -> {more, 16#a9, 16#03};
2142dec_huffman_lookup(16#83, 16#9) -> {more, 16#a9, 16#06};
2143dec_huffman_lookup(16#83, 16#a) -> {more, 16#a9, 16#0a};
2144dec_huffman_lookup(16#83, 16#b) -> {more, 16#a9, 16#0f};
2145dec_huffman_lookup(16#83, 16#c) -> {more, 16#a9, 16#18};
2146dec_huffman_lookup(16#83, 16#d) -> {more, 16#a9, 16#1f};
2147dec_huffman_lookup(16#83, 16#e) -> {more, 16#a9, 16#29};
2148dec_huffman_lookup(16#83, 16#f) -> {ok, 16#a9, 16#38};
2149dec_huffman_lookup(16#84, 16#0) -> {more, 16#aa, 16#03};
2150dec_huffman_lookup(16#84, 16#1) -> {more, 16#aa, 16#06};
2151dec_huffman_lookup(16#84, 16#2) -> {more, 16#aa, 16#0a};
2152dec_huffman_lookup(16#84, 16#3) -> {more, 16#aa, 16#0f};
2153dec_huffman_lookup(16#84, 16#4) -> {more, 16#aa, 16#18};
2154dec_huffman_lookup(16#84, 16#5) -> {more, 16#aa, 16#1f};
2155dec_huffman_lookup(16#84, 16#6) -> {more, 16#aa, 16#29};
2156dec_huffman_lookup(16#84, 16#7) -> {ok, 16#aa, 16#38};
2157dec_huffman_lookup(16#84, 16#8) -> {more, 16#ad, 16#03};
2158dec_huffman_lookup(16#84, 16#9) -> {more, 16#ad, 16#06};
2159dec_huffman_lookup(16#84, 16#a) -> {more, 16#ad, 16#0a};
2160dec_huffman_lookup(16#84, 16#b) -> {more, 16#ad, 16#0f};
2161dec_huffman_lookup(16#84, 16#c) -> {more, 16#ad, 16#18};
2162dec_huffman_lookup(16#84, 16#d) -> {more, 16#ad, 16#1f};
2163dec_huffman_lookup(16#84, 16#e) -> {more, 16#ad, 16#29};
2164dec_huffman_lookup(16#84, 16#f) -> {ok, 16#ad, 16#38};
2165dec_huffman_lookup(16#85, 16#0) -> {more, undefined, 16#89};
2166dec_huffman_lookup(16#85, 16#1) -> {more, undefined, 16#8a};
2167dec_huffman_lookup(16#85, 16#2) -> {more, undefined, 16#8c};
2168dec_huffman_lookup(16#85, 16#3) -> {more, undefined, 16#8d};
2169dec_huffman_lookup(16#85, 16#4) -> {more, undefined, 16#90};
2170dec_huffman_lookup(16#85, 16#5) -> {more, undefined, 16#91};
2171dec_huffman_lookup(16#85, 16#6) -> {more, undefined, 16#93};
2172dec_huffman_lookup(16#85, 16#7) -> {more, undefined, 16#96};
2173dec_huffman_lookup(16#85, 16#8) -> {more, undefined, 16#9c};
2174dec_huffman_lookup(16#85, 16#9) -> {more, undefined, 16#9f};
2175dec_huffman_lookup(16#85, 16#a) -> {more, undefined, 16#a3};
2176dec_huffman_lookup(16#85, 16#b) -> {more, undefined, 16#a6};
2177dec_huffman_lookup(16#85, 16#c) -> {more, undefined, 16#ab};
2178dec_huffman_lookup(16#85, 16#d) -> {more, undefined, 16#ae};
2179dec_huffman_lookup(16#85, 16#e) -> {more, undefined, 16#b5};
2180dec_huffman_lookup(16#85, 16#f) -> {ok, undefined, 16#be};
2181dec_huffman_lookup(16#86, 16#0) -> {ok, 16#b2, 16#00};
2182dec_huffman_lookup(16#86, 16#1) -> {ok, 16#b5, 16#00};
2183dec_huffman_lookup(16#86, 16#2) -> {ok, 16#b9, 16#00};
2184dec_huffman_lookup(16#86, 16#3) -> {ok, 16#ba, 16#00};
2185dec_huffman_lookup(16#86, 16#4) -> {ok, 16#bb, 16#00};
2186dec_huffman_lookup(16#86, 16#5) -> {ok, 16#bd, 16#00};
2187dec_huffman_lookup(16#86, 16#6) -> {ok, 16#be, 16#00};
2188dec_huffman_lookup(16#86, 16#7) -> {ok, 16#c4, 16#00};
2189dec_huffman_lookup(16#86, 16#8) -> {ok, 16#c6, 16#00};
2190dec_huffman_lookup(16#86, 16#9) -> {ok, 16#e4, 16#00};
2191dec_huffman_lookup(16#86, 16#a) -> {ok, 16#e8, 16#00};
2192dec_huffman_lookup(16#86, 16#b) -> {ok, 16#e9, 16#00};
2193dec_huffman_lookup(16#86, 16#c) -> {more, undefined, 16#94};
2194dec_huffman_lookup(16#86, 16#d) -> {more, undefined, 16#95};
2195dec_huffman_lookup(16#86, 16#e) -> {more, undefined, 16#97};
2196dec_huffman_lookup(16#86, 16#f) -> {more, undefined, 16#98};
2197dec_huffman_lookup(16#87, 16#0) -> {more, 16#b2, 16#01};
2198dec_huffman_lookup(16#87, 16#1) -> {ok, 16#b2, 16#16};
2199dec_huffman_lookup(16#87, 16#2) -> {more, 16#b5, 16#01};
2200dec_huffman_lookup(16#87, 16#3) -> {ok, 16#b5, 16#16};
2201dec_huffman_lookup(16#87, 16#4) -> {more, 16#b9, 16#01};
2202dec_huffman_lookup(16#87, 16#5) -> {ok, 16#b9, 16#16};
2203dec_huffman_lookup(16#87, 16#6) -> {more, 16#ba, 16#01};
2204dec_huffman_lookup(16#87, 16#7) -> {ok, 16#ba, 16#16};
2205dec_huffman_lookup(16#87, 16#8) -> {more, 16#bb, 16#01};
2206dec_huffman_lookup(16#87, 16#9) -> {ok, 16#bb, 16#16};
2207dec_huffman_lookup(16#87, 16#a) -> {more, 16#bd, 16#01};
2208dec_huffman_lookup(16#87, 16#b) -> {ok, 16#bd, 16#16};
2209dec_huffman_lookup(16#87, 16#c) -> {more, 16#be, 16#01};
2210dec_huffman_lookup(16#87, 16#d) -> {ok, 16#be, 16#16};
2211dec_huffman_lookup(16#87, 16#e) -> {more, 16#c4, 16#01};
2212dec_huffman_lookup(16#87, 16#f) -> {ok, 16#c4, 16#16};
2213dec_huffman_lookup(16#88, 16#0) -> {more, 16#b2, 16#02};
2214dec_huffman_lookup(16#88, 16#1) -> {more, 16#b2, 16#09};
2215dec_huffman_lookup(16#88, 16#2) -> {more, 16#b2, 16#17};
2216dec_huffman_lookup(16#88, 16#3) -> {ok, 16#b2, 16#28};
2217dec_huffman_lookup(16#88, 16#4) -> {more, 16#b5, 16#02};
2218dec_huffman_lookup(16#88, 16#5) -> {more, 16#b5, 16#09};
2219dec_huffman_lookup(16#88, 16#6) -> {more, 16#b5, 16#17};
2220dec_huffman_lookup(16#88, 16#7) -> {ok, 16#b5, 16#28};
2221dec_huffman_lookup(16#88, 16#8) -> {more, 16#b9, 16#02};
2222dec_huffman_lookup(16#88, 16#9) -> {more, 16#b9, 16#09};
2223dec_huffman_lookup(16#88, 16#a) -> {more, 16#b9, 16#17};
2224dec_huffman_lookup(16#88, 16#b) -> {ok, 16#b9, 16#28};
2225dec_huffman_lookup(16#88, 16#c) -> {more, 16#ba, 16#02};
2226dec_huffman_lookup(16#88, 16#d) -> {more, 16#ba, 16#09};
2227dec_huffman_lookup(16#88, 16#e) -> {more, 16#ba, 16#17};
2228dec_huffman_lookup(16#88, 16#f) -> {ok, 16#ba, 16#28};
2229dec_huffman_lookup(16#89, 16#0) -> {more, 16#b2, 16#03};
2230dec_huffman_lookup(16#89, 16#1) -> {more, 16#b2, 16#06};
2231dec_huffman_lookup(16#89, 16#2) -> {more, 16#b2, 16#0a};
2232dec_huffman_lookup(16#89, 16#3) -> {more, 16#b2, 16#0f};
2233dec_huffman_lookup(16#89, 16#4) -> {more, 16#b2, 16#18};
2234dec_huffman_lookup(16#89, 16#5) -> {more, 16#b2, 16#1f};
2235dec_huffman_lookup(16#89, 16#6) -> {more, 16#b2, 16#29};
2236dec_huffman_lookup(16#89, 16#7) -> {ok, 16#b2, 16#38};
2237dec_huffman_lookup(16#89, 16#8) -> {more, 16#b5, 16#03};
2238dec_huffman_lookup(16#89, 16#9) -> {more, 16#b5, 16#06};
2239dec_huffman_lookup(16#89, 16#a) -> {more, 16#b5, 16#0a};
2240dec_huffman_lookup(16#89, 16#b) -> {more, 16#b5, 16#0f};
2241dec_huffman_lookup(16#89, 16#c) -> {more, 16#b5, 16#18};
2242dec_huffman_lookup(16#89, 16#d) -> {more, 16#b5, 16#1f};
2243dec_huffman_lookup(16#89, 16#e) -> {more, 16#b5, 16#29};
2244dec_huffman_lookup(16#89, 16#f) -> {ok, 16#b5, 16#38};
2245dec_huffman_lookup(16#8a, 16#0) -> {more, 16#b9, 16#03};
2246dec_huffman_lookup(16#8a, 16#1) -> {more, 16#b9, 16#06};
2247dec_huffman_lookup(16#8a, 16#2) -> {more, 16#b9, 16#0a};
2248dec_huffman_lookup(16#8a, 16#3) -> {more, 16#b9, 16#0f};
2249dec_huffman_lookup(16#8a, 16#4) -> {more, 16#b9, 16#18};
2250dec_huffman_lookup(16#8a, 16#5) -> {more, 16#b9, 16#1f};
2251dec_huffman_lookup(16#8a, 16#6) -> {more, 16#b9, 16#29};
2252dec_huffman_lookup(16#8a, 16#7) -> {ok, 16#b9, 16#38};
2253dec_huffman_lookup(16#8a, 16#8) -> {more, 16#ba, 16#03};
2254dec_huffman_lookup(16#8a, 16#9) -> {more, 16#ba, 16#06};
2255dec_huffman_lookup(16#8a, 16#a) -> {more, 16#ba, 16#0a};
2256dec_huffman_lookup(16#8a, 16#b) -> {more, 16#ba, 16#0f};
2257dec_huffman_lookup(16#8a, 16#c) -> {more, 16#ba, 16#18};
2258dec_huffman_lookup(16#8a, 16#d) -> {more, 16#ba, 16#1f};
2259dec_huffman_lookup(16#8a, 16#e) -> {more, 16#ba, 16#29};
2260dec_huffman_lookup(16#8a, 16#f) -> {ok, 16#ba, 16#38};
2261dec_huffman_lookup(16#8b, 16#0) -> {more, 16#bb, 16#02};
2262dec_huffman_lookup(16#8b, 16#1) -> {more, 16#bb, 16#09};
2263dec_huffman_lookup(16#8b, 16#2) -> {more, 16#bb, 16#17};
2264dec_huffman_lookup(16#8b, 16#3) -> {ok, 16#bb, 16#28};
2265dec_huffman_lookup(16#8b, 16#4) -> {more, 16#bd, 16#02};
2266dec_huffman_lookup(16#8b, 16#5) -> {more, 16#bd, 16#09};
2267dec_huffman_lookup(16#8b, 16#6) -> {more, 16#bd, 16#17};
2268dec_huffman_lookup(16#8b, 16#7) -> {ok, 16#bd, 16#28};
2269dec_huffman_lookup(16#8b, 16#8) -> {more, 16#be, 16#02};
2270dec_huffman_lookup(16#8b, 16#9) -> {more, 16#be, 16#09};
2271dec_huffman_lookup(16#8b, 16#a) -> {more, 16#be, 16#17};
2272dec_huffman_lookup(16#8b, 16#b) -> {ok, 16#be, 16#28};
2273dec_huffman_lookup(16#8b, 16#c) -> {more, 16#c4, 16#02};
2274dec_huffman_lookup(16#8b, 16#d) -> {more, 16#c4, 16#09};
2275dec_huffman_lookup(16#8b, 16#e) -> {more, 16#c4, 16#17};
2276dec_huffman_lookup(16#8b, 16#f) -> {ok, 16#c4, 16#28};
2277dec_huffman_lookup(16#8c, 16#0) -> {more, 16#bb, 16#03};
2278dec_huffman_lookup(16#8c, 16#1) -> {more, 16#bb, 16#06};
2279dec_huffman_lookup(16#8c, 16#2) -> {more, 16#bb, 16#0a};
2280dec_huffman_lookup(16#8c, 16#3) -> {more, 16#bb, 16#0f};
2281dec_huffman_lookup(16#8c, 16#4) -> {more, 16#bb, 16#18};
2282dec_huffman_lookup(16#8c, 16#5) -> {more, 16#bb, 16#1f};
2283dec_huffman_lookup(16#8c, 16#6) -> {more, 16#bb, 16#29};
2284dec_huffman_lookup(16#8c, 16#7) -> {ok, 16#bb, 16#38};
2285dec_huffman_lookup(16#8c, 16#8) -> {more, 16#bd, 16#03};
2286dec_huffman_lookup(16#8c, 16#9) -> {more, 16#bd, 16#06};
2287dec_huffman_lookup(16#8c, 16#a) -> {more, 16#bd, 16#0a};
2288dec_huffman_lookup(16#8c, 16#b) -> {more, 16#bd, 16#0f};
2289dec_huffman_lookup(16#8c, 16#c) -> {more, 16#bd, 16#18};
2290dec_huffman_lookup(16#8c, 16#d) -> {more, 16#bd, 16#1f};
2291dec_huffman_lookup(16#8c, 16#e) -> {more, 16#bd, 16#29};
2292dec_huffman_lookup(16#8c, 16#f) -> {ok, 16#bd, 16#38};
2293dec_huffman_lookup(16#8d, 16#0) -> {more, 16#be, 16#03};
2294dec_huffman_lookup(16#8d, 16#1) -> {more, 16#be, 16#06};
2295dec_huffman_lookup(16#8d, 16#2) -> {more, 16#be, 16#0a};
2296dec_huffman_lookup(16#8d, 16#3) -> {more, 16#be, 16#0f};
2297dec_huffman_lookup(16#8d, 16#4) -> {more, 16#be, 16#18};
2298dec_huffman_lookup(16#8d, 16#5) -> {more, 16#be, 16#1f};
2299dec_huffman_lookup(16#8d, 16#6) -> {more, 16#be, 16#29};
2300dec_huffman_lookup(16#8d, 16#7) -> {ok, 16#be, 16#38};
2301dec_huffman_lookup(16#8d, 16#8) -> {more, 16#c4, 16#03};
2302dec_huffman_lookup(16#8d, 16#9) -> {more, 16#c4, 16#06};
2303dec_huffman_lookup(16#8d, 16#a) -> {more, 16#c4, 16#0a};
2304dec_huffman_lookup(16#8d, 16#b) -> {more, 16#c4, 16#0f};
2305dec_huffman_lookup(16#8d, 16#c) -> {more, 16#c4, 16#18};
2306dec_huffman_lookup(16#8d, 16#d) -> {more, 16#c4, 16#1f};
2307dec_huffman_lookup(16#8d, 16#e) -> {more, 16#c4, 16#29};
2308dec_huffman_lookup(16#8d, 16#f) -> {ok, 16#c4, 16#38};
2309dec_huffman_lookup(16#8e, 16#0) -> {more, 16#c6, 16#01};
2310dec_huffman_lookup(16#8e, 16#1) -> {ok, 16#c6, 16#16};
2311dec_huffman_lookup(16#8e, 16#2) -> {more, 16#e4, 16#01};
2312dec_huffman_lookup(16#8e, 16#3) -> {ok, 16#e4, 16#16};
2313dec_huffman_lookup(16#8e, 16#4) -> {more, 16#e8, 16#01};
2314dec_huffman_lookup(16#8e, 16#5) -> {ok, 16#e8, 16#16};
2315dec_huffman_lookup(16#8e, 16#6) -> {more, 16#e9, 16#01};
2316dec_huffman_lookup(16#8e, 16#7) -> {ok, 16#e9, 16#16};
2317dec_huffman_lookup(16#8e, 16#8) -> {ok, 16#01, 16#00};
2318dec_huffman_lookup(16#8e, 16#9) -> {ok, 16#87, 16#00};
2319dec_huffman_lookup(16#8e, 16#a) -> {ok, 16#89, 16#00};
2320dec_huffman_lookup(16#8e, 16#b) -> {ok, 16#8a, 16#00};
2321dec_huffman_lookup(16#8e, 16#c) -> {ok, 16#8b, 16#00};
2322dec_huffman_lookup(16#8e, 16#d) -> {ok, 16#8c, 16#00};
2323dec_huffman_lookup(16#8e, 16#e) -> {ok, 16#8d, 16#00};
2324dec_huffman_lookup(16#8e, 16#f) -> {ok, 16#8f, 16#00};
2325dec_huffman_lookup(16#8f, 16#0) -> {more, 16#c6, 16#02};
2326dec_huffman_lookup(16#8f, 16#1) -> {more, 16#c6, 16#09};
2327dec_huffman_lookup(16#8f, 16#2) -> {more, 16#c6, 16#17};
2328dec_huffman_lookup(16#8f, 16#3) -> {ok, 16#c6, 16#28};
2329dec_huffman_lookup(16#8f, 16#4) -> {more, 16#e4, 16#02};
2330dec_huffman_lookup(16#8f, 16#5) -> {more, 16#e4, 16#09};
2331dec_huffman_lookup(16#8f, 16#6) -> {more, 16#e4, 16#17};
2332dec_huffman_lookup(16#8f, 16#7) -> {ok, 16#e4, 16#28};
2333dec_huffman_lookup(16#8f, 16#8) -> {more, 16#e8, 16#02};
2334dec_huffman_lookup(16#8f, 16#9) -> {more, 16#e8, 16#09};
2335dec_huffman_lookup(16#8f, 16#a) -> {more, 16#e8, 16#17};
2336dec_huffman_lookup(16#8f, 16#b) -> {ok, 16#e8, 16#28};
2337dec_huffman_lookup(16#8f, 16#c) -> {more, 16#e9, 16#02};
2338dec_huffman_lookup(16#8f, 16#d) -> {more, 16#e9, 16#09};
2339dec_huffman_lookup(16#8f, 16#e) -> {more, 16#e9, 16#17};
2340dec_huffman_lookup(16#8f, 16#f) -> {ok, 16#e9, 16#28};
2341dec_huffman_lookup(16#90, 16#0) -> {more, 16#c6, 16#03};
2342dec_huffman_lookup(16#90, 16#1) -> {more, 16#c6, 16#06};
2343dec_huffman_lookup(16#90, 16#2) -> {more, 16#c6, 16#0a};
2344dec_huffman_lookup(16#90, 16#3) -> {more, 16#c6, 16#0f};
2345dec_huffman_lookup(16#90, 16#4) -> {more, 16#c6, 16#18};
2346dec_huffman_lookup(16#90, 16#5) -> {more, 16#c6, 16#1f};
2347dec_huffman_lookup(16#90, 16#6) -> {more, 16#c6, 16#29};
2348dec_huffman_lookup(16#90, 16#7) -> {ok, 16#c6, 16#38};
2349dec_huffman_lookup(16#90, 16#8) -> {more, 16#e4, 16#03};
2350dec_huffman_lookup(16#90, 16#9) -> {more, 16#e4, 16#06};
2351dec_huffman_lookup(16#90, 16#a) -> {more, 16#e4, 16#0a};
2352dec_huffman_lookup(16#90, 16#b) -> {more, 16#e4, 16#0f};
2353dec_huffman_lookup(16#90, 16#c) -> {more, 16#e4, 16#18};
2354dec_huffman_lookup(16#90, 16#d) -> {more, 16#e4, 16#1f};
2355dec_huffman_lookup(16#90, 16#e) -> {more, 16#e4, 16#29};
2356dec_huffman_lookup(16#90, 16#f) -> {ok, 16#e4, 16#38};
2357dec_huffman_lookup(16#91, 16#0) -> {more, 16#e8, 16#03};
2358dec_huffman_lookup(16#91, 16#1) -> {more, 16#e8, 16#06};
2359dec_huffman_lookup(16#91, 16#2) -> {more, 16#e8, 16#0a};
2360dec_huffman_lookup(16#91, 16#3) -> {more, 16#e8, 16#0f};
2361dec_huffman_lookup(16#91, 16#4) -> {more, 16#e8, 16#18};
2362dec_huffman_lookup(16#91, 16#5) -> {more, 16#e8, 16#1f};
2363dec_huffman_lookup(16#91, 16#6) -> {more, 16#e8, 16#29};
2364dec_huffman_lookup(16#91, 16#7) -> {ok, 16#e8, 16#38};
2365dec_huffman_lookup(16#91, 16#8) -> {more, 16#e9, 16#03};
2366dec_huffman_lookup(16#91, 16#9) -> {more, 16#e9, 16#06};
2367dec_huffman_lookup(16#91, 16#a) -> {more, 16#e9, 16#0a};
2368dec_huffman_lookup(16#91, 16#b) -> {more, 16#e9, 16#0f};
2369dec_huffman_lookup(16#91, 16#c) -> {more, 16#e9, 16#18};
2370dec_huffman_lookup(16#91, 16#d) -> {more, 16#e9, 16#1f};
2371dec_huffman_lookup(16#91, 16#e) -> {more, 16#e9, 16#29};
2372dec_huffman_lookup(16#91, 16#f) -> {ok, 16#e9, 16#38};
2373dec_huffman_lookup(16#92, 16#0) -> {more, 16#01, 16#01};
2374dec_huffman_lookup(16#92, 16#1) -> {ok, 16#01, 16#16};
2375dec_huffman_lookup(16#92, 16#2) -> {more, 16#87, 16#01};
2376dec_huffman_lookup(16#92, 16#3) -> {ok, 16#87, 16#16};
2377dec_huffman_lookup(16#92, 16#4) -> {more, 16#89, 16#01};
2378dec_huffman_lookup(16#92, 16#5) -> {ok, 16#89, 16#16};
2379dec_huffman_lookup(16#92, 16#6) -> {more, 16#8a, 16#01};
2380dec_huffman_lookup(16#92, 16#7) -> {ok, 16#8a, 16#16};
2381dec_huffman_lookup(16#92, 16#8) -> {more, 16#8b, 16#01};
2382dec_huffman_lookup(16#92, 16#9) -> {ok, 16#8b, 16#16};
2383dec_huffman_lookup(16#92, 16#a) -> {more, 16#8c, 16#01};
2384dec_huffman_lookup(16#92, 16#b) -> {ok, 16#8c, 16#16};
2385dec_huffman_lookup(16#92, 16#c) -> {more, 16#8d, 16#01};
2386dec_huffman_lookup(16#92, 16#d) -> {ok, 16#8d, 16#16};
2387dec_huffman_lookup(16#92, 16#e) -> {more, 16#8f, 16#01};
2388dec_huffman_lookup(16#92, 16#f) -> {ok, 16#8f, 16#16};
2389dec_huffman_lookup(16#93, 16#0) -> {more, 16#01, 16#02};
2390dec_huffman_lookup(16#93, 16#1) -> {more, 16#01, 16#09};
2391dec_huffman_lookup(16#93, 16#2) -> {more, 16#01, 16#17};
2392dec_huffman_lookup(16#93, 16#3) -> {ok, 16#01, 16#28};
2393dec_huffman_lookup(16#93, 16#4) -> {more, 16#87, 16#02};
2394dec_huffman_lookup(16#93, 16#5) -> {more, 16#87, 16#09};
2395dec_huffman_lookup(16#93, 16#6) -> {more, 16#87, 16#17};
2396dec_huffman_lookup(16#93, 16#7) -> {ok, 16#87, 16#28};
2397dec_huffman_lookup(16#93, 16#8) -> {more, 16#89, 16#02};
2398dec_huffman_lookup(16#93, 16#9) -> {more, 16#89, 16#09};
2399dec_huffman_lookup(16#93, 16#a) -> {more, 16#89, 16#17};
2400dec_huffman_lookup(16#93, 16#b) -> {ok, 16#89, 16#28};
2401dec_huffman_lookup(16#93, 16#c) -> {more, 16#8a, 16#02};
2402dec_huffman_lookup(16#93, 16#d) -> {more, 16#8a, 16#09};
2403dec_huffman_lookup(16#93, 16#e) -> {more, 16#8a, 16#17};
2404dec_huffman_lookup(16#93, 16#f) -> {ok, 16#8a, 16#28};
2405dec_huffman_lookup(16#94, 16#0) -> {more, 16#01, 16#03};
2406dec_huffman_lookup(16#94, 16#1) -> {more, 16#01, 16#06};
2407dec_huffman_lookup(16#94, 16#2) -> {more, 16#01, 16#0a};
2408dec_huffman_lookup(16#94, 16#3) -> {more, 16#01, 16#0f};
2409dec_huffman_lookup(16#94, 16#4) -> {more, 16#01, 16#18};
2410dec_huffman_lookup(16#94, 16#5) -> {more, 16#01, 16#1f};
2411dec_huffman_lookup(16#94, 16#6) -> {more, 16#01, 16#29};
2412dec_huffman_lookup(16#94, 16#7) -> {ok, 16#01, 16#38};
2413dec_huffman_lookup(16#94, 16#8) -> {more, 16#87, 16#03};
2414dec_huffman_lookup(16#94, 16#9) -> {more, 16#87, 16#06};
2415dec_huffman_lookup(16#94, 16#a) -> {more, 16#87, 16#0a};
2416dec_huffman_lookup(16#94, 16#b) -> {more, 16#87, 16#0f};
2417dec_huffman_lookup(16#94, 16#c) -> {more, 16#87, 16#18};
2418dec_huffman_lookup(16#94, 16#d) -> {more, 16#87, 16#1f};
2419dec_huffman_lookup(16#94, 16#e) -> {more, 16#87, 16#29};
2420dec_huffman_lookup(16#94, 16#f) -> {ok, 16#87, 16#38};
2421dec_huffman_lookup(16#95, 16#0) -> {more, 16#89, 16#03};
2422dec_huffman_lookup(16#95, 16#1) -> {more, 16#89, 16#06};
2423dec_huffman_lookup(16#95, 16#2) -> {more, 16#89, 16#0a};
2424dec_huffman_lookup(16#95, 16#3) -> {more, 16#89, 16#0f};
2425dec_huffman_lookup(16#95, 16#4) -> {more, 16#89, 16#18};
2426dec_huffman_lookup(16#95, 16#5) -> {more, 16#89, 16#1f};
2427dec_huffman_lookup(16#95, 16#6) -> {more, 16#89, 16#29};
2428dec_huffman_lookup(16#95, 16#7) -> {ok, 16#89, 16#38};
2429dec_huffman_lookup(16#95, 16#8) -> {more, 16#8a, 16#03};
2430dec_huffman_lookup(16#95, 16#9) -> {more, 16#8a, 16#06};
2431dec_huffman_lookup(16#95, 16#a) -> {more, 16#8a, 16#0a};
2432dec_huffman_lookup(16#95, 16#b) -> {more, 16#8a, 16#0f};
2433dec_huffman_lookup(16#95, 16#c) -> {more, 16#8a, 16#18};
2434dec_huffman_lookup(16#95, 16#d) -> {more, 16#8a, 16#1f};
2435dec_huffman_lookup(16#95, 16#e) -> {more, 16#8a, 16#29};
2436dec_huffman_lookup(16#95, 16#f) -> {ok, 16#8a, 16#38};
2437dec_huffman_lookup(16#96, 16#0) -> {more, 16#8b, 16#02};
2438dec_huffman_lookup(16#96, 16#1) -> {more, 16#8b, 16#09};
2439dec_huffman_lookup(16#96, 16#2) -> {more, 16#8b, 16#17};
2440dec_huffman_lookup(16#96, 16#3) -> {ok, 16#8b, 16#28};
2441dec_huffman_lookup(16#96, 16#4) -> {more, 16#8c, 16#02};
2442dec_huffman_lookup(16#96, 16#5) -> {more, 16#8c, 16#09};
2443dec_huffman_lookup(16#96, 16#6) -> {more, 16#8c, 16#17};
2444dec_huffman_lookup(16#96, 16#7) -> {ok, 16#8c, 16#28};
2445dec_huffman_lookup(16#96, 16#8) -> {more, 16#8d, 16#02};
2446dec_huffman_lookup(16#96, 16#9) -> {more, 16#8d, 16#09};
2447dec_huffman_lookup(16#96, 16#a) -> {more, 16#8d, 16#17};
2448dec_huffman_lookup(16#96, 16#b) -> {ok, 16#8d, 16#28};
2449dec_huffman_lookup(16#96, 16#c) -> {more, 16#8f, 16#02};
2450dec_huffman_lookup(16#96, 16#d) -> {more, 16#8f, 16#09};
2451dec_huffman_lookup(16#96, 16#e) -> {more, 16#8f, 16#17};
2452dec_huffman_lookup(16#96, 16#f) -> {ok, 16#8f, 16#28};
2453dec_huffman_lookup(16#97, 16#0) -> {more, 16#8b, 16#03};
2454dec_huffman_lookup(16#97, 16#1) -> {more, 16#8b, 16#06};
2455dec_huffman_lookup(16#97, 16#2) -> {more, 16#8b, 16#0a};
2456dec_huffman_lookup(16#97, 16#3) -> {more, 16#8b, 16#0f};
2457dec_huffman_lookup(16#97, 16#4) -> {more, 16#8b, 16#18};
2458dec_huffman_lookup(16#97, 16#5) -> {more, 16#8b, 16#1f};
2459dec_huffman_lookup(16#97, 16#6) -> {more, 16#8b, 16#29};
2460dec_huffman_lookup(16#97, 16#7) -> {ok, 16#8b, 16#38};
2461dec_huffman_lookup(16#97, 16#8) -> {more, 16#8c, 16#03};
2462dec_huffman_lookup(16#97, 16#9) -> {more, 16#8c, 16#06};
2463dec_huffman_lookup(16#97, 16#a) -> {more, 16#8c, 16#0a};
2464dec_huffman_lookup(16#97, 16#b) -> {more, 16#8c, 16#0f};
2465dec_huffman_lookup(16#97, 16#c) -> {more, 16#8c, 16#18};
2466dec_huffman_lookup(16#97, 16#d) -> {more, 16#8c, 16#1f};
2467dec_huffman_lookup(16#97, 16#e) -> {more, 16#8c, 16#29};
2468dec_huffman_lookup(16#97, 16#f) -> {ok, 16#8c, 16#38};
2469dec_huffman_lookup(16#98, 16#0) -> {more, 16#8d, 16#03};
2470dec_huffman_lookup(16#98, 16#1) -> {more, 16#8d, 16#06};
2471dec_huffman_lookup(16#98, 16#2) -> {more, 16#8d, 16#0a};
2472dec_huffman_lookup(16#98, 16#3) -> {more, 16#8d, 16#0f};
2473dec_huffman_lookup(16#98, 16#4) -> {more, 16#8d, 16#18};
2474dec_huffman_lookup(16#98, 16#5) -> {more, 16#8d, 16#1f};
2475dec_huffman_lookup(16#98, 16#6) -> {more, 16#8d, 16#29};
2476dec_huffman_lookup(16#98, 16#7) -> {ok, 16#8d, 16#38};
2477dec_huffman_lookup(16#98, 16#8) -> {more, 16#8f, 16#03};
2478dec_huffman_lookup(16#98, 16#9) -> {more, 16#8f, 16#06};
2479dec_huffman_lookup(16#98, 16#a) -> {more, 16#8f, 16#0a};
2480dec_huffman_lookup(16#98, 16#b) -> {more, 16#8f, 16#0f};
2481dec_huffman_lookup(16#98, 16#c) -> {more, 16#8f, 16#18};
2482dec_huffman_lookup(16#98, 16#d) -> {more, 16#8f, 16#1f};
2483dec_huffman_lookup(16#98, 16#e) -> {more, 16#8f, 16#29};
2484dec_huffman_lookup(16#98, 16#f) -> {ok, 16#8f, 16#38};
2485dec_huffman_lookup(16#99, 16#0) -> {more, undefined, 16#9d};
2486dec_huffman_lookup(16#99, 16#1) -> {more, undefined, 16#9e};
2487dec_huffman_lookup(16#99, 16#2) -> {more, undefined, 16#a0};
2488dec_huffman_lookup(16#99, 16#3) -> {more, undefined, 16#a1};
2489dec_huffman_lookup(16#99, 16#4) -> {more, undefined, 16#a4};
2490dec_huffman_lookup(16#99, 16#5) -> {more, undefined, 16#a5};
2491dec_huffman_lookup(16#99, 16#6) -> {more, undefined, 16#a7};
2492dec_huffman_lookup(16#99, 16#7) -> {more, undefined, 16#a8};
2493dec_huffman_lookup(16#99, 16#8) -> {more, undefined, 16#ac};
2494dec_huffman_lookup(16#99, 16#9) -> {more, undefined, 16#ad};
2495dec_huffman_lookup(16#99, 16#a) -> {more, undefined, 16#af};
2496dec_huffman_lookup(16#99, 16#b) -> {more, undefined, 16#b1};
2497dec_huffman_lookup(16#99, 16#c) -> {more, undefined, 16#b6};
2498dec_huffman_lookup(16#99, 16#d) -> {more, undefined, 16#b9};
2499dec_huffman_lookup(16#99, 16#e) -> {more, undefined, 16#bf};
2500dec_huffman_lookup(16#99, 16#f) -> {ok, undefined, 16#cf};
2501dec_huffman_lookup(16#9a, 16#0) -> {ok, 16#93, 16#00};
2502dec_huffman_lookup(16#9a, 16#1) -> {ok, 16#95, 16#00};
2503dec_huffman_lookup(16#9a, 16#2) -> {ok, 16#96, 16#00};
2504dec_huffman_lookup(16#9a, 16#3) -> {ok, 16#97, 16#00};
2505dec_huffman_lookup(16#9a, 16#4) -> {ok, 16#98, 16#00};
2506dec_huffman_lookup(16#9a, 16#5) -> {ok, 16#9b, 16#00};
2507dec_huffman_lookup(16#9a, 16#6) -> {ok, 16#9d, 16#00};
2508dec_huffman_lookup(16#9a, 16#7) -> {ok, 16#9e, 16#00};
2509dec_huffman_lookup(16#9a, 16#8) -> {ok, 16#a5, 16#00};
2510dec_huffman_lookup(16#9a, 16#9) -> {ok, 16#a6, 16#00};
2511dec_huffman_lookup(16#9a, 16#a) -> {ok, 16#a8, 16#00};
2512dec_huffman_lookup(16#9a, 16#b) -> {ok, 16#ae, 16#00};
2513dec_huffman_lookup(16#9a, 16#c) -> {ok, 16#af, 16#00};
2514dec_huffman_lookup(16#9a, 16#d) -> {ok, 16#b4, 16#00};
2515dec_huffman_lookup(16#9a, 16#e) -> {ok, 16#b6, 16#00};
2516dec_huffman_lookup(16#9a, 16#f) -> {ok, 16#b7, 16#00};
2517dec_huffman_lookup(16#9b, 16#0) -> {more, 16#93, 16#01};
2518dec_huffman_lookup(16#9b, 16#1) -> {ok, 16#93, 16#16};
2519dec_huffman_lookup(16#9b, 16#2) -> {more, 16#95, 16#01};
2520dec_huffman_lookup(16#9b, 16#3) -> {ok, 16#95, 16#16};
2521dec_huffman_lookup(16#9b, 16#4) -> {more, 16#96, 16#01};
2522dec_huffman_lookup(16#9b, 16#5) -> {ok, 16#96, 16#16};
2523dec_huffman_lookup(16#9b, 16#6) -> {more, 16#97, 16#01};
2524dec_huffman_lookup(16#9b, 16#7) -> {ok, 16#97, 16#16};
2525dec_huffman_lookup(16#9b, 16#8) -> {more, 16#98, 16#01};
2526dec_huffman_lookup(16#9b, 16#9) -> {ok, 16#98, 16#16};
2527dec_huffman_lookup(16#9b, 16#a) -> {more, 16#9b, 16#01};
2528dec_huffman_lookup(16#9b, 16#b) -> {ok, 16#9b, 16#16};
2529dec_huffman_lookup(16#9b, 16#c) -> {more, 16#9d, 16#01};
2530dec_huffman_lookup(16#9b, 16#d) -> {ok, 16#9d, 16#16};
2531dec_huffman_lookup(16#9b, 16#e) -> {more, 16#9e, 16#01};
2532dec_huffman_lookup(16#9b, 16#f) -> {ok, 16#9e, 16#16};
2533dec_huffman_lookup(16#9c, 16#0) -> {more, 16#93, 16#02};
2534dec_huffman_lookup(16#9c, 16#1) -> {more, 16#93, 16#09};
2535dec_huffman_lookup(16#9c, 16#2) -> {more, 16#93, 16#17};
2536dec_huffman_lookup(16#9c, 16#3) -> {ok, 16#93, 16#28};
2537dec_huffman_lookup(16#9c, 16#4) -> {more, 16#95, 16#02};
2538dec_huffman_lookup(16#9c, 16#5) -> {more, 16#95, 16#09};
2539dec_huffman_lookup(16#9c, 16#6) -> {more, 16#95, 16#17};
2540dec_huffman_lookup(16#9c, 16#7) -> {ok, 16#95, 16#28};
2541dec_huffman_lookup(16#9c, 16#8) -> {more, 16#96, 16#02};
2542dec_huffman_lookup(16#9c, 16#9) -> {more, 16#96, 16#09};
2543dec_huffman_lookup(16#9c, 16#a) -> {more, 16#96, 16#17};
2544dec_huffman_lookup(16#9c, 16#b) -> {ok, 16#96, 16#28};
2545dec_huffman_lookup(16#9c, 16#c) -> {more, 16#97, 16#02};
2546dec_huffman_lookup(16#9c, 16#d) -> {more, 16#97, 16#09};
2547dec_huffman_lookup(16#9c, 16#e) -> {more, 16#97, 16#17};
2548dec_huffman_lookup(16#9c, 16#f) -> {ok, 16#97, 16#28};
2549dec_huffman_lookup(16#9d, 16#0) -> {more, 16#93, 16#03};
2550dec_huffman_lookup(16#9d, 16#1) -> {more, 16#93, 16#06};
2551dec_huffman_lookup(16#9d, 16#2) -> {more, 16#93, 16#0a};
2552dec_huffman_lookup(16#9d, 16#3) -> {more, 16#93, 16#0f};
2553dec_huffman_lookup(16#9d, 16#4) -> {more, 16#93, 16#18};
2554dec_huffman_lookup(16#9d, 16#5) -> {more, 16#93, 16#1f};
2555dec_huffman_lookup(16#9d, 16#6) -> {more, 16#93, 16#29};
2556dec_huffman_lookup(16#9d, 16#7) -> {ok, 16#93, 16#38};
2557dec_huffman_lookup(16#9d, 16#8) -> {more, 16#95, 16#03};
2558dec_huffman_lookup(16#9d, 16#9) -> {more, 16#95, 16#06};
2559dec_huffman_lookup(16#9d, 16#a) -> {more, 16#95, 16#0a};
2560dec_huffman_lookup(16#9d, 16#b) -> {more, 16#95, 16#0f};
2561dec_huffman_lookup(16#9d, 16#c) -> {more, 16#95, 16#18};
2562dec_huffman_lookup(16#9d, 16#d) -> {more, 16#95, 16#1f};
2563dec_huffman_lookup(16#9d, 16#e) -> {more, 16#95, 16#29};
2564dec_huffman_lookup(16#9d, 16#f) -> {ok, 16#95, 16#38};
2565dec_huffman_lookup(16#9e, 16#0) -> {more, 16#96, 16#03};
2566dec_huffman_lookup(16#9e, 16#1) -> {more, 16#96, 16#06};
2567dec_huffman_lookup(16#9e, 16#2) -> {more, 16#96, 16#0a};
2568dec_huffman_lookup(16#9e, 16#3) -> {more, 16#96, 16#0f};
2569dec_huffman_lookup(16#9e, 16#4) -> {more, 16#96, 16#18};
2570dec_huffman_lookup(16#9e, 16#5) -> {more, 16#96, 16#1f};
2571dec_huffman_lookup(16#9e, 16#6) -> {more, 16#96, 16#29};
2572dec_huffman_lookup(16#9e, 16#7) -> {ok, 16#96, 16#38};
2573dec_huffman_lookup(16#9e, 16#8) -> {more, 16#97, 16#03};
2574dec_huffman_lookup(16#9e, 16#9) -> {more, 16#97, 16#06};
2575dec_huffman_lookup(16#9e, 16#a) -> {more, 16#97, 16#0a};
2576dec_huffman_lookup(16#9e, 16#b) -> {more, 16#97, 16#0f};
2577dec_huffman_lookup(16#9e, 16#c) -> {more, 16#97, 16#18};
2578dec_huffman_lookup(16#9e, 16#d) -> {more, 16#97, 16#1f};
2579dec_huffman_lookup(16#9e, 16#e) -> {more, 16#97, 16#29};
2580dec_huffman_lookup(16#9e, 16#f) -> {ok, 16#97, 16#38};
2581dec_huffman_lookup(16#9f, 16#0) -> {more, 16#98, 16#02};
2582dec_huffman_lookup(16#9f, 16#1) -> {more, 16#98, 16#09};
2583dec_huffman_lookup(16#9f, 16#2) -> {more, 16#98, 16#17};
2584dec_huffman_lookup(16#9f, 16#3) -> {ok, 16#98, 16#28};
2585dec_huffman_lookup(16#9f, 16#4) -> {more, 16#9b, 16#02};
2586dec_huffman_lookup(16#9f, 16#5) -> {more, 16#9b, 16#09};
2587dec_huffman_lookup(16#9f, 16#6) -> {more, 16#9b, 16#17};
2588dec_huffman_lookup(16#9f, 16#7) -> {ok, 16#9b, 16#28};
2589dec_huffman_lookup(16#9f, 16#8) -> {more, 16#9d, 16#02};
2590dec_huffman_lookup(16#9f, 16#9) -> {more, 16#9d, 16#09};
2591dec_huffman_lookup(16#9f, 16#a) -> {more, 16#9d, 16#17};
2592dec_huffman_lookup(16#9f, 16#b) -> {ok, 16#9d, 16#28};
2593dec_huffman_lookup(16#9f, 16#c) -> {more, 16#9e, 16#02};
2594dec_huffman_lookup(16#9f, 16#d) -> {more, 16#9e, 16#09};
2595dec_huffman_lookup(16#9f, 16#e) -> {more, 16#9e, 16#17};
2596dec_huffman_lookup(16#9f, 16#f) -> {ok, 16#9e, 16#28};
2597dec_huffman_lookup(16#a0, 16#0) -> {more, 16#98, 16#03};
2598dec_huffman_lookup(16#a0, 16#1) -> {more, 16#98, 16#06};
2599dec_huffman_lookup(16#a0, 16#2) -> {more, 16#98, 16#0a};
2600dec_huffman_lookup(16#a0, 16#3) -> {more, 16#98, 16#0f};
2601dec_huffman_lookup(16#a0, 16#4) -> {more, 16#98, 16#18};
2602dec_huffman_lookup(16#a0, 16#5) -> {more, 16#98, 16#1f};
2603dec_huffman_lookup(16#a0, 16#6) -> {more, 16#98, 16#29};
2604dec_huffman_lookup(16#a0, 16#7) -> {ok, 16#98, 16#38};
2605dec_huffman_lookup(16#a0, 16#8) -> {more, 16#9b, 16#03};
2606dec_huffman_lookup(16#a0, 16#9) -> {more, 16#9b, 16#06};
2607dec_huffman_lookup(16#a0, 16#a) -> {more, 16#9b, 16#0a};
2608dec_huffman_lookup(16#a0, 16#b) -> {more, 16#9b, 16#0f};
2609dec_huffman_lookup(16#a0, 16#c) -> {more, 16#9b, 16#18};
2610dec_huffman_lookup(16#a0, 16#d) -> {more, 16#9b, 16#1f};
2611dec_huffman_lookup(16#a0, 16#e) -> {more, 16#9b, 16#29};
2612dec_huffman_lookup(16#a0, 16#f) -> {ok, 16#9b, 16#38};
2613dec_huffman_lookup(16#a1, 16#0) -> {more, 16#9d, 16#03};
2614dec_huffman_lookup(16#a1, 16#1) -> {more, 16#9d, 16#06};
2615dec_huffman_lookup(16#a1, 16#2) -> {more, 16#9d, 16#0a};
2616dec_huffman_lookup(16#a1, 16#3) -> {more, 16#9d, 16#0f};
2617dec_huffman_lookup(16#a1, 16#4) -> {more, 16#9d, 16#18};
2618dec_huffman_lookup(16#a1, 16#5) -> {more, 16#9d, 16#1f};
2619dec_huffman_lookup(16#a1, 16#6) -> {more, 16#9d, 16#29};
2620dec_huffman_lookup(16#a1, 16#7) -> {ok, 16#9d, 16#38};
2621dec_huffman_lookup(16#a1, 16#8) -> {more, 16#9e, 16#03};
2622dec_huffman_lookup(16#a1, 16#9) -> {more, 16#9e, 16#06};
2623dec_huffman_lookup(16#a1, 16#a) -> {more, 16#9e, 16#0a};
2624dec_huffman_lookup(16#a1, 16#b) -> {more, 16#9e, 16#0f};
2625dec_huffman_lookup(16#a1, 16#c) -> {more, 16#9e, 16#18};
2626dec_huffman_lookup(16#a1, 16#d) -> {more, 16#9e, 16#1f};
2627dec_huffman_lookup(16#a1, 16#e) -> {more, 16#9e, 16#29};
2628dec_huffman_lookup(16#a1, 16#f) -> {ok, 16#9e, 16#38};
2629dec_huffman_lookup(16#a2, 16#0) -> {more, 16#a5, 16#01};
2630dec_huffman_lookup(16#a2, 16#1) -> {ok, 16#a5, 16#16};
2631dec_huffman_lookup(16#a2, 16#2) -> {more, 16#a6, 16#01};
2632dec_huffman_lookup(16#a2, 16#3) -> {ok, 16#a6, 16#16};
2633dec_huffman_lookup(16#a2, 16#4) -> {more, 16#a8, 16#01};
2634dec_huffman_lookup(16#a2, 16#5) -> {ok, 16#a8, 16#16};
2635dec_huffman_lookup(16#a2, 16#6) -> {more, 16#ae, 16#01};
2636dec_huffman_lookup(16#a2, 16#7) -> {ok, 16#ae, 16#16};
2637dec_huffman_lookup(16#a2, 16#8) -> {more, 16#af, 16#01};
2638dec_huffman_lookup(16#a2, 16#9) -> {ok, 16#af, 16#16};
2639dec_huffman_lookup(16#a2, 16#a) -> {more, 16#b4, 16#01};
2640dec_huffman_lookup(16#a2, 16#b) -> {ok, 16#b4, 16#16};
2641dec_huffman_lookup(16#a2, 16#c) -> {more, 16#b6, 16#01};
2642dec_huffman_lookup(16#a2, 16#d) -> {ok, 16#b6, 16#16};
2643dec_huffman_lookup(16#a2, 16#e) -> {more, 16#b7, 16#01};
2644dec_huffman_lookup(16#a2, 16#f) -> {ok, 16#b7, 16#16};
2645dec_huffman_lookup(16#a3, 16#0) -> {more, 16#a5, 16#02};
2646dec_huffman_lookup(16#a3, 16#1) -> {more, 16#a5, 16#09};
2647dec_huffman_lookup(16#a3, 16#2) -> {more, 16#a5, 16#17};
2648dec_huffman_lookup(16#a3, 16#3) -> {ok, 16#a5, 16#28};
2649dec_huffman_lookup(16#a3, 16#4) -> {more, 16#a6, 16#02};
2650dec_huffman_lookup(16#a3, 16#5) -> {more, 16#a6, 16#09};
2651dec_huffman_lookup(16#a3, 16#6) -> {more, 16#a6, 16#17};
2652dec_huffman_lookup(16#a3, 16#7) -> {ok, 16#a6, 16#28};
2653dec_huffman_lookup(16#a3, 16#8) -> {more, 16#a8, 16#02};
2654dec_huffman_lookup(16#a3, 16#9) -> {more, 16#a8, 16#09};
2655dec_huffman_lookup(16#a3, 16#a) -> {more, 16#a8, 16#17};
2656dec_huffman_lookup(16#a3, 16#b) -> {ok, 16#a8, 16#28};
2657dec_huffman_lookup(16#a3, 16#c) -> {more, 16#ae, 16#02};
2658dec_huffman_lookup(16#a3, 16#d) -> {more, 16#ae, 16#09};
2659dec_huffman_lookup(16#a3, 16#e) -> {more, 16#ae, 16#17};
2660dec_huffman_lookup(16#a3, 16#f) -> {ok, 16#ae, 16#28};
2661dec_huffman_lookup(16#a4, 16#0) -> {more, 16#a5, 16#03};
2662dec_huffman_lookup(16#a4, 16#1) -> {more, 16#a5, 16#06};
2663dec_huffman_lookup(16#a4, 16#2) -> {more, 16#a5, 16#0a};
2664dec_huffman_lookup(16#a4, 16#3) -> {more, 16#a5, 16#0f};
2665dec_huffman_lookup(16#a4, 16#4) -> {more, 16#a5, 16#18};
2666dec_huffman_lookup(16#a4, 16#5) -> {more, 16#a5, 16#1f};
2667dec_huffman_lookup(16#a4, 16#6) -> {more, 16#a5, 16#29};
2668dec_huffman_lookup(16#a4, 16#7) -> {ok, 16#a5, 16#38};
2669dec_huffman_lookup(16#a4, 16#8) -> {more, 16#a6, 16#03};
2670dec_huffman_lookup(16#a4, 16#9) -> {more, 16#a6, 16#06};
2671dec_huffman_lookup(16#a4, 16#a) -> {more, 16#a6, 16#0a};
2672dec_huffman_lookup(16#a4, 16#b) -> {more, 16#a6, 16#0f};
2673dec_huffman_lookup(16#a4, 16#c) -> {more, 16#a6, 16#18};
2674dec_huffman_lookup(16#a4, 16#d) -> {more, 16#a6, 16#1f};
2675dec_huffman_lookup(16#a4, 16#e) -> {more, 16#a6, 16#29};
2676dec_huffman_lookup(16#a4, 16#f) -> {ok, 16#a6, 16#38};
2677dec_huffman_lookup(16#a5, 16#0) -> {more, 16#a8, 16#03};
2678dec_huffman_lookup(16#a5, 16#1) -> {more, 16#a8, 16#06};
2679dec_huffman_lookup(16#a5, 16#2) -> {more, 16#a8, 16#0a};
2680dec_huffman_lookup(16#a5, 16#3) -> {more, 16#a8, 16#0f};
2681dec_huffman_lookup(16#a5, 16#4) -> {more, 16#a8, 16#18};
2682dec_huffman_lookup(16#a5, 16#5) -> {more, 16#a8, 16#1f};
2683dec_huffman_lookup(16#a5, 16#6) -> {more, 16#a8, 16#29};
2684dec_huffman_lookup(16#a5, 16#7) -> {ok, 16#a8, 16#38};
2685dec_huffman_lookup(16#a5, 16#8) -> {more, 16#ae, 16#03};
2686dec_huffman_lookup(16#a5, 16#9) -> {more, 16#ae, 16#06};
2687dec_huffman_lookup(16#a5, 16#a) -> {more, 16#ae, 16#0a};
2688dec_huffman_lookup(16#a5, 16#b) -> {more, 16#ae, 16#0f};
2689dec_huffman_lookup(16#a5, 16#c) -> {more, 16#ae, 16#18};
2690dec_huffman_lookup(16#a5, 16#d) -> {more, 16#ae, 16#1f};
2691dec_huffman_lookup(16#a5, 16#e) -> {more, 16#ae, 16#29};
2692dec_huffman_lookup(16#a5, 16#f) -> {ok, 16#ae, 16#38};
2693dec_huffman_lookup(16#a6, 16#0) -> {more, 16#af, 16#02};
2694dec_huffman_lookup(16#a6, 16#1) -> {more, 16#af, 16#09};
2695dec_huffman_lookup(16#a6, 16#2) -> {more, 16#af, 16#17};
2696dec_huffman_lookup(16#a6, 16#3) -> {ok, 16#af, 16#28};
2697dec_huffman_lookup(16#a6, 16#4) -> {more, 16#b4, 16#02};
2698dec_huffman_lookup(16#a6, 16#5) -> {more, 16#b4, 16#09};
2699dec_huffman_lookup(16#a6, 16#6) -> {more, 16#b4, 16#17};
2700dec_huffman_lookup(16#a6, 16#7) -> {ok, 16#b4, 16#28};
2701dec_huffman_lookup(16#a6, 16#8) -> {more, 16#b6, 16#02};
2702dec_huffman_lookup(16#a6, 16#9) -> {more, 16#b6, 16#09};
2703dec_huffman_lookup(16#a6, 16#a) -> {more, 16#b6, 16#17};
2704dec_huffman_lookup(16#a6, 16#b) -> {ok, 16#b6, 16#28};
2705dec_huffman_lookup(16#a6, 16#c) -> {more, 16#b7, 16#02};
2706dec_huffman_lookup(16#a6, 16#d) -> {more, 16#b7, 16#09};
2707dec_huffman_lookup(16#a6, 16#e) -> {more, 16#b7, 16#17};
2708dec_huffman_lookup(16#a6, 16#f) -> {ok, 16#b7, 16#28};
2709dec_huffman_lookup(16#a7, 16#0) -> {more, 16#af, 16#03};
2710dec_huffman_lookup(16#a7, 16#1) -> {more, 16#af, 16#06};
2711dec_huffman_lookup(16#a7, 16#2) -> {more, 16#af, 16#0a};
2712dec_huffman_lookup(16#a7, 16#3) -> {more, 16#af, 16#0f};
2713dec_huffman_lookup(16#a7, 16#4) -> {more, 16#af, 16#18};
2714dec_huffman_lookup(16#a7, 16#5) -> {more, 16#af, 16#1f};
2715dec_huffman_lookup(16#a7, 16#6) -> {more, 16#af, 16#29};
2716dec_huffman_lookup(16#a7, 16#7) -> {ok, 16#af, 16#38};
2717dec_huffman_lookup(16#a7, 16#8) -> {more, 16#b4, 16#03};
2718dec_huffman_lookup(16#a7, 16#9) -> {more, 16#b4, 16#06};
2719dec_huffman_lookup(16#a7, 16#a) -> {more, 16#b4, 16#0a};
2720dec_huffman_lookup(16#a7, 16#b) -> {more, 16#b4, 16#0f};
2721dec_huffman_lookup(16#a7, 16#c) -> {more, 16#b4, 16#18};
2722dec_huffman_lookup(16#a7, 16#d) -> {more, 16#b4, 16#1f};
2723dec_huffman_lookup(16#a7, 16#e) -> {more, 16#b4, 16#29};
2724dec_huffman_lookup(16#a7, 16#f) -> {ok, 16#b4, 16#38};
2725dec_huffman_lookup(16#a8, 16#0) -> {more, 16#b6, 16#03};
2726dec_huffman_lookup(16#a8, 16#1) -> {more, 16#b6, 16#06};
2727dec_huffman_lookup(16#a8, 16#2) -> {more, 16#b6, 16#0a};
2728dec_huffman_lookup(16#a8, 16#3) -> {more, 16#b6, 16#0f};
2729dec_huffman_lookup(16#a8, 16#4) -> {more, 16#b6, 16#18};
2730dec_huffman_lookup(16#a8, 16#5) -> {more, 16#b6, 16#1f};
2731dec_huffman_lookup(16#a8, 16#6) -> {more, 16#b6, 16#29};
2732dec_huffman_lookup(16#a8, 16#7) -> {ok, 16#b6, 16#38};
2733dec_huffman_lookup(16#a8, 16#8) -> {more, 16#b7, 16#03};
2734dec_huffman_lookup(16#a8, 16#9) -> {more, 16#b7, 16#06};
2735dec_huffman_lookup(16#a8, 16#a) -> {more, 16#b7, 16#0a};
2736dec_huffman_lookup(16#a8, 16#b) -> {more, 16#b7, 16#0f};
2737dec_huffman_lookup(16#a8, 16#c) -> {more, 16#b7, 16#18};
2738dec_huffman_lookup(16#a8, 16#d) -> {more, 16#b7, 16#1f};
2739dec_huffman_lookup(16#a8, 16#e) -> {more, 16#b7, 16#29};
2740dec_huffman_lookup(16#a8, 16#f) -> {ok, 16#b7, 16#38};
2741dec_huffman_lookup(16#a9, 16#0) -> {ok, 16#bc, 16#00};
2742dec_huffman_lookup(16#a9, 16#1) -> {ok, 16#bf, 16#00};
2743dec_huffman_lookup(16#a9, 16#2) -> {ok, 16#c5, 16#00};
2744dec_huffman_lookup(16#a9, 16#3) -> {ok, 16#e7, 16#00};
2745dec_huffman_lookup(16#a9, 16#4) -> {ok, 16#ef, 16#00};
2746dec_huffman_lookup(16#a9, 16#5) -> {more, undefined, 16#b0};
2747dec_huffman_lookup(16#a9, 16#6) -> {more, undefined, 16#b2};
2748dec_huffman_lookup(16#a9, 16#7) -> {more, undefined, 16#b3};
2749dec_huffman_lookup(16#a9, 16#8) -> {more, undefined, 16#b7};
2750dec_huffman_lookup(16#a9, 16#9) -> {more, undefined, 16#b8};
2751dec_huffman_lookup(16#a9, 16#a) -> {more, undefined, 16#ba};
2752dec_huffman_lookup(16#a9, 16#b) -> {more, undefined, 16#bb};
2753dec_huffman_lookup(16#a9, 16#c) -> {more, undefined, 16#c0};
2754dec_huffman_lookup(16#a9, 16#d) -> {more, undefined, 16#c7};
2755dec_huffman_lookup(16#a9, 16#e) -> {more, undefined, 16#d0};
2756dec_huffman_lookup(16#a9, 16#f) -> {ok, undefined, 16#df};
2757dec_huffman_lookup(16#aa, 16#0) -> {more, 16#bc, 16#01};
2758dec_huffman_lookup(16#aa, 16#1) -> {ok, 16#bc, 16#16};
2759dec_huffman_lookup(16#aa, 16#2) -> {more, 16#bf, 16#01};
2760dec_huffman_lookup(16#aa, 16#3) -> {ok, 16#bf, 16#16};
2761dec_huffman_lookup(16#aa, 16#4) -> {more, 16#c5, 16#01};
2762dec_huffman_lookup(16#aa, 16#5) -> {ok, 16#c5, 16#16};
2763dec_huffman_lookup(16#aa, 16#6) -> {more, 16#e7, 16#01};
2764dec_huffman_lookup(16#aa, 16#7) -> {ok, 16#e7, 16#16};
2765dec_huffman_lookup(16#aa, 16#8) -> {more, 16#ef, 16#01};
2766dec_huffman_lookup(16#aa, 16#9) -> {ok, 16#ef, 16#16};
2767dec_huffman_lookup(16#aa, 16#a) -> {ok, 16#09, 16#00};
2768dec_huffman_lookup(16#aa, 16#b) -> {ok, 16#8e, 16#00};
2769dec_huffman_lookup(16#aa, 16#c) -> {ok, 16#90, 16#00};
2770dec_huffman_lookup(16#aa, 16#d) -> {ok, 16#91, 16#00};
2771dec_huffman_lookup(16#aa, 16#e) -> {ok, 16#94, 16#00};
2772dec_huffman_lookup(16#aa, 16#f) -> {ok, 16#9f, 16#00};
2773dec_huffman_lookup(16#ab, 16#0) -> {more, 16#bc, 16#02};
2774dec_huffman_lookup(16#ab, 16#1) -> {more, 16#bc, 16#09};
2775dec_huffman_lookup(16#ab, 16#2) -> {more, 16#bc, 16#17};
2776dec_huffman_lookup(16#ab, 16#3) -> {ok, 16#bc, 16#28};
2777dec_huffman_lookup(16#ab, 16#4) -> {more, 16#bf, 16#02};
2778dec_huffman_lookup(16#ab, 16#5) -> {more, 16#bf, 16#09};
2779dec_huffman_lookup(16#ab, 16#6) -> {more, 16#bf, 16#17};
2780dec_huffman_lookup(16#ab, 16#7) -> {ok, 16#bf, 16#28};
2781dec_huffman_lookup(16#ab, 16#8) -> {more, 16#c5, 16#02};
2782dec_huffman_lookup(16#ab, 16#9) -> {more, 16#c5, 16#09};
2783dec_huffman_lookup(16#ab, 16#a) -> {more, 16#c5, 16#17};
2784dec_huffman_lookup(16#ab, 16#b) -> {ok, 16#c5, 16#28};
2785dec_huffman_lookup(16#ab, 16#c) -> {more, 16#e7, 16#02};
2786dec_huffman_lookup(16#ab, 16#d) -> {more, 16#e7, 16#09};
2787dec_huffman_lookup(16#ab, 16#e) -> {more, 16#e7, 16#17};
2788dec_huffman_lookup(16#ab, 16#f) -> {ok, 16#e7, 16#28};
2789dec_huffman_lookup(16#ac, 16#0) -> {more, 16#bc, 16#03};
2790dec_huffman_lookup(16#ac, 16#1) -> {more, 16#bc, 16#06};
2791dec_huffman_lookup(16#ac, 16#2) -> {more, 16#bc, 16#0a};
2792dec_huffman_lookup(16#ac, 16#3) -> {more, 16#bc, 16#0f};
2793dec_huffman_lookup(16#ac, 16#4) -> {more, 16#bc, 16#18};
2794dec_huffman_lookup(16#ac, 16#5) -> {more, 16#bc, 16#1f};
2795dec_huffman_lookup(16#ac, 16#6) -> {more, 16#bc, 16#29};
2796dec_huffman_lookup(16#ac, 16#7) -> {ok, 16#bc, 16#38};
2797dec_huffman_lookup(16#ac, 16#8) -> {more, 16#bf, 16#03};
2798dec_huffman_lookup(16#ac, 16#9) -> {more, 16#bf, 16#06};
2799dec_huffman_lookup(16#ac, 16#a) -> {more, 16#bf, 16#0a};
2800dec_huffman_lookup(16#ac, 16#b) -> {more, 16#bf, 16#0f};
2801dec_huffman_lookup(16#ac, 16#c) -> {more, 16#bf, 16#18};
2802dec_huffman_lookup(16#ac, 16#d) -> {more, 16#bf, 16#1f};
2803dec_huffman_lookup(16#ac, 16#e) -> {more, 16#bf, 16#29};
2804dec_huffman_lookup(16#ac, 16#f) -> {ok, 16#bf, 16#38};
2805dec_huffman_lookup(16#ad, 16#0) -> {more, 16#c5, 16#03};
2806dec_huffman_lookup(16#ad, 16#1) -> {more, 16#c5, 16#06};
2807dec_huffman_lookup(16#ad, 16#2) -> {more, 16#c5, 16#0a};
2808dec_huffman_lookup(16#ad, 16#3) -> {more, 16#c5, 16#0f};
2809dec_huffman_lookup(16#ad, 16#4) -> {more, 16#c5, 16#18};
2810dec_huffman_lookup(16#ad, 16#5) -> {more, 16#c5, 16#1f};
2811dec_huffman_lookup(16#ad, 16#6) -> {more, 16#c5, 16#29};
2812dec_huffman_lookup(16#ad, 16#7) -> {ok, 16#c5, 16#38};
2813dec_huffman_lookup(16#ad, 16#8) -> {more, 16#e7, 16#03};
2814dec_huffman_lookup(16#ad, 16#9) -> {more, 16#e7, 16#06};
2815dec_huffman_lookup(16#ad, 16#a) -> {more, 16#e7, 16#0a};
2816dec_huffman_lookup(16#ad, 16#b) -> {more, 16#e7, 16#0f};
2817dec_huffman_lookup(16#ad, 16#c) -> {more, 16#e7, 16#18};
2818dec_huffman_lookup(16#ad, 16#d) -> {more, 16#e7, 16#1f};
2819dec_huffman_lookup(16#ad, 16#e) -> {more, 16#e7, 16#29};
2820dec_huffman_lookup(16#ad, 16#f) -> {ok, 16#e7, 16#38};
2821dec_huffman_lookup(16#ae, 16#0) -> {more, 16#ef, 16#02};
2822dec_huffman_lookup(16#ae, 16#1) -> {more, 16#ef, 16#09};
2823dec_huffman_lookup(16#ae, 16#2) -> {more, 16#ef, 16#17};
2824dec_huffman_lookup(16#ae, 16#3) -> {ok, 16#ef, 16#28};
2825dec_huffman_lookup(16#ae, 16#4) -> {more, 16#09, 16#01};
2826dec_huffman_lookup(16#ae, 16#5) -> {ok, 16#09, 16#16};
2827dec_huffman_lookup(16#ae, 16#6) -> {more, 16#8e, 16#01};
2828dec_huffman_lookup(16#ae, 16#7) -> {ok, 16#8e, 16#16};
2829dec_huffman_lookup(16#ae, 16#8) -> {more, 16#90, 16#01};
2830dec_huffman_lookup(16#ae, 16#9) -> {ok, 16#90, 16#16};
2831dec_huffman_lookup(16#ae, 16#a) -> {more, 16#91, 16#01};
2832dec_huffman_lookup(16#ae, 16#b) -> {ok, 16#91, 16#16};
2833dec_huffman_lookup(16#ae, 16#c) -> {more, 16#94, 16#01};
2834dec_huffman_lookup(16#ae, 16#d) -> {ok, 16#94, 16#16};
2835dec_huffman_lookup(16#ae, 16#e) -> {more, 16#9f, 16#01};
2836dec_huffman_lookup(16#ae, 16#f) -> {ok, 16#9f, 16#16};
2837dec_huffman_lookup(16#af, 16#0) -> {more, 16#ef, 16#03};
2838dec_huffman_lookup(16#af, 16#1) -> {more, 16#ef, 16#06};
2839dec_huffman_lookup(16#af, 16#2) -> {more, 16#ef, 16#0a};
2840dec_huffman_lookup(16#af, 16#3) -> {more, 16#ef, 16#0f};
2841dec_huffman_lookup(16#af, 16#4) -> {more, 16#ef, 16#18};
2842dec_huffman_lookup(16#af, 16#5) -> {more, 16#ef, 16#1f};
2843dec_huffman_lookup(16#af, 16#6) -> {more, 16#ef, 16#29};
2844dec_huffman_lookup(16#af, 16#7) -> {ok, 16#ef, 16#38};
2845dec_huffman_lookup(16#af, 16#8) -> {more, 16#09, 16#02};
2846dec_huffman_lookup(16#af, 16#9) -> {more, 16#09, 16#09};
2847dec_huffman_lookup(16#af, 16#a) -> {more, 16#09, 16#17};
2848dec_huffman_lookup(16#af, 16#b) -> {ok, 16#09, 16#28};
2849dec_huffman_lookup(16#af, 16#c) -> {more, 16#8e, 16#02};
2850dec_huffman_lookup(16#af, 16#d) -> {more, 16#8e, 16#09};
2851dec_huffman_lookup(16#af, 16#e) -> {more, 16#8e, 16#17};
2852dec_huffman_lookup(16#af, 16#f) -> {ok, 16#8e, 16#28};
2853dec_huffman_lookup(16#b0, 16#0) -> {more, 16#09, 16#03};
2854dec_huffman_lookup(16#b0, 16#1) -> {more, 16#09, 16#06};
2855dec_huffman_lookup(16#b0, 16#2) -> {more, 16#09, 16#0a};
2856dec_huffman_lookup(16#b0, 16#3) -> {more, 16#09, 16#0f};
2857dec_huffman_lookup(16#b0, 16#4) -> {more, 16#09, 16#18};
2858dec_huffman_lookup(16#b0, 16#5) -> {more, 16#09, 16#1f};
2859dec_huffman_lookup(16#b0, 16#6) -> {more, 16#09, 16#29};
2860dec_huffman_lookup(16#b0, 16#7) -> {ok, 16#09, 16#38};
2861dec_huffman_lookup(16#b0, 16#8) -> {more, 16#8e, 16#03};
2862dec_huffman_lookup(16#b0, 16#9) -> {more, 16#8e, 16#06};
2863dec_huffman_lookup(16#b0, 16#a) -> {more, 16#8e, 16#0a};
2864dec_huffman_lookup(16#b0, 16#b) -> {more, 16#8e, 16#0f};
2865dec_huffman_lookup(16#b0, 16#c) -> {more, 16#8e, 16#18};
2866dec_huffman_lookup(16#b0, 16#d) -> {more, 16#8e, 16#1f};
2867dec_huffman_lookup(16#b0, 16#e) -> {more, 16#8e, 16#29};
2868dec_huffman_lookup(16#b0, 16#f) -> {ok, 16#8e, 16#38};
2869dec_huffman_lookup(16#b1, 16#0) -> {more, 16#90, 16#02};
2870dec_huffman_lookup(16#b1, 16#1) -> {more, 16#90, 16#09};
2871dec_huffman_lookup(16#b1, 16#2) -> {more, 16#90, 16#17};
2872dec_huffman_lookup(16#b1, 16#3) -> {ok, 16#90, 16#28};
2873dec_huffman_lookup(16#b1, 16#4) -> {more, 16#91, 16#02};
2874dec_huffman_lookup(16#b1, 16#5) -> {more, 16#91, 16#09};
2875dec_huffman_lookup(16#b1, 16#6) -> {more, 16#91, 16#17};
2876dec_huffman_lookup(16#b1, 16#7) -> {ok, 16#91, 16#28};
2877dec_huffman_lookup(16#b1, 16#8) -> {more, 16#94, 16#02};
2878dec_huffman_lookup(16#b1, 16#9) -> {more, 16#94, 16#09};
2879dec_huffman_lookup(16#b1, 16#a) -> {more, 16#94, 16#17};
2880dec_huffman_lookup(16#b1, 16#b) -> {ok, 16#94, 16#28};
2881dec_huffman_lookup(16#b1, 16#c) -> {more, 16#9f, 16#02};
2882dec_huffman_lookup(16#b1, 16#d) -> {more, 16#9f, 16#09};
2883dec_huffman_lookup(16#b1, 16#e) -> {more, 16#9f, 16#17};
2884dec_huffman_lookup(16#b1, 16#f) -> {ok, 16#9f, 16#28};
2885dec_huffman_lookup(16#b2, 16#0) -> {more, 16#90, 16#03};
2886dec_huffman_lookup(16#b2, 16#1) -> {more, 16#90, 16#06};
2887dec_huffman_lookup(16#b2, 16#2) -> {more, 16#90, 16#0a};
2888dec_huffman_lookup(16#b2, 16#3) -> {more, 16#90, 16#0f};
2889dec_huffman_lookup(16#b2, 16#4) -> {more, 16#90, 16#18};
2890dec_huffman_lookup(16#b2, 16#5) -> {more, 16#90, 16#1f};
2891dec_huffman_lookup(16#b2, 16#6) -> {more, 16#90, 16#29};
2892dec_huffman_lookup(16#b2, 16#7) -> {ok, 16#90, 16#38};
2893dec_huffman_lookup(16#b2, 16#8) -> {more, 16#91, 16#03};
2894dec_huffman_lookup(16#b2, 16#9) -> {more, 16#91, 16#06};
2895dec_huffman_lookup(16#b2, 16#a) -> {more, 16#91, 16#0a};
2896dec_huffman_lookup(16#b2, 16#b) -> {more, 16#91, 16#0f};
2897dec_huffman_lookup(16#b2, 16#c) -> {more, 16#91, 16#18};
2898dec_huffman_lookup(16#b2, 16#d) -> {more, 16#91, 16#1f};
2899dec_huffman_lookup(16#b2, 16#e) -> {more, 16#91, 16#29};
2900dec_huffman_lookup(16#b2, 16#f) -> {ok, 16#91, 16#38};
2901dec_huffman_lookup(16#b3, 16#0) -> {more, 16#94, 16#03};
2902dec_huffman_lookup(16#b3, 16#1) -> {more, 16#94, 16#06};
2903dec_huffman_lookup(16#b3, 16#2) -> {more, 16#94, 16#0a};
2904dec_huffman_lookup(16#b3, 16#3) -> {more, 16#94, 16#0f};
2905dec_huffman_lookup(16#b3, 16#4) -> {more, 16#94, 16#18};
2906dec_huffman_lookup(16#b3, 16#5) -> {more, 16#94, 16#1f};
2907dec_huffman_lookup(16#b3, 16#6) -> {more, 16#94, 16#29};
2908dec_huffman_lookup(16#b3, 16#7) -> {ok, 16#94, 16#38};
2909dec_huffman_lookup(16#b3, 16#8) -> {more, 16#9f, 16#03};
2910dec_huffman_lookup(16#b3, 16#9) -> {more, 16#9f, 16#06};
2911dec_huffman_lookup(16#b3, 16#a) -> {more, 16#9f, 16#0a};
2912dec_huffman_lookup(16#b3, 16#b) -> {more, 16#9f, 16#0f};
2913dec_huffman_lookup(16#b3, 16#c) -> {more, 16#9f, 16#18};
2914dec_huffman_lookup(16#b3, 16#d) -> {more, 16#9f, 16#1f};
2915dec_huffman_lookup(16#b3, 16#e) -> {more, 16#9f, 16#29};
2916dec_huffman_lookup(16#b3, 16#f) -> {ok, 16#9f, 16#38};
2917dec_huffman_lookup(16#b4, 16#0) -> {ok, 16#ab, 16#00};
2918dec_huffman_lookup(16#b4, 16#1) -> {ok, 16#ce, 16#00};
2919dec_huffman_lookup(16#b4, 16#2) -> {ok, 16#d7, 16#00};
2920dec_huffman_lookup(16#b4, 16#3) -> {ok, 16#e1, 16#00};
2921dec_huffman_lookup(16#b4, 16#4) -> {ok, 16#ec, 16#00};
2922dec_huffman_lookup(16#b4, 16#5) -> {ok, 16#ed, 16#00};
2923dec_huffman_lookup(16#b4, 16#6) -> {more, undefined, 16#bc};
2924dec_huffman_lookup(16#b4, 16#7) -> {more, undefined, 16#bd};
2925dec_huffman_lookup(16#b4, 16#8) -> {more, undefined, 16#c1};
2926dec_huffman_lookup(16#b4, 16#9) -> {more, undefined, 16#c4};
2927dec_huffman_lookup(16#b4, 16#a) -> {more, undefined, 16#c8};
2928dec_huffman_lookup(16#b4, 16#b) -> {more, undefined, 16#cb};
2929dec_huffman_lookup(16#b4, 16#c) -> {more, undefined, 16#d1};
2930dec_huffman_lookup(16#b4, 16#d) -> {more, undefined, 16#d8};
2931dec_huffman_lookup(16#b4, 16#e) -> {more, undefined, 16#e0};
2932dec_huffman_lookup(16#b4, 16#f) -> {ok, undefined, 16#ee};
2933dec_huffman_lookup(16#b5, 16#0) -> {more, 16#ab, 16#01};
2934dec_huffman_lookup(16#b5, 16#1) -> {ok, 16#ab, 16#16};
2935dec_huffman_lookup(16#b5, 16#2) -> {more, 16#ce, 16#01};
2936dec_huffman_lookup(16#b5, 16#3) -> {ok, 16#ce, 16#16};
2937dec_huffman_lookup(16#b5, 16#4) -> {more, 16#d7, 16#01};
2938dec_huffman_lookup(16#b5, 16#5) -> {ok, 16#d7, 16#16};
2939dec_huffman_lookup(16#b5, 16#6) -> {more, 16#e1, 16#01};
2940dec_huffman_lookup(16#b5, 16#7) -> {ok, 16#e1, 16#16};
2941dec_huffman_lookup(16#b5, 16#8) -> {more, 16#ec, 16#01};
2942dec_huffman_lookup(16#b5, 16#9) -> {ok, 16#ec, 16#16};
2943dec_huffman_lookup(16#b5, 16#a) -> {more, 16#ed, 16#01};
2944dec_huffman_lookup(16#b5, 16#b) -> {ok, 16#ed, 16#16};
2945dec_huffman_lookup(16#b5, 16#c) -> {ok, 16#c7, 16#00};
2946dec_huffman_lookup(16#b5, 16#d) -> {ok, 16#cf, 16#00};
2947dec_huffman_lookup(16#b5, 16#e) -> {ok, 16#ea, 16#00};
2948dec_huffman_lookup(16#b5, 16#f) -> {ok, 16#eb, 16#00};
2949dec_huffman_lookup(16#b6, 16#0) -> {more, 16#ab, 16#02};
2950dec_huffman_lookup(16#b6, 16#1) -> {more, 16#ab, 16#09};
2951dec_huffman_lookup(16#b6, 16#2) -> {more, 16#ab, 16#17};
2952dec_huffman_lookup(16#b6, 16#3) -> {ok, 16#ab, 16#28};
2953dec_huffman_lookup(16#b6, 16#4) -> {more, 16#ce, 16#02};
2954dec_huffman_lookup(16#b6, 16#5) -> {more, 16#ce, 16#09};
2955dec_huffman_lookup(16#b6, 16#6) -> {more, 16#ce, 16#17};
2956dec_huffman_lookup(16#b6, 16#7) -> {ok, 16#ce, 16#28};
2957dec_huffman_lookup(16#b6, 16#8) -> {more, 16#d7, 16#02};
2958dec_huffman_lookup(16#b6, 16#9) -> {more, 16#d7, 16#09};
2959dec_huffman_lookup(16#b6, 16#a) -> {more, 16#d7, 16#17};
2960dec_huffman_lookup(16#b6, 16#b) -> {ok, 16#d7, 16#28};
2961dec_huffman_lookup(16#b6, 16#c) -> {more, 16#e1, 16#02};
2962dec_huffman_lookup(16#b6, 16#d) -> {more, 16#e1, 16#09};
2963dec_huffman_lookup(16#b6, 16#e) -> {more, 16#e1, 16#17};
2964dec_huffman_lookup(16#b6, 16#f) -> {ok, 16#e1, 16#28};
2965dec_huffman_lookup(16#b7, 16#0) -> {more, 16#ab, 16#03};
2966dec_huffman_lookup(16#b7, 16#1) -> {more, 16#ab, 16#06};
2967dec_huffman_lookup(16#b7, 16#2) -> {more, 16#ab, 16#0a};
2968dec_huffman_lookup(16#b7, 16#3) -> {more, 16#ab, 16#0f};
2969dec_huffman_lookup(16#b7, 16#4) -> {more, 16#ab, 16#18};
2970dec_huffman_lookup(16#b7, 16#5) -> {more, 16#ab, 16#1f};
2971dec_huffman_lookup(16#b7, 16#6) -> {more, 16#ab, 16#29};
2972dec_huffman_lookup(16#b7, 16#7) -> {ok, 16#ab, 16#38};
2973dec_huffman_lookup(16#b7, 16#8) -> {more, 16#ce, 16#03};
2974dec_huffman_lookup(16#b7, 16#9) -> {more, 16#ce, 16#06};
2975dec_huffman_lookup(16#b7, 16#a) -> {more, 16#ce, 16#0a};
2976dec_huffman_lookup(16#b7, 16#b) -> {more, 16#ce, 16#0f};
2977dec_huffman_lookup(16#b7, 16#c) -> {more, 16#ce, 16#18};
2978dec_huffman_lookup(16#b7, 16#d) -> {more, 16#ce, 16#1f};
2979dec_huffman_lookup(16#b7, 16#e) -> {more, 16#ce, 16#29};
2980dec_huffman_lookup(16#b7, 16#f) -> {ok, 16#ce, 16#38};
2981dec_huffman_lookup(16#b8, 16#0) -> {more, 16#d7, 16#03};
2982dec_huffman_lookup(16#b8, 16#1) -> {more, 16#d7, 16#06};
2983dec_huffman_lookup(16#b8, 16#2) -> {more, 16#d7, 16#0a};
2984dec_huffman_lookup(16#b8, 16#3) -> {more, 16#d7, 16#0f};
2985dec_huffman_lookup(16#b8, 16#4) -> {more, 16#d7, 16#18};
2986dec_huffman_lookup(16#b8, 16#5) -> {more, 16#d7, 16#1f};
2987dec_huffman_lookup(16#b8, 16#6) -> {more, 16#d7, 16#29};
2988dec_huffman_lookup(16#b8, 16#7) -> {ok, 16#d7, 16#38};
2989dec_huffman_lookup(16#b8, 16#8) -> {more, 16#e1, 16#03};
2990dec_huffman_lookup(16#b8, 16#9) -> {more, 16#e1, 16#06};
2991dec_huffman_lookup(16#b8, 16#a) -> {more, 16#e1, 16#0a};
2992dec_huffman_lookup(16#b8, 16#b) -> {more, 16#e1, 16#0f};
2993dec_huffman_lookup(16#b8, 16#c) -> {more, 16#e1, 16#18};
2994dec_huffman_lookup(16#b8, 16#d) -> {more, 16#e1, 16#1f};
2995dec_huffman_lookup(16#b8, 16#e) -> {more, 16#e1, 16#29};
2996dec_huffman_lookup(16#b8, 16#f) -> {ok, 16#e1, 16#38};
2997dec_huffman_lookup(16#b9, 16#0) -> {more, 16#ec, 16#02};
2998dec_huffman_lookup(16#b9, 16#1) -> {more, 16#ec, 16#09};
2999dec_huffman_lookup(16#b9, 16#2) -> {more, 16#ec, 16#17};
3000dec_huffman_lookup(16#b9, 16#3) -> {ok, 16#ec, 16#28};
3001dec_huffman_lookup(16#b9, 16#4) -> {more, 16#ed, 16#02};
3002dec_huffman_lookup(16#b9, 16#5) -> {more, 16#ed, 16#09};
3003dec_huffman_lookup(16#b9, 16#6) -> {more, 16#ed, 16#17};
3004dec_huffman_lookup(16#b9, 16#7) -> {ok, 16#ed, 16#28};
3005dec_huffman_lookup(16#b9, 16#8) -> {more, 16#c7, 16#01};
3006dec_huffman_lookup(16#b9, 16#9) -> {ok, 16#c7, 16#16};
3007dec_huffman_lookup(16#b9, 16#a) -> {more, 16#cf, 16#01};
3008dec_huffman_lookup(16#b9, 16#b) -> {ok, 16#cf, 16#16};
3009dec_huffman_lookup(16#b9, 16#c) -> {more, 16#ea, 16#01};
3010dec_huffman_lookup(16#b9, 16#d) -> {ok, 16#ea, 16#16};
3011dec_huffman_lookup(16#b9, 16#e) -> {more, 16#eb, 16#01};
3012dec_huffman_lookup(16#b9, 16#f) -> {ok, 16#eb, 16#16};
3013dec_huffman_lookup(16#ba, 16#0) -> {more, 16#ec, 16#03};
3014dec_huffman_lookup(16#ba, 16#1) -> {more, 16#ec, 16#06};
3015dec_huffman_lookup(16#ba, 16#2) -> {more, 16#ec, 16#0a};
3016dec_huffman_lookup(16#ba, 16#3) -> {more, 16#ec, 16#0f};
3017dec_huffman_lookup(16#ba, 16#4) -> {more, 16#ec, 16#18};
3018dec_huffman_lookup(16#ba, 16#5) -> {more, 16#ec, 16#1f};
3019dec_huffman_lookup(16#ba, 16#6) -> {more, 16#ec, 16#29};
3020dec_huffman_lookup(16#ba, 16#7) -> {ok, 16#ec, 16#38};
3021dec_huffman_lookup(16#ba, 16#8) -> {more, 16#ed, 16#03};
3022dec_huffman_lookup(16#ba, 16#9) -> {more, 16#ed, 16#06};
3023dec_huffman_lookup(16#ba, 16#a) -> {more, 16#ed, 16#0a};
3024dec_huffman_lookup(16#ba, 16#b) -> {more, 16#ed, 16#0f};
3025dec_huffman_lookup(16#ba, 16#c) -> {more, 16#ed, 16#18};
3026dec_huffman_lookup(16#ba, 16#d) -> {more, 16#ed, 16#1f};
3027dec_huffman_lookup(16#ba, 16#e) -> {more, 16#ed, 16#29};
3028dec_huffman_lookup(16#ba, 16#f) -> {ok, 16#ed, 16#38};
3029dec_huffman_lookup(16#bb, 16#0) -> {more, 16#c7, 16#02};
3030dec_huffman_lookup(16#bb, 16#1) -> {more, 16#c7, 16#09};
3031dec_huffman_lookup(16#bb, 16#2) -> {more, 16#c7, 16#17};
3032dec_huffman_lookup(16#bb, 16#3) -> {ok, 16#c7, 16#28};
3033dec_huffman_lookup(16#bb, 16#4) -> {more, 16#cf, 16#02};
3034dec_huffman_lookup(16#bb, 16#5) -> {more, 16#cf, 16#09};
3035dec_huffman_lookup(16#bb, 16#6) -> {more, 16#cf, 16#17};
3036dec_huffman_lookup(16#bb, 16#7) -> {ok, 16#cf, 16#28};
3037dec_huffman_lookup(16#bb, 16#8) -> {more, 16#ea, 16#02};
3038dec_huffman_lookup(16#bb, 16#9) -> {more, 16#ea, 16#09};
3039dec_huffman_lookup(16#bb, 16#a) -> {more, 16#ea, 16#17};
3040dec_huffman_lookup(16#bb, 16#b) -> {ok, 16#ea, 16#28};
3041dec_huffman_lookup(16#bb, 16#c) -> {more, 16#eb, 16#02};
3042dec_huffman_lookup(16#bb, 16#d) -> {more, 16#eb, 16#09};
3043dec_huffman_lookup(16#bb, 16#e) -> {more, 16#eb, 16#17};
3044dec_huffman_lookup(16#bb, 16#f) -> {ok, 16#eb, 16#28};
3045dec_huffman_lookup(16#bc, 16#0) -> {more, 16#c7, 16#03};
3046dec_huffman_lookup(16#bc, 16#1) -> {more, 16#c7, 16#06};
3047dec_huffman_lookup(16#bc, 16#2) -> {more, 16#c7, 16#0a};
3048dec_huffman_lookup(16#bc, 16#3) -> {more, 16#c7, 16#0f};
3049dec_huffman_lookup(16#bc, 16#4) -> {more, 16#c7, 16#18};
3050dec_huffman_lookup(16#bc, 16#5) -> {more, 16#c7, 16#1f};
3051dec_huffman_lookup(16#bc, 16#6) -> {more, 16#c7, 16#29};
3052dec_huffman_lookup(16#bc, 16#7) -> {ok, 16#c7, 16#38};
3053dec_huffman_lookup(16#bc, 16#8) -> {more, 16#cf, 16#03};
3054dec_huffman_lookup(16#bc, 16#9) -> {more, 16#cf, 16#06};
3055dec_huffman_lookup(16#bc, 16#a) -> {more, 16#cf, 16#0a};
3056dec_huffman_lookup(16#bc, 16#b) -> {more, 16#cf, 16#0f};
3057dec_huffman_lookup(16#bc, 16#c) -> {more, 16#cf, 16#18};
3058dec_huffman_lookup(16#bc, 16#d) -> {more, 16#cf, 16#1f};
3059dec_huffman_lookup(16#bc, 16#e) -> {more, 16#cf, 16#29};
3060dec_huffman_lookup(16#bc, 16#f) -> {ok, 16#cf, 16#38};
3061dec_huffman_lookup(16#bd, 16#0) -> {more, 16#ea, 16#03};
3062dec_huffman_lookup(16#bd, 16#1) -> {more, 16#ea, 16#06};
3063dec_huffman_lookup(16#bd, 16#2) -> {more, 16#ea, 16#0a};
3064dec_huffman_lookup(16#bd, 16#3) -> {more, 16#ea, 16#0f};
3065dec_huffman_lookup(16#bd, 16#4) -> {more, 16#ea, 16#18};
3066dec_huffman_lookup(16#bd, 16#5) -> {more, 16#ea, 16#1f};
3067dec_huffman_lookup(16#bd, 16#6) -> {more, 16#ea, 16#29};
3068dec_huffman_lookup(16#bd, 16#7) -> {ok, 16#ea, 16#38};
3069dec_huffman_lookup(16#bd, 16#8) -> {more, 16#eb, 16#03};
3070dec_huffman_lookup(16#bd, 16#9) -> {more, 16#eb, 16#06};
3071dec_huffman_lookup(16#bd, 16#a) -> {more, 16#eb, 16#0a};
3072dec_huffman_lookup(16#bd, 16#b) -> {more, 16#eb, 16#0f};
3073dec_huffman_lookup(16#bd, 16#c) -> {more, 16#eb, 16#18};
3074dec_huffman_lookup(16#bd, 16#d) -> {more, 16#eb, 16#1f};
3075dec_huffman_lookup(16#bd, 16#e) -> {more, 16#eb, 16#29};
3076dec_huffman_lookup(16#bd, 16#f) -> {ok, 16#eb, 16#38};
3077dec_huffman_lookup(16#be, 16#0) -> {more, undefined, 16#c2};
3078dec_huffman_lookup(16#be, 16#1) -> {more, undefined, 16#c3};
3079dec_huffman_lookup(16#be, 16#2) -> {more, undefined, 16#c5};
3080dec_huffman_lookup(16#be, 16#3) -> {more, undefined, 16#c6};
3081dec_huffman_lookup(16#be, 16#4) -> {more, undefined, 16#c9};
3082dec_huffman_lookup(16#be, 16#5) -> {more, undefined, 16#ca};
3083dec_huffman_lookup(16#be, 16#6) -> {more, undefined, 16#cc};
3084dec_huffman_lookup(16#be, 16#7) -> {more, undefined, 16#cd};
3085dec_huffman_lookup(16#be, 16#8) -> {more, undefined, 16#d2};
3086dec_huffman_lookup(16#be, 16#9) -> {more, undefined, 16#d5};
3087dec_huffman_lookup(16#be, 16#a) -> {more, undefined, 16#d9};
3088dec_huffman_lookup(16#be, 16#b) -> {more, undefined, 16#dc};
3089dec_huffman_lookup(16#be, 16#c) -> {more, undefined, 16#e1};
3090dec_huffman_lookup(16#be, 16#d) -> {more, undefined, 16#e7};
3091dec_huffman_lookup(16#be, 16#e) -> {more, undefined, 16#ef};
3092dec_huffman_lookup(16#be, 16#f) -> {ok, undefined, 16#f6};
3093dec_huffman_lookup(16#bf, 16#0) -> {ok, 16#c0, 16#00};
3094dec_huffman_lookup(16#bf, 16#1) -> {ok, 16#c1, 16#00};
3095dec_huffman_lookup(16#bf, 16#2) -> {ok, 16#c8, 16#00};
3096dec_huffman_lookup(16#bf, 16#3) -> {ok, 16#c9, 16#00};
3097dec_huffman_lookup(16#bf, 16#4) -> {ok, 16#ca, 16#00};
3098dec_huffman_lookup(16#bf, 16#5) -> {ok, 16#cd, 16#00};
3099dec_huffman_lookup(16#bf, 16#6) -> {ok, 16#d2, 16#00};
3100dec_huffman_lookup(16#bf, 16#7) -> {ok, 16#d5, 16#00};
3101dec_huffman_lookup(16#bf, 16#8) -> {ok, 16#da, 16#00};
3102dec_huffman_lookup(16#bf, 16#9) -> {ok, 16#db, 16#00};
3103dec_huffman_lookup(16#bf, 16#a) -> {ok, 16#ee, 16#00};
3104dec_huffman_lookup(16#bf, 16#b) -> {ok, 16#f0, 16#00};
3105dec_huffman_lookup(16#bf, 16#c) -> {ok, 16#f2, 16#00};
3106dec_huffman_lookup(16#bf, 16#d) -> {ok, 16#f3, 16#00};
3107dec_huffman_lookup(16#bf, 16#e) -> {ok, 16#ff, 16#00};
3108dec_huffman_lookup(16#bf, 16#f) -> {more, undefined, 16#ce};
3109dec_huffman_lookup(16#c0, 16#0) -> {more, 16#c0, 16#01};
3110dec_huffman_lookup(16#c0, 16#1) -> {ok, 16#c0, 16#16};
3111dec_huffman_lookup(16#c0, 16#2) -> {more, 16#c1, 16#01};
3112dec_huffman_lookup(16#c0, 16#3) -> {ok, 16#c1, 16#16};
3113dec_huffman_lookup(16#c0, 16#4) -> {more, 16#c8, 16#01};
3114dec_huffman_lookup(16#c0, 16#5) -> {ok, 16#c8, 16#16};
3115dec_huffman_lookup(16#c0, 16#6) -> {more, 16#c9, 16#01};
3116dec_huffman_lookup(16#c0, 16#7) -> {ok, 16#c9, 16#16};
3117dec_huffman_lookup(16#c0, 16#8) -> {more, 16#ca, 16#01};
3118dec_huffman_lookup(16#c0, 16#9) -> {ok, 16#ca, 16#16};
3119dec_huffman_lookup(16#c0, 16#a) -> {more, 16#cd, 16#01};
3120dec_huffman_lookup(16#c0, 16#b) -> {ok, 16#cd, 16#16};
3121dec_huffman_lookup(16#c0, 16#c) -> {more, 16#d2, 16#01};
3122dec_huffman_lookup(16#c0, 16#d) -> {ok, 16#d2, 16#16};
3123dec_huffman_lookup(16#c0, 16#e) -> {more, 16#d5, 16#01};
3124dec_huffman_lookup(16#c0, 16#f) -> {ok, 16#d5, 16#16};
3125dec_huffman_lookup(16#c1, 16#0) -> {more, 16#c0, 16#02};
3126dec_huffman_lookup(16#c1, 16#1) -> {more, 16#c0, 16#09};
3127dec_huffman_lookup(16#c1, 16#2) -> {more, 16#c0, 16#17};
3128dec_huffman_lookup(16#c1, 16#3) -> {ok, 16#c0, 16#28};
3129dec_huffman_lookup(16#c1, 16#4) -> {more, 16#c1, 16#02};
3130dec_huffman_lookup(16#c1, 16#5) -> {more, 16#c1, 16#09};
3131dec_huffman_lookup(16#c1, 16#6) -> {more, 16#c1, 16#17};
3132dec_huffman_lookup(16#c1, 16#7) -> {ok, 16#c1, 16#28};
3133dec_huffman_lookup(16#c1, 16#8) -> {more, 16#c8, 16#02};
3134dec_huffman_lookup(16#c1, 16#9) -> {more, 16#c8, 16#09};
3135dec_huffman_lookup(16#c1, 16#a) -> {more, 16#c8, 16#17};
3136dec_huffman_lookup(16#c1, 16#b) -> {ok, 16#c8, 16#28};
3137dec_huffman_lookup(16#c1, 16#c) -> {more, 16#c9, 16#02};
3138dec_huffman_lookup(16#c1, 16#d) -> {more, 16#c9, 16#09};
3139dec_huffman_lookup(16#c1, 16#e) -> {more, 16#c9, 16#17};
3140dec_huffman_lookup(16#c1, 16#f) -> {ok, 16#c9, 16#28};
3141dec_huffman_lookup(16#c2, 16#0) -> {more, 16#c0, 16#03};
3142dec_huffman_lookup(16#c2, 16#1) -> {more, 16#c0, 16#06};
3143dec_huffman_lookup(16#c2, 16#2) -> {more, 16#c0, 16#0a};
3144dec_huffman_lookup(16#c2, 16#3) -> {more, 16#c0, 16#0f};
3145dec_huffman_lookup(16#c2, 16#4) -> {more, 16#c0, 16#18};
3146dec_huffman_lookup(16#c2, 16#5) -> {more, 16#c0, 16#1f};
3147dec_huffman_lookup(16#c2, 16#6) -> {more, 16#c0, 16#29};
3148dec_huffman_lookup(16#c2, 16#7) -> {ok, 16#c0, 16#38};
3149dec_huffman_lookup(16#c2, 16#8) -> {more, 16#c1, 16#03};
3150dec_huffman_lookup(16#c2, 16#9) -> {more, 16#c1, 16#06};
3151dec_huffman_lookup(16#c2, 16#a) -> {more, 16#c1, 16#0a};
3152dec_huffman_lookup(16#c2, 16#b) -> {more, 16#c1, 16#0f};
3153dec_huffman_lookup(16#c2, 16#c) -> {more, 16#c1, 16#18};
3154dec_huffman_lookup(16#c2, 16#d) -> {more, 16#c1, 16#1f};
3155dec_huffman_lookup(16#c2, 16#e) -> {more, 16#c1, 16#29};
3156dec_huffman_lookup(16#c2, 16#f) -> {ok, 16#c1, 16#38};
3157dec_huffman_lookup(16#c3, 16#0) -> {more, 16#c8, 16#03};
3158dec_huffman_lookup(16#c3, 16#1) -> {more, 16#c8, 16#06};
3159dec_huffman_lookup(16#c3, 16#2) -> {more, 16#c8, 16#0a};
3160dec_huffman_lookup(16#c3, 16#3) -> {more, 16#c8, 16#0f};
3161dec_huffman_lookup(16#c3, 16#4) -> {more, 16#c8, 16#18};
3162dec_huffman_lookup(16#c3, 16#5) -> {more, 16#c8, 16#1f};
3163dec_huffman_lookup(16#c3, 16#6) -> {more, 16#c8, 16#29};
3164dec_huffman_lookup(16#c3, 16#7) -> {ok, 16#c8, 16#38};
3165dec_huffman_lookup(16#c3, 16#8) -> {more, 16#c9, 16#03};
3166dec_huffman_lookup(16#c3, 16#9) -> {more, 16#c9, 16#06};
3167dec_huffman_lookup(16#c3, 16#a) -> {more, 16#c9, 16#0a};
3168dec_huffman_lookup(16#c3, 16#b) -> {more, 16#c9, 16#0f};
3169dec_huffman_lookup(16#c3, 16#c) -> {more, 16#c9, 16#18};
3170dec_huffman_lookup(16#c3, 16#d) -> {more, 16#c9, 16#1f};
3171dec_huffman_lookup(16#c3, 16#e) -> {more, 16#c9, 16#29};
3172dec_huffman_lookup(16#c3, 16#f) -> {ok, 16#c9, 16#38};
3173dec_huffman_lookup(16#c4, 16#0) -> {more, 16#ca, 16#02};
3174dec_huffman_lookup(16#c4, 16#1) -> {more, 16#ca, 16#09};
3175dec_huffman_lookup(16#c4, 16#2) -> {more, 16#ca, 16#17};
3176dec_huffman_lookup(16#c4, 16#3) -> {ok, 16#ca, 16#28};
3177dec_huffman_lookup(16#c4, 16#4) -> {more, 16#cd, 16#02};
3178dec_huffman_lookup(16#c4, 16#5) -> {more, 16#cd, 16#09};
3179dec_huffman_lookup(16#c4, 16#6) -> {more, 16#cd, 16#17};
3180dec_huffman_lookup(16#c4, 16#7) -> {ok, 16#cd, 16#28};
3181dec_huffman_lookup(16#c4, 16#8) -> {more, 16#d2, 16#02};
3182dec_huffman_lookup(16#c4, 16#9) -> {more, 16#d2, 16#09};
3183dec_huffman_lookup(16#c4, 16#a) -> {more, 16#d2, 16#17};
3184dec_huffman_lookup(16#c4, 16#b) -> {ok, 16#d2, 16#28};
3185dec_huffman_lookup(16#c4, 16#c) -> {more, 16#d5, 16#02};
3186dec_huffman_lookup(16#c4, 16#d) -> {more, 16#d5, 16#09};
3187dec_huffman_lookup(16#c4, 16#e) -> {more, 16#d5, 16#17};
3188dec_huffman_lookup(16#c4, 16#f) -> {ok, 16#d5, 16#28};
3189dec_huffman_lookup(16#c5, 16#0) -> {more, 16#ca, 16#03};
3190dec_huffman_lookup(16#c5, 16#1) -> {more, 16#ca, 16#06};
3191dec_huffman_lookup(16#c5, 16#2) -> {more, 16#ca, 16#0a};
3192dec_huffman_lookup(16#c5, 16#3) -> {more, 16#ca, 16#0f};
3193dec_huffman_lookup(16#c5, 16#4) -> {more, 16#ca, 16#18};
3194dec_huffman_lookup(16#c5, 16#5) -> {more, 16#ca, 16#1f};
3195dec_huffman_lookup(16#c5, 16#6) -> {more, 16#ca, 16#29};
3196dec_huffman_lookup(16#c5, 16#7) -> {ok, 16#ca, 16#38};
3197dec_huffman_lookup(16#c5, 16#8) -> {more, 16#cd, 16#03};
3198dec_huffman_lookup(16#c5, 16#9) -> {more, 16#cd, 16#06};
3199dec_huffman_lookup(16#c5, 16#a) -> {more, 16#cd, 16#0a};
3200dec_huffman_lookup(16#c5, 16#b) -> {more, 16#cd, 16#0f};
3201dec_huffman_lookup(16#c5, 16#c) -> {more, 16#cd, 16#18};
3202dec_huffman_lookup(16#c5, 16#d) -> {more, 16#cd, 16#1f};
3203dec_huffman_lookup(16#c5, 16#e) -> {more, 16#cd, 16#29};
3204dec_huffman_lookup(16#c5, 16#f) -> {ok, 16#cd, 16#38};
3205dec_huffman_lookup(16#c6, 16#0) -> {more, 16#d2, 16#03};
3206dec_huffman_lookup(16#c6, 16#1) -> {more, 16#d2, 16#06};
3207dec_huffman_lookup(16#c6, 16#2) -> {more, 16#d2, 16#0a};
3208dec_huffman_lookup(16#c6, 16#3) -> {more, 16#d2, 16#0f};
3209dec_huffman_lookup(16#c6, 16#4) -> {more, 16#d2, 16#18};
3210dec_huffman_lookup(16#c6, 16#5) -> {more, 16#d2, 16#1f};
3211dec_huffman_lookup(16#c6, 16#6) -> {more, 16#d2, 16#29};
3212dec_huffman_lookup(16#c6, 16#7) -> {ok, 16#d2, 16#38};
3213dec_huffman_lookup(16#c6, 16#8) -> {more, 16#d5, 16#03};
3214dec_huffman_lookup(16#c6, 16#9) -> {more, 16#d5, 16#06};
3215dec_huffman_lookup(16#c6, 16#a) -> {more, 16#d5, 16#0a};
3216dec_huffman_lookup(16#c6, 16#b) -> {more, 16#d5, 16#0f};
3217dec_huffman_lookup(16#c6, 16#c) -> {more, 16#d5, 16#18};
3218dec_huffman_lookup(16#c6, 16#d) -> {more, 16#d5, 16#1f};
3219dec_huffman_lookup(16#c6, 16#e) -> {more, 16#d5, 16#29};
3220dec_huffman_lookup(16#c6, 16#f) -> {ok, 16#d5, 16#38};
3221dec_huffman_lookup(16#c7, 16#0) -> {more, 16#da, 16#01};
3222dec_huffman_lookup(16#c7, 16#1) -> {ok, 16#da, 16#16};
3223dec_huffman_lookup(16#c7, 16#2) -> {more, 16#db, 16#01};
3224dec_huffman_lookup(16#c7, 16#3) -> {ok, 16#db, 16#16};
3225dec_huffman_lookup(16#c7, 16#4) -> {more, 16#ee, 16#01};
3226dec_huffman_lookup(16#c7, 16#5) -> {ok, 16#ee, 16#16};
3227dec_huffman_lookup(16#c7, 16#6) -> {more, 16#f0, 16#01};
3228dec_huffman_lookup(16#c7, 16#7) -> {ok, 16#f0, 16#16};
3229dec_huffman_lookup(16#c7, 16#8) -> {more, 16#f2, 16#01};
3230dec_huffman_lookup(16#c7, 16#9) -> {ok, 16#f2, 16#16};
3231dec_huffman_lookup(16#c7, 16#a) -> {more, 16#f3, 16#01};
3232dec_huffman_lookup(16#c7, 16#b) -> {ok, 16#f3, 16#16};
3233dec_huffman_lookup(16#c7, 16#c) -> {more, 16#ff, 16#01};
3234dec_huffman_lookup(16#c7, 16#d) -> {ok, 16#ff, 16#16};
3235dec_huffman_lookup(16#c7, 16#e) -> {ok, 16#cb, 16#00};
3236dec_huffman_lookup(16#c7, 16#f) -> {ok, 16#cc, 16#00};
3237dec_huffman_lookup(16#c8, 16#0) -> {more, 16#da, 16#02};
3238dec_huffman_lookup(16#c8, 16#1) -> {more, 16#da, 16#09};
3239dec_huffman_lookup(16#c8, 16#2) -> {more, 16#da, 16#17};
3240dec_huffman_lookup(16#c8, 16#3) -> {ok, 16#da, 16#28};
3241dec_huffman_lookup(16#c8, 16#4) -> {more, 16#db, 16#02};
3242dec_huffman_lookup(16#c8, 16#5) -> {more, 16#db, 16#09};
3243dec_huffman_lookup(16#c8, 16#6) -> {more, 16#db, 16#17};
3244dec_huffman_lookup(16#c8, 16#7) -> {ok, 16#db, 16#28};
3245dec_huffman_lookup(16#c8, 16#8) -> {more, 16#ee, 16#02};
3246dec_huffman_lookup(16#c8, 16#9) -> {more, 16#ee, 16#09};
3247dec_huffman_lookup(16#c8, 16#a) -> {more, 16#ee, 16#17};
3248dec_huffman_lookup(16#c8, 16#b) -> {ok, 16#ee, 16#28};
3249dec_huffman_lookup(16#c8, 16#c) -> {more, 16#f0, 16#02};
3250dec_huffman_lookup(16#c8, 16#d) -> {more, 16#f0, 16#09};
3251dec_huffman_lookup(16#c8, 16#e) -> {more, 16#f0, 16#17};
3252dec_huffman_lookup(16#c8, 16#f) -> {ok, 16#f0, 16#28};
3253dec_huffman_lookup(16#c9, 16#0) -> {more, 16#da, 16#03};
3254dec_huffman_lookup(16#c9, 16#1) -> {more, 16#da, 16#06};
3255dec_huffman_lookup(16#c9, 16#2) -> {more, 16#da, 16#0a};
3256dec_huffman_lookup(16#c9, 16#3) -> {more, 16#da, 16#0f};
3257dec_huffman_lookup(16#c9, 16#4) -> {more, 16#da, 16#18};
3258dec_huffman_lookup(16#c9, 16#5) -> {more, 16#da, 16#1f};
3259dec_huffman_lookup(16#c9, 16#6) -> {more, 16#da, 16#29};
3260dec_huffman_lookup(16#c9, 16#7) -> {ok, 16#da, 16#38};
3261dec_huffman_lookup(16#c9, 16#8) -> {more, 16#db, 16#03};
3262dec_huffman_lookup(16#c9, 16#9) -> {more, 16#db, 16#06};
3263dec_huffman_lookup(16#c9, 16#a) -> {more, 16#db, 16#0a};
3264dec_huffman_lookup(16#c9, 16#b) -> {more, 16#db, 16#0f};
3265dec_huffman_lookup(16#c9, 16#c) -> {more, 16#db, 16#18};
3266dec_huffman_lookup(16#c9, 16#d) -> {more, 16#db, 16#1f};
3267dec_huffman_lookup(16#c9, 16#e) -> {more, 16#db, 16#29};
3268dec_huffman_lookup(16#c9, 16#f) -> {ok, 16#db, 16#38};
3269dec_huffman_lookup(16#ca, 16#0) -> {more, 16#ee, 16#03};
3270dec_huffman_lookup(16#ca, 16#1) -> {more, 16#ee, 16#06};
3271dec_huffman_lookup(16#ca, 16#2) -> {more, 16#ee, 16#0a};
3272dec_huffman_lookup(16#ca, 16#3) -> {more, 16#ee, 16#0f};
3273dec_huffman_lookup(16#ca, 16#4) -> {more, 16#ee, 16#18};
3274dec_huffman_lookup(16#ca, 16#5) -> {more, 16#ee, 16#1f};
3275dec_huffman_lookup(16#ca, 16#6) -> {more, 16#ee, 16#29};
3276dec_huffman_lookup(16#ca, 16#7) -> {ok, 16#ee, 16#38};
3277dec_huffman_lookup(16#ca, 16#8) -> {more, 16#f0, 16#03};
3278dec_huffman_lookup(16#ca, 16#9) -> {more, 16#f0, 16#06};
3279dec_huffman_lookup(16#ca, 16#a) -> {more, 16#f0, 16#0a};
3280dec_huffman_lookup(16#ca, 16#b) -> {more, 16#f0, 16#0f};
3281dec_huffman_lookup(16#ca, 16#c) -> {more, 16#f0, 16#18};
3282dec_huffman_lookup(16#ca, 16#d) -> {more, 16#f0, 16#1f};
3283dec_huffman_lookup(16#ca, 16#e) -> {more, 16#f0, 16#29};
3284dec_huffman_lookup(16#ca, 16#f) -> {ok, 16#f0, 16#38};
3285dec_huffman_lookup(16#cb, 16#0) -> {more, 16#f2, 16#02};
3286dec_huffman_lookup(16#cb, 16#1) -> {more, 16#f2, 16#09};
3287dec_huffman_lookup(16#cb, 16#2) -> {more, 16#f2, 16#17};
3288dec_huffman_lookup(16#cb, 16#3) -> {ok, 16#f2, 16#28};
3289dec_huffman_lookup(16#cb, 16#4) -> {more, 16#f3, 16#02};
3290dec_huffman_lookup(16#cb, 16#5) -> {more, 16#f3, 16#09};
3291dec_huffman_lookup(16#cb, 16#6) -> {more, 16#f3, 16#17};
3292dec_huffman_lookup(16#cb, 16#7) -> {ok, 16#f3, 16#28};
3293dec_huffman_lookup(16#cb, 16#8) -> {more, 16#ff, 16#02};
3294dec_huffman_lookup(16#cb, 16#9) -> {more, 16#ff, 16#09};
3295dec_huffman_lookup(16#cb, 16#a) -> {more, 16#ff, 16#17};
3296dec_huffman_lookup(16#cb, 16#b) -> {ok, 16#ff, 16#28};
3297dec_huffman_lookup(16#cb, 16#c) -> {more, 16#cb, 16#01};
3298dec_huffman_lookup(16#cb, 16#d) -> {ok, 16#cb, 16#16};
3299dec_huffman_lookup(16#cb, 16#e) -> {more, 16#cc, 16#01};
3300dec_huffman_lookup(16#cb, 16#f) -> {ok, 16#cc, 16#16};
3301dec_huffman_lookup(16#cc, 16#0) -> {more, 16#f2, 16#03};
3302dec_huffman_lookup(16#cc, 16#1) -> {more, 16#f2, 16#06};
3303dec_huffman_lookup(16#cc, 16#2) -> {more, 16#f2, 16#0a};
3304dec_huffman_lookup(16#cc, 16#3) -> {more, 16#f2, 16#0f};
3305dec_huffman_lookup(16#cc, 16#4) -> {more, 16#f2, 16#18};
3306dec_huffman_lookup(16#cc, 16#5) -> {more, 16#f2, 16#1f};
3307dec_huffman_lookup(16#cc, 16#6) -> {more, 16#f2, 16#29};
3308dec_huffman_lookup(16#cc, 16#7) -> {ok, 16#f2, 16#38};
3309dec_huffman_lookup(16#cc, 16#8) -> {more, 16#f3, 16#03};
3310dec_huffman_lookup(16#cc, 16#9) -> {more, 16#f3, 16#06};
3311dec_huffman_lookup(16#cc, 16#a) -> {more, 16#f3, 16#0a};
3312dec_huffman_lookup(16#cc, 16#b) -> {more, 16#f3, 16#0f};
3313dec_huffman_lookup(16#cc, 16#c) -> {more, 16#f3, 16#18};
3314dec_huffman_lookup(16#cc, 16#d) -> {more, 16#f3, 16#1f};
3315dec_huffman_lookup(16#cc, 16#e) -> {more, 16#f3, 16#29};
3316dec_huffman_lookup(16#cc, 16#f) -> {ok, 16#f3, 16#38};
3317dec_huffman_lookup(16#cd, 16#0) -> {more, 16#ff, 16#03};
3318dec_huffman_lookup(16#cd, 16#1) -> {more, 16#ff, 16#06};
3319dec_huffman_lookup(16#cd, 16#2) -> {more, 16#ff, 16#0a};
3320dec_huffman_lookup(16#cd, 16#3) -> {more, 16#ff, 16#0f};
3321dec_huffman_lookup(16#cd, 16#4) -> {more, 16#ff, 16#18};
3322dec_huffman_lookup(16#cd, 16#5) -> {more, 16#ff, 16#1f};
3323dec_huffman_lookup(16#cd, 16#6) -> {more, 16#ff, 16#29};
3324dec_huffman_lookup(16#cd, 16#7) -> {ok, 16#ff, 16#38};
3325dec_huffman_lookup(16#cd, 16#8) -> {more, 16#cb, 16#02};
3326dec_huffman_lookup(16#cd, 16#9) -> {more, 16#cb, 16#09};
3327dec_huffman_lookup(16#cd, 16#a) -> {more, 16#cb, 16#17};
3328dec_huffman_lookup(16#cd, 16#b) -> {ok, 16#cb, 16#28};
3329dec_huffman_lookup(16#cd, 16#c) -> {more, 16#cc, 16#02};
3330dec_huffman_lookup(16#cd, 16#d) -> {more, 16#cc, 16#09};
3331dec_huffman_lookup(16#cd, 16#e) -> {more, 16#cc, 16#17};
3332dec_huffman_lookup(16#cd, 16#f) -> {ok, 16#cc, 16#28};
3333dec_huffman_lookup(16#ce, 16#0) -> {more, 16#cb, 16#03};
3334dec_huffman_lookup(16#ce, 16#1) -> {more, 16#cb, 16#06};
3335dec_huffman_lookup(16#ce, 16#2) -> {more, 16#cb, 16#0a};
3336dec_huffman_lookup(16#ce, 16#3) -> {more, 16#cb, 16#0f};
3337dec_huffman_lookup(16#ce, 16#4) -> {more, 16#cb, 16#18};
3338dec_huffman_lookup(16#ce, 16#5) -> {more, 16#cb, 16#1f};
3339dec_huffman_lookup(16#ce, 16#6) -> {more, 16#cb, 16#29};
3340dec_huffman_lookup(16#ce, 16#7) -> {ok, 16#cb, 16#38};
3341dec_huffman_lookup(16#ce, 16#8) -> {more, 16#cc, 16#03};
3342dec_huffman_lookup(16#ce, 16#9) -> {more, 16#cc, 16#06};
3343dec_huffman_lookup(16#ce, 16#a) -> {more, 16#cc, 16#0a};
3344dec_huffman_lookup(16#ce, 16#b) -> {more, 16#cc, 16#0f};
3345dec_huffman_lookup(16#ce, 16#c) -> {more, 16#cc, 16#18};
3346dec_huffman_lookup(16#ce, 16#d) -> {more, 16#cc, 16#1f};
3347dec_huffman_lookup(16#ce, 16#e) -> {more, 16#cc, 16#29};
3348dec_huffman_lookup(16#ce, 16#f) -> {ok, 16#cc, 16#38};
3349dec_huffman_lookup(16#cf, 16#0) -> {more, undefined, 16#d3};
3350dec_huffman_lookup(16#cf, 16#1) -> {more, undefined, 16#d4};
3351dec_huffman_lookup(16#cf, 16#2) -> {more, undefined, 16#d6};
3352dec_huffman_lookup(16#cf, 16#3) -> {more, undefined, 16#d7};
3353dec_huffman_lookup(16#cf, 16#4) -> {more, undefined, 16#da};
3354dec_huffman_lookup(16#cf, 16#5) -> {more, undefined, 16#db};
3355dec_huffman_lookup(16#cf, 16#6) -> {more, undefined, 16#dd};
3356dec_huffman_lookup(16#cf, 16#7) -> {more, undefined, 16#de};
3357dec_huffman_lookup(16#cf, 16#8) -> {more, undefined, 16#e2};
3358dec_huffman_lookup(16#cf, 16#9) -> {more, undefined, 16#e4};
3359dec_huffman_lookup(16#cf, 16#a) -> {more, undefined, 16#e8};
3360dec_huffman_lookup(16#cf, 16#b) -> {more, undefined, 16#eb};
3361dec_huffman_lookup(16#cf, 16#c) -> {more, undefined, 16#f0};
3362dec_huffman_lookup(16#cf, 16#d) -> {more, undefined, 16#f3};
3363dec_huffman_lookup(16#cf, 16#e) -> {more, undefined, 16#f7};
3364dec_huffman_lookup(16#cf, 16#f) -> {ok, undefined, 16#fa};
3365dec_huffman_lookup(16#d0, 16#0) -> {ok, 16#d3, 16#00};
3366dec_huffman_lookup(16#d0, 16#1) -> {ok, 16#d4, 16#00};
3367dec_huffman_lookup(16#d0, 16#2) -> {ok, 16#d6, 16#00};
3368dec_huffman_lookup(16#d0, 16#3) -> {ok, 16#dd, 16#00};
3369dec_huffman_lookup(16#d0, 16#4) -> {ok, 16#de, 16#00};
3370dec_huffman_lookup(16#d0, 16#5) -> {ok, 16#df, 16#00};
3371dec_huffman_lookup(16#d0, 16#6) -> {ok, 16#f1, 16#00};
3372dec_huffman_lookup(16#d0, 16#7) -> {ok, 16#f4, 16#00};
3373dec_huffman_lookup(16#d0, 16#8) -> {ok, 16#f5, 16#00};
3374dec_huffman_lookup(16#d0, 16#9) -> {ok, 16#f6, 16#00};
3375dec_huffman_lookup(16#d0, 16#a) -> {ok, 16#f7, 16#00};
3376dec_huffman_lookup(16#d0, 16#b) -> {ok, 16#f8, 16#00};
3377dec_huffman_lookup(16#d0, 16#c) -> {ok, 16#fa, 16#00};
3378dec_huffman_lookup(16#d0, 16#d) -> {ok, 16#fb, 16#00};
3379dec_huffman_lookup(16#d0, 16#e) -> {ok, 16#fc, 16#00};
3380dec_huffman_lookup(16#d0, 16#f) -> {ok, 16#fd, 16#00};
3381dec_huffman_lookup(16#d1, 16#0) -> {more, 16#d3, 16#01};
3382dec_huffman_lookup(16#d1, 16#1) -> {ok, 16#d3, 16#16};
3383dec_huffman_lookup(16#d1, 16#2) -> {more, 16#d4, 16#01};
3384dec_huffman_lookup(16#d1, 16#3) -> {ok, 16#d4, 16#16};
3385dec_huffman_lookup(16#d1, 16#4) -> {more, 16#d6, 16#01};
3386dec_huffman_lookup(16#d1, 16#5) -> {ok, 16#d6, 16#16};
3387dec_huffman_lookup(16#d1, 16#6) -> {more, 16#dd, 16#01};
3388dec_huffman_lookup(16#d1, 16#7) -> {ok, 16#dd, 16#16};
3389dec_huffman_lookup(16#d1, 16#8) -> {more, 16#de, 16#01};
3390dec_huffman_lookup(16#d1, 16#9) -> {ok, 16#de, 16#16};
3391dec_huffman_lookup(16#d1, 16#a) -> {more, 16#df, 16#01};
3392dec_huffman_lookup(16#d1, 16#b) -> {ok, 16#df, 16#16};
3393dec_huffman_lookup(16#d1, 16#c) -> {more, 16#f1, 16#01};
3394dec_huffman_lookup(16#d1, 16#d) -> {ok, 16#f1, 16#16};
3395dec_huffman_lookup(16#d1, 16#e) -> {more, 16#f4, 16#01};
3396dec_huffman_lookup(16#d1, 16#f) -> {ok, 16#f4, 16#16};
3397dec_huffman_lookup(16#d2, 16#0) -> {more, 16#d3, 16#02};
3398dec_huffman_lookup(16#d2, 16#1) -> {more, 16#d3, 16#09};
3399dec_huffman_lookup(16#d2, 16#2) -> {more, 16#d3, 16#17};
3400dec_huffman_lookup(16#d2, 16#3) -> {ok, 16#d3, 16#28};
3401dec_huffman_lookup(16#d2, 16#4) -> {more, 16#d4, 16#02};
3402dec_huffman_lookup(16#d2, 16#5) -> {more, 16#d4, 16#09};
3403dec_huffman_lookup(16#d2, 16#6) -> {more, 16#d4, 16#17};
3404dec_huffman_lookup(16#d2, 16#7) -> {ok, 16#d4, 16#28};
3405dec_huffman_lookup(16#d2, 16#8) -> {more, 16#d6, 16#02};
3406dec_huffman_lookup(16#d2, 16#9) -> {more, 16#d6, 16#09};
3407dec_huffman_lookup(16#d2, 16#a) -> {more, 16#d6, 16#17};
3408dec_huffman_lookup(16#d2, 16#b) -> {ok, 16#d6, 16#28};
3409dec_huffman_lookup(16#d2, 16#c) -> {more, 16#dd, 16#02};
3410dec_huffman_lookup(16#d2, 16#d) -> {more, 16#dd, 16#09};
3411dec_huffman_lookup(16#d2, 16#e) -> {more, 16#dd, 16#17};
3412dec_huffman_lookup(16#d2, 16#f) -> {ok, 16#dd, 16#28};
3413dec_huffman_lookup(16#d3, 16#0) -> {more, 16#d3, 16#03};
3414dec_huffman_lookup(16#d3, 16#1) -> {more, 16#d3, 16#06};
3415dec_huffman_lookup(16#d3, 16#2) -> {more, 16#d3, 16#0a};
3416dec_huffman_lookup(16#d3, 16#3) -> {more, 16#d3, 16#0f};
3417dec_huffman_lookup(16#d3, 16#4) -> {more, 16#d3, 16#18};
3418dec_huffman_lookup(16#d3, 16#5) -> {more, 16#d3, 16#1f};
3419dec_huffman_lookup(16#d3, 16#6) -> {more, 16#d3, 16#29};
3420dec_huffman_lookup(16#d3, 16#7) -> {ok, 16#d3, 16#38};
3421dec_huffman_lookup(16#d3, 16#8) -> {more, 16#d4, 16#03};
3422dec_huffman_lookup(16#d3, 16#9) -> {more, 16#d4, 16#06};
3423dec_huffman_lookup(16#d3, 16#a) -> {more, 16#d4, 16#0a};
3424dec_huffman_lookup(16#d3, 16#b) -> {more, 16#d4, 16#0f};
3425dec_huffman_lookup(16#d3, 16#c) -> {more, 16#d4, 16#18};
3426dec_huffman_lookup(16#d3, 16#d) -> {more, 16#d4, 16#1f};
3427dec_huffman_lookup(16#d3, 16#e) -> {more, 16#d4, 16#29};
3428dec_huffman_lookup(16#d3, 16#f) -> {ok, 16#d4, 16#38};
3429dec_huffman_lookup(16#d4, 16#0) -> {more, 16#d6, 16#03};
3430dec_huffman_lookup(16#d4, 16#1) -> {more, 16#d6, 16#06};
3431dec_huffman_lookup(16#d4, 16#2) -> {more, 16#d6, 16#0a};
3432dec_huffman_lookup(16#d4, 16#3) -> {more, 16#d6, 16#0f};
3433dec_huffman_lookup(16#d4, 16#4) -> {more, 16#d6, 16#18};
3434dec_huffman_lookup(16#d4, 16#5) -> {more, 16#d6, 16#1f};
3435dec_huffman_lookup(16#d4, 16#6) -> {more, 16#d6, 16#29};
3436dec_huffman_lookup(16#d4, 16#7) -> {ok, 16#d6, 16#38};
3437dec_huffman_lookup(16#d4, 16#8) -> {more, 16#dd, 16#03};
3438dec_huffman_lookup(16#d4, 16#9) -> {more, 16#dd, 16#06};
3439dec_huffman_lookup(16#d4, 16#a) -> {more, 16#dd, 16#0a};
3440dec_huffman_lookup(16#d4, 16#b) -> {more, 16#dd, 16#0f};
3441dec_huffman_lookup(16#d4, 16#c) -> {more, 16#dd, 16#18};
3442dec_huffman_lookup(16#d4, 16#d) -> {more, 16#dd, 16#1f};
3443dec_huffman_lookup(16#d4, 16#e) -> {more, 16#dd, 16#29};
3444dec_huffman_lookup(16#d4, 16#f) -> {ok, 16#dd, 16#38};
3445dec_huffman_lookup(16#d5, 16#0) -> {more, 16#de, 16#02};
3446dec_huffman_lookup(16#d5, 16#1) -> {more, 16#de, 16#09};
3447dec_huffman_lookup(16#d5, 16#2) -> {more, 16#de, 16#17};
3448dec_huffman_lookup(16#d5, 16#3) -> {ok, 16#de, 16#28};
3449dec_huffman_lookup(16#d5, 16#4) -> {more, 16#df, 16#02};
3450dec_huffman_lookup(16#d5, 16#5) -> {more, 16#df, 16#09};
3451dec_huffman_lookup(16#d5, 16#6) -> {more, 16#df, 16#17};
3452dec_huffman_lookup(16#d5, 16#7) -> {ok, 16#df, 16#28};
3453dec_huffman_lookup(16#d5, 16#8) -> {more, 16#f1, 16#02};
3454dec_huffman_lookup(16#d5, 16#9) -> {more, 16#f1, 16#09};
3455dec_huffman_lookup(16#d5, 16#a) -> {more, 16#f1, 16#17};
3456dec_huffman_lookup(16#d5, 16#b) -> {ok, 16#f1, 16#28};
3457dec_huffman_lookup(16#d5, 16#c) -> {more, 16#f4, 16#02};
3458dec_huffman_lookup(16#d5, 16#d) -> {more, 16#f4, 16#09};
3459dec_huffman_lookup(16#d5, 16#e) -> {more, 16#f4, 16#17};
3460dec_huffman_lookup(16#d5, 16#f) -> {ok, 16#f4, 16#28};
3461dec_huffman_lookup(16#d6, 16#0) -> {more, 16#de, 16#03};
3462dec_huffman_lookup(16#d6, 16#1) -> {more, 16#de, 16#06};
3463dec_huffman_lookup(16#d6, 16#2) -> {more, 16#de, 16#0a};
3464dec_huffman_lookup(16#d6, 16#3) -> {more, 16#de, 16#0f};
3465dec_huffman_lookup(16#d6, 16#4) -> {more, 16#de, 16#18};
3466dec_huffman_lookup(16#d6, 16#5) -> {more, 16#de, 16#1f};
3467dec_huffman_lookup(16#d6, 16#6) -> {more, 16#de, 16#29};
3468dec_huffman_lookup(16#d6, 16#7) -> {ok, 16#de, 16#38};
3469dec_huffman_lookup(16#d6, 16#8) -> {more, 16#df, 16#03};
3470dec_huffman_lookup(16#d6, 16#9) -> {more, 16#df, 16#06};
3471dec_huffman_lookup(16#d6, 16#a) -> {more, 16#df, 16#0a};
3472dec_huffman_lookup(16#d6, 16#b) -> {more, 16#df, 16#0f};
3473dec_huffman_lookup(16#d6, 16#c) -> {more, 16#df, 16#18};
3474dec_huffman_lookup(16#d6, 16#d) -> {more, 16#df, 16#1f};
3475dec_huffman_lookup(16#d6, 16#e) -> {more, 16#df, 16#29};
3476dec_huffman_lookup(16#d6, 16#f) -> {ok, 16#df, 16#38};
3477dec_huffman_lookup(16#d7, 16#0) -> {more, 16#f1, 16#03};
3478dec_huffman_lookup(16#d7, 16#1) -> {more, 16#f1, 16#06};
3479dec_huffman_lookup(16#d7, 16#2) -> {more, 16#f1, 16#0a};
3480dec_huffman_lookup(16#d7, 16#3) -> {more, 16#f1, 16#0f};
3481dec_huffman_lookup(16#d7, 16#4) -> {more, 16#f1, 16#18};
3482dec_huffman_lookup(16#d7, 16#5) -> {more, 16#f1, 16#1f};
3483dec_huffman_lookup(16#d7, 16#6) -> {more, 16#f1, 16#29};
3484dec_huffman_lookup(16#d7, 16#7) -> {ok, 16#f1, 16#38};
3485dec_huffman_lookup(16#d7, 16#8) -> {more, 16#f4, 16#03};
3486dec_huffman_lookup(16#d7, 16#9) -> {more, 16#f4, 16#06};
3487dec_huffman_lookup(16#d7, 16#a) -> {more, 16#f4, 16#0a};
3488dec_huffman_lookup(16#d7, 16#b) -> {more, 16#f4, 16#0f};
3489dec_huffman_lookup(16#d7, 16#c) -> {more, 16#f4, 16#18};
3490dec_huffman_lookup(16#d7, 16#d) -> {more, 16#f4, 16#1f};
3491dec_huffman_lookup(16#d7, 16#e) -> {more, 16#f4, 16#29};
3492dec_huffman_lookup(16#d7, 16#f) -> {ok, 16#f4, 16#38};
3493dec_huffman_lookup(16#d8, 16#0) -> {more, 16#f5, 16#01};
3494dec_huffman_lookup(16#d8, 16#1) -> {ok, 16#f5, 16#16};
3495dec_huffman_lookup(16#d8, 16#2) -> {more, 16#f6, 16#01};
3496dec_huffman_lookup(16#d8, 16#3) -> {ok, 16#f6, 16#16};
3497dec_huffman_lookup(16#d8, 16#4) -> {more, 16#f7, 16#01};
3498dec_huffman_lookup(16#d8, 16#5) -> {ok, 16#f7, 16#16};
3499dec_huffman_lookup(16#d8, 16#6) -> {more, 16#f8, 16#01};
3500dec_huffman_lookup(16#d8, 16#7) -> {ok, 16#f8, 16#16};
3501dec_huffman_lookup(16#d8, 16#8) -> {more, 16#fa, 16#01};
3502dec_huffman_lookup(16#d8, 16#9) -> {ok, 16#fa, 16#16};
3503dec_huffman_lookup(16#d8, 16#a) -> {more, 16#fb, 16#01};
3504dec_huffman_lookup(16#d8, 16#b) -> {ok, 16#fb, 16#16};
3505dec_huffman_lookup(16#d8, 16#c) -> {more, 16#fc, 16#01};
3506dec_huffman_lookup(16#d8, 16#d) -> {ok, 16#fc, 16#16};
3507dec_huffman_lookup(16#d8, 16#e) -> {more, 16#fd, 16#01};
3508dec_huffman_lookup(16#d8, 16#f) -> {ok, 16#fd, 16#16};
3509dec_huffman_lookup(16#d9, 16#0) -> {more, 16#f5, 16#02};
3510dec_huffman_lookup(16#d9, 16#1) -> {more, 16#f5, 16#09};
3511dec_huffman_lookup(16#d9, 16#2) -> {more, 16#f5, 16#17};
3512dec_huffman_lookup(16#d9, 16#3) -> {ok, 16#f5, 16#28};
3513dec_huffman_lookup(16#d9, 16#4) -> {more, 16#f6, 16#02};
3514dec_huffman_lookup(16#d9, 16#5) -> {more, 16#f6, 16#09};
3515dec_huffman_lookup(16#d9, 16#6) -> {more, 16#f6, 16#17};
3516dec_huffman_lookup(16#d9, 16#7) -> {ok, 16#f6, 16#28};
3517dec_huffman_lookup(16#d9, 16#8) -> {more, 16#f7, 16#02};
3518dec_huffman_lookup(16#d9, 16#9) -> {more, 16#f7, 16#09};
3519dec_huffman_lookup(16#d9, 16#a) -> {more, 16#f7, 16#17};
3520dec_huffman_lookup(16#d9, 16#b) -> {ok, 16#f7, 16#28};
3521dec_huffman_lookup(16#d9, 16#c) -> {more, 16#f8, 16#02};
3522dec_huffman_lookup(16#d9, 16#d) -> {more, 16#f8, 16#09};
3523dec_huffman_lookup(16#d9, 16#e) -> {more, 16#f8, 16#17};
3524dec_huffman_lookup(16#d9, 16#f) -> {ok, 16#f8, 16#28};
3525dec_huffman_lookup(16#da, 16#0) -> {more, 16#f5, 16#03};
3526dec_huffman_lookup(16#da, 16#1) -> {more, 16#f5, 16#06};
3527dec_huffman_lookup(16#da, 16#2) -> {more, 16#f5, 16#0a};
3528dec_huffman_lookup(16#da, 16#3) -> {more, 16#f5, 16#0f};
3529dec_huffman_lookup(16#da, 16#4) -> {more, 16#f5, 16#18};
3530dec_huffman_lookup(16#da, 16#5) -> {more, 16#f5, 16#1f};
3531dec_huffman_lookup(16#da, 16#6) -> {more, 16#f5, 16#29};
3532dec_huffman_lookup(16#da, 16#7) -> {ok, 16#f5, 16#38};
3533dec_huffman_lookup(16#da, 16#8) -> {more, 16#f6, 16#03};
3534dec_huffman_lookup(16#da, 16#9) -> {more, 16#f6, 16#06};
3535dec_huffman_lookup(16#da, 16#a) -> {more, 16#f6, 16#0a};
3536dec_huffman_lookup(16#da, 16#b) -> {more, 16#f6, 16#0f};
3537dec_huffman_lookup(16#da, 16#c) -> {more, 16#f6, 16#18};
3538dec_huffman_lookup(16#da, 16#d) -> {more, 16#f6, 16#1f};
3539dec_huffman_lookup(16#da, 16#e) -> {more, 16#f6, 16#29};
3540dec_huffman_lookup(16#da, 16#f) -> {ok, 16#f6, 16#38};
3541dec_huffman_lookup(16#db, 16#0) -> {more, 16#f7, 16#03};
3542dec_huffman_lookup(16#db, 16#1) -> {more, 16#f7, 16#06};
3543dec_huffman_lookup(16#db, 16#2) -> {more, 16#f7, 16#0a};
3544dec_huffman_lookup(16#db, 16#3) -> {more, 16#f7, 16#0f};
3545dec_huffman_lookup(16#db, 16#4) -> {more, 16#f7, 16#18};
3546dec_huffman_lookup(16#db, 16#5) -> {more, 16#f7, 16#1f};
3547dec_huffman_lookup(16#db, 16#6) -> {more, 16#f7, 16#29};
3548dec_huffman_lookup(16#db, 16#7) -> {ok, 16#f7, 16#38};
3549dec_huffman_lookup(16#db, 16#8) -> {more, 16#f8, 16#03};
3550dec_huffman_lookup(16#db, 16#9) -> {more, 16#f8, 16#06};
3551dec_huffman_lookup(16#db, 16#a) -> {more, 16#f8, 16#0a};
3552dec_huffman_lookup(16#db, 16#b) -> {more, 16#f8, 16#0f};
3553dec_huffman_lookup(16#db, 16#c) -> {more, 16#f8, 16#18};
3554dec_huffman_lookup(16#db, 16#d) -> {more, 16#f8, 16#1f};
3555dec_huffman_lookup(16#db, 16#e) -> {more, 16#f8, 16#29};
3556dec_huffman_lookup(16#db, 16#f) -> {ok, 16#f8, 16#38};
3557dec_huffman_lookup(16#dc, 16#0) -> {more, 16#fa, 16#02};
3558dec_huffman_lookup(16#dc, 16#1) -> {more, 16#fa, 16#09};
3559dec_huffman_lookup(16#dc, 16#2) -> {more, 16#fa, 16#17};
3560dec_huffman_lookup(16#dc, 16#3) -> {ok, 16#fa, 16#28};
3561dec_huffman_lookup(16#dc, 16#4) -> {more, 16#fb, 16#02};
3562dec_huffman_lookup(16#dc, 16#5) -> {more, 16#fb, 16#09};
3563dec_huffman_lookup(16#dc, 16#6) -> {more, 16#fb, 16#17};
3564dec_huffman_lookup(16#dc, 16#7) -> {ok, 16#fb, 16#28};
3565dec_huffman_lookup(16#dc, 16#8) -> {more, 16#fc, 16#02};
3566dec_huffman_lookup(16#dc, 16#9) -> {more, 16#fc, 16#09};
3567dec_huffman_lookup(16#dc, 16#a) -> {more, 16#fc, 16#17};
3568dec_huffman_lookup(16#dc, 16#b) -> {ok, 16#fc, 16#28};
3569dec_huffman_lookup(16#dc, 16#c) -> {more, 16#fd, 16#02};
3570dec_huffman_lookup(16#dc, 16#d) -> {more, 16#fd, 16#09};
3571dec_huffman_lookup(16#dc, 16#e) -> {more, 16#fd, 16#17};
3572dec_huffman_lookup(16#dc, 16#f) -> {ok, 16#fd, 16#28};
3573dec_huffman_lookup(16#dd, 16#0) -> {more, 16#fa, 16#03};
3574dec_huffman_lookup(16#dd, 16#1) -> {more, 16#fa, 16#06};
3575dec_huffman_lookup(16#dd, 16#2) -> {more, 16#fa, 16#0a};
3576dec_huffman_lookup(16#dd, 16#3) -> {more, 16#fa, 16#0f};
3577dec_huffman_lookup(16#dd, 16#4) -> {more, 16#fa, 16#18};
3578dec_huffman_lookup(16#dd, 16#5) -> {more, 16#fa, 16#1f};
3579dec_huffman_lookup(16#dd, 16#6) -> {more, 16#fa, 16#29};
3580dec_huffman_lookup(16#dd, 16#7) -> {ok, 16#fa, 16#38};
3581dec_huffman_lookup(16#dd, 16#8) -> {more, 16#fb, 16#03};
3582dec_huffman_lookup(16#dd, 16#9) -> {more, 16#fb, 16#06};
3583dec_huffman_lookup(16#dd, 16#a) -> {more, 16#fb, 16#0a};
3584dec_huffman_lookup(16#dd, 16#b) -> {more, 16#fb, 16#0f};
3585dec_huffman_lookup(16#dd, 16#c) -> {more, 16#fb, 16#18};
3586dec_huffman_lookup(16#dd, 16#d) -> {more, 16#fb, 16#1f};
3587dec_huffman_lookup(16#dd, 16#e) -> {more, 16#fb, 16#29};
3588dec_huffman_lookup(16#dd, 16#f) -> {ok, 16#fb, 16#38};
3589dec_huffman_lookup(16#de, 16#0) -> {more, 16#fc, 16#03};
3590dec_huffman_lookup(16#de, 16#1) -> {more, 16#fc, 16#06};
3591dec_huffman_lookup(16#de, 16#2) -> {more, 16#fc, 16#0a};
3592dec_huffman_lookup(16#de, 16#3) -> {more, 16#fc, 16#0f};
3593dec_huffman_lookup(16#de, 16#4) -> {more, 16#fc, 16#18};
3594dec_huffman_lookup(16#de, 16#5) -> {more, 16#fc, 16#1f};
3595dec_huffman_lookup(16#de, 16#6) -> {more, 16#fc, 16#29};
3596dec_huffman_lookup(16#de, 16#7) -> {ok, 16#fc, 16#38};
3597dec_huffman_lookup(16#de, 16#8) -> {more, 16#fd, 16#03};
3598dec_huffman_lookup(16#de, 16#9) -> {more, 16#fd, 16#06};
3599dec_huffman_lookup(16#de, 16#a) -> {more, 16#fd, 16#0a};
3600dec_huffman_lookup(16#de, 16#b) -> {more, 16#fd, 16#0f};
3601dec_huffman_lookup(16#de, 16#c) -> {more, 16#fd, 16#18};
3602dec_huffman_lookup(16#de, 16#d) -> {more, 16#fd, 16#1f};
3603dec_huffman_lookup(16#de, 16#e) -> {more, 16#fd, 16#29};
3604dec_huffman_lookup(16#de, 16#f) -> {ok, 16#fd, 16#38};
3605dec_huffman_lookup(16#df, 16#0) -> {ok, 16#fe, 16#00};
3606dec_huffman_lookup(16#df, 16#1) -> {more, undefined, 16#e3};
3607dec_huffman_lookup(16#df, 16#2) -> {more, undefined, 16#e5};
3608dec_huffman_lookup(16#df, 16#3) -> {more, undefined, 16#e6};
3609dec_huffman_lookup(16#df, 16#4) -> {more, undefined, 16#e9};
3610dec_huffman_lookup(16#df, 16#5) -> {more, undefined, 16#ea};
3611dec_huffman_lookup(16#df, 16#6) -> {more, undefined, 16#ec};
3612dec_huffman_lookup(16#df, 16#7) -> {more, undefined, 16#ed};
3613dec_huffman_lookup(16#df, 16#8) -> {more, undefined, 16#f1};
3614dec_huffman_lookup(16#df, 16#9) -> {more, undefined, 16#f2};
3615dec_huffman_lookup(16#df, 16#a) -> {more, undefined, 16#f4};
3616dec_huffman_lookup(16#df, 16#b) -> {more, undefined, 16#f5};
3617dec_huffman_lookup(16#df, 16#c) -> {more, undefined, 16#f8};
3618dec_huffman_lookup(16#df, 16#d) -> {more, undefined, 16#f9};
3619dec_huffman_lookup(16#df, 16#e) -> {more, undefined, 16#fb};
3620dec_huffman_lookup(16#df, 16#f) -> {ok, undefined, 16#fc};
3621dec_huffman_lookup(16#e0, 16#0) -> {more, 16#fe, 16#01};
3622dec_huffman_lookup(16#e0, 16#1) -> {ok, 16#fe, 16#16};
3623dec_huffman_lookup(16#e0, 16#2) -> {ok, 16#02, 16#00};
3624dec_huffman_lookup(16#e0, 16#3) -> {ok, 16#03, 16#00};
3625dec_huffman_lookup(16#e0, 16#4) -> {ok, 16#04, 16#00};
3626dec_huffman_lookup(16#e0, 16#5) -> {ok, 16#05, 16#00};
3627dec_huffman_lookup(16#e0, 16#6) -> {ok, 16#06, 16#00};
3628dec_huffman_lookup(16#e0, 16#7) -> {ok, 16#07, 16#00};
3629dec_huffman_lookup(16#e0, 16#8) -> {ok, 16#08, 16#00};
3630dec_huffman_lookup(16#e0, 16#9) -> {ok, 16#0b, 16#00};
3631dec_huffman_lookup(16#e0, 16#a) -> {ok, 16#0c, 16#00};
3632dec_huffman_lookup(16#e0, 16#b) -> {ok, 16#0e, 16#00};
3633dec_huffman_lookup(16#e0, 16#c) -> {ok, 16#0f, 16#00};
3634dec_huffman_lookup(16#e0, 16#d) -> {ok, 16#10, 16#00};
3635dec_huffman_lookup(16#e0, 16#e) -> {ok, 16#11, 16#00};
3636dec_huffman_lookup(16#e0, 16#f) -> {ok, 16#12, 16#00};
3637dec_huffman_lookup(16#e1, 16#0) -> {more, 16#fe, 16#02};
3638dec_huffman_lookup(16#e1, 16#1) -> {more, 16#fe, 16#09};
3639dec_huffman_lookup(16#e1, 16#2) -> {more, 16#fe, 16#17};
3640dec_huffman_lookup(16#e1, 16#3) -> {ok, 16#fe, 16#28};
3641dec_huffman_lookup(16#e1, 16#4) -> {more, 16#02, 16#01};
3642dec_huffman_lookup(16#e1, 16#5) -> {ok, 16#02, 16#16};
3643dec_huffman_lookup(16#e1, 16#6) -> {more, 16#03, 16#01};
3644dec_huffman_lookup(16#e1, 16#7) -> {ok, 16#03, 16#16};
3645dec_huffman_lookup(16#e1, 16#8) -> {more, 16#04, 16#01};
3646dec_huffman_lookup(16#e1, 16#9) -> {ok, 16#04, 16#16};
3647dec_huffman_lookup(16#e1, 16#a) -> {more, 16#05, 16#01};
3648dec_huffman_lookup(16#e1, 16#b) -> {ok, 16#05, 16#16};
3649dec_huffman_lookup(16#e1, 16#c) -> {more, 16#06, 16#01};
3650dec_huffman_lookup(16#e1, 16#d) -> {ok, 16#06, 16#16};
3651dec_huffman_lookup(16#e1, 16#e) -> {more, 16#07, 16#01};
3652dec_huffman_lookup(16#e1, 16#f) -> {ok, 16#07, 16#16};
3653dec_huffman_lookup(16#e2, 16#0) -> {more, 16#fe, 16#03};
3654dec_huffman_lookup(16#e2, 16#1) -> {more, 16#fe, 16#06};
3655dec_huffman_lookup(16#e2, 16#2) -> {more, 16#fe, 16#0a};
3656dec_huffman_lookup(16#e2, 16#3) -> {more, 16#fe, 16#0f};
3657dec_huffman_lookup(16#e2, 16#4) -> {more, 16#fe, 16#18};
3658dec_huffman_lookup(16#e2, 16#5) -> {more, 16#fe, 16#1f};
3659dec_huffman_lookup(16#e2, 16#6) -> {more, 16#fe, 16#29};
3660dec_huffman_lookup(16#e2, 16#7) -> {ok, 16#fe, 16#38};
3661dec_huffman_lookup(16#e2, 16#8) -> {more, 16#02, 16#02};
3662dec_huffman_lookup(16#e2, 16#9) -> {more, 16#02, 16#09};
3663dec_huffman_lookup(16#e2, 16#a) -> {more, 16#02, 16#17};
3664dec_huffman_lookup(16#e2, 16#b) -> {ok, 16#02, 16#28};
3665dec_huffman_lookup(16#e2, 16#c) -> {more, 16#03, 16#02};
3666dec_huffman_lookup(16#e2, 16#d) -> {more, 16#03, 16#09};
3667dec_huffman_lookup(16#e2, 16#e) -> {more, 16#03, 16#17};
3668dec_huffman_lookup(16#e2, 16#f) -> {ok, 16#03, 16#28};
3669dec_huffman_lookup(16#e3, 16#0) -> {more, 16#02, 16#03};
3670dec_huffman_lookup(16#e3, 16#1) -> {more, 16#02, 16#06};
3671dec_huffman_lookup(16#e3, 16#2) -> {more, 16#02, 16#0a};
3672dec_huffman_lookup(16#e3, 16#3) -> {more, 16#02, 16#0f};
3673dec_huffman_lookup(16#e3, 16#4) -> {more, 16#02, 16#18};
3674dec_huffman_lookup(16#e3, 16#5) -> {more, 16#02, 16#1f};
3675dec_huffman_lookup(16#e3, 16#6) -> {more, 16#02, 16#29};
3676dec_huffman_lookup(16#e3, 16#7) -> {ok, 16#02, 16#38};
3677dec_huffman_lookup(16#e3, 16#8) -> {more, 16#03, 16#03};
3678dec_huffman_lookup(16#e3, 16#9) -> {more, 16#03, 16#06};
3679dec_huffman_lookup(16#e3, 16#a) -> {more, 16#03, 16#0a};
3680dec_huffman_lookup(16#e3, 16#b) -> {more, 16#03, 16#0f};
3681dec_huffman_lookup(16#e3, 16#c) -> {more, 16#03, 16#18};
3682dec_huffman_lookup(16#e3, 16#d) -> {more, 16#03, 16#1f};
3683dec_huffman_lookup(16#e3, 16#e) -> {more, 16#03, 16#29};
3684dec_huffman_lookup(16#e3, 16#f) -> {ok, 16#03, 16#38};
3685dec_huffman_lookup(16#e4, 16#0) -> {more, 16#04, 16#02};
3686dec_huffman_lookup(16#e4, 16#1) -> {more, 16#04, 16#09};
3687dec_huffman_lookup(16#e4, 16#2) -> {more, 16#04, 16#17};
3688dec_huffman_lookup(16#e4, 16#3) -> {ok, 16#04, 16#28};
3689dec_huffman_lookup(16#e4, 16#4) -> {more, 16#05, 16#02};
3690dec_huffman_lookup(16#e4, 16#5) -> {more, 16#05, 16#09};
3691dec_huffman_lookup(16#e4, 16#6) -> {more, 16#05, 16#17};
3692dec_huffman_lookup(16#e4, 16#7) -> {ok, 16#05, 16#28};
3693dec_huffman_lookup(16#e4, 16#8) -> {more, 16#06, 16#02};
3694dec_huffman_lookup(16#e4, 16#9) -> {more, 16#06, 16#09};
3695dec_huffman_lookup(16#e4, 16#a) -> {more, 16#06, 16#17};
3696dec_huffman_lookup(16#e4, 16#b) -> {ok, 16#06, 16#28};
3697dec_huffman_lookup(16#e4, 16#c) -> {more, 16#07, 16#02};
3698dec_huffman_lookup(16#e4, 16#d) -> {more, 16#07, 16#09};
3699dec_huffman_lookup(16#e4, 16#e) -> {more, 16#07, 16#17};
3700dec_huffman_lookup(16#e4, 16#f) -> {ok, 16#07, 16#28};
3701dec_huffman_lookup(16#e5, 16#0) -> {more, 16#04, 16#03};
3702dec_huffman_lookup(16#e5, 16#1) -> {more, 16#04, 16#06};
3703dec_huffman_lookup(16#e5, 16#2) -> {more, 16#04, 16#0a};
3704dec_huffman_lookup(16#e5, 16#3) -> {more, 16#04, 16#0f};
3705dec_huffman_lookup(16#e5, 16#4) -> {more, 16#04, 16#18};
3706dec_huffman_lookup(16#e5, 16#5) -> {more, 16#04, 16#1f};
3707dec_huffman_lookup(16#e5, 16#6) -> {more, 16#04, 16#29};
3708dec_huffman_lookup(16#e5, 16#7) -> {ok, 16#04, 16#38};
3709dec_huffman_lookup(16#e5, 16#8) -> {more, 16#05, 16#03};
3710dec_huffman_lookup(16#e5, 16#9) -> {more, 16#05, 16#06};
3711dec_huffman_lookup(16#e5, 16#a) -> {more, 16#05, 16#0a};
3712dec_huffman_lookup(16#e5, 16#b) -> {more, 16#05, 16#0f};
3713dec_huffman_lookup(16#e5, 16#c) -> {more, 16#05, 16#18};
3714dec_huffman_lookup(16#e5, 16#d) -> {more, 16#05, 16#1f};
3715dec_huffman_lookup(16#e5, 16#e) -> {more, 16#05, 16#29};
3716dec_huffman_lookup(16#e5, 16#f) -> {ok, 16#05, 16#38};
3717dec_huffman_lookup(16#e6, 16#0) -> {more, 16#06, 16#03};
3718dec_huffman_lookup(16#e6, 16#1) -> {more, 16#06, 16#06};
3719dec_huffman_lookup(16#e6, 16#2) -> {more, 16#06, 16#0a};
3720dec_huffman_lookup(16#e6, 16#3) -> {more, 16#06, 16#0f};
3721dec_huffman_lookup(16#e6, 16#4) -> {more, 16#06, 16#18};
3722dec_huffman_lookup(16#e6, 16#5) -> {more, 16#06, 16#1f};
3723dec_huffman_lookup(16#e6, 16#6) -> {more, 16#06, 16#29};
3724dec_huffman_lookup(16#e6, 16#7) -> {ok, 16#06, 16#38};
3725dec_huffman_lookup(16#e6, 16#8) -> {more, 16#07, 16#03};
3726dec_huffman_lookup(16#e6, 16#9) -> {more, 16#07, 16#06};
3727dec_huffman_lookup(16#e6, 16#a) -> {more, 16#07, 16#0a};
3728dec_huffman_lookup(16#e6, 16#b) -> {more, 16#07, 16#0f};
3729dec_huffman_lookup(16#e6, 16#c) -> {more, 16#07, 16#18};
3730dec_huffman_lookup(16#e6, 16#d) -> {more, 16#07, 16#1f};
3731dec_huffman_lookup(16#e6, 16#e) -> {more, 16#07, 16#29};
3732dec_huffman_lookup(16#e6, 16#f) -> {ok, 16#07, 16#38};
3733dec_huffman_lookup(16#e7, 16#0) -> {more, 16#08, 16#01};
3734dec_huffman_lookup(16#e7, 16#1) -> {ok, 16#08, 16#16};
3735dec_huffman_lookup(16#e7, 16#2) -> {more, 16#0b, 16#01};
3736dec_huffman_lookup(16#e7, 16#3) -> {ok, 16#0b, 16#16};
3737dec_huffman_lookup(16#e7, 16#4) -> {more, 16#0c, 16#01};
3738dec_huffman_lookup(16#e7, 16#5) -> {ok, 16#0c, 16#16};
3739dec_huffman_lookup(16#e7, 16#6) -> {more, 16#0e, 16#01};
3740dec_huffman_lookup(16#e7, 16#7) -> {ok, 16#0e, 16#16};
3741dec_huffman_lookup(16#e7, 16#8) -> {more, 16#0f, 16#01};
3742dec_huffman_lookup(16#e7, 16#9) -> {ok, 16#0f, 16#16};
3743dec_huffman_lookup(16#e7, 16#a) -> {more, 16#10, 16#01};
3744dec_huffman_lookup(16#e7, 16#b) -> {ok, 16#10, 16#16};
3745dec_huffman_lookup(16#e7, 16#c) -> {more, 16#11, 16#01};
3746dec_huffman_lookup(16#e7, 16#d) -> {ok, 16#11, 16#16};
3747dec_huffman_lookup(16#e7, 16#e) -> {more, 16#12, 16#01};
3748dec_huffman_lookup(16#e7, 16#f) -> {ok, 16#12, 16#16};
3749dec_huffman_lookup(16#e8, 16#0) -> {more, 16#08, 16#02};
3750dec_huffman_lookup(16#e8, 16#1) -> {more, 16#08, 16#09};
3751dec_huffman_lookup(16#e8, 16#2) -> {more, 16#08, 16#17};
3752dec_huffman_lookup(16#e8, 16#3) -> {ok, 16#08, 16#28};
3753dec_huffman_lookup(16#e8, 16#4) -> {more, 16#0b, 16#02};
3754dec_huffman_lookup(16#e8, 16#5) -> {more, 16#0b, 16#09};
3755dec_huffman_lookup(16#e8, 16#6) -> {more, 16#0b, 16#17};
3756dec_huffman_lookup(16#e8, 16#7) -> {ok, 16#0b, 16#28};
3757dec_huffman_lookup(16#e8, 16#8) -> {more, 16#0c, 16#02};
3758dec_huffman_lookup(16#e8, 16#9) -> {more, 16#0c, 16#09};
3759dec_huffman_lookup(16#e8, 16#a) -> {more, 16#0c, 16#17};
3760dec_huffman_lookup(16#e8, 16#b) -> {ok, 16#0c, 16#28};
3761dec_huffman_lookup(16#e8, 16#c) -> {more, 16#0e, 16#02};
3762dec_huffman_lookup(16#e8, 16#d) -> {more, 16#0e, 16#09};
3763dec_huffman_lookup(16#e8, 16#e) -> {more, 16#0e, 16#17};
3764dec_huffman_lookup(16#e8, 16#f) -> {ok, 16#0e, 16#28};
3765dec_huffman_lookup(16#e9, 16#0) -> {more, 16#08, 16#03};
3766dec_huffman_lookup(16#e9, 16#1) -> {more, 16#08, 16#06};
3767dec_huffman_lookup(16#e9, 16#2) -> {more, 16#08, 16#0a};
3768dec_huffman_lookup(16#e9, 16#3) -> {more, 16#08, 16#0f};
3769dec_huffman_lookup(16#e9, 16#4) -> {more, 16#08, 16#18};
3770dec_huffman_lookup(16#e9, 16#5) -> {more, 16#08, 16#1f};
3771dec_huffman_lookup(16#e9, 16#6) -> {more, 16#08, 16#29};
3772dec_huffman_lookup(16#e9, 16#7) -> {ok, 16#08, 16#38};
3773dec_huffman_lookup(16#e9, 16#8) -> {more, 16#0b, 16#03};
3774dec_huffman_lookup(16#e9, 16#9) -> {more, 16#0b, 16#06};
3775dec_huffman_lookup(16#e9, 16#a) -> {more, 16#0b, 16#0a};
3776dec_huffman_lookup(16#e9, 16#b) -> {more, 16#0b, 16#0f};
3777dec_huffman_lookup(16#e9, 16#c) -> {more, 16#0b, 16#18};
3778dec_huffman_lookup(16#e9, 16#d) -> {more, 16#0b, 16#1f};
3779dec_huffman_lookup(16#e9, 16#e) -> {more, 16#0b, 16#29};
3780dec_huffman_lookup(16#e9, 16#f) -> {ok, 16#0b, 16#38};
3781dec_huffman_lookup(16#ea, 16#0) -> {more, 16#0c, 16#03};
3782dec_huffman_lookup(16#ea, 16#1) -> {more, 16#0c, 16#06};
3783dec_huffman_lookup(16#ea, 16#2) -> {more, 16#0c, 16#0a};
3784dec_huffman_lookup(16#ea, 16#3) -> {more, 16#0c, 16#0f};
3785dec_huffman_lookup(16#ea, 16#4) -> {more, 16#0c, 16#18};
3786dec_huffman_lookup(16#ea, 16#5) -> {more, 16#0c, 16#1f};
3787dec_huffman_lookup(16#ea, 16#6) -> {more, 16#0c, 16#29};
3788dec_huffman_lookup(16#ea, 16#7) -> {ok, 16#0c, 16#38};
3789dec_huffman_lookup(16#ea, 16#8) -> {more, 16#0e, 16#03};
3790dec_huffman_lookup(16#ea, 16#9) -> {more, 16#0e, 16#06};
3791dec_huffman_lookup(16#ea, 16#a) -> {more, 16#0e, 16#0a};
3792dec_huffman_lookup(16#ea, 16#b) -> {more, 16#0e, 16#0f};
3793dec_huffman_lookup(16#ea, 16#c) -> {more, 16#0e, 16#18};
3794dec_huffman_lookup(16#ea, 16#d) -> {more, 16#0e, 16#1f};
3795dec_huffman_lookup(16#ea, 16#e) -> {more, 16#0e, 16#29};
3796dec_huffman_lookup(16#ea, 16#f) -> {ok, 16#0e, 16#38};
3797dec_huffman_lookup(16#eb, 16#0) -> {more, 16#0f, 16#02};
3798dec_huffman_lookup(16#eb, 16#1) -> {more, 16#0f, 16#09};
3799dec_huffman_lookup(16#eb, 16#2) -> {more, 16#0f, 16#17};
3800dec_huffman_lookup(16#eb, 16#3) -> {ok, 16#0f, 16#28};
3801dec_huffman_lookup(16#eb, 16#4) -> {more, 16#10, 16#02};
3802dec_huffman_lookup(16#eb, 16#5) -> {more, 16#10, 16#09};
3803dec_huffman_lookup(16#eb, 16#6) -> {more, 16#10, 16#17};
3804dec_huffman_lookup(16#eb, 16#7) -> {ok, 16#10, 16#28};
3805dec_huffman_lookup(16#eb, 16#8) -> {more, 16#11, 16#02};
3806dec_huffman_lookup(16#eb, 16#9) -> {more, 16#11, 16#09};
3807dec_huffman_lookup(16#eb, 16#a) -> {more, 16#11, 16#17};
3808dec_huffman_lookup(16#eb, 16#b) -> {ok, 16#11, 16#28};
3809dec_huffman_lookup(16#eb, 16#c) -> {more, 16#12, 16#02};
3810dec_huffman_lookup(16#eb, 16#d) -> {more, 16#12, 16#09};
3811dec_huffman_lookup(16#eb, 16#e) -> {more, 16#12, 16#17};
3812dec_huffman_lookup(16#eb, 16#f) -> {ok, 16#12, 16#28};
3813dec_huffman_lookup(16#ec, 16#0) -> {more, 16#0f, 16#03};
3814dec_huffman_lookup(16#ec, 16#1) -> {more, 16#0f, 16#06};
3815dec_huffman_lookup(16#ec, 16#2) -> {more, 16#0f, 16#0a};
3816dec_huffman_lookup(16#ec, 16#3) -> {more, 16#0f, 16#0f};
3817dec_huffman_lookup(16#ec, 16#4) -> {more, 16#0f, 16#18};
3818dec_huffman_lookup(16#ec, 16#5) -> {more, 16#0f, 16#1f};
3819dec_huffman_lookup(16#ec, 16#6) -> {more, 16#0f, 16#29};
3820dec_huffman_lookup(16#ec, 16#7) -> {ok, 16#0f, 16#38};
3821dec_huffman_lookup(16#ec, 16#8) -> {more, 16#10, 16#03};
3822dec_huffman_lookup(16#ec, 16#9) -> {more, 16#10, 16#06};
3823dec_huffman_lookup(16#ec, 16#a) -> {more, 16#10, 16#0a};
3824dec_huffman_lookup(16#ec, 16#b) -> {more, 16#10, 16#0f};
3825dec_huffman_lookup(16#ec, 16#c) -> {more, 16#10, 16#18};
3826dec_huffman_lookup(16#ec, 16#d) -> {more, 16#10, 16#1f};
3827dec_huffman_lookup(16#ec, 16#e) -> {more, 16#10, 16#29};
3828dec_huffman_lookup(16#ec, 16#f) -> {ok, 16#10, 16#38};
3829dec_huffman_lookup(16#ed, 16#0) -> {more, 16#11, 16#03};
3830dec_huffman_lookup(16#ed, 16#1) -> {more, 16#11, 16#06};
3831dec_huffman_lookup(16#ed, 16#2) -> {more, 16#11, 16#0a};
3832dec_huffman_lookup(16#ed, 16#3) -> {more, 16#11, 16#0f};
3833dec_huffman_lookup(16#ed, 16#4) -> {more, 16#11, 16#18};
3834dec_huffman_lookup(16#ed, 16#5) -> {more, 16#11, 16#1f};
3835dec_huffman_lookup(16#ed, 16#6) -> {more, 16#11, 16#29};
3836dec_huffman_lookup(16#ed, 16#7) -> {ok, 16#11, 16#38};
3837dec_huffman_lookup(16#ed, 16#8) -> {more, 16#12, 16#03};
3838dec_huffman_lookup(16#ed, 16#9) -> {more, 16#12, 16#06};
3839dec_huffman_lookup(16#ed, 16#a) -> {more, 16#12, 16#0a};
3840dec_huffman_lookup(16#ed, 16#b) -> {more, 16#12, 16#0f};
3841dec_huffman_lookup(16#ed, 16#c) -> {more, 16#12, 16#18};
3842dec_huffman_lookup(16#ed, 16#d) -> {more, 16#12, 16#1f};
3843dec_huffman_lookup(16#ed, 16#e) -> {more, 16#12, 16#29};
3844dec_huffman_lookup(16#ed, 16#f) -> {ok, 16#12, 16#38};
3845dec_huffman_lookup(16#ee, 16#0) -> {ok, 16#13, 16#00};
3846dec_huffman_lookup(16#ee, 16#1) -> {ok, 16#14, 16#00};
3847dec_huffman_lookup(16#ee, 16#2) -> {ok, 16#15, 16#00};
3848dec_huffman_lookup(16#ee, 16#3) -> {ok, 16#17, 16#00};
3849dec_huffman_lookup(16#ee, 16#4) -> {ok, 16#18, 16#00};
3850dec_huffman_lookup(16#ee, 16#5) -> {ok, 16#19, 16#00};
3851dec_huffman_lookup(16#ee, 16#6) -> {ok, 16#1a, 16#00};
3852dec_huffman_lookup(16#ee, 16#7) -> {ok, 16#1b, 16#00};
3853dec_huffman_lookup(16#ee, 16#8) -> {ok, 16#1c, 16#00};
3854dec_huffman_lookup(16#ee, 16#9) -> {ok, 16#1d, 16#00};
3855dec_huffman_lookup(16#ee, 16#a) -> {ok, 16#1e, 16#00};
3856dec_huffman_lookup(16#ee, 16#b) -> {ok, 16#1f, 16#00};
3857dec_huffman_lookup(16#ee, 16#c) -> {ok, 16#7f, 16#00};
3858dec_huffman_lookup(16#ee, 16#d) -> {ok, 16#dc, 16#00};
3859dec_huffman_lookup(16#ee, 16#e) -> {ok, 16#f9, 16#00};
3860dec_huffman_lookup(16#ee, 16#f) -> {ok, undefined, 16#fd};
3861dec_huffman_lookup(16#ef, 16#0) -> {more, 16#13, 16#01};
3862dec_huffman_lookup(16#ef, 16#1) -> {ok, 16#13, 16#16};
3863dec_huffman_lookup(16#ef, 16#2) -> {more, 16#14, 16#01};
3864dec_huffman_lookup(16#ef, 16#3) -> {ok, 16#14, 16#16};
3865dec_huffman_lookup(16#ef, 16#4) -> {more, 16#15, 16#01};
3866dec_huffman_lookup(16#ef, 16#5) -> {ok, 16#15, 16#16};
3867dec_huffman_lookup(16#ef, 16#6) -> {more, 16#17, 16#01};
3868dec_huffman_lookup(16#ef, 16#7) -> {ok, 16#17, 16#16};
3869dec_huffman_lookup(16#ef, 16#8) -> {more, 16#18, 16#01};
3870dec_huffman_lookup(16#ef, 16#9) -> {ok, 16#18, 16#16};
3871dec_huffman_lookup(16#ef, 16#a) -> {more, 16#19, 16#01};
3872dec_huffman_lookup(16#ef, 16#b) -> {ok, 16#19, 16#16};
3873dec_huffman_lookup(16#ef, 16#c) -> {more, 16#1a, 16#01};
3874dec_huffman_lookup(16#ef, 16#d) -> {ok, 16#1a, 16#16};
3875dec_huffman_lookup(16#ef, 16#e) -> {more, 16#1b, 16#01};
3876dec_huffman_lookup(16#ef, 16#f) -> {ok, 16#1b, 16#16};
3877dec_huffman_lookup(16#f0, 16#0) -> {more, 16#13, 16#02};
3878dec_huffman_lookup(16#f0, 16#1) -> {more, 16#13, 16#09};
3879dec_huffman_lookup(16#f0, 16#2) -> {more, 16#13, 16#17};
3880dec_huffman_lookup(16#f0, 16#3) -> {ok, 16#13, 16#28};
3881dec_huffman_lookup(16#f0, 16#4) -> {more, 16#14, 16#02};
3882dec_huffman_lookup(16#f0, 16#5) -> {more, 16#14, 16#09};
3883dec_huffman_lookup(16#f0, 16#6) -> {more, 16#14, 16#17};
3884dec_huffman_lookup(16#f0, 16#7) -> {ok, 16#14, 16#28};
3885dec_huffman_lookup(16#f0, 16#8) -> {more, 16#15, 16#02};
3886dec_huffman_lookup(16#f0, 16#9) -> {more, 16#15, 16#09};
3887dec_huffman_lookup(16#f0, 16#a) -> {more, 16#15, 16#17};
3888dec_huffman_lookup(16#f0, 16#b) -> {ok, 16#15, 16#28};
3889dec_huffman_lookup(16#f0, 16#c) -> {more, 16#17, 16#02};
3890dec_huffman_lookup(16#f0, 16#d) -> {more, 16#17, 16#09};
3891dec_huffman_lookup(16#f0, 16#e) -> {more, 16#17, 16#17};
3892dec_huffman_lookup(16#f0, 16#f) -> {ok, 16#17, 16#28};
3893dec_huffman_lookup(16#f1, 16#0) -> {more, 16#13, 16#03};
3894dec_huffman_lookup(16#f1, 16#1) -> {more, 16#13, 16#06};
3895dec_huffman_lookup(16#f1, 16#2) -> {more, 16#13, 16#0a};
3896dec_huffman_lookup(16#f1, 16#3) -> {more, 16#13, 16#0f};
3897dec_huffman_lookup(16#f1, 16#4) -> {more, 16#13, 16#18};
3898dec_huffman_lookup(16#f1, 16#5) -> {more, 16#13, 16#1f};
3899dec_huffman_lookup(16#f1, 16#6) -> {more, 16#13, 16#29};
3900dec_huffman_lookup(16#f1, 16#7) -> {ok, 16#13, 16#38};
3901dec_huffman_lookup(16#f1, 16#8) -> {more, 16#14, 16#03};
3902dec_huffman_lookup(16#f1, 16#9) -> {more, 16#14, 16#06};
3903dec_huffman_lookup(16#f1, 16#a) -> {more, 16#14, 16#0a};
3904dec_huffman_lookup(16#f1, 16#b) -> {more, 16#14, 16#0f};
3905dec_huffman_lookup(16#f1, 16#c) -> {more, 16#14, 16#18};
3906dec_huffman_lookup(16#f1, 16#d) -> {more, 16#14, 16#1f};
3907dec_huffman_lookup(16#f1, 16#e) -> {more, 16#14, 16#29};
3908dec_huffman_lookup(16#f1, 16#f) -> {ok, 16#14, 16#38};
3909dec_huffman_lookup(16#f2, 16#0) -> {more, 16#15, 16#03};
3910dec_huffman_lookup(16#f2, 16#1) -> {more, 16#15, 16#06};
3911dec_huffman_lookup(16#f2, 16#2) -> {more, 16#15, 16#0a};
3912dec_huffman_lookup(16#f2, 16#3) -> {more, 16#15, 16#0f};
3913dec_huffman_lookup(16#f2, 16#4) -> {more, 16#15, 16#18};
3914dec_huffman_lookup(16#f2, 16#5) -> {more, 16#15, 16#1f};
3915dec_huffman_lookup(16#f2, 16#6) -> {more, 16#15, 16#29};
3916dec_huffman_lookup(16#f2, 16#7) -> {ok, 16#15, 16#38};
3917dec_huffman_lookup(16#f2, 16#8) -> {more, 16#17, 16#03};
3918dec_huffman_lookup(16#f2, 16#9) -> {more, 16#17, 16#06};
3919dec_huffman_lookup(16#f2, 16#a) -> {more, 16#17, 16#0a};
3920dec_huffman_lookup(16#f2, 16#b) -> {more, 16#17, 16#0f};
3921dec_huffman_lookup(16#f2, 16#c) -> {more, 16#17, 16#18};
3922dec_huffman_lookup(16#f2, 16#d) -> {more, 16#17, 16#1f};
3923dec_huffman_lookup(16#f2, 16#e) -> {more, 16#17, 16#29};
3924dec_huffman_lookup(16#f2, 16#f) -> {ok, 16#17, 16#38};
3925dec_huffman_lookup(16#f3, 16#0) -> {more, 16#18, 16#02};
3926dec_huffman_lookup(16#f3, 16#1) -> {more, 16#18, 16#09};
3927dec_huffman_lookup(16#f3, 16#2) -> {more, 16#18, 16#17};
3928dec_huffman_lookup(16#f3, 16#3) -> {ok, 16#18, 16#28};
3929dec_huffman_lookup(16#f3, 16#4) -> {more, 16#19, 16#02};
3930dec_huffman_lookup(16#f3, 16#5) -> {more, 16#19, 16#09};
3931dec_huffman_lookup(16#f3, 16#6) -> {more, 16#19, 16#17};
3932dec_huffman_lookup(16#f3, 16#7) -> {ok, 16#19, 16#28};
3933dec_huffman_lookup(16#f3, 16#8) -> {more, 16#1a, 16#02};
3934dec_huffman_lookup(16#f3, 16#9) -> {more, 16#1a, 16#09};
3935dec_huffman_lookup(16#f3, 16#a) -> {more, 16#1a, 16#17};
3936dec_huffman_lookup(16#f3, 16#b) -> {ok, 16#1a, 16#28};
3937dec_huffman_lookup(16#f3, 16#c) -> {more, 16#1b, 16#02};
3938dec_huffman_lookup(16#f3, 16#d) -> {more, 16#1b, 16#09};
3939dec_huffman_lookup(16#f3, 16#e) -> {more, 16#1b, 16#17};
3940dec_huffman_lookup(16#f3, 16#f) -> {ok, 16#1b, 16#28};
3941dec_huffman_lookup(16#f4, 16#0) -> {more, 16#18, 16#03};
3942dec_huffman_lookup(16#f4, 16#1) -> {more, 16#18, 16#06};
3943dec_huffman_lookup(16#f4, 16#2) -> {more, 16#18, 16#0a};
3944dec_huffman_lookup(16#f4, 16#3) -> {more, 16#18, 16#0f};
3945dec_huffman_lookup(16#f4, 16#4) -> {more, 16#18, 16#18};
3946dec_huffman_lookup(16#f4, 16#5) -> {more, 16#18, 16#1f};
3947dec_huffman_lookup(16#f4, 16#6) -> {more, 16#18, 16#29};
3948dec_huffman_lookup(16#f4, 16#7) -> {ok, 16#18, 16#38};
3949dec_huffman_lookup(16#f4, 16#8) -> {more, 16#19, 16#03};
3950dec_huffman_lookup(16#f4, 16#9) -> {more, 16#19, 16#06};
3951dec_huffman_lookup(16#f4, 16#a) -> {more, 16#19, 16#0a};
3952dec_huffman_lookup(16#f4, 16#b) -> {more, 16#19, 16#0f};
3953dec_huffman_lookup(16#f4, 16#c) -> {more, 16#19, 16#18};
3954dec_huffman_lookup(16#f4, 16#d) -> {more, 16#19, 16#1f};
3955dec_huffman_lookup(16#f4, 16#e) -> {more, 16#19, 16#29};
3956dec_huffman_lookup(16#f4, 16#f) -> {ok, 16#19, 16#38};
3957dec_huffman_lookup(16#f5, 16#0) -> {more, 16#1a, 16#03};
3958dec_huffman_lookup(16#f5, 16#1) -> {more, 16#1a, 16#06};
3959dec_huffman_lookup(16#f5, 16#2) -> {more, 16#1a, 16#0a};
3960dec_huffman_lookup(16#f5, 16#3) -> {more, 16#1a, 16#0f};
3961dec_huffman_lookup(16#f5, 16#4) -> {more, 16#1a, 16#18};
3962dec_huffman_lookup(16#f5, 16#5) -> {more, 16#1a, 16#1f};
3963dec_huffman_lookup(16#f5, 16#6) -> {more, 16#1a, 16#29};
3964dec_huffman_lookup(16#f5, 16#7) -> {ok, 16#1a, 16#38};
3965dec_huffman_lookup(16#f5, 16#8) -> {more, 16#1b, 16#03};
3966dec_huffman_lookup(16#f5, 16#9) -> {more, 16#1b, 16#06};
3967dec_huffman_lookup(16#f5, 16#a) -> {more, 16#1b, 16#0a};
3968dec_huffman_lookup(16#f5, 16#b) -> {more, 16#1b, 16#0f};
3969dec_huffman_lookup(16#f5, 16#c) -> {more, 16#1b, 16#18};
3970dec_huffman_lookup(16#f5, 16#d) -> {more, 16#1b, 16#1f};
3971dec_huffman_lookup(16#f5, 16#e) -> {more, 16#1b, 16#29};
3972dec_huffman_lookup(16#f5, 16#f) -> {ok, 16#1b, 16#38};
3973dec_huffman_lookup(16#f6, 16#0) -> {more, 16#1c, 16#01};
3974dec_huffman_lookup(16#f6, 16#1) -> {ok, 16#1c, 16#16};
3975dec_huffman_lookup(16#f6, 16#2) -> {more, 16#1d, 16#01};
3976dec_huffman_lookup(16#f6, 16#3) -> {ok, 16#1d, 16#16};
3977dec_huffman_lookup(16#f6, 16#4) -> {more, 16#1e, 16#01};
3978dec_huffman_lookup(16#f6, 16#5) -> {ok, 16#1e, 16#16};
3979dec_huffman_lookup(16#f6, 16#6) -> {more, 16#1f, 16#01};
3980dec_huffman_lookup(16#f6, 16#7) -> {ok, 16#1f, 16#16};
3981dec_huffman_lookup(16#f6, 16#8) -> {more, 16#7f, 16#01};
3982dec_huffman_lookup(16#f6, 16#9) -> {ok, 16#7f, 16#16};
3983dec_huffman_lookup(16#f6, 16#a) -> {more, 16#dc, 16#01};
3984dec_huffman_lookup(16#f6, 16#b) -> {ok, 16#dc, 16#16};
3985dec_huffman_lookup(16#f6, 16#c) -> {more, 16#f9, 16#01};
3986dec_huffman_lookup(16#f6, 16#d) -> {ok, 16#f9, 16#16};
3987dec_huffman_lookup(16#f6, 16#e) -> {more, undefined, 16#fe};
3988dec_huffman_lookup(16#f6, 16#f) -> {ok, undefined, 16#ff};
3989dec_huffman_lookup(16#f7, 16#0) -> {more, 16#1c, 16#02};
3990dec_huffman_lookup(16#f7, 16#1) -> {more, 16#1c, 16#09};
3991dec_huffman_lookup(16#f7, 16#2) -> {more, 16#1c, 16#17};
3992dec_huffman_lookup(16#f7, 16#3) -> {ok, 16#1c, 16#28};
3993dec_huffman_lookup(16#f7, 16#4) -> {more, 16#1d, 16#02};
3994dec_huffman_lookup(16#f7, 16#5) -> {more, 16#1d, 16#09};
3995dec_huffman_lookup(16#f7, 16#6) -> {more, 16#1d, 16#17};
3996dec_huffman_lookup(16#f7, 16#7) -> {ok, 16#1d, 16#28};
3997dec_huffman_lookup(16#f7, 16#8) -> {more, 16#1e, 16#02};
3998dec_huffman_lookup(16#f7, 16#9) -> {more, 16#1e, 16#09};
3999dec_huffman_lookup(16#f7, 16#a) -> {more, 16#1e, 16#17};
4000dec_huffman_lookup(16#f7, 16#b) -> {ok, 16#1e, 16#28};
4001dec_huffman_lookup(16#f7, 16#c) -> {more, 16#1f, 16#02};
4002dec_huffman_lookup(16#f7, 16#d) -> {more, 16#1f, 16#09};
4003dec_huffman_lookup(16#f7, 16#e) -> {more, 16#1f, 16#17};
4004dec_huffman_lookup(16#f7, 16#f) -> {ok, 16#1f, 16#28};
4005dec_huffman_lookup(16#f8, 16#0) -> {more, 16#1c, 16#03};
4006dec_huffman_lookup(16#f8, 16#1) -> {more, 16#1c, 16#06};
4007dec_huffman_lookup(16#f8, 16#2) -> {more, 16#1c, 16#0a};
4008dec_huffman_lookup(16#f8, 16#3) -> {more, 16#1c, 16#0f};
4009dec_huffman_lookup(16#f8, 16#4) -> {more, 16#1c, 16#18};
4010dec_huffman_lookup(16#f8, 16#5) -> {more, 16#1c, 16#1f};
4011dec_huffman_lookup(16#f8, 16#6) -> {more, 16#1c, 16#29};
4012dec_huffman_lookup(16#f8, 16#7) -> {ok, 16#1c, 16#38};
4013dec_huffman_lookup(16#f8, 16#8) -> {more, 16#1d, 16#03};
4014dec_huffman_lookup(16#f8, 16#9) -> {more, 16#1d, 16#06};
4015dec_huffman_lookup(16#f8, 16#a) -> {more, 16#1d, 16#0a};
4016dec_huffman_lookup(16#f8, 16#b) -> {more, 16#1d, 16#0f};
4017dec_huffman_lookup(16#f8, 16#c) -> {more, 16#1d, 16#18};
4018dec_huffman_lookup(16#f8, 16#d) -> {more, 16#1d, 16#1f};
4019dec_huffman_lookup(16#f8, 16#e) -> {more, 16#1d, 16#29};
4020dec_huffman_lookup(16#f8, 16#f) -> {ok, 16#1d, 16#38};
4021dec_huffman_lookup(16#f9, 16#0) -> {more, 16#1e, 16#03};
4022dec_huffman_lookup(16#f9, 16#1) -> {more, 16#1e, 16#06};
4023dec_huffman_lookup(16#f9, 16#2) -> {more, 16#1e, 16#0a};
4024dec_huffman_lookup(16#f9, 16#3) -> {more, 16#1e, 16#0f};
4025dec_huffman_lookup(16#f9, 16#4) -> {more, 16#1e, 16#18};
4026dec_huffman_lookup(16#f9, 16#5) -> {more, 16#1e, 16#1f};
4027dec_huffman_lookup(16#f9, 16#6) -> {more, 16#1e, 16#29};
4028dec_huffman_lookup(16#f9, 16#7) -> {ok, 16#1e, 16#38};
4029dec_huffman_lookup(16#f9, 16#8) -> {more, 16#1f, 16#03};
4030dec_huffman_lookup(16#f9, 16#9) -> {more, 16#1f, 16#06};
4031dec_huffman_lookup(16#f9, 16#a) -> {more, 16#1f, 16#0a};
4032dec_huffman_lookup(16#f9, 16#b) -> {more, 16#1f, 16#0f};
4033dec_huffman_lookup(16#f9, 16#c) -> {more, 16#1f, 16#18};
4034dec_huffman_lookup(16#f9, 16#d) -> {more, 16#1f, 16#1f};
4035dec_huffman_lookup(16#f9, 16#e) -> {more, 16#1f, 16#29};
4036dec_huffman_lookup(16#f9, 16#f) -> {ok, 16#1f, 16#38};
4037dec_huffman_lookup(16#fa, 16#0) -> {more, 16#7f, 16#02};
4038dec_huffman_lookup(16#fa, 16#1) -> {more, 16#7f, 16#09};
4039dec_huffman_lookup(16#fa, 16#2) -> {more, 16#7f, 16#17};
4040dec_huffman_lookup(16#fa, 16#3) -> {ok, 16#7f, 16#28};
4041dec_huffman_lookup(16#fa, 16#4) -> {more, 16#dc, 16#02};
4042dec_huffman_lookup(16#fa, 16#5) -> {more, 16#dc, 16#09};
4043dec_huffman_lookup(16#fa, 16#6) -> {more, 16#dc, 16#17};
4044dec_huffman_lookup(16#fa, 16#7) -> {ok, 16#dc, 16#28};
4045dec_huffman_lookup(16#fa, 16#8) -> {more, 16#f9, 16#02};
4046dec_huffman_lookup(16#fa, 16#9) -> {more, 16#f9, 16#09};
4047dec_huffman_lookup(16#fa, 16#a) -> {more, 16#f9, 16#17};
4048dec_huffman_lookup(16#fa, 16#b) -> {ok, 16#f9, 16#28};
4049dec_huffman_lookup(16#fa, 16#c) -> {ok, 16#0a, 16#00};
4050dec_huffman_lookup(16#fa, 16#d) -> {ok, 16#0d, 16#00};
4051dec_huffman_lookup(16#fa, 16#e) -> {ok, 16#16, 16#00};
4052dec_huffman_lookup(16#fa, 16#f) -> error;
4053dec_huffman_lookup(16#fb, 16#0) -> {more, 16#7f, 16#03};
4054dec_huffman_lookup(16#fb, 16#1) -> {more, 16#7f, 16#06};
4055dec_huffman_lookup(16#fb, 16#2) -> {more, 16#7f, 16#0a};
4056dec_huffman_lookup(16#fb, 16#3) -> {more, 16#7f, 16#0f};
4057dec_huffman_lookup(16#fb, 16#4) -> {more, 16#7f, 16#18};
4058dec_huffman_lookup(16#fb, 16#5) -> {more, 16#7f, 16#1f};
4059dec_huffman_lookup(16#fb, 16#6) -> {more, 16#7f, 16#29};
4060dec_huffman_lookup(16#fb, 16#7) -> {ok, 16#7f, 16#38};
4061dec_huffman_lookup(16#fb, 16#8) -> {more, 16#dc, 16#03};
4062dec_huffman_lookup(16#fb, 16#9) -> {more, 16#dc, 16#06};
4063dec_huffman_lookup(16#fb, 16#a) -> {more, 16#dc, 16#0a};
4064dec_huffman_lookup(16#fb, 16#b) -> {more, 16#dc, 16#0f};
4065dec_huffman_lookup(16#fb, 16#c) -> {more, 16#dc, 16#18};
4066dec_huffman_lookup(16#fb, 16#d) -> {more, 16#dc, 16#1f};
4067dec_huffman_lookup(16#fb, 16#e) -> {more, 16#dc, 16#29};
4068dec_huffman_lookup(16#fb, 16#f) -> {ok, 16#dc, 16#38};
4069dec_huffman_lookup(16#fc, 16#0) -> {more, 16#f9, 16#03};
4070dec_huffman_lookup(16#fc, 16#1) -> {more, 16#f9, 16#06};
4071dec_huffman_lookup(16#fc, 16#2) -> {more, 16#f9, 16#0a};
4072dec_huffman_lookup(16#fc, 16#3) -> {more, 16#f9, 16#0f};
4073dec_huffman_lookup(16#fc, 16#4) -> {more, 16#f9, 16#18};
4074dec_huffman_lookup(16#fc, 16#5) -> {more, 16#f9, 16#1f};
4075dec_huffman_lookup(16#fc, 16#6) -> {more, 16#f9, 16#29};
4076dec_huffman_lookup(16#fc, 16#7) -> {ok, 16#f9, 16#38};
4077dec_huffman_lookup(16#fc, 16#8) -> {more, 16#0a, 16#01};
4078dec_huffman_lookup(16#fc, 16#9) -> {ok, 16#0a, 16#16};
4079dec_huffman_lookup(16#fc, 16#a) -> {more, 16#0d, 16#01};
4080dec_huffman_lookup(16#fc, 16#b) -> {ok, 16#0d, 16#16};
4081dec_huffman_lookup(16#fc, 16#c) -> {more, 16#16, 16#01};
4082dec_huffman_lookup(16#fc, 16#d) -> {ok, 16#16, 16#16};
4083dec_huffman_lookup(16#fc, 16#e) -> error;
4084dec_huffman_lookup(16#fc, 16#f) -> error;
4085dec_huffman_lookup(16#fd, 16#0) -> {more, 16#0a, 16#02};
4086dec_huffman_lookup(16#fd, 16#1) -> {more, 16#0a, 16#09};
4087dec_huffman_lookup(16#fd, 16#2) -> {more, 16#0a, 16#17};
4088dec_huffman_lookup(16#fd, 16#3) -> {ok, 16#0a, 16#28};
4089dec_huffman_lookup(16#fd, 16#4) -> {more, 16#0d, 16#02};
4090dec_huffman_lookup(16#fd, 16#5) -> {more, 16#0d, 16#09};
4091dec_huffman_lookup(16#fd, 16#6) -> {more, 16#0d, 16#17};
4092dec_huffman_lookup(16#fd, 16#7) -> {ok, 16#0d, 16#28};
4093dec_huffman_lookup(16#fd, 16#8) -> {more, 16#16, 16#02};
4094dec_huffman_lookup(16#fd, 16#9) -> {more, 16#16, 16#09};
4095dec_huffman_lookup(16#fd, 16#a) -> {more, 16#16, 16#17};
4096dec_huffman_lookup(16#fd, 16#b) -> {ok, 16#16, 16#28};
4097dec_huffman_lookup(16#fd, 16#c) -> error;
4098dec_huffman_lookup(16#fd, 16#d) -> error;
4099dec_huffman_lookup(16#fd, 16#e) -> error;
4100dec_huffman_lookup(16#fd, 16#f) -> error;
4101dec_huffman_lookup(16#fe, 16#0) -> {more, 16#0a, 16#03};
4102dec_huffman_lookup(16#fe, 16#1) -> {more, 16#0a, 16#06};
4103dec_huffman_lookup(16#fe, 16#2) -> {more, 16#0a, 16#0a};
4104dec_huffman_lookup(16#fe, 16#3) -> {more, 16#0a, 16#0f};
4105dec_huffman_lookup(16#fe, 16#4) -> {more, 16#0a, 16#18};
4106dec_huffman_lookup(16#fe, 16#5) -> {more, 16#0a, 16#1f};
4107dec_huffman_lookup(16#fe, 16#6) -> {more, 16#0a, 16#29};
4108dec_huffman_lookup(16#fe, 16#7) -> {ok, 16#0a, 16#38};
4109dec_huffman_lookup(16#fe, 16#8) -> {more, 16#0d, 16#03};
4110dec_huffman_lookup(16#fe, 16#9) -> {more, 16#0d, 16#06};
4111dec_huffman_lookup(16#fe, 16#a) -> {more, 16#0d, 16#0a};
4112dec_huffman_lookup(16#fe, 16#b) -> {more, 16#0d, 16#0f};
4113dec_huffman_lookup(16#fe, 16#c) -> {more, 16#0d, 16#18};
4114dec_huffman_lookup(16#fe, 16#d) -> {more, 16#0d, 16#1f};
4115dec_huffman_lookup(16#fe, 16#e) -> {more, 16#0d, 16#29};
4116dec_huffman_lookup(16#fe, 16#f) -> {ok, 16#0d, 16#38};
4117dec_huffman_lookup(16#ff, 16#0) -> {more, 16#16, 16#03};
4118dec_huffman_lookup(16#ff, 16#1) -> {more, 16#16, 16#06};
4119dec_huffman_lookup(16#ff, 16#2) -> {more, 16#16, 16#0a};
4120dec_huffman_lookup(16#ff, 16#3) -> {more, 16#16, 16#0f};
4121dec_huffman_lookup(16#ff, 16#4) -> {more, 16#16, 16#18};
4122dec_huffman_lookup(16#ff, 16#5) -> {more, 16#16, 16#1f};
4123dec_huffman_lookup(16#ff, 16#6) -> {more, 16#16, 16#29};
4124dec_huffman_lookup(16#ff, 16#7) -> {ok, 16#16, 16#38};
4125dec_huffman_lookup(16#ff, 16#8) -> error;
4126dec_huffman_lookup(16#ff, 16#9) -> error;
4127dec_huffman_lookup(16#ff, 16#a) -> error;
4128dec_huffman_lookup(16#ff, 16#b) -> error;
4129dec_huffman_lookup(16#ff, 16#c) -> error;
4130dec_huffman_lookup(16#ff, 16#d) -> error;
4131dec_huffman_lookup(16#ff, 16#e) -> error;
4132dec_huffman_lookup(16#ff, 16#f) -> error.
4133