@@ -31,22 +31,22 @@ discard block |
||
31 | 31 | |
32 | 32 | // If you define the constant K_TCPDF_EXTERNAL_CONFIG, the following settings will be ignored. |
33 | 33 | |
34 | -if (!defined('K_TCPDF_EXTERNAL_CONFIG')) { |
|
34 | +if ( ! defined('K_TCPDF_EXTERNAL_CONFIG')) { |
|
35 | 35 | |
36 | 36 | // DOCUMENT_ROOT fix for IIS Webserver |
37 | - if ((!isset($_SERVER['DOCUMENT_ROOT'])) OR (empty($_SERVER['DOCUMENT_ROOT']))) { |
|
38 | - if(isset($_SERVER['SCRIPT_FILENAME'])) { |
|
39 | - $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF']))); |
|
40 | - } elseif(isset($_SERVER['PATH_TRANSLATED'])) { |
|
41 | - $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF']))); |
|
42 | - } else { |
|
37 | + if (( ! isset($_SERVER['DOCUMENT_ROOT'])) OR (empty($_SERVER['DOCUMENT_ROOT']))) { |
|
38 | + if (isset($_SERVER['SCRIPT_FILENAME'])) { |
|
39 | + $_SERVER['DOCUMENT_ROOT'] = str_replace('\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0 - strlen($_SERVER['PHP_SELF']))); |
|
40 | + } elseif (isset($_SERVER['PATH_TRANSLATED'])) { |
|
41 | + $_SERVER['DOCUMENT_ROOT'] = str_replace('\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0 - strlen($_SERVER['PHP_SELF']))); |
|
42 | + } else { |
|
43 | 43 | // define here your DOCUMENT_ROOT path if the previous fails |
44 | 44 | $_SERVER['DOCUMENT_ROOT'] = '/var/www'; |
45 | 45 | } |
46 | 46 | } |
47 | 47 | |
48 | 48 | // Automatic calculation for the following K_PATH_MAIN constant |
49 | - $k_path_main = str_replace( '\\', '/', realpath(substr(dirname(__FILE__), 0, 0-strlen('config')))); |
|
49 | + $k_path_main = str_replace('\\', '/', realpath(substr(dirname(__FILE__), 0, 0 - strlen('config')))); |
|
50 | 50 | if (substr($k_path_main, -1) != '/') { |
51 | 51 | $k_path_main .= '/'; |
52 | 52 | } |
@@ -55,156 +55,156 @@ discard block |
||
55 | 55 | * Installation path (/var/www/tcpdf/). |
56 | 56 | * By default it is automatically calculated but you can also set it as a fixed string to improve performances. |
57 | 57 | */ |
58 | - define ('K_PATH_MAIN', $k_path_main); |
|
58 | + define('K_PATH_MAIN', $k_path_main); |
|
59 | 59 | |
60 | 60 | // Automatic calculation for the following K_PATH_URL constant |
61 | 61 | $k_path_url = $k_path_main; // default value for console mode |
62 | - if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) { |
|
63 | - if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS'])!='off') { |
|
62 | + if (isset($_SERVER['HTTP_HOST']) AND ( ! empty($_SERVER['HTTP_HOST']))) { |
|
63 | + if (isset($_SERVER['HTTPS']) AND ( ! empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS']) != 'off') { |
|
64 | 64 | $k_path_url = 'https://'; |
65 | 65 | } else { |
66 | 66 | $k_path_url = 'http://'; |
67 | 67 | } |
68 | 68 | $k_path_url .= $_SERVER['HTTP_HOST']; |
69 | - $k_path_url .= str_replace( '\\', '/', substr($_SERVER['PHP_SELF'], 0, -24)); |
|
69 | + $k_path_url .= str_replace('\\', '/', substr($_SERVER['PHP_SELF'], 0, -24)); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
73 | 73 | * URL path to tcpdf installation folder (http://localhost/tcpdf/). |
74 | 74 | * By default it is automatically calculated but you can also set it as a fixed string to improve performances. |
75 | 75 | */ |
76 | - define ('K_PATH_URL', $k_path_url); |
|
76 | + define('K_PATH_URL', $k_path_url); |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * path for PDF fonts |
80 | 80 | * use K_PATH_MAIN.'fonts/old/' for old non-UTF8 fonts |
81 | 81 | */ |
82 | - define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); |
|
82 | + define('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); |
|
83 | 83 | |
84 | 84 | /** |
85 | 85 | * cache directory for temporary files (full path) |
86 | 86 | */ |
87 | - define ('K_PATH_CACHE', K_PATH_MAIN.'cache/'); |
|
87 | + define('K_PATH_CACHE', K_PATH_MAIN.'cache/'); |
|
88 | 88 | |
89 | 89 | /** |
90 | 90 | * cache directory for temporary files (url path) |
91 | 91 | */ |
92 | - define ('K_PATH_URL_CACHE', K_PATH_URL.'cache/'); |
|
92 | + define('K_PATH_URL_CACHE', K_PATH_URL.'cache/'); |
|
93 | 93 | |
94 | 94 | /** |
95 | 95 | *images directory |
96 | 96 | */ |
97 | - define ('K_PATH_IMAGES', K_PATH_MAIN.'images/'); |
|
97 | + define('K_PATH_IMAGES', K_PATH_MAIN.'images/'); |
|
98 | 98 | |
99 | 99 | /** |
100 | 100 | * blank image |
101 | 101 | */ |
102 | - define ('K_BLANK_IMAGE', K_PATH_IMAGES.'_blank.png'); |
|
102 | + define('K_BLANK_IMAGE', K_PATH_IMAGES.'_blank.png'); |
|
103 | 103 | |
104 | 104 | /** |
105 | 105 | * page format |
106 | 106 | */ |
107 | - define ('PDF_PAGE_FORMAT', 'A4'); |
|
107 | + define('PDF_PAGE_FORMAT', 'A4'); |
|
108 | 108 | |
109 | 109 | /** |
110 | 110 | * page orientation (P=portrait, L=landscape) |
111 | 111 | */ |
112 | - define ('PDF_PAGE_ORIENTATION', 'P'); |
|
112 | + define('PDF_PAGE_ORIENTATION', 'P'); |
|
113 | 113 | |
114 | 114 | /** |
115 | 115 | * document creator |
116 | 116 | */ |
117 | - define ('PDF_CREATOR', 'TCPDF'); |
|
117 | + define('PDF_CREATOR', 'TCPDF'); |
|
118 | 118 | |
119 | 119 | /** |
120 | 120 | * document author |
121 | 121 | */ |
122 | - define ('PDF_AUTHOR', 'TCPDF'); |
|
122 | + define('PDF_AUTHOR', 'TCPDF'); |
|
123 | 123 | |
124 | 124 | /** |
125 | 125 | * header title |
126 | 126 | */ |
127 | - define ('PDF_HEADER_TITLE', 'TCPDF Example'); |
|
127 | + define('PDF_HEADER_TITLE', 'TCPDF Example'); |
|
128 | 128 | |
129 | 129 | /** |
130 | 130 | * header description string |
131 | 131 | */ |
132 | - define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org"); |
|
132 | + define('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org"); |
|
133 | 133 | |
134 | 134 | /** |
135 | 135 | * image logo |
136 | 136 | */ |
137 | - define ('PDF_HEADER_LOGO', 'tcpdf_logo.jpg'); |
|
137 | + define('PDF_HEADER_LOGO', 'tcpdf_logo.jpg'); |
|
138 | 138 | |
139 | 139 | /** |
140 | 140 | * header logo image width [mm] |
141 | 141 | */ |
142 | - define ('PDF_HEADER_LOGO_WIDTH', 30); |
|
142 | + define('PDF_HEADER_LOGO_WIDTH', 30); |
|
143 | 143 | |
144 | 144 | /** |
145 | 145 | * document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch] |
146 | 146 | */ |
147 | - define ('PDF_UNIT', 'mm'); |
|
147 | + define('PDF_UNIT', 'mm'); |
|
148 | 148 | |
149 | 149 | /** |
150 | 150 | * header margin |
151 | 151 | */ |
152 | - define ('PDF_MARGIN_HEADER', 5); |
|
152 | + define('PDF_MARGIN_HEADER', 5); |
|
153 | 153 | |
154 | 154 | /** |
155 | 155 | * footer margin |
156 | 156 | */ |
157 | - define ('PDF_MARGIN_FOOTER', 10); |
|
157 | + define('PDF_MARGIN_FOOTER', 10); |
|
158 | 158 | |
159 | 159 | /** |
160 | 160 | * top margin |
161 | 161 | */ |
162 | - define ('PDF_MARGIN_TOP', 27); |
|
162 | + define('PDF_MARGIN_TOP', 27); |
|
163 | 163 | |
164 | 164 | /** |
165 | 165 | * bottom margin |
166 | 166 | */ |
167 | - define ('PDF_MARGIN_BOTTOM', 25); |
|
167 | + define('PDF_MARGIN_BOTTOM', 25); |
|
168 | 168 | |
169 | 169 | /** |
170 | 170 | * left margin |
171 | 171 | */ |
172 | - define ('PDF_MARGIN_LEFT', 15); |
|
172 | + define('PDF_MARGIN_LEFT', 15); |
|
173 | 173 | |
174 | 174 | /** |
175 | 175 | * right margin |
176 | 176 | */ |
177 | - define ('PDF_MARGIN_RIGHT', 15); |
|
177 | + define('PDF_MARGIN_RIGHT', 15); |
|
178 | 178 | |
179 | 179 | /** |
180 | 180 | * default main font name |
181 | 181 | */ |
182 | - define ('PDF_FONT_NAME_MAIN', 'helvetica'); |
|
182 | + define('PDF_FONT_NAME_MAIN', 'helvetica'); |
|
183 | 183 | |
184 | 184 | /** |
185 | 185 | * default main font size |
186 | 186 | */ |
187 | - define ('PDF_FONT_SIZE_MAIN', 10); |
|
187 | + define('PDF_FONT_SIZE_MAIN', 10); |
|
188 | 188 | |
189 | 189 | /** |
190 | 190 | * default data font name |
191 | 191 | */ |
192 | - define ('PDF_FONT_NAME_DATA', 'helvetica'); |
|
192 | + define('PDF_FONT_NAME_DATA', 'helvetica'); |
|
193 | 193 | |
194 | 194 | /** |
195 | 195 | * default data font size |
196 | 196 | */ |
197 | - define ('PDF_FONT_SIZE_DATA', 8); |
|
197 | + define('PDF_FONT_SIZE_DATA', 8); |
|
198 | 198 | |
199 | 199 | /** |
200 | 200 | * default monospaced font name |
201 | 201 | */ |
202 | - define ('PDF_FONT_MONOSPACED', 'courier'); |
|
202 | + define('PDF_FONT_MONOSPACED', 'courier'); |
|
203 | 203 | |
204 | 204 | /** |
205 | 205 | * ratio used to adjust the conversion of pixels to user units |
206 | 206 | */ |
207 | - define ('PDF_IMAGE_SCALE_RATIO', 1.25); |
|
207 | + define('PDF_IMAGE_SCALE_RATIO', 1.25); |
|
208 | 208 | |
209 | 209 | /** |
210 | 210 | * magnification factor for titles |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | /** |
225 | 225 | * reduction factor for small font |
226 | 226 | */ |
227 | - define('K_SMALL_RATIO', 2/3); |
|
227 | + define('K_SMALL_RATIO', 2 / 3); |
|
228 | 228 | |
229 | 229 | /** |
230 | 230 | * set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language |
@@ -30,19 +30,19 @@ discard block |
||
30 | 30 | */ |
31 | 31 | |
32 | 32 | // DOCUMENT_ROOT fix for IIS Webserver |
33 | -if ((!isset($_SERVER['DOCUMENT_ROOT'])) OR (empty($_SERVER['DOCUMENT_ROOT']))) { |
|
34 | - if(isset($_SERVER['SCRIPT_FILENAME'])) { |
|
35 | - $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF']))); |
|
36 | - } elseif(isset($_SERVER['PATH_TRANSLATED'])) { |
|
37 | - $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF']))); |
|
38 | - } else { |
|
33 | +if (( ! isset($_SERVER['DOCUMENT_ROOT'])) OR (empty($_SERVER['DOCUMENT_ROOT']))) { |
|
34 | + if (isset($_SERVER['SCRIPT_FILENAME'])) { |
|
35 | + $_SERVER['DOCUMENT_ROOT'] = str_replace('\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0 - strlen($_SERVER['PHP_SELF']))); |
|
36 | + } elseif (isset($_SERVER['PATH_TRANSLATED'])) { |
|
37 | + $_SERVER['DOCUMENT_ROOT'] = str_replace('\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0 - strlen($_SERVER['PHP_SELF']))); |
|
38 | + } else { |
|
39 | 39 | // define here your DOCUMENT_ROOT path if the previous fails |
40 | 40 | $_SERVER['DOCUMENT_ROOT'] = '/var/www'; |
41 | 41 | } |
42 | 42 | } |
43 | 43 | |
44 | 44 | // Automatic calculation for the following K_PATH_MAIN constant |
45 | -$k_path_main = str_replace( '\\', '/', realpath(substr(dirname(__FILE__), 0, 0-strlen('config')))); |
|
45 | +$k_path_main = str_replace('\\', '/', realpath(substr(dirname(__FILE__), 0, 0 - strlen('config')))); |
|
46 | 46 | if (substr($k_path_main, -1) != '/') { |
47 | 47 | $k_path_main .= '/'; |
48 | 48 | } |
@@ -51,155 +51,155 @@ discard block |
||
51 | 51 | * Installation path (/var/www/tcpdf/). |
52 | 52 | * By default it is automatically calculated but you can also set it as a fixed string to improve performances. |
53 | 53 | */ |
54 | -define ('K_PATH_MAIN', $k_path_main); |
|
54 | +define('K_PATH_MAIN', $k_path_main); |
|
55 | 55 | |
56 | 56 | // Automatic calculation for the following K_PATH_URL constant |
57 | -if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) { |
|
58 | - if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS'])!='off') { |
|
57 | +if (isset($_SERVER['HTTP_HOST']) AND ( ! empty($_SERVER['HTTP_HOST']))) { |
|
58 | + if (isset($_SERVER['HTTPS']) AND ( ! empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS']) != 'off') { |
|
59 | 59 | $k_path_url = 'https://'; |
60 | 60 | } else { |
61 | 61 | $k_path_url = 'http://'; |
62 | 62 | } |
63 | 63 | $k_path_url .= $_SERVER['HTTP_HOST']; |
64 | - $k_path_url .= str_replace( '\\', '/', substr($_SERVER['PHP_SELF'], 0, -24)); |
|
64 | + $k_path_url .= str_replace('\\', '/', substr($_SERVER['PHP_SELF'], 0, -24)); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
68 | 68 | * URL path to tcpdf installation folder (http://localhost/tcpdf/). |
69 | 69 | * By default it is automatically calculated but you can also set it as a fixed string to improve performances.. |
70 | 70 | */ |
71 | -define ('K_PATH_URL', $k_path_url); |
|
71 | +define('K_PATH_URL', $k_path_url); |
|
72 | 72 | |
73 | 73 | /** |
74 | 74 | * path for PDF fonts |
75 | 75 | * use K_PATH_MAIN.'fonts/old/' for old non-UTF8 fonts |
76 | 76 | */ |
77 | -define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); |
|
77 | +define('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); |
|
78 | 78 | |
79 | 79 | /** |
80 | 80 | * cache directory for temporary files (full path) |
81 | 81 | */ |
82 | -define ('K_PATH_CACHE', K_PATH_MAIN.'cache/'); |
|
82 | +define('K_PATH_CACHE', K_PATH_MAIN.'cache/'); |
|
83 | 83 | |
84 | 84 | /** |
85 | 85 | * cache directory for temporary files (url path) |
86 | 86 | */ |
87 | -define ('K_PATH_URL_CACHE', K_PATH_URL.'cache/'); |
|
87 | +define('K_PATH_URL_CACHE', K_PATH_URL.'cache/'); |
|
88 | 88 | |
89 | 89 | /** |
90 | 90 | *images directory |
91 | 91 | */ |
92 | -define ('K_PATH_IMAGES', K_PATH_MAIN.'images/'); |
|
92 | +define('K_PATH_IMAGES', K_PATH_MAIN.'images/'); |
|
93 | 93 | |
94 | 94 | /** |
95 | 95 | * blank image |
96 | 96 | */ |
97 | -define ('K_BLANK_IMAGE', K_PATH_IMAGES.'_blank.png'); |
|
97 | +define('K_BLANK_IMAGE', K_PATH_IMAGES.'_blank.png'); |
|
98 | 98 | |
99 | 99 | /** |
100 | 100 | * page format |
101 | 101 | */ |
102 | -define ('PDF_PAGE_FORMAT', 'A4'); |
|
102 | +define('PDF_PAGE_FORMAT', 'A4'); |
|
103 | 103 | |
104 | 104 | /** |
105 | 105 | * page orientation (P=portrait, L=landscape) |
106 | 106 | */ |
107 | -define ('PDF_PAGE_ORIENTATION', 'P'); |
|
107 | +define('PDF_PAGE_ORIENTATION', 'P'); |
|
108 | 108 | |
109 | 109 | /** |
110 | 110 | * document creator |
111 | 111 | */ |
112 | -define ('PDF_CREATOR', 'TCPDF'); |
|
112 | +define('PDF_CREATOR', 'TCPDF'); |
|
113 | 113 | |
114 | 114 | /** |
115 | 115 | * document author |
116 | 116 | */ |
117 | -define ('PDF_AUTHOR', 'TCPDF'); |
|
117 | +define('PDF_AUTHOR', 'TCPDF'); |
|
118 | 118 | |
119 | 119 | /** |
120 | 120 | * header title |
121 | 121 | */ |
122 | -define ('PDF_HEADER_TITLE', 'TCPDF Example'); |
|
122 | +define('PDF_HEADER_TITLE', 'TCPDF Example'); |
|
123 | 123 | |
124 | 124 | /** |
125 | 125 | * header description string |
126 | 126 | */ |
127 | -define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org"); |
|
127 | +define('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org"); |
|
128 | 128 | |
129 | 129 | /** |
130 | 130 | * image logo |
131 | 131 | */ |
132 | -define ('PDF_HEADER_LOGO', 'tcpdf_logo.jpg'); |
|
132 | +define('PDF_HEADER_LOGO', 'tcpdf_logo.jpg'); |
|
133 | 133 | |
134 | 134 | /** |
135 | 135 | * header logo image width [mm] |
136 | 136 | */ |
137 | -define ('PDF_HEADER_LOGO_WIDTH', 30); |
|
137 | +define('PDF_HEADER_LOGO_WIDTH', 30); |
|
138 | 138 | |
139 | 139 | /** |
140 | 140 | * document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch] |
141 | 141 | */ |
142 | -define ('PDF_UNIT', 'mm'); |
|
142 | +define('PDF_UNIT', 'mm'); |
|
143 | 143 | |
144 | 144 | /** |
145 | 145 | * header margin |
146 | 146 | */ |
147 | -define ('PDF_MARGIN_HEADER', 5); |
|
147 | +define('PDF_MARGIN_HEADER', 5); |
|
148 | 148 | |
149 | 149 | /** |
150 | 150 | * footer margin |
151 | 151 | */ |
152 | -define ('PDF_MARGIN_FOOTER', 10); |
|
152 | +define('PDF_MARGIN_FOOTER', 10); |
|
153 | 153 | |
154 | 154 | /** |
155 | 155 | * top margin |
156 | 156 | */ |
157 | -define ('PDF_MARGIN_TOP', 27); |
|
157 | +define('PDF_MARGIN_TOP', 27); |
|
158 | 158 | |
159 | 159 | /** |
160 | 160 | * bottom margin |
161 | 161 | */ |
162 | -define ('PDF_MARGIN_BOTTOM', 25); |
|
162 | +define('PDF_MARGIN_BOTTOM', 25); |
|
163 | 163 | |
164 | 164 | /** |
165 | 165 | * left margin |
166 | 166 | */ |
167 | -define ('PDF_MARGIN_LEFT', 15); |
|
167 | +define('PDF_MARGIN_LEFT', 15); |
|
168 | 168 | |
169 | 169 | /** |
170 | 170 | * right margin |
171 | 171 | */ |
172 | -define ('PDF_MARGIN_RIGHT', 15); |
|
172 | +define('PDF_MARGIN_RIGHT', 15); |
|
173 | 173 | |
174 | 174 | /** |
175 | 175 | * default main font name |
176 | 176 | */ |
177 | -define ('PDF_FONT_NAME_MAIN', 'helvetica'); |
|
177 | +define('PDF_FONT_NAME_MAIN', 'helvetica'); |
|
178 | 178 | |
179 | 179 | /** |
180 | 180 | * default main font size |
181 | 181 | */ |
182 | -define ('PDF_FONT_SIZE_MAIN', 10); |
|
182 | +define('PDF_FONT_SIZE_MAIN', 10); |
|
183 | 183 | |
184 | 184 | /** |
185 | 185 | * default data font name |
186 | 186 | */ |
187 | -define ('PDF_FONT_NAME_DATA', 'helvetica'); |
|
187 | +define('PDF_FONT_NAME_DATA', 'helvetica'); |
|
188 | 188 | |
189 | 189 | /** |
190 | 190 | * default data font size |
191 | 191 | */ |
192 | -define ('PDF_FONT_SIZE_DATA', 8); |
|
192 | +define('PDF_FONT_SIZE_DATA', 8); |
|
193 | 193 | |
194 | 194 | /** |
195 | 195 | * default monospaced font name |
196 | 196 | */ |
197 | -define ('PDF_FONT_MONOSPACED', 'courier'); |
|
197 | +define('PDF_FONT_MONOSPACED', 'courier'); |
|
198 | 198 | |
199 | 199 | /** |
200 | 200 | * ratio used to adjust the conversion of pixels to user units |
201 | 201 | */ |
202 | -define ('PDF_IMAGE_SCALE_RATIO', 1.25); |
|
202 | +define('PDF_IMAGE_SCALE_RATIO', 1.25); |
|
203 | 203 | |
204 | 204 | /** |
205 | 205 | * magnification factor for titles |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | /** |
220 | 220 | * reduction factor for small font |
221 | 221 | */ |
222 | -define('K_SMALL_RATIO', 2/3); |
|
222 | +define('K_SMALL_RATIO', 2 / 3); |
|
223 | 223 | |
224 | 224 | /** |
225 | 225 | * set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | * @return array barcode representation. |
235 | 235 | * @access protected |
236 | 236 | */ |
237 | - protected function barcode_code39($code, $extended=false, $checksum=false) { |
|
237 | + protected function barcode_code39($code, $extended = false, $checksum = false) { |
|
238 | 238 | $chr['0'] = '111221211'; |
239 | 239 | $chr['1'] = '211211112'; |
240 | 240 | $chr['2'] = '112211112'; |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | $clen = strlen($code); |
301 | 301 | for ($i = 0; $i < $clen; ++$i) { |
302 | 302 | $char = $code{$i}; |
303 | - if(!isset($chr[$char])) { |
|
303 | + if ( ! isset($chr[$char])) { |
|
304 | 304 | // invalid character |
305 | 305 | return false; |
306 | 306 | } |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | chr(124) => '%Q', chr(125) => '%R', chr(126) => '%S', chr(127) => '%T'); |
365 | 365 | $code_ext = ''; |
366 | 366 | $clen = strlen($code); |
367 | - for ($i = 0 ; $i < $clen; ++$i) { |
|
367 | + for ($i = 0; $i < $clen; ++$i) { |
|
368 | 368 | if (ord($code{$i}) > 127) { |
369 | 369 | return false; |
370 | 370 | } |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | 'W', 'X', 'Y', 'Z', '-', '.', ' ', '$', '/', '+', '%'); |
388 | 388 | $sum = 0; |
389 | 389 | $clen = strlen($code); |
390 | - for ($i = 0 ; $i < $clen; ++$i) { |
|
390 | + for ($i = 0; $i < $clen; ++$i) { |
|
391 | 391 | $k = array_keys($chars, $code{$i}); |
392 | 392 | $sum += $k[0]; |
393 | 393 | } |
@@ -488,7 +488,7 @@ discard block |
||
488 | 488 | chr(124) => chr(131).'Q', chr(125) => chr(131).'R', chr(126) => chr(131).'S', chr(127) => chr(131).'T'); |
489 | 489 | $code_ext = ''; |
490 | 490 | $clen = strlen($code); |
491 | - for ($i = 0 ; $i < $clen; ++$i) { |
|
491 | + for ($i = 0; $i < $clen; ++$i) { |
|
492 | 492 | if (ord($code{$i}) > 127) { |
493 | 493 | return false; |
494 | 494 | } |
@@ -503,7 +503,7 @@ discard block |
||
503 | 503 | $clen = strlen($code); |
504 | 504 | for ($i = 0; $i < $clen; ++$i) { |
505 | 505 | $char = $code{$i}; |
506 | - if(!isset($chr[$char])) { |
|
506 | + if ( ! isset($chr[$char])) { |
|
507 | 507 | // invalid character |
508 | 508 | return false; |
509 | 509 | } |
@@ -579,15 +579,15 @@ discard block |
||
579 | 579 | protected function checksum_s25($code) { |
580 | 580 | $len = strlen($code); |
581 | 581 | $sum = 0; |
582 | - for ($i = 0; $i < $len; $i+=2) { |
|
582 | + for ($i = 0; $i < $len; $i += 2) { |
|
583 | 583 | $sum += $code{$i}; |
584 | 584 | } |
585 | 585 | $sum *= 3; |
586 | - for ($i = 1; $i < $len; $i+=2) { |
|
586 | + for ($i = 1; $i < $len; $i += 2) { |
|
587 | 587 | $sum += ($code{$i}); |
588 | 588 | } |
589 | 589 | $r = $sum % 10; |
590 | - if($r > 0) { |
|
590 | + if ($r > 0) { |
|
591 | 591 | $r = (10 - $r); |
592 | 592 | } |
593 | 593 | return $r; |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | * @return array barcode representation. |
603 | 603 | * @access protected |
604 | 604 | */ |
605 | - protected function barcode_msi($code, $checksum=false) { |
|
605 | + protected function barcode_msi($code, $checksum = false) { |
|
606 | 606 | $chr['0'] = '100100100100'; |
607 | 607 | $chr['1'] = '100100100110'; |
608 | 608 | $chr['2'] = '100100110100'; |
@@ -641,7 +641,7 @@ discard block |
||
641 | 641 | $clen = strlen($code); |
642 | 642 | for ($i = 0; $i < $clen; ++$i) { |
643 | 643 | $digit = $code{$i}; |
644 | - if (!isset($chr[$digit])) { |
|
644 | + if ( ! isset($chr[$digit])) { |
|
645 | 645 | // invalid character |
646 | 646 | return false; |
647 | 647 | } |
@@ -661,7 +661,7 @@ discard block |
||
661 | 661 | * @return array barcode representation. |
662 | 662 | * @access protected |
663 | 663 | */ |
664 | - protected function barcode_s25($code, $checksum=false) { |
|
664 | + protected function barcode_s25($code, $checksum = false) { |
|
665 | 665 | $chr['0'] = '10101110111010'; |
666 | 666 | $chr['1'] = '11101010101110'; |
667 | 667 | $chr['2'] = '10111010101110'; |
@@ -676,7 +676,7 @@ discard block |
||
676 | 676 | // add checksum |
677 | 677 | $code .= $this->checksum_s25($code); |
678 | 678 | } |
679 | - if((strlen($code) % 2) != 0) { |
|
679 | + if ((strlen($code) % 2) != 0) { |
|
680 | 680 | // add leading zero if code-length is odd |
681 | 681 | $code = '0'.$code; |
682 | 682 | } |
@@ -684,7 +684,7 @@ discard block |
||
684 | 684 | $clen = strlen($code); |
685 | 685 | for ($i = 0; $i < $clen; ++$i) { |
686 | 686 | $digit = $code{$i}; |
687 | - if (!isset($chr[$digit])) { |
|
687 | + if ( ! isset($chr[$digit])) { |
|
688 | 688 | // invalid character |
689 | 689 | return false; |
690 | 690 | } |
@@ -708,7 +708,7 @@ discard block |
||
708 | 708 | $k = 0; |
709 | 709 | for ($i = 0; $i < $len; ++$i) { |
710 | 710 | $w += 1; |
711 | - if (($i == ($len - 1)) OR (($i < ($len - 1)) AND ($seq{$i} != $seq{($i+1)}))) { |
|
711 | + if (($i == ($len - 1)) OR (($i < ($len - 1)) AND ($seq{$i} != $seq{($i + 1)}))) { |
|
712 | 712 | if ($seq{$i} == '1') { |
713 | 713 | $t = true; // bar |
714 | 714 | } else { |
@@ -732,7 +732,7 @@ discard block |
||
732 | 732 | * @return array barcode representation. |
733 | 733 | * @access protected |
734 | 734 | */ |
735 | - protected function barcode_i25($code, $checksum=false) { |
|
735 | + protected function barcode_i25($code, $checksum = false) { |
|
736 | 736 | $chr['0'] = '11221'; |
737 | 737 | $chr['1'] = '21112'; |
738 | 738 | $chr['2'] = '12112'; |
@@ -749,7 +749,7 @@ discard block |
||
749 | 749 | // add checksum |
750 | 750 | $code .= $this->checksum_s25($code); |
751 | 751 | } |
752 | - if((strlen($code) % 2) != 0) { |
|
752 | + if ((strlen($code) % 2) != 0) { |
|
753 | 753 | // add leading zero if code-length is odd |
754 | 754 | $code = '0'.$code; |
755 | 755 | } |
@@ -761,16 +761,16 @@ discard block |
||
761 | 761 | $clen = strlen($code); |
762 | 762 | for ($i = 0; $i < $clen; $i = ($i + 2)) { |
763 | 763 | $char_bar = $code{$i}; |
764 | - $char_space = $code{$i+1}; |
|
765 | - if((!isset($chr[$char_bar])) OR (!isset($chr[$char_space]))) { |
|
764 | + $char_space = $code{$i + 1}; |
|
765 | + if (( ! isset($chr[$char_bar])) OR ( ! isset($chr[$char_space]))) { |
|
766 | 766 | // invalid character |
767 | 767 | return false; |
768 | 768 | } |
769 | 769 | // create a bar-space sequence |
770 | 770 | $seq = ''; |
771 | 771 | $chrlen = strlen($chr[$char_bar]); |
772 | - for ($s = 0; $s < $chrlen; $s++){ |
|
773 | - $seq .= $chr[$char_bar]{$s} . $chr[$char_space]{$s}; |
|
772 | + for ($s = 0; $s < $chrlen; $s++) { |
|
773 | + $seq .= $chr[$char_bar]{$s}.$chr[$char_space]{$s}; |
|
774 | 774 | } |
775 | 775 | $seqlen = strlen($seq); |
776 | 776 | for ($j = 0; $j < $seqlen; ++$j) { |
@@ -796,7 +796,7 @@ discard block |
||
796 | 796 | * @return array barcode representation. |
797 | 797 | * @access protected |
798 | 798 | */ |
799 | - protected function barcode_c128($code, $type='B') { |
|
799 | + protected function barcode_c128($code, $type = 'B') { |
|
800 | 800 | $chr = array( |
801 | 801 | '212222', /* 00 */ |
802 | 802 | '222122', /* 01 */ |
@@ -908,7 +908,7 @@ discard block |
||
908 | 908 | '200000' /* END */ |
909 | 909 | ); |
910 | 910 | $keys = ''; |
911 | - switch(strtoupper($type)) { |
|
911 | + switch (strtoupper($type)) { |
|
912 | 912 | case 'A': { |
913 | 913 | $startid = 103; |
914 | 914 | $keys = ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'; |
@@ -948,7 +948,7 @@ discard block |
||
948 | 948 | $sum = $startid; |
949 | 949 | $clen = strlen($code); |
950 | 950 | for ($i = 0; $i < $clen; ++$i) { |
951 | - $sum += (strpos($keys, $code{$i}) * ($i+1)); |
|
951 | + $sum += (strpos($keys, $code{$i}) * ($i + 1)); |
|
952 | 952 | } |
953 | 953 | $check = ($sum % 103); |
954 | 954 | // add start, check and stop codes |
@@ -958,10 +958,10 @@ discard block |
||
958 | 958 | $len = strlen($code); |
959 | 959 | for ($i = 0; $i < $len; ++$i) { |
960 | 960 | $ck = strpos($keys, $code{$i}); |
961 | - if (($i == 0) OR ($i > ($len-4))) { |
|
961 | + if (($i == 0) OR ($i > ($len - 4))) { |
|
962 | 962 | $char_num = ord($code{$i}); |
963 | 963 | $seq = $chr[$char_num]; |
964 | - } elseif(($ck >= 0) AND isset($chr[$ck])) { |
|
964 | + } elseif (($ck >= 0) AND isset($chr[$ck])) { |
|
965 | 965 | $seq = $chr[$ck]; |
966 | 966 | } else { |
967 | 967 | // invalid character |
@@ -992,7 +992,7 @@ discard block |
||
992 | 992 | * @return array barcode representation. |
993 | 993 | * @access protected |
994 | 994 | */ |
995 | - protected function barcode_eanupc($code, $len=13) { |
|
995 | + protected function barcode_eanupc($code, $len = 13) { |
|
996 | 996 | $upce = false; |
997 | 997 | if ($len == 6) { |
998 | 998 | $len = 12; // UPC-A |
@@ -1004,21 +1004,21 @@ discard block |
||
1004 | 1004 | $code_len = strlen($code); |
1005 | 1005 | // calculate check digit |
1006 | 1006 | $sum_a = 0; |
1007 | - for ($i = 1; $i < $data_len; $i+=2) { |
|
1007 | + for ($i = 1; $i < $data_len; $i += 2) { |
|
1008 | 1008 | $sum_a += $code{$i}; |
1009 | 1009 | } |
1010 | 1010 | if ($len > 12) { |
1011 | 1011 | $sum_a *= 3; |
1012 | 1012 | } |
1013 | 1013 | $sum_b = 0; |
1014 | - for ($i = 0; $i < $data_len; $i+=2) { |
|
1014 | + for ($i = 0; $i < $data_len; $i += 2) { |
|
1015 | 1015 | $sum_b += ($code{$i}); |
1016 | 1016 | } |
1017 | 1017 | if ($len < 13) { |
1018 | 1018 | $sum_b *= 3; |
1019 | 1019 | } |
1020 | 1020 | $r = ($sum_a + $sum_b) % 10; |
1021 | - if($r > 0) { |
|
1021 | + if ($r > 0) { |
|
1022 | 1022 | $r = (10 - $r); |
1023 | 1023 | } |
1024 | 1024 | if ($code_len == $data_len) { |
@@ -1093,41 +1093,41 @@ discard block |
||
1093 | 1093 | '9'=>'1110100') |
1094 | 1094 | ); |
1095 | 1095 | $parities = array( |
1096 | - '0'=>array('A','A','A','A','A','A'), |
|
1097 | - '1'=>array('A','A','B','A','B','B'), |
|
1098 | - '2'=>array('A','A','B','B','A','B'), |
|
1099 | - '3'=>array('A','A','B','B','B','A'), |
|
1100 | - '4'=>array('A','B','A','A','B','B'), |
|
1101 | - '5'=>array('A','B','B','A','A','B'), |
|
1102 | - '6'=>array('A','B','B','B','A','A'), |
|
1103 | - '7'=>array('A','B','A','B','A','B'), |
|
1104 | - '8'=>array('A','B','A','B','B','A'), |
|
1105 | - '9'=>array('A','B','B','A','B','A') |
|
1096 | + '0'=>array('A', 'A', 'A', 'A', 'A', 'A'), |
|
1097 | + '1'=>array('A', 'A', 'B', 'A', 'B', 'B'), |
|
1098 | + '2'=>array('A', 'A', 'B', 'B', 'A', 'B'), |
|
1099 | + '3'=>array('A', 'A', 'B', 'B', 'B', 'A'), |
|
1100 | + '4'=>array('A', 'B', 'A', 'A', 'B', 'B'), |
|
1101 | + '5'=>array('A', 'B', 'B', 'A', 'A', 'B'), |
|
1102 | + '6'=>array('A', 'B', 'B', 'B', 'A', 'A'), |
|
1103 | + '7'=>array('A', 'B', 'A', 'B', 'A', 'B'), |
|
1104 | + '8'=>array('A', 'B', 'A', 'B', 'B', 'A'), |
|
1105 | + '9'=>array('A', 'B', 'B', 'A', 'B', 'A') |
|
1106 | 1106 | ); |
1107 | 1107 | $upce_parities = array(); |
1108 | 1108 | $upce_parities[0] = array( |
1109 | - '0'=>array('B','B','B','A','A','A'), |
|
1110 | - '1'=>array('B','B','A','B','A','A'), |
|
1111 | - '2'=>array('B','B','A','A','B','A'), |
|
1112 | - '3'=>array('B','B','A','A','A','B'), |
|
1113 | - '4'=>array('B','A','B','B','A','A'), |
|
1114 | - '5'=>array('B','A','A','B','B','A'), |
|
1115 | - '6'=>array('B','A','A','A','B','B'), |
|
1116 | - '7'=>array('B','A','B','A','B','A'), |
|
1117 | - '8'=>array('B','A','B','A','A','B'), |
|
1118 | - '9'=>array('B','A','A','B','A','B') |
|
1109 | + '0'=>array('B', 'B', 'B', 'A', 'A', 'A'), |
|
1110 | + '1'=>array('B', 'B', 'A', 'B', 'A', 'A'), |
|
1111 | + '2'=>array('B', 'B', 'A', 'A', 'B', 'A'), |
|
1112 | + '3'=>array('B', 'B', 'A', 'A', 'A', 'B'), |
|
1113 | + '4'=>array('B', 'A', 'B', 'B', 'A', 'A'), |
|
1114 | + '5'=>array('B', 'A', 'A', 'B', 'B', 'A'), |
|
1115 | + '6'=>array('B', 'A', 'A', 'A', 'B', 'B'), |
|
1116 | + '7'=>array('B', 'A', 'B', 'A', 'B', 'A'), |
|
1117 | + '8'=>array('B', 'A', 'B', 'A', 'A', 'B'), |
|
1118 | + '9'=>array('B', 'A', 'A', 'B', 'A', 'B') |
|
1119 | 1119 | ); |
1120 | 1120 | $upce_parities[1] = array( |
1121 | - '0'=>array('A','A','A','B','B','B'), |
|
1122 | - '1'=>array('A','A','B','A','B','B'), |
|
1123 | - '2'=>array('A','A','B','B','A','B'), |
|
1124 | - '3'=>array('A','A','B','B','B','A'), |
|
1125 | - '4'=>array('A','B','A','A','B','B'), |
|
1126 | - '5'=>array('A','B','B','A','A','B'), |
|
1127 | - '6'=>array('A','B','B','B','A','A'), |
|
1128 | - '7'=>array('A','B','A','B','A','B'), |
|
1129 | - '8'=>array('A','B','A','B','B','A'), |
|
1130 | - '9'=>array('A','B','B','A','B','A') |
|
1121 | + '0'=>array('A', 'A', 'A', 'B', 'B', 'B'), |
|
1122 | + '1'=>array('A', 'A', 'B', 'A', 'B', 'B'), |
|
1123 | + '2'=>array('A', 'A', 'B', 'B', 'A', 'B'), |
|
1124 | + '3'=>array('A', 'A', 'B', 'B', 'B', 'A'), |
|
1125 | + '4'=>array('A', 'B', 'A', 'A', 'B', 'B'), |
|
1126 | + '5'=>array('A', 'B', 'B', 'A', 'A', 'B'), |
|
1127 | + '6'=>array('A', 'B', 'B', 'B', 'A', 'A'), |
|
1128 | + '7'=>array('A', 'B', 'A', 'B', 'A', 'B'), |
|
1129 | + '8'=>array('A', 'B', 'A', 'B', 'B', 'A'), |
|
1130 | + '9'=>array('A', 'B', 'B', 'A', 'B', 'A') |
|
1131 | 1131 | ); |
1132 | 1132 | $k = 0; |
1133 | 1133 | $seq = '101'; // left guard bar |
@@ -1148,7 +1148,7 @@ discard block |
||
1148 | 1148 | } else { |
1149 | 1149 | $p = $parities[$code{0}]; |
1150 | 1150 | for ($i = 1; $i < $half_len; ++$i) { |
1151 | - $seq .= $codes[$p[$i-1]][$code{$i}]; |
|
1151 | + $seq .= $codes[$p[$i - 1]][$code{$i}]; |
|
1152 | 1152 | } |
1153 | 1153 | } |
1154 | 1154 | $seq .= '01010'; // center guard bar |
@@ -1161,7 +1161,7 @@ discard block |
||
1161 | 1161 | $w = 0; |
1162 | 1162 | for ($i = 0; $i < $clen; ++$i) { |
1163 | 1163 | $w += 1; |
1164 | - if (($i == ($clen - 1)) OR (($i < ($clen - 1)) AND ($seq{$i} != $seq{($i+1)}))) { |
|
1164 | + if (($i == ($clen - 1)) OR (($i < ($clen - 1)) AND ($seq{$i} != $seq{($i + 1)}))) { |
|
1165 | 1165 | if ($seq{$i} == '1') { |
1166 | 1166 | $t = true; // bar |
1167 | 1167 | } else { |
@@ -1185,14 +1185,14 @@ discard block |
||
1185 | 1185 | * @return array barcode representation. |
1186 | 1186 | * @access protected |
1187 | 1187 | */ |
1188 | - protected function barcode_eanext($code, $len=5) { |
|
1188 | + protected function barcode_eanext($code, $len = 5) { |
|
1189 | 1189 | //Padding |
1190 | 1190 | $code = str_pad($code, $len, '0', STR_PAD_LEFT); |
1191 | 1191 | // calculate check digit |
1192 | 1192 | if ($len == 2) { |
1193 | 1193 | $r = $code % 4; |
1194 | 1194 | } elseif ($len == 5) { |
1195 | - $r = (3 * ($code{0} + $code{2} + $code{4})) + (9 * ($code{1} + $code{3})); |
|
1195 | + $r = (3 * ($code{0} +$code{2} +$code{4})) + (9 * ($code{1} +$code{3})); |
|
1196 | 1196 | $r %= 10; |
1197 | 1197 | } else { |
1198 | 1198 | return false; |
@@ -1224,22 +1224,22 @@ discard block |
||
1224 | 1224 | ); |
1225 | 1225 | $parities = array(); |
1226 | 1226 | $parities[2] = array( |
1227 | - '0'=>array('A','A'), |
|
1228 | - '1'=>array('A','B'), |
|
1229 | - '2'=>array('B','A'), |
|
1230 | - '3'=>array('B','B') |
|
1227 | + '0'=>array('A', 'A'), |
|
1228 | + '1'=>array('A', 'B'), |
|
1229 | + '2'=>array('B', 'A'), |
|
1230 | + '3'=>array('B', 'B') |
|
1231 | 1231 | ); |
1232 | 1232 | $parities[5] = array( |
1233 | - '0'=>array('B','B','A','A','A'), |
|
1234 | - '1'=>array('B','A','B','A','A'), |
|
1235 | - '2'=>array('B','A','A','B','A'), |
|
1236 | - '3'=>array('B','A','A','A','B'), |
|
1237 | - '4'=>array('A','B','B','A','A'), |
|
1238 | - '5'=>array('A','A','B','B','A'), |
|
1239 | - '6'=>array('A','A','A','B','B'), |
|
1240 | - '7'=>array('A','B','A','B','A'), |
|
1241 | - '8'=>array('A','B','A','A','B'), |
|
1242 | - '9'=>array('A','A','B','A','B') |
|
1233 | + '0'=>array('B', 'B', 'A', 'A', 'A'), |
|
1234 | + '1'=>array('B', 'A', 'B', 'A', 'A'), |
|
1235 | + '2'=>array('B', 'A', 'A', 'B', 'A'), |
|
1236 | + '3'=>array('B', 'A', 'A', 'A', 'B'), |
|
1237 | + '4'=>array('A', 'B', 'B', 'A', 'A'), |
|
1238 | + '5'=>array('A', 'A', 'B', 'B', 'A'), |
|
1239 | + '6'=>array('A', 'A', 'A', 'B', 'B'), |
|
1240 | + '7'=>array('A', 'B', 'A', 'B', 'A'), |
|
1241 | + '8'=>array('A', 'B', 'A', 'A', 'B'), |
|
1242 | + '9'=>array('A', 'A', 'B', 'A', 'B') |
|
1243 | 1243 | ); |
1244 | 1244 | $p = $parities[$len][$r]; |
1245 | 1245 | $seq = '1011'; // left guard bar |
@@ -1260,33 +1260,33 @@ discard block |
||
1260 | 1260 | * @return array barcode representation. |
1261 | 1261 | * @access protected |
1262 | 1262 | */ |
1263 | - protected function barcode_postnet($code, $planet=false) { |
|
1263 | + protected function barcode_postnet($code, $planet = false) { |
|
1264 | 1264 | // bar lenght |
1265 | 1265 | if ($planet) { |
1266 | 1266 | $barlen = Array( |
1267 | - 0 => Array(1,1,2,2,2), |
|
1268 | - 1 => Array(2,2,2,1,1), |
|
1269 | - 2 => Array(2,2,1,2,1), |
|
1270 | - 3 => Array(2,2,1,1,2), |
|
1271 | - 4 => Array(2,1,2,2,1), |
|
1272 | - 5 => Array(2,1,2,1,2), |
|
1273 | - 6 => Array(2,1,1,2,2), |
|
1274 | - 7 => Array(1,2,2,2,1), |
|
1275 | - 8 => Array(1,2,2,1,2), |
|
1276 | - 9 => Array(1,2,1,2,2) |
|
1267 | + 0 => Array(1, 1, 2, 2, 2), |
|
1268 | + 1 => Array(2, 2, 2, 1, 1), |
|
1269 | + 2 => Array(2, 2, 1, 2, 1), |
|
1270 | + 3 => Array(2, 2, 1, 1, 2), |
|
1271 | + 4 => Array(2, 1, 2, 2, 1), |
|
1272 | + 5 => Array(2, 1, 2, 1, 2), |
|
1273 | + 6 => Array(2, 1, 1, 2, 2), |
|
1274 | + 7 => Array(1, 2, 2, 2, 1), |
|
1275 | + 8 => Array(1, 2, 2, 1, 2), |
|
1276 | + 9 => Array(1, 2, 1, 2, 2) |
|
1277 | 1277 | ); |
1278 | 1278 | } else { |
1279 | 1279 | $barlen = Array( |
1280 | - 0 => Array(2,2,1,1,1), |
|
1281 | - 1 => Array(1,1,1,2,2), |
|
1282 | - 2 => Array(1,1,2,1,2), |
|
1283 | - 3 => Array(1,1,2,2,1), |
|
1284 | - 4 => Array(1,2,1,1,2), |
|
1285 | - 5 => Array(1,2,1,2,1), |
|
1286 | - 6 => Array(1,2,2,1,1), |
|
1287 | - 7 => Array(2,1,1,1,2), |
|
1288 | - 8 => Array(2,1,1,2,1), |
|
1289 | - 9 => Array(2,1,2,1,1) |
|
1280 | + 0 => Array(2, 2, 1, 1, 1), |
|
1281 | + 1 => Array(1, 1, 1, 2, 2), |
|
1282 | + 2 => Array(1, 1, 2, 1, 2), |
|
1283 | + 3 => Array(1, 1, 2, 2, 1), |
|
1284 | + 4 => Array(1, 2, 1, 1, 2), |
|
1285 | + 5 => Array(1, 2, 1, 2, 1), |
|
1286 | + 6 => Array(1, 2, 2, 1, 1), |
|
1287 | + 7 => Array(2, 1, 1, 1, 2), |
|
1288 | + 8 => Array(2, 1, 1, 2, 1), |
|
1289 | + 9 => Array(2, 1, 2, 1, 1) |
|
1290 | 1290 | ); |
1291 | 1291 | } |
1292 | 1292 | $bararray = array('code' => $code, 'maxw' => 0, 'maxh' => 2, 'bcode' => array()); |
@@ -1300,7 +1300,7 @@ discard block |
||
1300 | 1300 | $sum += intval($code{$i}); |
1301 | 1301 | } |
1302 | 1302 | $chkd = ($sum % 10); |
1303 | - if($chkd > 0) { |
|
1303 | + if ($chkd > 0) { |
|
1304 | 1304 | $chkd = (10 - $chkd); |
1305 | 1305 | } |
1306 | 1306 | $code .= $chkd; |
@@ -1333,50 +1333,50 @@ discard block |
||
1333 | 1333 | * @return array barcode representation. |
1334 | 1334 | * @access protected |
1335 | 1335 | */ |
1336 | - protected function barcode_rms4cc($code, $kix=false) { |
|
1337 | - $notkix = !$kix; |
|
1336 | + protected function barcode_rms4cc($code, $kix = false) { |
|
1337 | + $notkix = ! $kix; |
|
1338 | 1338 | // bar mode |
1339 | 1339 | // 1 = pos 1, length 2 |
1340 | 1340 | // 2 = pos 1, length 3 |
1341 | 1341 | // 3 = pos 2, length 1 |
1342 | 1342 | // 4 = pos 2, length 2 |
1343 | 1343 | $barmode = array( |
1344 | - '0' => array(3,3,2,2), |
|
1345 | - '1' => array(3,4,1,2), |
|
1346 | - '2' => array(3,4,2,1), |
|
1347 | - '3' => array(4,3,1,2), |
|
1348 | - '4' => array(4,3,2,1), |
|
1349 | - '5' => array(4,4,1,1), |
|
1350 | - '6' => array(3,1,4,2), |
|
1351 | - '7' => array(3,2,3,2), |
|
1352 | - '8' => array(3,2,4,1), |
|
1353 | - '9' => array(4,1,3,2), |
|
1354 | - 'A' => array(4,1,4,1), |
|
1355 | - 'B' => array(4,2,3,1), |
|
1356 | - 'C' => array(3,1,2,4), |
|
1357 | - 'D' => array(3,2,1,4), |
|
1358 | - 'E' => array(3,2,2,3), |
|
1359 | - 'F' => array(4,1,1,4), |
|
1360 | - 'G' => array(4,1,2,3), |
|
1361 | - 'H' => array(4,2,1,3), |
|
1362 | - 'I' => array(1,3,4,2), |
|
1363 | - 'J' => array(1,4,3,2), |
|
1364 | - 'K' => array(1,4,4,1), |
|
1365 | - 'L' => array(2,3,3,2), |
|
1366 | - 'M' => array(2,3,4,1), |
|
1367 | - 'N' => array(2,4,3,1), |
|
1368 | - 'O' => array(1,3,2,4), |
|
1369 | - 'P' => array(1,4,1,4), |
|
1370 | - 'Q' => array(1,4,2,3), |
|
1371 | - 'R' => array(2,3,1,4), |
|
1372 | - 'S' => array(2,3,2,3), |
|
1373 | - 'T' => array(2,4,1,3), |
|
1374 | - 'U' => array(1,1,4,4), |
|
1375 | - 'V' => array(1,2,3,4), |
|
1376 | - 'W' => array(1,2,4,3), |
|
1377 | - 'X' => array(2,1,3,4), |
|
1378 | - 'Y' => array(2,1,4,3), |
|
1379 | - 'Z' => array(2,2,3,3) |
|
1344 | + '0' => array(3, 3, 2, 2), |
|
1345 | + '1' => array(3, 4, 1, 2), |
|
1346 | + '2' => array(3, 4, 2, 1), |
|
1347 | + '3' => array(4, 3, 1, 2), |
|
1348 | + '4' => array(4, 3, 2, 1), |
|
1349 | + '5' => array(4, 4, 1, 1), |
|
1350 | + '6' => array(3, 1, 4, 2), |
|
1351 | + '7' => array(3, 2, 3, 2), |
|
1352 | + '8' => array(3, 2, 4, 1), |
|
1353 | + '9' => array(4, 1, 3, 2), |
|
1354 | + 'A' => array(4, 1, 4, 1), |
|
1355 | + 'B' => array(4, 2, 3, 1), |
|
1356 | + 'C' => array(3, 1, 2, 4), |
|
1357 | + 'D' => array(3, 2, 1, 4), |
|
1358 | + 'E' => array(3, 2, 2, 3), |
|
1359 | + 'F' => array(4, 1, 1, 4), |
|
1360 | + 'G' => array(4, 1, 2, 3), |
|
1361 | + 'H' => array(4, 2, 1, 3), |
|
1362 | + 'I' => array(1, 3, 4, 2), |
|
1363 | + 'J' => array(1, 4, 3, 2), |
|
1364 | + 'K' => array(1, 4, 4, 1), |
|
1365 | + 'L' => array(2, 3, 3, 2), |
|
1366 | + 'M' => array(2, 3, 4, 1), |
|
1367 | + 'N' => array(2, 4, 3, 1), |
|
1368 | + 'O' => array(1, 3, 2, 4), |
|
1369 | + 'P' => array(1, 4, 1, 4), |
|
1370 | + 'Q' => array(1, 4, 2, 3), |
|
1371 | + 'R' => array(2, 3, 1, 4), |
|
1372 | + 'S' => array(2, 3, 2, 3), |
|
1373 | + 'T' => array(2, 4, 1, 3), |
|
1374 | + 'U' => array(1, 1, 4, 4), |
|
1375 | + 'V' => array(1, 2, 3, 4), |
|
1376 | + 'W' => array(1, 2, 4, 3), |
|
1377 | + 'X' => array(2, 1, 3, 4), |
|
1378 | + 'Y' => array(2, 1, 4, 3), |
|
1379 | + 'Z' => array(2, 2, 3, 3) |
|
1380 | 1380 | ); |
1381 | 1381 | $code = strtoupper($code); |
1382 | 1382 | $len = strlen($code); |
@@ -1384,42 +1384,42 @@ discard block |
||
1384 | 1384 | if ($notkix) { |
1385 | 1385 | // table for checksum calculation (row,col) |
1386 | 1386 | $checktable = array( |
1387 | - '0' => array(1,1), |
|
1388 | - '1' => array(1,2), |
|
1389 | - '2' => array(1,3), |
|
1390 | - '3' => array(1,4), |
|
1391 | - '4' => array(1,5), |
|
1392 | - '5' => array(1,0), |
|
1393 | - '6' => array(2,1), |
|
1394 | - '7' => array(2,2), |
|
1395 | - '8' => array(2,3), |
|
1396 | - '9' => array(2,4), |
|
1397 | - 'A' => array(2,5), |
|
1398 | - 'B' => array(2,0), |
|
1399 | - 'C' => array(3,1), |
|
1400 | - 'D' => array(3,2), |
|
1401 | - 'E' => array(3,3), |
|
1402 | - 'F' => array(3,4), |
|
1403 | - 'G' => array(3,5), |
|
1404 | - 'H' => array(3,0), |
|
1405 | - 'I' => array(4,1), |
|
1406 | - 'J' => array(4,2), |
|
1407 | - 'K' => array(4,3), |
|
1408 | - 'L' => array(4,4), |
|
1409 | - 'M' => array(4,5), |
|
1410 | - 'N' => array(4,0), |
|
1411 | - 'O' => array(5,1), |
|
1412 | - 'P' => array(5,2), |
|
1413 | - 'Q' => array(5,3), |
|
1414 | - 'R' => array(5,4), |
|
1415 | - 'S' => array(5,5), |
|
1416 | - 'T' => array(5,0), |
|
1417 | - 'U' => array(0,1), |
|
1418 | - 'V' => array(0,2), |
|
1419 | - 'W' => array(0,3), |
|
1420 | - 'X' => array(0,4), |
|
1421 | - 'Y' => array(0,5), |
|
1422 | - 'Z' => array(0,0) |
|
1387 | + '0' => array(1, 1), |
|
1388 | + '1' => array(1, 2), |
|
1389 | + '2' => array(1, 3), |
|
1390 | + '3' => array(1, 4), |
|
1391 | + '4' => array(1, 5), |
|
1392 | + '5' => array(1, 0), |
|
1393 | + '6' => array(2, 1), |
|
1394 | + '7' => array(2, 2), |
|
1395 | + '8' => array(2, 3), |
|
1396 | + '9' => array(2, 4), |
|
1397 | + 'A' => array(2, 5), |
|
1398 | + 'B' => array(2, 0), |
|
1399 | + 'C' => array(3, 1), |
|
1400 | + 'D' => array(3, 2), |
|
1401 | + 'E' => array(3, 3), |
|
1402 | + 'F' => array(3, 4), |
|
1403 | + 'G' => array(3, 5), |
|
1404 | + 'H' => array(3, 0), |
|
1405 | + 'I' => array(4, 1), |
|
1406 | + 'J' => array(4, 2), |
|
1407 | + 'K' => array(4, 3), |
|
1408 | + 'L' => array(4, 4), |
|
1409 | + 'M' => array(4, 5), |
|
1410 | + 'N' => array(4, 0), |
|
1411 | + 'O' => array(5, 1), |
|
1412 | + 'P' => array(5, 2), |
|
1413 | + 'Q' => array(5, 3), |
|
1414 | + 'R' => array(5, 4), |
|
1415 | + 'S' => array(5, 5), |
|
1416 | + 'T' => array(5, 0), |
|
1417 | + 'U' => array(0, 1), |
|
1418 | + 'V' => array(0, 2), |
|
1419 | + 'W' => array(0, 3), |
|
1420 | + 'X' => array(0, 4), |
|
1421 | + 'Y' => array(0, 5), |
|
1422 | + 'Z' => array(0, 0) |
|
1423 | 1423 | ); |
1424 | 1424 | $row = 0; |
1425 | 1425 | $col = 0; |
@@ -1429,7 +1429,7 @@ discard block |
||
1429 | 1429 | } |
1430 | 1430 | $row %= 6; |
1431 | 1431 | $col %= 6; |
1432 | - $chk = array_keys($checktable, array($row,$col)); |
|
1432 | + $chk = array_keys($checktable, array($row, $col)); |
|
1433 | 1433 | $code .= $chk[0]; |
1434 | 1434 | ++$len; |
1435 | 1435 | } |
@@ -1514,7 +1514,7 @@ discard block |
||
1514 | 1514 | $code = 'A'.strtoupper($code).'A'; |
1515 | 1515 | $len = strlen($code); |
1516 | 1516 | for ($i = 0; $i < $len; ++$i) { |
1517 | - if (!isset($chr[$code{$i}])) { |
|
1517 | + if ( ! isset($chr[$code{$i}])) { |
|
1518 | 1518 | return false; |
1519 | 1519 | } |
1520 | 1520 | $seq = $chr[$code{$i}]; |
@@ -1606,7 +1606,7 @@ discard block |
||
1606 | 1606 | $code = 'S'.$code.'S'; |
1607 | 1607 | $len += 3; |
1608 | 1608 | for ($i = 0; $i < $len; ++$i) { |
1609 | - if (!isset($chr[$code{$i}])) { |
|
1609 | + if ( ! isset($chr[$code{$i}])) { |
|
1610 | 1610 | return false; |
1611 | 1611 | } |
1612 | 1612 | $seq = $chr[$code{$i}]; |
@@ -1679,7 +1679,7 @@ discard block |
||
1679 | 1679 | break; |
1680 | 1680 | } |
1681 | 1681 | } |
1682 | - } while($code != 0); |
|
1682 | + } while ($code != 0); |
|
1683 | 1683 | $seq = strrev($seq); |
1684 | 1684 | $k = 0; |
1685 | 1685 | $bararray = array('code' => $code, 'maxw' => 0, 'maxh' => 2, 'bcode' => array()); |
@@ -1722,10 +1722,10 @@ discard block |
||
1722 | 1722 | * @access protected |
1723 | 1723 | */ |
1724 | 1724 | protected function barcode_imb($code) { |
1725 | - $asc_chr = array(4,0,2,6,3,5,1,9,8,7,1,2,0,6,4,8,2,9,5,3,0,1,3,7,4,6,8,9,2,0,5,1,9,4,3,8,6,7,1,2,4,3,9,5,7,8,3,0,2,1,4,0,9,1,7,0,2,4,6,3,7,1,9,5,8); |
|
1726 | - $dsc_chr = array(7,1,9,5,8,0,2,4,6,3,5,8,9,7,3,0,6,1,7,4,6,8,9,2,5,1,7,5,4,3,8,7,6,0,2,5,4,9,3,0,1,6,8,2,0,4,5,9,6,7,5,2,6,3,8,5,1,9,8,7,4,0,2,6,3); |
|
1727 | - $asc_pos = array(3,0,8,11,1,12,8,11,10,6,4,12,2,7,9,6,7,9,2,8,4,0,12,7,10,9,0,7,10,5,7,9,6,8,2,12,1,4,2,0,1,5,4,6,12,1,0,9,4,7,5,10,2,6,9,11,2,12,6,7,5,11,0,3,2); |
|
1728 | - $dsc_pos = array(2,10,12,5,9,1,5,4,3,9,11,5,10,1,6,3,4,1,10,0,2,11,8,6,1,12,3,8,6,4,4,11,0,6,1,9,11,5,3,7,3,10,7,11,8,2,10,3,5,8,0,3,12,11,8,4,5,1,3,0,7,12,9,8,10); |
|
1725 | + $asc_chr = array(4, 0, 2, 6, 3, 5, 1, 9, 8, 7, 1, 2, 0, 6, 4, 8, 2, 9, 5, 3, 0, 1, 3, 7, 4, 6, 8, 9, 2, 0, 5, 1, 9, 4, 3, 8, 6, 7, 1, 2, 4, 3, 9, 5, 7, 8, 3, 0, 2, 1, 4, 0, 9, 1, 7, 0, 2, 4, 6, 3, 7, 1, 9, 5, 8); |
|
1726 | + $dsc_chr = array(7, 1, 9, 5, 8, 0, 2, 4, 6, 3, 5, 8, 9, 7, 3, 0, 6, 1, 7, 4, 6, 8, 9, 2, 5, 1, 7, 5, 4, 3, 8, 7, 6, 0, 2, 5, 4, 9, 3, 0, 1, 6, 8, 2, 0, 4, 5, 9, 6, 7, 5, 2, 6, 3, 8, 5, 1, 9, 8, 7, 4, 0, 2, 6, 3); |
|
1727 | + $asc_pos = array(3, 0, 8, 11, 1, 12, 8, 11, 10, 6, 4, 12, 2, 7, 9, 6, 7, 9, 2, 8, 4, 0, 12, 7, 10, 9, 0, 7, 10, 5, 7, 9, 6, 8, 2, 12, 1, 4, 2, 0, 1, 5, 4, 6, 12, 1, 0, 9, 4, 7, 5, 10, 2, 6, 9, 11, 2, 12, 6, 7, 5, 11, 0, 3, 2); |
|
1728 | + $dsc_pos = array(2, 10, 12, 5, 9, 1, 5, 4, 3, 9, 11, 5, 10, 1, 6, 3, 4, 1, 10, 0, 2, 11, 8, 6, 1, 12, 3, 8, 6, 4, 4, 11, 0, 6, 1, 9, 11, 5, 3, 7, 3, 10, 7, 11, 8, 2, 10, 3, 5, 8, 0, 3, 12, 11, 8, 4, 5, 1, 3, 0, 7, 12, 9, 8, 10); |
|
1729 | 1729 | $code_arr = explode('-', $code); |
1730 | 1730 | $tracking_number = $code_arr[0]; |
1731 | 1731 | if (isset($code_arr[1])) { |
@@ -1793,7 +1793,7 @@ discard block |
||
1793 | 1793 | // convert codewords to characters |
1794 | 1794 | $characters = array(); |
1795 | 1795 | $bitmask = 512; |
1796 | - foreach($codewords as $k => $val) { |
|
1796 | + foreach ($codewords as $k => $val) { |
|
1797 | 1797 | if ($val <= 1286) { |
1798 | 1798 | $chrcode = $table5of13[$val]; |
1799 | 1799 | } else { |
@@ -1848,11 +1848,11 @@ discard block |
||
1848 | 1848 | public function dec_to_hex($number) { |
1849 | 1849 | $i = 0; |
1850 | 1850 | $hex = array(); |
1851 | - if($number == 0) { |
|
1851 | + if ($number == 0) { |
|
1852 | 1852 | return '00'; |
1853 | 1853 | } |
1854 | - while($number > 0) { |
|
1855 | - if($number == 0) { |
|
1854 | + while ($number > 0) { |
|
1855 | + if ($number == 0) { |
|
1856 | 1856 | array_push($hex, '0'); |
1857 | 1857 | } else { |
1858 | 1858 | array_push($hex, strtoupper(dechex(bcmod($number, '16')))); |
@@ -1873,7 +1873,7 @@ discard block |
||
1873 | 1873 | $dec = 0; |
1874 | 1874 | $bitval = 1; |
1875 | 1875 | $len = strlen($hex); |
1876 | - for($pos = ($len - 1); $pos >= 0; --$pos) { |
|
1876 | + for ($pos = ($len - 1); $pos >= 0; --$pos) { |
|
1877 | 1877 | $dec = bcadd($dec, bcmul(hexdec($hex{$pos}), $bitval)); |
1878 | 1878 | $bitval = bcmul($bitval, 16); |
1879 | 1879 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | */ |
92 | 92 | |
93 | 93 | // definitions |
94 | -if (!defined('QRCODEDEFS')) { |
|
94 | +if ( ! defined('QRCODEDEFS')) { |
|
95 | 95 | |
96 | 96 | /** |
97 | 97 | * Indicate that definitions for this class are set |
@@ -180,12 +180,12 @@ discard block |
||
180 | 180 | /** |
181 | 181 | * Matrix index to get width from $capacity array. |
182 | 182 | */ |
183 | - define('QRCAP_WIDTH', 0); |
|
183 | + define('QRCAP_WIDTH', 0); |
|
184 | 184 | |
185 | 185 | /** |
186 | 186 | * Matrix index to get number of words from $capacity array. |
187 | 187 | */ |
188 | - define('QRCAP_WORDS', 1); |
|
188 | + define('QRCAP_WORDS', 1); |
|
189 | 189 | |
190 | 190 | /** |
191 | 191 | * Matrix index to get remainder from $capacity array. |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | /** |
196 | 196 | * Matrix index to get error correction level from $capacity array. |
197 | 197 | */ |
198 | - define('QRCAP_EC', 3); |
|
198 | + define('QRCAP_EC', 3); |
|
199 | 199 | |
200 | 200 | // ----------------------------------------------------- |
201 | 201 | |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | /** |
205 | 205 | * Number of header bits for structured mode |
206 | 206 | */ |
207 | - define('STRUCTURE_HEADER_BITS', 20); |
|
207 | + define('STRUCTURE_HEADER_BITS', 20); |
|
208 | 208 | |
209 | 209 | /** |
210 | 210 | * Max number of symbols for structured mode |
@@ -218,12 +218,12 @@ discard block |
||
218 | 218 | /** |
219 | 219 | * Down point base value for case 1 mask pattern (concatenation of same color in a line or a column) |
220 | 220 | */ |
221 | - define('N1', 3); |
|
221 | + define('N1', 3); |
|
222 | 222 | |
223 | 223 | /** |
224 | 224 | * Down point base value for case 2 mask pattern (module block of same color) |
225 | 225 | */ |
226 | - define('N2', 3); |
|
226 | + define('N2', 3); |
|
227 | 227 | |
228 | 228 | /** |
229 | 229 | * Down point base value for case 3 mask pattern (1:1:3:1:1(dark:bright:dark:bright:dark)pattern in a line or a column) |
@@ -260,18 +260,18 @@ discard block |
||
260 | 260 | |
261 | 261 | // #*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# |
262 | 262 | |
263 | -if (!class_exists('QRcode', false)) { |
|
263 | +if ( ! class_exists('QRcode', false)) { |
|
264 | 264 | |
265 | 265 | // for compaibility with PHP4 |
266 | - if (!function_exists('str_split')) { |
|
266 | + if ( ! function_exists('str_split')) { |
|
267 | 267 | /** |
268 | 268 | * Convert a string to an array (needed for PHP4 compatibility) |
269 | 269 | * @param string $string The input string. |
270 | 270 | * @param int $split_length Maximum length of the chunk. |
271 | 271 | * @return If the optional split_length parameter is specified, the returned array will be broken down into chunks with each being split_length in length, otherwise each chunk will be one character in length. FALSE is returned if split_length is less than 1. If the split_length length exceeds the length of string , the entire string is returned as the first (and only) array element. |
272 | 272 | */ |
273 | - function str_split($string, $split_length=1) { |
|
274 | - if ((strlen($string) > $split_length) OR (!$split_length)) { |
|
273 | + function str_split($string, $split_length = 1) { |
|
274 | + if ((strlen($string) > $split_length) OR ( ! $split_length)) { |
|
275 | 275 | do { |
276 | 276 | $c = strlen($string); |
277 | 277 | $parts[] = substr($string, 0, $split_length); |
@@ -481,7 +481,7 @@ discard block |
||
481 | 481 | -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // |
482 | 482 | -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // |
483 | 483 | 36, -1, -1, -1, 37, 38, -1, -1, -1, -1, 39, 40, -1, 41, 42, 43, // |
484 | - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 44, -1, -1, -1, -1, -1, // |
|
484 | + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 44, -1, -1, -1, -1, -1, // |
|
485 | 485 | -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, // |
486 | 486 | 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, // |
487 | 487 | -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, // |
@@ -494,47 +494,47 @@ discard block |
||
494 | 494 | * @access protected |
495 | 495 | */ |
496 | 496 | protected $capacity = array( |
497 | - array( 0, 0, 0, array( 0, 0, 0, 0)), // |
|
498 | - array( 21, 26, 0, array( 7, 10, 13, 17)), // 1 |
|
499 | - array( 25, 44, 7, array( 10, 16, 22, 28)), // |
|
500 | - array( 29, 70, 7, array( 15, 26, 36, 44)), // |
|
501 | - array( 33, 100, 7, array( 20, 36, 52, 64)), // |
|
502 | - array( 37, 134, 7, array( 26, 48, 72, 88)), // 5 |
|
503 | - array( 41, 172, 7, array( 36, 64, 96, 112)), // |
|
504 | - array( 45, 196, 0, array( 40, 72, 108, 130)), // |
|
505 | - array( 49, 242, 0, array( 48, 88, 132, 156)), // |
|
506 | - array( 53, 292, 0, array( 60, 110, 160, 192)), // |
|
507 | - array( 57, 346, 0, array( 72, 130, 192, 224)), // 10 |
|
508 | - array( 61, 404, 0, array( 80, 150, 224, 264)), // |
|
509 | - array( 65, 466, 0, array( 96, 176, 260, 308)), // |
|
510 | - array( 69, 532, 0, array( 104, 198, 288, 352)), // |
|
511 | - array( 73, 581, 3, array( 120, 216, 320, 384)), // |
|
512 | - array( 77, 655, 3, array( 132, 240, 360, 432)), // 15 |
|
513 | - array( 81, 733, 3, array( 144, 280, 408, 480)), // |
|
514 | - array( 85, 815, 3, array( 168, 308, 448, 532)), // |
|
515 | - array( 89, 901, 3, array( 180, 338, 504, 588)), // |
|
516 | - array( 93, 991, 3, array( 196, 364, 546, 650)), // |
|
517 | - array( 97, 1085, 3, array( 224, 416, 600, 700)), // 20 |
|
518 | - array(101, 1156, 4, array( 224, 442, 644, 750)), // |
|
519 | - array(105, 1258, 4, array( 252, 476, 690, 816)), // |
|
520 | - array(109, 1364, 4, array( 270, 504, 750, 900)), // |
|
521 | - array(113, 1474, 4, array( 300, 560, 810, 960)), // |
|
522 | - array(117, 1588, 4, array( 312, 588, 870, 1050)), // 25 |
|
523 | - array(121, 1706, 4, array( 336, 644, 952, 1110)), // |
|
524 | - array(125, 1828, 4, array( 360, 700, 1020, 1200)), // |
|
525 | - array(129, 1921, 3, array( 390, 728, 1050, 1260)), // |
|
526 | - array(133, 2051, 3, array( 420, 784, 1140, 1350)), // |
|
527 | - array(137, 2185, 3, array( 450, 812, 1200, 1440)), // 30 |
|
528 | - array(141, 2323, 3, array( 480, 868, 1290, 1530)), // |
|
529 | - array(145, 2465, 3, array( 510, 924, 1350, 1620)), // |
|
530 | - array(149, 2611, 3, array( 540, 980, 1440, 1710)), // |
|
531 | - array(153, 2761, 3, array( 570, 1036, 1530, 1800)), // |
|
532 | - array(157, 2876, 0, array( 570, 1064, 1590, 1890)), // 35 |
|
533 | - array(161, 3034, 0, array( 600, 1120, 1680, 1980)), // |
|
534 | - array(165, 3196, 0, array( 630, 1204, 1770, 2100)), // |
|
535 | - array(169, 3362, 0, array( 660, 1260, 1860, 2220)), // |
|
536 | - array(173, 3532, 0, array( 720, 1316, 1950, 2310)), // |
|
537 | - array(177, 3706, 0, array( 750, 1372, 2040, 2430)) // 40 |
|
497 | + array(0, 0, 0, array(0, 0, 0, 0)), // |
|
498 | + array(21, 26, 0, array(7, 10, 13, 17)), // 1 |
|
499 | + array(25, 44, 7, array(10, 16, 22, 28)), // |
|
500 | + array(29, 70, 7, array(15, 26, 36, 44)), // |
|
501 | + array(33, 100, 7, array(20, 36, 52, 64)), // |
|
502 | + array(37, 134, 7, array(26, 48, 72, 88)), // 5 |
|
503 | + array(41, 172, 7, array(36, 64, 96, 112)), // |
|
504 | + array(45, 196, 0, array(40, 72, 108, 130)), // |
|
505 | + array(49, 242, 0, array(48, 88, 132, 156)), // |
|
506 | + array(53, 292, 0, array(60, 110, 160, 192)), // |
|
507 | + array(57, 346, 0, array(72, 130, 192, 224)), // 10 |
|
508 | + array(61, 404, 0, array(80, 150, 224, 264)), // |
|
509 | + array(65, 466, 0, array(96, 176, 260, 308)), // |
|
510 | + array(69, 532, 0, array(104, 198, 288, 352)), // |
|
511 | + array(73, 581, 3, array(120, 216, 320, 384)), // |
|
512 | + array(77, 655, 3, array(132, 240, 360, 432)), // 15 |
|
513 | + array(81, 733, 3, array(144, 280, 408, 480)), // |
|
514 | + array(85, 815, 3, array(168, 308, 448, 532)), // |
|
515 | + array(89, 901, 3, array(180, 338, 504, 588)), // |
|
516 | + array(93, 991, 3, array(196, 364, 546, 650)), // |
|
517 | + array(97, 1085, 3, array(224, 416, 600, 700)), // 20 |
|
518 | + array(101, 1156, 4, array(224, 442, 644, 750)), // |
|
519 | + array(105, 1258, 4, array(252, 476, 690, 816)), // |
|
520 | + array(109, 1364, 4, array(270, 504, 750, 900)), // |
|
521 | + array(113, 1474, 4, array(300, 560, 810, 960)), // |
|
522 | + array(117, 1588, 4, array(312, 588, 870, 1050)), // 25 |
|
523 | + array(121, 1706, 4, array(336, 644, 952, 1110)), // |
|
524 | + array(125, 1828, 4, array(360, 700, 1020, 1200)), // |
|
525 | + array(129, 1921, 3, array(390, 728, 1050, 1260)), // |
|
526 | + array(133, 2051, 3, array(420, 784, 1140, 1350)), // |
|
527 | + array(137, 2185, 3, array(450, 812, 1200, 1440)), // 30 |
|
528 | + array(141, 2323, 3, array(480, 868, 1290, 1530)), // |
|
529 | + array(145, 2465, 3, array(510, 924, 1350, 1620)), // |
|
530 | + array(149, 2611, 3, array(540, 980, 1440, 1710)), // |
|
531 | + array(153, 2761, 3, array(570, 1036, 1530, 1800)), // |
|
532 | + array(157, 2876, 0, array(570, 1064, 1590, 1890)), // 35 |
|
533 | + array(161, 3034, 0, array(600, 1120, 1680, 1980)), // |
|
534 | + array(165, 3196, 0, array(630, 1204, 1770, 2100)), // |
|
535 | + array(169, 3362, 0, array(660, 1260, 1860, 2220)), // |
|
536 | + array(173, 3532, 0, array(720, 1316, 1950, 2310)), // |
|
537 | + array(177, 3706, 0, array(750, 1372, 2040, 2430)) // 40 |
|
538 | 538 | ); |
539 | 539 | |
540 | 540 | /** |
@@ -543,9 +543,9 @@ discard block |
||
543 | 543 | */ |
544 | 544 | protected $lengthTableBits = array( |
545 | 545 | array(10, 12, 14), |
546 | - array( 9, 11, 13), |
|
547 | - array( 8, 16, 16), |
|
548 | - array( 8, 10, 12) |
|
546 | + array(9, 11, 13), |
|
547 | + array(8, 16, 16), |
|
548 | + array(8, 10, 12) |
|
549 | 549 | ); |
550 | 550 | |
551 | 551 | /** |
@@ -554,47 +554,47 @@ discard block |
||
554 | 554 | * @access protected |
555 | 555 | */ |
556 | 556 | protected $eccTable = array( |
557 | - array(array( 0, 0), array( 0, 0), array( 0, 0), array( 0, 0)), // |
|
558 | - array(array( 1, 0), array( 1, 0), array( 1, 0), array( 1, 0)), // 1 |
|
559 | - array(array( 1, 0), array( 1, 0), array( 1, 0), array( 1, 0)), // |
|
560 | - array(array( 1, 0), array( 1, 0), array( 2, 0), array( 2, 0)), // |
|
561 | - array(array( 1, 0), array( 2, 0), array( 2, 0), array( 4, 0)), // |
|
562 | - array(array( 1, 0), array( 2, 0), array( 2, 2), array( 2, 2)), // 5 |
|
563 | - array(array( 2, 0), array( 4, 0), array( 4, 0), array( 4, 0)), // |
|
564 | - array(array( 2, 0), array( 4, 0), array( 2, 4), array( 4, 1)), // |
|
565 | - array(array( 2, 0), array( 2, 2), array( 4, 2), array( 4, 2)), // |
|
566 | - array(array( 2, 0), array( 3, 2), array( 4, 4), array( 4, 4)), // |
|
567 | - array(array( 2, 2), array( 4, 1), array( 6, 2), array( 6, 2)), // 10 |
|
568 | - array(array( 4, 0), array( 1, 4), array( 4, 4), array( 3, 8)), // |
|
569 | - array(array( 2, 2), array( 6, 2), array( 4, 6), array( 7, 4)), // |
|
570 | - array(array( 4, 0), array( 8, 1), array( 8, 4), array(12, 4)), // |
|
571 | - array(array( 3, 1), array( 4, 5), array(11, 5), array(11, 5)), // |
|
572 | - array(array( 5, 1), array( 5, 5), array( 5, 7), array(11, 7)), // 15 |
|
573 | - array(array( 5, 1), array( 7, 3), array(15, 2), array( 3, 13)), // |
|
574 | - array(array( 1, 5), array(10, 1), array( 1, 15), array( 2, 17)), // |
|
575 | - array(array( 5, 1), array( 9, 4), array(17, 1), array( 2, 19)), // |
|
576 | - array(array( 3, 4), array( 3, 11), array(17, 4), array( 9, 16)), // |
|
577 | - array(array( 3, 5), array( 3, 13), array(15, 5), array(15, 10)), // 20 |
|
578 | - array(array( 4, 4), array(17, 0), array(17, 6), array(19, 6)), // |
|
579 | - array(array( 2, 7), array(17, 0), array( 7, 16), array(34, 0)), // |
|
580 | - array(array( 4, 5), array( 4, 14), array(11, 14), array(16, 14)), // |
|
581 | - array(array( 6, 4), array( 6, 14), array(11, 16), array(30, 2)), // |
|
582 | - array(array( 8, 4), array( 8, 13), array( 7, 22), array(22, 13)), // 25 |
|
583 | - array(array(10, 2), array(19, 4), array(28, 6), array(33, 4)), // |
|
584 | - array(array( 8, 4), array(22, 3), array( 8, 26), array(12, 28)), // |
|
585 | - array(array( 3, 10), array( 3, 23), array( 4, 31), array(11, 31)), // |
|
586 | - array(array( 7, 7), array(21, 7), array( 1, 37), array(19, 26)), // |
|
587 | - array(array( 5, 10), array(19, 10), array(15, 25), array(23, 25)), // 30 |
|
588 | - array(array(13, 3), array( 2, 29), array(42, 1), array(23, 28)), // |
|
589 | - array(array(17, 0), array(10, 23), array(10, 35), array(19, 35)), // |
|
590 | - array(array(17, 1), array(14, 21), array(29, 19), array(11, 46)), // |
|
591 | - array(array(13, 6), array(14, 23), array(44, 7), array(59, 1)), // |
|
592 | - array(array(12, 7), array(12, 26), array(39, 14), array(22, 41)), // 35 |
|
593 | - array(array( 6, 14), array( 6, 34), array(46, 10), array( 2, 64)), // |
|
594 | - array(array(17, 4), array(29, 14), array(49, 10), array(24, 46)), // |
|
595 | - array(array( 4, 18), array(13, 32), array(48, 14), array(42, 32)), // |
|
596 | - array(array(20, 4), array(40, 7), array(43, 22), array(10, 67)), // |
|
597 | - array(array(19, 6), array(18, 31), array(34, 34), array(20, 61)) // 40 |
|
557 | + array(array(0, 0), array(0, 0), array(0, 0), array(0, 0)), // |
|
558 | + array(array(1, 0), array(1, 0), array(1, 0), array(1, 0)), // 1 |
|
559 | + array(array(1, 0), array(1, 0), array(1, 0), array(1, 0)), // |
|
560 | + array(array(1, 0), array(1, 0), array(2, 0), array(2, 0)), // |
|
561 | + array(array(1, 0), array(2, 0), array(2, 0), array(4, 0)), // |
|
562 | + array(array(1, 0), array(2, 0), array(2, 2), array(2, 2)), // 5 |
|
563 | + array(array(2, 0), array(4, 0), array(4, 0), array(4, 0)), // |
|
564 | + array(array(2, 0), array(4, 0), array(2, 4), array(4, 1)), // |
|
565 | + array(array(2, 0), array(2, 2), array(4, 2), array(4, 2)), // |
|
566 | + array(array(2, 0), array(3, 2), array(4, 4), array(4, 4)), // |
|
567 | + array(array(2, 2), array(4, 1), array(6, 2), array(6, 2)), // 10 |
|
568 | + array(array(4, 0), array(1, 4), array(4, 4), array(3, 8)), // |
|
569 | + array(array(2, 2), array(6, 2), array(4, 6), array(7, 4)), // |
|
570 | + array(array(4, 0), array(8, 1), array(8, 4), array(12, 4)), // |
|
571 | + array(array(3, 1), array(4, 5), array(11, 5), array(11, 5)), // |
|
572 | + array(array(5, 1), array(5, 5), array(5, 7), array(11, 7)), // 15 |
|
573 | + array(array(5, 1), array(7, 3), array(15, 2), array(3, 13)), // |
|
574 | + array(array(1, 5), array(10, 1), array(1, 15), array(2, 17)), // |
|
575 | + array(array(5, 1), array(9, 4), array(17, 1), array(2, 19)), // |
|
576 | + array(array(3, 4), array(3, 11), array(17, 4), array(9, 16)), // |
|
577 | + array(array(3, 5), array(3, 13), array(15, 5), array(15, 10)), // 20 |
|
578 | + array(array(4, 4), array(17, 0), array(17, 6), array(19, 6)), // |
|
579 | + array(array(2, 7), array(17, 0), array(7, 16), array(34, 0)), // |
|
580 | + array(array(4, 5), array(4, 14), array(11, 14), array(16, 14)), // |
|
581 | + array(array(6, 4), array(6, 14), array(11, 16), array(30, 2)), // |
|
582 | + array(array(8, 4), array(8, 13), array(7, 22), array(22, 13)), // 25 |
|
583 | + array(array(10, 2), array(19, 4), array(28, 6), array(33, 4)), // |
|
584 | + array(array(8, 4), array(22, 3), array(8, 26), array(12, 28)), // |
|
585 | + array(array(3, 10), array(3, 23), array(4, 31), array(11, 31)), // |
|
586 | + array(array(7, 7), array(21, 7), array(1, 37), array(19, 26)), // |
|
587 | + array(array(5, 10), array(19, 10), array(15, 25), array(23, 25)), // 30 |
|
588 | + array(array(13, 3), array(2, 29), array(42, 1), array(23, 28)), // |
|
589 | + array(array(17, 0), array(10, 23), array(10, 35), array(19, 35)), // |
|
590 | + array(array(17, 1), array(14, 21), array(29, 19), array(11, 46)), // |
|
591 | + array(array(13, 6), array(14, 23), array(44, 7), array(59, 1)), // |
|
592 | + array(array(12, 7), array(12, 26), array(39, 14), array(22, 41)), // 35 |
|
593 | + array(array(6, 14), array(6, 34), array(46, 10), array(2, 64)), // |
|
594 | + array(array(17, 4), array(29, 14), array(49, 10), array(24, 46)), // |
|
595 | + array(array(4, 18), array(13, 32), array(48, 14), array(42, 32)), // |
|
596 | + array(array(20, 4), array(40, 7), array(43, 22), array(10, 67)), // |
|
597 | + array(array(19, 6), array(18, 31), array(34, 34), array(20, 61)) // 40 |
|
598 | 598 | ); |
599 | 599 | |
600 | 600 | /** |
@@ -604,9 +604,9 @@ discard block |
||
604 | 604 | * @access protected |
605 | 605 | */ |
606 | 606 | protected $alignmentPattern = array( |
607 | - array( 0, 0), |
|
608 | - array( 0, 0), array(18, 0), array(22, 0), array(26, 0), array(30, 0), // 1- 5 |
|
609 | - array(34, 0), array(22, 38), array(24, 42), array(26, 46), array(28, 50), // 6-10 |
|
607 | + array(0, 0), |
|
608 | + array(0, 0), array(18, 0), array(22, 0), array(26, 0), array(30, 0), // 1- 5 |
|
609 | + array(34, 0), array(22, 38), array(24, 42), array(26, 46), array(28, 50), // 6-10 |
|
610 | 610 | array(30, 54), array(32, 58), array(34, 62), array(26, 46), array(26, 48), // 11-15 |
611 | 611 | array(26, 50), array(30, 54), array(30, 56), array(30, 58), array(34, 62), // 16-20 |
612 | 612 | array(28, 50), array(26, 50), array(30, 54), array(28, 54), array(32, 58), // 21-25 |
@@ -679,7 +679,7 @@ discard block |
||
679 | 679 | foreach ($qrTab as $line) { |
680 | 680 | $arrAdd = array(); |
681 | 681 | foreach (str_split($line) as $char) { |
682 | - $arrAdd[] = ($char=='1')?1:0; |
|
682 | + $arrAdd[] = ($char == '1') ? 1 : 0; |
|
683 | 683 | } |
684 | 684 | $barcode_array['bcode'][] = $arrAdd; |
685 | 685 | } |
@@ -704,8 +704,8 @@ discard block |
||
704 | 704 | $len = count($frame); |
705 | 705 | // the frame is square (width = height) |
706 | 706 | foreach ($frame as &$frameLine) { |
707 | - for ($i=0; $i<$len; $i++) { |
|
708 | - $frameLine[$i] = (ord($frameLine[$i])&1)?'1':'0'; |
|
707 | + for ($i = 0; $i < $len; $i++) { |
|
708 | + $frameLine[$i] = (ord($frameLine[$i]) & 1) ? '1' : '0'; |
|
709 | 709 | } |
710 | 710 | } |
711 | 711 | return $frame; |
@@ -717,7 +717,7 @@ discard block |
||
717 | 717 | */ |
718 | 718 | protected function encodeString($string) { |
719 | 719 | $this->dataStr = $string; |
720 | - if (!$this->casesensitive) { |
|
720 | + if ( ! $this->casesensitive) { |
|
721 | 721 | $this->toUpper(); |
722 | 722 | } |
723 | 723 | $ret = $this->splitString(); |
@@ -755,10 +755,10 @@ discard block |
||
755 | 755 | $this->dir = -1; |
756 | 756 | $this->bit = -1; |
757 | 757 | // inteleaved data and ecc codes |
758 | - for ($i=0; $i < ($this->dataLength + $this->eccLength); $i++) { |
|
758 | + for ($i = 0; $i < ($this->dataLength + $this->eccLength); $i++) { |
|
759 | 759 | $code = $this->getCode(); |
760 | 760 | $bit = 0x80; |
761 | - for ($j=0; $j<8; $j++) { |
|
761 | + for ($j = 0; $j < 8; $j++) { |
|
762 | 762 | $addr = $this->getNextPosition(); |
763 | 763 | $this->setFrameAt($addr, 0x02 | (($bit & $code) != 0)); |
764 | 764 | $bit = $bit >> 1; |
@@ -766,7 +766,7 @@ discard block |
||
766 | 766 | } |
767 | 767 | // remainder bits |
768 | 768 | $j = $this->getRemainder($this->version); |
769 | - for ($i=0; $i<$j; $i++) { |
|
769 | + for ($i = 0; $i < $j; $i++) { |
|
770 | 770 | $addr = $this->getNextPosition(); |
771 | 771 | $this->setFrameAt($addr, 0x02); |
772 | 772 | } |
@@ -856,7 +856,7 @@ discard block |
||
856 | 856 | } |
857 | 857 | $this->x = $x; |
858 | 858 | $this->y = $y; |
859 | - } while(ord($this->frame[$y][$x]) & 0x80); |
|
859 | + } while (ord($this->frame[$y][$x]) & 0x80); |
|
860 | 860 | return array('x'=>$x, 'y'=>$y); |
861 | 861 | } |
862 | 862 | |
@@ -877,7 +877,7 @@ discard block |
||
877 | 877 | $dataPos = 0; |
878 | 878 | $eccPos = 0; |
879 | 879 | $endfor = $this->rsBlockNum1($spec); |
880 | - for ($i=0; $i < $endfor; ++$i) { |
|
880 | + for ($i = 0; $i < $endfor; ++$i) { |
|
881 | 881 | $ecc = array_slice($this->ecccode, $eccPos); |
882 | 882 | $this->rsblocks[$blockNo] = array(); |
883 | 883 | $this->rsblocks[$blockNo]['dataLength'] = $dl; |
@@ -885,7 +885,7 @@ discard block |
||
885 | 885 | $this->rsblocks[$blockNo]['eccLength'] = $el; |
886 | 886 | $ecc = $this->encode_rs_char($rs, $this->rsblocks[$blockNo]['data'], $ecc); |
887 | 887 | $this->rsblocks[$blockNo]['ecc'] = $ecc; |
888 | - $this->ecccode = array_merge(array_slice($this->ecccode,0, $eccPos), $ecc); |
|
888 | + $this->ecccode = array_merge(array_slice($this->ecccode, 0, $eccPos), $ecc); |
|
889 | 889 | $dataPos += $dl; |
890 | 890 | $eccPos += $el; |
891 | 891 | $blockNo++; |
@@ -900,7 +900,7 @@ discard block |
||
900 | 900 | return -1; |
901 | 901 | } |
902 | 902 | $endfor = $this->rsBlockNum2($spec); |
903 | - for ($i=0; $i < $endfor; ++$i) { |
|
903 | + for ($i = 0; $i < $endfor; ++$i) { |
|
904 | 904 | $ecc = array_slice($this->ecccode, $eccPos); |
905 | 905 | $this->rsblocks[$blockNo] = array(); |
906 | 906 | $this->rsblocks[$blockNo]['dataLength'] = $dl; |
@@ -953,8 +953,8 @@ discard block |
||
953 | 953 | */ |
954 | 954 | protected function writeFormatInformation($width, &$frame, $mask, $level) { |
955 | 955 | $blacks = 0; |
956 | - $format = $this->getFormatInfo($mask, $level); |
|
957 | - for ($i=0; $i<8; ++$i) { |
|
956 | + $format = $this->getFormatInfo($mask, $level); |
|
957 | + for ($i = 0; $i < 8; ++$i) { |
|
958 | 958 | if ($format & 1) { |
959 | 959 | $blacks += 2; |
960 | 960 | $v = 0x85; |
@@ -969,7 +969,7 @@ discard block |
||
969 | 969 | } |
970 | 970 | $format = $format >> 1; |
971 | 971 | } |
972 | - for ($i=0; $i<7; ++$i) { |
|
972 | + for ($i = 0; $i < 7; ++$i) { |
|
973 | 973 | if ($format & 1) { |
974 | 974 | $blacks += 2; |
975 | 975 | $v = 0x85; |
@@ -1076,13 +1076,13 @@ discard block |
||
1076 | 1076 | */ |
1077 | 1077 | protected function generateMaskNo($maskNo, $width, $frame) { |
1078 | 1078 | $bitMask = array_fill(0, $width, array_fill(0, $width, 0)); |
1079 | - for ($y=0; $y<$width; ++$y) { |
|
1080 | - for ($x=0; $x<$width; ++$x) { |
|
1079 | + for ($y = 0; $y < $width; ++$y) { |
|
1080 | + for ($x = 0; $x < $width; ++$x) { |
|
1081 | 1081 | if (ord($frame[$y][$x]) & 0x80) { |
1082 | 1082 | $bitMask[$y][$x] = 0; |
1083 | 1083 | } else { |
1084 | 1084 | $maskFunc = call_user_func(array($this, 'mask'.$maskNo), $x, $y); |
1085 | - $bitMask[$y][$x] = ($maskFunc == 0)?1:0; |
|
1085 | + $bitMask[$y][$x] = ($maskFunc == 0) ? 1 : 0; |
|
1086 | 1086 | } |
1087 | 1087 | } |
1088 | 1088 | } |
@@ -1098,7 +1098,7 @@ discard block |
||
1098 | 1098 | * @param boolean $maskGenOnly |
1099 | 1099 | * @return int b |
1100 | 1100 | */ |
1101 | - protected function makeMaskNo($maskNo, $width, $s, &$d, $maskGenOnly=false) { |
|
1101 | + protected function makeMaskNo($maskNo, $width, $s, &$d, $maskGenOnly = false) { |
|
1102 | 1102 | $b = 0; |
1103 | 1103 | $bitMask = array(); |
1104 | 1104 | $bitMask = $this->generateMaskNo($maskNo, $width, $s, $d); |
@@ -1106,8 +1106,8 @@ discard block |
||
1106 | 1106 | return; |
1107 | 1107 | } |
1108 | 1108 | $d = $s; |
1109 | - for ($y=0; $y<$width; ++$y) { |
|
1110 | - for ($x=0; $x<$width; ++$x) { |
|
1109 | + for ($y = 0; $y < $width; ++$y) { |
|
1110 | + for ($x = 0; $x < $width; ++$x) { |
|
1111 | 1111 | if ($bitMask[$y][$x] == 1) { |
1112 | 1112 | $d[$y][$x] = chr(ord($s[$y][$x]) ^ (int)$bitMask[$y][$x]); |
1113 | 1113 | } |
@@ -1139,20 +1139,20 @@ discard block |
||
1139 | 1139 | */ |
1140 | 1140 | protected function calcN1N3($length) { |
1141 | 1141 | $demerit = 0; |
1142 | - for ($i=0; $i<$length; ++$i) { |
|
1142 | + for ($i = 0; $i < $length; ++$i) { |
|
1143 | 1143 | if ($this->runLength[$i] >= 5) { |
1144 | 1144 | $demerit += (N1 + ($this->runLength[$i] - 5)); |
1145 | 1145 | } |
1146 | 1146 | if ($i & 1) { |
1147 | - if (($i >= 3) AND ($i < ($length-2)) AND ($this->runLength[$i] % 3 == 0)) { |
|
1147 | + if (($i >= 3) AND ($i < ($length - 2)) AND ($this->runLength[$i] % 3 == 0)) { |
|
1148 | 1148 | $fact = (int)($this->runLength[$i] / 3); |
1149 | - if (($this->runLength[$i-2] == $fact) |
|
1150 | - AND ($this->runLength[$i-1] == $fact) |
|
1151 | - AND ($this->runLength[$i+1] == $fact) |
|
1152 | - AND ($this->runLength[$i+2] == $fact)) { |
|
1153 | - if (($this->runLength[$i-3] < 0) OR ($this->runLength[$i-3] >= (4 * $fact))) { |
|
1149 | + if (($this->runLength[$i - 2] == $fact) |
|
1150 | + AND ($this->runLength[$i - 1] == $fact) |
|
1151 | + AND ($this->runLength[$i + 1] == $fact) |
|
1152 | + AND ($this->runLength[$i + 2] == $fact)) { |
|
1153 | + if (($this->runLength[$i - 3] < 0) OR ($this->runLength[$i - 3] >= (4 * $fact))) { |
|
1154 | 1154 | $demerit += N3; |
1155 | - } elseif ((($i+3) >= $length) OR ($this->runLength[$i+3] >= (4 * $fact))) { |
|
1155 | + } elseif ((($i + 3) >= $length) OR ($this->runLength[$i + 3] >= (4 * $fact))) { |
|
1156 | 1156 | $demerit += N3; |
1157 | 1157 | } |
1158 | 1158 | } |
@@ -1171,17 +1171,17 @@ discard block |
||
1171 | 1171 | protected function evaluateSymbol($width, $frame) { |
1172 | 1172 | $head = 0; |
1173 | 1173 | $demerit = 0; |
1174 | - for ($y=0; $y<$width; ++$y) { |
|
1174 | + for ($y = 0; $y < $width; ++$y) { |
|
1175 | 1175 | $head = 0; |
1176 | 1176 | $this->runLength[0] = 1; |
1177 | 1177 | $frameY = $frame[$y]; |
1178 | 1178 | if ($y > 0) { |
1179 | - $frameYM = $frame[$y-1]; |
|
1179 | + $frameYM = $frame[$y - 1]; |
|
1180 | 1180 | } |
1181 | - for ($x=0; $x<$width; ++$x) { |
|
1181 | + for ($x = 0; $x < $width; ++$x) { |
|
1182 | 1182 | if (($x > 0) AND ($y > 0)) { |
1183 | - $b22 = ord($frameY[$x]) & ord($frameY[$x-1]) & ord($frameYM[$x]) & ord($frameYM[$x-1]); |
|
1184 | - $w22 = ord($frameY[$x]) | ord($frameY[$x-1]) | ord($frameYM[$x]) | ord($frameYM[$x-1]); |
|
1183 | + $b22 = ord($frameY[$x]) & ord($frameY[$x - 1]) & ord($frameYM[$x]) & ord($frameYM[$x - 1]); |
|
1184 | + $w22 = ord($frameY[$x]) | ord($frameY[$x - 1]) | ord($frameYM[$x]) | ord($frameYM[$x - 1]); |
|
1185 | 1185 | if (($b22 | ($w22 ^ 1)) & 1) { |
1186 | 1186 | $demerit += N2; |
1187 | 1187 | } |
@@ -1191,7 +1191,7 @@ discard block |
||
1191 | 1191 | $head = 1; |
1192 | 1192 | $this->runLength[$head] = 1; |
1193 | 1193 | } elseif ($x > 0) { |
1194 | - if ((ord($frameY[$x]) ^ ord($frameY[$x-1])) & 1) { |
|
1194 | + if ((ord($frameY[$x]) ^ ord($frameY[$x - 1])) & 1) { |
|
1195 | 1195 | $head++; |
1196 | 1196 | $this->runLength[$head] = 1; |
1197 | 1197 | } else { |
@@ -1199,18 +1199,18 @@ discard block |
||
1199 | 1199 | } |
1200 | 1200 | } |
1201 | 1201 | } |
1202 | - $demerit += $this->calcN1N3($head+1); |
|
1202 | + $demerit += $this->calcN1N3($head + 1); |
|
1203 | 1203 | } |
1204 | - for ($x=0; $x<$width; ++$x) { |
|
1204 | + for ($x = 0; $x < $width; ++$x) { |
|
1205 | 1205 | $head = 0; |
1206 | 1206 | $this->runLength[0] = 1; |
1207 | - for ($y=0; $y<$width; ++$y) { |
|
1207 | + for ($y = 0; $y < $width; ++$y) { |
|
1208 | 1208 | if (($y == 0) AND (ord($frame[$y][$x]) & 1)) { |
1209 | 1209 | $this->runLength[0] = -1; |
1210 | 1210 | $head = 1; |
1211 | 1211 | $this->runLength[$head] = 1; |
1212 | 1212 | } elseif ($y > 0) { |
1213 | - if ((ord($frame[$y][$x]) ^ ord($frame[$y-1][$x])) & 1) { |
|
1213 | + if ((ord($frame[$y][$x]) ^ ord($frame[$y - 1][$x])) & 1) { |
|
1214 | 1214 | $head++; |
1215 | 1215 | $this->runLength[$head] = 1; |
1216 | 1216 | } else { |
@@ -1218,7 +1218,7 @@ discard block |
||
1218 | 1218 | } |
1219 | 1219 | } |
1220 | 1220 | } |
1221 | - $demerit += $this->calcN1N3($head+1); |
|
1221 | + $demerit += $this->calcN1N3($head + 1); |
|
1222 | 1222 | } |
1223 | 1223 | return $demerit; |
1224 | 1224 | } |
@@ -1237,8 +1237,8 @@ discard block |
||
1237 | 1237 | $checked_masks = array(0, 1, 2, 3, 4, 5, 6, 7); |
1238 | 1238 | if (QR_FIND_FROM_RANDOM !== false) { |
1239 | 1239 | $howManuOut = 8 - (QR_FIND_FROM_RANDOM % 9); |
1240 | - for ($i = 0; $i < $howManuOut; ++$i) { |
|
1241 | - $remPos = rand (0, count($checked_masks)-1); |
|
1240 | + for ($i = 0; $i < $howManuOut; ++$i) { |
|
1241 | + $remPos = rand(0, count($checked_masks) - 1); |
|
1242 | 1242 | unset($checked_masks[$remPos]); |
1243 | 1243 | $checked_masks = array_values($checked_masks); |
1244 | 1244 | } |
@@ -1276,7 +1276,7 @@ discard block |
||
1276 | 1276 | if ($pos >= strlen($str)) { |
1277 | 1277 | return false; |
1278 | 1278 | } |
1279 | - return ((ord($str[$pos]) >= ord('0'))&&(ord($str[$pos]) <= ord('9'))); |
|
1279 | + return ((ord($str[$pos]) >= ord('0')) && (ord($str[$pos]) <= ord('9'))); |
|
1280 | 1280 | } |
1281 | 1281 | |
1282 | 1282 | /** |
@@ -1307,8 +1307,8 @@ discard block |
||
1307 | 1307 | } elseif ($this->isalnumat($this->dataStr, $pos)) { |
1308 | 1308 | return QR_MODE_AN; |
1309 | 1309 | } elseif ($this->hint == QR_MODE_KJ) { |
1310 | - if ($pos+1 < strlen($this->dataStr)) { |
|
1311 | - $d = $this->dataStr[$pos+1]; |
|
1310 | + if ($pos + 1 < strlen($this->dataStr)) { |
|
1311 | + $d = $this->dataStr[$pos + 1]; |
|
1312 | 1312 | $word = (ord($c) << 8) | ord($d); |
1313 | 1313 | if (($word >= 0x8140 && $word <= 0x9ffc) OR ($word >= 0xe040 && $word <= 0xebbf)) { |
1314 | 1314 | return QR_MODE_KJ; |
@@ -1325,7 +1325,7 @@ discard block |
||
1325 | 1325 | protected function eatNum() { |
1326 | 1326 | $ln = $this->lengthIndicator(QR_MODE_NM, $this->version); |
1327 | 1327 | $p = 0; |
1328 | - while($this->isdigitat($this->dataStr, $p)) { |
|
1328 | + while ($this->isdigitat($this->dataStr, $p)) { |
|
1329 | 1329 | $p++; |
1330 | 1330 | } |
1331 | 1331 | $run = $p; |
@@ -1341,7 +1341,7 @@ discard block |
||
1341 | 1341 | if ($mode == QR_MODE_AN) { |
1342 | 1342 | $dif = $this->estimateBitsModeNum($run) + 4 + $ln |
1343 | 1343 | + $this->estimateBitsModeAn(1) // + 4 + la |
1344 | - - $this->estimateBitsModeAn($run + 1);// - 4 - la |
|
1344 | + - $this->estimateBitsModeAn($run + 1); // - 4 - la |
|
1345 | 1345 | if ($dif > 0) { |
1346 | 1346 | return $this->eatAn(); |
1347 | 1347 | } |
@@ -1355,13 +1355,13 @@ discard block |
||
1355 | 1355 | * @return int run |
1356 | 1356 | */ |
1357 | 1357 | protected function eatAn() { |
1358 | - $la = $this->lengthIndicator(QR_MODE_AN, $this->version); |
|
1358 | + $la = $this->lengthIndicator(QR_MODE_AN, $this->version); |
|
1359 | 1359 | $ln = $this->lengthIndicator(QR_MODE_NM, $this->version); |
1360 | 1360 | $p = 0; |
1361 | - while($this->isalnumat($this->dataStr, $p)) { |
|
1361 | + while ($this->isalnumat($this->dataStr, $p)) { |
|
1362 | 1362 | if ($this->isdigitat($this->dataStr, $p)) { |
1363 | 1363 | $q = $p; |
1364 | - while($this->isdigitat($this->dataStr, $q)) { |
|
1364 | + while ($this->isdigitat($this->dataStr, $q)) { |
|
1365 | 1365 | $q++; |
1366 | 1366 | } |
1367 | 1367 | $dif = $this->estimateBitsModeAn($p) // + 4 + la |
@@ -1377,7 +1377,7 @@ discard block |
||
1377 | 1377 | } |
1378 | 1378 | } |
1379 | 1379 | $run = $p; |
1380 | - if (!$this->isalnumat($this->dataStr, $p)) { |
|
1380 | + if ( ! $this->isalnumat($this->dataStr, $p)) { |
|
1381 | 1381 | $dif = $this->estimateBitsModeAn($run) + 4 + $la |
1382 | 1382 | + $this->estimateBitsMode8(1) // + 4 + l8 |
1383 | 1383 | - $this->estimateBitsMode8($run + 1); // - 4 - l8 |
@@ -1395,7 +1395,7 @@ discard block |
||
1395 | 1395 | */ |
1396 | 1396 | protected function eatKanji() { |
1397 | 1397 | $p = 0; |
1398 | - while($this->identifyMode($p) == QR_MODE_KJ) { |
|
1398 | + while ($this->identifyMode($p) == QR_MODE_KJ) { |
|
1399 | 1399 | $p += 2; |
1400 | 1400 | } |
1401 | 1401 | $this->items = $this->appendNewInputItem($this->items, QR_MODE_KJ, $p, str_split($this->dataStr)); |
@@ -1411,14 +1411,14 @@ discard block |
||
1411 | 1411 | $ln = $this->lengthIndicator(QR_MODE_NM, $this->version); |
1412 | 1412 | $p = 1; |
1413 | 1413 | $dataStrLen = strlen($this->dataStr); |
1414 | - while($p < $dataStrLen) { |
|
1414 | + while ($p < $dataStrLen) { |
|
1415 | 1415 | $mode = $this->identifyMode($p); |
1416 | 1416 | if ($mode == QR_MODE_KJ) { |
1417 | 1417 | break; |
1418 | 1418 | } |
1419 | 1419 | if ($mode == QR_MODE_NM) { |
1420 | 1420 | $q = $p; |
1421 | - while($this->isdigitat($this->dataStr, $q)) { |
|
1421 | + while ($this->isdigitat($this->dataStr, $q)) { |
|
1422 | 1422 | $q++; |
1423 | 1423 | } |
1424 | 1424 | $dif = $this->estimateBitsMode8($p) // + 4 + l8 |
@@ -1431,7 +1431,7 @@ discard block |
||
1431 | 1431 | } |
1432 | 1432 | } elseif ($mode == QR_MODE_AN) { |
1433 | 1433 | $q = $p; |
1434 | - while($this->isalnumat($this->dataStr, $q)) { |
|
1434 | + while ($this->isalnumat($this->dataStr, $q)) { |
|
1435 | 1435 | $q++; |
1436 | 1436 | } |
1437 | 1437 | $dif = $this->estimateBitsMode8($p) // + 4 + l8 |
@@ -1524,12 +1524,12 @@ discard block |
||
1524 | 1524 | * @param array $bstream |
1525 | 1525 | * @return array input item |
1526 | 1526 | */ |
1527 | - protected function newInputItem($mode, $size, $data, $bstream=null) { |
|
1527 | + protected function newInputItem($mode, $size, $data, $bstream = null) { |
|
1528 | 1528 | $setData = array_slice($data, 0, $size); |
1529 | 1529 | if (count($setData) < $size) { |
1530 | 1530 | $setData = array_merge($setData, array_fill(0, ($size - count($setData)), 0)); |
1531 | 1531 | } |
1532 | - if (!$this->check($mode, $size, $setData)) { |
|
1532 | + if ( ! $this->check($mode, $size, $setData)) { |
|
1533 | 1533 | return NULL; |
1534 | 1534 | } |
1535 | 1535 | $inputitem = array(); |
@@ -1552,18 +1552,18 @@ discard block |
||
1552 | 1552 | $val = 0x1; |
1553 | 1553 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, $val); |
1554 | 1554 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_NM, $version), $inputitem['size']); |
1555 | - for ($i=0; $i < $words; ++$i) { |
|
1556 | - $val = (ord($inputitem['data'][$i*3 ]) - ord('0')) * 100; |
|
1557 | - $val += (ord($inputitem['data'][$i*3+1]) - ord('0')) * 10; |
|
1558 | - $val += (ord($inputitem['data'][$i*3+2]) - ord('0')); |
|
1555 | + for ($i = 0; $i < $words; ++$i) { |
|
1556 | + $val = (ord($inputitem['data'][$i * 3]) - ord('0')) * 100; |
|
1557 | + $val += (ord($inputitem['data'][$i * 3 + 1]) - ord('0')) * 10; |
|
1558 | + $val += (ord($inputitem['data'][$i * 3 + 2]) - ord('0')); |
|
1559 | 1559 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 10, $val); |
1560 | 1560 | } |
1561 | 1561 | if ($inputitem['size'] - $words * 3 == 1) { |
1562 | - $val = ord($inputitem['data'][$words*3]) - ord('0'); |
|
1562 | + $val = ord($inputitem['data'][$words * 3]) - ord('0'); |
|
1563 | 1563 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, $val); |
1564 | 1564 | } elseif (($inputitem['size'] - ($words * 3)) == 2) { |
1565 | - $val = (ord($inputitem['data'][$words*3 ]) - ord('0')) * 10; |
|
1566 | - $val += (ord($inputitem['data'][$words*3+1]) - ord('0')); |
|
1565 | + $val = (ord($inputitem['data'][$words * 3]) - ord('0')) * 10; |
|
1566 | + $val += (ord($inputitem['data'][$words * 3 + 1]) - ord('0')); |
|
1567 | 1567 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 7, $val); |
1568 | 1568 | } |
1569 | 1569 | return $inputitem; |
@@ -1580,9 +1580,9 @@ discard block |
||
1580 | 1580 | $inputitem['bstream'] = array(); |
1581 | 1581 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x02); |
1582 | 1582 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_AN, $version), $inputitem['size']); //DEBUG |
1583 | - for ($i=0; $i < $words; ++$i) { |
|
1584 | - $val = (int)$this->lookAnTable(ord($inputitem['data'][$i*2 ])) * 45; |
|
1585 | - $val += (int)$this->lookAnTable(ord($inputitem['data'][$i*2+1])); |
|
1583 | + for ($i = 0; $i < $words; ++$i) { |
|
1584 | + $val = (int)$this->lookAnTable(ord($inputitem['data'][$i * 2])) * 45; |
|
1585 | + $val += (int)$this->lookAnTable(ord($inputitem['data'][$i * 2 + 1])); |
|
1586 | 1586 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 11, $val); |
1587 | 1587 | } |
1588 | 1588 | if ($inputitem['size'] & 1) { |
@@ -1602,7 +1602,7 @@ discard block |
||
1602 | 1602 | $inputitem['bstream'] = array(); |
1603 | 1603 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x4); |
1604 | 1604 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_8B, $version), $inputitem['size']); |
1605 | - for ($i=0; $i < $inputitem['size']; ++$i) { |
|
1605 | + for ($i = 0; $i < $inputitem['size']; ++$i) { |
|
1606 | 1606 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 8, ord($inputitem['data'][$i])); |
1607 | 1607 | } |
1608 | 1608 | return $inputitem; |
@@ -1618,8 +1618,8 @@ discard block |
||
1618 | 1618 | $inputitem['bstream'] = array(); |
1619 | 1619 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], 4, 0x8); |
1620 | 1620 | $inputitem['bstream'] = $this->appendNum($inputitem['bstream'], $this->lengthIndicator(QR_MODE_KJ, $version), (int)($inputitem['size'] / 2)); |
1621 | - for ($i=0; $i<$inputitem['size']; $i+=2) { |
|
1622 | - $val = (ord($inputitem['data'][$i]) << 8) | ord($inputitem['data'][$i+1]); |
|
1621 | + for ($i = 0; $i < $inputitem['size']; $i += 2) { |
|
1622 | + $val = (ord($inputitem['data'][$i]) << 8) | ord($inputitem['data'][$i + 1]); |
|
1623 | 1623 | if ($val <= 0x9ffc) { |
1624 | 1624 | $val -= 0x8140; |
1625 | 1625 | } else { |
@@ -1664,7 +1664,7 @@ discard block |
||
1664 | 1664 | $inputitem['bstream'] = $this->appendBitstream($inputitem['bstream'], $st1['bstream']); |
1665 | 1665 | $inputitem['bstream'] = $this->appendBitstream($inputitem['bstream'], $st2['bstream']); |
1666 | 1666 | } else { |
1667 | - switch($inputitem['mode']) { |
|
1667 | + switch ($inputitem['mode']) { |
|
1668 | 1668 | case QR_MODE_NM: { |
1669 | 1669 | $inputitem = $this->encodeModeNum($inputitem, $version); |
1670 | 1670 | break; |
@@ -1742,7 +1742,7 @@ discard block |
||
1742 | 1742 | $parity = 0; |
1743 | 1743 | foreach ($items as $item) { |
1744 | 1744 | if ($item['mode'] != QR_MODE_ST) { |
1745 | - for ($i=$item['size']-1; $i>=0; --$i) { |
|
1745 | + for ($i = $item['size'] - 1; $i >= 0; --$i) { |
|
1746 | 1746 | $parity ^= $item['data'][$i]; |
1747 | 1747 | } |
1748 | 1748 | } |
@@ -1757,8 +1757,8 @@ discard block |
||
1757 | 1757 | * @return boolean true or false |
1758 | 1758 | */ |
1759 | 1759 | protected function checkModeNum($size, $data) { |
1760 | - for ($i=0; $i<$size; ++$i) { |
|
1761 | - if ((ord($data[$i]) < ord('0')) OR (ord($data[$i]) > ord('9'))){ |
|
1760 | + for ($i = 0; $i < $size; ++$i) { |
|
1761 | + if ((ord($data[$i]) < ord('0')) OR (ord($data[$i]) > ord('9'))) { |
|
1762 | 1762 | return false; |
1763 | 1763 | } |
1764 | 1764 | } |
@@ -1773,7 +1773,7 @@ discard block |
||
1773 | 1773 | protected function estimateBitsModeNum($size) { |
1774 | 1774 | $w = (int)$size / 3; |
1775 | 1775 | $bits = $w * 10; |
1776 | - switch($size - $w * 3) { |
|
1776 | + switch ($size - $w * 3) { |
|
1777 | 1777 | case 1: { |
1778 | 1778 | $bits += 4; |
1779 | 1779 | break; |
@@ -1795,7 +1795,7 @@ discard block |
||
1795 | 1795 | * @return value |
1796 | 1796 | */ |
1797 | 1797 | protected function lookAnTable($c) { |
1798 | - return (($c > 127)?-1:$this->anTable[$c]); |
|
1798 | + return (($c > 127) ?-1 : $this->anTable[$c]); |
|
1799 | 1799 | } |
1800 | 1800 | |
1801 | 1801 | /** |
@@ -1805,7 +1805,7 @@ discard block |
||
1805 | 1805 | * @return boolean true or false |
1806 | 1806 | */ |
1807 | 1807 | protected function checkModeAn($size, $data) { |
1808 | - for ($i=0; $i<$size; ++$i) { |
|
1808 | + for ($i = 0; $i < $size; ++$i) { |
|
1809 | 1809 | if ($this->lookAnTable(ord($data[$i])) == -1) { |
1810 | 1810 | return false; |
1811 | 1811 | } |
@@ -1855,8 +1855,8 @@ discard block |
||
1855 | 1855 | if ($size & 1) { |
1856 | 1856 | return false; |
1857 | 1857 | } |
1858 | - for ($i=0; $i<$size; $i+=2) { |
|
1859 | - $val = (ord($data[$i]) << 8) | ord($data[$i+1]); |
|
1858 | + for ($i = 0; $i < $size; $i += 2) { |
|
1859 | + $val = (ord($data[$i]) << 8) | ord($data[$i + 1]); |
|
1860 | 1860 | if (($val < 0x8140) OR (($val > 0x9ffc) AND ($val < 0xe040)) OR ($val > 0xebbf)) { |
1861 | 1861 | return false; |
1862 | 1862 | } |
@@ -1875,7 +1875,7 @@ discard block |
||
1875 | 1875 | if ($size <= 0) { |
1876 | 1876 | return false; |
1877 | 1877 | } |
1878 | - switch($mode) { |
|
1878 | + switch ($mode) { |
|
1879 | 1879 | case QR_MODE_NM: { |
1880 | 1880 | return $this->checkModeNum($size, $data); |
1881 | 1881 | } |
@@ -1910,7 +1910,7 @@ discard block |
||
1910 | 1910 | $version = 1; |
1911 | 1911 | } |
1912 | 1912 | foreach ($items as $item) { |
1913 | - switch($item['mode']) { |
|
1913 | + switch ($item['mode']) { |
|
1914 | 1914 | case QR_MODE_NM: { |
1915 | 1915 | $bits = $this->estimateBitsModeNum($item['size']); |
1916 | 1916 | break; |
@@ -1970,7 +1970,7 @@ discard block |
||
1970 | 1970 | */ |
1971 | 1971 | protected function lengthOfCode($mode, $version, $bits) { |
1972 | 1972 | $payload = $bits - 4 - $this->lengthIndicator($mode, $version); |
1973 | - switch($mode) { |
|
1973 | + switch ($mode) { |
|
1974 | 1974 | case QR_MODE_NM: { |
1975 | 1975 | $chunks = (int)($payload / 10); |
1976 | 1976 | $remain = $payload - $chunks * 10; |
@@ -2084,8 +2084,8 @@ discard block |
||
2084 | 2084 | $padlen = $maxwords - $words; |
2085 | 2085 | if ($padlen > 0) { |
2086 | 2086 | $padbuf = array(); |
2087 | - for ($i=0; $i<$padlen; ++$i) { |
|
2088 | - $padbuf[$i] = ($i&1)?0x11:0xec; |
|
2087 | + for ($i = 0; $i < $padlen; ++$i) { |
|
2088 | + $padbuf[$i] = ($i & 1) ? 0x11 : 0xec; |
|
2089 | 2089 | } |
2090 | 2090 | $padding = $this->appendBytes($padding, $padlen, $padbuf); |
2091 | 2091 | } |
@@ -2148,7 +2148,7 @@ discard block |
||
2148 | 2148 | protected function newFromNum($bits, $num) { |
2149 | 2149 | $bstream = $this->allocate($bits); |
2150 | 2150 | $mask = 1 << ($bits - 1); |
2151 | - for ($i=0; $i<$bits; ++$i) { |
|
2151 | + for ($i = 0; $i < $bits; ++$i) { |
|
2152 | 2152 | if ($num & $mask) { |
2153 | 2153 | $bstream[$i] = 1; |
2154 | 2154 | } else { |
@@ -2167,10 +2167,10 @@ discard block |
||
2167 | 2167 | */ |
2168 | 2168 | protected function newFromBytes($size, $data) { |
2169 | 2169 | $bstream = $this->allocate($size * 8); |
2170 | - $p=0; |
|
2171 | - for ($i=0; $i<$size; ++$i) { |
|
2170 | + $p = 0; |
|
2171 | + for ($i = 0; $i < $size; ++$i) { |
|
2172 | 2172 | $mask = 0x80; |
2173 | - for ($j=0; $j<8; ++$j) { |
|
2173 | + for ($j = 0; $j < 8; ++$j) { |
|
2174 | 2174 | if ($data[$i] & $mask) { |
2175 | 2175 | $bstream[$p] = 1; |
2176 | 2176 | } else { |
@@ -2190,7 +2190,7 @@ discard block |
||
2190 | 2190 | * @return array bitstream |
2191 | 2191 | */ |
2192 | 2192 | protected function appendBitstream($bitstream, $append) { |
2193 | - if ((!is_array($append)) OR (count($append) == 0)) { |
|
2193 | + if (( ! is_array($append)) OR (count($append) == 0)) { |
|
2194 | 2194 | return $bitstream; |
2195 | 2195 | } |
2196 | 2196 | if (count($bitstream) == 0) { |
@@ -2242,9 +2242,9 @@ discard block |
||
2242 | 2242 | $data = array_fill(0, (int)(($size + 7) / 8), 0); |
2243 | 2243 | $bytes = (int)($size / 8); |
2244 | 2244 | $p = 0; |
2245 | - for ($i=0; $i<$bytes; $i++) { |
|
2245 | + for ($i = 0; $i < $bytes; $i++) { |
|
2246 | 2246 | $v = 0; |
2247 | - for ($j=0; $j<8; $j++) { |
|
2247 | + for ($j = 0; $j < 8; $j++) { |
|
2248 | 2248 | $v = $v << 1; |
2249 | 2249 | $v |= $bstream[$p]; |
2250 | 2250 | $p++; |
@@ -2253,7 +2253,7 @@ discard block |
||
2253 | 2253 | } |
2254 | 2254 | if ($size & 7) { |
2255 | 2255 | $v = 0; |
2256 | - for ($j=0; $j<($size & 7); $j++) { |
|
2256 | + for ($j = 0; $j < ($size & 7); $j++) { |
|
2257 | 2257 | $v = $v << 1; |
2258 | 2258 | $v |= $bstream[$p]; |
2259 | 2259 | $p++; |
@@ -2276,8 +2276,8 @@ discard block |
||
2276 | 2276 | * @param int $replLen length of the repl string |
2277 | 2277 | * @return array srctab |
2278 | 2278 | */ |
2279 | - protected function qrstrset($srctab, $x, $y, $repl, $replLen=false) { |
|
2280 | - $srctab[$y] = substr_replace($srctab[$y], ($replLen !== false)?substr($repl,0,$replLen):$repl, $x, ($replLen !== false)?$replLen:strlen($repl)); |
|
2279 | + protected function qrstrset($srctab, $x, $y, $repl, $replLen = false) { |
|
2280 | + $srctab[$y] = substr_replace($srctab[$y], ($replLen !== false) ? substr($repl, 0, $replLen) : $repl, $x, ($replLen !== false) ? $replLen : strlen($repl)); |
|
2281 | 2281 | return $srctab; |
2282 | 2282 | } |
2283 | 2283 | |
@@ -2297,7 +2297,7 @@ discard block |
||
2297 | 2297 | * @param int $level error correction level |
2298 | 2298 | * @return int ECC size (bytes) |
2299 | 2299 | */ |
2300 | - protected function getECCLength($version, $level){ |
|
2300 | + protected function getECCLength($version, $level) { |
|
2301 | 2301 | return $this->capacity[$version][QRCAP_EC][$level]; |
2302 | 2302 | } |
2303 | 2303 | |
@@ -2326,8 +2326,8 @@ discard block |
||
2326 | 2326 | * @return int version number |
2327 | 2327 | */ |
2328 | 2328 | protected function getMinimumVersion($size, $level) { |
2329 | - for ($i=1; $i <= QRSPEC_VERSION_MAX; ++$i) { |
|
2330 | - $words = $this->capacity[$i][QRCAP_WORDS] - $this->capacity[$i][QRCAP_EC][$level]; |
|
2329 | + for ($i = 1; $i <= QRSPEC_VERSION_MAX; ++$i) { |
|
2330 | + $words = $this->capacity[$i][QRCAP_WORDS] - $this->capacity[$i][QRCAP_EC][$level]; |
|
2331 | 2331 | if ($words >= $size) { |
2332 | 2332 | return $i; |
2333 | 2333 | } |
@@ -2404,7 +2404,7 @@ discard block |
||
2404 | 2404 | } else { |
2405 | 2405 | $spec[0] = $b1; |
2406 | 2406 | $spec[1] = (int)($data / ($b1 + $b2)); |
2407 | - $spec[2] = (int)($ecc / ($b1 + $b2)); |
|
2407 | + $spec[2] = (int)($ecc / ($b1 + $b2)); |
|
2408 | 2408 | $spec[3] = $b2; |
2409 | 2409 | $spec[4] = $spec[1] + 1; |
2410 | 2410 | } |
@@ -2429,8 +2429,8 @@ discard block |
||
2429 | 2429 | ); |
2430 | 2430 | $yStart = $oy - 2; |
2431 | 2431 | $xStart = $ox - 2; |
2432 | - for ($y=0; $y < 5; $y++) { |
|
2433 | - $frame = $this->qrstrset($frame, $xStart, $yStart+$y, $finder[$y]); |
|
2432 | + for ($y = 0; $y < 5; $y++) { |
|
2433 | + $frame = $this->qrstrset($frame, $xStart, $yStart + $y, $finder[$y]); |
|
2434 | 2434 | } |
2435 | 2435 | return $frame; |
2436 | 2436 | } |
@@ -2460,15 +2460,15 @@ discard block |
||
2460 | 2460 | } |
2461 | 2461 | $cx = $this->alignmentPattern[$version][0]; |
2462 | 2462 | $wo = $w - 1; |
2463 | - for ($x=1; $x < $wo; ++$x) { |
|
2463 | + for ($x = 1; $x < $wo; ++$x) { |
|
2464 | 2464 | $frame = $this->putAlignmentMarker($frame, 6, $cx); |
2465 | - $frame = $this->putAlignmentMarker($frame, $cx, 6); |
|
2465 | + $frame = $this->putAlignmentMarker($frame, $cx, 6); |
|
2466 | 2466 | $cx += $d; |
2467 | 2467 | } |
2468 | 2468 | $cy = $this->alignmentPattern[$version][0]; |
2469 | - for ($y=0; $y < $wo; ++$y) { |
|
2469 | + for ($y = 0; $y < $wo; ++$y) { |
|
2470 | 2470 | $cx = $this->alignmentPattern[$version][0]; |
2471 | - for ($x=0; $x < $wo; ++$x) { |
|
2471 | + for ($x = 0; $x < $wo; ++$x) { |
|
2472 | 2472 | $frame = $this->putAlignmentMarker($frame, $cx, $cy); |
2473 | 2473 | $cx += $d; |
2474 | 2474 | } |
@@ -2523,7 +2523,7 @@ discard block |
||
2523 | 2523 | "\xc1\xc0\xc0\xc0\xc0\xc0\xc1", |
2524 | 2524 | "\xc1\xc1\xc1\xc1\xc1\xc1\xc1" |
2525 | 2525 | ); |
2526 | - for ($y=0; $y < 7; $y++) { |
|
2526 | + for ($y = 0; $y < 7; $y++) { |
|
2527 | 2527 | $frame = $this->qrstrset($frame, $ox, ($oy + $y), $finder[$y]); |
2528 | 2528 | } |
2529 | 2529 | return $frame; |
@@ -2536,7 +2536,7 @@ discard block |
||
2536 | 2536 | */ |
2537 | 2537 | protected function createFrame($version) { |
2538 | 2538 | $width = $this->capacity[$version][QRCAP_WIDTH]; |
2539 | - $frameLine = str_repeat ("\0", $width); |
|
2539 | + $frameLine = str_repeat("\0", $width); |
|
2540 | 2540 | $frame = array_fill(0, $width, $frameLine); |
2541 | 2541 | // Finder pattern |
2542 | 2542 | $frame = $this->putFinderPattern($frame, 0, 0); |
@@ -2544,7 +2544,7 @@ discard block |
||
2544 | 2544 | $frame = $this->putFinderPattern($frame, 0, $width - 7); |
2545 | 2545 | // Separator |
2546 | 2546 | $yOffset = $width - 7; |
2547 | - for ($y=0; $y < 7; ++$y) { |
|
2547 | + for ($y = 0; $y < 7; ++$y) { |
|
2548 | 2548 | $frame[$y][7] = "\xc0"; |
2549 | 2549 | $frame[$y][$width - 8] = "\xc0"; |
2550 | 2550 | $frame[$yOffset][7] = "\xc0"; |
@@ -2552,22 +2552,22 @@ discard block |
||
2552 | 2552 | } |
2553 | 2553 | $setPattern = str_repeat("\xc0", 8); |
2554 | 2554 | $frame = $this->qrstrset($frame, 0, 7, $setPattern); |
2555 | - $frame = $this->qrstrset($frame, $width-8, 7, $setPattern); |
|
2555 | + $frame = $this->qrstrset($frame, $width - 8, 7, $setPattern); |
|
2556 | 2556 | $frame = $this->qrstrset($frame, 0, $width - 8, $setPattern); |
2557 | 2557 | // Format info |
2558 | 2558 | $setPattern = str_repeat("\x84", 9); |
2559 | 2559 | $frame = $this->qrstrset($frame, 0, 8, $setPattern); |
2560 | 2560 | $frame = $this->qrstrset($frame, $width - 8, 8, $setPattern, 8); |
2561 | 2561 | $yOffset = $width - 8; |
2562 | - for ($y=0; $y < 8; ++$y,++$yOffset) { |
|
2562 | + for ($y = 0; $y < 8; ++$y, ++$yOffset) { |
|
2563 | 2563 | $frame[$y][8] = "\x84"; |
2564 | 2564 | $frame[$yOffset][8] = "\x84"; |
2565 | 2565 | } |
2566 | 2566 | // Timing pattern |
2567 | 2567 | $wo = $width - 15; |
2568 | - for ($i=1; $i < $wo; ++$i) { |
|
2569 | - $frame[6][7+$i] = chr(0x90 | ($i & 1)); |
|
2570 | - $frame[7+$i][6] = chr(0x90 | ($i & 1)); |
|
2568 | + for ($i = 1; $i < $wo; ++$i) { |
|
2569 | + $frame[6][7 + $i] = chr(0x90 | ($i & 1)); |
|
2570 | + $frame[7 + $i][6] = chr(0x90 | ($i & 1)); |
|
2571 | 2571 | } |
2572 | 2572 | // Alignment pattern |
2573 | 2573 | $frame = $this->putAlignmentPattern($version, $frame, $width); |
@@ -2575,16 +2575,16 @@ discard block |
||
2575 | 2575 | if ($version >= 7) { |
2576 | 2576 | $vinf = $this->getVersionPattern($version); |
2577 | 2577 | $v = $vinf; |
2578 | - for ($x=0; $x<6; ++$x) { |
|
2579 | - for ($y=0; $y<3; ++$y) { |
|
2580 | - $frame[($width - 11)+$y][$x] = chr(0x88 | ($v & 1)); |
|
2578 | + for ($x = 0; $x < 6; ++$x) { |
|
2579 | + for ($y = 0; $y < 3; ++$y) { |
|
2580 | + $frame[($width - 11) + $y][$x] = chr(0x88 | ($v & 1)); |
|
2581 | 2581 | $v = $v >> 1; |
2582 | 2582 | } |
2583 | 2583 | } |
2584 | 2584 | $v = $vinf; |
2585 | - for ($y=0; $y<6; ++$y) { |
|
2586 | - for ($x=0; $x<3; ++$x) { |
|
2587 | - $frame[$y][$x+($width - 11)] = chr(0x88 | ($v & 1)); |
|
2585 | + for ($y = 0; $y < 6; ++$y) { |
|
2586 | + for ($x = 0; $x < 3; ++$x) { |
|
2587 | + $frame[$y][$x + ($width - 11)] = chr(0x88 | ($v & 1)); |
|
2588 | 2588 | $v = $v >> 1; |
2589 | 2589 | } |
2590 | 2590 | } |
@@ -2603,7 +2603,7 @@ discard block |
||
2603 | 2603 | if (($version < 1) OR ($version > QRSPEC_VERSION_MAX)) { |
2604 | 2604 | return NULL; |
2605 | 2605 | } |
2606 | - if (!isset($this->frames[$version])) { |
|
2606 | + if ( ! isset($this->frames[$version])) { |
|
2607 | 2607 | $this->frames[$version] = $this->createFrame($version); |
2608 | 2608 | } |
2609 | 2609 | if (is_null($this->frames[$version])) { |
@@ -2755,16 +2755,16 @@ discard block |
||
2755 | 2755 | if (($symsize < 0) OR ($symsize > 8)) { |
2756 | 2756 | return $rs; |
2757 | 2757 | } |
2758 | - if (($fcr < 0) OR ($fcr >= (1<<$symsize))) { |
|
2758 | + if (($fcr < 0) OR ($fcr >= (1 << $symsize))) { |
|
2759 | 2759 | return $rs; |
2760 | 2760 | } |
2761 | - if (($prim <= 0) OR ($prim >= (1<<$symsize))) { |
|
2761 | + if (($prim <= 0) OR ($prim >= (1 << $symsize))) { |
|
2762 | 2762 | return $rs; |
2763 | 2763 | } |
2764 | - if (($nroots < 0) OR ($nroots >= (1<<$symsize))) { |
|
2764 | + if (($nroots < 0) OR ($nroots >= (1 << $symsize))) { |
|
2765 | 2765 | return $rs; |
2766 | 2766 | } |
2767 | - if (($pad < 0) OR ($pad >= ((1<<$symsize) -1 - $nroots))) { |
|
2767 | + if (($pad < 0) OR ($pad >= ((1 << $symsize) - 1 - $nroots))) { |
|
2768 | 2768 | return $rs; |
2769 | 2769 | } |
2770 | 2770 | $rs = array(); |
@@ -2774,13 +2774,13 @@ discard block |
||
2774 | 2774 | $rs['alpha_to'] = array_fill(0, ($rs['nn'] + 1), 0); |
2775 | 2775 | $rs['index_of'] = array_fill(0, ($rs['nn'] + 1), 0); |
2776 | 2776 | // PHP style macro replacement ;) |
2777 | - $NN =& $rs['nn']; |
|
2778 | - $A0 =& $NN; |
|
2777 | + $NN = & $rs['nn']; |
|
2778 | + $A0 = & $NN; |
|
2779 | 2779 | // Generate Galois field lookup tables |
2780 | 2780 | $rs['index_of'][0] = $A0; // log(zero) = -inf |
2781 | 2781 | $rs['alpha_to'][$A0] = 0; // alpha**-inf = 0 |
2782 | 2782 | $sr = 1; |
2783 | - for ($i=0; $i<$rs['nn']; ++$i) { |
|
2783 | + for ($i = 0; $i < $rs['nn']; ++$i) { |
|
2784 | 2784 | $rs['index_of'][$sr] = $i; |
2785 | 2785 | $rs['alpha_to'][$i] = $sr; |
2786 | 2786 | $sr <<= 1; |
@@ -2800,21 +2800,21 @@ discard block |
||
2800 | 2800 | $rs['nroots'] = $nroots; |
2801 | 2801 | $rs['gfpoly'] = $gfpoly; |
2802 | 2802 | // Find prim-th root of 1, used in decoding |
2803 | - for ($iprim=1; ($iprim % $prim) != 0; $iprim += $rs['nn']) { |
|
2803 | + for ($iprim = 1; ($iprim % $prim) != 0; $iprim += $rs['nn']) { |
|
2804 | 2804 | ; // intentional empty-body loop! |
2805 | 2805 | } |
2806 | 2806 | $rs['iprim'] = (int)($iprim / $prim); |
2807 | 2807 | $rs['genpoly'][0] = 1; |
2808 | 2808 | |
2809 | 2809 | |
2810 | - for ($i = 0,$root=$fcr*$prim; $i < $nroots; $i++, $root += $prim) { |
|
2811 | - $rs['genpoly'][$i+1] = 1; |
|
2810 | + for ($i = 0, $root = $fcr * $prim; $i < $nroots; $i++, $root += $prim) { |
|
2811 | + $rs['genpoly'][$i + 1] = 1; |
|
2812 | 2812 | // Multiply rs->genpoly[] by @**(root + x) |
2813 | 2813 | for ($j = $i; $j > 0; --$j) { |
2814 | 2814 | if ($rs['genpoly'][$j] != 0) { |
2815 | - $rs['genpoly'][$j] = $rs['genpoly'][$j-1] ^ $rs['alpha_to'][$this->modnn($rs, $rs['index_of'][$rs['genpoly'][$j]] + $root)]; |
|
2815 | + $rs['genpoly'][$j] = $rs['genpoly'][$j - 1] ^ $rs['alpha_to'][$this->modnn($rs, $rs['index_of'][$rs['genpoly'][$j]] + $root)]; |
|
2816 | 2816 | } else { |
2817 | - $rs['genpoly'][$j] = $rs['genpoly'][$j-1]; |
|
2817 | + $rs['genpoly'][$j] = $rs['genpoly'][$j - 1]; |
|
2818 | 2818 | } |
2819 | 2819 | } |
2820 | 2820 | // rs->genpoly[0] can never be zero |
@@ -2835,26 +2835,26 @@ discard block |
||
2835 | 2835 | * @return parity array |
2836 | 2836 | */ |
2837 | 2837 | protected function encode_rs_char($rs, $data, $parity) { |
2838 | - $MM =& $rs['mm']; // bits per symbol |
|
2839 | - $NN =& $rs['nn']; // the total number of symbols in a RS block |
|
2840 | - $ALPHA_TO =& $rs['alpha_to']; // the address of an array of NN elements to convert Galois field elements in index (log) form to polynomial form |
|
2841 | - $INDEX_OF =& $rs['index_of']; // the address of an array of NN elements to convert Galois field elements in polynomial form to index (log) form |
|
2842 | - $GENPOLY =& $rs['genpoly']; // an array of NROOTS+1 elements containing the generator polynomial in index form |
|
2843 | - $NROOTS =& $rs['nroots']; // the number of roots in the RS code generator polynomial, which is the same as the number of parity symbols in a block |
|
2844 | - $FCR =& $rs['fcr']; // first consecutive root, index form |
|
2845 | - $PRIM =& $rs['prim']; // primitive element, index form |
|
2846 | - $IPRIM =& $rs['iprim']; // prim-th root of 1, index form |
|
2847 | - $PAD =& $rs['pad']; // the number of pad symbols in a block |
|
2848 | - $A0 =& $NN; |
|
2838 | + $MM = & $rs['mm']; // bits per symbol |
|
2839 | + $NN = & $rs['nn']; // the total number of symbols in a RS block |
|
2840 | + $ALPHA_TO = & $rs['alpha_to']; // the address of an array of NN elements to convert Galois field elements in index (log) form to polynomial form |
|
2841 | + $INDEX_OF = & $rs['index_of']; // the address of an array of NN elements to convert Galois field elements in polynomial form to index (log) form |
|
2842 | + $GENPOLY = & $rs['genpoly']; // an array of NROOTS+1 elements containing the generator polynomial in index form |
|
2843 | + $NROOTS = & $rs['nroots']; // the number of roots in the RS code generator polynomial, which is the same as the number of parity symbols in a block |
|
2844 | + $FCR = & $rs['fcr']; // first consecutive root, index form |
|
2845 | + $PRIM = & $rs['prim']; // primitive element, index form |
|
2846 | + $IPRIM = & $rs['iprim']; // prim-th root of 1, index form |
|
2847 | + $PAD = & $rs['pad']; // the number of pad symbols in a block |
|
2848 | + $A0 = & $NN; |
|
2849 | 2849 | $parity = array_fill(0, $NROOTS, 0); |
2850 | - for ($i=0; $i < ($NN - $NROOTS - $PAD); $i++) { |
|
2850 | + for ($i = 0; $i < ($NN - $NROOTS - $PAD); $i++) { |
|
2851 | 2851 | $feedback = $INDEX_OF[$data[$i] ^ $parity[0]]; |
2852 | 2852 | if ($feedback != $A0) { |
2853 | 2853 | // feedback term is non-zero |
2854 | 2854 | // This line is unnecessary when GENPOLY[NROOTS] is unity, as it must |
2855 | 2855 | // always be for the polynomials constructed by init_rs() |
2856 | 2856 | $feedback = $this->modnn($rs, $NN - $GENPOLY[$NROOTS] + $feedback); |
2857 | - for ($j=1; $j < $NROOTS; ++$j) { |
|
2857 | + for ($j = 1; $j < $NROOTS; ++$j) { |
|
2858 | 2858 | $parity[$j] ^= $ALPHA_TO[$this->modnn($rs, $feedback + $GENPOLY[($NROOTS - $j)])]; |
2859 | 2859 | } |
2860 | 2860 | } |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | switch ($qrtype) { |
102 | 102 | case 'QRCODE': { // QR-CODE |
103 | 103 | require_once(dirname(__FILE__).'/qrcode.php'); |
104 | - if (!isset($mode[1]) OR (!in_array($mode[1],array('L','M','Q','H')))) { |
|
104 | + if ( ! isset($mode[1]) OR ( ! in_array($mode[1], array('L', 'M', 'Q', 'H')))) { |
|
105 | 105 | $mode[1] = 'L'; // Ddefault: Low error correction |
106 | 106 | } |
107 | 107 | $qrcode = new QRcode($code, strtoupper($mode[1])); |
@@ -135,11 +135,11 @@ discard block |
||
135 | 135 | $this->barcode_array['num_rows'] = 5; |
136 | 136 | $this->barcode_array['num_cols'] = 15; |
137 | 137 | $this->barcode_array['bcode'] = array( |
138 | - array(1,1,1,0,1,1,1,0,1,1,1,0,1,1,1), |
|
139 | - array(0,1,0,0,1,0,0,0,1,0,0,0,0,1,0), |
|
140 | - array(0,1,0,0,1,1,0,0,1,1,1,0,0,1,0), |
|
141 | - array(0,1,0,0,1,0,0,0,0,0,1,0,0,1,0), |
|
142 | - array(0,1,0,0,1,1,1,0,1,1,1,0,0,1,0)); |
|
138 | + array(1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1), |
|
139 | + array(0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0), |
|
140 | + array(0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0), |
|
141 | + array(0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0), |
|
142 | + array(0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0)); |
|
143 | 143 | break; |
144 | 144 | } |
145 | 145 | default: { |
@@ -1,311 +1,311 @@ |
||
1 | 1 | <?php |
2 | -$type='TrueTypeUnicode'; |
|
3 | -$name='FreeSans'; |
|
4 | -$desc=array('Ascent'=>1000,'Descent'=>-300,'CapHeight'=>22,'Flags'=>32,'FontBBox'=>'[-958 -550 1632 1050]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600); |
|
5 | -$up=-176; |
|
6 | -$ut=50; |
|
7 | -$dw=600; |
|
8 | -$cw=array( |
|
9 | -32=>278,33=>278,34=>355,35=>556,36=>556,37=>889,38=>667,39=>191,40=>333,41=>333, |
|
10 | -42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556,50=>556,51=>556, |
|
11 | -52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>278,59=>278,60=>584,61=>584, |
|
12 | -62=>584,63=>556,64=>1015,65=>667,66=>667,67=>722,68=>722,69=>667,70=>611,71=>778, |
|
13 | -72=>722,73=>278,74=>500,75=>667,76=>556,77=>833,78=>722,79=>778,80=>667,81=>778, |
|
14 | -82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667,90=>611,91=>278, |
|
15 | -92=>278,93=>277,94=>469,95=>556,96=>333,97=>556,98=>556,99=>500,100=>556,101=>556, |
|
16 | -102=>278,103=>556,104=>556,105=>222,106=>222,107=>500,108=>222,109=>833,110=>556,111=>556, |
|
17 | -112=>556,113=>556,114=>333,115=>500,116=>278,117=>556,118=>500,119=>722,120=>500,121=>500, |
|
18 | -122=>500,123=>334,124=>260,125=>334,126=>584,8364=>655,8218=>222,402=>278,8222=>333,8230=>1000, |
|
19 | -8224=>556,8225=>556,710=>333,8240=>1000,352=>667,8249=>250,338=>1000,381=>611,8216=>222,8217=>221, |
|
20 | -8220=>333,8221=>333,8226=>350,8211=>556,8212=>1000,732=>333,8482=>1000,353=>500,8250=>250,339=>944, |
|
21 | -382=>500,376=>667,160=>278,161=>278,162=>556,163=>556,164=>556,165=>556,166=>260,167=>556, |
|
22 | -168=>333,169=>737,170=>370,171=>448,172=>584,173=>333,174=>737,175=>333,176=>606,177=>584, |
|
23 | -178=>350,179=>350,180=>333,181=>556,182=>537,183=>278,184=>333,185=>350,186=>365,187=>448, |
|
24 | -188=>869,189=>869,190=>869,191=>556,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667, |
|
25 | -198=>1000,199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, |
|
26 | -208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778,217=>722, |
|
27 | -218=>722,219=>722,220=>722,221=>667,222=>666,223=>611,224=>556,225=>556,226=>556,227=>556, |
|
28 | -228=>556,229=>556,230=>889,231=>500,232=>556,233=>556,234=>556,235=>556,236=>278,237=>278, |
|
29 | -238=>278,239=>278,240=>556,241=>556,242=>556,243=>556,244=>556,245=>556,246=>556,247=>584, |
|
30 | -248=>611,249=>556,250=>556,251=>556,252=>556,253=>500,254=>555,255=>500,256=>667,257=>556, |
|
31 | -258=>667,259=>556,260=>667,261=>556,262=>722,263=>500,264=>722,265=>500,266=>722,267=>500, |
|
32 | -268=>722,269=>500,270=>722,271=>722,272=>722,273=>556,274=>667,275=>556,276=>667,277=>556, |
|
33 | -278=>667,279=>556,280=>667,281=>556,282=>667,283=>556,284=>778,285=>556,286=>778,287=>556, |
|
34 | -288=>778,289=>556,290=>778,291=>556,292=>722,293=>556,294=>722,295=>556,296=>278,297=>278, |
|
35 | -298=>278,299=>278,300=>278,301=>278,302=>278,303=>222,304=>278,305=>278,306=>700,307=>374, |
|
36 | -308=>500,309=>222,310=>667,311=>500,312=>500,313=>556,314=>222,315=>556,316=>222,317=>556, |
|
37 | -318=>387,319=>556,320=>500,321=>556,322=>222,323=>722,324=>556,325=>722,326=>556,327=>722, |
|
38 | -328=>556,329=>722,330=>722,331=>556,332=>778,333=>556,334=>778,335=>556,336=>778,337=>556, |
|
39 | -340=>722,341=>333,342=>722,343=>333,344=>722,345=>333,346=>667,347=>500,348=>667,349=>500, |
|
40 | -350=>667,351=>500,354=>611,355=>278,356=>611,357=>443,358=>611,359=>278,360=>722,361=>556, |
|
41 | -362=>722,363=>556,364=>722,365=>556,366=>722,367=>556,368=>722,369=>556,370=>722,371=>556, |
|
42 | -372=>944,373=>722,374=>667,375=>500,377=>611,378=>500,379=>611,380=>500,383=>278,384=>556, |
|
43 | -385=>854,386=>668,387=>556,388=>667,389=>556,390=>722,391=>722,392=>500,393=>722,394=>899, |
|
44 | -395=>667,396=>556,397=>564,398=>667,399=>722,400=>667,401=>611,403=>778,404=>667,405=>889, |
|
45 | -406=>278,407=>333,408=>667,409=>500,410=>333,411=>560,412=>833,413=>722,414=>556,415=>778, |
|
46 | -416=>788,417=>565,418=>944,419=>722,420=>842,421=>556,422=>666,423=>667,424=>500,425=>611, |
|
47 | -426=>333,427=>278,428=>611,429=>278,430=>611,431=>776,432=>624,433=>778,434=>722,435=>722, |
|
48 | -436=>556,437=>611,438=>500,439=>611,440=>611,441=>500,442=>500,443=>556,446=>556,447=>556, |
|
49 | -448=>260,449=>370,450=>584,451=>278,452=>1311,453=>1208,454=>1056,455=>1056,456=>778,457=>444, |
|
50 | -458=>1158,459=>944,460=>778,461=>667,462=>556,463=>278,464=>278,465=>778,466=>556,467=>722, |
|
51 | -468=>556,469=>722,470=>556,471=>722,472=>556,473=>722,474=>556,475=>722,476=>556,477=>556, |
|
52 | -478=>667,479=>556,480=>667,481=>556,482=>1000,483=>889,484=>778,485=>556,486=>778,487=>556, |
|
53 | -488=>667,489=>500,490=>778,491=>556,492=>778,493=>556,494=>611,495=>500,496=>222,497=>1333, |
|
54 | -498=>1222,499=>1056,500=>778,501=>556,503=>630,504=>722,505=>556,506=>667,507=>556,508=>1000, |
|
55 | -509=>889,510=>778,511=>611,512=>667,513=>556,514=>667,515=>556,516=>667,517=>556,518=>667, |
|
56 | -519=>556,520=>278,521=>278,522=>278,523=>278,524=>778,525=>556,526=>778,527=>556,528=>722, |
|
57 | -529=>333,530=>722,531=>333,532=>722,533=>556,534=>722,535=>556,536=>667,537=>500,538=>611, |
|
58 | -539=>278,540=>521,541=>393,542=>722,543=>556,548=>611,549=>500,550=>667,551=>556,552=>667, |
|
59 | -553=>556,554=>778,555=>556,556=>778,557=>556,558=>778,559=>556,560=>778,561=>556,562=>667, |
|
60 | -563=>500,567=>222,592=>556,593=>556,594=>556,595=>556,596=>500,597=>500,598=>556,599=>556, |
|
61 | -600=>556,601=>556,602=>804,603=>500,604=>499,605=>742,606=>500,607=>222,608=>556,609=>556, |
|
62 | -610=>546,611=>500,612=>556,613=>556,614=>556,615=>556,616=>222,617=>222,618=>278,619=>473, |
|
63 | -620=>427,621=>222,622=>611,623=>833,624=>833,625=>833,626=>556,627=>556,628=>567,629=>556, |
|
64 | -630=>778,631=>722,632=>741,633=>333,634=>333,635=>333,636=>333,637=>333,638=>384,639=>369, |
|
65 | -640=>546,641=>546,642=>500,643=>278,644=>278,645=>278,646=>444,647=>278,648=>278,649=>556, |
|
66 | -650=>626,651=>539,652=>500,653=>722,654=>500,655=>556,656=>500,657=>500,658=>500,659=>552, |
|
67 | -660=>556,661=>556,662=>556,663=>722,664=>778,665=>506,666=>500,667=>546,668=>558,669=>444, |
|
68 | -670=>500,671=>430,672=>556,673=>556,674=>556,675=>944,676=>944,677=>944,678=>689,679=>506, |
|
69 | -680=>764,681=>766,682=>660,683=>577,684=>530,685=>486,686=>565,687=>621,688=>333,689=>333, |
|
70 | -690=>167,691=>236,692=>236,693=>276,694=>359,695=>500,696=>330,697=>278,698=>454,699=>278, |
|
71 | -700=>278,701=>278,702=>333,703=>333,704=>333,705=>333,706=>333,707=>333,708=>333,709=>333, |
|
72 | -711=>333,712=>333,713=>333,714=>333,715=>333,716=>272,717=>333,718=>333,719=>333,720=>333, |
|
73 | -721=>333,722=>333,723=>333,724=>333,725=>333,726=>333,727=>333,728=>333,729=>333,730=>333, |
|
74 | -731=>333,733=>333,734=>333,735=>510,736=>333,737=>186,738=>333,739=>333,740=>334,741=>526, |
|
75 | -742=>526,743=>526,744=>526,745=>526,746=>519,747=>519,748=>333,749=>333,750=>333,751=>333, |
|
76 | -752=>333,753=>333,754=>333,755=>327,756=>261,757=>437,758=>437,759=>333,760=>278,761=>200, |
|
77 | -762=>200,763=>200,764=>200,765=>333,766=>333,767=>333,768=>0,769=>0,770=>0,771=>0, |
|
78 | -772=>0,773=>0,774=>0,775=>0,776=>0,777=>0,778=>0,779=>0,780=>0,781=>0, |
|
79 | -782=>0,783=>0,784=>0,785=>0,786=>0,787=>0,788=>0,789=>0,790=>0,791=>0, |
|
80 | -792=>0,793=>0,794=>0,795=>0,796=>0,797=>0,798=>0,799=>0,800=>0,801=>0, |
|
81 | -802=>0,803=>0,804=>0,805=>0,806=>0,807=>0,808=>0,809=>0,810=>0,811=>0, |
|
82 | -812=>0,813=>0,814=>0,815=>0,816=>0,817=>0,818=>0,819=>0,820=>0,821=>0, |
|
83 | -822=>0,823=>0,824=>0,825=>0,826=>0,827=>0,828=>0,829=>0,830=>0,831=>0, |
|
84 | -832=>0,833=>0,834=>0,835=>0,836=>0,837=>0,838=>0,839=>0,840=>0,841=>0, |
|
85 | -842=>0,843=>0,844=>0,845=>0,846=>0,847=>0,848=>0,849=>0,850=>0,851=>0, |
|
86 | -852=>0,853=>0,854=>0,855=>0,856=>0,857=>0,858=>0,859=>0,860=>0,861=>0, |
|
87 | -862=>0,863=>0,864=>0,865=>0,866=>0,867=>0,868=>0,869=>0,870=>0,871=>0, |
|
88 | -872=>0,873=>0,874=>0,875=>0,876=>0,877=>0,878=>0,879=>0,884=>278,885=>199, |
|
89 | -890=>332,894=>278,900=>333,901=>333,902=>667,903=>275,904=>786,905=>828,906=>369,908=>833, |
|
90 | -910=>845,911=>778,912=>286,913=>667,914=>667,915=>582,916=>778,917=>667,918=>628,919=>722, |
|
91 | -920=>778,921=>278,922=>667,923=>667,924=>833,925=>722,926=>630,927=>778,928=>722,929=>667, |
|
92 | -931=>628,932=>611,933=>667,934=>717,935=>667,936=>745,937=>778,938=>278,939=>667,940=>608, |
|
93 | -941=>528,942=>548,943=>307,944=>538,945=>596,946=>542,947=>531,948=>564,949=>512,950=>455, |
|
94 | -951=>548,952=>525,953=>286,954=>510,955=>551,956=>540,957=>500,958=>470,959=>546,960=>619, |
|
95 | -961=>569,962=>547,963=>620,964=>492,965=>538,966=>741,967=>571,968=>662,969=>740,970=>286, |
|
96 | -971=>538,972=>546,973=>538,974=>740,977=>580,978=>742,979=>845,980=>620,981=>741,982=>740, |
|
97 | -983=>556,1008=>556,1009=>566,1012=>778,1013=>328,1024=>667,1025=>657,1026=>766,1027=>582,1028=>722, |
|
98 | -1029=>667,1030=>278,1031=>278,1032=>500,1033=>1080,1034=>1014,1035=>766,1036=>628,1037=>730,1038=>613, |
|
99 | -1039=>722,1040=>666,1041=>668,1042=>668,1043=>582,1044=>812,1045=>657,1046=>905,1047=>667,1048=>730, |
|
100 | -1049=>730,1050=>632,1051=>674,1052=>846,1053=>721,1054=>796,1055=>721,1056=>654,1057=>722,1058=>611, |
|
101 | -1059=>613,1060=>861,1061=>657,1062=>742,1063=>626,1064=>830,1065=>851,1066=>841,1067=>874,1068=>670, |
|
102 | -1069=>717,1070=>1001,1071=>686,1072=>552,1073=>550,1074=>506,1075=>404,1076=>602,1077=>547,1078=>755, |
|
103 | -1079=>499,1080=>567,1081=>567,1082=>489,1083=>517,1084=>618,1085=>558,1086=>550,1087=>557,1088=>577, |
|
104 | -1089=>520,1090=>444,1091=>468,1092=>865,1093=>466,1094=>578,1095=>498,1096=>692,1097=>712,1098=>664, |
|
105 | -1099=>690,1100=>521,1101=>520,1102=>759,1103=>543,1104=>549,1105=>549,1106=>577,1107=>404,1108=>519, |
|
106 | -1109=>502,1110=>224,1111=>278,1112=>223,1113=>813,1114=>853,1115=>577,1116=>489,1117=>567,1118=>468, |
|
107 | -1119=>558,1120=>942,1121=>693,1136=>762,1137=>662,1138=>800,1139=>550,1148=>942,1149=>693,1150=>942, |
|
108 | -1151=>693,1154=>468,1155=>0,1156=>0,1157=>0,1158=>0,1159=>0,1160=>0,1161=>0,1162=>763, |
|
109 | -1163=>583,1164=>689,1165=>526,1166=>652,1167=>572,1168=>601,1169=>397,1170=>589,1171=>392,1172=>591, |
|
110 | -1173=>475,1174=>927,1175=>830,1176=>661,1177=>493,1178=>658,1179=>510,1180=>675,1181=>519,1182=>684, |
|
111 | -1183=>514,1184=>839,1185=>653,1186=>740,1187=>570,1188=>987,1189=>714,1190=>1058,1191=>808,1192=>722, |
|
112 | -1193=>510,1194=>722,1195=>516,1196=>611,1197=>402,1198=>668,1199=>578,1200=>668,1201=>588,1202=>664, |
|
113 | -1203=>488,1204=>936,1205=>679,1206=>638,1207=>521,1208=>630,1209=>498,1210=>630,1211=>498,1212=>927, |
|
114 | -1213=>699,1214=>919,1215=>703,1216=>254,1217=>905,1218=>755,1219=>668,1220=>512,1221=>696,1222=>524, |
|
115 | -1223=>721,1224=>558,1225=>744,1226=>571,1227=>630,1228=>498,1229=>869,1230=>631,1231=>254,1232=>666, |
|
116 | -1233=>552,1234=>666,1235=>552,1236=>1000,1237=>879,1238=>657,1239=>547,1240=>722,1241=>543,1242=>722, |
|
117 | -1243=>543,1244=>905,1245=>755,1246=>667,1247=>499,1248=>611,1249=>540,1250=>730,1251=>567,1252=>730, |
|
118 | -1253=>567,1254=>796,1255=>550,1256=>800,1257=>550,1258=>800,1259=>550,1260=>717,1261=>520,1262=>613, |
|
119 | -1263=>468,1264=>613,1265=>468,1266=>613,1267=>468,1268=>626,1269=>498,1270=>582,1271=>395,1272=>874, |
|
120 | -1273=>690,1296=>667,1297=>491,1298=>665,1299=>509,1306=>778,1307=>575,1308=>934,1309=>712,1310=>627, |
|
121 | -1311=>489,1329=>720,1330=>696,1331=>750,1332=>725,1333=>699,1334=>751,1335=>446,1336=>703,1337=>790, |
|
122 | -1338=>656,1339=>697,1340=>390,1341=>852,1342=>791,1343=>698,1344=>585,1345=>656,1346=>651,1347=>658, |
|
123 | -1348=>759,1349=>595,1350=>772,1351=>603,1352=>703,1353=>648,1354=>698,1355=>744,1356=>738,1357=>703, |
|
124 | -1358=>739,1359=>660,1360=>693,1361=>623,1362=>385,1363=>788,1364=>632,1365=>775,1366=>714,1369=>333, |
|
125 | -1370=>222,1371=>200,1372=>333,1373=>333,1374=>333,1375=>333,1377=>833,1378=>551,1379=>572,1380=>569, |
|
126 | -1381=>546,1382=>581,1383=>353,1384=>551,1385=>568,1386=>569,1387=>552,1388=>276,1389=>795,1390=>535, |
|
127 | -1391=>553,1392=>537,1393=>512,1394=>568,1395=>552,1396=>531,1397=>249,1398=>527,1399=>405,1400=>551, |
|
128 | -1401=>390,1402=>833,1403=>509,1404=>523,1405=>545,1406=>584,1407=>879,1408=>552,1409=>552,1410=>301, |
|
129 | -1411=>884,1412=>578,1413=>556,1414=>668,1415=>544,1417=>278,1418=>333,1456=>0,1457=>0,1458=>0, |
|
130 | -1459=>0,1460=>0,1461=>0,1462=>0,1463=>0,1464=>0,1465=>0,1467=>0,1468=>0,1469=>0, |
|
131 | -1470=>488,1471=>0,1472=>212,1473=>0,1474=>0,1475=>278,1476=>0,1488=>640,1489=>591,1490=>466, |
|
132 | -1491=>598,1492=>622,1493=>212,1494=>351,1495=>623,1496=>608,1497=>200,1498=>526,1499=>550,1500=>600, |
|
133 | -1501=>623,1502=>621,1503=>212,1504=>378,1505=>607,1506=>587,1507=>575,1508=>568,1509=>540,1510=>590, |
|
134 | -1511=>606,1512=>547,1513=>776,1514=>687,1520=>424,1521=>412,1522=>400,1523=>184,1524=>344,1792=>600, |
|
135 | -1793=>201,1794=>201,1795=>201,1796=>201,1797=>500,1798=>500,1799=>500,1800=>370,1801=>370,1802=>574, |
|
136 | -1803=>574,1804=>645,1805=>574,1807=>0,1808=>452,1809=>452,1810=>574,1811=>645,1812=>645,1813=>509, |
|
137 | -1814=>509,1815=>682,1816=>585,1817=>404,1818=>627,1819=>718,1820=>718,1821=>484,1822=>682,1823=>600, |
|
138 | -1824=>660,1825=>682,1826=>538,1827=>718,1828=>718,1829=>718,1830=>574,1831=>574,1832=>638,1833=>585, |
|
139 | -1834=>509,1835=>682,1836=>682,1840=>0,1841=>0,1842=>0,1843=>0,1844=>0,1845=>0,1846=>0, |
|
140 | -1847=>0,1848=>0,1849=>0,1850=>0,1851=>0,1852=>0,1853=>0,1854=>0,1855=>0,1856=>0, |
|
141 | -1857=>0,1858=>0,1859=>0,1860=>0,1861=>0,1862=>0,1863=>0,1864=>0,1865=>0,1866=>0, |
|
142 | -2305=>6,2306=>0,2307=>305,2308=>717,2309=>717,2310=>829,2311=>463,2312=>463,2313=>581,2314=>803, |
|
143 | -2315=>920,2316=>639,2317=>430,2318=>430,2319=>430,2320=>430,2321=>856,2322=>828,2323=>837,2324=>856, |
|
144 | -2325=>749,2326=>779,2327=>522,2328=>587,2329=>650,2330=>619,2331=>641,2332=>703,2333=>691,2334=>677, |
|
145 | -2335=>568,2336=>529,2337=>611,2338=>536,2339=>607,2340=>564,2341=>659,2342=>500,2343=>591,2344=>521, |
|
146 | -2345=>568,2346=>477,2347=>728,2348=>490,2349=>577,2350=>517,2351=>554,2352=>433,2353=>433,2354=>656, |
|
147 | -2355=>660,2356=>660,2357=>490,2358=>645,2359=>477,2360=>666,2361=>484,2364=>6,2365=>442,2366=>211, |
|
148 | -2367=>211,2368=>211,2369=>6,2370=>3,2371=>6,2372=>0,2373=>6,2374=>84,2375=>6,2376=>6, |
|
149 | -2377=>224,2378=>234,2379=>211,2380=>211,2381=>6,2384=>839,2385=>15,2386=>0,2387=>9,2388=>9, |
|
150 | -2392=>750,2393=>779,2394=>522,2395=>703,2396=>613,2397=>536,2398=>728,2399=>554,2400=>899,2401=>625, |
|
151 | -2402=>625,2403=>625,2404=>674,2405=>674,2406=>575,2407=>575,2408=>575,2409=>575,2410=>575,2411=>575, |
|
152 | -2412=>575,2413=>575,2414=>575,2415=>575,2416=>365,2417=>387,2418=>717,2433=>0,2434=>300,2435=>264, |
|
153 | -2437=>594,2438=>790,2439=>469,2440=>513,2441=>520,2442=>549,2443=>594,2444=>481,2447=>580,2448=>627, |
|
154 | -2451=>540,2452=>613,2453=>570,2454=>467,2455=>471,2456=>428,2457=>483,2458=>408,2459=>509,2460=>591, |
|
155 | -2461=>563,2462=>771,2463=>381,2464=>404,2465=>522,2466=>408,2467=>450,2468=>543,2469=>477,2470=>418, |
|
156 | -2471=>433,2472=>445,2474=>499,2475=>584,2476=>377,2477=>555,2478=>448,2479=>423,2480=>390,2482=>498, |
|
157 | -2486=>498,2487=>425,2488=>495,2489=>440,2492=>22,2493=>440,2494=>193,2495=>189,2496=>180,2497=>0, |
|
158 | -2498=>0,2499=>0,2500=>0,2503=>252,2504=>243,2507=>889,2508=>865,2509=>0,2510=>356,2519=>219, |
|
159 | -2524=>523,2525=>408,2527=>428,2528=>594,2529=>481,2530=>0,2531=>0,2534=>500,2535=>437,2536=>479, |
|
160 | -2537=>530,2538=>497,2539=>500,2540=>482,2541=>503,2542=>517,2543=>481,2544=>377,2545=>377,2546=>429, |
|
161 | -2547=>383,2548=>429,2549=>478,2550=>545,2551=>158,2552=>365,2553=>280,2554=>357,2561=>0,2562=>0, |
|
162 | -2563=>351,2565=>860,2566=>1088,2567=>869,2568=>928,2569=>723,2570=>723,2575=>665,2576=>857,2579=>716, |
|
163 | -2580=>858,2581=>682,2582=>634,2583=>696,2584=>744,2585=>649,2586=>674,2587=>656,2588=>653,2589=>629, |
|
164 | -2590=>639,2591=>641,2592=>657,2593=>650,2594=>653,2595=>651,2596=>640,2597=>634,2598=>662,2599=>630, |
|
165 | -2600=>625,2602=>645,2603=>653,2604=>624,2605=>613,2606=>658,2607=>734,2608=>620,2610=>676,2611=>719, |
|
166 | -2613=>626,2614=>666,2616=>666,2617=>614,2620=>0,2622=>286,2623=>322,2624=>301,2625=>0,2626=>0, |
|
167 | -2631=>0,2632=>0,2635=>0,2636=>0,2637=>0,2649=>636,2650=>762,2651=>652,2652=>653,2654=>656, |
|
168 | -2662=>672,2663=>543,2664=>622,2665=>622,2666=>576,2667=>589,2668=>509,2669=>645,2670=>661,2671=>655, |
|
169 | -2672=>0,2673=>0,2674=>666,2675=>726,2676=>1217,2689=>22,2690=>23,2691=>0,2693=>775,2694=>979, |
|
170 | -2695=>588,2696=>563,2697=>525,2698=>724,2699=>942,2701=>775,2703=>775,2704=>775,2705=>979,2707=>979, |
|
171 | -2708=>979,2709=>610,2710=>706,2711=>623,2712=>610,2713=>601,2714=>614,2715=>642,2716=>684,2717=>634, |
|
172 | -2718=>644,2719=>509,2720=>541,2721=>539,2722=>524,2723=>657,2724=>547,2725=>616,2726=>494,2727=>601, |
|
173 | -2728=>627,2730=>524,2731=>620,2732=>691,2733=>687,2734=>468,2735=>590,2736=>509,2738=>571,2739=>687, |
|
174 | -2741=>526,2742=>620,2743=>575,2744=>620,2745=>549,2748=>53,2749=>415,2750=>241,2751=>186,2752=>217, |
|
175 | -2753=>32,2754=>21,2755=>38,2756=>27,2757=>45,2759=>41,2760=>46,2761=>207,2763=>190,2764=>182, |
|
176 | -2765=>16,2768=>962,2784=>949,2790=>479,2791=>502,2792=>484,2793=>471,2794=>501,2795=>527,2796=>462, |
|
177 | -2797=>524,2798=>454,2799=>495,2801=>752,2946=>479,2947=>893,2949=>1018,2950=>1170,2951=>916,2952=>676, |
|
178 | -2953=>836,2954=>1225,2958=>744,2959=>744,2960=>848,2962=>813,2963=>813,2964=>813,2965=>688,2969=>744, |
|
179 | -2970=>676,2972=>848,2974=>984,2975=>777,2979=>1338,2980=>664,2984=>561,2985=>1029,2986=>607,2990=>697, |
|
180 | -2991=>697,2992=>434,2993=>617,2994=>869,2995=>859,2996=>697,2997=>869,2999=>1145,3000=>1064,3001=>1316, |
|
181 | -3006=>424,3007=>125,3008=>596,3009=>539,3014=>596,3015=>650,3016=>973,3018=>1286,3019=>1286,3020=>1706, |
|
182 | -3021=>333,3031=>859,3050=>778,3051=>881,3052=>876,3053=>648,3057=>744,4256=>587,4257=>620,4258=>642, |
|
183 | -4259=>815,4260=>600,4261=>595,4262=>799,4263=>893,4264=>622,4265=>597,4266=>939,4267=>602,4268=>603, |
|
184 | -4269=>790,4270=>587,4271=>623,4272=>799,4273=>601,4274=>792,4275=>724,4276=>847,4277=>599,4278=>812, |
|
185 | -4279=>603,4280=>653,4281=>590,4282=>754,4283=>596,4284=>653,4285=>651,4286=>596,4287=>888,4288=>593, |
|
186 | -4304=>436,4305=>491,4306=>528,4307=>692,4308=>447,4309=>447,4310=>628,4311=>734,4312=>449,4313=>445, |
|
187 | -4314=>843,4315=>449,4316=>449,4317=>682,4318=>449,4319=>480,4320=>682,4321=>468,4322=>710,4323=>623, |
|
188 | -4324=>697,4325=>447,4326=>702,4327=>447,4328=>470,4329=>440,4330=>632,4331=>449,4332=>470,4333=>536, |
|
189 | -4334=>449,4335=>656,4336=>474,4337=>630,4338=>394,4339=>419,4340=>422,4341=>436,4345=>528,4347=>515, |
|
190 | -7680=>667,7681=>556,7682=>667,7683=>556,7684=>667,7685=>556,7686=>667,7687=>556,7688=>722,7689=>500, |
|
191 | -7690=>722,7691=>556,7692=>722,7693=>556,7694=>722,7695=>556,7696=>722,7697=>556,7698=>722,7699=>556, |
|
192 | -7700=>667,7701=>556,7702=>667,7703=>556,7704=>667,7705=>556,7706=>667,7707=>556,7708=>667,7709=>556, |
|
193 | -7710=>611,7711=>278,7712=>778,7713=>556,7714=>722,7715=>556,7716=>722,7717=>556,7718=>722,7719=>556, |
|
194 | -7720=>722,7721=>556,7722=>722,7723=>556,7724=>278,7725=>222,7726=>278,7727=>278,7728=>667,7729=>500, |
|
195 | -7730=>667,7731=>500,7732=>667,7733=>500,7734=>556,7735=>222,7736=>556,7737=>222,7738=>556,7739=>222, |
|
196 | -7740=>556,7741=>222,7742=>833,7743=>833,7744=>833,7745=>833,7746=>833,7747=>833,7748=>722,7749=>556, |
|
197 | -7750=>722,7751=>556,7752=>722,7753=>556,7754=>722,7755=>556,7756=>778,7757=>556,7758=>778,7759=>556, |
|
198 | -7760=>778,7761=>556,7762=>778,7763=>556,7764=>667,7765=>556,7766=>667,7767=>556,7768=>722,7769=>333, |
|
199 | -7770=>722,7771=>333,7772=>722,7773=>333,7774=>722,7775=>333,7776=>667,7777=>500,7778=>667,7779=>500, |
|
200 | -7780=>667,7781=>500,7782=>667,7783=>500,7784=>667,7785=>500,7786=>611,7787=>278,7788=>611,7789=>278, |
|
201 | -7790=>611,7791=>278,7792=>611,7793=>278,7794=>722,7795=>556,7796=>722,7797=>556,7798=>722,7799=>556, |
|
202 | -7800=>722,7801=>556,7802=>722,7803=>556,7804=>667,7805=>500,7806=>667,7807=>500,7808=>944,7809=>722, |
|
203 | -7810=>944,7811=>722,7812=>944,7813=>722,7814=>944,7815=>722,7816=>944,7817=>722,7818=>667,7819=>500, |
|
204 | -7820=>667,7821=>500,7822=>667,7823=>500,7824=>611,7825=>500,7826=>611,7827=>500,7828=>611,7829=>500, |
|
205 | -7830=>556,7831=>278,7832=>722,7833=>500,7834=>555,7835=>278,7840=>667,7841=>556,7842=>667,7843=>556, |
|
206 | -7844=>667,7845=>556,7846=>667,7847=>556,7848=>667,7849=>556,7850=>667,7851=>556,7852=>667,7853=>556, |
|
207 | -7854=>667,7855=>556,7856=>667,7857=>556,7858=>667,7859=>556,7860=>667,7861=>556,7862=>667,7863=>556, |
|
208 | -7864=>667,7865=>556,7866=>667,7867=>556,7868=>667,7869=>556,7870=>667,7871=>556,7872=>667,7873=>556, |
|
209 | -7874=>667,7875=>556,7876=>667,7877=>556,7878=>667,7879=>556,7880=>278,7881=>278,7882=>278,7883=>222, |
|
210 | -7884=>778,7885=>556,7886=>778,7887=>556,7888=>778,7889=>556,7890=>778,7891=>556,7892=>778,7893=>556, |
|
211 | -7894=>778,7895=>556,7896=>778,7897=>556,7898=>788,7899=>565,7900=>788,7901=>565,7902=>788,7903=>565, |
|
212 | -7904=>788,7905=>565,7906=>788,7907=>565,7908=>722,7909=>556,7910=>722,7911=>556,7912=>776,7913=>624, |
|
213 | -7914=>776,7915=>624,7916=>776,7917=>624,7918=>776,7919=>624,7920=>776,7921=>624,7922=>667,7923=>500, |
|
214 | -7924=>667,7925=>500,7926=>667,7927=>500,7928=>667,7929=>500,7936=>596,7937=>596,7938=>596,7939=>596, |
|
215 | -7940=>596,7941=>596,7942=>596,7943=>596,7944=>667,7945=>667,7946=>742,7947=>756,7948=>692,7949=>699, |
|
216 | -7950=>673,7951=>667,7952=>512,7953=>512,7954=>512,7955=>512,7956=>512,7957=>512,7960=>730,7961=>714, |
|
217 | -7962=>900,7963=>882,7964=>867,7965=>879,7968=>548,7969=>548,7970=>548,7971=>548,7972=>548,7973=>548, |
|
218 | -7974=>548,7975=>548,7976=>772,7977=>778,7978=>945,7979=>947,7980=>943,7981=>946,7982=>853,7983=>853, |
|
219 | -7984=>286,7985=>286,7986=>286,7987=>286,7988=>286,7989=>286,7990=>286,7991=>286,7992=>322,7993=>321, |
|
220 | -7994=>482,7995=>485,7996=>477,7997=>484,7998=>394,7999=>390,8000=>546,8001=>546,8002=>546,8003=>546, |
|
221 | -8004=>546,8005=>546,8008=>775,8009=>784,8010=>990,8011=>987,8012=>887,8013=>897,8016=>538,8017=>538, |
|
222 | -8018=>538,8019=>538,8020=>538,8021=>538,8022=>538,8023=>538,8025=>747,8027=>915,8029=>971,8031=>863, |
|
223 | -8032=>740,8033=>740,8034=>740,8035=>740,8036=>740,8037=>740,8038=>740,8039=>740,8040=>769,8041=>774, |
|
224 | -8042=>972,8043=>970,8044=>879,8045=>918,8046=>901,8047=>901,8048=>596,8049=>596,8050=>512,8051=>512, |
|
225 | -8052=>548,8053=>548,8054=>286,8055=>286,8056=>546,8057=>546,8058=>538,8059=>538,8060=>740,8061=>740, |
|
226 | -8064=>596,8065=>596,8066=>596,8067=>596,8068=>596,8069=>596,8070=>596,8071=>596,8072=>830,8073=>828, |
|
227 | -8074=>916,8075=>916,8076=>853,8077=>860,8078=>835,8079=>827,8080=>548,8081=>548,8082=>548,8083=>548, |
|
228 | -8084=>548,8085=>548,8086=>548,8087=>548,8088=>928,8089=>931,8090=>1104,8091=>1109,8092=>1099,8093=>1102, |
|
229 | -8094=>1009,8095=>1012,8096=>740,8097=>740,8098=>740,8099=>740,8100=>740,8101=>740,8102=>740,8103=>740, |
|
230 | -8104=>934,8105=>934,8106=>1130,8107=>1128,8108=>1045,8109=>1077,8110=>1062,8111=>1065,8112=>596,8113=>596, |
|
231 | -8114=>596,8115=>596,8116=>596,8118=>596,8119=>596,8120=>667,8121=>667,8122=>667,8123=>667,8124=>832, |
|
232 | -8125=>333,8126=>200,8127=>333,8128=>333,8129=>333,8130=>548,8131=>548,8132=>548,8134=>548,8135=>548, |
|
233 | -8136=>833,8137=>776,8138=>944,8139=>896,8140=>875,8141=>400,8142=>400,8143=>333,8144=>286,8145=>286, |
|
234 | -8146=>286,8147=>286,8150=>286,8151=>286,8152=>278,8153=>278,8154=>385,8155=>376,8157=>400,8158=>400, |
|
235 | -8159=>333,8160=>538,8161=>538,8162=>538,8163=>538,8164=>569,8165=>569,8166=>538,8167=>514,8168=>667, |
|
236 | -8169=>667,8170=>817,8171=>827,8172=>741,8173=>393,8174=>393,8175=>333,8178=>740,8179=>740,8180=>740, |
|
237 | -8182=>740,8183=>740,8184=>833,8185=>833,8186=>848,8187=>814,8188=>939,8189=>333,8190=>333,8192=>500, |
|
238 | -8193=>1000,8194=>500,8195=>1000,8196=>333,8197=>250,8198=>167,8199=>556,8200=>278,8201=>200,8202=>100, |
|
239 | -8203=>0,8204=>0,8205=>0,8206=>0,8207=>0,8208=>333,8209=>333,8210=>556,8213=>1000,8214=>312, |
|
240 | -8215=>566,8219=>221,8223=>333,8227=>350,8228=>278,8229=>666,8231=>278,8232=>0,8233=>0,8234=>0, |
|
241 | -8235=>0,8236=>0,8237=>0,8238=>0,8239=>500,8241=>1360,8242=>278,8243=>469,8244=>680,8245=>278, |
|
242 | -8246=>469,8247=>680,8248=>376,8251=>622,8252=>556,8253=>556,8254=>556,8255=>658,8256=>658,8257=>438, |
|
243 | -8258=>840,8259=>400,8260=>167,8261=>334,8262=>334,8263=>1112,8264=>834,8265=>834,8266=>556,8267=>537, |
|
244 | -8268=>537,8269=>537,8270=>389,8271=>278,8272=>658,8273=>389,8274=>634,8275=>500,8276=>658,8277=>787, |
|
245 | -8278=>515,8279=>855,8280=>722,8281=>725,8282=>224,8283=>722,8284=>604,8285=>224,8286=>224,8287=>0, |
|
246 | -8288=>0,8289=>0,8290=>0,8291=>0,8292=>0,8304=>350,8305=>350,8308=>350,8309=>350,8310=>350, |
|
247 | -8311=>350,8312=>350,8313=>350,8314=>350,8315=>350,8316=>350,8317=>350,8318=>350,8319=>350,8320=>350, |
|
248 | -8321=>350,8322=>350,8323=>350,8324=>350,8325=>350,8326=>350,8327=>350,8328=>350,8329=>350,8330=>350, |
|
249 | -8331=>350,8332=>350,8333=>350,8334=>350,8336=>350,8337=>349,8338=>350,8339=>350,8340=>350,8353=>615, |
|
250 | -8354=>601,8355=>611,8356=>556,8357=>833,8358=>682,8359=>1317,8360=>1202,8361=>879,8362=>869,8363=>538, |
|
251 | -8365=>667,8366=>611,8368=>570,8369=>684,8370=>717,8371=>667,8372=>667,8373=>640,8400=>0,8401=>0, |
|
252 | -8402=>0,8403=>0,8406=>0,8407=>0,8411=>0,8412=>0,8413=>0,8414=>0,8415=>0,8416=>0, |
|
253 | -8417=>0,8421=>0,8422=>0,8423=>0,8424=>0,8425=>0,8426=>0,8427=>0,8428=>0,8429=>0, |
|
254 | -8430=>0,8431=>0,8432=>0,8448=>970,8449=>979,8451=>1017,8452=>556,8453=>876,8454=>922,8455=>667, |
|
255 | -8457=>919,8459=>969,8460=>615,8462=>556,8463=>572,8464=>809,8465=>606,8466=>874,8467=>417,8468=>747, |
|
256 | -8470=>934,8471=>737,8472=>600,8475=>850,8476=>699,8480=>1000,8481=>1230,8486=>778,8487=>778,8488=>512, |
|
257 | -8489=>286,8490=>667,8491=>667,8492=>908,8493=>623,8494=>556,8495=>444,8496=>562,8497=>895,8498=>588, |
|
258 | -8499=>1080,8501=>640,8502=>592,8503=>466,8504=>598,8505=>278,8506=>871,8507=>1230,8513=>778,8514=>556, |
|
259 | -8515=>556,8516=>667,8522=>516,8523=>655,8525=>936,8526=>482,8531=>869,8532=>869,8533=>869,8534=>869, |
|
260 | -8535=>869,8536=>869,8537=>869,8538=>869,8539=>869,8540=>869,8541=>869,8542=>869,8543=>869,8544=>278, |
|
261 | -8545=>556,8546=>834,8547=>945,8548=>667,8549=>945,8550=>1223,8551=>1501,8552=>945,8553=>667,8554=>945, |
|
262 | -8555=>1223,8556=>556,8557=>722,8558=>722,8559=>833,8560=>222,8561=>444,8562=>666,8563=>722,8564=>500, |
|
263 | -8565=>722,8566=>944,8567=>1166,8568=>722,8569=>500,8570=>722,8571=>944,8572=>222,8573=>500,8574=>556, |
|
264 | -8575=>833,8592=>987,8593=>603,8594=>987,8595=>603,8596=>1042,8597=>1042,8598=>800,8599=>800,8600=>800, |
|
265 | -8601=>800,8614=>987,8617=>987,8618=>987,8629=>658,8636=>987,8637=>987,8638=>380,8639=>393,8640=>987, |
|
266 | -8641=>987,8642=>380,8643=>379,8652=>987,8656=>987,8657=>603,8658=>987,8659=>603,8660=>1042,8661=>603, |
|
267 | -8669=>1092,8704=>667,8706=>556,8707=>667,8709=>823,8710=>711,8711=>711,8712=>584,8713=>584,8714=>584, |
|
268 | -8715=>584,8716=>584,8717=>713,8719=>823,8720=>823,8721=>804,8722=>584,8723=>584,8724=>584,8725=>510, |
|
269 | -8726=>392,8727=>584,8729=>584,8730=>542,8733=>713,8734=>713,8736=>768,8739=>200,8740=>288,8741=>312, |
|
270 | -8742=>340,8743=>603,8744=>603,8745=>768,8746=>768,8747=>556,8748=>796,8749=>956,8750=>556,8756=>863, |
|
271 | -8764=>584,8765=>584,8766=>573,8768=>244,8769=>584,8770=>584,8771=>584,8772=>584,8773=>584,8774=>584, |
|
272 | -8775=>584,8776=>584,8777=>584,8781=>554,8784=>584,8800=>584,8801=>584,8802=>584,8804=>584,8805=>584, |
|
273 | -8810=>955,8811=>955,8813=>554,8814=>584,8815=>584,8816=>584,8817=>584,8818=>584,8819=>584,8826=>584, |
|
274 | -8827=>584,8828=>584,8829=>584,8832=>584,8833=>584,8834=>584,8835=>584,8836=>584,8837=>584,8838=>584, |
|
275 | -8839=>584,8840=>584,8841=>584,8844=>768,8847=>636,8848=>636,8849=>636,8850=>636,8851=>636,8852=>636, |
|
276 | -8853=>768,8854=>768,8855=>768,8856=>768,8857=>768,8866=>658,8867=>658,8868=>658,8869=>658,8870=>600, |
|
277 | -8871=>608,8882=>636,8883=>636,8884=>636,8885=>636,8896=>744,8897=>744,8898=>764,8899=>764,8901=>278, |
|
278 | -8902=>471,8904=>710,8928=>584,8929=>584,8930=>636,8931=>636,8960=>823,8968=>456,8969=>455,8970=>455, |
|
279 | -8971=>456,8992=>556,8993=>556,8994=>658,8995=>658,9001=>329,9002=>329,9115=>384,9116=>384,9117=>384, |
|
280 | -9118=>384,9119=>384,9120=>384,9121=>388,9122=>388,9123=>388,9124=>388,9125=>388,9126=>388,9134=>556, |
|
281 | -9250=>556,9251=>500,9312=>788,9313=>788,9314=>788,9315=>788,9316=>788,9317=>788,9318=>788,9319=>788, |
|
282 | -9320=>788,9321=>788,9472=>1000,9473=>1000,9474=>1000,9475=>1000,9476=>1000,9477=>1000,9478=>1000,9479=>1000, |
|
283 | -9480=>1000,9481=>1000,9482=>1000,9483=>1000,9484=>1000,9485=>1000,9486=>1000,9487=>1000,9488=>1000,9489=>1000, |
|
284 | -9490=>1000,9491=>1000,9492=>1000,9493=>1000,9494=>1000,9495=>1000,9496=>1000,9497=>1000,9498=>1000,9499=>1000, |
|
285 | -9500=>1000,9501=>1000,9502=>1000,9503=>1000,9504=>1000,9505=>1000,9506=>1000,9507=>1000,9508=>1000,9509=>1000, |
|
286 | -9510=>1000,9511=>1000,9512=>1000,9513=>1000,9514=>1000,9515=>1000,9516=>1000,9517=>1000,9518=>1000,9519=>1000, |
|
287 | -9520=>1000,9521=>1000,9522=>1000,9523=>1000,9524=>1000,9525=>1000,9526=>1000,9527=>1000,9528=>1000,9529=>1000, |
|
288 | -9530=>1000,9531=>1000,9532=>1000,9533=>1000,9534=>1000,9535=>1000,9536=>1000,9537=>1000,9538=>1000,9539=>1000, |
|
289 | -9540=>1000,9541=>1000,9542=>1000,9543=>1000,9544=>1000,9545=>1000,9546=>1000,9547=>1000,9552=>1000,9553=>1000, |
|
290 | -9554=>1000,9555=>1000,9556=>1000,9557=>1000,9558=>1000,9559=>1000,9560=>1000,9561=>1000,9562=>1000,9563=>1000, |
|
291 | -9564=>1000,9565=>1000,9566=>1000,9567=>1000,9568=>1000,9569=>1000,9570=>1000,9571=>1000,9572=>1000,9573=>1000, |
|
292 | -9574=>1000,9575=>1000,9576=>1000,9577=>1000,9578=>1000,9579=>1000,9580=>1000,9600=>1000,9601=>1000,9602=>1000, |
|
293 | -9603=>1000,9604=>1000,9605=>1000,9606=>1000,9607=>1000,9608=>1000,9609=>1000,9610=>1000,9611=>1000,9612=>1000, |
|
294 | -9613=>1000,9614=>1000,9615=>1000,9616=>1000,9617=>1000,9618=>1000,9619=>1000,9620=>1000,9621=>1000,9622=>1000, |
|
295 | -9623=>1000,9624=>1000,9625=>1000,9626=>1000,9627=>1000,9628=>1000,9629=>1000,9630=>1000,9631=>1000,9632=>1000, |
|
296 | -9633=>1000,9635=>1000,9636=>1000,9637=>1000,9642=>1000,9644=>1000,9651=>892,9661=>892,9671=>788,9674=>489, |
|
297 | -9675=>791,9711=>882,9772=>929,9824=>626,9825=>694,9826=>595,9827=>776,9828=>626,9829=>694,9830=>595, |
|
298 | -9831=>776,9833=>333,9834=>555,9835=>722,9836=>722,9837=>415,9838=>377,9839=>402,10048=>1161,10752=>791, |
|
299 | -10753=>791,10754=>791,10755=>764,10756=>764,10761=>584,11799=>333,64256=>495,64257=>460,64258=>465,64259=>652, |
|
300 | -64260=>645,64261=>520,64275=>1004,64276=>1044,64277=>1042,64278=>1037,64279=>1256,64285=>200,64286=>305,64287=>400, |
|
301 | -64288=>587,64289=>890,64290=>848,64291=>872,64292=>800,64293=>850,64294=>873,64295=>797,64296=>937,64297=>584, |
|
302 | -64298=>776,64299=>776,64300=>776,64301=>776,64302=>640,64303=>640,64304=>640,64305=>591,64306=>466,64307=>598, |
|
303 | -64308=>622,64309=>262,64310=>351,64312=>608,64313=>270,64314=>526,64315=>550,64316=>600,64318=>621,64320=>378, |
|
304 | -64321=>607,64323=>575,64324=>568,64326=>590,64327=>606,64328=>547,64329=>776,64330=>687,64331=>212,64332=>591, |
|
305 | -64333=>550,64334=>568,64335=>640,65533=>788); |
|
306 | -$enc=''; |
|
307 | -$diff=''; |
|
308 | -$file='freesans.z'; |
|
309 | -$ctg='freesans.ctg.z'; |
|
310 | -$originalsize=568896; |
|
2 | +$type = 'TrueTypeUnicode'; |
|
3 | +$name = 'FreeSans'; |
|
4 | +$desc = array('Ascent'=>1000, 'Descent'=>-300, 'CapHeight'=>22, 'Flags'=>32, 'FontBBox'=>'[-958 -550 1632 1050]', 'ItalicAngle'=>0, 'StemV'=>70, 'MissingWidth'=>600); |
|
5 | +$up = -176; |
|
6 | +$ut = 50; |
|
7 | +$dw = 600; |
|
8 | +$cw = array( |
|
9 | +32=>278, 33=>278, 34=>355, 35=>556, 36=>556, 37=>889, 38=>667, 39=>191, 40=>333, 41=>333, |
|
10 | +42=>389, 43=>584, 44=>278, 45=>333, 46=>278, 47=>278, 48=>556, 49=>556, 50=>556, 51=>556, |
|
11 | +52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>278, 59=>278, 60=>584, 61=>584, |
|
12 | +62=>584, 63=>556, 64=>1015, 65=>667, 66=>667, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, |
|
13 | +72=>722, 73=>278, 74=>500, 75=>667, 76=>556, 77=>833, 78=>722, 79=>778, 80=>667, 81=>778, |
|
14 | +82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>278, |
|
15 | +92=>278, 93=>277, 94=>469, 95=>556, 96=>333, 97=>556, 98=>556, 99=>500, 100=>556, 101=>556, |
|
16 | +102=>278, 103=>556, 104=>556, 105=>222, 106=>222, 107=>500, 108=>222, 109=>833, 110=>556, 111=>556, |
|
17 | +112=>556, 113=>556, 114=>333, 115=>500, 116=>278, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, |
|
18 | +122=>500, 123=>334, 124=>260, 125=>334, 126=>584, 8364=>655, 8218=>222, 402=>278, 8222=>333, 8230=>1000, |
|
19 | +8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>250, 338=>1000, 381=>611, 8216=>222, 8217=>221, |
|
20 | +8220=>333, 8221=>333, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>500, 8250=>250, 339=>944, |
|
21 | +382=>500, 376=>667, 160=>278, 161=>278, 162=>556, 163=>556, 164=>556, 165=>556, 166=>260, 167=>556, |
|
22 | +168=>333, 169=>737, 170=>370, 171=>448, 172=>584, 173=>333, 174=>737, 175=>333, 176=>606, 177=>584, |
|
23 | +178=>350, 179=>350, 180=>333, 181=>556, 182=>537, 183=>278, 184=>333, 185=>350, 186=>365, 187=>448, |
|
24 | +188=>869, 189=>869, 190=>869, 191=>556, 192=>667, 193=>667, 194=>667, 195=>667, 196=>667, 197=>667, |
|
25 | +198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, |
|
26 | +208=>722, 209=>722, 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, |
|
27 | +218=>722, 219=>722, 220=>722, 221=>667, 222=>666, 223=>611, 224=>556, 225=>556, 226=>556, 227=>556, |
|
28 | +228=>556, 229=>556, 230=>889, 231=>500, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, |
|
29 | +238=>278, 239=>278, 240=>556, 241=>556, 242=>556, 243=>556, 244=>556, 245=>556, 246=>556, 247=>584, |
|
30 | +248=>611, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>555, 255=>500, 256=>667, 257=>556, |
|
31 | +258=>667, 259=>556, 260=>667, 261=>556, 262=>722, 263=>500, 264=>722, 265=>500, 266=>722, 267=>500, |
|
32 | +268=>722, 269=>500, 270=>722, 271=>722, 272=>722, 273=>556, 274=>667, 275=>556, 276=>667, 277=>556, |
|
33 | +278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>556, 286=>778, 287=>556, |
|
34 | +288=>778, 289=>556, 290=>778, 291=>556, 292=>722, 293=>556, 294=>722, 295=>556, 296=>278, 297=>278, |
|
35 | +298=>278, 299=>278, 300=>278, 301=>278, 302=>278, 303=>222, 304=>278, 305=>278, 306=>700, 307=>374, |
|
36 | +308=>500, 309=>222, 310=>667, 311=>500, 312=>500, 313=>556, 314=>222, 315=>556, 316=>222, 317=>556, |
|
37 | +318=>387, 319=>556, 320=>500, 321=>556, 322=>222, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, |
|
38 | +328=>556, 329=>722, 330=>722, 331=>556, 332=>778, 333=>556, 334=>778, 335=>556, 336=>778, 337=>556, |
|
39 | +340=>722, 341=>333, 342=>722, 343=>333, 344=>722, 345=>333, 346=>667, 347=>500, 348=>667, 349=>500, |
|
40 | +350=>667, 351=>500, 354=>611, 355=>278, 356=>611, 357=>443, 358=>611, 359=>278, 360=>722, 361=>556, |
|
41 | +362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, |
|
42 | +372=>944, 373=>722, 374=>667, 375=>500, 377=>611, 378=>500, 379=>611, 380=>500, 383=>278, 384=>556, |
|
43 | +385=>854, 386=>668, 387=>556, 388=>667, 389=>556, 390=>722, 391=>722, 392=>500, 393=>722, 394=>899, |
|
44 | +395=>667, 396=>556, 397=>564, 398=>667, 399=>722, 400=>667, 401=>611, 403=>778, 404=>667, 405=>889, |
|
45 | +406=>278, 407=>333, 408=>667, 409=>500, 410=>333, 411=>560, 412=>833, 413=>722, 414=>556, 415=>778, |
|
46 | +416=>788, 417=>565, 418=>944, 419=>722, 420=>842, 421=>556, 422=>666, 423=>667, 424=>500, 425=>611, |
|
47 | +426=>333, 427=>278, 428=>611, 429=>278, 430=>611, 431=>776, 432=>624, 433=>778, 434=>722, 435=>722, |
|
48 | +436=>556, 437=>611, 438=>500, 439=>611, 440=>611, 441=>500, 442=>500, 443=>556, 446=>556, 447=>556, |
|
49 | +448=>260, 449=>370, 450=>584, 451=>278, 452=>1311, 453=>1208, 454=>1056, 455=>1056, 456=>778, 457=>444, |
|
50 | +458=>1158, 459=>944, 460=>778, 461=>667, 462=>556, 463=>278, 464=>278, 465=>778, 466=>556, 467=>722, |
|
51 | +468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556, 477=>556, |
|
52 | +478=>667, 479=>556, 480=>667, 481=>556, 482=>1000, 483=>889, 484=>778, 485=>556, 486=>778, 487=>556, |
|
53 | +488=>667, 489=>500, 490=>778, 491=>556, 492=>778, 493=>556, 494=>611, 495=>500, 496=>222, 497=>1333, |
|
54 | +498=>1222, 499=>1056, 500=>778, 501=>556, 503=>630, 504=>722, 505=>556, 506=>667, 507=>556, 508=>1000, |
|
55 | +509=>889, 510=>778, 511=>611, 512=>667, 513=>556, 514=>667, 515=>556, 516=>667, 517=>556, 518=>667, |
|
56 | +519=>556, 520=>278, 521=>278, 522=>278, 523=>278, 524=>778, 525=>556, 526=>778, 527=>556, 528=>722, |
|
57 | +529=>333, 530=>722, 531=>333, 532=>722, 533=>556, 534=>722, 535=>556, 536=>667, 537=>500, 538=>611, |
|
58 | +539=>278, 540=>521, 541=>393, 542=>722, 543=>556, 548=>611, 549=>500, 550=>667, 551=>556, 552=>667, |
|
59 | +553=>556, 554=>778, 555=>556, 556=>778, 557=>556, 558=>778, 559=>556, 560=>778, 561=>556, 562=>667, |
|
60 | +563=>500, 567=>222, 592=>556, 593=>556, 594=>556, 595=>556, 596=>500, 597=>500, 598=>556, 599=>556, |
|
61 | +600=>556, 601=>556, 602=>804, 603=>500, 604=>499, 605=>742, 606=>500, 607=>222, 608=>556, 609=>556, |
|
62 | +610=>546, 611=>500, 612=>556, 613=>556, 614=>556, 615=>556, 616=>222, 617=>222, 618=>278, 619=>473, |
|
63 | +620=>427, 621=>222, 622=>611, 623=>833, 624=>833, 625=>833, 626=>556, 627=>556, 628=>567, 629=>556, |
|
64 | +630=>778, 631=>722, 632=>741, 633=>333, 634=>333, 635=>333, 636=>333, 637=>333, 638=>384, 639=>369, |
|
65 | +640=>546, 641=>546, 642=>500, 643=>278, 644=>278, 645=>278, 646=>444, 647=>278, 648=>278, 649=>556, |
|
66 | +650=>626, 651=>539, 652=>500, 653=>722, 654=>500, 655=>556, 656=>500, 657=>500, 658=>500, 659=>552, |
|
67 | +660=>556, 661=>556, 662=>556, 663=>722, 664=>778, 665=>506, 666=>500, 667=>546, 668=>558, 669=>444, |
|
68 | +670=>500, 671=>430, 672=>556, 673=>556, 674=>556, 675=>944, 676=>944, 677=>944, 678=>689, 679=>506, |
|
69 | +680=>764, 681=>766, 682=>660, 683=>577, 684=>530, 685=>486, 686=>565, 687=>621, 688=>333, 689=>333, |
|
70 | +690=>167, 691=>236, 692=>236, 693=>276, 694=>359, 695=>500, 696=>330, 697=>278, 698=>454, 699=>278, |
|
71 | +700=>278, 701=>278, 702=>333, 703=>333, 704=>333, 705=>333, 706=>333, 707=>333, 708=>333, 709=>333, |
|
72 | +711=>333, 712=>333, 713=>333, 714=>333, 715=>333, 716=>272, 717=>333, 718=>333, 719=>333, 720=>333, |
|
73 | +721=>333, 722=>333, 723=>333, 724=>333, 725=>333, 726=>333, 727=>333, 728=>333, 729=>333, 730=>333, |
|
74 | +731=>333, 733=>333, 734=>333, 735=>510, 736=>333, 737=>186, 738=>333, 739=>333, 740=>334, 741=>526, |
|
75 | +742=>526, 743=>526, 744=>526, 745=>526, 746=>519, 747=>519, 748=>333, 749=>333, 750=>333, 751=>333, |
|
76 | +752=>333, 753=>333, 754=>333, 755=>327, 756=>261, 757=>437, 758=>437, 759=>333, 760=>278, 761=>200, |
|
77 | +762=>200, 763=>200, 764=>200, 765=>333, 766=>333, 767=>333, 768=>0, 769=>0, 770=>0, 771=>0, |
|
78 | +772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, |
|
79 | +782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, |
|
80 | +792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, |
|
81 | +802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, |
|
82 | +812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, |
|
83 | +822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, |
|
84 | +832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 837=>0, 838=>0, 839=>0, 840=>0, 841=>0, |
|
85 | +842=>0, 843=>0, 844=>0, 845=>0, 846=>0, 847=>0, 848=>0, 849=>0, 850=>0, 851=>0, |
|
86 | +852=>0, 853=>0, 854=>0, 855=>0, 856=>0, 857=>0, 858=>0, 859=>0, 860=>0, 861=>0, |
|
87 | +862=>0, 863=>0, 864=>0, 865=>0, 866=>0, 867=>0, 868=>0, 869=>0, 870=>0, 871=>0, |
|
88 | +872=>0, 873=>0, 874=>0, 875=>0, 876=>0, 877=>0, 878=>0, 879=>0, 884=>278, 885=>199, |
|
89 | +890=>332, 894=>278, 900=>333, 901=>333, 902=>667, 903=>275, 904=>786, 905=>828, 906=>369, 908=>833, |
|
90 | +910=>845, 911=>778, 912=>286, 913=>667, 914=>667, 915=>582, 916=>778, 917=>667, 918=>628, 919=>722, |
|
91 | +920=>778, 921=>278, 922=>667, 923=>667, 924=>833, 925=>722, 926=>630, 927=>778, 928=>722, 929=>667, |
|
92 | +931=>628, 932=>611, 933=>667, 934=>717, 935=>667, 936=>745, 937=>778, 938=>278, 939=>667, 940=>608, |
|
93 | +941=>528, 942=>548, 943=>307, 944=>538, 945=>596, 946=>542, 947=>531, 948=>564, 949=>512, 950=>455, |
|
94 | +951=>548, 952=>525, 953=>286, 954=>510, 955=>551, 956=>540, 957=>500, 958=>470, 959=>546, 960=>619, |
|
95 | +961=>569, 962=>547, 963=>620, 964=>492, 965=>538, 966=>741, 967=>571, 968=>662, 969=>740, 970=>286, |
|
96 | +971=>538, 972=>546, 973=>538, 974=>740, 977=>580, 978=>742, 979=>845, 980=>620, 981=>741, 982=>740, |
|
97 | +983=>556, 1008=>556, 1009=>566, 1012=>778, 1013=>328, 1024=>667, 1025=>657, 1026=>766, 1027=>582, 1028=>722, |
|
98 | +1029=>667, 1030=>278, 1031=>278, 1032=>500, 1033=>1080, 1034=>1014, 1035=>766, 1036=>628, 1037=>730, 1038=>613, |
|
99 | +1039=>722, 1040=>666, 1041=>668, 1042=>668, 1043=>582, 1044=>812, 1045=>657, 1046=>905, 1047=>667, 1048=>730, |
|
100 | +1049=>730, 1050=>632, 1051=>674, 1052=>846, 1053=>721, 1054=>796, 1055=>721, 1056=>654, 1057=>722, 1058=>611, |
|
101 | +1059=>613, 1060=>861, 1061=>657, 1062=>742, 1063=>626, 1064=>830, 1065=>851, 1066=>841, 1067=>874, 1068=>670, |
|
102 | +1069=>717, 1070=>1001, 1071=>686, 1072=>552, 1073=>550, 1074=>506, 1075=>404, 1076=>602, 1077=>547, 1078=>755, |
|
103 | +1079=>499, 1080=>567, 1081=>567, 1082=>489, 1083=>517, 1084=>618, 1085=>558, 1086=>550, 1087=>557, 1088=>577, |
|
104 | +1089=>520, 1090=>444, 1091=>468, 1092=>865, 1093=>466, 1094=>578, 1095=>498, 1096=>692, 1097=>712, 1098=>664, |
|
105 | +1099=>690, 1100=>521, 1101=>520, 1102=>759, 1103=>543, 1104=>549, 1105=>549, 1106=>577, 1107=>404, 1108=>519, |
|
106 | +1109=>502, 1110=>224, 1111=>278, 1112=>223, 1113=>813, 1114=>853, 1115=>577, 1116=>489, 1117=>567, 1118=>468, |
|
107 | +1119=>558, 1120=>942, 1121=>693, 1136=>762, 1137=>662, 1138=>800, 1139=>550, 1148=>942, 1149=>693, 1150=>942, |
|
108 | +1151=>693, 1154=>468, 1155=>0, 1156=>0, 1157=>0, 1158=>0, 1159=>0, 1160=>0, 1161=>0, 1162=>763, |
|
109 | +1163=>583, 1164=>689, 1165=>526, 1166=>652, 1167=>572, 1168=>601, 1169=>397, 1170=>589, 1171=>392, 1172=>591, |
|
110 | +1173=>475, 1174=>927, 1175=>830, 1176=>661, 1177=>493, 1178=>658, 1179=>510, 1180=>675, 1181=>519, 1182=>684, |
|
111 | +1183=>514, 1184=>839, 1185=>653, 1186=>740, 1187=>570, 1188=>987, 1189=>714, 1190=>1058, 1191=>808, 1192=>722, |
|
112 | +1193=>510, 1194=>722, 1195=>516, 1196=>611, 1197=>402, 1198=>668, 1199=>578, 1200=>668, 1201=>588, 1202=>664, |
|
113 | +1203=>488, 1204=>936, 1205=>679, 1206=>638, 1207=>521, 1208=>630, 1209=>498, 1210=>630, 1211=>498, 1212=>927, |
|
114 | +1213=>699, 1214=>919, 1215=>703, 1216=>254, 1217=>905, 1218=>755, 1219=>668, 1220=>512, 1221=>696, 1222=>524, |
|
115 | +1223=>721, 1224=>558, 1225=>744, 1226=>571, 1227=>630, 1228=>498, 1229=>869, 1230=>631, 1231=>254, 1232=>666, |
|
116 | +1233=>552, 1234=>666, 1235=>552, 1236=>1000, 1237=>879, 1238=>657, 1239=>547, 1240=>722, 1241=>543, 1242=>722, |
|
117 | +1243=>543, 1244=>905, 1245=>755, 1246=>667, 1247=>499, 1248=>611, 1249=>540, 1250=>730, 1251=>567, 1252=>730, |
|
118 | +1253=>567, 1254=>796, 1255=>550, 1256=>800, 1257=>550, 1258=>800, 1259=>550, 1260=>717, 1261=>520, 1262=>613, |
|
119 | +1263=>468, 1264=>613, 1265=>468, 1266=>613, 1267=>468, 1268=>626, 1269=>498, 1270=>582, 1271=>395, 1272=>874, |
|
120 | +1273=>690, 1296=>667, 1297=>491, 1298=>665, 1299=>509, 1306=>778, 1307=>575, 1308=>934, 1309=>712, 1310=>627, |
|
121 | +1311=>489, 1329=>720, 1330=>696, 1331=>750, 1332=>725, 1333=>699, 1334=>751, 1335=>446, 1336=>703, 1337=>790, |
|
122 | +1338=>656, 1339=>697, 1340=>390, 1341=>852, 1342=>791, 1343=>698, 1344=>585, 1345=>656, 1346=>651, 1347=>658, |
|
123 | +1348=>759, 1349=>595, 1350=>772, 1351=>603, 1352=>703, 1353=>648, 1354=>698, 1355=>744, 1356=>738, 1357=>703, |
|
124 | +1358=>739, 1359=>660, 1360=>693, 1361=>623, 1362=>385, 1363=>788, 1364=>632, 1365=>775, 1366=>714, 1369=>333, |
|
125 | +1370=>222, 1371=>200, 1372=>333, 1373=>333, 1374=>333, 1375=>333, 1377=>833, 1378=>551, 1379=>572, 1380=>569, |
|
126 | +1381=>546, 1382=>581, 1383=>353, 1384=>551, 1385=>568, 1386=>569, 1387=>552, 1388=>276, 1389=>795, 1390=>535, |
|
127 | +1391=>553, 1392=>537, 1393=>512, 1394=>568, 1395=>552, 1396=>531, 1397=>249, 1398=>527, 1399=>405, 1400=>551, |
|
128 | +1401=>390, 1402=>833, 1403=>509, 1404=>523, 1405=>545, 1406=>584, 1407=>879, 1408=>552, 1409=>552, 1410=>301, |
|
129 | +1411=>884, 1412=>578, 1413=>556, 1414=>668, 1415=>544, 1417=>278, 1418=>333, 1456=>0, 1457=>0, 1458=>0, |
|
130 | +1459=>0, 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1467=>0, 1468=>0, 1469=>0, |
|
131 | +1470=>488, 1471=>0, 1472=>212, 1473=>0, 1474=>0, 1475=>278, 1476=>0, 1488=>640, 1489=>591, 1490=>466, |
|
132 | +1491=>598, 1492=>622, 1493=>212, 1494=>351, 1495=>623, 1496=>608, 1497=>200, 1498=>526, 1499=>550, 1500=>600, |
|
133 | +1501=>623, 1502=>621, 1503=>212, 1504=>378, 1505=>607, 1506=>587, 1507=>575, 1508=>568, 1509=>540, 1510=>590, |
|
134 | +1511=>606, 1512=>547, 1513=>776, 1514=>687, 1520=>424, 1521=>412, 1522=>400, 1523=>184, 1524=>344, 1792=>600, |
|
135 | +1793=>201, 1794=>201, 1795=>201, 1796=>201, 1797=>500, 1798=>500, 1799=>500, 1800=>370, 1801=>370, 1802=>574, |
|
136 | +1803=>574, 1804=>645, 1805=>574, 1807=>0, 1808=>452, 1809=>452, 1810=>574, 1811=>645, 1812=>645, 1813=>509, |
|
137 | +1814=>509, 1815=>682, 1816=>585, 1817=>404, 1818=>627, 1819=>718, 1820=>718, 1821=>484, 1822=>682, 1823=>600, |
|
138 | +1824=>660, 1825=>682, 1826=>538, 1827=>718, 1828=>718, 1829=>718, 1830=>574, 1831=>574, 1832=>638, 1833=>585, |
|
139 | +1834=>509, 1835=>682, 1836=>682, 1840=>0, 1841=>0, 1842=>0, 1843=>0, 1844=>0, 1845=>0, 1846=>0, |
|
140 | +1847=>0, 1848=>0, 1849=>0, 1850=>0, 1851=>0, 1852=>0, 1853=>0, 1854=>0, 1855=>0, 1856=>0, |
|
141 | +1857=>0, 1858=>0, 1859=>0, 1860=>0, 1861=>0, 1862=>0, 1863=>0, 1864=>0, 1865=>0, 1866=>0, |
|
142 | +2305=>6, 2306=>0, 2307=>305, 2308=>717, 2309=>717, 2310=>829, 2311=>463, 2312=>463, 2313=>581, 2314=>803, |
|
143 | +2315=>920, 2316=>639, 2317=>430, 2318=>430, 2319=>430, 2320=>430, 2321=>856, 2322=>828, 2323=>837, 2324=>856, |
|
144 | +2325=>749, 2326=>779, 2327=>522, 2328=>587, 2329=>650, 2330=>619, 2331=>641, 2332=>703, 2333=>691, 2334=>677, |
|
145 | +2335=>568, 2336=>529, 2337=>611, 2338=>536, 2339=>607, 2340=>564, 2341=>659, 2342=>500, 2343=>591, 2344=>521, |
|
146 | +2345=>568, 2346=>477, 2347=>728, 2348=>490, 2349=>577, 2350=>517, 2351=>554, 2352=>433, 2353=>433, 2354=>656, |
|
147 | +2355=>660, 2356=>660, 2357=>490, 2358=>645, 2359=>477, 2360=>666, 2361=>484, 2364=>6, 2365=>442, 2366=>211, |
|
148 | +2367=>211, 2368=>211, 2369=>6, 2370=>3, 2371=>6, 2372=>0, 2373=>6, 2374=>84, 2375=>6, 2376=>6, |
|
149 | +2377=>224, 2378=>234, 2379=>211, 2380=>211, 2381=>6, 2384=>839, 2385=>15, 2386=>0, 2387=>9, 2388=>9, |
|
150 | +2392=>750, 2393=>779, 2394=>522, 2395=>703, 2396=>613, 2397=>536, 2398=>728, 2399=>554, 2400=>899, 2401=>625, |
|
151 | +2402=>625, 2403=>625, 2404=>674, 2405=>674, 2406=>575, 2407=>575, 2408=>575, 2409=>575, 2410=>575, 2411=>575, |
|
152 | +2412=>575, 2413=>575, 2414=>575, 2415=>575, 2416=>365, 2417=>387, 2418=>717, 2433=>0, 2434=>300, 2435=>264, |
|
153 | +2437=>594, 2438=>790, 2439=>469, 2440=>513, 2441=>520, 2442=>549, 2443=>594, 2444=>481, 2447=>580, 2448=>627, |
|
154 | +2451=>540, 2452=>613, 2453=>570, 2454=>467, 2455=>471, 2456=>428, 2457=>483, 2458=>408, 2459=>509, 2460=>591, |
|
155 | +2461=>563, 2462=>771, 2463=>381, 2464=>404, 2465=>522, 2466=>408, 2467=>450, 2468=>543, 2469=>477, 2470=>418, |
|
156 | +2471=>433, 2472=>445, 2474=>499, 2475=>584, 2476=>377, 2477=>555, 2478=>448, 2479=>423, 2480=>390, 2482=>498, |
|
157 | +2486=>498, 2487=>425, 2488=>495, 2489=>440, 2492=>22, 2493=>440, 2494=>193, 2495=>189, 2496=>180, 2497=>0, |
|
158 | +2498=>0, 2499=>0, 2500=>0, 2503=>252, 2504=>243, 2507=>889, 2508=>865, 2509=>0, 2510=>356, 2519=>219, |
|
159 | +2524=>523, 2525=>408, 2527=>428, 2528=>594, 2529=>481, 2530=>0, 2531=>0, 2534=>500, 2535=>437, 2536=>479, |
|
160 | +2537=>530, 2538=>497, 2539=>500, 2540=>482, 2541=>503, 2542=>517, 2543=>481, 2544=>377, 2545=>377, 2546=>429, |
|
161 | +2547=>383, 2548=>429, 2549=>478, 2550=>545, 2551=>158, 2552=>365, 2553=>280, 2554=>357, 2561=>0, 2562=>0, |
|
162 | +2563=>351, 2565=>860, 2566=>1088, 2567=>869, 2568=>928, 2569=>723, 2570=>723, 2575=>665, 2576=>857, 2579=>716, |
|
163 | +2580=>858, 2581=>682, 2582=>634, 2583=>696, 2584=>744, 2585=>649, 2586=>674, 2587=>656, 2588=>653, 2589=>629, |
|
164 | +2590=>639, 2591=>641, 2592=>657, 2593=>650, 2594=>653, 2595=>651, 2596=>640, 2597=>634, 2598=>662, 2599=>630, |
|
165 | +2600=>625, 2602=>645, 2603=>653, 2604=>624, 2605=>613, 2606=>658, 2607=>734, 2608=>620, 2610=>676, 2611=>719, |
|
166 | +2613=>626, 2614=>666, 2616=>666, 2617=>614, 2620=>0, 2622=>286, 2623=>322, 2624=>301, 2625=>0, 2626=>0, |
|
167 | +2631=>0, 2632=>0, 2635=>0, 2636=>0, 2637=>0, 2649=>636, 2650=>762, 2651=>652, 2652=>653, 2654=>656, |
|
168 | +2662=>672, 2663=>543, 2664=>622, 2665=>622, 2666=>576, 2667=>589, 2668=>509, 2669=>645, 2670=>661, 2671=>655, |
|
169 | +2672=>0, 2673=>0, 2674=>666, 2675=>726, 2676=>1217, 2689=>22, 2690=>23, 2691=>0, 2693=>775, 2694=>979, |
|
170 | +2695=>588, 2696=>563, 2697=>525, 2698=>724, 2699=>942, 2701=>775, 2703=>775, 2704=>775, 2705=>979, 2707=>979, |
|
171 | +2708=>979, 2709=>610, 2710=>706, 2711=>623, 2712=>610, 2713=>601, 2714=>614, 2715=>642, 2716=>684, 2717=>634, |
|
172 | +2718=>644, 2719=>509, 2720=>541, 2721=>539, 2722=>524, 2723=>657, 2724=>547, 2725=>616, 2726=>494, 2727=>601, |
|
173 | +2728=>627, 2730=>524, 2731=>620, 2732=>691, 2733=>687, 2734=>468, 2735=>590, 2736=>509, 2738=>571, 2739=>687, |
|
174 | +2741=>526, 2742=>620, 2743=>575, 2744=>620, 2745=>549, 2748=>53, 2749=>415, 2750=>241, 2751=>186, 2752=>217, |
|
175 | +2753=>32, 2754=>21, 2755=>38, 2756=>27, 2757=>45, 2759=>41, 2760=>46, 2761=>207, 2763=>190, 2764=>182, |
|
176 | +2765=>16, 2768=>962, 2784=>949, 2790=>479, 2791=>502, 2792=>484, 2793=>471, 2794=>501, 2795=>527, 2796=>462, |
|
177 | +2797=>524, 2798=>454, 2799=>495, 2801=>752, 2946=>479, 2947=>893, 2949=>1018, 2950=>1170, 2951=>916, 2952=>676, |
|
178 | +2953=>836, 2954=>1225, 2958=>744, 2959=>744, 2960=>848, 2962=>813, 2963=>813, 2964=>813, 2965=>688, 2969=>744, |
|
179 | +2970=>676, 2972=>848, 2974=>984, 2975=>777, 2979=>1338, 2980=>664, 2984=>561, 2985=>1029, 2986=>607, 2990=>697, |
|
180 | +2991=>697, 2992=>434, 2993=>617, 2994=>869, 2995=>859, 2996=>697, 2997=>869, 2999=>1145, 3000=>1064, 3001=>1316, |
|
181 | +3006=>424, 3007=>125, 3008=>596, 3009=>539, 3014=>596, 3015=>650, 3016=>973, 3018=>1286, 3019=>1286, 3020=>1706, |
|
182 | +3021=>333, 3031=>859, 3050=>778, 3051=>881, 3052=>876, 3053=>648, 3057=>744, 4256=>587, 4257=>620, 4258=>642, |
|
183 | +4259=>815, 4260=>600, 4261=>595, 4262=>799, 4263=>893, 4264=>622, 4265=>597, 4266=>939, 4267=>602, 4268=>603, |
|
184 | +4269=>790, 4270=>587, 4271=>623, 4272=>799, 4273=>601, 4274=>792, 4275=>724, 4276=>847, 4277=>599, 4278=>812, |
|
185 | +4279=>603, 4280=>653, 4281=>590, 4282=>754, 4283=>596, 4284=>653, 4285=>651, 4286=>596, 4287=>888, 4288=>593, |
|
186 | +4304=>436, 4305=>491, 4306=>528, 4307=>692, 4308=>447, 4309=>447, 4310=>628, 4311=>734, 4312=>449, 4313=>445, |
|
187 | +4314=>843, 4315=>449, 4316=>449, 4317=>682, 4318=>449, 4319=>480, 4320=>682, 4321=>468, 4322=>710, 4323=>623, |
|
188 | +4324=>697, 4325=>447, 4326=>702, 4327=>447, 4328=>470, 4329=>440, 4330=>632, 4331=>449, 4332=>470, 4333=>536, |
|
189 | +4334=>449, 4335=>656, 4336=>474, 4337=>630, 4338=>394, 4339=>419, 4340=>422, 4341=>436, 4345=>528, 4347=>515, |
|
190 | +7680=>667, 7681=>556, 7682=>667, 7683=>556, 7684=>667, 7685=>556, 7686=>667, 7687=>556, 7688=>722, 7689=>500, |
|
191 | +7690=>722, 7691=>556, 7692=>722, 7693=>556, 7694=>722, 7695=>556, 7696=>722, 7697=>556, 7698=>722, 7699=>556, |
|
192 | +7700=>667, 7701=>556, 7702=>667, 7703=>556, 7704=>667, 7705=>556, 7706=>667, 7707=>556, 7708=>667, 7709=>556, |
|
193 | +7710=>611, 7711=>278, 7712=>778, 7713=>556, 7714=>722, 7715=>556, 7716=>722, 7717=>556, 7718=>722, 7719=>556, |
|
194 | +7720=>722, 7721=>556, 7722=>722, 7723=>556, 7724=>278, 7725=>222, 7726=>278, 7727=>278, 7728=>667, 7729=>500, |
|
195 | +7730=>667, 7731=>500, 7732=>667, 7733=>500, 7734=>556, 7735=>222, 7736=>556, 7737=>222, 7738=>556, 7739=>222, |
|
196 | +7740=>556, 7741=>222, 7742=>833, 7743=>833, 7744=>833, 7745=>833, 7746=>833, 7747=>833, 7748=>722, 7749=>556, |
|
197 | +7750=>722, 7751=>556, 7752=>722, 7753=>556, 7754=>722, 7755=>556, 7756=>778, 7757=>556, 7758=>778, 7759=>556, |
|
198 | +7760=>778, 7761=>556, 7762=>778, 7763=>556, 7764=>667, 7765=>556, 7766=>667, 7767=>556, 7768=>722, 7769=>333, |
|
199 | +7770=>722, 7771=>333, 7772=>722, 7773=>333, 7774=>722, 7775=>333, 7776=>667, 7777=>500, 7778=>667, 7779=>500, |
|
200 | +7780=>667, 7781=>500, 7782=>667, 7783=>500, 7784=>667, 7785=>500, 7786=>611, 7787=>278, 7788=>611, 7789=>278, |
|
201 | +7790=>611, 7791=>278, 7792=>611, 7793=>278, 7794=>722, 7795=>556, 7796=>722, 7797=>556, 7798=>722, 7799=>556, |
|
202 | +7800=>722, 7801=>556, 7802=>722, 7803=>556, 7804=>667, 7805=>500, 7806=>667, 7807=>500, 7808=>944, 7809=>722, |
|
203 | +7810=>944, 7811=>722, 7812=>944, 7813=>722, 7814=>944, 7815=>722, 7816=>944, 7817=>722, 7818=>667, 7819=>500, |
|
204 | +7820=>667, 7821=>500, 7822=>667, 7823=>500, 7824=>611, 7825=>500, 7826=>611, 7827=>500, 7828=>611, 7829=>500, |
|
205 | +7830=>556, 7831=>278, 7832=>722, 7833=>500, 7834=>555, 7835=>278, 7840=>667, 7841=>556, 7842=>667, 7843=>556, |
|
206 | +7844=>667, 7845=>556, 7846=>667, 7847=>556, 7848=>667, 7849=>556, 7850=>667, 7851=>556, 7852=>667, 7853=>556, |
|
207 | +7854=>667, 7855=>556, 7856=>667, 7857=>556, 7858=>667, 7859=>556, 7860=>667, 7861=>556, 7862=>667, 7863=>556, |
|
208 | +7864=>667, 7865=>556, 7866=>667, 7867=>556, 7868=>667, 7869=>556, 7870=>667, 7871=>556, 7872=>667, 7873=>556, |
|
209 | +7874=>667, 7875=>556, 7876=>667, 7877=>556, 7878=>667, 7879=>556, 7880=>278, 7881=>278, 7882=>278, 7883=>222, |
|
210 | +7884=>778, 7885=>556, 7886=>778, 7887=>556, 7888=>778, 7889=>556, 7890=>778, 7891=>556, 7892=>778, 7893=>556, |
|
211 | +7894=>778, 7895=>556, 7896=>778, 7897=>556, 7898=>788, 7899=>565, 7900=>788, 7901=>565, 7902=>788, 7903=>565, |
|
212 | +7904=>788, 7905=>565, 7906=>788, 7907=>565, 7908=>722, 7909=>556, 7910=>722, 7911=>556, 7912=>776, 7913=>624, |
|
213 | +7914=>776, 7915=>624, 7916=>776, 7917=>624, 7918=>776, 7919=>624, 7920=>776, 7921=>624, 7922=>667, 7923=>500, |
|
214 | +7924=>667, 7925=>500, 7926=>667, 7927=>500, 7928=>667, 7929=>500, 7936=>596, 7937=>596, 7938=>596, 7939=>596, |
|
215 | +7940=>596, 7941=>596, 7942=>596, 7943=>596, 7944=>667, 7945=>667, 7946=>742, 7947=>756, 7948=>692, 7949=>699, |
|
216 | +7950=>673, 7951=>667, 7952=>512, 7953=>512, 7954=>512, 7955=>512, 7956=>512, 7957=>512, 7960=>730, 7961=>714, |
|
217 | +7962=>900, 7963=>882, 7964=>867, 7965=>879, 7968=>548, 7969=>548, 7970=>548, 7971=>548, 7972=>548, 7973=>548, |
|
218 | +7974=>548, 7975=>548, 7976=>772, 7977=>778, 7978=>945, 7979=>947, 7980=>943, 7981=>946, 7982=>853, 7983=>853, |
|
219 | +7984=>286, 7985=>286, 7986=>286, 7987=>286, 7988=>286, 7989=>286, 7990=>286, 7991=>286, 7992=>322, 7993=>321, |
|
220 | +7994=>482, 7995=>485, 7996=>477, 7997=>484, 7998=>394, 7999=>390, 8000=>546, 8001=>546, 8002=>546, 8003=>546, |
|
221 | +8004=>546, 8005=>546, 8008=>775, 8009=>784, 8010=>990, 8011=>987, 8012=>887, 8013=>897, 8016=>538, 8017=>538, |
|
222 | +8018=>538, 8019=>538, 8020=>538, 8021=>538, 8022=>538, 8023=>538, 8025=>747, 8027=>915, 8029=>971, 8031=>863, |
|
223 | +8032=>740, 8033=>740, 8034=>740, 8035=>740, 8036=>740, 8037=>740, 8038=>740, 8039=>740, 8040=>769, 8041=>774, |
|
224 | +8042=>972, 8043=>970, 8044=>879, 8045=>918, 8046=>901, 8047=>901, 8048=>596, 8049=>596, 8050=>512, 8051=>512, |
|
225 | +8052=>548, 8053=>548, 8054=>286, 8055=>286, 8056=>546, 8057=>546, 8058=>538, 8059=>538, 8060=>740, 8061=>740, |
|
226 | +8064=>596, 8065=>596, 8066=>596, 8067=>596, 8068=>596, 8069=>596, 8070=>596, 8071=>596, 8072=>830, 8073=>828, |
|
227 | +8074=>916, 8075=>916, 8076=>853, 8077=>860, 8078=>835, 8079=>827, 8080=>548, 8081=>548, 8082=>548, 8083=>548, |
|
228 | +8084=>548, 8085=>548, 8086=>548, 8087=>548, 8088=>928, 8089=>931, 8090=>1104, 8091=>1109, 8092=>1099, 8093=>1102, |
|
229 | +8094=>1009, 8095=>1012, 8096=>740, 8097=>740, 8098=>740, 8099=>740, 8100=>740, 8101=>740, 8102=>740, 8103=>740, |
|
230 | +8104=>934, 8105=>934, 8106=>1130, 8107=>1128, 8108=>1045, 8109=>1077, 8110=>1062, 8111=>1065, 8112=>596, 8113=>596, |
|
231 | +8114=>596, 8115=>596, 8116=>596, 8118=>596, 8119=>596, 8120=>667, 8121=>667, 8122=>667, 8123=>667, 8124=>832, |
|
232 | +8125=>333, 8126=>200, 8127=>333, 8128=>333, 8129=>333, 8130=>548, 8131=>548, 8132=>548, 8134=>548, 8135=>548, |
|
233 | +8136=>833, 8137=>776, 8138=>944, 8139=>896, 8140=>875, 8141=>400, 8142=>400, 8143=>333, 8144=>286, 8145=>286, |
|
234 | +8146=>286, 8147=>286, 8150=>286, 8151=>286, 8152=>278, 8153=>278, 8154=>385, 8155=>376, 8157=>400, 8158=>400, |
|
235 | +8159=>333, 8160=>538, 8161=>538, 8162=>538, 8163=>538, 8164=>569, 8165=>569, 8166=>538, 8167=>514, 8168=>667, |
|
236 | +8169=>667, 8170=>817, 8171=>827, 8172=>741, 8173=>393, 8174=>393, 8175=>333, 8178=>740, 8179=>740, 8180=>740, |
|
237 | +8182=>740, 8183=>740, 8184=>833, 8185=>833, 8186=>848, 8187=>814, 8188=>939, 8189=>333, 8190=>333, 8192=>500, |
|
238 | +8193=>1000, 8194=>500, 8195=>1000, 8196=>333, 8197=>250, 8198=>167, 8199=>556, 8200=>278, 8201=>200, 8202=>100, |
|
239 | +8203=>0, 8204=>0, 8205=>0, 8206=>0, 8207=>0, 8208=>333, 8209=>333, 8210=>556, 8213=>1000, 8214=>312, |
|
240 | +8215=>566, 8219=>221, 8223=>333, 8227=>350, 8228=>278, 8229=>666, 8231=>278, 8232=>0, 8233=>0, 8234=>0, |
|
241 | +8235=>0, 8236=>0, 8237=>0, 8238=>0, 8239=>500, 8241=>1360, 8242=>278, 8243=>469, 8244=>680, 8245=>278, |
|
242 | +8246=>469, 8247=>680, 8248=>376, 8251=>622, 8252=>556, 8253=>556, 8254=>556, 8255=>658, 8256=>658, 8257=>438, |
|
243 | +8258=>840, 8259=>400, 8260=>167, 8261=>334, 8262=>334, 8263=>1112, 8264=>834, 8265=>834, 8266=>556, 8267=>537, |
|
244 | +8268=>537, 8269=>537, 8270=>389, 8271=>278, 8272=>658, 8273=>389, 8274=>634, 8275=>500, 8276=>658, 8277=>787, |
|
245 | +8278=>515, 8279=>855, 8280=>722, 8281=>725, 8282=>224, 8283=>722, 8284=>604, 8285=>224, 8286=>224, 8287=>0, |
|
246 | +8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8304=>350, 8305=>350, 8308=>350, 8309=>350, 8310=>350, |
|
247 | +8311=>350, 8312=>350, 8313=>350, 8314=>350, 8315=>350, 8316=>350, 8317=>350, 8318=>350, 8319=>350, 8320=>350, |
|
248 | +8321=>350, 8322=>350, 8323=>350, 8324=>350, 8325=>350, 8326=>350, 8327=>350, 8328=>350, 8329=>350, 8330=>350, |
|
249 | +8331=>350, 8332=>350, 8333=>350, 8334=>350, 8336=>350, 8337=>349, 8338=>350, 8339=>350, 8340=>350, 8353=>615, |
|
250 | +8354=>601, 8355=>611, 8356=>556, 8357=>833, 8358=>682, 8359=>1317, 8360=>1202, 8361=>879, 8362=>869, 8363=>538, |
|
251 | +8365=>667, 8366=>611, 8368=>570, 8369=>684, 8370=>717, 8371=>667, 8372=>667, 8373=>640, 8400=>0, 8401=>0, |
|
252 | +8402=>0, 8403=>0, 8406=>0, 8407=>0, 8411=>0, 8412=>0, 8413=>0, 8414=>0, 8415=>0, 8416=>0, |
|
253 | +8417=>0, 8421=>0, 8422=>0, 8423=>0, 8424=>0, 8425=>0, 8426=>0, 8427=>0, 8428=>0, 8429=>0, |
|
254 | +8430=>0, 8431=>0, 8432=>0, 8448=>970, 8449=>979, 8451=>1017, 8452=>556, 8453=>876, 8454=>922, 8455=>667, |
|
255 | +8457=>919, 8459=>969, 8460=>615, 8462=>556, 8463=>572, 8464=>809, 8465=>606, 8466=>874, 8467=>417, 8468=>747, |
|
256 | +8470=>934, 8471=>737, 8472=>600, 8475=>850, 8476=>699, 8480=>1000, 8481=>1230, 8486=>778, 8487=>778, 8488=>512, |
|
257 | +8489=>286, 8490=>667, 8491=>667, 8492=>908, 8493=>623, 8494=>556, 8495=>444, 8496=>562, 8497=>895, 8498=>588, |
|
258 | +8499=>1080, 8501=>640, 8502=>592, 8503=>466, 8504=>598, 8505=>278, 8506=>871, 8507=>1230, 8513=>778, 8514=>556, |
|
259 | +8515=>556, 8516=>667, 8522=>516, 8523=>655, 8525=>936, 8526=>482, 8531=>869, 8532=>869, 8533=>869, 8534=>869, |
|
260 | +8535=>869, 8536=>869, 8537=>869, 8538=>869, 8539=>869, 8540=>869, 8541=>869, 8542=>869, 8543=>869, 8544=>278, |
|
261 | +8545=>556, 8546=>834, 8547=>945, 8548=>667, 8549=>945, 8550=>1223, 8551=>1501, 8552=>945, 8553=>667, 8554=>945, |
|
262 | +8555=>1223, 8556=>556, 8557=>722, 8558=>722, 8559=>833, 8560=>222, 8561=>444, 8562=>666, 8563=>722, 8564=>500, |
|
263 | +8565=>722, 8566=>944, 8567=>1166, 8568=>722, 8569=>500, 8570=>722, 8571=>944, 8572=>222, 8573=>500, 8574=>556, |
|
264 | +8575=>833, 8592=>987, 8593=>603, 8594=>987, 8595=>603, 8596=>1042, 8597=>1042, 8598=>800, 8599=>800, 8600=>800, |
|
265 | +8601=>800, 8614=>987, 8617=>987, 8618=>987, 8629=>658, 8636=>987, 8637=>987, 8638=>380, 8639=>393, 8640=>987, |
|
266 | +8641=>987, 8642=>380, 8643=>379, 8652=>987, 8656=>987, 8657=>603, 8658=>987, 8659=>603, 8660=>1042, 8661=>603, |
|
267 | +8669=>1092, 8704=>667, 8706=>556, 8707=>667, 8709=>823, 8710=>711, 8711=>711, 8712=>584, 8713=>584, 8714=>584, |
|
268 | +8715=>584, 8716=>584, 8717=>713, 8719=>823, 8720=>823, 8721=>804, 8722=>584, 8723=>584, 8724=>584, 8725=>510, |
|
269 | +8726=>392, 8727=>584, 8729=>584, 8730=>542, 8733=>713, 8734=>713, 8736=>768, 8739=>200, 8740=>288, 8741=>312, |
|
270 | +8742=>340, 8743=>603, 8744=>603, 8745=>768, 8746=>768, 8747=>556, 8748=>796, 8749=>956, 8750=>556, 8756=>863, |
|
271 | +8764=>584, 8765=>584, 8766=>573, 8768=>244, 8769=>584, 8770=>584, 8771=>584, 8772=>584, 8773=>584, 8774=>584, |
|
272 | +8775=>584, 8776=>584, 8777=>584, 8781=>554, 8784=>584, 8800=>584, 8801=>584, 8802=>584, 8804=>584, 8805=>584, |
|
273 | +8810=>955, 8811=>955, 8813=>554, 8814=>584, 8815=>584, 8816=>584, 8817=>584, 8818=>584, 8819=>584, 8826=>584, |
|
274 | +8827=>584, 8828=>584, 8829=>584, 8832=>584, 8833=>584, 8834=>584, 8835=>584, 8836=>584, 8837=>584, 8838=>584, |
|
275 | +8839=>584, 8840=>584, 8841=>584, 8844=>768, 8847=>636, 8848=>636, 8849=>636, 8850=>636, 8851=>636, 8852=>636, |
|
276 | +8853=>768, 8854=>768, 8855=>768, 8856=>768, 8857=>768, 8866=>658, 8867=>658, 8868=>658, 8869=>658, 8870=>600, |
|
277 | +8871=>608, 8882=>636, 8883=>636, 8884=>636, 8885=>636, 8896=>744, 8897=>744, 8898=>764, 8899=>764, 8901=>278, |
|
278 | +8902=>471, 8904=>710, 8928=>584, 8929=>584, 8930=>636, 8931=>636, 8960=>823, 8968=>456, 8969=>455, 8970=>455, |
|
279 | +8971=>456, 8992=>556, 8993=>556, 8994=>658, 8995=>658, 9001=>329, 9002=>329, 9115=>384, 9116=>384, 9117=>384, |
|
280 | +9118=>384, 9119=>384, 9120=>384, 9121=>388, 9122=>388, 9123=>388, 9124=>388, 9125=>388, 9126=>388, 9134=>556, |
|
281 | +9250=>556, 9251=>500, 9312=>788, 9313=>788, 9314=>788, 9315=>788, 9316=>788, 9317=>788, 9318=>788, 9319=>788, |
|
282 | +9320=>788, 9321=>788, 9472=>1000, 9473=>1000, 9474=>1000, 9475=>1000, 9476=>1000, 9477=>1000, 9478=>1000, 9479=>1000, |
|
283 | +9480=>1000, 9481=>1000, 9482=>1000, 9483=>1000, 9484=>1000, 9485=>1000, 9486=>1000, 9487=>1000, 9488=>1000, 9489=>1000, |
|
284 | +9490=>1000, 9491=>1000, 9492=>1000, 9493=>1000, 9494=>1000, 9495=>1000, 9496=>1000, 9497=>1000, 9498=>1000, 9499=>1000, |
|
285 | +9500=>1000, 9501=>1000, 9502=>1000, 9503=>1000, 9504=>1000, 9505=>1000, 9506=>1000, 9507=>1000, 9508=>1000, 9509=>1000, |
|
286 | +9510=>1000, 9511=>1000, 9512=>1000, 9513=>1000, 9514=>1000, 9515=>1000, 9516=>1000, 9517=>1000, 9518=>1000, 9519=>1000, |
|
287 | +9520=>1000, 9521=>1000, 9522=>1000, 9523=>1000, 9524=>1000, 9525=>1000, 9526=>1000, 9527=>1000, 9528=>1000, 9529=>1000, |
|
288 | +9530=>1000, 9531=>1000, 9532=>1000, 9533=>1000, 9534=>1000, 9535=>1000, 9536=>1000, 9537=>1000, 9538=>1000, 9539=>1000, |
|
289 | +9540=>1000, 9541=>1000, 9542=>1000, 9543=>1000, 9544=>1000, 9545=>1000, 9546=>1000, 9547=>1000, 9552=>1000, 9553=>1000, |
|
290 | +9554=>1000, 9555=>1000, 9556=>1000, 9557=>1000, 9558=>1000, 9559=>1000, 9560=>1000, 9561=>1000, 9562=>1000, 9563=>1000, |
|
291 | +9564=>1000, 9565=>1000, 9566=>1000, 9567=>1000, 9568=>1000, 9569=>1000, 9570=>1000, 9571=>1000, 9572=>1000, 9573=>1000, |
|
292 | +9574=>1000, 9575=>1000, 9576=>1000, 9577=>1000, 9578=>1000, 9579=>1000, 9580=>1000, 9600=>1000, 9601=>1000, 9602=>1000, |
|
293 | +9603=>1000, 9604=>1000, 9605=>1000, 9606=>1000, 9607=>1000, 9608=>1000, 9609=>1000, 9610=>1000, 9611=>1000, 9612=>1000, |
|
294 | +9613=>1000, 9614=>1000, 9615=>1000, 9616=>1000, 9617=>1000, 9618=>1000, 9619=>1000, 9620=>1000, 9621=>1000, 9622=>1000, |
|
295 | +9623=>1000, 9624=>1000, 9625=>1000, 9626=>1000, 9627=>1000, 9628=>1000, 9629=>1000, 9630=>1000, 9631=>1000, 9632=>1000, |
|
296 | +9633=>1000, 9635=>1000, 9636=>1000, 9637=>1000, 9642=>1000, 9644=>1000, 9651=>892, 9661=>892, 9671=>788, 9674=>489, |
|
297 | +9675=>791, 9711=>882, 9772=>929, 9824=>626, 9825=>694, 9826=>595, 9827=>776, 9828=>626, 9829=>694, 9830=>595, |
|
298 | +9831=>776, 9833=>333, 9834=>555, 9835=>722, 9836=>722, 9837=>415, 9838=>377, 9839=>402, 10048=>1161, 10752=>791, |
|
299 | +10753=>791, 10754=>791, 10755=>764, 10756=>764, 10761=>584, 11799=>333, 64256=>495, 64257=>460, 64258=>465, 64259=>652, |
|
300 | +64260=>645, 64261=>520, 64275=>1004, 64276=>1044, 64277=>1042, 64278=>1037, 64279=>1256, 64285=>200, 64286=>305, 64287=>400, |
|
301 | +64288=>587, 64289=>890, 64290=>848, 64291=>872, 64292=>800, 64293=>850, 64294=>873, 64295=>797, 64296=>937, 64297=>584, |
|
302 | +64298=>776, 64299=>776, 64300=>776, 64301=>776, 64302=>640, 64303=>640, 64304=>640, 64305=>591, 64306=>466, 64307=>598, |
|
303 | +64308=>622, 64309=>262, 64310=>351, 64312=>608, 64313=>270, 64314=>526, 64315=>550, 64316=>600, 64318=>621, 64320=>378, |
|
304 | +64321=>607, 64323=>575, 64324=>568, 64326=>590, 64327=>606, 64328=>547, 64329=>776, 64330=>687, 64331=>212, 64332=>591, |
|
305 | +64333=>550, 64334=>568, 64335=>640, 65533=>788); |
|
306 | +$enc = ''; |
|
307 | +$diff = ''; |
|
308 | +$file = 'freesans.z'; |
|
309 | +$ctg = 'freesans.ctg.z'; |
|
310 | +$originalsize = 568896; |
|
311 | 311 | ?> |
312 | 312 | \ No newline at end of file |
@@ -1,32 +1,32 @@ |
||
1 | 1 | <?php |
2 | 2 | // core font definition file for TCPDF (www.tcpdf.org) |
3 | -$type='core'; |
|
4 | -$dw=788; |
|
5 | -$cw=array(0=>0,1=>0,2=>0,3=>0,4=>0,5=>0,6=>0,7=>0,8=>0,9=>0,10=>0,11=>0,12=>0, |
|
6 | -13=>0,14=>0,15=>0,16=>0,17=>0,18=>0,19=>0,20=>0,21=>0,22=>0,23=>0,24=>0,25=>0, |
|
7 | -26=>0,27=>0,28=>0,29=>0,30=>0,31=>0,32=>278,33=>974,34=>961,35=>974,36=>980, |
|
8 | -37=>719,38=>789,39=>790,40=>791,41=>690,42=>960,43=>939,44=>549,45=>855,46=>911, |
|
9 | -47=>933,48=>911,49=>945,50=>974,51=>755,52=>846,53=>762,54=>761,55=>571,56=>677, |
|
10 | -57=>763,58=>760,59=>759,60=>754,61=>494,62=>552,63=>537,64=>577,65=>692,66=>786, |
|
11 | -67=>788,68=>788,69=>790,70=>793,71=>794,72=>816,73=>823,74=>789,75=>841,76=>823, |
|
12 | -77=>833,78=>816,79=>831,80=>923,81=>744,82=>723,83=>749,84=>790,85=>792,86=>695, |
|
13 | -87=>776,88=>768,89=>792,90=>759,91=>707,92=>708,93=>682,94=>701,95=>826,96=>815, |
|
14 | -97=>789,98=>789,99=>707,100=>687,101=>696,102=>689,103=>786,104=>787,105=>713, |
|
15 | -106=>791,107=>785,108=>791,109=>873,110=>761,111=>762,112=>762,113=>759,114=>759, |
|
16 | -115=>892,116=>892,117=>788,118=>784,119=>438,120=>138,121=>277,122=>415,123=>392, |
|
17 | -124=>392,125=>668,126=>668,127=>0,128=>390,129=>390,130=>317,131=>317,132=>276, |
|
18 | -133=>276,134=>509,135=>509,136=>410,137=>410,138=>234,139=>234,140=>334,141=>334, |
|
19 | -142=>0,143=>0,144=>0,145=>0,146=>0,147=>0,148=>0,149=>0,150=>0,151=>0,152=>0, |
|
20 | -153=>0,154=>0,155=>0,156=>0,157=>0,158=>0,159=>0,160=>0,161=>732,162=>544,163=>544, |
|
21 | -164=>910,165=>667,166=>760,167=>760,168=>776,169=>595,170=>694,171=>626,172=>788, |
|
22 | -173=>788,174=>788,175=>788,176=>788,177=>788,178=>788,179=>788,180=>788,181=>788, |
|
23 | -182=>788,183=>788,184=>788,185=>788,186=>788,187=>788,188=>788,189=>788,190=>788, |
|
24 | -191=>788,192=>788,193=>788,194=>788,195=>788,196=>788,197=>788,198=>788,199=>788, |
|
25 | -200=>788,201=>788,202=>788,203=>788,204=>788,205=>788,206=>788,207=>788,208=>788, |
|
26 | -209=>788,210=>788,211=>788,212=>894,213=>838,214=>1016,215=>458,216=>748,217=>924, |
|
27 | -218=>748,219=>918,220=>927,221=>928,222=>928,223=>834,224=>873,225=>828,226=>924, |
|
28 | -227=>924,228=>917,229=>930,230=>931,231=>463,232=>883,233=>836,234=>836,235=>867, |
|
29 | -236=>867,237=>696,238=>696,239=>874,240=>0,241=>874,242=>760,243=>946,244=>771, |
|
30 | -245=>865,246=>771,247=>888,248=>967,249=>888,250=>831,251=>873,252=>927,253=>970, |
|
31 | -254=>918,255=>0); |
|
3 | +$type = 'core'; |
|
4 | +$dw = 788; |
|
5 | +$cw = array(0=>0, 1=>0, 2=>0, 3=>0, 4=>0, 5=>0, 6=>0, 7=>0, 8=>0, 9=>0, 10=>0, 11=>0, 12=>0, |
|
6 | +13=>0, 14=>0, 15=>0, 16=>0, 17=>0, 18=>0, 19=>0, 20=>0, 21=>0, 22=>0, 23=>0, 24=>0, 25=>0, |
|
7 | +26=>0, 27=>0, 28=>0, 29=>0, 30=>0, 31=>0, 32=>278, 33=>974, 34=>961, 35=>974, 36=>980, |
|
8 | +37=>719, 38=>789, 39=>790, 40=>791, 41=>690, 42=>960, 43=>939, 44=>549, 45=>855, 46=>911, |
|
9 | +47=>933, 48=>911, 49=>945, 50=>974, 51=>755, 52=>846, 53=>762, 54=>761, 55=>571, 56=>677, |
|
10 | +57=>763, 58=>760, 59=>759, 60=>754, 61=>494, 62=>552, 63=>537, 64=>577, 65=>692, 66=>786, |
|
11 | +67=>788, 68=>788, 69=>790, 70=>793, 71=>794, 72=>816, 73=>823, 74=>789, 75=>841, 76=>823, |
|
12 | +77=>833, 78=>816, 79=>831, 80=>923, 81=>744, 82=>723, 83=>749, 84=>790, 85=>792, 86=>695, |
|
13 | +87=>776, 88=>768, 89=>792, 90=>759, 91=>707, 92=>708, 93=>682, 94=>701, 95=>826, 96=>815, |
|
14 | +97=>789, 98=>789, 99=>707, 100=>687, 101=>696, 102=>689, 103=>786, 104=>787, 105=>713, |
|
15 | +106=>791, 107=>785, 108=>791, 109=>873, 110=>761, 111=>762, 112=>762, 113=>759, 114=>759, |
|
16 | +115=>892, 116=>892, 117=>788, 118=>784, 119=>438, 120=>138, 121=>277, 122=>415, 123=>392, |
|
17 | +124=>392, 125=>668, 126=>668, 127=>0, 128=>390, 129=>390, 130=>317, 131=>317, 132=>276, |
|
18 | +133=>276, 134=>509, 135=>509, 136=>410, 137=>410, 138=>234, 139=>234, 140=>334, 141=>334, |
|
19 | +142=>0, 143=>0, 144=>0, 145=>0, 146=>0, 147=>0, 148=>0, 149=>0, 150=>0, 151=>0, 152=>0, |
|
20 | +153=>0, 154=>0, 155=>0, 156=>0, 157=>0, 158=>0, 159=>0, 160=>0, 161=>732, 162=>544, 163=>544, |
|
21 | +164=>910, 165=>667, 166=>760, 167=>760, 168=>776, 169=>595, 170=>694, 171=>626, 172=>788, |
|
22 | +173=>788, 174=>788, 175=>788, 176=>788, 177=>788, 178=>788, 179=>788, 180=>788, 181=>788, |
|
23 | +182=>788, 183=>788, 184=>788, 185=>788, 186=>788, 187=>788, 188=>788, 189=>788, 190=>788, |
|
24 | +191=>788, 192=>788, 193=>788, 194=>788, 195=>788, 196=>788, 197=>788, 198=>788, 199=>788, |
|
25 | +200=>788, 201=>788, 202=>788, 203=>788, 204=>788, 205=>788, 206=>788, 207=>788, 208=>788, |
|
26 | +209=>788, 210=>788, 211=>788, 212=>894, 213=>838, 214=>1016, 215=>458, 216=>748, 217=>924, |
|
27 | +218=>748, 219=>918, 220=>927, 221=>928, 222=>928, 223=>834, 224=>873, 225=>828, 226=>924, |
|
28 | +227=>924, 228=>917, 229=>930, 230=>931, 231=>463, 232=>883, 233=>836, 234=>836, 235=>867, |
|
29 | +236=>867, 237=>696, 238=>696, 239=>874, 240=>0, 241=>874, 242=>760, 243=>946, 244=>771, |
|
30 | +245=>865, 246=>771, 247=>888, 248=>967, 249=>888, 250=>831, 251=>873, 252=>927, 253=>970, |
|
31 | +254=>918, 255=>0); |
|
32 | 32 | ?> |
@@ -1,262 +1,262 @@ |
||
1 | 1 | <?php |
2 | -$type='TrueTypeUnicode'; |
|
3 | -$name='DejaVuSansMono-Oblique'; |
|
4 | -$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>-62,'Flags'=>97,'FontBBox'=>'[-406 -375 746 1028]','ItalicAngle'=>-11,'StemV'=>70,'MissingWidth'=>602); |
|
5 | -$up=-63; |
|
6 | -$ut=44; |
|
7 | -$dw=602; |
|
8 | -$cw=array( |
|
9 | -0=>602,32=>602,33=>602,34=>602,35=>602,36=>602,37=>602,38=>602,39=>602,40=>602, |
|
10 | -41=>602,42=>602,43=>602,44=>602,45=>602,46=>602,47=>602,48=>602,49=>602,50=>602, |
|
11 | -51=>602,52=>602,53=>602,54=>602,55=>602,56=>602,57=>602,58=>602,59=>602,60=>602, |
|
12 | -61=>602,62=>602,63=>602,64=>602,65=>602,66=>602,67=>602,68=>602,69=>602,70=>602, |
|
13 | -71=>602,72=>602,73=>602,74=>602,75=>602,76=>602,77=>602,78=>602,79=>602,80=>602, |
|
14 | -81=>602,82=>602,83=>602,84=>602,85=>602,86=>602,87=>602,88=>602,89=>602,90=>602, |
|
15 | -91=>602,92=>602,93=>602,94=>602,95=>602,96=>602,97=>602,98=>602,99=>602,100=>602, |
|
16 | -101=>602,102=>602,103=>602,104=>602,105=>602,106=>602,107=>602,108=>602,109=>602,110=>602, |
|
17 | -111=>602,112=>602,113=>602,114=>602,115=>602,116=>602,117=>602,118=>602,119=>602,120=>602, |
|
18 | -121=>602,122=>602,123=>602,124=>602,125=>602,126=>602,8364=>602,8218=>602,402=>602,8222=>602, |
|
19 | -8230=>602,8224=>602,8225=>602,710=>602,8240=>602,352=>602,8249=>602,338=>602,381=>602,8216=>602, |
|
20 | -8217=>602,8220=>602,8221=>602,8226=>602,8211=>602,8212=>602,732=>602,8482=>602,353=>602,8250=>602, |
|
21 | -339=>602,382=>602,376=>602,160=>602,161=>602,162=>602,163=>602,164=>602,165=>602,166=>602, |
|
22 | -167=>602,168=>602,169=>602,170=>602,171=>602,172=>602,173=>602,174=>602,175=>602,176=>602, |
|
23 | -177=>602,178=>602,179=>602,180=>602,181=>602,182=>602,183=>602,184=>602,185=>602,186=>602, |
|
24 | -187=>602,188=>602,189=>602,190=>602,191=>602,192=>602,193=>602,194=>602,195=>602,196=>602, |
|
25 | -197=>602,198=>602,199=>602,200=>602,201=>602,202=>602,203=>602,204=>602,205=>602,206=>602, |
|
26 | -207=>602,208=>602,209=>602,210=>602,211=>602,212=>602,213=>602,214=>602,215=>602,216=>602, |
|
27 | -217=>602,218=>602,219=>602,220=>602,221=>602,222=>602,223=>602,224=>602,225=>602,226=>602, |
|
28 | -227=>602,228=>602,229=>602,230=>602,231=>602,232=>602,233=>602,234=>602,235=>602,236=>602, |
|
29 | -237=>602,238=>602,239=>602,240=>602,241=>602,242=>602,243=>602,244=>602,245=>602,246=>602, |
|
30 | -247=>602,248=>602,249=>602,250=>602,251=>602,252=>602,253=>602,254=>602,255=>602,256=>602, |
|
31 | -257=>602,258=>602,259=>602,260=>602,261=>602,262=>602,263=>602,264=>602,265=>602,266=>602, |
|
32 | -267=>602,268=>602,269=>602,270=>602,271=>602,272=>602,273=>602,274=>602,275=>602,276=>602, |
|
33 | -277=>602,278=>602,279=>602,280=>602,281=>602,282=>602,283=>602,284=>602,285=>602,286=>602, |
|
34 | -287=>602,288=>602,289=>602,290=>602,291=>602,292=>602,293=>602,294=>602,295=>602,296=>602, |
|
35 | -297=>602,298=>602,299=>602,300=>602,301=>602,302=>602,303=>602,304=>602,305=>602,306=>602, |
|
36 | -307=>602,308=>602,309=>602,310=>602,311=>602,312=>602,313=>602,314=>602,315=>602,316=>602, |
|
37 | -317=>602,318=>602,319=>602,320=>602,321=>602,322=>602,323=>602,324=>602,325=>602,326=>602, |
|
38 | -327=>602,328=>602,329=>602,330=>602,331=>602,332=>602,333=>602,334=>602,335=>602,336=>602, |
|
39 | -337=>602,340=>602,341=>602,342=>602,343=>602,344=>602,345=>602,346=>602,347=>602,348=>602, |
|
40 | -349=>602,350=>602,351=>602,354=>602,355=>602,356=>602,357=>602,358=>602,359=>602,360=>602, |
|
41 | -361=>602,362=>602,363=>602,364=>602,365=>602,366=>602,367=>602,368=>602,369=>602,370=>602, |
|
42 | -371=>602,372=>602,373=>602,374=>602,375=>602,377=>602,378=>602,379=>602,380=>602,383=>602, |
|
43 | -384=>602,385=>602,386=>602,387=>602,388=>602,389=>602,390=>602,391=>602,392=>602,393=>602, |
|
44 | -394=>602,395=>602,396=>602,397=>602,398=>602,399=>602,400=>602,401=>602,403=>602,404=>602, |
|
45 | -405=>602,406=>602,407=>602,408=>602,409=>602,410=>602,411=>602,412=>602,413=>602,414=>602, |
|
46 | -415=>602,416=>602,417=>602,418=>602,419=>602,420=>602,421=>602,422=>602,423=>602,424=>602, |
|
47 | -425=>602,426=>602,427=>602,428=>602,429=>602,430=>602,431=>602,432=>602,433=>602,434=>602, |
|
48 | -435=>602,436=>602,437=>602,438=>602,439=>602,440=>602,441=>602,442=>602,443=>602,444=>602, |
|
49 | -445=>602,446=>602,447=>602,448=>602,449=>602,450=>602,451=>602,461=>602,462=>602,463=>602, |
|
50 | -464=>602,465=>602,466=>602,467=>602,468=>602,469=>602,470=>602,471=>602,472=>602,473=>602, |
|
51 | -474=>602,475=>602,476=>602,477=>602,479=>602,480=>602,481=>602,482=>602,483=>602,486=>602, |
|
52 | -487=>602,488=>602,489=>602,490=>602,491=>602,492=>602,493=>602,494=>602,495=>602,500=>602, |
|
53 | -501=>602,502=>602,504=>602,505=>602,508=>602,509=>602,510=>602,511=>602,512=>602,513=>602, |
|
54 | -514=>602,515=>602,516=>602,517=>602,518=>602,519=>602,520=>602,521=>602,522=>602,523=>602, |
|
55 | -524=>602,525=>602,526=>602,527=>602,528=>602,529=>602,530=>602,531=>602,532=>602,533=>602, |
|
56 | -534=>602,535=>602,536=>602,537=>602,538=>602,539=>602,540=>602,541=>602,542=>602,543=>602, |
|
57 | -545=>602,548=>602,549=>602,550=>602,551=>602,552=>602,553=>602,554=>602,555=>602,556=>602, |
|
58 | -557=>602,558=>602,559=>602,560=>602,561=>602,562=>602,563=>602,564=>602,565=>602,566=>602, |
|
59 | -567=>602,568=>602,569=>602,570=>602,571=>602,572=>602,573=>602,574=>602,575=>602,576=>602, |
|
60 | -577=>602,580=>602,581=>602,588=>602,589=>602,592=>602,593=>602,594=>602,595=>602,596=>602, |
|
61 | -597=>602,598=>602,599=>602,600=>602,601=>602,602=>602,603=>602,604=>602,605=>602,606=>602, |
|
62 | -607=>602,608=>602,609=>602,610=>602,611=>602,612=>602,613=>602,614=>602,615=>602,616=>602, |
|
63 | -617=>602,618=>602,619=>602,620=>602,621=>602,622=>602,623=>602,624=>602,625=>602,626=>602, |
|
64 | -627=>602,628=>602,629=>602,630=>602,631=>602,632=>602,633=>602,634=>602,635=>602,636=>602, |
|
65 | -637=>602,638=>602,639=>602,640=>602,641=>602,642=>602,643=>602,644=>602,645=>602,646=>602, |
|
66 | -647=>602,648=>602,649=>602,650=>602,651=>602,652=>602,653=>602,654=>602,655=>602,656=>602, |
|
67 | -657=>602,658=>602,659=>602,660=>602,661=>602,662=>602,663=>602,664=>602,665=>602,666=>602, |
|
68 | -667=>602,668=>602,669=>602,670=>602,671=>602,672=>602,673=>602,674=>602,675=>602,676=>602, |
|
69 | -677=>602,678=>602,679=>602,680=>602,681=>602,682=>602,683=>602,684=>602,685=>602,686=>602, |
|
70 | -687=>602,688=>602,689=>602,690=>602,691=>602,692=>602,693=>602,694=>602,695=>602,696=>602, |
|
71 | -697=>602,699=>602,700=>602,701=>602,702=>602,703=>602,704=>602,705=>602,711=>602,712=>602, |
|
72 | -713=>602,716=>602,717=>602,720=>602,721=>602,722=>602,723=>602,726=>602,727=>602,728=>602, |
|
73 | -729=>602,730=>602,731=>602,733=>602,734=>602,736=>602,737=>602,738=>602,739=>602,740=>602, |
|
74 | -741=>602,742=>602,743=>602,744=>602,745=>602,750=>602,755=>602,768=>602,769=>602,770=>602, |
|
75 | -771=>602,772=>602,773=>602,774=>602,775=>602,776=>602,777=>602,778=>602,779=>602,780=>602, |
|
76 | -781=>602,782=>602,783=>602,784=>602,785=>602,786=>602,787=>602,788=>602,789=>602,790=>602, |
|
77 | -791=>602,792=>602,793=>602,794=>602,795=>602,796=>602,797=>602,798=>602,799=>602,800=>602, |
|
78 | -801=>602,802=>602,803=>602,804=>602,805=>602,806=>602,807=>602,808=>602,809=>602,810=>602, |
|
79 | -811=>602,812=>602,813=>602,814=>602,815=>602,816=>602,817=>602,818=>602,819=>602,820=>602, |
|
80 | -821=>602,822=>602,823=>602,824=>602,825=>602,826=>602,827=>602,828=>602,829=>602,830=>602, |
|
81 | -831=>602,835=>602,856=>602,865=>602,884=>602,885=>602,890=>602,894=>602,900=>602,901=>602, |
|
82 | -902=>602,903=>602,904=>602,905=>602,906=>602,908=>602,910=>602,911=>602,912=>602,913=>602, |
|
83 | -914=>602,915=>602,916=>602,917=>602,918=>602,919=>602,920=>602,921=>602,922=>602,923=>602, |
|
84 | -924=>602,925=>602,926=>602,927=>602,928=>602,929=>602,931=>602,932=>602,933=>602,934=>602, |
|
85 | -935=>602,936=>602,937=>602,938=>602,939=>602,940=>602,941=>602,942=>602,943=>602,944=>602, |
|
86 | -945=>602,946=>602,947=>602,948=>602,949=>602,950=>602,951=>602,952=>602,953=>602,954=>602, |
|
87 | -955=>602,956=>602,957=>602,958=>602,959=>602,960=>602,961=>602,962=>602,963=>602,964=>602, |
|
88 | -965=>602,966=>602,967=>602,968=>602,969=>602,970=>602,971=>602,972=>602,973=>602,974=>602, |
|
89 | -976=>602,977=>602,978=>602,979=>602,980=>602,981=>602,982=>602,983=>602,984=>602,985=>602, |
|
90 | -986=>602,987=>602,988=>602,989=>602,990=>602,991=>602,992=>602,993=>602,1008=>602,1009=>602, |
|
91 | -1010=>602,1011=>602,1012=>602,1013=>602,1014=>602,1015=>602,1016=>602,1017=>602,1018=>602,1019=>602, |
|
92 | -1020=>602,1021=>602,1022=>602,1023=>602,1024=>602,1025=>602,1026=>602,1027=>602,1028=>602,1029=>602, |
|
93 | -1030=>602,1031=>602,1032=>602,1033=>602,1034=>602,1035=>602,1036=>602,1037=>602,1038=>602,1039=>602, |
|
94 | -1040=>602,1041=>602,1042=>602,1043=>602,1044=>602,1045=>602,1046=>602,1047=>602,1048=>602,1049=>602, |
|
95 | -1050=>602,1051=>602,1052=>602,1053=>602,1054=>602,1055=>602,1056=>602,1057=>602,1058=>602,1059=>602, |
|
96 | -1060=>602,1061=>602,1062=>602,1063=>602,1064=>602,1065=>602,1066=>602,1067=>602,1068=>602,1069=>602, |
|
97 | -1070=>602,1071=>602,1072=>602,1073=>602,1074=>602,1075=>602,1076=>602,1077=>602,1078=>602,1079=>602, |
|
98 | -1080=>602,1081=>602,1082=>602,1083=>602,1084=>602,1085=>602,1086=>602,1087=>602,1088=>602,1089=>602, |
|
99 | -1090=>602,1091=>602,1092=>602,1093=>602,1094=>602,1095=>602,1096=>602,1097=>602,1098=>602,1099=>602, |
|
100 | -1100=>602,1101=>602,1102=>602,1103=>602,1104=>602,1105=>602,1106=>602,1107=>602,1108=>602,1109=>602, |
|
101 | -1110=>602,1111=>602,1112=>602,1113=>602,1114=>602,1115=>602,1116=>602,1117=>602,1118=>602,1119=>602, |
|
102 | -1122=>602,1123=>602,1138=>602,1139=>602,1168=>602,1169=>602,1170=>602,1171=>602,1172=>602,1173=>602, |
|
103 | -1174=>602,1175=>602,1176=>602,1177=>602,1178=>602,1179=>602,1186=>602,1187=>602,1194=>602,1195=>602, |
|
104 | -1196=>602,1197=>602,1198=>602,1199=>602,1200=>602,1201=>602,1202=>602,1203=>602,1210=>602,1211=>602, |
|
105 | -1216=>602,1217=>602,1218=>602,1219=>602,1220=>602,1223=>602,1224=>602,1227=>602,1228=>602,1231=>602, |
|
106 | -1232=>602,1233=>602,1234=>602,1235=>602,1236=>602,1237=>602,1238=>602,1239=>602,1240=>602,1241=>602, |
|
107 | -1242=>602,1243=>602,1244=>602,1245=>602,1246=>602,1247=>602,1248=>602,1249=>602,1250=>602,1251=>602, |
|
108 | -1252=>602,1253=>602,1254=>602,1255=>602,1256=>602,1257=>602,1258=>602,1259=>602,1260=>602,1261=>602, |
|
109 | -1262=>602,1263=>602,1264=>602,1265=>602,1266=>602,1267=>602,1268=>602,1269=>602,1270=>602,1271=>602, |
|
110 | -1272=>602,1273=>602,1296=>602,1297=>602,1306=>602,1307=>602,1308=>602,1309=>602,3713=>602,3714=>602, |
|
111 | -3716=>602,3719=>602,3720=>602,3722=>602,3725=>602,3732=>602,3733=>602,3734=>602,3735=>602,3737=>602, |
|
112 | -3738=>602,3739=>602,3740=>602,3741=>602,3742=>602,3743=>602,3745=>602,3746=>602,3747=>602,3749=>602, |
|
113 | -3751=>602,3754=>602,3755=>602,3757=>602,3758=>602,3759=>602,3760=>602,3761=>602,3762=>602,3763=>602, |
|
114 | -3764=>602,3765=>602,3766=>602,3767=>602,3768=>602,3769=>602,3771=>602,3772=>602,3784=>602,3785=>602, |
|
115 | -3786=>602,3787=>602,3788=>602,3789=>602,4304=>602,4305=>602,4306=>602,4307=>602,4308=>602,4309=>602, |
|
116 | -4310=>602,4311=>602,4312=>602,4313=>602,4314=>602,4315=>602,4316=>602,4317=>602,4318=>602,4319=>602, |
|
117 | -4320=>602,4321=>602,4322=>602,4323=>602,4324=>602,4325=>602,4326=>602,4327=>602,4328=>602,4329=>602, |
|
118 | -4330=>602,4331=>602,4332=>602,4333=>602,4334=>602,4335=>602,4336=>602,4337=>602,4338=>602,4339=>602, |
|
119 | -4340=>602,4341=>602,4342=>602,4343=>602,4344=>602,4345=>602,4346=>602,4347=>602,4348=>602,7426=>602, |
|
120 | -7432=>602,7433=>602,7444=>602,7446=>602,7447=>602,7453=>602,7454=>602,7455=>602,7468=>602,7469=>602, |
|
121 | -7470=>602,7472=>602,7473=>602,7474=>602,7475=>602,7476=>602,7477=>602,7478=>602,7479=>602,7480=>602, |
|
122 | -7481=>602,7482=>602,7483=>602,7484=>602,7485=>602,7486=>602,7487=>602,7488=>602,7489=>602,7490=>602, |
|
123 | -7491=>602,7492=>602,7493=>602,7494=>602,7495=>602,7496=>602,7497=>602,7498=>602,7499=>602,7500=>602, |
|
124 | -7501=>602,7502=>602,7503=>602,7504=>602,7505=>602,7506=>602,7507=>602,7508=>602,7509=>602,7510=>602, |
|
125 | -7511=>602,7512=>602,7513=>602,7514=>602,7515=>602,7522=>602,7523=>602,7524=>602,7525=>602,7543=>602, |
|
126 | -7544=>602,7547=>602,7557=>602,7579=>602,7580=>602,7581=>602,7582=>602,7583=>602,7584=>602,7585=>602, |
|
127 | -7586=>602,7587=>602,7588=>602,7589=>602,7590=>602,7591=>602,7592=>602,7593=>602,7594=>602,7595=>602, |
|
128 | -7596=>602,7597=>602,7598=>602,7599=>602,7600=>602,7601=>602,7602=>602,7603=>602,7604=>602,7605=>602, |
|
129 | -7606=>602,7607=>602,7609=>602,7610=>602,7611=>602,7612=>602,7613=>602,7614=>602,7615=>602,7680=>602, |
|
130 | -7681=>602,7682=>602,7683=>602,7684=>602,7685=>602,7686=>602,7687=>602,7688=>602,7689=>602,7690=>602, |
|
131 | -7691=>602,7692=>602,7693=>602,7694=>602,7695=>602,7696=>602,7697=>602,7698=>602,7699=>602,7704=>602, |
|
132 | -7705=>602,7706=>602,7707=>602,7708=>602,7709=>602,7710=>602,7711=>602,7712=>602,7713=>602,7714=>602, |
|
133 | -7715=>602,7716=>602,7717=>602,7718=>602,7719=>602,7720=>602,7721=>602,7722=>602,7723=>602,7724=>602, |
|
134 | -7725=>602,7728=>602,7729=>602,7730=>602,7731=>602,7732=>602,7733=>602,7734=>602,7735=>602,7736=>602, |
|
135 | -7737=>602,7738=>602,7739=>602,7740=>602,7741=>602,7742=>602,7743=>602,7744=>602,7745=>602,7746=>602, |
|
136 | -7747=>602,7748=>602,7749=>602,7750=>602,7751=>602,7752=>602,7753=>602,7754=>602,7755=>602,7756=>602, |
|
137 | -7757=>602,7764=>602,7765=>602,7766=>602,7767=>602,7768=>602,7769=>602,7770=>602,7771=>602,7772=>602, |
|
138 | -7773=>602,7774=>602,7775=>602,7776=>602,7777=>602,7778=>602,7779=>602,7784=>602,7785=>602,7786=>602, |
|
139 | -7787=>602,7788=>602,7789=>602,7790=>602,7791=>602,7792=>602,7793=>602,7794=>602,7795=>602,7796=>602, |
|
140 | -7797=>602,7798=>602,7799=>602,7800=>602,7801=>602,7804=>602,7805=>602,7806=>602,7807=>602,7808=>602, |
|
141 | -7809=>602,7810=>602,7811=>602,7812=>602,7813=>602,7814=>602,7815=>602,7816=>602,7817=>602,7818=>602, |
|
142 | -7819=>602,7820=>602,7821=>602,7822=>602,7823=>602,7824=>602,7825=>602,7826=>602,7827=>602,7828=>602, |
|
143 | -7829=>602,7830=>602,7831=>602,7832=>602,7833=>602,7835=>602,7839=>602,7840=>602,7841=>602,7852=>602, |
|
144 | -7853=>602,7856=>602,7857=>602,7862=>602,7863=>602,7864=>602,7865=>602,7868=>602,7869=>602,7878=>602, |
|
145 | -7879=>602,7882=>602,7883=>602,7884=>602,7885=>602,7896=>602,7897=>602,7898=>602,7899=>602,7900=>602, |
|
146 | -7901=>602,7904=>602,7905=>602,7906=>602,7907=>602,7908=>602,7909=>602,7912=>602,7913=>602,7914=>602, |
|
147 | -7915=>602,7918=>602,7919=>602,7920=>602,7921=>602,7922=>602,7923=>602,7924=>602,7925=>602,7928=>602, |
|
148 | -7929=>602,7936=>602,7937=>602,7938=>602,7939=>602,7940=>602,7941=>602,7942=>602,7943=>602,7944=>602, |
|
149 | -7945=>602,7946=>602,7947=>602,7948=>602,7949=>602,7950=>602,7951=>602,7952=>602,7953=>602,7954=>602, |
|
150 | -7955=>602,7956=>602,7957=>602,7960=>602,7961=>602,7962=>602,7963=>602,7964=>602,7965=>602,7968=>602, |
|
151 | -7969=>602,7970=>602,7971=>602,7972=>602,7973=>602,7974=>602,7975=>602,7976=>602,7977=>602,7978=>602, |
|
152 | -7979=>602,7980=>602,7981=>602,7982=>602,7983=>602,7984=>602,7985=>602,7986=>602,7987=>602,7988=>602, |
|
153 | -7989=>602,7990=>602,7991=>602,7992=>602,7993=>602,7994=>602,7995=>602,7996=>602,7997=>602,7998=>602, |
|
154 | -7999=>602,8000=>602,8001=>602,8002=>602,8003=>602,8004=>602,8005=>602,8008=>602,8009=>602,8010=>602, |
|
155 | -8011=>602,8012=>602,8013=>602,8016=>602,8017=>602,8018=>602,8019=>602,8020=>602,8021=>602,8022=>602, |
|
156 | -8023=>602,8025=>602,8027=>602,8029=>602,8031=>602,8032=>602,8033=>602,8034=>602,8035=>602,8036=>602, |
|
157 | -8037=>602,8038=>602,8039=>602,8040=>602,8041=>602,8042=>602,8043=>602,8044=>602,8045=>602,8046=>602, |
|
158 | -8047=>602,8048=>602,8049=>602,8050=>602,8051=>602,8052=>602,8053=>602,8054=>602,8055=>602,8056=>602, |
|
159 | -8057=>602,8058=>602,8059=>602,8060=>602,8061=>602,8064=>602,8065=>602,8066=>602,8067=>602,8068=>602, |
|
160 | -8069=>602,8070=>602,8071=>602,8072=>602,8073=>602,8074=>602,8075=>602,8076=>602,8077=>602,8078=>602, |
|
161 | -8079=>602,8080=>602,8081=>602,8082=>602,8083=>602,8084=>602,8085=>602,8086=>602,8087=>602,8088=>602, |
|
162 | -8089=>602,8090=>602,8091=>602,8092=>602,8093=>602,8094=>602,8095=>602,8096=>602,8097=>602,8098=>602, |
|
163 | -8099=>602,8100=>602,8101=>602,8102=>602,8103=>602,8104=>602,8105=>602,8106=>602,8107=>602,8108=>602, |
|
164 | -8109=>602,8110=>602,8111=>602,8112=>602,8113=>602,8114=>602,8115=>602,8116=>602,8118=>602,8119=>602, |
|
165 | -8120=>602,8121=>602,8122=>602,8123=>602,8124=>602,8125=>602,8126=>602,8127=>602,8128=>602,8129=>602, |
|
166 | -8130=>602,8131=>602,8132=>602,8134=>602,8135=>602,8136=>602,8137=>602,8138=>602,8139=>602,8140=>602, |
|
167 | -8141=>602,8142=>602,8143=>602,8144=>602,8145=>602,8146=>602,8147=>602,8150=>602,8151=>602,8152=>602, |
|
168 | -8153=>602,8154=>602,8155=>602,8157=>602,8158=>602,8159=>602,8160=>602,8161=>602,8162=>602,8163=>602, |
|
169 | -8164=>602,8165=>602,8166=>602,8167=>602,8168=>602,8169=>602,8170=>602,8171=>602,8172=>602,8173=>602, |
|
170 | -8174=>602,8175=>602,8178=>602,8179=>602,8180=>602,8182=>602,8183=>602,8184=>602,8185=>602,8186=>602, |
|
171 | -8187=>602,8188=>602,8189=>602,8190=>602,8192=>602,8193=>602,8194=>602,8195=>602,8196=>602,8197=>602, |
|
172 | -8198=>602,8199=>602,8200=>602,8201=>602,8202=>602,8208=>602,8209=>602,8210=>602,8213=>602,8215=>602, |
|
173 | -8219=>602,8223=>602,8227=>602,8239=>602,8241=>602,8242=>602,8243=>602,8244=>602,8245=>602,8246=>602, |
|
174 | -8247=>602,8252=>602,8253=>602,8254=>602,8261=>602,8262=>602,8263=>602,8264=>602,8265=>602,8287=>602, |
|
175 | -8304=>602,8305=>602,8308=>602,8309=>602,8310=>602,8311=>602,8312=>602,8313=>602,8314=>602,8315=>602, |
|
176 | -8316=>602,8317=>602,8318=>602,8319=>602,8320=>602,8321=>602,8322=>602,8323=>602,8324=>602,8325=>602, |
|
177 | -8326=>602,8327=>602,8328=>602,8329=>602,8330=>602,8331=>602,8332=>602,8333=>602,8334=>602,8336=>602, |
|
178 | -8337=>602,8338=>602,8339=>602,8340=>602,8352=>602,8353=>602,8354=>602,8355=>602,8356=>602,8357=>602, |
|
179 | -8358=>602,8359=>602,8360=>602,8361=>602,8362=>602,8363=>602,8365=>602,8366=>602,8367=>602,8368=>602, |
|
180 | -8369=>602,8370=>602,8371=>602,8372=>602,8373=>602,8450=>602,8453=>602,8461=>602,8462=>602,8463=>602, |
|
181 | -8469=>602,8470=>602,8471=>602,8473=>602,8474=>602,8477=>602,8484=>602,8486=>602,8490=>602,8491=>602, |
|
182 | -8494=>602,8531=>602,8532=>602,8533=>602,8534=>602,8535=>602,8536=>602,8537=>602,8538=>602,8539=>602, |
|
183 | -8540=>602,8541=>602,8542=>602,8543=>602,8592=>602,8593=>602,8594=>602,8595=>602,8596=>602,8597=>602, |
|
184 | -8598=>602,8599=>602,8600=>602,8601=>602,8602=>602,8603=>602,8604=>602,8605=>602,8606=>602,8607=>602, |
|
185 | -8608=>602,8609=>602,8610=>602,8611=>602,8612=>602,8613=>602,8614=>602,8615=>602,8616=>602,8617=>602, |
|
186 | -8618=>602,8619=>602,8620=>602,8621=>602,8622=>602,8623=>602,8624=>602,8625=>602,8626=>602,8627=>602, |
|
187 | -8628=>602,8629=>602,8630=>602,8631=>602,8632=>602,8633=>602,8634=>602,8635=>602,8636=>602,8637=>602, |
|
188 | -8638=>602,8639=>602,8640=>602,8641=>602,8642=>602,8643=>602,8644=>602,8645=>602,8646=>602,8647=>602, |
|
189 | -8648=>602,8649=>602,8650=>602,8651=>602,8652=>602,8653=>602,8654=>602,8655=>602,8656=>602,8657=>602, |
|
190 | -8658=>602,8659=>602,8660=>602,8661=>602,8662=>602,8663=>602,8664=>602,8665=>602,8666=>602,8667=>602, |
|
191 | -8668=>602,8669=>602,8670=>602,8671=>602,8672=>602,8673=>602,8674=>602,8675=>602,8676=>602,8677=>602, |
|
192 | -8678=>602,8679=>602,8680=>602,8681=>602,8682=>602,8683=>602,8684=>602,8685=>602,8686=>602,8687=>602, |
|
193 | -8688=>602,8689=>602,8690=>602,8691=>602,8692=>602,8693=>602,8694=>602,8695=>602,8696=>602,8697=>602, |
|
194 | -8698=>602,8699=>602,8700=>602,8701=>602,8702=>602,8703=>602,8704=>602,8705=>602,8706=>602,8707=>602, |
|
195 | -8708=>602,8709=>602,8710=>602,8711=>602,8712=>602,8713=>602,8714=>602,8715=>602,8716=>602,8717=>602, |
|
196 | -8719=>602,8721=>602,8722=>602,8723=>602,8725=>602,8727=>602,8728=>602,8729=>602,8730=>602,8731=>602, |
|
197 | -8732=>602,8733=>602,8734=>602,8735=>602,8736=>602,8743=>602,8744=>602,8745=>602,8746=>602,8747=>602, |
|
198 | -8748=>602,8749=>602,8760=>602,8761=>602,8762=>602,8763=>602,8764=>602,8765=>602,8769=>602,8770=>602, |
|
199 | -8771=>602,8772=>602,8773=>602,8774=>602,8775=>602,8776=>602,8777=>602,8778=>602,8779=>602,8780=>602, |
|
200 | -8781=>602,8782=>602,8783=>602,8784=>602,8785=>602,8786=>602,8787=>602,8788=>602,8789=>602,8790=>602, |
|
201 | -8791=>602,8792=>602,8793=>602,8794=>602,8795=>602,8796=>602,8797=>602,8798=>602,8799=>602,8800=>602, |
|
202 | -8801=>602,8802=>602,8803=>602,8804=>602,8805=>602,8806=>602,8807=>602,8808=>602,8809=>602,8813=>602, |
|
203 | -8814=>602,8815=>602,8816=>602,8817=>602,8818=>602,8819=>602,8820=>602,8821=>602,8822=>602,8823=>602, |
|
204 | -8824=>602,8825=>602,8826=>602,8827=>602,8828=>602,8829=>602,8830=>602,8831=>602,8832=>602,8833=>602, |
|
205 | -8834=>602,8835=>602,8836=>602,8837=>602,8838=>602,8839=>602,8840=>602,8841=>602,8842=>602,8843=>602, |
|
206 | -8847=>602,8848=>602,8849=>602,8850=>602,8853=>602,8854=>602,8855=>602,8856=>602,8857=>602,8858=>602, |
|
207 | -8859=>602,8860=>602,8861=>602,8862=>602,8863=>602,8864=>602,8865=>602,8901=>602,8902=>602,8909=>602, |
|
208 | -8922=>602,8923=>602,8924=>602,8925=>602,8926=>602,8927=>602,8928=>602,8929=>602,8930=>602,8931=>602, |
|
209 | -8932=>602,8933=>602,8934=>602,8935=>602,8936=>602,8937=>602,8943=>602,8960=>602,8961=>602,8962=>602, |
|
210 | -8963=>602,8964=>602,8965=>602,8966=>602,8968=>602,8969=>602,8970=>602,8971=>602,8972=>602,8973=>602, |
|
211 | -8974=>602,8975=>602,8976=>602,8977=>602,8978=>602,8979=>602,8980=>602,8981=>602,8984=>602,8985=>602, |
|
212 | -8988=>602,8989=>602,8990=>602,8991=>602,8992=>602,8993=>602,8997=>602,8998=>602,8999=>602,9000=>602, |
|
213 | -9003=>602,9013=>602,9015=>602,9016=>602,9017=>602,9018=>602,9019=>602,9020=>602,9021=>602,9022=>602, |
|
214 | -9025=>602,9026=>602,9027=>602,9028=>602,9031=>602,9032=>602,9033=>602,9035=>602,9036=>602,9037=>602, |
|
215 | -9040=>602,9042=>602,9043=>602,9044=>602,9047=>602,9048=>602,9049=>602,9050=>602,9051=>602,9052=>602, |
|
216 | -9054=>602,9055=>602,9056=>602,9059=>602,9060=>602,9061=>602,9064=>602,9065=>602,9067=>602,9068=>602, |
|
217 | -9069=>602,9070=>602,9071=>602,9072=>602,9075=>602,9076=>602,9077=>602,9078=>602,9079=>602,9080=>602, |
|
218 | -9081=>602,9082=>602,9085=>602,9088=>602,9089=>602,9090=>602,9091=>602,9096=>602,9097=>602,9098=>602, |
|
219 | -9099=>602,9109=>602,9115=>602,9116=>602,9117=>602,9118=>602,9119=>602,9120=>602,9121=>602,9122=>602, |
|
220 | -9123=>602,9124=>602,9125=>602,9126=>602,9127=>602,9128=>602,9129=>602,9130=>602,9131=>602,9132=>602, |
|
221 | -9133=>602,9134=>602,9166=>602,9167=>602,9251=>602,9472=>602,9473=>602,9474=>602,9475=>602,9476=>602, |
|
222 | -9477=>602,9478=>602,9479=>602,9480=>602,9481=>602,9482=>602,9483=>602,9484=>602,9485=>602,9486=>602, |
|
223 | -9487=>602,9488=>602,9489=>602,9490=>602,9491=>602,9492=>602,9493=>602,9494=>602,9495=>602,9496=>602, |
|
224 | -9497=>602,9498=>602,9499=>602,9500=>602,9501=>602,9502=>602,9503=>602,9504=>602,9505=>602,9506=>602, |
|
225 | -9507=>602,9508=>602,9509=>602,9510=>602,9511=>602,9512=>602,9513=>602,9514=>602,9515=>602,9516=>602, |
|
226 | -9517=>602,9518=>602,9519=>602,9520=>602,9521=>602,9522=>602,9523=>602,9524=>602,9525=>602,9526=>602, |
|
227 | -9527=>602,9528=>602,9529=>602,9530=>602,9531=>602,9532=>602,9533=>602,9534=>602,9535=>602,9536=>602, |
|
228 | -9537=>602,9538=>602,9539=>602,9540=>602,9541=>602,9542=>602,9543=>602,9544=>602,9545=>602,9546=>602, |
|
229 | -9547=>602,9548=>602,9549=>602,9550=>602,9551=>602,9552=>602,9553=>602,9554=>602,9555=>602,9556=>602, |
|
230 | -9557=>602,9558=>602,9559=>602,9560=>602,9561=>602,9562=>602,9563=>602,9564=>602,9565=>602,9566=>602, |
|
231 | -9567=>602,9568=>602,9569=>602,9570=>602,9571=>602,9572=>602,9573=>602,9574=>602,9575=>602,9576=>602, |
|
232 | -9577=>602,9578=>602,9579=>602,9580=>602,9581=>602,9582=>602,9583=>602,9584=>602,9585=>602,9586=>602, |
|
233 | -9587=>602,9588=>602,9589=>602,9590=>602,9591=>602,9592=>602,9593=>602,9594=>602,9595=>602,9596=>602, |
|
234 | -9597=>602,9598=>602,9599=>602,9600=>602,9601=>602,9602=>602,9603=>602,9604=>602,9605=>602,9606=>602, |
|
235 | -9607=>602,9608=>602,9609=>602,9610=>602,9611=>602,9612=>602,9613=>602,9614=>602,9615=>602,9616=>602, |
|
236 | -9617=>602,9618=>602,9619=>602,9620=>602,9621=>602,9622=>602,9623=>602,9624=>602,9625=>602,9626=>602, |
|
237 | -9627=>602,9628=>602,9629=>602,9630=>602,9631=>602,9632=>602,9633=>602,9634=>602,9635=>602,9636=>602, |
|
238 | -9637=>602,9638=>602,9639=>602,9640=>602,9641=>602,9642=>602,9643=>602,9644=>602,9645=>602,9646=>602, |
|
239 | -9647=>602,9648=>602,9649=>602,9650=>602,9651=>602,9652=>602,9653=>602,9654=>602,9655=>602,9656=>602, |
|
240 | -9657=>602,9658=>602,9659=>602,9660=>602,9661=>602,9662=>602,9663=>602,9664=>602,9665=>602,9666=>602, |
|
241 | -9667=>602,9668=>602,9669=>602,9670=>602,9671=>602,9672=>602,9673=>602,9674=>602,9675=>602,9676=>602, |
|
242 | -9677=>602,9678=>602,9679=>602,9680=>602,9681=>602,9682=>602,9683=>602,9684=>602,9685=>602,9686=>602, |
|
243 | -9687=>602,9688=>602,9689=>602,9690=>602,9691=>602,9692=>602,9693=>602,9694=>602,9695=>602,9696=>602, |
|
244 | -9697=>602,9698=>602,9699=>602,9700=>602,9701=>602,9702=>602,9703=>602,9704=>602,9705=>602,9706=>602, |
|
245 | -9707=>602,9708=>602,9709=>602,9710=>602,9711=>602,9712=>602,9713=>602,9714=>602,9715=>602,9716=>602, |
|
246 | -9717=>602,9718=>602,9719=>602,9720=>602,9721=>602,9722=>602,9723=>602,9724=>602,9725=>602,9726=>602, |
|
247 | -9727=>602,9728=>602,9784=>602,9785=>602,9786=>602,9787=>602,9788=>602,9791=>602,9792=>602,9793=>602, |
|
248 | -9794=>602,9795=>602,9796=>602,9797=>602,9798=>602,9799=>602,9824=>602,9825=>602,9826=>602,9827=>602, |
|
249 | -9828=>602,9829=>602,9830=>602,9831=>602,9833=>602,9834=>602,9835=>602,9836=>602,9837=>602,9838=>602, |
|
250 | -9839=>602,10181=>602,10182=>602,10208=>602,10216=>602,10217=>602,10731=>602,10746=>602,10747=>602,10799=>602, |
|
251 | -11026=>602,11027=>602,11028=>602,11029=>602,11030=>602,11031=>602,11032=>602,11033=>602,11034=>602,11364=>602, |
|
252 | -11374=>602,11375=>602,11381=>602,11382=>602,11383=>602,11385=>602,11386=>602,11388=>602,11389=>602,11800=>602, |
|
253 | -11810=>602,11811=>602,11812=>602,11813=>602,11822=>602,42760=>602,42761=>602,42762=>602,42763=>602,42764=>602, |
|
254 | -42765=>602,42766=>602,42767=>602,42768=>602,42769=>602,42770=>602,42771=>602,42772=>602,42773=>602,42774=>602, |
|
255 | -42779=>602,42780=>602,42781=>602,42782=>602,42783=>602,42790=>602,42791=>602,42889=>602,42890=>602,42891=>602, |
|
256 | -42892=>602,63173=>602,64257=>602,64258=>602,65529=>602,65530=>602,65531=>602,65532=>602,65533=>602); |
|
257 | -$enc=''; |
|
258 | -$diff=''; |
|
259 | -$file='dejavusansmonoi.z'; |
|
260 | -$ctg='dejavusansmonoi.ctg.z'; |
|
261 | -$originalsize=229284; |
|
2 | +$type = 'TrueTypeUnicode'; |
|
3 | +$name = 'DejaVuSansMono-Oblique'; |
|
4 | +$desc = array('Ascent'=>928, 'Descent'=>-236, 'CapHeight'=>-62, 'Flags'=>97, 'FontBBox'=>'[-406 -375 746 1028]', 'ItalicAngle'=>-11, 'StemV'=>70, 'MissingWidth'=>602); |
|
5 | +$up = -63; |
|
6 | +$ut = 44; |
|
7 | +$dw = 602; |
|
8 | +$cw = array( |
|
9 | +0=>602, 32=>602, 33=>602, 34=>602, 35=>602, 36=>602, 37=>602, 38=>602, 39=>602, 40=>602, |
|
10 | +41=>602, 42=>602, 43=>602, 44=>602, 45=>602, 46=>602, 47=>602, 48=>602, 49=>602, 50=>602, |
|
11 | +51=>602, 52=>602, 53=>602, 54=>602, 55=>602, 56=>602, 57=>602, 58=>602, 59=>602, 60=>602, |
|
12 | +61=>602, 62=>602, 63=>602, 64=>602, 65=>602, 66=>602, 67=>602, 68=>602, 69=>602, 70=>602, |
|
13 | +71=>602, 72=>602, 73=>602, 74=>602, 75=>602, 76=>602, 77=>602, 78=>602, 79=>602, 80=>602, |
|
14 | +81=>602, 82=>602, 83=>602, 84=>602, 85=>602, 86=>602, 87=>602, 88=>602, 89=>602, 90=>602, |
|
15 | +91=>602, 92=>602, 93=>602, 94=>602, 95=>602, 96=>602, 97=>602, 98=>602, 99=>602, 100=>602, |
|
16 | +101=>602, 102=>602, 103=>602, 104=>602, 105=>602, 106=>602, 107=>602, 108=>602, 109=>602, 110=>602, |
|
17 | +111=>602, 112=>602, 113=>602, 114=>602, 115=>602, 116=>602, 117=>602, 118=>602, 119=>602, 120=>602, |
|
18 | +121=>602, 122=>602, 123=>602, 124=>602, 125=>602, 126=>602, 8364=>602, 8218=>602, 402=>602, 8222=>602, |
|
19 | +8230=>602, 8224=>602, 8225=>602, 710=>602, 8240=>602, 352=>602, 8249=>602, 338=>602, 381=>602, 8216=>602, |
|
20 | +8217=>602, 8220=>602, 8221=>602, 8226=>602, 8211=>602, 8212=>602, 732=>602, 8482=>602, 353=>602, 8250=>602, |
|
21 | +339=>602, 382=>602, 376=>602, 160=>602, 161=>602, 162=>602, 163=>602, 164=>602, 165=>602, 166=>602, |
|
22 | +167=>602, 168=>602, 169=>602, 170=>602, 171=>602, 172=>602, 173=>602, 174=>602, 175=>602, 176=>602, |
|
23 | +177=>602, 178=>602, 179=>602, 180=>602, 181=>602, 182=>602, 183=>602, 184=>602, 185=>602, 186=>602, |
|
24 | +187=>602, 188=>602, 189=>602, 190=>602, 191=>602, 192=>602, 193=>602, 194=>602, 195=>602, 196=>602, |
|
25 | +197=>602, 198=>602, 199=>602, 200=>602, 201=>602, 202=>602, 203=>602, 204=>602, 205=>602, 206=>602, |
|
26 | +207=>602, 208=>602, 209=>602, 210=>602, 211=>602, 212=>602, 213=>602, 214=>602, 215=>602, 216=>602, |
|
27 | +217=>602, 218=>602, 219=>602, 220=>602, 221=>602, 222=>602, 223=>602, 224=>602, 225=>602, 226=>602, |
|
28 | +227=>602, 228=>602, 229=>602, 230=>602, 231=>602, 232=>602, 233=>602, 234=>602, 235=>602, 236=>602, |
|
29 | +237=>602, 238=>602, 239=>602, 240=>602, 241=>602, 242=>602, 243=>602, 244=>602, 245=>602, 246=>602, |
|
30 | +247=>602, 248=>602, 249=>602, 250=>602, 251=>602, 252=>602, 253=>602, 254=>602, 255=>602, 256=>602, |
|
31 | +257=>602, 258=>602, 259=>602, 260=>602, 261=>602, 262=>602, 263=>602, 264=>602, 265=>602, 266=>602, |
|
32 | +267=>602, 268=>602, 269=>602, 270=>602, 271=>602, 272=>602, 273=>602, 274=>602, 275=>602, 276=>602, |
|
33 | +277=>602, 278=>602, 279=>602, 280=>602, 281=>602, 282=>602, 283=>602, 284=>602, 285=>602, 286=>602, |
|
34 | +287=>602, 288=>602, 289=>602, 290=>602, 291=>602, 292=>602, 293=>602, 294=>602, 295=>602, 296=>602, |
|
35 | +297=>602, 298=>602, 299=>602, 300=>602, 301=>602, 302=>602, 303=>602, 304=>602, 305=>602, 306=>602, |
|
36 | +307=>602, 308=>602, 309=>602, 310=>602, 311=>602, 312=>602, 313=>602, 314=>602, 315=>602, 316=>602, |
|
37 | +317=>602, 318=>602, 319=>602, 320=>602, 321=>602, 322=>602, 323=>602, 324=>602, 325=>602, 326=>602, |
|
38 | +327=>602, 328=>602, 329=>602, 330=>602, 331=>602, 332=>602, 333=>602, 334=>602, 335=>602, 336=>602, |
|
39 | +337=>602, 340=>602, 341=>602, 342=>602, 343=>602, 344=>602, 345=>602, 346=>602, 347=>602, 348=>602, |
|
40 | +349=>602, 350=>602, 351=>602, 354=>602, 355=>602, 356=>602, 357=>602, 358=>602, 359=>602, 360=>602, |
|
41 | +361=>602, 362=>602, 363=>602, 364=>602, 365=>602, 366=>602, 367=>602, 368=>602, 369=>602, 370=>602, |
|
42 | +371=>602, 372=>602, 373=>602, 374=>602, 375=>602, 377=>602, 378=>602, 379=>602, 380=>602, 383=>602, |
|
43 | +384=>602, 385=>602, 386=>602, 387=>602, 388=>602, 389=>602, 390=>602, 391=>602, 392=>602, 393=>602, |
|
44 | +394=>602, 395=>602, 396=>602, 397=>602, 398=>602, 399=>602, 400=>602, 401=>602, 403=>602, 404=>602, |
|
45 | +405=>602, 406=>602, 407=>602, 408=>602, 409=>602, 410=>602, 411=>602, 412=>602, 413=>602, 414=>602, |
|
46 | +415=>602, 416=>602, 417=>602, 418=>602, 419=>602, 420=>602, 421=>602, 422=>602, 423=>602, 424=>602, |
|
47 | +425=>602, 426=>602, 427=>602, 428=>602, 429=>602, 430=>602, 431=>602, 432=>602, 433=>602, 434=>602, |
|
48 | +435=>602, 436=>602, 437=>602, 438=>602, 439=>602, 440=>602, 441=>602, 442=>602, 443=>602, 444=>602, |
|
49 | +445=>602, 446=>602, 447=>602, 448=>602, 449=>602, 450=>602, 451=>602, 461=>602, 462=>602, 463=>602, |
|
50 | +464=>602, 465=>602, 466=>602, 467=>602, 468=>602, 469=>602, 470=>602, 471=>602, 472=>602, 473=>602, |
|
51 | +474=>602, 475=>602, 476=>602, 477=>602, 479=>602, 480=>602, 481=>602, 482=>602, 483=>602, 486=>602, |
|
52 | +487=>602, 488=>602, 489=>602, 490=>602, 491=>602, 492=>602, 493=>602, 494=>602, 495=>602, 500=>602, |
|
53 | +501=>602, 502=>602, 504=>602, 505=>602, 508=>602, 509=>602, 510=>602, 511=>602, 512=>602, 513=>602, |
|
54 | +514=>602, 515=>602, 516=>602, 517=>602, 518=>602, 519=>602, 520=>602, 521=>602, 522=>602, 523=>602, |
|
55 | +524=>602, 525=>602, 526=>602, 527=>602, 528=>602, 529=>602, 530=>602, 531=>602, 532=>602, 533=>602, |
|
56 | +534=>602, 535=>602, 536=>602, 537=>602, 538=>602, 539=>602, 540=>602, 541=>602, 542=>602, 543=>602, |
|
57 | +545=>602, 548=>602, 549=>602, 550=>602, 551=>602, 552=>602, 553=>602, 554=>602, 555=>602, 556=>602, |
|
58 | +557=>602, 558=>602, 559=>602, 560=>602, 561=>602, 562=>602, 563=>602, 564=>602, 565=>602, 566=>602, |
|
59 | +567=>602, 568=>602, 569=>602, 570=>602, 571=>602, 572=>602, 573=>602, 574=>602, 575=>602, 576=>602, |
|
60 | +577=>602, 580=>602, 581=>602, 588=>602, 589=>602, 592=>602, 593=>602, 594=>602, 595=>602, 596=>602, |
|
61 | +597=>602, 598=>602, 599=>602, 600=>602, 601=>602, 602=>602, 603=>602, 604=>602, 605=>602, 606=>602, |
|
62 | +607=>602, 608=>602, 609=>602, 610=>602, 611=>602, 612=>602, 613=>602, 614=>602, 615=>602, 616=>602, |
|
63 | +617=>602, 618=>602, 619=>602, 620=>602, 621=>602, 622=>602, 623=>602, 624=>602, 625=>602, 626=>602, |
|
64 | +627=>602, 628=>602, 629=>602, 630=>602, 631=>602, 632=>602, 633=>602, 634=>602, 635=>602, 636=>602, |
|
65 | +637=>602, 638=>602, 639=>602, 640=>602, 641=>602, 642=>602, 643=>602, 644=>602, 645=>602, 646=>602, |
|
66 | +647=>602, 648=>602, 649=>602, 650=>602, 651=>602, 652=>602, 653=>602, 654=>602, 655=>602, 656=>602, |
|
67 | +657=>602, 658=>602, 659=>602, 660=>602, 661=>602, 662=>602, 663=>602, 664=>602, 665=>602, 666=>602, |
|
68 | +667=>602, 668=>602, 669=>602, 670=>602, 671=>602, 672=>602, 673=>602, 674=>602, 675=>602, 676=>602, |
|
69 | +677=>602, 678=>602, 679=>602, 680=>602, 681=>602, 682=>602, 683=>602, 684=>602, 685=>602, 686=>602, |
|
70 | +687=>602, 688=>602, 689=>602, 690=>602, 691=>602, 692=>602, 693=>602, 694=>602, 695=>602, 696=>602, |
|
71 | +697=>602, 699=>602, 700=>602, 701=>602, 702=>602, 703=>602, 704=>602, 705=>602, 711=>602, 712=>602, |
|
72 | +713=>602, 716=>602, 717=>602, 720=>602, 721=>602, 722=>602, 723=>602, 726=>602, 727=>602, 728=>602, |
|
73 | +729=>602, 730=>602, 731=>602, 733=>602, 734=>602, 736=>602, 737=>602, 738=>602, 739=>602, 740=>602, |
|
74 | +741=>602, 742=>602, 743=>602, 744=>602, 745=>602, 750=>602, 755=>602, 768=>602, 769=>602, 770=>602, |
|
75 | +771=>602, 772=>602, 773=>602, 774=>602, 775=>602, 776=>602, 777=>602, 778=>602, 779=>602, 780=>602, |
|
76 | +781=>602, 782=>602, 783=>602, 784=>602, 785=>602, 786=>602, 787=>602, 788=>602, 789=>602, 790=>602, |
|
77 | +791=>602, 792=>602, 793=>602, 794=>602, 795=>602, 796=>602, 797=>602, 798=>602, 799=>602, 800=>602, |
|
78 | +801=>602, 802=>602, 803=>602, 804=>602, 805=>602, 806=>602, 807=>602, 808=>602, 809=>602, 810=>602, |
|
79 | +811=>602, 812=>602, 813=>602, 814=>602, 815=>602, 816=>602, 817=>602, 818=>602, 819=>602, 820=>602, |
|
80 | +821=>602, 822=>602, 823=>602, 824=>602, 825=>602, 826=>602, 827=>602, 828=>602, 829=>602, 830=>602, |
|
81 | +831=>602, 835=>602, 856=>602, 865=>602, 884=>602, 885=>602, 890=>602, 894=>602, 900=>602, 901=>602, |
|
82 | +902=>602, 903=>602, 904=>602, 905=>602, 906=>602, 908=>602, 910=>602, 911=>602, 912=>602, 913=>602, |
|
83 | +914=>602, 915=>602, 916=>602, 917=>602, 918=>602, 919=>602, 920=>602, 921=>602, 922=>602, 923=>602, |
|
84 | +924=>602, 925=>602, 926=>602, 927=>602, 928=>602, 929=>602, 931=>602, 932=>602, 933=>602, 934=>602, |
|
85 | +935=>602, 936=>602, 937=>602, 938=>602, 939=>602, 940=>602, 941=>602, 942=>602, 943=>602, 944=>602, |
|
86 | +945=>602, 946=>602, 947=>602, 948=>602, 949=>602, 950=>602, 951=>602, 952=>602, 953=>602, 954=>602, |
|
87 | +955=>602, 956=>602, 957=>602, 958=>602, 959=>602, 960=>602, 961=>602, 962=>602, 963=>602, 964=>602, |
|
88 | +965=>602, 966=>602, 967=>602, 968=>602, 969=>602, 970=>602, 971=>602, 972=>602, 973=>602, 974=>602, |
|
89 | +976=>602, 977=>602, 978=>602, 979=>602, 980=>602, 981=>602, 982=>602, 983=>602, 984=>602, 985=>602, |
|
90 | +986=>602, 987=>602, 988=>602, 989=>602, 990=>602, 991=>602, 992=>602, 993=>602, 1008=>602, 1009=>602, |
|
91 | +1010=>602, 1011=>602, 1012=>602, 1013=>602, 1014=>602, 1015=>602, 1016=>602, 1017=>602, 1018=>602, 1019=>602, |
|
92 | +1020=>602, 1021=>602, 1022=>602, 1023=>602, 1024=>602, 1025=>602, 1026=>602, 1027=>602, 1028=>602, 1029=>602, |
|
93 | +1030=>602, 1031=>602, 1032=>602, 1033=>602, 1034=>602, 1035=>602, 1036=>602, 1037=>602, 1038=>602, 1039=>602, |
|
94 | +1040=>602, 1041=>602, 1042=>602, 1043=>602, 1044=>602, 1045=>602, 1046=>602, 1047=>602, 1048=>602, 1049=>602, |
|
95 | +1050=>602, 1051=>602, 1052=>602, 1053=>602, 1054=>602, 1055=>602, 1056=>602, 1057=>602, 1058=>602, 1059=>602, |
|
96 | +1060=>602, 1061=>602, 1062=>602, 1063=>602, 1064=>602, 1065=>602, 1066=>602, 1067=>602, 1068=>602, 1069=>602, |
|
97 | +1070=>602, 1071=>602, 1072=>602, 1073=>602, 1074=>602, 1075=>602, 1076=>602, 1077=>602, 1078=>602, 1079=>602, |
|
98 | +1080=>602, 1081=>602, 1082=>602, 1083=>602, 1084=>602, 1085=>602, 1086=>602, 1087=>602, 1088=>602, 1089=>602, |
|
99 | +1090=>602, 1091=>602, 1092=>602, 1093=>602, 1094=>602, 1095=>602, 1096=>602, 1097=>602, 1098=>602, 1099=>602, |
|
100 | +1100=>602, 1101=>602, 1102=>602, 1103=>602, 1104=>602, 1105=>602, 1106=>602, 1107=>602, 1108=>602, 1109=>602, |
|
101 | +1110=>602, 1111=>602, 1112=>602, 1113=>602, 1114=>602, 1115=>602, 1116=>602, 1117=>602, 1118=>602, 1119=>602, |
|
102 | +1122=>602, 1123=>602, 1138=>602, 1139=>602, 1168=>602, 1169=>602, 1170=>602, 1171=>602, 1172=>602, 1173=>602, |
|
103 | +1174=>602, 1175=>602, 1176=>602, 1177=>602, 1178=>602, 1179=>602, 1186=>602, 1187=>602, 1194=>602, 1195=>602, |
|
104 | +1196=>602, 1197=>602, 1198=>602, 1199=>602, 1200=>602, 1201=>602, 1202=>602, 1203=>602, 1210=>602, 1211=>602, |
|
105 | +1216=>602, 1217=>602, 1218=>602, 1219=>602, 1220=>602, 1223=>602, 1224=>602, 1227=>602, 1228=>602, 1231=>602, |
|
106 | +1232=>602, 1233=>602, 1234=>602, 1235=>602, 1236=>602, 1237=>602, 1238=>602, 1239=>602, 1240=>602, 1241=>602, |
|
107 | +1242=>602, 1243=>602, 1244=>602, 1245=>602, 1246=>602, 1247=>602, 1248=>602, 1249=>602, 1250=>602, 1251=>602, |
|
108 | +1252=>602, 1253=>602, 1254=>602, 1255=>602, 1256=>602, 1257=>602, 1258=>602, 1259=>602, 1260=>602, 1261=>602, |
|
109 | +1262=>602, 1263=>602, 1264=>602, 1265=>602, 1266=>602, 1267=>602, 1268=>602, 1269=>602, 1270=>602, 1271=>602, |
|
110 | +1272=>602, 1273=>602, 1296=>602, 1297=>602, 1306=>602, 1307=>602, 1308=>602, 1309=>602, 3713=>602, 3714=>602, |
|
111 | +3716=>602, 3719=>602, 3720=>602, 3722=>602, 3725=>602, 3732=>602, 3733=>602, 3734=>602, 3735=>602, 3737=>602, |
|
112 | +3738=>602, 3739=>602, 3740=>602, 3741=>602, 3742=>602, 3743=>602, 3745=>602, 3746=>602, 3747=>602, 3749=>602, |
|
113 | +3751=>602, 3754=>602, 3755=>602, 3757=>602, 3758=>602, 3759=>602, 3760=>602, 3761=>602, 3762=>602, 3763=>602, |
|
114 | +3764=>602, 3765=>602, 3766=>602, 3767=>602, 3768=>602, 3769=>602, 3771=>602, 3772=>602, 3784=>602, 3785=>602, |
|
115 | +3786=>602, 3787=>602, 3788=>602, 3789=>602, 4304=>602, 4305=>602, 4306=>602, 4307=>602, 4308=>602, 4309=>602, |
|
116 | +4310=>602, 4311=>602, 4312=>602, 4313=>602, 4314=>602, 4315=>602, 4316=>602, 4317=>602, 4318=>602, 4319=>602, |
|
117 | +4320=>602, 4321=>602, 4322=>602, 4323=>602, 4324=>602, 4325=>602, 4326=>602, 4327=>602, 4328=>602, 4329=>602, |
|
118 | +4330=>602, 4331=>602, 4332=>602, 4333=>602, 4334=>602, 4335=>602, 4336=>602, 4337=>602, 4338=>602, 4339=>602, |
|
119 | +4340=>602, 4341=>602, 4342=>602, 4343=>602, 4344=>602, 4345=>602, 4346=>602, 4347=>602, 4348=>602, 7426=>602, |
|
120 | +7432=>602, 7433=>602, 7444=>602, 7446=>602, 7447=>602, 7453=>602, 7454=>602, 7455=>602, 7468=>602, 7469=>602, |
|
121 | +7470=>602, 7472=>602, 7473=>602, 7474=>602, 7475=>602, 7476=>602, 7477=>602, 7478=>602, 7479=>602, 7480=>602, |
|
122 | +7481=>602, 7482=>602, 7483=>602, 7484=>602, 7485=>602, 7486=>602, 7487=>602, 7488=>602, 7489=>602, 7490=>602, |
|
123 | +7491=>602, 7492=>602, 7493=>602, 7494=>602, 7495=>602, 7496=>602, 7497=>602, 7498=>602, 7499=>602, 7500=>602, |
|
124 | +7501=>602, 7502=>602, 7503=>602, 7504=>602, 7505=>602, 7506=>602, 7507=>602, 7508=>602, 7509=>602, 7510=>602, |
|
125 | +7511=>602, 7512=>602, 7513=>602, 7514=>602, 7515=>602, 7522=>602, 7523=>602, 7524=>602, 7525=>602, 7543=>602, |
|
126 | +7544=>602, 7547=>602, 7557=>602, 7579=>602, 7580=>602, 7581=>602, 7582=>602, 7583=>602, 7584=>602, 7585=>602, |
|
127 | +7586=>602, 7587=>602, 7588=>602, 7589=>602, 7590=>602, 7591=>602, 7592=>602, 7593=>602, 7594=>602, 7595=>602, |
|
128 | +7596=>602, 7597=>602, 7598=>602, 7599=>602, 7600=>602, 7601=>602, 7602=>602, 7603=>602, 7604=>602, 7605=>602, |
|
129 | +7606=>602, 7607=>602, 7609=>602, 7610=>602, 7611=>602, 7612=>602, 7613=>602, 7614=>602, 7615=>602, 7680=>602, |
|
130 | +7681=>602, 7682=>602, 7683=>602, 7684=>602, 7685=>602, 7686=>602, 7687=>602, 7688=>602, 7689=>602, 7690=>602, |
|
131 | +7691=>602, 7692=>602, 7693=>602, 7694=>602, 7695=>602, 7696=>602, 7697=>602, 7698=>602, 7699=>602, 7704=>602, |
|
132 | +7705=>602, 7706=>602, 7707=>602, 7708=>602, 7709=>602, 7710=>602, 7711=>602, 7712=>602, 7713=>602, 7714=>602, |
|
133 | +7715=>602, 7716=>602, 7717=>602, 7718=>602, 7719=>602, 7720=>602, 7721=>602, 7722=>602, 7723=>602, 7724=>602, |
|
134 | +7725=>602, 7728=>602, 7729=>602, 7730=>602, 7731=>602, 7732=>602, 7733=>602, 7734=>602, 7735=>602, 7736=>602, |
|
135 | +7737=>602, 7738=>602, 7739=>602, 7740=>602, 7741=>602, 7742=>602, 7743=>602, 7744=>602, 7745=>602, 7746=>602, |
|
136 | +7747=>602, 7748=>602, 7749=>602, 7750=>602, 7751=>602, 7752=>602, 7753=>602, 7754=>602, 7755=>602, 7756=>602, |
|
137 | +7757=>602, 7764=>602, 7765=>602, 7766=>602, 7767=>602, 7768=>602, 7769=>602, 7770=>602, 7771=>602, 7772=>602, |
|
138 | +7773=>602, 7774=>602, 7775=>602, 7776=>602, 7777=>602, 7778=>602, 7779=>602, 7784=>602, 7785=>602, 7786=>602, |
|
139 | +7787=>602, 7788=>602, 7789=>602, 7790=>602, 7791=>602, 7792=>602, 7793=>602, 7794=>602, 7795=>602, 7796=>602, |
|
140 | +7797=>602, 7798=>602, 7799=>602, 7800=>602, 7801=>602, 7804=>602, 7805=>602, 7806=>602, 7807=>602, 7808=>602, |
|
141 | +7809=>602, 7810=>602, 7811=>602, 7812=>602, 7813=>602, 7814=>602, 7815=>602, 7816=>602, 7817=>602, 7818=>602, |
|
142 | +7819=>602, 7820=>602, 7821=>602, 7822=>602, 7823=>602, 7824=>602, 7825=>602, 7826=>602, 7827=>602, 7828=>602, |
|
143 | +7829=>602, 7830=>602, 7831=>602, 7832=>602, 7833=>602, 7835=>602, 7839=>602, 7840=>602, 7841=>602, 7852=>602, |
|
144 | +7853=>602, 7856=>602, 7857=>602, 7862=>602, 7863=>602, 7864=>602, 7865=>602, 7868=>602, 7869=>602, 7878=>602, |
|
145 | +7879=>602, 7882=>602, 7883=>602, 7884=>602, 7885=>602, 7896=>602, 7897=>602, 7898=>602, 7899=>602, 7900=>602, |
|
146 | +7901=>602, 7904=>602, 7905=>602, 7906=>602, 7907=>602, 7908=>602, 7909=>602, 7912=>602, 7913=>602, 7914=>602, |
|
147 | +7915=>602, 7918=>602, 7919=>602, 7920=>602, 7921=>602, 7922=>602, 7923=>602, 7924=>602, 7925=>602, 7928=>602, |
|
148 | +7929=>602, 7936=>602, 7937=>602, 7938=>602, 7939=>602, 7940=>602, 7941=>602, 7942=>602, 7943=>602, 7944=>602, |
|
149 | +7945=>602, 7946=>602, 7947=>602, 7948=>602, 7949=>602, 7950=>602, 7951=>602, 7952=>602, 7953=>602, 7954=>602, |
|
150 | +7955=>602, 7956=>602, 7957=>602, 7960=>602, 7961=>602, 7962=>602, 7963=>602, 7964=>602, 7965=>602, 7968=>602, |
|
151 | +7969=>602, 7970=>602, 7971=>602, 7972=>602, 7973=>602, 7974=>602, 7975=>602, 7976=>602, 7977=>602, 7978=>602, |
|
152 | +7979=>602, 7980=>602, 7981=>602, 7982=>602, 7983=>602, 7984=>602, 7985=>602, 7986=>602, 7987=>602, 7988=>602, |
|
153 | +7989=>602, 7990=>602, 7991=>602, 7992=>602, 7993=>602, 7994=>602, 7995=>602, 7996=>602, 7997=>602, 7998=>602, |
|
154 | +7999=>602, 8000=>602, 8001=>602, 8002=>602, 8003=>602, 8004=>602, 8005=>602, 8008=>602, 8009=>602, 8010=>602, |
|
155 | +8011=>602, 8012=>602, 8013=>602, 8016=>602, 8017=>602, 8018=>602, 8019=>602, 8020=>602, 8021=>602, 8022=>602, |
|
156 | +8023=>602, 8025=>602, 8027=>602, 8029=>602, 8031=>602, 8032=>602, 8033=>602, 8034=>602, 8035=>602, 8036=>602, |
|
157 | +8037=>602, 8038=>602, 8039=>602, 8040=>602, 8041=>602, 8042=>602, 8043=>602, 8044=>602, 8045=>602, 8046=>602, |
|
158 | +8047=>602, 8048=>602, 8049=>602, 8050=>602, 8051=>602, 8052=>602, 8053=>602, 8054=>602, 8055=>602, 8056=>602, |
|
159 | +8057=>602, 8058=>602, 8059=>602, 8060=>602, 8061=>602, 8064=>602, 8065=>602, 8066=>602, 8067=>602, 8068=>602, |
|
160 | +8069=>602, 8070=>602, 8071=>602, 8072=>602, 8073=>602, 8074=>602, 8075=>602, 8076=>602, 8077=>602, 8078=>602, |
|
161 | +8079=>602, 8080=>602, 8081=>602, 8082=>602, 8083=>602, 8084=>602, 8085=>602, 8086=>602, 8087=>602, 8088=>602, |
|
162 | +8089=>602, 8090=>602, 8091=>602, 8092=>602, 8093=>602, 8094=>602, 8095=>602, 8096=>602, 8097=>602, 8098=>602, |
|
163 | +8099=>602, 8100=>602, 8101=>602, 8102=>602, 8103=>602, 8104=>602, 8105=>602, 8106=>602, 8107=>602, 8108=>602, |
|
164 | +8109=>602, 8110=>602, 8111=>602, 8112=>602, 8113=>602, 8114=>602, 8115=>602, 8116=>602, 8118=>602, 8119=>602, |
|
165 | +8120=>602, 8121=>602, 8122=>602, 8123=>602, 8124=>602, 8125=>602, 8126=>602, 8127=>602, 8128=>602, 8129=>602, |
|
166 | +8130=>602, 8131=>602, 8132=>602, 8134=>602, 8135=>602, 8136=>602, 8137=>602, 8138=>602, 8139=>602, 8140=>602, |
|
167 | +8141=>602, 8142=>602, 8143=>602, 8144=>602, 8145=>602, 8146=>602, 8147=>602, 8150=>602, 8151=>602, 8152=>602, |
|
168 | +8153=>602, 8154=>602, 8155=>602, 8157=>602, 8158=>602, 8159=>602, 8160=>602, 8161=>602, 8162=>602, 8163=>602, |
|
169 | +8164=>602, 8165=>602, 8166=>602, 8167=>602, 8168=>602, 8169=>602, 8170=>602, 8171=>602, 8172=>602, 8173=>602, |
|
170 | +8174=>602, 8175=>602, 8178=>602, 8179=>602, 8180=>602, 8182=>602, 8183=>602, 8184=>602, 8185=>602, 8186=>602, |
|
171 | +8187=>602, 8188=>602, 8189=>602, 8190=>602, 8192=>602, 8193=>602, 8194=>602, 8195=>602, 8196=>602, 8197=>602, |
|
172 | +8198=>602, 8199=>602, 8200=>602, 8201=>602, 8202=>602, 8208=>602, 8209=>602, 8210=>602, 8213=>602, 8215=>602, |
|
173 | +8219=>602, 8223=>602, 8227=>602, 8239=>602, 8241=>602, 8242=>602, 8243=>602, 8244=>602, 8245=>602, 8246=>602, |
|
174 | +8247=>602, 8252=>602, 8253=>602, 8254=>602, 8261=>602, 8262=>602, 8263=>602, 8264=>602, 8265=>602, 8287=>602, |
|
175 | +8304=>602, 8305=>602, 8308=>602, 8309=>602, 8310=>602, 8311=>602, 8312=>602, 8313=>602, 8314=>602, 8315=>602, |
|
176 | +8316=>602, 8317=>602, 8318=>602, 8319=>602, 8320=>602, 8321=>602, 8322=>602, 8323=>602, 8324=>602, 8325=>602, |
|
177 | +8326=>602, 8327=>602, 8328=>602, 8329=>602, 8330=>602, 8331=>602, 8332=>602, 8333=>602, 8334=>602, 8336=>602, |
|
178 | +8337=>602, 8338=>602, 8339=>602, 8340=>602, 8352=>602, 8353=>602, 8354=>602, 8355=>602, 8356=>602, 8357=>602, |
|
179 | +8358=>602, 8359=>602, 8360=>602, 8361=>602, 8362=>602, 8363=>602, 8365=>602, 8366=>602, 8367=>602, 8368=>602, |
|
180 | +8369=>602, 8370=>602, 8371=>602, 8372=>602, 8373=>602, 8450=>602, 8453=>602, 8461=>602, 8462=>602, 8463=>602, |
|
181 | +8469=>602, 8470=>602, 8471=>602, 8473=>602, 8474=>602, 8477=>602, 8484=>602, 8486=>602, 8490=>602, 8491=>602, |
|
182 | +8494=>602, 8531=>602, 8532=>602, 8533=>602, 8534=>602, 8535=>602, 8536=>602, 8537=>602, 8538=>602, 8539=>602, |
|
183 | +8540=>602, 8541=>602, 8542=>602, 8543=>602, 8592=>602, 8593=>602, 8594=>602, 8595=>602, 8596=>602, 8597=>602, |
|
184 | +8598=>602, 8599=>602, 8600=>602, 8601=>602, 8602=>602, 8603=>602, 8604=>602, 8605=>602, 8606=>602, 8607=>602, |
|
185 | +8608=>602, 8609=>602, 8610=>602, 8611=>602, 8612=>602, 8613=>602, 8614=>602, 8615=>602, 8616=>602, 8617=>602, |
|
186 | +8618=>602, 8619=>602, 8620=>602, 8621=>602, 8622=>602, 8623=>602, 8624=>602, 8625=>602, 8626=>602, 8627=>602, |
|
187 | +8628=>602, 8629=>602, 8630=>602, 8631=>602, 8632=>602, 8633=>602, 8634=>602, 8635=>602, 8636=>602, 8637=>602, |
|
188 | +8638=>602, 8639=>602, 8640=>602, 8641=>602, 8642=>602, 8643=>602, 8644=>602, 8645=>602, 8646=>602, 8647=>602, |
|
189 | +8648=>602, 8649=>602, 8650=>602, 8651=>602, 8652=>602, 8653=>602, 8654=>602, 8655=>602, 8656=>602, 8657=>602, |
|
190 | +8658=>602, 8659=>602, 8660=>602, 8661=>602, 8662=>602, 8663=>602, 8664=>602, 8665=>602, 8666=>602, 8667=>602, |
|
191 | +8668=>602, 8669=>602, 8670=>602, 8671=>602, 8672=>602, 8673=>602, 8674=>602, 8675=>602, 8676=>602, 8677=>602, |
|
192 | +8678=>602, 8679=>602, 8680=>602, 8681=>602, 8682=>602, 8683=>602, 8684=>602, 8685=>602, 8686=>602, 8687=>602, |
|
193 | +8688=>602, 8689=>602, 8690=>602, 8691=>602, 8692=>602, 8693=>602, 8694=>602, 8695=>602, 8696=>602, 8697=>602, |
|
194 | +8698=>602, 8699=>602, 8700=>602, 8701=>602, 8702=>602, 8703=>602, 8704=>602, 8705=>602, 8706=>602, 8707=>602, |
|
195 | +8708=>602, 8709=>602, 8710=>602, 8711=>602, 8712=>602, 8713=>602, 8714=>602, 8715=>602, 8716=>602, 8717=>602, |
|
196 | +8719=>602, 8721=>602, 8722=>602, 8723=>602, 8725=>602, 8727=>602, 8728=>602, 8729=>602, 8730=>602, 8731=>602, |
|
197 | +8732=>602, 8733=>602, 8734=>602, 8735=>602, 8736=>602, 8743=>602, 8744=>602, 8745=>602, 8746=>602, 8747=>602, |
|
198 | +8748=>602, 8749=>602, 8760=>602, 8761=>602, 8762=>602, 8763=>602, 8764=>602, 8765=>602, 8769=>602, 8770=>602, |
|
199 | +8771=>602, 8772=>602, 8773=>602, 8774=>602, 8775=>602, 8776=>602, 8777=>602, 8778=>602, 8779=>602, 8780=>602, |
|
200 | +8781=>602, 8782=>602, 8783=>602, 8784=>602, 8785=>602, 8786=>602, 8787=>602, 8788=>602, 8789=>602, 8790=>602, |
|
201 | +8791=>602, 8792=>602, 8793=>602, 8794=>602, 8795=>602, 8796=>602, 8797=>602, 8798=>602, 8799=>602, 8800=>602, |
|
202 | +8801=>602, 8802=>602, 8803=>602, 8804=>602, 8805=>602, 8806=>602, 8807=>602, 8808=>602, 8809=>602, 8813=>602, |
|
203 | +8814=>602, 8815=>602, 8816=>602, 8817=>602, 8818=>602, 8819=>602, 8820=>602, 8821=>602, 8822=>602, 8823=>602, |
|
204 | +8824=>602, 8825=>602, 8826=>602, 8827=>602, 8828=>602, 8829=>602, 8830=>602, 8831=>602, 8832=>602, 8833=>602, |
|
205 | +8834=>602, 8835=>602, 8836=>602, 8837=>602, 8838=>602, 8839=>602, 8840=>602, 8841=>602, 8842=>602, 8843=>602, |
|
206 | +8847=>602, 8848=>602, 8849=>602, 8850=>602, 8853=>602, 8854=>602, 8855=>602, 8856=>602, 8857=>602, 8858=>602, |
|
207 | +8859=>602, 8860=>602, 8861=>602, 8862=>602, 8863=>602, 8864=>602, 8865=>602, 8901=>602, 8902=>602, 8909=>602, |
|
208 | +8922=>602, 8923=>602, 8924=>602, 8925=>602, 8926=>602, 8927=>602, 8928=>602, 8929=>602, 8930=>602, 8931=>602, |
|
209 | +8932=>602, 8933=>602, 8934=>602, 8935=>602, 8936=>602, 8937=>602, 8943=>602, 8960=>602, 8961=>602, 8962=>602, |
|
210 | +8963=>602, 8964=>602, 8965=>602, 8966=>602, 8968=>602, 8969=>602, 8970=>602, 8971=>602, 8972=>602, 8973=>602, |
|
211 | +8974=>602, 8975=>602, 8976=>602, 8977=>602, 8978=>602, 8979=>602, 8980=>602, 8981=>602, 8984=>602, 8985=>602, |
|
212 | +8988=>602, 8989=>602, 8990=>602, 8991=>602, 8992=>602, 8993=>602, 8997=>602, 8998=>602, 8999=>602, 9000=>602, |
|
213 | +9003=>602, 9013=>602, 9015=>602, 9016=>602, 9017=>602, 9018=>602, 9019=>602, 9020=>602, 9021=>602, 9022=>602, |
|
214 | +9025=>602, 9026=>602, 9027=>602, 9028=>602, 9031=>602, 9032=>602, 9033=>602, 9035=>602, 9036=>602, 9037=>602, |
|
215 | +9040=>602, 9042=>602, 9043=>602, 9044=>602, 9047=>602, 9048=>602, 9049=>602, 9050=>602, 9051=>602, 9052=>602, |
|
216 | +9054=>602, 9055=>602, 9056=>602, 9059=>602, 9060=>602, 9061=>602, 9064=>602, 9065=>602, 9067=>602, 9068=>602, |
|
217 | +9069=>602, 9070=>602, 9071=>602, 9072=>602, 9075=>602, 9076=>602, 9077=>602, 9078=>602, 9079=>602, 9080=>602, |
|
218 | +9081=>602, 9082=>602, 9085=>602, 9088=>602, 9089=>602, 9090=>602, 9091=>602, 9096=>602, 9097=>602, 9098=>602, |
|
219 | +9099=>602, 9109=>602, 9115=>602, 9116=>602, 9117=>602, 9118=>602, 9119=>602, 9120=>602, 9121=>602, 9122=>602, |
|
220 | +9123=>602, 9124=>602, 9125=>602, 9126=>602, 9127=>602, 9128=>602, 9129=>602, 9130=>602, 9131=>602, 9132=>602, |
|
221 | +9133=>602, 9134=>602, 9166=>602, 9167=>602, 9251=>602, 9472=>602, 9473=>602, 9474=>602, 9475=>602, 9476=>602, |
|
222 | +9477=>602, 9478=>602, 9479=>602, 9480=>602, 9481=>602, 9482=>602, 9483=>602, 9484=>602, 9485=>602, 9486=>602, |
|
223 | +9487=>602, 9488=>602, 9489=>602, 9490=>602, 9491=>602, 9492=>602, 9493=>602, 9494=>602, 9495=>602, 9496=>602, |
|
224 | +9497=>602, 9498=>602, 9499=>602, 9500=>602, 9501=>602, 9502=>602, 9503=>602, 9504=>602, 9505=>602, 9506=>602, |
|
225 | +9507=>602, 9508=>602, 9509=>602, 9510=>602, 9511=>602, 9512=>602, 9513=>602, 9514=>602, 9515=>602, 9516=>602, |
|
226 | +9517=>602, 9518=>602, 9519=>602, 9520=>602, 9521=>602, 9522=>602, 9523=>602, 9524=>602, 9525=>602, 9526=>602, |
|
227 | +9527=>602, 9528=>602, 9529=>602, 9530=>602, 9531=>602, 9532=>602, 9533=>602, 9534=>602, 9535=>602, 9536=>602, |
|
228 | +9537=>602, 9538=>602, 9539=>602, 9540=>602, 9541=>602, 9542=>602, 9543=>602, 9544=>602, 9545=>602, 9546=>602, |
|
229 | +9547=>602, 9548=>602, 9549=>602, 9550=>602, 9551=>602, 9552=>602, 9553=>602, 9554=>602, 9555=>602, 9556=>602, |
|
230 | +9557=>602, 9558=>602, 9559=>602, 9560=>602, 9561=>602, 9562=>602, 9563=>602, 9564=>602, 9565=>602, 9566=>602, |
|
231 | +9567=>602, 9568=>602, 9569=>602, 9570=>602, 9571=>602, 9572=>602, 9573=>602, 9574=>602, 9575=>602, 9576=>602, |
|
232 | +9577=>602, 9578=>602, 9579=>602, 9580=>602, 9581=>602, 9582=>602, 9583=>602, 9584=>602, 9585=>602, 9586=>602, |
|
233 | +9587=>602, 9588=>602, 9589=>602, 9590=>602, 9591=>602, 9592=>602, 9593=>602, 9594=>602, 9595=>602, 9596=>602, |
|
234 | +9597=>602, 9598=>602, 9599=>602, 9600=>602, 9601=>602, 9602=>602, 9603=>602, 9604=>602, 9605=>602, 9606=>602, |
|
235 | +9607=>602, 9608=>602, 9609=>602, 9610=>602, 9611=>602, 9612=>602, 9613=>602, 9614=>602, 9615=>602, 9616=>602, |
|
236 | +9617=>602, 9618=>602, 9619=>602, 9620=>602, 9621=>602, 9622=>602, 9623=>602, 9624=>602, 9625=>602, 9626=>602, |
|
237 | +9627=>602, 9628=>602, 9629=>602, 9630=>602, 9631=>602, 9632=>602, 9633=>602, 9634=>602, 9635=>602, 9636=>602, |
|
238 | +9637=>602, 9638=>602, 9639=>602, 9640=>602, 9641=>602, 9642=>602, 9643=>602, 9644=>602, 9645=>602, 9646=>602, |
|
239 | +9647=>602, 9648=>602, 9649=>602, 9650=>602, 9651=>602, 9652=>602, 9653=>602, 9654=>602, 9655=>602, 9656=>602, |
|
240 | +9657=>602, 9658=>602, 9659=>602, 9660=>602, 9661=>602, 9662=>602, 9663=>602, 9664=>602, 9665=>602, 9666=>602, |
|
241 | +9667=>602, 9668=>602, 9669=>602, 9670=>602, 9671=>602, 9672=>602, 9673=>602, 9674=>602, 9675=>602, 9676=>602, |
|
242 | +9677=>602, 9678=>602, 9679=>602, 9680=>602, 9681=>602, 9682=>602, 9683=>602, 9684=>602, 9685=>602, 9686=>602, |
|
243 | +9687=>602, 9688=>602, 9689=>602, 9690=>602, 9691=>602, 9692=>602, 9693=>602, 9694=>602, 9695=>602, 9696=>602, |
|
244 | +9697=>602, 9698=>602, 9699=>602, 9700=>602, 9701=>602, 9702=>602, 9703=>602, 9704=>602, 9705=>602, 9706=>602, |
|
245 | +9707=>602, 9708=>602, 9709=>602, 9710=>602, 9711=>602, 9712=>602, 9713=>602, 9714=>602, 9715=>602, 9716=>602, |
|
246 | +9717=>602, 9718=>602, 9719=>602, 9720=>602, 9721=>602, 9722=>602, 9723=>602, 9724=>602, 9725=>602, 9726=>602, |
|
247 | +9727=>602, 9728=>602, 9784=>602, 9785=>602, 9786=>602, 9787=>602, 9788=>602, 9791=>602, 9792=>602, 9793=>602, |
|
248 | +9794=>602, 9795=>602, 9796=>602, 9797=>602, 9798=>602, 9799=>602, 9824=>602, 9825=>602, 9826=>602, 9827=>602, |
|
249 | +9828=>602, 9829=>602, 9830=>602, 9831=>602, 9833=>602, 9834=>602, 9835=>602, 9836=>602, 9837=>602, 9838=>602, |
|
250 | +9839=>602, 10181=>602, 10182=>602, 10208=>602, 10216=>602, 10217=>602, 10731=>602, 10746=>602, 10747=>602, 10799=>602, |
|
251 | +11026=>602, 11027=>602, 11028=>602, 11029=>602, 11030=>602, 11031=>602, 11032=>602, 11033=>602, 11034=>602, 11364=>602, |
|
252 | +11374=>602, 11375=>602, 11381=>602, 11382=>602, 11383=>602, 11385=>602, 11386=>602, 11388=>602, 11389=>602, 11800=>602, |
|
253 | +11810=>602, 11811=>602, 11812=>602, 11813=>602, 11822=>602, 42760=>602, 42761=>602, 42762=>602, 42763=>602, 42764=>602, |
|
254 | +42765=>602, 42766=>602, 42767=>602, 42768=>602, 42769=>602, 42770=>602, 42771=>602, 42772=>602, 42773=>602, 42774=>602, |
|
255 | +42779=>602, 42780=>602, 42781=>602, 42782=>602, 42783=>602, 42790=>602, 42791=>602, 42889=>602, 42890=>602, 42891=>602, |
|
256 | +42892=>602, 63173=>602, 64257=>602, 64258=>602, 65529=>602, 65530=>602, 65531=>602, 65532=>602, 65533=>602); |
|
257 | +$enc = ''; |
|
258 | +$diff = ''; |
|
259 | +$file = 'dejavusansmonoi.z'; |
|
260 | +$ctg = 'dejavusansmonoi.ctg.z'; |
|
261 | +$originalsize = 229284; |
|
262 | 262 | ?> |
263 | 263 | \ No newline at end of file |
@@ -1,282 +1,282 @@ |
||
1 | 1 | <?php |
2 | -$type='TrueTypeUnicode'; |
|
3 | -$name='FreeSerifBold'; |
|
4 | -$desc=array('Ascent'=>900,'Descent'=>-300,'CapHeight'=>16,'Flags'=>32,'FontBBox'=>'[-796 -306 1860 932]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600); |
|
5 | -$up=-125; |
|
6 | -$ut=50; |
|
7 | -$dw=600; |
|
8 | -$cw=array( |
|
9 | -32=>250,33=>333,34=>555,35=>500,36=>500,37=>1000,38=>833,39=>278,40=>333,41=>333, |
|
10 | -42=>507,43=>676,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500,50=>500,51=>500, |
|
11 | -52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333,60=>676,61=>676, |
|
12 | -62=>676,63=>500,64=>930,65=>722,66=>667,67=>722,68=>724,69=>667,70=>611,71=>778, |
|
13 | -72=>774,73=>386,74=>500,75=>764,76=>664,77=>943,78=>722,79=>778,80=>611,81=>778, |
|
14 | -82=>712,83=>556,84=>667,85=>722,86=>722,87=>1000,88=>722,89=>722,90=>667,91=>333, |
|
15 | -92=>278,93=>333,94=>581,95=>500,96=>333,97=>500,98=>556,99=>444,100=>556,101=>444, |
|
16 | -102=>333,103=>500,104=>556,105=>278,106=>333,107=>556,108=>278,109=>833,110=>556,111=>500, |
|
17 | -112=>556,113=>556,114=>444,115=>389,116=>333,117=>556,118=>500,119=>722,120=>500,121=>500, |
|
18 | -122=>444,123=>394,124=>220,125=>394,126=>520,8364=>761,8218=>250,402=>333,8222=>500,8230=>1000, |
|
19 | -8224=>500,8225=>500,710=>333,8240=>1000,352=>556,8249=>333,338=>1000,381=>667,8216=>250,8217=>250, |
|
20 | -8220=>500,8221=>500,8226=>524,8211=>500,8212=>1000,732=>333,8482=>1000,353=>389,8250=>333,339=>722, |
|
21 | -382=>444,376=>722,160=>250,161=>333,162=>500,163=>500,164=>500,165=>500,166=>220,167=>500, |
|
22 | -168=>333,169=>747,170=>300,171=>500,172=>680,173=>333,174=>747,175=>333,176=>400,177=>676, |
|
23 | -178=>300,179=>300,180=>333,181=>556,182=>540,183=>250,184=>333,185=>270,186=>330,187=>500, |
|
24 | -188=>750,189=>750,190=>750,191=>500,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722, |
|
25 | -198=>1000,199=>722,200=>667,201=>667,202=>667,203=>667,204=>389,205=>389,206=>389,207=>389, |
|
26 | -208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>676,216=>778,217=>722, |
|
27 | -218=>722,219=>722,220=>722,221=>722,222=>632,223=>556,224=>500,225=>500,226=>500,227=>500, |
|
28 | -228=>500,229=>500,230=>722,231=>444,232=>444,233=>444,234=>444,235=>444,236=>278,237=>278, |
|
29 | -238=>278,239=>278,240=>500,241=>556,242=>500,243=>500,244=>500,245=>500,246=>500,247=>676, |
|
30 | -248=>500,249=>556,250=>556,251=>556,252=>556,253=>500,254=>556,255=>500,256=>722,257=>500, |
|
31 | -258=>722,259=>500,260=>722,261=>500,262=>722,263=>444,264=>722,265=>444,266=>722,267=>444, |
|
32 | -268=>722,269=>444,270=>722,271=>616,272=>722,273=>556,274=>667,275=>444,276=>667,277=>444, |
|
33 | -278=>667,279=>444,280=>667,281=>444,282=>667,283=>444,284=>778,285=>500,286=>778,287=>500, |
|
34 | -288=>778,289=>500,290=>778,291=>500,292=>778,293=>556,294=>778,295=>556,296=>389,297=>278, |
|
35 | -298=>389,299=>278,300=>389,301=>278,302=>389,303=>278,304=>389,305=>278,306=>882,307=>486, |
|
36 | -308=>500,309=>338,310=>778,311=>556,312=>534,313=>667,314=>278,315=>667,316=>278,317=>667, |
|
37 | -318=>398,319=>667,320=>528,321=>667,322=>278,323=>722,324=>556,325=>722,326=>556,327=>722, |
|
38 | -328=>556,329=>556,330=>722,331=>556,332=>778,333=>500,334=>778,335=>500,336=>778,337=>500, |
|
39 | -340=>722,341=>444,342=>722,343=>444,344=>722,345=>444,346=>556,347=>389,348=>556,349=>389, |
|
40 | -350=>556,351=>389,354=>667,355=>333,356=>667,357=>449,358=>667,359=>333,360=>722,361=>556, |
|
41 | -362=>722,363=>556,364=>722,365=>556,366=>722,367=>556,368=>722,369=>556,370=>722,371=>556, |
|
42 | -372=>1000,373=>722,374=>722,375=>500,377=>667,378=>444,379=>667,380=>444,383=>333,384=>556, |
|
43 | -385=>805,386=>648,387=>556,388=>667,389=>556,390=>722,391=>915,392=>605,393=>722,394=>862, |
|
44 | -395=>667,396=>556,397=>550,398=>667,399=>778,400=>631,401=>611,403=>903,404=>776,405=>807, |
|
45 | -406=>327,407=>389,408=>887,409=>556,410=>278,411=>495,412=>1000,413=>864,414=>556,415=>778, |
|
46 | -416=>778,417=>550,418=>1192,419=>795,420=>749,421=>556,422=>748,423=>556,424=>389,425=>650, |
|
47 | -426=>465,427=>333,428=>667,429=>333,430=>667,431=>839,432=>629,433=>811,434=>685,435=>853, |
|
48 | -436=>705,437=>667,438=>444,439=>593,440=>654,441=>508,442=>500,443=>500,444=>654,445=>520, |
|
49 | -446=>444,447=>611,448=>220,449=>418,450=>570,451=>333,452=>1391,453=>1168,454=>1000,455=>1164, |
|
50 | -456=>997,457=>611,458=>1222,459=>1055,460=>889,461=>722,462=>500,463=>386,464=>278,465=>778, |
|
51 | -466=>500,467=>722,468=>556,469=>722,470=>556,471=>722,472=>556,473=>722,474=>556,475=>722, |
|
52 | -476=>556,477=>444,478=>722,479=>500,480=>722,481=>500,482=>1000,483=>722,484=>778,485=>500, |
|
53 | -486=>778,487=>500,488=>764,489=>556,490=>778,491=>500,492=>778,493=>500,494=>593,495=>502, |
|
54 | -496=>338,497=>1391,498=>1168,499=>1000,500=>778,501=>500,502=>995,503=>603,504=>722,505=>556, |
|
55 | -506=>722,507=>500,508=>1000,509=>722,510=>778,511=>500,512=>722,513=>500,514=>722,515=>500, |
|
56 | -516=>667,517=>444,518=>667,519=>444,520=>386,521=>278,522=>386,523=>278,524=>778,525=>500, |
|
57 | -526=>778,527=>500,528=>712,529=>444,530=>712,531=>444,532=>722,533=>556,534=>722,535=>556, |
|
58 | -536=>556,537=>389,538=>667,539=>333,540=>464,541=>455,542=>774,543=>556,544=>731,545=>649, |
|
59 | -546=>568,547=>494,548=>667,549=>444,550=>722,551=>500,552=>667,553=>444,554=>778,555=>500, |
|
60 | -556=>778,557=>500,558=>778,559=>500,560=>778,561=>500,562=>722,563=>500,564=>437,565=>636, |
|
61 | -566=>415,567=>338,568=>776,569=>760,570=>722,571=>722,572=>444,573=>664,574=>667,575=>389, |
|
62 | -576=>451,577=>505,578=>479,579=>686,580=>750,581=>722,582=>667,583=>478,584=>500,585=>333, |
|
63 | -586=>808,587=>608,588=>712,589=>444,590=>757,591=>500,592=>500,593=>523,594=>523,595=>556, |
|
64 | -596=>444,598=>556,599=>556,600=>444,601=>444,602=>611,603=>440,604=>440,605=>611,607=>333, |
|
65 | -608=>500,609=>500,610=>556,613=>556,614=>556,615=>556,616=>278,617=>333,618=>278,619=>278, |
|
66 | -621=>278,622=>667,623=>833,624=>833,625=>833,626=>556,627=>556,628=>556,629=>500,631=>715, |
|
67 | -632=>667,633=>444,634=>444,635=>444,636=>444,637=>444,638=>394,639=>394,640=>556,641=>556, |
|
68 | -642=>389,643=>333,644=>333,645=>433,647=>333,648=>333,649=>500,650=>557,651=>529,652=>500, |
|
69 | -653=>722,654=>500,655=>500,656=>444,658=>502,660=>500,661=>500,662=>500,664=>778,665=>510, |
|
70 | -667=>722,668=>556,670=>556,671=>444,672=>556,673=>500,674=>500,686=>611,687=>722,697=>250, |
|
71 | -698=>408,699=>250,700=>250,701=>250,702=>300,703=>300,706=>333,707=>333,708=>333,709=>333, |
|
72 | -711=>333,712=>333,713=>333,714=>333,715=>333,716=>300,717=>333,718=>333,719=>333,720=>278, |
|
73 | -721=>278,722=>300,723=>300,724=>333,725=>333,726=>333,727=>333,728=>333,729=>333,730=>333, |
|
74 | -731=>333,733=>400,734=>333,735=>352,741=>526,742=>526,743=>526,744=>526,745=>526,746=>519, |
|
75 | -747=>519,748=>333,749=>333,750=>480,751=>333,752=>333,753=>333,754=>333,755=>327,756=>261, |
|
76 | -757=>437,758=>437,759=>400,760=>278,761=>175,762=>175,763=>175,764=>175,765=>333,766=>337, |
|
77 | -767=>432,768=>0,769=>0,770=>0,771=>0,772=>0,773=>0,774=>0,775=>0,776=>0, |
|
78 | -777=>0,778=>0,779=>0,780=>0,781=>0,782=>0,783=>0,784=>0,785=>0,786=>0, |
|
79 | -787=>0,788=>0,789=>0,790=>0,791=>0,792=>0,793=>0,794=>0,795=>0,796=>0, |
|
80 | -797=>0,798=>0,799=>0,800=>0,801=>0,802=>0,803=>0,804=>0,805=>0,806=>0, |
|
81 | -807=>0,808=>0,809=>0,810=>0,811=>0,812=>0,813=>0,814=>0,815=>0,816=>0, |
|
82 | -817=>0,818=>0,819=>0,820=>0,821=>0,822=>0,823=>0,824=>0,825=>0,826=>0, |
|
83 | -827=>0,828=>0,829=>0,830=>0,831=>0,832=>0,833=>0,834=>0,835=>0,836=>0, |
|
84 | -837=>0,838=>0,839=>0,840=>0,841=>0,842=>0,843=>0,844=>0,845=>0,846=>0, |
|
85 | -847=>0,848=>0,849=>0,850=>0,851=>0,852=>0,853=>0,854=>0,855=>0,856=>0, |
|
86 | -857=>0,858=>0,860=>0,861=>0,862=>0,863=>0,864=>0,865=>0,884=>199,885=>199, |
|
87 | -890=>0,894=>333,900=>330,901=>415,902=>722,903=>250,904=>811,905=>938,906=>556,908=>840, |
|
88 | -910=>886,911=>879,912=>330,913=>722,914=>667,915=>611,916=>759,917=>667,918=>667,919=>774, |
|
89 | -920=>778,921=>386,922=>777,923=>722,924=>943,925=>722,926=>650,927=>778,928=>812,929=>611, |
|
90 | -931=>650,932=>667,933=>738,934=>868,935=>722,936=>924,937=>811,938=>386,939=>738,940=>605, |
|
91 | -941=>440,942=>605,943=>330,944=>550,945=>605,946=>550,947=>550,948=>550,949=>440,950=>495, |
|
92 | -951=>605,952=>550,953=>330,954=>608,955=>495,956=>605,957=>495,958=>495,959=>550,960=>605, |
|
93 | -961=>550,962=>440,963=>550,964=>440,965=>550,966=>660,967=>495,968=>715,969=>715,970=>330, |
|
94 | -971=>550,972=>550,973=>550,974=>715,976=>550,977=>605,978=>722,979=>871,980=>722,981=>660, |
|
95 | -982=>715,983=>550,984=>611,985=>550,986=>650,987=>514,988=>611,989=>513,990=>715,991=>439, |
|
96 | -992=>722,993=>605,1008=>550,1009=>550,1010=>477,1011=>333,1012=>778,1013=>424,1014=>424,1015=>632, |
|
97 | -1016=>575,1017=>722,1018=>943,1019=>809,1020=>550,1021=>722,1022=>722,1023=>722,1024=>667,1025=>667, |
|
98 | -1026=>848,1027=>611,1028=>722,1029=>556,1030=>386,1031=>386,1032=>500,1033=>1042,1034=>1032,1035=>912, |
|
99 | -1036=>770,1037=>774,1038=>738,1039=>778,1040=>722,1041=>648,1042=>667,1043=>599,1044=>708,1045=>667, |
|
100 | -1046=>1106,1047=>652,1048=>774,1049=>774,1050=>770,1051=>788,1052=>943,1053=>774,1054=>778,1055=>812, |
|
101 | -1056=>611,1057=>722,1058=>667,1059=>738,1060=>868,1061=>722,1062=>774,1063=>754,1064=>1115,1065=>1115, |
|
102 | -1066=>782,1067=>970,1068=>630,1069=>722,1070=>1114,1071=>729,1072=>500,1073=>500,1074=>510,1075=>430, |
|
103 | -1076=>545,1077=>438,1078=>781,1079=>445,1080=>556,1081=>556,1082=>556,1083=>542,1084=>668,1085=>558, |
|
104 | -1086=>500,1087=>558,1088=>549,1089=>444,1090=>494,1091=>486,1092=>809,1093=>500,1094=>560,1095=>556, |
|
105 | -1096=>818,1097=>820,1098=>612,1099=>756,1100=>512,1101=>496,1102=>770,1103=>546,1104=>438,1105=>444, |
|
106 | -1106=>549,1107=>430,1108=>488,1109=>386,1110=>272,1111=>278,1112=>333,1113=>784,1114=>786,1115=>552, |
|
107 | -1116=>556,1117=>556,1118=>484,1119=>556,1120=>1018,1121=>699,1122=>781,1123=>612,1124=>1033,1125=>778, |
|
108 | -1126=>993,1127=>692,1128=>1371,1129=>975,1130=>1106,1131=>781,1132=>1474,1133=>1066,1134=>650,1135=>424, |
|
109 | -1136=>970,1137=>769,1138=>770,1139=>590,1140=>808,1141=>578,1142=>808,1143=>650,1144=>1284,1145=>973, |
|
110 | -1146=>928,1147=>672,1148=>1018,1149=>693,1150=>1018,1151=>699,1152=>650,1153=>444,1154=>258,1155=>0, |
|
111 | -1156=>0,1157=>0,1158=>0,1159=>0,1160=>0,1161=>0,1162=>774,1163=>558,1164=>630,1165=>512, |
|
112 | -1166=>611,1167=>556,1168=>614,1169=>458,1170=>614,1171=>443,1172=>631,1173=>562,1174=>1155,1175=>828, |
|
113 | -1176=>652,1177=>452,1178=>819,1179=>600,1180=>816,1181=>590,1182=>920,1183=>664,1184=>967,1185=>633, |
|
114 | -1186=>774,1187=>562,1188=>984,1189=>698,1190=>1069,1191=>841,1192=>722,1193=>524,1194=>722,1195=>444, |
|
115 | -1196=>667,1197=>494,1198=>722,1199=>606,1200=>722,1201=>606,1202=>722,1203=>560,1204=>1046,1205=>778, |
|
116 | -1206=>754,1207=>560,1208=>810,1209=>590,1210=>754,1211=>556,1212=>945,1213=>606,1214=>945,1215=>606, |
|
117 | -1216=>386,1217=>1106,1218=>781,1219=>770,1220=>534,1221=>788,1222=>550,1223=>774,1224=>556,1225=>774, |
|
118 | -1226=>558,1227=>778,1228=>556,1229=>943,1230=>677,1231=>386,1232=>722,1233=>500,1234=>722,1235=>500, |
|
119 | -1236=>1000,1237=>722,1238=>667,1239=>444,1240=>778,1241=>444,1242=>778,1243=>444,1244=>1106,1245=>781, |
|
120 | -1246=>652,1247=>445,1248=>654,1249=>389,1250=>774,1251=>556,1252=>774,1253=>556,1254=>778,1255=>500, |
|
121 | -1256=>778,1257=>500,1258=>778,1259=>500,1260=>722,1261=>496,1262=>738,1263=>500,1264=>738,1265=>500, |
|
122 | -1266=>738,1267=>500,1268=>754,1269=>556,1270=>599,1271=>443,1272=>970,1273=>756,1296=>652,1297=>452, |
|
123 | -1298=>788,1299=>550,1306=>778,1307=>556,1308=>1000,1309=>722,1310=>770,1311=>558,1425=>0,1426=>0, |
|
124 | -1427=>0,1428=>0,1429=>0,1430=>0,1431=>0,1432=>0,1433=>0,1434=>0,1435=>0,1436=>0, |
|
125 | -1437=>0,1438=>0,1439=>0,1440=>0,1441=>0,1442=>0,1443=>0,1444=>0,1445=>0,1446=>0, |
|
126 | -1447=>0,1448=>0,1449=>0,1450=>0,1451=>0,1452=>0,1453=>0,1454=>0,1455=>0,1456=>0, |
|
127 | -1457=>0,1458=>0,1459=>0,1460=>0,1461=>0,1462=>0,1463=>0,1464=>0,1465=>0,1466=>0, |
|
128 | -1467=>0,1468=>0,1469=>0,1470=>433,1471=>0,1472=>155,1473=>0,1474=>0,1475=>400,1476=>0, |
|
129 | -1477=>0,1478=>347,1479=>0,1488=>593,1489=>498,1490=>339,1491=>523,1492=>561,1493=>266,1494=>291, |
|
130 | -1495=>559,1496=>576,1497=>266,1498=>496,1499=>501,1500=>510,1501=>542,1502=>581,1503=>273,1504=>347, |
|
131 | -1505=>512,1506=>552,1507=>493,1508=>491,1509=>537,1510=>561,1511=>544,1512=>502,1513=>716,1514=>571, |
|
132 | -1520=>532,1521=>532,1522=>532,1523=>396,1524=>432,3585=>590,3586=>578,3587=>661,3588=>592,3589=>592, |
|
133 | -3590=>699,3591=>447,3592=>534,3593=>692,3594=>578,3595=>659,3596=>899,3597=>804,3598=>633,3599=>637, |
|
134 | -3600=>484,3601=>730,3602=>876,3603=>915,3604=>592,3605=>592,3606=>578,3607=>670,3608=>542,3609=>671, |
|
135 | -3610=>621,3611=>618,3612=>621,3613=>617,3614=>708,3615=>708,3616=>637,3617=>589,3618=>552,3619=>484, |
|
136 | -3620=>590,3621=>569,3622=>637,3623=>526,3624=>599,3625=>802,3626=>579,3627=>668,3628=>778,3629=>560, |
|
137 | -3630=>514,3631=>510,3632=>412,3633=>0,3634=>423,3635=>452,3636=>0,3637=>0,3638=>0,3639=>0, |
|
138 | -3640=>0,3641=>0,3642=>0,3647=>665,3648=>357,3649=>624,3650=>529,3651=>486,3652=>475,3653=>423, |
|
139 | -3654=>500,3655=>0,3656=>0,3657=>0,3658=>0,3659=>0,3660=>0,3661=>0,3662=>0,3663=>657, |
|
140 | -3664=>548,3665=>548,3666=>592,3667=>614,3668=>631,3669=>643,3670=>508,3671=>744,3672=>622,3673=>585, |
|
141 | -3674=>721,3675=>1381,4256=>475,4257=>469,4258=>573,4259=>650,4260=>502,4261=>506,4262=>481,4263=>746, |
|
142 | -4264=>491,4265=>495,4266=>888,4267=>488,4268=>464,4269=>745,4270=>483,4271=>489,4272=>721,4273=>464, |
|
143 | -4274=>578,4275=>590,4276=>611,4277=>491,4278=>663,4279=>489,4280=>544,4281=>479,4282=>527,4283=>488, |
|
144 | -4284=>560,4285=>461,4286=>467,4287=>546,4288=>483,4289=>487,4290=>562,4291=>477,4292=>491,4293=>471, |
|
145 | -4304=>522,4305=>518,4306=>621,4307=>716,4308=>517,4309=>519,4310=>518,4311=>796,4312=>518,4313=>518, |
|
146 | -4314=>934,4315=>517,4316=>519,4317=>787,4318=>515,4319=>514,4320=>788,4321=>573,4322=>620,4323=>593, |
|
147 | -4324=>639,4325=>516,4326=>714,4327=>518,4328=>572,4329=>518,4330=>555,4331=>518,4332=>562,4333=>509, |
|
148 | -4334=>572,4335=>677,4336=>523,4337=>517,4338=>595,4339=>480,4340=>519,4341=>484,4345=>621,4347=>450, |
|
149 | -5024=>718,5025=>768,5026=>633,5027=>878,5028=>1001,5029=>371,5030=>576,5031=>754,5032=>531,5033=>774, |
|
150 | -5034=>692,5035=>499,5036=>668,5037=>829,5038=>575,5039=>681,5040=>485,5041=>607,5042=>885,5043=>974, |
|
151 | -5044=>588,5045=>583,5046=>726,5047=>947,5048=>558,5049=>832,5050=>1096,5051=>780,5052=>595,5053=>869, |
|
152 | -5054=>752,5055=>710,5056=>761,5057=>802,5058=>760,5059=>656,5060=>655,5061=>982,5062=>684,5063=>801, |
|
153 | -5064=>805,5065=>1042,5066=>755,5067=>612,5068=>707,5069=>889,5070=>584,5071=>623,5072=>536,5073=>763, |
|
154 | -5074=>763,5075=>498,5076=>1052,5077=>600,5078=>730,5079=>714,5080=>714,5081=>697,5082=>543,5083=>943, |
|
155 | -5084=>718,5085=>630,5086=>660,5087=>692,5088=>841,5089=>861,5090=>617,5091=>733,5092=>898,5093=>896, |
|
156 | -5094=>781,5095=>612,5096=>830,5097=>948,5098=>886,5099=>757,5100=>796,5101=>578,5102=>601,5103=>797, |
|
157 | -5104=>623,5105=>886,5106=>730,5107=>827,5108=>648,7680=>722,7681=>500,7682=>667,7683=>556,7684=>667, |
|
158 | -7685=>556,7686=>667,7687=>556,7688=>722,7689=>444,7690=>724,7691=>556,7692=>724,7693=>556,7694=>724, |
|
159 | -7695=>556,7696=>724,7697=>556,7698=>724,7699=>556,7700=>667,7701=>444,7702=>667,7703=>444,7704=>667, |
|
160 | -7705=>444,7706=>667,7707=>444,7708=>667,7709=>444,7710=>611,7711=>333,7712=>778,7713=>500,7714=>774, |
|
161 | -7715=>556,7716=>774,7717=>556,7718=>774,7719=>556,7720=>774,7721=>556,7722=>774,7723=>556,7724=>386, |
|
162 | -7725=>278,7726=>389,7727=>278,7728=>764,7729=>556,7730=>764,7731=>556,7732=>764,7733=>556,7734=>664, |
|
163 | -7735=>278,7736=>664,7737=>278,7738=>664,7739=>278,7740=>664,7741=>278,7742=>943,7743=>833,7744=>943, |
|
164 | -7745=>833,7746=>943,7747=>833,7748=>722,7749=>556,7750=>722,7751=>556,7752=>722,7753=>556,7754=>722, |
|
165 | -7755=>556,7756=>778,7757=>500,7758=>778,7759=>500,7760=>778,7761=>500,7762=>778,7763=>500,7764=>611, |
|
166 | -7765=>556,7766=>611,7767=>556,7768=>712,7769=>444,7770=>712,7771=>444,7772=>712,7773=>444,7774=>712, |
|
167 | -7775=>444,7776=>556,7777=>389,7778=>556,7779=>389,7780=>556,7781=>389,7782=>556,7783=>389,7784=>556, |
|
168 | -7785=>389,7786=>667,7787=>333,7788=>667,7789=>333,7790=>667,7791=>333,7792=>667,7793=>333,7794=>722, |
|
169 | -7795=>556,7796=>722,7797=>556,7798=>722,7799=>556,7800=>722,7801=>556,7802=>722,7803=>556,7804=>722, |
|
170 | -7805=>500,7806=>722,7807=>500,7808=>1000,7809=>722,7810=>1000,7811=>722,7812=>1000,7813=>722,7814=>1000, |
|
171 | -7815=>722,7816=>1000,7817=>722,7818=>722,7819=>500,7820=>722,7821=>500,7822=>722,7823=>500,7824=>667, |
|
172 | -7825=>444,7826=>667,7827=>444,7828=>667,7829=>444,7830=>556,7831=>333,7832=>722,7833=>500,7834=>507, |
|
173 | -7835=>333,7840=>722,7841=>500,7842=>722,7843=>500,7844=>722,7845=>500,7846=>722,7847=>500,7848=>722, |
|
174 | -7849=>500,7850=>722,7851=>500,7852=>722,7853=>500,7854=>722,7855=>500,7856=>722,7857=>500,7858=>825, |
|
175 | -7859=>603,7860=>722,7861=>500,7862=>722,7863=>500,7864=>667,7865=>444,7866=>667,7867=>444,7868=>667, |
|
176 | -7869=>444,7870=>667,7871=>444,7872=>667,7873=>444,7874=>667,7875=>444,7876=>667,7877=>444,7878=>667, |
|
177 | -7879=>444,7880=>386,7881=>278,7882=>386,7883=>278,7884=>778,7885=>500,7886=>778,7887=>500,7888=>778, |
|
178 | -7889=>500,7890=>778,7891=>500,7892=>778,7893=>500,7894=>778,7895=>500,7896=>778,7897=>500,7898=>774, |
|
179 | -7899=>550,7900=>774,7901=>550,7902=>774,7903=>549,7904=>778,7905=>550,7906=>778,7907=>550,7908=>722, |
|
180 | -7909=>556,7910=>722,7911=>556,7912=>838,7913=>672,7914=>838,7915=>672,7916=>825,7917=>659,7918=>839, |
|
181 | -7919=>629,7920=>839,7921=>629,7922=>722,7923=>500,7924=>722,7925=>500,7926=>722,7927=>500,7928=>722, |
|
182 | -7929=>500,7936=>605,7937=>605,7938=>605,7939=>605,7940=>605,7941=>605,7942=>605,7943=>605,7944=>722, |
|
183 | -7945=>722,7946=>830,7947=>833,7948=>761,7949=>798,7950=>721,7951=>722,7952=>440,7953=>440,7954=>440, |
|
184 | -7955=>440,7956=>440,7957=>440,7960=>817,7961=>826,7962=>944,7963=>970,7964=>964,7965=>1009,7968=>605, |
|
185 | -7969=>605,7970=>605,7971=>605,7972=>605,7973=>605,7974=>605,7975=>605,7976=>926,7977=>921,7978=>1038, |
|
186 | -7979=>1064,7980=>1092,7981=>1102,7982=>1005,7983=>991,7984=>330,7985=>330,7986=>330,7987=>330,7988=>330, |
|
187 | -7989=>330,7990=>330,7991=>330,7992=>534,7993=>541,7994=>653,7995=>659,7996=>705,7997=>714,7998=>612, |
|
188 | -7999=>614,8000=>550,8001=>550,8002=>550,8003=>550,8004=>550,8005=>550,8008=>885,8009=>886,8010=>1038, |
|
189 | -8011=>1052,8012=>997,8013=>1021,8016=>550,8017=>550,8018=>550,8019=>550,8020=>550,8021=>550,8022=>550, |
|
190 | -8023=>550,8025=>870,8027=>1014,8029=>1043,8031=>944,8032=>715,8033=>715,8034=>715,8035=>715,8036=>715, |
|
191 | -8037=>715,8038=>715,8039=>715,8040=>905,8041=>913,8042=>1066,8043=>1085,8044=>1034,8045=>1044,8046=>980, |
|
192 | -8047=>961,8048=>605,8049=>605,8050=>440,8051=>440,8052=>605,8053=>605,8054=>330,8055=>330,8056=>550, |
|
193 | -8057=>550,8058=>550,8059=>550,8060=>715,8061=>715,8064=>605,8065=>605,8066=>605,8067=>605,8068=>605, |
|
194 | -8069=>605,8070=>605,8071=>605,8072=>886,8073=>887,8074=>985,8075=>993,8076=>937,8077=>956,8078=>874, |
|
195 | -8079=>878,8080=>605,8081=>605,8082=>605,8083=>605,8084=>605,8085=>605,8086=>605,8087=>605,8088=>1096, |
|
196 | -8089=>1092,8090=>1223,8091=>1250,8092=>1270,8093=>1283,8094=>1174,8095=>1162,8096=>715,8097=>715,8098=>715, |
|
197 | -8099=>715,8100=>715,8101=>715,8102=>715,8103=>715,8104=>1057,8105=>1073,8106=>1228,8107=>1251,8108=>1202, |
|
198 | -8109=>1210,8110=>1151,8111=>1131,8112=>605,8113=>605,8114=>605,8115=>605,8116=>605,8118=>605,8119=>605, |
|
199 | -8120=>722,8121=>722,8122=>722,8123=>722,8124=>883,8125=>500,8126=>0,8127=>500,8128=>500,8129=>550, |
|
200 | -8130=>605,8131=>605,8132=>605,8134=>605,8135=>605,8136=>790,8137=>830,8138=>909,8139=>931,8140=>950, |
|
201 | -8141=>500,8142=>500,8143=>500,8144=>330,8145=>330,8146=>330,8147=>330,8150=>330,8151=>330,8152=>386, |
|
202 | -8153=>386,8154=>506,8155=>550,8157=>500,8158=>500,8159=>500,8160=>550,8161=>550,8162=>550,8163=>550, |
|
203 | -8164=>550,8165=>550,8166=>550,8167=>550,8168=>738,8169=>738,8170=>858,8171=>880,8172=>764,8173=>550, |
|
204 | -8174=>550,8175=>500,8178=>715,8179=>715,8180=>715,8182=>715,8183=>715,8184=>884,8185=>857,8186=>927, |
|
205 | -8187=>892,8188=>988,8189=>500,8190=>500,8192=>500,8193=>1000,8194=>500,8195=>1000,8196=>333,8197=>250, |
|
206 | -8198=>167,8199=>500,8200=>250,8201=>200,8202=>100,8203=>0,8204=>0,8205=>0,8206=>0,8207=>0, |
|
207 | -8208=>333,8209=>333,8210=>500,8213=>1000,8214=>333,8215=>478,8219=>250,8223=>500,8227=>560,8228=>250, |
|
208 | -8229=>500,8231=>250,8232=>0,8233=>0,8234=>0,8235=>0,8236=>0,8237=>0,8238=>0,8239=>250, |
|
209 | -8241=>1588,8242=>270,8243=>492,8244=>714,8245=>270,8246=>484,8247=>693,8248=>469,8251=>727,8252=>666, |
|
210 | -8253=>695,8254=>500,8255=>953,8256=>953,8257=>338,8258=>931,8259=>333,8260=>167,8261=>332,8262=>332, |
|
211 | -8263=>1000,8264=>833,8265=>833,8266=>500,8267=>540,8268=>528,8269=>523,8270=>500,8271=>333,8272=>953, |
|
212 | -8273=>500,8274=>497,8275=>576,8276=>953,8277=>785,8278=>450,8279=>881,8280=>620,8281=>620,8282=>179, |
|
213 | -8283=>621,8284=>569,8285=>179,8286=>179,8287=>111,8288=>0,8289=>0,8290=>0,8291=>0,8292=>0, |
|
214 | -8304=>300,8305=>278,8308=>300,8309=>300,8310=>300,8311=>300,8312=>300,8313=>300,8314=>300,8315=>300, |
|
215 | -8316=>300,8317=>216,8318=>216,8319=>318,8320=>300,8321=>274,8322=>300,8323=>300,8324=>300,8325=>300, |
|
216 | -8326=>300,8327=>300,8328=>300,8329=>300,8330=>300,8331=>300,8332=>300,8333=>216,8334=>216,8352=>710, |
|
217 | -8353=>722,8354=>783,8355=>611,8356=>500,8357=>833,8358=>722,8359=>960,8360=>1101,8361=>1000,8362=>889, |
|
218 | -8363=>532,8365=>742,8366=>631,8369=>609,8370=>639,8371=>660,8372=>556,8373=>500,8448=>752,8449=>746, |
|
219 | -8451=>1009,8457=>923,8458=>500,8459=>1035,8462=>556,8463=>556,8464=>792,8465=>737,8466=>800,8467=>427, |
|
220 | -8468=>835,8470=>879,8471=>1048,8472=>666,8475=>747,8476=>955,8478=>722,8479=>722,8480=>891,8481=>1156, |
|
221 | -8483=>722,8486=>811,8487=>811,8489=>333,8490=>764,8491=>722,8492=>806,8494=>551,8497=>723,8498=>611, |
|
222 | -8499=>1203,8501=>593,8502=>498,8503=>339,8504=>523,8506=>906,8507=>1156,8523=>778,8525=>866,8526=>500, |
|
223 | -8531=>750,8532=>750,8533=>750,8534=>750,8535=>750,8536=>750,8537=>750,8538=>750,8539=>750,8540=>750, |
|
224 | -8541=>750,8542=>750,8543=>750,8544=>386,8545=>772,8546=>1158,8547=>1108,8548=>722,8549=>1108,8550=>1494, |
|
225 | -8551=>1880,8552=>1108,8553=>722,8554=>1108,8555=>1494,8556=>664,8557=>722,8558=>724,8559=>943,8560=>278, |
|
226 | -8561=>556,8562=>834,8563=>778,8564=>500,8565=>778,8566=>1056,8567=>1334,8568=>778,8569=>500,8570=>778, |
|
227 | -8571=>1056,8572=>278,8573=>444,8574=>556,8575=>833,8592=>964,8593=>523,8594=>964,8595=>523,8596=>964, |
|
228 | -8597=>964,8598=>964,8599=>964,8600=>964,8601=>964,8602=>964,8603=>964,8604=>1152,8605=>1152,8606=>964, |
|
229 | -8607=>964,8608=>964,8609=>964,8610=>1078,8611=>1078,8612=>964,8613=>964,8614=>964,8615=>964,8616=>964, |
|
230 | -8617=>964,8618=>964,8619=>964,8620=>964,8621=>1168,8622=>964,8624=>622,8625=>622,8630=>1069,8631=>1069, |
|
231 | -8632=>964,8633=>964,8634=>980,8635=>980,8636=>964,8637=>964,8638=>557,8639=>556,8640=>964,8641=>964, |
|
232 | -8642=>557,8643=>556,8644=>964,8645=>964,8646=>964,8647=>964,8648=>964,8649=>964,8650=>964,8651=>964, |
|
233 | -8652=>964,8653=>964,8654=>964,8655=>964,8656=>964,8657=>630,8658=>964,8659=>630,8660=>964,8661=>630, |
|
234 | -8662=>1063,8663=>1063,8664=>1063,8665=>1063,8666=>964,8667=>964,8668=>1100,8669=>1100,8672=>964,8674=>964, |
|
235 | -8676=>964,8677=>964,8704=>627,8705=>716,8706=>558,8707=>627,8708=>627,8709=>500,8710=>612,8711=>719, |
|
236 | -8713=>576,8714=>576,8716=>576,8717=>576,8720=>733,8721=>713,8722=>676,8723=>676,8724=>676,8725=>750, |
|
237 | -8727=>570,8729=>570,8730=>549,8733=>676,8734=>752,8736=>555,8737=>555,8738=>555,8739=>240,8740=>531, |
|
238 | -8741=>478,8742=>705,8743=>694,8744=>694,8745=>694,8746=>694,8747=>323,8756=>629,8757=>629,8761=>947, |
|
239 | -8764=>676,8765=>676,8766=>763,8768=>305,8769=>676,8770=>676,8771=>676,8773=>676,8776=>676,8777=>676, |
|
240 | -8778=>676,8781=>676,8782=>676,8783=>676,8784=>676,8785=>676,8786=>676,8787=>676,8788=>947,8789=>947, |
|
241 | -8790=>676,8791=>676,8796=>676,8800=>570,8801=>676,8802=>676,8804=>570,8805=>570,8806=>676,8807=>676, |
|
242 | -8808=>676,8809=>676,8810=>1047,8811=>1047,8812=>450,8813=>676,8814=>676,8815=>676,8816=>676,8817=>676, |
|
243 | -8818=>676,8819=>676,8820=>676,8821=>676,8822=>676,8823=>676,8824=>676,8825=>676,8826=>676,8827=>676, |
|
244 | -8828=>676,8829=>676,8830=>676,8831=>676,8832=>676,8833=>676,8834=>676,8835=>676,8836=>676,8837=>676, |
|
245 | -8838=>676,8839=>676,8840=>676,8841=>676,8842=>676,8843=>676,8846=>694,8847=>676,8848=>676,8849=>676, |
|
246 | -8850=>676,8851=>694,8852=>694,8853=>738,8854=>738,8855=>738,8856=>738,8857=>738,8858=>738,8859=>738, |
|
247 | -8861=>738,8862=>678,8863=>678,8864=>678,8865=>678,8866=>487,8867=>487,8868=>752,8869=>752,8871=>487, |
|
248 | -8873=>659,8874=>831,8876=>487,8877=>487,8878=>659,8879=>659,8882=>676,8883=>676,8884=>676,8885=>676, |
|
249 | -8886=>1380,8887=>1380,8888=>1027,8890=>626,8891=>694,8892=>694,8893=>694,8900=>512,8903=>676,8904=>759, |
|
250 | -8905=>632,8906=>632,8907=>1000,8908=>1000,8909=>676,8910=>694,8911=>694,8912=>676,8913=>676,8914=>694, |
|
251 | -8915=>694,8916=>694,8918=>676,8919=>676,8920=>1441,8921=>1441,8922=>676,8923=>676,8924=>676,8925=>676, |
|
252 | -8926=>676,8927=>676,8928=>676,8929=>676,8930=>676,8931=>676,8934=>676,8935=>676,8936=>676,8937=>676, |
|
253 | -8938=>676,8939=>676,8940=>676,8941=>676,8960=>737,8968=>411,8969=>411,8970=>411,8971=>411,8976=>680, |
|
254 | -8994=>951,8995=>951,9001=>398,9002=>398,9251=>500,9472=>1000,9473=>1000,9474=>1000,9475=>1000,9476=>1000, |
|
255 | -9477=>1000,9478=>1000,9479=>1000,9480=>1000,9481=>1000,9482=>1000,9483=>1000,9484=>1000,9485=>1000,9486=>1000, |
|
256 | -9487=>1000,9488=>1000,9489=>1000,9490=>1000,9491=>1000,9492=>1000,9493=>1000,9494=>1000,9495=>1000,9496=>1000, |
|
257 | -9497=>1000,9498=>1000,9499=>1000,9500=>1000,9501=>1000,9502=>1000,9503=>1000,9504=>1000,9505=>1000,9506=>1000, |
|
258 | -9507=>1000,9508=>1000,9509=>1000,9510=>1000,9511=>1000,9512=>1000,9513=>1000,9514=>1000,9515=>1000,9516=>1000, |
|
259 | -9517=>1000,9518=>1000,9519=>1000,9520=>1000,9521=>1000,9522=>1000,9523=>1000,9524=>1000,9525=>1000,9526=>1000, |
|
260 | -9527=>1000,9528=>1000,9529=>1000,9530=>1000,9531=>1000,9532=>1000,9533=>1000,9534=>1000,9535=>1000,9536=>1000, |
|
261 | -9537=>1000,9538=>1000,9539=>1000,9540=>1000,9541=>1000,9542=>1000,9543=>1000,9544=>1000,9545=>1000,9546=>1000, |
|
262 | -9547=>1000,9552=>1000,9553=>1000,9554=>1000,9555=>1000,9556=>1000,9557=>1000,9558=>1000,9559=>1000,9560=>1000, |
|
263 | -9561=>1000,9562=>1000,9563=>1000,9564=>1000,9565=>1000,9566=>1000,9567=>1000,9568=>1000,9569=>1000,9570=>1000, |
|
264 | -9571=>1000,9572=>1000,9573=>1000,9574=>1000,9575=>1000,9576=>1000,9577=>1000,9578=>1000,9579=>1000,9580=>1000, |
|
265 | -9600=>1000,9601=>1000,9602=>1000,9603=>1000,9604=>1000,9605=>1000,9606=>1000,9607=>1000,9608=>1000,9609=>1000, |
|
266 | -9610=>1000,9611=>1000,9612=>1000,9613=>1000,9614=>1000,9615=>1000,9616=>1000,9617=>1000,9618=>1000,9620=>1000, |
|
267 | -9621=>1000,9622=>1000,9623=>1000,9624=>1000,9625=>1000,9626=>1000,9627=>1000,9628=>1000,9629=>1000,9630=>1000, |
|
268 | -9631=>1000,9632=>678,9633=>678,9642=>309,9650=>681,9651=>681,9654=>681,9655=>681,9660=>681,9661=>681, |
|
269 | -9664=>681,9665=>681,9670=>580,9671=>580,9674=>494,9675=>738,9676=>732,9679=>738,9702=>524,9711=>851, |
|
270 | -9733=>1003,9734=>1003,9824=>618,9825=>645,9826=>587,9827=>582,9828=>582,9829=>645,9830=>587,9831=>618, |
|
271 | -9833=>333,9834=>556,9835=>778,9836=>778,9837=>556,9838=>556,9839=>556,10214=>561,10215=>561,11799=>333, |
|
272 | -64256=>613,64257=>559,64258=>559,64259=>846,64260=>836,64262=>723,64285=>266,64286=>0,64287=>532,64288=>552, |
|
273 | -64297=>570,64298=>716,64299=>716,64300=>716,64301=>716,64302=>593,64303=>593,64304=>593,64305=>498,64306=>339, |
|
274 | -64307=>523,64308=>561,64309=>266,64310=>291,64312=>576,64313=>266,64314=>496,64315=>501,64316=>510,64318=>581, |
|
275 | -64320=>347,64321=>512,64323=>493,64324=>491,64326=>561,64327=>544,64328=>502,64329=>716,64330=>571,64331=>266, |
|
276 | -64332=>498,64333=>501,64334=>491,64335=>593,65533=>788); |
|
277 | -$enc=''; |
|
278 | -$diff=''; |
|
279 | -$file='freeserifb.z'; |
|
280 | -$ctg='freeserifb.ctg.z'; |
|
281 | -$originalsize=467208; |
|
2 | +$type = 'TrueTypeUnicode'; |
|
3 | +$name = 'FreeSerifBold'; |
|
4 | +$desc = array('Ascent'=>900, 'Descent'=>-300, 'CapHeight'=>16, 'Flags'=>32, 'FontBBox'=>'[-796 -306 1860 932]', 'ItalicAngle'=>0, 'StemV'=>120, 'MissingWidth'=>600); |
|
5 | +$up = -125; |
|
6 | +$ut = 50; |
|
7 | +$dw = 600; |
|
8 | +$cw = array( |
|
9 | +32=>250, 33=>333, 34=>555, 35=>500, 36=>500, 37=>1000, 38=>833, 39=>278, 40=>333, 41=>333, |
|
10 | +42=>507, 43=>676, 44=>250, 45=>333, 46=>250, 47=>278, 48=>500, 49=>500, 50=>500, 51=>500, |
|
11 | +52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>333, 59=>333, 60=>676, 61=>676, |
|
12 | +62=>676, 63=>500, 64=>930, 65=>722, 66=>667, 67=>722, 68=>724, 69=>667, 70=>611, 71=>778, |
|
13 | +72=>774, 73=>386, 74=>500, 75=>764, 76=>664, 77=>943, 78=>722, 79=>778, 80=>611, 81=>778, |
|
14 | +82=>712, 83=>556, 84=>667, 85=>722, 86=>722, 87=>1000, 88=>722, 89=>722, 90=>667, 91=>333, |
|
15 | +92=>278, 93=>333, 94=>581, 95=>500, 96=>333, 97=>500, 98=>556, 99=>444, 100=>556, 101=>444, |
|
16 | +102=>333, 103=>500, 104=>556, 105=>278, 106=>333, 107=>556, 108=>278, 109=>833, 110=>556, 111=>500, |
|
17 | +112=>556, 113=>556, 114=>444, 115=>389, 116=>333, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, |
|
18 | +122=>444, 123=>394, 124=>220, 125=>394, 126=>520, 8364=>761, 8218=>250, 402=>333, 8222=>500, 8230=>1000, |
|
19 | +8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>556, 8249=>333, 338=>1000, 381=>667, 8216=>250, 8217=>250, |
|
20 | +8220=>500, 8221=>500, 8226=>524, 8211=>500, 8212=>1000, 732=>333, 8482=>1000, 353=>389, 8250=>333, 339=>722, |
|
21 | +382=>444, 376=>722, 160=>250, 161=>333, 162=>500, 163=>500, 164=>500, 165=>500, 166=>220, 167=>500, |
|
22 | +168=>333, 169=>747, 170=>300, 171=>500, 172=>680, 173=>333, 174=>747, 175=>333, 176=>400, 177=>676, |
|
23 | +178=>300, 179=>300, 180=>333, 181=>556, 182=>540, 183=>250, 184=>333, 185=>270, 186=>330, 187=>500, |
|
24 | +188=>750, 189=>750, 190=>750, 191=>500, 192=>722, 193=>722, 194=>722, 195=>722, 196=>722, 197=>722, |
|
25 | +198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>389, 205=>389, 206=>389, 207=>389, |
|
26 | +208=>722, 209=>722, 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>676, 216=>778, 217=>722, |
|
27 | +218=>722, 219=>722, 220=>722, 221=>722, 222=>632, 223=>556, 224=>500, 225=>500, 226=>500, 227=>500, |
|
28 | +228=>500, 229=>500, 230=>722, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, |
|
29 | +238=>278, 239=>278, 240=>500, 241=>556, 242=>500, 243=>500, 244=>500, 245=>500, 246=>500, 247=>676, |
|
30 | +248=>500, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>556, 255=>500, 256=>722, 257=>500, |
|
31 | +258=>722, 259=>500, 260=>722, 261=>500, 262=>722, 263=>444, 264=>722, 265=>444, 266=>722, 267=>444, |
|
32 | +268=>722, 269=>444, 270=>722, 271=>616, 272=>722, 273=>556, 274=>667, 275=>444, 276=>667, 277=>444, |
|
33 | +278=>667, 279=>444, 280=>667, 281=>444, 282=>667, 283=>444, 284=>778, 285=>500, 286=>778, 287=>500, |
|
34 | +288=>778, 289=>500, 290=>778, 291=>500, 292=>778, 293=>556, 294=>778, 295=>556, 296=>389, 297=>278, |
|
35 | +298=>389, 299=>278, 300=>389, 301=>278, 302=>389, 303=>278, 304=>389, 305=>278, 306=>882, 307=>486, |
|
36 | +308=>500, 309=>338, 310=>778, 311=>556, 312=>534, 313=>667, 314=>278, 315=>667, 316=>278, 317=>667, |
|
37 | +318=>398, 319=>667, 320=>528, 321=>667, 322=>278, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, |
|
38 | +328=>556, 329=>556, 330=>722, 331=>556, 332=>778, 333=>500, 334=>778, 335=>500, 336=>778, 337=>500, |
|
39 | +340=>722, 341=>444, 342=>722, 343=>444, 344=>722, 345=>444, 346=>556, 347=>389, 348=>556, 349=>389, |
|
40 | +350=>556, 351=>389, 354=>667, 355=>333, 356=>667, 357=>449, 358=>667, 359=>333, 360=>722, 361=>556, |
|
41 | +362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, |
|
42 | +372=>1000, 373=>722, 374=>722, 375=>500, 377=>667, 378=>444, 379=>667, 380=>444, 383=>333, 384=>556, |
|
43 | +385=>805, 386=>648, 387=>556, 388=>667, 389=>556, 390=>722, 391=>915, 392=>605, 393=>722, 394=>862, |
|
44 | +395=>667, 396=>556, 397=>550, 398=>667, 399=>778, 400=>631, 401=>611, 403=>903, 404=>776, 405=>807, |
|
45 | +406=>327, 407=>389, 408=>887, 409=>556, 410=>278, 411=>495, 412=>1000, 413=>864, 414=>556, 415=>778, |
|
46 | +416=>778, 417=>550, 418=>1192, 419=>795, 420=>749, 421=>556, 422=>748, 423=>556, 424=>389, 425=>650, |
|
47 | +426=>465, 427=>333, 428=>667, 429=>333, 430=>667, 431=>839, 432=>629, 433=>811, 434=>685, 435=>853, |
|
48 | +436=>705, 437=>667, 438=>444, 439=>593, 440=>654, 441=>508, 442=>500, 443=>500, 444=>654, 445=>520, |
|
49 | +446=>444, 447=>611, 448=>220, 449=>418, 450=>570, 451=>333, 452=>1391, 453=>1168, 454=>1000, 455=>1164, |
|
50 | +456=>997, 457=>611, 458=>1222, 459=>1055, 460=>889, 461=>722, 462=>500, 463=>386, 464=>278, 465=>778, |
|
51 | +466=>500, 467=>722, 468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, |
|
52 | +476=>556, 477=>444, 478=>722, 479=>500, 480=>722, 481=>500, 482=>1000, 483=>722, 484=>778, 485=>500, |
|
53 | +486=>778, 487=>500, 488=>764, 489=>556, 490=>778, 491=>500, 492=>778, 493=>500, 494=>593, 495=>502, |
|
54 | +496=>338, 497=>1391, 498=>1168, 499=>1000, 500=>778, 501=>500, 502=>995, 503=>603, 504=>722, 505=>556, |
|
55 | +506=>722, 507=>500, 508=>1000, 509=>722, 510=>778, 511=>500, 512=>722, 513=>500, 514=>722, 515=>500, |
|
56 | +516=>667, 517=>444, 518=>667, 519=>444, 520=>386, 521=>278, 522=>386, 523=>278, 524=>778, 525=>500, |
|
57 | +526=>778, 527=>500, 528=>712, 529=>444, 530=>712, 531=>444, 532=>722, 533=>556, 534=>722, 535=>556, |
|
58 | +536=>556, 537=>389, 538=>667, 539=>333, 540=>464, 541=>455, 542=>774, 543=>556, 544=>731, 545=>649, |
|
59 | +546=>568, 547=>494, 548=>667, 549=>444, 550=>722, 551=>500, 552=>667, 553=>444, 554=>778, 555=>500, |
|
60 | +556=>778, 557=>500, 558=>778, 559=>500, 560=>778, 561=>500, 562=>722, 563=>500, 564=>437, 565=>636, |
|
61 | +566=>415, 567=>338, 568=>776, 569=>760, 570=>722, 571=>722, 572=>444, 573=>664, 574=>667, 575=>389, |
|
62 | +576=>451, 577=>505, 578=>479, 579=>686, 580=>750, 581=>722, 582=>667, 583=>478, 584=>500, 585=>333, |
|
63 | +586=>808, 587=>608, 588=>712, 589=>444, 590=>757, 591=>500, 592=>500, 593=>523, 594=>523, 595=>556, |
|
64 | +596=>444, 598=>556, 599=>556, 600=>444, 601=>444, 602=>611, 603=>440, 604=>440, 605=>611, 607=>333, |
|
65 | +608=>500, 609=>500, 610=>556, 613=>556, 614=>556, 615=>556, 616=>278, 617=>333, 618=>278, 619=>278, |
|
66 | +621=>278, 622=>667, 623=>833, 624=>833, 625=>833, 626=>556, 627=>556, 628=>556, 629=>500, 631=>715, |
|
67 | +632=>667, 633=>444, 634=>444, 635=>444, 636=>444, 637=>444, 638=>394, 639=>394, 640=>556, 641=>556, |
|
68 | +642=>389, 643=>333, 644=>333, 645=>433, 647=>333, 648=>333, 649=>500, 650=>557, 651=>529, 652=>500, |
|
69 | +653=>722, 654=>500, 655=>500, 656=>444, 658=>502, 660=>500, 661=>500, 662=>500, 664=>778, 665=>510, |
|
70 | +667=>722, 668=>556, 670=>556, 671=>444, 672=>556, 673=>500, 674=>500, 686=>611, 687=>722, 697=>250, |
|
71 | +698=>408, 699=>250, 700=>250, 701=>250, 702=>300, 703=>300, 706=>333, 707=>333, 708=>333, 709=>333, |
|
72 | +711=>333, 712=>333, 713=>333, 714=>333, 715=>333, 716=>300, 717=>333, 718=>333, 719=>333, 720=>278, |
|
73 | +721=>278, 722=>300, 723=>300, 724=>333, 725=>333, 726=>333, 727=>333, 728=>333, 729=>333, 730=>333, |
|
74 | +731=>333, 733=>400, 734=>333, 735=>352, 741=>526, 742=>526, 743=>526, 744=>526, 745=>526, 746=>519, |
|
75 | +747=>519, 748=>333, 749=>333, 750=>480, 751=>333, 752=>333, 753=>333, 754=>333, 755=>327, 756=>261, |
|
76 | +757=>437, 758=>437, 759=>400, 760=>278, 761=>175, 762=>175, 763=>175, 764=>175, 765=>333, 766=>337, |
|
77 | +767=>432, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, |
|
78 | +777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, |
|
79 | +787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, |
|
80 | +797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, |
|
81 | +807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, |
|
82 | +817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, |
|
83 | +827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, |
|
84 | +837=>0, 838=>0, 839=>0, 840=>0, 841=>0, 842=>0, 843=>0, 844=>0, 845=>0, 846=>0, |
|
85 | +847=>0, 848=>0, 849=>0, 850=>0, 851=>0, 852=>0, 853=>0, 854=>0, 855=>0, 856=>0, |
|
86 | +857=>0, 858=>0, 860=>0, 861=>0, 862=>0, 863=>0, 864=>0, 865=>0, 884=>199, 885=>199, |
|
87 | +890=>0, 894=>333, 900=>330, 901=>415, 902=>722, 903=>250, 904=>811, 905=>938, 906=>556, 908=>840, |
|
88 | +910=>886, 911=>879, 912=>330, 913=>722, 914=>667, 915=>611, 916=>759, 917=>667, 918=>667, 919=>774, |
|
89 | +920=>778, 921=>386, 922=>777, 923=>722, 924=>943, 925=>722, 926=>650, 927=>778, 928=>812, 929=>611, |
|
90 | +931=>650, 932=>667, 933=>738, 934=>868, 935=>722, 936=>924, 937=>811, 938=>386, 939=>738, 940=>605, |
|
91 | +941=>440, 942=>605, 943=>330, 944=>550, 945=>605, 946=>550, 947=>550, 948=>550, 949=>440, 950=>495, |
|
92 | +951=>605, 952=>550, 953=>330, 954=>608, 955=>495, 956=>605, 957=>495, 958=>495, 959=>550, 960=>605, |
|
93 | +961=>550, 962=>440, 963=>550, 964=>440, 965=>550, 966=>660, 967=>495, 968=>715, 969=>715, 970=>330, |
|
94 | +971=>550, 972=>550, 973=>550, 974=>715, 976=>550, 977=>605, 978=>722, 979=>871, 980=>722, 981=>660, |
|
95 | +982=>715, 983=>550, 984=>611, 985=>550, 986=>650, 987=>514, 988=>611, 989=>513, 990=>715, 991=>439, |
|
96 | +992=>722, 993=>605, 1008=>550, 1009=>550, 1010=>477, 1011=>333, 1012=>778, 1013=>424, 1014=>424, 1015=>632, |
|
97 | +1016=>575, 1017=>722, 1018=>943, 1019=>809, 1020=>550, 1021=>722, 1022=>722, 1023=>722, 1024=>667, 1025=>667, |
|
98 | +1026=>848, 1027=>611, 1028=>722, 1029=>556, 1030=>386, 1031=>386, 1032=>500, 1033=>1042, 1034=>1032, 1035=>912, |
|
99 | +1036=>770, 1037=>774, 1038=>738, 1039=>778, 1040=>722, 1041=>648, 1042=>667, 1043=>599, 1044=>708, 1045=>667, |
|
100 | +1046=>1106, 1047=>652, 1048=>774, 1049=>774, 1050=>770, 1051=>788, 1052=>943, 1053=>774, 1054=>778, 1055=>812, |
|
101 | +1056=>611, 1057=>722, 1058=>667, 1059=>738, 1060=>868, 1061=>722, 1062=>774, 1063=>754, 1064=>1115, 1065=>1115, |
|
102 | +1066=>782, 1067=>970, 1068=>630, 1069=>722, 1070=>1114, 1071=>729, 1072=>500, 1073=>500, 1074=>510, 1075=>430, |
|
103 | +1076=>545, 1077=>438, 1078=>781, 1079=>445, 1080=>556, 1081=>556, 1082=>556, 1083=>542, 1084=>668, 1085=>558, |
|
104 | +1086=>500, 1087=>558, 1088=>549, 1089=>444, 1090=>494, 1091=>486, 1092=>809, 1093=>500, 1094=>560, 1095=>556, |
|
105 | +1096=>818, 1097=>820, 1098=>612, 1099=>756, 1100=>512, 1101=>496, 1102=>770, 1103=>546, 1104=>438, 1105=>444, |
|
106 | +1106=>549, 1107=>430, 1108=>488, 1109=>386, 1110=>272, 1111=>278, 1112=>333, 1113=>784, 1114=>786, 1115=>552, |
|
107 | +1116=>556, 1117=>556, 1118=>484, 1119=>556, 1120=>1018, 1121=>699, 1122=>781, 1123=>612, 1124=>1033, 1125=>778, |
|
108 | +1126=>993, 1127=>692, 1128=>1371, 1129=>975, 1130=>1106, 1131=>781, 1132=>1474, 1133=>1066, 1134=>650, 1135=>424, |
|
109 | +1136=>970, 1137=>769, 1138=>770, 1139=>590, 1140=>808, 1141=>578, 1142=>808, 1143=>650, 1144=>1284, 1145=>973, |
|
110 | +1146=>928, 1147=>672, 1148=>1018, 1149=>693, 1150=>1018, 1151=>699, 1152=>650, 1153=>444, 1154=>258, 1155=>0, |
|
111 | +1156=>0, 1157=>0, 1158=>0, 1159=>0, 1160=>0, 1161=>0, 1162=>774, 1163=>558, 1164=>630, 1165=>512, |
|
112 | +1166=>611, 1167=>556, 1168=>614, 1169=>458, 1170=>614, 1171=>443, 1172=>631, 1173=>562, 1174=>1155, 1175=>828, |
|
113 | +1176=>652, 1177=>452, 1178=>819, 1179=>600, 1180=>816, 1181=>590, 1182=>920, 1183=>664, 1184=>967, 1185=>633, |
|
114 | +1186=>774, 1187=>562, 1188=>984, 1189=>698, 1190=>1069, 1191=>841, 1192=>722, 1193=>524, 1194=>722, 1195=>444, |
|
115 | +1196=>667, 1197=>494, 1198=>722, 1199=>606, 1200=>722, 1201=>606, 1202=>722, 1203=>560, 1204=>1046, 1205=>778, |
|
116 | +1206=>754, 1207=>560, 1208=>810, 1209=>590, 1210=>754, 1211=>556, 1212=>945, 1213=>606, 1214=>945, 1215=>606, |
|
117 | +1216=>386, 1217=>1106, 1218=>781, 1219=>770, 1220=>534, 1221=>788, 1222=>550, 1223=>774, 1224=>556, 1225=>774, |
|
118 | +1226=>558, 1227=>778, 1228=>556, 1229=>943, 1230=>677, 1231=>386, 1232=>722, 1233=>500, 1234=>722, 1235=>500, |
|
119 | +1236=>1000, 1237=>722, 1238=>667, 1239=>444, 1240=>778, 1241=>444, 1242=>778, 1243=>444, 1244=>1106, 1245=>781, |
|
120 | +1246=>652, 1247=>445, 1248=>654, 1249=>389, 1250=>774, 1251=>556, 1252=>774, 1253=>556, 1254=>778, 1255=>500, |
|
121 | +1256=>778, 1257=>500, 1258=>778, 1259=>500, 1260=>722, 1261=>496, 1262=>738, 1263=>500, 1264=>738, 1265=>500, |
|
122 | +1266=>738, 1267=>500, 1268=>754, 1269=>556, 1270=>599, 1271=>443, 1272=>970, 1273=>756, 1296=>652, 1297=>452, |
|
123 | +1298=>788, 1299=>550, 1306=>778, 1307=>556, 1308=>1000, 1309=>722, 1310=>770, 1311=>558, 1425=>0, 1426=>0, |
|
124 | +1427=>0, 1428=>0, 1429=>0, 1430=>0, 1431=>0, 1432=>0, 1433=>0, 1434=>0, 1435=>0, 1436=>0, |
|
125 | +1437=>0, 1438=>0, 1439=>0, 1440=>0, 1441=>0, 1442=>0, 1443=>0, 1444=>0, 1445=>0, 1446=>0, |
|
126 | +1447=>0, 1448=>0, 1449=>0, 1450=>0, 1451=>0, 1452=>0, 1453=>0, 1454=>0, 1455=>0, 1456=>0, |
|
127 | +1457=>0, 1458=>0, 1459=>0, 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1466=>0, |
|
128 | +1467=>0, 1468=>0, 1469=>0, 1470=>433, 1471=>0, 1472=>155, 1473=>0, 1474=>0, 1475=>400, 1476=>0, |
|
129 | +1477=>0, 1478=>347, 1479=>0, 1488=>593, 1489=>498, 1490=>339, 1491=>523, 1492=>561, 1493=>266, 1494=>291, |
|
130 | +1495=>559, 1496=>576, 1497=>266, 1498=>496, 1499=>501, 1500=>510, 1501=>542, 1502=>581, 1503=>273, 1504=>347, |
|
131 | +1505=>512, 1506=>552, 1507=>493, 1508=>491, 1509=>537, 1510=>561, 1511=>544, 1512=>502, 1513=>716, 1514=>571, |
|
132 | +1520=>532, 1521=>532, 1522=>532, 1523=>396, 1524=>432, 3585=>590, 3586=>578, 3587=>661, 3588=>592, 3589=>592, |
|
133 | +3590=>699, 3591=>447, 3592=>534, 3593=>692, 3594=>578, 3595=>659, 3596=>899, 3597=>804, 3598=>633, 3599=>637, |
|
134 | +3600=>484, 3601=>730, 3602=>876, 3603=>915, 3604=>592, 3605=>592, 3606=>578, 3607=>670, 3608=>542, 3609=>671, |
|
135 | +3610=>621, 3611=>618, 3612=>621, 3613=>617, 3614=>708, 3615=>708, 3616=>637, 3617=>589, 3618=>552, 3619=>484, |
|
136 | +3620=>590, 3621=>569, 3622=>637, 3623=>526, 3624=>599, 3625=>802, 3626=>579, 3627=>668, 3628=>778, 3629=>560, |
|
137 | +3630=>514, 3631=>510, 3632=>412, 3633=>0, 3634=>423, 3635=>452, 3636=>0, 3637=>0, 3638=>0, 3639=>0, |
|
138 | +3640=>0, 3641=>0, 3642=>0, 3647=>665, 3648=>357, 3649=>624, 3650=>529, 3651=>486, 3652=>475, 3653=>423, |
|
139 | +3654=>500, 3655=>0, 3656=>0, 3657=>0, 3658=>0, 3659=>0, 3660=>0, 3661=>0, 3662=>0, 3663=>657, |
|
140 | +3664=>548, 3665=>548, 3666=>592, 3667=>614, 3668=>631, 3669=>643, 3670=>508, 3671=>744, 3672=>622, 3673=>585, |
|
141 | +3674=>721, 3675=>1381, 4256=>475, 4257=>469, 4258=>573, 4259=>650, 4260=>502, 4261=>506, 4262=>481, 4263=>746, |
|
142 | +4264=>491, 4265=>495, 4266=>888, 4267=>488, 4268=>464, 4269=>745, 4270=>483, 4271=>489, 4272=>721, 4273=>464, |
|
143 | +4274=>578, 4275=>590, 4276=>611, 4277=>491, 4278=>663, 4279=>489, 4280=>544, 4281=>479, 4282=>527, 4283=>488, |
|
144 | +4284=>560, 4285=>461, 4286=>467, 4287=>546, 4288=>483, 4289=>487, 4290=>562, 4291=>477, 4292=>491, 4293=>471, |
|
145 | +4304=>522, 4305=>518, 4306=>621, 4307=>716, 4308=>517, 4309=>519, 4310=>518, 4311=>796, 4312=>518, 4313=>518, |
|
146 | +4314=>934, 4315=>517, 4316=>519, 4317=>787, 4318=>515, 4319=>514, 4320=>788, 4321=>573, 4322=>620, 4323=>593, |
|
147 | +4324=>639, 4325=>516, 4326=>714, 4327=>518, 4328=>572, 4329=>518, 4330=>555, 4331=>518, 4332=>562, 4333=>509, |
|
148 | +4334=>572, 4335=>677, 4336=>523, 4337=>517, 4338=>595, 4339=>480, 4340=>519, 4341=>484, 4345=>621, 4347=>450, |
|
149 | +5024=>718, 5025=>768, 5026=>633, 5027=>878, 5028=>1001, 5029=>371, 5030=>576, 5031=>754, 5032=>531, 5033=>774, |
|
150 | +5034=>692, 5035=>499, 5036=>668, 5037=>829, 5038=>575, 5039=>681, 5040=>485, 5041=>607, 5042=>885, 5043=>974, |
|
151 | +5044=>588, 5045=>583, 5046=>726, 5047=>947, 5048=>558, 5049=>832, 5050=>1096, 5051=>780, 5052=>595, 5053=>869, |
|
152 | +5054=>752, 5055=>710, 5056=>761, 5057=>802, 5058=>760, 5059=>656, 5060=>655, 5061=>982, 5062=>684, 5063=>801, |
|
153 | +5064=>805, 5065=>1042, 5066=>755, 5067=>612, 5068=>707, 5069=>889, 5070=>584, 5071=>623, 5072=>536, 5073=>763, |
|
154 | +5074=>763, 5075=>498, 5076=>1052, 5077=>600, 5078=>730, 5079=>714, 5080=>714, 5081=>697, 5082=>543, 5083=>943, |
|
155 | +5084=>718, 5085=>630, 5086=>660, 5087=>692, 5088=>841, 5089=>861, 5090=>617, 5091=>733, 5092=>898, 5093=>896, |
|
156 | +5094=>781, 5095=>612, 5096=>830, 5097=>948, 5098=>886, 5099=>757, 5100=>796, 5101=>578, 5102=>601, 5103=>797, |
|
157 | +5104=>623, 5105=>886, 5106=>730, 5107=>827, 5108=>648, 7680=>722, 7681=>500, 7682=>667, 7683=>556, 7684=>667, |
|
158 | +7685=>556, 7686=>667, 7687=>556, 7688=>722, 7689=>444, 7690=>724, 7691=>556, 7692=>724, 7693=>556, 7694=>724, |
|
159 | +7695=>556, 7696=>724, 7697=>556, 7698=>724, 7699=>556, 7700=>667, 7701=>444, 7702=>667, 7703=>444, 7704=>667, |
|
160 | +7705=>444, 7706=>667, 7707=>444, 7708=>667, 7709=>444, 7710=>611, 7711=>333, 7712=>778, 7713=>500, 7714=>774, |
|
161 | +7715=>556, 7716=>774, 7717=>556, 7718=>774, 7719=>556, 7720=>774, 7721=>556, 7722=>774, 7723=>556, 7724=>386, |
|
162 | +7725=>278, 7726=>389, 7727=>278, 7728=>764, 7729=>556, 7730=>764, 7731=>556, 7732=>764, 7733=>556, 7734=>664, |
|
163 | +7735=>278, 7736=>664, 7737=>278, 7738=>664, 7739=>278, 7740=>664, 7741=>278, 7742=>943, 7743=>833, 7744=>943, |
|
164 | +7745=>833, 7746=>943, 7747=>833, 7748=>722, 7749=>556, 7750=>722, 7751=>556, 7752=>722, 7753=>556, 7754=>722, |
|
165 | +7755=>556, 7756=>778, 7757=>500, 7758=>778, 7759=>500, 7760=>778, 7761=>500, 7762=>778, 7763=>500, 7764=>611, |
|
166 | +7765=>556, 7766=>611, 7767=>556, 7768=>712, 7769=>444, 7770=>712, 7771=>444, 7772=>712, 7773=>444, 7774=>712, |
|
167 | +7775=>444, 7776=>556, 7777=>389, 7778=>556, 7779=>389, 7780=>556, 7781=>389, 7782=>556, 7783=>389, 7784=>556, |
|
168 | +7785=>389, 7786=>667, 7787=>333, 7788=>667, 7789=>333, 7790=>667, 7791=>333, 7792=>667, 7793=>333, 7794=>722, |
|
169 | +7795=>556, 7796=>722, 7797=>556, 7798=>722, 7799=>556, 7800=>722, 7801=>556, 7802=>722, 7803=>556, 7804=>722, |
|
170 | +7805=>500, 7806=>722, 7807=>500, 7808=>1000, 7809=>722, 7810=>1000, 7811=>722, 7812=>1000, 7813=>722, 7814=>1000, |
|
171 | +7815=>722, 7816=>1000, 7817=>722, 7818=>722, 7819=>500, 7820=>722, 7821=>500, 7822=>722, 7823=>500, 7824=>667, |
|
172 | +7825=>444, 7826=>667, 7827=>444, 7828=>667, 7829=>444, 7830=>556, 7831=>333, 7832=>722, 7833=>500, 7834=>507, |
|
173 | +7835=>333, 7840=>722, 7841=>500, 7842=>722, 7843=>500, 7844=>722, 7845=>500, 7846=>722, 7847=>500, 7848=>722, |
|
174 | +7849=>500, 7850=>722, 7851=>500, 7852=>722, 7853=>500, 7854=>722, 7855=>500, 7856=>722, 7857=>500, 7858=>825, |
|
175 | +7859=>603, 7860=>722, 7861=>500, 7862=>722, 7863=>500, 7864=>667, 7865=>444, 7866=>667, 7867=>444, 7868=>667, |
|
176 | +7869=>444, 7870=>667, 7871=>444, 7872=>667, 7873=>444, 7874=>667, 7875=>444, 7876=>667, 7877=>444, 7878=>667, |
|
177 | +7879=>444, 7880=>386, 7881=>278, 7882=>386, 7883=>278, 7884=>778, 7885=>500, 7886=>778, 7887=>500, 7888=>778, |
|
178 | +7889=>500, 7890=>778, 7891=>500, 7892=>778, 7893=>500, 7894=>778, 7895=>500, 7896=>778, 7897=>500, 7898=>774, |
|
179 | +7899=>550, 7900=>774, 7901=>550, 7902=>774, 7903=>549, 7904=>778, 7905=>550, 7906=>778, 7907=>550, 7908=>722, |
|
180 | +7909=>556, 7910=>722, 7911=>556, 7912=>838, 7913=>672, 7914=>838, 7915=>672, 7916=>825, 7917=>659, 7918=>839, |
|
181 | +7919=>629, 7920=>839, 7921=>629, 7922=>722, 7923=>500, 7924=>722, 7925=>500, 7926=>722, 7927=>500, 7928=>722, |
|
182 | +7929=>500, 7936=>605, 7937=>605, 7938=>605, 7939=>605, 7940=>605, 7941=>605, 7942=>605, 7943=>605, 7944=>722, |
|
183 | +7945=>722, 7946=>830, 7947=>833, 7948=>761, 7949=>798, 7950=>721, 7951=>722, 7952=>440, 7953=>440, 7954=>440, |
|
184 | +7955=>440, 7956=>440, 7957=>440, 7960=>817, 7961=>826, 7962=>944, 7963=>970, 7964=>964, 7965=>1009, 7968=>605, |
|
185 | +7969=>605, 7970=>605, 7971=>605, 7972=>605, 7973=>605, 7974=>605, 7975=>605, 7976=>926, 7977=>921, 7978=>1038, |
|
186 | +7979=>1064, 7980=>1092, 7981=>1102, 7982=>1005, 7983=>991, 7984=>330, 7985=>330, 7986=>330, 7987=>330, 7988=>330, |
|
187 | +7989=>330, 7990=>330, 7991=>330, 7992=>534, 7993=>541, 7994=>653, 7995=>659, 7996=>705, 7997=>714, 7998=>612, |
|
188 | +7999=>614, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>885, 8009=>886, 8010=>1038, |
|
189 | +8011=>1052, 8012=>997, 8013=>1021, 8016=>550, 8017=>550, 8018=>550, 8019=>550, 8020=>550, 8021=>550, 8022=>550, |
|
190 | +8023=>550, 8025=>870, 8027=>1014, 8029=>1043, 8031=>944, 8032=>715, 8033=>715, 8034=>715, 8035=>715, 8036=>715, |
|
191 | +8037=>715, 8038=>715, 8039=>715, 8040=>905, 8041=>913, 8042=>1066, 8043=>1085, 8044=>1034, 8045=>1044, 8046=>980, |
|
192 | +8047=>961, 8048=>605, 8049=>605, 8050=>440, 8051=>440, 8052=>605, 8053=>605, 8054=>330, 8055=>330, 8056=>550, |
|
193 | +8057=>550, 8058=>550, 8059=>550, 8060=>715, 8061=>715, 8064=>605, 8065=>605, 8066=>605, 8067=>605, 8068=>605, |
|
194 | +8069=>605, 8070=>605, 8071=>605, 8072=>886, 8073=>887, 8074=>985, 8075=>993, 8076=>937, 8077=>956, 8078=>874, |
|
195 | +8079=>878, 8080=>605, 8081=>605, 8082=>605, 8083=>605, 8084=>605, 8085=>605, 8086=>605, 8087=>605, 8088=>1096, |
|
196 | +8089=>1092, 8090=>1223, 8091=>1250, 8092=>1270, 8093=>1283, 8094=>1174, 8095=>1162, 8096=>715, 8097=>715, 8098=>715, |
|
197 | +8099=>715, 8100=>715, 8101=>715, 8102=>715, 8103=>715, 8104=>1057, 8105=>1073, 8106=>1228, 8107=>1251, 8108=>1202, |
|
198 | +8109=>1210, 8110=>1151, 8111=>1131, 8112=>605, 8113=>605, 8114=>605, 8115=>605, 8116=>605, 8118=>605, 8119=>605, |
|
199 | +8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>883, 8125=>500, 8126=>0, 8127=>500, 8128=>500, 8129=>550, |
|
200 | +8130=>605, 8131=>605, 8132=>605, 8134=>605, 8135=>605, 8136=>790, 8137=>830, 8138=>909, 8139=>931, 8140=>950, |
|
201 | +8141=>500, 8142=>500, 8143=>500, 8144=>330, 8145=>330, 8146=>330, 8147=>330, 8150=>330, 8151=>330, 8152=>386, |
|
202 | +8153=>386, 8154=>506, 8155=>550, 8157=>500, 8158=>500, 8159=>500, 8160=>550, 8161=>550, 8162=>550, 8163=>550, |
|
203 | +8164=>550, 8165=>550, 8166=>550, 8167=>550, 8168=>738, 8169=>738, 8170=>858, 8171=>880, 8172=>764, 8173=>550, |
|
204 | +8174=>550, 8175=>500, 8178=>715, 8179=>715, 8180=>715, 8182=>715, 8183=>715, 8184=>884, 8185=>857, 8186=>927, |
|
205 | +8187=>892, 8188=>988, 8189=>500, 8190=>500, 8192=>500, 8193=>1000, 8194=>500, 8195=>1000, 8196=>333, 8197=>250, |
|
206 | +8198=>167, 8199=>500, 8200=>250, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0, 8206=>0, 8207=>0, |
|
207 | +8208=>333, 8209=>333, 8210=>500, 8213=>1000, 8214=>333, 8215=>478, 8219=>250, 8223=>500, 8227=>560, 8228=>250, |
|
208 | +8229=>500, 8231=>250, 8232=>0, 8233=>0, 8234=>0, 8235=>0, 8236=>0, 8237=>0, 8238=>0, 8239=>250, |
|
209 | +8241=>1588, 8242=>270, 8243=>492, 8244=>714, 8245=>270, 8246=>484, 8247=>693, 8248=>469, 8251=>727, 8252=>666, |
|
210 | +8253=>695, 8254=>500, 8255=>953, 8256=>953, 8257=>338, 8258=>931, 8259=>333, 8260=>167, 8261=>332, 8262=>332, |
|
211 | +8263=>1000, 8264=>833, 8265=>833, 8266=>500, 8267=>540, 8268=>528, 8269=>523, 8270=>500, 8271=>333, 8272=>953, |
|
212 | +8273=>500, 8274=>497, 8275=>576, 8276=>953, 8277=>785, 8278=>450, 8279=>881, 8280=>620, 8281=>620, 8282=>179, |
|
213 | +8283=>621, 8284=>569, 8285=>179, 8286=>179, 8287=>111, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, |
|
214 | +8304=>300, 8305=>278, 8308=>300, 8309=>300, 8310=>300, 8311=>300, 8312=>300, 8313=>300, 8314=>300, 8315=>300, |
|
215 | +8316=>300, 8317=>216, 8318=>216, 8319=>318, 8320=>300, 8321=>274, 8322=>300, 8323=>300, 8324=>300, 8325=>300, |
|
216 | +8326=>300, 8327=>300, 8328=>300, 8329=>300, 8330=>300, 8331=>300, 8332=>300, 8333=>216, 8334=>216, 8352=>710, |
|
217 | +8353=>722, 8354=>783, 8355=>611, 8356=>500, 8357=>833, 8358=>722, 8359=>960, 8360=>1101, 8361=>1000, 8362=>889, |
|
218 | +8363=>532, 8365=>742, 8366=>631, 8369=>609, 8370=>639, 8371=>660, 8372=>556, 8373=>500, 8448=>752, 8449=>746, |
|
219 | +8451=>1009, 8457=>923, 8458=>500, 8459=>1035, 8462=>556, 8463=>556, 8464=>792, 8465=>737, 8466=>800, 8467=>427, |
|
220 | +8468=>835, 8470=>879, 8471=>1048, 8472=>666, 8475=>747, 8476=>955, 8478=>722, 8479=>722, 8480=>891, 8481=>1156, |
|
221 | +8483=>722, 8486=>811, 8487=>811, 8489=>333, 8490=>764, 8491=>722, 8492=>806, 8494=>551, 8497=>723, 8498=>611, |
|
222 | +8499=>1203, 8501=>593, 8502=>498, 8503=>339, 8504=>523, 8506=>906, 8507=>1156, 8523=>778, 8525=>866, 8526=>500, |
|
223 | +8531=>750, 8532=>750, 8533=>750, 8534=>750, 8535=>750, 8536=>750, 8537=>750, 8538=>750, 8539=>750, 8540=>750, |
|
224 | +8541=>750, 8542=>750, 8543=>750, 8544=>386, 8545=>772, 8546=>1158, 8547=>1108, 8548=>722, 8549=>1108, 8550=>1494, |
|
225 | +8551=>1880, 8552=>1108, 8553=>722, 8554=>1108, 8555=>1494, 8556=>664, 8557=>722, 8558=>724, 8559=>943, 8560=>278, |
|
226 | +8561=>556, 8562=>834, 8563=>778, 8564=>500, 8565=>778, 8566=>1056, 8567=>1334, 8568=>778, 8569=>500, 8570=>778, |
|
227 | +8571=>1056, 8572=>278, 8573=>444, 8574=>556, 8575=>833, 8592=>964, 8593=>523, 8594=>964, 8595=>523, 8596=>964, |
|
228 | +8597=>964, 8598=>964, 8599=>964, 8600=>964, 8601=>964, 8602=>964, 8603=>964, 8604=>1152, 8605=>1152, 8606=>964, |
|
229 | +8607=>964, 8608=>964, 8609=>964, 8610=>1078, 8611=>1078, 8612=>964, 8613=>964, 8614=>964, 8615=>964, 8616=>964, |
|
230 | +8617=>964, 8618=>964, 8619=>964, 8620=>964, 8621=>1168, 8622=>964, 8624=>622, 8625=>622, 8630=>1069, 8631=>1069, |
|
231 | +8632=>964, 8633=>964, 8634=>980, 8635=>980, 8636=>964, 8637=>964, 8638=>557, 8639=>556, 8640=>964, 8641=>964, |
|
232 | +8642=>557, 8643=>556, 8644=>964, 8645=>964, 8646=>964, 8647=>964, 8648=>964, 8649=>964, 8650=>964, 8651=>964, |
|
233 | +8652=>964, 8653=>964, 8654=>964, 8655=>964, 8656=>964, 8657=>630, 8658=>964, 8659=>630, 8660=>964, 8661=>630, |
|
234 | +8662=>1063, 8663=>1063, 8664=>1063, 8665=>1063, 8666=>964, 8667=>964, 8668=>1100, 8669=>1100, 8672=>964, 8674=>964, |
|
235 | +8676=>964, 8677=>964, 8704=>627, 8705=>716, 8706=>558, 8707=>627, 8708=>627, 8709=>500, 8710=>612, 8711=>719, |
|
236 | +8713=>576, 8714=>576, 8716=>576, 8717=>576, 8720=>733, 8721=>713, 8722=>676, 8723=>676, 8724=>676, 8725=>750, |
|
237 | +8727=>570, 8729=>570, 8730=>549, 8733=>676, 8734=>752, 8736=>555, 8737=>555, 8738=>555, 8739=>240, 8740=>531, |
|
238 | +8741=>478, 8742=>705, 8743=>694, 8744=>694, 8745=>694, 8746=>694, 8747=>323, 8756=>629, 8757=>629, 8761=>947, |
|
239 | +8764=>676, 8765=>676, 8766=>763, 8768=>305, 8769=>676, 8770=>676, 8771=>676, 8773=>676, 8776=>676, 8777=>676, |
|
240 | +8778=>676, 8781=>676, 8782=>676, 8783=>676, 8784=>676, 8785=>676, 8786=>676, 8787=>676, 8788=>947, 8789=>947, |
|
241 | +8790=>676, 8791=>676, 8796=>676, 8800=>570, 8801=>676, 8802=>676, 8804=>570, 8805=>570, 8806=>676, 8807=>676, |
|
242 | +8808=>676, 8809=>676, 8810=>1047, 8811=>1047, 8812=>450, 8813=>676, 8814=>676, 8815=>676, 8816=>676, 8817=>676, |
|
243 | +8818=>676, 8819=>676, 8820=>676, 8821=>676, 8822=>676, 8823=>676, 8824=>676, 8825=>676, 8826=>676, 8827=>676, |
|
244 | +8828=>676, 8829=>676, 8830=>676, 8831=>676, 8832=>676, 8833=>676, 8834=>676, 8835=>676, 8836=>676, 8837=>676, |
|
245 | +8838=>676, 8839=>676, 8840=>676, 8841=>676, 8842=>676, 8843=>676, 8846=>694, 8847=>676, 8848=>676, 8849=>676, |
|
246 | +8850=>676, 8851=>694, 8852=>694, 8853=>738, 8854=>738, 8855=>738, 8856=>738, 8857=>738, 8858=>738, 8859=>738, |
|
247 | +8861=>738, 8862=>678, 8863=>678, 8864=>678, 8865=>678, 8866=>487, 8867=>487, 8868=>752, 8869=>752, 8871=>487, |
|
248 | +8873=>659, 8874=>831, 8876=>487, 8877=>487, 8878=>659, 8879=>659, 8882=>676, 8883=>676, 8884=>676, 8885=>676, |
|
249 | +8886=>1380, 8887=>1380, 8888=>1027, 8890=>626, 8891=>694, 8892=>694, 8893=>694, 8900=>512, 8903=>676, 8904=>759, |
|
250 | +8905=>632, 8906=>632, 8907=>1000, 8908=>1000, 8909=>676, 8910=>694, 8911=>694, 8912=>676, 8913=>676, 8914=>694, |
|
251 | +8915=>694, 8916=>694, 8918=>676, 8919=>676, 8920=>1441, 8921=>1441, 8922=>676, 8923=>676, 8924=>676, 8925=>676, |
|
252 | +8926=>676, 8927=>676, 8928=>676, 8929=>676, 8930=>676, 8931=>676, 8934=>676, 8935=>676, 8936=>676, 8937=>676, |
|
253 | +8938=>676, 8939=>676, 8940=>676, 8941=>676, 8960=>737, 8968=>411, 8969=>411, 8970=>411, 8971=>411, 8976=>680, |
|
254 | +8994=>951, 8995=>951, 9001=>398, 9002=>398, 9251=>500, 9472=>1000, 9473=>1000, 9474=>1000, 9475=>1000, 9476=>1000, |
|
255 | +9477=>1000, 9478=>1000, 9479=>1000, 9480=>1000, 9481=>1000, 9482=>1000, 9483=>1000, 9484=>1000, 9485=>1000, 9486=>1000, |
|
256 | +9487=>1000, 9488=>1000, 9489=>1000, 9490=>1000, 9491=>1000, 9492=>1000, 9493=>1000, 9494=>1000, 9495=>1000, 9496=>1000, |
|
257 | +9497=>1000, 9498=>1000, 9499=>1000, 9500=>1000, 9501=>1000, 9502=>1000, 9503=>1000, 9504=>1000, 9505=>1000, 9506=>1000, |
|
258 | +9507=>1000, 9508=>1000, 9509=>1000, 9510=>1000, 9511=>1000, 9512=>1000, 9513=>1000, 9514=>1000, 9515=>1000, 9516=>1000, |
|
259 | +9517=>1000, 9518=>1000, 9519=>1000, 9520=>1000, 9521=>1000, 9522=>1000, 9523=>1000, 9524=>1000, 9525=>1000, 9526=>1000, |
|
260 | +9527=>1000, 9528=>1000, 9529=>1000, 9530=>1000, 9531=>1000, 9532=>1000, 9533=>1000, 9534=>1000, 9535=>1000, 9536=>1000, |
|
261 | +9537=>1000, 9538=>1000, 9539=>1000, 9540=>1000, 9541=>1000, 9542=>1000, 9543=>1000, 9544=>1000, 9545=>1000, 9546=>1000, |
|
262 | +9547=>1000, 9552=>1000, 9553=>1000, 9554=>1000, 9555=>1000, 9556=>1000, 9557=>1000, 9558=>1000, 9559=>1000, 9560=>1000, |
|
263 | +9561=>1000, 9562=>1000, 9563=>1000, 9564=>1000, 9565=>1000, 9566=>1000, 9567=>1000, 9568=>1000, 9569=>1000, 9570=>1000, |
|
264 | +9571=>1000, 9572=>1000, 9573=>1000, 9574=>1000, 9575=>1000, 9576=>1000, 9577=>1000, 9578=>1000, 9579=>1000, 9580=>1000, |
|
265 | +9600=>1000, 9601=>1000, 9602=>1000, 9603=>1000, 9604=>1000, 9605=>1000, 9606=>1000, 9607=>1000, 9608=>1000, 9609=>1000, |
|
266 | +9610=>1000, 9611=>1000, 9612=>1000, 9613=>1000, 9614=>1000, 9615=>1000, 9616=>1000, 9617=>1000, 9618=>1000, 9620=>1000, |
|
267 | +9621=>1000, 9622=>1000, 9623=>1000, 9624=>1000, 9625=>1000, 9626=>1000, 9627=>1000, 9628=>1000, 9629=>1000, 9630=>1000, |
|
268 | +9631=>1000, 9632=>678, 9633=>678, 9642=>309, 9650=>681, 9651=>681, 9654=>681, 9655=>681, 9660=>681, 9661=>681, |
|
269 | +9664=>681, 9665=>681, 9670=>580, 9671=>580, 9674=>494, 9675=>738, 9676=>732, 9679=>738, 9702=>524, 9711=>851, |
|
270 | +9733=>1003, 9734=>1003, 9824=>618, 9825=>645, 9826=>587, 9827=>582, 9828=>582, 9829=>645, 9830=>587, 9831=>618, |
|
271 | +9833=>333, 9834=>556, 9835=>778, 9836=>778, 9837=>556, 9838=>556, 9839=>556, 10214=>561, 10215=>561, 11799=>333, |
|
272 | +64256=>613, 64257=>559, 64258=>559, 64259=>846, 64260=>836, 64262=>723, 64285=>266, 64286=>0, 64287=>532, 64288=>552, |
|
273 | +64297=>570, 64298=>716, 64299=>716, 64300=>716, 64301=>716, 64302=>593, 64303=>593, 64304=>593, 64305=>498, 64306=>339, |
|
274 | +64307=>523, 64308=>561, 64309=>266, 64310=>291, 64312=>576, 64313=>266, 64314=>496, 64315=>501, 64316=>510, 64318=>581, |
|
275 | +64320=>347, 64321=>512, 64323=>493, 64324=>491, 64326=>561, 64327=>544, 64328=>502, 64329=>716, 64330=>571, 64331=>266, |
|
276 | +64332=>498, 64333=>501, 64334=>491, 64335=>593, 65533=>788); |
|
277 | +$enc = ''; |
|
278 | +$diff = ''; |
|
279 | +$file = 'freeserifb.z'; |
|
280 | +$ctg = 'freeserifb.ctg.z'; |
|
281 | +$originalsize = 467208; |
|
282 | 282 | ?> |
283 | 283 | \ No newline at end of file |