@@ -1,4 +1,4 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if (!defined('ABSPATH')) exit; |
|
2 | 2 | //============================================================+ |
3 | 3 | // File name : ita.php |
4 | 4 | // Begin : 2004-03-03 |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if ( !defined( 'ABSPATH' ) ) { |
|
2 | + exit; |
|
3 | +} |
|
2 | 4 | //============================================================+ |
3 | 5 | // File name : ita.php |
4 | 6 | // Begin : 2004-03-03 |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if (!defined('ABSPATH')) exit; |
|
2 | 2 | //============================================================+ |
3 | 3 | // File name : tcpdf_config.php |
4 | 4 | // Begin : 2004-06-11 |
@@ -35,18 +35,18 @@ discard block |
||
35 | 35 | |
36 | 36 | // DOCUMENT_ROOT fix for IIS Webserver |
37 | 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 { |
|
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 | 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') { |
|
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 |
@@ -1,4 +1,6 @@ discard block |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if ( !defined( 'ABSPATH' ) ) { |
|
2 | + exit; |
|
3 | +} |
|
2 | 4 | //============================================================+ |
3 | 5 | // File name : tcpdf_config.php |
4 | 6 | // Begin : 2004-06-11 |
@@ -39,7 +41,7 @@ discard block |
||
39 | 41 | $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF']))); |
40 | 42 | } elseif(isset($_SERVER['PATH_TRANSLATED'])) { |
41 | 43 | $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF']))); |
42 | - } else { |
|
44 | + } else { |
|
43 | 45 | // define here your DOCUMENT_ROOT path if the previous fails |
44 | 46 | $_SERVER['DOCUMENT_ROOT'] = '/var/www'; |
45 | 47 | } |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if (!defined('ABSPATH')) exit; |
|
2 | 2 | //============================================================+ |
3 | 3 | // File name : tcpdf_config.php |
4 | 4 | // Begin : 2004-06-11 |
@@ -31,18 +31,18 @@ discard block |
||
31 | 31 | |
32 | 32 | // DOCUMENT_ROOT fix for IIS Webserver |
33 | 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 { |
|
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 | 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') { |
|
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 |
@@ -1,4 +1,6 @@ discard block |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if ( !defined( 'ABSPATH' ) ) { |
|
2 | + exit; |
|
3 | +} |
|
2 | 4 | //============================================================+ |
3 | 5 | // File name : tcpdf_config.php |
4 | 6 | // Begin : 2004-06-11 |
@@ -35,7 +37,7 @@ discard block |
||
35 | 37 | $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF']))); |
36 | 38 | } elseif(isset($_SERVER['PATH_TRANSLATED'])) { |
37 | 39 | $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF']))); |
38 | - } else { |
|
40 | + } else { |
|
39 | 41 | // define here your DOCUMENT_ROOT path if the previous fails |
40 | 42 | $_SERVER['DOCUMENT_ROOT'] = '/var/www'; |
41 | 43 | } |
@@ -51,14 +51,14 @@ discard block |
||
51 | 51 | */ |
52 | 52 | |
53 | 53 | /** |
54 | - * PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).<br> |
|
55 | - * @name TCPDFBarcode |
|
56 | - * @package com.tecnick.tcpdf |
|
57 | - * @version 1.0.003 |
|
58 | - * @author Nicola Asuni |
|
59 | - * @link http://www.tcpdf.org |
|
60 | - * @license http://www.gnu.org/copyleft/lesser.html LGPL |
|
61 | - */ |
|
54 | + * PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).<br> |
|
55 | + * @name TCPDFBarcode |
|
56 | + * @package com.tecnick.tcpdf |
|
57 | + * @version 1.0.003 |
|
58 | + * @author Nicola Asuni |
|
59 | + * @link http://www.tcpdf.org |
|
60 | + * @license http://www.gnu.org/copyleft/lesser.html LGPL |
|
61 | + */ |
|
62 | 62 | class TCPDF2DBarcode { |
63 | 63 | |
64 | 64 | /** |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * <li>$arrcode['num_cols'] required number of columns</li> |
76 | 76 | * <li>$arrcode['bcode'][$r][$c] value of the cell is $r row and $c column (0 = transparent, 1 = black)</li></ul> |
77 | 77 | * @param string $code code to print |
78 | - * @param string $type type of barcode: <ul>li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>QRCODE : QR-CODE Low error correction</li><li>QRCODE,L : QR-CODE Low error correction</li><li>QRCODE,M : QR-CODE Medium error correction</li><li>QRCODE,Q : QR-CODE Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li></ul> |
|
78 | + * @param string $type type of barcode: <ul>li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>QRCODE : QR-CODE Low error correction</li><li>QRCODE,L : QR-CODE Low error correction</li><li>QRCODE,M : QR-CODE Medium error correction</li><li>QRCODE,Q : QR-CODE Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li></ul> |
|
79 | 79 | */ |
80 | 80 | public function __construct($code, $type) { |
81 | 81 | $this->setBarcode($code, $type); |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | /** |
85 | 85 | * Return an array representations of barcode. |
86 | - * @return array |
|
86 | + * @return array |
|
87 | 87 | */ |
88 | 88 | public function getBarcodeArray() { |
89 | 89 | return $this->barcode_array; |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | /** |
93 | 93 | * Set the barcode. |
94 | 94 | * @param string $code code to print |
95 | - * @param string $type type of barcode: <ul><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>QRCODE : QR-CODE Low error correction</li><li>QRCODE,L : QR-CODE Low error correction</li><li>QRCODE,M : QR-CODE Medium error correction</li><li>QRCODE,Q : QR-CODE Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li></ul> |
|
96 | - * @return array |
|
95 | + * @param string $type type of barcode: <ul><li>RAW: raw mode - comma-separad list of array rows</li><li>RAW2: raw mode - array rows are surrounded by square parenthesis.</li><li>QRCODE : QR-CODE Low error correction</li><li>QRCODE,L : QR-CODE Low error correction</li><li>QRCODE,M : QR-CODE Medium error correction</li><li>QRCODE,Q : QR-CODE Better error correction</li><li>QRCODE,H : QR-CODE Best error correction</li></ul> |
|
96 | + * @return array |
|
97 | 97 | */ |
98 | 98 | public function setBarcode($code, $type) { |
99 | 99 | $mode = explode(',', $type); |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if (!defined('ABSPATH')) exit; |
|
2 | 2 | //============================================================+ |
3 | 3 | // File name : 2dbarcodes.php |
4 | 4 | // Begin : 2009-04-07 |
@@ -100,8 +100,8 @@ discard block |
||
100 | 100 | $qrtype = strtoupper($mode[0]); |
101 | 101 | switch ($qrtype) { |
102 | 102 | case 'QRCODE': { // QR-CODE |
103 | - require_once(dirname(__FILE__).'/qrcode.php'); |
|
104 | - if (!isset($mode[1]) OR (!in_array($mode[1],array('L','M','Q','H')))) { |
|
103 | + require_once(dirname(__FILE__) . '/qrcode.php'); |
|
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,4 +1,6 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if ( !defined( 'ABSPATH' ) ) { |
|
2 | + exit; |
|
3 | +} |
|
2 | 4 | //============================================================+ |
3 | 5 | // File name : 2dbarcodes.php |
4 | 6 | // Begin : 2009-04-07 |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if (!defined('ABSPATH')) exit; |
|
2 | 2 | //============================================================+ |
3 | 3 | // File name : htmlcolors.php |
4 | 4 | // Begin : 2002-04-09 |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * Array of WEB safe colors |
53 | 53 | */ |
54 | 54 | global $webcolor; |
55 | -$webcolor = array ( |
|
55 | +$webcolor = array( |
|
56 | 56 | 'aliceblue' => 'f0f8ff', |
57 | 57 | 'antiquewhite' => 'faebd7', |
58 | 58 | 'aqua' => '00ffff', |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if ( !defined( 'ABSPATH' ) ) { |
|
2 | + exit; |
|
3 | +} |
|
2 | 4 | //============================================================+ |
3 | 5 | // File name : htmlcolors.php |
4 | 6 | // Begin : 2002-04-09 |
@@ -1,204 +1,204 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
2 | -$type='TrueTypeUnicode'; |
|
3 | -$name='FreeMonoBold'; |
|
4 | -$desc=array('Ascent'=>800,'Descent'=>-200,'CapHeight'=>10,'Flags'=>32,'FontBBox'=>'[-604 -200 754 800]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600); |
|
5 | -$up=-125; |
|
6 | -$ut=50; |
|
7 | -$dw=600; |
|
8 | -$cw=array( |
|
9 | -32=>600,33=>600,34=>600,35=>600,36=>600,37=>600,38=>600,39=>600,40=>600,41=>600, |
|
10 | -42=>600,43=>600,44=>600,45=>600,46=>600,47=>600,48=>600,49=>600,50=>600,51=>600, |
|
11 | -52=>600,53=>600,54=>600,55=>600,56=>600,57=>600,58=>600,59=>600,60=>600,61=>600, |
|
12 | -62=>600,63=>600,64=>600,65=>600,66=>600,67=>600,68=>600,69=>600,70=>600,71=>600, |
|
13 | -72=>600,73=>600,74=>600,75=>600,76=>600,77=>600,78=>600,79=>600,80=>600,81=>600, |
|
14 | -82=>600,83=>600,84=>600,85=>600,86=>600,87=>600,88=>600,89=>600,90=>600,91=>600, |
|
15 | -92=>600,93=>600,94=>600,95=>600,96=>600,97=>600,98=>600,99=>600,100=>600,101=>600, |
|
16 | -102=>600,103=>600,104=>600,105=>600,106=>600,107=>600,108=>600,109=>600,110=>600,111=>600, |
|
17 | -112=>600,113=>600,114=>600,115=>600,116=>600,117=>600,118=>600,119=>600,120=>600,121=>600, |
|
18 | -122=>600,123=>600,124=>600,125=>600,126=>600,8364=>600,8218=>600,402=>600,8222=>600,8230=>600, |
|
19 | -8224=>600,8225=>600,710=>600,8240=>600,352=>600,8249=>600,338=>600,381=>600,8216=>600,8217=>600, |
|
20 | -8220=>600,8221=>600,8226=>600,8211=>600,8212=>600,732=>600,8482=>600,353=>600,8250=>600,339=>600, |
|
21 | -382=>600,376=>600,160=>600,161=>600,162=>600,163=>600,164=>600,165=>600,166=>600,167=>600, |
|
22 | -168=>600,169=>600,170=>600,171=>600,172=>600,173=>600,174=>600,175=>600,176=>600,177=>600, |
|
23 | -178=>600,179=>600,180=>600,181=>600,182=>600,183=>600,184=>600,185=>600,186=>600,187=>600, |
|
24 | -188=>600,189=>600,190=>600,191=>600,192=>600,193=>600,194=>600,195=>600,196=>600,197=>600, |
|
25 | -198=>600,199=>600,200=>600,201=>600,202=>600,203=>600,204=>600,205=>600,206=>600,207=>600, |
|
26 | -208=>600,209=>600,210=>600,211=>600,212=>600,213=>600,214=>600,215=>600,216=>600,217=>600, |
|
27 | -218=>600,219=>600,220=>600,221=>600,222=>600,223=>600,224=>600,225=>600,226=>600,227=>600, |
|
28 | -228=>600,229=>600,230=>600,231=>600,232=>600,233=>600,234=>600,235=>600,236=>600,237=>600, |
|
29 | -238=>600,239=>600,240=>600,241=>600,242=>600,243=>600,244=>600,245=>600,246=>600,247=>600, |
|
30 | -248=>600,249=>600,250=>600,251=>600,252=>600,253=>600,254=>600,255=>600,256=>600,257=>600, |
|
31 | -258=>600,259=>600,260=>600,261=>600,262=>600,263=>600,264=>600,265=>600,266=>600,267=>600, |
|
32 | -268=>600,269=>600,270=>600,271=>600,272=>600,273=>600,274=>600,275=>600,276=>600,277=>600, |
|
33 | -278=>600,279=>600,280=>600,281=>600,282=>600,283=>600,284=>600,285=>600,286=>600,287=>600, |
|
34 | -288=>600,289=>600,290=>600,291=>600,292=>600,293=>600,294=>600,295=>600,296=>600,297=>600, |
|
35 | -298=>600,299=>600,300=>600,301=>600,302=>600,303=>600,304=>600,305=>600,306=>600,307=>600, |
|
36 | -308=>600,309=>600,310=>600,311=>600,312=>600,313=>600,314=>600,315=>600,316=>600,317=>600, |
|
37 | -318=>600,319=>600,320=>600,321=>600,322=>600,323=>600,324=>600,325=>600,326=>600,327=>600, |
|
38 | -328=>600,329=>600,330=>600,331=>600,332=>600,333=>600,334=>600,335=>600,336=>600,337=>600, |
|
39 | -340=>600,341=>600,342=>600,343=>600,344=>600,345=>600,346=>600,347=>600,348=>600,349=>600, |
|
40 | -350=>600,351=>600,354=>600,355=>600,356=>600,357=>600,358=>600,359=>600,360=>600,361=>600, |
|
41 | -362=>600,363=>600,364=>600,365=>600,366=>600,367=>600,368=>600,369=>600,370=>600,371=>600, |
|
42 | -372=>600,373=>600,374=>600,375=>600,377=>600,378=>600,379=>600,380=>600,383=>600,384=>600, |
|
43 | -385=>600,386=>600,387=>600,388=>600,389=>600,390=>600,391=>600,392=>600,393=>600,394=>600, |
|
44 | -395=>600,396=>600,397=>600,398=>600,399=>600,400=>600,401=>600,403=>600,404=>600,405=>600, |
|
45 | -406=>600,407=>600,408=>600,409=>600,410=>600,411=>600,412=>600,413=>600,414=>600,415=>600, |
|
46 | -416=>600,417=>600,418=>600,419=>600,420=>600,421=>600,422=>600,423=>600,424=>600,425=>600, |
|
47 | -426=>600,427=>600,428=>600,429=>600,430=>600,431=>600,432=>600,433=>600,434=>600,435=>600, |
|
48 | -436=>600,437=>600,438=>600,439=>600,440=>600,441=>600,442=>600,443=>600,444=>600,445=>600, |
|
49 | -446=>600,447=>600,448=>600,449=>600,450=>600,451=>600,452=>600,453=>600,454=>600,455=>600, |
|
50 | -456=>600,457=>600,458=>600,459=>600,460=>600,461=>600,462=>600,463=>600,464=>600,465=>600, |
|
51 | -466=>600,467=>600,468=>600,469=>600,470=>600,471=>600,472=>600,473=>600,474=>600,475=>600, |
|
52 | -476=>600,477=>600,478=>600,479=>600,480=>600,481=>600,482=>600,483=>600,484=>600,485=>600, |
|
53 | -486=>600,487=>600,488=>600,489=>600,490=>600,491=>600,492=>600,493=>600,494=>600,495=>600, |
|
54 | -496=>600,497=>600,498=>600,499=>600,500=>600,501=>600,502=>600,503=>600,504=>600,505=>600, |
|
55 | -506=>600,507=>600,508=>600,509=>600,510=>600,511=>600,512=>600,513=>600,514=>600,515=>600, |
|
56 | -516=>600,517=>600,518=>600,519=>600,520=>600,521=>600,522=>600,523=>600,524=>600,525=>600, |
|
57 | -526=>600,527=>600,528=>600,529=>600,530=>600,531=>600,532=>600,533=>600,534=>600,535=>600, |
|
58 | -536=>600,537=>600,538=>600,539=>600,540=>600,541=>600,542=>600,543=>600,548=>600,549=>600, |
|
59 | -550=>600,551=>600,552=>600,553=>600,554=>600,555=>600,556=>600,557=>600,558=>600,559=>600, |
|
60 | -560=>600,561=>600,562=>600,563=>600,567=>600,592=>600,593=>600,594=>600,595=>600,596=>600, |
|
61 | -598=>600,599=>600,600=>600,601=>600,603=>600,604=>600,607=>600,608=>600,609=>600,613=>600, |
|
62 | -614=>600,615=>600,616=>600,617=>600,618=>600,619=>600,621=>600,623=>600,624=>600,625=>600, |
|
63 | -626=>600,627=>600,628=>600,629=>600,633=>600,634=>600,635=>600,636=>600,637=>600,638=>600, |
|
64 | -639=>600,640=>600,641=>600,642=>600,643=>600,644=>600,645=>600,647=>600,648=>600,649=>600, |
|
65 | -652=>600,653=>600,654=>600,656=>600,657=>600,658=>600,659=>600,660=>600,661=>600,662=>600, |
|
66 | -663=>600,664=>600,665=>600,666=>600,667=>600,668=>600,669=>600,670=>600,671=>600,672=>600, |
|
67 | -673=>600,674=>600,688=>600,689=>600,690=>600,691=>600,692=>600,693=>600,694=>600,695=>600, |
|
68 | -696=>600,697=>600,698=>600,699=>600,700=>600,701=>600,702=>600,703=>600,704=>600,705=>600, |
|
69 | -706=>600,707=>600,708=>600,709=>600,711=>600,712=>600,713=>600,714=>600,715=>600,716=>600, |
|
70 | -717=>600,718=>600,719=>600,720=>600,721=>600,722=>600,723=>600,724=>600,725=>600,726=>600, |
|
71 | -727=>600,728=>600,729=>600,730=>600,731=>600,733=>600,734=>600,735=>600,736=>600,737=>600, |
|
72 | -738=>600,739=>600,740=>600,741=>600,742=>600,743=>600,744=>600,745=>600,746=>600,747=>600, |
|
73 | -748=>600,749=>600,750=>600,751=>600,752=>600,753=>600,754=>600,755=>600,756=>600,757=>600, |
|
74 | -758=>600,759=>600,760=>600,761=>600,762=>600,763=>600,764=>600,765=>600,766=>600,767=>600, |
|
75 | -768=>0,769=>0,770=>0,771=>0,772=>0,773=>0,774=>0,775=>0,776=>0,777=>0, |
|
76 | -778=>0,779=>0,780=>0,781=>0,782=>0,783=>0,784=>0,785=>0,786=>0,787=>0, |
|
77 | -788=>0,789=>0,790=>0,791=>0,795=>0,796=>0,800=>0,801=>0,802=>0,803=>0, |
|
78 | -804=>0,805=>0,806=>0,807=>0,808=>0,809=>0,810=>0,812=>0,813=>0,814=>0, |
|
79 | -815=>0,816=>0,817=>0,818=>0,819=>0,820=>0,821=>0,822=>0,823=>0,826=>0, |
|
80 | -827=>0,831=>0,832=>0,833=>0,834=>0,835=>0,836=>0,838=>0,839=>0,840=>0, |
|
81 | -844=>0,849=>0,850=>0,851=>0,852=>0,853=>0,854=>0,855=>0,884=>600,885=>600, |
|
82 | -890=>600,894=>600,900=>600,901=>600,902=>600,903=>600,904=>600,905=>600,906=>600,908=>600, |
|
83 | -910=>600,911=>600,912=>600,913=>600,914=>600,915=>600,916=>600,917=>600,918=>600,919=>600, |
|
84 | -920=>600,921=>600,922=>600,923=>600,924=>600,925=>600,926=>600,927=>600,928=>600,929=>600, |
|
85 | -931=>600,932=>600,933=>600,934=>600,935=>600,936=>600,937=>600,938=>600,939=>600,940=>600, |
|
86 | -941=>600,942=>600,943=>600,944=>600,945=>600,946=>600,947=>600,948=>600,949=>600,950=>600, |
|
87 | -951=>600,952=>600,953=>600,954=>600,955=>600,956=>600,957=>600,958=>600,959=>600,960=>600, |
|
88 | -961=>600,962=>600,963=>600,964=>600,965=>600,966=>600,967=>600,968=>600,969=>600,970=>600, |
|
89 | -971=>600,972=>600,973=>600,974=>600,976=>600,977=>600,978=>600,979=>600,980=>600,981=>600, |
|
90 | -982=>600,986=>600,987=>600,988=>600,1008=>600,1009=>600,1012=>600,1013=>600,1024=>600,1025=>600, |
|
91 | -1026=>600,1027=>600,1028=>600,1029=>600,1030=>600,1031=>600,1032=>600,1033=>600,1034=>600,1035=>600, |
|
92 | -1036=>600,1037=>600,1038=>600,1039=>600,1040=>600,1041=>600,1042=>600,1043=>600,1044=>600,1045=>600, |
|
93 | -1046=>600,1047=>600,1048=>600,1049=>600,1050=>600,1051=>600,1052=>600,1053=>600,1054=>600,1055=>600, |
|
94 | -1056=>600,1057=>600,1058=>600,1059=>600,1060=>600,1061=>600,1062=>600,1063=>600,1064=>600,1065=>600, |
|
95 | -1066=>600,1067=>600,1068=>600,1069=>600,1070=>600,1071=>600,1072=>600,1073=>600,1074=>600,1075=>600, |
|
96 | -1076=>600,1077=>600,1078=>600,1079=>600,1080=>600,1081=>600,1082=>600,1083=>600,1084=>600,1085=>600, |
|
97 | -1086=>600,1087=>600,1088=>600,1089=>600,1090=>600,1091=>600,1092=>600,1093=>600,1094=>600,1095=>600, |
|
98 | -1096=>600,1097=>600,1098=>600,1099=>600,1100=>600,1101=>600,1102=>600,1103=>600,1104=>600,1105=>600, |
|
99 | -1106=>600,1107=>600,1108=>600,1109=>600,1110=>600,1111=>600,1112=>600,1113=>600,1114=>600,1115=>600, |
|
100 | -1116=>600,1117=>600,1118=>600,1119=>600,1136=>600,1137=>600,1138=>600,1156=>0,1157=>0,1158=>0, |
|
101 | -1162=>600,1163=>600,1164=>600,1165=>600,1166=>600,1167=>600,1168=>600,1169=>600,1170=>600,1171=>600, |
|
102 | -1172=>600,1173=>600,1174=>600,1175=>600,1176=>600,1177=>600,1178=>600,1179=>600,1180=>600,1181=>600, |
|
103 | -1182=>600,1183=>600,1184=>600,1185=>600,1186=>600,1187=>600,1188=>600,1189=>600,1190=>600,1191=>600, |
|
104 | -1192=>600,1193=>600,1194=>600,1195=>600,1196=>600,1197=>600,1198=>600,1199=>600,1200=>600,1201=>600, |
|
105 | -1202=>600,1203=>600,1204=>600,1205=>600,1206=>600,1207=>600,1208=>600,1209=>600,1210=>600,1211=>600, |
|
106 | -1212=>600,1213=>600,1214=>600,1215=>600,1216=>600,1217=>600,1218=>600,1219=>600,1220=>600,1221=>600, |
|
107 | -1222=>600,1223=>600,1224=>600,1225=>600,1226=>600,1227=>600,1228=>600,1229=>600,1230=>600,1231=>600, |
|
108 | -1232=>600,1233=>600,1234=>600,1235=>600,1236=>600,1237=>600,1238=>600,1239=>600,1240=>600,1241=>600, |
|
109 | -1242=>600,1243=>600,1244=>600,1245=>600,1246=>600,1247=>600,1248=>600,1249=>600,1250=>600,1251=>600, |
|
110 | -1252=>600,1253=>600,1254=>600,1255=>600,1256=>600,1257=>600,1258=>600,1259=>600,1260=>600,1261=>600, |
|
111 | -1262=>600,1263=>600,1264=>600,1265=>600,1266=>600,1267=>600,1268=>600,1269=>600,1270=>600,1271=>600, |
|
112 | -1272=>600,1273=>600,1296=>600,1297=>600,1298=>600,1299=>600,1306=>600,1307=>600,1308=>600,1309=>600, |
|
113 | -1310=>600,1311=>600,1456=>0,1457=>0,1458=>0,1459=>0,1460=>0,1461=>0,1462=>0,1463=>0, |
|
114 | -1464=>0,1465=>0,1467=>0,1468=>0,1469=>0,1470=>600,1471=>0,1472=>600,1473=>0,1474=>0, |
|
115 | -1475=>600,1476=>0,1488=>600,1489=>600,1490=>600,1491=>600,1492=>600,1493=>600,1494=>600,1495=>600, |
|
116 | -1496=>600,1497=>600,1498=>600,1499=>600,1500=>600,1501=>600,1502=>600,1503=>600,1504=>600,1505=>600, |
|
117 | -1506=>600,1507=>600,1508=>600,1509=>600,1510=>600,1511=>600,1512=>600,1513=>600,1514=>600,1520=>600, |
|
118 | -1521=>600,1522=>600,1523=>600,1524=>600,4304=>600,4305=>600,4306=>600,4307=>600,4308=>600,4309=>600, |
|
119 | -4310=>600,4311=>600,4312=>600,4313=>600,4314=>600,4315=>600,4316=>600,4317=>600,4318=>600,4319=>600, |
|
120 | -4320=>600,4321=>600,4322=>600,4323=>600,4324=>600,4325=>600,4326=>600,4327=>600,4328=>600,4329=>600, |
|
121 | -4330=>600,4331=>600,4332=>600,4333=>600,4334=>600,4335=>600,4336=>600,4337=>600,4338=>600,4339=>600, |
|
122 | -4340=>600,4341=>600,4345=>600,4347=>600,7680=>600,7681=>600,7682=>600,7683=>600,7684=>600,7685=>600, |
|
123 | -7686=>600,7687=>600,7688=>600,7689=>600,7690=>600,7691=>600,7692=>600,7693=>600,7694=>600,7695=>600, |
|
124 | -7696=>600,7697=>600,7698=>600,7699=>600,7700=>600,7701=>600,7702=>600,7703=>600,7704=>600,7705=>600, |
|
125 | -7706=>600,7707=>600,7708=>600,7709=>600,7710=>600,7711=>600,7712=>600,7713=>600,7714=>600,7715=>600, |
|
126 | -7716=>600,7717=>600,7718=>600,7719=>600,7720=>600,7721=>600,7722=>600,7723=>600,7724=>600,7725=>600, |
|
127 | -7726=>600,7727=>600,7728=>600,7729=>600,7730=>600,7731=>600,7732=>600,7733=>600,7734=>600,7735=>600, |
|
128 | -7736=>600,7737=>600,7738=>600,7739=>600,7740=>600,7741=>600,7742=>600,7743=>600,7744=>600,7745=>600, |
|
129 | -7746=>600,7747=>600,7748=>600,7749=>600,7750=>600,7751=>600,7752=>600,7753=>600,7754=>600,7755=>600, |
|
130 | -7756=>600,7757=>600,7758=>600,7759=>600,7760=>600,7761=>600,7762=>600,7763=>600,7764=>600,7765=>600, |
|
131 | -7766=>600,7767=>600,7768=>600,7769=>600,7770=>600,7771=>600,7772=>600,7773=>600,7774=>600,7775=>600, |
|
132 | -7776=>600,7777=>600,7778=>600,7779=>600,7780=>600,7781=>600,7782=>600,7783=>600,7784=>600,7785=>600, |
|
133 | -7786=>600,7787=>600,7788=>600,7789=>600,7790=>600,7791=>600,7792=>600,7793=>600,7794=>600,7795=>600, |
|
134 | -7796=>600,7797=>600,7798=>600,7799=>600,7800=>600,7801=>600,7802=>600,7803=>600,7804=>600,7805=>600, |
|
135 | -7806=>600,7807=>600,7808=>600,7809=>600,7810=>600,7811=>600,7812=>600,7813=>600,7814=>600,7815=>600, |
|
136 | -7816=>600,7817=>600,7818=>600,7819=>600,7820=>600,7821=>600,7822=>600,7823=>600,7824=>600,7825=>600, |
|
137 | -7826=>600,7827=>600,7828=>600,7829=>600,7830=>600,7831=>600,7832=>600,7833=>600,7834=>600,7835=>600, |
|
138 | -7840=>600,7841=>600,7842=>600,7843=>600,7844=>600,7845=>600,7846=>600,7847=>600,7848=>600,7849=>600, |
|
139 | -7850=>600,7851=>600,7852=>600,7853=>600,7854=>600,7855=>600,7856=>600,7857=>600,7858=>600,7859=>600, |
|
140 | -7860=>600,7861=>600,7862=>600,7863=>600,7864=>600,7865=>600,7866=>600,7867=>600,7868=>600,7869=>600, |
|
141 | -7870=>600,7871=>600,7872=>600,7873=>600,7874=>600,7875=>600,7876=>600,7877=>600,7878=>600,7879=>600, |
|
142 | -7880=>600,7881=>600,7882=>600,7883=>600,7884=>600,7885=>600,7886=>600,7887=>600,7888=>600,7889=>600, |
|
143 | -7890=>600,7891=>600,7892=>600,7893=>600,7894=>600,7895=>600,7896=>600,7897=>600,7898=>600,7899=>600, |
|
144 | -7900=>600,7901=>600,7902=>600,7903=>600,7904=>600,7905=>600,7906=>600,7907=>600,7908=>600,7909=>600, |
|
145 | -7910=>600,7911=>600,7912=>600,7913=>600,7914=>600,7915=>600,7916=>600,7917=>600,7918=>600,7919=>600, |
|
146 | -7920=>600,7921=>600,7922=>600,7923=>600,7924=>600,7925=>600,7926=>600,7927=>600,7928=>600,7929=>600, |
|
147 | -8192=>600,8193=>600,8194=>600,8195=>600,8196=>600,8197=>600,8198=>600,8199=>600,8200=>600,8201=>600, |
|
148 | -8202=>600,8203=>600,8204=>0,8205=>0,8206=>0,8207=>0,8208=>600,8209=>600,8210=>600,8213=>600, |
|
149 | -8214=>600,8215=>600,8219=>600,8223=>600,8227=>600,8228=>600,8229=>600,8231=>600,8232=>600,8233=>600, |
|
150 | -8234=>600,8235=>600,8236=>600,8237=>600,8238=>600,8239=>600,8241=>600,8242=>600,8243=>600,8244=>600, |
|
151 | -8245=>600,8246=>600,8247=>600,8248=>600,8251=>600,8252=>600,8253=>600,8254=>600,8255=>600,8256=>600, |
|
152 | -8257=>600,8258=>600,8259=>600,8260=>600,8261=>600,8262=>600,8263=>600,8264=>600,8265=>600,8266=>600, |
|
153 | -8267=>600,8268=>600,8269=>600,8270=>600,8271=>600,8272=>600,8273=>600,8274=>600,8275=>600,8276=>600, |
|
154 | -8277=>600,8278=>600,8279=>600,8280=>600,8281=>600,8282=>600,8283=>600,8284=>600,8285=>600,8286=>600, |
|
155 | -8287=>600,8288=>600,8289=>600,8290=>600,8291=>600,8292=>600,8298=>600,8299=>600,8300=>600,8301=>600, |
|
156 | -8302=>600,8303=>600,8304=>600,8305=>600,8308=>600,8309=>600,8310=>600,8311=>600,8312=>600,8313=>600, |
|
157 | -8314=>600,8315=>600,8316=>600,8317=>600,8318=>600,8319=>600,8320=>600,8321=>600,8322=>600,8323=>600, |
|
158 | -8324=>600,8325=>600,8326=>600,8327=>600,8328=>600,8329=>600,8330=>600,8331=>600,8332=>600,8333=>600, |
|
159 | -8334=>600,8336=>600,8337=>600,8338=>600,8339=>600,8340=>600,8355=>600,8356=>600,8362=>600,8373=>600, |
|
160 | -8448=>600,8449=>600,8451=>600,8453=>600,8454=>600,8457=>600,8465=>600,8466=>600,8470=>600,8472=>600, |
|
161 | -8476=>600,8481=>600,8486=>600,8487=>600,8489=>600,8490=>600,8491=>600,8498=>600,8501=>600,8502=>600, |
|
162 | -8503=>600,8504=>600,8506=>600,8507=>600,8523=>600,8531=>600,8532=>600,8533=>600,8534=>600,8535=>600, |
|
163 | -8536=>600,8537=>600,8538=>600,8539=>600,8540=>600,8541=>600,8542=>600,8543=>600,8544=>600,8545=>600, |
|
164 | -8546=>600,8547=>600,8548=>600,8549=>600,8550=>600,8553=>600,8556=>600,8557=>600,8558=>600,8559=>600, |
|
165 | -8560=>600,8564=>600,8569=>600,8572=>600,8573=>600,8574=>600,8575=>600,8592=>600,8593=>600,8594=>600, |
|
166 | -8595=>600,8704=>600,8706=>600,8707=>600,8709=>600,8710=>600,8711=>600,8712=>600,8713=>600,8715=>600, |
|
167 | -8716=>600,8721=>600,8722=>600,8723=>600,8725=>600,8730=>600,8733=>600,8734=>600,8735=>600,8756=>600, |
|
168 | -8800=>600,8801=>600,8804=>600,8805=>600,8834=>600,8835=>600,8836=>600,8837=>600,8838=>600,8839=>600, |
|
169 | -8869=>600,8976=>600,9001=>600,9002=>600,9251=>600,9472=>600,9473=>600,9474=>600,9475=>600,9476=>600, |
|
170 | -9477=>600,9478=>600,9479=>600,9480=>600,9481=>600,9482=>600,9483=>600,9484=>600,9485=>600,9486=>600, |
|
171 | -9487=>600,9488=>600,9489=>600,9490=>600,9491=>600,9492=>600,9493=>600,9494=>600,9495=>600,9496=>600, |
|
172 | -9497=>600,9498=>600,9499=>600,9500=>600,9501=>600,9502=>600,9503=>600,9504=>600,9505=>600,9506=>600, |
|
173 | -9507=>600,9508=>600,9509=>600,9510=>600,9511=>600,9512=>600,9513=>600,9514=>600,9515=>600,9516=>600, |
|
174 | -9517=>600,9518=>600,9519=>600,9520=>600,9521=>600,9522=>600,9523=>600,9524=>600,9525=>600,9526=>600, |
|
175 | -9527=>600,9528=>600,9529=>600,9530=>600,9531=>600,9532=>600,9533=>600,9534=>600,9535=>600,9536=>600, |
|
176 | -9537=>600,9538=>600,9539=>600,9540=>600,9541=>600,9542=>600,9543=>600,9544=>600,9545=>600,9546=>600, |
|
177 | -9547=>600,9548=>600,9549=>600,9550=>600,9551=>600,9552=>600,9553=>600,9554=>600,9555=>600,9556=>600, |
|
178 | -9557=>600,9558=>600,9559=>600,9560=>600,9561=>600,9562=>600,9563=>600,9564=>600,9565=>600,9566=>600, |
|
179 | -9567=>600,9568=>600,9569=>600,9570=>600,9571=>600,9572=>600,9573=>600,9574=>600,9575=>600,9576=>600, |
|
180 | -9577=>600,9578=>600,9579=>600,9580=>600,9581=>600,9582=>600,9583=>600,9584=>600,9585=>600,9586=>600, |
|
181 | -9587=>600,9588=>600,9589=>600,9590=>600,9591=>600,9592=>600,9593=>600,9594=>600,9595=>600,9596=>600, |
|
182 | -9597=>600,9598=>600,9599=>600,9600=>600,9601=>600,9602=>600,9603=>600,9604=>600,9605=>600,9606=>600, |
|
183 | -9607=>600,9608=>600,9609=>600,9610=>600,9611=>600,9612=>600,9613=>600,9614=>600,9615=>600,9616=>600, |
|
184 | -9617=>600,9618=>600,9619=>600,9620=>600,9621=>600,9632=>600,9633=>600,9635=>600,9636=>600,9637=>600, |
|
185 | -9638=>600,9639=>600,9640=>600,9641=>600,9642=>600,9643=>600,9644=>600,9645=>600,9646=>600,9647=>600, |
|
186 | -9648=>600,9649=>600,9650=>600,9651=>600,9652=>600,9653=>600,9654=>600,9655=>600,9656=>600,9657=>600, |
|
187 | -9658=>600,9660=>600,9661=>600,9662=>600,9663=>600,9664=>600,9665=>600,9666=>600,9667=>600,9668=>600, |
|
188 | -9669=>600,9670=>600,9671=>600,9673=>600,9674=>600,9675=>600,9677=>600,9679=>600,9680=>600,9681=>600, |
|
189 | -9682=>600,9683=>600,9684=>600,9685=>600,9686=>600,9687=>600,9688=>600,9689=>600,9698=>600,9699=>600, |
|
190 | -9700=>600,9701=>600,9702=>600,9703=>600,9704=>600,9705=>600,9706=>600,9707=>600,9708=>600,9709=>600, |
|
191 | -9710=>600,9712=>600,9713=>600,9714=>600,9715=>600,9716=>600,9717=>600,9718=>600,9719=>600,9735=>600, |
|
192 | -9736=>600,9737=>600,9776=>600,9777=>600,9778=>600,9779=>600,9780=>600,9781=>600,9782=>600,9783=>600, |
|
193 | -9785=>600,9786=>600,9787=>600,9824=>600,9825=>600,9826=>600,9827=>600,9828=>600,9829=>600,9830=>600, |
|
194 | -9831=>600,9833=>600,9834=>600,9835=>600,9836=>600,9837=>600,9838=>600,9839=>600,64256=>600,64257=>600, |
|
195 | -64258=>600,64285=>600,64287=>600,64288=>600,64298=>600,64299=>600,64300=>600,64301=>600,64302=>600,64303=>600, |
|
196 | -64304=>600,64305=>600,64306=>600,64307=>600,64308=>600,64309=>600,64310=>600,64312=>600,64313=>600,64314=>600, |
|
197 | -64315=>600,64316=>600,64318=>600,64320=>600,64321=>600,64323=>600,64324=>600,64326=>600,64327=>600,64328=>600, |
|
198 | -64329=>600,64330=>600,64331=>600,64332=>600,64333=>600,64334=>600,64335=>600,65533=>600); |
|
199 | -$enc=''; |
|
200 | -$diff=''; |
|
201 | -$file='freemonob.z'; |
|
202 | -$ctg='freemonob.ctg.z'; |
|
203 | -$originalsize=164212; |
|
1 | +<?php if (!defined('ABSPATH')) exit; |
|
2 | +$type = 'TrueTypeUnicode'; |
|
3 | +$name = 'FreeMonoBold'; |
|
4 | +$desc = array('Ascent'=>800, 'Descent'=>-200, 'CapHeight'=>10, 'Flags'=>32, 'FontBBox'=>'[-604 -200 754 800]', 'ItalicAngle'=>0, 'StemV'=>120, 'MissingWidth'=>600); |
|
5 | +$up = -125; |
|
6 | +$ut = 50; |
|
7 | +$dw = 600; |
|
8 | +$cw = array( |
|
9 | +32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, |
|
10 | +42=>600, 43=>600, 44=>600, 45=>600, 46=>600, 47=>600, 48=>600, 49=>600, 50=>600, 51=>600, |
|
11 | +52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, |
|
12 | +62=>600, 63=>600, 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, |
|
13 | +72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600, 79=>600, 80=>600, 81=>600, |
|
14 | +82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, |
|
15 | +92=>600, 93=>600, 94=>600, 95=>600, 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, |
|
16 | +102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600, 111=>600, |
|
17 | +112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, |
|
18 | +122=>600, 123=>600, 124=>600, 125=>600, 126=>600, 8364=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, |
|
19 | +8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 381=>600, 8216=>600, 8217=>600, |
|
20 | +8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, |
|
21 | +382=>600, 376=>600, 160=>600, 161=>600, 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, |
|
22 | +168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600, 177=>600, |
|
23 | +178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, |
|
24 | +188=>600, 189=>600, 190=>600, 191=>600, 192=>600, 193=>600, 194=>600, 195=>600, 196=>600, 197=>600, |
|
25 | +198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, |
|
26 | +208=>600, 209=>600, 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, |
|
27 | +218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600, 225=>600, 226=>600, 227=>600, |
|
28 | +228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, |
|
29 | +238=>600, 239=>600, 240=>600, 241=>600, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, |
|
30 | +248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600, 257=>600, |
|
31 | +258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, |
|
32 | +268=>600, 269=>600, 270=>600, 271=>600, 272=>600, 273=>600, 274=>600, 275=>600, 276=>600, 277=>600, |
|
33 | +278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, |
|
34 | +288=>600, 289=>600, 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, |
|
35 | +298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600, 305=>600, 306=>600, 307=>600, |
|
36 | +308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, |
|
37 | +318=>600, 319=>600, 320=>600, 321=>600, 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, |
|
38 | +328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600, 337=>600, |
|
39 | +340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, |
|
40 | +350=>600, 351=>600, 354=>600, 355=>600, 356=>600, 357=>600, 358=>600, 359=>600, 360=>600, 361=>600, |
|
41 | +362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, |
|
42 | +372=>600, 373=>600, 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, |
|
43 | +385=>600, 386=>600, 387=>600, 388=>600, 389=>600, 390=>600, 391=>600, 392=>600, 393=>600, 394=>600, |
|
44 | +395=>600, 396=>600, 397=>600, 398=>600, 399=>600, 400=>600, 401=>600, 403=>600, 404=>600, 405=>600, |
|
45 | +406=>600, 407=>600, 408=>600, 409=>600, 410=>600, 411=>600, 412=>600, 413=>600, 414=>600, 415=>600, |
|
46 | +416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600, 425=>600, |
|
47 | +426=>600, 427=>600, 428=>600, 429=>600, 430=>600, 431=>600, 432=>600, 433=>600, 434=>600, 435=>600, |
|
48 | +436=>600, 437=>600, 438=>600, 439=>600, 440=>600, 441=>600, 442=>600, 443=>600, 444=>600, 445=>600, |
|
49 | +446=>600, 447=>600, 448=>600, 449=>600, 450=>600, 451=>600, 452=>600, 453=>600, 454=>600, 455=>600, |
|
50 | +456=>600, 457=>600, 458=>600, 459=>600, 460=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, |
|
51 | +466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600, 474=>600, 475=>600, |
|
52 | +476=>600, 477=>600, 478=>600, 479=>600, 480=>600, 481=>600, 482=>600, 483=>600, 484=>600, 485=>600, |
|
53 | +486=>600, 487=>600, 488=>600, 489=>600, 490=>600, 491=>600, 492=>600, 493=>600, 494=>600, 495=>600, |
|
54 | +496=>600, 497=>600, 498=>600, 499=>600, 500=>600, 501=>600, 502=>600, 503=>600, 504=>600, 505=>600, |
|
55 | +506=>600, 507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>600, 513=>600, 514=>600, 515=>600, |
|
56 | +516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600, 522=>600, 523=>600, 524=>600, 525=>600, |
|
57 | +526=>600, 527=>600, 528=>600, 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, |
|
58 | +536=>600, 537=>600, 538=>600, 539=>600, 540=>600, 541=>600, 542=>600, 543=>600, 548=>600, 549=>600, |
|
59 | +550=>600, 551=>600, 552=>600, 553=>600, 554=>600, 555=>600, 556=>600, 557=>600, 558=>600, 559=>600, |
|
60 | +560=>600, 561=>600, 562=>600, 563=>600, 567=>600, 592=>600, 593=>600, 594=>600, 595=>600, 596=>600, |
|
61 | +598=>600, 599=>600, 600=>600, 601=>600, 603=>600, 604=>600, 607=>600, 608=>600, 609=>600, 613=>600, |
|
62 | +614=>600, 615=>600, 616=>600, 617=>600, 618=>600, 619=>600, 621=>600, 623=>600, 624=>600, 625=>600, |
|
63 | +626=>600, 627=>600, 628=>600, 629=>600, 633=>600, 634=>600, 635=>600, 636=>600, 637=>600, 638=>600, |
|
64 | +639=>600, 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 647=>600, 648=>600, 649=>600, |
|
65 | +652=>600, 653=>600, 654=>600, 656=>600, 657=>600, 658=>600, 659=>600, 660=>600, 661=>600, 662=>600, |
|
66 | +663=>600, 664=>600, 665=>600, 666=>600, 667=>600, 668=>600, 669=>600, 670=>600, 671=>600, 672=>600, |
|
67 | +673=>600, 674=>600, 688=>600, 689=>600, 690=>600, 691=>600, 692=>600, 693=>600, 694=>600, 695=>600, |
|
68 | +696=>600, 697=>600, 698=>600, 699=>600, 700=>600, 701=>600, 702=>600, 703=>600, 704=>600, 705=>600, |
|
69 | +706=>600, 707=>600, 708=>600, 709=>600, 711=>600, 712=>600, 713=>600, 714=>600, 715=>600, 716=>600, |
|
70 | +717=>600, 718=>600, 719=>600, 720=>600, 721=>600, 722=>600, 723=>600, 724=>600, 725=>600, 726=>600, |
|
71 | +727=>600, 728=>600, 729=>600, 730=>600, 731=>600, 733=>600, 734=>600, 735=>600, 736=>600, 737=>600, |
|
72 | +738=>600, 739=>600, 740=>600, 741=>600, 742=>600, 743=>600, 744=>600, 745=>600, 746=>600, 747=>600, |
|
73 | +748=>600, 749=>600, 750=>600, 751=>600, 752=>600, 753=>600, 754=>600, 755=>600, 756=>600, 757=>600, |
|
74 | +758=>600, 759=>600, 760=>600, 761=>600, 762=>600, 763=>600, 764=>600, 765=>600, 766=>600, 767=>600, |
|
75 | +768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, |
|
76 | +778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, |
|
77 | +788=>0, 789=>0, 790=>0, 791=>0, 795=>0, 796=>0, 800=>0, 801=>0, 802=>0, 803=>0, |
|
78 | +804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 812=>0, 813=>0, 814=>0, |
|
79 | +815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 826=>0, |
|
80 | +827=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 838=>0, 839=>0, 840=>0, |
|
81 | +844=>0, 849=>0, 850=>0, 851=>0, 852=>0, 853=>0, 854=>0, 855=>0, 884=>600, 885=>600, |
|
82 | +890=>600, 894=>600, 900=>600, 901=>600, 902=>600, 903=>600, 904=>600, 905=>600, 906=>600, 908=>600, |
|
83 | +910=>600, 911=>600, 912=>600, 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600, |
|
84 | +920=>600, 921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600, |
|
85 | +931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600, 937=>600, 938=>600, 939=>600, 940=>600, |
|
86 | +941=>600, 942=>600, 943=>600, 944=>600, 945=>600, 946=>600, 947=>600, 948=>600, 949=>600, 950=>600, |
|
87 | +951=>600, 952=>600, 953=>600, 954=>600, 955=>600, 956=>600, 957=>600, 958=>600, 959=>600, 960=>600, |
|
88 | +961=>600, 962=>600, 963=>600, 964=>600, 965=>600, 966=>600, 967=>600, 968=>600, 969=>600, 970=>600, |
|
89 | +971=>600, 972=>600, 973=>600, 974=>600, 976=>600, 977=>600, 978=>600, 979=>600, 980=>600, 981=>600, |
|
90 | +982=>600, 986=>600, 987=>600, 988=>600, 1008=>600, 1009=>600, 1012=>600, 1013=>600, 1024=>600, 1025=>600, |
|
91 | +1026=>600, 1027=>600, 1028=>600, 1029=>600, 1030=>600, 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, |
|
92 | +1036=>600, 1037=>600, 1038=>600, 1039=>600, 1040=>600, 1041=>600, 1042=>600, 1043=>600, 1044=>600, 1045=>600, |
|
93 | +1046=>600, 1047=>600, 1048=>600, 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, |
|
94 | +1056=>600, 1057=>600, 1058=>600, 1059=>600, 1060=>600, 1061=>600, 1062=>600, 1063=>600, 1064=>600, 1065=>600, |
|
95 | +1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600, 1075=>600, |
|
96 | +1076=>600, 1077=>600, 1078=>600, 1079=>600, 1080=>600, 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, |
|
97 | +1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600, 1091=>600, 1092=>600, 1093=>600, 1094=>600, 1095=>600, |
|
98 | +1096=>600, 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, |
|
99 | +1106=>600, 1107=>600, 1108=>600, 1109=>600, 1110=>600, 1111=>600, 1112=>600, 1113=>600, 1114=>600, 1115=>600, |
|
100 | +1116=>600, 1117=>600, 1118=>600, 1119=>600, 1136=>600, 1137=>600, 1138=>600, 1156=>0, 1157=>0, 1158=>0, |
|
101 | +1162=>600, 1163=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600, 1168=>600, 1169=>600, 1170=>600, 1171=>600, |
|
102 | +1172=>600, 1173=>600, 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600, |
|
103 | +1182=>600, 1183=>600, 1184=>600, 1185=>600, 1186=>600, 1187=>600, 1188=>600, 1189=>600, 1190=>600, 1191=>600, |
|
104 | +1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600, 1198=>600, 1199=>600, 1200=>600, 1201=>600, |
|
105 | +1202=>600, 1203=>600, 1204=>600, 1205=>600, 1206=>600, 1207=>600, 1208=>600, 1209=>600, 1210=>600, 1211=>600, |
|
106 | +1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600, 1217=>600, 1218=>600, 1219=>600, 1220=>600, 1221=>600, |
|
107 | +1222=>600, 1223=>600, 1224=>600, 1225=>600, 1226=>600, 1227=>600, 1228=>600, 1229=>600, 1230=>600, 1231=>600, |
|
108 | +1232=>600, 1233=>600, 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600, 1239=>600, 1240=>600, 1241=>600, |
|
109 | +1242=>600, 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600, 1250=>600, 1251=>600, |
|
110 | +1252=>600, 1253=>600, 1254=>600, 1255=>600, 1256=>600, 1257=>600, 1258=>600, 1259=>600, 1260=>600, 1261=>600, |
|
111 | +1262=>600, 1263=>600, 1264=>600, 1265=>600, 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1270=>600, 1271=>600, |
|
112 | +1272=>600, 1273=>600, 1296=>600, 1297=>600, 1298=>600, 1299=>600, 1306=>600, 1307=>600, 1308=>600, 1309=>600, |
|
113 | +1310=>600, 1311=>600, 1456=>0, 1457=>0, 1458=>0, 1459=>0, 1460=>0, 1461=>0, 1462=>0, 1463=>0, |
|
114 | +1464=>0, 1465=>0, 1467=>0, 1468=>0, 1469=>0, 1470=>600, 1471=>0, 1472=>600, 1473=>0, 1474=>0, |
|
115 | +1475=>600, 1476=>0, 1488=>600, 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600, 1495=>600, |
|
116 | +1496=>600, 1497=>600, 1498=>600, 1499=>600, 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, |
|
117 | +1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600, 1513=>600, 1514=>600, 1520=>600, |
|
118 | +1521=>600, 1522=>600, 1523=>600, 1524=>600, 4304=>600, 4305=>600, 4306=>600, 4307=>600, 4308=>600, 4309=>600, |
|
119 | +4310=>600, 4311=>600, 4312=>600, 4313=>600, 4314=>600, 4315=>600, 4316=>600, 4317=>600, 4318=>600, 4319=>600, |
|
120 | +4320=>600, 4321=>600, 4322=>600, 4323=>600, 4324=>600, 4325=>600, 4326=>600, 4327=>600, 4328=>600, 4329=>600, |
|
121 | +4330=>600, 4331=>600, 4332=>600, 4333=>600, 4334=>600, 4335=>600, 4336=>600, 4337=>600, 4338=>600, 4339=>600, |
|
122 | +4340=>600, 4341=>600, 4345=>600, 4347=>600, 7680=>600, 7681=>600, 7682=>600, 7683=>600, 7684=>600, 7685=>600, |
|
123 | +7686=>600, 7687=>600, 7688=>600, 7689=>600, 7690=>600, 7691=>600, 7692=>600, 7693=>600, 7694=>600, 7695=>600, |
|
124 | +7696=>600, 7697=>600, 7698=>600, 7699=>600, 7700=>600, 7701=>600, 7702=>600, 7703=>600, 7704=>600, 7705=>600, |
|
125 | +7706=>600, 7707=>600, 7708=>600, 7709=>600, 7710=>600, 7711=>600, 7712=>600, 7713=>600, 7714=>600, 7715=>600, |
|
126 | +7716=>600, 7717=>600, 7718=>600, 7719=>600, 7720=>600, 7721=>600, 7722=>600, 7723=>600, 7724=>600, 7725=>600, |
|
127 | +7726=>600, 7727=>600, 7728=>600, 7729=>600, 7730=>600, 7731=>600, 7732=>600, 7733=>600, 7734=>600, 7735=>600, |
|
128 | +7736=>600, 7737=>600, 7738=>600, 7739=>600, 7740=>600, 7741=>600, 7742=>600, 7743=>600, 7744=>600, 7745=>600, |
|
129 | +7746=>600, 7747=>600, 7748=>600, 7749=>600, 7750=>600, 7751=>600, 7752=>600, 7753=>600, 7754=>600, 7755=>600, |
|
130 | +7756=>600, 7757=>600, 7758=>600, 7759=>600, 7760=>600, 7761=>600, 7762=>600, 7763=>600, 7764=>600, 7765=>600, |
|
131 | +7766=>600, 7767=>600, 7768=>600, 7769=>600, 7770=>600, 7771=>600, 7772=>600, 7773=>600, 7774=>600, 7775=>600, |
|
132 | +7776=>600, 7777=>600, 7778=>600, 7779=>600, 7780=>600, 7781=>600, 7782=>600, 7783=>600, 7784=>600, 7785=>600, |
|
133 | +7786=>600, 7787=>600, 7788=>600, 7789=>600, 7790=>600, 7791=>600, 7792=>600, 7793=>600, 7794=>600, 7795=>600, |
|
134 | +7796=>600, 7797=>600, 7798=>600, 7799=>600, 7800=>600, 7801=>600, 7802=>600, 7803=>600, 7804=>600, 7805=>600, |
|
135 | +7806=>600, 7807=>600, 7808=>600, 7809=>600, 7810=>600, 7811=>600, 7812=>600, 7813=>600, 7814=>600, 7815=>600, |
|
136 | +7816=>600, 7817=>600, 7818=>600, 7819=>600, 7820=>600, 7821=>600, 7822=>600, 7823=>600, 7824=>600, 7825=>600, |
|
137 | +7826=>600, 7827=>600, 7828=>600, 7829=>600, 7830=>600, 7831=>600, 7832=>600, 7833=>600, 7834=>600, 7835=>600, |
|
138 | +7840=>600, 7841=>600, 7842=>600, 7843=>600, 7844=>600, 7845=>600, 7846=>600, 7847=>600, 7848=>600, 7849=>600, |
|
139 | +7850=>600, 7851=>600, 7852=>600, 7853=>600, 7854=>600, 7855=>600, 7856=>600, 7857=>600, 7858=>600, 7859=>600, |
|
140 | +7860=>600, 7861=>600, 7862=>600, 7863=>600, 7864=>600, 7865=>600, 7866=>600, 7867=>600, 7868=>600, 7869=>600, |
|
141 | +7870=>600, 7871=>600, 7872=>600, 7873=>600, 7874=>600, 7875=>600, 7876=>600, 7877=>600, 7878=>600, 7879=>600, |
|
142 | +7880=>600, 7881=>600, 7882=>600, 7883=>600, 7884=>600, 7885=>600, 7886=>600, 7887=>600, 7888=>600, 7889=>600, |
|
143 | +7890=>600, 7891=>600, 7892=>600, 7893=>600, 7894=>600, 7895=>600, 7896=>600, 7897=>600, 7898=>600, 7899=>600, |
|
144 | +7900=>600, 7901=>600, 7902=>600, 7903=>600, 7904=>600, 7905=>600, 7906=>600, 7907=>600, 7908=>600, 7909=>600, |
|
145 | +7910=>600, 7911=>600, 7912=>600, 7913=>600, 7914=>600, 7915=>600, 7916=>600, 7917=>600, 7918=>600, 7919=>600, |
|
146 | +7920=>600, 7921=>600, 7922=>600, 7923=>600, 7924=>600, 7925=>600, 7926=>600, 7927=>600, 7928=>600, 7929=>600, |
|
147 | +8192=>600, 8193=>600, 8194=>600, 8195=>600, 8196=>600, 8197=>600, 8198=>600, 8199=>600, 8200=>600, 8201=>600, |
|
148 | +8202=>600, 8203=>600, 8204=>0, 8205=>0, 8206=>0, 8207=>0, 8208=>600, 8209=>600, 8210=>600, 8213=>600, |
|
149 | +8214=>600, 8215=>600, 8219=>600, 8223=>600, 8227=>600, 8228=>600, 8229=>600, 8231=>600, 8232=>600, 8233=>600, |
|
150 | +8234=>600, 8235=>600, 8236=>600, 8237=>600, 8238=>600, 8239=>600, 8241=>600, 8242=>600, 8243=>600, 8244=>600, |
|
151 | +8245=>600, 8246=>600, 8247=>600, 8248=>600, 8251=>600, 8252=>600, 8253=>600, 8254=>600, 8255=>600, 8256=>600, |
|
152 | +8257=>600, 8258=>600, 8259=>600, 8260=>600, 8261=>600, 8262=>600, 8263=>600, 8264=>600, 8265=>600, 8266=>600, |
|
153 | +8267=>600, 8268=>600, 8269=>600, 8270=>600, 8271=>600, 8272=>600, 8273=>600, 8274=>600, 8275=>600, 8276=>600, |
|
154 | +8277=>600, 8278=>600, 8279=>600, 8280=>600, 8281=>600, 8282=>600, 8283=>600, 8284=>600, 8285=>600, 8286=>600, |
|
155 | +8287=>600, 8288=>600, 8289=>600, 8290=>600, 8291=>600, 8292=>600, 8298=>600, 8299=>600, 8300=>600, 8301=>600, |
|
156 | +8302=>600, 8303=>600, 8304=>600, 8305=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600, |
|
157 | +8314=>600, 8315=>600, 8316=>600, 8317=>600, 8318=>600, 8319=>600, 8320=>600, 8321=>600, 8322=>600, 8323=>600, |
|
158 | +8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8330=>600, 8331=>600, 8332=>600, 8333=>600, |
|
159 | +8334=>600, 8336=>600, 8337=>600, 8338=>600, 8339=>600, 8340=>600, 8355=>600, 8356=>600, 8362=>600, 8373=>600, |
|
160 | +8448=>600, 8449=>600, 8451=>600, 8453=>600, 8454=>600, 8457=>600, 8465=>600, 8466=>600, 8470=>600, 8472=>600, |
|
161 | +8476=>600, 8481=>600, 8486=>600, 8487=>600, 8489=>600, 8490=>600, 8491=>600, 8498=>600, 8501=>600, 8502=>600, |
|
162 | +8503=>600, 8504=>600, 8506=>600, 8507=>600, 8523=>600, 8531=>600, 8532=>600, 8533=>600, 8534=>600, 8535=>600, |
|
163 | +8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8544=>600, 8545=>600, |
|
164 | +8546=>600, 8547=>600, 8548=>600, 8549=>600, 8550=>600, 8553=>600, 8556=>600, 8557=>600, 8558=>600, 8559=>600, |
|
165 | +8560=>600, 8564=>600, 8569=>600, 8572=>600, 8573=>600, 8574=>600, 8575=>600, 8592=>600, 8593=>600, 8594=>600, |
|
166 | +8595=>600, 8704=>600, 8706=>600, 8707=>600, 8709=>600, 8710=>600, 8711=>600, 8712=>600, 8713=>600, 8715=>600, |
|
167 | +8716=>600, 8721=>600, 8722=>600, 8723=>600, 8725=>600, 8730=>600, 8733=>600, 8734=>600, 8735=>600, 8756=>600, |
|
168 | +8800=>600, 8801=>600, 8804=>600, 8805=>600, 8834=>600, 8835=>600, 8836=>600, 8837=>600, 8838=>600, 8839=>600, |
|
169 | +8869=>600, 8976=>600, 9001=>600, 9002=>600, 9251=>600, 9472=>600, 9473=>600, 9474=>600, 9475=>600, 9476=>600, |
|
170 | +9477=>600, 9478=>600, 9479=>600, 9480=>600, 9481=>600, 9482=>600, 9483=>600, 9484=>600, 9485=>600, 9486=>600, |
|
171 | +9487=>600, 9488=>600, 9489=>600, 9490=>600, 9491=>600, 9492=>600, 9493=>600, 9494=>600, 9495=>600, 9496=>600, |
|
172 | +9497=>600, 9498=>600, 9499=>600, 9500=>600, 9501=>600, 9502=>600, 9503=>600, 9504=>600, 9505=>600, 9506=>600, |
|
173 | +9507=>600, 9508=>600, 9509=>600, 9510=>600, 9511=>600, 9512=>600, 9513=>600, 9514=>600, 9515=>600, 9516=>600, |
|
174 | +9517=>600, 9518=>600, 9519=>600, 9520=>600, 9521=>600, 9522=>600, 9523=>600, 9524=>600, 9525=>600, 9526=>600, |
|
175 | +9527=>600, 9528=>600, 9529=>600, 9530=>600, 9531=>600, 9532=>600, 9533=>600, 9534=>600, 9535=>600, 9536=>600, |
|
176 | +9537=>600, 9538=>600, 9539=>600, 9540=>600, 9541=>600, 9542=>600, 9543=>600, 9544=>600, 9545=>600, 9546=>600, |
|
177 | +9547=>600, 9548=>600, 9549=>600, 9550=>600, 9551=>600, 9552=>600, 9553=>600, 9554=>600, 9555=>600, 9556=>600, |
|
178 | +9557=>600, 9558=>600, 9559=>600, 9560=>600, 9561=>600, 9562=>600, 9563=>600, 9564=>600, 9565=>600, 9566=>600, |
|
179 | +9567=>600, 9568=>600, 9569=>600, 9570=>600, 9571=>600, 9572=>600, 9573=>600, 9574=>600, 9575=>600, 9576=>600, |
|
180 | +9577=>600, 9578=>600, 9579=>600, 9580=>600, 9581=>600, 9582=>600, 9583=>600, 9584=>600, 9585=>600, 9586=>600, |
|
181 | +9587=>600, 9588=>600, 9589=>600, 9590=>600, 9591=>600, 9592=>600, 9593=>600, 9594=>600, 9595=>600, 9596=>600, |
|
182 | +9597=>600, 9598=>600, 9599=>600, 9600=>600, 9601=>600, 9602=>600, 9603=>600, 9604=>600, 9605=>600, 9606=>600, |
|
183 | +9607=>600, 9608=>600, 9609=>600, 9610=>600, 9611=>600, 9612=>600, 9613=>600, 9614=>600, 9615=>600, 9616=>600, |
|
184 | +9617=>600, 9618=>600, 9619=>600, 9620=>600, 9621=>600, 9632=>600, 9633=>600, 9635=>600, 9636=>600, 9637=>600, |
|
185 | +9638=>600, 9639=>600, 9640=>600, 9641=>600, 9642=>600, 9643=>600, 9644=>600, 9645=>600, 9646=>600, 9647=>600, |
|
186 | +9648=>600, 9649=>600, 9650=>600, 9651=>600, 9652=>600, 9653=>600, 9654=>600, 9655=>600, 9656=>600, 9657=>600, |
|
187 | +9658=>600, 9660=>600, 9661=>600, 9662=>600, 9663=>600, 9664=>600, 9665=>600, 9666=>600, 9667=>600, 9668=>600, |
|
188 | +9669=>600, 9670=>600, 9671=>600, 9673=>600, 9674=>600, 9675=>600, 9677=>600, 9679=>600, 9680=>600, 9681=>600, |
|
189 | +9682=>600, 9683=>600, 9684=>600, 9685=>600, 9686=>600, 9687=>600, 9688=>600, 9689=>600, 9698=>600, 9699=>600, |
|
190 | +9700=>600, 9701=>600, 9702=>600, 9703=>600, 9704=>600, 9705=>600, 9706=>600, 9707=>600, 9708=>600, 9709=>600, |
|
191 | +9710=>600, 9712=>600, 9713=>600, 9714=>600, 9715=>600, 9716=>600, 9717=>600, 9718=>600, 9719=>600, 9735=>600, |
|
192 | +9736=>600, 9737=>600, 9776=>600, 9777=>600, 9778=>600, 9779=>600, 9780=>600, 9781=>600, 9782=>600, 9783=>600, |
|
193 | +9785=>600, 9786=>600, 9787=>600, 9824=>600, 9825=>600, 9826=>600, 9827=>600, 9828=>600, 9829=>600, 9830=>600, |
|
194 | +9831=>600, 9833=>600, 9834=>600, 9835=>600, 9836=>600, 9837=>600, 9838=>600, 9839=>600, 64256=>600, 64257=>600, |
|
195 | +64258=>600, 64285=>600, 64287=>600, 64288=>600, 64298=>600, 64299=>600, 64300=>600, 64301=>600, 64302=>600, 64303=>600, |
|
196 | +64304=>600, 64305=>600, 64306=>600, 64307=>600, 64308=>600, 64309=>600, 64310=>600, 64312=>600, 64313=>600, 64314=>600, |
|
197 | +64315=>600, 64316=>600, 64318=>600, 64320=>600, 64321=>600, 64323=>600, 64324=>600, 64326=>600, 64327=>600, 64328=>600, |
|
198 | +64329=>600, 64330=>600, 64331=>600, 64332=>600, 64333=>600, 64334=>600, 64335=>600, 65533=>600); |
|
199 | +$enc = ''; |
|
200 | +$diff = ''; |
|
201 | +$file = 'freemonob.z'; |
|
202 | +$ctg = 'freemonob.ctg.z'; |
|
203 | +$originalsize = 164212; |
|
204 | 204 | ?> |
205 | 205 | \ No newline at end of file |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if ( !defined( 'ABSPATH' ) ) { |
|
2 | + exit; |
|
3 | +} |
|
2 | 4 | $type='TrueTypeUnicode'; |
3 | 5 | $name='FreeMonoBold'; |
4 | 6 | $desc=array('Ascent'=>800,'Descent'=>-200,'CapHeight'=>10,'Flags'=>32,'FontBBox'=>'[-604 -200 754 800]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600); |
@@ -1,458 +1,458 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
2 | -$type='TrueTypeUnicode'; |
|
3 | -$name='DejaVuSans-BoldOblique'; |
|
4 | -$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>-51,'Flags'=>96,'FontBBox'=>'[-1067 -385 2005 1121]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>600); |
|
5 | -$up=-63; |
|
6 | -$ut=44; |
|
7 | -$dw=600; |
|
8 | -$cw=array( |
|
9 | -0=>600,32=>348,33=>456,34=>521,35=>696,36=>696,37=>1002,38=>872,39=>306,40=>457, |
|
10 | -41=>457,42=>523,43=>838,44=>380,45=>415,46=>380,47=>365,48=>696,49=>696,50=>696, |
|
11 | -51=>696,52=>696,53=>696,54=>696,55=>696,56=>696,57=>696,58=>400,59=>400,60=>838, |
|
12 | -61=>838,62=>838,63=>580,64=>1000,65=>774,66=>762,67=>734,68=>830,69=>683,70=>683, |
|
13 | -71=>821,72=>837,73=>372,74=>372,75=>775,76=>637,77=>995,78=>837,79=>850,80=>733, |
|
14 | -81=>850,82=>770,83=>720,84=>682,85=>812,86=>774,87=>1103,88=>771,89=>724,90=>725, |
|
15 | -91=>457,92=>365,93=>457,94=>838,95=>500,96=>500,97=>675,98=>716,99=>593,100=>716, |
|
16 | -101=>678,102=>435,103=>716,104=>712,105=>343,106=>343,107=>665,108=>343,109=>1042,110=>712, |
|
17 | -111=>687,112=>716,113=>716,114=>493,115=>595,116=>478,117=>712,118=>652,119=>924,120=>645, |
|
18 | -121=>652,122=>582,123=>712,124=>365,125=>712,126=>838,8364=>696,8218=>380,402=>435,8222=>644, |
|
19 | -8230=>1000,8224=>500,8225=>500,710=>500,8240=>1454,352=>720,8249=>412,338=>1167,381=>725,8216=>380, |
|
20 | -8217=>380,8220=>644,8221=>644,8226=>639,8211=>500,8212=>1000,732=>500,8482=>1000,353=>595,8250=>412, |
|
21 | -339=>1094,382=>582,376=>724,160=>348,161=>456,162=>696,163=>696,164=>636,165=>696,166=>365, |
|
22 | -167=>500,168=>500,169=>1000,170=>564,171=>650,172=>838,173=>415,174=>1000,175=>500,176=>500, |
|
23 | -177=>838,178=>438,179=>438,180=>500,181=>736,182=>636,183=>380,184=>500,185=>438,186=>564, |
|
24 | -187=>650,188=>1035,189=>1035,190=>1035,191=>580,192=>774,193=>774,194=>774,195=>774,196=>774, |
|
25 | -197=>774,198=>1085,199=>734,200=>683,201=>683,202=>683,203=>683,204=>372,205=>372,206=>372, |
|
26 | -207=>372,208=>845,209=>837,210=>850,211=>850,212=>850,213=>850,214=>850,215=>838,216=>850, |
|
27 | -217=>812,218=>812,219=>812,220=>812,221=>724,222=>742,223=>719,224=>675,225=>675,226=>675, |
|
28 | -227=>675,228=>675,229=>675,230=>1048,231=>593,232=>678,233=>678,234=>678,235=>678,236=>343, |
|
29 | -237=>343,238=>343,239=>343,240=>687,241=>712,242=>687,243=>687,244=>687,245=>687,246=>687, |
|
30 | -247=>838,248=>687,249=>712,250=>712,251=>712,252=>712,253=>652,254=>716,255=>652,256=>774, |
|
31 | -257=>675,258=>774,259=>675,260=>774,261=>675,262=>734,263=>593,264=>734,265=>593,266=>734, |
|
32 | -267=>593,268=>734,269=>593,270=>830,271=>716,272=>845,273=>716,274=>683,275=>678,276=>683, |
|
33 | -277=>678,278=>683,279=>678,280=>683,281=>678,282=>683,283=>678,284=>821,285=>716,286=>821, |
|
34 | -287=>716,288=>821,289=>716,290=>821,291=>716,292=>837,293=>712,294=>974,295=>790,296=>372, |
|
35 | -297=>343,298=>372,299=>343,300=>372,301=>343,302=>372,303=>343,304=>372,305=>343,306=>744, |
|
36 | -307=>686,308=>372,309=>343,310=>775,311=>665,312=>665,313=>637,314=>343,315=>637,316=>343, |
|
37 | -317=>637,318=>343,319=>637,320=>343,321=>660,322=>375,323=>837,324=>712,325=>837,326=>712, |
|
38 | -327=>837,328=>712,329=>983,330=>837,331=>712,332=>850,333=>687,334=>850,335=>687,336=>850, |
|
39 | -337=>687,340=>770,341=>493,342=>770,343=>493,344=>770,345=>493,346=>720,347=>595,348=>720, |
|
40 | -349=>595,350=>720,351=>595,354=>682,355=>478,356=>682,357=>478,358=>682,359=>478,360=>812, |
|
41 | -361=>712,362=>812,363=>712,364=>812,365=>712,366=>812,367=>712,368=>812,369=>712,370=>812, |
|
42 | -371=>712,372=>1103,373=>924,374=>724,375=>652,377=>725,378=>582,379=>725,380=>582,383=>435, |
|
43 | -384=>716,385=>811,386=>762,387=>716,388=>762,389=>716,390=>734,391=>734,392=>593,393=>845, |
|
44 | -394=>879,395=>762,396=>716,397=>687,398=>683,399=>850,400=>696,401=>683,403=>821,404=>793, |
|
45 | -405=>1045,406=>436,407=>389,408=>775,409=>665,410=>360,411=>592,412=>1042,413=>837,414=>712, |
|
46 | -415=>850,416=>850,417=>687,418=>1114,419=>962,420=>782,421=>716,422=>770,423=>720,424=>595, |
|
47 | -425=>683,426=>552,427=>478,428=>707,429=>478,430=>682,431=>812,432=>712,433=>769,434=>813, |
|
48 | -435=>797,436=>778,437=>725,438=>582,439=>772,440=>772,441=>641,442=>582,443=>696,444=>772, |
|
49 | -445=>641,446=>573,447=>716,448=>372,449=>659,450=>544,451=>372,452=>1548,453=>1450,454=>1307, |
|
50 | -455=>977,456=>979,457=>670,458=>1193,459=>1213,460=>1063,461=>774,462=>675,463=>372,464=>343, |
|
51 | -465=>850,466=>687,467=>812,468=>712,469=>812,470=>712,471=>812,472=>712,473=>812,474=>712, |
|
52 | -475=>812,476=>712,477=>678,478=>774,479=>675,480=>774,481=>675,482=>1085,483=>1048,484=>821, |
|
53 | -485=>716,486=>821,487=>716,488=>775,489=>665,490=>850,491=>687,492=>850,493=>687,494=>772, |
|
54 | -495=>582,496=>343,497=>1548,498=>1450,499=>1307,500=>821,501=>716,502=>1289,503=>787,504=>837, |
|
55 | -505=>712,506=>774,507=>675,508=>1085,509=>1048,510=>850,511=>687,512=>774,513=>675,514=>774, |
|
56 | -515=>675,516=>683,517=>678,518=>683,519=>678,520=>372,521=>343,522=>372,523=>343,524=>850, |
|
57 | -525=>687,526=>850,527=>687,528=>770,529=>493,530=>770,531=>493,532=>812,533=>712,534=>812, |
|
58 | -535=>712,536=>720,537=>595,538=>682,539=>478,540=>690,541=>607,542=>837,543=>712,544=>837, |
|
59 | -545=>865,546=>809,547=>659,548=>725,549=>582,550=>774,551=>675,552=>683,553=>678,554=>850, |
|
60 | -555=>687,556=>850,557=>687,558=>850,559=>687,560=>850,561=>687,562=>724,563=>652,564=>492, |
|
61 | -565=>867,566=>512,567=>343,568=>1088,569=>1088,570=>774,571=>734,572=>593,573=>637,574=>682, |
|
62 | -575=>595,576=>582,577=>782,578=>614,579=>762,580=>812,581=>774,582=>683,583=>678,584=>372, |
|
63 | -585=>343,586=>860,587=>791,588=>770,589=>493,590=>724,591=>652,592=>675,593=>716,594=>716, |
|
64 | -595=>716,596=>593,597=>593,598=>791,599=>792,600=>678,601=>678,602=>876,603=>557,604=>545, |
|
65 | -605=>774,606=>731,607=>343,608=>792,609=>716,610=>627,611=>735,612=>635,613=>712,614=>712, |
|
66 | -615=>712,616=>545,617=>440,618=>545,619=>559,620=>693,621=>343,622=>841,623=>1042,624=>1042, |
|
67 | -625=>1042,626=>712,627=>793,628=>642,629=>687,630=>909,631=>682,632=>796,633=>538,634=>538, |
|
68 | -635=>650,636=>493,637=>493,638=>596,639=>596,640=>642,641=>642,642=>595,643=>415,644=>435, |
|
69 | -645=>605,646=>552,647=>478,648=>478,649=>920,650=>769,651=>670,652=>652,653=>924,654=>652, |
|
70 | -655=>724,656=>694,657=>684,658=>641,659=>641,660=>573,661=>573,662=>573,663=>573,664=>850, |
|
71 | -665=>633,666=>731,667=>685,668=>691,669=>343,670=>732,671=>539,672=>792,673=>573,674=>573, |
|
72 | -675=>1156,676=>1214,677=>1155,678=>974,679=>769,680=>929,681=>1026,682=>792,683=>780,684=>591, |
|
73 | -685=>415,686=>677,687=>789,688=>456,689=>456,690=>219,691=>315,692=>315,693=>315,694=>411, |
|
74 | -695=>591,696=>417,697=>302,698=>521,699=>380,700=>380,701=>380,702=>366,703=>366,704=>326, |
|
75 | -705=>326,706=>500,707=>500,708=>500,709=>500,711=>500,712=>306,713=>500,714=>500,715=>500, |
|
76 | -716=>306,717=>500,718=>500,719=>500,720=>337,721=>337,722=>366,723=>366,724=>500,725=>500, |
|
77 | -726=>416,727=>328,728=>500,729=>500,730=>500,731=>500,733=>500,734=>351,735=>500,736=>412, |
|
78 | -737=>219,738=>381,739=>413,740=>326,741=>500,742=>500,743=>500,744=>500,745=>500,748=>500, |
|
79 | -749=>500,750=>644,755=>500,759=>500,768=>0,769=>0,770=>0,771=>0,772=>0,773=>0, |
|
80 | -774=>0,775=>0,776=>0,777=>0,778=>0,779=>0,780=>0,781=>0,782=>0,783=>0, |
|
81 | -784=>0,785=>0,786=>0,787=>0,788=>0,789=>0,790=>0,791=>0,792=>0,793=>0, |
|
82 | -794=>0,795=>0,796=>0,797=>0,798=>0,799=>0,800=>0,801=>0,802=>0,803=>0, |
|
83 | -804=>0,805=>0,806=>0,807=>0,808=>0,809=>0,810=>0,811=>0,812=>0,813=>0, |
|
84 | -814=>0,815=>0,816=>0,817=>0,818=>0,819=>0,820=>0,821=>0,822=>0,823=>0, |
|
85 | -824=>0,825=>0,826=>0,827=>0,828=>0,829=>0,830=>0,831=>0,832=>0,833=>0, |
|
86 | -834=>0,835=>0,836=>0,837=>0,838=>0,839=>0,840=>0,841=>0,842=>0,843=>0, |
|
87 | -844=>0,845=>0,846=>0,847=>0,849=>0,850=>0,851=>0,855=>0,856=>0,858=>0, |
|
88 | -860=>0,861=>0,862=>0,863=>0,864=>0,865=>0,866=>0,880=>698,881=>565,882=>1022, |
|
89 | -883=>836,884=>302,885=>302,886=>837,887=>701,890=>500,891=>593,892=>550,893=>549,894=>400, |
|
90 | -900=>441,901=>500,902=>797,903=>380,904=>846,905=>1009,906=>563,908=>891,910=>980,911=>894, |
|
91 | -912=>390,913=>774,914=>762,915=>637,916=>774,917=>683,918=>725,919=>837,920=>850,921=>372, |
|
92 | -922=>775,923=>774,924=>995,925=>837,926=>632,927=>850,928=>837,929=>733,931=>683,932=>682, |
|
93 | -933=>724,934=>850,935=>771,936=>850,937=>850,938=>372,939=>724,940=>687,941=>557,942=>712, |
|
94 | -943=>390,944=>675,945=>687,946=>716,947=>681,948=>687,949=>557,950=>591,951=>712,952=>687, |
|
95 | -953=>390,954=>710,955=>633,956=>736,957=>681,958=>591,959=>687,960=>791,961=>716,962=>593, |
|
96 | -963=>779,964=>638,965=>675,966=>782,967=>645,968=>794,969=>869,970=>390,971=>675,972=>687, |
|
97 | -973=>675,974=>869,975=>775,976=>651,977=>661,978=>746,979=>981,980=>746,981=>796,982=>869, |
|
98 | -983=>744,984=>850,985=>687,986=>734,987=>593,988=>683,989=>494,990=>702,991=>660,992=>919, |
|
99 | -993=>627,994=>1093,995=>837,996=>832,997=>716,998=>928,999=>744,1000=>733,1001=>650,1002=>789, |
|
100 | -1003=>671,1004=>752,1005=>716,1006=>682,1007=>590,1008=>744,1009=>716,1010=>593,1011=>343,1012=>850, |
|
101 | -1013=>645,1014=>645,1015=>742,1016=>716,1017=>734,1018=>995,1019=>732,1020=>716,1021=>734,1022=>734, |
|
102 | -1023=>698,1024=>683,1025=>683,1026=>878,1027=>637,1028=>734,1029=>720,1030=>372,1031=>372,1032=>372, |
|
103 | -1033=>1154,1034=>1130,1035=>878,1036=>817,1037=>837,1038=>771,1039=>837,1040=>774,1041=>762,1042=>762, |
|
104 | -1043=>637,1044=>891,1045=>683,1046=>1224,1047=>710,1048=>837,1049=>837,1050=>817,1051=>831,1052=>995, |
|
105 | -1053=>837,1054=>850,1055=>837,1056=>733,1057=>734,1058=>682,1059=>771,1060=>992,1061=>771,1062=>928, |
|
106 | -1063=>808,1064=>1235,1065=>1326,1066=>939,1067=>1036,1068=>762,1069=>734,1070=>1174,1071=>770,1072=>675, |
|
107 | -1073=>698,1074=>633,1075=>522,1076=>808,1077=>678,1078=>995,1079=>581,1080=>701,1081=>701,1082=>679, |
|
108 | -1083=>732,1084=>817,1085=>691,1086=>687,1087=>691,1088=>716,1089=>593,1090=>580,1091=>652,1092=>992, |
|
109 | -1093=>645,1094=>741,1095=>687,1096=>1062,1097=>1105,1098=>751,1099=>904,1100=>632,1101=>593,1102=>972, |
|
110 | -1103=>642,1104=>678,1105=>678,1106=>714,1107=>522,1108=>593,1109=>595,1110=>343,1111=>343,1112=>343, |
|
111 | -1113=>991,1114=>956,1115=>734,1116=>679,1117=>701,1118=>652,1119=>691,1120=>1093,1121=>869,1122=>840, |
|
112 | -1123=>736,1124=>1012,1125=>839,1126=>992,1127=>832,1128=>1358,1129=>1121,1130=>850,1131=>687,1132=>1236, |
|
113 | -1133=>1007,1134=>696,1135=>557,1136=>1075,1137=>1061,1138=>850,1139=>687,1140=>850,1141=>695,1142=>850, |
|
114 | -1143=>695,1144=>1148,1145=>1043,1146=>1074,1147=>863,1148=>1405,1149=>1173,1150=>1093,1151=>869,1152=>734, |
|
115 | -1153=>593,1154=>652,1155=>0,1156=>0,1157=>0,1158=>0,1159=>0,1160=>418,1161=>418,1162=>938, |
|
116 | -1163=>806,1164=>762,1165=>611,1166=>736,1167=>718,1168=>637,1169=>522,1170=>666,1171=>543,1172=>789, |
|
117 | -1173=>522,1174=>1224,1175=>995,1176=>710,1177=>581,1178=>775,1179=>679,1180=>817,1181=>679,1182=>817, |
|
118 | -1183=>679,1184=>1015,1185=>826,1186=>837,1187=>691,1188=>1103,1189=>871,1190=>1254,1191=>979,1192=>946, |
|
119 | -1193=>859,1194=>734,1195=>593,1196=>682,1197=>580,1198=>724,1199=>652,1200=>724,1201=>652,1202=>771, |
|
120 | -1203=>645,1204=>1104,1205=>1001,1206=>808,1207=>687,1208=>808,1209=>687,1210=>808,1211=>712,1212=>1026, |
|
121 | -1213=>810,1214=>1026,1215=>810,1216=>372,1217=>1224,1218=>995,1219=>778,1220=>629,1221=>933,1222=>804, |
|
122 | -1223=>837,1224=>691,1225=>938,1226=>806,1227=>808,1228=>687,1229=>1096,1230=>932,1231=>343,1232=>774, |
|
123 | -1233=>675,1234=>774,1235=>675,1236=>1085,1237=>1048,1238=>683,1239=>678,1240=>850,1241=>678,1242=>850, |
|
124 | -1243=>678,1244=>1224,1245=>995,1246=>710,1247=>581,1248=>772,1249=>641,1250=>837,1251=>701,1252=>837, |
|
125 | -1253=>701,1254=>850,1255=>687,1256=>850,1257=>687,1258=>850,1259=>687,1260=>734,1261=>593,1262=>771, |
|
126 | -1263=>652,1264=>771,1265=>652,1266=>771,1267=>652,1268=>808,1269=>687,1270=>637,1271=>522,1272=>1036, |
|
127 | -1273=>904,1274=>666,1275=>543,1276=>771,1277=>645,1278=>771,1279=>645,1280=>762,1281=>608,1282=>1159, |
|
128 | -1283=>893,1284=>1119,1285=>920,1286=>828,1287=>693,1288=>1242,1289=>1017,1290=>1289,1291=>1013,1292=>839, |
|
129 | -1293=>638,1294=>938,1295=>803,1296=>696,1297=>557,1298=>831,1299=>732,1300=>1286,1301=>1070,1302=>1065, |
|
130 | -1303=>982,1304=>1082,1305=>960,1306=>850,1307=>716,1308=>1103,1309=>924,1312=>1248,1313=>1022,1314=>1254, |
|
131 | -1315=>979,1316=>957,1317=>807,1329=>984,1330=>812,1331=>984,1332=>984,1333=>812,1334=>777,1335=>812, |
|
132 | -1336=>812,1337=>975,1338=>984,1339=>812,1340=>710,1341=>1078,1342=>1136,1343=>812,1344=>710,1345=>757, |
|
133 | -1346=>984,1347=>876,1348=>984,1349=>793,1350=>984,1351=>812,1352=>812,1353=>812,1354=>958,1355=>777, |
|
134 | -1356=>984,1357=>812,1358=>984,1359=>720,1360=>812,1361=>793,1362=>895,1363=>850,1364=>936,1365=>850, |
|
135 | -1366=>720,1369=>366,1370=>380,1371=>550,1372=>550,1373=>380,1374=>546,1375=>521,1377=>1042,1378=>712, |
|
136 | -1379=>866,1380=>868,1381=>712,1382=>817,1383=>653,1384=>712,1385=>811,1386=>817,1387=>712,1388=>498, |
|
137 | -1389=>1018,1390=>716,1391=>712,1392=>712,1393=>716,1394=>819,1395=>712,1396=>751,1397=>343,1398=>882, |
|
138 | -1399=>559,1400=>712,1401=>559,1402=>1042,1403=>559,1404=>863,1405=>712,1406=>813,1407=>1042,1408=>712, |
|
139 | -1409=>716,1410=>571,1411=>1042,1412=>778,1413=>687,1414=>720,1415=>862,1417=>400,1418=>487,1456=>0, |
|
140 | -1457=>0,1458=>0,1459=>0,1460=>0,1461=>0,1462=>0,1463=>0,1464=>0,1465=>0,1466=>0, |
|
141 | -1467=>0,1468=>0,1469=>0,1470=>415,1471=>0,1472=>372,1473=>0,1474=>0,1475=>372,1478=>497, |
|
142 | -1479=>0,1488=>751,1489=>673,1490=>537,1491=>654,1492=>712,1493=>343,1494=>491,1495=>712,1496=>724, |
|
143 | -1497=>343,1498=>649,1499=>650,1500=>679,1501=>712,1502=>775,1503=>343,1504=>497,1505=>773,1506=>678, |
|
144 | -1507=>718,1508=>687,1509=>628,1510=>751,1511=>729,1512=>649,1513=>949,1514=>751,1520=>664,1521=>664, |
|
145 | -1522=>663,1523=>444,1524=>710,3647=>743,3713=>815,3714=>748,3716=>749,3719=>569,3720=>742,3722=>744, |
|
146 | -3725=>761,3732=>706,3733=>704,3734=>747,3735=>819,3737=>730,3738=>727,3739=>727,3740=>922,3741=>827, |
|
147 | -3742=>866,3743=>866,3745=>836,3746=>761,3747=>770,3749=>769,3751=>713,3754=>827,3755=>1031,3757=>724, |
|
148 | -3758=>784,3759=>934,3760=>688,3761=>0,3762=>610,3763=>610,3764=>0,3765=>0,3766=>0,3767=>0, |
|
149 | -3768=>0,3769=>0,3771=>0,3772=>0,3773=>670,3776=>516,3777=>860,3778=>516,3779=>650,3780=>632, |
|
150 | -3782=>759,3784=>0,3785=>0,3786=>0,3787=>0,3788=>0,3789=>0,3792=>771,3793=>771,3794=>693, |
|
151 | -3795=>836,3796=>729,3797=>729,3798=>849,3799=>790,3800=>759,3801=>910,3804=>1363,3805=>1363,4256=>918, |
|
152 | -4257=>744,4258=>739,4259=>837,4260=>649,4261=>773,4262=>857,4263=>889,4264=>530,4265=>633,4266=>857, |
|
153 | -4267=>900,4268=>643,4269=>903,4270=>814,4271=>752,4272=>869,4273=>643,4274=>643,4275=>886,4276=>886, |
|
154 | -4277=>733,4278=>653,4279=>643,4280=>646,4281=>643,4282=>790,4283=>902,4284=>633,4285=>619,4286=>643, |
|
155 | -4287=>778,4288=>892,4289=>601,4290=>742,4291=>616,4292=>633,4293=>742,4304=>553,4305=>552,4306=>596, |
|
156 | -4307=>815,4308=>562,4309=>563,4310=>553,4311=>827,4312=>553,4313=>543,4314=>1074,4315=>563,4316=>563, |
|
157 | -4317=>812,4318=>552,4319=>591,4320=>822,4321=>563,4322=>690,4323=>583,4324=>813,4325=>562,4326=>813, |
|
158 | -4327=>563,4328=>563,4329=>563,4330=>632,4331=>563,4332=>563,4333=>552,4334=>563,4335=>563,4336=>558, |
|
159 | -4337=>604,4338=>552,4339=>552,4340=>553,4341=>605,4342=>852,4343=>635,4344=>563,4345=>596,4346=>542, |
|
160 | -4347=>684,4348=>368,5121=>774,5122=>774,5123=>774,5124=>774,5125=>905,5126=>905,5127=>905,5129=>905, |
|
161 | -5130=>905,5131=>905,5132=>1018,5133=>1009,5134=>1018,5135=>1009,5136=>1018,5137=>1009,5138=>1149,5139=>1140, |
|
162 | -5140=>1149,5141=>1140,5142=>905,5143=>1149,5144=>1142,5145=>1149,5146=>1142,5147=>905,5149=>310,5150=>529, |
|
163 | -5151=>425,5152=>425,5153=>395,5154=>395,5155=>395,5156=>395,5157=>564,5158=>470,5159=>310,5160=>395, |
|
164 | -5161=>395,5162=>395,5163=>1213,5164=>986,5165=>1216,5166=>1297,5167=>774,5168=>774,5169=>774,5170=>774, |
|
165 | -5171=>886,5172=>886,5173=>886,5175=>886,5176=>886,5177=>886,5178=>1018,5179=>1009,5180=>1018,5181=>1009, |
|
166 | -5182=>1018,5183=>1009,5184=>1149,5185=>1140,5186=>1149,5187=>1140,5188=>1149,5189=>1142,5190=>1149,5191=>1142, |
|
167 | -5192=>886,5193=>576,5194=>229,5196=>812,5197=>812,5198=>812,5199=>812,5200=>815,5201=>815,5202=>815, |
|
168 | -5204=>815,5205=>815,5206=>815,5207=>1056,5208=>1048,5209=>1056,5210=>1048,5211=>1056,5212=>1048,5213=>1060, |
|
169 | -5214=>1054,5215=>1060,5216=>1054,5217=>1060,5218=>1052,5219=>1060,5220=>1052,5221=>1060,5222=>483,5223=>1005, |
|
170 | -5224=>1005,5225=>1023,5226=>1017,5227=>743,5228=>743,5229=>743,5230=>743,5231=>743,5232=>743,5233=>743, |
|
171 | -5234=>743,5235=>743,5236=>1029,5237=>975,5238=>980,5239=>975,5240=>980,5241=>975,5242=>1029,5243=>975, |
|
172 | -5244=>1029,5245=>975,5246=>980,5247=>975,5248=>980,5249=>975,5250=>980,5251=>501,5252=>501,5253=>938, |
|
173 | -5254=>938,5255=>938,5256=>938,5257=>743,5258=>743,5259=>743,5260=>743,5261=>743,5262=>743,5263=>743, |
|
174 | -5264=>743,5265=>743,5266=>1029,5267=>975,5268=>1029,5269=>975,5270=>1029,5271=>975,5272=>1029,5273=>975, |
|
175 | -5274=>1029,5275=>975,5276=>1029,5277=>975,5278=>1029,5279=>975,5280=>1029,5281=>501,5282=>501,5283=>626, |
|
176 | -5284=>626,5285=>626,5286=>626,5287=>626,5288=>626,5289=>626,5290=>626,5291=>626,5292=>881,5293=>854, |
|
177 | -5294=>863,5295=>874,5296=>863,5297=>874,5298=>881,5299=>874,5300=>881,5301=>874,5302=>863,5303=>874, |
|
178 | -5304=>863,5305=>874,5306=>863,5307=>436,5308=>548,5309=>436,5312=>988,5313=>988,5314=>988,5315=>988, |
|
179 | -5316=>931,5317=>931,5318=>931,5319=>931,5320=>931,5321=>1238,5322=>1247,5323=>1200,5324=>1228,5325=>1200, |
|
180 | -5326=>1228,5327=>931,5328=>660,5329=>497,5330=>660,5331=>988,5332=>988,5333=>988,5334=>988,5335=>931, |
|
181 | -5336=>931,5337=>931,5338=>931,5339=>931,5340=>1231,5341=>1247,5342=>1283,5343=>1228,5344=>1283,5345=>1228, |
|
182 | -5346=>1228,5347=>1214,5348=>1228,5349=>1214,5350=>1283,5351=>1228,5352=>1283,5353=>1228,5354=>660,5356=>886, |
|
183 | -5357=>730,5358=>730,5359=>730,5360=>730,5361=>730,5362=>730,5363=>730,5364=>730,5365=>730,5366=>998, |
|
184 | -5367=>958,5368=>967,5369=>989,5370=>967,5371=>989,5372=>998,5373=>958,5374=>998,5375=>958,5376=>967, |
|
185 | -5377=>989,5378=>967,5379=>989,5380=>967,5381=>493,5382=>460,5383=>493,5392=>923,5393=>923,5394=>923, |
|
186 | -5395=>1136,5396=>1136,5397=>1136,5398=>1136,5399=>1209,5400=>1202,5401=>1209,5402=>1202,5403=>1209,5404=>1202, |
|
187 | -5405=>1431,5406=>1420,5407=>1431,5408=>1420,5409=>1431,5410=>1420,5411=>1431,5412=>1420,5413=>746,5414=>776, |
|
188 | -5415=>776,5416=>776,5417=>776,5418=>776,5419=>776,5420=>776,5421=>776,5422=>776,5423=>1003,5424=>1003, |
|
189 | -5425=>1013,5426=>996,5427=>1013,5428=>996,5429=>1003,5430=>1003,5431=>1003,5432=>1003,5433=>1013,5434=>996, |
|
190 | -5435=>1013,5436=>996,5437=>1013,5438=>495,5440=>395,5441=>510,5442=>1033,5443=>1033,5444=>976,5445=>976, |
|
191 | -5446=>976,5447=>976,5448=>733,5449=>733,5450=>733,5451=>733,5452=>733,5453=>733,5454=>1003,5455=>959, |
|
192 | -5456=>495,5458=>886,5459=>774,5460=>774,5461=>774,5462=>774,5463=>928,5464=>928,5465=>928,5466=>928, |
|
193 | -5467=>1172,5468=>1142,5469=>602,5470=>812,5471=>812,5472=>812,5473=>812,5474=>812,5475=>812,5476=>815, |
|
194 | -5477=>815,5478=>815,5479=>815,5480=>1060,5481=>1052,5482=>548,5492=>977,5493=>977,5494=>977,5495=>977, |
|
195 | -5496=>977,5497=>977,5498=>977,5499=>618,5500=>837,5501=>510,5502=>1238,5503=>1238,5504=>1238,5505=>1238, |
|
196 | -5506=>1238,5507=>1238,5508=>1238,5509=>989,5514=>977,5515=>977,5516=>977,5517=>977,5518=>1591,5519=>1591, |
|
197 | -5520=>1591,5521=>1295,5522=>1295,5523=>1591,5524=>1591,5525=>848,5526=>1273,5536=>988,5537=>988,5538=>931, |
|
198 | -5539=>931,5540=>931,5541=>931,5542=>660,5543=>776,5544=>776,5545=>776,5546=>776,5547=>776,5548=>776, |
|
199 | -5549=>776,5550=>495,5551=>743,5598=>830,5601=>830,5702=>496,5703=>496,5742=>413,5743=>1238,5744=>1591, |
|
200 | -5745=>2016,5746=>2016,5747=>1720,5748=>1678,5749=>2016,5750=>2016,7424=>652,7425=>833,7426=>1048,7427=>608, |
|
201 | -7428=>593,7429=>676,7430=>676,7431=>559,7432=>557,7433=>343,7434=>494,7435=>665,7436=>539,7437=>817, |
|
202 | -7438=>701,7439=>687,7440=>593,7441=>660,7442=>660,7443=>660,7444=>1094,7446=>687,7447=>687,7448=>556, |
|
203 | -7449=>642,7450=>642,7451=>580,7452=>634,7453=>737,7454=>948,7455=>695,7456=>652,7457=>924,7458=>582, |
|
204 | -7459=>646,7462=>539,7463=>652,7464=>691,7465=>556,7466=>781,7467=>732,7468=>487,7469=>683,7470=>480, |
|
205 | -7472=>523,7473=>430,7474=>430,7475=>517,7476=>527,7477=>234,7478=>234,7479=>488,7480=>401,7481=>626, |
|
206 | -7482=>527,7483=>527,7484=>535,7485=>509,7486=>461,7487=>485,7488=>430,7489=>511,7490=>695,7491=>458, |
|
207 | -7492=>458,7493=>479,7494=>712,7495=>479,7496=>479,7497=>479,7498=>479,7499=>386,7500=>386,7501=>479, |
|
208 | -7502=>219,7503=>487,7504=>664,7505=>456,7506=>488,7507=>414,7508=>488,7509=>488,7510=>479,7511=>388, |
|
209 | -7512=>456,7513=>462,7514=>664,7515=>501,7517=>451,7518=>429,7519=>433,7520=>493,7521=>406,7522=>219, |
|
210 | -7523=>315,7524=>456,7525=>501,7526=>451,7527=>429,7528=>451,7529=>493,7530=>406,7543=>716,7544=>527, |
|
211 | -7547=>545,7557=>514,7579=>479,7580=>414,7581=>414,7582=>488,7583=>386,7584=>377,7585=>348,7586=>479, |
|
212 | -7587=>456,7588=>347,7589=>281,7590=>347,7591=>347,7592=>431,7593=>326,7594=>330,7595=>370,7596=>664, |
|
213 | -7597=>664,7598=>562,7599=>562,7600=>448,7601=>488,7602=>542,7603=>422,7604=>396,7605=>388,7606=>583, |
|
214 | -7607=>494,7608=>399,7609=>451,7610=>501,7611=>417,7612=>523,7613=>470,7614=>455,7615=>425,7620=>0, |
|
215 | -7621=>0,7622=>0,7623=>0,7624=>0,7625=>0,7680=>774,7681=>675,7682=>762,7683=>716,7684=>762, |
|
216 | -7685=>716,7686=>762,7687=>716,7688=>734,7689=>593,7690=>830,7691=>716,7692=>830,7693=>716,7694=>830, |
|
217 | -7695=>716,7696=>830,7697=>716,7698=>830,7699=>716,7700=>683,7701=>678,7702=>683,7703=>678,7704=>683, |
|
218 | -7705=>678,7706=>683,7707=>678,7708=>683,7709=>678,7710=>683,7711=>435,7712=>821,7713=>716,7714=>837, |
|
219 | -7715=>712,7716=>837,7717=>712,7718=>837,7719=>712,7720=>837,7721=>712,7722=>837,7723=>712,7724=>372, |
|
220 | -7725=>343,7726=>372,7727=>343,7728=>775,7729=>665,7730=>775,7731=>665,7732=>775,7733=>665,7734=>637, |
|
221 | -7735=>343,7736=>637,7737=>343,7738=>637,7739=>343,7740=>637,7741=>343,7742=>995,7743=>1042,7744=>995, |
|
222 | -7745=>1042,7746=>995,7747=>1042,7748=>837,7749=>712,7750=>837,7751=>712,7752=>837,7753=>712,7754=>837, |
|
223 | -7755=>712,7756=>850,7757=>687,7758=>850,7759=>687,7760=>850,7761=>687,7762=>850,7763=>687,7764=>733, |
|
224 | -7765=>716,7766=>733,7767=>716,7768=>770,7769=>493,7770=>770,7771=>493,7772=>770,7773=>493,7774=>770, |
|
225 | -7775=>493,7776=>720,7777=>595,7778=>720,7779=>595,7780=>720,7781=>595,7782=>720,7783=>595,7784=>720, |
|
226 | -7785=>595,7786=>682,7787=>478,7788=>682,7789=>478,7790=>682,7791=>478,7792=>682,7793=>478,7794=>812, |
|
227 | -7795=>712,7796=>812,7797=>712,7798=>812,7799=>712,7800=>812,7801=>712,7802=>812,7803=>712,7804=>774, |
|
228 | -7805=>652,7806=>774,7807=>652,7808=>1103,7809=>924,7810=>1103,7811=>924,7812=>1103,7813=>924,7814=>1103, |
|
229 | -7815=>924,7816=>1103,7817=>924,7818=>771,7819=>645,7820=>771,7821=>645,7822=>724,7823=>652,7824=>725, |
|
230 | -7825=>582,7826=>725,7827=>582,7828=>725,7829=>582,7830=>712,7831=>478,7832=>924,7833=>652,7834=>675, |
|
231 | -7835=>435,7838=>896,7839=>687,7840=>774,7841=>675,7842=>774,7843=>675,7844=>774,7845=>675,7846=>774, |
|
232 | -7847=>675,7848=>774,7849=>675,7850=>774,7851=>675,7852=>774,7853=>675,7854=>774,7855=>675,7856=>774, |
|
233 | -7857=>675,7858=>774,7859=>675,7860=>774,7861=>675,7862=>774,7863=>675,7864=>683,7865=>678,7866=>683, |
|
234 | -7867=>678,7868=>683,7869=>678,7870=>683,7871=>678,7872=>683,7873=>678,7874=>683,7875=>678,7876=>683, |
|
235 | -7877=>678,7878=>683,7879=>678,7880=>372,7881=>343,7882=>372,7883=>343,7884=>850,7885=>687,7886=>850, |
|
236 | -7887=>687,7888=>850,7889=>687,7890=>850,7891=>687,7892=>850,7893=>687,7894=>850,7895=>687,7896=>850, |
|
237 | -7897=>687,7898=>850,7899=>687,7900=>850,7901=>687,7902=>850,7903=>687,7904=>850,7905=>687,7906=>850, |
|
238 | -7907=>687,7908=>812,7909=>712,7910=>812,7911=>712,7912=>812,7913=>712,7914=>812,7915=>712,7916=>812, |
|
239 | -7917=>712,7918=>812,7919=>712,7920=>812,7921=>712,7922=>724,7923=>652,7924=>724,7925=>652,7926=>724, |
|
240 | -7927=>652,7928=>724,7929=>652,7936=>687,7937=>687,7938=>687,7939=>687,7940=>687,7941=>687,7942=>687, |
|
241 | -7943=>687,7944=>774,7945=>774,7946=>1041,7947=>1043,7948=>935,7949=>963,7950=>835,7951=>859,7952=>557, |
|
242 | -7953=>557,7954=>557,7955=>557,7956=>557,7957=>557,7960=>792,7961=>794,7962=>1100,7963=>1096,7964=>1023, |
|
243 | -7965=>1052,7968=>712,7969=>712,7970=>712,7971=>712,7972=>712,7973=>712,7974=>712,7975=>712,7976=>945, |
|
244 | -7977=>951,7978=>1250,7979=>1250,7980=>1180,7981=>1206,7982=>1054,7983=>1063,7984=>390,7985=>390,7986=>390, |
|
245 | -7987=>390,7988=>390,7989=>390,7990=>390,7991=>390,7992=>483,7993=>489,7994=>777,7995=>785,7996=>712, |
|
246 | -7997=>738,7998=>604,7999=>604,8000=>687,8001=>687,8002=>687,8003=>687,8004=>687,8005=>687,8008=>892, |
|
247 | -8009=>933,8010=>1221,8011=>1224,8012=>1053,8013=>1082,8016=>675,8017=>675,8018=>675,8019=>675,8020=>675, |
|
248 | -8021=>675,8022=>675,8023=>675,8025=>930,8027=>1184,8029=>1199,8031=>1049,8032=>869,8033=>869,8034=>869, |
|
249 | -8035=>869,8036=>869,8037=>869,8038=>869,8039=>869,8040=>909,8041=>958,8042=>1246,8043=>1251,8044=>1076, |
|
250 | -8045=>1105,8046=>1028,8047=>1076,8048=>687,8049=>687,8050=>557,8051=>557,8052=>712,8053=>712,8054=>390, |
|
251 | -8055=>390,8056=>687,8057=>687,8058=>675,8059=>675,8060=>869,8061=>869,8064=>687,8065=>687,8066=>687, |
|
252 | -8067=>687,8068=>687,8069=>687,8070=>687,8071=>687,8072=>774,8073=>774,8074=>1041,8075=>1043,8076=>935, |
|
253 | -8077=>963,8078=>835,8079=>859,8080=>712,8081=>712,8082=>712,8083=>712,8084=>712,8085=>712,8086=>712, |
|
254 | -8087=>712,8088=>945,8089=>951,8090=>1250,8091=>1250,8092=>1180,8093=>1206,8094=>1054,8095=>1063,8096=>869, |
|
255 | -8097=>869,8098=>869,8099=>869,8100=>869,8101=>869,8102=>869,8103=>869,8104=>909,8105=>958,8106=>1246, |
|
256 | -8107=>1251,8108=>1076,8109=>1105,8110=>1028,8111=>1076,8112=>687,8113=>687,8114=>687,8115=>687,8116=>687, |
|
257 | -8118=>687,8119=>687,8120=>774,8121=>774,8122=>876,8123=>797,8124=>774,8125=>500,8126=>500,8127=>500, |
|
258 | -8128=>500,8129=>500,8130=>712,8131=>712,8132=>712,8134=>712,8135=>712,8136=>929,8137=>846,8138=>1080, |
|
259 | -8139=>1009,8140=>837,8141=>500,8142=>500,8143=>500,8144=>390,8145=>390,8146=>390,8147=>390,8150=>390, |
|
260 | -8151=>390,8152=>372,8153=>372,8154=>621,8155=>563,8157=>500,8158=>500,8159=>500,8160=>675,8161=>675, |
|
261 | -8162=>675,8163=>675,8164=>716,8165=>716,8166=>675,8167=>675,8168=>724,8169=>724,8170=>1020,8171=>980, |
|
262 | -8172=>838,8173=>500,8174=>500,8175=>500,8178=>869,8179=>869,8180=>869,8182=>869,8183=>869,8184=>1065, |
|
263 | -8185=>891,8186=>1084,8187=>894,8188=>850,8189=>500,8190=>500,8192=>500,8193=>1000,8194=>500,8195=>1000, |
|
264 | -8196=>330,8197=>250,8198=>167,8199=>696,8200=>380,8201=>200,8202=>100,8203=>0,8204=>0,8205=>0, |
|
265 | -8206=>0,8207=>0,8208=>415,8209=>415,8210=>696,8213=>1000,8214=>500,8215=>500,8219=>380,8223=>657, |
|
266 | -8227=>639,8228=>380,8229=>685,8231=>348,8234=>0,8235=>0,8236=>0,8237=>0,8238=>0,8239=>200, |
|
267 | -8241=>1908,8242=>264,8243=>447,8244=>630,8245=>264,8246=>447,8247=>630,8248=>733,8251=>972,8252=>627, |
|
268 | -8253=>580,8254=>500,8255=>828,8256=>828,8257=>329,8258=>1023,8259=>500,8260=>167,8261=>457,8262=>457, |
|
269 | -8263=>1030,8264=>829,8265=>829,8266=>513,8267=>687,8268=>500,8269=>500,8270=>523,8271=>400,8272=>828, |
|
270 | -8273=>523,8274=>556,8275=>838,8276=>828,8277=>838,8278=>684,8279=>813,8280=>838,8281=>838,8282=>380, |
|
271 | -8283=>872,8284=>838,8285=>380,8286=>380,8287=>222,8288=>0,8289=>0,8290=>0,8291=>0,8292=>0, |
|
272 | -8298=>0,8299=>0,8300=>0,8301=>0,8302=>0,8303=>0,8304=>438,8305=>219,8308=>438,8309=>438, |
|
273 | -8310=>438,8311=>438,8312=>438,8313=>438,8314=>528,8315=>528,8316=>528,8317=>288,8318=>288,8319=>456, |
|
274 | -8320=>438,8321=>438,8322=>438,8323=>438,8324=>438,8325=>438,8326=>438,8327=>438,8328=>438,8329=>438, |
|
275 | -8330=>528,8331=>528,8332=>528,8333=>288,8334=>288,8336=>458,8337=>479,8338=>488,8339=>413,8340=>479, |
|
276 | -8352=>929,8353=>696,8354=>696,8355=>696,8356=>696,8357=>1042,8358=>837,8359=>1488,8360=>1205,8361=>1103, |
|
277 | -8362=>854,8363=>714,8365=>696,8366=>682,8367=>1392,8368=>696,8369=>696,8370=>696,8371=>696,8372=>859, |
|
278 | -8373=>696,8400=>0,8401=>0,8406=>0,8407=>0,8411=>0,8412=>0,8417=>0,8448=>1106,8449=>1106, |
|
279 | -8450=>734,8451=>1211,8452=>896,8453=>1114,8454=>1148,8455=>696,8456=>698,8457=>952,8459=>1073,8460=>913, |
|
280 | -8461=>888,8462=>712,8463=>712,8464=>597,8465=>697,8466=>856,8467=>472,8468=>974,8469=>837,8470=>1203, |
|
281 | -8471=>1000,8472=>697,8473=>750,8474=>850,8475=>938,8476=>814,8477=>801,8478=>896,8479=>710,8480=>1020, |
|
282 | -8481=>1239,8483=>834,8484=>754,8485=>622,8486=>850,8487=>769,8488=>763,8489=>303,8490=>775,8491=>774, |
|
283 | -8492=>928,8493=>818,8494=>854,8495=>636,8496=>729,8497=>808,8498=>683,8499=>1184,8500=>465,8501=>794, |
|
284 | -8502=>731,8503=>494,8504=>684,8505=>380,8506=>945,8507=>1370,8508=>790,8509=>737,8510=>654,8511=>863, |
|
285 | -8512=>840,8513=>786,8514=>576,8515=>637,8516=>760,8517=>830,8518=>716,8519=>678,8520=>343,8521=>343, |
|
286 | -8523=>872,8526=>547,8531=>1035,8532=>1035,8533=>1035,8534=>1035,8535=>1035,8536=>1035,8537=>1035,8538=>1035, |
|
287 | -8539=>1035,8540=>1035,8541=>1035,8542=>1035,8543=>615,8544=>372,8545=>659,8546=>945,8547=>1099,8548=>774, |
|
288 | -8549=>1099,8550=>1386,8551=>1672,8552=>1121,8553=>771,8554=>1120,8555=>1407,8556=>637,8557=>734,8558=>830, |
|
289 | -8559=>995,8560=>343,8561=>607,8562=>872,8563=>984,8564=>652,8565=>962,8566=>1227,8567=>1491,8568=>969, |
|
290 | -8569=>645,8570=>969,8571=>1233,8572=>343,8573=>593,8574=>716,8575=>1042,8576=>1289,8577=>830,8578=>1289, |
|
291 | -8579=>734,8580=>593,8592=>838,8593=>838,8594=>838,8595=>838,8596=>838,8597=>838,8598=>838,8599=>838, |
|
292 | -8600=>838,8601=>838,8602=>838,8603=>838,8604=>838,8605=>838,8606=>838,8607=>838,8608=>838,8609=>838, |
|
293 | -8610=>838,8611=>838,8612=>838,8613=>838,8614=>838,8615=>838,8616=>838,8617=>838,8618=>838,8619=>838, |
|
294 | -8620=>838,8621=>838,8622=>838,8623=>838,8624=>838,8625=>838,8626=>838,8627=>838,8628=>838,8629=>838, |
|
295 | -8630=>838,8631=>838,8632=>838,8633=>838,8634=>838,8635=>838,8636=>838,8637=>838,8638=>838,8639=>838, |
|
296 | -8640=>838,8641=>838,8642=>838,8643=>838,8644=>838,8645=>838,8646=>838,8647=>838,8648=>838,8649=>838, |
|
297 | -8650=>838,8651=>838,8652=>838,8653=>838,8654=>838,8655=>838,8656=>838,8657=>838,8658=>838,8659=>838, |
|
298 | -8660=>838,8661=>838,8662=>838,8663=>838,8664=>838,8665=>838,8666=>838,8667=>838,8668=>838,8669=>838, |
|
299 | -8670=>838,8671=>838,8672=>838,8673=>838,8674=>838,8675=>838,8676=>838,8677=>838,8678=>838,8679=>838, |
|
300 | -8680=>838,8681=>838,8682=>838,8683=>838,8684=>838,8685=>838,8686=>838,8687=>838,8688=>838,8689=>838, |
|
301 | -8690=>838,8691=>838,8692=>838,8693=>838,8694=>838,8695=>838,8696=>838,8697=>838,8698=>838,8699=>838, |
|
302 | -8700=>838,8701=>838,8702=>838,8703=>838,8704=>774,8705=>696,8706=>544,8707=>683,8708=>683,8709=>856, |
|
303 | -8710=>697,8711=>697,8712=>896,8713=>896,8714=>750,8715=>896,8716=>896,8717=>750,8718=>636,8719=>787, |
|
304 | -8720=>787,8721=>718,8722=>838,8723=>838,8724=>696,8725=>365,8726=>696,8727=>838,8728=>626,8729=>380, |
|
305 | -8730=>667,8731=>667,8732=>667,8733=>712,8734=>833,8735=>838,8736=>896,8737=>896,8738=>838,8739=>500, |
|
306 | -8740=>500,8741=>500,8742=>500,8743=>812,8744=>812,8745=>812,8746=>812,8747=>610,8748=>929,8749=>1295, |
|
307 | -8750=>563,8751=>977,8752=>1313,8753=>563,8754=>563,8755=>563,8756=>696,8757=>696,8758=>294,8759=>696, |
|
308 | -8760=>838,8761=>838,8762=>838,8763=>838,8764=>838,8765=>838,8766=>838,8767=>838,8768=>375,8769=>838, |
|
309 | -8770=>838,8771=>838,8772=>838,8773=>838,8774=>838,8775=>838,8776=>838,8777=>838,8778=>838,8779=>838, |
|
310 | -8780=>838,8781=>838,8782=>838,8783=>838,8784=>838,8785=>838,8786=>838,8787=>838,8788=>1063,8789=>1063, |
|
311 | -8790=>838,8791=>838,8792=>838,8793=>838,8794=>838,8795=>838,8796=>838,8797=>838,8798=>838,8799=>838, |
|
312 | -8800=>838,8801=>838,8802=>838,8803=>838,8804=>838,8805=>838,8806=>838,8807=>838,8808=>841,8809=>841, |
|
313 | -8810=>1047,8811=>1047,8812=>500,8813=>838,8814=>838,8815=>838,8816=>838,8817=>838,8818=>838,8819=>838, |
|
314 | -8820=>838,8821=>838,8822=>838,8823=>838,8824=>838,8825=>838,8826=>838,8827=>838,8828=>838,8829=>838, |
|
315 | -8830=>838,8831=>838,8832=>838,8833=>838,8834=>838,8835=>838,8836=>838,8837=>838,8838=>838,8839=>838, |
|
316 | -8840=>838,8841=>838,8842=>838,8843=>838,8844=>812,8845=>812,8846=>812,8847=>838,8848=>838,8849=>838, |
|
317 | -8850=>838,8851=>796,8852=>796,8853=>838,8854=>838,8855=>838,8856=>838,8857=>838,8858=>838,8859=>838, |
|
318 | -8860=>838,8861=>838,8862=>838,8863=>838,8864=>838,8865=>838,8866=>914,8867=>914,8868=>914,8869=>914, |
|
319 | -8870=>542,8871=>542,8872=>914,8873=>914,8874=>914,8875=>914,8876=>914,8877=>914,8878=>914,8879=>914, |
|
320 | -8880=>838,8881=>838,8882=>838,8883=>838,8884=>838,8885=>838,8886=>1000,8887=>1000,8888=>838,8889=>838, |
|
321 | -8890=>542,8891=>812,8892=>812,8893=>812,8894=>838,8895=>838,8896=>843,8897=>843,8898=>843,8899=>843, |
|
322 | -8900=>494,8901=>380,8902=>626,8903=>838,8904=>1000,8905=>1000,8906=>1000,8907=>1000,8908=>1000,8909=>838, |
|
323 | -8910=>812,8911=>812,8912=>838,8913=>838,8914=>838,8915=>838,8916=>838,8917=>838,8918=>838,8919=>838, |
|
324 | -8920=>1422,8921=>1422,8922=>838,8923=>838,8924=>838,8925=>838,8926=>838,8927=>838,8928=>838,8929=>838, |
|
325 | -8930=>838,8931=>838,8932=>838,8933=>838,8934=>838,8935=>838,8936=>838,8937=>838,8938=>838,8939=>838, |
|
326 | -8940=>838,8941=>838,8942=>1000,8943=>1000,8944=>1000,8945=>1000,8946=>1158,8947=>896,8948=>750,8949=>896, |
|
327 | -8950=>896,8951=>750,8952=>896,8953=>896,8954=>1158,8955=>896,8956=>750,8957=>896,8958=>750,8959=>896, |
|
328 | -8960=>602,8961=>602,8962=>716,8963=>838,8964=>838,8965=>838,8966=>838,8967=>488,8968=>457,8969=>457, |
|
329 | -8970=>457,8971=>457,8972=>809,8973=>809,8974=>809,8975=>809,8976=>838,8977=>539,8984=>928,8985=>838, |
|
330 | -8988=>469,8989=>469,8990=>469,8991=>469,8992=>610,8993=>610,8996=>1152,8997=>1152,8998=>1414,8999=>1152, |
|
331 | -9000=>1443,9003=>1414,9004=>873,9075=>390,9076=>716,9077=>869,9082=>687,9085=>863,9095=>1152,9108=>873, |
|
332 | -9115=>500,9116=>500,9117=>500,9118=>500,9119=>500,9120=>500,9121=>500,9122=>500,9123=>500,9124=>500, |
|
333 | -9125=>500,9126=>500,9127=>750,9128=>750,9129=>750,9130=>750,9131=>750,9132=>750,9133=>750,9134=>610, |
|
334 | -9166=>838,9167=>945,9187=>873,9189=>769,9250=>716,9251=>716,9312=>847,9313=>847,9314=>847,9315=>847, |
|
335 | -9316=>847,9317=>847,9318=>847,9319=>847,9320=>847,9321=>847,9600=>769,9601=>769,9602=>769,9603=>769, |
|
336 | -9604=>769,9605=>769,9606=>769,9607=>769,9608=>769,9609=>769,9610=>769,9611=>769,9612=>769,9613=>769, |
|
337 | -9614=>769,9615=>769,9616=>769,9617=>769,9618=>769,9619=>769,9620=>769,9621=>769,9622=>769,9623=>769, |
|
338 | -9624=>769,9625=>769,9626=>769,9627=>769,9628=>769,9629=>769,9630=>769,9631=>769,9632=>945,9633=>945, |
|
339 | -9634=>945,9635=>945,9636=>945,9637=>945,9638=>945,9639=>945,9640=>945,9641=>945,9642=>678,9643=>678, |
|
340 | -9644=>945,9645=>945,9646=>550,9647=>550,9648=>769,9649=>769,9650=>769,9651=>769,9652=>502,9653=>502, |
|
341 | -9654=>769,9655=>769,9656=>502,9657=>502,9658=>769,9659=>769,9660=>769,9661=>769,9662=>502,9663=>502, |
|
342 | -9664=>769,9665=>769,9666=>502,9667=>502,9668=>769,9669=>769,9670=>769,9671=>769,9672=>769,9673=>873, |
|
343 | -9674=>494,9675=>873,9676=>873,9677=>873,9678=>873,9679=>873,9680=>873,9681=>873,9682=>873,9683=>873, |
|
344 | -9684=>873,9685=>873,9686=>527,9687=>527,9688=>840,9689=>970,9690=>970,9691=>970,9692=>387,9693=>387, |
|
345 | -9694=>387,9695=>387,9696=>769,9697=>769,9698=>769,9699=>769,9700=>769,9701=>769,9702=>639,9703=>945, |
|
346 | -9704=>945,9705=>945,9706=>945,9707=>945,9708=>769,9709=>769,9710=>769,9711=>1119,9712=>945,9713=>945, |
|
347 | -9714=>945,9715=>945,9716=>873,9717=>873,9718=>873,9719=>873,9720=>769,9721=>769,9722=>769,9723=>830, |
|
348 | -9724=>830,9725=>732,9726=>732,9727=>769,9728=>896,9729=>1000,9730=>896,9731=>896,9732=>896,9733=>896, |
|
349 | -9734=>896,9735=>573,9736=>896,9737=>896,9738=>888,9739=>888,9740=>671,9741=>1013,9742=>1246,9743=>1250, |
|
350 | -9744=>896,9745=>896,9746=>896,9747=>532,9748=>896,9749=>896,9750=>896,9751=>896,9752=>896,9753=>896, |
|
351 | -9754=>896,9755=>896,9756=>896,9757=>609,9758=>896,9759=>609,9760=>896,9761=>896,9762=>896,9763=>896, |
|
352 | -9764=>669,9765=>746,9766=>649,9767=>784,9768=>545,9769=>896,9770=>896,9771=>896,9772=>710,9773=>896, |
|
353 | -9774=>896,9775=>896,9776=>896,9777=>896,9778=>896,9779=>896,9780=>896,9781=>896,9782=>896,9783=>896, |
|
354 | -9784=>896,9785=>896,9786=>896,9787=>896,9788=>896,9789=>896,9790=>896,9791=>614,9792=>731,9793=>731, |
|
355 | -9794=>896,9795=>896,9796=>896,9797=>896,9798=>896,9799=>896,9800=>896,9801=>896,9802=>896,9803=>896, |
|
356 | -9804=>896,9805=>896,9806=>896,9807=>896,9808=>896,9809=>896,9810=>896,9811=>896,9812=>896,9813=>896, |
|
357 | -9814=>896,9815=>896,9816=>896,9817=>896,9818=>896,9819=>896,9820=>896,9821=>896,9822=>896,9823=>896, |
|
358 | -9824=>896,9825=>896,9826=>896,9827=>896,9828=>896,9829=>896,9830=>896,9831=>896,9832=>896,9833=>472, |
|
359 | -9834=>638,9835=>896,9836=>896,9837=>472,9838=>357,9839=>484,9840=>748,9841=>766,9842=>896,9843=>896, |
|
360 | -9844=>896,9845=>896,9846=>896,9847=>896,9848=>896,9849=>896,9850=>896,9851=>896,9852=>896,9853=>896, |
|
361 | -9854=>896,9855=>896,9856=>869,9857=>869,9858=>869,9859=>869,9860=>869,9861=>869,9862=>896,9863=>896, |
|
362 | -9864=>896,9865=>896,9866=>896,9867=>896,9868=>896,9869=>896,9870=>896,9871=>896,9872=>896,9873=>896, |
|
363 | -9874=>896,9875=>896,9876=>896,9877=>541,9878=>896,9879=>896,9880=>896,9881=>896,9882=>896,9883=>896, |
|
364 | -9884=>896,9888=>896,9889=>702,9890=>1003,9891=>1085,9892=>1143,9893=>901,9894=>838,9895=>838,9896=>838, |
|
365 | -9897=>838,9898=>838,9899=>838,9900=>838,9901=>838,9902=>838,9903=>838,9904=>844,9905=>838,9906=>731, |
|
366 | -9907=>732,9908=>732,9909=>732,9910=>850,9911=>732,9912=>732,9985=>838,9986=>838,9987=>838,9988=>838, |
|
367 | -9990=>838,9991=>838,9992=>838,9993=>838,9996=>838,9997=>838,9998=>838,9999=>838,10000=>838,10001=>838, |
|
368 | -10002=>838,10003=>838,10004=>838,10005=>838,10006=>838,10007=>838,10008=>838,10009=>838,10010=>838,10011=>838, |
|
369 | -10012=>838,10013=>838,10014=>838,10015=>838,10016=>838,10017=>838,10018=>838,10019=>838,10020=>838,10021=>838, |
|
370 | -10022=>838,10023=>838,10025=>838,10026=>838,10027=>838,10028=>838,10029=>838,10030=>838,10031=>838,10032=>838, |
|
371 | -10033=>838,10034=>838,10035=>838,10036=>838,10037=>838,10038=>838,10039=>838,10040=>838,10041=>838,10042=>838, |
|
372 | -10043=>838,10044=>838,10045=>838,10046=>838,10047=>838,10048=>838,10049=>838,10050=>838,10051=>838,10052=>838, |
|
373 | -10053=>838,10054=>838,10055=>838,10056=>838,10057=>838,10058=>838,10059=>838,10061=>896,10063=>896,10064=>896, |
|
374 | -10065=>896,10066=>896,10070=>896,10072=>838,10073=>838,10074=>838,10075=>322,10076=>322,10077=>538,10078=>538, |
|
375 | -10081=>838,10082=>838,10083=>838,10084=>838,10085=>838,10086=>838,10087=>838,10088=>838,10089=>838,10090=>838, |
|
376 | -10091=>838,10092=>838,10093=>838,10094=>838,10095=>838,10096=>838,10097=>838,10098=>838,10099=>838,10100=>838, |
|
377 | -10101=>838,10102=>847,10103=>847,10104=>847,10105=>847,10106=>847,10107=>847,10108=>847,10109=>847,10110=>847, |
|
378 | -10111=>847,10112=>838,10113=>838,10114=>838,10115=>838,10116=>838,10117=>838,10118=>838,10119=>838,10120=>838, |
|
379 | -10121=>838,10122=>838,10123=>838,10124=>838,10125=>838,10126=>838,10127=>838,10128=>838,10129=>838,10130=>838, |
|
380 | -10131=>838,10132=>838,10136=>838,10137=>838,10138=>838,10139=>838,10140=>838,10141=>838,10142=>838,10143=>838, |
|
381 | -10144=>838,10145=>838,10146=>838,10147=>838,10148=>838,10149=>838,10150=>838,10151=>838,10152=>838,10153=>838, |
|
382 | -10154=>838,10155=>838,10156=>838,10157=>838,10158=>838,10159=>838,10161=>838,10162=>838,10163=>838,10164=>838, |
|
383 | -10165=>838,10166=>838,10167=>838,10168=>838,10169=>838,10170=>838,10171=>838,10172=>838,10173=>838,10174=>838, |
|
384 | -10181=>457,10182=>457,10208=>494,10214=>487,10215=>487,10216=>457,10217=>457,10218=>721,10219=>721,10224=>838, |
|
385 | -10225=>838,10226=>838,10227=>838,10228=>1157,10229=>1434,10230=>1434,10231=>1434,10232=>1434,10233=>1434,10234=>1434, |
|
386 | -10235=>1434,10236=>1434,10237=>1434,10238=>1434,10239=>1434,10240=>781,10241=>781,10242=>781,10243=>781,10244=>781, |
|
387 | -10245=>781,10246=>781,10247=>781,10248=>781,10249=>781,10250=>781,10251=>781,10252=>781,10253=>781,10254=>781, |
|
388 | -10255=>781,10256=>781,10257=>781,10258=>781,10259=>781,10260=>781,10261=>781,10262=>781,10263=>781,10264=>781, |
|
389 | -10265=>781,10266=>781,10267=>781,10268=>781,10269=>781,10270=>781,10271=>781,10272=>781,10273=>781,10274=>781, |
|
390 | -10275=>781,10276=>781,10277=>781,10278=>781,10279=>781,10280=>781,10281=>781,10282=>781,10283=>781,10284=>781, |
|
391 | -10285=>781,10286=>781,10287=>781,10288=>781,10289=>781,10290=>781,10291=>781,10292=>781,10293=>781,10294=>781, |
|
392 | -10295=>781,10296=>781,10297=>781,10298=>781,10299=>781,10300=>781,10301=>781,10302=>781,10303=>781,10304=>781, |
|
393 | -10305=>781,10306=>781,10307=>781,10308=>781,10309=>781,10310=>781,10311=>781,10312=>781,10313=>781,10314=>781, |
|
394 | -10315=>781,10316=>781,10317=>781,10318=>781,10319=>781,10320=>781,10321=>781,10322=>781,10323=>781,10324=>781, |
|
395 | -10325=>781,10326=>781,10327=>781,10328=>781,10329=>781,10330=>781,10331=>781,10332=>781,10333=>781,10334=>781, |
|
396 | -10335=>781,10336=>781,10337=>781,10338=>781,10339=>781,10340=>781,10341=>781,10342=>781,10343=>781,10344=>781, |
|
397 | -10345=>781,10346=>781,10347=>781,10348=>781,10349=>781,10350=>781,10351=>781,10352=>781,10353=>781,10354=>781, |
|
398 | -10355=>781,10356=>781,10357=>781,10358=>781,10359=>781,10360=>781,10361=>781,10362=>781,10363=>781,10364=>781, |
|
399 | -10365=>781,10366=>781,10367=>781,10368=>781,10369=>781,10370=>781,10371=>781,10372=>781,10373=>781,10374=>781, |
|
400 | -10375=>781,10376=>781,10377=>781,10378=>781,10379=>781,10380=>781,10381=>781,10382=>781,10383=>781,10384=>781, |
|
401 | -10385=>781,10386=>781,10387=>781,10388=>781,10389=>781,10390=>781,10391=>781,10392=>781,10393=>781,10394=>781, |
|
402 | -10395=>781,10396=>781,10397=>781,10398=>781,10399=>781,10400=>781,10401=>781,10402=>781,10403=>781,10404=>781, |
|
403 | -10405=>781,10406=>781,10407=>781,10408=>781,10409=>781,10410=>781,10411=>781,10412=>781,10413=>781,10414=>781, |
|
404 | -10415=>781,10416=>781,10417=>781,10418=>781,10419=>781,10420=>781,10421=>781,10422=>781,10423=>781,10424=>781, |
|
405 | -10425=>781,10426=>781,10427=>781,10428=>781,10429=>781,10430=>781,10431=>781,10432=>781,10433=>781,10434=>781, |
|
406 | -10435=>781,10436=>781,10437=>781,10438=>781,10439=>781,10440=>781,10441=>781,10442=>781,10443=>781,10444=>781, |
|
407 | -10445=>781,10446=>781,10447=>781,10448=>781,10449=>781,10450=>781,10451=>781,10452=>781,10453=>781,10454=>781, |
|
408 | -10455=>781,10456=>781,10457=>781,10458=>781,10459=>781,10460=>781,10461=>781,10462=>781,10463=>781,10464=>781, |
|
409 | -10465=>781,10466=>781,10467=>781,10468=>781,10469=>781,10470=>781,10471=>781,10472=>781,10473=>781,10474=>781, |
|
410 | -10475=>781,10476=>781,10477=>781,10478=>781,10479=>781,10480=>781,10481=>781,10482=>781,10483=>781,10484=>781, |
|
411 | -10485=>781,10486=>781,10487=>781,10488=>781,10489=>781,10490=>781,10491=>781,10492=>781,10493=>781,10494=>781, |
|
412 | -10495=>781,10502=>838,10503=>838,10506=>838,10507=>838,10560=>838,10561=>838,10627=>753,10628=>753,10702=>838, |
|
413 | -10703=>1046,10704=>1046,10705=>1000,10706=>1000,10707=>1000,10708=>1000,10709=>1000,10731=>494,10746=>838,10747=>838, |
|
414 | -10752=>1000,10753=>1000,10754=>1000,10764=>1661,10765=>563,10766=>563,10767=>563,10768=>563,10769=>563,10770=>563, |
|
415 | -10771=>563,10772=>563,10773=>563,10774=>563,10775=>563,10776=>563,10777=>563,10778=>563,10779=>563,10780=>563, |
|
416 | -10799=>838,10877=>838,10878=>838,10879=>838,10880=>838,10881=>838,10882=>838,10883=>838,10884=>838,10885=>838, |
|
417 | -10886=>838,10887=>838,10888=>838,10889=>838,10890=>838,10891=>838,10892=>838,10893=>838,10894=>838,10895=>838, |
|
418 | -10896=>838,10897=>838,10898=>838,10899=>838,10900=>838,10901=>838,10902=>838,10903=>838,10904=>838,10905=>838, |
|
419 | -10906=>838,10907=>838,10908=>838,10909=>838,10910=>838,10911=>838,10912=>838,10926=>838,10927=>838,10928=>838, |
|
420 | -10929=>838,10930=>838,10931=>838,10932=>838,10933=>838,10934=>838,10935=>838,10936=>838,10937=>838,10938=>838, |
|
421 | -11001=>838,11002=>838,11008=>838,11009=>838,11010=>838,11011=>838,11012=>838,11013=>838,11014=>838,11015=>838, |
|
422 | -11016=>838,11017=>838,11018=>838,11019=>838,11020=>838,11021=>838,11022=>838,11023=>838,11024=>838,11025=>838, |
|
423 | -11026=>945,11027=>945,11028=>945,11029=>945,11030=>769,11031=>769,11032=>769,11033=>769,11034=>945,11039=>869, |
|
424 | -11040=>869,11041=>873,11042=>873,11043=>873,11044=>1119,11091=>869,11092=>869,11360=>637,11361=>360,11362=>637, |
|
425 | -11363=>733,11364=>770,11365=>675,11366=>478,11367=>956,11368=>712,11369=>775,11370=>665,11371=>725,11372=>582, |
|
426 | -11373=>860,11374=>995,11375=>774,11377=>778,11378=>1221,11379=>1056,11380=>652,11381=>698,11382=>565,11383=>782, |
|
427 | -11385=>538,11386=>687,11387=>559,11388=>219,11389=>487,11800=>586,11810=>457,11811=>457,11812=>457,11813=>457, |
|
428 | -11822=>580,19904=>896,19905=>896,19906=>896,19907=>896,19908=>896,19909=>896,19910=>896,19911=>896,19912=>896, |
|
429 | -19913=>896,19914=>896,19915=>896,19916=>896,19917=>896,19918=>896,19919=>896,19920=>896,19921=>896,19922=>896, |
|
430 | -19923=>896,19924=>896,19925=>896,19926=>896,19927=>896,19928=>896,19929=>896,19930=>896,19931=>896,19932=>896, |
|
431 | -19933=>896,19934=>896,19935=>896,19936=>896,19937=>896,19938=>896,19939=>896,19940=>896,19941=>896,19942=>896, |
|
432 | -19943=>896,19944=>896,19945=>896,19946=>896,19947=>896,19948=>896,19949=>896,19950=>896,19951=>896,19952=>896, |
|
433 | -19953=>896,19954=>896,19955=>896,19956=>896,19957=>896,19958=>896,19959=>896,19960=>896,19961=>896,19962=>896, |
|
434 | -19963=>896,19964=>896,19965=>896,19966=>896,19967=>896,42564=>720,42565=>595,42566=>436,42567=>440,42572=>1405, |
|
435 | -42573=>1173,42576=>1234,42577=>1027,42580=>1174,42581=>972,42582=>1100,42583=>969,42594=>1100,42595=>940,42596=>1096, |
|
436 | -42597=>915,42598=>1260,42599=>997,42600=>850,42601=>687,42602=>1037,42603=>868,42604=>1406,42605=>1106,42606=>961, |
|
437 | -42634=>944,42635=>749,42636=>682,42637=>580,42644=>808,42645=>712,42760=>500,42761=>500,42762=>500,42763=>500, |
|
438 | -42764=>500,42765=>500,42766=>500,42767=>500,42768=>500,42769=>500,42770=>500,42771=>500,42772=>500,42773=>500, |
|
439 | -42774=>500,42779=>400,42780=>400,42781=>287,42782=>287,42783=>287,42790=>837,42791=>712,42792=>1031,42793=>857, |
|
440 | -42794=>696,42795=>557,42800=>559,42801=>595,42802=>1349,42803=>1052,42804=>1285,42805=>1065,42806=>1245,42807=>1052, |
|
441 | -42808=>1079,42809=>922,42810=>1079,42811=>922,42812=>1035,42813=>922,42814=>698,42815=>549,42822=>850,42823=>542, |
|
442 | -42824=>683,42825=>531,42826=>918,42827=>814,42830=>1406,42831=>1106,42880=>637,42881=>343,42882=>837,42883=>712, |
|
443 | -42889=>400,42890=>396,42891=>456,42892=>306,43003=>683,43004=>733,43005=>995,43006=>372,43007=>1325,62917=>687, |
|
444 | -64256=>833,64257=>787,64258=>787,64259=>1138,64260=>1139,64261=>808,64262=>1020,64275=>1388,64276=>1384,64277=>1378, |
|
445 | -64278=>1384,64279=>1713,64285=>343,64286=>0,64287=>663,64288=>720,64289=>963,64290=>890,64291=>988,64292=>963, |
|
446 | -64293=>938,64294=>988,64295=>988,64296=>976,64297=>838,64298=>949,64299=>949,64300=>949,64301=>949,64302=>751, |
|
447 | -64303=>751,64304=>751,64305=>673,64306=>537,64307=>654,64308=>712,64309=>343,64310=>491,64312=>724,64313=>467, |
|
448 | -64314=>649,64315=>650,64316=>679,64318=>775,64320=>497,64321=>773,64323=>718,64324=>687,64326=>751,64327=>729, |
|
449 | -64328=>649,64329=>949,64330=>751,64331=>343,64332=>673,64333=>650,64334=>687,64335=>751,65024=>0,65025=>0, |
|
450 | -65026=>0,65027=>0,65028=>0,65029=>0,65030=>0,65031=>0,65032=>0,65033=>0,65034=>0,65035=>0, |
|
451 | -65036=>0,65037=>0,65038=>0,65039=>0,65056=>0,65057=>0,65058=>0,65059=>0,65529=>0,65530=>0, |
|
452 | -65531=>0,65532=>0,65533=>1113); |
|
453 | -$enc=''; |
|
454 | -$diff=''; |
|
455 | -$file='dejavusansbi.z'; |
|
456 | -$ctg='dejavusansbi.ctg.z'; |
|
457 | -$originalsize=524056; |
|
1 | +<?php if (!defined('ABSPATH')) exit; |
|
2 | +$type = 'TrueTypeUnicode'; |
|
3 | +$name = 'DejaVuSans-BoldOblique'; |
|
4 | +$desc = array('Ascent'=>928, 'Descent'=>-236, 'CapHeight'=>-51, 'Flags'=>96, 'FontBBox'=>'[-1067 -385 2005 1121]', 'ItalicAngle'=>-11, 'StemV'=>120, 'MissingWidth'=>600); |
|
5 | +$up = -63; |
|
6 | +$ut = 44; |
|
7 | +$dw = 600; |
|
8 | +$cw = array( |
|
9 | +0=>600, 32=>348, 33=>456, 34=>521, 35=>696, 36=>696, 37=>1002, 38=>872, 39=>306, 40=>457, |
|
10 | +41=>457, 42=>523, 43=>838, 44=>380, 45=>415, 46=>380, 47=>365, 48=>696, 49=>696, 50=>696, |
|
11 | +51=>696, 52=>696, 53=>696, 54=>696, 55=>696, 56=>696, 57=>696, 58=>400, 59=>400, 60=>838, |
|
12 | +61=>838, 62=>838, 63=>580, 64=>1000, 65=>774, 66=>762, 67=>734, 68=>830, 69=>683, 70=>683, |
|
13 | +71=>821, 72=>837, 73=>372, 74=>372, 75=>775, 76=>637, 77=>995, 78=>837, 79=>850, 80=>733, |
|
14 | +81=>850, 82=>770, 83=>720, 84=>682, 85=>812, 86=>774, 87=>1103, 88=>771, 89=>724, 90=>725, |
|
15 | +91=>457, 92=>365, 93=>457, 94=>838, 95=>500, 96=>500, 97=>675, 98=>716, 99=>593, 100=>716, |
|
16 | +101=>678, 102=>435, 103=>716, 104=>712, 105=>343, 106=>343, 107=>665, 108=>343, 109=>1042, 110=>712, |
|
17 | +111=>687, 112=>716, 113=>716, 114=>493, 115=>595, 116=>478, 117=>712, 118=>652, 119=>924, 120=>645, |
|
18 | +121=>652, 122=>582, 123=>712, 124=>365, 125=>712, 126=>838, 8364=>696, 8218=>380, 402=>435, 8222=>644, |
|
19 | +8230=>1000, 8224=>500, 8225=>500, 710=>500, 8240=>1454, 352=>720, 8249=>412, 338=>1167, 381=>725, 8216=>380, |
|
20 | +8217=>380, 8220=>644, 8221=>644, 8226=>639, 8211=>500, 8212=>1000, 732=>500, 8482=>1000, 353=>595, 8250=>412, |
|
21 | +339=>1094, 382=>582, 376=>724, 160=>348, 161=>456, 162=>696, 163=>696, 164=>636, 165=>696, 166=>365, |
|
22 | +167=>500, 168=>500, 169=>1000, 170=>564, 171=>650, 172=>838, 173=>415, 174=>1000, 175=>500, 176=>500, |
|
23 | +177=>838, 178=>438, 179=>438, 180=>500, 181=>736, 182=>636, 183=>380, 184=>500, 185=>438, 186=>564, |
|
24 | +187=>650, 188=>1035, 189=>1035, 190=>1035, 191=>580, 192=>774, 193=>774, 194=>774, 195=>774, 196=>774, |
|
25 | +197=>774, 198=>1085, 199=>734, 200=>683, 201=>683, 202=>683, 203=>683, 204=>372, 205=>372, 206=>372, |
|
26 | +207=>372, 208=>845, 209=>837, 210=>850, 211=>850, 212=>850, 213=>850, 214=>850, 215=>838, 216=>850, |
|
27 | +217=>812, 218=>812, 219=>812, 220=>812, 221=>724, 222=>742, 223=>719, 224=>675, 225=>675, 226=>675, |
|
28 | +227=>675, 228=>675, 229=>675, 230=>1048, 231=>593, 232=>678, 233=>678, 234=>678, 235=>678, 236=>343, |
|
29 | +237=>343, 238=>343, 239=>343, 240=>687, 241=>712, 242=>687, 243=>687, 244=>687, 245=>687, 246=>687, |
|
30 | +247=>838, 248=>687, 249=>712, 250=>712, 251=>712, 252=>712, 253=>652, 254=>716, 255=>652, 256=>774, |
|
31 | +257=>675, 258=>774, 259=>675, 260=>774, 261=>675, 262=>734, 263=>593, 264=>734, 265=>593, 266=>734, |
|
32 | +267=>593, 268=>734, 269=>593, 270=>830, 271=>716, 272=>845, 273=>716, 274=>683, 275=>678, 276=>683, |
|
33 | +277=>678, 278=>683, 279=>678, 280=>683, 281=>678, 282=>683, 283=>678, 284=>821, 285=>716, 286=>821, |
|
34 | +287=>716, 288=>821, 289=>716, 290=>821, 291=>716, 292=>837, 293=>712, 294=>974, 295=>790, 296=>372, |
|
35 | +297=>343, 298=>372, 299=>343, 300=>372, 301=>343, 302=>372, 303=>343, 304=>372, 305=>343, 306=>744, |
|
36 | +307=>686, 308=>372, 309=>343, 310=>775, 311=>665, 312=>665, 313=>637, 314=>343, 315=>637, 316=>343, |
|
37 | +317=>637, 318=>343, 319=>637, 320=>343, 321=>660, 322=>375, 323=>837, 324=>712, 325=>837, 326=>712, |
|
38 | +327=>837, 328=>712, 329=>983, 330=>837, 331=>712, 332=>850, 333=>687, 334=>850, 335=>687, 336=>850, |
|
39 | +337=>687, 340=>770, 341=>493, 342=>770, 343=>493, 344=>770, 345=>493, 346=>720, 347=>595, 348=>720, |
|
40 | +349=>595, 350=>720, 351=>595, 354=>682, 355=>478, 356=>682, 357=>478, 358=>682, 359=>478, 360=>812, |
|
41 | +361=>712, 362=>812, 363=>712, 364=>812, 365=>712, 366=>812, 367=>712, 368=>812, 369=>712, 370=>812, |
|
42 | +371=>712, 372=>1103, 373=>924, 374=>724, 375=>652, 377=>725, 378=>582, 379=>725, 380=>582, 383=>435, |
|
43 | +384=>716, 385=>811, 386=>762, 387=>716, 388=>762, 389=>716, 390=>734, 391=>734, 392=>593, 393=>845, |
|
44 | +394=>879, 395=>762, 396=>716, 397=>687, 398=>683, 399=>850, 400=>696, 401=>683, 403=>821, 404=>793, |
|
45 | +405=>1045, 406=>436, 407=>389, 408=>775, 409=>665, 410=>360, 411=>592, 412=>1042, 413=>837, 414=>712, |
|
46 | +415=>850, 416=>850, 417=>687, 418=>1114, 419=>962, 420=>782, 421=>716, 422=>770, 423=>720, 424=>595, |
|
47 | +425=>683, 426=>552, 427=>478, 428=>707, 429=>478, 430=>682, 431=>812, 432=>712, 433=>769, 434=>813, |
|
48 | +435=>797, 436=>778, 437=>725, 438=>582, 439=>772, 440=>772, 441=>641, 442=>582, 443=>696, 444=>772, |
|
49 | +445=>641, 446=>573, 447=>716, 448=>372, 449=>659, 450=>544, 451=>372, 452=>1548, 453=>1450, 454=>1307, |
|
50 | +455=>977, 456=>979, 457=>670, 458=>1193, 459=>1213, 460=>1063, 461=>774, 462=>675, 463=>372, 464=>343, |
|
51 | +465=>850, 466=>687, 467=>812, 468=>712, 469=>812, 470=>712, 471=>812, 472=>712, 473=>812, 474=>712, |
|
52 | +475=>812, 476=>712, 477=>678, 478=>774, 479=>675, 480=>774, 481=>675, 482=>1085, 483=>1048, 484=>821, |
|
53 | +485=>716, 486=>821, 487=>716, 488=>775, 489=>665, 490=>850, 491=>687, 492=>850, 493=>687, 494=>772, |
|
54 | +495=>582, 496=>343, 497=>1548, 498=>1450, 499=>1307, 500=>821, 501=>716, 502=>1289, 503=>787, 504=>837, |
|
55 | +505=>712, 506=>774, 507=>675, 508=>1085, 509=>1048, 510=>850, 511=>687, 512=>774, 513=>675, 514=>774, |
|
56 | +515=>675, 516=>683, 517=>678, 518=>683, 519=>678, 520=>372, 521=>343, 522=>372, 523=>343, 524=>850, |
|
57 | +525=>687, 526=>850, 527=>687, 528=>770, 529=>493, 530=>770, 531=>493, 532=>812, 533=>712, 534=>812, |
|
58 | +535=>712, 536=>720, 537=>595, 538=>682, 539=>478, 540=>690, 541=>607, 542=>837, 543=>712, 544=>837, |
|
59 | +545=>865, 546=>809, 547=>659, 548=>725, 549=>582, 550=>774, 551=>675, 552=>683, 553=>678, 554=>850, |
|
60 | +555=>687, 556=>850, 557=>687, 558=>850, 559=>687, 560=>850, 561=>687, 562=>724, 563=>652, 564=>492, |
|
61 | +565=>867, 566=>512, 567=>343, 568=>1088, 569=>1088, 570=>774, 571=>734, 572=>593, 573=>637, 574=>682, |
|
62 | +575=>595, 576=>582, 577=>782, 578=>614, 579=>762, 580=>812, 581=>774, 582=>683, 583=>678, 584=>372, |
|
63 | +585=>343, 586=>860, 587=>791, 588=>770, 589=>493, 590=>724, 591=>652, 592=>675, 593=>716, 594=>716, |
|
64 | +595=>716, 596=>593, 597=>593, 598=>791, 599=>792, 600=>678, 601=>678, 602=>876, 603=>557, 604=>545, |
|
65 | +605=>774, 606=>731, 607=>343, 608=>792, 609=>716, 610=>627, 611=>735, 612=>635, 613=>712, 614=>712, |
|
66 | +615=>712, 616=>545, 617=>440, 618=>545, 619=>559, 620=>693, 621=>343, 622=>841, 623=>1042, 624=>1042, |
|
67 | +625=>1042, 626=>712, 627=>793, 628=>642, 629=>687, 630=>909, 631=>682, 632=>796, 633=>538, 634=>538, |
|
68 | +635=>650, 636=>493, 637=>493, 638=>596, 639=>596, 640=>642, 641=>642, 642=>595, 643=>415, 644=>435, |
|
69 | +645=>605, 646=>552, 647=>478, 648=>478, 649=>920, 650=>769, 651=>670, 652=>652, 653=>924, 654=>652, |
|
70 | +655=>724, 656=>694, 657=>684, 658=>641, 659=>641, 660=>573, 661=>573, 662=>573, 663=>573, 664=>850, |
|
71 | +665=>633, 666=>731, 667=>685, 668=>691, 669=>343, 670=>732, 671=>539, 672=>792, 673=>573, 674=>573, |
|
72 | +675=>1156, 676=>1214, 677=>1155, 678=>974, 679=>769, 680=>929, 681=>1026, 682=>792, 683=>780, 684=>591, |
|
73 | +685=>415, 686=>677, 687=>789, 688=>456, 689=>456, 690=>219, 691=>315, 692=>315, 693=>315, 694=>411, |
|
74 | +695=>591, 696=>417, 697=>302, 698=>521, 699=>380, 700=>380, 701=>380, 702=>366, 703=>366, 704=>326, |
|
75 | +705=>326, 706=>500, 707=>500, 708=>500, 709=>500, 711=>500, 712=>306, 713=>500, 714=>500, 715=>500, |
|
76 | +716=>306, 717=>500, 718=>500, 719=>500, 720=>337, 721=>337, 722=>366, 723=>366, 724=>500, 725=>500, |
|
77 | +726=>416, 727=>328, 728=>500, 729=>500, 730=>500, 731=>500, 733=>500, 734=>351, 735=>500, 736=>412, |
|
78 | +737=>219, 738=>381, 739=>413, 740=>326, 741=>500, 742=>500, 743=>500, 744=>500, 745=>500, 748=>500, |
|
79 | +749=>500, 750=>644, 755=>500, 759=>500, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, |
|
80 | +774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, |
|
81 | +784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, |
|
82 | +794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, |
|
83 | +804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, |
|
84 | +814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, |
|
85 | +824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, |
|
86 | +834=>0, 835=>0, 836=>0, 837=>0, 838=>0, 839=>0, 840=>0, 841=>0, 842=>0, 843=>0, |
|
87 | +844=>0, 845=>0, 846=>0, 847=>0, 849=>0, 850=>0, 851=>0, 855=>0, 856=>0, 858=>0, |
|
88 | +860=>0, 861=>0, 862=>0, 863=>0, 864=>0, 865=>0, 866=>0, 880=>698, 881=>565, 882=>1022, |
|
89 | +883=>836, 884=>302, 885=>302, 886=>837, 887=>701, 890=>500, 891=>593, 892=>550, 893=>549, 894=>400, |
|
90 | +900=>441, 901=>500, 902=>797, 903=>380, 904=>846, 905=>1009, 906=>563, 908=>891, 910=>980, 911=>894, |
|
91 | +912=>390, 913=>774, 914=>762, 915=>637, 916=>774, 917=>683, 918=>725, 919=>837, 920=>850, 921=>372, |
|
92 | +922=>775, 923=>774, 924=>995, 925=>837, 926=>632, 927=>850, 928=>837, 929=>733, 931=>683, 932=>682, |
|
93 | +933=>724, 934=>850, 935=>771, 936=>850, 937=>850, 938=>372, 939=>724, 940=>687, 941=>557, 942=>712, |
|
94 | +943=>390, 944=>675, 945=>687, 946=>716, 947=>681, 948=>687, 949=>557, 950=>591, 951=>712, 952=>687, |
|
95 | +953=>390, 954=>710, 955=>633, 956=>736, 957=>681, 958=>591, 959=>687, 960=>791, 961=>716, 962=>593, |
|
96 | +963=>779, 964=>638, 965=>675, 966=>782, 967=>645, 968=>794, 969=>869, 970=>390, 971=>675, 972=>687, |
|
97 | +973=>675, 974=>869, 975=>775, 976=>651, 977=>661, 978=>746, 979=>981, 980=>746, 981=>796, 982=>869, |
|
98 | +983=>744, 984=>850, 985=>687, 986=>734, 987=>593, 988=>683, 989=>494, 990=>702, 991=>660, 992=>919, |
|
99 | +993=>627, 994=>1093, 995=>837, 996=>832, 997=>716, 998=>928, 999=>744, 1000=>733, 1001=>650, 1002=>789, |
|
100 | +1003=>671, 1004=>752, 1005=>716, 1006=>682, 1007=>590, 1008=>744, 1009=>716, 1010=>593, 1011=>343, 1012=>850, |
|
101 | +1013=>645, 1014=>645, 1015=>742, 1016=>716, 1017=>734, 1018=>995, 1019=>732, 1020=>716, 1021=>734, 1022=>734, |
|
102 | +1023=>698, 1024=>683, 1025=>683, 1026=>878, 1027=>637, 1028=>734, 1029=>720, 1030=>372, 1031=>372, 1032=>372, |
|
103 | +1033=>1154, 1034=>1130, 1035=>878, 1036=>817, 1037=>837, 1038=>771, 1039=>837, 1040=>774, 1041=>762, 1042=>762, |
|
104 | +1043=>637, 1044=>891, 1045=>683, 1046=>1224, 1047=>710, 1048=>837, 1049=>837, 1050=>817, 1051=>831, 1052=>995, |
|
105 | +1053=>837, 1054=>850, 1055=>837, 1056=>733, 1057=>734, 1058=>682, 1059=>771, 1060=>992, 1061=>771, 1062=>928, |
|
106 | +1063=>808, 1064=>1235, 1065=>1326, 1066=>939, 1067=>1036, 1068=>762, 1069=>734, 1070=>1174, 1071=>770, 1072=>675, |
|
107 | +1073=>698, 1074=>633, 1075=>522, 1076=>808, 1077=>678, 1078=>995, 1079=>581, 1080=>701, 1081=>701, 1082=>679, |
|
108 | +1083=>732, 1084=>817, 1085=>691, 1086=>687, 1087=>691, 1088=>716, 1089=>593, 1090=>580, 1091=>652, 1092=>992, |
|
109 | +1093=>645, 1094=>741, 1095=>687, 1096=>1062, 1097=>1105, 1098=>751, 1099=>904, 1100=>632, 1101=>593, 1102=>972, |
|
110 | +1103=>642, 1104=>678, 1105=>678, 1106=>714, 1107=>522, 1108=>593, 1109=>595, 1110=>343, 1111=>343, 1112=>343, |
|
111 | +1113=>991, 1114=>956, 1115=>734, 1116=>679, 1117=>701, 1118=>652, 1119=>691, 1120=>1093, 1121=>869, 1122=>840, |
|
112 | +1123=>736, 1124=>1012, 1125=>839, 1126=>992, 1127=>832, 1128=>1358, 1129=>1121, 1130=>850, 1131=>687, 1132=>1236, |
|
113 | +1133=>1007, 1134=>696, 1135=>557, 1136=>1075, 1137=>1061, 1138=>850, 1139=>687, 1140=>850, 1141=>695, 1142=>850, |
|
114 | +1143=>695, 1144=>1148, 1145=>1043, 1146=>1074, 1147=>863, 1148=>1405, 1149=>1173, 1150=>1093, 1151=>869, 1152=>734, |
|
115 | +1153=>593, 1154=>652, 1155=>0, 1156=>0, 1157=>0, 1158=>0, 1159=>0, 1160=>418, 1161=>418, 1162=>938, |
|
116 | +1163=>806, 1164=>762, 1165=>611, 1166=>736, 1167=>718, 1168=>637, 1169=>522, 1170=>666, 1171=>543, 1172=>789, |
|
117 | +1173=>522, 1174=>1224, 1175=>995, 1176=>710, 1177=>581, 1178=>775, 1179=>679, 1180=>817, 1181=>679, 1182=>817, |
|
118 | +1183=>679, 1184=>1015, 1185=>826, 1186=>837, 1187=>691, 1188=>1103, 1189=>871, 1190=>1254, 1191=>979, 1192=>946, |
|
119 | +1193=>859, 1194=>734, 1195=>593, 1196=>682, 1197=>580, 1198=>724, 1199=>652, 1200=>724, 1201=>652, 1202=>771, |
|
120 | +1203=>645, 1204=>1104, 1205=>1001, 1206=>808, 1207=>687, 1208=>808, 1209=>687, 1210=>808, 1211=>712, 1212=>1026, |
|
121 | +1213=>810, 1214=>1026, 1215=>810, 1216=>372, 1217=>1224, 1218=>995, 1219=>778, 1220=>629, 1221=>933, 1222=>804, |
|
122 | +1223=>837, 1224=>691, 1225=>938, 1226=>806, 1227=>808, 1228=>687, 1229=>1096, 1230=>932, 1231=>343, 1232=>774, |
|
123 | +1233=>675, 1234=>774, 1235=>675, 1236=>1085, 1237=>1048, 1238=>683, 1239=>678, 1240=>850, 1241=>678, 1242=>850, |
|
124 | +1243=>678, 1244=>1224, 1245=>995, 1246=>710, 1247=>581, 1248=>772, 1249=>641, 1250=>837, 1251=>701, 1252=>837, |
|
125 | +1253=>701, 1254=>850, 1255=>687, 1256=>850, 1257=>687, 1258=>850, 1259=>687, 1260=>734, 1261=>593, 1262=>771, |
|
126 | +1263=>652, 1264=>771, 1265=>652, 1266=>771, 1267=>652, 1268=>808, 1269=>687, 1270=>637, 1271=>522, 1272=>1036, |
|
127 | +1273=>904, 1274=>666, 1275=>543, 1276=>771, 1277=>645, 1278=>771, 1279=>645, 1280=>762, 1281=>608, 1282=>1159, |
|
128 | +1283=>893, 1284=>1119, 1285=>920, 1286=>828, 1287=>693, 1288=>1242, 1289=>1017, 1290=>1289, 1291=>1013, 1292=>839, |
|
129 | +1293=>638, 1294=>938, 1295=>803, 1296=>696, 1297=>557, 1298=>831, 1299=>732, 1300=>1286, 1301=>1070, 1302=>1065, |
|
130 | +1303=>982, 1304=>1082, 1305=>960, 1306=>850, 1307=>716, 1308=>1103, 1309=>924, 1312=>1248, 1313=>1022, 1314=>1254, |
|
131 | +1315=>979, 1316=>957, 1317=>807, 1329=>984, 1330=>812, 1331=>984, 1332=>984, 1333=>812, 1334=>777, 1335=>812, |
|
132 | +1336=>812, 1337=>975, 1338=>984, 1339=>812, 1340=>710, 1341=>1078, 1342=>1136, 1343=>812, 1344=>710, 1345=>757, |
|
133 | +1346=>984, 1347=>876, 1348=>984, 1349=>793, 1350=>984, 1351=>812, 1352=>812, 1353=>812, 1354=>958, 1355=>777, |
|
134 | +1356=>984, 1357=>812, 1358=>984, 1359=>720, 1360=>812, 1361=>793, 1362=>895, 1363=>850, 1364=>936, 1365=>850, |
|
135 | +1366=>720, 1369=>366, 1370=>380, 1371=>550, 1372=>550, 1373=>380, 1374=>546, 1375=>521, 1377=>1042, 1378=>712, |
|
136 | +1379=>866, 1380=>868, 1381=>712, 1382=>817, 1383=>653, 1384=>712, 1385=>811, 1386=>817, 1387=>712, 1388=>498, |
|
137 | +1389=>1018, 1390=>716, 1391=>712, 1392=>712, 1393=>716, 1394=>819, 1395=>712, 1396=>751, 1397=>343, 1398=>882, |
|
138 | +1399=>559, 1400=>712, 1401=>559, 1402=>1042, 1403=>559, 1404=>863, 1405=>712, 1406=>813, 1407=>1042, 1408=>712, |
|
139 | +1409=>716, 1410=>571, 1411=>1042, 1412=>778, 1413=>687, 1414=>720, 1415=>862, 1417=>400, 1418=>487, 1456=>0, |
|
140 | +1457=>0, 1458=>0, 1459=>0, 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1466=>0, |
|
141 | +1467=>0, 1468=>0, 1469=>0, 1470=>415, 1471=>0, 1472=>372, 1473=>0, 1474=>0, 1475=>372, 1478=>497, |
|
142 | +1479=>0, 1488=>751, 1489=>673, 1490=>537, 1491=>654, 1492=>712, 1493=>343, 1494=>491, 1495=>712, 1496=>724, |
|
143 | +1497=>343, 1498=>649, 1499=>650, 1500=>679, 1501=>712, 1502=>775, 1503=>343, 1504=>497, 1505=>773, 1506=>678, |
|
144 | +1507=>718, 1508=>687, 1509=>628, 1510=>751, 1511=>729, 1512=>649, 1513=>949, 1514=>751, 1520=>664, 1521=>664, |
|
145 | +1522=>663, 1523=>444, 1524=>710, 3647=>743, 3713=>815, 3714=>748, 3716=>749, 3719=>569, 3720=>742, 3722=>744, |
|
146 | +3725=>761, 3732=>706, 3733=>704, 3734=>747, 3735=>819, 3737=>730, 3738=>727, 3739=>727, 3740=>922, 3741=>827, |
|
147 | +3742=>866, 3743=>866, 3745=>836, 3746=>761, 3747=>770, 3749=>769, 3751=>713, 3754=>827, 3755=>1031, 3757=>724, |
|
148 | +3758=>784, 3759=>934, 3760=>688, 3761=>0, 3762=>610, 3763=>610, 3764=>0, 3765=>0, 3766=>0, 3767=>0, |
|
149 | +3768=>0, 3769=>0, 3771=>0, 3772=>0, 3773=>670, 3776=>516, 3777=>860, 3778=>516, 3779=>650, 3780=>632, |
|
150 | +3782=>759, 3784=>0, 3785=>0, 3786=>0, 3787=>0, 3788=>0, 3789=>0, 3792=>771, 3793=>771, 3794=>693, |
|
151 | +3795=>836, 3796=>729, 3797=>729, 3798=>849, 3799=>790, 3800=>759, 3801=>910, 3804=>1363, 3805=>1363, 4256=>918, |
|
152 | +4257=>744, 4258=>739, 4259=>837, 4260=>649, 4261=>773, 4262=>857, 4263=>889, 4264=>530, 4265=>633, 4266=>857, |
|
153 | +4267=>900, 4268=>643, 4269=>903, 4270=>814, 4271=>752, 4272=>869, 4273=>643, 4274=>643, 4275=>886, 4276=>886, |
|
154 | +4277=>733, 4278=>653, 4279=>643, 4280=>646, 4281=>643, 4282=>790, 4283=>902, 4284=>633, 4285=>619, 4286=>643, |
|
155 | +4287=>778, 4288=>892, 4289=>601, 4290=>742, 4291=>616, 4292=>633, 4293=>742, 4304=>553, 4305=>552, 4306=>596, |
|
156 | +4307=>815, 4308=>562, 4309=>563, 4310=>553, 4311=>827, 4312=>553, 4313=>543, 4314=>1074, 4315=>563, 4316=>563, |
|
157 | +4317=>812, 4318=>552, 4319=>591, 4320=>822, 4321=>563, 4322=>690, 4323=>583, 4324=>813, 4325=>562, 4326=>813, |
|
158 | +4327=>563, 4328=>563, 4329=>563, 4330=>632, 4331=>563, 4332=>563, 4333=>552, 4334=>563, 4335=>563, 4336=>558, |
|
159 | +4337=>604, 4338=>552, 4339=>552, 4340=>553, 4341=>605, 4342=>852, 4343=>635, 4344=>563, 4345=>596, 4346=>542, |
|
160 | +4347=>684, 4348=>368, 5121=>774, 5122=>774, 5123=>774, 5124=>774, 5125=>905, 5126=>905, 5127=>905, 5129=>905, |
|
161 | +5130=>905, 5131=>905, 5132=>1018, 5133=>1009, 5134=>1018, 5135=>1009, 5136=>1018, 5137=>1009, 5138=>1149, 5139=>1140, |
|
162 | +5140=>1149, 5141=>1140, 5142=>905, 5143=>1149, 5144=>1142, 5145=>1149, 5146=>1142, 5147=>905, 5149=>310, 5150=>529, |
|
163 | +5151=>425, 5152=>425, 5153=>395, 5154=>395, 5155=>395, 5156=>395, 5157=>564, 5158=>470, 5159=>310, 5160=>395, |
|
164 | +5161=>395, 5162=>395, 5163=>1213, 5164=>986, 5165=>1216, 5166=>1297, 5167=>774, 5168=>774, 5169=>774, 5170=>774, |
|
165 | +5171=>886, 5172=>886, 5173=>886, 5175=>886, 5176=>886, 5177=>886, 5178=>1018, 5179=>1009, 5180=>1018, 5181=>1009, |
|
166 | +5182=>1018, 5183=>1009, 5184=>1149, 5185=>1140, 5186=>1149, 5187=>1140, 5188=>1149, 5189=>1142, 5190=>1149, 5191=>1142, |
|
167 | +5192=>886, 5193=>576, 5194=>229, 5196=>812, 5197=>812, 5198=>812, 5199=>812, 5200=>815, 5201=>815, 5202=>815, |
|
168 | +5204=>815, 5205=>815, 5206=>815, 5207=>1056, 5208=>1048, 5209=>1056, 5210=>1048, 5211=>1056, 5212=>1048, 5213=>1060, |
|
169 | +5214=>1054, 5215=>1060, 5216=>1054, 5217=>1060, 5218=>1052, 5219=>1060, 5220=>1052, 5221=>1060, 5222=>483, 5223=>1005, |
|
170 | +5224=>1005, 5225=>1023, 5226=>1017, 5227=>743, 5228=>743, 5229=>743, 5230=>743, 5231=>743, 5232=>743, 5233=>743, |
|
171 | +5234=>743, 5235=>743, 5236=>1029, 5237=>975, 5238=>980, 5239=>975, 5240=>980, 5241=>975, 5242=>1029, 5243=>975, |
|
172 | +5244=>1029, 5245=>975, 5246=>980, 5247=>975, 5248=>980, 5249=>975, 5250=>980, 5251=>501, 5252=>501, 5253=>938, |
|
173 | +5254=>938, 5255=>938, 5256=>938, 5257=>743, 5258=>743, 5259=>743, 5260=>743, 5261=>743, 5262=>743, 5263=>743, |
|
174 | +5264=>743, 5265=>743, 5266=>1029, 5267=>975, 5268=>1029, 5269=>975, 5270=>1029, 5271=>975, 5272=>1029, 5273=>975, |
|
175 | +5274=>1029, 5275=>975, 5276=>1029, 5277=>975, 5278=>1029, 5279=>975, 5280=>1029, 5281=>501, 5282=>501, 5283=>626, |
|
176 | +5284=>626, 5285=>626, 5286=>626, 5287=>626, 5288=>626, 5289=>626, 5290=>626, 5291=>626, 5292=>881, 5293=>854, |
|
177 | +5294=>863, 5295=>874, 5296=>863, 5297=>874, 5298=>881, 5299=>874, 5300=>881, 5301=>874, 5302=>863, 5303=>874, |
|
178 | +5304=>863, 5305=>874, 5306=>863, 5307=>436, 5308=>548, 5309=>436, 5312=>988, 5313=>988, 5314=>988, 5315=>988, |
|
179 | +5316=>931, 5317=>931, 5318=>931, 5319=>931, 5320=>931, 5321=>1238, 5322=>1247, 5323=>1200, 5324=>1228, 5325=>1200, |
|
180 | +5326=>1228, 5327=>931, 5328=>660, 5329=>497, 5330=>660, 5331=>988, 5332=>988, 5333=>988, 5334=>988, 5335=>931, |
|
181 | +5336=>931, 5337=>931, 5338=>931, 5339=>931, 5340=>1231, 5341=>1247, 5342=>1283, 5343=>1228, 5344=>1283, 5345=>1228, |
|
182 | +5346=>1228, 5347=>1214, 5348=>1228, 5349=>1214, 5350=>1283, 5351=>1228, 5352=>1283, 5353=>1228, 5354=>660, 5356=>886, |
|
183 | +5357=>730, 5358=>730, 5359=>730, 5360=>730, 5361=>730, 5362=>730, 5363=>730, 5364=>730, 5365=>730, 5366=>998, |
|
184 | +5367=>958, 5368=>967, 5369=>989, 5370=>967, 5371=>989, 5372=>998, 5373=>958, 5374=>998, 5375=>958, 5376=>967, |
|
185 | +5377=>989, 5378=>967, 5379=>989, 5380=>967, 5381=>493, 5382=>460, 5383=>493, 5392=>923, 5393=>923, 5394=>923, |
|
186 | +5395=>1136, 5396=>1136, 5397=>1136, 5398=>1136, 5399=>1209, 5400=>1202, 5401=>1209, 5402=>1202, 5403=>1209, 5404=>1202, |
|
187 | +5405=>1431, 5406=>1420, 5407=>1431, 5408=>1420, 5409=>1431, 5410=>1420, 5411=>1431, 5412=>1420, 5413=>746, 5414=>776, |
|
188 | +5415=>776, 5416=>776, 5417=>776, 5418=>776, 5419=>776, 5420=>776, 5421=>776, 5422=>776, 5423=>1003, 5424=>1003, |
|
189 | +5425=>1013, 5426=>996, 5427=>1013, 5428=>996, 5429=>1003, 5430=>1003, 5431=>1003, 5432=>1003, 5433=>1013, 5434=>996, |
|
190 | +5435=>1013, 5436=>996, 5437=>1013, 5438=>495, 5440=>395, 5441=>510, 5442=>1033, 5443=>1033, 5444=>976, 5445=>976, |
|
191 | +5446=>976, 5447=>976, 5448=>733, 5449=>733, 5450=>733, 5451=>733, 5452=>733, 5453=>733, 5454=>1003, 5455=>959, |
|
192 | +5456=>495, 5458=>886, 5459=>774, 5460=>774, 5461=>774, 5462=>774, 5463=>928, 5464=>928, 5465=>928, 5466=>928, |
|
193 | +5467=>1172, 5468=>1142, 5469=>602, 5470=>812, 5471=>812, 5472=>812, 5473=>812, 5474=>812, 5475=>812, 5476=>815, |
|
194 | +5477=>815, 5478=>815, 5479=>815, 5480=>1060, 5481=>1052, 5482=>548, 5492=>977, 5493=>977, 5494=>977, 5495=>977, |
|
195 | +5496=>977, 5497=>977, 5498=>977, 5499=>618, 5500=>837, 5501=>510, 5502=>1238, 5503=>1238, 5504=>1238, 5505=>1238, |
|
196 | +5506=>1238, 5507=>1238, 5508=>1238, 5509=>989, 5514=>977, 5515=>977, 5516=>977, 5517=>977, 5518=>1591, 5519=>1591, |
|
197 | +5520=>1591, 5521=>1295, 5522=>1295, 5523=>1591, 5524=>1591, 5525=>848, 5526=>1273, 5536=>988, 5537=>988, 5538=>931, |
|
198 | +5539=>931, 5540=>931, 5541=>931, 5542=>660, 5543=>776, 5544=>776, 5545=>776, 5546=>776, 5547=>776, 5548=>776, |
|
199 | +5549=>776, 5550=>495, 5551=>743, 5598=>830, 5601=>830, 5702=>496, 5703=>496, 5742=>413, 5743=>1238, 5744=>1591, |
|
200 | +5745=>2016, 5746=>2016, 5747=>1720, 5748=>1678, 5749=>2016, 5750=>2016, 7424=>652, 7425=>833, 7426=>1048, 7427=>608, |
|
201 | +7428=>593, 7429=>676, 7430=>676, 7431=>559, 7432=>557, 7433=>343, 7434=>494, 7435=>665, 7436=>539, 7437=>817, |
|
202 | +7438=>701, 7439=>687, 7440=>593, 7441=>660, 7442=>660, 7443=>660, 7444=>1094, 7446=>687, 7447=>687, 7448=>556, |
|
203 | +7449=>642, 7450=>642, 7451=>580, 7452=>634, 7453=>737, 7454=>948, 7455=>695, 7456=>652, 7457=>924, 7458=>582, |
|
204 | +7459=>646, 7462=>539, 7463=>652, 7464=>691, 7465=>556, 7466=>781, 7467=>732, 7468=>487, 7469=>683, 7470=>480, |
|
205 | +7472=>523, 7473=>430, 7474=>430, 7475=>517, 7476=>527, 7477=>234, 7478=>234, 7479=>488, 7480=>401, 7481=>626, |
|
206 | +7482=>527, 7483=>527, 7484=>535, 7485=>509, 7486=>461, 7487=>485, 7488=>430, 7489=>511, 7490=>695, 7491=>458, |
|
207 | +7492=>458, 7493=>479, 7494=>712, 7495=>479, 7496=>479, 7497=>479, 7498=>479, 7499=>386, 7500=>386, 7501=>479, |
|
208 | +7502=>219, 7503=>487, 7504=>664, 7505=>456, 7506=>488, 7507=>414, 7508=>488, 7509=>488, 7510=>479, 7511=>388, |
|
209 | +7512=>456, 7513=>462, 7514=>664, 7515=>501, 7517=>451, 7518=>429, 7519=>433, 7520=>493, 7521=>406, 7522=>219, |
|
210 | +7523=>315, 7524=>456, 7525=>501, 7526=>451, 7527=>429, 7528=>451, 7529=>493, 7530=>406, 7543=>716, 7544=>527, |
|
211 | +7547=>545, 7557=>514, 7579=>479, 7580=>414, 7581=>414, 7582=>488, 7583=>386, 7584=>377, 7585=>348, 7586=>479, |
|
212 | +7587=>456, 7588=>347, 7589=>281, 7590=>347, 7591=>347, 7592=>431, 7593=>326, 7594=>330, 7595=>370, 7596=>664, |
|
213 | +7597=>664, 7598=>562, 7599=>562, 7600=>448, 7601=>488, 7602=>542, 7603=>422, 7604=>396, 7605=>388, 7606=>583, |
|
214 | +7607=>494, 7608=>399, 7609=>451, 7610=>501, 7611=>417, 7612=>523, 7613=>470, 7614=>455, 7615=>425, 7620=>0, |
|
215 | +7621=>0, 7622=>0, 7623=>0, 7624=>0, 7625=>0, 7680=>774, 7681=>675, 7682=>762, 7683=>716, 7684=>762, |
|
216 | +7685=>716, 7686=>762, 7687=>716, 7688=>734, 7689=>593, 7690=>830, 7691=>716, 7692=>830, 7693=>716, 7694=>830, |
|
217 | +7695=>716, 7696=>830, 7697=>716, 7698=>830, 7699=>716, 7700=>683, 7701=>678, 7702=>683, 7703=>678, 7704=>683, |
|
218 | +7705=>678, 7706=>683, 7707=>678, 7708=>683, 7709=>678, 7710=>683, 7711=>435, 7712=>821, 7713=>716, 7714=>837, |
|
219 | +7715=>712, 7716=>837, 7717=>712, 7718=>837, 7719=>712, 7720=>837, 7721=>712, 7722=>837, 7723=>712, 7724=>372, |
|
220 | +7725=>343, 7726=>372, 7727=>343, 7728=>775, 7729=>665, 7730=>775, 7731=>665, 7732=>775, 7733=>665, 7734=>637, |
|
221 | +7735=>343, 7736=>637, 7737=>343, 7738=>637, 7739=>343, 7740=>637, 7741=>343, 7742=>995, 7743=>1042, 7744=>995, |
|
222 | +7745=>1042, 7746=>995, 7747=>1042, 7748=>837, 7749=>712, 7750=>837, 7751=>712, 7752=>837, 7753=>712, 7754=>837, |
|
223 | +7755=>712, 7756=>850, 7757=>687, 7758=>850, 7759=>687, 7760=>850, 7761=>687, 7762=>850, 7763=>687, 7764=>733, |
|
224 | +7765=>716, 7766=>733, 7767=>716, 7768=>770, 7769=>493, 7770=>770, 7771=>493, 7772=>770, 7773=>493, 7774=>770, |
|
225 | +7775=>493, 7776=>720, 7777=>595, 7778=>720, 7779=>595, 7780=>720, 7781=>595, 7782=>720, 7783=>595, 7784=>720, |
|
226 | +7785=>595, 7786=>682, 7787=>478, 7788=>682, 7789=>478, 7790=>682, 7791=>478, 7792=>682, 7793=>478, 7794=>812, |
|
227 | +7795=>712, 7796=>812, 7797=>712, 7798=>812, 7799=>712, 7800=>812, 7801=>712, 7802=>812, 7803=>712, 7804=>774, |
|
228 | +7805=>652, 7806=>774, 7807=>652, 7808=>1103, 7809=>924, 7810=>1103, 7811=>924, 7812=>1103, 7813=>924, 7814=>1103, |
|
229 | +7815=>924, 7816=>1103, 7817=>924, 7818=>771, 7819=>645, 7820=>771, 7821=>645, 7822=>724, 7823=>652, 7824=>725, |
|
230 | +7825=>582, 7826=>725, 7827=>582, 7828=>725, 7829=>582, 7830=>712, 7831=>478, 7832=>924, 7833=>652, 7834=>675, |
|
231 | +7835=>435, 7838=>896, 7839=>687, 7840=>774, 7841=>675, 7842=>774, 7843=>675, 7844=>774, 7845=>675, 7846=>774, |
|
232 | +7847=>675, 7848=>774, 7849=>675, 7850=>774, 7851=>675, 7852=>774, 7853=>675, 7854=>774, 7855=>675, 7856=>774, |
|
233 | +7857=>675, 7858=>774, 7859=>675, 7860=>774, 7861=>675, 7862=>774, 7863=>675, 7864=>683, 7865=>678, 7866=>683, |
|
234 | +7867=>678, 7868=>683, 7869=>678, 7870=>683, 7871=>678, 7872=>683, 7873=>678, 7874=>683, 7875=>678, 7876=>683, |
|
235 | +7877=>678, 7878=>683, 7879=>678, 7880=>372, 7881=>343, 7882=>372, 7883=>343, 7884=>850, 7885=>687, 7886=>850, |
|
236 | +7887=>687, 7888=>850, 7889=>687, 7890=>850, 7891=>687, 7892=>850, 7893=>687, 7894=>850, 7895=>687, 7896=>850, |
|
237 | +7897=>687, 7898=>850, 7899=>687, 7900=>850, 7901=>687, 7902=>850, 7903=>687, 7904=>850, 7905=>687, 7906=>850, |
|
238 | +7907=>687, 7908=>812, 7909=>712, 7910=>812, 7911=>712, 7912=>812, 7913=>712, 7914=>812, 7915=>712, 7916=>812, |
|
239 | +7917=>712, 7918=>812, 7919=>712, 7920=>812, 7921=>712, 7922=>724, 7923=>652, 7924=>724, 7925=>652, 7926=>724, |
|
240 | +7927=>652, 7928=>724, 7929=>652, 7936=>687, 7937=>687, 7938=>687, 7939=>687, 7940=>687, 7941=>687, 7942=>687, |
|
241 | +7943=>687, 7944=>774, 7945=>774, 7946=>1041, 7947=>1043, 7948=>935, 7949=>963, 7950=>835, 7951=>859, 7952=>557, |
|
242 | +7953=>557, 7954=>557, 7955=>557, 7956=>557, 7957=>557, 7960=>792, 7961=>794, 7962=>1100, 7963=>1096, 7964=>1023, |
|
243 | +7965=>1052, 7968=>712, 7969=>712, 7970=>712, 7971=>712, 7972=>712, 7973=>712, 7974=>712, 7975=>712, 7976=>945, |
|
244 | +7977=>951, 7978=>1250, 7979=>1250, 7980=>1180, 7981=>1206, 7982=>1054, 7983=>1063, 7984=>390, 7985=>390, 7986=>390, |
|
245 | +7987=>390, 7988=>390, 7989=>390, 7990=>390, 7991=>390, 7992=>483, 7993=>489, 7994=>777, 7995=>785, 7996=>712, |
|
246 | +7997=>738, 7998=>604, 7999=>604, 8000=>687, 8001=>687, 8002=>687, 8003=>687, 8004=>687, 8005=>687, 8008=>892, |
|
247 | +8009=>933, 8010=>1221, 8011=>1224, 8012=>1053, 8013=>1082, 8016=>675, 8017=>675, 8018=>675, 8019=>675, 8020=>675, |
|
248 | +8021=>675, 8022=>675, 8023=>675, 8025=>930, 8027=>1184, 8029=>1199, 8031=>1049, 8032=>869, 8033=>869, 8034=>869, |
|
249 | +8035=>869, 8036=>869, 8037=>869, 8038=>869, 8039=>869, 8040=>909, 8041=>958, 8042=>1246, 8043=>1251, 8044=>1076, |
|
250 | +8045=>1105, 8046=>1028, 8047=>1076, 8048=>687, 8049=>687, 8050=>557, 8051=>557, 8052=>712, 8053=>712, 8054=>390, |
|
251 | +8055=>390, 8056=>687, 8057=>687, 8058=>675, 8059=>675, 8060=>869, 8061=>869, 8064=>687, 8065=>687, 8066=>687, |
|
252 | +8067=>687, 8068=>687, 8069=>687, 8070=>687, 8071=>687, 8072=>774, 8073=>774, 8074=>1041, 8075=>1043, 8076=>935, |
|
253 | +8077=>963, 8078=>835, 8079=>859, 8080=>712, 8081=>712, 8082=>712, 8083=>712, 8084=>712, 8085=>712, 8086=>712, |
|
254 | +8087=>712, 8088=>945, 8089=>951, 8090=>1250, 8091=>1250, 8092=>1180, 8093=>1206, 8094=>1054, 8095=>1063, 8096=>869, |
|
255 | +8097=>869, 8098=>869, 8099=>869, 8100=>869, 8101=>869, 8102=>869, 8103=>869, 8104=>909, 8105=>958, 8106=>1246, |
|
256 | +8107=>1251, 8108=>1076, 8109=>1105, 8110=>1028, 8111=>1076, 8112=>687, 8113=>687, 8114=>687, 8115=>687, 8116=>687, |
|
257 | +8118=>687, 8119=>687, 8120=>774, 8121=>774, 8122=>876, 8123=>797, 8124=>774, 8125=>500, 8126=>500, 8127=>500, |
|
258 | +8128=>500, 8129=>500, 8130=>712, 8131=>712, 8132=>712, 8134=>712, 8135=>712, 8136=>929, 8137=>846, 8138=>1080, |
|
259 | +8139=>1009, 8140=>837, 8141=>500, 8142=>500, 8143=>500, 8144=>390, 8145=>390, 8146=>390, 8147=>390, 8150=>390, |
|
260 | +8151=>390, 8152=>372, 8153=>372, 8154=>621, 8155=>563, 8157=>500, 8158=>500, 8159=>500, 8160=>675, 8161=>675, |
|
261 | +8162=>675, 8163=>675, 8164=>716, 8165=>716, 8166=>675, 8167=>675, 8168=>724, 8169=>724, 8170=>1020, 8171=>980, |
|
262 | +8172=>838, 8173=>500, 8174=>500, 8175=>500, 8178=>869, 8179=>869, 8180=>869, 8182=>869, 8183=>869, 8184=>1065, |
|
263 | +8185=>891, 8186=>1084, 8187=>894, 8188=>850, 8189=>500, 8190=>500, 8192=>500, 8193=>1000, 8194=>500, 8195=>1000, |
|
264 | +8196=>330, 8197=>250, 8198=>167, 8199=>696, 8200=>380, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0, |
|
265 | +8206=>0, 8207=>0, 8208=>415, 8209=>415, 8210=>696, 8213=>1000, 8214=>500, 8215=>500, 8219=>380, 8223=>657, |
|
266 | +8227=>639, 8228=>380, 8229=>685, 8231=>348, 8234=>0, 8235=>0, 8236=>0, 8237=>0, 8238=>0, 8239=>200, |
|
267 | +8241=>1908, 8242=>264, 8243=>447, 8244=>630, 8245=>264, 8246=>447, 8247=>630, 8248=>733, 8251=>972, 8252=>627, |
|
268 | +8253=>580, 8254=>500, 8255=>828, 8256=>828, 8257=>329, 8258=>1023, 8259=>500, 8260=>167, 8261=>457, 8262=>457, |
|
269 | +8263=>1030, 8264=>829, 8265=>829, 8266=>513, 8267=>687, 8268=>500, 8269=>500, 8270=>523, 8271=>400, 8272=>828, |
|
270 | +8273=>523, 8274=>556, 8275=>838, 8276=>828, 8277=>838, 8278=>684, 8279=>813, 8280=>838, 8281=>838, 8282=>380, |
|
271 | +8283=>872, 8284=>838, 8285=>380, 8286=>380, 8287=>222, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, |
|
272 | +8298=>0, 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>438, 8305=>219, 8308=>438, 8309=>438, |
|
273 | +8310=>438, 8311=>438, 8312=>438, 8313=>438, 8314=>528, 8315=>528, 8316=>528, 8317=>288, 8318=>288, 8319=>456, |
|
274 | +8320=>438, 8321=>438, 8322=>438, 8323=>438, 8324=>438, 8325=>438, 8326=>438, 8327=>438, 8328=>438, 8329=>438, |
|
275 | +8330=>528, 8331=>528, 8332=>528, 8333=>288, 8334=>288, 8336=>458, 8337=>479, 8338=>488, 8339=>413, 8340=>479, |
|
276 | +8352=>929, 8353=>696, 8354=>696, 8355=>696, 8356=>696, 8357=>1042, 8358=>837, 8359=>1488, 8360=>1205, 8361=>1103, |
|
277 | +8362=>854, 8363=>714, 8365=>696, 8366=>682, 8367=>1392, 8368=>696, 8369=>696, 8370=>696, 8371=>696, 8372=>859, |
|
278 | +8373=>696, 8400=>0, 8401=>0, 8406=>0, 8407=>0, 8411=>0, 8412=>0, 8417=>0, 8448=>1106, 8449=>1106, |
|
279 | +8450=>734, 8451=>1211, 8452=>896, 8453=>1114, 8454=>1148, 8455=>696, 8456=>698, 8457=>952, 8459=>1073, 8460=>913, |
|
280 | +8461=>888, 8462=>712, 8463=>712, 8464=>597, 8465=>697, 8466=>856, 8467=>472, 8468=>974, 8469=>837, 8470=>1203, |
|
281 | +8471=>1000, 8472=>697, 8473=>750, 8474=>850, 8475=>938, 8476=>814, 8477=>801, 8478=>896, 8479=>710, 8480=>1020, |
|
282 | +8481=>1239, 8483=>834, 8484=>754, 8485=>622, 8486=>850, 8487=>769, 8488=>763, 8489=>303, 8490=>775, 8491=>774, |
|
283 | +8492=>928, 8493=>818, 8494=>854, 8495=>636, 8496=>729, 8497=>808, 8498=>683, 8499=>1184, 8500=>465, 8501=>794, |
|
284 | +8502=>731, 8503=>494, 8504=>684, 8505=>380, 8506=>945, 8507=>1370, 8508=>790, 8509=>737, 8510=>654, 8511=>863, |
|
285 | +8512=>840, 8513=>786, 8514=>576, 8515=>637, 8516=>760, 8517=>830, 8518=>716, 8519=>678, 8520=>343, 8521=>343, |
|
286 | +8523=>872, 8526=>547, 8531=>1035, 8532=>1035, 8533=>1035, 8534=>1035, 8535=>1035, 8536=>1035, 8537=>1035, 8538=>1035, |
|
287 | +8539=>1035, 8540=>1035, 8541=>1035, 8542=>1035, 8543=>615, 8544=>372, 8545=>659, 8546=>945, 8547=>1099, 8548=>774, |
|
288 | +8549=>1099, 8550=>1386, 8551=>1672, 8552=>1121, 8553=>771, 8554=>1120, 8555=>1407, 8556=>637, 8557=>734, 8558=>830, |
|
289 | +8559=>995, 8560=>343, 8561=>607, 8562=>872, 8563=>984, 8564=>652, 8565=>962, 8566=>1227, 8567=>1491, 8568=>969, |
|
290 | +8569=>645, 8570=>969, 8571=>1233, 8572=>343, 8573=>593, 8574=>716, 8575=>1042, 8576=>1289, 8577=>830, 8578=>1289, |
|
291 | +8579=>734, 8580=>593, 8592=>838, 8593=>838, 8594=>838, 8595=>838, 8596=>838, 8597=>838, 8598=>838, 8599=>838, |
|
292 | +8600=>838, 8601=>838, 8602=>838, 8603=>838, 8604=>838, 8605=>838, 8606=>838, 8607=>838, 8608=>838, 8609=>838, |
|
293 | +8610=>838, 8611=>838, 8612=>838, 8613=>838, 8614=>838, 8615=>838, 8616=>838, 8617=>838, 8618=>838, 8619=>838, |
|
294 | +8620=>838, 8621=>838, 8622=>838, 8623=>838, 8624=>838, 8625=>838, 8626=>838, 8627=>838, 8628=>838, 8629=>838, |
|
295 | +8630=>838, 8631=>838, 8632=>838, 8633=>838, 8634=>838, 8635=>838, 8636=>838, 8637=>838, 8638=>838, 8639=>838, |
|
296 | +8640=>838, 8641=>838, 8642=>838, 8643=>838, 8644=>838, 8645=>838, 8646=>838, 8647=>838, 8648=>838, 8649=>838, |
|
297 | +8650=>838, 8651=>838, 8652=>838, 8653=>838, 8654=>838, 8655=>838, 8656=>838, 8657=>838, 8658=>838, 8659=>838, |
|
298 | +8660=>838, 8661=>838, 8662=>838, 8663=>838, 8664=>838, 8665=>838, 8666=>838, 8667=>838, 8668=>838, 8669=>838, |
|
299 | +8670=>838, 8671=>838, 8672=>838, 8673=>838, 8674=>838, 8675=>838, 8676=>838, 8677=>838, 8678=>838, 8679=>838, |
|
300 | +8680=>838, 8681=>838, 8682=>838, 8683=>838, 8684=>838, 8685=>838, 8686=>838, 8687=>838, 8688=>838, 8689=>838, |
|
301 | +8690=>838, 8691=>838, 8692=>838, 8693=>838, 8694=>838, 8695=>838, 8696=>838, 8697=>838, 8698=>838, 8699=>838, |
|
302 | +8700=>838, 8701=>838, 8702=>838, 8703=>838, 8704=>774, 8705=>696, 8706=>544, 8707=>683, 8708=>683, 8709=>856, |
|
303 | +8710=>697, 8711=>697, 8712=>896, 8713=>896, 8714=>750, 8715=>896, 8716=>896, 8717=>750, 8718=>636, 8719=>787, |
|
304 | +8720=>787, 8721=>718, 8722=>838, 8723=>838, 8724=>696, 8725=>365, 8726=>696, 8727=>838, 8728=>626, 8729=>380, |
|
305 | +8730=>667, 8731=>667, 8732=>667, 8733=>712, 8734=>833, 8735=>838, 8736=>896, 8737=>896, 8738=>838, 8739=>500, |
|
306 | +8740=>500, 8741=>500, 8742=>500, 8743=>812, 8744=>812, 8745=>812, 8746=>812, 8747=>610, 8748=>929, 8749=>1295, |
|
307 | +8750=>563, 8751=>977, 8752=>1313, 8753=>563, 8754=>563, 8755=>563, 8756=>696, 8757=>696, 8758=>294, 8759=>696, |
|
308 | +8760=>838, 8761=>838, 8762=>838, 8763=>838, 8764=>838, 8765=>838, 8766=>838, 8767=>838, 8768=>375, 8769=>838, |
|
309 | +8770=>838, 8771=>838, 8772=>838, 8773=>838, 8774=>838, 8775=>838, 8776=>838, 8777=>838, 8778=>838, 8779=>838, |
|
310 | +8780=>838, 8781=>838, 8782=>838, 8783=>838, 8784=>838, 8785=>838, 8786=>838, 8787=>838, 8788=>1063, 8789=>1063, |
|
311 | +8790=>838, 8791=>838, 8792=>838, 8793=>838, 8794=>838, 8795=>838, 8796=>838, 8797=>838, 8798=>838, 8799=>838, |
|
312 | +8800=>838, 8801=>838, 8802=>838, 8803=>838, 8804=>838, 8805=>838, 8806=>838, 8807=>838, 8808=>841, 8809=>841, |
|
313 | +8810=>1047, 8811=>1047, 8812=>500, 8813=>838, 8814=>838, 8815=>838, 8816=>838, 8817=>838, 8818=>838, 8819=>838, |
|
314 | +8820=>838, 8821=>838, 8822=>838, 8823=>838, 8824=>838, 8825=>838, 8826=>838, 8827=>838, 8828=>838, 8829=>838, |
|
315 | +8830=>838, 8831=>838, 8832=>838, 8833=>838, 8834=>838, 8835=>838, 8836=>838, 8837=>838, 8838=>838, 8839=>838, |
|
316 | +8840=>838, 8841=>838, 8842=>838, 8843=>838, 8844=>812, 8845=>812, 8846=>812, 8847=>838, 8848=>838, 8849=>838, |
|
317 | +8850=>838, 8851=>796, 8852=>796, 8853=>838, 8854=>838, 8855=>838, 8856=>838, 8857=>838, 8858=>838, 8859=>838, |
|
318 | +8860=>838, 8861=>838, 8862=>838, 8863=>838, 8864=>838, 8865=>838, 8866=>914, 8867=>914, 8868=>914, 8869=>914, |
|
319 | +8870=>542, 8871=>542, 8872=>914, 8873=>914, 8874=>914, 8875=>914, 8876=>914, 8877=>914, 8878=>914, 8879=>914, |
|
320 | +8880=>838, 8881=>838, 8882=>838, 8883=>838, 8884=>838, 8885=>838, 8886=>1000, 8887=>1000, 8888=>838, 8889=>838, |
|
321 | +8890=>542, 8891=>812, 8892=>812, 8893=>812, 8894=>838, 8895=>838, 8896=>843, 8897=>843, 8898=>843, 8899=>843, |
|
322 | +8900=>494, 8901=>380, 8902=>626, 8903=>838, 8904=>1000, 8905=>1000, 8906=>1000, 8907=>1000, 8908=>1000, 8909=>838, |
|
323 | +8910=>812, 8911=>812, 8912=>838, 8913=>838, 8914=>838, 8915=>838, 8916=>838, 8917=>838, 8918=>838, 8919=>838, |
|
324 | +8920=>1422, 8921=>1422, 8922=>838, 8923=>838, 8924=>838, 8925=>838, 8926=>838, 8927=>838, 8928=>838, 8929=>838, |
|
325 | +8930=>838, 8931=>838, 8932=>838, 8933=>838, 8934=>838, 8935=>838, 8936=>838, 8937=>838, 8938=>838, 8939=>838, |
|
326 | +8940=>838, 8941=>838, 8942=>1000, 8943=>1000, 8944=>1000, 8945=>1000, 8946=>1158, 8947=>896, 8948=>750, 8949=>896, |
|
327 | +8950=>896, 8951=>750, 8952=>896, 8953=>896, 8954=>1158, 8955=>896, 8956=>750, 8957=>896, 8958=>750, 8959=>896, |
|
328 | +8960=>602, 8961=>602, 8962=>716, 8963=>838, 8964=>838, 8965=>838, 8966=>838, 8967=>488, 8968=>457, 8969=>457, |
|
329 | +8970=>457, 8971=>457, 8972=>809, 8973=>809, 8974=>809, 8975=>809, 8976=>838, 8977=>539, 8984=>928, 8985=>838, |
|
330 | +8988=>469, 8989=>469, 8990=>469, 8991=>469, 8992=>610, 8993=>610, 8996=>1152, 8997=>1152, 8998=>1414, 8999=>1152, |
|
331 | +9000=>1443, 9003=>1414, 9004=>873, 9075=>390, 9076=>716, 9077=>869, 9082=>687, 9085=>863, 9095=>1152, 9108=>873, |
|
332 | +9115=>500, 9116=>500, 9117=>500, 9118=>500, 9119=>500, 9120=>500, 9121=>500, 9122=>500, 9123=>500, 9124=>500, |
|
333 | +9125=>500, 9126=>500, 9127=>750, 9128=>750, 9129=>750, 9130=>750, 9131=>750, 9132=>750, 9133=>750, 9134=>610, |
|
334 | +9166=>838, 9167=>945, 9187=>873, 9189=>769, 9250=>716, 9251=>716, 9312=>847, 9313=>847, 9314=>847, 9315=>847, |
|
335 | +9316=>847, 9317=>847, 9318=>847, 9319=>847, 9320=>847, 9321=>847, 9600=>769, 9601=>769, 9602=>769, 9603=>769, |
|
336 | +9604=>769, 9605=>769, 9606=>769, 9607=>769, 9608=>769, 9609=>769, 9610=>769, 9611=>769, 9612=>769, 9613=>769, |
|
337 | +9614=>769, 9615=>769, 9616=>769, 9617=>769, 9618=>769, 9619=>769, 9620=>769, 9621=>769, 9622=>769, 9623=>769, |
|
338 | +9624=>769, 9625=>769, 9626=>769, 9627=>769, 9628=>769, 9629=>769, 9630=>769, 9631=>769, 9632=>945, 9633=>945, |
|
339 | +9634=>945, 9635=>945, 9636=>945, 9637=>945, 9638=>945, 9639=>945, 9640=>945, 9641=>945, 9642=>678, 9643=>678, |
|
340 | +9644=>945, 9645=>945, 9646=>550, 9647=>550, 9648=>769, 9649=>769, 9650=>769, 9651=>769, 9652=>502, 9653=>502, |
|
341 | +9654=>769, 9655=>769, 9656=>502, 9657=>502, 9658=>769, 9659=>769, 9660=>769, 9661=>769, 9662=>502, 9663=>502, |
|
342 | +9664=>769, 9665=>769, 9666=>502, 9667=>502, 9668=>769, 9669=>769, 9670=>769, 9671=>769, 9672=>769, 9673=>873, |
|
343 | +9674=>494, 9675=>873, 9676=>873, 9677=>873, 9678=>873, 9679=>873, 9680=>873, 9681=>873, 9682=>873, 9683=>873, |
|
344 | +9684=>873, 9685=>873, 9686=>527, 9687=>527, 9688=>840, 9689=>970, 9690=>970, 9691=>970, 9692=>387, 9693=>387, |
|
345 | +9694=>387, 9695=>387, 9696=>769, 9697=>769, 9698=>769, 9699=>769, 9700=>769, 9701=>769, 9702=>639, 9703=>945, |
|
346 | +9704=>945, 9705=>945, 9706=>945, 9707=>945, 9708=>769, 9709=>769, 9710=>769, 9711=>1119, 9712=>945, 9713=>945, |
|
347 | +9714=>945, 9715=>945, 9716=>873, 9717=>873, 9718=>873, 9719=>873, 9720=>769, 9721=>769, 9722=>769, 9723=>830, |
|
348 | +9724=>830, 9725=>732, 9726=>732, 9727=>769, 9728=>896, 9729=>1000, 9730=>896, 9731=>896, 9732=>896, 9733=>896, |
|
349 | +9734=>896, 9735=>573, 9736=>896, 9737=>896, 9738=>888, 9739=>888, 9740=>671, 9741=>1013, 9742=>1246, 9743=>1250, |
|
350 | +9744=>896, 9745=>896, 9746=>896, 9747=>532, 9748=>896, 9749=>896, 9750=>896, 9751=>896, 9752=>896, 9753=>896, |
|
351 | +9754=>896, 9755=>896, 9756=>896, 9757=>609, 9758=>896, 9759=>609, 9760=>896, 9761=>896, 9762=>896, 9763=>896, |
|
352 | +9764=>669, 9765=>746, 9766=>649, 9767=>784, 9768=>545, 9769=>896, 9770=>896, 9771=>896, 9772=>710, 9773=>896, |
|
353 | +9774=>896, 9775=>896, 9776=>896, 9777=>896, 9778=>896, 9779=>896, 9780=>896, 9781=>896, 9782=>896, 9783=>896, |
|
354 | +9784=>896, 9785=>896, 9786=>896, 9787=>896, 9788=>896, 9789=>896, 9790=>896, 9791=>614, 9792=>731, 9793=>731, |
|
355 | +9794=>896, 9795=>896, 9796=>896, 9797=>896, 9798=>896, 9799=>896, 9800=>896, 9801=>896, 9802=>896, 9803=>896, |
|
356 | +9804=>896, 9805=>896, 9806=>896, 9807=>896, 9808=>896, 9809=>896, 9810=>896, 9811=>896, 9812=>896, 9813=>896, |
|
357 | +9814=>896, 9815=>896, 9816=>896, 9817=>896, 9818=>896, 9819=>896, 9820=>896, 9821=>896, 9822=>896, 9823=>896, |
|
358 | +9824=>896, 9825=>896, 9826=>896, 9827=>896, 9828=>896, 9829=>896, 9830=>896, 9831=>896, 9832=>896, 9833=>472, |
|
359 | +9834=>638, 9835=>896, 9836=>896, 9837=>472, 9838=>357, 9839=>484, 9840=>748, 9841=>766, 9842=>896, 9843=>896, |
|
360 | +9844=>896, 9845=>896, 9846=>896, 9847=>896, 9848=>896, 9849=>896, 9850=>896, 9851=>896, 9852=>896, 9853=>896, |
|
361 | +9854=>896, 9855=>896, 9856=>869, 9857=>869, 9858=>869, 9859=>869, 9860=>869, 9861=>869, 9862=>896, 9863=>896, |
|
362 | +9864=>896, 9865=>896, 9866=>896, 9867=>896, 9868=>896, 9869=>896, 9870=>896, 9871=>896, 9872=>896, 9873=>896, |
|
363 | +9874=>896, 9875=>896, 9876=>896, 9877=>541, 9878=>896, 9879=>896, 9880=>896, 9881=>896, 9882=>896, 9883=>896, |
|
364 | +9884=>896, 9888=>896, 9889=>702, 9890=>1003, 9891=>1085, 9892=>1143, 9893=>901, 9894=>838, 9895=>838, 9896=>838, |
|
365 | +9897=>838, 9898=>838, 9899=>838, 9900=>838, 9901=>838, 9902=>838, 9903=>838, 9904=>844, 9905=>838, 9906=>731, |
|
366 | +9907=>732, 9908=>732, 9909=>732, 9910=>850, 9911=>732, 9912=>732, 9985=>838, 9986=>838, 9987=>838, 9988=>838, |
|
367 | +9990=>838, 9991=>838, 9992=>838, 9993=>838, 9996=>838, 9997=>838, 9998=>838, 9999=>838, 10000=>838, 10001=>838, |
|
368 | +10002=>838, 10003=>838, 10004=>838, 10005=>838, 10006=>838, 10007=>838, 10008=>838, 10009=>838, 10010=>838, 10011=>838, |
|
369 | +10012=>838, 10013=>838, 10014=>838, 10015=>838, 10016=>838, 10017=>838, 10018=>838, 10019=>838, 10020=>838, 10021=>838, |
|
370 | +10022=>838, 10023=>838, 10025=>838, 10026=>838, 10027=>838, 10028=>838, 10029=>838, 10030=>838, 10031=>838, 10032=>838, |
|
371 | +10033=>838, 10034=>838, 10035=>838, 10036=>838, 10037=>838, 10038=>838, 10039=>838, 10040=>838, 10041=>838, 10042=>838, |
|
372 | +10043=>838, 10044=>838, 10045=>838, 10046=>838, 10047=>838, 10048=>838, 10049=>838, 10050=>838, 10051=>838, 10052=>838, |
|
373 | +10053=>838, 10054=>838, 10055=>838, 10056=>838, 10057=>838, 10058=>838, 10059=>838, 10061=>896, 10063=>896, 10064=>896, |
|
374 | +10065=>896, 10066=>896, 10070=>896, 10072=>838, 10073=>838, 10074=>838, 10075=>322, 10076=>322, 10077=>538, 10078=>538, |
|
375 | +10081=>838, 10082=>838, 10083=>838, 10084=>838, 10085=>838, 10086=>838, 10087=>838, 10088=>838, 10089=>838, 10090=>838, |
|
376 | +10091=>838, 10092=>838, 10093=>838, 10094=>838, 10095=>838, 10096=>838, 10097=>838, 10098=>838, 10099=>838, 10100=>838, |
|
377 | +10101=>838, 10102=>847, 10103=>847, 10104=>847, 10105=>847, 10106=>847, 10107=>847, 10108=>847, 10109=>847, 10110=>847, |
|
378 | +10111=>847, 10112=>838, 10113=>838, 10114=>838, 10115=>838, 10116=>838, 10117=>838, 10118=>838, 10119=>838, 10120=>838, |
|
379 | +10121=>838, 10122=>838, 10123=>838, 10124=>838, 10125=>838, 10126=>838, 10127=>838, 10128=>838, 10129=>838, 10130=>838, |
|
380 | +10131=>838, 10132=>838, 10136=>838, 10137=>838, 10138=>838, 10139=>838, 10140=>838, 10141=>838, 10142=>838, 10143=>838, |
|
381 | +10144=>838, 10145=>838, 10146=>838, 10147=>838, 10148=>838, 10149=>838, 10150=>838, 10151=>838, 10152=>838, 10153=>838, |
|
382 | +10154=>838, 10155=>838, 10156=>838, 10157=>838, 10158=>838, 10159=>838, 10161=>838, 10162=>838, 10163=>838, 10164=>838, |
|
383 | +10165=>838, 10166=>838, 10167=>838, 10168=>838, 10169=>838, 10170=>838, 10171=>838, 10172=>838, 10173=>838, 10174=>838, |
|
384 | +10181=>457, 10182=>457, 10208=>494, 10214=>487, 10215=>487, 10216=>457, 10217=>457, 10218=>721, 10219=>721, 10224=>838, |
|
385 | +10225=>838, 10226=>838, 10227=>838, 10228=>1157, 10229=>1434, 10230=>1434, 10231=>1434, 10232=>1434, 10233=>1434, 10234=>1434, |
|
386 | +10235=>1434, 10236=>1434, 10237=>1434, 10238=>1434, 10239=>1434, 10240=>781, 10241=>781, 10242=>781, 10243=>781, 10244=>781, |
|
387 | +10245=>781, 10246=>781, 10247=>781, 10248=>781, 10249=>781, 10250=>781, 10251=>781, 10252=>781, 10253=>781, 10254=>781, |
|
388 | +10255=>781, 10256=>781, 10257=>781, 10258=>781, 10259=>781, 10260=>781, 10261=>781, 10262=>781, 10263=>781, 10264=>781, |
|
389 | +10265=>781, 10266=>781, 10267=>781, 10268=>781, 10269=>781, 10270=>781, 10271=>781, 10272=>781, 10273=>781, 10274=>781, |
|
390 | +10275=>781, 10276=>781, 10277=>781, 10278=>781, 10279=>781, 10280=>781, 10281=>781, 10282=>781, 10283=>781, 10284=>781, |
|
391 | +10285=>781, 10286=>781, 10287=>781, 10288=>781, 10289=>781, 10290=>781, 10291=>781, 10292=>781, 10293=>781, 10294=>781, |
|
392 | +10295=>781, 10296=>781, 10297=>781, 10298=>781, 10299=>781, 10300=>781, 10301=>781, 10302=>781, 10303=>781, 10304=>781, |
|
393 | +10305=>781, 10306=>781, 10307=>781, 10308=>781, 10309=>781, 10310=>781, 10311=>781, 10312=>781, 10313=>781, 10314=>781, |
|
394 | +10315=>781, 10316=>781, 10317=>781, 10318=>781, 10319=>781, 10320=>781, 10321=>781, 10322=>781, 10323=>781, 10324=>781, |
|
395 | +10325=>781, 10326=>781, 10327=>781, 10328=>781, 10329=>781, 10330=>781, 10331=>781, 10332=>781, 10333=>781, 10334=>781, |
|
396 | +10335=>781, 10336=>781, 10337=>781, 10338=>781, 10339=>781, 10340=>781, 10341=>781, 10342=>781, 10343=>781, 10344=>781, |
|
397 | +10345=>781, 10346=>781, 10347=>781, 10348=>781, 10349=>781, 10350=>781, 10351=>781, 10352=>781, 10353=>781, 10354=>781, |
|
398 | +10355=>781, 10356=>781, 10357=>781, 10358=>781, 10359=>781, 10360=>781, 10361=>781, 10362=>781, 10363=>781, 10364=>781, |
|
399 | +10365=>781, 10366=>781, 10367=>781, 10368=>781, 10369=>781, 10370=>781, 10371=>781, 10372=>781, 10373=>781, 10374=>781, |
|
400 | +10375=>781, 10376=>781, 10377=>781, 10378=>781, 10379=>781, 10380=>781, 10381=>781, 10382=>781, 10383=>781, 10384=>781, |
|
401 | +10385=>781, 10386=>781, 10387=>781, 10388=>781, 10389=>781, 10390=>781, 10391=>781, 10392=>781, 10393=>781, 10394=>781, |
|
402 | +10395=>781, 10396=>781, 10397=>781, 10398=>781, 10399=>781, 10400=>781, 10401=>781, 10402=>781, 10403=>781, 10404=>781, |
|
403 | +10405=>781, 10406=>781, 10407=>781, 10408=>781, 10409=>781, 10410=>781, 10411=>781, 10412=>781, 10413=>781, 10414=>781, |
|
404 | +10415=>781, 10416=>781, 10417=>781, 10418=>781, 10419=>781, 10420=>781, 10421=>781, 10422=>781, 10423=>781, 10424=>781, |
|
405 | +10425=>781, 10426=>781, 10427=>781, 10428=>781, 10429=>781, 10430=>781, 10431=>781, 10432=>781, 10433=>781, 10434=>781, |
|
406 | +10435=>781, 10436=>781, 10437=>781, 10438=>781, 10439=>781, 10440=>781, 10441=>781, 10442=>781, 10443=>781, 10444=>781, |
|
407 | +10445=>781, 10446=>781, 10447=>781, 10448=>781, 10449=>781, 10450=>781, 10451=>781, 10452=>781, 10453=>781, 10454=>781, |
|
408 | +10455=>781, 10456=>781, 10457=>781, 10458=>781, 10459=>781, 10460=>781, 10461=>781, 10462=>781, 10463=>781, 10464=>781, |
|
409 | +10465=>781, 10466=>781, 10467=>781, 10468=>781, 10469=>781, 10470=>781, 10471=>781, 10472=>781, 10473=>781, 10474=>781, |
|
410 | +10475=>781, 10476=>781, 10477=>781, 10478=>781, 10479=>781, 10480=>781, 10481=>781, 10482=>781, 10483=>781, 10484=>781, |
|
411 | +10485=>781, 10486=>781, 10487=>781, 10488=>781, 10489=>781, 10490=>781, 10491=>781, 10492=>781, 10493=>781, 10494=>781, |
|
412 | +10495=>781, 10502=>838, 10503=>838, 10506=>838, 10507=>838, 10560=>838, 10561=>838, 10627=>753, 10628=>753, 10702=>838, |
|
413 | +10703=>1046, 10704=>1046, 10705=>1000, 10706=>1000, 10707=>1000, 10708=>1000, 10709=>1000, 10731=>494, 10746=>838, 10747=>838, |
|
414 | +10752=>1000, 10753=>1000, 10754=>1000, 10764=>1661, 10765=>563, 10766=>563, 10767=>563, 10768=>563, 10769=>563, 10770=>563, |
|
415 | +10771=>563, 10772=>563, 10773=>563, 10774=>563, 10775=>563, 10776=>563, 10777=>563, 10778=>563, 10779=>563, 10780=>563, |
|
416 | +10799=>838, 10877=>838, 10878=>838, 10879=>838, 10880=>838, 10881=>838, 10882=>838, 10883=>838, 10884=>838, 10885=>838, |
|
417 | +10886=>838, 10887=>838, 10888=>838, 10889=>838, 10890=>838, 10891=>838, 10892=>838, 10893=>838, 10894=>838, 10895=>838, |
|
418 | +10896=>838, 10897=>838, 10898=>838, 10899=>838, 10900=>838, 10901=>838, 10902=>838, 10903=>838, 10904=>838, 10905=>838, |
|
419 | +10906=>838, 10907=>838, 10908=>838, 10909=>838, 10910=>838, 10911=>838, 10912=>838, 10926=>838, 10927=>838, 10928=>838, |
|
420 | +10929=>838, 10930=>838, 10931=>838, 10932=>838, 10933=>838, 10934=>838, 10935=>838, 10936=>838, 10937=>838, 10938=>838, |
|
421 | +11001=>838, 11002=>838, 11008=>838, 11009=>838, 11010=>838, 11011=>838, 11012=>838, 11013=>838, 11014=>838, 11015=>838, |
|
422 | +11016=>838, 11017=>838, 11018=>838, 11019=>838, 11020=>838, 11021=>838, 11022=>838, 11023=>838, 11024=>838, 11025=>838, |
|
423 | +11026=>945, 11027=>945, 11028=>945, 11029=>945, 11030=>769, 11031=>769, 11032=>769, 11033=>769, 11034=>945, 11039=>869, |
|
424 | +11040=>869, 11041=>873, 11042=>873, 11043=>873, 11044=>1119, 11091=>869, 11092=>869, 11360=>637, 11361=>360, 11362=>637, |
|
425 | +11363=>733, 11364=>770, 11365=>675, 11366=>478, 11367=>956, 11368=>712, 11369=>775, 11370=>665, 11371=>725, 11372=>582, |
|
426 | +11373=>860, 11374=>995, 11375=>774, 11377=>778, 11378=>1221, 11379=>1056, 11380=>652, 11381=>698, 11382=>565, 11383=>782, |
|
427 | +11385=>538, 11386=>687, 11387=>559, 11388=>219, 11389=>487, 11800=>586, 11810=>457, 11811=>457, 11812=>457, 11813=>457, |
|
428 | +11822=>580, 19904=>896, 19905=>896, 19906=>896, 19907=>896, 19908=>896, 19909=>896, 19910=>896, 19911=>896, 19912=>896, |
|
429 | +19913=>896, 19914=>896, 19915=>896, 19916=>896, 19917=>896, 19918=>896, 19919=>896, 19920=>896, 19921=>896, 19922=>896, |
|
430 | +19923=>896, 19924=>896, 19925=>896, 19926=>896, 19927=>896, 19928=>896, 19929=>896, 19930=>896, 19931=>896, 19932=>896, |
|
431 | +19933=>896, 19934=>896, 19935=>896, 19936=>896, 19937=>896, 19938=>896, 19939=>896, 19940=>896, 19941=>896, 19942=>896, |
|
432 | +19943=>896, 19944=>896, 19945=>896, 19946=>896, 19947=>896, 19948=>896, 19949=>896, 19950=>896, 19951=>896, 19952=>896, |
|
433 | +19953=>896, 19954=>896, 19955=>896, 19956=>896, 19957=>896, 19958=>896, 19959=>896, 19960=>896, 19961=>896, 19962=>896, |
|
434 | +19963=>896, 19964=>896, 19965=>896, 19966=>896, 19967=>896, 42564=>720, 42565=>595, 42566=>436, 42567=>440, 42572=>1405, |
|
435 | +42573=>1173, 42576=>1234, 42577=>1027, 42580=>1174, 42581=>972, 42582=>1100, 42583=>969, 42594=>1100, 42595=>940, 42596=>1096, |
|
436 | +42597=>915, 42598=>1260, 42599=>997, 42600=>850, 42601=>687, 42602=>1037, 42603=>868, 42604=>1406, 42605=>1106, 42606=>961, |
|
437 | +42634=>944, 42635=>749, 42636=>682, 42637=>580, 42644=>808, 42645=>712, 42760=>500, 42761=>500, 42762=>500, 42763=>500, |
|
438 | +42764=>500, 42765=>500, 42766=>500, 42767=>500, 42768=>500, 42769=>500, 42770=>500, 42771=>500, 42772=>500, 42773=>500, |
|
439 | +42774=>500, 42779=>400, 42780=>400, 42781=>287, 42782=>287, 42783=>287, 42790=>837, 42791=>712, 42792=>1031, 42793=>857, |
|
440 | +42794=>696, 42795=>557, 42800=>559, 42801=>595, 42802=>1349, 42803=>1052, 42804=>1285, 42805=>1065, 42806=>1245, 42807=>1052, |
|
441 | +42808=>1079, 42809=>922, 42810=>1079, 42811=>922, 42812=>1035, 42813=>922, 42814=>698, 42815=>549, 42822=>850, 42823=>542, |
|
442 | +42824=>683, 42825=>531, 42826=>918, 42827=>814, 42830=>1406, 42831=>1106, 42880=>637, 42881=>343, 42882=>837, 42883=>712, |
|
443 | +42889=>400, 42890=>396, 42891=>456, 42892=>306, 43003=>683, 43004=>733, 43005=>995, 43006=>372, 43007=>1325, 62917=>687, |
|
444 | +64256=>833, 64257=>787, 64258=>787, 64259=>1138, 64260=>1139, 64261=>808, 64262=>1020, 64275=>1388, 64276=>1384, 64277=>1378, |
|
445 | +64278=>1384, 64279=>1713, 64285=>343, 64286=>0, 64287=>663, 64288=>720, 64289=>963, 64290=>890, 64291=>988, 64292=>963, |
|
446 | +64293=>938, 64294=>988, 64295=>988, 64296=>976, 64297=>838, 64298=>949, 64299=>949, 64300=>949, 64301=>949, 64302=>751, |
|
447 | +64303=>751, 64304=>751, 64305=>673, 64306=>537, 64307=>654, 64308=>712, 64309=>343, 64310=>491, 64312=>724, 64313=>467, |
|
448 | +64314=>649, 64315=>650, 64316=>679, 64318=>775, 64320=>497, 64321=>773, 64323=>718, 64324=>687, 64326=>751, 64327=>729, |
|
449 | +64328=>649, 64329=>949, 64330=>751, 64331=>343, 64332=>673, 64333=>650, 64334=>687, 64335=>751, 65024=>0, 65025=>0, |
|
450 | +65026=>0, 65027=>0, 65028=>0, 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, |
|
451 | +65036=>0, 65037=>0, 65038=>0, 65039=>0, 65056=>0, 65057=>0, 65058=>0, 65059=>0, 65529=>0, 65530=>0, |
|
452 | +65531=>0, 65532=>0, 65533=>1113); |
|
453 | +$enc = ''; |
|
454 | +$diff = ''; |
|
455 | +$file = 'dejavusansbi.z'; |
|
456 | +$ctg = 'dejavusansbi.ctg.z'; |
|
457 | +$originalsize = 524056; |
|
458 | 458 | ?> |
459 | 459 | \ No newline at end of file |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if ( !defined( 'ABSPATH' ) ) { |
|
2 | + exit; |
|
3 | +} |
|
2 | 4 | $type='TrueTypeUnicode'; |
3 | 5 | $name='DejaVuSans-BoldOblique'; |
4 | 6 | $desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>-51,'Flags'=>96,'FontBBox'=>'[-1067 -385 2005 1121]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>600); |
@@ -1,4 +1,4 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if (!defined('ABSPATH')) exit; |
|
2 | 2 | $type = 'cidfont0'; |
3 | 3 | $name = 'MSungStd-Light-Acro'; |
4 | 4 | $displayname = 'MSung Light (Trad. Chinese)'; |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if ( !defined( 'ABSPATH' ) ) { |
|
2 | + exit; |
|
3 | +} |
|
2 | 4 | $type = 'cidfont0'; |
3 | 5 | $name = 'MSungStd-Light-Acro'; |
4 | 6 | $displayname = 'MSung Light (Trad. Chinese)'; |
@@ -1,33 +1,33 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if (!defined('ABSPATH')) exit; |
|
2 | 2 | // core font definition file for TCPDF (www.tcpdf.org) |
3 | -$type='core'; |
|
4 | -$dw=556; |
|
5 | -$cw=array(0=>278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278, |
|
6 | -10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278, |
|
7 | -20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278, |
|
8 | -30=>278,31=>278,32=>278,33=>333,34=>474,35=>556,36=>556,37=>889,38=>722,39=>238, |
|
9 | -40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556, |
|
10 | -50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>333,59=>333, |
|
11 | -60=>584,61=>584,62=>584,63=>611,64=>975,65=>722,66=>722,67=>722,68=>722,69=>667, |
|
12 | -70=>611,71=>778,72=>722,73=>278,74=>556,75=>722,76=>611,77=>833,78=>722,79=>778, |
|
13 | -80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667, |
|
14 | -90=>611,91=>333,92=>278,93=>333,94=>584,95=>556,96=>333,97=>556,98=>611,99=>556, |
|
15 | -100=>611,101=>556,102=>333,103=>611,104=>611,105=>278,106=>278,107=>556,108=>278, |
|
16 | -109=>889,110=>611,111=>611,112=>611,113=>611,114=>389,115=>556,116=>333,117=>611, |
|
17 | -118=>556,119=>778,120=>556,121=>556,122=>500,123=>389,124=>280,125=>389,126=>584, |
|
18 | -127=>350,128=>556,129=>350,130=>278,131=>556,132=>500,133=>1000,134=>556,135=>556, |
|
19 | -136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350, |
|
20 | -145=>278,146=>278,147=>500,148=>500,149=>350,150=>556,151=>1000,152=>333,153=>1000, |
|
21 | -154=>556,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556, |
|
22 | -163=>556,164=>556,165=>556,166=>280,167=>556,168=>333,169=>737,170=>370,171=>556, |
|
23 | -172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333, |
|
24 | -181=>611,182=>556,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834, |
|
25 | -190=>834,191=>611,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000, |
|
26 | -199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278, |
|
27 | -208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778, |
|
28 | -217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556, |
|
29 | -226=>556,227=>556,228=>556,229=>556,230=>889,231=>556,232=>556,233=>556,234=>556, |
|
30 | -235=>556,236=>278,237=>278,238=>278,239=>278,240=>611,241=>611,242=>611,243=>611, |
|
31 | -244=>611,245=>611,246=>611,247=>584,248=>611,249=>611,250=>611,251=>611,252=>611, |
|
32 | -253=>556,254=>611,255=>556); |
|
3 | +$type = 'core'; |
|
4 | +$dw = 556; |
|
5 | +$cw = array(0=>278, 1=>278, 2=>278, 3=>278, 4=>278, 5=>278, 6=>278, 7=>278, 8=>278, 9=>278, |
|
6 | +10=>278, 11=>278, 12=>278, 13=>278, 14=>278, 15=>278, 16=>278, 17=>278, 18=>278, 19=>278, |
|
7 | +20=>278, 21=>278, 22=>278, 23=>278, 24=>278, 25=>278, 26=>278, 27=>278, 28=>278, 29=>278, |
|
8 | +30=>278, 31=>278, 32=>278, 33=>333, 34=>474, 35=>556, 36=>556, 37=>889, 38=>722, 39=>238, |
|
9 | +40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278, 47=>278, 48=>556, 49=>556, |
|
10 | +50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>333, 59=>333, |
|
11 | +60=>584, 61=>584, 62=>584, 63=>611, 64=>975, 65=>722, 66=>722, 67=>722, 68=>722, 69=>667, |
|
12 | +70=>611, 71=>778, 72=>722, 73=>278, 74=>556, 75=>722, 76=>611, 77=>833, 78=>722, 79=>778, |
|
13 | +80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, |
|
14 | +90=>611, 91=>333, 92=>278, 93=>333, 94=>584, 95=>556, 96=>333, 97=>556, 98=>611, 99=>556, |
|
15 | +100=>611, 101=>556, 102=>333, 103=>611, 104=>611, 105=>278, 106=>278, 107=>556, 108=>278, |
|
16 | +109=>889, 110=>611, 111=>611, 112=>611, 113=>611, 114=>389, 115=>556, 116=>333, 117=>611, |
|
17 | +118=>556, 119=>778, 120=>556, 121=>556, 122=>500, 123=>389, 124=>280, 125=>389, 126=>584, |
|
18 | +127=>350, 128=>556, 129=>350, 130=>278, 131=>556, 132=>500, 133=>1000, 134=>556, 135=>556, |
|
19 | +136=>333, 137=>1000, 138=>667, 139=>333, 140=>1000, 141=>350, 142=>611, 143=>350, 144=>350, |
|
20 | +145=>278, 146=>278, 147=>500, 148=>500, 149=>350, 150=>556, 151=>1000, 152=>333, 153=>1000, |
|
21 | +154=>556, 155=>333, 156=>944, 157=>350, 158=>500, 159=>667, 160=>278, 161=>333, 162=>556, |
|
22 | +163=>556, 164=>556, 165=>556, 166=>280, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, |
|
23 | +172=>584, 173=>333, 174=>737, 175=>333, 176=>400, 177=>584, 178=>333, 179=>333, 180=>333, |
|
24 | +181=>611, 182=>556, 183=>278, 184=>333, 185=>333, 186=>365, 187=>556, 188=>834, 189=>834, |
|
25 | +190=>834, 191=>611, 192=>722, 193=>722, 194=>722, 195=>722, 196=>722, 197=>722, 198=>1000, |
|
26 | +199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, |
|
27 | +208=>722, 209=>722, 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, |
|
28 | +217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556, |
|
29 | +226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>556, 232=>556, 233=>556, 234=>556, |
|
30 | +235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>611, 241=>611, 242=>611, 243=>611, |
|
31 | +244=>611, 245=>611, 246=>611, 247=>584, 248=>611, 249=>611, 250=>611, 251=>611, 252=>611, |
|
32 | +253=>556, 254=>611, 255=>556); |
|
33 | 33 | ?> |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( !defined( 'ABSPATH' ) ) exit; |
|
1 | +<?php if ( !defined( 'ABSPATH' ) ) { |
|
2 | + exit; |
|
3 | +} |
|
2 | 4 | // core font definition file for TCPDF (www.tcpdf.org) |
3 | 5 | $type='core'; |
4 | 6 | $dw=556; |