diff options
author | David Walter Seikel | 2012-01-04 18:41:13 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-01-04 18:41:13 +1000 |
commit | dd7595a3475407a7fa96a97393bae8c5220e8762 (patch) | |
tree | e341e911d7eb911a51684a7412ef7f7c7605d28e /libraries/evas/doc/img/map-light8.eps | |
parent | Add the skeleton. (diff) | |
download | SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.zip SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.gz SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.bz2 SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.xz |
Add the base Enlightenment Foundation Libraries - eina, eet, evas, ecore, embryo, and edje.
Note that embryo wont be used, but I'm not sure yet if you can build edje without it.
Diffstat (limited to 'libraries/evas/doc/img/map-light8.eps')
-rw-r--r-- | libraries/evas/doc/img/map-light8.eps | 770 |
1 files changed, 770 insertions, 0 deletions
diff --git a/libraries/evas/doc/img/map-light8.eps b/libraries/evas/doc/img/map-light8.eps new file mode 100644 index 0000000..401d618 --- /dev/null +++ b/libraries/evas/doc/img/map-light8.eps | |||
@@ -0,0 +1,770 @@ | |||
1 | %!PS-Adobe-3.0 EPSF-3.0 | ||
2 | %%Creator: (ImageMagick) | ||
3 | %%Title: (map-light8.eps) | ||
4 | %%CreationDate: (2011-07-15T12:39:27-03:00) | ||
5 | %%BoundingBox: -0 -0 138 125 | ||
6 | %%HiResBoundingBox: 0 0 138.038 125 | ||
7 | %%DocumentData: Clean7Bit | ||
8 | %%LanguageLevel: 1 | ||
9 | %%Pages: 1 | ||
10 | %%EndComments | ||
11 | |||
12 | %%BeginDefaults | ||
13 | %%EndDefaults | ||
14 | |||
15 | %%BeginProlog | ||
16 | % | ||
17 | % Display a color image. The image is displayed in color on | ||
18 | % Postscript viewers or printers that support color, otherwise | ||
19 | % it is displayed as grayscale. | ||
20 | % | ||
21 | /DirectClassPacket | ||
22 | { | ||
23 | % | ||
24 | % Get a DirectClass packet. | ||
25 | % | ||
26 | % Parameters: | ||
27 | % red. | ||
28 | % green. | ||
29 | % blue. | ||
30 | % length: number of pixels minus one of this color (optional). | ||
31 | % | ||
32 | currentfile color_packet readhexstring pop pop | ||
33 | compression 0 eq | ||
34 | { | ||
35 | /number_pixels 3 def | ||
36 | } | ||
37 | { | ||
38 | currentfile byte readhexstring pop 0 get | ||
39 | /number_pixels exch 1 add 3 mul def | ||
40 | } ifelse | ||
41 | 0 3 number_pixels 1 sub | ||
42 | { | ||
43 | pixels exch color_packet putinterval | ||
44 | } for | ||
45 | pixels 0 number_pixels getinterval | ||
46 | } bind def | ||
47 | |||
48 | /DirectClassImage | ||
49 | { | ||
50 | % | ||
51 | % Display a DirectClass image. | ||
52 | % | ||
53 | systemdict /colorimage known | ||
54 | { | ||
55 | columns rows 8 | ||
56 | [ | ||
57 | columns 0 0 | ||
58 | rows neg 0 rows | ||
59 | ] | ||
60 | { DirectClassPacket } false 3 colorimage | ||
61 | } | ||
62 | { | ||
63 | % | ||
64 | % No colorimage operator; convert to grayscale. | ||
65 | % | ||
66 | columns rows 8 | ||
67 | [ | ||
68 | columns 0 0 | ||
69 | rows neg 0 rows | ||
70 | ] | ||
71 | { GrayDirectClassPacket } image | ||
72 | } ifelse | ||
73 | } bind def | ||
74 | |||
75 | /GrayDirectClassPacket | ||
76 | { | ||
77 | % | ||
78 | % Get a DirectClass packet; convert to grayscale. | ||
79 | % | ||
80 | % Parameters: | ||
81 | % red | ||
82 | % green | ||
83 | % blue | ||
84 | % length: number of pixels minus one of this color (optional). | ||
85 | % | ||
86 | currentfile color_packet readhexstring pop pop | ||
87 | color_packet 0 get 0.299 mul | ||
88 | color_packet 1 get 0.587 mul add | ||
89 | color_packet 2 get 0.114 mul add | ||
90 | cvi | ||
91 | /gray_packet exch def | ||
92 | compression 0 eq | ||
93 | { | ||
94 | /number_pixels 1 def | ||
95 | } | ||
96 | { | ||
97 | currentfile byte readhexstring pop 0 get | ||
98 | /number_pixels exch 1 add def | ||
99 | } ifelse | ||
100 | 0 1 number_pixels 1 sub | ||
101 | { | ||
102 | pixels exch gray_packet put | ||
103 | } for | ||
104 | pixels 0 number_pixels getinterval | ||
105 | } bind def | ||
106 | |||
107 | /GrayPseudoClassPacket | ||
108 | { | ||
109 | % | ||
110 | % Get a PseudoClass packet; convert to grayscale. | ||
111 | % | ||
112 | % Parameters: | ||
113 | % index: index into the colormap. | ||
114 | % length: number of pixels minus one of this color (optional). | ||
115 | % | ||
116 | currentfile byte readhexstring pop 0 get | ||
117 | /offset exch 3 mul def | ||
118 | /color_packet colormap offset 3 getinterval def | ||
119 | color_packet 0 get 0.299 mul | ||
120 | color_packet 1 get 0.587 mul add | ||
121 | color_packet 2 get 0.114 mul add | ||
122 | cvi | ||
123 | /gray_packet exch def | ||
124 | compression 0 eq | ||
125 | { | ||
126 | /number_pixels 1 def | ||
127 | } | ||
128 | { | ||
129 | currentfile byte readhexstring pop 0 get | ||
130 | /number_pixels exch 1 add def | ||
131 | } ifelse | ||
132 | 0 1 number_pixels 1 sub | ||
133 | { | ||
134 | pixels exch gray_packet put | ||
135 | } for | ||
136 | pixels 0 number_pixels getinterval | ||
137 | } bind def | ||
138 | |||
139 | /PseudoClassPacket | ||
140 | { | ||
141 | % | ||
142 | % Get a PseudoClass packet. | ||
143 | % | ||
144 | % Parameters: | ||
145 | % index: index into the colormap. | ||
146 | % length: number of pixels minus one of this color (optional). | ||
147 | % | ||
148 | currentfile byte readhexstring pop 0 get | ||
149 | /offset exch 3 mul def | ||
150 | /color_packet colormap offset 3 getinterval def | ||
151 | compression 0 eq | ||
152 | { | ||
153 | /number_pixels 3 def | ||
154 | } | ||
155 | { | ||
156 | currentfile byte readhexstring pop 0 get | ||
157 | /number_pixels exch 1 add 3 mul def | ||
158 | } ifelse | ||
159 | 0 3 number_pixels 1 sub | ||
160 | { | ||
161 | pixels exch color_packet putinterval | ||
162 | } for | ||
163 | pixels 0 number_pixels getinterval | ||
164 | } bind def | ||
165 | |||
166 | /PseudoClassImage | ||
167 | { | ||
168 | % | ||
169 | % Display a PseudoClass image. | ||
170 | % | ||
171 | % Parameters: | ||
172 | % class: 0-PseudoClass or 1-Grayscale. | ||
173 | % | ||
174 | currentfile buffer readline pop | ||
175 | token pop /class exch def pop | ||
176 | class 0 gt | ||
177 | { | ||
178 | currentfile buffer readline pop | ||
179 | token pop /depth exch def pop | ||
180 | /grays columns 8 add depth sub depth mul 8 idiv string def | ||
181 | columns rows depth | ||
182 | [ | ||
183 | columns 0 0 | ||
184 | rows neg 0 rows | ||
185 | ] | ||
186 | { currentfile grays readhexstring pop } image | ||
187 | } | ||
188 | { | ||
189 | % | ||
190 | % Parameters: | ||
191 | % colors: number of colors in the colormap. | ||
192 | % colormap: red, green, blue color packets. | ||
193 | % | ||
194 | currentfile buffer readline pop | ||
195 | token pop /colors exch def pop | ||
196 | /colors colors 3 mul def | ||
197 | /colormap colors string def | ||
198 | currentfile colormap readhexstring pop pop | ||
199 | systemdict /colorimage known | ||
200 | { | ||
201 | columns rows 8 | ||
202 | [ | ||
203 | columns 0 0 | ||
204 | rows neg 0 rows | ||
205 | ] | ||
206 | { PseudoClassPacket } false 3 colorimage | ||
207 | } | ||
208 | { | ||
209 | % | ||
210 | % No colorimage operator; convert to grayscale. | ||
211 | % | ||
212 | columns rows 8 | ||
213 | [ | ||
214 | columns 0 0 | ||
215 | rows neg 0 rows | ||
216 | ] | ||
217 | { GrayPseudoClassPacket } image | ||
218 | } ifelse | ||
219 | } ifelse | ||
220 | } bind def | ||
221 | |||
222 | /DisplayImage | ||
223 | { | ||
224 | % | ||
225 | % Display a DirectClass or PseudoClass image. | ||
226 | % | ||
227 | % Parameters: | ||
228 | % x & y translation. | ||
229 | % x & y scale. | ||
230 | % label pointsize. | ||
231 | % image label. | ||
232 | % image columns & rows. | ||
233 | % class: 0-DirectClass or 1-PseudoClass. | ||
234 | % compression: 0-none or 1-RunlengthEncoded. | ||
235 | % hex color packets. | ||
236 | % | ||
237 | gsave | ||
238 | /buffer 512 string def | ||
239 | /byte 1 string def | ||
240 | /color_packet 3 string def | ||
241 | /pixels 768 string def | ||
242 | |||
243 | currentfile buffer readline pop | ||
244 | token pop /x exch def | ||
245 | token pop /y exch def pop | ||
246 | x y translate | ||
247 | currentfile buffer readline pop | ||
248 | token pop /x exch def | ||
249 | token pop /y exch def pop | ||
250 | currentfile buffer readline pop | ||
251 | token pop /pointsize exch def pop | ||
252 | /Times-Roman findfont pointsize scalefont setfont | ||
253 | x y scale | ||
254 | currentfile buffer readline pop | ||
255 | token pop /columns exch def | ||
256 | token pop /rows exch def pop | ||
257 | currentfile buffer readline pop | ||
258 | token pop /class exch def pop | ||
259 | currentfile buffer readline pop | ||
260 | token pop /compression exch def pop | ||
261 | class 0 gt { PseudoClassImage } { DirectClassImage } ifelse | ||
262 | } bind def | ||
263 | %%EndProlog | ||
264 | %%Page: 1 1 | ||
265 | %%PageBoundingBox: 0 0 138 125 | ||
266 | userdict begin | ||
267 | DisplayImage | ||
268 | 0 0 | ||
269 | 138.038 125.035 | ||
270 | 12 | ||
271 | 138 125 | ||
272 | 1 | ||
273 | 0 | ||
274 | 0 | ||
275 | 36 | ||
276 | FFFFFF | ||
277 | C80000 | ||
278 | 7F0000 | ||
279 | 800000 | ||
280 | 810000 | ||
281 | 820000 | ||
282 | 830000 | ||
283 | FFB9B9 | ||
284 | 840000 | ||
285 | 850000 | ||
286 | 860000 | ||
287 | 870000 | ||
288 | 880000 | ||
289 | 890000 | ||
290 | 8A0000 | ||
291 | 8B0000 | ||
292 | 8C0000 | ||
293 | 8D0000 | ||
294 | 8E0000 | ||
295 | 8F0000 | ||
296 | 900000 | ||
297 | 910000 | ||
298 | 920000 | ||
299 | 930000 | ||
300 | 940000 | ||
301 | 950000 | ||
302 | 960000 | ||
303 | 970000 | ||
304 | 980000 | ||
305 | 990000 | ||
306 | 9A0000 | ||
307 | 9B0000 | ||
308 | 9C0000 | ||
309 | 9D0000 | ||
310 | 9E0000 | ||
311 | 9F0000 | ||
312 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
313 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
314 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
315 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
316 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
317 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
318 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
319 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
320 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
321 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
322 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
323 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
324 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
325 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
326 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
327 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
328 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
329 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
330 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
331 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
332 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
333 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
334 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
335 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
336 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
337 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
338 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
339 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
340 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
341 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
342 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
343 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
344 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
345 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
346 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
347 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
348 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
349 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
350 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
351 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
352 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
353 | 0000000000000000000000000000000000000000000000000000000000000000000000000101 | ||
354 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
355 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
356 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
357 | 0000000000000000000000000000000000000000000101010101010000000000000000000000 | ||
358 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
359 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
360 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
361 | 0000000000000101010101010101010000000000000000000000000000000000000000000000 | ||
362 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
363 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
364 | 0000000000000000000000000000000000000000000000000000000000000101010101010101 | ||
365 | 0101010000000000000000000000000000000000000000000000000000000000000000000000 | ||
366 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
367 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
368 | 0000000000000000000000000000000101010101010101010101010101000000000000000000 | ||
369 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
370 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
371 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
372 | 0001010101010101010101010101010101000000000000000000000000000000000000000000 | ||
373 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
374 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
375 | 0000000000000000000000000000000000000000000000000101010101010101010101010101 | ||
376 | 0101010101010000000000000000000000000000000000000000000000000000000000000000 | ||
377 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
378 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
379 | 0000000000000000000101010101010101010101010101010101010101010101000000000000 | ||
380 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
381 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
382 | 0000000000000000000000000000000000000000000000000000000000000000000101010101 | ||
383 | 0101010101010101010101010101010101010101000000000000000000000000000000000000 | ||
384 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
385 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
386 | 0000000000000000000000000000000000000101010101010101010101010101010101010101 | ||
387 | 0101010101010101000000000000000000000000000000000000000000000000000000000000 | ||
388 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
389 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
390 | 0000000001010101010101010101010101010101010101010101010101010101010100000000 | ||
391 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
392 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
393 | 0000000000000000000000000000000000000000000000000000000101010101010101010101 | ||
394 | 0101010101010101010101010101010101010101010101000000000000000000000000000000 | ||
395 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
396 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
397 | 0000000000000000000000000101010101010101010101010101010101010101010101010101 | ||
398 | 0101010101010101010101000000000000000000000000000000000000000000000000000000 | ||
399 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
400 | 0000000000000000000000000000000000000000000000000000000000000000000000000101 | ||
401 | 0101010101010101010101010101010101010101010101010101010101010101010101010100 | ||
402 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
403 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
404 | 0000000000000000000000000000000000000000000101010101010101010101010101010101 | ||
405 | 0101010101010101010101010101010101010101010101010100000000000000000000000000 | ||
406 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
407 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
408 | 0000000000000001010101010101010101010101010101010101010101010101010101010101 | ||
409 | 0101010101010101010101010100000000000000000000000000000000000000000000000000 | ||
410 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
411 | 0000000000000000000000000000000000000000000000000000000000000101010101010101 | ||
412 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
413 | 0101000000000000000000000000000000000000000000000000000000000000000000000000 | ||
414 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
415 | 0000000000000000000000000000000101010101010101010101010101010101010101010101 | ||
416 | 0101010101010101010101010101010101010101010101010101010100000000000000000000 | ||
417 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
418 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
419 | 0001010101010101010101010101010101010101010101010101010101010101010101010101 | ||
420 | 0101010101010101010101010101010100000000000000000000000000000000000000000000 | ||
421 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
422 | 0000000000000000000000000000000000000000000000000101010101010101010101010101 | ||
423 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
424 | 0101000000000000000000000000000000000000000000000000000000000000000000000000 | ||
425 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
426 | 0000000000000000000001010101010101010101010101010101010101010101010101010101 | ||
427 | 0101010101010101010101010101010101010101010101010100000000000000000000000000 | ||
428 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
429 | 0000000000000000000000000000000000000000000000000000000000000000000101010101 | ||
430 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
431 | 0101010101010101010100000000000000000000000000000000000000000000000000000000 | ||
432 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
433 | 0000000000000000000000000000000000000101010101010101010101010101010101010101 | ||
434 | 0101010101010101010101010101010101010101010101010101010101010101010100000000 | ||
435 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
436 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
437 | 0000000001010101010101010101010101010101010101010101010101010101010101010101 | ||
438 | 0101010101010101010101010101010101010100000000000000000000000000000000000000 | ||
439 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
440 | 0000000000000000000000000000000000000000000000000000000101010101010101010101 | ||
441 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
442 | 0101010100000000000000000000000000000000000000000000000000000000000000000000 | ||
443 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
444 | 0000000000000000000000000001010101010101010101010101010101010101010101010101 | ||
445 | 0101010101010101010101010101010101010101010101010101010100000000000000000000 | ||
446 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
447 | 0000000000000000000000000000000000000000000000000000000000000000000000000101 | ||
448 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
449 | 0101010101010101010101010100000000000000000000000000000000000000000000000000 | ||
450 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
451 | 0000000000000000000000000000000000000000000101010101010101010101010101010101 | ||
452 | 0101010101010101010101010101010101010101010101010101010101010101010101010100 | ||
453 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
454 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
455 | 0000000000000001010101010101010101010101010101010101010101010101010101010101 | ||
456 | 0101010101010101010101010101010101010101010100000000000000000000000000000000 | ||
457 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
458 | 0000000000000000000000000000000000000000000000000000000000000101010101010101 | ||
459 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
460 | 0101010101010100000000000000000000000000000000000000000000000000000000000000 | ||
461 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
462 | 0000000000000000000000000000000001010101010101010101010101010101010101010101 | ||
463 | 0101010101010101010101010101010101010101010101010101010101010100000000000000 | ||
464 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
465 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
466 | 0001010101010101010101010101010101010101010101010101010101010101010101010101 | ||
467 | 0101010101010101010101010101010100000000000000000000000000000000000000000000 | ||
468 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
469 | 0000000000000000000000000000000000000000000000000101010101010101010101010101 | ||
470 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
471 | 0100000000000000000000000000000000000000000000000000000000000000000000000000 | ||
472 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
473 | 0000000000000000000001010101010101010101010101010101010101010101010101010101 | ||
474 | 0101010101010101010101010101010101010101010101010100000000000000000000000000 | ||
475 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
476 | 0000000000000000000000000000000000000000000000000000000000000000000101010101 | ||
477 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
478 | 0101010101010101010100000000000000000000000000000000000000000000000000000000 | ||
479 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
480 | 0000000000000000000000000000000000000001010101010101010101010101010101010101 | ||
481 | 0101010101010101010101010101010101010101010101010101010101010101010100000000 | ||
482 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
483 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
484 | 0000000001010101010101010101010101010101010101010101010101010101010101010101 | ||
485 | 0101010101010101010101010101010101010100000000000000000000000000000000000000 | ||
486 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
487 | 0000000000000000000000000000000000000000000000000000000001010101010101010101 | ||
488 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
489 | 0101010100000000000000000000000000000000000000000000000000000000000000000000 | ||
490 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
491 | 0000000000000000000000000001010101010101010101010101010101010101010101010101 | ||
492 | 0101010101010101010101010101010101010101010101010101010100000000000000000000 | ||
493 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
494 | 0000000000000000000000000000000000000000000000000000000000000000000000000101 | ||
495 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
496 | 0101010101010101010101010100000000000000000000000000000000000000000000000000 | ||
497 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
498 | 0000000000000000000000000000000000000000000001010101010101010101010101010101 | ||
499 | 0101010101010101010101010101010101010101010101010101010101010101010101010100 | ||
500 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
501 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
502 | 0000000000000001010101010101010101010101010101010101010101010101010101010101 | ||
503 | 0101010101010101010101010101010101010101010100000000000000000000000000000000 | ||
504 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
505 | 0000000000000000000000000000000000000000000000000000000000000001010101010101 | ||
506 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
507 | 0101010101010100000000000000000000000000000000000000000000000000000000000000 | ||
508 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
509 | 0000000000000000000000000000000001010101010101010101010101010101010101010101 | ||
510 | 0101010101010101010101010101010101010101010101010101010101010100000000000000 | ||
511 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
512 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
513 | 0001010101010101010101010101010101010101010101010101010101010101010101010101 | ||
514 | 0101010101010101010101010101010100000000000000000000000000000000000000000000 | ||
515 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
516 | 0000000000000000000000000000000000000000000000000001010101010101010101010101 | ||
517 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
518 | 0100000000000000000000000000000000000000000000000000000000000000000000000000 | ||
519 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
520 | 0000000000000000000001010101010101010101010101010101010101010101010101010101 | ||
521 | 0101010101010101010101010101010101010101010101010100000000000000000000000000 | ||
522 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
523 | 0000000000000000000000000000000000000000000000000000000000000000000001010101 | ||
524 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
525 | 0101010101010101010100000000000000000000000000000000000000000000000000000000 | ||
526 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
527 | 0000000000000000000000000000000000000001010101010101010101010101010101010101 | ||
528 | 0101010101010101010101010101010101010101010101010101010101010101010100000000 | ||
529 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
530 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
531 | 0000000001010101010101010101010101010101010101010101010101010101010101010101 | ||
532 | 0101010101010101010101010101010101010100000000000000000000000000000000000000 | ||
533 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
534 | 0000000000000000000000000000000000000000000000000000000001010101010101010101 | ||
535 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
536 | 0101010100000000000000000000000000000000000000000000000000000000000000000000 | ||
537 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
538 | 0000000000000000000000000001010101010101010101010101010101010101010101010101 | ||
539 | 0101010101010101010101010101010101010101010101010101010100000000000000000000 | ||
540 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
541 | 0000000000000000000000000000000000000000000000000000000000000000000000000001 | ||
542 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
543 | 0101010101010101010101010100000000000000000000000000000000000000000000000000 | ||
544 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
545 | 0000000000000000000000000000000000000000000001010101010101010101010101010101 | ||
546 | 0101010101010101010101010101010101010101010101010101010101010101010101010100 | ||
547 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
548 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
549 | 0000000000000001010101010101010101010101010101010101010101010101010101010101 | ||
550 | 0101010101010101010101010101010101010101010100000000000000000000000000000000 | ||
551 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
552 | 0000000000000000000000000000000000000000000000000000000000000001010101010101 | ||
553 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
554 | 0101010101010100000000000000000000000000000000000000000000000000000000000000 | ||
555 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
556 | 0000000000000000000000000000000001010101010101010101010101010101010101010101 | ||
557 | 0101010101010101010101010101010101010101010101010101010101010100000000000000 | ||
558 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
559 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
560 | 0000010101010101010101010101010101010101010101010101010101010101010101010101 | ||
561 | 0101010101010101010101010101010100000000000000000000000000000000000000000000 | ||
562 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
563 | 0000000000000000000000000000000000000000000000000001010101010101010101010101 | ||
564 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
565 | 0100000000000000000000000000000000000000000000000000000000000000000000000000 | ||
566 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
567 | 0000000000000000000001010101010101010101010101010101010101010101010101010101 | ||
568 | 0101010101010101010101010101010101010101010101010100000000000000000000000000 | ||
569 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
570 | 0000000000000000000000000000000000000000000000000000000000000000000001010101 | ||
571 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
572 | 0101010101010101010100000000000000000000000000000000000000000000000000000000 | ||
573 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
574 | 0000000000000000000000000000000000000001010101010101010101010101010101010101 | ||
575 | 0101010101010101010101010101010101010101010101010101010101010101010100000000 | ||
576 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
577 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
578 | 0000000000010101010101010101010101010101010101010101010101010101010101010101 | ||
579 | 0101010101010101010101010101010101010100000000000000000000000000000000000000 | ||
580 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
581 | 0000000000000000000000000000000000000000000000000000000001010101010101010101 | ||
582 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
583 | 0101010100000000000000000000000000000000000000000000000000000000000000000000 | ||
584 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
585 | 0000000000000000000000000001010101010101010101010101010101010101010101010101 | ||
586 | 0101010101010101010101010101010101010101010101010101010100000000000000000000 | ||
587 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
588 | 0000000000000000000000000000000000000000000000000000000000000000000000000001 | ||
589 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
590 | 0101010101010101010101010100000000000000000000000000000000000000000000000000 | ||
591 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
592 | 0000000000000000000000000000000000000000000001010101010101010101010101010101 | ||
593 | 0101010101010101010101010101010101010101010101010101010101010101010101010100 | ||
594 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
595 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
596 | 0000000000000000010101010101010101010101010101010101010101010101010101010101 | ||
597 | 0101010101010101010101010101010101010101010100000000000000000000000000000000 | ||
598 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
599 | 0000000000000000000000000000000000000000000000000000000000000001010101010101 | ||
600 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
601 | 0101010101010100000000000000000000000000000000000000000000000000000000000000 | ||
602 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
603 | 0000000000000000000000000000000001010101010101010101010101010101010101010101 | ||
604 | 0101010101010101010101010101010101010101010101010101010101010100000000000000 | ||
605 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
606 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
607 | 0000010101010101010101010101010101010101010101010101010101010101010101010101 | ||
608 | 0101010101010101010101010101010100000000000000000000000000000000000000000000 | ||
609 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
610 | 0000000000000000000000000000000000000000000000000001010101010101010101010101 | ||
611 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
612 | 0100000000000000000000000000000000000000000000000000000000000000000000000000 | ||
613 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
614 | 0000000000000000000000010101010101010101010101010101010101010101010101010101 | ||
615 | 0101010101010101010101010101010101010101010101010100000000000000000000000000 | ||
616 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
617 | 0000000000000000000000000000000000000000000000000000000000000000000001010101 | ||
618 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
619 | 0101010101010101010100000000000000000000000000000000000000000000000000000000 | ||
620 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
621 | 0000000000000000000000000000000000000000010101010101010101010101010101010101 | ||
622 | 0101010101010101010101010101010101010101010101010101010101010101010100000000 | ||
623 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
624 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
625 | 0000000000010101010101010101010101010101010101010101010101010101010101010101 | ||
626 | 0101010101010101010101010101010101010100000000000000000000000000000000000000 | ||
627 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
628 | 0000000000000000000000000000000000000000000000000000000001010101010101010101 | ||
629 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
630 | 0101010100000000000000000000000000000000000000000000000000000000000000000000 | ||
631 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
632 | 0000000000000000000000000000010101010101010101010101010101010101010101010101 | ||
633 | 0101010101010101010101010101010101010101010101010101010100000000000000000000 | ||
634 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
635 | 0000000000000000000000000000000000000000000000000000000000000000000000000001 | ||
636 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
637 | 0101010101010101010101010100000000000000000000000000000000000000000000000000 | ||
638 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
639 | 0000000000000000000000000000000000000000000000010101010101010101010101010101 | ||
640 | 0101010101010101010101010101010101010101010101010101010101010101010101010100 | ||
641 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
642 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
643 | 0000000000000000010101010101010101010101010101010101010101010101010101010101 | ||
644 | 0101010101010101010101010101010101010101010100000000000000000000000000000000 | ||
645 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
646 | 0000000000000000000000000000000000000000000000000000000000000001010101010101 | ||
647 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
648 | 0101010101010100000000000000000000000000000000000000000000000000000000000000 | ||
649 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
650 | 0000000000000000000000000000000000010101010101010101010101010101010101010101 | ||
651 | 0101010101010101010101010101010101010101010101010101010101010100000000000000 | ||
652 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
653 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
654 | 0000010101010101010101010101010101010101010101010101010101010101010101010101 | ||
655 | 0101010101010101010101010101010100000000000000000000000000000000000000000000 | ||
656 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
657 | 0000000000000000000000000000000000000000000000000000010101010101010101010101 | ||
658 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
659 | 0100000000000000000000000000000000000000000000000000000000000000000000000000 | ||
660 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
661 | 0000000000000000000000010101010101010101010101010101010101010101010101010101 | ||
662 | 0101010101010101010101010101010101010101010101010100000000000000000000000000 | ||
663 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
664 | 0000000000000000000000000000000000000000000000000000000000000000000001010101 | ||
665 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
666 | 0101010101010101010100000000000000000000000000000000000000000000000000000000 | ||
667 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
668 | 0000000000000000000000000000000000000000010101010101010101010101010101010101 | ||
669 | 0101010101010101010101010101010101010101010101010101010101010101010100000000 | ||
670 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
671 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
672 | 0000000000010101010101010101010101010101010101010101010101010101010101010101 | ||
673 | 0101010101010101010101010101010101010100000000000000000000000000000000000000 | ||
674 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
675 | 0000000000000000000000000000000000000000000000000000000000010101010101010101 | ||
676 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
677 | 0101010100000000000000000000000000000000000000000000000000000000000000000000 | ||
678 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
679 | 0000000000000000000000000000010101010101010101010101010101010101010101010101 | ||
680 | 0101010101010101010101010101010101010101010101010101010100000000000000000000 | ||
681 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
682 | 0000000000000000000000000000000000000000000000000000000000000000000000000001 | ||
683 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
684 | 0101010101010101010101010100000000000000000000000000000000000000000000000000 | ||
685 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
686 | 0000000000000000000000000000000000000000000000010101010101010101010101010101 | ||
687 | 0101010101010101010101010101010101010101010101010101010101010101010101010000 | ||
688 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
689 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
690 | 0000000000000000010101010101010101010101010101010101010101010101010101010101 | ||
691 | 0101010101010101010101010101010101010101010100000000000000000000000000000000 | ||
692 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
693 | 0000000000000000000000000000000000000000000000000000000000000000010101010101 | ||
694 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
695 | 0101010101010100000000000000000000000000000000000000000000000000000000000000 | ||
696 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
697 | 0000000000000000000000000000000000010101010101010101010101010101010101010101 | ||
698 | 0101010101010101010101010101010101010101010101010101010101010100000000000000 | ||
699 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
700 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
701 | 0000010101010101010101010101010101010101010101010101010101010101010101010101 | ||
702 | 0101010101010101010101010101010100000000000000000000000000000000000000000000 | ||
703 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
704 | 0000000000000000000000000000000000000000000000000000010101010101010101010101 | ||
705 | 0101010101010101010101010101010101010101010101010101010101010101010101010101 | ||
706 | 0100000000000000000000000000000000000000000000000000000000000000000000000000 | ||
707 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
708 | 0000000000000000000000000000000000000000000000000000000000000000000000000001 | ||
709 | 0101010101010101010101010101010101010101010101010100000000000000000000000000 | ||
710 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
711 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
712 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
713 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
714 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
715 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
716 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
717 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
718 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
719 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
720 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
721 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
722 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
723 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
724 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
725 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
726 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
727 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
728 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
729 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
730 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
731 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
732 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
733 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
734 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
735 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
736 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
737 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
738 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
739 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
740 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
741 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
742 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
743 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
744 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
745 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
746 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
747 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
748 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
749 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
750 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
751 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
752 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
753 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
754 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
755 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
756 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
757 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
758 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
759 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
760 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
761 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
762 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
763 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
764 | 0000000000000000000000000000000000000000000000000000000000000000000000000000 | ||
765 | 000000000000000000000000000000000000000000000000000000000000000000000000 | ||
766 | |||
767 | end | ||
768 | %%PageTrailer | ||
769 | %%Trailer | ||
770 | %%EOF | ||