aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/doc/img/map-light8.eps
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-04 18:41:13 +1000
committerDavid Walter Seikel2012-01-04 18:41:13 +1000
commitdd7595a3475407a7fa96a97393bae8c5220e8762 (patch)
treee341e911d7eb911a51684a7412ef7f7c7605d28e /libraries/evas/doc/img/map-light8.eps
parentAdd the skeleton. (diff)
downloadSledjHamr-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.eps770
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
266userdict begin
267DisplayImage
2680 0
269138.038 125.035
27012
271138 125
2721
2730
2740
27536
276FFFFFF
277C80000
2787F0000
279800000
280810000
281820000
282830000
283FFB9B9
284840000
285850000
286860000
287870000
288880000
289890000
2908A0000
2918B0000
2928C0000
2938D0000
2948E0000
2958F0000
296900000
297910000
298920000
299930000
300940000
301950000
302960000
303970000
304980000
305990000
3069A0000
3079B0000
3089C0000
3099D0000
3109E0000
3119F0000
3120000000000000000000000000000000000000000000000000000000000000000000000000000
3130000000000000000000000000000000000000000000000000000000000000000000000000000
3140000000000000000000000000000000000000000000000000000000000000000000000000000
3150000000000000000000000000000000000000000000000000000000000000000000000000000
3160000000000000000000000000000000000000000000000000000000000000000000000000000
3170000000000000000000000000000000000000000000000000000000000000000000000000000
3180000000000000000000000000000000000000000000000000000000000000000000000000000
3190000000000000000000000000000000000000000000000000000000000000000000000000000
3200000000000000000000000000000000000000000000000000000000000000000000000000000
3210000000000000000000000000000000000000000000000000000000000000000000000000000
3220000000000000000000000000000000000000000000000000000000000000000000000000000
3230000000000000000000000000000000000000000000000000000000000000000000000000000
3240000000000000000000000000000000000000000000000000000000000000000000000000000
3250000000000000000000000000000000000000000000000000000000000000000000000000000
3260000000000000000000000000000000000000000000000000000000000000000000000000000
3270000000000000000000000000000000000000000000000000000000000000000000000000000
3280000000000000000000000000000000000000000000000000000000000000000000000000000
3290000000000000000000000000000000000000000000000000000000000000000000000000000
3300000000000000000000000000000000000000000000000000000000000000000000000000000
3310000000000000000000000000000000000000000000000000000000000000000000000000000
3320000000000000000000000000000000000000000000000000000000000000000000000000000
3330000000000000000000000000000000000000000000000000000000000000000000000000000
3340000000000000000000000000000000000000000000000000000000000000000000000000000
3350000000000000000000000000000000000000000000000000000000000000000000000000000
3360000000000000000000000000000000000000000000000000000000000000000000000000000
3370000000000000000000000000000000000000000000000000000000000000000000000000000
3380000000000000000000000000000000000000000000000000000000000000000000000000000
3390000000000000000000000000000000000000000000000000000000000000000000000000000
3400000000000000000000000000000000000000000000000000000000000000000000000000000
3410000000000000000000000000000000000000000000000000000000000000000000000000000
3420000000000000000000000000000000000000000000000000000000000000000000000000000
3430000000000000000000000000000000000000000000000000000000000000000000000000000
3440000000000000000000000000000000000000000000000000000000000000000000000000000
3450000000000000000000000000000000000000000000000000000000000000000000000000000
3460000000000000000000000000000000000000000000000000000000000000000000000000000
3470000000000000000000000000000000000000000000000000000000000000000000000000000
3480000000000000000000000000000000000000000000000000000000000000000000000000000
3490000000000000000000000000000000000000000000000000000000000000000000000000000
3500000000000000000000000000000000000000000000000000000000000000000000000000000
3510000000000000000000000000000000000000000000000000000000000000000000000000000
3520000000000000000000000000000000000000000000000000000000000000000000000000000
3530000000000000000000000000000000000000000000000000000000000000000000000000101
3540000000000000000000000000000000000000000000000000000000000000000000000000000
3550000000000000000000000000000000000000000000000000000000000000000000000000000
3560000000000000000000000000000000000000000000000000000000000000000000000000000
3570000000000000000000000000000000000000000000101010101010000000000000000000000
3580000000000000000000000000000000000000000000000000000000000000000000000000000
3590000000000000000000000000000000000000000000000000000000000000000000000000000
3600000000000000000000000000000000000000000000000000000000000000000000000000000
3610000000000000101010101010101010000000000000000000000000000000000000000000000
3620000000000000000000000000000000000000000000000000000000000000000000000000000
3630000000000000000000000000000000000000000000000000000000000000000000000000000
3640000000000000000000000000000000000000000000000000000000000000101010101010101
3650101010000000000000000000000000000000000000000000000000000000000000000000000
3660000000000000000000000000000000000000000000000000000000000000000000000000000
3670000000000000000000000000000000000000000000000000000000000000000000000000000
3680000000000000000000000000000000101010101010101010101010101000000000000000000
3690000000000000000000000000000000000000000000000000000000000000000000000000000
3700000000000000000000000000000000000000000000000000000000000000000000000000000
3710000000000000000000000000000000000000000000000000000000000000000000000000000
3720001010101010101010101010101010101000000000000000000000000000000000000000000
3730000000000000000000000000000000000000000000000000000000000000000000000000000
3740000000000000000000000000000000000000000000000000000000000000000000000000000
3750000000000000000000000000000000000000000000000000101010101010101010101010101
3760101010101010000000000000000000000000000000000000000000000000000000000000000
3770000000000000000000000000000000000000000000000000000000000000000000000000000
3780000000000000000000000000000000000000000000000000000000000000000000000000000
3790000000000000000000101010101010101010101010101010101010101010101000000000000
3800000000000000000000000000000000000000000000000000000000000000000000000000000
3810000000000000000000000000000000000000000000000000000000000000000000000000000
3820000000000000000000000000000000000000000000000000000000000000000000101010101
3830101010101010101010101010101010101010101000000000000000000000000000000000000
3840000000000000000000000000000000000000000000000000000000000000000000000000000
3850000000000000000000000000000000000000000000000000000000000000000000000000000
3860000000000000000000000000000000000000101010101010101010101010101010101010101
3870101010101010101000000000000000000000000000000000000000000000000000000000000
3880000000000000000000000000000000000000000000000000000000000000000000000000000
3890000000000000000000000000000000000000000000000000000000000000000000000000000
3900000000001010101010101010101010101010101010101010101010101010101010100000000
3910000000000000000000000000000000000000000000000000000000000000000000000000000
3920000000000000000000000000000000000000000000000000000000000000000000000000000
3930000000000000000000000000000000000000000000000000000000101010101010101010101
3940101010101010101010101010101010101010101010101000000000000000000000000000000
3950000000000000000000000000000000000000000000000000000000000000000000000000000
3960000000000000000000000000000000000000000000000000000000000000000000000000000
3970000000000000000000000000101010101010101010101010101010101010101010101010101
3980101010101010101010101000000000000000000000000000000000000000000000000000000
3990000000000000000000000000000000000000000000000000000000000000000000000000000
4000000000000000000000000000000000000000000000000000000000000000000000000000101
4010101010101010101010101010101010101010101010101010101010101010101010101010100
4020000000000000000000000000000000000000000000000000000000000000000000000000000
4030000000000000000000000000000000000000000000000000000000000000000000000000000
4040000000000000000000000000000000000000000000101010101010101010101010101010101
4050101010101010101010101010101010101010101010101010100000000000000000000000000
4060000000000000000000000000000000000000000000000000000000000000000000000000000
4070000000000000000000000000000000000000000000000000000000000000000000000000000
4080000000000000001010101010101010101010101010101010101010101010101010101010101
4090101010101010101010101010100000000000000000000000000000000000000000000000000
4100000000000000000000000000000000000000000000000000000000000000000000000000000
4110000000000000000000000000000000000000000000000000000000000000101010101010101
4120101010101010101010101010101010101010101010101010101010101010101010101010101
4130101000000000000000000000000000000000000000000000000000000000000000000000000
4140000000000000000000000000000000000000000000000000000000000000000000000000000
4150000000000000000000000000000000101010101010101010101010101010101010101010101
4160101010101010101010101010101010101010101010101010101010100000000000000000000
4170000000000000000000000000000000000000000000000000000000000000000000000000000
4180000000000000000000000000000000000000000000000000000000000000000000000000000
4190001010101010101010101010101010101010101010101010101010101010101010101010101
4200101010101010101010101010101010100000000000000000000000000000000000000000000
4210000000000000000000000000000000000000000000000000000000000000000000000000000
4220000000000000000000000000000000000000000000000000101010101010101010101010101
4230101010101010101010101010101010101010101010101010101010101010101010101010101
4240101000000000000000000000000000000000000000000000000000000000000000000000000
4250000000000000000000000000000000000000000000000000000000000000000000000000000
4260000000000000000000001010101010101010101010101010101010101010101010101010101
4270101010101010101010101010101010101010101010101010100000000000000000000000000
4280000000000000000000000000000000000000000000000000000000000000000000000000000
4290000000000000000000000000000000000000000000000000000000000000000000101010101
4300101010101010101010101010101010101010101010101010101010101010101010101010101
4310101010101010101010100000000000000000000000000000000000000000000000000000000
4320000000000000000000000000000000000000000000000000000000000000000000000000000
4330000000000000000000000000000000000000101010101010101010101010101010101010101
4340101010101010101010101010101010101010101010101010101010101010101010100000000
4350000000000000000000000000000000000000000000000000000000000000000000000000000
4360000000000000000000000000000000000000000000000000000000000000000000000000000
4370000000001010101010101010101010101010101010101010101010101010101010101010101
4380101010101010101010101010101010101010100000000000000000000000000000000000000
4390000000000000000000000000000000000000000000000000000000000000000000000000000
4400000000000000000000000000000000000000000000000000000000101010101010101010101
4410101010101010101010101010101010101010101010101010101010101010101010101010101
4420101010100000000000000000000000000000000000000000000000000000000000000000000
4430000000000000000000000000000000000000000000000000000000000000000000000000000
4440000000000000000000000000001010101010101010101010101010101010101010101010101
4450101010101010101010101010101010101010101010101010101010100000000000000000000
4460000000000000000000000000000000000000000000000000000000000000000000000000000
4470000000000000000000000000000000000000000000000000000000000000000000000000101
4480101010101010101010101010101010101010101010101010101010101010101010101010101
4490101010101010101010101010100000000000000000000000000000000000000000000000000
4500000000000000000000000000000000000000000000000000000000000000000000000000000
4510000000000000000000000000000000000000000000101010101010101010101010101010101
4520101010101010101010101010101010101010101010101010101010101010101010101010100
4530000000000000000000000000000000000000000000000000000000000000000000000000000
4540000000000000000000000000000000000000000000000000000000000000000000000000000
4550000000000000001010101010101010101010101010101010101010101010101010101010101
4560101010101010101010101010101010101010101010100000000000000000000000000000000
4570000000000000000000000000000000000000000000000000000000000000000000000000000
4580000000000000000000000000000000000000000000000000000000000000101010101010101
4590101010101010101010101010101010101010101010101010101010101010101010101010101
4600101010101010100000000000000000000000000000000000000000000000000000000000000
4610000000000000000000000000000000000000000000000000000000000000000000000000000
4620000000000000000000000000000000001010101010101010101010101010101010101010101
4630101010101010101010101010101010101010101010101010101010101010100000000000000
4640000000000000000000000000000000000000000000000000000000000000000000000000000
4650000000000000000000000000000000000000000000000000000000000000000000000000000
4660001010101010101010101010101010101010101010101010101010101010101010101010101
4670101010101010101010101010101010100000000000000000000000000000000000000000000
4680000000000000000000000000000000000000000000000000000000000000000000000000000
4690000000000000000000000000000000000000000000000000101010101010101010101010101
4700101010101010101010101010101010101010101010101010101010101010101010101010101
4710100000000000000000000000000000000000000000000000000000000000000000000000000
4720000000000000000000000000000000000000000000000000000000000000000000000000000
4730000000000000000000001010101010101010101010101010101010101010101010101010101
4740101010101010101010101010101010101010101010101010100000000000000000000000000
4750000000000000000000000000000000000000000000000000000000000000000000000000000
4760000000000000000000000000000000000000000000000000000000000000000000101010101
4770101010101010101010101010101010101010101010101010101010101010101010101010101
4780101010101010101010100000000000000000000000000000000000000000000000000000000
4790000000000000000000000000000000000000000000000000000000000000000000000000000
4800000000000000000000000000000000000000001010101010101010101010101010101010101
4810101010101010101010101010101010101010101010101010101010101010101010100000000
4820000000000000000000000000000000000000000000000000000000000000000000000000000
4830000000000000000000000000000000000000000000000000000000000000000000000000000
4840000000001010101010101010101010101010101010101010101010101010101010101010101
4850101010101010101010101010101010101010100000000000000000000000000000000000000
4860000000000000000000000000000000000000000000000000000000000000000000000000000
4870000000000000000000000000000000000000000000000000000000001010101010101010101
4880101010101010101010101010101010101010101010101010101010101010101010101010101
4890101010100000000000000000000000000000000000000000000000000000000000000000000
4900000000000000000000000000000000000000000000000000000000000000000000000000000
4910000000000000000000000000001010101010101010101010101010101010101010101010101
4920101010101010101010101010101010101010101010101010101010100000000000000000000
4930000000000000000000000000000000000000000000000000000000000000000000000000000
4940000000000000000000000000000000000000000000000000000000000000000000000000101
4950101010101010101010101010101010101010101010101010101010101010101010101010101
4960101010101010101010101010100000000000000000000000000000000000000000000000000
4970000000000000000000000000000000000000000000000000000000000000000000000000000
4980000000000000000000000000000000000000000000001010101010101010101010101010101
4990101010101010101010101010101010101010101010101010101010101010101010101010100
5000000000000000000000000000000000000000000000000000000000000000000000000000000
5010000000000000000000000000000000000000000000000000000000000000000000000000000
5020000000000000001010101010101010101010101010101010101010101010101010101010101
5030101010101010101010101010101010101010101010100000000000000000000000000000000
5040000000000000000000000000000000000000000000000000000000000000000000000000000
5050000000000000000000000000000000000000000000000000000000000000001010101010101
5060101010101010101010101010101010101010101010101010101010101010101010101010101
5070101010101010100000000000000000000000000000000000000000000000000000000000000
5080000000000000000000000000000000000000000000000000000000000000000000000000000
5090000000000000000000000000000000001010101010101010101010101010101010101010101
5100101010101010101010101010101010101010101010101010101010101010100000000000000
5110000000000000000000000000000000000000000000000000000000000000000000000000000
5120000000000000000000000000000000000000000000000000000000000000000000000000000
5130001010101010101010101010101010101010101010101010101010101010101010101010101
5140101010101010101010101010101010100000000000000000000000000000000000000000000
5150000000000000000000000000000000000000000000000000000000000000000000000000000
5160000000000000000000000000000000000000000000000000001010101010101010101010101
5170101010101010101010101010101010101010101010101010101010101010101010101010101
5180100000000000000000000000000000000000000000000000000000000000000000000000000
5190000000000000000000000000000000000000000000000000000000000000000000000000000
5200000000000000000000001010101010101010101010101010101010101010101010101010101
5210101010101010101010101010101010101010101010101010100000000000000000000000000
5220000000000000000000000000000000000000000000000000000000000000000000000000000
5230000000000000000000000000000000000000000000000000000000000000000000001010101
5240101010101010101010101010101010101010101010101010101010101010101010101010101
5250101010101010101010100000000000000000000000000000000000000000000000000000000
5260000000000000000000000000000000000000000000000000000000000000000000000000000
5270000000000000000000000000000000000000001010101010101010101010101010101010101
5280101010101010101010101010101010101010101010101010101010101010101010100000000
5290000000000000000000000000000000000000000000000000000000000000000000000000000
5300000000000000000000000000000000000000000000000000000000000000000000000000000
5310000000001010101010101010101010101010101010101010101010101010101010101010101
5320101010101010101010101010101010101010100000000000000000000000000000000000000
5330000000000000000000000000000000000000000000000000000000000000000000000000000
5340000000000000000000000000000000000000000000000000000000001010101010101010101
5350101010101010101010101010101010101010101010101010101010101010101010101010101
5360101010100000000000000000000000000000000000000000000000000000000000000000000
5370000000000000000000000000000000000000000000000000000000000000000000000000000
5380000000000000000000000000001010101010101010101010101010101010101010101010101
5390101010101010101010101010101010101010101010101010101010100000000000000000000
5400000000000000000000000000000000000000000000000000000000000000000000000000000
5410000000000000000000000000000000000000000000000000000000000000000000000000001
5420101010101010101010101010101010101010101010101010101010101010101010101010101
5430101010101010101010101010100000000000000000000000000000000000000000000000000
5440000000000000000000000000000000000000000000000000000000000000000000000000000
5450000000000000000000000000000000000000000000001010101010101010101010101010101
5460101010101010101010101010101010101010101010101010101010101010101010101010100
5470000000000000000000000000000000000000000000000000000000000000000000000000000
5480000000000000000000000000000000000000000000000000000000000000000000000000000
5490000000000000001010101010101010101010101010101010101010101010101010101010101
5500101010101010101010101010101010101010101010100000000000000000000000000000000
5510000000000000000000000000000000000000000000000000000000000000000000000000000
5520000000000000000000000000000000000000000000000000000000000000001010101010101
5530101010101010101010101010101010101010101010101010101010101010101010101010101
5540101010101010100000000000000000000000000000000000000000000000000000000000000
5550000000000000000000000000000000000000000000000000000000000000000000000000000
5560000000000000000000000000000000001010101010101010101010101010101010101010101
5570101010101010101010101010101010101010101010101010101010101010100000000000000
5580000000000000000000000000000000000000000000000000000000000000000000000000000
5590000000000000000000000000000000000000000000000000000000000000000000000000000
5600000010101010101010101010101010101010101010101010101010101010101010101010101
5610101010101010101010101010101010100000000000000000000000000000000000000000000
5620000000000000000000000000000000000000000000000000000000000000000000000000000
5630000000000000000000000000000000000000000000000000001010101010101010101010101
5640101010101010101010101010101010101010101010101010101010101010101010101010101
5650100000000000000000000000000000000000000000000000000000000000000000000000000
5660000000000000000000000000000000000000000000000000000000000000000000000000000
5670000000000000000000001010101010101010101010101010101010101010101010101010101
5680101010101010101010101010101010101010101010101010100000000000000000000000000
5690000000000000000000000000000000000000000000000000000000000000000000000000000
5700000000000000000000000000000000000000000000000000000000000000000000001010101
5710101010101010101010101010101010101010101010101010101010101010101010101010101
5720101010101010101010100000000000000000000000000000000000000000000000000000000
5730000000000000000000000000000000000000000000000000000000000000000000000000000
5740000000000000000000000000000000000000001010101010101010101010101010101010101
5750101010101010101010101010101010101010101010101010101010101010101010100000000
5760000000000000000000000000000000000000000000000000000000000000000000000000000
5770000000000000000000000000000000000000000000000000000000000000000000000000000
5780000000000010101010101010101010101010101010101010101010101010101010101010101
5790101010101010101010101010101010101010100000000000000000000000000000000000000
5800000000000000000000000000000000000000000000000000000000000000000000000000000
5810000000000000000000000000000000000000000000000000000000001010101010101010101
5820101010101010101010101010101010101010101010101010101010101010101010101010101
5830101010100000000000000000000000000000000000000000000000000000000000000000000
5840000000000000000000000000000000000000000000000000000000000000000000000000000
5850000000000000000000000000001010101010101010101010101010101010101010101010101
5860101010101010101010101010101010101010101010101010101010100000000000000000000
5870000000000000000000000000000000000000000000000000000000000000000000000000000
5880000000000000000000000000000000000000000000000000000000000000000000000000001
5890101010101010101010101010101010101010101010101010101010101010101010101010101
5900101010101010101010101010100000000000000000000000000000000000000000000000000
5910000000000000000000000000000000000000000000000000000000000000000000000000000
5920000000000000000000000000000000000000000000001010101010101010101010101010101
5930101010101010101010101010101010101010101010101010101010101010101010101010100
5940000000000000000000000000000000000000000000000000000000000000000000000000000
5950000000000000000000000000000000000000000000000000000000000000000000000000000
5960000000000000000010101010101010101010101010101010101010101010101010101010101
5970101010101010101010101010101010101010101010100000000000000000000000000000000
5980000000000000000000000000000000000000000000000000000000000000000000000000000
5990000000000000000000000000000000000000000000000000000000000000001010101010101
6000101010101010101010101010101010101010101010101010101010101010101010101010101
6010101010101010100000000000000000000000000000000000000000000000000000000000000
6020000000000000000000000000000000000000000000000000000000000000000000000000000
6030000000000000000000000000000000001010101010101010101010101010101010101010101
6040101010101010101010101010101010101010101010101010101010101010100000000000000
6050000000000000000000000000000000000000000000000000000000000000000000000000000
6060000000000000000000000000000000000000000000000000000000000000000000000000000
6070000010101010101010101010101010101010101010101010101010101010101010101010101
6080101010101010101010101010101010100000000000000000000000000000000000000000000
6090000000000000000000000000000000000000000000000000000000000000000000000000000
6100000000000000000000000000000000000000000000000000001010101010101010101010101
6110101010101010101010101010101010101010101010101010101010101010101010101010101
6120100000000000000000000000000000000000000000000000000000000000000000000000000
6130000000000000000000000000000000000000000000000000000000000000000000000000000
6140000000000000000000000010101010101010101010101010101010101010101010101010101
6150101010101010101010101010101010101010101010101010100000000000000000000000000
6160000000000000000000000000000000000000000000000000000000000000000000000000000
6170000000000000000000000000000000000000000000000000000000000000000000001010101
6180101010101010101010101010101010101010101010101010101010101010101010101010101
6190101010101010101010100000000000000000000000000000000000000000000000000000000
6200000000000000000000000000000000000000000000000000000000000000000000000000000
6210000000000000000000000000000000000000000010101010101010101010101010101010101
6220101010101010101010101010101010101010101010101010101010101010101010100000000
6230000000000000000000000000000000000000000000000000000000000000000000000000000
6240000000000000000000000000000000000000000000000000000000000000000000000000000
6250000000000010101010101010101010101010101010101010101010101010101010101010101
6260101010101010101010101010101010101010100000000000000000000000000000000000000
6270000000000000000000000000000000000000000000000000000000000000000000000000000
6280000000000000000000000000000000000000000000000000000000001010101010101010101
6290101010101010101010101010101010101010101010101010101010101010101010101010101
6300101010100000000000000000000000000000000000000000000000000000000000000000000
6310000000000000000000000000000000000000000000000000000000000000000000000000000
6320000000000000000000000000000010101010101010101010101010101010101010101010101
6330101010101010101010101010101010101010101010101010101010100000000000000000000
6340000000000000000000000000000000000000000000000000000000000000000000000000000
6350000000000000000000000000000000000000000000000000000000000000000000000000001
6360101010101010101010101010101010101010101010101010101010101010101010101010101
6370101010101010101010101010100000000000000000000000000000000000000000000000000
6380000000000000000000000000000000000000000000000000000000000000000000000000000
6390000000000000000000000000000000000000000000000010101010101010101010101010101
6400101010101010101010101010101010101010101010101010101010101010101010101010100
6410000000000000000000000000000000000000000000000000000000000000000000000000000
6420000000000000000000000000000000000000000000000000000000000000000000000000000
6430000000000000000010101010101010101010101010101010101010101010101010101010101
6440101010101010101010101010101010101010101010100000000000000000000000000000000
6450000000000000000000000000000000000000000000000000000000000000000000000000000
6460000000000000000000000000000000000000000000000000000000000000001010101010101
6470101010101010101010101010101010101010101010101010101010101010101010101010101
6480101010101010100000000000000000000000000000000000000000000000000000000000000
6490000000000000000000000000000000000000000000000000000000000000000000000000000
6500000000000000000000000000000000000010101010101010101010101010101010101010101
6510101010101010101010101010101010101010101010101010101010101010100000000000000
6520000000000000000000000000000000000000000000000000000000000000000000000000000
6530000000000000000000000000000000000000000000000000000000000000000000000000000
6540000010101010101010101010101010101010101010101010101010101010101010101010101
6550101010101010101010101010101010100000000000000000000000000000000000000000000
6560000000000000000000000000000000000000000000000000000000000000000000000000000
6570000000000000000000000000000000000000000000000000000010101010101010101010101
6580101010101010101010101010101010101010101010101010101010101010101010101010101
6590100000000000000000000000000000000000000000000000000000000000000000000000000
6600000000000000000000000000000000000000000000000000000000000000000000000000000
6610000000000000000000000010101010101010101010101010101010101010101010101010101
6620101010101010101010101010101010101010101010101010100000000000000000000000000
6630000000000000000000000000000000000000000000000000000000000000000000000000000
6640000000000000000000000000000000000000000000000000000000000000000000001010101
6650101010101010101010101010101010101010101010101010101010101010101010101010101
6660101010101010101010100000000000000000000000000000000000000000000000000000000
6670000000000000000000000000000000000000000000000000000000000000000000000000000
6680000000000000000000000000000000000000000010101010101010101010101010101010101
6690101010101010101010101010101010101010101010101010101010101010101010100000000
6700000000000000000000000000000000000000000000000000000000000000000000000000000
6710000000000000000000000000000000000000000000000000000000000000000000000000000
6720000000000010101010101010101010101010101010101010101010101010101010101010101
6730101010101010101010101010101010101010100000000000000000000000000000000000000
6740000000000000000000000000000000000000000000000000000000000000000000000000000
6750000000000000000000000000000000000000000000000000000000000010101010101010101
6760101010101010101010101010101010101010101010101010101010101010101010101010101
6770101010100000000000000000000000000000000000000000000000000000000000000000000
6780000000000000000000000000000000000000000000000000000000000000000000000000000
6790000000000000000000000000000010101010101010101010101010101010101010101010101
6800101010101010101010101010101010101010101010101010101010100000000000000000000
6810000000000000000000000000000000000000000000000000000000000000000000000000000
6820000000000000000000000000000000000000000000000000000000000000000000000000001
6830101010101010101010101010101010101010101010101010101010101010101010101010101
6840101010101010101010101010100000000000000000000000000000000000000000000000000
6850000000000000000000000000000000000000000000000000000000000000000000000000000
6860000000000000000000000000000000000000000000000010101010101010101010101010101
6870101010101010101010101010101010101010101010101010101010101010101010101010000
6880000000000000000000000000000000000000000000000000000000000000000000000000000
6890000000000000000000000000000000000000000000000000000000000000000000000000000
6900000000000000000010101010101010101010101010101010101010101010101010101010101
6910101010101010101010101010101010101010101010100000000000000000000000000000000
6920000000000000000000000000000000000000000000000000000000000000000000000000000
6930000000000000000000000000000000000000000000000000000000000000000010101010101
6940101010101010101010101010101010101010101010101010101010101010101010101010101
6950101010101010100000000000000000000000000000000000000000000000000000000000000
6960000000000000000000000000000000000000000000000000000000000000000000000000000
6970000000000000000000000000000000000010101010101010101010101010101010101010101
6980101010101010101010101010101010101010101010101010101010101010100000000000000
6990000000000000000000000000000000000000000000000000000000000000000000000000000
7000000000000000000000000000000000000000000000000000000000000000000000000000000
7010000010101010101010101010101010101010101010101010101010101010101010101010101
7020101010101010101010101010101010100000000000000000000000000000000000000000000
7030000000000000000000000000000000000000000000000000000000000000000000000000000
7040000000000000000000000000000000000000000000000000000010101010101010101010101
7050101010101010101010101010101010101010101010101010101010101010101010101010101
7060100000000000000000000000000000000000000000000000000000000000000000000000000
7070000000000000000000000000000000000000000000000000000000000000000000000000000
7080000000000000000000000000000000000000000000000000000000000000000000000000001
7090101010101010101010101010101010101010101010101010100000000000000000000000000
7100000000000000000000000000000000000000000000000000000000000000000000000000000
7110000000000000000000000000000000000000000000000000000000000000000000000000000
7120000000000000000000000000000000000000000000000000000000000000000000000000000
7130000000000000000000000000000000000000000000000000000000000000000000000000000
7140000000000000000000000000000000000000000000000000000000000000000000000000000
7150000000000000000000000000000000000000000000000000000000000000000000000000000
7160000000000000000000000000000000000000000000000000000000000000000000000000000
7170000000000000000000000000000000000000000000000000000000000000000000000000000
7180000000000000000000000000000000000000000000000000000000000000000000000000000
7190000000000000000000000000000000000000000000000000000000000000000000000000000
7200000000000000000000000000000000000000000000000000000000000000000000000000000
7210000000000000000000000000000000000000000000000000000000000000000000000000000
7220000000000000000000000000000000000000000000000000000000000000000000000000000
7230000000000000000000000000000000000000000000000000000000000000000000000000000
7240000000000000000000000000000000000000000000000000000000000000000000000000000
7250000000000000000000000000000000000000000000000000000000000000000000000000000
7260000000000000000000000000000000000000000000000000000000000000000000000000000
7270000000000000000000000000000000000000000000000000000000000000000000000000000
7280000000000000000000000000000000000000000000000000000000000000000000000000000
7290000000000000000000000000000000000000000000000000000000000000000000000000000
7300000000000000000000000000000000000000000000000000000000000000000000000000000
7310000000000000000000000000000000000000000000000000000000000000000000000000000
7320000000000000000000000000000000000000000000000000000000000000000000000000000
7330000000000000000000000000000000000000000000000000000000000000000000000000000
7340000000000000000000000000000000000000000000000000000000000000000000000000000
7350000000000000000000000000000000000000000000000000000000000000000000000000000
7360000000000000000000000000000000000000000000000000000000000000000000000000000
7370000000000000000000000000000000000000000000000000000000000000000000000000000
7380000000000000000000000000000000000000000000000000000000000000000000000000000
7390000000000000000000000000000000000000000000000000000000000000000000000000000
7400000000000000000000000000000000000000000000000000000000000000000000000000000
7410000000000000000000000000000000000000000000000000000000000000000000000000000
7420000000000000000000000000000000000000000000000000000000000000000000000000000
7430000000000000000000000000000000000000000000000000000000000000000000000000000
7440000000000000000000000000000000000000000000000000000000000000000000000000000
7450000000000000000000000000000000000000000000000000000000000000000000000000000
7460000000000000000000000000000000000000000000000000000000000000000000000000000
7470000000000000000000000000000000000000000000000000000000000000000000000000000
7480000000000000000000000000000000000000000000000000000000000000000000000000000
7490000000000000000000000000000000000000000000000000000000000000000000000000000
7500000000000000000000000000000000000000000000000000000000000000000000000000000
7510000000000000000000000000000000000000000000000000000000000000000000000000000
7520000000000000000000000000000000000000000000000000000000000000000000000000000
7530000000000000000000000000000000000000000000000000000000000000000000000000000
7540000000000000000000000000000000000000000000000000000000000000000000000000000
7550000000000000000000000000000000000000000000000000000000000000000000000000000
7560000000000000000000000000000000000000000000000000000000000000000000000000000
7570000000000000000000000000000000000000000000000000000000000000000000000000000
7580000000000000000000000000000000000000000000000000000000000000000000000000000
7590000000000000000000000000000000000000000000000000000000000000000000000000000
7600000000000000000000000000000000000000000000000000000000000000000000000000000
7610000000000000000000000000000000000000000000000000000000000000000000000000000
7620000000000000000000000000000000000000000000000000000000000000000000000000000
7630000000000000000000000000000000000000000000000000000000000000000000000000000
7640000000000000000000000000000000000000000000000000000000000000000000000000000
765000000000000000000000000000000000000000000000000000000000000000000000000
766
767end
768%%PageTrailer
769%%Trailer
770%%EOF