From: mudrd8mz
Date: Tue, 29 Jul 2008 22:22:15 +0000 (+0000)
Subject: MDL-15055 Upgrade shipped library TCPDF to version tcpdf_php5 TCPDF 4.0.015
X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=884a3e4f357b5bfd286c9395ab31a7ce89d52541;p=moodle.git
MDL-15055 Upgrade shipped library TCPDF to version tcpdf_php5 TCPDF 4.0.015
Modified lib/pdflib.php wrapper
---
diff --git a/lib/pdflib.php b/lib/pdflib.php
index c689c2391c..aca158b7b4 100644
--- a/lib/pdflib.php
+++ b/lib/pdflib.php
@@ -39,8 +39,8 @@
*
* Example usage:
* $doc = new pdf;
- * $doc->print_header = false;
- * $doc->print_footer = false;
+ * $doc->setPrintHeader(false);
+ * $doc->setPrintFooter(false);
* $doc->AddPage();
* $doc->Write(5, 'Hello World!');
* $doc->Output();
@@ -53,13 +53,13 @@
/// Includes
-require_once('tcpdf/tcpdf.php');
+require_once(dirname(__FILE__).'/tcpdf/tcpdf.php');
/// Constants
define('PDF_CUSTOM_FONT_PATH', $CFG->dataroot.'/fonts/');
-define('PDF_DEFAULT_FONT', 'FreeSerif');
+define('PDF_DEFAULT_FONT', 'DejaVuSerif');
@@ -70,11 +70,13 @@ define('PDF_DEFAULT_FONT', 'FreeSerif');
class pdf extends TCPDF {
/**
- * Constructor
+ * Class constructor
+ *
+ * See the parent class documentation for the parameters info.
*/
- function pdf($orientation='P', $unit='mm', $format='A4', $unicode=true, $encoding='UTF-8') {
+ public function __construct($orientation='P', $unit='mm', $format='A4', $unicode=true, $encoding='UTF-8') {
- parent::TCPDF($orientation, $unit, $format, $unicode, $encoding);
+ parent::__construct($orientation, $unit, $format, $unicode, $encoding);
if (is_dir(PDF_CUSTOM_FONT_PATH)) {
$fontfiles = $this->_getfontfiles(PDF_CUSTOM_FONT_PATH);
@@ -92,19 +94,11 @@ class pdf extends TCPDF {
}
- /**
- * Fake constructor to keep PHP5 happy.
- */
- function __construct($orientation='P', $unit='mm', $format='A4', $unicode=true, $encoding='UTF-8') {
- $this->pdf($orientation, $unit, $format, $unicode, $encoding);
- }
-
-
/**
* Return fonts path
* Overriding TCPDF::_getfontpath()
*/
- function _getfontpath() {
+ protected function _getfontpath() {
global $CFG;
if (is_dir(PDF_CUSTOM_FONT_PATH)
@@ -120,7 +114,7 @@ class pdf extends TCPDF {
/**
* Get the .php files for the fonts
*/
- function _getfontfiles($fontdir) {
+ protected function _getfontfiles($fontdir) {
$dirlist = get_directory_list($fontdir);
$fontfiles = array();
diff --git a/lib/tcpdf/CHANGELOG.TXT b/lib/tcpdf/CHANGELOG.TXT
new file mode 100644
index 0000000000..47c682c16e
--- /dev/null
+++ b/lib/tcpdf/CHANGELOG.TXT
@@ -0,0 +1,488 @@
+4.0.015 (2008-07-29)
+ - Some functions were changed to support different page formats (see example_028.php).
+ - The signature of setPage() function is changed.
+
+4.0.014 (2008-07-29)
+ - K_PATH_MAIN calculation on tcpdf_config.php was fixed.
+ - HTML support for EPS/AI images was added (see example_006.php).
+ - Bugs item #2030807 "Truncated text on multipage html fields" was fixed.
+ - PDF header bug was fixed.
+ - helvetica was added as default font family.
+ - Stroke mode was fixed on Text function.
+ - several minor bugs were fixed.
+
+4.0.013 (2008-07-27)
+ - Bugs item #2027799 " Big spaces between lines after page break" was fixed.
+ - K_PATH_MAIN calculation on tcpdf_config.php was changed.
+ - Function setVisibility() was fixed to avoid the "Incorrect PDEObject type" error message.
+
+4.0.012 (2008-07-24)
+ - Addpage(), Header() and Footer() functions were changed to simplify the implementation of external header/footer functions.
+ - The following functions were added:
+ setHeader()
+ setFooter()
+ getImageRBX()
+ getImageRBY()
+ getCellHeightRatio()
+ getHeaderFont()
+ getFooterFont()
+ getRTL()
+ getBarcode()
+ getHeaderData()
+ getHeaderMargin()
+ getFooterMargin()
+
+4.0.011 (2008-07-23)
+ - Font support was improved.
+ - The folder /fonts/utils contains new utilities and instructions for embedd font files.
+ - Documentation was updated.
+
+4.0.010 (2008-07-22)
+ - HTML tables were fixed to work across pages.
+ - Header() and Footer() functions were updated to preserve previous settings.
+ - example_035.php was added.
+
+4.0.009 (2008-07-21)
+ - UTF8StringToArray() function was fixed for non-unicode mode.
+
+4.0.008 (2008-07-21)
+ - Barcodes alignment was fixed (see example_027.php).
+ - unicode_data.php was updated.
+ - Arabic shaping for "Zero-Width Non-Joiner" character (U+200C) was fixed.
+
+4.0.007 (2008-07-18)
+ - str_split was replaced by preg_split for compatibility with PHP4 version.
+ - Clipping mode was added to all graphic functions by using parameter $style = "CNZ" or "CEO" (see example_034.php).
+
+4.0.006 (2008-07-16)
+ - HTML rowspan bug was fixed.
+ - Line style for MultiCell() was fixed.
+ - WriteHTML() function was improved.
+ - CODE128C barcode was fixed (barcodes.php).
+
+4.0.005 (2008-07-11)
+ - Bug [2015715] "PHP Error/Warning" was fixed.
+
+4.0.004 (2008-07-09)
+ - HTML cell internal padding was fixed.
+
+4.0.003 (2008-07-08)
+ - Removed URL encoding when F option is selected on Output() function.
+ - fixed some minor bugs in html tables.
+
+4.0.002 (2008-07-07)
+ - Bug [2000861] was still unfixed and has been fixed.
+
+4.0.001 (2008-07-05)
+ - Bug [2000861] was fixed.
+
+4.0.000 (2008-07-03)
+ - THIS IS A MAIN RELEASE THAT INCLUDES SEVERAL NEW FEATURES AND BUGFIXES
+ - Signature fo SetTextColor() and SetFillColor() functions was changed (parameter $storeprev was removed).
+ - HTML support was completely rewritten and improved (see example 6).
+ - Alignments parameters were fixed.
+ - Functions GetArrStringWidth() and GetStringWidth() now include font parameters.
+ - Fonts support was improved.
+ - All core fonts were replaced and moved to fonts/ directory.
+ - The following functions were added: getMargins(), getFontSize(), getFontSizePt().
+ - File config/tcpdf_config_old.php was renamed tcpdf_config_alt.php and updated.
+ - Multicell and WriteHTMLCell fill function was fixed.
+ - Several minor bugs were fixed.
+ - barcodes.php was updated.
+ - All examples were updated.
+
+------------------------------------------------------------
+
+3.1.001 (2008-06-13)
+ - Bug [1992515] "K_PATH_FONTS default value wrong" was fixed.
+ - Vera font was removed, DejaVu font and Free fonts were updated.
+ - Image handling was improved.
+ - All examples were updated.
+
+3.1.000 (2008-06-11)
+ - setPDFVersion() was added to change the default PDF version (currently 1.7).
+ - setViewerPreferences() was added to control the way the document is to be presented on the screen or printed (see example 29).
+ - SetDisplayMode() signature was changed (new options were added).
+ - LinearGradient(), RadialGradient(), CoonsPatchMesh() functions were added to print various color gradients (see example 30).
+ - PieSector() function was added to render render pie charts (see example 31).
+ - ImageEps() was added to display EPS and AI images with limited support (see example 32).
+ - writeBarcode() function is now depracated, a new write1DBarcode() function was added. The barcode directory was removed and a new barcodes.php file was added.
+ - The new write1DBarcode() function support more barcodes and do not need the GD library (see example 027). All barcodes are directly written to PDF using graphic functions.
+ - HTML lists were improved and could be nested (you may now represent trees).
+ - AddFont() bug was fixed.
+ - _putfonts() bug was fixed.
+ - graphics functions were fixed.
+ - unicode_data.php file was updated (fixed).
+ - almohanad font was updated.
+ - example 18 was updated (Farsi and Arabic languages).
+ - source code cleanup.
+ - All examples were updated and new examples were added.
+
+3.0.015 (2008-06-06)
+ - AddPage() function signature is changed to include page format.
+ - example 28 was added to show page format changes.
+ - setPageUnit() function was added to change the page units of measure.
+ - setPageFormat() function was added to change the page format and orientation between pages.
+ - setPageOrientation() function was added to change the page orientation.
+ - Arabic font shaping was fixed for laa letter and square boxes (see the example 18).
+
+3.0.014 (2008-06-04)
+ - Arabic font shaping was fixed.
+ - setDefaultTableColumns() function was added.
+ - $cell_height_ratio variable was added.
+ - setCellHeightRatio() function was added to define the default height of cell repect font height.
+
+3.0.013 (2008-06-03)
+ - Multicell height parameter was fixed.
+ - Arabic font shaping was improved.
+ - unicode_data.php was updated.
+
+3.0.012 (2008-05-30)
+ - K_PATH_MAIN and K_PATH_URL constants are now automatically set on config file.
+ - DOCUMENT_ROOT constant was fixed for IIS Webserver (config file was updated).
+ - Arabic font shaping was improved.
+ - TranslateY() function was fixed (bug [1977962]).
+ - setVisibility() function was fixed.
+ - writeBarcode() function was fixed to scale using $xref parameter.
+ - All examples were updated.
+
+3.0.011 (2008-05-23)
+ - CMYK color support was added to all graphic functions.
+ - HTML table support was improved:
+ -- now it's possible to include additional html tags inside a cell;
+ -- colspan attribute was added.
+ - example 006 was updated.
+
+3.0.010 (2008-05-21)
+ - fixed $laa_array inclusion on utf8Bidi() function.
+
+3.0.009 (2008-05-20)
+ - unicode_data.php was updated.
+ - Arabic laa letter problem was fixed.
+
+3.0.008 (2008-05-12)
+ - Arabic support was fixed and improved (unicode_data.php was updated).
+ - Polycurve() function was added to draw a poly-Bezier curve.
+ - list items alignment was fixed.
+ - example 6 was updated.
+
+3.0.007 (2008-05-06)
+ - Arabic support was fixed and improved.
+ - AlMohanad (arabic) font was added.
+ - C128 barcode bugs were fixed.
+
+3.0.006 (2008-04-21)
+ - Condition to check negative width values was added.
+
+3.0.005 (2008-04-18)
+ - back-Slash character escape was fixed on writeHTML() function.
+ - Exampe 6 was updated.
+
+3.0.004 (2008-04-11)
+ - Bug [1939304] (Right to Left Issue) was fixed.
+
+3.0.003 (2008-04-07)
+ - Bug [1934523](Words between HTML tags in cell not kept on one line) was fixed.
+ - "face" attribute of "font" tag is now fully supported.
+
+3.0.002 (2008-04-01)
+ - Write() functions now return the number of cells and not the number of lines.
+ - TCPDF is released under LGPL 2.1, or any later version.
+
+3.0.001 (2008-05-28)
+ - _legacyparsejpeg() and _legacyparsepng() were renamed _parsejpeg() and _parsepng().
+ - function writeBarcode() was fixed.
+ - all examples were updated.
+ - example 27 was added to show various barcodes.
+
+3.0.000 (2008-03-27)
+ - private function pixelsToMillimeters() was changed to public function pixelsToUnits() to fix html image size bug.
+ - Image-related functions were rewritten.
+ - resize parameter was added to Image() signature to reduce the image size and fit width and height (see example 9).
+ - TCPDF now supports all images supported by GD library: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM.
+ - CMYK support was added to SetDrawColor(), SetFillColor(), SetTextColor() (see example 22).
+ - Page Groups were added (see example 23).
+ - setVisibility() function was added to restrict the rendering of some elements to screen or printout (see example 24).
+ - All private variables and functions were changed to protected.
+ - setAlpha() function was added to give transparency support for all objects (see example 25).
+ - Clipping and stroke modes were added to Text() function (see example 26).
+ - All examples were moved to "examples" directory.
+ - function setJPEGQuality() was added to set the JPEG image comrpession (see example 9).
+
+2.9.000 (2008-03-26)
+ - htmlcolors.php file was added to include html colors.
+ - Support for HTML color names and three-digit hexadecimal color codes was added.
+ - private function convertColorHexToDec() was renamed convertHTMLColorToDec().
+ - color and bgcolor attributes are now supported on all HTML tags (color nesting is also supported).
+ - Write() function were fixed.
+ - example_006.php was updated.
+ - private function setUserRights() was added to release user rights on Acrobat Reader (this allows to display forms, see example 14)
+
+2.8.000 (2008-03-20)
+ - Private variables were changed to protected.
+ - Function Write() was fixed and improved.
+ - Support for dl, dt, dd, del HTML tags was introduced.
+ - Line-trought mode was added for HTML and text.
+ - Text vertical alignment on cells were fixed.
+ - Examples were updated to reflect changes.
+
+2.7.002 (2008-03-13)
+ - Bug "[1912142] Encrypted PDF created/modified date" was fixed.
+
+2.7.001 (2008-03-10)
+ - Cell justification was fixed for non-unicode mode.
+
+2.7.000 (2008-03-09)
+ - Cell() stretching mode 4 (forced character spacing) was fixed.
+ - writeHTMLCell() now uses Multicell() to write.
+ - Multicell() has a new parameter $ishtml to act as writeHTMLCell().
+ - Write() speed was improved for non-arabic strings.
+ - Example n. 20 was changed.
+
+2.6.000 (2008-03-07)
+ - various alignments bugs were fixed.
+
+2.5.000 (2008-03-07)
+ - Several bugs were fixed.
+ - example_019.php was added to test non-unicode mode using old fonts.
+
+2.4.000 (2008-03-06)
+ - RTL support was deeply improved.
+ - GetStringWidth() was fixed to support RTL languages.
+ - Text() RTL alignment was fixed.
+ - Some functions were added: GetArrStringWidth(), GetCharWidth(), uniord(), utf8Bidi().
+ - example_018.php was added and test_unicode.php was removed.
+
+2.3.000 (2008-03-05)
+ - MultiCell() signature is changed. Now support multiple columns across pages (see example_017).
+ - Write() signature is changed. Now support the cell mode to be used with MultiCell.
+ - Header() and Footer() were changed.
+ - The following functions were added: UTF8ArrSubString() and unichr().
+ - Examples were updated to reflect last changes.
+
+2.2.004 (2008-03-04)
+ - Several examples were added.
+ - AddPage() Header() and Footer() were fixed.
+ - Documentation is now available on http://www.tcpdf.org
+
+2.2.003 (2008-03-03)
+ - [1894853] Performance of MultiCell() was improved.
+ - RadioButton and ListBox functions were added.
+ - javascript form functions were rewritten and properties names are changed. The properties function supported by form fields are listed on Possible values are listed on http://www.adobe.com/devnet/acrobat/pdfs/js_developer_guide.pdf.
+
+2.2.002 (2008-02-28)
+ - [1900495] html images path was fixed.
+ - Legacy image functions were reintroduced to allow PNG and JPEG support without GD library.
+
+2.2.001 (2008-02-16)
+ - The bug "[1894700] bug with replace relative path" was fixed
+ - Justification was fixed
+
+2.2.000 (2008-02-12)
+ - fixed javascript bug introduced with latest release
+
+2.1.002 (2008-02-12)
+ - Justify function was fixed on PHP4 version.
+ - Bookmank function was added ([1578250] Table of contents).
+ - Javascript and Form fields support was added ([1796359] Form fields).
+
+2.1.001 (2008-02-10)
+ - The bug "[1885776] Race Condition in function justitfy" was fixed.
+ - The bug "[1890217] xpdf complains that pdf is incorrect" was fixed.
+
+2.1.000 (2008-01-07)
+ - FPDF_FONTPATH constant was changed to K_PATH_FONTS on config file
+ - Bidirectional Algorithm to correctly reverse bidirectional languages was added.
+ - SetLeftMargin, SetTopMargin, SetRightMargin functions were fixed.
+ - SetCellPadding function was added.
+ - writeHTML was updated with new parameters.
+ - Text function was fixed.
+ - MultiCell function was fixed, now works also across multiple pages.
+ - Line width was fixed on Header and Footer functions and
tag.
+ - "GetImageSize" was renamed "getimagesize".
+ - Document version was changed from 1.3 to 1.5.
+ - _begindoc() function was fixed.
+ - ChangeDate was fixed and ModDate was added.
+ - The following functions were added:
+ setPage() : Move pointer to the specified document page.
+ getPage() : Get current document page number.
+ lastpage() : Reset pointer to the last document page.
+ getNumPages() : Get the total number of inserted pages.
+ GetNumChars() : count the number of (UTF-8) characters in a string.
+ - $stretch parameter was added to Cell() function to fit text on cell:
+ 0 = disabled
+ 1 = horizontal scaling only if necessary
+ 2 = forced horizontal scaling
+ 3 = character spacing only if necessary
+ 4 = forced character spacing
+ - Line function was fixed for RTL.
+ - Graphic transformation functions were added [1811158]:
+ StartTransform()
+ StopTransform()
+ ScaleX()
+ ScaleY()
+ ScaleXY()
+ Scale()
+ MirrorH()
+ MirrorV()
+ MirrorP()
+ MirrorL()
+ TranslateX()
+ TranslateY()
+ Translate()
+ Rotate()
+ SkewX()
+ SkewY()
+ Skew()
+ - Graphic function were added/updated [1688549]:
+ SetLineStyle()
+ _outPoint()
+ _outLine()
+ _outRect()
+ _outCurve()
+ Line()
+ Rect()
+ Curve
+ Ellipse
+ Circle
+ Polygon
+ RegularPolygon
+
+2.0.000 (2008-01-04)
+ - RTL (Right-To-Left) languages support was added. Language direction is set using the $l['a_meta_dir'] setting on /configure/language/xxx.php language files.
+ - setRTL($enable) method was added to manually enable/disable the RTL text direction.
+ - The attribute "dir" was added to support custom text direction on HTML tags. Possible values are: ltr - for Left-To-Right and RTL for Right-To-Left.
+ - RC4 40bit encryption was added. Check the SetProtection method.
+ - [1815213] Improved image support for GIF, JPEG, PNG formats.
+ - [1800094] Attribute "value" was added to ordered list items .
+ - Image function now has a new "align" parameter that indicates the alignment of the pointer next to image insertion and relative to image height. The value can be:
+ T: top-right for LTR or top-left for RTL
+ M: middle-right for LTR or middle-left for RTL
+ B: bottom-right for LTR or bottom-left for RTL
+ N: next line
+ - Attribute "align" was added to
html tag to set the above image "align" parameter. Possible values are:
+ top: top-right for LTR or top-left for RTL
+ middle: middle-right for LTR or middle-left for RTL
+ bottom: bottom-right for LTR or bottom-left for RTL
+ - [1798103] newline was added after , and
tages.
+ - [1816393] Documentation was updated.
+ - 'ln' parameter was fixed on writeHTMLCell. Now it's possible to print two or more columns across several pages;
+ - The method lastPage() was added to move the pointer on the last page;
+
+------------------------------------------------------------
+
+1.53.0.TC034 (2007-07-30)
+ - fixed htmlentities conversion.
+ - MultiCell() function returns the number of cells.
+
+1.53.0.TC033 (2007-07-30)
+ - fixed bug 1762550: case sensitive for font files
+ - NOTE: all fonts files names must be in lowercase!
+
+1.53.0.TC032 (2007-07-27)
+ - setLastH method was added to resolve bug 1689071.
+ - all fonts names were converted in lowercase (bug 1713005).
+ - bug 1740954 was fixed.
+ - justification was added as Cell option.
+
+1.53.0.TC031 (2007-03-20)
+ - ToUnicode CMap were added on _puttruetypeunicode function. Now you may search and copy unicode text.
+
+1.53.0.TC030 (2007-03-06)
+ - fixed bug on PHP4 version.
+
+1.53.0.TC029 (2007-03-06)
+ - DejaVu Fonts were added.
+
+1.53.0.TC028 (2007-03-03)
+ - MultiCell function signature were changed: the $ln parameter were added. Check documentation for further information.
+ - Greek language were added on example sentences.
+ - setPrintHeader() and setPrintFooter() functions were added to enable or disable page header and footer.
+
+1.53.0.TC027 (2006-12-14)
+ - $attr['face'] bug were fixed.
+ - K_TCPDF_EXTERNAL_CONFIG control where introduced on /config/tcpdf_config.php to use external configuration files.
+
+1.53.0.TC026 (2006-10-28)
+ - writeHTML function call were fixed on examples.
+
+1.53.0.TC025 (2006-10-27)
+ - Bugs item #1421290 were fixed (0D - 0A substitution in some characters)
+ - Bugs item #1573174 were fixed (MultiCell documentation)
+
+1.53.0.TC024 (2006-09-26)
+ - getPageHeight() function were fixed (bug 1543476).
+ - fixed missing breaks on closedHTMLTagHandler function (bug 1535263).
+ - fixed extra spaces on Write function (bug 1535262).
+
+1.53.0.TC023 (2006-08-04)
+ - paths to barcode directory were fixed.
+ - documentation were updated.
+
+1.53.0.TC022 (2006-07-16)
+ - fixed bug: [ 1516858 ] Probs with PHP autoloader and class_exists()
+
+1.53.0.TC021 (2006-07-01)
+ - HTML attributes with whitespaces are now supported (thanks to Nelson Benitez for his support)
+
+1.53.0.TC020 (2006-06-23)
+ - code cleanup
+
+1.53.0.TC019 (2006-05-21)
+ - fixed and closing tags
+
+1.53.0.TC018 (2006-05-18)
+ - fixed font names bug
+
+1.53.0.TC017 (2006-05-18)
+ - the TTF2UFM utility to convert True Type fonts for TCPDF were included on fonts folder.
+ - new free unicode fonts were included on /fonts/freefont.
+ - test_unicode.php example were exended.
+ - parameter $fill were added on Write, writeHTML and writeHTMLCell functions.
+ - documentation were updated.
+
+1.53.0.TC016 (2006-03-09)
+ - fixed closing tag on html parser.
+
+1.53.0.TC016 (2005-08-28)
+ - fpdf.php and tcpdf.php files were joined in one single class (you can still extend TCPDF with your own class).
+ - fixed problem when mb_internal_encoding is set.
+
+1.53.0.TC014 (2005-05-29)
+ - fixed WriteHTMLCell new page issue.
+
+1.53.0.TC013 (2005-05-29)
+ - fixed WriteHTMLCell across pages.
+
+1.53.0.TC012 (2005-05-29)
+ - font color attribute bug were fixed.
+
+1.53.0.TC011 (2005-03-31)
+ - SetFont function were fixed (thank Sjaak Lauwers for bug notice).
+
+1.53.0.TC010 (2005-03-22)
+ - the html functions were improved (thanks to Manfred Vervuert for bug reporting).
+
+1.53.0.TC009 (2005-03-19)
+ - a wrong reference to convertColorHexToDec were fixed.
+
+1.53.0.TC008 (2005-02-07)
+ - removed some extra bytes from PHP files.
+
+1.53.0.TC007 (2005-01-08)
+ - fill attribute were removed from writeHTMLCell method.
+
+1.53.0.TC006 (2005-01-08)
+ - the documentation were updated.
+
+1.53.0.TC005 (2005-01-05)
+ - Steven Wittens's unicode methods were removed.
+ - All unicode methods were rewritten from scratch.
+ - TCPDF is now licensed as LGPL.
+
+1.53.0.TC004 (2005-01-04)
+ - this changelog were added.
+ - removed comercial fonts for licensing issue.
+ - Bitstream Vera Fonts were added (http://www.bitstream.com/font_rendering/products/dev_fonts/vera.html).
+ - Now the AddFont and SetFont functions returns the basic font if the styled version do not exist.
+
diff --git a/lib/tcpdf/LICENSE.TXT b/lib/tcpdf/LICENSE.TXT
new file mode 100644
index 0000000000..b1e3f5a263
--- /dev/null
+++ b/lib/tcpdf/LICENSE.TXT
@@ -0,0 +1,504 @@
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL. It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+ This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it. You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+ When we speak of free software, we are referring to freedom of use,
+not price. Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+ To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights. These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+ For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you. You must make sure that they, too, receive or can get the source
+code. If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it. And you must show them these terms so they know their rights.
+
+ We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+ To protect each distributor, we want to make it very clear that
+there is no warranty for the free library. Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+ Finally, software patents pose a constant threat to the existence of
+any free program. We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder. Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+ Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License. This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License. We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+ When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library. The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom. The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+ We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License. It also provides other free software developers Less
+of an advantage over competing non-free programs. These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries. However, the Lesser license provides advantages in certain
+special circumstances.
+
+ For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard. To achieve this, non-free programs must be
+allowed to use the library. A more frequent case is that a free
+library does the same job as widely used non-free libraries. In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+ In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software. For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+ Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+ The precise terms and conditions for copying, distribution and
+modification follow. Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library". The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+ A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+ The "Library", below, refers to any such software library or work
+which has been distributed under these terms. A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language. (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+ "Source code" for a work means the preferred form of the work for
+making modifications to it. For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+ Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it). Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+ 1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+ You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+ 2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) The modified work must itself be a software library.
+
+ b) You must cause the files modified to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ c) You must cause the whole of the work to be licensed at no
+ charge to all third parties under the terms of this License.
+
+ d) If a facility in the modified Library refers to a function or a
+ table of data to be supplied by an application program that uses
+ the facility, other than as an argument passed when the facility
+ is invoked, then you must make a good faith effort to ensure that,
+ in the event an application does not supply such function or
+ table, the facility still operates, and performs whatever part of
+ its purpose remains meaningful.
+
+ (For example, a function in a library to compute square roots has
+ a purpose that is entirely well-defined independent of the
+ application. Therefore, Subsection 2d requires that any
+ application-supplied function or table used by this function must
+ be optional: if the application does not supply it, the square
+ root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library. To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License. (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.) Do not make any other change in
+these notices.
+
+ Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+ This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+ 4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+ If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library". Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+ However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library". The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+ When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library. The
+threshold for this to be true is not precisely defined by law.
+
+ If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work. (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+ Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+ 6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+ You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License. You must supply a copy of this License. If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License. Also, you must do one
+of these things:
+
+ a) Accompany the work with the complete corresponding
+ machine-readable source code for the Library including whatever
+ changes were used in the work (which must be distributed under
+ Sections 1 and 2 above); and, if the work is an executable linked
+ with the Library, with the complete machine-readable "work that
+ uses the Library", as object code and/or source code, so that the
+ user can modify the Library and then relink to produce a modified
+ executable containing the modified Library. (It is understood
+ that the user who changes the contents of definitions files in the
+ Library will not necessarily be able to recompile the application
+ to use the modified definitions.)
+
+ b) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (1) uses at run time a
+ copy of the library already present on the user's computer system,
+ rather than copying library functions into the executable, and (2)
+ will operate properly with a modified version of the library, if
+ the user installs one, as long as the modified version is
+ interface-compatible with the version that the work was made with.
+
+ c) Accompany the work with a written offer, valid for at
+ least three years, to give the same user the materials
+ specified in Subsection 6a, above, for a charge no more
+ than the cost of performing this distribution.
+
+ d) If distribution of the work is made by offering access to copy
+ from a designated place, offer equivalent access to copy the above
+ specified materials from the same place.
+
+ e) Verify that the user has already received a copy of these
+ materials or that you have already sent this user a copy.
+
+ For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it. However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+ It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system. Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+ 7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+ a) Accompany the combined library with a copy of the same work
+ based on the Library, uncombined with any other library
+ facilities. This must be distributed under the terms of the
+ Sections above.
+
+ b) Give prominent notice with the combined library of the fact
+ that part of it is a work based on the Library, and explaining
+ where to find the accompanying uncombined form of the same work.
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License. Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License. However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+ 9. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Library or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+ 10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all. For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded. In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+ 13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation. If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+ 14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission. For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this. Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+ NO WARRANTY
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Libraries
+
+ If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change. You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms of the
+ordinary General Public License).
+
+ To apply these terms, attach the following notices to the library. It is
+safest to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the library, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+ , 1 April 1990
+ Ty Coon, President of Vice
+
+That's all there is to it!
+
+
diff --git a/lib/tcpdf/README-MOODLE.TXT b/lib/tcpdf/README-MOODLE.TXT
new file mode 100644
index 0000000000..98d53aaf39
--- /dev/null
+++ b/lib/tcpdf/README-MOODLE.TXT
@@ -0,0 +1,14 @@
+Moodle-specific changes to TCPDF are tracked here.
+
+2008/07/29
+Upgrade to tcpdf_php5 TCPDF 4.0.015 (MDL-15055)
+by David Mudrak
+
+* deleted cache/ doc/ examples/
+* modified config/tcpdf_config.php
+ Default values for K_PATH_MAIN and K_PATH_URL are automatically set for
+ the Moodle installation. K_PATH_CACHE set to Moodle datadir cache.
+ K_PATH_URL_CACHE can't be mapped in Moodle as datadir should not be
+ accessible directly. However, it doesn't seem to be used within the
+ library code.
+
diff --git a/lib/tcpdf/README.TXT b/lib/tcpdf/README.TXT
index 998db3de78..8073c61800 100755
--- a/lib/tcpdf/README.TXT
+++ b/lib/tcpdf/README.TXT
@@ -1,70 +1,91 @@
-
-This is a trimmed down distribution of TCPDF, tailored for Moodle. The API
-and code are the same. However, extra fonts and font-convertion utilities have
-been removed to keep the Moodle download size to a minimum.
-
-Following is the original TCPDF README.
-
-
-
TCPDF - README
============================================================
+IF YOU'D LIKE TO SUPPORT TCPDF, PLEASE CONSIDER MAKING A
+DONATION:
+http://sourceforge.net/donate/index.php?group_id=128076
+
+------------------------------------------------------------
+
Name:
- TCPDF
+ TCPDF
Version:
- 1.53.0.TC023_PHP4
-
+ 4.0.015
+
Release date:
- 2006-08-05
+ 2008-07-29
Author:
- Nicola Asuni
-
-Copyright (c) 2001-2006:
- Tecnick.com S.r.l.
- Via Ugo Foscolo n.19
- 09045 Quartu Sant'Elena (CA)
- ITALY
- www.tecnick.com
-
+ Nicola Asuni
+
+Copyright (c) 2001-2008:
+ Nicola Asuni
+ Tecnick.com s.r.l.
+ Via Della Pace, 11
+ 09044 Quartucciu (CA)
+ ITALY
+ www.tecnick.com
+
URLs:
- http://tcpdf.sourceforge.net/
- http://tcpdf.sf.net/
-
+ http://www.tcpdf.org
+ http://www.sourceforge.net/projects/tcpdf
+
Description:
- TCPDF is a PHP4 class for generating PDF files on-the-fly without requiring external extensions.
- TCPDF is an extension and improvement of the FPDF class by Olivier Plathey (http://www.fpdf.org).
-
- Main Features:
-
- - supports all ISO page formats;
- - supports UTF-8 Unicode;
- - includes methods to publish some xhtml code, supporting the following elements: h1, h2, h3, h4, h5, h6, b, u, i, a, img, p, br, strong, em, font, blockquote, li, ul, ol, hr, td, th, tr, table, sup, sub, small;
- - includes a method to print various barcode formats using an improved version of "Generic Barcode Render Class" by Karim Mribti (http://www.mribti.com/barcode/) (require GD library: http://www.boutell.com/gd/)
- - supports TrueTypeUnicode, TrueType, Type1 and encoding;
- - supports custom page formats, margins and units of measure;
- - includes methods for page header and footer management;
- - supports automatic page break;
- - supports automatic page numbering;
- - supports automatic line break and text justification;
- - supports JPEG and PNG images;
- - supports colors;
- - supports links;
- - support page compression (require zlib extension: http://www.gzip.org/zlib/);
- - the source code is full documented in PhpDocumentor Style (http://www.phpdoc.org).
+ TCPDF is a PHP class for generating PDF files on-the-fly without requiring external extensions.
+ TCPDF has been originally derived from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org).
+
+Main Features:
+// * no external libraries are required for the basic functions;
+// * supports all ISO page formats;
+// * supports UTF-8 Unicode and Right-To-Left languages;
+// * supports document encryption;
+// * includes methods to publish some XHTML code;
+// * includes graphic (geometric) and transformation methods;
+// * includes bookmarks;
+// * includes Javascript and forms support;
+// * includes a method to print various barcode formats;
+// * supports TrueTypeUnicode, TrueType, Type1 and CID-0 fonts;
+// * supports custom page formats, margins and units of measure;
+// * includes methods for page header and footer management;
+// * supports automatic page break;
+// * supports automatic page numbering and page groups;
+// * supports automatic line break and text justification;
+// * supports JPEG and PNG images whitout GD library and all images supported by GD: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM;
+// * supports stroke and clipping mode for text;
+// * supports clipping masks;
+// * supports Grayscale, RGB and CMYK colors and transparency;
+// * supports links;
+// * supports page compression (requires zlib extension);
+// * supports PDF user's rights.
-Installation:
- 1. copy the folder on your Web server
- 2. set your installation path on the config/tcpdf_config.php
- 3. call the test_unicode.php page with your browser to see an example
- NOTE: the test_old.php require proper font setup on tcpdf_config.
+Installation (full instructions on http://www.tcpdf.org):
+ 1. copy the folder on your Web server
+ 2. set your installation path on the config/tcpdf_config.php
+ 3. call the example/example_001.php page with your browser to see an example
Source Code Documentation:
- doc/index.html
+ doc/index.html
+
+For Additional Documentation:
+ http://www.tcpdf.org
License
- GNU LESSER GENERAL PUBLIC LICENSE v.2.1
- http://www.gnu.org/copyleft/lesser.html
+ Copyright (C) 2002-2008 Nicola Asuni - Tecnick.com S.r.l.
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program. If not, see .
+
+ See LICENSE.TXT file for more information.
+
============================================================
\ No newline at end of file
diff --git a/lib/tcpdf/barcodes.php b/lib/tcpdf/barcodes.php
new file mode 100644
index 0000000000..93256f32f1
--- /dev/null
+++ b/lib/tcpdf/barcodes.php
@@ -0,0 +1,808 @@
+.
+//
+// See LICENSE.TXT file for more information.
+// ----------------------------------------------------------------------------
+//
+// Description : PHP class to creates array representations for
+// common 1D barcodes to be used with TCPDF.
+//
+// Author: Nicola Asuni
+//
+// (c) Copyright:
+// Nicola Asuni
+// Tecnick.com S.r.l.
+// Via della Pace, 11
+// 09044 Quartucciu (CA)
+// ITALY
+// www.tecnick.com
+// info@tecnick.com
+//============================================================+
+
+/**
+ * PHP class to creates array representations for common 1D barcodes to be used with TCPDF.
+ * @package com.tecnick.tcpdf
+ * @abstract Functions for generating string representation of common 1D barcodes.
+ * @author Nicola Asuni
+ * @copyright 2008 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
+ * @link http://www.tcpdf.org
+ * @license http://www.gnu.org/copyleft/lesser.html LGPL
+ * @version 1.0.001
+ */
+
+ /**
+ * PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).
+ * @name TCPDFBarcode
+ * @package com.tecnick.tcpdf
+ * @version 1.0.001
+ * @author Nicola Asuni
+ * @link http://www.tcpdf.org
+ * @license http://www.gnu.org/copyleft/lesser.html LGPL
+ */
+class TCPDFBarcode {
+
+ /**
+ * @var array representation of barcode.
+ * @access protected
+ */
+ protected $barcode_array;
+
+ /**
+ * This is the class constructor.
+ * Return an array representations for common 1D barcodes:
+ * - $arrcode["code"] code to be printed on text label
+ * - $arrcode["maxh"] max bar height
+ * - $arrcode["maxw"] max bar width
+ * - $arrcode["bcode"][$k] single bar or space in $k position
+ * - $arrcode["bcode"][$k]["t"] bar type: true = bar, false = space.
+ * - $arrcode["bcode"][$k]["w"] bar width in units.
+ * - $arrcode["bcode"][$k]["h"] bar height in units.
+ * - $arrcode["bcode"][$k]["p"] bar top position (0 = top, 1 = middle)
+ * @param string $code code to print
+ * @param string $type type of barcode: - C39 : CODE 39
- C39+ : CODE 39 with checksum
- C39E : CODE 39 EXTENDED
- C39E+ : CODE 39 EXTENDED with checksum
- I25 : Interleaved 2 of 5
- C128A : CODE 128 A
- C128B : CODE 128 B
- C128C : CODE 128 C
- EAN13 : EAN 13
- UPCA : UPC-A
- POSTNET : POSTNET
- CODABAR : CODABAR
+ */
+ public function __construct($code, $type) {
+ $this->setBarcode($code, $type);
+ }
+
+ /**
+ * Return an array representations of barcode.
+ * @return array
+ */
+ public function getBarcodeArray() {
+ return $this->barcode_array;
+ }
+
+ /**
+ * Set the barcode.
+ * @param string $code code to print
+ * @param string $type type of barcode: - C39 : CODE 39
- C39+ : CODE 39 with checksum
- C39E : CODE 39 EXTENDED
- C39E+ : CODE 39 EXTENDED with checksum
- I25 : Interleaved 2 of 5
- C128A : CODE 128 A
- C128B : CODE 128 B
- C128C : CODE 128 C
- EAN13 : EAN 13
- UPCA : UPC-A
- POSTNET : POSTNET
- CODABAR : CODABAR
+ * @return array
+ */
+ public function setBarcode($code, $type) {
+ switch (strtoupper($type)) {
+ case "C39": { // CODE 39
+ $arrcode = $this->barcode_code39($code, false, false);
+ break;
+ }
+ case "C39+": { // CODE 39 with checksum
+ $arrcode = $this->barcode_code39($code, false, true);
+ break;
+ }
+ case "C39E": { // CODE 39 EXTENDED
+ $arrcode = $this->barcode_code39($code, true, false);
+ break;
+ }
+ case "C39E+": { // CODE 39 EXTENDED with checksum
+ $arrcode = $this->barcode_code39($code, true, true);
+ break;
+ }
+ case "I25": { // Interleaved 2 of 5
+ $arrcode = $this->barcode_i25($code);
+ break;
+ }
+ case "C128A": { // CODE 128 A
+ $arrcode = $this->barcode_c128($code, "A");
+ break;
+ }
+ case "C128B": { // CODE 128 B
+ $arrcode = $this->barcode_c128($code, "B");
+ break;
+ }
+ case "C128C": { // CODE 128 C
+ $arrcode = $this->barcode_c128($code, "C");
+ break;
+ }
+ case "EAN13": { // EAN 13
+ $arrcode = $this->barcode_ean13($code, 13);
+ break;
+ }
+ case "UPCA": { // UPC-A
+ $arrcode = $this->barcode_ean13($code, 12);
+ break;
+ }
+ case "POSTNET": { // POSTNET
+ $arrcode = $this->barcode_postnet($code);
+ break;
+ }
+ case "CODABAR": { // CODABAR
+ $arrcode = $this->barcode_codabar($code);
+ break;
+ }
+ default: {
+ $this->barcode_array = false;
+ }
+ }
+ $this->barcode_array = $arrcode;
+ }
+
+ /**
+ * CODE 39
+ * @param string $code code to represent.
+ * @param boolean $checksum if true add a checksum to the code
+ * @return array barcode representation.
+ * @access protected
+ */
+ protected function barcode_code39($code, $extended=false, $checksum=false) {
+ $chr['0'] = '111221211';
+ $chr['1'] = '211211112';
+ $chr['2'] = '112211112';
+ $chr['3'] = '212211111';
+ $chr['4'] = '111221112';
+ $chr['5'] = '211221111';
+ $chr['6'] = '112221111';
+ $chr['7'] = '111211212';
+ $chr['8'] = '211211211';
+ $chr['9'] = '112211211';
+ $chr['A'] = '211112112';
+ $chr['B'] = '112112112';
+ $chr['C'] = '212112111';
+ $chr['D'] = '111122112';
+ $chr['E'] = '211122111';
+ $chr['F'] = '112122111';
+ $chr['G'] = '111112212';
+ $chr['H'] = '211112211';
+ $chr['I'] = '112112211';
+ $chr['J'] = '111122211';
+ $chr['K'] = '211111122';
+ $chr['L'] = '112111122';
+ $chr['M'] = '212111121';
+ $chr['N'] = '111121122';
+ $chr['O'] = '211121121';
+ $chr['P'] = '112121121';
+ $chr['Q'] = '111111222';
+ $chr['R'] = '211111221';
+ $chr['S'] = '112111221';
+ $chr['T'] = '111121221';
+ $chr['U'] = '221111112';
+ $chr['V'] = '122111112';
+ $chr['W'] = '222111111';
+ $chr['X'] = '121121112';
+ $chr['Y'] = '221121111';
+ $chr['Z'] = '122121111';
+ $chr['-'] = '121111212';
+ $chr['.'] = '221111211';
+ $chr[' '] = '122111211';
+ $chr['*'] = '121121211';
+ $chr['$'] = '121212111';
+ $chr['/'] = '121211121';
+ $chr['+'] = '121112121';
+ $chr['%'] = '111212121';
+
+ $code = strtoupper($code);
+ if ($extended) {
+ // extended mode
+ $code = $this->encode_code39_ext($code);
+ }
+ if ($code === false) {
+ return false;
+ }
+ if ($checksum) {
+ // checksum
+ $code .= $this->checksum_code39($code);
+ }
+ // add start and stop codes
+ $code = "*".$code."*";
+
+ $bararray = array("code" => $code, "maxw" => 0, "maxh" => 1, "bcode" => array());
+ $k = 0;
+ for($i=0; $i < strlen($code); $i++) {
+ $char = $code{$i};
+ if(!isset($chr[$char])) {
+ // invalid character
+ return false;
+ }
+ for($j=0; $j < 9; $j++) {
+ if (($j % 2) == 0) {
+ $t = true; // bar
+ } else {
+ $t = false; // space
+ }
+ $w = $chr[$char]{$j};
+ $bararray["bcode"][$k] = array("t" => $t, "w" => $w, "h" => 1, "p" => 0);
+ $bararray["maxw"] += $w;
+ $k++;
+ }
+ $bararray["bcode"][$k] = array("t" => false, "w" => 1, "h" => 1, "p" => 0);
+ $bararray["maxw"] += 1;
+ $k++;
+ }
+ return $bararray;
+ }
+
+ /**
+ * Encode a string to be used for CODE 39 Extended mode.
+ * @param string $code code to represent.
+ * @return encoded string.
+ * @access protected
+ */
+ protected function encode_code39_ext($code) {
+ $encode = array(
+ chr(0) => '%U', chr(1) => '$A', chr(2) => '$B', chr(3) => '$C',
+ chr(4) => '$D', chr(5) => '$E', chr(6) => '$F', chr(7) => '$G',
+ chr(8) => '$H', chr(9) => '$I', chr(10) => '$J', chr(11) => '£K',
+ chr(12) => '$L', chr(13) => '$M', chr(14) => '$N', chr(15) => '$O',
+ chr(16) => '$P', chr(17) => '$Q', chr(18) => '$R', chr(19) => '$S',
+ chr(20) => '$T', chr(21) => '$U', chr(22) => '$V', chr(23) => '$W',
+ chr(24) => '$X', chr(25) => '$Y', chr(26) => '$Z', chr(27) => '%A',
+ chr(28) => '%B', chr(29) => '%C', chr(30) => '%D', chr(31) => '%E',
+ chr(32) => ' ', chr(33) => '/A', chr(34) => '/B', chr(35) => '/C',
+ chr(36) => '/D', chr(37) => '/E', chr(38) => '/F', chr(39) => '/G',
+ chr(40) => '/H', chr(41) => '/I', chr(42) => '/J', chr(43) => '/K',
+ chr(44) => '/L', chr(45) => '-', chr(46) => '.', chr(47) => '/O',
+ chr(48) => '0', chr(49) => '1', chr(50) => '2', chr(51) => '3',
+ chr(52) => '4', chr(53) => '5', chr(54) => '6', chr(55) => '7',
+ chr(56) => '8', chr(57) => '9', chr(58) => '/Z', chr(59) => '%F',
+ chr(60) => '%G', chr(61) => '%H', chr(62) => '%I', chr(63) => '%J',
+ chr(64) => '%V', chr(65) => 'A', chr(66) => 'B', chr(67) => 'C',
+ chr(68) => 'D', chr(69) => 'E', chr(70) => 'F', chr(71) => 'G',
+ chr(72) => 'H', chr(73) => 'I', chr(74) => 'J', chr(75) => 'K',
+ chr(76) => 'L', chr(77) => 'M', chr(78) => 'N', chr(79) => 'O',
+ chr(80) => 'P', chr(81) => 'Q', chr(82) => 'R', chr(83) => 'S',
+ chr(84) => 'T', chr(85) => 'U', chr(86) => 'V', chr(87) => 'W',
+ chr(88) => 'X', chr(89) => 'Y', chr(90) => 'Z', chr(91) => '%K',
+ chr(92) => '%L', chr(93) => '%M', chr(94) => '%N', chr(95) => '%O',
+ chr(96) => '%W', chr(97) => '+A', chr(98) => '+B', chr(99) => '+C',
+ chr(100) => '+D', chr(101) => '+E', chr(102) => '+F', chr(103) => '+G',
+ chr(104) => '+H', chr(105) => '+I', chr(106) => '+J', chr(107) => '+K',
+ chr(108) => '+L', chr(109) => '+M', chr(110) => '+N', chr(111) => '+O',
+ chr(112) => '+P', chr(113) => '+Q', chr(114) => '+R', chr(115) => '+S',
+ chr(116) => '+T', chr(117) => '+U', chr(118) => '+V', chr(119) => '+W',
+ chr(120) => '+X', chr(121) => '+Y', chr(122) => '+Z', chr(123) => '%P',
+ chr(124) => '%Q', chr(125) => '%R', chr(126) => '%S', chr(127) => '%T');
+ $code_ext = '';
+ for ($i = 0 ; $i < strlen($code); $i++) {
+ if (ord($code{$i}) > 127) {
+ return false;
+ }
+ $code_ext .= $encode[$code{$i}];
+ }
+ return $code_ext;
+ }
+
+ /**
+ * Calculate CODE 39 checksum (modulo 43).
+ * @param string $code code to represent.
+ * @return char checksum.
+ * @access protected
+ */
+ protected function checksum_code39($code) {
+ $chars = array(
+ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
+ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',
+ 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
+ 'W', 'X', 'Y', 'Z', '-', '.', ' ', '$', '/', '+', '%');
+ $sum = 0;
+ for ($i=0 ; $i < strlen($code); $i++) {
+ $k = array_keys($chars, $code{$i});
+ $sum += $k[0];
+ }
+ $j = ($sum % 43);
+ return $chars[$j];
+ }
+
+ /**
+ * Interleaved 2 of 5 barcodes.
+ * Contains digits (0 to 9) and encodes the data in the width of both bars and spaces.
+ * @param string $code code to represent.
+ * @param boolean $checksum if true add a checksum to the code
+ * @return array barcode representation.
+ * @access protected
+ */
+ protected function barcode_i25($code) {
+ $chr['0'] = '11221';
+ $chr['1'] = '21112';
+ $chr['2'] = '12112';
+ $chr['3'] = '22111';
+ $chr['4'] = '11212';
+ $chr['5'] = '21211';
+ $chr['6'] = '12211';
+ $chr['7'] = '11122';
+ $chr['8'] = '21121';
+ $chr['9'] = '12121';
+ $chr['A'] = '11';
+ $chr['Z'] = '21';
+
+ if((strlen($code) % 2) != 0) {
+ // add leading zero if code-length is odd
+ $code = '0'.$code;
+ }
+ // add start and stop codes
+ $code = 'AA'.strtolower($code).'ZA';
+
+ $bararray = array("code" => $code, "maxw" => 0, "maxh" => 1, "bcode" => array());
+ $k = 0;
+ for($i=0; $i < strlen($code); $i=$i+2) {
+ $char_bar = $code{$i};
+ $char_space = $code{$i+1};
+ if((!isset($chr[$char_bar])) OR (!isset($chr[$char_space]))) {
+ // invalid character
+ return false;
+ }
+ // create a bar-space sequence
+ $seq = "";
+ for($s=0; $s < strlen($chr[$char_bar]); $s++){
+ $seq .= $chr[$char_bar]{$s} . $chr[$char_space]{$s};
+ }
+ for($j=0; $j < strlen($seq); $j++) {
+ if (($j % 2) == 0) {
+ $t = true; // bar
+ } else {
+ $t = false; // space
+ }
+ $w = $seq{$j};
+ $bararray["bcode"][$k] = array("t" => $t, "w" => $w, "h" => 1, "p" => 0);
+ $bararray["maxw"] += $w;
+ $k++;
+ }
+ }
+ return $bararray;
+ }
+
+ /**
+ * C128 barcodes.
+ *
+ * @param string $code code to represent.
+ * @param string $type barcode type: A, B or C
+ * @return array barcode representation.
+ * @access protected
+ */
+ protected function barcode_c128($code, $type="B") {
+ $chr = array(
+ '212222', /* 00 */
+ '222122', /* 01 */
+ '222221', /* 02 */
+ '121223', /* 03 */
+ '121322', /* 04 */
+ '131222', /* 05 */
+ '122213', /* 06 */
+ '122312', /* 07 */
+ '132212', /* 08 */
+ '221213', /* 09 */
+ '221312', /* 10 */
+ '231212', /* 11 */
+ '112232', /* 12 */
+ '122132', /* 13 */
+ '122231', /* 14 */
+ '113222', /* 15 */
+ '123122', /* 16 */
+ '123221', /* 17 */
+ '223211', /* 18 */
+ '221132', /* 19 */
+ '221231', /* 20 */
+ '213212', /* 21 */
+ '223112', /* 22 */
+ '312131', /* 23 */
+ '311222', /* 24 */
+ '321122', /* 25 */
+ '321221', /* 26 */
+ '312212', /* 27 */
+ '322112', /* 28 */
+ '322211', /* 29 */
+ '212123', /* 30 */
+ '212321', /* 31 */
+ '232121', /* 32 */
+ '111323', /* 33 */
+ '131123', /* 34 */
+ '131321', /* 35 */
+ '112313', /* 36 */
+ '132113', /* 37 */
+ '132311', /* 38 */
+ '211313', /* 39 */
+ '231113', /* 40 */
+ '231311', /* 41 */
+ '112133', /* 42 */
+ '112331', /* 43 */
+ '132131', /* 44 */
+ '113123', /* 45 */
+ '113321', /* 46 */
+ '133121', /* 47 */
+ '313121', /* 48 */
+ '211331', /* 49 */
+ '231131', /* 50 */
+ '213113', /* 51 */
+ '213311', /* 52 */
+ '213131', /* 53 */
+ '311123', /* 54 */
+ '311321', /* 55 */
+ '331121', /* 56 */
+ '312113', /* 57 */
+ '312311', /* 58 */
+ '332111', /* 59 */
+ '314111', /* 60 */
+ '221411', /* 61 */
+ '431111', /* 62 */
+ '111224', /* 63 */
+ '111422', /* 64 */
+ '121124', /* 65 */
+ '121421', /* 66 */
+ '141122', /* 67 */
+ '141221', /* 68 */
+ '112214', /* 69 */
+ '112412', /* 70 */
+ '122114', /* 71 */
+ '122411', /* 72 */
+ '142112', /* 73 */
+ '142211', /* 74 */
+ '241211', /* 75 */
+ '221114', /* 76 */
+ '413111', /* 77 */
+ '241112', /* 78 */
+ '134111', /* 79 */
+ '111242', /* 80 */
+ '121142', /* 81 */
+ '121241', /* 82 */
+ '114212', /* 83 */
+ '124112', /* 84 */
+ '124211', /* 85 */
+ '411212', /* 86 */
+ '421112', /* 87 */
+ '421211', /* 88 */
+ '212141', /* 89 */
+ '214121', /* 90 */
+ '412121', /* 91 */
+ '111143', /* 92 */
+ '111341', /* 93 */
+ '131141', /* 94 */
+ '114113', /* 95 */
+ '114311', /* 96 */
+ '411113', /* 97 */
+ '411311', /* 98 */
+ '113141', /* 99 */
+ '114131', /* 100 */
+ '311141', /* 101 */
+ '411131', /* 102 */
+ '211412', /* 103 START A */
+ '211214', /* 104 START B */
+ '211232', /* 105 START C */
+ '233111', /* STOP */
+ '200000' /* END */
+ );
+ $keys = "";
+ switch(strtoupper($type)) {
+ case "A": {
+ $startid = 103;
+ $keys = ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_';
+ for($i = 0; $i < 32; $i++) {
+ $keys .= chr($i);
+ }
+ break;
+ }
+ case "B": {
+ $startid = 104;
+ $keys = ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~'.chr(127);
+ break;
+ }
+ case "C": {
+ $startid = 105;
+ $keys = "";
+ if ((strlen($code) % 2) != 0) {
+ //echo "The length of barcode value must be even ($code). You must pad the number with zeros.\n";
+ return false;
+ }
+ for($i = 0; $i <= 99; $i++) {
+ $keys .= chr($i);
+ }
+ $new_code = "";
+ for ($i=0; $i < (strlen($code) / 2); $i++) {
+ $new_code .= chr(intval($code{(2 * $i)}.$code{(2 * $i + 1)}));
+ }
+ $code = $new_code;
+ break;
+ }
+ default: {
+ return false;
+ }
+ }
+ // calculate check character
+ $sum = $startid;
+ for ($i=0; $i < strlen($code); $i++) {
+ $sum += (strpos($keys, $code{$i}) * ($i+1));
+ }
+ $check = ($sum % 103);
+
+ // add start, check and stop codes
+ $code = chr($startid).$code.chr($check).chr(106).chr(107);
+ $bararray = array("code" => $code, "maxw" => 0, "maxh" => 1, "bcode" => array());
+ $k = 0;
+ $len = strlen($code);
+ for($i=0; $i < $len; $i++) {
+ $ck = strpos($keys, $code{$i});
+ if (($i == 0) OR ($i > ($len-4))) {
+ $seq = $chr[ord($code{$i})];
+ } elseif(($ck >= 0) AND isset($chr[$ck])) {
+ $seq = $chr[$ck];
+ } else {
+ // invalid character
+ return false;
+ }
+ for($j=0; $j < 6; $j++) {
+ if (($j % 2) == 0) {
+ $t = true; // bar
+ } else {
+ $t = false; // space
+ }
+ $w = $seq{$j};
+ $bararray["bcode"][$k] = array("t" => $t, "w" => $w, "h" => 1, "p" => 0);
+ $bararray["maxw"] += $w;
+ $k++;
+ }
+ }
+ return $bararray;
+ }
+
+ /**
+ * EAN13 and UPC-A barcodes.
+ * @param string $code code to represent.
+ * @param string $len barcode type: 13 = EAN13, 12 = UPC-A
+ * @return array barcode representation.
+ * @access protected
+ */
+ protected function barcode_ean13($code, $len=13) {
+ //Padding
+ $code = str_pad($code, $len-1, '0', STR_PAD_LEFT);
+ if($len == 12) {
+ $code = '0'.$code;
+ }
+ // add check digit
+ if(strlen($code) == 12) {
+ $sum=0;
+ for($i=1;$i<=11;$i+=2) {
+ $sum += (3 * $code{$i});
+ }
+ for($i=0; $i <= 10; $i+=2) {
+ $sum += ($code{$i});
+ }
+ $r = $sum % 10;
+ if($r > 0) {
+ $r = (10 - $r);
+ }
+ $code .= $r;
+ } else { // test checkdigit
+ $sum = 0;
+ for($i=1; $i <= 11; $i+=2) {
+ $sum += (3 * $code{$i});
+ }
+ for($i=0; $i <= 10; $i+=2) {
+ $sum += $code{$i};
+ }
+ if ((($sum + $code{12}) % 10) != 0) {
+ return false;
+ }
+ }
+ //Convert digits to bars
+ $codes = array(
+ 'A'=>array(
+ '0'=>'0001101',
+ '1'=>'0011001',
+ '2'=>'0010011',
+ '3'=>'0111101',
+ '4'=>'0100011',
+ '5'=>'0110001',
+ '6'=>'0101111',
+ '7'=>'0111011',
+ '8'=>'0110111',
+ '9'=>'0001011'),
+ 'B'=>array(
+ '0'=>'0100111',
+ '1'=>'0110011',
+ '2'=>'0011011',
+ '3'=>'0100001',
+ '4'=>'0011101',
+ '5'=>'0111001',
+ '6'=>'0000101',
+ '7'=>'0010001',
+ '8'=>'0001001',
+ '9'=>'0010111'),
+ 'C'=>array(
+ '0'=>'1110010',
+ '1'=>'1100110',
+ '2'=>'1101100',
+ '3'=>'1000010',
+ '4'=>'1011100',
+ '5'=>'1001110',
+ '6'=>'1010000',
+ '7'=>'1000100',
+ '8'=>'1001000',
+ '9'=>'1110100')
+ );
+ $parities = array(
+ '0'=>array('A','A','A','A','A','A'),
+ '1'=>array('A','A','B','A','B','B'),
+ '2'=>array('A','A','B','B','A','B'),
+ '3'=>array('A','A','B','B','B','A'),
+ '4'=>array('A','B','A','A','B','B'),
+ '5'=>array('A','B','B','A','A','B'),
+ '6'=>array('A','B','B','B','A','A'),
+ '7'=>array('A','B','A','B','A','B'),
+ '8'=>array('A','B','A','B','B','A'),
+ '9'=>array('A','B','B','A','B','A')
+ );
+
+ $bararray = array("code" => $code, "maxw" => 0, "maxh" => 1, "bcode" => array());
+ $k = 0;
+ $seq = '101';
+ $p = $parities[$code{0}];
+ for($i=1; $i < 7; $i++) {
+ $seq .= $codes[$p[$i-1]][$code{$i}];
+ }
+ $seq .= '01010';
+ for($i=7; $i < 13; $i++) {
+ $seq .= $codes['C'][$code{$i}];
+ }
+ $seq .= '101';
+ $len = strlen($seq);
+ $w = 0;
+ for($i=0; $i < $len; $i++) {
+ $w += 1;
+ if (($i == ($len - 1)) OR (($i < ($len - 1)) AND ($seq{$i} != $seq{($i+1)}))) {
+ if ($seq{$i} == '1') {
+ $t = true; // bar
+ } else {
+ $t = false; // space
+ }
+ $bararray["bcode"][$k] = array("t" => $t, "w" => $w, "h" => 1, "p" => 0);
+ $bararray["maxw"] += $w;
+ $k++;
+ $w = 0;
+ }
+ }
+ return $bararray;
+ }
+
+ /**
+ * POSTNET barcodes.
+ * @param string $code zip code to represent. Must be a string containing a zip code of the form DDDDD or DDDDD-DDDD.
+ * @return array barcode representation.
+ * @access protected
+ */
+ protected function barcode_postnet($code) {
+ // bar lenght
+ $barlen = Array(
+ 0 => Array(2,2,1,1,1),
+ 1 => Array(1,1,1,2,2),
+ 2 => Array(1,1,2,1,2),
+ 3 => Array(1,1,2,2,1),
+ 4 => Array(1,2,1,1,2),
+ 5 => Array(1,2,1,2,1),
+ 6 => Array(1,2,2,1,1),
+ 7 => Array(2,1,1,1,2),
+ 8 => Array(2,1,1,2,1),
+ 9 => Array(2,1,2,1,1)
+ );
+ $bararray = array("code" => $code, "maxw" => 0, "maxh" => 2, "bcode" => array());
+ $k = 0;
+ $code = str_replace("-", "", $code);
+ $code = str_replace(" ", "", $code);
+ $len = strlen($code);
+ // calculate checksum
+ $sum = 0;
+ for($i=0; $i < $len; $i++) {
+ $sum += intval($code{$i});
+ }
+ if(($sum % 10) == 0) {
+ return false;
+ }
+ $code .= "".(10 - ($sum % 10))."";
+ $len = strlen($code);
+ // start bar
+ $bararray["bcode"][$k++] = array("t" => 1, "w" => 1, "h" => 2, "p" => 0);
+ $bararray["bcode"][$k++] = array("t" => 0, "w" => 1, "h" => 2, "p" => 0);
+ $bararray["maxw"] += 2;
+ for ($i=0; $i < $len; $i++) {
+ for ($j=0; $j < 5; $j++) {
+ $h = $barlen[$code{$i}][$j];
+ $p = floor(1 / $h);
+ $bararray["bcode"][$k++] = array("t" => 1, "w" => 1, "h" => $h, "p" => $p);
+ $bararray["bcode"][$k++] = array("t" => 0, "w" => 1, "h" => 2, "p" => 0);
+ $bararray["maxw"] += 2;
+ }
+ }
+ // end bar
+ $bararray["bcode"][$k++] = array("t" => 1, "w" => 1, "h" => 2, "p" => 0);
+ $bararray["maxw"] += 1;
+ return $bararray;
+ }
+
+ /**
+ * CODABAR barcodes.
+ * @param string $code code to represent.
+ * @return array barcode representation.
+ * @access protected
+ */
+ protected function barcode_codabar($code) {
+ $chr = array(
+ '0' => '11111221',
+ '1' => '11112211',
+ '2' => '11121121',
+ '3' => '22111111',
+ '4' => '11211211',
+ '5' => '21111211',
+ '6' => '12111121',
+ '7' => '12112111',
+ '8' => '12211111',
+ '9' => '21121111',
+ '-' => '11122111',
+ '$' => '11221111',
+ ':' => '21112121',
+ '/' => '21211121',
+ '.' => '21212111',
+ '+' => '11222221',
+ 'A' => '11221211',
+ 'B' => '12121121',
+ 'C' => '11121221',
+ 'D' => '11122211'
+ );
+
+ $bararray = array("code" => $code, "maxw" => 0, "maxh" => 1, "bcode" => array());
+ $k = 0;
+ $w = 0;
+ $seq = "";
+ $code = "A".strtoupper($code)."A";
+ $len = strlen($code);
+ for($i=0; $i < $len; $i++) {
+ if (!isset($chr[$code{$i}])) {
+ return false;
+ }
+ $seq = $chr[$code{$i}];
+ for($j=0; $j < 8; $j++) {
+ if (($j % 2) == 0) {
+ $t = true; // bar
+ } else {
+ $t = false; // space
+ }
+ $w = $seq{$j};
+ $bararray["bcode"][$k] = array("t" => $t, "w" => $w, "h" => 1, "p" => 0);
+ $bararray["maxw"] += $w;
+ $k++;
+ }
+ }
+ return $bararray;
+ }
+
+} // end of class
+
+//============================================================+
+// END OF FILE
+//============================================================+
+?>
diff --git a/lib/tcpdf/config/lang/eng.php b/lib/tcpdf/config/lang/eng.php
index a86a3bbf59..b6a084c2db 100755
--- a/lib/tcpdf/config/lang/eng.php
+++ b/lib/tcpdf/config/lang/eng.php
@@ -1,22 +1,22 @@
*
* Moodle-specific changes:
* Default values for K_PATH_MAIN and K_PATH_URL are automatically set for
- * the Moodle installation.
- */
-
-// PLEASE SET THE FOLLOWING CONSTANTS:
-
-/**
- * installation path
- */
-define ('K_PATH_MAIN', $CFG->dirroot.'/lib/tcpdf/');
-
-/**
- * url path
- */
-define ('K_PATH_URL', $CFG->wwwroot.'/lib/tcpdf/');
-
-/**
- * path for PDF fonts
- */
-define ("FPDF_FONTPATH", K_PATH_MAIN."fonts/");
-
-/**
- * cache directory for temporary files (full path)
- */
-define ("K_PATH_CACHE", K_PATH_MAIN."cache/");
-
-/**
- * cache directory for temporary files (url path)
- */
-define ("K_PATH_URL_CACHE", K_PATH_URL."cache/");
-
-/**
- *images directory
- */
-define ("K_PATH_IMAGES", K_PATH_MAIN."images/");
-
-/**
- * blank image
- */
-define ("K_BLANK_IMAGE", K_PATH_IMAGES."_blank.png");
-
-/**
- * page format
- */
-define ("PDF_PAGE_FORMAT", "A4");
-
-/**
- * page orientation (P=portrait, L=landscape)
- */
-define ("PDF_PAGE_ORIENTATION", "P");
-
-/**
- * document creator
- */
-define ("PDF_CREATOR", "pdf creator");
-
-/**
- * document author
- */
-define ("PDF_AUTHOR", "pdf author");
-
-/**
- * header title
- */
-define ("PDF_HEADER_TITLE", "header title");
-
-/**
- * header description string
- */
-define ("PDF_HEADER_STRING", "first row\nsecond row\nthird row");
-
-/**
- * image logo
- */
-define ("PDF_HEADER_LOGO", "logo_example.png");
-
-/**
- * header logo image width [mm]
- */
-define ("PDF_HEADER_LOGO_WIDTH", 20);
-
-/**
- * document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]
- */
-define ("PDF_UNIT", "mm");
-
-/**
- * header margin
- */
-define ("PDF_MARGIN_HEADER", 5);
-
-/**
- * footer margin
- */
-define ("PDF_MARGIN_FOOTER", 10);
-
-/**
- * top margin
- */
-define ("PDF_MARGIN_TOP", 27);
-
-/**
- * bottom margin
- */
-define ("PDF_MARGIN_BOTTOM", 25);
-
-/**
- * left margin
- */
-define ("PDF_MARGIN_LEFT", 15);
-
-/**
- * right margin
- */
-define ("PDF_MARGIN_RIGHT", 15);
-
-/**
- * main font name
- */
-define ("PDF_FONT_NAME_MAIN", "FreeSans"); //vera
-
-/**
- * main font size
- */
-define ("PDF_FONT_SIZE_MAIN", 10);
-
-/**
- * data font name
- */
-define ("PDF_FONT_NAME_DATA", "FreeSerif"); //verase
-
-/**
- * data font size
- */
-define ("PDF_FONT_SIZE_DATA", 8);
-
-/**
- * scale factor for images (number of points in user unit)
- */
-define ("PDF_IMAGE_SCALE_RATIO", 4);
-
-/**
- * magnification factor for titles
- */
-define("HEAD_MAGNIFICATION", 1.1);
-
-/**
- * height of cell repect font height
- */
-define("K_CELL_HEIGHT_RATIO", 1.25);
-
-/**
- * title magnification respect main font size
- */
-define("K_TITLE_MAGNIFICATION", 1.3);
-
-/**
- * reduction factor for small font
- */
-define("K_SMALL_RATIO", 2/3);
+ * the Moodle installation. K_PATH_CACHE set to Moodle datadir cache.
+ * K_PATH_URL_CACHE can't be mapped in Moodle as datadir should not be
+ * accessible directly. However, it doesn't seem to be used within the
+ * library code.
+ */
+
+if (empty($CFG)) {
+ die("ERROR: The library can be used by Moodle script only.");
+}
+
+// If you define the constant K_TCPDF_EXTERNAL_CONFIG, the following settings will be ignored.
+
+if (!defined("K_TCPDF_EXTERNAL_CONFIG")) {
+
+ // DOCUMENT_ROOT fix for IIS Webserver
+ if ((!isset($_SERVER['DOCUMENT_ROOT'])) OR (empty($_SERVER['DOCUMENT_ROOT']))) {
+ if(isset($_SERVER['SCRIPT_FILENAME'])) {
+ $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF'])));
+ } elseif(isset($_SERVER['PATH_TRANSLATED'])) {
+ $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF'])));
+ } else {
+ // define here your DOCUMENT_ROOT path if the previous fails
+ $_SERVER['DOCUMENT_ROOT'] = "/var/www";
+ }
+ }
+
+ // Automatic calculation for the following K_PATH_MAIN constant
+ $k_path_main = str_replace( '\\', '/', realpath(substr(dirname(__FILE__), 0, 0-strlen("config"))));
+ if (substr($k_path_main, -1) != '/') {
+ $k_path_main .= '/';
+ }
+
+ /**
+ * Installation path (/var/www/tcpdf/).
+ * By default it is automatically calculated but you can also set it as a fixed string to improve performances.
+ */
+ //define ("K_PATH_MAIN", $k_path_main);
+ define ('K_PATH_MAIN', $CFG->dirroot.'/lib/tcpdf/');
+
+ // Automatic calculation for the following K_PATH_URL constant
+ if (isset($_SERVER["HTTP_HOST"]) AND (!empty($_SERVER["HTTP_HOST"]))) {
+ if(isset($_SERVER["HTTPS"]) AND (!empty($_SERVER["HTTPS"])) AND strtolower($_SERVER['HTTPS'])!='off') {
+ $k_path_url = "https://";
+ } else {
+ $k_path_url = "http://";
+ }
+ $k_path_url .= $_SERVER["HTTP_HOST"];
+ $k_path_url .= str_replace( '\\', '/', substr($_SERVER["PHP_SELF"], 0, -24));
+ }
+
+ /**
+ * URL path to tcpdf installation folder (http://localhost/tcpdf/).
+ * By default it is automatically calculated but you can also set it as a fixed string to improve performances..
+ */
+ //define ("K_PATH_URL", $k_path_url);
+ define ('K_PATH_URL', $CFG->wwwroot.'/lib/tcpdf/');
+
+ /**
+ * path for PDF fonts
+ * use K_PATH_MAIN."fonts/old/" for old non-UTF8 fonts
+ */
+ define ("K_PATH_FONTS", K_PATH_MAIN."fonts/");
+
+ /**
+ * cache directory for temporary files (full path)
+ */
+ //define ("K_PATH_CACHE", K_PATH_MAIN."cache/");
+ define ("K_PATH_CACHE", $CFG->dataroot.'/cache/' );
+
+ /**
+ * cache directory for temporary files (url path)
+ */
+ //define ("K_PATH_URL_CACHE", K_PATH_URL."cache/");
+ define ("K_PATH_URL_CACHE", K_PATH_URL);
+
+ /**
+ *images directory
+ */
+ define ("K_PATH_IMAGES", K_PATH_MAIN."images/");
+
+ /**
+ * blank image
+ */
+ define ("K_BLANK_IMAGE", K_PATH_IMAGES."_blank.png");
+
+ /**
+ * page format
+ */
+ define ("PDF_PAGE_FORMAT", "A4");
+
+ /**
+ * page orientation (P=portrait, L=landscape)
+ */
+ define ("PDF_PAGE_ORIENTATION", "P");
+
+ /**
+ * document creator
+ */
+ define ("PDF_CREATOR", "TCPDF");
+
+ /**
+ * document author
+ */
+ define ("PDF_AUTHOR", "TCPDF");
+
+ /**
+ * header title
+ */
+ define ("PDF_HEADER_TITLE", "TCPDF Example");
+
+ /**
+ * header description string
+ */
+ define ("PDF_HEADER_STRING", "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org");
+
+ /**
+ * image logo
+ */
+ define ("PDF_HEADER_LOGO", "tcpdf_logo.jpg");
+
+ /**
+ * header logo image width [mm]
+ */
+ define ("PDF_HEADER_LOGO_WIDTH", 30);
+
+ /**
+ * document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]
+ */
+ define ("PDF_UNIT", "mm");
+
+ /**
+ * header margin
+ */
+ define ("PDF_MARGIN_HEADER", 5);
+
+ /**
+ * footer margin
+ */
+ define ("PDF_MARGIN_FOOTER", 10);
+
+ /**
+ * top margin
+ */
+ define ("PDF_MARGIN_TOP", 27);
+
+ /**
+ * bottom margin
+ */
+ define ("PDF_MARGIN_BOTTOM", 25);
+
+ /**
+ * left margin
+ */
+ define ("PDF_MARGIN_LEFT", 15);
+
+ /**
+ * right margin
+ */
+ define ("PDF_MARGIN_RIGHT", 15);
+
+ /**
+ * main font name
+ */
+ define ("PDF_FONT_NAME_MAIN", "dejavusans");
+
+ /**
+ * main font size
+ */
+ define ("PDF_FONT_SIZE_MAIN", 10);
+
+ /**
+ * data font name
+ */
+ define ("PDF_FONT_NAME_DATA", "dejavusans");
+
+ /**
+ * data font size
+ */
+ define ("PDF_FONT_SIZE_DATA", 8);
+
+ /**
+ * scale factor for images (number of points in user unit)
+ */
+ define ("PDF_IMAGE_SCALE_RATIO", 4);
+
+ /**
+ * magnification factor for titles
+ */
+ define("HEAD_MAGNIFICATION", 1.1);
+
+ /**
+ * height of cell repect font height
+ */
+ define("K_CELL_HEIGHT_RATIO", 1.25);
+
+ /**
+ * title magnification respect main font size
+ */
+ define("K_TITLE_MAGNIFICATION", 1.3);
+
+ /**
+ * reduction factor for small font
+ */
+ define("K_SMALL_RATIO", 2/3);
+}
//============================================================+
// END OF FILE
//============================================================+
-?>
\ No newline at end of file
+?>
diff --git a/lib/tcpdf/config/tcpdf_config_alt.php b/lib/tcpdf/config/tcpdf_config_alt.php
new file mode 100644
index 0000000000..baf98c5357
--- /dev/null
+++ b/lib/tcpdf/config/tcpdf_config_alt.php
@@ -0,0 +1,227 @@
+
diff --git a/lib/tcpdf/fonts/.noencode b/lib/tcpdf/fonts/.noencode
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/lib/tcpdf/fonts/FreeMono.ctg.z b/lib/tcpdf/fonts/FreeMono.ctg.z
deleted file mode 100755
index 07f15d5c32..0000000000
Binary files a/lib/tcpdf/fonts/FreeMono.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeMono.z b/lib/tcpdf/fonts/FreeMono.z
deleted file mode 100755
index 08ff94d707..0000000000
Binary files a/lib/tcpdf/fonts/FreeMono.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeMonoBold.ctg.z b/lib/tcpdf/fonts/FreeMonoBold.ctg.z
deleted file mode 100755
index 529813d5fa..0000000000
Binary files a/lib/tcpdf/fonts/FreeMonoBold.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeMonoBold.z b/lib/tcpdf/fonts/FreeMonoBold.z
deleted file mode 100755
index 6a42eebd41..0000000000
Binary files a/lib/tcpdf/fonts/FreeMonoBold.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeMonoBoldOblique.ctg.z b/lib/tcpdf/fonts/FreeMonoBoldOblique.ctg.z
deleted file mode 100755
index f8b2d722d3..0000000000
Binary files a/lib/tcpdf/fonts/FreeMonoBoldOblique.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeMonoBoldOblique.z b/lib/tcpdf/fonts/FreeMonoBoldOblique.z
deleted file mode 100755
index ceb9777181..0000000000
Binary files a/lib/tcpdf/fonts/FreeMonoBoldOblique.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeMonoOblique.ctg.z b/lib/tcpdf/fonts/FreeMonoOblique.ctg.z
deleted file mode 100755
index d9d3189c17..0000000000
Binary files a/lib/tcpdf/fonts/FreeMonoOblique.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeMonoOblique.z b/lib/tcpdf/fonts/FreeMonoOblique.z
deleted file mode 100755
index dc879ea2fc..0000000000
Binary files a/lib/tcpdf/fonts/FreeMonoOblique.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSans.ctg.z b/lib/tcpdf/fonts/FreeSans.ctg.z
deleted file mode 100755
index 8b70df1c31..0000000000
Binary files a/lib/tcpdf/fonts/FreeSans.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSans.z b/lib/tcpdf/fonts/FreeSans.z
deleted file mode 100755
index b7fffac84d..0000000000
Binary files a/lib/tcpdf/fonts/FreeSans.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSansBold.ctg.z b/lib/tcpdf/fonts/FreeSansBold.ctg.z
deleted file mode 100755
index f8d288a0e3..0000000000
Binary files a/lib/tcpdf/fonts/FreeSansBold.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSansBold.z b/lib/tcpdf/fonts/FreeSansBold.z
deleted file mode 100755
index 312eab6022..0000000000
Binary files a/lib/tcpdf/fonts/FreeSansBold.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSansBoldOblique.ctg.z b/lib/tcpdf/fonts/FreeSansBoldOblique.ctg.z
deleted file mode 100755
index b843f234e3..0000000000
Binary files a/lib/tcpdf/fonts/FreeSansBoldOblique.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSansBoldOblique.z b/lib/tcpdf/fonts/FreeSansBoldOblique.z
deleted file mode 100755
index f9131c338c..0000000000
Binary files a/lib/tcpdf/fonts/FreeSansBoldOblique.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSansOblique.ctg.z b/lib/tcpdf/fonts/FreeSansOblique.ctg.z
deleted file mode 100755
index 35f90ff207..0000000000
Binary files a/lib/tcpdf/fonts/FreeSansOblique.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSansOblique.z b/lib/tcpdf/fonts/FreeSansOblique.z
deleted file mode 100755
index c55489e22b..0000000000
Binary files a/lib/tcpdf/fonts/FreeSansOblique.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSerif.ctg.z b/lib/tcpdf/fonts/FreeSerif.ctg.z
deleted file mode 100755
index fc6a0eaa6f..0000000000
Binary files a/lib/tcpdf/fonts/FreeSerif.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSerif.z b/lib/tcpdf/fonts/FreeSerif.z
deleted file mode 100755
index cd055f50d3..0000000000
Binary files a/lib/tcpdf/fonts/FreeSerif.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSerifBold.ctg.z b/lib/tcpdf/fonts/FreeSerifBold.ctg.z
deleted file mode 100755
index 8b1e07e686..0000000000
Binary files a/lib/tcpdf/fonts/FreeSerifBold.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSerifBold.z b/lib/tcpdf/fonts/FreeSerifBold.z
deleted file mode 100755
index 191b712655..0000000000
Binary files a/lib/tcpdf/fonts/FreeSerifBold.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSerifBoldItalic.ctg.z b/lib/tcpdf/fonts/FreeSerifBoldItalic.ctg.z
deleted file mode 100755
index 7448663d1a..0000000000
Binary files a/lib/tcpdf/fonts/FreeSerifBoldItalic.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSerifBoldItalic.z b/lib/tcpdf/fonts/FreeSerifBoldItalic.z
deleted file mode 100755
index a403900450..0000000000
Binary files a/lib/tcpdf/fonts/FreeSerifBoldItalic.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSerifItalic.ctg.z b/lib/tcpdf/fonts/FreeSerifItalic.ctg.z
deleted file mode 100755
index 57b56f0eb4..0000000000
Binary files a/lib/tcpdf/fonts/FreeSerifItalic.ctg.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/FreeSerifItalic.z b/lib/tcpdf/fonts/FreeSerifItalic.z
deleted file mode 100755
index 52d40c569a..0000000000
Binary files a/lib/tcpdf/fonts/FreeSerifItalic.z and /dev/null differ
diff --git a/lib/tcpdf/fonts/README.TXT b/lib/tcpdf/fonts/README.TXT
index 25fbf11b7b..c27086f285 100755
--- a/lib/tcpdf/fonts/README.TXT
+++ b/lib/tcpdf/fonts/README.TXT
@@ -1,25 +1,3 @@
-To embed TrueType fonts (.TTF) files, you need to extract the font metrics and
-build the required tables using the ttf2ufm utility.
-
-TTF2UFM is a modified version of Mark Heath's TTF 2 PT1 converter
-(http://ttf2pt1.sourceforge.net/) by Steven Wittens
-(http://www.acko.net/blog/ufpdf).
-
-ttf2ufm, is not bundled with the Moodle distribution, but it is available with
-the standard TCPDF distribution (http://tcpdf.sourceforge.net/):
-
- - Source code is avaialable in in /ttf2ufm-src.
- - The /fonts/ttf2ufm folder contains a compiled Windows binary.
-
-TTF 2 UFM is identical to TTF 2 PT1 except that it also generates a .ufm file
-for usage with makefontuni.php.
-
-
-Setting up a Truetype font for usage with TCPDF:
- 1) Generate the font's .ufm metrics file by processing it with the provided
- ttf2ufm program (modified ttf2pt1). For example:
- $ ttf2ufm -a -F myfont.ttf
- 2) Run makefontuni.php with the .ttf and .ufm filenames as argument:
- $ php -q makefontuni.php myfont.ttf myfont.ufm
- 3) Copy the resulting .php, .z and .ctg.z file to the TCPDF font directory.
-
\ No newline at end of file
+This folder contains fonts descriptions for TCPDF.
+All fonts names must be in lowercase.
+Please read the documentation on subfolders for copyright, license and other information.
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/almohanad.ctg.z b/lib/tcpdf/fonts/almohanad.ctg.z
new file mode 100644
index 0000000000..8e9b577e4e
Binary files /dev/null and b/lib/tcpdf/fonts/almohanad.ctg.z differ
diff --git a/lib/tcpdf/fonts/almohanad.php b/lib/tcpdf/fonts/almohanad.php
new file mode 100644
index 0000000000..e453fb5a78
--- /dev/null
+++ b/lib/tcpdf/fonts/almohanad.php
@@ -0,0 +1,101 @@
+1093,'Descent'=>-509,'CapHeight'=>1093,'Flags'=>32,'FontBBox'=>'[-278 -507 1124 1093]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
+$up=-136;
+$ut=64;
+$cw=array(
+ 0=>0, 32=>139, 33=>185, 34=>308, 35=>278, 36=>278, 37=>556, 38=>463, 39=>154, 40=>185, 41=>185, 42=>278, 43=>317, 44=>139, 45=>185, 46=>139,
+ 47=>154, 48=>278, 49=>278, 50=>278, 51=>278, 52=>278, 53=>278, 54=>278, 55=>278, 56=>278, 57=>278, 58=>185, 59=>185, 60=>317, 61=>317, 62=>317,
+ 63=>278, 64=>517, 65=>401, 66=>371, 67=>401, 68=>402, 69=>371, 70=>339, 71=>432, 72=>430, 73=>214, 74=>278, 75=>424, 76=>369, 77=>524, 78=>401,
+ 79=>432, 80=>339, 81=>432, 82=>396, 83=>309, 84=>371, 85=>401, 86=>401, 87=>556, 88=>401, 89=>401, 90=>371, 91=>185, 92=>154, 93=>185, 94=>323,
+ 95=>278, 96=>185, 97=>278, 98=>309, 99=>247, 100=>309, 101=>247, 102=>185, 103=>278, 104=>309, 105=>154, 106=>185, 107=>309, 108=>154, 109=>463, 110=>309,
+ 111=>278, 112=>309, 113=>309, 114=>247, 115=>216, 116=>185, 117=>309, 118=>278, 119=>401, 120=>278, 121=>278, 122=>247, 123=>219, 124=>122, 125=>219, 126=>289,
+ 8364=>278, 1027=>339, 8218=>185, 1107=>254, 8222=>278, 8230=>556, 8224=>278, 8225=>278, 710=>185, 8240=>556, 352=>309, 8249=>185, 338=>556, 1036=>432, 381=>371, 1039=>432,
+ 8216=>185, 8217=>185, 8220=>278, 8221=>278, 8226=>194, 8211=>278, 8212=>556, 732=>185, 8482=>556, 353=>216, 8250=>185, 339=>401, 1116=>297, 382=>247, 376=>401, 161=>185,
+ 162=>278, 163=>278, 164=>278, 165=>278, 166=>122, 167=>278, 168=>185, 169=>415, 170=>167, 171=>278, 172=>317, 174=>415, 175=>185, 176=>222, 177=>317, 178=>167,
+ 179=>167, 180=>185, 181=>309, 182=>300, 183=>139, 184=>185, 185=>167, 186=>183, 187=>278, 188=>417, 189=>417, 190=>417, 191=>278, 192=>401, 193=>401, 194=>401,
+ 195=>401, 196=>401, 197=>401, 198=>556, 199=>401, 200=>371, 201=>371, 202=>371, 203=>371, 204=>216, 205=>216, 206=>216, 207=>216, 208=>401, 209=>401, 210=>432,
+ 211=>432, 212=>432, 213=>432, 214=>432, 215=>317, 216=>432, 217=>401, 218=>401, 219=>401, 220=>401, 221=>401, 222=>339, 223=>309, 224=>278, 225=>278, 226=>278,
+ 227=>278, 228=>278, 229=>278, 230=>401, 231=>247, 232=>247, 233=>247, 234=>247, 235=>247, 236=>154, 237=>154, 238=>154, 239=>154, 240=>278, 241=>309, 242=>278,
+ 243=>278, 244=>278, 245=>278, 246=>278, 247=>317, 248=>278, 249=>309, 250=>309, 251=>309, 252=>309, 253=>278, 254=>309, 255=>278, 256=>401, 257=>278, 258=>401,
+ 259=>278, 260=>401, 261=>278, 262=>401, 263=>247, 264=>401, 265=>247, 266=>401, 267=>247, 268=>401, 269=>247, 270=>401, 271=>309, 272=>401, 273=>309, 274=>371,
+ 275=>247, 276=>371, 277=>247, 278=>371, 279=>247, 280=>371, 281=>247, 282=>371, 283=>247, 284=>432, 285=>278, 286=>432, 287=>278, 288=>432, 289=>278, 290=>432,
+ 291=>278, 292=>432, 293=>309, 294=>432, 295=>309, 296=>216, 297=>154, 298=>216, 299=>154, 300=>216, 301=>154, 302=>216, 303=>154, 304=>216, 305=>154, 306=>490,
+ 307=>270, 308=>278, 309=>185, 310=>432, 311=>309, 312=>297, 313=>371, 314=>154, 315=>371, 316=>154, 317=>371, 318=>154, 319=>371, 320=>293, 321=>371, 322=>154,
+ 323=>401, 324=>309, 325=>401, 326=>309, 327=>401, 328=>309, 329=>391, 330=>401, 331=>309, 332=>432, 333=>278, 334=>432, 335=>278, 336=>432, 337=>278, 340=>401,
+ 341=>247, 342=>401, 343=>247, 344=>401, 345=>247, 346=>309, 347=>216, 348=>309, 349=>216, 350=>309, 351=>216, 354=>371, 355=>185, 356=>371, 357=>185, 358=>371,
+ 359=>185, 360=>401, 361=>309, 362=>401, 363=>309, 364=>401, 365=>309, 366=>401, 367=>309, 368=>401, 369=>309, 370=>401, 371=>309, 372=>556, 373=>401, 374=>401,
+ 375=>278, 377=>371, 378=>247, 379=>371, 380=>247, 383=>185, 450=>317, 477=>247, 484=>432, 485=>278, 536=>309, 537=>216, 538=>371, 539=>185, 658=>282, 711=>185,
+ 728=>185, 729=>185, 730=>185, 731=>185, 733=>185, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0,
+ 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0,
+ 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0,
+ 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0,
+ 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 864=>0, 865=>0, 884=>111, 885=>111, 890=>0, 894=>185, 900=>100, 901=>183, 902=>401, 903=>139, 904=>451,
+ 905=>532, 906=>316, 908=>451, 910=>501, 911=>451, 912=>183, 913=>401, 914=>371, 915=>339, 916=>422, 917=>371, 918=>371, 919=>432, 920=>432, 921=>216, 922=>432,
+ 923=>401, 924=>524, 925=>401, 926=>361, 927=>432, 928=>451, 929=>339, 931=>361, 932=>371, 933=>401, 934=>482, 935=>401, 936=>482, 937=>451, 938=>0, 939=>401,
+ 940=>336, 941=>244, 942=>336, 943=>183, 944=>306, 945=>336, 946=>306, 947=>306, 948=>306, 949=>244, 950=>275, 951=>336, 952=>306, 953=>183, 954=>338, 955=>275,
+ 956=>336, 957=>275, 958=>275, 959=>306, 960=>336, 961=>306, 962=>244, 963=>306, 964=>244, 965=>306, 966=>367, 967=>275, 968=>397, 969=>397, 970=>183, 971=>306,
+ 972=>306, 973=>306, 974=>397, 976=>306, 977=>306, 978=>401, 979=>401, 980=>401, 981=>367, 982=>336, 986=>283, 987=>237, 988=>339, 989=>261, 1024=>371, 1025=>371,
+ 1026=>371, 1028=>401, 1029=>309, 1030=>216, 1031=>216, 1032=>278, 1033=>573, 1034=>573, 1035=>449, 1037=>432, 1038=>401, 1040=>401, 1041=>371, 1042=>371, 1043=>328, 1044=>432,
+ 1045=>371, 1046=>615, 1047=>313, 1048=>429, 1049=>429, 1050=>424, 1051=>432, 1052=>524, 1053=>432, 1054=>432, 1055=>430, 1056=>339, 1057=>401, 1058=>371, 1059=>401, 1060=>444,
+ 1061=>401, 1062=>429, 1063=>432, 1064=>618, 1065=>618, 1066=>482, 1067=>539, 1068=>350, 1069=>401, 1070=>619, 1071=>408, 1072=>278, 1073=>278, 1074=>279, 1075=>246, 1076=>309,
+ 1077=>247, 1078=>417, 1079=>227, 1080=>319, 1081=>319, 1082=>297, 1083=>302, 1084=>376, 1085=>309, 1086=>278, 1087=>309, 1088=>309, 1089=>247, 1090=>274, 1091=>278, 1092=>458,
+ 1093=>278, 1094=>309, 1095=>309, 1096=>454, 1097=>454, 1098=>340, 1099=>423, 1100=>284, 1101=>247, 1102=>439, 1103=>284, 1104=>247, 1105=>247, 1106=>309, 1108=>247, 1109=>216,
+ 1110=>154, 1111=>154, 1112=>185, 1113=>440, 1114=>437, 1115=>309, 1117=>309, 1118=>278, 1119=>309, 1164=>339, 1165=>284, 1166=>339, 1167=>309, 1168=>339, 1169=>254, 1170=>339,
+ 1171=>254, 1172=>339, 1173=>254, 1174=>615, 1175=>417, 1176=>322, 1177=>216, 1178=>432, 1179=>297, 1180=>432, 1181=>297, 1182=>432, 1183=>297, 1184=>537, 1185=>352, 1186=>432,
+ 1187=>309, 1188=>563, 1189=>408, 1190=>432, 1191=>461, 1192=>401, 1193=>247, 1194=>401, 1195=>247, 1196=>371, 1197=>274, 1198=>401, 1199=>278, 1200=>401, 1201=>278, 1202=>401,
+ 1203=>278, 1204=>581, 1205=>432, 1206=>432, 1207=>309, 1208=>432, 1209=>309, 1210=>432, 1211=>309, 1212=>367, 1213=>247, 1214=>367, 1215=>247, 1216=>216, 1217=>615, 1218=>417,
+ 1219=>432, 1220=>297, 1223=>432, 1224=>309, 1227=>432, 1228=>309, 1232=>401, 1233=>278, 1234=>401, 1235=>278, 1236=>556, 1237=>401, 1238=>371, 1239=>247, 1240=>367, 1241=>247,
+ 1242=>367, 1243=>247, 1244=>615, 1245=>417, 1246=>313, 1247=>227, 1248=>322, 1249=>216, 1250=>432, 1251=>309, 1252=>432, 1253=>309, 1254=>432, 1255=>278, 1256=>432, 1257=>278,
+ 1258=>432, 1259=>278, 1260=>401, 1261=>247, 1262=>401, 1263=>278, 1264=>401, 1265=>278, 1266=>401, 1267=>278, 1268=>432, 1269=>309, 1272=>548, 1273=>423, 1488=>280, 1489=>280,
+ 1490=>174, 1491=>280, 1492=>280, 1493=>158, 1494=>158, 1495=>280, 1496=>280, 1497=>158, 1498=>287, 1499=>280, 1500=>280, 1501=>280, 1502=>280, 1503=>156, 1504=>158, 1505=>280,
+ 1506=>280, 1507=>292, 1508=>280, 1509=>273, 1510=>280, 1511=>305, 1512=>285, 1513=>299, 1514=>280, 1548=>195, 1563=>246, 1567=>340, 1569=>392, 1570=>306, 1571=>247, 1572=>447,
+ 1573=>247, 1574=>602, 1575=>192, 1576=>635, 1577=>369, 1578=>635, 1579=>635, 1580=>548, 1581=>1173, 1582=>548, 1583=>363, 1584=>363, 1585=>439, 1586=>442, 1587=>875, 1588=>875,
+ 1589=>1061, 1590=>1061, 1591=>811, 1592=>811, 1593=>549, 1594=>547, 1600=>389, 1601=>755, 1602=>574, 1603=>717, 1604=>555, 1605=>423, 1606=>532, 1607=>371, 1608=>454, 1609=>633,
+ 1610=>643, 1611=>-19, 1612=>-26, 1613=>-20, 1614=>-19, 1615=>-18, 1616=>-19, 1617=>-19, 1618=>-15, 1632=>383, 1633=>383, 1634=>383, 1635=>383, 1636=>383, 1637=>383, 1638=>383,
+ 1639=>383, 1640=>383, 1641=>383, 1642=>383, 1645=>398, 7936=>336, 7937=>336, 7938=>336, 7939=>336, 7940=>336, 7941=>336, 7942=>336, 7943=>336, 7944=>401, 7945=>401, 7946=>401,
+ 7947=>401, 7948=>401, 7949=>401, 7950=>401, 7951=>401, 7952=>244, 7953=>244, 7954=>244, 7955=>244, 7956=>244, 7957=>244, 7960=>371, 7961=>371, 7962=>371, 7963=>371, 7964=>371,
+ 7965=>371, 7968=>336, 7969=>336, 7970=>336, 7971=>336, 7972=>336, 7973=>336, 7974=>336, 7975=>336, 7976=>432, 7977=>432, 7978=>432, 7979=>432, 7980=>432, 7981=>432, 7982=>432,
+ 7983=>432, 7984=>183, 7985=>183, 7986=>183, 7987=>183, 7988=>183, 7989=>183, 7990=>183, 7991=>183, 7992=>216, 7993=>216, 7994=>216, 7995=>216, 7996=>216, 7997=>216, 7998=>216,
+ 7999=>216, 8000=>306, 8001=>306, 8002=>306, 8003=>306, 8004=>306, 8005=>306, 8008=>432, 8009=>432, 8010=>432, 8011=>432, 8012=>432, 8013=>432, 8016=>306, 8017=>306, 8018=>306,
+ 8019=>306, 8020=>306, 8021=>306, 8022=>306, 8023=>306, 8025=>401, 8027=>401, 8029=>401, 8031=>401, 8032=>397, 8033=>397, 8034=>397, 8035=>397, 8036=>397, 8037=>397, 8038=>397,
+ 8039=>397, 8040=>451, 8041=>451, 8042=>451, 8043=>451, 8044=>451, 8045=>451, 8046=>451, 8047=>451, 8048=>336, 8049=>336, 8050=>244, 8051=>244, 8052=>336, 8053=>336, 8054=>183,
+ 8055=>183, 8056=>306, 8057=>306, 8058=>306, 8059=>306, 8060=>397, 8061=>397, 8064=>336, 8065=>336, 8066=>336, 8067=>336, 8068=>336, 8069=>336, 8070=>336, 8071=>336, 8072=>401,
+ 8073=>401, 8074=>401, 8075=>401, 8076=>401, 8077=>401, 8078=>401, 8079=>401, 8080=>336, 8081=>336, 8082=>336, 8083=>336, 8084=>336, 8085=>336, 8086=>336, 8087=>336, 8088=>432,
+ 8089=>432, 8090=>432, 8091=>432, 8092=>432, 8093=>432, 8094=>432, 8095=>432, 8096=>397, 8097=>397, 8098=>397, 8099=>397, 8100=>397, 8101=>397, 8102=>397, 8103=>397, 8104=>451,
+ 8105=>451, 8106=>451, 8107=>451, 8108=>451, 8109=>451, 8110=>451, 8111=>451, 8112=>336, 8113=>336, 8114=>336, 8115=>336, 8116=>336, 8118=>336, 8119=>336, 8120=>401, 8121=>401,
+ 8122=>401, 8123=>401, 8124=>401, 8125=>278, 8126=>0, 8127=>278, 8128=>278, 8129=>306, 8130=>336, 8131=>336, 8132=>336, 8134=>336, 8135=>336, 8136=>371, 8137=>371, 8138=>432,
+ 8139=>432, 8140=>432, 8141=>278, 8142=>278, 8143=>278, 8144=>183, 8145=>183, 8146=>183, 8147=>183, 8150=>183, 8151=>183, 8152=>216, 8153=>216, 8154=>216, 8155=>216, 8157=>278,
+ 8158=>278, 8159=>278, 8160=>306, 8161=>306, 8162=>306, 8163=>306, 8164=>306, 8165=>306, 8166=>306, 8167=>306, 8168=>401, 8169=>401, 8170=>401, 8171=>401, 8172=>339, 8173=>306,
+ 8174=>306, 8175=>278, 8178=>397, 8179=>397, 8180=>397, 8182=>397, 8183=>397, 8184=>432, 8185=>432, 8186=>451, 8187=>451, 8188=>451, 8189=>278, 8190=>278, 8208=>185, 8209=>185,
+ 8219=>185, 8223=>278, 8227=>311, 8241=>1011, 8248=>261, 8251=>404, 8253=>386, 8255=>529, 8256=>529, 8257=>188, 8258=>517, 8259=>185, 8260=>93, 8261=>184, 8262=>184, 8267=>300,
+ 8308=>167, 8309=>556, 8321=>167, 8322=>167, 8323=>167, 8324=>167, 8352=>394, 8353=>401, 8354=>435, 8355=>339, 8356=>278, 8357=>463, 8358=>401, 8359=>389, 8361=>556, 8470=>530,
+ 8471=>415, 8479=>401, 8483=>401, 8486=>451, 8487=>451, 8494=>306, 8498=>339, 8543=>417, 8706=>274, 8710=>340, 8721=>396, 8722=>317, 8730=>305, 8734=>418, 8800=>317, 8804=>317,
+ 8805=>317, 9674=>274, 12353=>556, 12354=>556, 12355=>556, 12356=>556, 12357=>556, 12358=>556, 12359=>556, 12360=>556, 12361=>556, 12362=>556, 12363=>556, 12364=>556, 12365=>556, 12366=>556,
+ 12367=>556, 12368=>556, 12369=>556, 12370=>556, 12371=>556, 12372=>556, 12373=>556, 12374=>556, 12375=>556, 12376=>556, 12377=>556, 12378=>556, 12379=>556, 12380=>556, 12381=>556, 12382=>556,
+ 12383=>556, 12384=>556, 12385=>556, 12386=>556, 12387=>556, 12388=>556, 12389=>556, 12390=>556, 12391=>556, 12392=>556, 12393=>556, 12394=>556, 12395=>556, 12396=>556, 12397=>556, 12398=>556,
+ 12399=>556, 12400=>556, 12401=>556, 12402=>556, 12403=>556, 12404=>556, 12405=>556, 12406=>556, 12407=>556, 12408=>556, 12409=>556, 12410=>556, 12411=>556, 12412=>556, 12413=>556, 12414=>556,
+ 12415=>556, 12416=>556, 12417=>556, 12418=>556, 12419=>556, 12420=>556, 12421=>556, 12422=>556, 12423=>556, 12424=>556, 12425=>556, 12426=>556, 12427=>556, 12428=>556, 12429=>556, 12430=>556,
+ 12431=>556, 12432=>556, 12433=>556, 12434=>556, 12435=>556, 12449=>556, 12450=>556, 12451=>556, 12452=>556, 12453=>556, 12454=>556, 12455=>556, 12456=>556, 12457=>556, 12458=>556, 12459=>556,
+ 12460=>556, 12461=>556, 12462=>556, 12463=>556, 12464=>556, 12465=>556, 12466=>556, 12467=>556, 12468=>556, 12469=>556, 12470=>556, 12471=>556, 12472=>556, 12473=>556, 12474=>556, 12475=>556,
+ 12476=>556, 12477=>556, 12478=>556, 12479=>556, 12480=>556, 12481=>556, 12482=>556, 12483=>556, 12484=>556, 12485=>556, 12486=>556, 12487=>556, 12488=>556, 12489=>556, 12490=>556, 12491=>556,
+ 12492=>556, 12493=>556, 12494=>556, 12495=>556, 12496=>556, 12497=>556, 12498=>556, 12499=>556, 12500=>556, 12501=>556, 12502=>556, 12503=>556, 12504=>556, 12505=>556, 12506=>556, 12507=>556,
+ 12508=>556, 12509=>556, 12510=>556, 12511=>556, 12512=>556, 12513=>556, 12514=>556, 12515=>556, 12516=>556, 12517=>556, 12518=>556, 12519=>556, 12520=>556, 12521=>556, 12522=>556, 12523=>556,
+ 12524=>556, 12525=>556, 12526=>556, 12527=>556, 12528=>556, 12529=>556, 12530=>556, 12531=>556, 12532=>556, 12533=>556, 12534=>556, 63033=>278, 63034=>278, 63035=>278, 63036=>278, 63037=>278,
+ 63038=>278, 63039=>278, 63040=>278, 63041=>278, 63171=>185, 63196=>278, 64256=>309, 64257=>309, 64258=>309, 64259=>463, 64260=>463, 64262=>402, 64606=>0, 64607=>0, 64608=>0, 64609=>0,
+ 64610=>0, 64830=>467, 64831=>467, 65010=>814, 65152=>392, 65153=>306, 65154=>281, 65155=>247, 65156=>250, 65157=>447, 65158=>412, 65159=>247, 65160=>222, 65161=>602, 65162=>535, 65163=>360,
+ 65164=>329, 65165=>192, 65166=>220, 65167=>635, 65168=>644, 65169=>338, 65170=>321, 65171=>369, 65172=>419, 65173=>635, 65174=>644, 65175=>345, 65176=>336, 65177=>635, 65178=>644, 65179=>393,
+ 65180=>345, 65181=>548, 65182=>553, 65183=>637, 65184=>652, 65185=>548, 65186=>546, 65187=>637, 65188=>656, 65189=>548, 65190=>544, 65191=>637, 65192=>656, 65193=>363, 65194=>439, 65195=>363,
+ 65196=>439, 65197=>440, 65198=>471, 65199=>439, 65200=>474, 65201=>875, 65202=>871, 65203=>608, 65204=>588, 65205=>875, 65206=>871, 65207=>609, 65208=>587, 65209=>1061, 65210=>1033, 65211=>794,
+ 65212=>758, 65213=>1061, 65214=>1033, 65215=>794, 65216=>761, 65217=>811, 65218=>793, 65219=>659, 65220=>647, 65221=>811, 65222=>793, 65223=>659, 65224=>642, 65225=>549, 65226=>481, 65227=>512,
+ 65228=>409, 65229=>547, 65230=>476, 65231=>512, 65232=>409, 65233=>755, 65234=>748, 65235=>416, 65236=>442, 65237=>574, 65238=>550, 65239=>416, 65240=>442, 65241=>717, 65242=>687, 65243=>883,
+ 65244=>409, 65245=>555, 65246=>511, 65247=>338, 65248=>297, 65249=>423, 65250=>478, 65251=>489, 65252=>476, 65253=>532, 65254=>548, 65255=>336, 65256=>326, 65257=>371, 65258=>391, 65259=>524,
+ 65260=>412, 65261=>454, 65262=>412, 65263=>633, 65264=>566, 65265=>643, 65266=>560, 65267=>357, 65268=>333, 65269=>623, 65270=>617, 65271=>603, 65272=>621, 65273=>576, 65274=>617, 65275=>576,
+ 65276=>625);
+$enc='';
+$diff='';
+$file='almohanad.z';
+$ctg='almohanad.ctg.z';
+$originalsize=227760;
+?>
diff --git a/lib/tcpdf/fonts/almohanad.z b/lib/tcpdf/fonts/almohanad.z
new file mode 100644
index 0000000000..27426a68f0
Binary files /dev/null and b/lib/tcpdf/fonts/almohanad.z differ
diff --git a/lib/tcpdf/fonts/courier.php b/lib/tcpdf/fonts/courier.php
new file mode 100644
index 0000000000..6a6dadd24c
--- /dev/null
+++ b/lib/tcpdf/fonts/courier.php
@@ -0,0 +1,5 @@
+600,1=>600,2=>600,3=>600,4=>600,5=>600,6=>600,7=>600,8=>600,9=>600,10=>600,11=>600,12=>600,13=>600,14=>600,15=>600,16=>600,17=>600,18=>600,19=>600,20=>600,21=>600,22=>600,23=>600,24=>600,25=>600,26=>600,27=>600,28=>600,29=>600,30=>600,31=>600,32=>600,33=>600,34=>600,35=>600,36=>600,37=>600,38=>600,39=>600,40=>600,41=>600,42=>600,43=>600,44=>600,45=>600,46=>600,47=>600,48=>600,49=>600,50=>600,51=>600,52=>600,53=>600,54=>600,55=>600,56=>600,57=>600,58=>600,59=>600,60=>600,61=>600,62=>600,63=>600,64=>600,65=>600,66=>600,67=>600,68=>600,69=>600,70=>600,71=>600,72=>600,73=>600,74=>600,75=>600,76=>600,77=>600,78=>600,79=>600,80=>600,81=>600,82=>600,83=>600,84=>600,85=>600,86=>600,87=>600,88=>600,89=>600,90=>600,91=>600,92=>600,93=>600,94=>600,95=>600,96=>600,97=>600,98=>600,99=>600,100=>600,101=>600,102=>600,103=>600,104=>600,105=>600,106=>600,107=>600,108=>600,109=>600,110=>600,111=>600,112=>600,113=>600,114=>600,115=>600,116=>600,117=>600,118=>600,119=>600,120=>600,121=>600,122=>600,123=>600,124=>600,125=>600,126=>600,127=>600,128=>600,129=>600,130=>600,131=>600,132=>600,133=>600,134=>600,135=>600,136=>600,137=>600,138=>600,139=>600,140=>600,141=>600,142=>600,143=>600,144=>600,145=>600,146=>600,147=>600,148=>600,149=>600,150=>600,151=>600,152=>600,153=>600,154=>600,155=>600,156=>600,157=>600,158=>600,159=>600,160=>600,161=>600,162=>600,163=>600,164=>600,165=>600,166=>600,167=>600,168=>600,169=>600,170=>600,171=>600,172=>600,173=>600,174=>600,175=>600,176=>600,177=>600,178=>600,179=>600,180=>600,181=>600,182=>600,183=>600,184=>600,185=>600,186=>600,187=>600,188=>600,189=>600,190=>600,191=>600,192=>600,193=>600,194=>600,195=>600,196=>600,197=>600,198=>600,199=>600,200=>600,201=>600,202=>600,203=>600,204=>600,205=>600,206=>600,207=>600,208=>600,209=>600,210=>600,211=>600,212=>600,213=>600,214=>600,215=>600,216=>600,217=>600,218=>600,219=>600,220=>600,221=>600,222=>600,223=>600,224=>600,225=>600,226=>600,227=>600,228=>600,229=>600,230=>600,231=>600,232=>600,233=>600,234=>600,235=>600,236=>600,237=>600,238=>600,239=>600,240=>600,241=>600,242=>600,243=>600,244=>600,245=>600,246=>600,247=>600,248=>600,249=>600,250=>600,251=>600,252=>600,253=>600,254=>600,255=>600);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/courierb.php b/lib/tcpdf/fonts/courierb.php
new file mode 100644
index 0000000000..6a6dadd24c
--- /dev/null
+++ b/lib/tcpdf/fonts/courierb.php
@@ -0,0 +1,5 @@
+600,1=>600,2=>600,3=>600,4=>600,5=>600,6=>600,7=>600,8=>600,9=>600,10=>600,11=>600,12=>600,13=>600,14=>600,15=>600,16=>600,17=>600,18=>600,19=>600,20=>600,21=>600,22=>600,23=>600,24=>600,25=>600,26=>600,27=>600,28=>600,29=>600,30=>600,31=>600,32=>600,33=>600,34=>600,35=>600,36=>600,37=>600,38=>600,39=>600,40=>600,41=>600,42=>600,43=>600,44=>600,45=>600,46=>600,47=>600,48=>600,49=>600,50=>600,51=>600,52=>600,53=>600,54=>600,55=>600,56=>600,57=>600,58=>600,59=>600,60=>600,61=>600,62=>600,63=>600,64=>600,65=>600,66=>600,67=>600,68=>600,69=>600,70=>600,71=>600,72=>600,73=>600,74=>600,75=>600,76=>600,77=>600,78=>600,79=>600,80=>600,81=>600,82=>600,83=>600,84=>600,85=>600,86=>600,87=>600,88=>600,89=>600,90=>600,91=>600,92=>600,93=>600,94=>600,95=>600,96=>600,97=>600,98=>600,99=>600,100=>600,101=>600,102=>600,103=>600,104=>600,105=>600,106=>600,107=>600,108=>600,109=>600,110=>600,111=>600,112=>600,113=>600,114=>600,115=>600,116=>600,117=>600,118=>600,119=>600,120=>600,121=>600,122=>600,123=>600,124=>600,125=>600,126=>600,127=>600,128=>600,129=>600,130=>600,131=>600,132=>600,133=>600,134=>600,135=>600,136=>600,137=>600,138=>600,139=>600,140=>600,141=>600,142=>600,143=>600,144=>600,145=>600,146=>600,147=>600,148=>600,149=>600,150=>600,151=>600,152=>600,153=>600,154=>600,155=>600,156=>600,157=>600,158=>600,159=>600,160=>600,161=>600,162=>600,163=>600,164=>600,165=>600,166=>600,167=>600,168=>600,169=>600,170=>600,171=>600,172=>600,173=>600,174=>600,175=>600,176=>600,177=>600,178=>600,179=>600,180=>600,181=>600,182=>600,183=>600,184=>600,185=>600,186=>600,187=>600,188=>600,189=>600,190=>600,191=>600,192=>600,193=>600,194=>600,195=>600,196=>600,197=>600,198=>600,199=>600,200=>600,201=>600,202=>600,203=>600,204=>600,205=>600,206=>600,207=>600,208=>600,209=>600,210=>600,211=>600,212=>600,213=>600,214=>600,215=>600,216=>600,217=>600,218=>600,219=>600,220=>600,221=>600,222=>600,223=>600,224=>600,225=>600,226=>600,227=>600,228=>600,229=>600,230=>600,231=>600,232=>600,233=>600,234=>600,235=>600,236=>600,237=>600,238=>600,239=>600,240=>600,241=>600,242=>600,243=>600,244=>600,245=>600,246=>600,247=>600,248=>600,249=>600,250=>600,251=>600,252=>600,253=>600,254=>600,255=>600);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/courierbi.php b/lib/tcpdf/fonts/courierbi.php
new file mode 100644
index 0000000000..6a6dadd24c
--- /dev/null
+++ b/lib/tcpdf/fonts/courierbi.php
@@ -0,0 +1,5 @@
+600,1=>600,2=>600,3=>600,4=>600,5=>600,6=>600,7=>600,8=>600,9=>600,10=>600,11=>600,12=>600,13=>600,14=>600,15=>600,16=>600,17=>600,18=>600,19=>600,20=>600,21=>600,22=>600,23=>600,24=>600,25=>600,26=>600,27=>600,28=>600,29=>600,30=>600,31=>600,32=>600,33=>600,34=>600,35=>600,36=>600,37=>600,38=>600,39=>600,40=>600,41=>600,42=>600,43=>600,44=>600,45=>600,46=>600,47=>600,48=>600,49=>600,50=>600,51=>600,52=>600,53=>600,54=>600,55=>600,56=>600,57=>600,58=>600,59=>600,60=>600,61=>600,62=>600,63=>600,64=>600,65=>600,66=>600,67=>600,68=>600,69=>600,70=>600,71=>600,72=>600,73=>600,74=>600,75=>600,76=>600,77=>600,78=>600,79=>600,80=>600,81=>600,82=>600,83=>600,84=>600,85=>600,86=>600,87=>600,88=>600,89=>600,90=>600,91=>600,92=>600,93=>600,94=>600,95=>600,96=>600,97=>600,98=>600,99=>600,100=>600,101=>600,102=>600,103=>600,104=>600,105=>600,106=>600,107=>600,108=>600,109=>600,110=>600,111=>600,112=>600,113=>600,114=>600,115=>600,116=>600,117=>600,118=>600,119=>600,120=>600,121=>600,122=>600,123=>600,124=>600,125=>600,126=>600,127=>600,128=>600,129=>600,130=>600,131=>600,132=>600,133=>600,134=>600,135=>600,136=>600,137=>600,138=>600,139=>600,140=>600,141=>600,142=>600,143=>600,144=>600,145=>600,146=>600,147=>600,148=>600,149=>600,150=>600,151=>600,152=>600,153=>600,154=>600,155=>600,156=>600,157=>600,158=>600,159=>600,160=>600,161=>600,162=>600,163=>600,164=>600,165=>600,166=>600,167=>600,168=>600,169=>600,170=>600,171=>600,172=>600,173=>600,174=>600,175=>600,176=>600,177=>600,178=>600,179=>600,180=>600,181=>600,182=>600,183=>600,184=>600,185=>600,186=>600,187=>600,188=>600,189=>600,190=>600,191=>600,192=>600,193=>600,194=>600,195=>600,196=>600,197=>600,198=>600,199=>600,200=>600,201=>600,202=>600,203=>600,204=>600,205=>600,206=>600,207=>600,208=>600,209=>600,210=>600,211=>600,212=>600,213=>600,214=>600,215=>600,216=>600,217=>600,218=>600,219=>600,220=>600,221=>600,222=>600,223=>600,224=>600,225=>600,226=>600,227=>600,228=>600,229=>600,230=>600,231=>600,232=>600,233=>600,234=>600,235=>600,236=>600,237=>600,238=>600,239=>600,240=>600,241=>600,242=>600,243=>600,244=>600,245=>600,246=>600,247=>600,248=>600,249=>600,250=>600,251=>600,252=>600,253=>600,254=>600,255=>600);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/courieri.php b/lib/tcpdf/fonts/courieri.php
new file mode 100644
index 0000000000..6a6dadd24c
--- /dev/null
+++ b/lib/tcpdf/fonts/courieri.php
@@ -0,0 +1,5 @@
+600,1=>600,2=>600,3=>600,4=>600,5=>600,6=>600,7=>600,8=>600,9=>600,10=>600,11=>600,12=>600,13=>600,14=>600,15=>600,16=>600,17=>600,18=>600,19=>600,20=>600,21=>600,22=>600,23=>600,24=>600,25=>600,26=>600,27=>600,28=>600,29=>600,30=>600,31=>600,32=>600,33=>600,34=>600,35=>600,36=>600,37=>600,38=>600,39=>600,40=>600,41=>600,42=>600,43=>600,44=>600,45=>600,46=>600,47=>600,48=>600,49=>600,50=>600,51=>600,52=>600,53=>600,54=>600,55=>600,56=>600,57=>600,58=>600,59=>600,60=>600,61=>600,62=>600,63=>600,64=>600,65=>600,66=>600,67=>600,68=>600,69=>600,70=>600,71=>600,72=>600,73=>600,74=>600,75=>600,76=>600,77=>600,78=>600,79=>600,80=>600,81=>600,82=>600,83=>600,84=>600,85=>600,86=>600,87=>600,88=>600,89=>600,90=>600,91=>600,92=>600,93=>600,94=>600,95=>600,96=>600,97=>600,98=>600,99=>600,100=>600,101=>600,102=>600,103=>600,104=>600,105=>600,106=>600,107=>600,108=>600,109=>600,110=>600,111=>600,112=>600,113=>600,114=>600,115=>600,116=>600,117=>600,118=>600,119=>600,120=>600,121=>600,122=>600,123=>600,124=>600,125=>600,126=>600,127=>600,128=>600,129=>600,130=>600,131=>600,132=>600,133=>600,134=>600,135=>600,136=>600,137=>600,138=>600,139=>600,140=>600,141=>600,142=>600,143=>600,144=>600,145=>600,146=>600,147=>600,148=>600,149=>600,150=>600,151=>600,152=>600,153=>600,154=>600,155=>600,156=>600,157=>600,158=>600,159=>600,160=>600,161=>600,162=>600,163=>600,164=>600,165=>600,166=>600,167=>600,168=>600,169=>600,170=>600,171=>600,172=>600,173=>600,174=>600,175=>600,176=>600,177=>600,178=>600,179=>600,180=>600,181=>600,182=>600,183=>600,184=>600,185=>600,186=>600,187=>600,188=>600,189=>600,190=>600,191=>600,192=>600,193=>600,194=>600,195=>600,196=>600,197=>600,198=>600,199=>600,200=>600,201=>600,202=>600,203=>600,204=>600,205=>600,206=>600,207=>600,208=>600,209=>600,210=>600,211=>600,212=>600,213=>600,214=>600,215=>600,216=>600,217=>600,218=>600,219=>600,220=>600,221=>600,222=>600,223=>600,224=>600,225=>600,226=>600,227=>600,228=>600,229=>600,230=>600,231=>600,232=>600,233=>600,234=>600,235=>600,236=>600,237=>600,238=>600,239=>600,240=>600,241=>600,242=>600,243=>600,244=>600,245=>600,246=>600,247=>600,248=>600,249=>600,250=>600,251=>600,252=>600,253=>600,254=>600,255=>600);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/AUTHORS b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/AUTHORS
new file mode 100644
index 0000000000..69b4728155
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/AUTHORS
@@ -0,0 +1,44 @@
+Adrian Schroeter
+Andrey Valentinovich Panov
+Ben Laenen
+Besarion Gugushvili
+Bhikkhu Pesala
+Clayborne Arevalo
+Dafydd Harries
+Danilo Segan
+Davide Viti
+David Jez
+David Lawrence Ramsey
+Denis Jacquerye
+Dwayne Bailey
+Eugeniy Meshcheryakov
+Gee Fung Sit
+Heikki Lindroos
+James Cloos
+James Crippen
+John Karp
+Keenan Pepper
+Lars Naesbye Christensen
+Mashrab Kuvatov
+Max Berger
+Mederic Boquien
+Michael Everson
+Misu Moldovan
+Nguyen Thai Ngoc Duy
+Nicolas Mailhot
+Ognyan Kulev
+Ondrej Koala Vacha
+Peter Cernak
+Remy Oudompheng
+Roozbeh Pournader
+Sahak Petrosyan
+Sander Vesik
+Stepan Roh
+Stephen Hartke
+Tavmjong Bah
+Tim May
+Valentin Stoykov
+Vasek Stodulka
+Wesley Transue
+
+$Id$
diff --git a/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/BUGS b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/BUGS
new file mode 100644
index 0000000000..43d1c94013
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/BUGS
@@ -0,0 +1,3 @@
+See http://dejavu.sourceforge.net/wiki/index.php/Bugs
+
+$Id$
diff --git a/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/LICENSE b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/LICENSE
new file mode 100644
index 0000000000..ac475a84b0
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/LICENSE
@@ -0,0 +1,99 @@
+Fonts are (c) Bitstream (see below). DejaVu changes are in public domain.
+Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below)
+
+Bitstream Vera Fonts Copyright
+------------------------------
+
+Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is
+a trademark of Bitstream, Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of the fonts accompanying this license ("Fonts") and associated
+documentation files (the "Font Software"), to reproduce and distribute the
+Font Software, including without limitation the rights to use, copy, merge,
+publish, distribute, and/or sell copies of the Font Software, and to permit
+persons to whom the Font Software is furnished to do so, subject to the
+following conditions:
+
+The above copyright and trademark notices and this permission notice shall
+be included in all copies of one or more of the Font Software typefaces.
+
+The Font Software may be modified, altered, or added to, and in particular
+the designs of glyphs or characters in the Fonts may be modified and
+additional glyphs or characters may be added to the Fonts, only if the fonts
+are renamed to names not containing either the words "Bitstream" or the word
+"Vera".
+
+This License becomes null and void to the extent applicable to Fonts or Font
+Software that has been modified and is distributed under the "Bitstream
+Vera" names.
+
+The Font Software may be sold as part of a larger software package but no
+copy of one or more of the Font Software typefaces may be sold by itself.
+
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
+TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME
+FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING
+ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE
+FONT SOFTWARE.
+
+Except as contained in this notice, the names of Gnome, the Gnome
+Foundation, and Bitstream Inc., shall not be used in advertising or
+otherwise to promote the sale, use or other dealings in this Font Software
+without prior written authorization from the Gnome Foundation or Bitstream
+Inc., respectively. For further information, contact: fonts at gnome dot
+org.
+
+Arev Fonts Copyright
+------------------------------
+
+Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the fonts accompanying this license ("Fonts") and
+associated documentation files (the "Font Software"), to reproduce
+and distribute the modifications to the Bitstream Vera Font Software,
+including without limitation the rights to use, copy, merge, publish,
+distribute, and/or sell copies of the Font Software, and to permit
+persons to whom the Font Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright and trademark notices and this permission notice
+shall be included in all copies of one or more of the Font Software
+typefaces.
+
+The Font Software may be modified, altered, or added to, and in
+particular the designs of glyphs or characters in the Fonts may be
+modified and additional glyphs or characters may be added to the
+Fonts, only if the fonts are renamed to names not containing either
+the words "Tavmjong Bah" or the word "Arev".
+
+This License becomes null and void to the extent applicable to Fonts
+or Font Software that has been modified and is distributed under the
+"Tavmjong Bah Arev" names.
+
+The Font Software may be sold as part of a larger software package but
+no copy of one or more of the Font Software typefaces may be sold by
+itself.
+
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
+TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
+
+Except as contained in this notice, the name of Tavmjong Bah shall not
+be used in advertising or otherwise to promote the sale, use or other
+dealings in this Font Software without prior written authorization
+from Tavmjong Bah. For further information, contact: tavmjong @ free
+. fr.
+
+$Id$
diff --git a/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/NEWS b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/NEWS
new file mode 100644
index 0000000000..5022bba1e1
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/NEWS
@@ -0,0 +1,1055 @@
+Changes from 2.24 to 2.25
+- moved/added U+2E18 (by Gee Fung Sit)
+- added empty glyph for U+2064 in Sans and Serif (by Gee Fung Sit)
+- added U+22CE-U+22CF to Sans (by Gee Fung Sit)
+- Sans Oblique and Bold Oblique, Serif: reverted digits hinting instructions back to before revision 1590, which fixed mistaken debian bug #471024. This fixes Debian bug #411308. The original bug was in freetype not in the fonts (by Denis Jacquerye)
+- added U+A726-U+A729, U+A730-U+A733, U+A738-U+A73F, U+A746-U+A74B, U+A74E-U+A74F, U+A780-U+A781, U+A7FB-U+A7FF to Sans (by Gee Fung Sit)
+- added Macedonian italic glyph shape for U+0453 in Serif (by Ben Laenen)
+- changed descenders in U+0446, U+0449, U+0497, U+04A3, U+04AD (by Andrey V. Panov)
+- updated main SFD files to SplineFontDB 3.0 (Denis Jacquerye and Gee Fung Sit)
+- moved U+0561 2 up since it wasn't aligned with the baseline well (by Ben Laenen)
+- added U+2E2E to Sans (by Gee Fung Sit)
+- replaced U+2699 with simpler version in Sans (by Gee Fung Sit)
+- added a lot of hinting instructions to Latin Extended B, Greek and Coptic glyphs Sans Book (by Wesley Transue)
+- differentiated U+2219 from U+22C5 and adjusted affected references in Sans and Mono (by Gee Fung Sit)
+- made Hebrew narrower in Sans Bold and Sans Bold Oblique (by Denis Jacquerye)
+- added Kurdish and Chuvash letters from Unicode 5.1 Cyrillic Extended block (by Wesley Transue)
+- added U+1E9F, U+A644-U+A647, U+A64C-U+A64D, U+A650-U+A651, U+A654-U+A655, U+A712U+A716 to Sans (by Gee Fung Sit)
+- added several glyphs to Sans ExtraLight (by Gee Fung Sit)
+- added hinting instructions to U+046A-U+046B, U+0508-U+0509, U+050B, U+0512-U+0513 in Sans Book (by Wesley Transue)
+- corrected width of U+027E in Sans Book (by Gee Fung Sit)
+- added U+2C79, U+2C7B-U+2C7D to Sans (by Gee Fung Sit)
+- added a bunch of glyphs+small corrections to Sans Light (by Gee Fung Sit)
+- added U+0496, U+0497, U+04B0, U+04B1 (by Andrey V. Panov)
+- updated U+0493, U+049B, U+04B3, U+04B7, U+04F7 (by Andrey V. Panov)
+- further improvements in extended Cyrillic (by Andrey V. Panov)
+
+Changes from 2.23 to 2.24
+- instructions for U+05C0 ×, U+05C3 ×, U+05F3 ׳, and U+05F4 ×´ in DejaVu
+ Sans. (by Wesley Transue)
+- instructions for U+2116 in Sans (by Andrey V. Panov)
+- Unicode 5.1 update: moved U+F208 to U+2C6D, U+F25F to U+2C71, added
+ U+2C6E-U+2C6F, U+2C72-U+2C73, updated outline of U+2C71 in Sans. (by
+ Denis Jacquerye)
+- updated and instructed U+0401 in Sans (by Andrey V. Panov)
+- fixed the bug in Sans faces where U+02EC ˬ faced the wrong direction.
+ Also, added a few more glyph instructions. (by Wesley Transue)
+- removed OS2Sub and OS2Strike that weren't intentional in Sans
+ ExtraLight. (by Denis Jacquerye)
+- updated instructions for U+401, U+44F in Serif Book. (by Andrey V.
+ Panov)
+- instructions for U+02C4 Ë, U+02C5 Ë
, U+03D8 Ï, U+03D9 Ï, U+0494 Ò, and
+ U+0495 Ò in Sans Book. (by Wesley Transue)
+- instructions for U+01A6 Ʀ, U+0238 ȸ, U+0239 ȹ, U+02EC ˬ, and U+05C6 ×
+ in Sans Book. (by Wesley Transue)
+- DejaVuSans.sfd DejaVuSerif.sfd: updated instructions for U+447 and
+ U+451 using code generated with xgridfit (by Andrey V. Panov)
+- instructions for a few glyphs in the Latin Extended-B Block, Greek
+ Block, Cyrillic Block, and N'Ko block. (by Wesley Transue)
+- updated sfdnormalize.pl, and SFD files to new SFD format with empty
+ lines. (by Denis Jacquerye)
+
+Changes from 2.22 to 2.23
+
+- fixed bug which made Condensed fonts appear instead of normal width ones
+- added U+20DB, U+20DC, and U+20E1 to Sans (by Roozbeh Pournader)
+- added hinting instructions to U+01A7, U+01AA-U+01AC, U+01AE-U+01AF,
+ U+01BC-U+01BD, U+01BF, U+01F7, U+0277, U+027F, U+0285-U+0286, U+0297, U+02AF,
+ U+02B4-U+02B5, U+02BD, U+030D, U+0311, U+0329, U+04A0-U+04A1 in Sans Book (by
+ Wesley Transue)
+- modified hinting instructions of U+04A2 in Sans Book (by Wesley Transue)
+- added hinting instructions to U+237D, U+2423 in Mono Book and Mono Bold (by
+ Wesley Transue)
+- added mathematical alphanumeric symbols to all styles (by Max Berger)
+- added Unicode 5.1 U+2E18 as U+2E18.u51 (not yet usable) to Sans (by Roozbeh
+ Pournader)
+- dereferenced all glyphs with mixed references and outlines (by Denis
+ Jacquerye)
+- removed non-zero width from U+0344 in Sans (by Denis Jacquerye)
+
+Changes from 2.21 to 2.22
+
+- directory structure has changed, we now use the Makefile
+- modified Armenian U+0565 in Sans (by ÕÕ¡Õ°Õ¡Õ¯ ÕÕ¥Õ¿ÖÕ¸Õ½ÕµÕ¡Õ¶)
+- added double struck letters and numbers U+2102, U+210D, U+2115,
+ U+2119-U+211A, U+211D, U+2124, U+213C-U+2140, U+2145-U+2149, U+1D538-U+1D539,
+ U+1D53B-U+1D53E, U+1D540-U+1D544, U+1D546, U+1D54A-U+1D550, U+1D552-U+1D56B,
+ U+1D7D8-U+1D7E1 to Serif (by Stephen Hartke)
+- added letterlike symbols U+2103, U+2109, U+2127, U+214B, U+2141-U+2144 to
+ Serif (by Ben Laenen)
+- fixed outline direction of U+2143 in Sans Bold/Bold Oblique (by Ben Laenen)
+- added arrow set in Serif: arrows: U+2194-U+21FF; dingbats: U+27A1;
+ supplemental arrows A: U+27F0-U+27FF; supplemental arrows B: U+2900-U+2975,
+ U+297A; miscellaneous symbols and arrows: U+2B00-U+2B11 (by Ben Laenen)
+- added U+0180, U+01DE, U+01E0-01E1, U+022A, U+022C, U+0230, U+1E08-U+1E09,
+ U+1E10-U+1E11, U+1EB0-U+1EB1 to Mono (by Denis Jacquerye)
+- adjusted U+01D5, U+01D7, U+01D9, U+1DB in Mono (by Denis Jacquerye)
+- added Ogham in Sans (by Wesley Transue)
+- added Yijing Hexagram Symbols in Sans (by Wesley Transue)
+- hinting instructions added to Cyrillic U+0460, U+04A6-U+04A7, U+04AC-U+04AD,
+ U+04C7-U+04C8, U+04F6-U+04F7, U+04FA-U+04FB, U+050C-U+050D in Sans Book (by
+ Wesley Transue)
+- adjusted Cyrillic letters U+042A, U+044A, U+044C, U+0459-U+045B, U+0462,
+ U+048C-U+048D in Serif (by Andrey V. Panov)
+- hinting instructions added to Lao U+0EB7 in Sans (by Wesley Transue)
+- added Roman numerals and Claudian letter U+2160-U+2184 in Serif (by Ben
+ Laenen)
+- added U+FFF9-U+FFFD to Sans, Serif and Mono (by Lars Næsbye Christensen)
+- added mathematical symbols to Serif: U+2200, U+2203-U+2204, U+2213-U+2214,
+ U+2217-U+2218, U+2223-U+2226, U+2250-U+2255, U+2295-U+22AF, U+22C5 (by Ben
+ Laenen)
+- modified bullet symbol U+2219 in Serif (by Ben Laenen)
+
+Changes from 2.20 to 2.21
+
+- added U+FE20-U+FE23 (half diacritics) to Sans (by Denis Jacquerye)
+- added anchor "half" to position right half of double marks, U+FE21 or U+FE23
+ to Sans (by Denis Jacquerye)
+- shifted U+0360 up to avoid collision with some outlines in Sans (by Denis
+ Jacquerye)
+- added anchor above-mark anchor to U+035D, U+035E, U+0360, U+0361 in Sans (by
+ Denis Jacquerye)
+- added instructions for ff, ffi, ffl ligatures in Serif Bold (by Eugeniy
+ Meshcheryakov)
+- added instructions to some N'Ko glyphs (by Wesley Transue)
+- added instructions to some Lao glyphs (by Wesley Transue)
+- cleaning up 'liga' Standard Ligature in Latin, in Sans and Sans Mono (by
+ Denis Jacquerye)
+- added U+046A, U+046B (big yus) in Serif (by Andrey V. Panov)
+- added box drawing symbols to Sans and Serif (by Lars Næsbye Christensen)
+- added Makefile to improve font and packages generating (by Nicolas Mailhot)
+
+Changes from 2.19 to 2.20
+
+- removed TeX and TeXData tags from all sfd files (by Eugeniy Meshcheryakov)
+- removed all 'frac' lookups (by Eugeniy Meshcheryakov)
+- fixed duplicate glyph names (by Eugeniy Meshcheryakov)
+- removed standard ligatures with U+00B7 in Mono (by Eugeniy Meshcheryakov)
+- use reference to U+002D in U+00AD in Sans Oblique, and adjust instructions
+ (by Eugeniy Meshcheryakov)
+- updated Cyrillic in Sans Extra Light (by Andrey V. Panov)
+- added instructions to N'Ko U+07C1-U+07C6, U+07CA, U+07CE-U+07CF, U+07D1,
+ U+07D3-U+07D4, U+07D8, U+07DB and U+07EB in Sans (by Wesley Transue)
+- added instructions to Lao U+0E8A, U+0E95, U+0E97, U+EA5, U+0EB4 and U+0EB5
+ (by Wesley Transue)
+- adjusted instructions for Hebrew glyphs (by Denis Jacquerye)
+- added instructions for U+0265 in Sans Bold (by Denis Jacquerye)
+- fix U+1D68 in Sans: it had the shape of delta, where it should be a rho (by
+ Ben Laenen)
+- remove U+1D5C glyph in Sans Oblique (it was empty) (by Ben Laenen)
+- fix instructions of U+01AD in Sans Bold (by Ben Laenen)
+- fix instructions of U+042D in Serif (by Ben Laenen)
+- remove buggy instructions of U+2328 in Serif (by Ben Laenen)
+- corrected width of U+2C75-U+2C76 in Sans Bold and Serif Bold (by Gee Fung Sit)
+- added U+2C75-U+2C77 to Mono (by Gee Fung Sit)
+
+Changes from 2.18 to 2.19
+
+- fixed misplaced symbols (U+2325,2326) in Sans Oblique (by John Karp)
+- added Mark to Base anchors: 'cedilla' for combining cedilla and
+ 'above-legacy' for stacking above precomposed glyphs (just a,e,i,o,u with
+ macron for now) in Sans (by Denis Jacquerye).
+- added contextual substitution for Case and Dotless forms in all Sans variants
+ (by Denis Jacquerye).
+- renamed 'ccmp' lookups for RTL and Basic (LGC, etc.) (by Denis Jacquerye)
+- added anchor 'cedilla' for vowels in Sans. (by Denis Jacquerye)
+- extended contextual dotless and case substitutions to handle both below and
+ above diacritics (by Denis Jacquerye)
+- renamed Dotless and Case Form GSUB lookups in Sans with meaningful names (by
+ Denis Jacquerye)
+
+Changes from 2.17 to 2.18
+
+- Re-encoded the source files for Full Unicode (by Ben Laenen)
+- Re-enabled the "ff", "fl", "fi", "ffl", "ffi" ligatures by default in Serif
+ (by Ben Laenen)
+- Disabled the "fi", "ffi" ligatures for languages with dotless i in Serif (by
+ Ben Laenen)
+- added Tifinagh to Sans Book and Bold, U+2D30-U+2D65, U+2D6F, partially hinted
+ in Sans Book. (by Denis Jacquerye)
+- added Tai Xuan Jing Symbols (U+1D300-1D356) to Sans (by Remy Oudompheng)
+- added double-struck letters (U+1D538-U+1D56B minus reserved code points) to
+ Sans (by Gee Fung Sit)
+- added U+22EE-U+22F1 to Sans (by Gee Fung Sit)
+- added U+2C67-U+2C6C, U+2C75-U+2C77 to Serif (by Gee Fung Sit)
+- italicized various glyphs in Latin Extended-B, IPA Extensions, Spacing
+ Modifier Letters, Phonetic Extension (Supplement) and Super- and Subscripts
+ in Serif Oblique fonts (by Gee Fung Sit)
+- modified outlines, bearings of Hebrew U+05D6, U+05D8, U+05DB, U+05DE, U+05E0,
+ U+05E1, U+05E2, U+05EA in Sans Book and Oblique, adjusted hinting in Book
+ based on Yotam Benshalom's comments. (by Denis Jacquerye)
+- added Braille Patterns (U+2800-U+28FF) to Serif fonts (by Gee Fung Sit)
+- added N'Ko to Sans Book and Bold: U+07C0-U+07E7, U+07EB-U+07F5, U+07F8-U+07FA
+ (by Eugeniy Meshcheryakov)
+- added U+0ED8 (Lao digit 8) to Sans (by Remy Oudompheng)
+- added Lao diacritics U+0EB0-0EB9, U+0EBB-0EBC, U+0EC8-0ECD to Mono (by Remy
+ Oudompheng)
+- renamed Serif [Bold] Oblique, make it Italic (by Eugeniy Meshcheryakov)
+- added U+29FA-U+29FB to Sans and Sans Mono (by Gee Fung Sit)
+- swapped glyphs for Eng U+014A from Sami Eng to African Eng, the latter being
+ more common (by Denis Jacquerye)
+- swapped ae U+00E6 and ae.alt in Serif Italics fonts, thus fixing #8213 (by
+ Denis Jacquerye)
+- minor improvements to Misc. Symbols in Sans (by Gee Fung Sit)
+- minor improvements and additions to Sans ExtraLight (by Gee Fung Sit)
+- improved instructions for various Cyrillic letters (by Eugeniy Meshcheryakov)
+- fixed hinting of theta and chi in Sans Book (by Ben Laenen)
+- added Georgian Mkhedruli to Sans, Serif and Mono, ASumtavruli to Sans and
+ Serif (by Besarion Gugushvili)
+
+Changes from 2.16 to 2.17
+
+- Sans fonts: fix position for certain combinations of Arabic fatha, kasra,
+ shadda, damma, kasratan, dammatan, fathatan and hamza (by Ben Laenen)
+- added 'ae.alt' to Serif Oblique fonts, with design matching shape of italic
+ 'a' instead of slanted 'a', see bug #8213 (by Denis Jacquerye)
+- added super- and subscripts to Serif and Mono: U+1D2C-U+1D2E, U+1D30-U+1D3C,
+ U+1D3E-U+1D42, U+1D62-U+1D65, U+1D78, U+2071, U+207A-U+207E, U+208A-U+208E,
+ U+2090-U+2094 (by Gee Fung Sit)
+
+Changes from 2.15 to 2.16
+
+- fixed hinting instructions for digits in DejaVu Sans Oblique, Bold Oblique,
+ and Serif Book to not change glyph width (by Eugeniy Meshcheryakov)
+- added instructions for U+0404, U+0411, U+0413, U+0414, U+0417-U+041B, U+041F,
+ U+0423, U+0424, U+0426-U+0429, U+042C, U+042E, U+042F, U+0490 in Serif Bold
+ (by Eugeniy Meshcheryakov)
+- added U+0220 and Eng.alt to Serif fonts (by Denis Jacquerye)
+- added U+232C, U+2394, U+23E3 to Sans fonts (by John Karp)
+- added U+230C-U+230F, U+231C-U+231F to Sans fonts, fixing bug:9547
+ (by John Karp)
+- adjusted dot below, dot above, dieresis above, dieresis below in Sans fonts
+ (by Denis Jacquerye)
+- added U+2300, U+2301, U+2303, U+2304, U+2305, U+2307, U+2326, U+2327, U+232B,
+ arrow.base to Sans fonts (by John Karp)
+- adjusted dot and dieresis below and above in Serif fonts (by Denis Jacquerye)
+- added U+1E1C-U+1E1D to Serif fonts (by Denis Jacquerye)
+- added U+22BE, U+22BF (by Wesley Transue)
+- added U+2324; modified U+2325: more standard proportions, and matches U+2324
+ and U+2387; added U+2387 : flipped U+2325 with standard arrowhead
+ (by John Karp)
+- added Lao digits U+0ED0-0ED7, U+0ED9 (by Remy Oudompheng)
+- added to Mono in Arabic block : U+060C, U+0615, U+061B, U+061F,
+ U+0621-U+063A, U+0640-0655, U+065A, U+0660-066F, U+0674, U+0679-0687, U+0691,
+ U+0692, U+0698, U+06A1, U+06A4, U+06A9, U+06AF, U+06B5, U+06BA, U+06BE,
+ U+06C6, U+06CC, U+06CE, U+06D5, U+06F0-06F9 (by Remy Oudompheng)
+- added to Mono in Arabic Presentations Forms-A : U+FB52-FB81, U+FB8A-FB95,
+ U+FB9E, U+FB9F, U+FBAA-FBAD, U+FBE8, U+FBE9, U+FBFC-FBFF (by Remy Oudompheng)
+- added to Mono in Arabic Presentations Forms-B : U+FE70-FE74, U+FE76-FEFC,
+ U+FEFF (by Remy Oudompheng)
+- added U+05BA, U+05BE, U+05F3, U+05F4, U+FB1E, U+FB21-U+FB28, U+FB4F to Sans
+ (by Eugeniy Meshcheryakov)
+- added U+2102 to Mono (by Eugeniy Meshcheryakov)
+- added U+2983-U+2984 to Sans (by Gee Fung Sit)
+- added U+2A2F to Sans, Serif and Mono (by Gee Fung Sit)
+- added U+2373-2375, U+237A to Sans (by John Karp)
+- converted kern pairs to kern classes with Tavmjong Bah's scripts
+ (by Denis Jacquerye)
+- set ScriptLang of kerning classes to just latn because of Pango bug
+ (by Denis Jacquerye)
+- added DNK to ScriptLang latn otherwise it is excluded, and SRB and MDK to
+ cyrl (by Denis Jacquerye)
+- removed flag 0x80 in generate.pe, otherwise it generates kerning tables some
+ systems don't like; thus loosing Apple tables (by Denis Jacquerye)
+- removed ligature for precomposed legacy characters of Sans Oblique fonts
+ (by Denis Jacquerye)
+- added bearings to en dash U+2013, em dash U+2014 and figure dash U+2012
+ by making dashes shorter, preserving character width (by Denis Jacquerye)
+- reduced U+031C, U+0325 (ring below), U+0339 to be entirely visible;
+ added instructions in Sans Book; changed U+1e00-U+1e01 to use new ring below
+ (by Denis Jacquerye)
+- adjusted circumflex below on U+1E12-U+1E13, U+1E18-U+1E19, U+1E3C-U+1E3D,
+ U+1E4A-U+1E4B, U+1E70-U+1E71, U+1E76-U+1E77 in Sans fonts (by Denis Jacquerye)
+- Added U+0ED4, U+0ED5 to DejaVu Sans (by Remy Oudompheng)
+- Lao-specific anchors (by Remy Oudompheng)
+- added alternate I to match the small capital in Sans (by Gee Fung Sit)
+
+Changes from 2.14 to 2.15
+
+- improved hinting in Sans Oblique to deal with some spacing and inconsistency
+ issues (by Ben Laenen)
+- added anchors to Mono Book, and added GPOS rules for combining diacritics to
+ show up as zero width glyphs (by Ben Laenen)
+- removed U+F21C (PUA), it was copy of U+2C64 from Latin Extended C (by Eugeniy
+ Meshcheryakov)
+- added U+27E6-U+27E7 to Sans (by Gee Fung Sit)
+- added U+1407, U+1409, U+140C-U+141B, U+141D-U+1425, U+1427-U+142E,
+ U+1435-U+1438, U+143A-U+1449, U+1452, U+1454, U+1457-U+1465, U+1467-U+146A,
+ U+1471, U+1474-U+1482, U+1484-U+1488, U+148F, U+1492, U+14A0, U+14A2, U+14A9,
+ U+14AC-U+14BA, U+14BC, U+14BD, U+14C6, U+14C9-U+14CF, U+14D1, U+14D2, U+14D9,
+ U+14DC-U+14E9, U+14EC, U+14F3, U+14F6-U+1504, U+1506, U+1507, U+1510-U+1525,
+ U+152C, U+152F-U+153D, U+1540, U+1541, U+154E, U+154F, U+1552, U+155B, U+155C,
+ U+1568, U+1569, U+1574-U+157B, U+157D, U+15A7-U+15AE, U+1646, U+1647 (by
+ Eugeniy Meshcheryakov)
+- fixed several contours to not intersect, use horizontal or vertical tangents,
+ use integer coordinates, etc in Sans Book (by Denis Jacquerye)
+- added U+0496-U+0497 in Serif (by Andrey V. Panov)
+
+Changes from 2.13 to 2.14
+
+- added Philippine peso glyph U+20B1 (by Clayborne Arevalo)
+- made U+2012 have the same width as digits, according to Unicode 5.0,
+ page 206 (by Roozbeh Pournader)
+- made all of the "above" combining characters remove the dot of "i",
+ "j", etc (Soft_Dotted characters), according to Unicode 5.0,
+ page 228 (by Roozbeh Pournader)
+- made U+012F, U+03F3, U+0456, U+0458, U+1E2D, and U+1ECB (all fonts
+ except Mono), U+0249, U+2148, and U+2149 (Sans and Sans Condensed),
+ U+0268 (Sans ExtraLight, Serif and Serif Condensed), and U+029D (Serif
+ and Serif Condensed) respect the Soft_Dotted property (by Roozbeh
+ Pournader)
+- added U+223E, U+223F, U+2240, U+22C2, U+22C3 to Sans (by Remy Oudompheng)
+- added U+203D to Serif (by Gee Fung Sit)
+- added zero-width glyphs for U+2061-U+2063 to Sans and Serif (by Gee
+ Fung Sit)
+- changed isolated forms of Arabic waw (U+0648, U+0624 and U+06C6) (bug #9432)
+ (by Ben Laenen)
+- added Lao consonants U+0E81, U+0E82, U+0E84, U+0E87, U+0E88, U+0E8A,
+ U+0E8D, U+0E94-0E97, U+0E99-0E9F, U+0EA1-0EA3, U+0EA5, U+0EA7, U+0EAA,
+ U+0EAB, U+0EAD-0EAF to Sans Mono (by Remy Oudompheng)
+- added U+0200-U+0217, U+0226-U+0229, U+02F3, U+1E00-U+1E07,
+ U+1E0A-U+1E0B, U+1E18-U+1E1F, U+1E22-U+1E23, U+1E28-U+1E2D,
+ U+1E3A-U+1E3B, U+1E40, U+1E48-U+1E49, U+1E56, U+1E58-U+1E59,
+ U+1E5E-U+1E5F, U+1E60, U+1E68-U+1E6B, U+1E6E-U+1E6F, U+1E72-U+1E77,
+ U+1E86-U+1E8B, U+1E92-U+1E96, U+1EA0-U+1EA1, U+1EF4-U+1EF5 to Mono
+ (by Ben Laenen)
+- renamed uppercase variants of diacritics (macron, breve, double grave,
+ double acute, inverted breve, dot above) to "uni03XX.case" in Mono
+ (by Ben Laenen)
+- moved uppercase variants of diacritics up in Mono so they properly
+ vertically align on capitals (by Ben Laenen)
+- precomposed glyphs with macron, breve, double grave, double acute,
+ inverted breve, dot above, macron below, breve below, inverted breve
+ below, dot below, cedilla, caron below, circumflex below, diaeresis
+ below, tilde below now reference to combining diacritics instead of
+ space modifiers in Mono (by Ben Laenen)
+- made ring below (U+0325), and half rings below (U+031C and U+0339)
+ smaller in Mono (by Ben Laenen)
+- added U+205F to all fonts (by Roozbeh Pournader)
+- added U+035E-U+035F to Sans (by Roozbeh Pournader)
+- added empty glyphs for U+034F, U+202A-U+202E, U+2060, U+206A-206F,
+ U+FE00-U+FE0F to non-Mono fonts (by Roozbeh Pournader)
+- added U+2101, U+2107-U+2108, U+210B, U+210C, U+2110, U+2112, U+211B,
+ U+211F, U+2123, U+2125, U+2128-U+2129, U+212C-U+212D, U+212F,
+ U+2130-U+2131, U+2133, U+2136-U+213A, U+2141-U+2144, U+2B00-U+2B11,
+ U+2B20-U+2B23 to Sans (by John Karp)
+- reshaped omega (U+03C9) in Mono (by Ben Laenen)
+- added U+2205, U+22C6, U+2300-U+2301, U+2303-U+2306, U+230C-U+230F,
+ U+2312-U+2315, U+231C-U+231F, U+2335, U+2337-U+233E, U+2341-U+2344,
+ U+2347-U+2348, U+234B-U+234D, U+2349-U+2350, U+2352-U+2354,
+ U+2357-U+2359, U+235A-U+235C, U+235E-U+2360, U+2363-U+2365,
+ U+2368-U+2369, U+236B-U+2370, U+2373-U+237A, U+2380-U+2383,
+ U+2388-U+238B, U+2395 in Mono (by Ben Laenen)
+
+Changes from 2.12 to 2.13
+
+- adjusted U+0198B, U+01B3-U+01B4 in Sans, hinted U+01B4 in Sans Book
+ (by Denis Jacquerye)
+- added U+27F0-U+27FF, U+2906-U+2907, U+290A-U+290B, U+2940-U+2941 to Sans
+ (by Denis Jacquerye)
+- added U+01E6-U+01E9, U+01EE-U+01EF, U+01F4-U+01F5, U+01FC-U+01FF,
+ U+021E-U+021F, U+0245, U+02BD, U+02C9, U+1E9B, U+2045-U+2046, U+2213, U+22C5,
+ U+22EF to Sans Mono (by Roozbeh Pournader)
+- added U+04FA-U+04FD to Sans (by Michael Everson)
+- removed U+2329 and U+232A because of their CJK properties, added U+27E8
+ and U+27E9 in their stead, fixing part of bug #9038 (by Roozbeh Pournader)
+- corrected and improvised U+0466-U+0469, U+046E-U+0471, U+047C-U+047D, U+0482,
+ U+0484-U+0486, U+0492-U+0493, U+04B0-U+04B1, U+050C-U+050D, and U+204A
+ in Sans (by Michael Everson)
+- added instructions for U+0402, U+0409, U+040A, U+040B, U+044D, U+040F,
+ U+0452, U+0459-U+045B, U+045F to Sans Book (by Eugeniy Meshcheryakov)
+- made italic shape for U+431, U+432, U+437, U+43B, U+43C, U+43D, U+444, U+447,
+ U+44D, U+44F, U+459, U+45A in SerifOblique and SerifBoldOblique
+ (by Andrey V. Panov)
+- modified U+024C to match glyph in Unicode chart, fixing bug #9039
+ (by Denis Jacquerye)
+- made some canonically equivalent characters share the same glyph:
+ U+02B9 = U+0374, U+0343 = U+0313, and U+0387 = U+00B7 also adjusting U+02BA
+ to look like double U+02B9, fixing parts of bug #9038 (by Roozbeh Pournader)
+- changed shapes for U+0478 and U+0479 in Sans to those in the Unicode charts,
+ based on a recent decision by Unicode Technical Committee to only use
+ the digraph form (by Michael Everson)
+- adjusted width of NBSP U+00A0 and NNBSP U+202F, fixing bug #8401
+ (by Denis Jacquerye)
+- fixed several contours to not intersect, use horizontal or vertical tangents,
+ use integer coordinates, etc (by Roozbeh Pournader and Denis Jacquerye)
+- added U+1402, U+1430, U+144D, U+146C, U+148A, U+14A4, U+14C1, U+14D4, U+14EE,
+ U+1527, U+1545, U+157E, U+158E, U+15AF to Sans (by Eugeniy Meshcheryakov)
+- enlarged width of U+459 and U+45A in Serif (by Andrey V. Panov)
+- made traditional shape for U+452, U+45B (by Andrey V. Panov)
+- added euro sign U+20AC to Sans ExtraLight, making fontconfig recognize
+ the font as supporting English (by Denis Jacquerye)
+
+Changes from 2.11 to 2.12
+
+- added U+0180 to Serif (by Denis Jacquerye)
+- improved and/or hinted Armenian letters U+0542, U+0546, U+0562,
+ U+0563, U+0564, U+0577, U+0582 in Sans (by Ben Laenen)
+- added U+4FE-U+4FF, U+512-U+513, U+2114, U+214E, U+26B2 to Sans
+ (by Gee Fung Sit)
+- adjusted U+0496-U+0497, U+049A-U+04A1 in Sans to match U+0416,
+ U+041A, U+0436 and U+043A (by Gee Fung Sit)
+- Mathematical Operators in Sans: changed U+22C0-U+22C1 to match
+ other n-ary operators, adjusted U+2203-U+2204, changed U+2220 in
+ Sans to match the style of U+2221 (by Gee Fung Sit)
+- added U+1401, U+1403-U+1406, U+140A, U+140B, U+1426, U+142F,
+ U+1431-U+1434, U+1438, U+1439, U+1449, U+144A, U+144C,
+ U+144E-U+1451, U+1455, U+1456, U+1466, U+146B, U+146D-U+1470,
+ U+1472, U+1473, U+1483, U+1489, U+148B-U+148E, U+1490, U+1491,
+ U+14A1, U+14A3, U+14A5-U+14A8, U+14AA, U+14AB, U+14BB, U+14C0,
+ U+14C2-U+14C5, U+14C7, U+14C8, U+14D0, U+14D3, U+14D5-U+14D8,
+ U+14DA, U+14DB, U+14EA, U+14ED, U+14EF-U+14F2, U+14F4, U+14F5,
+ U+1405, U+1526, U+1528-U+152B, U+152D, U+152E, U+153E,
+ U+1542-U+1544, U+1546-U+154D, U+1550, U+1553, U+1555-U+155A,
+ U+1567, U+156A, U+157C, U+157F-U+1585, U+158A-U+158D,
+ U+158F-U+1596, U+15A0-U+15A6, U+15DE, U+15E1, U+166E-U+1676 to
+ Sans (by Eugeniy Meshcheryakov)
+- re-enabled Latin ligatures fi, ffi, fl, ffl and ff in Sans
+ (by Ben Laenen)
+- made italic shape for U+436, U+44A, U+44B, U+44C, U+44E, U+45F,
+ U+463 in SerifOblique and SerifBoldOblique (by Andrey V. Panov)
+- fixed sub- and superscript metrics in Condensed Sans (bug #8848)
+ (by Ben Laenen)
+- added U+474, U+475 in Serif (by Andrey V. Panov)
+- hinted Greek glyphs U+03B7, U+30B8, U+03B9, U+03C1, U+03C3,
+ U+03C6 in Mono Book (by Ben Laenen)
+
+Changes from 2.10 to 2.11
+
+- added instructions for Hebrew glyphs (Sans Book, by Eugeniy
+ Meshcheryakov)
+- changed U+01A6 (Latin Yr) after bug #8212, in Sans, Serif and
+ Sans Mono fonts (by Denis Jacquerye).
+- removed instruction for U+2600-U+26A1 (by Mederic Boquien)
+- added U+202F and set width of U+00A0 (nobreakingspace) to the
+ same as U+0020, space (by Denis Jacquerye).
+- added and improved instructions for various Cyrillic letters
+ (by Eugeniy Meshcheryakov)
+- Changed U+416, U+42F, U+427 (non-Bold), U+436, U+447 (non-Bold),
+ U+44F, U+437 (Bold), corrected U+40F, U+414, U+424, U+426, U+429,
+ U+434, U+438 (Bold), U+446, U+449, U+44D (non-Bold), U+45F in
+ Sans Mono (by Andrey V. Panov)
+- made small corrections to Cyrillic, most appreciable to U+409,
+ U+413, U+41B, U+427 and U+433, U+434, U+43B, U+447, U+459
+ (upright fonts) to Serif (by Andrey V. Panov)
+- adjusted bearings of U+410, U+416, U+41A, U+42F, U+436, U+43A,
+ U+443, U+44F in Serif (by Andrey V. Panov)
+- enlarged width of U+44A, U+44B, U+44C, U+463 in Serif
+ (by Andrey V. Panov)
+- added ligature "iacute" as "afii10103" (U+456) "acutecomb" in
+ Serif (by Andrey V. Panov)
+- made italic shape to U+446, U+448, U+449 in Serif (by Andrey V.
+ Panov)
+- added "afii10831" (U+F6C7), "afii10832" (U+F6C8) in Serif (by
+ Andrey V. Panov)
+- new minimum version of fontforge is 20061014 (by Ben Laenen)
+
+Changes from 2.9 to 2.10:
+
+- added U+0242, U+024A-U+024B, U+024E-U+024F, U+037C-U+037D, U+0E3F,
+ U+1D2C-U+1D2E, U+1D30-U+1D42, U+1D5D-U+1D6A, U+1D78, U+1DB8,
+ U+2090-U+2094, U+20D0-U+20D1, U+2C60-U+2C66, U+2C6B-U+2C6C, U+2C74 and
+ U+FB29 to Sans (by Gee Fung Sit)
+- added Lao glyphs : U+0E81-0E82, U+E084, U+0E87-0E88, U+0E8A, U+0E8D,
+ U+0E94-0E97, U+0E99-0E9F, U+0EA1-0EA3, U+0EA5, U+0EA7, U+0EAA-0EAB,
+ U+0EAD-0EB9, U+0EBB-0EBD, U+0EC0-0EC4, U+0EC6, U+0EC8-0ECD, U+0EDC-0EDD
+ (by Remy Oudompheng)
+- fixed U+0193 not showing in Windows (bug #7897) (by Ben Laenen)
+- changes to U+222B-222D in Sans Mono (by Remy Oudompheng)
+- ported the three remaining currency symbols from Arev (U+20B0,
+ U+20B2-U+20B3), and replaced one (U+20AF) in Sans (by Lars Naesbye
+ Christensen)
+- corrected U+20A5 in Sans (by Gee Fung Sit)
+- merged Double-Struck Letters from Arev: U+2102, U+210D, U+2115,
+ U+2119-U+211A, U+2124, U+213C-U+2140 (by Gee Fung Sit)
+- added U+2308-U+230B and U+2329-U+232A to Sans Mono and Serif faces,
+ fixed incorrect direction of U+2329 in Sans faces, and improved
+ U+2308-U+230B in Sans faces per Ben Laenen's suggestions (by David
+ Lawrence Ramsey)
+- added U+06D5 and final form of it (needed for Kurdish) (by Ben Laenen)
+- added two special glyphs U+F000 and U+F001 in Sans Book that show the
+ current ppem size (horizontal and vertical) (by Ben Laenen)
+- added U+2318 and U+2325 to Sans Mono faces, based on the Sans versions
+ (by David Lawrence Ramsey)
+- added U+2B14-U+2B1A to all faces except Sans ExtraLight (by David
+ Lawrence Ramsey)
+- respaced all Geometric Shapes characters in Serif faces to match those
+ in Sans faces again, respaced U+23CF in Sans, Sans ExtraLight, and
+ Serif faces to match U+25A0 (or Sans in Sans ExtraLight's case) again,
+ and respaced U+2B12-U+2B13 in Sans and Serif faces to match U+25A1
+ again (by David Lawrence Ramsey)
+- corrected width of Modifier Small Letters U+1D43-1D5B in Sans Oblique
+ and U+1D9B-U+1DBF in Sans Oblique and Sans Bold Oblique (by Gee Fung Sit)
+- added a bunch of glyphs to Sans ExtraLight (see SVN for details) (by
+ Gee Fung Sit)
+- adjusted Cyrillic descenders in Sans ExtraLight to sync with Sans (by
+ Gee Fung Sit)
+- added U+0242, U+0245 to Serif (by Gee Fung Sit)
+- replaced the SHPIX routines which gave them bad spacing at certain
+ sizes in FreeType for A, V, Z, v and z in Sans Bold (by Ben Laenen)
+
+Changes from 2.8 to 2.9:
+
+- DejaVuSansExtraLight.sfd: changed family name from "DejaVu Sans" to
+ "DejaVu Sans Light" (in case we add a Light weight variant), so legacy
+ apps that understand only 4 styles are happy. (by Denis Jacquerye)
+- added Name ID 16, aka preferred family name, and Name ID 17, aka
+ preferred style name, so contemporary apps that understand more that 4
+ styles can use big fonts families "DejaVu Sans" and "DejaVu Serif". For
+ those, Extralight and Condensed are just styles not different families.
+ (by Denis Jacquerye)
+- added U+22B6-22BD, U+22C0-22C1, U+22D6-22D7 to Sans. (by Remy Oudompheng)
+- added U+037B, U+2184, U+2C67-U+2C6A and U+2C75-U+2C77 to Sans (by Gee
+ Fung Sit)
+- adjusted asteriskmath (U+2217) for consistency with other mathematical
+ operators in Sans (by Ben Laenen)
+- hinted some Armenian capitals in Sans Book (by Ben Laenen)
+- added U+0246 - U+0249 (by Ben Laenen)
+- BUGFIX : swapped U+224E and U+224F, in Sans, Sans Condensed and Sans Mono
+ (by Remy Oudompheng)
+- adjusted U+20B5 (by Mederic Boquien)
+- swapped U+21DA and U+21DB which were in wrong order (by Heikki Lindroos)
+- added U+222E-2233, U+239B-23AD, U+2A00-2A02, U+2A0F-2A1C to Sans (by Remy
+ Oudompheng)
+- added U+239B-23AD to Mono (by Remy Oudompheng)
+- added U+2024-2025 to Serif (by Mederic Boquien)
+- added U+222C-222D, U+2A0C-2A0E to Serif (by Remy Oudompheng)
+- added U+2190-21FF to Mono (by Heikki Lindroos)
+- added Hebrew glyphs - U+05B0-U+05BD, U+05BF-U+05C3, U+05C6, U+05C7,
+ U+05D0-U+05EA, U+05F0-U+05F2, U+FB1F, U+FB20, U+FB2A-U+FB36,
+ U+FB38-U+FB3C, U+FB3E, U+FB40, U+FB41, U+FB43, U+FB44, U+FB46-U+FB4E (by
+ Gee Fung Sit and Eugeniy Meshcheryakov)
+- adjustments for Cyrillic in Sans (by Andrey V. Panov)
+- made italic shape for U+0434, U+0456, U+0457 in SerifOblique and Serif
+ Bold Oblique (by Andrey V. Panov)
+
+Changes from 2.7 to 2.8:
+
+- fixed instructions for U+0423, U+0427, U+0447, U+0448 in Serif, so they
+ look good at large sizes too (by Eugeniy Meshcheryakov)
+- added U+FB00 and U+FB03 to U+FB06 to Serif typefaces (by Heikki Lindroos)
+- added U+26B0-U+26B1, U+2701-U+2704, U+2706-U+2709, U+270C-U+2727, U+2729
+ to U+274B, U+274D, U+274F to U+2752, U+2756, U+2758-U+275E, U+2761 to
+ U+2775 (by Heikki Lindroos)
+- added and improved instructions for Cyrillic letters in Mono and Serif
+ (Book, by Eugeniy Meshcheryakov)
+- rotated U+26B0 (was too small in mono) (by Gee Fung Sit)
+- adjusted U+1EDA-U+1EDD, U+1EE8-U+1EEB, capitals using capital specific
+ accent and moved diacritics to match position on U+00F2 (ograve), etc.
+ (by Denis Jacquerye)
+- added U+20D6, U+20D7 to Sans (by Gee Fung Sit)
+- made Armenian ligatures discretionary since the Firefox ligature problem
+ still isn't fixed (by Ben Laenen)
+- moved Armenian hyphen U+058A to a higher position (bug #7436) (by Ben
+ Laenen)
+- hinted Greek glyphs in Sans Bold (by Ben Laenen)
+- enabled Arabic lam-alif ligatures when diacritics are used (by Ben Laenen)
+
+Changes from 2.6 to 2.7:
+
+- added glyphs needed for Kurdish: U+0695, U+06B5, U+06C6, U+06CE and their
+ init/medi/fina forms in Sans (by Ben Laenen)
+- added U+02CD, U+01F8 - U+01F9, U+1E3E - U+1E3F, U+1E30 - U+1E35, U+1EBC -
+ U+1EBD, U+1EF8 - U+1EF9 (includes glyphs needed for Yoruba, Maori, Guarani
+ and Twi) (by Ben Laenen)
+- added U+22C8-22CC, U+29CE-29D5, U+2A7D-2AA0, U+2AAE-2ABA, U+2AF9-2AFA to
+ Sans (by Remy Oudompheng)
+- adjusted diacritics on Vietnamese, Pinyin and other characters:
+ U+01A0-U+01A1, U+01AF-U+01B0, U+01D5-U+01DC, U+01DE-01E1, U+01FA-U+01FB
+ U+022A-U+022D, U+0230-U+0231, U+1E14-U+1E17, U+1E4C-U+1E53, U+1E78-U+1E7B,
+ U+1EA4-U+1EF1 in Sans (Book, Bold and Oblique) (by Denis Jacquerye)
+- added basic arrows U+2190-U+2193 in Serif, which completes MES-1 compliance
+ for Serif (by Ben Laenen)
+- added U+01E4, U+01E5, U+01FA, U+01FB, U+02BD, U+02C9 and U+02EE to Serif
+ (by Ben Laenen)
+- fixed U+0209 in Serif Bold Oblique (by Ben Laenen)
+- adjusted Box Drawing block characters U+2500-257F in Mono to fit character
+ cell, shifting them up by 416 (Denis Jacquerye)
+- redid U+0194 in Sans (by Ben Laenen)
+- added U+2217-2218, U+2295-22A1 to Mono (by Remy Oudompheng)
+- added U+0462 to Serif (by Andrey V. Panov)
+- added U+226C, U+228C-228E, U+2293-2294, U+22F2-22FF to Sans (by Remy
+ Oudompheng)
+- adjusted U+2208-220D in Sans (by Remy Oudompheng)
+- improved some Cyrillic glyphs in Mono (by Andrey V. Panov), rewritten
+ instructions for changed glyphs (by Eugeniy Meshcheryakov)
+- added U+1E0E-1E0F, U+1E8E-1E8F to Mono fonts (by Denis Jacquerye). (bug
+ #7166)
+- renamed 'Dotabove' to 'Dotaccent' in Mono Sans Oblique to match other fonts
+ (by Denis Jacquerye).
+- added U+200B-U+200F in Sans faces and Serif faces, U+200B and U+200C were
+ in Sans already (by Lars Naesbye Christensen)
+- added U+2601-U+262F, U+263D, U+263E, U+2648-U+265F, U+2668, U+2670-U+268B,
+ U+2690-U+269C, U+26A0, U+26A1, U+2794, U+2798-U+27AF, U+27B1-U+27BE to Mono
+ (by Heikki Lindroos)
+- replaced the references with unshifted ones for both κ U+03BA and к U+043A
+ in Mono Book (by Denis Jacquerye)
+- fixing glyph for U+04ED in Mono Book, consisted only of dieresis (by Andrey
+ V. Panov).
+
+Changes from 2.5 to 2.6:
+
+- redid U+2032 - U+2037, U+2057 based on Arev in Sans (by Gee Fung Sit)
+- added U+0195, corrected U+039E, U+204B in Sans ExtraLight (by Gee Fung Sit)
+- added instructions for some Cyrillic letters in Sans Bold (by Eugeniy
+ Meshcheryakov)
+- added vulgar fractions U+2153-U+215F for Serif, made with references (by
+ Lars Naesbye Christensen)
+- added U+228F-2292, U+2299-22AF, U+22B2-22B5, U+22CD, U+22D8-22ED to Sans
+ (by Remy Oudompheng)
+- added U+2208-220D, U+2238-223D, U+2278-2281, U+228A-228B, U+228F-2292,
+ U+22CD, U+22DA-22E9 to Mono (by Remy Oudompheng)
+- fixed misplaced dot in U+2250 in Mono (by Remy Oudompheng)
+- added instructions for some Cyrillic letters in Mono Book and Bold(by
+ Eugeniy Meshcheryakov)
+- minor changes to U+2241, U+2261-2263, U+22A4, U+22A5 in Sans (by Remy
+ Oudompheng)
+- added hinting instructions to lowercase Armenian glyphs in Sans Book (by
+ Ben Laenen)
+- changed U+2208, U+220B to match U+2209 and U+220C in Sans Bold (by Remy
+ Oudompheng)
+- added Braille patterns U+2800-U+28FF to Sans (by Mederic Boquien)
+- added instructions for some Cyrillic letters in Serif Book (by Eugeniy
+ Meshcheryakov)
+- renamed BoldOblique fonts to Bold Oblique in TTF Name as originally in
+ Bitstream Vera fonts (by Denis Jacquerye)
+- added hinting instructions to some Latin-B Extended and IPA characters in
+ Sans Book (by Denis Jacquerye and Ben Laenen)
+- adjusted bearings, replaced diacritics, hinted hook and horn for
+ Vietnamese in Sans Book (by Denis Jacquerye)
+- made FAX, TM, TEL, etc. discritionary ligatures in Sans and Serif fonts
+ (by Denis Jacquerye)
+- removed ligatures of precomposed characters in Sans and Serif fonts (by
+ Denis Jacquerye)
+- added U+F208, U+F20A, U+F215-F217, U+F21A-F21B, U+F25F in PUA (from SIL's
+ PUA, probably in Unicode 5.0): U+0243, U+0244, U+0245, U+024C, U+024D,
+ U+2C64, (U+2C6D), (U+2C71)
+- modified some glyphs in Serif Oblique to make them more italic (by Denis
+ Jacquerye)
+
+Changes from 2.4 to 2.5:
+
+- fixed excessive kerning bug that occurs with Pango (by Denis Jacquerye)
+- added U+20AF to Sans and Serif (by Lars Naesbye Christensen)
+- regenerated Condensed faces (by Ben Laenen)
+- added U+035C-U+035D to Sans, fixed U+0361 (by Denis Jacquerye)
+- integrated 255 characters from Arev fonts: Latin Extended-B, Spacing
+ Modifiers, Combining Diacritical Marks, Cyrillic, Cyrillic supplement,
+ General Punctuation, Letterlike Symbols, Arrows, Mathematical Operators,
+ Miscellaneous Technical, Dingbats, Alphabetic Presentation Forms (by Denis
+ Jacquerye)
+- added basic Cyrillic and basic Greek to Sans ExtraLight (by Denis Jacquerye)
+- added U+0498, U+049A, U+04AA, U+04AB, U+04AF to Serif (by Eugeniy
+ Meshcheryakov)
+- added U+0494, U+0495, U+0498, U+0499, U+04AA, U+04AB, U+04C3, U+04C4,
+ U+04C7, U+04C8 to Mono (by Eugeniy Meshcheryakov)
+- adjusted weight of U+0256, U+0257, U+0260, U+0272, U+0273, U+0277, U+029B,
+ U+02A0 and modifed U+028B and U+027A in Mono (by Denis Jacquerye)
+- added U+2000-200A to Mono (by Denis Jacquerye)
+- added vulgar fractions U+2153 - U+215F to Mono (by Gee Fung Sit)
+- adapted metrics of Arabic glyphs so they stay above cut-off height in Sans
+ (by Ben Laenen)
+- fixed mkmk anchors for Arabic diacritics so they stack properly in Sans (by
+ Ben Laenen)
+- fixed weight of lowercase upsilon in Sans Bold, make small adjustment to
+ lowercase omega in Sans (by Ben Laenen)
+- added U+210E (by Mederic Boquien)
+- unslanted U+2201, U+221B and U+221C in Sans Oblique (by Mederic Boquien)
+- added several mathematical relation symbols to Sans and Mono (U+2241-224C,
+ U+2250-2255, U+2260-2269, U+226E-2277, U+2282-2287) modified U+223C to match
+ other tildes, and U+2282-2284 to have the same shape. (by Remy Oudompheng)
+- made U+2234-U+2237 refer to U+2219 instead of U+00B7 in Sans (by Mederic
+ Boquien)
+- added U+2238-223B, U+226A-226B, U+2278-2281, U+2288-228B to Sans (by Remy
+ Oudompheng)
+- unslanted and changed reference of U+22C5 from U+00B7 to U+2219 in Sans (by
+ Mederic Boquien)
+- added U+224D-225F, U+226D, U+22C6 to Sans and unslanted U+2219 in Sans
+ Oblique. (by Remy Oudompheng)
+- added U+224D-225F, U+226D to Mono, shifted U+2266-2269 higher upwards and
+ unslanted U+2219 in Oblique. (by Remy Oudompheng)
+- merged Coptic glyphs from Arev 0.2 (by Lars Naesbye Christensen)
+- fixed and adjusted various Cyrillic glyphs in Serif (by Andrey V. Panov)
+- made fi, fl... ligatures discretionary ligatures (by Ben Laenen)
+
+Changes from 2.3 to 2.4:
+
+- added U+04A2, U+04A3, U+04AC - U+04AF, U+04BA, U+04BB, U+04C0 -
+ U+04C2, U+04CB, U+04CD, U+04D8 - U+04DF, U+04E2 - U+04E5, U+04E8 - U+04F5,
+ U+04F6 - U+04F9 to Mono (by Eugeniy Meshcheryakov)
+- added U+048C, U+048D, U+0494, U+0495, U+049E - U+04A7, U+04AC -
+ U+04AE, U+04B4- U+04B7, U+04BA, U+04BB, U+04C0 - U+04C4, U+04C7, U+04C8,
+ U+04CB, U+04CC, U+04D8 - U+04DF, U+04E2 - U+04E5, U+04EC - U+04F9 to Serif
+ (by Eugeniy Meshcheryakov)
+- added U+2134 to Sans (by Gee Fung Sit)
+- added U+2080 - U+2089 to all faces (by Gee Fung Sit)
+- several minor corrections to Sans (by Gee Fung Sit)
+- major corrections to Sans Condensed (by Gee Fung Sit)
+- corrected Superscripts and Subscripts in Sans (by Gee Fung Sit)
+- corrected anchors of U+0316-U+0319 (by Denis Jacquerye)
+- Verajja integrated (by Stepan Roh)
+- copied U+2328, U+2600, U+2639-U+263C, U+263F-U+2647, U+2660-U+2667,
+ and U+2669-U+266F from Sans to Serif, and copied scaled-down versions of
+ them to Sans Mono (by David Lawrence Ramsey)
+- added U+20B4 to all faces (by Eugeniy Meshcheryakov)
+- added more minor positional adjustments to U+2638 in all faces to
+ match the other miscellaneous symbols in Verajja, and rescale it in Sans
+ Mono so that it looks better (by David Lawrence Ramsey)
+- added U+2242, U+2243 and U+22A4 (by Mederic Boquien)
+- corrected U+2245 in Sans (by Mederic Boquien)
+- added U+0221, U+0234-0236 (by Denis Jacquerye)
+- added in Arabic block to Sans: U+060C, U+0615, U+061B, U+061F, U+0621
+- U+063A, U+0640 - U+0655, U+0660 - U+066F, U+0679 - U+0687, U+0698, U+06A1,
+ U+06A9, U+06AF, U+06BA, U+06BF, U+06CC, U+06F0 - U+06F9 (by Ben Laenen)
+- added in Arabic Presentation Forms A to Sans: U+FB52 - U+FB81, U+FB8A
+- U+FB95, U+FB9E - U+FB9F, U+FBE8 - U+FBE9, U+FBFC - U+FBFF (by Ben Laenen)
+- added complete Arabic Presentation Forms B to Sans: U+FE70 - U+FE74,
+ U+FE76 - U+FEFC, U+FEFF (by Ben Laenen)
+- added complete Greek Extended block to Mono (by Ben Laenen)
+- modified Greek capitals with tonos in Mono (by Ben Laenen)
+- added U+01C4-01CC, U+01D5, U+01DE, U+01E0-U+01E1, U+01E6-U+01E9,
+ U+01EE-U+01F5, U+01F8-U+0217, U+021E-U+021F, U+0226-U+022A, U+022C to Serif
+ (by Denis Jacquerye)
+- adjusted U+043B and U+044F in Serif (by Denis Jacquerye)
+- added U+2000-U+200A (by Denis Jacquerye)
+- added U+1E00-U+1E0B, U+1E0E-U+1E11, U+1E14-U+1E1C, U+1E1E-U+1E23,
+ U+1E26-U+1E2D, U+1E30-U+1E35, U+1E3A-U+1E3B, U+1E3E-U+1E40, U+1E48-U+1E49,
+ U+1E50-U+1E56, U+1E58-U+1E59, U+1E5E-U+1E60, U+1E68-U+1E6B, U+1E6E-U+1E6F,
+ U+1E72-U+1E7D, U+1E86-U+1E9B, U+1EA0-U+1EA3, U+1EAC-U+1EB7, U+1EBA-U+1EBD,
+ U+1EC6-U+1ECF, U+1ED8-U+1ED9, U+1EE6-U+1EE7, U+1EF4-U+1EF9 to Serif (by
+ Denis Jacquerye)
+- added U+048E, U+048F, U+049C-U+049F, U+04B8, U+04B9, U+04BC-U+04BF,
+ U+04C3, U+04C4 to Sans (by Eugeniy Meshcheryakov)
+- added DejaVu Sans Extra Light (by Denis Jacquerye)
+- Adjusted underline position for (hopefully) improved legibility in
+ Sans, Serif, Mono (Tim May)
+- added auto-generated DejaVu LGC (by Stepan Roh)
+
+Changes from 2.2 to 2.3:
+
+- fixed bug U+042B and U+044B behave badly in Sans Bold or Oblique (by
+ Keenan Pepper)
+- added and improved TrueType instructions and related settings (by
+ Keenan Pepper)
+- added U+04D0-U+04D7, U+04E6, U+04E7 to Mono (by Eugeniy Meshcheryakov)
+- added U+048A - U+048D, U+0498, U+0499, U+04AA, U+04AB, U+04B0, U+04B1,
+ U+04C0, U+04C9, U+04CA, U+04CE, U+04CD, U+04DA, U+04DB, U+04DE, U+04DF,
+ U+04E2 - U+04E5, U+04EC - U+04F8, U+04F9 to Sans (by Eugeniy Meshcheryakov)
+- added U+04E0, U+04E1 to all faces (by Eugeniy Meshcheryakov)
+- added Greek Extended to Sans and Serif: U+1F00-U+1F15, U+1F18-U+1F1D,
+ U+1F20-U+1F45, U+1F48-U+1F4D, U+1F50-U+1F57, U+1F59, U+1F5B, U+1F5D,
+ U+1F5F-U+1F7D, U+1F80-U+1FB4, U+1FB6-U+1FC4, U+1FC6-U+1FD3, U+1FD6-U+1FDB,
+ U+1FDD-U+1FEF, U+1FF2-U+1FF4, U+1FF6-U+1FFE (by Ben Laenen)
+- added Greek variant letterforms, archaic letters and symbols to Mono:
+ U+03D0-U+03E1, U+03F0-U+03FF (by Ben Laenen)
+- added Armenian block and Armenian ligatures to Sans (U+0531 - U+0556,
+ U+0559 - U+055F, U+0561 - U+0587, U+0589 - U+058A, U+FB13 - U+FB17) (by Ben
+ Laenen)
+- redid some Greek characters in Sans and Mono to make them look better
+ and to correct some errors (by Ben Laenen)
+- added U+27E0 to all faces (by David Lawrence Ramsey)
+- added underscore (U+005F) consistency fixes: extended the Sans Mono
+ and Sans Mono Oblique underscores to touch both horizontal edges, and
+ reduced the height of the Sans Bold Oblique underscore to match the Sans
+ Bold underscore (by David Lawrence Ramsey)
+- added underscore (U+005F) derivatives and consistency fixes for them:
+ made U+0332 a reference to underscore at Denis Jacquerye's suggestion; made
+ U+0333 two references to underscore; made U+033F two references to U+203E;
+ added U+2017 as two references to underscore, and made U+0333 a reference to
+ it; and added U+203E as a reference to underscore, and made U+0305 a
+ reference to it (by David Lawrence Ramsey)
+- added U+201B, U+2220, U+2320-U+2321, U+23AE, U+23CF, all remaining
+ Geometric Shapes glyphs (U+25A0-U+25C9, U+25CB-U+25D7, U+25D9-U+25E5,
+ U+25E7-U+25FF), and U+2B12-U+2B13 to all faces (by David Lawrence Ramsey)
+- added minor positional adjustments to U+2638 in all faces (by David
+ Lawrence Ramsey)
+- added U+201F to Sans Mono and Serif faces (by David Lawrence Ramsey)
+- added U+01B7, U+01F6, U+0464 - U+0465, U+2160 - U+2180, U+2183,
+ U+220A, U+220D, U+2329, U+232A, U+2422, U+27E8 - U+27EB, U+2680 - U+2685 to
+ Sans (by Gee Fung Sit ???)
+- added U+2116 to Sans and Serif (by Gee Fung Sit)
+- changed florin sign U+0192 in Sans (by Gee Fung Sit)
+- added anchor points to some glyphs (by Denis Jacquerye)
+- adjusted height of IPA superscripts U+02B0-02B8, U+02C0-02C1,
+ U+02E0-02E4, U+207F to match with height of U+00B2 (by Denis Jacquerye)
+- added U+0184-U+0185, U+019C, U+019F, U+01A0-U+01A3, U+01A6, U+01AA,
+ U+01AF-U+01B0, U+01B2-U+01B4, U+01B7-U+01B8, U+01BC-U+01BC, U+0224-U+0225,
+ U+023A-U+0240, U+1D16-U+1D17, U+1D1D-U+1D1E, U+1D43-U+1D5B, U+1D7B,
+ U+1D85,U+1D9B-1DB7, U+1DB9-U+1DBF, U+20A6 to all fonts (by Denis Jacquerye)
+- added added U+0182, U+018B, U+018E, U+01A0-U+01A1, U+01B1, U+01B9,
+ U+01C0-U+01C3, U+0238-U+0239, U+1D02, U+1D08-U+1D09, U+1D14, U+1D1F, U+1D77
+ to Serif and Mono (by Denis Jacquerye)
+- added U+0181, U+0183, U+0187-U+0188, U+018A-U+018F, U+0191, U+0193,
+ U+0195-U+019B, U+019D-U+019E, U+01A4-U+01A5, U+01AC-U+01AE, U+01B5-U+01B6,
+ U+01B9, U+01BB, U+01F6 to Serif (by Denis Jacquerye)
+- added U+0181, U+0187-U+0188, U+018A, U+018D, U+018F, U+0191, U+0193,
+ U+0195-U+019F, U+01A4-01A5, U+01AC-01AD, U+01B5-U+01B6, U+1BB, U+01F6,
+ U+01D7-U+01DC, U+0238-U+0239, U+0241 to Mono (by Denis Jacquerye)
+- added to Mono and Serif (by Denis Jacquerye)
+
+Changes from 2.1 to 2.2:
+
+- reworked the vertical orientation of the Blocks Elements characters
+ in all faces to remove their overly large descenders, in order to fix
+ problems with e.g. terminal emulators (by David Lawrence Ramsey)
+- copied bullet in Sans faces to Serif faces for consistency (by David
+ Lawrence Ramsey)
+- added U+2023, U+25D8, U+25E6, and U+29EB to all faces (by David
+ Lawrence Ramsey)
+- added U+1EB8, U+1EB9, U+1ECA - U+1ECD, U+1EE4, U+1EE5 (by Tim May)
+- added U+01DD, U+02BE, U+02BF, U+02D3 to all, changed U+02D2 in
+ non-Condensed and U+1EE5 in Serif (by Tim May)
+- fixed U+01CE, replacing wrong circumflex by caron (by Denis Jacquerye)
+- added anchor points to some glyphs (by Denis Jacquerye)
+- added U+20B5 (by Denis Jacquerye)
+- added U+0181 - U+0183, U+0187, U+0188, U+018A - U+018D, U+0191,
+ U+0193, U+0195 - U+019B, U+019D, U+019E, U+01A4, U+01A7 - U+01A9, U+01AB -
+ U+01AE, U+01B1, U+01B5, U+01B6, U+01BB, U+01C0 - U+01C3, U+01F1 - U+01F3,
+ U+0238, U+0239, U+1D02, U+1D08, U+1D09, U+1D14, U+1D1F, U+1D77, U+2103,
+ U+2126, U+2127, U+212A, U+212B, U+2132, U+214B, U+2210, U+2217, U+2218,
+ U+2A0C - U+2A0E, U+FB00, U+FB03 and U+FB04 to Sans (by Gee Fung Sit)
+- added U+01A9, U+01C3 and U+2126 to Mono and Serif (by Gee Fung Sit)
+- adjusted bearings of U+028B in Sans (by Gee Fung Sit)
+- added U+018F, U+0494-U+0497, U+04A0-U+04A7, U+04AC-U+04AF,
+ U+04B4-U+04B7, U+04BA-U+04BB, U+04C1-U+04C2, U+04C5-U+04C8, U+04CB-U+04CC,
+ U+04D0-U+04D9, U+04DC-U+04DD, U+04E6-U+04EB to Sans (by Eugeniy
+ Meshcheryakov)
+- replaced with references U+0391-U+0393, U+0395-U+0397, U+0399, U+039A,
+ U+039C, U+039D, U+039F-U+03A1, U+03A4, U+03A5, U+03A7, U+03BF, U+03DC,
+ U+0405, U+0406, U+0408, U+0410, U+0412, U+0415, U+0417, U+041A,
+ U+041C-U+041E, U+0420-U+0422, U+0425, U+0430, U+0435, U+043E, U+0440,
+ U+0441, U+0443, U+0445, U+0455-U+0458 in Serif and Mono (by Eugeniy
+ Meshcheryakov)
+- added U+04D0-U+04D7, U+04E6-U+04EB to Serif (by Eugeniy Meshcheryakov)
+- added U+212A and U+212B to the rest of the faces (by Lars Naesbye
+ Christensen)
+- added U+2318 and U+2325 to Sans and Serif (by Lars Naesbye Christensen)
+- added and improved TrueType instructions and related settings (by
+ Keenan Pepper)
+- completed basic Greek alphabet: added U+0374-U+0375, U+037A, U+037E,
+ U+0384-U+038A, U+038C, U+038E-U+0390, U+03AC-U+03BF, U+03C1-U+03CE (by Ben
+ Laenen)
+- added U+2070 and U+2074-U+2079 (by Mederic Boquien)
+
+Changes from 2.0 to 2.1:
+
+*** Be aware that names of some TTF files changed since version 2.0. ***
+
+- added U+0323, U+1E0C, U+1E0D, U+1E24, U+1E25, U+1E36 - U+1E39, U+1E42,
+ U+1E43, U+1E46, U+1E47, U+1E5A - U+1E5D, U+1E62, U+1E63, U+1E6C, U+1E6D,
+ U+1E7E, U+1E7F (by Tim May)
+- fixed bug where GNOME applications used Mono Bold Oblique instead of
+ Mono Oblique (by Keenan Pepper)
+- added and improved TrueType instructions and related settings (by
+ Keenan Pepper)
+- added U+1E41, U+1E57, U+1E61 (by Sander Vesik)
+- added U+0189, U+0309, U+0313, U+0314, U+031A, U+031B, U+0327, U+0328,
+ U+032B, U+0333, U+033C (by Denis Jacquerye)
+- adjusted and fixed U+0186, U+0254, U+0291, U+0316 - U+0319, U+031C -
+ U+0320, U+0323 - U+0326, U+0329 - U+032A, U+032C - U+0332, U+0339 - U+033B,
+ U+033E, U+033F (by Denis Jacquerye)
+- fixed U+1E12, U+1E3C, U+1E4A, U+1E70 to have normal below diacritics
+ (by Denis Jacquerye)
+- fixed U+1E82, U+1E84 and U+1EF2 to have uppercase above diacritics (by
+ Denis Jacquerye)
+- added anchor points to some glyphs (by Denis Jacquerye)
+- dropped "-Roman" from font names - affects both internal TTF names and
+ names of generated files (by Stepan Roh)
+- attempt to fix bug Vertical spacing too big for Mono by exchanging
+ LineGap and OS2TypoLinegap values (proofed by Stefan Rank)
+- added Greek capitals U+0391 - U+03A1, U+03A3 - U+03A9, U+03AA, U+03AB
+ in Mono (by Ben Laenen)
+- added the per ten thousand sign U+2031 (by Mederic Boquien)
+- added U+2207, U+221D, U+221F, U+2227 - U+222A, and U+2261 (by David
+ Lawrence Ramsey)
+- new logo (by Gee Fung Sit)
+- added U+0180, U+018E, U+201F, U+2024, U+2025, U+203D, U+2200, U+2203,
+ U+2213, U+222C, U+222D, U+2263 to Sans (by Gee Fung Sit)
+
+Changes from 1.15 to 2.0:
+
+- "Italized" basic glyphs in all Serif Oblique and their Condensed faces
+ (by David Jez)
+- added and improved TrueType instructions and related settings (by Keenan
+ Pepper)
+- added anchor points to some glyphs (by Denis Jacquerye)
+- many new spacing and combining accents (by Denis Jacquerye)
+- smart substitutions for transforming i and j to dottless form and for
+ using uppercase diacritics (by Denis Jacquerye)
+- fixed remaining erroneously slanted characters in Serif Oblique faces (by
+ David Lawrence Ramsey)
+- copied bullet in Sans faces to Sans Oblique faces for consistency (by
+ David Lawrence Ramsey)
+- added U+203C and U+2047-U+2049 (by David Lawrence Ramsey)
+- added Greek glyphs to Serif (by Ben Laenen, Condensed merge by David Jez)
+- fixed bug LTR glyphs behaving like RTL (by Ben Laenen)
+- fixed wrong glyph directions (by David Jez)
+- fixed repositioned accents in Condensed faces (by David Jez)
+
+Changes from 1.14 to 1.15:
+
+- added and improved TrueType instructions and related settings (by Keenan
+ Pepper)
+- fixed U+2302, U+2319 (by David Lawrence Ramsey)
+- fixed yet another monospace bug (by Stepan Roh)
+- fixed potential "too big ascender/descender" bug (by Stepan Roh)
+- fixed U+026E and U+028E (by Denis Jacquerye)
+- added U+0186, U+0190, U+0300 - U+0304, U+0306 - U+0308, U+030A - U+030C,
+ U+0321, U+0322 (by Denis Jacquerye)
+- added rest of Block Elements: U+2591 - U+2593 (by David Lawrence Ramsey)
+- added U+2311, U+237D and U+2638 (by David Lawrence Ramsey)
+- added U+01CD - U+01D4 (by Denis Jacquerye)
+- fixed accents of U+00F2 - U+00F6 by replacing them with references in Mono
+ Bold (by David Jez)
+- added U+0490, U+0491 (by Eugeniy Meshcheryakov)
+- added hints to U+0404 and U+0454 in Sans (by Eugeniy Meshcheryakov)
+- completed Greek glyphs from U+0370 to U+03CF in Serif (by Ben Laenen)
+- fixed shape of U+0255 in Sans Bold and Sans Bold Oblique (by Denis
+ Jacquerye)
+
+Changes from 1.13 to 1.14:
+
+- fixed bug where Mono faces were not recognized as fixed pitch in Windows
+ by correcting Venda glyphs (by David Jez)
+- added and improved TrueType instructions (by Keenan Pepper)
+- added 6 Uzbekian glyphs (by Mashrab Kuvatov)
+- added Greek glyphs to Sans and Serif, changed pi and omega to fit in (by
+ Ben Laenen)
+- added IPA and related superscript glyphs (by Denis Jacquerye)
+- fixed buggy Venda glyphs (by David Lawrence Ramsey and Stepan Roh)
+- added U+2302, U+2310, U+2319 (by David Lawrence Ramsey)
+- fixed slanted U+00AC in Serif Oblique faces (by David Lawrence Ramsey)
+- added 29 glyphs from Block Elements (by David Lawrence Ramsey)
+
+Changes from 1.12 to 1.13:
+
+- removed all stems (PS hints) (requested by David Jez)
+- added U+01D6, U+01DF, U+022B, U+022D and U+0231 (by Sander Vesik)
+- added 10 Venda glyphs (by Dwayne Bailey)
+- fixed bug when fonts had no name on Microsoft Windows (by Stepan Roh)
+- updated 'missing' glyph U+FFFD (by David Jez)
+- set TTF flag fsType to 'Installable Embedding' (= unrestricted usage)
+ (idea by C. Tiffany)
+
+Changes from 1.11 to 1.12:
+
+- added long s (by James Cloos)
+- prettier comma accent in gcommaaccent (by David Jez)
+- added Hbar, hbar, kgreenlandic, napostrophe, Eng, eng, Tbar, tbar,
+ afii57929 (by David Jez)
+- changed Iogonek, iogonek, IJ, ij to look better (by David Jez)
+- glyph uni0237 renamed to dotlessj (requested by David Jez)
+- fixed accents for dcaron, lcaron, tcaron, Uogonek, uogonek in Serif (by
+ David Jez)
+- added U+2500 - U+257F box drawing glyphs to Sans Mono (by David Jez)
+- fixed accents in Wcircumflex, Ycircumflex and Zdotaccent (by David Jez)
+- extra kerning for F (by Sander Vesik)
+- added 'missing' glyph U+FFFD (by David Jez)
+
+Changes from 1.10 to 1.11:
+
+- kerning updates (by Sander Vesik)
+- added Iogonek, iogonek, IJ, ij, Uogonek, uogonek (from SuSE standard fonts
+ by Adrian Schroeter, SuSE AG)
+- added Gcommaaccent, gcommaaccent, Kcommaaccent, kcommaaccent,
+ Lcommaaccent, lcommaaccent, Ncommaaccent, ncommaaccent, Rcommaaccent,
+ rcommaaccent (by Stepan Roh)
+
+Changes from 1.9 to 1.10:
+
+- added U+022E, U+022F (by Sander Vesik)
+- kerning updates for DejaVu Sans (by Sander Vesik)
+- fixed too wide cyrillic glyphs in DejaVu Sans Mono (by Valentin Stoykov)
+- fixed ligatures bug in Mono (by Stepan Roh)
+
+Changes from 1.8 to 1.9:
+
+- integrated Arev Cyrillics (by Danilo Segan)
+- added U+01EA, U+01EB, U+01EC, U+01ED (by Sander Vesik)
+
+Changes from 1.7 to 1.8:
+
+- fixed accents in Serif Oblique and Serif Bold Oblique (by Stepan Roh)
+
+Changes from 1.6 to 1.7:
+
+- added automatically generated Condensed typefaces (by Stepan Roh)
+
+Changes from 1.5 to 1.6:
+
+- monospace bug fixed (by Stepan Roh)
+- incorrect Bitstream foundry assigned by fontconfig and KDE Font Installer
+fixed (by Stepan Roh)
+- added automatically generated Oblique version of Serif typefaces (by
+Stepan Roh)
+- corrected cyrillic D and d (by Danilo Segan and David Jez)
+- fixed accents position in Oblique version of Serif typefaces (by Danilo
+Segan and Sander Vesik)
+- fixed incorrect computation of OS2Win* fields (by Stepan Roh)
+- added visiblespace U+2423 (by David Jez)
+- fixed 'line height' bug by fixing ascender and descender values (by David
+Jez and Stepan Roh)
+- fixed part of 'worse than Vera' bug (by Peter Cernak)
+- smaller comma accent U+0326 (by David Jez)
+
+Changes from 1.4 to 1.5:
+
+- added Cyrillics (96 characters) and Dcroat to the rest of typefaces (by
+Danilo Segan)
+- fixed bugs in some Cyrillic characters, some of them reported by Sander
+Vesik (by Danilo Segan)
+- added U+0100, U+0101, U+0112, U+0113, U+012A, U+012B, U+014C, U+014D,
+U+016A, U+016B, U+01E2, U+01E3, U+0232 and U+0233 (by Sander Vesik)
+- added Romanian characters (by Misu Moldovan)
+- added U+0108, U+0109, U+010A, U+010B, U+0114, U+0115, U+0116, U+0117,
+U+011C, U+011D, U+0120, U+0121, U+0124, U+0125, U+0128, U+0129, U+012C,
+U+012D, U+0134, U+0135, U+014E, U+014F, U+0150, U+0151, U+015C, U+015D,
+U+0168, U+0169, U+016C, U+016D, U+0170, U+0171 and U+0237 (by James
+Crippen)
+- added U+02BB, U+2010, U+2011, U+2012 and U+2015 (by Stepan Roh)
+
+Changes from 1.3 to 1.4:
+
+- added Polish characters (Aogonek, aogonek, Eogonek, eogonek, Nacute,
+nacute, Sacute, sacute, Zacute, zacute, Zdotaccent, zdotaccent) (by Stepan
+Roh)
+
+Changes from 1.2 to 1.3:
+
+- added Cyrillics (96 characters) and Dcroat to Sans typefaces (by Danilo
+Segan from his BePa fonts)
+
+Changes from 1.1 to 1.2:
+
+- added Ldot, ldot, Wcircumflex, wcircumflex, Ycircumflex, ycircumflex,
+ Wgrave, wgrave, Wacute, wacute, Wdieresis, wdieresis, Ygrave and ygrave
+ (from The Olwen Font Family 0.2 by Dafydd Harries)
+
+Changes from 1.0 to 1.1:
+
+- added Lacute, lacute, Lcaron, lcaron, Racute and racute (by Peter Cernak)
+
+Changes from 0.9.4 to 1.0:
+
+- none, just changed version and updated README
+
+Changes from 0.9.3 to 0.9.4:
+
+- fixed TTF generation (kerning tables were missing)
+
+Changes from 0.9.2 to 0.9.3:
+
+- kerning of added characters
+- proper caron shape for dcaron in Mono (by Ondrej Koala Vacha)
+- minor visual changes
+
+Changes from 0.9.1 to 0.9.2:
+
+- internal bugged version
+
+Changes from 0.9 to 0.9.1:
+
+- proper caron shape for dcaron and tcaron
+- minor visual changes
+
+$Id$
diff --git a/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/README b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/README
new file mode 100644
index 0000000000..6b63758c6c
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/README
@@ -0,0 +1,59 @@
+DejaVu fonts 2.24 (c)2004-2008 DejaVu fonts team
+------------------------------------------------
+
+The DejaVu fonts are a font family based on the Bitstream Vera Fonts
+(http://gnome.org/fonts/). Its purpose is to provide a wider range of
+characters (see status.txt for more information) while maintaining the
+original look and feel.
+
+DejaVu fonts are based on Bitstream Vera fonts version 1.10.
+
+Available fonts (Sans = sans serif, Mono = monospaced):
+
+DejaVu Sans Mono
+DejaVu Sans Mono Bold
+DejaVu Sans Mono Bold Oblique
+DejaVu Sans Mono Oblique
+DejaVu Sans
+DejaVu Sans Bold
+DejaVu Sans Bold Oblique
+DejaVu Sans Oblique
+DejaVu Sans ExtraLight (experimental)
+DejaVu Serif
+DejaVu Serif Bold
+DejaVu Serif Bold Italic (experimental)
+DejaVu Serif Italic (experimental)
+DejaVu Sans Condensed (experimental)
+DejaVu Sans Condensed Bold (experimental)
+DejaVu Sans Condensed Bold Oblique (experimental)
+DejaVu Sans Condensed Oblique (experimental)
+DejaVu Serif Condensed (experimental)
+DejaVu Serif Condensed Bold (experimental)
+DejaVu Serif Condensed Bold Italic (experimental)
+DejaVu Serif Condensed Italic (experimental)
+
+All fonts are also available as derivative called DejaVu LGC with support
+only for Latin, Greek and Cyrillic scripts.
+
+For license information see LICENSE. What's new is described in NEWS. Known
+bugs are in BUGS. All authors are mentioned in AUTHORS.
+
+Fonts are published in source form as SFD files (Spline Font Database from
+FontForge - http://fontforge.sf.net/) and in compiled form as TTF files
+(TrueType fonts).
+
+For more information go to http://dejavu.sourceforge.net/.
+
+Characters from Arev fonts, Copyright (c) 2006 by Tavmjong Bah:
+---------------------------
+U+01BA, U+01BF, U+01F7, U+021C-U+021D, U+0220, U+0222-U+0223,
+U+02B9, U+02BA, U+02BD, U+02C2-U+02C5, U+02d4-U+02D5,
+U+02D7, U+02EC-U+02EE, U+0346-U+034E, U+0360, U+0362,
+U+03E2-03EF, U+0460-0463, U+0466-U+0486, U+0488-U+0489, U+04A8-U+04A9,
+U+0500-U+050F, U+2055-205E, U+20B0, U+20B2-U+20B3, U+2102, U+210D, U+210F,
+U+2111, U+2113, U+2115, U+2118-U+211A, U+211C-U+211D, U+2124, U+2135,
+U+213C-U+2140, U+2295-U+2298, U+2308-U+230B, U+26A2-U+26B1, U+2701-U+2704,
+U+2706-U+2709, U+270C-U+274B, U+2758-U+275A, U+2761-U+2775, U+2780-U+2794,
+U+2798-U+27AF, U+27B1-U+27BE, U+FB05-U+FB06
+
+$Id$
diff --git a/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/langcover.txt b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/langcover.txt
new file mode 100644
index 0000000000..46ea2475a4
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/langcover.txt
@@ -0,0 +1,193 @@
+This is the language coverage file for DejaVu fonts
+($Id$)
+
+ Sans Serif Sans Mono
+aa Afar 100% (62/62) 100% (62/62) 100% (62/62)
+ab Abkhazia 100% (90/90) 93% (84/90) 84% (76/90)
+af Afrikaans 100% (69/69) 100% (69/69) 100% (69/69)
+am Amharic (0/264) (0/264) (0/264)
+ar Arabic 100% (125/125) (0/125) 100% (125/125)
+as (0/89) (0/89) (0/89)
+ast Asturian 100% (72/72) 100% (72/72) 100% (72/72)
+ava Avaric 100% (67/67) 100% (67/67) 100% (67/67)
+ay Aymara 100% (60/60) 100% (60/60) 100% (60/60)
+az Azerbaijani 100% (148/148) 97% (144/148) 97% (144/148)
+az-ir Azerbaijani in Iran 100% (130/130) (0/130) 100% (130/130)
+ba Bashkir 100% (82/82) 100% (82/82) 97% (80/82)
+bam Bambara 100% (60/60) 100% (60/60) 100% (60/60)
+be Byelorussian 100% (68/68) 100% (68/68) 100% (68/68)
+bg Bulgarian 100% (60/60) 100% (60/60) 100% (60/60)
+bh Bihari (Devanagari script) (0/68) (0/68) (0/68)
+bho Bhojpuri (Devanagari script) (0/68) (0/68) (0/68)
+bi Bislama 100% (58/58) 100% (58/58) 100% (58/58)
+bin Edo or Bini 100% (78/78) 100% (78/78) 100% (78/78)
+bn Bengali (0/89) (0/89) (0/89)
+bo Tibetan (0/95) (0/95) (0/95)
+br Breton 100% (64/64) 100% (64/64) 100% (64/64)
+bs Bosnian 100% (62/62) 100% (62/62) 100% (62/62)
+bua Buriat (Buryat) 100% (70/70) 100% (70/70) 100% (70/70)
+ca Catalan 100% (74/74) 100% (74/74) 100% (74/74)
+ce Chechen 100% (67/67) 100% (67/67) 100% (67/67)
+ch Chamorro 100% (58/58) 100% (58/58) 100% (58/58)
+chm Mari (Lower Cheremis / Upper Cheremis) 100% (76/76) 100% (76/76) 97% (74/76)
+chr Cherokee (0/85) (0/85) (0/85)
+co Corsican 100% (85/85) 100% (85/85) 100% (85/85)
+cs Czech 100% (82/82) 100% (82/82) 100% (82/82)
+cu Old Church Slavonic 100% (103/103) 84% (87/103) 74% (77/103)
+cv Chuvash 100% (74/74) 100% (74/74) 100% (74/74)
+cy Welsh 100% (78/78) 100% (78/78) 100% (78/78)
+da Danish 100% (70/70) 100% (70/70) 100% (70/70)
+de German 100% (60/60) 100% (60/60) 100% (60/60)
+dz Dzongkha (0/95) (0/95) (0/95)
+el Greek 100% (70/70) 100% (70/70) 100% (70/70)
+en English 100% (73/73) 100% (73/73) 100% (73/73)
+eo Esperanto 100% (64/64) 100% (64/64) 100% (64/64)
+es Spanish 100% (67/67) 100% (67/67) 100% (67/67)
+et Estonian 100% (64/64) 100% (64/64) 100% (64/64)
+eu Basque 100% (56/56) 100% (56/56) 100% (56/56)
+fa Persian 100% (129/129) (0/129) 100% (129/129)
+fi Finnish 100% (63/63) 100% (63/63) 100% (63/63)
+fj Fijian 100% (52/52) 100% (52/52) 100% (52/52)
+fo Faroese 100% (68/68) 100% (68/68) 100% (68/68)
+fr French 100% (85/85) 100% (85/85) 100% (85/85)
+ful Fulah (Fula) 100% (62/62) 100% (62/62) 100% (62/62)
+fur Friulian 100% (66/66) 100% (66/66) 100% (66/66)
+fy Frisian 100% (75/75) 100% (75/75) 100% (75/75)
+ga Irish 100% (80/80) 100% (80/80) 100% (80/80)
+gd Scots Gaelic 100% (70/70) 100% (70/70) 100% (70/70)
+gez Ethiopic (Geez) (0/218) (0/218) (0/218)
+gl Galician 100% (66/66) 100% (66/66) 100% (66/66)
+gn Guarani 100% (70/70) 100% (70/70) 100% (70/70)
+gu Gujarati (0/78) (0/78) (0/78)
+gv Manx Gaelic 100% (54/54) 100% (54/54) 100% (54/54)
+ha Hausa 100% (60/60) 100% (60/60) 100% (60/60)
+haw Hawaiian 100% (63/63) 100% (63/63) 100% (63/63)
+he Hebrew 100% (27/27) (0/27) (0/27)
+hi Hindi (Devanagari script) (0/68) (0/68) (0/68)
+ho Hiri Motu 100% (52/52) 100% (52/52) 100% (52/52)
+hr Croatian 100% (62/62) 100% (62/62) 100% (62/62)
+hu Hungarian 100% (70/70) 100% (70/70) 100% (70/70)
+hy Armenian 100% (77/77) (0/77) (0/77)
+ia Interlingua 100% (52/52) 100% (52/52) 100% (52/52)
+ibo Igbo 100% (58/58) 100% (58/58) 100% (58/58)
+id Indonesian 100% (54/54) 100% (54/54) 100% (54/54)
+ie Interlingue 100% (52/52) 100% (52/52) 100% (52/52)
+ik Inupiaq (Inupiak, Eskimo) 100% (68/68) 100% (68/68) 100% (68/68)
+io Ido 100% (52/52) 100% (52/52) 100% (52/52)
+is Icelandic 100% (70/70) 100% (70/70) 100% (70/70)
+it Italian 100% (73/73) 100% (73/73) 100% (73/73)
+iu Inuktitut 100% (161/161) (0/161) (0/161)
+ja Japanese (0/6538) (0/6538) (0/6538)
+ka Georgian 100% (33/33) 100% (33/33) 100% (33/33)
+kaa Kara-Kalpak (Karakalpak) 100% (78/78) 100% (78/78) 100% (78/78)
+ki Kikuyu 100% (56/56) 100% (56/56) 100% (56/56)
+kk Kazakh 100% (77/77) 100% (77/77) 100% (77/77)
+kl Greenlandic 100% (81/81) 100% (81/81) 100% (81/81)
+km Khmer (0/70) (0/70) (0/70)
+kn Kannada (0/80) (0/80) (0/80)
+ko Korean (0/2443) (0/2443) (0/2443)
+kok Kokani (Devanagari script) (0/68) (0/68) (0/68)
+ks Kashmiri (Devanagari script) (0/68) (0/68) (0/68)
+ku Kurdish 100% (64/64) 100% (64/64) 100% (64/64)
+ku-ir Kurdish in Iran 100% (32/32) (0/32) 100% (32/32)
+kum Kumyk 100% (66/66) 100% (66/66) 100% (66/66)
+kv Komi (Komi-Permyak/Komi-Siryan) 100% (70/70) 100% (70/70) 100% (70/70)
+kw Cornish 100% (64/64) 100% (64/64) 100% (64/64)
+ky Kirgiz 100% (70/70) 100% (70/70) 100% (70/70)
+la Latin 100% (68/68) 100% (68/68) 100% (68/68)
+lb Luxembourgish (Letzeburgesch) 100% (75/75) 100% (75/75) 100% (75/75)
+lez Lezghian (Lezgian) 100% (67/67) 100% (67/67) 100% (67/67)
+ln Lingala 100% (81/81) 100% (81/81) 100% (81/81)
+lo Lao 100% (65/65) (0/65) 70% (46/65)
+lt Lithuanian 100% (70/70) 100% (70/70) 100% (70/70)
+lv Latvian 100% (78/78) 100% (78/78) 100% (78/78)
+mg Malagasy 100% (56/56) 100% (56/56) 100% (56/56)
+mh Marshallese 100% (62/62) 100% (62/62) 100% (62/62)
+mi Maori 100% (64/64) 100% (64/64) 100% (64/64)
+mk Macedonian 100% (42/42) 100% (42/42) 100% (42/42)
+ml Malayalam (0/78) (0/78) (0/78)
+mn Mongolian (0/130) (0/130) (0/130)
+mo Moldavian 100% (128/128) 100% (128/128) 100% (128/128)
+mr Marathi (Devanagari script) (0/68) (0/68) (0/68)
+mt Maltese 100% (72/72) 100% (72/72) 100% (72/72)
+my Burmese (Myanmar) (0/48) (0/48) (0/48)
+nb Norwegian Bokmal 100% (70/70) 100% (70/70) 100% (70/70)
+nds Low Saxon 100% (59/59) 100% (59/59) 100% (59/59)
+ne Nepali (Devanagari script) (0/68) (0/68) (0/68)
+nl Dutch 100% (83/83) 100% (83/83) 100% (83/83)
+nn Norwegian Nynorsk 100% (76/76) 100% (76/76) 100% (76/76)
+no Norwegian (Bokmal) 100% (70/70) 100% (70/70) 100% (70/70)
+nr Ndebele, South 100% (52/52) 100% (52/52) 100% (52/52)
+nso Northern Sotho 100% (58/58) 100% (58/58) 100% (58/58)
+ny Chichewa 100% (54/54) 100% (54/54) 100% (54/54)
+oc Occitan 100% (70/70) 100% (70/70) 100% (70/70)
+om Oromo or Galla 100% (52/52) 100% (52/52) 100% (52/52)
+or Oriya (0/79) (0/79) (0/79)
+os Ossetic 100% (66/66) 100% (66/66) 100% (66/66)
+pa Punjabi (Gurumukhi script) (0/63) (0/63) (0/63)
+pl Polish 100% (70/70) 100% (70/70) 100% (70/70)
+ps-af Pashto in Afghanistan 83% (41/49) (0/49) 83% (41/49)
+ps-pk Pashto in Pakistan 81% (40/49) (0/49) 81% (40/49)
+pt Portuguese 100% (83/83) 100% (83/83) 100% (83/83)
+rm Rhaeto-Romance (Romansch) 100% (66/66) 100% (66/66) 100% (66/66)
+ro Romanian 100% (62/62) 100% (62/62) 100% (62/62)
+ru Russian 100% (66/66) 100% (66/66) 100% (66/66)
+sa Sanskrit (Devanagari script) (0/68) (0/68) (0/68)
+sah Yakut 100% (76/76) 100% (76/76) 97% (74/76)
+sco Scots 100% (56/56) 96% (54/56) 96% (54/56)
+se North Sami 100% (66/66) 100% (66/66) 100% (66/66)
+sel Selkup (Ostyak-Samoyed) 100% (66/66) 100% (66/66) 100% (66/66)
+sh Serbo-Croatian 100% (76/76) 100% (76/76) 100% (76/76)
+si Sinhala (Sinhalese) (0/77) (0/77) (0/77)
+sk Slovak 100% (86/86) 100% (86/86) 100% (86/86)
+sl Slovenian 100% (62/62) 100% (62/62) 100% (62/62)
+sm Samoan 100% (53/53) 100% (53/53) 100% (53/53)
+sma South Sami 100% (60/60) 100% (60/60) 100% (60/60)
+smj Lule Sami 100% (60/60) 100% (60/60) 100% (60/60)
+smn Inari Sami 100% (68/68) 100% (68/68) 100% (68/68)
+sms Skolt Sami 100% (80/80) 100% (80/80) 97% (78/80)
+so Somali 100% (52/52) 100% (52/52) 100% (52/52)
+sq Albanian 100% (56/56) 100% (56/56) 100% (56/56)
+sr Serbian 100% (76/76) 100% (76/76) 100% (76/76)
+ss Swati 100% (52/52) 100% (52/52) 100% (52/52)
+st Sotho, Southern 100% (52/52) 100% (52/52) 100% (52/52)
+sv Swedish 100% (68/68) 100% (68/68) 100% (68/68)
+sw Swahili 100% (52/52) 100% (52/52) 100% (52/52)
+syr Syriac (0/45) (0/45) (0/45)
+ta Tamil (0/48) (0/48) (0/48)
+te Telugu (0/80) (0/80) (0/80)
+tg Tajik 100% (78/78) 100% (78/78) 97% (76/78)
+th Thai 1% (1/87) (0/87) (0/87)
+ti-er Eritrean Tigrinya (0/255) (0/255) (0/255)
+ti-et Ethiopian Tigrinya (0/281) (0/281) (0/281)
+tig Tigre (0/221) (0/221) (0/221)
+tk Turkmen 100% (74/74) 100% (74/74) 100% (74/74)
+tl Tagalog (0/19) (0/19) (0/19)
+tn Tswana 100% (58/58) 100% (58/58) 100% (58/58)
+to Tonga 100% (53/53) 100% (53/53) 100% (53/53)
+tr Turkish 100% (70/70) 100% (70/70) 100% (70/70)
+ts Tsonga 100% (52/52) 100% (52/52) 100% (52/52)
+tt Tatar 100% (76/76) 100% (76/76) 100% (76/76)
+tw Twi 100% (73/73) 100% (73/73) 100% (73/73)
+tyv Tuvinian 100% (70/70) 100% (70/70) 100% (70/70)
+ug Uighur 100% (125/125) (0/125) 100% (125/125)
+uk Ukrainian 100% (72/72) 100% (72/72) 100% (72/72)
+ur Urdu 94% (137/145) (0/145) 97% (141/145)
+uz Uzbek 100% (68/68) 100% (68/68) 100% (68/68)
+ven Venda 100% (62/62) 100% (62/62) 100% (62/62)
+vi Vietnamese 100% (194/194) 77% (150/194) 63% (124/194)
+vo Volapuk 100% (54/54) 100% (54/54) 100% (54/54)
+vot Votic 100% (62/62) 100% (62/62) 100% (62/62)
+wa Walloon 100% (70/70) 100% (70/70) 100% (70/70)
+wen Sorbian languages (lower and upper) 100% (76/76) 100% (76/76) 100% (76/76)
+wo Wolof 100% (66/66) 100% (66/66) 100% (66/66)
+xh Xhosa 100% (52/52) 100% (52/52) 100% (52/52)
+yap Yapese 100% (58/58) 100% (58/58) 100% (58/58)
+yi Yiddish 100% (27/27) (0/27) (0/27)
+yo Yoruba 100% (119/119) 100% (119/119) 100% (119/119)
+zh-cn Chinese (simplified) 0% (2/6765) 0% (2/6765) 0% (2/6765)
+zh-hk Chinese Hong Kong Supplementary Character Set (0/2213) (0/2213) (0/2213)
+zh-mo Chinese in Macau (0/2213) (0/2213) (0/2213)
+zh-sg Chinese in Singapore 0% (2/6765) 0% (2/6765) 0% (2/6765)
+zh-tw Chinese (traditional) (0/13063) (0/13063) (0/13063)
+zu Zulu 100% (52/52) 100% (52/52) 100% (52/52)
diff --git a/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/unicover.txt b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/unicover.txt
new file mode 100644
index 0000000000..a892d966e0
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavu-fonts-ttf-2.25/unicover.txt
@@ -0,0 +1,160 @@
+This is the Unicode coverage file for DejaVu fonts
+($Id$)
+
+Control and similar characters are discounted from totals.
+
+ Sans Serif Sans Mono
+U+0000 Basic Latin 100% (95/95) 100% (95/95) 100% (95/95)
+U+0080 Latin-1 Supplement 100% (96/96) 100% (96/96) 100% (96/96)
+U+0100 Latin Extended-A 100% (128/128) 100% (128/128) 100% (128/128)
+U+0180 Latin Extended-B 100% (208/208) 90% (189/208) 82% (172/208)
+U+0250 IPA Extensions 100% (96/96) 100% (96/96) 100% (96/96)
+U+02b0 Spacing Modifier Letters 78% (63/80) 56% (45/80) 57% (46/80)
+U+0300 Combining Diacritical Marks 82% (92/112) 60% (68/112) 59% (67/112)
+U+0370 Greek and Coptic 100% (127/127) 86% (110/127) 86% (110/127)
+U+0400 Cyrillic 100% (255/255) 77% (198/255) 68% (174/255)
+U+0500 Cyrillic Supplement 100% (20/20) (0/20) (0/20)
+U+0530 Armenian 100% (86/86) (0/86) (0/86)
+U+0590 Hebrew 62% (54/87) (0/87) (0/87)
+U+0600 Arabic 47% (111/235) (0/235) 46% (109/235)
+U+0700 Syriac (0/77) (0/77) (0/77)
+U+0750 Arabic Supplement (0/30) (0/30) (0/30)
+U+0780 Thaana (0/50) (0/50) (0/50)
+U+07c0 NKo 91% (54/59) (0/59) (0/59)
+U+0900 Devanagari (0/111) (0/111) (0/111)
+U+0980 Bengali (0/91) (0/91) (0/91)
+U+0a00 Gurmukhi (0/77) (0/77) (0/77)
+U+0a80 Gujarati (0/83) (0/83) (0/83)
+U+0b00 Oriya (0/81) (0/81) (0/81)
+U+0b80 Tamil (0/71) (0/71) (0/71)
+U+0c00 Telugu (0/80) (0/80) (0/80)
+U+0c80 Kannada (0/86) (0/86) (0/86)
+U+0d00 Malayalam (0/78) (0/78) (0/78)
+U+0d80 Sinhala (0/80) (0/80) (0/80)
+U+0e00 Thai 1% (1/87) (0/87) (0/87)
+U+0e80 Lao 100% (65/65) (0/65) 70% (46/65)
+U+0f00 Tibetan (0/195) (0/195) (0/195)
+U+1000 Myanmar (0/78) (0/78) (0/78)
+U+10a0 Georgian 100% (83/83) 100% (83/83) 54% (45/83)
+U+1100 Hangul Jamo (0/240) (0/240) (0/240)
+U+1200 Ethiopic (0/356) (0/356) (0/356)
+U+1380 Ethiopic Supplement (0/26) (0/26) (0/26)
+U+13a0 Cherokee (0/85) (0/85) (0/85)
+U+1400 Unified Canadian Aboriginal Syllabics 64% (404/630) (0/630) (0/630)
+U+1680 Ogham 100% (29/29) (0/29) (0/29)
+U+16a0 Runic (0/81) (0/81) (0/81)
+U+1700 Tagalog (0/20) (0/20) (0/20)
+U+1720 Hanunoo (0/23) (0/23) (0/23)
+U+1740 Buhid (0/20) (0/20) (0/20)
+U+1760 Tagbanwa (0/18) (0/18) (0/18)
+U+1780 Khmer (0/114) (0/114) (0/114)
+U+1800 Mongolian (0/155) (0/155) (0/155)
+U+1900 Limbu (0/66) (0/66) (0/66)
+U+1950 Tai Le (0/35) (0/35) (0/35)
+U+1980 New Tai Lue (0/80) (0/80) (0/80)
+U+19e0 Khmer Symbols (0/32) (0/32) (0/32)
+U+1a00 Buginese (0/30) (0/30) (0/30)
+U+1b00 Balinese (0/121) (0/121) (0/121)
+U+1d00 Phonetic Extensions 82% (105/128) 48% (62/128) 48% (62/128)
+U+1d80 Phonetic Extensions Supplement 59% (38/64) 57% (37/64) 57% (37/64)
+U+1dc0 Combining Diacritical Marks Supplement 46% (6/13) (0/13) (0/13)
+U+1e00 Latin Extended Additional 100% (246/246) 78% (192/246) 56% (140/246)
+U+1f00 Greek Extended 100% (233/233) 100% (233/233) 100% (233/233)
+U+2000 General Punctuation 98% (104/106) 61% (65/106) 42% (45/106)
+U+2070 Superscripts and Subscripts 100% (34/34) 100% (34/34) 100% (34/34)
+U+20a0 Currency Symbols 100% (22/22) 27% (6/22) 22% (5/22)
+U+20d0 Combining Diacritical Marks for Symbols 21% (7/32) (0/32) (0/32)
+U+2100 Letterlike Symbols 94% (75/79) 39% (31/79) 8% (7/79)
+U+2150 Number Forms 100% (50/50) 100% (50/50) 26% (13/50)
+U+2190 Arrows 100% (112/112) 100% (112/112) 100% (112/112)
+U+2200 Mathematical Operators 96% (247/256) 39% (100/256) 56% (145/256)
+U+2300 Miscellaneous Technical 27% (64/232) 6% (16/232) 50% (117/232)
+U+2400 Control Pictures 5% (2/39) 2% (1/39) 2% (1/39)
+U+2440 Optical Character Recognition (0/11) (0/11) (0/11)
+U+2460 Enclosed Alphanumerics 6% (10/160) (0/160) (0/160)
+U+2500 Box Drawing 100% (128/128) 100% (128/128) 100% (128/128)
+U+2580 Block Elements 100% (32/32) 100% (32/32) 100% (32/32)
+U+25a0 Geometric Shapes 100% (96/96) 100% (96/96) 100% (96/96)
+U+2600 Miscellaneous Symbols 100% (176/176) 17% (30/176) 84% (149/176)
+U+2700 Dingbats 100% (174/174) 0% (1/174) 82% (144/174)
+U+27c0 Miscellaneous Mathematical Symbols-A 17% (7/39) 7% (3/39) 7% (3/39)
+U+27f0 Supplemental Arrows-A 100% (16/16) 100% (16/16) (0/16)
+U+2800 Braille Patterns 100% (256/256) 100% (256/256) (0/256)
+U+2900 Supplemental Arrows-B 4% (6/128) 100% (128/128) (0/128)
+U+2980 Miscellaneous Mathematical Symbols-B 10% (13/128) 0% (1/128) 2% (3/128)
+U+2a00 Supplemental Mathematical Operators 28% (72/256) 1% (4/256) 0% (1/256)
+U+2b00 Miscellaneous Symbols and Arrows 100% (31/31) 87% (27/31) 29% (9/31)
+U+2c00 Glagolitic (0/94) (0/94) (0/94)
+U+2c60 Latin Extended-C 100% (17/17) 52% (9/17) 17% (3/17)
+U+2c80 Coptic (0/114) (0/114) (0/114)
+U+2d00 Georgian Supplement (0/38) (0/38) (0/38)
+U+2d30 Tifinagh 100% (55/55) (0/55) (0/55)
+U+2d80 Ethiopic Extended (0/79) (0/79) (0/79)
+U+2e00 Supplemental Punctuation (0/26) (0/26) (0/26)
+U+2e80 CJK Radicals Supplement (0/115) (0/115) (0/115)
+U+2f00 Kangxi Radicals (0/214) (0/214) (0/214)
+U+2ff0 Ideographic Description Characters (0/12) (0/12) (0/12)
+U+3000 CJK Symbols and Punctuation (0/64) (0/64) (0/64)
+U+3040 Hiragana (0/93) (0/93) (0/93)
+U+30a0 Katakana (0/96) (0/96) (0/96)
+U+3100 Bopomofo (0/40) (0/40) (0/40)
+U+3130 Hangul Compatibility Jamo (0/94) (0/94) (0/94)
+U+3190 Kanbun (0/16) (0/16) (0/16)
+U+31a0 Bopomofo Extended (0/24) (0/24) (0/24)
+U+31c0 CJK Strokes (0/16) (0/16) (0/16)
+U+31f0 Katakana Phonetic Extensions (0/16) (0/16) (0/16)
+U+3200 Enclosed CJK Letters and Months (0/242) (0/242) (0/242)
+U+3300 CJK Compatibility (0/256) (0/256) (0/256)
+U+3400 CJK Unified Ideographs Extension A (0/0) (0/0) (0/0)
+U+4dc0 Yijing Hexagram Symbols 100% (64/64) (0/64) (0/64)
+U+4e00 CJK Unified Ideographs (0/0) (0/0) (0/0)
+U+a000 Yi Syllables (0/1165) (0/1165) (0/1165)
+U+a490 Yi Radicals (0/55) (0/55) (0/55)
+U+a700 Modifier Tone Letters 18% (5/27) (0/27) (0/27)
+U+a720 Latin Extended-D (0/2) (0/2) (0/2)
+U+a800 Syloti Nagri (0/44) (0/44) (0/44)
+U+a840 Phags-pa (0/56) (0/56) (0/56)
+U+ac00 Hangul Syllables (0/0) (0/0) (0/0)
+U+d800 High Surrogates (0/0) (0/0) (0/0)
+U+db80 High Private Use Surrogates (0/0) (0/0) (0/0)
+U+dc00 Low Surrogates (0/0) (0/0) (0/0)
+U+e000 Private Use Area (0/0) (0/0) (0/0)
+U+f900 CJK Compatibility Ideographs (0/467) (0/467) (0/467)
+U+fb00 Alphabetic Presentation Forms 100% (58/58) 12% (7/58) 3% (2/58)
+U+fb50 Arabic Presentation Forms-A 11% (70/595) (0/595) 12% (72/595)
+U+fe00 Variation Selectors 100% (16/16) 100% (16/16) (0/16)
+U+fe10 Vertical Forms (0/10) (0/10) (0/10)
+U+fe20 Combining Half Marks 100% (4/4) (0/4) (0/4)
+U+fe30 CJK Compatibility Forms (0/32) (0/32) (0/32)
+U+fe50 Small Form Variants (0/26) (0/26) (0/26)
+U+fe70 Arabic Presentation Forms-B 100% (141/141) (0/141) 100% (141/141)
+U+ff00 Halfwidth and Fullwidth Forms (0/225) (0/225) (0/225)
+U+fff0 Specials 100% (5/5) 100% (5/5) 100% (5/5)
+U+10000 Linear B Syllabary (0/88) (0/88) (0/88)
+U+10080 Linear B Ideograms (0/123) (0/123) (0/123)
+U+10100 Aegean Numbers (0/57) (0/57) (0/57)
+U+10140 Ancient Greek Numbers (0/75) (0/75) (0/75)
+U+10300 Old Italic (0/35) (0/35) (0/35)
+U+10330 Gothic (0/27) (0/27) (0/27)
+U+10380 Ugaritic (0/31) (0/31) (0/31)
+U+103a0 Old Persian (0/50) (0/50) (0/50)
+U+10400 Deseret (0/80) (0/80) (0/80)
+U+10450 Shavian (0/48) (0/48) (0/48)
+U+10480 Osmanya (0/40) (0/40) (0/40)
+U+10800 Cypriot Syllabary (0/55) (0/55) (0/55)
+U+10900 Phoenician (0/27) (0/27) (0/27)
+U+10a00 Kharoshthi (0/65) (0/65) (0/65)
+U+12000 Cuneiform (0/879) (0/879) (0/879)
+U+12400 Cuneiform Numbers and Punctuation (0/103) (0/103) (0/103)
+U+1d000 Byzantine Musical Symbols (0/246) (0/246) (0/246)
+U+1d100 Musical Symbols (0/219) (0/219) (0/219)
+U+1d200 Ancient Greek Musical Notation (0/70) (0/70) (0/70)
+U+1d300 Tai Xuan Jing Symbols 100% (87/87) (0/87) (0/87)
+U+1d360 Counting Rod Numerals (0/18) (0/18) (0/18)
+U+1d400 Mathematical Alphanumeric Symbols 10% (107/996) 5% (55/996) 6% (62/996)
+U+20000 CJK Unified Ideographs Extension B (0/0) (0/0) (0/0)
+U+2f800 CJK Compatibility Ideographs Supplement (0/542) (0/542) (0/542)
+U+e0000 Tags (0/98) (0/98) (0/98)
+U+e0100 Variation Selectors Supplement (0/240) (0/240) (0/240)
+U+f0000 Supplementary Private Use Area-A (0/0) (0/0) (0/0)
+U+100000 Supplementary Private Use Area-B (0/0) (0/0) (0/0)
diff --git a/lib/tcpdf/fonts/dejavusans-extralight.ctg.z b/lib/tcpdf/fonts/dejavusans-extralight.ctg.z
new file mode 100644
index 0000000000..b775710e71
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusans-extralight.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusans-extralight.php b/lib/tcpdf/fonts/dejavusans-extralight.php
new file mode 100644
index 0000000000..493af13958
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusans-extralight.php
@@ -0,0 +1,119 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>32,'FontBBox'=>'[-733 -339 1659 1114]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>600, 32=>318, 33=>401, 34=>460, 35=>838, 36=>636, 37=>950, 38=>780, 39=>275, 40=>390, 41=>390, 42=>500, 43=>838, 44=>318, 45=>361, 46=>318,
+ 47=>337, 48=>636, 49=>636, 50=>636, 51=>636, 52=>636, 53=>636, 54=>636, 55=>636, 56=>636, 57=>636, 58=>337, 59=>337, 60=>838, 61=>838, 62=>838,
+ 63=>531, 64=>1000, 65=>684, 66=>655, 67=>698, 68=>770, 69=>632, 70=>575, 71=>775, 72=>752, 73=>295, 74=>295, 75=>656, 76=>557, 77=>863, 78=>748,
+ 79=>787, 80=>603, 81=>787, 82=>695, 83=>635, 84=>611, 85=>732, 86=>684, 87=>989, 88=>685, 89=>611, 90=>685, 91=>390, 92=>337, 93=>390, 94=>838,
+ 95=>500, 96=>500, 97=>613, 98=>635, 99=>550, 100=>635, 101=>615, 102=>352, 103=>600, 104=>634, 105=>278, 106=>278, 107=>579, 108=>278, 109=>974, 110=>634,
+ 111=>612, 112=>635, 113=>635, 114=>411, 115=>521, 116=>392, 117=>634, 118=>592, 119=>818, 120=>592, 121=>592, 122=>525, 123=>636, 124=>337, 125=>636, 126=>838,
+ 8364=>636, 1027=>557, 8218=>318, 402=>352, 8222=>518, 8230=>1000, 8224=>500, 8225=>500, 710=>500, 8240=>1342, 352=>635, 8249=>400, 338=>1070, 1036=>674, 381=>685, 1039=>752,
+ 8216=>318, 8217=>318, 8220=>518, 8221=>518, 8211=>500, 8212=>1000, 732=>500, 353=>521, 8250=>400, 339=>1023, 1116=>594, 382=>525, 376=>611, 160=>318, 161=>401, 162=>636,
+ 163=>636, 164=>636, 165=>636, 166=>337, 167=>500, 168=>500, 169=>1000, 170=>471, 171=>612, 172=>838, 173=>361, 174=>1000, 175=>500, 176=>500, 177=>838, 178=>401,
+ 179=>401, 180=>483, 181=>636, 182=>636, 183=>318, 184=>500, 185=>401, 186=>471, 187=>612, 188=>969, 189=>969, 190=>969, 191=>536, 192=>684, 193=>684, 194=>684,
+ 195=>684, 196=>684, 197=>684, 198=>974, 199=>698, 200=>632, 201=>632, 202=>632, 203=>632, 204=>295, 205=>295, 206=>295, 207=>295, 208=>775, 209=>748, 210=>787,
+ 211=>787, 212=>787, 213=>787, 214=>787, 215=>838, 216=>787, 217=>732, 218=>732, 219=>732, 220=>732, 221=>611, 222=>605, 223=>676, 224=>613, 225=>613, 226=>613,
+ 227=>613, 228=>613, 229=>613, 230=>982, 231=>550, 232=>615, 233=>615, 234=>615, 235=>615, 236=>278, 237=>278, 238=>278, 239=>278, 240=>612, 241=>634, 242=>612,
+ 243=>612, 244=>612, 245=>612, 246=>612, 247=>838, 248=>612, 249=>634, 250=>634, 251=>634, 252=>634, 253=>592, 254=>635, 255=>592, 256=>684, 257=>613, 258=>684,
+ 259=>613, 260=>684, 261=>613, 262=>698, 263=>550, 264=>698, 265=>550, 266=>698, 267=>550, 268=>698, 269=>550, 270=>770, 271=>635, 272=>775, 273=>635, 274=>632,
+ 275=>615, 276=>632, 277=>615, 278=>632, 279=>615, 280=>632, 281=>615, 282=>632, 283=>615, 284=>775, 285=>600, 286=>775, 287=>600, 288=>775, 289=>600, 290=>775,
+ 291=>600, 292=>752, 293=>634, 294=>916, 295=>695, 296=>295, 297=>278, 298=>295, 299=>278, 300=>295, 301=>278, 302=>295, 303=>278, 304=>295, 305=>278, 306=>590,
+ 307=>556, 308=>295, 309=>278, 310=>656, 311=>579, 312=>579, 313=>557, 314=>293, 315=>557, 316=>278, 317=>557, 318=>375, 319=>557, 320=>342, 321=>562, 322=>284,
+ 323=>748, 324=>634, 325=>748, 326=>634, 327=>748, 328=>634, 329=>813, 330=>757, 331=>634, 332=>787, 333=>612, 334=>787, 335=>612, 336=>787, 337=>612, 340=>695,
+ 341=>411, 342=>695, 343=>411, 344=>695, 345=>411, 346=>635, 347=>521, 348=>635, 349=>521, 350=>635, 351=>521, 354=>611, 355=>392, 356=>611, 357=>392, 358=>611,
+ 359=>392, 360=>732, 361=>634, 362=>732, 363=>634, 364=>732, 365=>634, 366=>732, 367=>634, 368=>732, 369=>634, 370=>732, 371=>634, 372=>989, 373=>818, 374=>611,
+ 375=>592, 377=>685, 378=>525, 379=>685, 380=>525, 383=>352, 384=>635, 385=>735, 386=>686, 387=>635, 390=>698, 391=>698, 392=>550, 393=>775, 394=>824, 395=>686,
+ 396=>635, 397=>612, 398=>632, 399=>787, 400=>585, 401=>575, 403=>775, 404=>685, 405=>965, 406=>354, 407=>295, 408=>690, 409=>526, 410=>278, 413=>748, 414=>634,
+ 415=>787, 416=>934, 417=>757, 420=>652, 421=>635, 423=>635, 424=>521, 425=>632, 427=>392, 428=>611, 429=>392, 430=>611, 431=>879, 432=>779, 433=>764, 434=>721,
+ 435=>696, 436=>805, 437=>685, 438=>525, 448=>295, 449=>492, 450=>459, 451=>295, 452=>1422, 453=>1299, 454=>1154, 455=>835, 456=>787, 457=>457, 458=>931, 459=>924,
+ 460=>797, 461=>684, 462=>613, 463=>295, 464=>278, 465=>787, 466=>612, 467=>732, 468=>634, 469=>732, 470=>634, 471=>732, 472=>634, 473=>732, 474=>634, 475=>732,
+ 476=>634, 477=>615, 478=>684, 479=>613, 480=>684, 481=>613, 482=>974, 483=>982, 486=>775, 487=>600, 488=>656, 489=>579, 490=>787, 491=>612, 492=>787, 493=>612,
+ 496=>278, 497=>1422, 498=>1299, 499=>1154, 500=>775, 501=>600, 504=>748, 505=>634, 506=>684, 507=>613, 508=>974, 509=>982, 510=>787, 511=>612, 512=>684, 513=>613,
+ 514=>684, 515=>613, 516=>632, 517=>615, 518=>632, 519=>615, 520=>295, 521=>278, 522=>295, 523=>278, 524=>787, 525=>612, 526=>787, 527=>612, 528=>695, 529=>411,
+ 530=>695, 531=>411, 532=>732, 533=>634, 534=>732, 535=>634, 536=>635, 537=>521, 538=>611, 539=>392, 542=>752, 543=>634, 548=>685, 549=>525, 550=>684, 551=>613,
+ 552=>632, 553=>615, 554=>787, 555=>612, 556=>787, 557=>612, 558=>787, 559=>612, 560=>787, 561=>612, 562=>611, 563=>592, 567=>278, 568=>1032, 569=>1032, 581=>684,
+ 584=>295, 585=>278, 587=>635, 592=>614, 593=>635, 594=>635, 595=>635, 596=>550, 598=>635, 599=>727, 600=>615, 601=>615, 603=>541, 604=>541, 607=>326, 608=>637,
+ 609=>635, 611=>685, 613=>634, 614=>634, 615=>634, 616=>278, 617=>387, 618=>372, 621=>387, 623=>974, 624=>974, 625=>974, 626=>634, 627=>634, 628=>634, 629=>612,
+ 632=>660, 633=>411, 634=>411, 635=>411, 636=>411, 637=>411, 638=>530, 639=>530, 640=>602, 641=>602, 642=>521, 643=>336, 647=>392, 648=>392, 649=>634, 650=>618,
+ 651=>598, 652=>592, 653=>818, 654=>592, 665=>580, 668=>654, 670=>667, 671=>583, 675=>1014, 678=>824, 679=>610, 681=>848, 682=>641, 683=>654, 686=>661, 687=>664,
+ 699=>318, 700=>318, 702=>307, 711=>500, 713=>500, 714=>483, 715=>500, 717=>500, 718=>500, 719=>483, 728=>500, 729=>500, 730=>500, 731=>500, 733=>500, 741=>493,
+ 742=>493, 743=>493, 744=>493, 745=>493, 755=>500, 759=>500, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0,
+ 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 795=>0, 803=>0,
+ 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0,
+ 823=>0, 824=>0, 831=>0, 847=>0, 856=>0, 860=>0, 861=>0, 865=>0, 884=>278, 885=>278, 890=>361, 891=>549, 892=>550, 893=>549, 894=>337, 900=>483,
+ 901=>500, 902=>692, 903=>318, 904=>746, 905=>871, 906=>408, 908=>813, 910=>825, 911=>826, 912=>387, 913=>684, 914=>655, 915=>557, 916=>684, 917=>632, 918=>685,
+ 919=>752, 920=>787, 921=>295, 922=>656, 923=>684, 924=>863, 925=>748, 926=>632, 927=>787, 928=>752, 929=>603, 931=>632, 932=>611, 933=>611, 934=>860, 935=>685,
+ 936=>787, 937=>764, 938=>295, 939=>611, 940=>659, 941=>541, 942=>654, 943=>387, 944=>579, 945=>659, 946=>638, 947=>592, 948=>612, 949=>541, 950=>544, 951=>634,
+ 952=>612, 953=>387, 954=>594, 955=>592, 956=>636, 957=>559, 958=>558, 959=>612, 960=>602, 961=>635, 962=>587, 963=>634, 964=>602, 965=>579, 966=>660, 967=>592,
+ 968=>660, 969=>837, 970=>387, 971=>579, 972=>612, 973=>579, 974=>837, 981=>660, 982=>837, 984=>787, 985=>612, 988=>575, 1010=>550, 1011=>278, 1012=>787, 1013=>615,
+ 1014=>615, 1015=>605, 1016=>635, 1017=>698, 1021=>698, 1022=>698, 1023=>698, 1024=>632, 1025=>632, 1026=>786, 1028=>698, 1029=>635, 1030=>295, 1031=>295, 1032=>295, 1033=>1094,
+ 1034=>1045, 1035=>786, 1037=>755, 1038=>609, 1040=>684, 1041=>686, 1042=>655, 1043=>557, 1044=>776, 1045=>632, 1046=>1040, 1047=>636, 1048=>755, 1049=>755, 1050=>674, 1051=>752,
+ 1052=>863, 1053=>752, 1054=>787, 1055=>752, 1056=>603, 1057=>698, 1058=>611, 1059=>609, 1060=>860, 1061=>685, 1062=>776, 1063=>686, 1064=>1068, 1065=>1094, 1066=>833, 1067=>882,
+ 1068=>686, 1069=>698, 1070=>1031, 1071=>695, 1072=>613, 1073=>612, 1074=>586, 1075=>491, 1076=>677, 1077=>615, 1078=>908, 1079=>541, 1080=>659, 1081=>659, 1082=>594, 1083=>639,
+ 1084=>754, 1085=>654, 1086=>612, 1087=>654, 1088=>635, 1089=>550, 1090=>549, 1091=>592, 1092=>854, 1093=>592, 1094=>681, 1095=>591, 1096=>917, 1097=>938, 1098=>727, 1099=>765,
+ 1100=>589, 1101=>549, 1102=>813, 1103=>592, 1104=>615, 1105=>615, 1106=>625, 1107=>491, 1108=>549, 1109=>521, 1110=>278, 1111=>278, 1112=>278, 1113=>898, 1114=>892, 1115=>652,
+ 1117=>659, 1118=>592, 1119=>662, 1121=>837, 1122=>769, 1123=>667, 1124=>942, 1125=>749, 1136=>787, 1137=>660, 1138=>787, 1168=>557, 1169=>491, 1176=>636, 1177=>541, 1184=>856,
+ 1185=>832, 1188=>1014, 1189=>868, 1194=>698, 1195=>550, 1198=>611, 1199=>592, 1204=>934, 1205=>809, 1210=>686, 1211=>634, 1216=>278, 1217=>1040, 1218=>908, 1223=>752, 1224=>654,
+ 1232=>684, 1233=>613, 1234=>684, 1235=>613, 1236=>974, 1237=>982, 1238=>632, 1239=>615, 1240=>787, 1241=>615, 1242=>787, 1243=>615, 1244=>1040, 1245=>908, 1246=>636, 1247=>541,
+ 1250=>755, 1251=>659, 1252=>755, 1253=>659, 1254=>787, 1255=>612, 1256=>787, 1257=>612, 1258=>787, 1259=>612, 1260=>698, 1261=>549, 1262=>609, 1263=>592, 1264=>609, 1265=>592,
+ 1266=>609, 1267=>592, 1268=>686, 1269=>591, 1272=>882, 1273=>765, 1278=>685, 1279=>592, 1280=>686, 1281=>589, 1296=>585, 1297=>541, 1298=>752, 1299=>639, 1306=>787, 1307=>635,
+ 1308=>989, 1309=>818, 1352=>732, 1357=>732, 1359=>635, 1360=>732, 1363=>860, 1365=>787, 1370=>318, 1373=>392, 1377=>974, 1378=>634, 1379=>762, 1380=>767, 1381=>634, 1382=>697,
+ 1384=>634, 1387=>634, 1388=>404, 1389=>894, 1391=>634, 1392=>634, 1394=>702, 1397=>278, 1400=>634, 1402=>974, 1404=>769, 1405=>634, 1406=>696, 1407=>1002, 1408=>634, 1409=>600,
+ 1410=>501, 1411=>1002, 1413=>612, 1415=>763, 1417=>337, 1652=>292, 7426=>982, 7428=>550, 7433=>278, 7435=>604, 7437=>754, 7438=>650, 7439=>612, 7440=>550, 7441=>684, 7442=>684,
+ 7443=>684, 7444=>1023, 7446=>612, 7447=>612, 7449=>592, 7450=>592, 7456=>592, 7457=>818, 7458=>525, 7462=>525, 7463=>592, 7464=>654, 7467=>639, 7543=>635, 7680=>684, 7681=>613,
+ 7682=>655, 7683=>635, 7684=>655, 7685=>635, 7686=>655, 7687=>635, 7688=>698, 7689=>550, 7690=>770, 7691=>635, 7692=>770, 7693=>635, 7694=>770, 7695=>635, 7696=>770, 7697=>635,
+ 7698=>770, 7699=>635, 7700=>632, 7701=>615, 7702=>632, 7703=>615, 7704=>632, 7705=>615, 7706=>632, 7707=>615, 7708=>632, 7709=>615, 7710=>575, 7711=>352, 7712=>775, 7713=>600,
+ 7714=>752, 7715=>634, 7716=>752, 7717=>634, 7718=>752, 7719=>634, 7720=>752, 7721=>634, 7722=>752, 7723=>634, 7724=>295, 7725=>278, 7726=>295, 7727=>278, 7728=>656, 7729=>579,
+ 7730=>656, 7731=>579, 7732=>656, 7733=>579, 7734=>557, 7735=>288, 7736=>557, 7737=>288, 7738=>557, 7739=>278, 7740=>557, 7741=>278, 7742=>863, 7743=>974, 7744=>863, 7745=>974,
+ 7746=>863, 7747=>974, 7748=>748, 7749=>634, 7750=>748, 7751=>634, 7752=>748, 7753=>634, 7754=>748, 7755=>634, 7756=>787, 7757=>612, 7758=>787, 7759=>612, 7760=>787, 7761=>612,
+ 7762=>787, 7763=>612, 7764=>603, 7765=>635, 7766=>603, 7767=>635, 7768=>695, 7769=>411, 7770=>695, 7771=>411, 7772=>695, 7773=>411, 7774=>695, 7775=>411, 7776=>635, 7777=>521,
+ 7778=>635, 7779=>521, 7780=>635, 7781=>521, 7782=>635, 7783=>521, 7784=>635, 7785=>521, 7786=>611, 7787=>392, 7788=>611, 7789=>392, 7790=>611, 7791=>392, 7792=>611, 7793=>392,
+ 7794=>732, 7795=>634, 7796=>732, 7797=>634, 7798=>732, 7799=>634, 7800=>732, 7801=>634, 7802=>732, 7803=>634, 7804=>684, 7805=>592, 7806=>684, 7807=>592, 7808=>989, 7809=>818,
+ 7810=>989, 7811=>818, 7812=>989, 7813=>818, 7814=>989, 7815=>818, 7816=>989, 7817=>818, 7818=>685, 7819=>592, 7820=>685, 7821=>592, 7822=>611, 7823=>592, 7824=>685, 7825=>525,
+ 7826=>685, 7827=>525, 7828=>685, 7829=>525, 7830=>634, 7831=>392, 7832=>818, 7833=>592, 7834=>613, 7835=>352, 7839=>612, 7840=>684, 7841=>613, 7842=>684, 7843=>613, 7844=>684,
+ 7845=>613, 7846=>684, 7847=>613, 7848=>684, 7849=>613, 7850=>684, 7851=>613, 7852=>684, 7853=>613, 7854=>684, 7855=>613, 7856=>684, 7857=>613, 7858=>684, 7859=>613, 7860=>684,
+ 7861=>613, 7862=>684, 7863=>613, 7864=>632, 7865=>615, 7866=>632, 7867=>615, 7868=>632, 7869=>615, 7870=>632, 7871=>615, 7872=>632, 7873=>615, 7874=>632, 7875=>615, 7876=>632,
+ 7877=>615, 7878=>632, 7879=>615, 7880=>295, 7881=>278, 7882=>295, 7883=>278, 7884=>787, 7885=>612, 7886=>787, 7887=>612, 7888=>787, 7889=>612, 7890=>787, 7891=>612, 7892=>787,
+ 7893=>612, 7894=>787, 7895=>612, 7896=>787, 7897=>612, 7898=>934, 7899=>757, 7900=>934, 7901=>757, 7902=>934, 7903=>757, 7904=>934, 7905=>757, 7906=>934, 7907=>757, 7908=>732,
+ 7909=>634, 7910=>732, 7911=>634, 7912=>879, 7913=>779, 7914=>879, 7915=>779, 7916=>879, 7917=>779, 7918=>879, 7919=>779, 7920=>879, 7921=>779, 7922=>611, 7923=>592, 7924=>611,
+ 7925=>592, 7926=>611, 7927=>592, 7928=>611, 7929=>592, 7936=>659, 7937=>659, 7938=>659, 7939=>659, 7940=>659, 7941=>659, 7942=>659, 7943=>659, 7944=>684, 7945=>684, 7946=>877,
+ 7947=>877, 7948=>769, 7949=>801, 7950=>708, 7951=>743, 7952=>541, 7953=>541, 7954=>541, 7955=>541, 7956=>541, 7957=>541, 7960=>711, 7961=>711, 7962=>966, 7963=>975, 7964=>898,
+ 7965=>928, 7968=>634, 7969=>634, 7970=>634, 7971=>634, 7972=>634, 7973=>634, 7974=>634, 7975=>634, 7976=>837, 7977=>835, 7978=>1086, 7979=>1089, 7980=>1027, 7981=>1051, 7982=>934,
+ 7983=>947, 7984=>338, 7985=>338, 7986=>338, 7987=>338, 7988=>338, 7989=>338, 7990=>338, 7991=>338, 7992=>380, 7993=>374, 7994=>635, 7995=>635, 7996=>570, 7997=>600, 7998=>489,
+ 7999=>493, 8000=>612, 8001=>612, 8002=>612, 8003=>612, 8004=>612, 8005=>612, 8008=>804, 8009=>848, 8010=>1095, 8011=>1100, 8012=>938, 8013=>970, 8016=>579, 8017=>579, 8018=>579,
+ 8019=>579, 8020=>579, 8021=>579, 8022=>579, 8023=>579, 8025=>784, 8027=>998, 8029=>1012, 8031=>897, 8032=>837, 8033=>837, 8034=>837, 8035=>837, 8036=>837, 8037=>837, 8038=>837,
+ 8039=>837, 8040=>802, 8041=>843, 8042=>1089, 8043=>1095, 8044=>946, 8045=>972, 8046=>921, 8047=>952, 8048=>659, 8049=>659, 8050=>541, 8051=>548, 8052=>634, 8053=>654, 8054=>338,
+ 8055=>338, 8056=>612, 8057=>612, 8058=>579, 8059=>579, 8060=>837, 8061=>837, 8064=>659, 8065=>659, 8066=>659, 8067=>659, 8068=>659, 8069=>659, 8070=>659, 8071=>659, 8072=>684,
+ 8073=>684, 8074=>877, 8075=>877, 8076=>769, 8077=>801, 8078=>708, 8079=>743, 8080=>634, 8081=>634, 8082=>634, 8083=>634, 8084=>634, 8085=>634, 8086=>634, 8087=>634, 8088=>837,
+ 8089=>835, 8090=>1086, 8091=>1089, 8092=>1027, 8093=>1051, 8094=>934, 8095=>947, 8096=>837, 8097=>837, 8098=>837, 8099=>837, 8100=>837, 8101=>837, 8102=>837, 8103=>837, 8104=>802,
+ 8105=>843, 8106=>1089, 8107=>1095, 8108=>946, 8109=>972, 8110=>921, 8111=>952, 8112=>659, 8113=>659, 8114=>659, 8115=>659, 8116=>659, 8118=>659, 8119=>659, 8120=>684, 8121=>684,
+ 8122=>716, 8123=>692, 8124=>684, 8125=>500, 8126=>500, 8127=>500, 8128=>500, 8129=>500, 8130=>634, 8131=>634, 8132=>654, 8134=>634, 8135=>634, 8136=>805, 8137=>746, 8138=>931,
+ 8139=>871, 8140=>752, 8141=>500, 8142=>500, 8143=>500, 8144=>338, 8145=>338, 8146=>338, 8147=>338, 8150=>338, 8151=>338, 8152=>295, 8153=>295, 8154=>475, 8155=>408, 8157=>500,
+ 8158=>500, 8159=>500, 8160=>579, 8161=>579, 8162=>579, 8163=>579, 8164=>635, 8165=>635, 8166=>579, 8167=>579, 8168=>611, 8169=>611, 8170=>845, 8171=>825, 8172=>685, 8173=>500,
+ 8174=>500, 8175=>500, 8178=>837, 8179=>837, 8180=>837, 8182=>837, 8183=>837, 8184=>941, 8185=>813, 8186=>922, 8187=>826, 8188=>764, 8189=>500, 8190=>500, 8192=>500, 8193=>1000,
+ 8194=>500, 8195=>1000, 8196=>330, 8197=>250, 8198=>167, 8199=>636, 8200=>318, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0, 8206=>0, 8207=>0, 8208=>361, 8209=>361,
+ 8210=>636, 8213=>1000, 8214=>500, 8215=>500, 8219=>318, 8223=>518, 8228=>334, 8229=>667, 8234=>0, 8235=>0, 8236=>0, 8237=>0, 8238=>0, 8239=>200, 8241=>1735, 8251=>838,
+ 8252=>485, 8253=>531, 8254=>500, 8255=>804, 8256=>804, 8258=>1000, 8259=>500, 8260=>167, 8261=>390, 8262=>390, 8263=>922, 8264=>733, 8265=>733, 8267=>636, 8268=>500, 8269=>500,
+ 8270=>500, 8271=>337, 8272=>804, 8273=>500, 8274=>450, 8275=>838, 8276=>804, 8287=>222, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0, 8299=>0, 8300=>0,
+ 8301=>0, 8302=>0, 8303=>0, 8304=>401, 8305=>179, 8308=>401, 8320=>401, 8321=>401, 8322=>401, 8323=>401, 8324=>401, 8363=>636, 8369=>635, 8451=>1123, 8457=>952, 8462=>634,
+ 8470=>1165, 8471=>1000, 8486=>764, 8487=>764, 8490=>656, 8491=>684, 8494=>854, 8498=>575, 8500=>462, 8523=>780, 8531=>969, 8532=>969, 8543=>568, 8544=>295, 8545=>492, 8546=>689,
+ 8547=>923, 8548=>684, 8549=>922, 8550=>1120, 8551=>1317, 8552=>917, 8553=>685, 8554=>933, 8555=>1131, 8556=>557, 8557=>698, 8558=>770, 8559=>863, 8560=>278, 8561=>458, 8562=>637,
+ 8563=>812, 8564=>592, 8565=>811, 8566=>991, 8567=>1170, 8568=>819, 8569=>592, 8570=>822, 8571=>1002, 8572=>278, 8573=>550, 8574=>635, 8575=>974, 8576=>1285, 8579=>698, 8580=>549,
+ 8592=>838, 8593=>838, 8594=>838, 8595=>838, 8596=>838, 8597=>838, 8598=>838, 8599=>838, 8600=>838, 8601=>838, 8644=>838, 8645=>838, 8646=>838, 8647=>838, 8648=>838, 8649=>838,
+ 8650=>838, 8704=>684, 8707=>632, 8710=>684, 8711=>684, 8722=>838, 8725=>167, 8726=>637, 8727=>626, 8728=>626, 8756=>636, 8757=>636, 8758=>260, 8759=>636, 8764=>636, 9134=>521,
+ 9167=>945, 10731=>494, 10799=>838, 11374=>863, 11375=>684, 11381=>654, 11382=>568, 11383=>660, 11800=>536, 11822=>531, 42564=>635, 42565=>521, 42566=>354, 42567=>387, 42576=>1029, 42577=>906,
+ 42580=>1031, 42581=>813, 42770=>493, 42771=>493, 42772=>493, 42773=>493, 42774=>493, 42790=>752, 42791=>634, 42800=>491, 42801=>521, 42802=>1250, 42803=>985, 42814=>703, 42815=>549, 42822=>680,
+ 42823=>392, 42830=>1358, 42831=>1019, 42880=>557, 42881=>278, 43003=>575, 43004=>603, 43005=>863, 43006=>295, 43007=>1199, 57344=>684, 57345=>684, 57346=>684, 57347=>684, 57348=>684, 57349=>684,
+ 57351=>684, 57352=>684, 57353=>684, 57354=>684, 57355=>684, 57356=>684, 57357=>684, 57358=>684, 57359=>684, 57360=>684, 57361=>684, 57362=>684, 57363=>684, 57364=>684, 63173=>612, 64256=>689,
+ 64257=>630, 64258=>630, 64259=>967, 64260=>967, 64297=>838, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0, 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0,
+ 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65533=>1025);
+$enc='';
+$diff='';
+$file='dejavusans-extralight.z';
+$ctg='dejavusans-extralight.ctg.z';
+$originalsize=319184;
+?>
diff --git a/lib/tcpdf/fonts/dejavusans-extralight.z b/lib/tcpdf/fonts/dejavusans-extralight.z
new file mode 100644
index 0000000000..6c2ca5fe7f
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusans-extralight.z differ
diff --git a/lib/tcpdf/fonts/dejavusans.ctg.z b/lib/tcpdf/fonts/dejavusans.ctg.z
new file mode 100644
index 0000000000..61fdec50d8
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusans.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusans.php b/lib/tcpdf/fonts/dejavusans.php
new file mode 100644
index 0000000000..d45720f6f8
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusans.php
@@ -0,0 +1,322 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>96,'FontBBox'=>'[-1021 -356 1681 1167]','ItalicAngle'=>20.8,'StemV'=>70,'MissingWidth'=>600);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>600, 32=>318, 33=>401, 34=>460, 35=>838, 36=>636, 37=>950, 38=>780, 39=>275, 40=>390, 41=>390, 42=>500, 43=>838, 44=>318, 45=>361, 46=>318,
+ 47=>337, 48=>636, 49=>636, 50=>636, 51=>636, 52=>636, 53=>636, 54=>636, 55=>636, 56=>636, 57=>636, 58=>337, 59=>337, 60=>838, 61=>838, 62=>838,
+ 63=>531, 64=>1000, 65=>684, 66=>686, 67=>698, 68=>770, 69=>632, 70=>575, 71=>775, 72=>752, 73=>295, 74=>295, 75=>656, 76=>557, 77=>863, 78=>748,
+ 79=>787, 80=>603, 81=>787, 82=>695, 83=>635, 84=>611, 85=>732, 86=>684, 87=>989, 88=>685, 89=>611, 90=>685, 91=>390, 92=>337, 93=>390, 94=>838,
+ 95=>500, 96=>500, 97=>613, 98=>635, 99=>550, 100=>635, 101=>615, 102=>352, 103=>635, 104=>634, 105=>278, 106=>278, 107=>579, 108=>278, 109=>974, 110=>634,
+ 111=>612, 112=>635, 113=>635, 114=>411, 115=>521, 116=>392, 117=>634, 118=>592, 119=>818, 120=>592, 121=>592, 122=>525, 123=>636, 124=>337, 125=>636, 126=>838,
+ 8364=>636, 1027=>610, 8218=>318, 402=>352, 8222=>518, 8230=>1000, 8224=>500, 8225=>500, 710=>500, 8240=>1342, 352=>635, 8249=>400, 338=>1070, 1036=>710, 381=>685, 1039=>752,
+ 8216=>318, 8217=>318, 8220=>518, 8221=>518, 8226=>590, 8211=>500, 8212=>1000, 732=>500, 8482=>1000, 353=>521, 8250=>400, 339=>1023, 1116=>604, 382=>525, 376=>611, 160=>318,
+ 161=>401, 162=>636, 163=>636, 164=>636, 165=>636, 166=>337, 167=>500, 168=>500, 169=>1000, 170=>471, 171=>612, 172=>838, 173=>361, 174=>1000, 175=>500, 176=>500,
+ 177=>838, 178=>401, 179=>401, 180=>500, 181=>636, 182=>636, 183=>318, 184=>500, 185=>401, 186=>471, 187=>612, 188=>969, 189=>969, 190=>969, 191=>531, 192=>684,
+ 193=>684, 194=>684, 195=>684, 196=>684, 197=>684, 198=>974, 199=>698, 200=>632, 201=>632, 202=>632, 203=>632, 204=>295, 205=>295, 206=>295, 207=>295, 208=>775,
+ 209=>748, 210=>787, 211=>787, 212=>787, 213=>787, 214=>787, 215=>838, 216=>787, 217=>732, 218=>732, 219=>732, 220=>732, 221=>611, 222=>605, 223=>630, 224=>613,
+ 225=>613, 226=>613, 227=>613, 228=>613, 229=>613, 230=>982, 231=>550, 232=>615, 233=>615, 234=>615, 235=>615, 236=>278, 237=>278, 238=>278, 239=>278, 240=>612,
+ 241=>634, 242=>612, 243=>612, 244=>612, 245=>612, 246=>612, 247=>838, 248=>612, 249=>634, 250=>634, 251=>634, 252=>634, 253=>592, 254=>635, 255=>592, 256=>684,
+ 257=>613, 258=>684, 259=>613, 260=>684, 261=>613, 262=>698, 263=>550, 264=>698, 265=>550, 266=>698, 267=>550, 268=>698, 269=>550, 270=>770, 271=>635, 272=>775,
+ 273=>635, 274=>632, 275=>615, 276=>632, 277=>615, 278=>632, 279=>615, 280=>632, 281=>615, 282=>632, 283=>615, 284=>775, 285=>635, 286=>775, 287=>635, 288=>775,
+ 289=>635, 290=>775, 291=>635, 292=>752, 293=>634, 294=>916, 295=>695, 296=>295, 297=>278, 298=>295, 299=>278, 300=>295, 301=>278, 302=>295, 303=>278, 304=>295,
+ 305=>278, 306=>590, 307=>556, 308=>295, 309=>278, 310=>656, 311=>579, 312=>579, 313=>557, 314=>293, 315=>557, 316=>278, 317=>557, 318=>375, 319=>557, 320=>342,
+ 321=>562, 322=>284, 323=>748, 324=>634, 325=>748, 326=>634, 327=>748, 328=>634, 329=>813, 330=>748, 331=>634, 332=>787, 333=>612, 334=>787, 335=>612, 336=>787,
+ 337=>612, 340=>695, 341=>411, 342=>695, 343=>411, 344=>695, 345=>411, 346=>635, 347=>521, 348=>635, 349=>521, 350=>635, 351=>521, 354=>611, 355=>392, 356=>611,
+ 357=>392, 358=>611, 359=>392, 360=>732, 361=>634, 362=>732, 363=>634, 364=>732, 365=>634, 366=>732, 367=>634, 368=>732, 369=>634, 370=>732, 371=>634, 372=>989,
+ 373=>818, 374=>611, 375=>592, 377=>685, 378=>525, 379=>685, 380=>525, 383=>352, 384=>635, 385=>735, 386=>686, 387=>635, 388=>686, 389=>635, 390=>703, 391=>698,
+ 392=>550, 393=>775, 394=>819, 395=>686, 396=>635, 397=>612, 398=>632, 399=>787, 400=>614, 401=>575, 403=>775, 404=>687, 405=>984, 406=>354, 407=>295, 408=>746,
+ 409=>579, 410=>278, 411=>592, 412=>974, 413=>748, 414=>634, 415=>787, 416=>913, 417=>612, 418=>949, 419=>759, 420=>652, 421=>635, 422=>695, 423=>635, 424=>521,
+ 425=>632, 426=>336, 427=>392, 428=>611, 429=>392, 430=>611, 431=>858, 432=>634, 433=>764, 434=>721, 435=>744, 436=>730, 437=>685, 438=>525, 439=>666, 440=>666,
+ 441=>578, 442=>525, 443=>636, 444=>666, 445=>578, 446=>510, 447=>635, 448=>295, 449=>492, 450=>459, 451=>295, 452=>1422, 453=>1299, 454=>1154, 455=>835, 456=>787,
+ 457=>457, 458=>931, 459=>924, 460=>797, 461=>684, 462=>613, 463=>295, 464=>278, 465=>787, 466=>612, 467=>732, 468=>634, 469=>732, 470=>634, 471=>732, 472=>634,
+ 473=>732, 474=>634, 475=>732, 476=>634, 477=>615, 478=>684, 479=>613, 480=>684, 481=>613, 482=>974, 483=>982, 484=>775, 485=>635, 486=>775, 487=>635, 488=>656,
+ 489=>579, 490=>787, 491=>612, 492=>787, 493=>612, 494=>666, 495=>578, 496=>278, 497=>1422, 498=>1299, 499=>1154, 500=>775, 501=>635, 502=>1113, 503=>682, 504=>748,
+ 505=>634, 506=>684, 507=>613, 508=>974, 509=>982, 510=>787, 511=>612, 512=>684, 513=>613, 514=>684, 515=>613, 516=>632, 517=>615, 518=>632, 519=>615, 520=>295,
+ 521=>278, 522=>295, 523=>278, 524=>787, 525=>612, 526=>787, 527=>612, 528=>695, 529=>411, 530=>695, 531=>411, 532=>732, 533=>634, 534=>732, 535=>634, 536=>635,
+ 537=>521, 538=>611, 539=>392, 540=>627, 541=>521, 542=>752, 543=>634, 544=>735, 545=>838, 546=>698, 547=>610, 548=>685, 549=>525, 550=>684, 551=>613, 552=>632,
+ 553=>615, 554=>787, 555=>612, 556=>787, 557=>612, 558=>787, 559=>612, 560=>787, 561=>612, 562=>611, 563=>592, 564=>475, 565=>843, 566=>477, 567=>278, 568=>998,
+ 569=>998, 570=>684, 571=>698, 572=>550, 573=>557, 574=>611, 575=>521, 576=>525, 577=>603, 578=>479, 579=>686, 580=>732, 581=>684, 582=>632, 583=>615, 584=>295,
+ 585=>278, 586=>781, 587=>635, 588=>695, 589=>411, 590=>611, 591=>592, 592=>600, 593=>635, 594=>635, 595=>635, 596=>549, 597=>550, 598=>635, 599=>696, 600=>615,
+ 601=>615, 602=>819, 603=>541, 604=>532, 605=>775, 606=>664, 607=>278, 608=>696, 609=>635, 610=>629, 611=>596, 612=>596, 613=>634, 614=>634, 615=>634, 616=>278,
+ 617=>338, 618=>372, 619=>396, 620=>487, 621=>278, 622=>706, 623=>974, 624=>974, 625=>974, 626=>646, 627=>642, 628=>634, 629=>612, 630=>858, 631=>728, 632=>660,
+ 633=>414, 634=>414, 635=>414, 636=>411, 637=>411, 638=>530, 639=>530, 640=>604, 641=>604, 642=>521, 643=>336, 644=>336, 645=>461, 646=>336, 647=>392, 648=>392,
+ 649=>634, 650=>618, 651=>598, 652=>592, 653=>818, 654=>592, 655=>611, 656=>525, 657=>525, 658=>578, 659=>578, 660=>510, 661=>510, 662=>510, 663=>510, 664=>787,
+ 665=>580, 666=>664, 667=>708, 668=>654, 669=>292, 670=>667, 671=>507, 672=>727, 673=>510, 674=>510, 675=>1014, 676=>1058, 677=>1013, 678=>824, 679=>610, 680=>778,
+ 681=>848, 682=>641, 683=>654, 684=>515, 685=>515, 686=>661, 687=>664, 688=>404, 689=>399, 690=>175, 691=>259, 692=>295, 693=>296, 694=>379, 695=>515, 696=>373,
+ 697=>278, 698=>460, 699=>318, 700=>318, 701=>318, 702=>307, 703=>307, 704=>370, 705=>370, 706=>500, 707=>500, 708=>500, 709=>500, 711=>500, 712=>275, 713=>500,
+ 714=>500, 715=>500, 716=>275, 717=>500, 718=>500, 719=>500, 720=>337, 721=>337, 722=>307, 723=>307, 724=>500, 725=>500, 726=>413, 727=>500, 728=>500, 729=>500,
+ 730=>500, 731=>500, 733=>500, 734=>315, 735=>500, 736=>426, 737=>166, 738=>373, 739=>444, 740=>370, 741=>493, 742=>493, 743=>493, 744=>493, 745=>493, 748=>500,
+ 749=>500, 750=>500, 755=>500, 759=>500, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0,
+ 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0,
+ 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0,
+ 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0,
+ 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 837=>0, 838=>0, 839=>0, 840=>0, 841=>0, 842=>0, 843=>0,
+ 844=>0, 845=>0, 846=>0, 847=>0, 849=>0, 850=>0, 851=>0, 855=>0, 856=>0, 860=>0, 861=>0, 862=>0, 863=>0, 864=>0, 865=>0, 866=>0,
+ 884=>278, 885=>278, 890=>500, 891=>549, 892=>550, 893=>549, 894=>337, 900=>500, 901=>500, 902=>692, 903=>318, 904=>746, 905=>871, 906=>408, 908=>813, 910=>825,
+ 911=>826, 912=>338, 913=>684, 914=>686, 915=>557, 916=>684, 917=>632, 918=>685, 919=>752, 920=>787, 921=>295, 922=>656, 923=>684, 924=>863, 925=>748, 926=>632,
+ 927=>787, 928=>752, 929=>603, 931=>632, 932=>611, 933=>611, 934=>787, 935=>685, 936=>787, 937=>764, 938=>295, 939=>611, 940=>659, 941=>548, 942=>654, 943=>338,
+ 944=>579, 945=>659, 946=>638, 947=>592, 948=>612, 949=>541, 950=>544, 951=>634, 952=>612, 953=>338, 954=>589, 955=>592, 956=>636, 957=>559, 958=>558, 959=>612,
+ 960=>602, 961=>635, 962=>587, 963=>634, 964=>602, 965=>579, 966=>660, 967=>578, 968=>660, 969=>837, 970=>338, 971=>579, 972=>612, 973=>579, 974=>837, 976=>614,
+ 977=>619, 978=>699, 979=>842, 980=>699, 981=>660, 982=>837, 983=>664, 984=>787, 985=>612, 986=>648, 987=>587, 988=>575, 989=>458, 990=>660, 991=>660, 992=>865,
+ 993=>627, 994=>934, 995=>837, 996=>758, 997=>659, 998=>792, 999=>615, 1000=>687, 1001=>607, 1002=>768, 1003=>625, 1004=>699, 1005=>612, 1006=>611, 1007=>536, 1008=>664,
+ 1009=>635, 1010=>550, 1011=>278, 1012=>787, 1013=>615, 1014=>615, 1015=>605, 1016=>635, 1017=>698, 1018=>863, 1019=>651, 1020=>635, 1021=>703, 1022=>698, 1023=>703, 1024=>632,
+ 1025=>632, 1026=>786, 1028=>698, 1029=>635, 1030=>295, 1031=>295, 1032=>295, 1033=>1094, 1034=>1045, 1035=>786, 1037=>748, 1038=>609, 1040=>684, 1041=>686, 1042=>686, 1043=>610,
+ 1044=>781, 1045=>632, 1046=>1077, 1047=>641, 1048=>748, 1049=>748, 1050=>710, 1051=>752, 1052=>863, 1053=>752, 1054=>787, 1055=>752, 1056=>603, 1057=>698, 1058=>611, 1059=>609,
+ 1060=>861, 1061=>685, 1062=>776, 1063=>686, 1064=>1069, 1065=>1094, 1066=>833, 1067=>882, 1068=>686, 1069=>698, 1070=>1080, 1071=>695, 1072=>613, 1073=>617, 1074=>589, 1075=>525,
+ 1076=>691, 1077=>615, 1078=>901, 1079=>532, 1080=>650, 1081=>650, 1082=>604, 1083=>639, 1084=>754, 1085=>654, 1086=>612, 1087=>654, 1088=>635, 1089=>550, 1090=>583, 1091=>592,
+ 1092=>855, 1093=>592, 1094=>681, 1095=>591, 1096=>915, 1097=>942, 1098=>707, 1099=>790, 1100=>589, 1101=>549, 1102=>842, 1103=>602, 1104=>615, 1105=>615, 1106=>625, 1107=>525,
+ 1108=>549, 1109=>521, 1110=>278, 1111=>278, 1112=>278, 1113=>902, 1114=>898, 1115=>652, 1117=>650, 1118=>592, 1119=>654, 1120=>934, 1121=>837, 1122=>771, 1123=>672, 1124=>942,
+ 1125=>749, 1126=>879, 1127=>783, 1128=>1160, 1129=>1001, 1130=>787, 1131=>612, 1132=>1027, 1133=>824, 1134=>636, 1135=>541, 1136=>856, 1137=>876, 1138=>787, 1139=>612, 1140=>781,
+ 1141=>665, 1142=>781, 1143=>665, 1144=>992, 1145=>904, 1146=>953, 1147=>758, 1148=>1180, 1149=>1028, 1150=>934, 1151=>837, 1152=>698, 1153=>550, 1154=>502, 1155=>0, 1156=>0,
+ 1157=>0, 1158=>0, 1160=>418, 1161=>418, 1162=>772, 1163=>677, 1164=>686, 1165=>589, 1166=>603, 1167=>635, 1168=>610, 1169=>525, 1170=>675, 1171=>590, 1172=>624, 1173=>530,
+ 1174=>1077, 1175=>901, 1176=>641, 1177=>532, 1178=>710, 1179=>604, 1180=>710, 1181=>604, 1182=>710, 1183=>604, 1184=>856, 1185=>832, 1186=>752, 1187=>661, 1188=>1014, 1189=>877,
+ 1190=>1081, 1191=>916, 1192=>796, 1193=>651, 1194=>698, 1195=>550, 1196=>611, 1197=>583, 1198=>611, 1199=>592, 1200=>611, 1201=>592, 1202=>685, 1203=>592, 1204=>934, 1205=>807,
+ 1206=>686, 1207=>591, 1208=>686, 1209=>591, 1210=>686, 1211=>634, 1212=>941, 1213=>728, 1214=>941, 1215=>728, 1216=>295, 1217=>1077, 1218=>901, 1219=>656, 1220=>604, 1221=>776,
+ 1222=>670, 1223=>752, 1224=>661, 1225=>776, 1226=>681, 1227=>686, 1228=>591, 1229=>888, 1230=>774, 1231=>278, 1232=>684, 1233=>613, 1234=>684, 1235=>613, 1236=>974, 1237=>982,
+ 1238=>632, 1239=>615, 1240=>787, 1241=>615, 1242=>787, 1243=>615, 1244=>1077, 1245=>901, 1246=>641, 1247=>532, 1248=>666, 1249=>578, 1250=>748, 1251=>650, 1252=>748, 1253=>650,
+ 1254=>787, 1255=>612, 1256=>787, 1257=>612, 1258=>787, 1259=>612, 1260=>698, 1261=>549, 1262=>609, 1263=>592, 1264=>609, 1265=>592, 1266=>609, 1267=>592, 1268=>686, 1269=>591,
+ 1270=>610, 1271=>525, 1272=>882, 1273=>790, 1274=>675, 1275=>590, 1276=>685, 1277=>592, 1278=>685, 1279=>592, 1280=>686, 1281=>589, 1282=>1006, 1283=>897, 1284=>975, 1285=>869,
+ 1286=>679, 1287=>588, 1288=>1072, 1289=>957, 1290=>1113, 1291=>967, 1292=>775, 1293=>660, 1294=>773, 1295=>711, 1296=>614, 1297=>541, 1298=>752, 1299=>639, 1306=>787, 1307=>635,
+ 1308=>989, 1309=>818, 1312=>1081, 1313=>905, 1314=>1081, 1315=>912, 1329=>867, 1330=>732, 1331=>882, 1332=>882, 1333=>732, 1334=>644, 1335=>682, 1336=>732, 1337=>851, 1338=>882,
+ 1339=>732, 1340=>557, 1341=>824, 1342=>986, 1343=>732, 1344=>707, 1345=>644, 1346=>882, 1347=>777, 1348=>882, 1349=>732, 1350=>840, 1351=>732, 1352=>732, 1353=>732, 1354=>791,
+ 1355=>644, 1356=>882, 1357=>732, 1358=>882, 1359=>635, 1360=>732, 1361=>732, 1362=>799, 1363=>861, 1364=>790, 1365=>787, 1366=>635, 1369=>307, 1370=>318, 1371=>500, 1372=>500,
+ 1373=>392, 1374=>526, 1375=>500, 1377=>974, 1378=>634, 1379=>762, 1380=>767, 1381=>634, 1382=>697, 1383=>533, 1384=>634, 1385=>700, 1386=>697, 1387=>634, 1388=>404, 1389=>894,
+ 1390=>641, 1391=>634, 1392=>634, 1393=>635, 1394=>702, 1395=>634, 1396=>659, 1397=>278, 1398=>760, 1399=>516, 1400=>634, 1401=>453, 1402=>974, 1403=>516, 1404=>769, 1405=>634,
+ 1406=>696, 1407=>974, 1408=>634, 1409=>635, 1410=>501, 1411=>974, 1412=>648, 1413=>612, 1414=>629, 1415=>763, 1417=>337, 1418=>433, 1456=>0, 1457=>0, 1458=>0, 1459=>0,
+ 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1466=>0, 1467=>0, 1468=>0, 1469=>0, 1470=>361, 1471=>0, 1472=>295, 1473=>0, 1474=>0, 1475=>295,
+ 1478=>441, 1479=>0, 1488=>629, 1489=>608, 1490=>448, 1491=>594, 1492=>640, 1493=>272, 1494=>374, 1495=>640, 1496=>648, 1497=>272, 1498=>592, 1499=>556, 1500=>599, 1501=>640,
+ 1502=>659, 1503=>272, 1504=>441, 1505=>700, 1506=>563, 1507=>640, 1508=>604, 1509=>521, 1510=>581, 1511=>663, 1512=>592, 1513=>808, 1514=>657, 1520=>471, 1521=>454, 1522=>471,
+ 1523=>416, 1524=>645, 1548=>323, 1557=>0, 1563=>318, 1567=>531, 1569=>470, 1570=>278, 1571=>278, 1572=>483, 1573=>278, 1574=>783, 1575=>278, 1576=>941, 1577=>524, 1578=>941,
+ 1579=>941, 1580=>646, 1581=>646, 1582=>646, 1583=>445, 1584=>445, 1585=>483, 1586=>483, 1587=>1221, 1588=>1221, 1589=>1209, 1590=>1209, 1591=>925, 1592=>925, 1593=>597, 1594=>597,
+ 1600=>293, 1601=>1037, 1602=>776, 1603=>824, 1604=>727, 1605=>619, 1606=>734, 1607=>524, 1608=>483, 1609=>783, 1610=>783, 1611=>0, 1612=>0, 1613=>0, 1614=>0, 1615=>0,
+ 1616=>0, 1617=>0, 1618=>0, 1619=>0, 1620=>0, 1621=>0, 1626=>500, 1632=>537, 1633=>537, 1634=>537, 1635=>537, 1636=>537, 1637=>537, 1638=>537, 1639=>537, 1640=>537,
+ 1641=>537, 1642=>537, 1643=>325, 1644=>318, 1645=>545, 1646=>941, 1647=>776, 1652=>292, 1657=>941, 1658=>941, 1659=>941, 1660=>941, 1661=>941, 1662=>941, 1663=>941, 1664=>941,
+ 1665=>646, 1666=>646, 1667=>646, 1668=>646, 1669=>646, 1670=>646, 1671=>646, 1681=>483, 1682=>483, 1685=>610, 1688=>483, 1697=>1037, 1700=>1037, 1702=>1037, 1705=>895, 1711=>895,
+ 1717=>727, 1722=>734, 1727=>646, 1734=>483, 1740=>783, 1742=>783, 1749=>524, 1776=>537, 1777=>537, 1778=>537, 1779=>537, 1780=>537, 1781=>537, 1782=>537, 1783=>537, 1784=>537,
+ 1785=>537, 1984=>636, 1985=>636, 1986=>636, 1987=>636, 1988=>636, 1989=>636, 1990=>636, 1991=>636, 1992=>636, 1993=>636, 1994=>278, 1995=>571, 1996=>424, 1997=>592, 1998=>654,
+ 1999=>654, 2000=>594, 2001=>654, 2002=>829, 2003=>438, 2004=>438, 2005=>559, 2006=>612, 2007=>350, 2008=>959, 2009=>473, 2010=>783, 2011=>654, 2012=>625, 2013=>734, 2014=>530,
+ 2015=>724, 2016=>473, 2017=>625, 2018=>594, 2019=>530, 2020=>530, 2021=>522, 2022=>594, 2023=>594, 2027=>0, 2028=>0, 2029=>0, 2030=>0, 2031=>0, 2032=>0, 2033=>0,
+ 2034=>0, 2035=>0, 2036=>313, 2037=>313, 2040=>560, 2041=>560, 2042=>361, 3647=>652, 3713=>670, 3714=>684, 3716=>688, 3719=>482, 3720=>628, 3722=>684, 3725=>688, 3732=>669,
+ 3733=>642, 3734=>645, 3735=>655, 3737=>659, 3738=>625, 3739=>625, 3740=>745, 3741=>767, 3742=>687, 3743=>687, 3745=>702, 3746=>688, 3747=>684, 3749=>649, 3751=>632, 3754=>703,
+ 3755=>819, 3757=>633, 3758=>684, 3759=>788, 3760=>632, 3761=>0, 3762=>539, 3763=>539, 3764=>0, 3765=>0, 3766=>0, 3767=>0, 3768=>0, 3769=>0, 3771=>0, 3772=>0,
+ 3773=>663, 3776=>375, 3777=>657, 3778=>460, 3779=>547, 3780=>491, 3782=>674, 3784=>0, 3785=>0, 3786=>0, 3787=>0, 3788=>0, 3789=>0, 3792=>636, 3793=>641, 3794=>641,
+ 3795=>670, 3796=>625, 3797=>625, 3798=>703, 3799=>670, 3800=>674, 3801=>677, 3804=>1028, 3805=>1028, 4256=>840, 4257=>690, 4258=>642, 4259=>759, 4260=>591, 4261=>686, 4262=>789,
+ 4263=>811, 4264=>467, 4265=>565, 4266=>789, 4267=>793, 4268=>584, 4269=>837, 4270=>750, 4271=>688, 4272=>811, 4273=>584, 4274=>584, 4275=>837, 4276=>837, 4277=>646, 4278=>604,
+ 4279=>584, 4280=>596, 4281=>584, 4282=>721, 4283=>795, 4284=>584, 4285=>566, 4286=>584, 4287=>669, 4288=>799, 4289=>542, 4290=>664, 4291=>542, 4292=>565, 4293=>674, 4304=>508,
+ 4305=>508, 4306=>533, 4307=>785, 4308=>522, 4309=>517, 4310=>508, 4311=>797, 4312=>507, 4313=>518, 4314=>1058, 4315=>522, 4316=>523, 4317=>783, 4318=>518, 4319=>523, 4320=>792,
+ 4321=>523, 4322=>656, 4323=>524, 4324=>788, 4325=>523, 4326=>782, 4327=>523, 4328=>522, 4329=>522, 4330=>566, 4331=>523, 4332=>523, 4333=>489, 4334=>522, 4335=>498, 4336=>517,
+ 4337=>560, 4338=>508, 4339=>508, 4340=>508, 4341=>563, 4342=>824, 4343=>595, 4344=>522, 4345=>554, 4346=>553, 4347=>406, 4348=>304, 5121=>684, 5122=>684, 5123=>684, 5124=>684,
+ 5125=>769, 5126=>769, 5127=>769, 5129=>769, 5130=>769, 5131=>769, 5132=>835, 5133=>834, 5134=>835, 5135=>834, 5136=>835, 5137=>834, 5138=>967, 5139=>1007, 5140=>967, 5141=>1007,
+ 5142=>769, 5143=>967, 5144=>1007, 5145=>967, 5146=>1007, 5147=>769, 5149=>256, 5150=>543, 5151=>423, 5152=>423, 5153=>389, 5154=>389, 5155=>393, 5156=>389, 5157=>466, 5158=>385,
+ 5159=>256, 5160=>389, 5161=>389, 5162=>389, 5163=>1090, 5164=>909, 5165=>953, 5166=>1117, 5167=>684, 5168=>684, 5169=>684, 5170=>684, 5171=>729, 5172=>729, 5173=>729, 5175=>729,
+ 5176=>729, 5177=>729, 5178=>835, 5179=>834, 5180=>835, 5181=>834, 5182=>835, 5183=>834, 5184=>967, 5185=>1007, 5186=>967, 5187=>1007, 5188=>967, 5189=>1007, 5190=>967, 5191=>1007,
+ 5192=>729, 5193=>508, 5194=>192, 5196=>732, 5197=>732, 5198=>732, 5199=>732, 5200=>730, 5201=>730, 5202=>730, 5204=>730, 5205=>730, 5206=>730, 5207=>921, 5208=>889, 5209=>921,
+ 5210=>889, 5211=>921, 5212=>889, 5213=>928, 5214=>900, 5215=>928, 5216=>900, 5217=>947, 5218=>900, 5219=>947, 5220=>900, 5221=>947, 5222=>434, 5223=>877, 5224=>877, 5225=>866,
+ 5226=>890, 5227=>628, 5228=>628, 5229=>628, 5230=>628, 5231=>628, 5232=>694, 5233=>628, 5234=>628, 5235=>628, 5236=>860, 5237=>771, 5238=>815, 5239=>816, 5240=>815, 5241=>816,
+ 5242=>860, 5243=>771, 5244=>860, 5245=>771, 5246=>815, 5247=>816, 5248=>815, 5249=>816, 5250=>815, 5251=>407, 5252=>407, 5253=>750, 5254=>775, 5255=>750, 5256=>775, 5257=>628,
+ 5258=>628, 5259=>628, 5260=>628, 5261=>628, 5262=>628, 5263=>628, 5264=>628, 5265=>628, 5266=>860, 5267=>771, 5268=>815, 5269=>816, 5270=>815, 5271=>816, 5272=>860, 5273=>771,
+ 5274=>860, 5275=>771, 5276=>815, 5277=>816, 5278=>815, 5279=>816, 5280=>815, 5281=>435, 5282=>435, 5283=>610, 5284=>557, 5285=>557, 5286=>557, 5287=>610, 5288=>522, 5289=>610,
+ 5290=>557, 5291=>557, 5292=>749, 5293=>769, 5294=>746, 5295=>764, 5296=>746, 5297=>764, 5298=>749, 5299=>769, 5300=>749, 5301=>769, 5302=>746, 5303=>764, 5304=>746, 5305=>764,
+ 5306=>746, 5307=>386, 5308=>508, 5309=>386, 5312=>852, 5313=>852, 5314=>852, 5315=>823, 5316=>852, 5317=>852, 5318=>852, 5319=>852, 5320=>852, 5321=>1069, 5322=>1035, 5323=>1059,
+ 5324=>852, 5325=>1059, 5326=>852, 5327=>852, 5328=>600, 5329=>453, 5330=>600, 5331=>852, 5332=>852, 5333=>852, 5334=>852, 5335=>852, 5336=>852, 5337=>852, 5338=>852, 5339=>852,
+ 5340=>1069, 5341=>1035, 5342=>1059, 5343=>1030, 5344=>1059, 5345=>1030, 5346=>1069, 5347=>1035, 5348=>1069, 5349=>1035, 5350=>1083, 5351=>1030, 5352=>1083, 5353=>1030, 5354=>600, 5356=>729,
+ 5357=>603, 5358=>603, 5359=>603, 5360=>603, 5361=>603, 5362=>661, 5363=>603, 5364=>603, 5365=>603, 5366=>834, 5367=>754, 5368=>792, 5369=>771, 5370=>792, 5371=>771, 5372=>834,
+ 5373=>754, 5374=>834, 5375=>754, 5376=>792, 5377=>771, 5378=>792, 5379=>771, 5380=>792, 5381=>418, 5382=>420, 5383=>418, 5392=>712, 5393=>712, 5394=>712, 5395=>892, 5396=>892,
+ 5397=>892, 5398=>892, 5399=>910, 5400=>872, 5401=>910, 5402=>872, 5403=>910, 5404=>872, 5405=>1140, 5406=>1100, 5407=>1140, 5408=>1100, 5409=>1140, 5410=>1100, 5411=>1140, 5412=>1100,
+ 5413=>641, 5414=>627, 5415=>627, 5416=>627, 5417=>627, 5418=>627, 5419=>667, 5420=>627, 5421=>627, 5422=>627, 5423=>844, 5424=>781, 5425=>816, 5426=>818, 5427=>816, 5428=>818,
+ 5429=>844, 5430=>781, 5431=>844, 5432=>781, 5433=>816, 5434=>818, 5435=>816, 5436=>818, 5437=>816, 5438=>418, 5440=>389, 5441=>484, 5442=>916, 5443=>916, 5444=>916, 5445=>916,
+ 5446=>916, 5447=>916, 5448=>603, 5449=>603, 5450=>603, 5451=>603, 5452=>603, 5453=>603, 5454=>834, 5455=>754, 5456=>418, 5458=>729, 5459=>684, 5460=>684, 5461=>684, 5462=>684,
+ 5463=>726, 5464=>726, 5465=>726, 5466=>726, 5467=>924, 5468=>1007, 5469=>508, 5470=>732, 5471=>732, 5472=>732, 5473=>732, 5474=>732, 5475=>732, 5476=>730, 5477=>730, 5478=>730,
+ 5479=>730, 5480=>947, 5481=>900, 5482=>508, 5492=>831, 5493=>831, 5494=>831, 5495=>831, 5496=>831, 5497=>831, 5498=>831, 5499=>563, 5500=>752, 5501=>484, 5502=>1047, 5503=>1047,
+ 5504=>1047, 5505=>1047, 5506=>1047, 5507=>1047, 5508=>1047, 5509=>825, 5514=>831, 5515=>831, 5516=>831, 5517=>831, 5518=>1259, 5519=>1259, 5520=>1259, 5521=>1002, 5522=>1002, 5523=>1259,
+ 5524=>1259, 5525=>700, 5526=>1073, 5536=>852, 5537=>852, 5538=>852, 5539=>852, 5540=>852, 5541=>852, 5542=>600, 5543=>643, 5544=>643, 5545=>643, 5546=>643, 5547=>643, 5548=>643,
+ 5549=>643, 5550=>418, 5551=>628, 5598=>770, 5601=>767, 5702=>468, 5703=>468, 5742=>444, 5743=>1047, 5744=>1310, 5745=>1632, 5746=>1632, 5747=>1375, 5748=>1375, 5749=>1632, 5750=>1632,
+ 5760=>477, 5761=>493, 5762=>712, 5763=>931, 5764=>1150, 5765=>1370, 5766=>493, 5767=>712, 5768=>931, 5769=>1150, 5770=>1370, 5771=>498, 5772=>718, 5773=>938, 5774=>1159, 5775=>1379,
+ 5776=>493, 5777=>712, 5778=>930, 5779=>1149, 5780=>1370, 5781=>498, 5782=>752, 5783=>789, 5784=>1205, 5785=>1150, 5786=>683, 5787=>507, 5788=>507, 7424=>592, 7425=>717, 7426=>982,
+ 7427=>586, 7428=>550, 7429=>605, 7430=>605, 7431=>491, 7432=>541, 7433=>278, 7434=>395, 7435=>579, 7436=>583, 7437=>754, 7438=>650, 7439=>612, 7440=>550, 7441=>684, 7442=>684,
+ 7443=>684, 7444=>1023, 7446=>612, 7447=>612, 7448=>524, 7449=>602, 7450=>602, 7451=>583, 7452=>574, 7453=>737, 7454=>948, 7455=>638, 7456=>592, 7457=>818, 7458=>525, 7459=>526,
+ 7462=>583, 7463=>592, 7464=>564, 7465=>524, 7466=>590, 7467=>639, 7468=>431, 7469=>613, 7470=>432, 7472=>485, 7473=>398, 7474=>398, 7475=>488, 7476=>474, 7477=>186, 7478=>186,
+ 7479=>413, 7480=>351, 7481=>543, 7482=>471, 7483=>471, 7484=>496, 7485=>439, 7486=>380, 7487=>438, 7488=>385, 7489=>461, 7490=>623, 7491=>392, 7492=>392, 7493=>405, 7494=>648,
+ 7495=>428, 7496=>405, 7497=>417, 7498=>417, 7499=>360, 7500=>359, 7501=>405, 7502=>179, 7503=>426, 7504=>623, 7505=>409, 7506=>414, 7507=>370, 7508=>414, 7509=>414, 7510=>428,
+ 7511=>295, 7512=>405, 7513=>470, 7514=>623, 7515=>417, 7517=>402, 7518=>373, 7519=>385, 7520=>416, 7521=>364, 7522=>179, 7523=>259, 7524=>405, 7525=>417, 7526=>402, 7527=>373,
+ 7528=>412, 7529=>416, 7530=>364, 7543=>635, 7544=>474, 7547=>372, 7557=>278, 7579=>405, 7580=>370, 7581=>370, 7582=>414, 7583=>360, 7584=>296, 7585=>233, 7586=>405, 7587=>405,
+ 7588=>261, 7589=>250, 7590=>261, 7591=>261, 7592=>234, 7593=>250, 7594=>235, 7595=>376, 7596=>623, 7597=>623, 7598=>411, 7599=>479, 7600=>409, 7601=>414, 7602=>414, 7603=>360,
+ 7604=>287, 7605=>295, 7606=>508, 7607=>418, 7608=>361, 7609=>406, 7610=>417, 7611=>366, 7612=>437, 7613=>366, 7614=>392, 7615=>414, 7620=>0, 7621=>0, 7622=>0, 7623=>0,
+ 7624=>0, 7625=>0, 7680=>684, 7681=>613, 7682=>686, 7683=>635, 7684=>686, 7685=>635, 7686=>686, 7687=>635, 7688=>698, 7689=>550, 7690=>770, 7691=>635, 7692=>770, 7693=>635,
+ 7694=>770, 7695=>635, 7696=>770, 7697=>635, 7698=>770, 7699=>635, 7700=>632, 7701=>615, 7702=>632, 7703=>615, 7704=>632, 7705=>615, 7706=>632, 7707=>615, 7708=>632, 7709=>615,
+ 7710=>575, 7711=>352, 7712=>775, 7713=>635, 7714=>752, 7715=>634, 7716=>752, 7717=>634, 7718=>752, 7719=>634, 7720=>752, 7721=>634, 7722=>752, 7723=>634, 7724=>295, 7725=>278,
+ 7726=>295, 7727=>278, 7728=>656, 7729=>579, 7730=>656, 7731=>579, 7732=>656, 7733=>579, 7734=>557, 7735=>288, 7736=>557, 7737=>288, 7738=>557, 7739=>278, 7740=>557, 7741=>278,
+ 7742=>863, 7743=>974, 7744=>863, 7745=>974, 7746=>863, 7747=>974, 7748=>748, 7749=>634, 7750=>748, 7751=>634, 7752=>748, 7753=>634, 7754=>748, 7755=>634, 7756=>787, 7757=>612,
+ 7758=>787, 7759=>612, 7760=>787, 7761=>612, 7762=>787, 7763=>612, 7764=>603, 7765=>635, 7766=>603, 7767=>635, 7768=>695, 7769=>411, 7770=>695, 7771=>411, 7772=>695, 7773=>411,
+ 7774=>695, 7775=>411, 7776=>635, 7777=>521, 7778=>635, 7779=>521, 7780=>635, 7781=>521, 7782=>635, 7783=>521, 7784=>635, 7785=>521, 7786=>611, 7787=>392, 7788=>611, 7789=>392,
+ 7790=>611, 7791=>392, 7792=>611, 7793=>392, 7794=>732, 7795=>634, 7796=>732, 7797=>634, 7798=>732, 7799=>634, 7800=>732, 7801=>634, 7802=>732, 7803=>634, 7804=>684, 7805=>592,
+ 7806=>684, 7807=>592, 7808=>989, 7809=>818, 7810=>989, 7811=>818, 7812=>989, 7813=>818, 7814=>989, 7815=>818, 7816=>989, 7817=>818, 7818=>685, 7819=>592, 7820=>685, 7821=>592,
+ 7822=>611, 7823=>592, 7824=>685, 7825=>525, 7826=>685, 7827=>525, 7828=>685, 7829=>525, 7830=>634, 7831=>392, 7832=>818, 7833=>592, 7834=>613, 7835=>352, 7839=>612, 7840=>684,
+ 7841=>613, 7842=>684, 7843=>613, 7844=>684, 7845=>613, 7846=>684, 7847=>613, 7848=>684, 7849=>613, 7850=>684, 7851=>613, 7852=>684, 7853=>613, 7854=>684, 7855=>613, 7856=>684,
+ 7857=>613, 7858=>684, 7859=>613, 7860=>684, 7861=>613, 7862=>684, 7863=>613, 7864=>632, 7865=>615, 7866=>632, 7867=>615, 7868=>632, 7869=>615, 7870=>632, 7871=>615, 7872=>632,
+ 7873=>615, 7874=>632, 7875=>615, 7876=>632, 7877=>615, 7878=>632, 7879=>615, 7880=>295, 7881=>278, 7882=>295, 7883=>278, 7884=>787, 7885=>612, 7886=>787, 7887=>612, 7888=>787,
+ 7889=>612, 7890=>787, 7891=>612, 7892=>787, 7893=>612, 7894=>787, 7895=>612, 7896=>787, 7897=>612, 7898=>913, 7899=>612, 7900=>913, 7901=>612, 7902=>913, 7903=>612, 7904=>913,
+ 7905=>612, 7906=>913, 7907=>612, 7908=>732, 7909=>634, 7910=>732, 7911=>634, 7912=>858, 7913=>634, 7914=>858, 7915=>634, 7916=>858, 7917=>634, 7918=>858, 7919=>634, 7920=>858,
+ 7921=>634, 7922=>611, 7923=>592, 7924=>611, 7925=>592, 7926=>611, 7927=>592, 7928=>611, 7929=>592, 7936=>659, 7937=>659, 7938=>659, 7939=>659, 7940=>659, 7941=>659, 7942=>659,
+ 7943=>659, 7944=>684, 7945=>684, 7946=>877, 7947=>877, 7948=>769, 7949=>801, 7950=>708, 7951=>743, 7952=>541, 7953=>541, 7954=>541, 7955=>541, 7956=>541, 7957=>541, 7960=>711,
+ 7961=>711, 7962=>966, 7963=>975, 7964=>898, 7965=>928, 7968=>634, 7969=>634, 7970=>634, 7971=>634, 7972=>634, 7973=>634, 7974=>634, 7975=>634, 7976=>837, 7977=>835, 7978=>1086,
+ 7979=>1089, 7980=>1027, 7981=>1051, 7982=>934, 7983=>947, 7984=>338, 7985=>338, 7986=>338, 7987=>338, 7988=>338, 7989=>338, 7990=>338, 7991=>338, 7992=>380, 7993=>374, 7994=>635,
+ 7995=>635, 7996=>570, 7997=>600, 7998=>489, 7999=>493, 8000=>612, 8001=>612, 8002=>612, 8003=>612, 8004=>612, 8005=>612, 8008=>804, 8009=>848, 8010=>1095, 8011=>1100, 8012=>938,
+ 8013=>970, 8016=>579, 8017=>579, 8018=>579, 8019=>579, 8020=>579, 8021=>579, 8022=>579, 8023=>579, 8025=>784, 8027=>998, 8029=>1012, 8031=>897, 8032=>837, 8033=>837, 8034=>837,
+ 8035=>837, 8036=>837, 8037=>837, 8038=>837, 8039=>837, 8040=>802, 8041=>843, 8042=>1089, 8043=>1095, 8044=>946, 8045=>972, 8046=>921, 8047=>952, 8048=>659, 8049=>659, 8050=>541,
+ 8051=>548, 8052=>634, 8053=>654, 8054=>338, 8055=>338, 8056=>612, 8057=>612, 8058=>579, 8059=>579, 8060=>837, 8061=>837, 8064=>659, 8065=>659, 8066=>659, 8067=>659, 8068=>659,
+ 8069=>659, 8070=>659, 8071=>659, 8072=>684, 8073=>684, 8074=>877, 8075=>877, 8076=>769, 8077=>801, 8078=>708, 8079=>743, 8080=>634, 8081=>634, 8082=>634, 8083=>634, 8084=>634,
+ 8085=>634, 8086=>634, 8087=>634, 8088=>837, 8089=>835, 8090=>1086, 8091=>1089, 8092=>1027, 8093=>1051, 8094=>934, 8095=>947, 8096=>837, 8097=>837, 8098=>837, 8099=>837, 8100=>837,
+ 8101=>837, 8102=>837, 8103=>837, 8104=>802, 8105=>843, 8106=>1089, 8107=>1095, 8108=>946, 8109=>972, 8110=>921, 8111=>952, 8112=>659, 8113=>659, 8114=>659, 8115=>659, 8116=>659,
+ 8118=>659, 8119=>659, 8120=>684, 8121=>684, 8122=>716, 8123=>692, 8124=>684, 8125=>500, 8126=>500, 8127=>500, 8128=>500, 8129=>500, 8130=>634, 8131=>634, 8132=>654, 8134=>634,
+ 8135=>634, 8136=>805, 8137=>746, 8138=>931, 8139=>871, 8140=>752, 8141=>500, 8142=>500, 8143=>500, 8144=>338, 8145=>338, 8146=>338, 8147=>338, 8150=>338, 8151=>338, 8152=>295,
+ 8153=>295, 8154=>475, 8155=>408, 8157=>500, 8158=>500, 8159=>500, 8160=>579, 8161=>579, 8162=>579, 8163=>579, 8164=>635, 8165=>635, 8166=>579, 8167=>579, 8168=>611, 8169=>611,
+ 8170=>845, 8171=>825, 8172=>685, 8173=>500, 8174=>500, 8175=>500, 8178=>837, 8179=>837, 8180=>837, 8182=>837, 8183=>837, 8184=>941, 8185=>813, 8186=>922, 8187=>826, 8188=>764,
+ 8189=>500, 8190=>500, 8192=>500, 8193=>1000, 8194=>500, 8195=>1000, 8196=>330, 8197=>250, 8198=>167, 8199=>636, 8200=>318, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>361, 8209=>361, 8210=>636, 8213=>1000, 8214=>500, 8215=>500, 8219=>318, 8223=>518, 8227=>590, 8228=>334, 8229=>667, 8231=>318, 8234=>0, 8235=>0,
+ 8236=>0, 8237=>0, 8238=>0, 8239=>200, 8241=>1735, 8242=>227, 8243=>374, 8244=>520, 8245=>227, 8246=>374, 8247=>520, 8248=>339, 8251=>838, 8252=>485, 8253=>531, 8254=>500,
+ 8255=>804, 8256=>804, 8257=>250, 8258=>1000, 8259=>500, 8260=>167, 8261=>390, 8262=>390, 8263=>922, 8264=>733, 8265=>733, 8266=>497, 8267=>636, 8268=>500, 8269=>500, 8270=>500,
+ 8271=>337, 8272=>804, 8273=>500, 8274=>450, 8275=>838, 8276=>804, 8277=>838, 8278=>586, 8279=>663, 8280=>838, 8281=>838, 8282=>318, 8283=>797, 8284=>838, 8285=>318, 8286=>318,
+ 8287=>222, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0, 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>401, 8305=>179, 8308=>401, 8309=>401,
+ 8310=>401, 8311=>401, 8312=>401, 8313=>401, 8314=>528, 8315=>528, 8316=>528, 8317=>246, 8318=>246, 8319=>398, 8320=>401, 8321=>401, 8322=>401, 8323=>401, 8324=>401, 8325=>401,
+ 8326=>401, 8327=>401, 8328=>401, 8329=>401, 8330=>528, 8331=>528, 8332=>528, 8333=>246, 8334=>246, 8336=>392, 8337=>417, 8338=>414, 8339=>444, 8340=>417, 8352=>877, 8353=>636,
+ 8354=>636, 8355=>636, 8356=>636, 8357=>974, 8358=>748, 8359=>1272, 8360=>1074, 8361=>989, 8362=>784, 8363=>636, 8365=>636, 8366=>636, 8367=>1272, 8368=>636, 8369=>636, 8370=>636,
+ 8371=>636, 8372=>774, 8373=>641, 8400=>0, 8401=>0, 8406=>0, 8407=>0, 8411=>0, 8412=>0, 8417=>0, 8448=>1019, 8449=>1019, 8450=>698, 8451=>1123, 8452=>642, 8453=>1019,
+ 8454=>1067, 8455=>614, 8456=>698, 8457=>952, 8459=>988, 8460=>754, 8461=>850, 8462=>634, 8463=>634, 8464=>470, 8465=>697, 8466=>720, 8467=>413, 8468=>818, 8469=>801, 8470=>1040,
+ 8471=>1000, 8472=>697, 8473=>701, 8474=>787, 8475=>798, 8476=>814, 8477=>792, 8478=>896, 8479=>684, 8480=>1020, 8481=>1074, 8483=>684, 8484=>745, 8485=>578, 8486=>764, 8487=>764,
+ 8488=>616, 8489=>338, 8490=>656, 8491=>684, 8492=>786, 8493=>703, 8494=>854, 8495=>592, 8496=>605, 8497=>786, 8498=>575, 8499=>1069, 8500=>462, 8501=>745, 8502=>674, 8503=>466,
+ 8504=>645, 8505=>380, 8506=>926, 8507=>1194, 8508=>702, 8509=>728, 8510=>654, 8511=>849, 8512=>811, 8513=>775, 8514=>557, 8515=>557, 8516=>611, 8517=>819, 8518=>708, 8519=>615,
+ 8520=>351, 8521=>351, 8523=>780, 8526=>526, 8531=>969, 8532=>969, 8533=>969, 8534=>969, 8535=>969, 8536=>969, 8537=>969, 8538=>969, 8539=>969, 8540=>969, 8541=>969, 8542=>969,
+ 8543=>568, 8544=>295, 8545=>492, 8546=>689, 8547=>923, 8548=>684, 8549=>922, 8550=>1120, 8551=>1317, 8552=>917, 8553=>685, 8554=>933, 8555=>1131, 8556=>557, 8557=>698, 8558=>770,
+ 8559=>863, 8560=>278, 8561=>458, 8562=>637, 8563=>812, 8564=>592, 8565=>811, 8566=>991, 8567=>1170, 8568=>819, 8569=>592, 8570=>822, 8571=>1002, 8572=>278, 8573=>550, 8574=>635,
+ 8575=>974, 8576=>1245, 8577=>770, 8578=>1245, 8579=>703, 8580=>549, 8592=>838, 8593=>838, 8594=>838, 8595=>838, 8596=>838, 8597=>838, 8598=>838, 8599=>838, 8600=>838, 8601=>838,
+ 8602=>838, 8603=>838, 8604=>838, 8605=>838, 8606=>838, 8607=>838, 8608=>838, 8609=>838, 8610=>838, 8611=>838, 8612=>838, 8613=>838, 8614=>838, 8615=>838, 8616=>838, 8617=>838,
+ 8618=>838, 8619=>838, 8620=>838, 8621=>838, 8622=>838, 8623=>838, 8624=>838, 8625=>838, 8626=>838, 8627=>838, 8628=>838, 8629=>838, 8630=>838, 8631=>838, 8632=>838, 8633=>838,
+ 8634=>838, 8635=>838, 8636=>838, 8637=>838, 8638=>838, 8639=>838, 8640=>838, 8641=>838, 8642=>838, 8643=>838, 8644=>838, 8645=>838, 8646=>838, 8647=>838, 8648=>838, 8649=>838,
+ 8650=>838, 8651=>838, 8652=>838, 8653=>838, 8654=>838, 8655=>838, 8656=>838, 8657=>838, 8658=>838, 8659=>838, 8660=>838, 8661=>838, 8662=>838, 8663=>838, 8664=>838, 8665=>838,
+ 8666=>838, 8667=>838, 8668=>838, 8669=>838, 8670=>838, 8671=>838, 8672=>838, 8673=>838, 8674=>838, 8675=>838, 8676=>838, 8677=>838, 8678=>838, 8679=>838, 8680=>838, 8681=>838,
+ 8682=>838, 8683=>838, 8684=>838, 8685=>838, 8686=>838, 8687=>838, 8688=>838, 8689=>838, 8690=>838, 8691=>838, 8692=>838, 8693=>838, 8694=>838, 8695=>838, 8696=>838, 8697=>838,
+ 8698=>838, 8699=>838, 8700=>838, 8701=>838, 8702=>838, 8703=>838, 8704=>684, 8705=>636, 8706=>517, 8707=>632, 8708=>632, 8709=>871, 8710=>669, 8711=>669, 8712=>871, 8713=>871,
+ 8714=>718, 8715=>871, 8716=>871, 8717=>718, 8718=>636, 8719=>757, 8720=>757, 8721=>674, 8722=>838, 8723=>838, 8724=>838, 8725=>167, 8726=>637, 8727=>838, 8728=>626, 8729=>626,
+ 8730=>637, 8731=>637, 8732=>637, 8733=>677, 8734=>833, 8735=>838, 8736=>896, 8737=>896, 8738=>838, 8739=>500, 8740=>500, 8741=>500, 8742=>500, 8743=>732, 8744=>732, 8745=>732,
+ 8746=>732, 8747=>521, 8748=>789, 8749=>1057, 8750=>521, 8751=>789, 8752=>1057, 8753=>521, 8754=>521, 8755=>521, 8756=>636, 8757=>636, 8758=>260, 8759=>636, 8760=>838, 8761=>838,
+ 8762=>838, 8763=>838, 8764=>838, 8765=>838, 8766=>838, 8767=>838, 8768=>375, 8769=>838, 8770=>838, 8771=>838, 8772=>838, 8773=>838, 8774=>838, 8775=>838, 8776=>838, 8777=>838,
+ 8778=>838, 8779=>838, 8780=>838, 8781=>838, 8782=>838, 8783=>838, 8784=>838, 8785=>838, 8786=>839, 8787=>839, 8788=>1000, 8789=>1000, 8790=>838, 8791=>838, 8792=>838, 8793=>838,
+ 8794=>838, 8795=>838, 8796=>838, 8797=>838, 8798=>838, 8799=>838, 8800=>838, 8801=>838, 8802=>838, 8803=>838, 8804=>838, 8805=>838, 8806=>838, 8807=>838, 8808=>838, 8809=>838,
+ 8810=>1047, 8811=>1047, 8812=>464, 8813=>838, 8814=>838, 8815=>838, 8816=>838, 8817=>838, 8818=>838, 8819=>838, 8820=>838, 8821=>838, 8822=>838, 8823=>838, 8824=>838, 8825=>838,
+ 8826=>838, 8827=>838, 8828=>838, 8829=>838, 8830=>838, 8831=>838, 8832=>838, 8833=>838, 8834=>838, 8835=>838, 8836=>838, 8837=>838, 8838=>838, 8839=>838, 8840=>838, 8841=>838,
+ 8842=>838, 8843=>838, 8844=>732, 8845=>732, 8846=>732, 8847=>838, 8848=>838, 8849=>838, 8850=>838, 8851=>722, 8852=>722, 8853=>838, 8854=>838, 8855=>838, 8856=>838, 8857=>838,
+ 8858=>838, 8859=>838, 8860=>838, 8861=>838, 8862=>838, 8863=>838, 8864=>838, 8865=>838, 8866=>871, 8867=>871, 8868=>871, 8869=>871, 8870=>521, 8871=>521, 8872=>871, 8873=>871,
+ 8874=>871, 8875=>871, 8876=>871, 8877=>871, 8878=>871, 8879=>871, 8882=>838, 8883=>838, 8884=>838, 8885=>838, 8886=>1000, 8887=>1000, 8888=>838, 8889=>838, 8890=>521, 8891=>732,
+ 8892=>732, 8893=>732, 8894=>838, 8895=>838, 8896=>820, 8897=>820, 8898=>820, 8899=>820, 8900=>494, 8901=>318, 8902=>626, 8904=>1000, 8905=>1000, 8906=>1000, 8907=>1000, 8908=>1000,
+ 8909=>838, 8910=>732, 8911=>732, 8918=>838, 8919=>838, 8920=>1422, 8921=>1422, 8922=>838, 8923=>838, 8924=>838, 8925=>838, 8926=>838, 8927=>838, 8928=>838, 8929=>838, 8930=>838,
+ 8931=>838, 8932=>838, 8933=>838, 8934=>838, 8935=>838, 8936=>838, 8937=>838, 8938=>838, 8939=>838, 8940=>838, 8941=>838, 8942=>1000, 8943=>1000, 8944=>1000, 8945=>1000, 8946=>1000,
+ 8947=>871, 8948=>718, 8949=>871, 8950=>871, 8951=>718, 8952=>871, 8953=>871, 8954=>1000, 8955=>871, 8956=>718, 8957=>871, 8958=>718, 8959=>871, 8960=>602, 8961=>602, 8962=>635,
+ 8963=>838, 8964=>838, 8965=>838, 8966=>838, 8967=>488, 8968=>390, 8969=>390, 8970=>390, 8971=>390, 8972=>809, 8973=>809, 8974=>809, 8975=>809, 8976=>838, 8977=>513, 8984=>1000,
+ 8985=>838, 8988=>469, 8989=>469, 8990=>469, 8991=>469, 8992=>521, 8993=>521, 8996=>1152, 8997=>1152, 8998=>1414, 8999=>1152, 9000=>1443, 9003=>1414, 9004=>873, 9075=>338, 9076=>635,
+ 9077=>837, 9082=>659, 9085=>757, 9095=>1152, 9108=>873, 9115=>500, 9116=>500, 9117=>500, 9118=>500, 9119=>500, 9120=>500, 9121=>500, 9122=>500, 9123=>500, 9124=>500, 9125=>500,
+ 9126=>500, 9127=>750, 9128=>750, 9129=>750, 9130=>750, 9131=>750, 9132=>750, 9133=>750, 9134=>521, 9166=>838, 9167=>945, 9187=>873, 9189=>769, 9250=>635, 9251=>635, 9312=>896,
+ 9313=>896, 9314=>896, 9315=>896, 9316=>896, 9317=>896, 9318=>896, 9319=>896, 9320=>896, 9321=>896, 9472=>602, 9473=>602, 9474=>602, 9475=>602, 9476=>602, 9477=>602, 9478=>602,
+ 9479=>602, 9480=>602, 9481=>602, 9482=>602, 9483=>602, 9484=>602, 9485=>602, 9486=>602, 9487=>602, 9488=>602, 9489=>602, 9490=>602, 9491=>602, 9492=>602, 9493=>602, 9494=>602,
+ 9495=>602, 9496=>602, 9497=>602, 9498=>602, 9499=>602, 9500=>602, 9501=>602, 9502=>602, 9503=>602, 9504=>602, 9505=>602, 9506=>602, 9507=>602, 9508=>602, 9509=>602, 9510=>602,
+ 9511=>602, 9512=>602, 9513=>602, 9514=>602, 9515=>602, 9516=>602, 9517=>602, 9518=>602, 9519=>602, 9520=>602, 9521=>602, 9522=>602, 9523=>602, 9524=>602, 9525=>602, 9526=>602,
+ 9527=>602, 9528=>602, 9529=>602, 9530=>602, 9531=>602, 9532=>602, 9533=>602, 9534=>602, 9535=>602, 9536=>602, 9537=>602, 9538=>602, 9539=>602, 9540=>602, 9541=>602, 9542=>602,
+ 9543=>602, 9544=>602, 9545=>602, 9546=>602, 9547=>602, 9548=>602, 9549=>602, 9550=>602, 9551=>602, 9552=>602, 9553=>602, 9554=>602, 9555=>602, 9556=>602, 9557=>602, 9558=>602,
+ 9559=>602, 9560=>602, 9561=>602, 9562=>602, 9563=>602, 9564=>602, 9565=>602, 9566=>602, 9567=>602, 9568=>602, 9569=>602, 9570=>602, 9571=>602, 9572=>602, 9573=>602, 9574=>602,
+ 9575=>602, 9576=>602, 9577=>602, 9578=>602, 9579=>602, 9580=>602, 9581=>602, 9582=>602, 9583=>602, 9584=>602, 9585=>602, 9586=>602, 9587=>602, 9588=>602, 9589=>602, 9590=>602,
+ 9591=>602, 9592=>602, 9593=>602, 9594=>602, 9595=>602, 9596=>602, 9597=>602, 9598=>602, 9599=>602, 9600=>769, 9601=>769, 9602=>769, 9603=>769, 9604=>769, 9605=>769, 9606=>769,
+ 9607=>769, 9608=>769, 9609=>769, 9610=>769, 9611=>769, 9612=>769, 9613=>769, 9614=>769, 9615=>769, 9616=>769, 9617=>769, 9618=>769, 9619=>769, 9620=>769, 9621=>769, 9622=>769,
+ 9623=>769, 9624=>769, 9625=>769, 9626=>769, 9627=>769, 9628=>769, 9629=>769, 9630=>769, 9631=>769, 9632=>945, 9633=>945, 9634=>945, 9635=>945, 9636=>945, 9637=>945, 9638=>945,
+ 9639=>945, 9640=>945, 9641=>945, 9642=>678, 9643=>678, 9644=>945, 9645=>945, 9646=>550, 9647=>550, 9648=>769, 9649=>769, 9650=>769, 9651=>769, 9652=>502, 9653=>502, 9654=>769,
+ 9655=>769, 9656=>502, 9657=>502, 9658=>769, 9659=>769, 9660=>769, 9661=>769, 9662=>502, 9663=>502, 9664=>769, 9665=>769, 9666=>502, 9667=>502, 9668=>769, 9669=>769, 9670=>769,
+ 9671=>769, 9672=>769, 9673=>873, 9674=>494, 9675=>873, 9676=>873, 9677=>873, 9678=>873, 9679=>873, 9680=>873, 9681=>873, 9682=>873, 9683=>873, 9684=>873, 9685=>873, 9686=>527,
+ 9687=>527, 9688=>791, 9689=>970, 9690=>970, 9691=>970, 9692=>387, 9693=>387, 9694=>387, 9695=>387, 9696=>873, 9697=>873, 9698=>769, 9699=>769, 9700=>769, 9701=>769, 9702=>590,
+ 9703=>945, 9704=>945, 9705=>945, 9706=>945, 9707=>945, 9708=>769, 9709=>769, 9710=>769, 9711=>1119, 9712=>945, 9713=>945, 9714=>945, 9715=>945, 9716=>873, 9717=>873, 9718=>873,
+ 9719=>873, 9720=>769, 9721=>769, 9722=>769, 9723=>830, 9724=>830, 9725=>732, 9726=>732, 9727=>769, 9728=>896, 9729=>1000, 9730=>896, 9731=>896, 9732=>896, 9733=>896, 9734=>896,
+ 9735=>573, 9736=>896, 9737=>896, 9738=>888, 9739=>888, 9740=>671, 9741=>1013, 9742=>1246, 9743=>1250, 9744=>896, 9745=>896, 9746=>896, 9747=>532, 9748=>896, 9749=>896, 9750=>896,
+ 9751=>896, 9752=>896, 9753=>896, 9754=>896, 9755=>896, 9756=>896, 9757=>609, 9758=>896, 9759=>609, 9760=>896, 9761=>896, 9762=>896, 9763=>896, 9764=>669, 9765=>746, 9766=>649,
+ 9767=>784, 9768=>545, 9769=>896, 9770=>896, 9771=>896, 9772=>710, 9773=>896, 9774=>896, 9775=>896, 9776=>896, 9777=>896, 9778=>896, 9779=>896, 9780=>896, 9781=>896, 9782=>896,
+ 9783=>896, 9784=>896, 9785=>896, 9786=>896, 9787=>896, 9788=>896, 9789=>896, 9790=>896, 9791=>614, 9792=>731, 9793=>731, 9794=>896, 9795=>896, 9796=>896, 9797=>896, 9798=>896,
+ 9799=>896, 9800=>896, 9801=>896, 9802=>896, 9803=>896, 9804=>896, 9805=>896, 9806=>896, 9807=>896, 9808=>896, 9809=>896, 9810=>896, 9811=>896, 9812=>896, 9813=>896, 9814=>896,
+ 9815=>896, 9816=>896, 9817=>896, 9818=>896, 9819=>896, 9820=>896, 9821=>896, 9822=>896, 9823=>896, 9824=>896, 9825=>896, 9826=>896, 9827=>896, 9828=>896, 9829=>896, 9830=>896,
+ 9831=>896, 9832=>896, 9833=>472, 9834=>638, 9835=>896, 9836=>896, 9837=>472, 9838=>357, 9839=>484, 9840=>748, 9841=>766, 9842=>896, 9843=>896, 9844=>896, 9845=>896, 9846=>896,
+ 9847=>896, 9848=>896, 9849=>896, 9850=>896, 9851=>896, 9852=>896, 9853=>896, 9854=>896, 9855=>896, 9856=>869, 9857=>869, 9858=>869, 9859=>869, 9860=>869, 9861=>869, 9862=>896,
+ 9863=>896, 9864=>896, 9865=>896, 9866=>896, 9867=>896, 9868=>896, 9869=>896, 9870=>896, 9871=>896, 9872=>896, 9873=>896, 9874=>896, 9875=>896, 9876=>896, 9877=>541, 9878=>896,
+ 9879=>896, 9880=>896, 9881=>896, 9882=>896, 9883=>896, 9884=>896, 9888=>896, 9889=>702, 9890=>1003, 9891=>1085, 9892=>1143, 9893=>901, 9894=>838, 9895=>838, 9896=>838, 9897=>838,
+ 9898=>838, 9899=>838, 9900=>838, 9901=>838, 9902=>838, 9903=>838, 9904=>844, 9905=>838, 9906=>731, 9985=>838, 9986=>838, 9987=>838, 9988=>838, 9990=>838, 9991=>838, 9992=>838,
+ 9993=>838, 9996=>838, 9997=>838, 9998=>838, 9999=>838, 10000=>838, 10001=>838, 10002=>838, 10003=>838, 10004=>838, 10005=>838, 10006=>838, 10007=>838, 10008=>838, 10009=>838, 10010=>838,
+ 10011=>838, 10012=>838, 10013=>838, 10014=>838, 10015=>838, 10016=>838, 10017=>838, 10018=>838, 10019=>838, 10020=>838, 10021=>838, 10022=>838, 10023=>838, 10025=>838, 10026=>838, 10027=>838,
+ 10028=>838, 10029=>838, 10030=>838, 10031=>838, 10032=>838, 10033=>838, 10034=>838, 10035=>838, 10036=>838, 10037=>838, 10038=>838, 10039=>838, 10040=>838, 10041=>838, 10042=>838, 10043=>838,
+ 10044=>838, 10045=>838, 10046=>838, 10047=>838, 10048=>838, 10049=>838, 10050=>838, 10051=>838, 10052=>838, 10053=>838, 10054=>838, 10055=>838, 10056=>838, 10057=>838, 10058=>838, 10059=>838,
+ 10061=>896, 10063=>896, 10064=>896, 10065=>896, 10066=>896, 10070=>896, 10072=>838, 10073=>838, 10074=>838, 10075=>322, 10076=>322, 10077=>538, 10078=>538, 10081=>838, 10082=>838, 10083=>838,
+ 10084=>838, 10085=>838, 10086=>838, 10087=>838, 10088=>838, 10089=>838, 10090=>838, 10091=>838, 10092=>838, 10093=>838, 10094=>838, 10095=>838, 10096=>838, 10097=>838, 10098=>838, 10099=>838,
+ 10100=>838, 10101=>838, 10102=>896, 10103=>896, 10104=>896, 10105=>896, 10106=>896, 10107=>896, 10108=>896, 10109=>896, 10110=>896, 10111=>896, 10112=>838, 10113=>838, 10114=>838, 10115=>838,
+ 10116=>838, 10117=>838, 10118=>838, 10119=>838, 10120=>838, 10121=>838, 10122=>838, 10123=>838, 10124=>838, 10125=>838, 10126=>838, 10127=>838, 10128=>838, 10129=>838, 10130=>838, 10131=>838,
+ 10132=>838, 10136=>838, 10137=>838, 10138=>838, 10139=>838, 10140=>838, 10141=>838, 10142=>838, 10143=>838, 10144=>838, 10145=>838, 10146=>838, 10147=>838, 10148=>838, 10149=>838, 10150=>838,
+ 10151=>838, 10152=>838, 10153=>838, 10154=>838, 10155=>838, 10156=>838, 10157=>838, 10158=>838, 10159=>838, 10161=>838, 10162=>838, 10163=>838, 10164=>838, 10165=>838, 10166=>838, 10167=>838,
+ 10168=>838, 10169=>838, 10170=>838, 10171=>838, 10172=>838, 10173=>838, 10174=>838, 10208=>494, 10214=>495, 10215=>495, 10216=>390, 10217=>390, 10218=>556, 10219=>556, 10224=>838, 10225=>838,
+ 10226=>838, 10227=>838, 10228=>1157, 10229=>1434, 10230=>1434, 10231=>1434, 10232=>1434, 10233=>1434, 10234=>1434, 10235=>1434, 10236=>1434, 10237=>1434, 10238=>1434, 10239=>1434, 10240=>732, 10241=>732,
+ 10242=>732, 10243=>732, 10244=>732, 10245=>732, 10246=>732, 10247=>732, 10248=>732, 10249=>732, 10250=>732, 10251=>732, 10252=>732, 10253=>732, 10254=>732, 10255=>732, 10256=>732, 10257=>732,
+ 10258=>732, 10259=>732, 10260=>732, 10261=>732, 10262=>732, 10263=>732, 10264=>732, 10265=>732, 10266=>732, 10267=>732, 10268=>732, 10269=>732, 10270=>732, 10271=>732, 10272=>732, 10273=>732,
+ 10274=>732, 10275=>732, 10276=>732, 10277=>732, 10278=>732, 10279=>732, 10280=>732, 10281=>732, 10282=>732, 10283=>732, 10284=>732, 10285=>732, 10286=>732, 10287=>732, 10288=>732, 10289=>732,
+ 10290=>732, 10291=>732, 10292=>732, 10293=>732, 10294=>732, 10295=>732, 10296=>732, 10297=>732, 10298=>732, 10299=>732, 10300=>732, 10301=>732, 10302=>732, 10303=>732, 10304=>732, 10305=>732,
+ 10306=>732, 10307=>732, 10308=>732, 10309=>732, 10310=>732, 10311=>732, 10312=>732, 10313=>732, 10314=>732, 10315=>732, 10316=>732, 10317=>732, 10318=>732, 10319=>732, 10320=>732, 10321=>732,
+ 10322=>732, 10323=>732, 10324=>732, 10325=>732, 10326=>732, 10327=>732, 10328=>732, 10329=>732, 10330=>732, 10331=>732, 10332=>732, 10333=>732, 10334=>732, 10335=>732, 10336=>732, 10337=>732,
+ 10338=>732, 10339=>732, 10340=>732, 10341=>732, 10342=>732, 10343=>732, 10344=>732, 10345=>732, 10346=>732, 10347=>732, 10348=>732, 10349=>732, 10350=>732, 10351=>732, 10352=>732, 10353=>732,
+ 10354=>732, 10355=>732, 10356=>732, 10357=>732, 10358=>732, 10359=>732, 10360=>732, 10361=>732, 10362=>732, 10363=>732, 10364=>732, 10365=>732, 10366=>732, 10367=>732, 10368=>732, 10369=>732,
+ 10370=>732, 10371=>732, 10372=>732, 10373=>732, 10374=>732, 10375=>732, 10376=>732, 10377=>732, 10378=>732, 10379=>732, 10380=>732, 10381=>732, 10382=>732, 10383=>732, 10384=>732, 10385=>732,
+ 10386=>732, 10387=>732, 10388=>732, 10389=>732, 10390=>732, 10391=>732, 10392=>732, 10393=>732, 10394=>732, 10395=>732, 10396=>732, 10397=>732, 10398=>732, 10399=>732, 10400=>732, 10401=>732,
+ 10402=>732, 10403=>732, 10404=>732, 10405=>732, 10406=>732, 10407=>732, 10408=>732, 10409=>732, 10410=>732, 10411=>732, 10412=>732, 10413=>732, 10414=>732, 10415=>732, 10416=>732, 10417=>732,
+ 10418=>732, 10419=>732, 10420=>732, 10421=>732, 10422=>732, 10423=>732, 10424=>732, 10425=>732, 10426=>732, 10427=>732, 10428=>732, 10429=>732, 10430=>732, 10431=>732, 10432=>732, 10433=>732,
+ 10434=>732, 10435=>732, 10436=>732, 10437=>732, 10438=>732, 10439=>732, 10440=>732, 10441=>732, 10442=>732, 10443=>732, 10444=>732, 10445=>732, 10446=>732, 10447=>732, 10448=>732, 10449=>732,
+ 10450=>732, 10451=>732, 10452=>732, 10453=>732, 10454=>732, 10455=>732, 10456=>732, 10457=>732, 10458=>732, 10459=>732, 10460=>732, 10461=>732, 10462=>732, 10463=>732, 10464=>732, 10465=>732,
+ 10466=>732, 10467=>732, 10468=>732, 10469=>732, 10470=>732, 10471=>732, 10472=>732, 10473=>732, 10474=>732, 10475=>732, 10476=>732, 10477=>732, 10478=>732, 10479=>732, 10480=>732, 10481=>732,
+ 10482=>732, 10483=>732, 10484=>732, 10485=>732, 10486=>732, 10487=>732, 10488=>732, 10489=>732, 10490=>732, 10491=>732, 10492=>732, 10493=>732, 10494=>732, 10495=>732, 10502=>838, 10503=>838,
+ 10506=>838, 10507=>838, 10560=>683, 10561=>683, 10627=>734, 10628=>734, 10702=>838, 10703=>1000, 10704=>1000, 10705=>1000, 10706=>1000, 10707=>1000, 10708=>1000, 10709=>1000, 10731=>494, 10746=>838,
+ 10747=>838, 10752=>1000, 10753=>1000, 10754=>1000, 10764=>1325, 10765=>521, 10766=>521, 10767=>521, 10768=>521, 10769=>521, 10770=>521, 10771=>521, 10772=>521, 10773=>521, 10774=>521, 10775=>521,
+ 10776=>521, 10777=>521, 10778=>521, 10779=>521, 10780=>521, 10799=>838, 10877=>838, 10878=>838, 10879=>838, 10880=>838, 10881=>838, 10882=>838, 10883=>838, 10884=>838, 10885=>838, 10886=>838,
+ 10887=>838, 10888=>838, 10889=>838, 10890=>838, 10891=>838, 10892=>838, 10893=>838, 10894=>838, 10895=>838, 10896=>838, 10897=>838, 10898=>838, 10899=>838, 10900=>838, 10901=>838, 10902=>838,
+ 10903=>838, 10904=>838, 10905=>838, 10906=>838, 10907=>838, 10908=>838, 10909=>838, 10910=>838, 10911=>838, 10912=>838, 10926=>838, 10927=>838, 10928=>838, 10929=>838, 10930=>838, 10931=>838,
+ 10932=>838, 10933=>838, 10934=>838, 10935=>838, 10936=>838, 10937=>838, 10938=>838, 11001=>838, 11002=>838, 11008=>838, 11009=>838, 11010=>838, 11011=>838, 11012=>838, 11013=>838, 11014=>838,
+ 11015=>838, 11016=>838, 11017=>838, 11018=>838, 11019=>838, 11020=>838, 11021=>838, 11022=>836, 11023=>836, 11024=>836, 11025=>836, 11026=>945, 11027=>945, 11028=>945, 11029=>945, 11030=>769,
+ 11031=>769, 11032=>769, 11033=>769, 11034=>945, 11040=>869, 11041=>873, 11042=>873, 11043=>873, 11360=>557, 11361=>278, 11362=>557, 11363=>603, 11364=>695, 11365=>613, 11366=>392, 11367=>752,
+ 11368=>634, 11369=>656, 11370=>579, 11371=>685, 11372=>525, 11373=>781, 11374=>863, 11375=>684, 11377=>734, 11378=>1128, 11379=>961, 11380=>592, 11381=>654, 11382=>568, 11383=>660, 11385=>414,
+ 11387=>491, 11388=>175, 11389=>431, 11568=>646, 11569=>888, 11570=>888, 11571=>682, 11572=>684, 11573=>635, 11574=>562, 11575=>684, 11576=>684, 11577=>632, 11578=>632, 11579=>683, 11580=>875,
+ 11581=>685, 11582=>491, 11583=>685, 11584=>888, 11585=>888, 11586=>300, 11587=>627, 11588=>752, 11589=>656, 11590=>527, 11591=>685, 11592=>645, 11593=>632, 11594=>502, 11595=>953, 11596=>778,
+ 11597=>748, 11598=>621, 11599=>295, 11600=>778, 11601=>295, 11602=>752, 11603=>633, 11604=>888, 11605=>888, 11606=>752, 11607=>320, 11608=>749, 11609=>888, 11610=>888, 11611=>698, 11612=>768,
+ 11613=>685, 11614=>698, 11615=>622, 11616=>684, 11617=>752, 11618=>632, 11619=>788, 11620=>567, 11621=>788, 11631=>515, 11800=>531, 11822=>531, 19904=>896, 19905=>896, 19906=>896, 19907=>896,
+ 19908=>896, 19909=>896, 19910=>896, 19911=>896, 19912=>896, 19913=>896, 19914=>896, 19915=>896, 19916=>896, 19917=>896, 19918=>896, 19919=>896, 19920=>896, 19921=>896, 19922=>896, 19923=>896,
+ 19924=>896, 19925=>896, 19926=>896, 19927=>896, 19928=>896, 19929=>896, 19930=>896, 19931=>896, 19932=>896, 19933=>896, 19934=>896, 19935=>896, 19936=>896, 19937=>896, 19938=>896, 19939=>896,
+ 19940=>896, 19941=>896, 19942=>896, 19943=>896, 19944=>896, 19945=>896, 19946=>896, 19947=>896, 19948=>896, 19949=>896, 19950=>896, 19951=>896, 19952=>896, 19953=>896, 19954=>896, 19955=>896,
+ 19956=>896, 19957=>896, 19958=>896, 19959=>896, 19960=>896, 19961=>896, 19962=>896, 19963=>896, 19964=>896, 19965=>896, 19966=>896, 19967=>896, 42564=>635, 42565=>521, 42566=>354, 42567=>338,
+ 42572=>1180, 42573=>1028, 42576=>1029, 42577=>906, 42580=>1080, 42581=>842, 42770=>493, 42771=>493, 42772=>493, 42773=>493, 42774=>493, 42790=>752, 42791=>634, 42792=>878, 42793=>709, 42800=>491,
+ 42801=>521, 42802=>1250, 42803=>985, 42808=>971, 42809=>818, 42810=>971, 42811=>818, 42812=>959, 42813=>818, 42814=>703, 42815=>549, 42822=>680, 42823=>392, 42824=>582, 42825=>427, 42826=>807,
+ 42827=>704, 42830=>1358, 42831=>1019, 42880=>557, 42881=>278, 43003=>575, 43004=>603, 43005=>863, 43006=>295, 43007=>1199, 61440=>977, 61441=>977, 63173=>612, 64256=>689, 64257=>630, 64258=>630,
+ 64259=>967, 64260=>967, 64261=>686, 64262=>861, 64275=>1202, 64276=>1202, 64277=>1196, 64278=>1186, 64279=>1529, 64285=>296, 64286=>0, 64287=>494, 64288=>636, 64289=>856, 64290=>774, 64291=>906,
+ 64292=>771, 64293=>843, 64294=>855, 64295=>807, 64296=>875, 64297=>838, 64298=>799, 64299=>799, 64300=>799, 64301=>799, 64302=>663, 64303=>663, 64304=>663, 64305=>655, 64306=>454, 64307=>607,
+ 64308=>690, 64309=>336, 64310=>437, 64312=>683, 64313=>336, 64314=>642, 64315=>666, 64316=>635, 64318=>736, 64320=>456, 64321=>771, 64323=>651, 64324=>666, 64326=>639, 64327=>688, 64328=>642,
+ 64329=>799, 64330=>726, 64331=>272, 64332=>655, 64333=>666, 64334=>666, 64335=>629, 64338=>941, 64339=>982, 64340=>278, 64341=>302, 64342=>941, 64343=>982, 64344=>278, 64345=>302, 64346=>941,
+ 64347=>982, 64348=>278, 64349=>302, 64350=>941, 64351=>982, 64352=>278, 64353=>302, 64354=>941, 64355=>982, 64356=>278, 64357=>302, 64358=>941, 64359=>982, 64360=>278, 64361=>302, 64362=>1037,
+ 64363=>1035, 64364=>478, 64365=>506, 64366=>1037, 64367=>1035, 64368=>478, 64369=>506, 64370=>646, 64371=>646, 64372=>618, 64373=>646, 64374=>646, 64375=>646, 64376=>618, 64377=>646, 64378=>646,
+ 64379=>646, 64380=>618, 64381=>646, 64382=>646, 64383=>646, 64384=>618, 64385=>646, 64394=>483, 64395=>552, 64396=>483, 64397=>552, 64398=>895, 64399=>895, 64400=>476, 64401=>552, 64402=>895,
+ 64403=>895, 64404=>476, 64405=>552, 64414=>734, 64415=>761, 64473=>483, 64474=>517, 64488=>278, 64489=>302, 64508=>783, 64509=>833, 64510=>278, 64511=>302, 65024=>0, 65025=>0, 65026=>0,
+ 65027=>0, 65028=>0, 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65056=>0, 65057=>0, 65058=>0,
+ 65059=>0, 65136=>293, 65137=>293, 65138=>293, 65139=>262, 65140=>293, 65142=>293, 65143=>293, 65144=>293, 65145=>293, 65146=>293, 65147=>293, 65148=>293, 65149=>293, 65150=>293, 65151=>293,
+ 65152=>470, 65153=>278, 65154=>305, 65155=>278, 65156=>305, 65157=>483, 65158=>517, 65159=>278, 65160=>305, 65161=>783, 65162=>833, 65163=>278, 65164=>302, 65165=>278, 65166=>305, 65167=>941,
+ 65168=>982, 65169=>278, 65170=>302, 65171=>524, 65172=>536, 65173=>941, 65174=>982, 65175=>278, 65176=>302, 65177=>941, 65178=>982, 65179=>278, 65180=>302, 65181=>646, 65182=>646, 65183=>618,
+ 65184=>646, 65185=>646, 65186=>646, 65187=>618, 65188=>646, 65189=>646, 65190=>646, 65191=>618, 65192=>646, 65193=>445, 65194=>525, 65195=>445, 65196=>525, 65197=>483, 65198=>552, 65199=>483,
+ 65200=>552, 65201=>1221, 65202=>1275, 65203=>838, 65204=>892, 65205=>1221, 65206=>1275, 65207=>838, 65208=>892, 65209=>1209, 65210=>1225, 65211=>849, 65212=>867, 65213=>1209, 65214=>1225, 65215=>849,
+ 65216=>867, 65217=>925, 65218=>949, 65219=>796, 65220=>820, 65221=>925, 65222=>949, 65223=>796, 65224=>820, 65225=>597, 65226=>532, 65227=>597, 65228=>482, 65229=>597, 65230=>532, 65231=>523,
+ 65232=>482, 65233=>1037, 65234=>1035, 65235=>478, 65236=>506, 65237=>776, 65238=>834, 65239=>478, 65240=>506, 65241=>824, 65242=>843, 65243=>476, 65244=>552, 65245=>727, 65246=>757, 65247=>305,
+ 65248=>331, 65249=>619, 65250=>666, 65251=>536, 65252=>578, 65253=>734, 65254=>761, 65255=>278, 65256=>302, 65257=>524, 65258=>536, 65259=>527, 65260=>461, 65261=>483, 65262=>517, 65263=>783,
+ 65264=>833, 65265=>783, 65266=>833, 65267=>278, 65268=>302, 65269=>570, 65270=>597, 65271=>570, 65272=>597, 65273=>570, 65274=>597, 65275=>570, 65276=>597, 65279=>0, 65529=>0, 65530=>0,
+ 65531=>0, 65532=>0, 65533=>1025);
+$enc='';
+$diff='';
+$file='dejavusans.z';
+$ctg='dejavusans.ctg.z';
+$originalsize=606452;
+?>
diff --git a/lib/tcpdf/fonts/dejavusans.z b/lib/tcpdf/fonts/dejavusans.z
new file mode 100644
index 0000000000..b2d0829ca4
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusans.z differ
diff --git a/lib/tcpdf/fonts/dejavusansb.ctg.z b/lib/tcpdf/fonts/dejavusansb.ctg.z
new file mode 100644
index 0000000000..363a1c46bf
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansb.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusansb.php b/lib/tcpdf/fonts/dejavusansb.php
new file mode 100644
index 0000000000..7d7d43acb1
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusansb.php
@@ -0,0 +1,314 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>32,'FontBBox'=>'[-1069 -388 1975 1174]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>600, 32=>348, 33=>456, 34=>521, 35=>838, 36=>696, 37=>1002, 38=>872, 39=>306, 40=>457, 41=>457, 42=>523, 43=>838, 44=>380, 45=>415, 46=>380,
+ 47=>365, 48=>696, 49=>696, 50=>696, 51=>696, 52=>696, 53=>696, 54=>696, 55=>696, 56=>696, 57=>696, 58=>400, 59=>400, 60=>838, 61=>838, 62=>838,
+ 63=>580, 64=>1000, 65=>774, 66=>762, 67=>734, 68=>830, 69=>683, 70=>683, 71=>821, 72=>837, 73=>372, 74=>372, 75=>775, 76=>637, 77=>995, 78=>837,
+ 79=>850, 80=>733, 81=>850, 82=>770, 83=>720, 84=>682, 85=>812, 86=>774, 87=>1103, 88=>771, 89=>724, 90=>725, 91=>457, 92=>365, 93=>457, 94=>838,
+ 95=>500, 96=>500, 97=>675, 98=>716, 99=>593, 100=>716, 101=>678, 102=>435, 103=>716, 104=>712, 105=>343, 106=>343, 107=>665, 108=>343, 109=>1042, 110=>712,
+ 111=>687, 112=>716, 113=>716, 114=>493, 115=>595, 116=>478, 117=>712, 118=>652, 119=>924, 120=>645, 121=>652, 122=>582, 123=>712, 124=>365, 125=>712, 126=>838,
+ 8364=>696, 1027=>637, 8218=>380, 402=>435, 8222=>657, 8230=>1000, 8224=>500, 8225=>500, 710=>500, 8240=>1440, 352=>720, 8249=>412, 338=>1167, 1036=>817, 381=>725, 1039=>837,
+ 8216=>380, 8217=>380, 8220=>657, 8221=>657, 8226=>639, 8211=>500, 8212=>1000, 732=>500, 8482=>1000, 353=>595, 8250=>412, 339=>1094, 1116=>679, 382=>582, 376=>724, 160=>348,
+ 161=>456, 162=>696, 163=>696, 164=>636, 165=>696, 166=>365, 167=>500, 168=>500, 169=>1000, 170=>564, 171=>646, 172=>838, 173=>415, 174=>1000, 175=>500, 176=>500,
+ 177=>838, 178=>438, 179=>438, 180=>500, 181=>736, 182=>636, 183=>380, 184=>500, 185=>438, 186=>564, 187=>646, 188=>1035, 189=>1035, 190=>1035, 191=>580, 192=>774,
+ 193=>774, 194=>774, 195=>774, 196=>774, 197=>774, 198=>1085, 199=>734, 200=>683, 201=>683, 202=>683, 203=>683, 204=>372, 205=>372, 206=>372, 207=>372, 208=>838,
+ 209=>837, 210=>850, 211=>850, 212=>850, 213=>850, 214=>850, 215=>838, 216=>850, 217=>812, 218=>812, 219=>812, 220=>812, 221=>724, 222=>738, 223=>719, 224=>675,
+ 225=>675, 226=>675, 227=>675, 228=>675, 229=>675, 230=>1048, 231=>593, 232=>678, 233=>678, 234=>678, 235=>678, 236=>343, 237=>343, 238=>343, 239=>343, 240=>687,
+ 241=>712, 242=>687, 243=>687, 244=>687, 245=>687, 246=>687, 247=>838, 248=>687, 249=>712, 250=>712, 251=>712, 252=>712, 253=>652, 254=>716, 255=>652, 256=>774,
+ 257=>675, 258=>774, 259=>675, 260=>774, 261=>675, 262=>734, 263=>593, 264=>734, 265=>593, 266=>734, 267=>593, 268=>734, 269=>593, 270=>830, 271=>716, 272=>838,
+ 273=>716, 274=>683, 275=>678, 276=>683, 277=>678, 278=>683, 279=>678, 280=>683, 281=>678, 282=>683, 283=>678, 284=>821, 285=>716, 286=>821, 287=>716, 288=>821,
+ 289=>716, 290=>821, 291=>716, 292=>837, 293=>712, 294=>974, 295=>790, 296=>372, 297=>343, 298=>372, 299=>343, 300=>372, 301=>343, 302=>372, 303=>343, 304=>372,
+ 305=>343, 306=>744, 307=>686, 308=>372, 309=>343, 310=>775, 311=>665, 312=>665, 313=>637, 314=>343, 315=>637, 316=>343, 317=>637, 318=>479, 319=>637, 320=>557,
+ 321=>642, 322=>371, 323=>837, 324=>712, 325=>837, 326=>712, 327=>837, 328=>712, 329=>983, 330=>837, 331=>712, 332=>850, 333=>687, 334=>850, 335=>687, 336=>850,
+ 337=>687, 340=>770, 341=>493, 342=>770, 343=>493, 344=>770, 345=>493, 346=>720, 347=>595, 348=>720, 349=>595, 350=>720, 351=>595, 354=>682, 355=>478, 356=>682,
+ 357=>478, 358=>682, 359=>478, 360=>812, 361=>712, 362=>812, 363=>712, 364=>812, 365=>712, 366=>812, 367=>712, 368=>812, 369=>712, 370=>812, 371=>712, 372=>1103,
+ 373=>924, 374=>724, 375=>652, 377=>725, 378=>582, 379=>725, 380=>582, 383=>435, 384=>716, 385=>811, 386=>762, 387=>716, 388=>762, 389=>716, 390=>734, 391=>734,
+ 392=>593, 393=>838, 394=>879, 395=>757, 396=>716, 397=>688, 398=>683, 399=>849, 400=>696, 401=>683, 403=>821, 404=>793, 405=>1045, 406=>436, 407=>389, 408=>775,
+ 409=>665, 410=>360, 411=>592, 412=>1042, 413=>837, 414=>712, 415=>850, 416=>874, 417=>687, 418=>1083, 419=>912, 420=>782, 421=>716, 422=>770, 423=>720, 424=>595,
+ 425=>683, 426=>552, 427=>478, 428=>707, 429=>478, 430=>682, 431=>835, 432=>712, 433=>850, 434=>813, 435=>797, 436=>778, 437=>725, 438=>582, 439=>772, 440=>772,
+ 441=>641, 442=>582, 443=>696, 444=>772, 445=>641, 446=>573, 447=>716, 448=>372, 449=>659, 450=>544, 451=>372, 452=>1555, 453=>1412, 454=>1298, 455=>1009, 456=>980,
+ 457=>686, 458=>1209, 459=>1180, 460=>1055, 461=>774, 462=>675, 463=>372, 464=>343, 465=>850, 466=>687, 467=>812, 468=>712, 469=>812, 470=>712, 471=>812, 472=>712,
+ 473=>812, 474=>712, 475=>812, 476=>712, 477=>678, 478=>774, 479=>675, 480=>774, 481=>675, 482=>1085, 483=>1048, 484=>821, 485=>716, 486=>821, 487=>716, 488=>775,
+ 489=>665, 490=>850, 491=>687, 492=>850, 493=>687, 494=>772, 495=>582, 496=>343, 497=>1555, 498=>1412, 499=>1298, 500=>821, 501=>716, 502=>1289, 503=>787, 504=>837,
+ 505=>712, 506=>774, 507=>675, 508=>1085, 509=>1048, 510=>850, 511=>687, 512=>774, 513=>675, 514=>774, 515=>675, 516=>683, 517=>678, 518=>683, 519=>678, 520=>372,
+ 521=>343, 522=>372, 523=>343, 524=>850, 525=>687, 526=>850, 527=>687, 528=>770, 529=>493, 530=>770, 531=>493, 532=>812, 533=>712, 534=>812, 535=>712, 536=>720,
+ 537=>595, 538=>682, 539=>478, 540=>690, 541=>607, 542=>837, 543=>712, 544=>837, 545=>865, 546=>809, 547=>659, 548=>725, 549=>582, 550=>774, 551=>675, 552=>683,
+ 553=>678, 554=>850, 555=>687, 556=>850, 557=>687, 558=>850, 559=>687, 560=>850, 561=>687, 562=>724, 563=>652, 564=>492, 565=>867, 566=>512, 567=>343, 568=>1088,
+ 569=>1088, 570=>774, 571=>734, 572=>593, 573=>637, 574=>682, 575=>595, 576=>582, 577=>782, 578=>614, 579=>762, 580=>812, 581=>774, 582=>683, 583=>678, 584=>372,
+ 585=>343, 586=>860, 587=>791, 588=>770, 589=>493, 590=>724, 591=>652, 592=>675, 593=>716, 594=>716, 595=>716, 596=>593, 597=>593, 598=>717, 599=>792, 600=>678,
+ 601=>678, 602=>876, 603=>557, 604=>545, 605=>815, 606=>731, 607=>343, 608=>792, 609=>716, 610=>627, 611=>644, 612=>635, 613=>712, 614=>712, 615=>712, 616=>545,
+ 617=>440, 618=>545, 619=>559, 620=>693, 621=>343, 622=>841, 623=>1042, 624=>1042, 625=>1042, 626=>712, 627=>793, 628=>707, 629=>687, 630=>909, 631=>681, 632=>796,
+ 633=>538, 634=>538, 635=>650, 636=>493, 637=>493, 638=>596, 639=>596, 640=>642, 641=>642, 642=>595, 643=>415, 644=>435, 645=>605, 646=>552, 647=>478, 648=>478,
+ 649=>920, 650=>772, 651=>670, 652=>652, 653=>924, 654=>652, 655=>724, 656=>694, 657=>684, 658=>641, 659=>641, 660=>573, 661=>573, 662=>573, 663=>573, 664=>850,
+ 665=>633, 666=>731, 667=>685, 668=>691, 669=>343, 670=>732, 671=>539, 672=>792, 673=>573, 674=>573, 675=>1156, 676=>1214, 677=>1155, 678=>974, 679=>769, 680=>929,
+ 681=>1026, 682=>792, 683=>780, 684=>591, 685=>415, 686=>677, 687=>789, 688=>456, 689=>456, 690=>219, 691=>315, 692=>315, 693=>315, 694=>411, 695=>591, 696=>417,
+ 697=>302, 698=>521, 699=>380, 700=>380, 701=>380, 702=>366, 703=>366, 704=>326, 705=>326, 706=>500, 707=>500, 708=>500, 709=>500, 711=>500, 712=>306, 713=>500,
+ 714=>500, 715=>500, 716=>306, 717=>500, 718=>500, 719=>500, 720=>337, 721=>337, 722=>366, 723=>366, 724=>500, 725=>500, 726=>500, 727=>500, 728=>500, 729=>500,
+ 730=>500, 731=>500, 733=>500, 734=>351, 735=>500, 736=>412, 737=>219, 738=>381, 739=>413, 740=>326, 741=>500, 742=>500, 743=>500, 744=>500, 745=>500, 748=>500,
+ 749=>500, 750=>500, 755=>500, 759=>500, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0,
+ 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0,
+ 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0,
+ 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0,
+ 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 837=>0, 838=>0, 839=>0, 840=>0, 841=>0, 842=>0, 843=>0,
+ 844=>0, 845=>0, 846=>0, 847=>0, 849=>0, 850=>0, 851=>0, 855=>0, 856=>0, 860=>0, 861=>0, 862=>0, 863=>0, 864=>0, 865=>0, 866=>0,
+ 884=>302, 885=>302, 890=>500, 891=>593, 892=>550, 893=>549, 894=>337, 900=>441, 901=>500, 902=>797, 903=>380, 904=>846, 905=>1009, 906=>563, 908=>891, 910=>980,
+ 911=>894, 912=>390, 913=>774, 914=>762, 915=>637, 916=>774, 917=>683, 918=>725, 919=>837, 920=>850, 921=>372, 922=>775, 923=>774, 924=>995, 925=>837, 926=>632,
+ 927=>850, 928=>837, 929=>733, 931=>683, 932=>682, 933=>724, 934=>850, 935=>771, 936=>850, 937=>850, 938=>372, 939=>724, 940=>687, 941=>557, 942=>712, 943=>390,
+ 944=>675, 945=>687, 946=>716, 947=>681, 948=>687, 949=>557, 950=>591, 951=>712, 952=>687, 953=>390, 954=>710, 955=>633, 956=>736, 957=>681, 958=>591, 959=>687,
+ 960=>791, 961=>716, 962=>593, 963=>779, 964=>638, 965=>675, 966=>782, 967=>645, 968=>794, 969=>869, 970=>390, 971=>675, 972=>687, 973=>675, 974=>869, 976=>651,
+ 977=>661, 978=>746, 979=>981, 980=>746, 981=>796, 982=>869, 983=>744, 984=>850, 985=>687, 986=>734, 987=>593, 988=>683, 989=>494, 990=>702, 991=>660, 992=>919,
+ 993=>627, 994=>1093, 995=>837, 996=>832, 997=>716, 998=>928, 999=>744, 1000=>733, 1001=>650, 1002=>789, 1003=>671, 1004=>752, 1005=>716, 1006=>682, 1007=>590, 1008=>744,
+ 1009=>716, 1010=>593, 1011=>343, 1012=>850, 1013=>645, 1014=>644, 1015=>738, 1016=>716, 1017=>734, 1018=>995, 1019=>732, 1020=>716, 1021=>698, 1022=>734, 1023=>698, 1024=>683,
+ 1025=>683, 1026=>878, 1028=>734, 1029=>720, 1030=>372, 1031=>372, 1032=>372, 1033=>1154, 1034=>1130, 1035=>878, 1037=>837, 1038=>771, 1040=>774, 1041=>762, 1042=>762, 1043=>637,
+ 1044=>891, 1045=>683, 1046=>1224, 1047=>710, 1048=>837, 1049=>837, 1050=>817, 1051=>831, 1052=>995, 1053=>837, 1054=>850, 1055=>837, 1056=>733, 1057=>734, 1058=>682, 1059=>771,
+ 1060=>992, 1061=>771, 1062=>928, 1063=>808, 1064=>1235, 1065=>1326, 1066=>939, 1067=>1036, 1068=>762, 1069=>734, 1070=>1174, 1071=>770, 1072=>675, 1073=>698, 1074=>633, 1075=>522,
+ 1076=>808, 1077=>678, 1078=>995, 1079=>581, 1080=>701, 1081=>701, 1082=>679, 1083=>732, 1084=>817, 1085=>691, 1086=>687, 1087=>691, 1088=>716, 1089=>593, 1090=>580, 1091=>652,
+ 1092=>992, 1093=>645, 1094=>741, 1095=>687, 1096=>1062, 1097=>1105, 1098=>751, 1099=>904, 1100=>632, 1101=>593, 1102=>972, 1103=>642, 1104=>678, 1105=>678, 1106=>714, 1107=>522,
+ 1108=>593, 1109=>595, 1110=>343, 1111=>343, 1112=>343, 1113=>991, 1114=>956, 1115=>734, 1117=>701, 1118=>652, 1119=>691, 1120=>1093, 1121=>869, 1122=>840, 1123=>736, 1124=>1012,
+ 1125=>839, 1126=>992, 1127=>832, 1128=>1358, 1129=>1121, 1130=>850, 1131=>687, 1132=>1236, 1133=>1007, 1134=>696, 1135=>557, 1136=>1075, 1137=>1061, 1138=>850, 1139=>687, 1140=>850,
+ 1141=>695, 1142=>850, 1143=>695, 1144=>1148, 1145=>1043, 1146=>1074, 1147=>863, 1148=>1405, 1149=>1173, 1150=>1093, 1151=>869, 1152=>734, 1153=>593, 1154=>652, 1155=>0, 1156=>0,
+ 1157=>0, 1158=>0, 1160=>418, 1161=>418, 1162=>957, 1163=>807, 1164=>762, 1165=>611, 1166=>733, 1167=>716, 1168=>637, 1169=>522, 1170=>666, 1171=>543, 1172=>808, 1173=>669,
+ 1174=>1224, 1175=>995, 1176=>710, 1177=>581, 1178=>775, 1179=>679, 1180=>817, 1181=>679, 1182=>817, 1183=>679, 1184=>1015, 1185=>826, 1186=>956, 1187=>808, 1188=>1103, 1189=>874,
+ 1190=>1273, 1191=>1017, 1192=>875, 1193=>710, 1194=>734, 1195=>593, 1196=>682, 1197=>580, 1198=>724, 1199=>652, 1200=>724, 1201=>652, 1202=>771, 1203=>645, 1204=>1112, 1205=>1000,
+ 1206=>808, 1207=>687, 1208=>808, 1209=>687, 1210=>808, 1211=>712, 1212=>1026, 1213=>810, 1214=>1026, 1215=>810, 1216=>372, 1217=>1224, 1218=>995, 1219=>775, 1220=>630, 1221=>951,
+ 1222=>805, 1223=>837, 1224=>691, 1225=>957, 1226=>807, 1227=>808, 1228=>687, 1229=>1115, 1230=>933, 1231=>343, 1232=>774, 1233=>675, 1234=>774, 1235=>675, 1236=>1085, 1237=>1048,
+ 1238=>683, 1239=>678, 1240=>849, 1241=>678, 1242=>849, 1243=>678, 1244=>1224, 1245=>995, 1246=>710, 1247=>581, 1248=>772, 1249=>641, 1250=>837, 1251=>701, 1252=>837, 1253=>701,
+ 1254=>850, 1255=>687, 1256=>850, 1257=>687, 1258=>850, 1259=>687, 1260=>734, 1261=>593, 1262=>771, 1263=>652, 1264=>771, 1265=>652, 1266=>771, 1267=>652, 1268=>808, 1269=>687,
+ 1270=>637, 1271=>522, 1272=>1036, 1273=>904, 1274=>666, 1275=>543, 1276=>771, 1277=>645, 1278=>771, 1279=>645, 1280=>762, 1281=>608, 1282=>1159, 1283=>893, 1284=>1119, 1285=>920,
+ 1286=>828, 1287=>693, 1288=>1242, 1289=>1017, 1290=>1248, 1291=>1013, 1292=>839, 1293=>638, 1294=>938, 1295=>803, 1296=>696, 1297=>557, 1298=>831, 1299=>732, 1306=>850, 1307=>716,
+ 1308=>1103, 1309=>924, 1312=>1267, 1313=>1059, 1314=>1273, 1315=>1017, 1329=>984, 1330=>812, 1331=>984, 1332=>984, 1333=>812, 1334=>777, 1335=>812, 1336=>812, 1337=>975, 1338=>984,
+ 1339=>812, 1340=>710, 1341=>1078, 1342=>1136, 1343=>812, 1344=>710, 1345=>757, 1346=>984, 1347=>876, 1348=>984, 1349=>793, 1350=>984, 1351=>812, 1352=>812, 1353=>812, 1354=>958,
+ 1355=>777, 1356=>984, 1357=>812, 1358=>984, 1359=>720, 1360=>812, 1361=>793, 1362=>895, 1363=>850, 1364=>936, 1365=>850, 1366=>720, 1369=>366, 1370=>380, 1371=>550, 1372=>550,
+ 1373=>380, 1374=>546, 1375=>521, 1377=>1042, 1378=>712, 1379=>866, 1380=>868, 1381=>712, 1382=>817, 1383=>653, 1384=>712, 1385=>811, 1386=>817, 1387=>712, 1388=>498, 1389=>1018,
+ 1390=>716, 1391=>712, 1392=>712, 1393=>716, 1394=>819, 1395=>712, 1396=>751, 1397=>343, 1398=>882, 1399=>559, 1400=>712, 1401=>559, 1402=>1042, 1403=>559, 1404=>863, 1405=>712,
+ 1406=>813, 1407=>1042, 1408=>712, 1409=>716, 1410=>571, 1411=>1042, 1412=>778, 1413=>687, 1414=>720, 1415=>862, 1417=>400, 1418=>487, 1456=>0, 1457=>0, 1458=>0, 1459=>0,
+ 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1466=>0, 1467=>0, 1468=>0, 1469=>0, 1470=>415, 1471=>0, 1472=>372, 1473=>0, 1474=>0, 1475=>372,
+ 1478=>497, 1479=>0, 1488=>751, 1489=>673, 1490=>537, 1491=>654, 1492=>712, 1493=>343, 1494=>491, 1495=>712, 1496=>724, 1497=>343, 1498=>649, 1499=>650, 1500=>679, 1501=>712,
+ 1502=>775, 1503=>343, 1504=>497, 1505=>773, 1506=>678, 1507=>718, 1508=>687, 1509=>628, 1510=>751, 1511=>729, 1512=>649, 1513=>949, 1514=>751, 1520=>664, 1521=>664, 1522=>663,
+ 1523=>444, 1524=>710, 1548=>380, 1557=>0, 1563=>400, 1567=>580, 1569=>511, 1570=>343, 1571=>343, 1572=>622, 1573=>343, 1574=>917, 1575=>343, 1576=>1005, 1577=>590, 1578=>1005,
+ 1579=>1005, 1580=>721, 1581=>721, 1582=>721, 1583=>513, 1584=>513, 1585=>576, 1586=>576, 1587=>1380, 1588=>1380, 1589=>1345, 1590=>1345, 1591=>1039, 1592=>1039, 1593=>683, 1594=>683,
+ 1600=>342, 1601=>1162, 1602=>894, 1603=>917, 1604=>868, 1605=>733, 1606=>854, 1607=>590, 1608=>622, 1609=>917, 1610=>917, 1611=>0, 1612=>0, 1613=>0, 1614=>0, 1615=>0,
+ 1616=>0, 1617=>0, 1618=>0, 1619=>0, 1620=>0, 1621=>0, 1626=>500, 1632=>610, 1633=>610, 1634=>610, 1635=>610, 1636=>610, 1637=>610, 1638=>610, 1639=>610, 1640=>610,
+ 1641=>610, 1642=>610, 1643=>374, 1644=>380, 1645=>545, 1646=>1005, 1647=>894, 1652=>292, 1657=>1005, 1658=>1005, 1659=>1005, 1660=>1005, 1661=>1005, 1662=>1005, 1663=>1005, 1664=>1005,
+ 1665=>721, 1666=>721, 1667=>721, 1668=>721, 1669=>721, 1670=>721, 1671=>721, 1681=>576, 1682=>576, 1685=>681, 1688=>576, 1697=>1162, 1700=>1162, 1702=>1162, 1705=>1024, 1711=>1024,
+ 1717=>868, 1722=>854, 1727=>721, 1734=>622, 1740=>917, 1742=>917, 1749=>590, 1776=>610, 1777=>610, 1778=>610, 1779=>610, 1780=>610, 1781=>610, 1782=>610, 1783=>610, 1784=>610,
+ 1785=>610, 1984=>696, 1985=>696, 1986=>696, 1987=>696, 1988=>696, 1989=>696, 1990=>696, 1991=>696, 1992=>696, 1993=>696, 1994=>343, 1995=>547, 1996=>543, 1997=>652, 1998=>691,
+ 1999=>691, 2000=>594, 2001=>691, 2002=>904, 2003=>551, 2004=>551, 2005=>627, 2006=>688, 2007=>444, 2008=>1022, 2009=>506, 2010=>826, 2011=>691, 2012=>652, 2013=>912, 2014=>627,
+ 2015=>707, 2016=>506, 2017=>652, 2018=>574, 2019=>627, 2020=>627, 2021=>627, 2022=>574, 2023=>574, 2027=>0, 2028=>0, 2029=>0, 2030=>0, 2031=>0, 2032=>0, 2033=>0,
+ 2034=>0, 2035=>0, 2036=>380, 2037=>380, 2040=>691, 2041=>691, 2042=>415, 3647=>743, 3713=>790, 3714=>748, 3716=>749, 3719=>569, 3720=>742, 3722=>744, 3725=>761, 3732=>706,
+ 3733=>704, 3734=>747, 3735=>819, 3737=>730, 3738=>727, 3739=>727, 3740=>922, 3741=>827, 3742=>866, 3743=>866, 3745=>836, 3746=>761, 3747=>770, 3749=>769, 3751=>713, 3754=>827,
+ 3755=>1031, 3757=>724, 3758=>784, 3759=>934, 3760=>688, 3761=>0, 3762=>610, 3763=>610, 3764=>0, 3765=>0, 3766=>0, 3767=>0, 3768=>0, 3769=>0, 3771=>0, 3772=>0,
+ 3773=>670, 3776=>516, 3777=>860, 3778=>516, 3779=>650, 3780=>632, 3782=>759, 3784=>0, 3785=>0, 3786=>0, 3787=>0, 3788=>0, 3789=>0, 3792=>771, 3793=>771, 3794=>693,
+ 3795=>836, 3796=>729, 3797=>729, 3798=>849, 3799=>790, 3800=>759, 3801=>910, 3804=>1363, 3805=>1363, 4256=>918, 4257=>744, 4258=>739, 4259=>837, 4260=>649, 4261=>773, 4262=>857,
+ 4263=>889, 4264=>530, 4265=>633, 4266=>857, 4267=>900, 4268=>643, 4269=>903, 4270=>814, 4271=>752, 4272=>869, 4273=>643, 4274=>643, 4275=>886, 4276=>886, 4277=>733, 4278=>653,
+ 4279=>643, 4280=>646, 4281=>643, 4282=>790, 4283=>902, 4284=>633, 4285=>619, 4286=>643, 4287=>778, 4288=>892, 4289=>601, 4290=>742, 4291=>616, 4292=>633, 4293=>742, 4304=>553,
+ 4305=>552, 4306=>596, 4307=>815, 4308=>562, 4309=>563, 4310=>553, 4311=>827, 4312=>553, 4313=>543, 4314=>1074, 4315=>563, 4316=>563, 4317=>812, 4318=>552, 4319=>591, 4320=>822,
+ 4321=>563, 4322=>690, 4323=>583, 4324=>813, 4325=>562, 4326=>813, 4327=>563, 4328=>563, 4329=>563, 4330=>632, 4331=>563, 4332=>563, 4333=>552, 4334=>563, 4335=>563, 4336=>558,
+ 4337=>604, 4338=>552, 4339=>552, 4340=>553, 4341=>605, 4342=>852, 4343=>635, 4344=>563, 4345=>596, 4346=>542, 4347=>474, 4348=>368, 5121=>774, 5122=>774, 5123=>774, 5124=>774,
+ 5125=>905, 5126=>905, 5127=>905, 5129=>905, 5130=>905, 5131=>905, 5132=>1018, 5133=>1009, 5134=>1018, 5135=>1009, 5136=>1018, 5137=>1009, 5138=>1149, 5139=>1140, 5140=>1149, 5141=>1140,
+ 5142=>905, 5143=>1149, 5144=>1142, 5145=>1149, 5146=>1142, 5147=>905, 5149=>310, 5150=>529, 5151=>425, 5152=>425, 5153=>395, 5154=>395, 5155=>395, 5156=>395, 5157=>564, 5158=>470,
+ 5159=>310, 5160=>395, 5161=>395, 5162=>395, 5163=>1213, 5164=>986, 5165=>1216, 5166=>1297, 5167=>774, 5168=>774, 5169=>774, 5170=>774, 5171=>886, 5172=>886, 5173=>886, 5175=>886,
+ 5176=>886, 5177=>886, 5178=>1018, 5179=>1009, 5180=>1018, 5181=>1009, 5182=>1018, 5183=>1009, 5184=>1149, 5185=>1140, 5186=>1149, 5187=>1140, 5188=>1149, 5189=>1142, 5190=>1149, 5191=>1142,
+ 5192=>886, 5193=>576, 5194=>229, 5196=>812, 5197=>812, 5198=>812, 5199=>812, 5200=>815, 5201=>815, 5202=>815, 5204=>815, 5205=>815, 5206=>815, 5207=>1056, 5208=>1048, 5209=>1056,
+ 5210=>1048, 5211=>1056, 5212=>1048, 5213=>1060, 5214=>1054, 5215=>1060, 5216=>1054, 5217=>1060, 5218=>1052, 5219=>1060, 5220=>1052, 5221=>1060, 5222=>483, 5223=>1005, 5224=>1005, 5225=>1023,
+ 5226=>1017, 5227=>743, 5228=>743, 5229=>743, 5230=>743, 5231=>743, 5232=>755, 5233=>743, 5234=>743, 5235=>743, 5236=>1029, 5237=>975, 5238=>980, 5239=>975, 5240=>980, 5241=>975,
+ 5242=>1029, 5243=>975, 5244=>1029, 5245=>975, 5246=>980, 5247=>975, 5248=>980, 5249=>975, 5250=>980, 5251=>501, 5252=>501, 5253=>938, 5254=>938, 5255=>938, 5256=>938, 5257=>743,
+ 5258=>743, 5259=>743, 5260=>743, 5261=>743, 5262=>755, 5263=>743, 5264=>743, 5265=>743, 5266=>1029, 5267=>975, 5268=>1029, 5269=>975, 5270=>1029, 5271=>975, 5272=>1029, 5273=>975,
+ 5274=>1029, 5275=>975, 5276=>1029, 5277=>975, 5278=>1029, 5279=>975, 5280=>1029, 5281=>501, 5282=>501, 5283=>626, 5284=>626, 5285=>626, 5286=>626, 5287=>626, 5288=>667, 5289=>626,
+ 5290=>626, 5291=>626, 5292=>881, 5293=>854, 5294=>863, 5295=>874, 5296=>863, 5297=>874, 5298=>881, 5299=>874, 5300=>881, 5301=>874, 5302=>863, 5303=>874, 5304=>863, 5305=>874,
+ 5306=>863, 5307=>436, 5308=>548, 5309=>436, 5312=>988, 5313=>988, 5314=>988, 5315=>988, 5316=>931, 5317=>931, 5318=>931, 5319=>931, 5320=>931, 5321=>1238, 5322=>1247, 5323=>1200,
+ 5324=>1228, 5325=>1200, 5326=>1228, 5327=>931, 5328=>660, 5329=>497, 5330=>660, 5331=>988, 5332=>988, 5333=>988, 5334=>988, 5335=>931, 5336=>931, 5337=>931, 5338=>931, 5339=>931,
+ 5340=>1231, 5341=>1247, 5342=>1283, 5343=>1228, 5344=>1283, 5345=>1228, 5346=>1228, 5347=>1214, 5348=>1228, 5349=>1214, 5350=>1283, 5351=>1228, 5352=>1283, 5353=>1228, 5354=>660, 5356=>886,
+ 5357=>730, 5358=>730, 5359=>730, 5360=>730, 5361=>730, 5362=>755, 5363=>730, 5364=>730, 5365=>730, 5366=>998, 5367=>958, 5368=>967, 5369=>989, 5370=>967, 5371=>989, 5372=>998,
+ 5373=>958, 5374=>998, 5375=>958, 5376=>967, 5377=>989, 5378=>967, 5379=>989, 5380=>967, 5381=>493, 5382=>460, 5383=>493, 5392=>923, 5393=>923, 5394=>923, 5395=>1136, 5396=>1136,
+ 5397=>1136, 5398=>1136, 5399=>1209, 5400=>1202, 5401=>1209, 5402=>1202, 5403=>1209, 5404=>1202, 5405=>1431, 5406=>1420, 5407=>1431, 5408=>1420, 5409=>1431, 5410=>1420, 5411=>1431, 5412=>1420,
+ 5413=>746, 5414=>776, 5415=>776, 5416=>776, 5417=>776, 5418=>776, 5419=>776, 5420=>776, 5421=>776, 5422=>776, 5423=>1003, 5424=>1003, 5425=>1013, 5426=>996, 5427=>1013, 5428=>996,
+ 5429=>1003, 5430=>1003, 5431=>1003, 5432=>1003, 5433=>1013, 5434=>996, 5435=>1013, 5436=>996, 5437=>1013, 5438=>495, 5440=>395, 5441=>510, 5442=>1033, 5443=>1033, 5444=>976, 5445=>976,
+ 5446=>976, 5447=>976, 5448=>733, 5449=>733, 5450=>733, 5451=>733, 5452=>733, 5453=>733, 5454=>1003, 5455=>959, 5456=>495, 5458=>886, 5459=>774, 5460=>774, 5461=>774, 5462=>774,
+ 5463=>928, 5464=>928, 5465=>928, 5466=>928, 5467=>1172, 5468=>1142, 5469=>602, 5470=>812, 5471=>812, 5472=>812, 5473=>812, 5474=>812, 5475=>812, 5476=>815, 5477=>815, 5478=>815,
+ 5479=>815, 5480=>1060, 5481=>1052, 5482=>548, 5492=>977, 5493=>977, 5494=>977, 5495=>977, 5496=>977, 5497=>977, 5498=>977, 5499=>618, 5500=>837, 5501=>510, 5502=>1238, 5503=>1238,
+ 5504=>1238, 5505=>1238, 5506=>1238, 5507=>1238, 5508=>1238, 5509=>989, 5514=>977, 5515=>977, 5516=>977, 5517=>977, 5518=>1591, 5519=>1591, 5520=>1591, 5521=>1295, 5522=>1295, 5523=>1591,
+ 5524=>1591, 5525=>848, 5526=>1273, 5536=>988, 5537=>988, 5538=>931, 5539=>931, 5540=>931, 5541=>931, 5542=>660, 5543=>776, 5544=>776, 5545=>776, 5546=>776, 5547=>776, 5548=>776,
+ 5549=>776, 5550=>495, 5551=>743, 5598=>830, 5601=>830, 5702=>496, 5703=>496, 5742=>413, 5743=>1238, 5744=>1591, 5745=>2016, 5746=>2016, 5747=>1720, 5748=>1678, 5749=>2016, 5750=>2016,
+ 5760=>543, 5761=>637, 5762=>945, 5763=>1254, 5764=>1563, 5765=>1871, 5766=>627, 5767=>936, 5768=>1254, 5769=>1559, 5770=>1871, 5771=>569, 5772=>877, 5773=>1187, 5774=>1497, 5775=>1807,
+ 5776=>637, 5777=>945, 5778=>1240, 5779=>1555, 5780=>1871, 5781=>569, 5782=>569, 5783=>789, 5784=>1234, 5785=>1559, 5786=>740, 5787=>638, 5788=>638, 7424=>652, 7425=>833, 7426=>1048,
+ 7427=>608, 7428=>593, 7429=>676, 7430=>676, 7431=>559, 7432=>557, 7433=>343, 7434=>494, 7435=>665, 7436=>539, 7437=>817, 7438=>701, 7439=>687, 7440=>593, 7441=>660, 7442=>660,
+ 7443=>660, 7444=>1094, 7446=>687, 7447=>687, 7448=>556, 7449=>642, 7450=>642, 7451=>580, 7452=>634, 7453=>737, 7454=>948, 7455=>695, 7456=>652, 7457=>924, 7458=>582, 7459=>646,
+ 7462=>539, 7463=>652, 7464=>691, 7465=>556, 7466=>781, 7467=>732, 7468=>487, 7469=>683, 7470=>480, 7472=>523, 7473=>430, 7474=>430, 7475=>517, 7476=>527, 7477=>234, 7478=>234,
+ 7479=>488, 7480=>401, 7481=>626, 7482=>527, 7483=>527, 7484=>535, 7485=>509, 7486=>461, 7487=>485, 7488=>430, 7489=>511, 7490=>695, 7491=>458, 7492=>458, 7493=>479, 7494=>712,
+ 7495=>479, 7496=>479, 7497=>479, 7498=>479, 7499=>386, 7500=>386, 7501=>479, 7502=>219, 7503=>487, 7504=>664, 7505=>456, 7506=>488, 7507=>414, 7508=>488, 7509=>488, 7510=>479,
+ 7511=>388, 7512=>456, 7513=>462, 7514=>664, 7515=>501, 7517=>451, 7518=>429, 7519=>433, 7520=>493, 7521=>406, 7522=>219, 7523=>315, 7524=>456, 7525=>501, 7526=>451, 7527=>429,
+ 7528=>451, 7529=>493, 7530=>406, 7543=>716, 7544=>527, 7547=>545, 7557=>514, 7579=>479, 7580=>414, 7581=>414, 7582=>488, 7583=>386, 7584=>377, 7585=>348, 7586=>479, 7587=>456,
+ 7588=>347, 7589=>281, 7590=>347, 7591=>347, 7592=>431, 7593=>326, 7594=>330, 7595=>370, 7596=>664, 7597=>664, 7598=>562, 7599=>562, 7600=>448, 7601=>488, 7602=>542, 7603=>422,
+ 7604=>396, 7605=>388, 7606=>583, 7607=>494, 7608=>399, 7609=>451, 7610=>501, 7611=>417, 7612=>523, 7613=>470, 7614=>455, 7615=>425, 7620=>0, 7621=>0, 7622=>0, 7623=>0,
+ 7624=>0, 7625=>0, 7680=>774, 7681=>675, 7682=>762, 7683=>716, 7684=>762, 7685=>716, 7686=>762, 7687=>716, 7688=>734, 7689=>593, 7690=>830, 7691=>716, 7692=>830, 7693=>716,
+ 7694=>830, 7695=>716, 7696=>830, 7697=>716, 7698=>830, 7699=>716, 7700=>683, 7701=>678, 7702=>683, 7703=>678, 7704=>683, 7705=>678, 7706=>683, 7707=>678, 7708=>683, 7709=>678,
+ 7710=>683, 7711=>435, 7712=>821, 7713=>716, 7714=>837, 7715=>712, 7716=>837, 7717=>712, 7718=>837, 7719=>712, 7720=>837, 7721=>712, 7722=>837, 7723=>712, 7724=>372, 7725=>343,
+ 7726=>372, 7727=>343, 7728=>775, 7729=>665, 7730=>775, 7731=>665, 7732=>775, 7733=>665, 7734=>637, 7735=>343, 7736=>637, 7737=>343, 7738=>637, 7739=>343, 7740=>637, 7741=>343,
+ 7742=>995, 7743=>1042, 7744=>995, 7745=>1042, 7746=>995, 7747=>1042, 7748=>837, 7749=>712, 7750=>837, 7751=>712, 7752=>837, 7753=>712, 7754=>837, 7755=>712, 7756=>850, 7757=>687,
+ 7758=>850, 7759=>687, 7760=>850, 7761=>687, 7762=>850, 7763=>687, 7764=>733, 7765=>716, 7766=>733, 7767=>716, 7768=>770, 7769=>493, 7770=>770, 7771=>493, 7772=>770, 7773=>493,
+ 7774=>770, 7775=>493, 7776=>720, 7777=>595, 7778=>720, 7779=>595, 7780=>720, 7781=>595, 7782=>720, 7783=>595, 7784=>720, 7785=>595, 7786=>682, 7787=>478, 7788=>682, 7789=>478,
+ 7790=>682, 7791=>478, 7792=>682, 7793=>478, 7794=>812, 7795=>712, 7796=>812, 7797=>712, 7798=>812, 7799=>712, 7800=>812, 7801=>712, 7802=>812, 7803=>712, 7804=>774, 7805=>652,
+ 7806=>774, 7807=>652, 7808=>1103, 7809=>924, 7810=>1103, 7811=>924, 7812=>1103, 7813=>924, 7814=>1103, 7815=>924, 7816=>1103, 7817=>924, 7818=>771, 7819=>645, 7820=>771, 7821=>645,
+ 7822=>724, 7823=>652, 7824=>725, 7825=>582, 7826=>725, 7827=>582, 7828=>725, 7829=>582, 7830=>712, 7831=>478, 7832=>924, 7833=>652, 7834=>675, 7835=>435, 7839=>687, 7840=>774,
+ 7841=>675, 7842=>774, 7843=>675, 7844=>774, 7845=>675, 7846=>774, 7847=>675, 7848=>774, 7849=>675, 7850=>774, 7851=>675, 7852=>774, 7853=>675, 7854=>774, 7855=>675, 7856=>774,
+ 7857=>675, 7858=>774, 7859=>675, 7860=>774, 7861=>675, 7862=>774, 7863=>675, 7864=>683, 7865=>678, 7866=>683, 7867=>678, 7868=>683, 7869=>678, 7870=>683, 7871=>678, 7872=>683,
+ 7873=>678, 7874=>683, 7875=>678, 7876=>683, 7877=>678, 7878=>683, 7879=>678, 7880=>372, 7881=>343, 7882=>372, 7883=>343, 7884=>850, 7885=>687, 7886=>850, 7887=>687, 7888=>850,
+ 7889=>687, 7890=>850, 7891=>687, 7892=>850, 7893=>687, 7894=>850, 7895=>687, 7896=>850, 7897=>687, 7898=>874, 7899=>687, 7900=>874, 7901=>687, 7902=>874, 7903=>687, 7904=>874,
+ 7905=>687, 7906=>874, 7907=>687, 7908=>812, 7909=>712, 7910=>812, 7911=>712, 7912=>835, 7913=>712, 7914=>835, 7915=>712, 7916=>835, 7917=>712, 7918=>835, 7919=>712, 7920=>835,
+ 7921=>712, 7922=>724, 7923=>652, 7924=>724, 7925=>652, 7926=>724, 7927=>652, 7928=>724, 7929=>652, 7936=>687, 7937=>687, 7938=>687, 7939=>687, 7940=>687, 7941=>687, 7942=>687,
+ 7943=>687, 7944=>774, 7945=>774, 7946=>1041, 7947=>1043, 7948=>935, 7949=>963, 7950=>835, 7951=>859, 7952=>557, 7953=>557, 7954=>557, 7955=>557, 7956=>557, 7957=>557, 7960=>792,
+ 7961=>794, 7962=>1100, 7963=>1096, 7964=>1023, 7965=>1052, 7968=>712, 7969=>712, 7970=>712, 7971=>712, 7972=>712, 7973=>712, 7974=>712, 7975=>712, 7976=>945, 7977=>951, 7978=>1250,
+ 7979=>1250, 7980=>1180, 7981=>1206, 7982=>1054, 7983=>1063, 7984=>390, 7985=>390, 7986=>390, 7987=>390, 7988=>390, 7989=>390, 7990=>390, 7991=>390, 7992=>483, 7993=>489, 7994=>777,
+ 7995=>785, 7996=>712, 7997=>738, 7998=>604, 7999=>604, 8000=>687, 8001=>687, 8002=>687, 8003=>687, 8004=>687, 8005=>687, 8008=>892, 8009=>933, 8010=>1221, 8011=>1224, 8012=>1053,
+ 8013=>1082, 8016=>675, 8017=>675, 8018=>675, 8019=>675, 8020=>675, 8021=>675, 8022=>675, 8023=>675, 8025=>930, 8027=>1184, 8029=>1199, 8031=>1049, 8032=>869, 8033=>869, 8034=>869,
+ 8035=>869, 8036=>869, 8037=>869, 8038=>869, 8039=>869, 8040=>909, 8041=>958, 8042=>1246, 8043=>1251, 8044=>1076, 8045=>1105, 8046=>1028, 8047=>1076, 8048=>687, 8049=>687, 8050=>557,
+ 8051=>557, 8052=>712, 8053=>712, 8054=>390, 8055=>390, 8056=>687, 8057=>687, 8058=>675, 8059=>675, 8060=>869, 8061=>869, 8064=>687, 8065=>687, 8066=>687, 8067=>687, 8068=>687,
+ 8069=>687, 8070=>687, 8071=>687, 8072=>774, 8073=>774, 8074=>1041, 8075=>1043, 8076=>935, 8077=>963, 8078=>835, 8079=>859, 8080=>712, 8081=>712, 8082=>712, 8083=>712, 8084=>712,
+ 8085=>712, 8086=>712, 8087=>712, 8088=>945, 8089=>951, 8090=>1250, 8091=>1250, 8092=>1180, 8093=>1206, 8094=>1054, 8095=>1063, 8096=>869, 8097=>869, 8098=>869, 8099=>869, 8100=>869,
+ 8101=>869, 8102=>869, 8103=>869, 8104=>909, 8105=>958, 8106=>1246, 8107=>1251, 8108=>1076, 8109=>1105, 8110=>1028, 8111=>1076, 8112=>687, 8113=>687, 8114=>687, 8115=>687, 8116=>687,
+ 8118=>687, 8119=>687, 8120=>774, 8121=>774, 8122=>876, 8123=>797, 8124=>774, 8125=>500, 8126=>500, 8127=>500, 8128=>500, 8129=>500, 8130=>712, 8131=>712, 8132=>712, 8134=>712,
+ 8135=>712, 8136=>929, 8137=>846, 8138=>1080, 8139=>1009, 8140=>837, 8141=>500, 8142=>500, 8143=>500, 8144=>390, 8145=>390, 8146=>390, 8147=>390, 8150=>390, 8151=>390, 8152=>372,
+ 8153=>372, 8154=>621, 8155=>563, 8157=>500, 8158=>500, 8159=>500, 8160=>675, 8161=>675, 8162=>675, 8163=>675, 8164=>716, 8165=>716, 8166=>675, 8167=>675, 8168=>724, 8169=>724,
+ 8170=>1020, 8171=>980, 8172=>838, 8173=>500, 8174=>500, 8175=>500, 8178=>869, 8179=>869, 8180=>869, 8182=>869, 8183=>869, 8184=>1065, 8185=>891, 8186=>1084, 8187=>894, 8188=>850,
+ 8189=>500, 8190=>500, 8192=>500, 8193=>1000, 8194=>500, 8195=>1000, 8196=>330, 8197=>250, 8198=>167, 8199=>696, 8200=>380, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>415, 8209=>415, 8210=>696, 8213=>1000, 8214=>500, 8215=>500, 8219=>380, 8223=>657, 8227=>639, 8228=>333, 8229=>667, 8231=>348, 8234=>0, 8235=>0,
+ 8236=>0, 8237=>0, 8238=>0, 8239=>200, 8241=>1887, 8242=>264, 8243=>447, 8244=>630, 8245=>264, 8246=>447, 8247=>630, 8248=>733, 8251=>972, 8252=>627, 8253=>580, 8254=>500,
+ 8255=>828, 8256=>828, 8257=>329, 8258=>1023, 8259=>500, 8260=>456, 8261=>457, 8262=>457, 8263=>1030, 8264=>829, 8265=>829, 8266=>513, 8267=>636, 8268=>500, 8269=>500, 8270=>523,
+ 8271=>400, 8272=>828, 8273=>523, 8274=>556, 8275=>838, 8276=>828, 8277=>838, 8278=>684, 8279=>813, 8280=>838, 8281=>838, 8282=>380, 8283=>872, 8284=>838, 8285=>380, 8286=>380,
+ 8287=>222, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0, 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>438, 8305=>219, 8308=>438, 8309=>438,
+ 8310=>438, 8311=>438, 8312=>438, 8313=>438, 8314=>528, 8315=>528, 8316=>528, 8317=>288, 8318=>288, 8319=>456, 8320=>438, 8321=>438, 8322=>438, 8323=>438, 8324=>438, 8325=>438,
+ 8326=>438, 8327=>438, 8328=>438, 8329=>438, 8330=>528, 8331=>528, 8332=>528, 8333=>288, 8334=>288, 8336=>458, 8337=>479, 8338=>488, 8339=>413, 8340=>479, 8352=>929, 8353=>696,
+ 8354=>696, 8355=>696, 8356=>696, 8357=>1042, 8358=>837, 8359=>1518, 8360=>1205, 8361=>1103, 8362=>904, 8363=>696, 8365=>696, 8366=>682, 8367=>1392, 8368=>696, 8369=>696, 8370=>696,
+ 8371=>696, 8372=>859, 8373=>696, 8400=>0, 8401=>0, 8406=>0, 8407=>0, 8411=>0, 8412=>0, 8417=>0, 8448=>1120, 8449=>1170, 8450=>734, 8451=>1211, 8452=>896, 8453=>1091,
+ 8454=>1144, 8455=>614, 8456=>698, 8457=>1086, 8459=>1073, 8460=>913, 8461=>888, 8462=>712, 8463=>712, 8464=>597, 8465=>697, 8466=>856, 8467=>472, 8468=>974, 8469=>837, 8470=>1203,
+ 8471=>1000, 8472=>697, 8473=>750, 8474=>850, 8475=>938, 8476=>814, 8477=>801, 8478=>896, 8479=>710, 8480=>1020, 8481=>1281, 8483=>755, 8484=>754, 8485=>578, 8486=>850, 8487=>850,
+ 8488=>763, 8489=>338, 8490=>775, 8491=>774, 8492=>928, 8493=>818, 8494=>854, 8495=>636, 8496=>729, 8497=>808, 8498=>683, 8499=>1184, 8500=>465, 8501=>794, 8502=>731, 8503=>494,
+ 8504=>684, 8505=>380, 8506=>945, 8507=>1348, 8508=>790, 8509=>737, 8510=>654, 8511=>863, 8512=>840, 8513=>775, 8514=>557, 8515=>637, 8516=>760, 8517=>830, 8518=>716, 8519=>678,
+ 8520=>343, 8521=>343, 8523=>872, 8526=>547, 8531=>1035, 8532=>1035, 8533=>1035, 8534=>1035, 8535=>1035, 8536=>1035, 8537=>1035, 8538=>1035, 8539=>1035, 8540=>1035, 8541=>1035, 8542=>1035,
+ 8543=>615, 8544=>372, 8545=>659, 8546=>945, 8547=>1099, 8548=>774, 8549=>1099, 8550=>1386, 8551=>1672, 8552=>1121, 8553=>771, 8554=>1120, 8555=>1407, 8556=>637, 8557=>734, 8558=>830,
+ 8559=>995, 8560=>343, 8561=>607, 8562=>872, 8563=>984, 8564=>652, 8565=>962, 8566=>1227, 8567=>1491, 8568=>969, 8569=>645, 8570=>969, 8571=>1233, 8572=>343, 8573=>593, 8574=>716,
+ 8575=>1042, 8576=>1289, 8577=>830, 8578=>1289, 8579=>734, 8580=>593, 8592=>838, 8593=>838, 8594=>838, 8595=>838, 8596=>838, 8597=>838, 8598=>838, 8599=>838, 8600=>838, 8601=>838,
+ 8602=>838, 8603=>838, 8604=>838, 8605=>838, 8606=>838, 8607=>838, 8608=>838, 8609=>838, 8610=>838, 8611=>838, 8612=>838, 8613=>838, 8614=>838, 8615=>838, 8616=>838, 8617=>838,
+ 8618=>838, 8619=>838, 8620=>838, 8621=>838, 8622=>838, 8623=>838, 8624=>838, 8625=>838, 8626=>838, 8627=>838, 8628=>838, 8629=>838, 8630=>838, 8631=>838, 8632=>838, 8633=>838,
+ 8634=>838, 8635=>838, 8636=>838, 8637=>838, 8638=>838, 8639=>838, 8640=>838, 8641=>838, 8642=>838, 8643=>838, 8644=>838, 8645=>838, 8646=>838, 8647=>838, 8648=>838, 8649=>838,
+ 8650=>838, 8651=>838, 8652=>838, 8653=>838, 8654=>838, 8655=>838, 8656=>838, 8657=>838, 8658=>838, 8659=>838, 8660=>838, 8661=>838, 8662=>838, 8663=>838, 8664=>838, 8665=>838,
+ 8666=>838, 8667=>838, 8668=>838, 8669=>838, 8670=>838, 8671=>838, 8672=>838, 8673=>838, 8674=>838, 8675=>838, 8676=>838, 8677=>838, 8678=>838, 8679=>838, 8680=>838, 8681=>838,
+ 8682=>838, 8683=>838, 8684=>838, 8685=>838, 8686=>838, 8687=>838, 8688=>838, 8689=>838, 8690=>838, 8691=>838, 8692=>838, 8693=>838, 8694=>838, 8695=>838, 8696=>838, 8697=>838,
+ 8698=>838, 8699=>838, 8700=>838, 8701=>838, 8702=>838, 8703=>838, 8704=>774, 8705=>696, 8706=>544, 8707=>683, 8708=>683, 8709=>856, 8710=>697, 8711=>697, 8712=>896, 8713=>896,
+ 8714=>750, 8715=>896, 8716=>896, 8717=>750, 8718=>636, 8719=>787, 8720=>787, 8721=>718, 8722=>838, 8723=>838, 8724=>696, 8725=>167, 8726=>696, 8727=>838, 8728=>626, 8729=>380,
+ 8730=>667, 8731=>667, 8732=>667, 8733=>669, 8734=>833, 8735=>838, 8736=>896, 8737=>896, 8738=>838, 8739=>500, 8740=>500, 8741=>500, 8742=>500, 8743=>812, 8744=>812, 8745=>812,
+ 8746=>812, 8747=>610, 8748=>929, 8749=>1295, 8750=>563, 8751=>977, 8752=>1313, 8753=>563, 8754=>563, 8755=>563, 8756=>696, 8757=>696, 8758=>294, 8759=>696, 8760=>838, 8761=>838,
+ 8762=>838, 8763=>838, 8764=>838, 8765=>838, 8766=>838, 8767=>838, 8768=>375, 8769=>838, 8770=>838, 8771=>838, 8772=>838, 8773=>838, 8774=>838, 8775=>838, 8776=>838, 8777=>838,
+ 8778=>838, 8779=>838, 8780=>838, 8781=>838, 8782=>838, 8783=>838, 8784=>838, 8785=>838, 8786=>838, 8787=>838, 8788=>1063, 8789=>1063, 8790=>838, 8791=>838, 8792=>838, 8793=>838,
+ 8794=>838, 8795=>838, 8796=>838, 8797=>838, 8798=>838, 8799=>838, 8800=>838, 8801=>838, 8802=>838, 8803=>838, 8804=>838, 8805=>838, 8806=>838, 8807=>838, 8808=>841, 8809=>841,
+ 8810=>1047, 8811=>1047, 8812=>500, 8813=>838, 8814=>838, 8815=>838, 8816=>838, 8817=>838, 8818=>838, 8819=>838, 8820=>838, 8821=>838, 8822=>838, 8823=>838, 8824=>838, 8825=>838,
+ 8826=>838, 8827=>838, 8828=>838, 8829=>838, 8830=>838, 8831=>838, 8832=>838, 8833=>838, 8834=>838, 8835=>838, 8836=>838, 8837=>838, 8838=>838, 8839=>838, 8840=>838, 8841=>838,
+ 8842=>838, 8843=>838, 8844=>812, 8845=>812, 8846=>812, 8847=>838, 8848=>838, 8849=>838, 8850=>838, 8851=>754, 8852=>754, 8853=>838, 8854=>838, 8855=>838, 8856=>838, 8857=>838,
+ 8858=>838, 8859=>838, 8860=>838, 8861=>838, 8862=>838, 8863=>838, 8864=>838, 8865=>838, 8866=>914, 8867=>914, 8868=>914, 8869=>914, 8870=>542, 8871=>542, 8872=>914, 8873=>914,
+ 8874=>914, 8875=>914, 8876=>914, 8877=>914, 8878=>914, 8879=>914, 8882=>838, 8883=>838, 8884=>838, 8885=>838, 8886=>1000, 8887=>1000, 8888=>838, 8889=>838, 8890=>542, 8891=>812,
+ 8892=>812, 8893=>812, 8894=>838, 8895=>838, 8896=>843, 8897=>843, 8898=>843, 8899=>843, 8900=>494, 8901=>380, 8902=>626, 8904=>1000, 8905=>1000, 8906=>1000, 8907=>1000, 8908=>1000,
+ 8909=>838, 8910=>812, 8911=>812, 8918=>838, 8919=>838, 8920=>1422, 8921=>1422, 8922=>838, 8923=>838, 8924=>838, 8925=>838, 8926=>838, 8927=>838, 8928=>838, 8929=>838, 8930=>838,
+ 8931=>838, 8932=>838, 8933=>838, 8934=>838, 8935=>838, 8936=>838, 8937=>838, 8938=>838, 8939=>838, 8940=>838, 8941=>838, 8942=>1000, 8943=>1000, 8944=>1000, 8945=>1000, 8946=>1158,
+ 8947=>896, 8948=>750, 8949=>896, 8950=>896, 8951=>750, 8952=>896, 8953=>896, 8954=>1158, 8955=>896, 8956=>750, 8957=>896, 8958=>750, 8959=>896, 8960=>602, 8961=>602, 8962=>716,
+ 8963=>838, 8964=>838, 8965=>838, 8966=>838, 8967=>488, 8968=>457, 8969=>457, 8970=>457, 8971=>457, 8972=>809, 8973=>809, 8974=>809, 8975=>809, 8976=>838, 8977=>539, 8984=>928,
+ 8985=>838, 8988=>469, 8989=>469, 8990=>469, 8991=>469, 8992=>610, 8993=>610, 8996=>1152, 8997=>1152, 8998=>1414, 8999=>1152, 9000=>1443, 9003=>1414, 9004=>873, 9075=>390, 9076=>716,
+ 9077=>869, 9082=>687, 9085=>863, 9095=>1152, 9108=>873, 9115=>500, 9116=>500, 9117=>500, 9118=>500, 9119=>500, 9120=>500, 9121=>500, 9122=>500, 9123=>500, 9124=>500, 9125=>500,
+ 9126=>500, 9127=>750, 9128=>750, 9129=>750, 9130=>750, 9131=>750, 9132=>750, 9133=>750, 9134=>610, 9166=>838, 9167=>945, 9187=>873, 9189=>769, 9250=>716, 9251=>716, 9312=>847,
+ 9313=>847, 9314=>847, 9315=>847, 9316=>847, 9317=>847, 9318=>847, 9319=>847, 9320=>847, 9321=>847, 9600=>769, 9601=>769, 9602=>769, 9603=>769, 9604=>769, 9605=>769, 9606=>769,
+ 9607=>769, 9608=>769, 9609=>769, 9610=>769, 9611=>769, 9612=>769, 9613=>769, 9614=>769, 9615=>769, 9616=>769, 9617=>769, 9618=>769, 9619=>769, 9620=>769, 9621=>769, 9622=>769,
+ 9623=>769, 9624=>769, 9625=>769, 9626=>769, 9627=>769, 9628=>769, 9629=>769, 9630=>769, 9631=>769, 9632=>945, 9633=>945, 9634=>945, 9635=>945, 9636=>945, 9637=>945, 9638=>945,
+ 9639=>945, 9640=>945, 9641=>945, 9642=>678, 9643=>678, 9644=>945, 9645=>945, 9646=>550, 9647=>550, 9648=>769, 9649=>769, 9650=>769, 9651=>769, 9652=>502, 9653=>502, 9654=>769,
+ 9655=>769, 9656=>502, 9657=>502, 9658=>769, 9659=>769, 9660=>769, 9661=>769, 9662=>502, 9663=>502, 9664=>769, 9665=>769, 9666=>502, 9667=>502, 9668=>769, 9669=>769, 9670=>769,
+ 9671=>769, 9672=>769, 9673=>873, 9674=>494, 9675=>873, 9676=>873, 9677=>873, 9678=>873, 9679=>873, 9680=>873, 9681=>873, 9682=>873, 9683=>873, 9684=>873, 9685=>873, 9686=>527,
+ 9687=>527, 9688=>840, 9689=>970, 9690=>970, 9691=>970, 9692=>387, 9693=>387, 9694=>387, 9695=>387, 9696=>769, 9697=>769, 9698=>769, 9699=>769, 9700=>769, 9701=>769, 9702=>639,
+ 9703=>945, 9704=>945, 9705=>945, 9706=>945, 9707=>945, 9708=>769, 9709=>769, 9710=>769, 9711=>1119, 9712=>945, 9713=>945, 9714=>945, 9715=>945, 9716=>873, 9717=>873, 9718=>873,
+ 9719=>873, 9720=>769, 9721=>769, 9722=>769, 9723=>830, 9724=>830, 9725=>732, 9726=>732, 9727=>769, 9728=>896, 9729=>1000, 9730=>896, 9731=>896, 9732=>896, 9733=>896, 9734=>896,
+ 9735=>573, 9736=>896, 9737=>896, 9738=>888, 9739=>888, 9740=>671, 9741=>1013, 9742=>1246, 9743=>1250, 9744=>896, 9745=>896, 9746=>896, 9747=>532, 9748=>896, 9749=>896, 9750=>896,
+ 9751=>896, 9752=>896, 9753=>896, 9754=>896, 9755=>896, 9756=>896, 9757=>609, 9758=>896, 9759=>609, 9760=>896, 9761=>896, 9762=>896, 9763=>896, 9764=>669, 9765=>746, 9766=>649,
+ 9767=>784, 9768=>545, 9769=>896, 9770=>896, 9771=>896, 9772=>710, 9773=>896, 9774=>896, 9775=>896, 9776=>896, 9777=>896, 9778=>896, 9779=>896, 9780=>896, 9781=>896, 9782=>896,
+ 9783=>896, 9784=>896, 9785=>896, 9786=>896, 9787=>896, 9788=>896, 9789=>896, 9790=>896, 9791=>614, 9792=>731, 9793=>731, 9794=>896, 9795=>896, 9796=>896, 9797=>896, 9798=>896,
+ 9799=>896, 9800=>896, 9801=>896, 9802=>896, 9803=>896, 9804=>896, 9805=>896, 9806=>896, 9807=>896, 9808=>896, 9809=>896, 9810=>896, 9811=>896, 9812=>896, 9813=>896, 9814=>896,
+ 9815=>896, 9816=>896, 9817=>896, 9818=>896, 9819=>896, 9820=>896, 9821=>896, 9822=>896, 9823=>896, 9824=>896, 9825=>896, 9826=>896, 9827=>896, 9828=>896, 9829=>896, 9830=>896,
+ 9831=>896, 9832=>896, 9833=>472, 9834=>638, 9835=>896, 9836=>896, 9837=>472, 9838=>357, 9839=>484, 9840=>748, 9841=>766, 9842=>896, 9843=>896, 9844=>896, 9845=>896, 9846=>896,
+ 9847=>896, 9848=>896, 9849=>896, 9850=>896, 9851=>896, 9852=>896, 9853=>896, 9854=>896, 9855=>896, 9856=>869, 9857=>869, 9858=>869, 9859=>869, 9860=>869, 9861=>869, 9862=>896,
+ 9863=>896, 9864=>896, 9865=>896, 9866=>896, 9867=>896, 9868=>896, 9869=>896, 9870=>896, 9871=>896, 9872=>896, 9873=>896, 9874=>896, 9875=>896, 9876=>896, 9877=>541, 9878=>896,
+ 9879=>896, 9880=>896, 9881=>896, 9882=>896, 9883=>896, 9884=>896, 9888=>896, 9889=>702, 9890=>1003, 9891=>1085, 9892=>1143, 9893=>901, 9894=>838, 9895=>838, 9896=>838, 9897=>838,
+ 9898=>838, 9899=>838, 9900=>838, 9901=>838, 9902=>838, 9903=>838, 9904=>844, 9905=>838, 9906=>731, 9985=>838, 9986=>838, 9987=>838, 9988=>838, 9990=>838, 9991=>838, 9992=>838,
+ 9993=>838, 9996=>838, 9997=>838, 9998=>838, 9999=>838, 10000=>838, 10001=>838, 10002=>838, 10003=>838, 10004=>838, 10005=>838, 10006=>838, 10007=>838, 10008=>838, 10009=>838, 10010=>838,
+ 10011=>838, 10012=>838, 10013=>838, 10014=>838, 10015=>838, 10016=>838, 10017=>838, 10018=>838, 10019=>838, 10020=>838, 10021=>838, 10022=>838, 10023=>838, 10025=>838, 10026=>838, 10027=>838,
+ 10028=>838, 10029=>838, 10030=>838, 10031=>838, 10032=>838, 10033=>838, 10034=>838, 10035=>838, 10036=>838, 10037=>838, 10038=>838, 10039=>838, 10040=>838, 10041=>838, 10042=>838, 10043=>838,
+ 10044=>838, 10045=>838, 10046=>838, 10047=>838, 10048=>838, 10049=>838, 10050=>838, 10051=>838, 10052=>838, 10053=>838, 10054=>838, 10055=>838, 10056=>838, 10057=>838, 10058=>838, 10059=>838,
+ 10061=>896, 10063=>896, 10064=>896, 10065=>896, 10066=>896, 10070=>896, 10072=>838, 10073=>838, 10074=>838, 10075=>347, 10076=>347, 10077=>587, 10078=>587, 10081=>838, 10082=>838, 10083=>838,
+ 10084=>838, 10085=>838, 10086=>838, 10087=>838, 10088=>838, 10089=>838, 10090=>838, 10091=>838, 10092=>838, 10093=>838, 10094=>838, 10095=>838, 10096=>838, 10097=>838, 10098=>838, 10099=>838,
+ 10100=>838, 10101=>838, 10102=>847, 10103=>847, 10104=>847, 10105=>847, 10106=>847, 10107=>847, 10108=>847, 10109=>847, 10110=>847, 10111=>847, 10112=>838, 10113=>838, 10114=>838, 10115=>838,
+ 10116=>838, 10117=>838, 10118=>838, 10119=>838, 10120=>838, 10121=>838, 10122=>838, 10123=>838, 10124=>838, 10125=>838, 10126=>838, 10127=>838, 10128=>838, 10129=>838, 10130=>838, 10131=>838,
+ 10132=>838, 10136=>838, 10137=>838, 10138=>838, 10139=>838, 10140=>838, 10141=>838, 10142=>838, 10143=>838, 10144=>838, 10145=>838, 10146=>838, 10147=>838, 10148=>838, 10149=>838, 10150=>838,
+ 10151=>838, 10152=>838, 10153=>838, 10154=>838, 10155=>838, 10156=>838, 10157=>838, 10158=>838, 10159=>838, 10161=>838, 10162=>838, 10163=>838, 10164=>838, 10165=>838, 10166=>838, 10167=>838,
+ 10168=>838, 10169=>838, 10170=>838, 10171=>838, 10172=>838, 10173=>838, 10174=>838, 10208=>494, 10214=>487, 10215=>487, 10216=>457, 10217=>457, 10218=>721, 10219=>721, 10224=>838, 10225=>838,
+ 10226=>838, 10227=>838, 10228=>1157, 10229=>1434, 10230=>1434, 10231=>1434, 10232=>1434, 10233=>1434, 10234=>1434, 10235=>1434, 10236=>1434, 10237=>1434, 10238=>1434, 10239=>1434, 10240=>781, 10241=>781,
+ 10242=>781, 10243=>781, 10244=>781, 10245=>781, 10246=>781, 10247=>781, 10248=>781, 10249=>781, 10250=>781, 10251=>781, 10252=>781, 10253=>781, 10254=>781, 10255=>781, 10256=>781, 10257=>781,
+ 10258=>781, 10259=>781, 10260=>781, 10261=>781, 10262=>781, 10263=>781, 10264=>781, 10265=>781, 10266=>781, 10267=>781, 10268=>781, 10269=>781, 10270=>781, 10271=>781, 10272=>781, 10273=>781,
+ 10274=>781, 10275=>781, 10276=>781, 10277=>781, 10278=>781, 10279=>781, 10280=>781, 10281=>781, 10282=>781, 10283=>781, 10284=>781, 10285=>781, 10286=>781, 10287=>781, 10288=>781, 10289=>781,
+ 10290=>781, 10291=>781, 10292=>781, 10293=>781, 10294=>781, 10295=>781, 10296=>781, 10297=>781, 10298=>781, 10299=>781, 10300=>781, 10301=>781, 10302=>781, 10303=>781, 10304=>781, 10305=>781,
+ 10306=>781, 10307=>781, 10308=>781, 10309=>781, 10310=>781, 10311=>781, 10312=>781, 10313=>781, 10314=>781, 10315=>781, 10316=>781, 10317=>781, 10318=>781, 10319=>781, 10320=>781, 10321=>781,
+ 10322=>781, 10323=>781, 10324=>781, 10325=>781, 10326=>781, 10327=>781, 10328=>781, 10329=>781, 10330=>781, 10331=>781, 10332=>781, 10333=>781, 10334=>781, 10335=>781, 10336=>781, 10337=>781,
+ 10338=>781, 10339=>781, 10340=>781, 10341=>781, 10342=>781, 10343=>781, 10344=>781, 10345=>781, 10346=>781, 10347=>781, 10348=>781, 10349=>781, 10350=>781, 10351=>781, 10352=>781, 10353=>781,
+ 10354=>781, 10355=>781, 10356=>781, 10357=>781, 10358=>781, 10359=>781, 10360=>781, 10361=>781, 10362=>781, 10363=>781, 10364=>781, 10365=>781, 10366=>781, 10367=>781, 10368=>781, 10369=>781,
+ 10370=>781, 10371=>781, 10372=>781, 10373=>781, 10374=>781, 10375=>781, 10376=>781, 10377=>781, 10378=>781, 10379=>781, 10380=>781, 10381=>781, 10382=>781, 10383=>781, 10384=>781, 10385=>781,
+ 10386=>781, 10387=>781, 10388=>781, 10389=>781, 10390=>781, 10391=>781, 10392=>781, 10393=>781, 10394=>781, 10395=>781, 10396=>781, 10397=>781, 10398=>781, 10399=>781, 10400=>781, 10401=>781,
+ 10402=>781, 10403=>781, 10404=>781, 10405=>781, 10406=>781, 10407=>781, 10408=>781, 10409=>781, 10410=>781, 10411=>781, 10412=>781, 10413=>781, 10414=>781, 10415=>781, 10416=>781, 10417=>781,
+ 10418=>781, 10419=>781, 10420=>781, 10421=>781, 10422=>781, 10423=>781, 10424=>781, 10425=>781, 10426=>781, 10427=>781, 10428=>781, 10429=>781, 10430=>781, 10431=>781, 10432=>781, 10433=>781,
+ 10434=>781, 10435=>781, 10436=>781, 10437=>781, 10438=>781, 10439=>781, 10440=>781, 10441=>781, 10442=>781, 10443=>781, 10444=>781, 10445=>781, 10446=>781, 10447=>781, 10448=>781, 10449=>781,
+ 10450=>781, 10451=>781, 10452=>781, 10453=>781, 10454=>781, 10455=>781, 10456=>781, 10457=>781, 10458=>781, 10459=>781, 10460=>781, 10461=>781, 10462=>781, 10463=>781, 10464=>781, 10465=>781,
+ 10466=>781, 10467=>781, 10468=>781, 10469=>781, 10470=>781, 10471=>781, 10472=>781, 10473=>781, 10474=>781, 10475=>781, 10476=>781, 10477=>781, 10478=>781, 10479=>781, 10480=>781, 10481=>781,
+ 10482=>781, 10483=>781, 10484=>781, 10485=>781, 10486=>781, 10487=>781, 10488=>781, 10489=>781, 10490=>781, 10491=>781, 10492=>781, 10493=>781, 10494=>781, 10495=>781, 10502=>838, 10503=>838,
+ 10506=>838, 10507=>838, 10560=>838, 10561=>838, 10627=>753, 10628=>753, 10702=>838, 10703=>1046, 10704=>1046, 10705=>1000, 10706=>1000, 10707=>1000, 10708=>1000, 10709=>1000, 10731=>494, 10746=>838,
+ 10747=>838, 10752=>1000, 10753=>1000, 10754=>1000, 10764=>1661, 10765=>563, 10766=>563, 10767=>563, 10768=>563, 10769=>563, 10770=>563, 10771=>563, 10772=>563, 10773=>563, 10774=>563, 10775=>563,
+ 10776=>563, 10777=>563, 10778=>563, 10779=>563, 10780=>563, 10799=>838, 10877=>838, 10878=>838, 10879=>838, 10880=>838, 10881=>838, 10882=>838, 10883=>838, 10884=>838, 10885=>838, 10886=>838,
+ 10887=>838, 10888=>838, 10889=>838, 10890=>838, 10891=>838, 10892=>838, 10893=>838, 10894=>838, 10895=>838, 10896=>838, 10897=>838, 10898=>838, 10899=>838, 10900=>838, 10901=>838, 10902=>838,
+ 10903=>838, 10904=>838, 10905=>838, 10906=>838, 10907=>838, 10908=>838, 10909=>838, 10910=>838, 10911=>838, 10912=>838, 10926=>838, 10927=>838, 10928=>838, 10929=>838, 10930=>838, 10931=>838,
+ 10932=>838, 10933=>838, 10934=>838, 10935=>838, 10936=>838, 10937=>838, 10938=>838, 11001=>838, 11002=>838, 11008=>838, 11009=>838, 11010=>838, 11011=>838, 11012=>838, 11013=>838, 11014=>838,
+ 11015=>838, 11016=>838, 11017=>838, 11018=>838, 11019=>838, 11020=>838, 11021=>838, 11022=>838, 11023=>838, 11024=>838, 11025=>838, 11026=>945, 11027=>945, 11028=>945, 11029=>945, 11030=>769,
+ 11031=>769, 11032=>769, 11033=>769, 11034=>945, 11040=>869, 11041=>873, 11042=>873, 11043=>873, 11360=>637, 11361=>360, 11362=>637, 11363=>733, 11364=>770, 11365=>675, 11366=>478, 11367=>956,
+ 11368=>712, 11369=>775, 11370=>665, 11371=>725, 11372=>582, 11373=>860, 11374=>995, 11375=>774, 11377=>778, 11378=>1221, 11379=>1056, 11380=>652, 11381=>698, 11382=>565, 11383=>782, 11385=>538,
+ 11387=>559, 11388=>219, 11389=>487, 11568=>691, 11569=>941, 11570=>941, 11571=>725, 11572=>725, 11573=>725, 11574=>676, 11575=>774, 11576=>774, 11577=>683, 11578=>683, 11579=>802, 11580=>989,
+ 11581=>761, 11582=>623, 11583=>761, 11584=>941, 11585=>941, 11586=>373, 11587=>740, 11588=>837, 11589=>914, 11590=>672, 11591=>737, 11592=>680, 11593=>683, 11594=>602, 11595=>1039, 11596=>778,
+ 11597=>837, 11598=>683, 11599=>372, 11600=>778, 11601=>373, 11602=>725, 11603=>691, 11604=>941, 11605=>941, 11606=>837, 11607=>373, 11608=>836, 11609=>941, 11610=>941, 11611=>734, 11612=>876,
+ 11613=>771, 11614=>734, 11615=>683, 11616=>774, 11617=>837, 11618=>683, 11619=>850, 11620=>697, 11621=>850, 11631=>716, 11800=>580, 11822=>580, 19904=>896, 19905=>896, 19906=>896, 19907=>896,
+ 19908=>896, 19909=>896, 19910=>896, 19911=>896, 19912=>896, 19913=>896, 19914=>896, 19915=>896, 19916=>896, 19917=>896, 19918=>896, 19919=>896, 19920=>896, 19921=>896, 19922=>896, 19923=>896,
+ 19924=>896, 19925=>896, 19926=>896, 19927=>896, 19928=>896, 19929=>896, 19930=>896, 19931=>896, 19932=>896, 19933=>896, 19934=>896, 19935=>896, 19936=>896, 19937=>896, 19938=>896, 19939=>896,
+ 19940=>896, 19941=>896, 19942=>896, 19943=>896, 19944=>896, 19945=>896, 19946=>896, 19947=>896, 19948=>896, 19949=>896, 19950=>896, 19951=>896, 19952=>896, 19953=>896, 19954=>896, 19955=>896,
+ 19956=>896, 19957=>896, 19958=>896, 19959=>896, 19960=>896, 19961=>896, 19962=>896, 19963=>896, 19964=>896, 19965=>896, 19966=>896, 19967=>896, 42564=>720, 42565=>595, 42566=>436, 42567=>440,
+ 42572=>1405, 42573=>1173, 42576=>1234, 42577=>1027, 42580=>1174, 42581=>972, 42770=>500, 42771=>500, 42772=>500, 42773=>500, 42774=>500, 42790=>837, 42791=>712, 42792=>1031, 42793=>857, 42800=>559,
+ 42801=>595, 42802=>1349, 42803=>1052, 42808=>1079, 42809=>922, 42810=>1079, 42811=>922, 42812=>1035, 42813=>922, 42814=>698, 42815=>549, 42822=>850, 42823=>542, 42824=>683, 42825=>531, 42826=>918,
+ 42827=>814, 42830=>1406, 42831=>1106, 42880=>637, 42881=>343, 43003=>683, 43004=>733, 43005=>995, 43006=>372, 43007=>1325, 63173=>687, 64256=>810, 64257=>741, 64258=>741, 64259=>1115, 64260=>1116,
+ 64261=>808, 64262=>1020, 64275=>1388, 64276=>1384, 64277=>1378, 64278=>1384, 64279=>1713, 64285=>343, 64286=>0, 64287=>692, 64288=>720, 64289=>963, 64290=>890, 64291=>988, 64292=>963, 64293=>938,
+ 64294=>988, 64295=>988, 64296=>976, 64297=>838, 64298=>949, 64299=>949, 64300=>963, 64301=>963, 64302=>751, 64303=>751, 64304=>751, 64305=>673, 64306=>537, 64307=>654, 64308=>712, 64309=>438,
+ 64310=>491, 64312=>724, 64313=>438, 64314=>649, 64315=>650, 64316=>679, 64318=>775, 64320=>497, 64321=>773, 64323=>718, 64324=>687, 64326=>751, 64327=>729, 64328=>649, 64329=>949, 64330=>751,
+ 64331=>343, 64332=>673, 64333=>754, 64334=>687, 64335=>751, 64338=>1005, 64339=>1059, 64340=>375, 64341=>408, 64342=>1005, 64343=>1059, 64344=>375, 64345=>408, 64346=>1005, 64347=>1059, 64348=>375,
+ 64349=>408, 64350=>1005, 64351=>1059, 64352=>375, 64353=>408, 64354=>1005, 64355=>1059, 64356=>375, 64357=>408, 64358=>1005, 64359=>1059, 64360=>375, 64361=>408, 64362=>1162, 64363=>1191, 64364=>655,
+ 64365=>720, 64366=>1162, 64367=>1191, 64368=>655, 64369=>720, 64370=>721, 64371=>721, 64372=>721, 64373=>721, 64374=>721, 64375=>721, 64376=>721, 64377=>721, 64378=>721, 64379=>721, 64380=>721,
+ 64381=>721, 64382=>721, 64383=>721, 64384=>721, 64385=>721, 64394=>576, 64395=>622, 64396=>576, 64397=>622, 64398=>1024, 64399=>1024, 64400=>582, 64401=>582, 64402=>1024, 64403=>1024, 64404=>582,
+ 64405=>582, 64414=>854, 64415=>900, 64473=>622, 64474=>627, 64488=>375, 64489=>408, 64508=>917, 64509=>1012, 64510=>375, 64511=>408, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0,
+ 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65056=>0, 65057=>0, 65058=>0, 65059=>0, 65136=>342,
+ 65137=>342, 65138=>342, 65139=>346, 65140=>342, 65142=>342, 65143=>342, 65144=>342, 65145=>342, 65146=>342, 65147=>342, 65148=>342, 65149=>342, 65150=>342, 65151=>342, 65152=>511, 65153=>343,
+ 65154=>375, 65155=>343, 65156=>375, 65157=>622, 65158=>627, 65159=>343, 65160=>375, 65161=>917, 65162=>917, 65163=>375, 65164=>408, 65165=>343, 65166=>375, 65167=>1005, 65168=>1059, 65169=>375,
+ 65170=>408, 65171=>590, 65172=>606, 65173=>1005, 65174=>1059, 65175=>375, 65176=>408, 65177=>1005, 65178=>1059, 65179=>375, 65180=>408, 65181=>721, 65182=>721, 65183=>721, 65184=>721, 65185=>721,
+ 65186=>721, 65187=>721, 65188=>721, 65189=>721, 65190=>721, 65191=>721, 65192=>721, 65193=>513, 65194=>578, 65195=>513, 65196=>578, 65197=>576, 65198=>622, 65199=>576, 65200=>622, 65201=>1380,
+ 65202=>1414, 65203=>983, 65204=>1018, 65205=>1380, 65206=>1414, 65207=>983, 65208=>1018, 65209=>1345, 65210=>1364, 65211=>966, 65212=>985, 65213=>1345, 65214=>1364, 65215=>966, 65216=>985, 65217=>1039,
+ 65218=>1071, 65219=>942, 65220=>974, 65221=>1039, 65222=>1071, 65223=>942, 65224=>974, 65225=>683, 65226=>683, 65227=>683, 65228=>564, 65229=>683, 65230=>683, 65231=>683, 65232=>564, 65233=>1162,
+ 65234=>1191, 65235=>655, 65236=>720, 65237=>894, 65238=>901, 65239=>655, 65240=>720, 65241=>917, 65242=>931, 65243=>582, 65244=>582, 65245=>868, 65246=>893, 65247=>375, 65248=>408, 65249=>733,
+ 65250=>784, 65251=>619, 65252=>670, 65253=>854, 65254=>900, 65255=>375, 65256=>408, 65257=>590, 65258=>606, 65259=>693, 65260=>660, 65261=>622, 65262=>627, 65263=>917, 65264=>1012, 65265=>917,
+ 65266=>1012, 65267=>375, 65268=>408, 65269=>745, 65270=>759, 65271=>745, 65272=>759, 65273=>745, 65274=>759, 65275=>745, 65276=>759, 65279=>0, 65529=>0, 65530=>0, 65531=>0, 65532=>0,
+ 65533=>1113);
+$enc='';
+$diff='';
+$file='dejavusansb.z';
+$ctg='dejavusansb.ctg.z';
+$originalsize=558064;
+?>
diff --git a/lib/tcpdf/fonts/dejavusansb.z b/lib/tcpdf/fonts/dejavusansb.z
new file mode 100644
index 0000000000..6e6f8d6efe
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansb.z differ
diff --git a/lib/tcpdf/fonts/dejavusansbi.ctg.z b/lib/tcpdf/fonts/dejavusansbi.ctg.z
new file mode 100644
index 0000000000..eed33320c0
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansbi.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusansbi.php b/lib/tcpdf/fonts/dejavusansbi.php
new file mode 100644
index 0000000000..7eb79c9d2b
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusansbi.php
@@ -0,0 +1,285 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>96,'FontBBox'=>'[-1067 -388 2005 1121]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>600);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>600, 32=>348, 33=>456, 34=>521, 35=>696, 36=>696, 37=>1002, 38=>872, 39=>306, 40=>457, 41=>457, 42=>523, 43=>838, 44=>380, 45=>415, 46=>380,
+ 47=>365, 48=>696, 49=>696, 50=>696, 51=>696, 52=>696, 53=>696, 54=>696, 55=>696, 56=>696, 57=>696, 58=>400, 59=>400, 60=>838, 61=>838, 62=>838,
+ 63=>580, 64=>1000, 65=>774, 66=>762, 67=>734, 68=>830, 69=>683, 70=>683, 71=>821, 72=>837, 73=>372, 74=>372, 75=>775, 76=>637, 77=>995, 78=>837,
+ 79=>850, 80=>733, 81=>850, 82=>770, 83=>720, 84=>682, 85=>812, 86=>774, 87=>1103, 88=>771, 89=>724, 90=>725, 91=>457, 92=>365, 93=>457, 94=>838,
+ 95=>500, 96=>500, 97=>675, 98=>716, 99=>593, 100=>716, 101=>678, 102=>435, 103=>716, 104=>712, 105=>343, 106=>343, 107=>665, 108=>343, 109=>1042, 110=>712,
+ 111=>687, 112=>716, 113=>716, 114=>493, 115=>595, 116=>478, 117=>712, 118=>652, 119=>924, 120=>645, 121=>652, 122=>582, 123=>712, 124=>365, 125=>712, 126=>838,
+ 8364=>696, 1027=>637, 8218=>380, 402=>435, 8222=>644, 8230=>1000, 8224=>500, 8225=>500, 710=>500, 8240=>1454, 352=>720, 8249=>412, 338=>1167, 1036=>817, 381=>725, 1039=>837,
+ 8216=>380, 8217=>380, 8220=>644, 8221=>644, 8226=>639, 8211=>500, 8212=>1000, 732=>500, 8482=>1000, 353=>595, 8250=>412, 339=>1094, 1116=>679, 382=>582, 376=>724, 160=>348,
+ 161=>456, 162=>696, 163=>696, 164=>636, 165=>696, 166=>365, 167=>500, 168=>500, 169=>1000, 170=>564, 171=>650, 172=>838, 173=>415, 174=>1000, 175=>500, 176=>500,
+ 177=>838, 178=>438, 179=>438, 180=>500, 181=>736, 182=>636, 183=>380, 184=>500, 185=>438, 186=>564, 187=>650, 188=>1035, 189=>1035, 190=>1035, 191=>580, 192=>774,
+ 193=>774, 194=>774, 195=>774, 196=>774, 197=>774, 198=>1085, 199=>734, 200=>683, 201=>683, 202=>683, 203=>683, 204=>372, 205=>372, 206=>372, 207=>372, 208=>845,
+ 209=>837, 210=>850, 211=>850, 212=>850, 213=>850, 214=>850, 215=>838, 216=>850, 217=>812, 218=>812, 219=>812, 220=>812, 221=>724, 222=>742, 223=>719, 224=>675,
+ 225=>675, 226=>675, 227=>675, 228=>675, 229=>675, 230=>1048, 231=>593, 232=>678, 233=>678, 234=>678, 235=>678, 236=>343, 237=>343, 238=>343, 239=>343, 240=>687,
+ 241=>712, 242=>687, 243=>687, 244=>687, 245=>687, 246=>687, 247=>838, 248=>687, 249=>712, 250=>712, 251=>712, 252=>712, 253=>652, 254=>716, 255=>652, 256=>774,
+ 257=>675, 258=>774, 259=>675, 260=>774, 261=>675, 262=>734, 263=>593, 264=>734, 265=>593, 266=>734, 267=>593, 268=>734, 269=>593, 270=>830, 271=>716, 272=>845,
+ 273=>716, 274=>683, 275=>678, 276=>683, 277=>678, 278=>683, 279=>678, 280=>683, 281=>678, 282=>683, 283=>678, 284=>821, 285=>716, 286=>821, 287=>716, 288=>821,
+ 289=>716, 290=>821, 291=>716, 292=>837, 293=>712, 294=>974, 295=>790, 296=>372, 297=>343, 298=>372, 299=>343, 300=>372, 301=>343, 302=>372, 303=>343, 304=>372,
+ 305=>343, 306=>744, 307=>686, 308=>372, 309=>343, 310=>775, 311=>665, 312=>665, 313=>637, 314=>343, 315=>637, 316=>343, 317=>637, 318=>459, 319=>637, 320=>486,
+ 321=>660, 322=>375, 323=>837, 324=>712, 325=>837, 326=>712, 327=>837, 328=>712, 329=>983, 330=>837, 331=>712, 332=>850, 333=>687, 334=>850, 335=>687, 336=>850,
+ 337=>687, 340=>770, 341=>493, 342=>770, 343=>493, 344=>770, 345=>493, 346=>720, 347=>595, 348=>720, 349=>595, 350=>720, 351=>595, 354=>682, 355=>478, 356=>682,
+ 357=>478, 358=>682, 359=>478, 360=>812, 361=>712, 362=>812, 363=>712, 364=>812, 365=>712, 366=>812, 367=>712, 368=>812, 369=>712, 370=>812, 371=>712, 372=>1103,
+ 373=>924, 374=>724, 375=>652, 377=>725, 378=>582, 379=>725, 380=>582, 383=>435, 384=>716, 385=>811, 386=>762, 387=>716, 388=>762, 389=>716, 390=>734, 391=>734,
+ 392=>593, 393=>845, 394=>879, 395=>762, 396=>716, 397=>687, 398=>683, 399=>850, 400=>696, 401=>683, 403=>821, 404=>793, 405=>1045, 406=>436, 407=>389, 408=>775,
+ 409=>665, 410=>360, 411=>592, 412=>1042, 413=>837, 414=>712, 415=>850, 416=>850, 417=>687, 418=>1114, 419=>962, 420=>782, 421=>716, 422=>770, 423=>720, 424=>595,
+ 425=>683, 426=>552, 427=>478, 428=>707, 429=>478, 430=>682, 431=>812, 432=>712, 433=>769, 434=>813, 435=>797, 436=>778, 437=>725, 438=>582, 439=>772, 440=>772,
+ 441=>641, 442=>582, 443=>696, 444=>772, 445=>641, 446=>573, 447=>716, 448=>372, 449=>659, 450=>544, 451=>372, 452=>1548, 453=>1450, 454=>1307, 455=>977, 456=>979,
+ 457=>670, 458=>1193, 459=>1213, 460=>1063, 461=>774, 462=>675, 463=>372, 464=>343, 465=>850, 466=>687, 467=>812, 468=>712, 469=>812, 470=>712, 471=>812, 472=>712,
+ 473=>812, 474=>712, 475=>812, 476=>712, 477=>678, 478=>774, 479=>675, 480=>774, 481=>675, 482=>1085, 483=>1048, 484=>821, 485=>716, 486=>821, 487=>716, 488=>775,
+ 489=>665, 490=>850, 491=>687, 492=>850, 493=>687, 494=>772, 495=>582, 496=>343, 497=>1548, 498=>1450, 499=>1307, 500=>821, 501=>716, 502=>1289, 503=>787, 504=>837,
+ 505=>712, 506=>774, 507=>675, 508=>1085, 509=>1048, 510=>850, 511=>687, 512=>774, 513=>675, 514=>774, 515=>675, 516=>683, 517=>678, 518=>683, 519=>678, 520=>372,
+ 521=>343, 522=>372, 523=>343, 524=>850, 525=>687, 526=>850, 527=>687, 528=>770, 529=>493, 530=>770, 531=>493, 532=>812, 533=>712, 534=>812, 535=>712, 536=>720,
+ 537=>595, 538=>682, 539=>478, 540=>690, 541=>607, 542=>837, 543=>712, 544=>837, 545=>865, 546=>809, 547=>659, 548=>725, 549=>582, 550=>774, 551=>675, 552=>683,
+ 553=>678, 554=>850, 555=>687, 556=>850, 557=>687, 558=>850, 559=>687, 560=>850, 561=>687, 562=>724, 563=>652, 564=>492, 565=>867, 566=>512, 567=>343, 568=>1088,
+ 569=>1088, 570=>774, 571=>734, 572=>593, 573=>637, 574=>682, 575=>595, 576=>582, 577=>782, 578=>614, 579=>762, 580=>812, 581=>774, 582=>683, 583=>678, 584=>372,
+ 585=>343, 586=>860, 587=>791, 588=>770, 589=>493, 590=>724, 591=>652, 592=>675, 593=>716, 594=>716, 595=>716, 596=>593, 597=>593, 598=>791, 599=>792, 600=>678,
+ 601=>678, 602=>876, 603=>557, 604=>545, 605=>774, 606=>731, 607=>343, 608=>792, 609=>716, 610=>627, 611=>735, 612=>635, 613=>712, 614=>712, 615=>712, 616=>545,
+ 617=>440, 618=>545, 619=>559, 620=>693, 621=>343, 622=>841, 623=>1042, 624=>1042, 625=>1042, 626=>712, 627=>793, 628=>642, 629=>687, 630=>909, 631=>682, 632=>796,
+ 633=>538, 634=>538, 635=>650, 636=>493, 637=>493, 638=>596, 639=>596, 640=>642, 641=>642, 642=>595, 643=>415, 644=>435, 645=>605, 646=>552, 647=>478, 648=>478,
+ 649=>920, 650=>769, 651=>670, 652=>652, 653=>924, 654=>652, 655=>724, 656=>694, 657=>684, 658=>641, 659=>641, 660=>573, 661=>573, 662=>573, 663=>573, 664=>850,
+ 665=>633, 666=>731, 667=>685, 668=>691, 669=>343, 670=>732, 671=>539, 672=>792, 673=>573, 674=>573, 675=>1156, 676=>1214, 677=>1155, 678=>974, 679=>769, 680=>929,
+ 681=>1026, 682=>792, 683=>780, 684=>591, 685=>415, 686=>677, 687=>789, 688=>456, 689=>456, 690=>219, 691=>315, 692=>315, 693=>315, 694=>411, 695=>591, 696=>417,
+ 697=>302, 698=>521, 699=>380, 700=>380, 701=>380, 702=>366, 703=>366, 704=>326, 705=>326, 706=>500, 707=>500, 708=>500, 709=>500, 711=>500, 712=>306, 713=>500,
+ 714=>500, 715=>500, 716=>306, 717=>500, 718=>500, 719=>500, 720=>337, 721=>337, 722=>366, 723=>366, 724=>500, 725=>500, 726=>500, 727=>500, 728=>500, 729=>500,
+ 730=>500, 731=>500, 733=>500, 734=>351, 735=>500, 736=>412, 737=>219, 738=>381, 739=>413, 740=>326, 741=>500, 742=>500, 743=>500, 744=>500, 745=>500, 748=>500,
+ 749=>500, 750=>500, 755=>500, 759=>500, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0,
+ 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0,
+ 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0,
+ 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0,
+ 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 837=>0, 838=>0, 839=>0, 840=>0, 841=>0, 842=>0, 843=>0,
+ 844=>0, 845=>0, 846=>0, 847=>0, 849=>0, 850=>0, 855=>0, 856=>0, 860=>0, 861=>0, 862=>0, 863=>0, 864=>0, 865=>0, 866=>0, 884=>302,
+ 885=>302, 890=>500, 891=>593, 892=>550, 893=>549, 894=>337, 900=>441, 901=>500, 902=>797, 903=>380, 904=>846, 905=>1009, 906=>563, 908=>891, 910=>980, 911=>894,
+ 912=>390, 913=>774, 914=>762, 915=>637, 916=>774, 917=>683, 918=>725, 919=>837, 920=>850, 921=>372, 922=>775, 923=>774, 924=>995, 925=>837, 926=>632, 927=>850,
+ 928=>837, 929=>733, 931=>683, 932=>682, 933=>724, 934=>850, 935=>771, 936=>850, 937=>850, 938=>372, 939=>724, 940=>687, 941=>557, 942=>712, 943=>390, 944=>675,
+ 945=>687, 946=>716, 947=>681, 948=>687, 949=>557, 950=>591, 951=>712, 952=>687, 953=>390, 954=>710, 955=>633, 956=>736, 957=>681, 958=>591, 959=>687, 960=>791,
+ 961=>716, 962=>593, 963=>779, 964=>638, 965=>675, 966=>782, 967=>645, 968=>794, 969=>869, 970=>390, 971=>675, 972=>687, 973=>675, 974=>869, 976=>651, 977=>661,
+ 978=>746, 979=>981, 980=>746, 981=>796, 982=>869, 983=>744, 984=>850, 985=>687, 986=>734, 987=>593, 988=>683, 989=>494, 990=>702, 991=>660, 992=>919, 993=>627,
+ 994=>1093, 995=>837, 996=>832, 997=>716, 998=>928, 999=>744, 1000=>733, 1001=>650, 1002=>789, 1003=>671, 1004=>752, 1005=>716, 1006=>682, 1007=>590, 1008=>744, 1009=>716,
+ 1010=>593, 1011=>343, 1012=>850, 1013=>645, 1014=>645, 1015=>742, 1016=>716, 1017=>734, 1018=>995, 1019=>732, 1020=>716, 1021=>734, 1022=>734, 1023=>698, 1024=>683, 1025=>683,
+ 1026=>878, 1028=>734, 1029=>720, 1030=>372, 1031=>372, 1032=>372, 1033=>1154, 1034=>1130, 1035=>878, 1037=>837, 1038=>771, 1040=>774, 1041=>762, 1042=>762, 1043=>637, 1044=>891,
+ 1045=>683, 1046=>1224, 1047=>710, 1048=>837, 1049=>837, 1050=>817, 1051=>831, 1052=>995, 1053=>837, 1054=>850, 1055=>837, 1056=>733, 1057=>734, 1058=>682, 1059=>771, 1060=>992,
+ 1061=>771, 1062=>928, 1063=>808, 1064=>1235, 1065=>1326, 1066=>939, 1067=>1036, 1068=>762, 1069=>734, 1070=>1174, 1071=>770, 1072=>675, 1073=>698, 1074=>633, 1075=>522, 1076=>808,
+ 1077=>678, 1078=>995, 1079=>581, 1080=>701, 1081=>701, 1082=>679, 1083=>732, 1084=>817, 1085=>691, 1086=>687, 1087=>691, 1088=>716, 1089=>593, 1090=>580, 1091=>652, 1092=>992,
+ 1093=>645, 1094=>741, 1095=>687, 1096=>1062, 1097=>1105, 1098=>751, 1099=>904, 1100=>632, 1101=>593, 1102=>972, 1103=>642, 1104=>678, 1105=>678, 1106=>714, 1107=>522, 1108=>593,
+ 1109=>595, 1110=>343, 1111=>343, 1112=>343, 1113=>991, 1114=>956, 1115=>734, 1117=>701, 1118=>652, 1119=>691, 1120=>1093, 1121=>869, 1122=>840, 1123=>736, 1124=>1012, 1125=>839,
+ 1126=>992, 1127=>832, 1128=>1358, 1129=>1121, 1130=>850, 1131=>687, 1132=>1236, 1133=>1007, 1134=>696, 1135=>557, 1136=>1075, 1137=>1061, 1138=>850, 1139=>687, 1140=>850, 1141=>695,
+ 1142=>850, 1143=>695, 1144=>1148, 1145=>1043, 1146=>1074, 1147=>863, 1148=>1405, 1149=>1173, 1150=>1093, 1151=>869, 1152=>734, 1153=>593, 1154=>652, 1155=>0, 1156=>0, 1157=>0,
+ 1158=>0, 1160=>418, 1161=>418, 1162=>938, 1163=>806, 1164=>762, 1165=>611, 1166=>736, 1167=>718, 1168=>637, 1169=>522, 1170=>666, 1171=>543, 1172=>789, 1173=>522, 1174=>1224,
+ 1175=>995, 1176=>710, 1177=>581, 1178=>775, 1179=>679, 1180=>817, 1181=>679, 1182=>817, 1183=>679, 1184=>1015, 1185=>826, 1186=>837, 1187=>691, 1188=>1103, 1189=>871, 1190=>1254,
+ 1191=>979, 1192=>875, 1193=>710, 1194=>734, 1195=>593, 1196=>682, 1197=>580, 1198=>724, 1199=>652, 1200=>724, 1201=>652, 1202=>771, 1203=>645, 1204=>1104, 1205=>1001, 1206=>808,
+ 1207=>687, 1208=>808, 1209=>687, 1210=>808, 1211=>712, 1212=>1026, 1213=>810, 1214=>1026, 1215=>810, 1216=>372, 1217=>1224, 1218=>995, 1219=>778, 1220=>629, 1221=>933, 1222=>804,
+ 1223=>837, 1224=>691, 1225=>938, 1226=>806, 1227=>808, 1228=>687, 1229=>1096, 1230=>932, 1231=>343, 1232=>774, 1233=>675, 1234=>774, 1235=>675, 1236=>1085, 1237=>1048, 1238=>683,
+ 1239=>678, 1240=>850, 1241=>678, 1242=>850, 1243=>678, 1244=>1224, 1245=>995, 1246=>710, 1247=>581, 1248=>772, 1249=>641, 1250=>837, 1251=>701, 1252=>837, 1253=>701, 1254=>850,
+ 1255=>687, 1256=>850, 1257=>687, 1258=>850, 1259=>687, 1260=>734, 1261=>593, 1262=>771, 1263=>652, 1264=>771, 1265=>652, 1266=>771, 1267=>652, 1268=>808, 1269=>687, 1270=>637,
+ 1271=>522, 1272=>1036, 1273=>904, 1274=>666, 1275=>543, 1276=>771, 1277=>645, 1278=>771, 1279=>645, 1280=>762, 1281=>608, 1282=>1159, 1283=>893, 1284=>1119, 1285=>920, 1286=>828,
+ 1287=>693, 1288=>1242, 1289=>1017, 1290=>1248, 1291=>1013, 1292=>839, 1293=>638, 1294=>938, 1295=>803, 1296=>696, 1297=>557, 1298=>831, 1299=>732, 1306=>850, 1307=>716, 1308=>1103,
+ 1309=>924, 1312=>1248, 1313=>1022, 1314=>1254, 1315=>979, 1329=>984, 1330=>812, 1331=>984, 1332=>984, 1333=>812, 1334=>777, 1335=>812, 1336=>812, 1337=>975, 1338=>984, 1339=>812,
+ 1340=>710, 1341=>1078, 1342=>1136, 1343=>812, 1344=>710, 1345=>757, 1346=>984, 1347=>876, 1348=>984, 1349=>793, 1350=>984, 1351=>812, 1352=>812, 1353=>812, 1354=>958, 1355=>777,
+ 1356=>984, 1357=>812, 1358=>984, 1359=>720, 1360=>812, 1361=>793, 1362=>895, 1363=>850, 1364=>936, 1365=>850, 1366=>720, 1369=>366, 1370=>380, 1371=>550, 1372=>550, 1373=>380,
+ 1374=>546, 1375=>521, 1377=>1042, 1378=>712, 1379=>866, 1380=>868, 1381=>712, 1382=>817, 1383=>653, 1384=>712, 1385=>811, 1386=>817, 1387=>712, 1388=>498, 1389=>1018, 1390=>716,
+ 1391=>712, 1392=>712, 1393=>716, 1394=>819, 1395=>712, 1396=>751, 1397=>343, 1398=>882, 1399=>559, 1400=>712, 1401=>559, 1402=>1042, 1403=>559, 1404=>863, 1405=>712, 1406=>813,
+ 1407=>1042, 1408=>712, 1409=>716, 1410=>571, 1411=>1042, 1412=>778, 1413=>687, 1414=>720, 1415=>862, 1417=>400, 1418=>487, 1456=>0, 1457=>0, 1458=>0, 1459=>0, 1460=>0,
+ 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1466=>0, 1467=>0, 1468=>0, 1469=>0, 1470=>415, 1471=>0, 1472=>372, 1473=>0, 1474=>0, 1475=>372, 1478=>497,
+ 1479=>0, 1488=>751, 1489=>673, 1490=>537, 1491=>654, 1492=>712, 1493=>343, 1494=>491, 1495=>712, 1496=>724, 1497=>343, 1498=>649, 1499=>650, 1500=>679, 1501=>712, 1502=>775,
+ 1503=>343, 1504=>497, 1505=>773, 1506=>678, 1507=>718, 1508=>687, 1509=>628, 1510=>751, 1511=>729, 1512=>649, 1513=>949, 1514=>751, 1519=>1000, 1520=>664, 1521=>664, 1522=>663,
+ 1523=>444, 1524=>710, 3647=>743, 3713=>815, 3714=>748, 3716=>749, 3719=>569, 3720=>742, 3722=>744, 3725=>761, 3732=>706, 3733=>704, 3734=>747, 3735=>819, 3737=>730, 3738=>727,
+ 3739=>727, 3740=>922, 3741=>827, 3742=>866, 3743=>866, 3745=>836, 3746=>761, 3747=>770, 3749=>769, 3751=>713, 3754=>827, 3755=>1031, 3757=>724, 3758=>784, 3759=>934, 3760=>688,
+ 3761=>0, 3762=>610, 3763=>610, 3764=>0, 3765=>0, 3766=>0, 3767=>0, 3768=>0, 3769=>0, 3771=>0, 3772=>0, 3773=>670, 3776=>516, 3777=>860, 3778=>516, 3779=>650,
+ 3780=>632, 3782=>759, 3784=>0, 3785=>0, 3786=>0, 3787=>0, 3788=>0, 3789=>0, 3792=>771, 3793=>771, 3794=>693, 3795=>836, 3796=>729, 3797=>729, 3798=>849, 3799=>790,
+ 3800=>759, 3801=>910, 3804=>1363, 3805=>1363, 4256=>918, 4257=>744, 4258=>739, 4259=>837, 4260=>649, 4261=>773, 4262=>857, 4263=>889, 4264=>530, 4265=>633, 4266=>857, 4267=>900,
+ 4268=>643, 4269=>903, 4270=>814, 4271=>752, 4272=>869, 4273=>643, 4274=>643, 4275=>886, 4276=>886, 4277=>733, 4278=>653, 4279=>643, 4280=>646, 4281=>643, 4282=>790, 4283=>902,
+ 4284=>633, 4285=>619, 4286=>643, 4287=>778, 4288=>892, 4289=>601, 4290=>742, 4291=>616, 4292=>633, 4293=>742, 4304=>553, 4305=>552, 4306=>596, 4307=>815, 4308=>562, 4309=>563,
+ 4310=>553, 4311=>827, 4312=>553, 4313=>543, 4314=>1074, 4315=>563, 4316=>563, 4317=>812, 4318=>552, 4319=>591, 4320=>822, 4321=>563, 4322=>690, 4323=>583, 4324=>813, 4325=>562,
+ 4326=>813, 4327=>563, 4328=>563, 4329=>563, 4330=>632, 4331=>563, 4332=>563, 4333=>552, 4334=>563, 4335=>563, 4336=>558, 4337=>604, 4338=>552, 4339=>552, 4340=>553, 4341=>605,
+ 4342=>852, 4343=>635, 4344=>563, 4345=>596, 4346=>542, 4347=>474, 4348=>368, 5121=>774, 5122=>774, 5123=>774, 5124=>774, 5125=>905, 5126=>905, 5127=>905, 5129=>905, 5130=>905,
+ 5131=>905, 5132=>1018, 5133=>1009, 5134=>1018, 5135=>1009, 5136=>1018, 5137=>1009, 5138=>1149, 5139=>1140, 5140=>1149, 5141=>1140, 5142=>905, 5143=>1149, 5144=>1142, 5145=>1149, 5146=>1142,
+ 5147=>905, 5149=>310, 5150=>529, 5151=>425, 5152=>425, 5153=>395, 5154=>395, 5155=>395, 5156=>395, 5157=>564, 5158=>470, 5159=>310, 5160=>395, 5161=>395, 5162=>395, 5163=>1213,
+ 5164=>986, 5165=>1216, 5166=>1297, 5167=>774, 5168=>774, 5169=>774, 5170=>774, 5171=>886, 5172=>886, 5173=>886, 5175=>886, 5176=>886, 5177=>886, 5178=>1018, 5179=>1009, 5180=>1018,
+ 5181=>1009, 5182=>1018, 5183=>1009, 5184=>1149, 5185=>1140, 5186=>1149, 5187=>1140, 5188=>1149, 5189=>1142, 5190=>1149, 5191=>1142, 5192=>886, 5193=>576, 5194=>229, 5196=>812, 5197=>812,
+ 5198=>812, 5199=>812, 5200=>815, 5201=>815, 5202=>815, 5204=>815, 5205=>815, 5206=>815, 5207=>1056, 5208=>1048, 5209=>1056, 5210=>1048, 5211=>1056, 5212=>1048, 5213=>1060, 5214=>1054,
+ 5215=>1060, 5216=>1054, 5217=>1060, 5218=>1052, 5219=>1060, 5220=>1052, 5221=>1060, 5222=>483, 5223=>1005, 5224=>1005, 5225=>1023, 5226=>1017, 5227=>743, 5228=>743, 5229=>743, 5230=>743,
+ 5231=>743, 5232=>743, 5233=>743, 5234=>743, 5235=>743, 5236=>1029, 5237=>975, 5238=>980, 5239=>975, 5240=>980, 5241=>975, 5242=>1029, 5243=>975, 5244=>1029, 5245=>975, 5246=>980,
+ 5247=>975, 5248=>980, 5249=>975, 5250=>980, 5251=>501, 5252=>501, 5253=>938, 5254=>938, 5255=>938, 5256=>938, 5257=>743, 5258=>743, 5259=>743, 5260=>743, 5261=>743, 5262=>743,
+ 5263=>743, 5264=>743, 5265=>743, 5266=>1029, 5267=>975, 5268=>1029, 5269=>975, 5270=>1029, 5271=>975, 5272=>1029, 5273=>975, 5274=>1029, 5275=>975, 5276=>1029, 5277=>975, 5278=>1029,
+ 5279=>975, 5280=>1029, 5281=>501, 5282=>501, 5283=>626, 5284=>626, 5285=>626, 5286=>626, 5287=>626, 5288=>626, 5289=>626, 5290=>626, 5291=>626, 5292=>881, 5293=>854, 5294=>863,
+ 5295=>874, 5296=>863, 5297=>874, 5298=>881, 5299=>874, 5300=>881, 5301=>874, 5302=>863, 5303=>874, 5304=>863, 5305=>874, 5306=>863, 5307=>436, 5308=>548, 5309=>436, 5312=>988,
+ 5313=>988, 5314=>988, 5315=>988, 5316=>931, 5317=>931, 5318=>931, 5319=>931, 5320=>931, 5321=>1238, 5322=>1247, 5323=>1200, 5324=>1228, 5325=>1200, 5326=>1228, 5327=>931, 5328=>660,
+ 5329=>497, 5330=>660, 5331=>988, 5332=>988, 5333=>988, 5334=>988, 5335=>931, 5336=>931, 5337=>931, 5338=>931, 5339=>931, 5340=>1231, 5341=>1247, 5342=>1283, 5343=>1228, 5344=>1283,
+ 5345=>1228, 5346=>1228, 5347=>1214, 5348=>1228, 5349=>1214, 5350=>1283, 5351=>1228, 5352=>1283, 5353=>1228, 5354=>660, 5356=>886, 5357=>730, 5358=>730, 5359=>730, 5360=>730, 5361=>730,
+ 5362=>730, 5363=>730, 5364=>730, 5365=>730, 5366=>998, 5367=>958, 5368=>967, 5369=>989, 5370=>967, 5371=>989, 5372=>998, 5373=>958, 5374=>998, 5375=>958, 5376=>967, 5377=>989,
+ 5378=>967, 5379=>989, 5380=>967, 5381=>493, 5382=>460, 5383=>493, 5392=>923, 5393=>923, 5394=>923, 5395=>1136, 5396=>1136, 5397=>1136, 5398=>1136, 5399=>1209, 5400=>1202, 5401=>1209,
+ 5402=>1202, 5403=>1209, 5404=>1202, 5405=>1431, 5406=>1420, 5407=>1431, 5408=>1420, 5409=>1431, 5410=>1420, 5411=>1431, 5412=>1420, 5413=>746, 5414=>776, 5415=>776, 5416=>776, 5417=>776,
+ 5418=>776, 5419=>776, 5420=>776, 5421=>776, 5422=>776, 5423=>1003, 5424=>1003, 5425=>1013, 5426=>996, 5427=>1013, 5428=>996, 5429=>1003, 5430=>1003, 5431=>1003, 5432=>1003, 5433=>1013,
+ 5434=>996, 5435=>1013, 5436=>996, 5437=>1013, 5438=>495, 5440=>395, 5441=>510, 5442=>1033, 5443=>1033, 5444=>976, 5445=>976, 5446=>976, 5447=>976, 5448=>733, 5449=>733, 5450=>733,
+ 5451=>733, 5452=>733, 5453=>733, 5454=>1003, 5455=>959, 5456=>495, 5458=>886, 5459=>774, 5460=>774, 5461=>774, 5462=>774, 5463=>928, 5464=>928, 5465=>928, 5466=>928, 5467=>1172,
+ 5468=>1142, 5469=>602, 5470=>812, 5471=>812, 5472=>812, 5473=>812, 5474=>812, 5475=>812, 5476=>815, 5477=>815, 5478=>815, 5479=>815, 5480=>1060, 5481=>1052, 5482=>548, 5492=>977,
+ 5493=>977, 5494=>977, 5495=>977, 5496=>977, 5497=>977, 5498=>977, 5499=>618, 5500=>837, 5501=>510, 5502=>1238, 5503=>1238, 5504=>1238, 5505=>1238, 5506=>1238, 5507=>1238, 5508=>1238,
+ 5509=>989, 5514=>977, 5515=>977, 5516=>977, 5517=>977, 5518=>1591, 5519=>1591, 5520=>1591, 5521=>1295, 5522=>1295, 5523=>1591, 5524=>1591, 5525=>848, 5526=>1273, 5536=>988, 5537=>988,
+ 5538=>931, 5539=>931, 5540=>931, 5541=>931, 5542=>660, 5543=>776, 5544=>776, 5545=>776, 5546=>776, 5547=>776, 5548=>776, 5549=>776, 5550=>495, 5551=>743, 5598=>830, 5601=>830,
+ 5702=>496, 5703=>496, 5742=>413, 5743=>1238, 5744=>1591, 5745=>2016, 5746=>2016, 5747=>1720, 5748=>1678, 5749=>2016, 5750=>2016, 7424=>652, 7425=>833, 7426=>1048, 7427=>608, 7428=>593,
+ 7429=>676, 7430=>676, 7431=>559, 7432=>557, 7433=>343, 7434=>494, 7435=>665, 7436=>539, 7437=>817, 7438=>701, 7439=>687, 7440=>593, 7441=>660, 7442=>660, 7443=>660, 7444=>1094,
+ 7446=>687, 7447=>687, 7448=>556, 7449=>642, 7450=>642, 7451=>580, 7452=>634, 7453=>737, 7454=>948, 7455=>695, 7456=>652, 7457=>924, 7458=>582, 7459=>646, 7462=>539, 7463=>652,
+ 7464=>691, 7465=>556, 7466=>781, 7467=>732, 7468=>487, 7469=>683, 7470=>480, 7472=>523, 7473=>430, 7474=>430, 7475=>517, 7476=>527, 7477=>234, 7478=>234, 7479=>488, 7480=>401,
+ 7481=>626, 7482=>527, 7483=>527, 7484=>535, 7485=>509, 7486=>461, 7487=>485, 7488=>430, 7489=>511, 7490=>695, 7491=>458, 7492=>458, 7493=>479, 7494=>712, 7495=>479, 7496=>479,
+ 7497=>479, 7498=>479, 7499=>386, 7500=>386, 7501=>479, 7502=>219, 7503=>487, 7504=>664, 7505=>456, 7506=>488, 7507=>414, 7508=>488, 7509=>488, 7510=>479, 7511=>388, 7512=>456,
+ 7513=>462, 7514=>664, 7515=>501, 7517=>451, 7518=>429, 7519=>433, 7520=>493, 7521=>406, 7522=>219, 7523=>315, 7524=>456, 7525=>501, 7526=>451, 7527=>429, 7528=>451, 7529=>493,
+ 7530=>406, 7543=>716, 7544=>527, 7547=>545, 7557=>514, 7579=>479, 7580=>414, 7581=>414, 7582=>488, 7583=>386, 7584=>377, 7585=>348, 7586=>479, 7587=>456, 7588=>347, 7589=>281,
+ 7590=>347, 7591=>347, 7592=>431, 7593=>326, 7594=>330, 7595=>370, 7596=>664, 7597=>664, 7598=>562, 7599=>562, 7600=>448, 7601=>488, 7602=>542, 7603=>422, 7604=>396, 7605=>388,
+ 7606=>583, 7607=>494, 7608=>399, 7609=>451, 7610=>501, 7611=>417, 7612=>523, 7613=>470, 7614=>455, 7615=>425, 7620=>0, 7621=>0, 7622=>0, 7623=>0, 7624=>0, 7625=>0,
+ 7680=>774, 7681=>675, 7682=>762, 7683=>716, 7684=>762, 7685=>716, 7686=>762, 7687=>716, 7688=>734, 7689=>593, 7690=>830, 7691=>716, 7692=>830, 7693=>716, 7694=>830, 7695=>716,
+ 7696=>830, 7697=>716, 7698=>830, 7699=>716, 7700=>683, 7701=>678, 7702=>683, 7703=>678, 7704=>683, 7705=>678, 7706=>683, 7707=>678, 7708=>683, 7709=>678, 7710=>683, 7711=>435,
+ 7712=>821, 7713=>716, 7714=>837, 7715=>712, 7716=>837, 7717=>712, 7718=>837, 7719=>712, 7720=>837, 7721=>712, 7722=>837, 7723=>712, 7724=>372, 7725=>343, 7726=>372, 7727=>343,
+ 7728=>775, 7729=>665, 7730=>775, 7731=>665, 7732=>775, 7733=>665, 7734=>637, 7735=>343, 7736=>637, 7737=>343, 7738=>637, 7739=>343, 7740=>637, 7741=>343, 7742=>995, 7743=>1042,
+ 7744=>995, 7745=>1042, 7746=>995, 7747=>1042, 7748=>837, 7749=>712, 7750=>837, 7751=>712, 7752=>837, 7753=>712, 7754=>837, 7755=>712, 7756=>850, 7757=>687, 7758=>850, 7759=>687,
+ 7760=>850, 7761=>687, 7762=>850, 7763=>687, 7764=>733, 7765=>716, 7766=>733, 7767=>716, 7768=>770, 7769=>493, 7770=>770, 7771=>493, 7772=>770, 7773=>493, 7774=>770, 7775=>493,
+ 7776=>720, 7777=>595, 7778=>720, 7779=>595, 7780=>720, 7781=>595, 7782=>720, 7783=>595, 7784=>720, 7785=>595, 7786=>682, 7787=>478, 7788=>682, 7789=>478, 7790=>682, 7791=>478,
+ 7792=>682, 7793=>478, 7794=>812, 7795=>712, 7796=>812, 7797=>712, 7798=>812, 7799=>712, 7800=>812, 7801=>712, 7802=>812, 7803=>712, 7804=>774, 7805=>652, 7806=>774, 7807=>652,
+ 7808=>1103, 7809=>924, 7810=>1103, 7811=>924, 7812=>1103, 7813=>924, 7814=>1103, 7815=>924, 7816=>1103, 7817=>924, 7818=>771, 7819=>645, 7820=>771, 7821=>645, 7822=>724, 7823=>652,
+ 7824=>725, 7825=>582, 7826=>725, 7827=>582, 7828=>725, 7829=>582, 7830=>712, 7831=>478, 7832=>924, 7833=>652, 7834=>675, 7835=>435, 7839=>687, 7840=>774, 7841=>675, 7842=>774,
+ 7843=>675, 7844=>774, 7845=>675, 7846=>774, 7847=>675, 7848=>774, 7849=>675, 7850=>774, 7851=>675, 7852=>774, 7853=>675, 7854=>774, 7855=>675, 7856=>774, 7857=>675, 7858=>774,
+ 7859=>675, 7860=>774, 7861=>675, 7862=>774, 7863=>675, 7864=>683, 7865=>678, 7866=>683, 7867=>678, 7868=>683, 7869=>678, 7870=>683, 7871=>678, 7872=>683, 7873=>678, 7874=>683,
+ 7875=>678, 7876=>683, 7877=>678, 7878=>683, 7879=>678, 7880=>372, 7881=>343, 7882=>372, 7883=>343, 7884=>850, 7885=>687, 7886=>850, 7887=>687, 7888=>850, 7889=>687, 7890=>850,
+ 7891=>687, 7892=>850, 7893=>687, 7894=>850, 7895=>687, 7896=>850, 7897=>687, 7898=>850, 7899=>687, 7900=>850, 7901=>687, 7902=>850, 7903=>687, 7904=>850, 7905=>687, 7906=>850,
+ 7907=>687, 7908=>812, 7909=>712, 7910=>812, 7911=>712, 7912=>812, 7913=>712, 7914=>812, 7915=>712, 7916=>812, 7917=>712, 7918=>812, 7919=>712, 7920=>812, 7921=>712, 7922=>724,
+ 7923=>652, 7924=>724, 7925=>652, 7926=>724, 7927=>652, 7928=>724, 7929=>652, 7936=>687, 7937=>687, 7938=>687, 7939=>687, 7940=>687, 7941=>687, 7942=>687, 7943=>687, 7944=>774,
+ 7945=>774, 7946=>1041, 7947=>1043, 7948=>935, 7949=>963, 7950=>835, 7951=>859, 7952=>557, 7953=>557, 7954=>557, 7955=>557, 7956=>557, 7957=>557, 7960=>792, 7961=>794, 7962=>1100,
+ 7963=>1096, 7964=>1023, 7965=>1052, 7968=>712, 7969=>712, 7970=>712, 7971=>712, 7972=>712, 7973=>712, 7974=>712, 7975=>712, 7976=>945, 7977=>951, 7978=>1250, 7979=>1250, 7980=>1180,
+ 7981=>1206, 7982=>1054, 7983=>1063, 7984=>390, 7985=>390, 7986=>390, 7987=>390, 7988=>390, 7989=>390, 7990=>390, 7991=>390, 7992=>483, 7993=>489, 7994=>777, 7995=>785, 7996=>712,
+ 7997=>738, 7998=>604, 7999=>604, 8000=>687, 8001=>687, 8002=>687, 8003=>687, 8004=>687, 8005=>687, 8008=>892, 8009=>933, 8010=>1221, 8011=>1224, 8012=>1053, 8013=>1082, 8016=>675,
+ 8017=>675, 8018=>675, 8019=>675, 8020=>675, 8021=>675, 8022=>675, 8023=>675, 8025=>930, 8027=>1184, 8029=>1199, 8031=>1049, 8032=>869, 8033=>869, 8034=>869, 8035=>869, 8036=>869,
+ 8037=>869, 8038=>869, 8039=>869, 8040=>909, 8041=>958, 8042=>1246, 8043=>1251, 8044=>1076, 8045=>1105, 8046=>1028, 8047=>1076, 8048=>687, 8049=>687, 8050=>557, 8051=>557, 8052=>712,
+ 8053=>712, 8054=>390, 8055=>390, 8056=>687, 8057=>687, 8058=>675, 8059=>675, 8060=>869, 8061=>869, 8064=>687, 8065=>687, 8066=>687, 8067=>687, 8068=>687, 8069=>687, 8070=>687,
+ 8071=>687, 8072=>774, 8073=>774, 8074=>1041, 8075=>1043, 8076=>935, 8077=>963, 8078=>835, 8079=>859, 8080=>712, 8081=>712, 8082=>712, 8083=>712, 8084=>712, 8085=>712, 8086=>712,
+ 8087=>712, 8088=>945, 8089=>951, 8090=>1250, 8091=>1250, 8092=>1180, 8093=>1206, 8094=>1054, 8095=>1063, 8096=>869, 8097=>869, 8098=>869, 8099=>869, 8100=>869, 8101=>869, 8102=>869,
+ 8103=>869, 8104=>909, 8105=>958, 8106=>1246, 8107=>1251, 8108=>1076, 8109=>1105, 8110=>1028, 8111=>1076, 8112=>687, 8113=>687, 8114=>687, 8115=>687, 8116=>687, 8118=>687, 8119=>687,
+ 8120=>774, 8121=>774, 8122=>876, 8123=>797, 8124=>774, 8125=>500, 8126=>500, 8127=>500, 8128=>500, 8129=>500, 8130=>712, 8131=>712, 8132=>712, 8134=>712, 8135=>712, 8136=>929,
+ 8137=>846, 8138=>1080, 8139=>1009, 8140=>837, 8141=>500, 8142=>500, 8143=>500, 8144=>390, 8145=>390, 8146=>390, 8147=>390, 8150=>390, 8151=>390, 8152=>372, 8153=>372, 8154=>621,
+ 8155=>563, 8157=>500, 8158=>500, 8159=>500, 8160=>675, 8161=>675, 8162=>675, 8163=>675, 8164=>716, 8165=>716, 8166=>675, 8167=>675, 8168=>724, 8169=>724, 8170=>1020, 8171=>980,
+ 8172=>838, 8173=>500, 8174=>500, 8175=>500, 8178=>869, 8179=>869, 8180=>869, 8182=>869, 8183=>869, 8184=>1065, 8185=>891, 8186=>1084, 8187=>894, 8188=>850, 8189=>500, 8190=>500,
+ 8192=>500, 8193=>1000, 8194=>500, 8195=>1000, 8196=>330, 8197=>250, 8198=>167, 8199=>696, 8200=>380, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0, 8206=>0, 8207=>0,
+ 8208=>415, 8209=>415, 8210=>696, 8213=>1000, 8214=>500, 8215=>500, 8219=>380, 8223=>657, 8227=>639, 8228=>380, 8229=>685, 8231=>348, 8234=>0, 8235=>0, 8236=>0, 8237=>0,
+ 8238=>0, 8239=>200, 8241=>1908, 8242=>264, 8243=>447, 8244=>630, 8245=>264, 8246=>447, 8247=>630, 8248=>733, 8251=>972, 8252=>627, 8253=>580, 8254=>500, 8255=>828, 8256=>828,
+ 8257=>329, 8258=>1023, 8259=>500, 8260=>167, 8261=>457, 8262=>457, 8263=>1030, 8264=>829, 8265=>829, 8266=>513, 8267=>687, 8268=>500, 8269=>500, 8270=>523, 8271=>400, 8272=>828,
+ 8273=>523, 8274=>556, 8275=>838, 8276=>829, 8277=>838, 8278=>684, 8279=>813, 8280=>838, 8281=>838, 8282=>380, 8283=>872, 8284=>838, 8285=>380, 8286=>380, 8287=>222, 8288=>0,
+ 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0, 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>438, 8305=>219, 8308=>438, 8309=>438, 8310=>438, 8311=>438,
+ 8312=>438, 8313=>438, 8314=>528, 8315=>528, 8316=>528, 8317=>288, 8318=>288, 8319=>456, 8320=>438, 8321=>438, 8322=>438, 8323=>438, 8324=>438, 8325=>438, 8326=>438, 8327=>438,
+ 8328=>438, 8329=>438, 8330=>528, 8331=>528, 8332=>528, 8333=>288, 8334=>288, 8336=>458, 8337=>479, 8338=>488, 8339=>413, 8340=>479, 8352=>929, 8353=>696, 8354=>696, 8355=>696,
+ 8356=>696, 8357=>1042, 8358=>837, 8359=>1488, 8360=>1205, 8361=>1103, 8362=>854, 8363=>714, 8365=>696, 8366=>682, 8367=>1392, 8368=>696, 8369=>696, 8370=>696, 8371=>696, 8372=>859,
+ 8373=>696, 8400=>0, 8401=>0, 8406=>0, 8407=>0, 8411=>0, 8412=>0, 8417=>0, 8448=>1106, 8449=>1106, 8450=>734, 8451=>1211, 8452=>896, 8453=>1114, 8454=>1148, 8455=>696,
+ 8456=>698, 8457=>952, 8459=>1073, 8460=>913, 8461=>888, 8462=>712, 8463=>712, 8464=>597, 8465=>697, 8466=>856, 8467=>472, 8468=>974, 8469=>837, 8470=>1203, 8471=>1000, 8472=>697,
+ 8473=>750, 8474=>850, 8475=>938, 8476=>814, 8477=>801, 8478=>896, 8479=>710, 8480=>1020, 8481=>1239, 8483=>834, 8484=>754, 8485=>622, 8486=>850, 8487=>769, 8488=>763, 8489=>303,
+ 8490=>775, 8491=>774, 8492=>928, 8493=>818, 8494=>854, 8495=>636, 8496=>729, 8497=>808, 8498=>683, 8499=>1184, 8500=>465, 8501=>794, 8502=>731, 8503=>494, 8504=>684, 8505=>380,
+ 8506=>945, 8507=>1370, 8508=>790, 8509=>737, 8510=>654, 8511=>863, 8512=>840, 8513=>786, 8514=>576, 8515=>637, 8516=>760, 8517=>830, 8518=>716, 8519=>678, 8520=>343, 8521=>343,
+ 8523=>872, 8526=>547, 8531=>1035, 8532=>1035, 8533=>1035, 8534=>1035, 8535=>1035, 8536=>1035, 8537=>1035, 8538=>1035, 8539=>1035, 8540=>1035, 8541=>1035, 8542=>1035, 8543=>615, 8544=>372,
+ 8545=>659, 8546=>945, 8547=>1099, 8548=>774, 8549=>1099, 8550=>1386, 8551=>1672, 8552=>1121, 8553=>771, 8554=>1120, 8555=>1407, 8556=>637, 8557=>734, 8558=>830, 8559=>995, 8560=>343,
+ 8561=>607, 8562=>872, 8563=>984, 8564=>652, 8565=>962, 8566=>1227, 8567=>1491, 8568=>969, 8569=>645, 8570=>969, 8571=>1233, 8572=>343, 8573=>593, 8574=>716, 8575=>1042, 8576=>1289,
+ 8577=>830, 8578=>1289, 8579=>734, 8580=>593, 8592=>838, 8593=>838, 8594=>838, 8595=>838, 8596=>838, 8597=>838, 8598=>838, 8599=>838, 8600=>838, 8601=>838, 8602=>838, 8603=>838,
+ 8604=>838, 8605=>838, 8606=>838, 8607=>838, 8608=>838, 8609=>838, 8610=>838, 8611=>838, 8612=>838, 8613=>838, 8614=>838, 8615=>838, 8616=>838, 8617=>838, 8618=>838, 8619=>838,
+ 8620=>838, 8621=>838, 8622=>838, 8623=>838, 8624=>838, 8625=>838, 8626=>838, 8627=>838, 8628=>838, 8629=>838, 8630=>838, 8631=>838, 8632=>838, 8633=>838, 8634=>838, 8635=>838,
+ 8636=>838, 8637=>838, 8638=>838, 8639=>838, 8640=>838, 8641=>838, 8642=>838, 8643=>838, 8644=>838, 8645=>838, 8646=>838, 8647=>838, 8648=>838, 8649=>838, 8650=>838, 8651=>838,
+ 8652=>838, 8653=>838, 8654=>838, 8655=>838, 8656=>838, 8657=>838, 8658=>838, 8659=>838, 8660=>838, 8661=>838, 8662=>838, 8663=>838, 8664=>838, 8665=>838, 8666=>838, 8667=>838,
+ 8668=>838, 8669=>838, 8670=>838, 8671=>838, 8672=>838, 8673=>838, 8674=>838, 8675=>838, 8676=>838, 8677=>838, 8678=>838, 8679=>838, 8680=>838, 8681=>838, 8682=>838, 8683=>838,
+ 8684=>838, 8685=>838, 8686=>838, 8687=>838, 8688=>838, 8689=>838, 8690=>838, 8691=>838, 8692=>838, 8693=>838, 8694=>838, 8695=>838, 8696=>838, 8697=>838, 8698=>838, 8699=>838,
+ 8700=>838, 8701=>838, 8702=>838, 8703=>838, 8704=>774, 8705=>696, 8706=>544, 8707=>683, 8708=>683, 8709=>856, 8710=>697, 8711=>697, 8712=>896, 8713=>896, 8714=>750, 8715=>896,
+ 8716=>896, 8717=>750, 8718=>636, 8719=>787, 8720=>787, 8721=>718, 8722=>838, 8723=>838, 8724=>696, 8725=>167, 8726=>696, 8727=>838, 8728=>626, 8729=>380, 8730=>667, 8731=>667,
+ 8732=>667, 8733=>669, 8734=>833, 8735=>838, 8736=>896, 8737=>896, 8738=>838, 8739=>500, 8740=>500, 8741=>500, 8742=>500, 8743=>812, 8744=>812, 8745=>812, 8746=>812, 8747=>610,
+ 8748=>929, 8749=>1295, 8750=>563, 8751=>977, 8752=>1313, 8753=>563, 8754=>563, 8755=>563, 8756=>696, 8757=>696, 8758=>294, 8759=>696, 8760=>838, 8761=>838, 8762=>838, 8763=>838,
+ 8764=>838, 8765=>838, 8766=>838, 8767=>838, 8768=>375, 8769=>838, 8770=>838, 8771=>838, 8772=>838, 8773=>838, 8774=>838, 8775=>838, 8776=>838, 8777=>838, 8778=>838, 8779=>838,
+ 8780=>838, 8781=>838, 8782=>838, 8783=>838, 8784=>838, 8785=>838, 8786=>838, 8787=>838, 8788=>1063, 8789=>1063, 8790=>838, 8791=>838, 8792=>838, 8793=>838, 8794=>838, 8795=>838,
+ 8796=>838, 8797=>838, 8798=>838, 8799=>838, 8800=>838, 8801=>838, 8802=>838, 8803=>838, 8804=>838, 8805=>838, 8806=>838, 8807=>838, 8808=>841, 8809=>841, 8810=>1047, 8811=>1047,
+ 8812=>500, 8813=>838, 8814=>838, 8815=>838, 8816=>838, 8817=>838, 8818=>838, 8819=>838, 8820=>838, 8821=>838, 8822=>838, 8823=>838, 8824=>838, 8825=>838, 8826=>838, 8827=>838,
+ 8828=>838, 8829=>838, 8830=>838, 8831=>838, 8832=>838, 8833=>838, 8834=>838, 8835=>838, 8836=>838, 8837=>838, 8838=>838, 8839=>838, 8840=>838, 8841=>838, 8842=>838, 8843=>838,
+ 8844=>812, 8845=>812, 8846=>812, 8847=>838, 8848=>838, 8849=>838, 8850=>838, 8851=>754, 8852=>754, 8853=>838, 8854=>838, 8855=>838, 8856=>838, 8857=>838, 8858=>838, 8859=>838,
+ 8860=>838, 8861=>838, 8862=>838, 8863=>838, 8864=>838, 8865=>838, 8866=>914, 8867=>914, 8868=>914, 8869=>914, 8870=>542, 8871=>542, 8872=>914, 8873=>914, 8874=>914, 8875=>914,
+ 8876=>914, 8877=>914, 8878=>914, 8879=>914, 8882=>838, 8883=>838, 8884=>838, 8885=>838, 8886=>1000, 8887=>1000, 8888=>838, 8889=>838, 8890=>542, 8891=>812, 8892=>812, 8893=>812,
+ 8894=>838, 8895=>838, 8896=>843, 8897=>843, 8898=>843, 8899=>843, 8900=>494, 8901=>380, 8902=>626, 8904=>1000, 8905=>1000, 8906=>1000, 8907=>1000, 8908=>1000, 8909=>838, 8910=>812,
+ 8911=>812, 8918=>838, 8919=>838, 8920=>1422, 8921=>1422, 8922=>838, 8923=>838, 8924=>838, 8925=>838, 8926=>838, 8927=>838, 8928=>838, 8929=>838, 8930=>838, 8931=>838, 8932=>838,
+ 8933=>838, 8934=>838, 8935=>838, 8936=>838, 8937=>838, 8938=>838, 8939=>838, 8940=>838, 8941=>838, 8942=>1000, 8943=>1000, 8944=>1000, 8945=>1000, 8946=>1158, 8947=>896, 8948=>750,
+ 8949=>896, 8950=>896, 8951=>750, 8952=>896, 8953=>896, 8954=>1158, 8955=>896, 8956=>750, 8957=>896, 8958=>750, 8959=>896, 8960=>602, 8961=>602, 8962=>716, 8963=>838, 8964=>838,
+ 8965=>838, 8966=>838, 8967=>488, 8968=>457, 8969=>457, 8970=>457, 8971=>457, 8972=>809, 8973=>809, 8974=>809, 8975=>809, 8976=>838, 8977=>539, 8984=>928, 8985=>838, 8988=>469,
+ 8989=>469, 8990=>469, 8991=>469, 8992=>610, 8993=>610, 8996=>1152, 8997=>1152, 8998=>1414, 8999=>1152, 9000=>1443, 9003=>1414, 9004=>873, 9075=>390, 9076=>716, 9077=>869, 9082=>687,
+ 9085=>863, 9095=>1152, 9108=>873, 9115=>500, 9116=>500, 9117=>500, 9118=>500, 9119=>500, 9120=>500, 9121=>500, 9122=>500, 9123=>500, 9124=>500, 9125=>500, 9126=>500, 9127=>750,
+ 9128=>750, 9129=>750, 9130=>750, 9131=>750, 9132=>750, 9133=>750, 9134=>610, 9166=>838, 9167=>945, 9187=>873, 9189=>769, 9250=>716, 9251=>716, 9312=>847, 9313=>847, 9314=>847,
+ 9315=>847, 9316=>847, 9317=>847, 9318=>847, 9319=>847, 9320=>847, 9321=>847, 9600=>769, 9601=>769, 9602=>769, 9603=>769, 9604=>769, 9605=>769, 9606=>769, 9607=>769, 9608=>769,
+ 9609=>769, 9610=>769, 9611=>769, 9612=>769, 9613=>769, 9614=>769, 9615=>769, 9616=>769, 9617=>769, 9618=>769, 9619=>769, 9620=>769, 9621=>769, 9622=>769, 9623=>769, 9624=>769,
+ 9625=>769, 9626=>769, 9627=>769, 9628=>769, 9629=>769, 9630=>769, 9631=>769, 9632=>945, 9633=>945, 9634=>945, 9635=>945, 9636=>945, 9637=>945, 9638=>945, 9639=>945, 9640=>945,
+ 9641=>945, 9642=>678, 9643=>678, 9644=>945, 9645=>945, 9646=>550, 9647=>550, 9648=>769, 9649=>769, 9650=>769, 9651=>769, 9652=>502, 9653=>502, 9654=>769, 9655=>769, 9656=>502,
+ 9657=>502, 9658=>769, 9659=>769, 9660=>769, 9661=>769, 9662=>502, 9663=>502, 9664=>769, 9665=>769, 9666=>502, 9667=>502, 9668=>769, 9669=>769, 9670=>769, 9671=>769, 9672=>769,
+ 9673=>873, 9674=>494, 9675=>873, 9676=>873, 9677=>873, 9678=>873, 9679=>873, 9680=>873, 9681=>873, 9682=>873, 9683=>873, 9684=>873, 9685=>873, 9686=>527, 9687=>527, 9688=>840,
+ 9689=>970, 9690=>970, 9691=>970, 9692=>387, 9693=>387, 9694=>387, 9695=>387, 9696=>769, 9697=>769, 9698=>769, 9699=>769, 9700=>769, 9701=>769, 9702=>639, 9703=>945, 9704=>945,
+ 9705=>945, 9706=>945, 9707=>945, 9708=>769, 9709=>769, 9710=>769, 9711=>1119, 9712=>945, 9713=>945, 9714=>945, 9715=>945, 9716=>873, 9717=>873, 9718=>873, 9719=>873, 9720=>769,
+ 9721=>769, 9722=>769, 9723=>830, 9724=>830, 9725=>732, 9726=>732, 9727=>769, 9728=>896, 9729=>1000, 9730=>896, 9731=>896, 9732=>896, 9733=>896, 9734=>896, 9735=>573, 9736=>896,
+ 9737=>896, 9738=>888, 9739=>888, 9740=>671, 9741=>1013, 9742=>1246, 9743=>1250, 9744=>896, 9745=>896, 9746=>896, 9747=>532, 9748=>896, 9749=>896, 9750=>896, 9751=>896, 9752=>896,
+ 9753=>896, 9754=>896, 9755=>896, 9756=>896, 9757=>609, 9758=>896, 9759=>609, 9760=>896, 9761=>896, 9762=>896, 9763=>896, 9764=>669, 9765=>746, 9766=>649, 9767=>784, 9768=>545,
+ 9769=>896, 9770=>896, 9771=>896, 9772=>710, 9773=>896, 9774=>896, 9775=>896, 9776=>896, 9777=>896, 9778=>896, 9779=>896, 9780=>896, 9781=>896, 9782=>896, 9783=>896, 9784=>896,
+ 9785=>896, 9786=>896, 9787=>896, 9788=>896, 9789=>896, 9790=>896, 9791=>614, 9792=>731, 9793=>731, 9794=>896, 9795=>896, 9796=>896, 9797=>896, 9798=>896, 9799=>896, 9800=>896,
+ 9801=>896, 9802=>896, 9803=>896, 9804=>896, 9805=>896, 9806=>896, 9807=>896, 9808=>896, 9809=>896, 9810=>896, 9811=>896, 9812=>896, 9813=>896, 9814=>896, 9815=>896, 9816=>896,
+ 9817=>896, 9818=>896, 9819=>896, 9820=>896, 9821=>896, 9822=>896, 9823=>896, 9824=>896, 9825=>896, 9826=>896, 9827=>896, 9828=>896, 9829=>896, 9830=>896, 9831=>896, 9832=>896,
+ 9833=>472, 9834=>638, 9835=>896, 9836=>896, 9837=>472, 9838=>357, 9839=>484, 9840=>748, 9841=>766, 9842=>896, 9843=>896, 9844=>896, 9845=>896, 9846=>896, 9847=>896, 9848=>896,
+ 9849=>896, 9850=>896, 9851=>896, 9852=>896, 9853=>896, 9854=>896, 9855=>896, 9856=>869, 9857=>869, 9858=>869, 9859=>869, 9860=>869, 9861=>869, 9862=>896, 9863=>896, 9864=>896,
+ 9865=>896, 9866=>896, 9867=>896, 9868=>896, 9869=>896, 9870=>896, 9871=>896, 9872=>896, 9873=>896, 9874=>896, 9875=>896, 9876=>896, 9877=>541, 9878=>896, 9879=>896, 9880=>896,
+ 9881=>896, 9882=>896, 9883=>896, 9884=>896, 9888=>896, 9889=>702, 9890=>1003, 9891=>1085, 9892=>1143, 9893=>901, 9894=>838, 9895=>838, 9896=>838, 9897=>838, 9898=>838, 9899=>838,
+ 9900=>838, 9901=>838, 9902=>838, 9903=>838, 9904=>844, 9905=>838, 9906=>731, 9985=>838, 9986=>838, 9987=>838, 9988=>838, 9990=>838, 9991=>838, 9992=>838, 9993=>838, 9996=>838,
+ 9997=>838, 9998=>838, 9999=>838, 10000=>838, 10001=>838, 10002=>838, 10003=>838, 10004=>838, 10005=>838, 10006=>838, 10007=>838, 10008=>838, 10009=>838, 10010=>838, 10011=>838, 10012=>838,
+ 10013=>838, 10014=>838, 10015=>838, 10016=>838, 10017=>838, 10018=>838, 10019=>838, 10020=>838, 10021=>838, 10022=>838, 10023=>838, 10025=>838, 10026=>838, 10027=>838, 10028=>838, 10029=>838,
+ 10030=>838, 10031=>838, 10032=>838, 10033=>838, 10034=>838, 10035=>838, 10036=>838, 10037=>838, 10038=>838, 10039=>838, 10040=>838, 10041=>838, 10042=>838, 10043=>838, 10044=>838, 10045=>838,
+ 10046=>838, 10047=>838, 10048=>838, 10049=>838, 10050=>838, 10051=>838, 10052=>838, 10053=>838, 10054=>838, 10055=>838, 10056=>838, 10057=>838, 10058=>838, 10059=>838, 10061=>896, 10063=>896,
+ 10064=>896, 10065=>896, 10066=>896, 10070=>896, 10072=>838, 10073=>838, 10074=>838, 10075=>322, 10076=>322, 10077=>538, 10078=>538, 10081=>838, 10082=>838, 10083=>838, 10084=>838, 10085=>838,
+ 10086=>838, 10087=>838, 10088=>838, 10089=>838, 10090=>838, 10091=>838, 10092=>838, 10093=>838, 10094=>838, 10095=>838, 10096=>838, 10097=>838, 10098=>838, 10099=>838, 10100=>838, 10101=>838,
+ 10102=>847, 10103=>847, 10104=>847, 10105=>847, 10106=>847, 10107=>847, 10108=>847, 10109=>847, 10110=>847, 10111=>847, 10112=>838, 10113=>838, 10114=>838, 10115=>838, 10116=>838, 10117=>838,
+ 10118=>838, 10119=>838, 10120=>838, 10121=>838, 10122=>838, 10123=>838, 10124=>838, 10125=>838, 10126=>838, 10127=>838, 10128=>838, 10129=>838, 10130=>838, 10131=>838, 10132=>838, 10136=>838,
+ 10137=>838, 10138=>838, 10139=>838, 10140=>838, 10141=>838, 10142=>838, 10143=>838, 10144=>838, 10145=>838, 10146=>838, 10147=>838, 10148=>838, 10149=>838, 10150=>838, 10151=>838, 10152=>838,
+ 10153=>838, 10154=>838, 10155=>838, 10156=>838, 10157=>838, 10158=>838, 10159=>838, 10161=>838, 10162=>838, 10163=>838, 10164=>838, 10165=>838, 10166=>838, 10167=>838, 10168=>838, 10169=>838,
+ 10170=>838, 10171=>838, 10172=>838, 10173=>838, 10174=>838, 10208=>494, 10214=>487, 10215=>487, 10216=>457, 10217=>457, 10218=>721, 10219=>721, 10224=>838, 10225=>838, 10226=>838, 10227=>838,
+ 10228=>1157, 10229=>1434, 10230=>1434, 10231=>1434, 10232=>1434, 10233=>1434, 10234=>1434, 10235=>1434, 10236=>1434, 10237=>1434, 10238=>1434, 10239=>1434, 10240=>781, 10241=>781, 10242=>781, 10243=>781,
+ 10244=>781, 10245=>781, 10246=>781, 10247=>781, 10248=>781, 10249=>781, 10250=>781, 10251=>781, 10252=>781, 10253=>781, 10254=>781, 10255=>781, 10256=>781, 10257=>781, 10258=>781, 10259=>781,
+ 10260=>781, 10261=>781, 10262=>781, 10263=>781, 10264=>781, 10265=>781, 10266=>781, 10267=>781, 10268=>781, 10269=>781, 10270=>781, 10271=>781, 10272=>781, 10273=>781, 10274=>781, 10275=>781,
+ 10276=>781, 10277=>781, 10278=>781, 10279=>781, 10280=>781, 10281=>781, 10282=>781, 10283=>781, 10284=>781, 10285=>781, 10286=>781, 10287=>781, 10288=>781, 10289=>781, 10290=>781, 10291=>781,
+ 10292=>781, 10293=>781, 10294=>781, 10295=>781, 10296=>781, 10297=>781, 10298=>781, 10299=>781, 10300=>781, 10301=>781, 10302=>781, 10303=>781, 10304=>781, 10305=>781, 10306=>781, 10307=>781,
+ 10308=>781, 10309=>781, 10310=>781, 10311=>781, 10312=>781, 10313=>781, 10314=>781, 10315=>781, 10316=>781, 10317=>781, 10318=>781, 10319=>781, 10320=>781, 10321=>781, 10322=>781, 10323=>781,
+ 10324=>781, 10325=>781, 10326=>781, 10327=>781, 10328=>781, 10329=>781, 10330=>781, 10331=>781, 10332=>781, 10333=>781, 10334=>781, 10335=>781, 10336=>781, 10337=>781, 10338=>781, 10339=>781,
+ 10340=>781, 10341=>781, 10342=>781, 10343=>781, 10344=>781, 10345=>781, 10346=>781, 10347=>781, 10348=>781, 10349=>781, 10350=>781, 10351=>781, 10352=>781, 10353=>781, 10354=>781, 10355=>781,
+ 10356=>781, 10357=>781, 10358=>781, 10359=>781, 10360=>781, 10361=>781, 10362=>781, 10363=>781, 10364=>781, 10365=>781, 10366=>781, 10367=>781, 10368=>781, 10369=>781, 10370=>781, 10371=>781,
+ 10372=>781, 10373=>781, 10374=>781, 10375=>781, 10376=>781, 10377=>781, 10378=>781, 10379=>781, 10380=>781, 10381=>781, 10382=>781, 10383=>781, 10384=>781, 10385=>781, 10386=>781, 10387=>781,
+ 10388=>781, 10389=>781, 10390=>781, 10391=>781, 10392=>781, 10393=>781, 10394=>781, 10395=>781, 10396=>781, 10397=>781, 10398=>781, 10399=>781, 10400=>781, 10401=>781, 10402=>781, 10403=>781,
+ 10404=>781, 10405=>781, 10406=>781, 10407=>781, 10408=>781, 10409=>781, 10410=>781, 10411=>781, 10412=>781, 10413=>781, 10414=>781, 10415=>781, 10416=>781, 10417=>781, 10418=>781, 10419=>781,
+ 10420=>781, 10421=>781, 10422=>781, 10423=>781, 10424=>781, 10425=>781, 10426=>781, 10427=>781, 10428=>781, 10429=>781, 10430=>781, 10431=>781, 10432=>781, 10433=>781, 10434=>781, 10435=>781,
+ 10436=>781, 10437=>781, 10438=>781, 10439=>781, 10440=>781, 10441=>781, 10442=>781, 10443=>781, 10444=>781, 10445=>781, 10446=>781, 10447=>781, 10448=>781, 10449=>781, 10450=>781, 10451=>781,
+ 10452=>781, 10453=>781, 10454=>781, 10455=>781, 10456=>781, 10457=>781, 10458=>781, 10459=>781, 10460=>781, 10461=>781, 10462=>781, 10463=>781, 10464=>781, 10465=>781, 10466=>781, 10467=>781,
+ 10468=>781, 10469=>781, 10470=>781, 10471=>781, 10472=>781, 10473=>781, 10474=>781, 10475=>781, 10476=>781, 10477=>781, 10478=>781, 10479=>781, 10480=>781, 10481=>781, 10482=>781, 10483=>781,
+ 10484=>781, 10485=>781, 10486=>781, 10487=>781, 10488=>781, 10489=>781, 10490=>781, 10491=>781, 10492=>781, 10493=>781, 10494=>781, 10495=>781, 10502=>838, 10503=>838, 10506=>838, 10507=>838,
+ 10560=>838, 10561=>838, 10627=>753, 10628=>753, 10702=>838, 10703=>1046, 10704=>1046, 10705=>1000, 10706=>1000, 10707=>1000, 10708=>1000, 10709=>1000, 10731=>494, 10746=>838, 10747=>838, 10752=>1000,
+ 10753=>1000, 10754=>1000, 10764=>1661, 10765=>563, 10766=>563, 10767=>563, 10768=>563, 10769=>563, 10770=>563, 10771=>563, 10772=>563, 10773=>563, 10774=>563, 10775=>563, 10776=>563, 10777=>563,
+ 10778=>563, 10779=>563, 10780=>563, 10799=>838, 10877=>838, 10878=>838, 10879=>838, 10880=>838, 10881=>838, 10882=>838, 10883=>838, 10884=>838, 10885=>838, 10886=>838, 10887=>838, 10888=>838,
+ 10889=>838, 10890=>838, 10891=>838, 10892=>838, 10893=>838, 10894=>838, 10895=>838, 10896=>838, 10897=>838, 10898=>838, 10899=>838, 10900=>838, 10901=>838, 10902=>838, 10903=>838, 10904=>838,
+ 10905=>838, 10906=>838, 10907=>838, 10908=>838, 10909=>838, 10910=>838, 10911=>838, 10912=>838, 10926=>838, 10927=>838, 10928=>838, 10929=>838, 10930=>838, 10931=>838, 10932=>838, 10933=>838,
+ 10934=>838, 10935=>838, 10936=>838, 10937=>838, 10938=>838, 11001=>838, 11002=>838, 11008=>838, 11009=>838, 11010=>838, 11011=>838, 11012=>838, 11013=>838, 11014=>838, 11015=>838, 11016=>838,
+ 11017=>838, 11018=>838, 11019=>838, 11020=>838, 11021=>838, 11022=>838, 11023=>838, 11024=>838, 11025=>838, 11026=>945, 11027=>945, 11028=>945, 11029=>945, 11030=>769, 11031=>769, 11032=>769,
+ 11033=>769, 11034=>945, 11040=>869, 11041=>873, 11042=>873, 11043=>873, 11360=>637, 11361=>360, 11362=>637, 11363=>733, 11364=>770, 11365=>675, 11366=>478, 11367=>956, 11368=>712, 11369=>775,
+ 11370=>665, 11371=>725, 11372=>582, 11373=>860, 11374=>995, 11375=>774, 11377=>778, 11378=>1221, 11379=>1056, 11380=>652, 11381=>698, 11382=>565, 11383=>782, 11385=>538, 11387=>559, 11388=>219,
+ 11389=>487, 11800=>586, 11822=>580, 19904=>896, 19905=>896, 19906=>896, 19907=>896, 19908=>896, 19909=>896, 19910=>896, 19911=>896, 19912=>896, 19913=>896, 19914=>896, 19915=>896, 19916=>896,
+ 19917=>896, 19918=>896, 19919=>896, 19920=>896, 19921=>896, 19922=>896, 19923=>896, 19924=>896, 19925=>896, 19926=>896, 19927=>896, 19928=>896, 19929=>896, 19930=>896, 19931=>896, 19932=>896,
+ 19933=>896, 19934=>896, 19935=>896, 19936=>896, 19937=>896, 19938=>896, 19939=>896, 19940=>896, 19941=>896, 19942=>896, 19943=>896, 19944=>896, 19945=>896, 19946=>896, 19947=>896, 19948=>896,
+ 19949=>896, 19950=>896, 19951=>896, 19952=>896, 19953=>896, 19954=>896, 19955=>896, 19956=>896, 19957=>896, 19958=>896, 19959=>896, 19960=>896, 19961=>896, 19962=>896, 19963=>896, 19964=>896,
+ 19965=>896, 19966=>896, 19967=>896, 42564=>720, 42565=>595, 42566=>436, 42567=>440, 42572=>1405, 42573=>1173, 42576=>1234, 42577=>1027, 42580=>1174, 42581=>972, 42770=>500, 42771=>500, 42772=>500,
+ 42773=>500, 42774=>500, 42790=>837, 42791=>712, 42792=>1031, 42793=>857, 42800=>559, 42801=>595, 42802=>1349, 42803=>1052, 42808=>1079, 42809=>922, 42810=>1079, 42811=>922, 42812=>1035, 42813=>922,
+ 42814=>698, 42815=>549, 42822=>850, 42823=>542, 42824=>683, 42825=>531, 42826=>918, 42827=>814, 42830=>1406, 42831=>1106, 42880=>637, 42881=>343, 43003=>683, 43004=>733, 43005=>995, 43006=>372,
+ 43007=>1325, 62917=>687, 64256=>833, 64257=>787, 64258=>787, 64259=>1138, 64260=>1139, 64261=>808, 64262=>1020, 64275=>1388, 64276=>1384, 64277=>1378, 64278=>1384, 64279=>1713, 64285=>372, 64286=>0,
+ 64287=>692, 64288=>720, 64289=>963, 64290=>890, 64291=>988, 64292=>963, 64293=>938, 64294=>988, 64295=>988, 64296=>976, 64297=>838, 64298=>975, 64299=>975, 64300=>975, 64301=>975, 64302=>751,
+ 64303=>751, 64304=>751, 64305=>673, 64306=>537, 64307=>654, 64308=>712, 64309=>343, 64310=>491, 64312=>724, 64313=>467, 64314=>649, 64315=>650, 64316=>679, 64318=>775, 64320=>497, 64321=>773,
+ 64323=>718, 64324=>687, 64326=>751, 64327=>729, 64328=>649, 64329=>949, 64330=>751, 64331=>343, 64332=>673, 64333=>650, 64334=>687, 64335=>751, 65024=>0, 65025=>0, 65026=>0, 65027=>0,
+ 65028=>0, 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65056=>0, 65057=>0, 65058=>0, 65059=>0,
+ 65529=>0, 65530=>0, 65531=>0, 65532=>0, 65533=>1113);
+$enc='';
+$diff='';
+$file='dejavusansbi.z';
+$ctg='dejavusansbi.ctg.z';
+$originalsize=508940;
+?>
diff --git a/lib/tcpdf/fonts/dejavusansbi.z b/lib/tcpdf/fonts/dejavusansbi.z
new file mode 100644
index 0000000000..56c3741399
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansbi.z differ
diff --git a/lib/tcpdf/fonts/dejavusanscondensed.ctg.z b/lib/tcpdf/fonts/dejavusanscondensed.ctg.z
new file mode 100644
index 0000000000..61fdec50d8
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusanscondensed.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusanscondensed.php b/lib/tcpdf/fonts/dejavusanscondensed.php
new file mode 100644
index 0000000000..7327f2023e
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusanscondensed.php
@@ -0,0 +1,322 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>96,'FontBBox'=>'[-918 -356 1513 1167]','ItalicAngle'=>-18.9,'StemV'=>70,'MissingWidth'=>540);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>540, 32=>286, 33=>360, 34=>414, 35=>754, 36=>572, 37=>855, 38=>702, 39=>247, 40=>351, 41=>351, 42=>450, 43=>754, 44=>286, 45=>325, 46=>286,
+ 47=>303, 48=>572, 49=>572, 50=>572, 51=>572, 52=>572, 53=>572, 54=>572, 55=>572, 56=>572, 57=>572, 58=>303, 59=>303, 60=>754, 61=>754, 62=>754,
+ 63=>478, 64=>900, 65=>615, 66=>617, 67=>628, 68=>693, 69=>568, 70=>518, 71=>697, 72=>677, 73=>265, 74=>265, 75=>590, 76=>501, 77=>776, 78=>673,
+ 79=>708, 80=>542, 81=>708, 82=>625, 83=>571, 84=>549, 85=>659, 86=>615, 87=>890, 88=>616, 89=>549, 90=>616, 91=>351, 92=>303, 93=>351, 94=>754,
+ 95=>450, 96=>450, 97=>551, 98=>571, 99=>495, 100=>571, 101=>554, 102=>316, 103=>571, 104=>570, 105=>250, 106=>250, 107=>521, 108=>250, 109=>876, 110=>570,
+ 111=>550, 112=>571, 113=>571, 114=>370, 115=>469, 116=>353, 117=>570, 118=>532, 119=>736, 120=>532, 121=>532, 122=>472, 123=>572, 124=>303, 125=>572, 126=>754,
+ 8364=>572, 1027=>610, 8218=>286, 402=>316, 8222=>466, 8230=>900, 8224=>450, 8225=>450, 710=>450, 8240=>1208, 352=>571, 8249=>360, 338=>962, 1036=>710, 381=>616, 1039=>677,
+ 8216=>286, 8217=>286, 8220=>466, 8221=>466, 8226=>531, 8211=>450, 8212=>900, 732=>450, 8482=>900, 353=>469, 8250=>360, 339=>920, 1116=>543, 382=>472, 376=>549, 160=>286,
+ 161=>360, 162=>572, 163=>572, 164=>572, 165=>572, 166=>303, 167=>450, 168=>450, 169=>900, 170=>424, 171=>550, 172=>754, 173=>325, 174=>900, 175=>450, 176=>450,
+ 177=>754, 178=>360, 179=>360, 180=>450, 181=>572, 182=>572, 183=>286, 184=>450, 185=>360, 186=>424, 187=>550, 188=>872, 189=>872, 190=>872, 191=>478, 192=>615,
+ 193=>615, 194=>615, 195=>615, 196=>615, 197=>615, 198=>876, 199=>628, 200=>568, 201=>568, 202=>568, 203=>568, 204=>265, 205=>265, 206=>265, 207=>265, 208=>697,
+ 209=>673, 210=>708, 211=>708, 212=>708, 213=>708, 214=>708, 215=>754, 216=>708, 217=>659, 218=>659, 219=>659, 220=>659, 221=>549, 222=>544, 223=>567, 224=>551,
+ 225=>551, 226=>551, 227=>551, 228=>551, 229=>551, 230=>883, 231=>495, 232=>554, 233=>554, 234=>554, 235=>554, 236=>278, 237=>278, 238=>278, 239=>278, 240=>550,
+ 241=>570, 242=>550, 243=>550, 244=>550, 245=>550, 246=>550, 247=>754, 248=>550, 249=>570, 250=>570, 251=>570, 252=>570, 253=>532, 254=>571, 255=>532, 256=>615,
+ 257=>551, 258=>615, 259=>551, 260=>615, 261=>551, 262=>628, 263=>495, 264=>628, 265=>495, 266=>628, 267=>495, 268=>628, 269=>495, 270=>693, 271=>571, 272=>697,
+ 273=>571, 274=>568, 275=>554, 276=>568, 277=>554, 278=>568, 279=>554, 280=>568, 281=>554, 282=>568, 283=>554, 284=>697, 285=>571, 286=>697, 287=>571, 288=>697,
+ 289=>571, 290=>697, 291=>571, 292=>677, 293=>570, 294=>824, 295=>625, 296=>265, 297=>278, 298=>265, 299=>278, 300=>265, 301=>278, 302=>265, 303=>250, 304=>265,
+ 305=>250, 306=>531, 307=>500, 308=>265, 309=>278, 310=>590, 311=>521, 312=>521, 313=>501, 314=>250, 315=>501, 316=>250, 317=>501, 318=>337, 319=>501, 320=>308,
+ 321=>505, 322=>255, 323=>673, 324=>570, 325=>673, 326=>570, 327=>673, 328=>570, 329=>732, 330=>673, 331=>570, 332=>708, 333=>550, 334=>708, 335=>550, 336=>708,
+ 337=>550, 340=>625, 341=>370, 342=>625, 343=>370, 344=>625, 345=>370, 346=>571, 347=>469, 348=>571, 349=>469, 350=>571, 351=>469, 354=>549, 355=>353, 356=>549,
+ 357=>353, 358=>549, 359=>353, 360=>659, 361=>570, 362=>659, 363=>570, 364=>659, 365=>570, 366=>659, 367=>570, 368=>659, 369=>570, 370=>659, 371=>570, 372=>890,
+ 373=>736, 374=>549, 375=>532, 377=>616, 378=>472, 379=>616, 380=>472, 383=>316, 384=>571, 385=>661, 386=>686, 387=>571, 388=>617, 389=>571, 390=>633, 391=>628,
+ 392=>495, 393=>697, 394=>737, 395=>617, 396=>571, 397=>550, 398=>568, 399=>708, 400=>553, 401=>518, 403=>697, 404=>618, 405=>885, 406=>318, 407=>265, 408=>671,
+ 409=>521, 410=>250, 411=>532, 412=>876, 413=>673, 414=>570, 415=>708, 416=>822, 417=>550, 418=>854, 419=>683, 420=>586, 421=>571, 422=>625, 423=>571, 424=>469,
+ 425=>568, 426=>302, 427=>353, 428=>549, 429=>353, 430=>549, 431=>772, 432=>570, 433=>688, 434=>648, 435=>669, 436=>657, 437=>616, 438=>472, 439=>599, 440=>599,
+ 441=>520, 442=>472, 443=>572, 444=>599, 445=>520, 446=>459, 447=>571, 448=>265, 449=>443, 450=>413, 451=>266, 452=>1279, 453=>1169, 454=>1039, 455=>751, 456=>708,
+ 457=>411, 458=>838, 459=>831, 460=>717, 461=>615, 462=>551, 463=>265, 464=>250, 465=>708, 466=>550, 467=>659, 468=>570, 469=>659, 470=>570, 471=>659, 472=>570,
+ 473=>659, 474=>570, 475=>659, 476=>570, 477=>615, 478=>615, 479=>551, 480=>615, 481=>551, 482=>876, 483=>883, 484=>697, 485=>571, 486=>697, 487=>571, 488=>590,
+ 489=>521, 490=>708, 491=>550, 492=>708, 493=>550, 494=>599, 495=>520, 496=>250, 497=>1279, 498=>1169, 499=>1039, 500=>697, 501=>571, 502=>1001, 503=>614, 504=>673,
+ 505=>570, 506=>615, 507=>551, 508=>876, 509=>883, 510=>708, 511=>550, 512=>615, 513=>551, 514=>615, 515=>551, 516=>568, 517=>554, 518=>568, 519=>554, 520=>265,
+ 521=>250, 522=>265, 523=>250, 524=>708, 525=>550, 526=>708, 527=>550, 528=>625, 529=>370, 530=>625, 531=>370, 532=>659, 533=>570, 534=>659, 535=>570, 536=>571,
+ 537=>469, 538=>549, 539=>353, 540=>564, 541=>469, 542=>677, 543=>570, 544=>662, 545=>754, 546=>628, 547=>549, 548=>616, 549=>472, 550=>615, 551=>551, 552=>568,
+ 553=>554, 554=>708, 555=>550, 556=>708, 557=>550, 558=>708, 559=>550, 560=>708, 561=>550, 562=>549, 563=>532, 564=>427, 565=>758, 566=>429, 567=>250, 568=>898,
+ 569=>898, 570=>615, 571=>628, 572=>495, 573=>501, 574=>549, 575=>469, 576=>472, 577=>542, 578=>431, 579=>617, 580=>659, 581=>615, 582=>568, 583=>554, 584=>265,
+ 585=>250, 586=>703, 587=>571, 588=>625, 589=>370, 590=>549, 591=>532, 592=>540, 593=>571, 594=>571, 595=>571, 596=>494, 597=>495, 598=>571, 599=>626, 600=>554,
+ 601=>554, 602=>737, 603=>541, 604=>532, 605=>698, 606=>598, 607=>250, 608=>626, 609=>571, 610=>566, 611=>536, 612=>536, 613=>570, 614=>570, 615=>570, 616=>250,
+ 617=>304, 618=>334, 619=>356, 620=>438, 621=>250, 622=>635, 623=>876, 624=>876, 625=>876, 626=>581, 627=>578, 628=>570, 629=>550, 630=>772, 631=>655, 632=>660,
+ 633=>373, 634=>373, 635=>372, 636=>370, 637=>369, 638=>477, 639=>477, 640=>543, 641=>543, 642=>469, 643=>302, 644=>302, 645=>415, 646=>302, 647=>353, 648=>353,
+ 649=>570, 650=>556, 651=>538, 652=>532, 653=>736, 654=>532, 655=>549, 656=>472, 657=>472, 658=>520, 659=>520, 660=>459, 661=>459, 662=>459, 663=>459, 664=>708,
+ 665=>521, 666=>598, 667=>637, 668=>588, 669=>263, 670=>600, 671=>456, 672=>654, 673=>459, 674=>459, 675=>913, 676=>952, 677=>911, 678=>742, 679=>549, 680=>700,
+ 681=>763, 682=>576, 683=>589, 684=>463, 685=>463, 686=>595, 687=>597, 688=>364, 689=>359, 690=>157, 691=>233, 692=>266, 693=>266, 694=>341, 695=>463, 696=>335,
+ 697=>250, 698=>414, 699=>286, 700=>286, 701=>286, 702=>276, 703=>276, 704=>333, 705=>333, 706=>450, 707=>450, 708=>450, 709=>450, 711=>450, 712=>247, 713=>450,
+ 714=>450, 715=>450, 716=>247, 717=>450, 718=>450, 719=>450, 720=>303, 721=>303, 722=>276, 723=>276, 724=>450, 725=>450, 726=>371, 727=>450, 728=>450, 729=>450,
+ 730=>450, 731=>450, 733=>450, 734=>284, 735=>450, 736=>383, 737=>149, 738=>335, 739=>399, 740=>333, 741=>444, 742=>444, 743=>444, 744=>444, 745=>444, 748=>450,
+ 749=>450, 750=>450, 755=>450, 759=>450, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0,
+ 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0,
+ 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0,
+ 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0,
+ 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 837=>0, 838=>0, 839=>0, 840=>0, 841=>0, 842=>0, 843=>0,
+ 844=>0, 845=>0, 846=>0, 847=>0, 849=>0, 850=>0, 851=>0, 855=>0, 856=>0, 860=>0, 861=>0, 862=>0, 863=>0, 864=>0, 865=>0, 866=>0,
+ 884=>250, 885=>250, 890=>450, 891=>494, 892=>495, 893=>494, 894=>303, 900=>450, 901=>450, 902=>623, 903=>286, 904=>671, 905=>784, 906=>367, 908=>731, 910=>742,
+ 911=>743, 912=>338, 913=>615, 914=>617, 915=>501, 916=>615, 917=>568, 918=>616, 919=>677, 920=>708, 921=>265, 922=>590, 923=>615, 924=>776, 925=>673, 926=>568,
+ 927=>708, 928=>752, 929=>542, 931=>568, 932=>549, 933=>549, 934=>708, 935=>616, 936=>708, 937=>688, 938=>265, 939=>549, 940=>659, 941=>541, 942=>634, 943=>338,
+ 944=>579, 945=>593, 946=>574, 947=>532, 948=>550, 949=>486, 950=>489, 951=>570, 952=>550, 953=>304, 954=>530, 955=>532, 956=>572, 957=>502, 958=>501, 959=>550,
+ 960=>542, 961=>571, 962=>528, 963=>570, 964=>542, 965=>521, 966=>593, 967=>520, 968=>593, 969=>753, 970=>304, 971=>521, 972=>550, 973=>521, 974=>753, 976=>553,
+ 977=>557, 978=>628, 979=>758, 980=>628, 981=>593, 982=>753, 983=>597, 984=>708, 985=>550, 986=>583, 987=>528, 988=>518, 989=>413, 990=>593, 991=>593, 992=>778,
+ 993=>564, 994=>840, 995=>753, 996=>682, 997=>593, 998=>712, 999=>553, 1000=>618, 1001=>546, 1002=>690, 1003=>563, 1004=>629, 1005=>550, 1006=>549, 1007=>482, 1008=>597,
+ 1009=>571, 1010=>495, 1011=>250, 1012=>708, 1013=>554, 1014=>554, 1015=>544, 1016=>571, 1017=>628, 1018=>776, 1019=>585, 1020=>571, 1021=>633, 1022=>628, 1023=>633, 1024=>632,
+ 1025=>632, 1026=>708, 1028=>628, 1029=>571, 1030=>265, 1031=>265, 1032=>265, 1033=>984, 1034=>940, 1035=>708, 1037=>748, 1038=>609, 1040=>615, 1041=>617, 1042=>617, 1043=>549,
+ 1044=>703, 1045=>568, 1046=>969, 1047=>577, 1048=>673, 1049=>673, 1050=>639, 1051=>677, 1052=>776, 1053=>677, 1054=>708, 1055=>677, 1056=>542, 1057=>628, 1058=>549, 1059=>548,
+ 1060=>774, 1061=>616, 1062=>699, 1063=>617, 1064=>962, 1065=>984, 1066=>749, 1067=>794, 1068=>617, 1069=>628, 1070=>971, 1071=>625, 1072=>551, 1073=>555, 1074=>530, 1075=>473,
+ 1076=>622, 1077=>554, 1078=>811, 1079=>479, 1080=>584, 1081=>584, 1082=>543, 1083=>575, 1084=>679, 1085=>588, 1086=>550, 1087=>588, 1088=>571, 1089=>495, 1090=>524, 1091=>532,
+ 1092=>769, 1093=>532, 1094=>612, 1095=>532, 1096=>823, 1097=>848, 1098=>636, 1099=>710, 1100=>530, 1101=>494, 1102=>757, 1103=>541, 1104=>554, 1105=>554, 1106=>563, 1107=>473,
+ 1108=>494, 1109=>469, 1110=>250, 1111=>250, 1112=>250, 1113=>812, 1114=>809, 1115=>586, 1117=>584, 1118=>532, 1119=>588, 1120=>840, 1121=>753, 1122=>693, 1123=>604, 1124=>848,
+ 1125=>674, 1126=>791, 1127=>705, 1128=>1043, 1129=>901, 1130=>708, 1131=>550, 1132=>924, 1133=>742, 1134=>572, 1135=>486, 1136=>771, 1137=>789, 1138=>708, 1139=>550, 1140=>703,
+ 1141=>598, 1142=>703, 1143=>598, 1144=>893, 1145=>813, 1146=>857, 1147=>682, 1148=>1062, 1149=>925, 1150=>840, 1151=>753, 1152=>628, 1153=>495, 1154=>452, 1155=>0, 1156=>0,
+ 1157=>0, 1158=>0, 1160=>376, 1161=>376, 1162=>695, 1163=>609, 1164=>617, 1165=>530, 1166=>542, 1167=>571, 1168=>549, 1169=>473, 1170=>607, 1171=>531, 1172=>562, 1173=>477,
+ 1174=>969, 1175=>811, 1176=>577, 1177=>479, 1178=>639, 1179=>543, 1180=>639, 1181=>543, 1182=>639, 1183=>543, 1184=>771, 1185=>748, 1186=>677, 1187=>594, 1188=>913, 1189=>789,
+ 1190=>973, 1191=>824, 1192=>716, 1193=>586, 1194=>628, 1195=>495, 1196=>549, 1197=>524, 1198=>549, 1199=>532, 1200=>549, 1201=>532, 1202=>616, 1203=>532, 1204=>840, 1205=>726,
+ 1206=>617, 1207=>532, 1208=>617, 1209=>532, 1210=>617, 1211=>570, 1212=>847, 1213=>655, 1214=>847, 1215=>655, 1216=>265, 1217=>969, 1218=>811, 1219=>590, 1220=>543, 1221=>698,
+ 1222=>603, 1223=>677, 1224=>594, 1225=>699, 1226=>612, 1227=>617, 1228=>532, 1229=>799, 1230=>697, 1231=>250, 1232=>615, 1233=>551, 1234=>615, 1235=>551, 1236=>876, 1237=>883,
+ 1238=>568, 1239=>554, 1240=>708, 1241=>554, 1242=>708, 1243=>554, 1244=>969, 1245=>811, 1246=>577, 1247=>479, 1248=>599, 1249=>520, 1250=>673, 1251=>584, 1252=>673, 1253=>584,
+ 1254=>708, 1255=>550, 1256=>708, 1257=>550, 1258=>708, 1259=>550, 1260=>628, 1261=>494, 1262=>548, 1263=>532, 1264=>548, 1265=>532, 1266=>548, 1267=>532, 1268=>617, 1269=>532,
+ 1270=>549, 1271=>473, 1272=>794, 1273=>710, 1274=>607, 1275=>531, 1276=>616, 1277=>532, 1278=>616, 1279=>532, 1280=>617, 1281=>530, 1282=>905, 1283=>807, 1284=>877, 1285=>782,
+ 1286=>611, 1287=>529, 1288=>964, 1289=>861, 1290=>1001, 1291=>870, 1292=>697, 1293=>593, 1294=>695, 1295=>640, 1296=>553, 1297=>486, 1298=>677, 1299=>575, 1306=>708, 1307=>571,
+ 1308=>890, 1309=>736, 1312=>972, 1313=>814, 1314=>973, 1315=>821, 1329=>780, 1330=>659, 1331=>794, 1332=>794, 1333=>659, 1334=>579, 1335=>613, 1336=>659, 1337=>765, 1338=>794,
+ 1339=>659, 1340=>501, 1341=>741, 1342=>888, 1343=>659, 1344=>636, 1345=>579, 1346=>794, 1347=>699, 1348=>794, 1349=>659, 1350=>756, 1351=>659, 1352=>659, 1353=>659, 1354=>711,
+ 1355=>579, 1356=>794, 1357=>659, 1358=>794, 1359=>571, 1360=>659, 1361=>659, 1362=>719, 1363=>708, 1364=>711, 1365=>708, 1366=>571, 1369=>276, 1370=>286, 1371=>450, 1372=>450,
+ 1373=>352, 1374=>474, 1375=>450, 1377=>876, 1378=>570, 1379=>686, 1380=>690, 1381=>570, 1382=>627, 1383=>479, 1384=>570, 1385=>630, 1386=>627, 1387=>570, 1388=>363, 1389=>804,
+ 1390=>576, 1391=>570, 1392=>570, 1393=>571, 1394=>631, 1395=>570, 1396=>593, 1397=>250, 1398=>684, 1399=>464, 1400=>570, 1401=>407, 1402=>876, 1403=>464, 1404=>691, 1405=>570,
+ 1406=>626, 1407=>876, 1408=>570, 1409=>571, 1410=>451, 1411=>876, 1412=>583, 1413=>550, 1414=>566, 1415=>686, 1417=>303, 1418=>390, 1456=>0, 1457=>0, 1458=>0, 1459=>0,
+ 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1466=>0, 1467=>0, 1468=>0, 1469=>0, 1470=>325, 1471=>0, 1472=>265, 1473=>0, 1474=>0, 1475=>265,
+ 1478=>397, 1479=>0, 1488=>566, 1489=>547, 1490=>403, 1491=>534, 1492=>576, 1493=>245, 1494=>336, 1495=>576, 1496=>583, 1497=>245, 1498=>532, 1499=>500, 1500=>539, 1501=>576,
+ 1502=>593, 1503=>245, 1504=>397, 1505=>629, 1506=>506, 1507=>576, 1508=>543, 1509=>468, 1510=>523, 1511=>596, 1512=>532, 1513=>727, 1514=>591, 1520=>423, 1521=>409, 1522=>423,
+ 1523=>374, 1524=>580, 1548=>290, 1557=>0, 1563=>286, 1567=>478, 1569=>423, 1570=>250, 1571=>250, 1572=>435, 1573=>250, 1574=>704, 1575=>250, 1576=>847, 1577=>471, 1578=>847,
+ 1579=>847, 1580=>581, 1581=>581, 1582=>581, 1583=>400, 1584=>400, 1585=>435, 1586=>435, 1587=>1099, 1588=>1099, 1589=>1088, 1590=>1088, 1591=>832, 1592=>832, 1593=>537, 1594=>537,
+ 1600=>264, 1601=>933, 1602=>698, 1603=>742, 1604=>654, 1605=>557, 1606=>661, 1607=>471, 1608=>435, 1609=>704, 1610=>704, 1611=>0, 1612=>0, 1613=>0, 1614=>0, 1615=>0,
+ 1616=>0, 1617=>0, 1618=>0, 1619=>0, 1620=>0, 1621=>0, 1626=>450, 1632=>483, 1633=>483, 1634=>483, 1635=>483, 1636=>483, 1637=>483, 1638=>483, 1639=>483, 1640=>483,
+ 1641=>483, 1642=>483, 1643=>292, 1644=>286, 1645=>490, 1646=>847, 1647=>698, 1652=>263, 1657=>847, 1658=>847, 1659=>847, 1660=>847, 1661=>847, 1662=>847, 1663=>847, 1664=>847,
+ 1665=>581, 1666=>581, 1667=>581, 1668=>581, 1669=>581, 1670=>581, 1671=>581, 1681=>435, 1682=>435, 1685=>549, 1688=>435, 1697=>933, 1700=>933, 1702=>933, 1705=>805, 1711=>805,
+ 1717=>654, 1722=>661, 1727=>581, 1734=>435, 1740=>704, 1742=>704, 1749=>471, 1776=>483, 1777=>483, 1778=>483, 1779=>483, 1780=>483, 1781=>483, 1782=>483, 1783=>483, 1784=>483,
+ 1785=>483, 1984=>572, 1985=>572, 1986=>572, 1987=>572, 1988=>572, 1989=>572, 1990=>572, 1991=>572, 1992=>572, 1993=>572, 1994=>250, 1995=>514, 1996=>381, 1997=>532, 1998=>588,
+ 1999=>588, 2000=>534, 2001=>588, 2002=>746, 2003=>394, 2004=>394, 2005=>502, 2006=>550, 2007=>315, 2008=>863, 2009=>425, 2010=>705, 2011=>588, 2012=>563, 2013=>660, 2014=>477,
+ 2015=>651, 2016=>425, 2017=>563, 2018=>534, 2019=>477, 2020=>477, 2021=>470, 2022=>534, 2023=>534, 2027=>0, 2028=>0, 2029=>0, 2030=>0, 2031=>0, 2032=>0, 2033=>0,
+ 2034=>0, 2035=>0, 2036=>282, 2037=>282, 2040=>504, 2041=>504, 2042=>325, 3647=>586, 3713=>603, 3714=>615, 3716=>619, 3719=>434, 3720=>565, 3722=>615, 3725=>619, 3732=>602,
+ 3733=>577, 3734=>580, 3735=>589, 3737=>593, 3738=>563, 3739=>563, 3740=>670, 3741=>690, 3742=>618, 3743=>618, 3745=>631, 3746=>619, 3747=>615, 3749=>584, 3751=>569, 3754=>633,
+ 3755=>737, 3757=>569, 3758=>615, 3759=>708, 3760=>569, 3761=>0, 3762=>485, 3763=>485, 3764=>0, 3765=>0, 3766=>0, 3767=>0, 3768=>0, 3769=>0, 3771=>0, 3772=>0,
+ 3773=>597, 3776=>337, 3777=>591, 3778=>414, 3779=>492, 3780=>442, 3782=>606, 3784=>0, 3785=>0, 3786=>0, 3787=>0, 3788=>0, 3789=>0, 3792=>572, 3793=>576, 3794=>576,
+ 3795=>603, 3796=>563, 3797=>563, 3798=>633, 3799=>603, 3800=>606, 3801=>609, 3804=>925, 3805=>925, 4256=>756, 4257=>621, 4258=>577, 4259=>683, 4260=>532, 4261=>617, 4262=>710,
+ 4263=>729, 4264=>420, 4265=>508, 4266=>710, 4267=>713, 4268=>526, 4269=>753, 4270=>675, 4271=>620, 4272=>729, 4273=>526, 4274=>526, 4275=>753, 4276=>753, 4277=>581, 4278=>543,
+ 4279=>526, 4280=>536, 4281=>526, 4282=>649, 4283=>715, 4284=>526, 4285=>510, 4286=>526, 4287=>602, 4288=>719, 4289=>488, 4290=>598, 4291=>488, 4292=>508, 4293=>606, 4304=>457,
+ 4305=>457, 4306=>479, 4307=>706, 4308=>470, 4309=>465, 4310=>457, 4311=>717, 4312=>457, 4313=>466, 4314=>952, 4315=>470, 4316=>470, 4317=>704, 4318=>466, 4319=>470, 4320=>713,
+ 4321=>470, 4322=>590, 4323=>471, 4324=>709, 4325=>470, 4326=>704, 4327=>470, 4328=>470, 4329=>470, 4330=>510, 4331=>470, 4332=>470, 4333=>439, 4334=>470, 4335=>448, 4336=>465,
+ 4337=>504, 4338=>457, 4339=>457, 4340=>457, 4341=>507, 4342=>741, 4343=>536, 4344=>470, 4345=>498, 4346=>498, 4347=>365, 4348=>273, 5121=>615, 5122=>684, 5123=>615, 5124=>615,
+ 5125=>692, 5126=>692, 5127=>692, 5129=>692, 5130=>692, 5131=>692, 5132=>751, 5133=>751, 5134=>751, 5135=>751, 5136=>751, 5137=>751, 5138=>870, 5139=>906, 5140=>870, 5141=>906,
+ 5142=>692, 5143=>870, 5144=>906, 5145=>870, 5146=>906, 5147=>692, 5149=>230, 5150=>488, 5151=>381, 5152=>381, 5153=>350, 5154=>350, 5155=>354, 5156=>350, 5157=>419, 5158=>347,
+ 5159=>230, 5160=>350, 5161=>350, 5162=>350, 5163=>980, 5164=>817, 5165=>857, 5166=>1005, 5167=>615, 5168=>684, 5169=>615, 5170=>615, 5171=>656, 5172=>656, 5173=>656, 5175=>656,
+ 5176=>656, 5177=>656, 5178=>751, 5179=>615, 5180=>751, 5181=>751, 5182=>751, 5183=>751, 5184=>870, 5185=>906, 5186=>870, 5187=>906, 5188=>870, 5189=>906, 5190=>870, 5191=>906,
+ 5192=>656, 5193=>457, 5194=>172, 5196=>659, 5197=>732, 5198=>659, 5199=>659, 5200=>657, 5201=>657, 5202=>657, 5204=>657, 5205=>657, 5206=>657, 5207=>829, 5208=>800, 5209=>829,
+ 5210=>800, 5211=>829, 5212=>800, 5213=>835, 5214=>810, 5215=>835, 5216=>810, 5217=>853, 5218=>810, 5219=>853, 5220=>810, 5221=>853, 5222=>391, 5223=>790, 5224=>790, 5225=>779,
+ 5226=>801, 5227=>565, 5228=>628, 5229=>565, 5230=>565, 5231=>565, 5232=>565, 5233=>565, 5234=>565, 5235=>565, 5236=>773, 5237=>693, 5238=>733, 5239=>734, 5240=>733, 5241=>734,
+ 5242=>773, 5243=>693, 5244=>773, 5245=>693, 5246=>733, 5247=>734, 5248=>733, 5249=>734, 5250=>733, 5251=>366, 5252=>366, 5253=>675, 5254=>697, 5255=>675, 5256=>697, 5257=>565,
+ 5258=>628, 5259=>565, 5260=>565, 5261=>565, 5262=>565, 5263=>565, 5264=>565, 5265=>565, 5266=>773, 5267=>693, 5268=>733, 5269=>734, 5270=>733, 5271=>734, 5272=>773, 5273=>693,
+ 5274=>773, 5275=>693, 5276=>733, 5277=>734, 5278=>733, 5279=>734, 5280=>733, 5281=>391, 5282=>391, 5283=>549, 5284=>557, 5285=>501, 5286=>501, 5287=>549, 5288=>549, 5289=>549,
+ 5290=>501, 5291=>501, 5292=>674, 5293=>691, 5294=>671, 5295=>687, 5296=>671, 5297=>687, 5298=>674, 5299=>691, 5300=>674, 5301=>691, 5302=>671, 5303=>687, 5304=>671, 5305=>687,
+ 5306=>671, 5307=>347, 5308=>457, 5309=>347, 5312=>766, 5313=>852, 5314=>766, 5315=>766, 5316=>766, 5317=>766, 5318=>766, 5319=>766, 5320=>766, 5321=>962, 5322=>931, 5323=>953,
+ 5324=>766, 5325=>953, 5326=>766, 5327=>766, 5328=>540, 5329=>407, 5330=>540, 5331=>766, 5332=>852, 5333=>766, 5334=>766, 5335=>766, 5336=>766, 5337=>766, 5338=>766, 5339=>766,
+ 5340=>962, 5341=>931, 5342=>953, 5343=>927, 5344=>953, 5345=>927, 5346=>962, 5347=>931, 5348=>962, 5349=>931, 5350=>975, 5351=>927, 5352=>975, 5353=>927, 5354=>540, 5356=>656,
+ 5357=>542, 5358=>603, 5359=>542, 5360=>542, 5361=>542, 5362=>542, 5363=>542, 5364=>542, 5365=>542, 5366=>751, 5367=>678, 5368=>712, 5369=>694, 5370=>712, 5371=>694, 5372=>751,
+ 5373=>678, 5374=>751, 5375=>678, 5376=>712, 5377=>694, 5378=>712, 5379=>694, 5380=>712, 5381=>376, 5382=>378, 5383=>376, 5392=>641, 5393=>641, 5394=>641, 5395=>802, 5396=>802,
+ 5397=>802, 5398=>802, 5399=>818, 5400=>785, 5401=>818, 5402=>785, 5403=>818, 5404=>785, 5405=>1026, 5406=>989, 5407=>1026, 5408=>989, 5409=>1026, 5410=>989, 5411=>1026, 5412=>989,
+ 5413=>576, 5414=>564, 5415=>627, 5416=>564, 5417=>564, 5418=>564, 5419=>564, 5420=>564, 5421=>564, 5422=>564, 5423=>760, 5424=>703, 5425=>734, 5426=>736, 5427=>734, 5428=>736,
+ 5429=>760, 5430=>703, 5431=>760, 5432=>703, 5433=>734, 5434=>736, 5435=>734, 5436=>736, 5437=>734, 5438=>376, 5440=>350, 5441=>436, 5442=>824, 5443=>824, 5444=>824, 5445=>824,
+ 5446=>824, 5447=>824, 5448=>542, 5449=>542, 5450=>542, 5451=>542, 5452=>542, 5453=>542, 5454=>751, 5455=>678, 5456=>376, 5458=>656, 5459=>615, 5460=>684, 5461=>615, 5462=>615,
+ 5463=>653, 5464=>653, 5465=>653, 5466=>653, 5467=>831, 5468=>906, 5469=>457, 5470=>659, 5471=>659, 5472=>659, 5473=>659, 5474=>659, 5475=>659, 5476=>657, 5477=>657, 5478=>657,
+ 5479=>657, 5480=>853, 5481=>810, 5482=>457, 5492=>747, 5493=>747, 5494=>747, 5495=>747, 5496=>747, 5497=>747, 5498=>747, 5499=>507, 5500=>677, 5501=>436, 5502=>942, 5503=>942,
+ 5504=>942, 5505=>942, 5506=>942, 5507=>942, 5508=>942, 5509=>743, 5514=>747, 5515=>747, 5516=>747, 5517=>747, 5518=>1133, 5519=>1133, 5520=>1133, 5521=>901, 5522=>901, 5523=>1133,
+ 5524=>1133, 5525=>629, 5526=>965, 5536=>766, 5537=>766, 5538=>766, 5539=>766, 5540=>766, 5541=>766, 5542=>540, 5543=>579, 5544=>579, 5545=>579, 5546=>579, 5547=>579, 5548=>579,
+ 5549=>579, 5550=>376, 5551=>565, 5598=>693, 5601=>690, 5702=>421, 5703=>421, 5742=>399, 5743=>942, 5744=>1178, 5745=>1469, 5746=>1469, 5747=>1237, 5748=>1237, 5749=>1469, 5750=>1469,
+ 5760=>429, 5761=>443, 5762=>641, 5763=>838, 5764=>1035, 5765=>1232, 5766=>443, 5767=>641, 5768=>838, 5769=>1035, 5770=>1232, 5771=>448, 5772=>646, 5773=>844, 5774=>1042, 5775=>1241,
+ 5776=>443, 5777=>641, 5778=>836, 5779=>1034, 5780=>1232, 5781=>448, 5782=>677, 5783=>709, 5784=>1084, 5785=>1035, 5786=>615, 5787=>457, 5788=>456, 7424=>532, 7425=>646, 7426=>883,
+ 7427=>527, 7428=>495, 7429=>544, 7430=>544, 7431=>441, 7432=>486, 7433=>250, 7434=>355, 7435=>521, 7436=>524, 7437=>679, 7438=>584, 7439=>550, 7440=>495, 7441=>615, 7442=>615,
+ 7443=>615, 7444=>920, 7446=>550, 7447=>550, 7448=>472, 7449=>541, 7450=>541, 7451=>524, 7452=>517, 7453=>663, 7454=>853, 7455=>574, 7456=>532, 7457=>736, 7458=>472, 7459=>473,
+ 7462=>524, 7463=>532, 7464=>507, 7465=>472, 7466=>531, 7467=>575, 7468=>387, 7469=>552, 7470=>389, 7472=>436, 7473=>358, 7474=>358, 7475=>439, 7476=>426, 7477=>167, 7478=>167,
+ 7479=>372, 7480=>315, 7481=>489, 7482=>424, 7483=>424, 7484=>446, 7485=>396, 7486=>342, 7487=>394, 7488=>346, 7489=>415, 7490=>560, 7491=>352, 7492=>352, 7493=>365, 7494=>583,
+ 7495=>385, 7496=>365, 7497=>375, 7498=>375, 7499=>324, 7500=>323, 7501=>365, 7502=>161, 7503=>383, 7504=>561, 7505=>368, 7506=>372, 7507=>333, 7508=>372, 7509=>372, 7510=>385,
+ 7511=>265, 7512=>364, 7513=>422, 7514=>561, 7515=>375, 7517=>361, 7518=>335, 7519=>347, 7520=>374, 7521=>327, 7522=>161, 7523=>233, 7524=>364, 7525=>375, 7526=>361, 7527=>335,
+ 7528=>370, 7529=>374, 7530=>327, 7543=>571, 7544=>426, 7547=>334, 7557=>250, 7579=>365, 7580=>333, 7581=>333, 7582=>372, 7583=>324, 7584=>267, 7585=>209, 7586=>365, 7587=>364,
+ 7588=>235, 7589=>224, 7590=>234, 7591=>235, 7592=>211, 7593=>224, 7594=>211, 7595=>338, 7596=>561, 7597=>561, 7598=>369, 7599=>431, 7600=>368, 7601=>372, 7602=>372, 7603=>324,
+ 7604=>258, 7605=>265, 7606=>457, 7607=>376, 7608=>325, 7609=>365, 7610=>375, 7611=>330, 7612=>393, 7613=>330, 7614=>353, 7615=>372, 7620=>0, 7621=>0, 7622=>0, 7623=>0,
+ 7624=>0, 7625=>0, 7680=>615, 7681=>551, 7682=>617, 7683=>571, 7684=>617, 7685=>571, 7686=>617, 7687=>571, 7688=>628, 7689=>495, 7690=>693, 7691=>571, 7692=>693, 7693=>571,
+ 7694=>693, 7695=>571, 7696=>693, 7697=>571, 7698=>693, 7699=>571, 7700=>568, 7701=>554, 7702=>568, 7703=>554, 7704=>568, 7705=>554, 7706=>568, 7707=>554, 7708=>568, 7709=>554,
+ 7710=>518, 7711=>316, 7712=>697, 7713=>571, 7714=>677, 7715=>570, 7716=>677, 7717=>570, 7718=>677, 7719=>570, 7720=>677, 7721=>570, 7722=>677, 7723=>570, 7724=>265, 7725=>250,
+ 7726=>265, 7727=>250, 7728=>590, 7729=>521, 7730=>590, 7731=>521, 7732=>590, 7733=>521, 7734=>501, 7735=>259, 7736=>501, 7737=>259, 7738=>501, 7739=>250, 7740=>501, 7741=>250,
+ 7742=>776, 7743=>876, 7744=>776, 7745=>876, 7746=>776, 7747=>876, 7748=>673, 7749=>570, 7750=>673, 7751=>570, 7752=>673, 7753=>570, 7754=>673, 7755=>570, 7756=>708, 7757=>550,
+ 7758=>708, 7759=>550, 7760=>708, 7761=>550, 7762=>708, 7763=>550, 7764=>542, 7765=>571, 7766=>542, 7767=>571, 7768=>625, 7769=>370, 7770=>625, 7771=>370, 7772=>625, 7773=>370,
+ 7774=>625, 7775=>370, 7776=>571, 7777=>469, 7778=>571, 7779=>469, 7780=>571, 7781=>469, 7782=>571, 7783=>469, 7784=>571, 7785=>469, 7786=>549, 7787=>353, 7788=>549, 7789=>353,
+ 7790=>549, 7791=>353, 7792=>549, 7793=>353, 7794=>659, 7795=>570, 7796=>659, 7797=>570, 7798=>659, 7799=>570, 7800=>659, 7801=>570, 7802=>659, 7803=>570, 7804=>615, 7805=>532,
+ 7806=>615, 7807=>532, 7808=>890, 7809=>736, 7810=>890, 7811=>736, 7812=>890, 7813=>736, 7814=>890, 7815=>736, 7816=>890, 7817=>736, 7818=>616, 7819=>532, 7820=>616, 7821=>532,
+ 7822=>549, 7823=>532, 7824=>616, 7825=>472, 7826=>616, 7827=>472, 7828=>616, 7829=>472, 7830=>570, 7831=>353, 7832=>736, 7833=>532, 7834=>551, 7835=>316, 7839=>550, 7840=>615,
+ 7841=>551, 7842=>615, 7843=>551, 7844=>615, 7845=>551, 7846=>615, 7847=>551, 7848=>615, 7849=>551, 7850=>615, 7851=>551, 7852=>615, 7853=>551, 7854=>615, 7855=>551, 7856=>615,
+ 7857=>551, 7858=>615, 7859=>551, 7860=>615, 7861=>551, 7862=>615, 7863=>551, 7864=>568, 7865=>554, 7866=>568, 7867=>554, 7868=>568, 7869=>554, 7870=>568, 7871=>554, 7872=>568,
+ 7873=>554, 7874=>568, 7875=>554, 7876=>568, 7877=>554, 7878=>568, 7879=>554, 7880=>265, 7881=>250, 7882=>265, 7883=>250, 7884=>708, 7885=>550, 7886=>708, 7887=>550, 7888=>708,
+ 7889=>550, 7890=>708, 7891=>550, 7892=>708, 7893=>550, 7894=>708, 7895=>550, 7896=>708, 7897=>550, 7898=>822, 7899=>550, 7900=>822, 7901=>550, 7902=>822, 7903=>550, 7904=>822,
+ 7905=>550, 7906=>822, 7907=>550, 7908=>659, 7909=>570, 7910=>659, 7911=>570, 7912=>772, 7913=>570, 7914=>772, 7915=>570, 7916=>772, 7917=>570, 7918=>772, 7919=>570, 7920=>772,
+ 7921=>570, 7922=>549, 7923=>532, 7924=>549, 7925=>532, 7926=>549, 7927=>532, 7928=>549, 7929=>532, 7936=>593, 7937=>593, 7938=>593, 7939=>593, 7940=>593, 7941=>593, 7942=>593,
+ 7943=>593, 7944=>615, 7945=>615, 7946=>790, 7947=>790, 7948=>692, 7949=>721, 7950=>637, 7951=>668, 7952=>486, 7953=>486, 7954=>486, 7955=>486, 7956=>486, 7957=>486, 7960=>640,
+ 7961=>640, 7962=>869, 7963=>877, 7964=>809, 7965=>835, 7968=>570, 7969=>570, 7970=>570, 7971=>570, 7972=>570, 7973=>570, 7974=>570, 7975=>570, 7976=>753, 7977=>751, 7978=>977,
+ 7979=>980, 7980=>924, 7981=>945, 7982=>840, 7983=>852, 7984=>304, 7985=>304, 7986=>304, 7987=>304, 7988=>304, 7989=>304, 7990=>304, 7991=>304, 7992=>342, 7993=>336, 7994=>571,
+ 7995=>571, 7996=>513, 7997=>540, 7998=>440, 7999=>443, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>724, 8009=>763, 8010=>985, 8011=>989, 8012=>844,
+ 8013=>873, 8016=>521, 8017=>521, 8018=>521, 8019=>521, 8020=>521, 8021=>521, 8022=>521, 8023=>521, 8025=>705, 8027=>897, 8029=>911, 8031=>808, 8032=>753, 8033=>753, 8034=>753,
+ 8035=>753, 8036=>753, 8037=>753, 8038=>753, 8039=>753, 8040=>722, 8041=>759, 8042=>980, 8043=>985, 8044=>851, 8045=>875, 8046=>829, 8047=>857, 8048=>593, 8049=>593, 8050=>486,
+ 8051=>493, 8052=>570, 8053=>589, 8054=>304, 8055=>304, 8056=>550, 8057=>550, 8058=>521, 8059=>521, 8060=>753, 8061=>753, 8064=>593, 8065=>593, 8066=>593, 8067=>593, 8068=>593,
+ 8069=>593, 8070=>593, 8071=>593, 8072=>615, 8073=>615, 8074=>790, 8075=>790, 8076=>692, 8077=>721, 8078=>637, 8079=>668, 8080=>570, 8081=>570, 8082=>570, 8083=>570, 8084=>570,
+ 8085=>570, 8086=>570, 8087=>570, 8088=>753, 8089=>751, 8090=>977, 8091=>980, 8092=>924, 8093=>945, 8094=>840, 8095=>852, 8096=>753, 8097=>753, 8098=>753, 8099=>753, 8100=>753,
+ 8101=>753, 8102=>753, 8103=>753, 8104=>722, 8105=>759, 8106=>980, 8107=>985, 8108=>851, 8109=>875, 8110=>829, 8111=>857, 8112=>593, 8113=>593, 8114=>593, 8115=>593, 8116=>593,
+ 8118=>593, 8119=>593, 8120=>615, 8121=>615, 8122=>645, 8123=>623, 8124=>615, 8125=>450, 8126=>450, 8127=>450, 8128=>450, 8129=>450, 8130=>570, 8131=>570, 8132=>589, 8134=>570,
+ 8135=>570, 8136=>724, 8137=>671, 8138=>837, 8139=>784, 8140=>677, 8141=>450, 8142=>450, 8143=>450, 8144=>304, 8145=>304, 8146=>304, 8147=>304, 8150=>304, 8151=>304, 8152=>265,
+ 8153=>265, 8154=>427, 8155=>367, 8157=>450, 8158=>450, 8159=>450, 8160=>521, 8161=>521, 8162=>521, 8163=>521, 8164=>571, 8165=>571, 8166=>521, 8167=>521, 8168=>549, 8169=>549,
+ 8170=>760, 8171=>742, 8172=>616, 8173=>450, 8174=>450, 8175=>450, 8178=>753, 8179=>753, 8180=>753, 8182=>753, 8183=>753, 8184=>847, 8185=>731, 8186=>830, 8187=>743, 8188=>688,
+ 8189=>450, 8190=>450, 8192=>450, 8193=>900, 8194=>450, 8195=>900, 8196=>296, 8197=>225, 8198=>150, 8199=>572, 8200=>286, 8201=>180, 8202=>89, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>325, 8209=>325, 8210=>572, 8213=>900, 8214=>450, 8215=>450, 8219=>286, 8223=>466, 8227=>531, 8228=>301, 8229=>601, 8231=>286, 8234=>0, 8235=>0,
+ 8236=>0, 8237=>0, 8238=>0, 8239=>180, 8241=>1562, 8242=>204, 8243=>336, 8244=>468, 8245=>204, 8246=>336, 8247=>468, 8248=>305, 8251=>754, 8252=>437, 8253=>478, 8254=>450,
+ 8255=>723, 8256=>723, 8257=>225, 8258=>900, 8259=>450, 8260=>150, 8261=>351, 8262=>351, 8263=>830, 8264=>659, 8265=>659, 8266=>447, 8267=>572, 8268=>450, 8269=>450, 8270=>450,
+ 8271=>303, 8272=>723, 8273=>450, 8274=>404, 8275=>754, 8276=>723, 8277=>754, 8278=>527, 8279=>597, 8280=>754, 8281=>754, 8282=>286, 8283=>717, 8284=>754, 8285=>286, 8286=>286,
+ 8287=>200, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0, 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>360, 8305=>161, 8308=>360, 8309=>360,
+ 8310=>360, 8311=>360, 8312=>360, 8313=>360, 8314=>475, 8315=>475, 8316=>475, 8317=>221, 8318=>221, 8319=>358, 8320=>360, 8321=>360, 8322=>360, 8323=>360, 8324=>360, 8325=>360,
+ 8326=>360, 8327=>360, 8328=>360, 8329=>360, 8330=>475, 8331=>475, 8332=>475, 8333=>221, 8334=>221, 8336=>352, 8337=>375, 8338=>372, 8339=>399, 8340=>375, 8352=>789, 8353=>572,
+ 8354=>572, 8355=>572, 8356=>572, 8357=>876, 8358=>673, 8359=>1145, 8360=>966, 8361=>890, 8362=>706, 8363=>571, 8365=>572, 8366=>572, 8367=>1145, 8368=>572, 8369=>572, 8370=>572,
+ 8371=>572, 8372=>696, 8373=>577, 8400=>0, 8401=>0, 8406=>0, 8407=>0, 8411=>0, 8412=>0, 8417=>0, 8448=>917, 8449=>917, 8450=>628, 8451=>1011, 8452=>578, 8453=>917,
+ 8454=>960, 8455=>553, 8456=>628, 8457=>856, 8459=>889, 8460=>679, 8461=>765, 8462=>570, 8463=>570, 8464=>422, 8465=>627, 8466=>648, 8467=>372, 8468=>736, 8469=>721, 8470=>936,
+ 8471=>900, 8472=>627, 8473=>631, 8474=>708, 8475=>718, 8476=>732, 8477=>712, 8478=>807, 8479=>615, 8480=>917, 8481=>967, 8483=>615, 8484=>670, 8485=>520, 8486=>688, 8487=>688,
+ 8488=>554, 8489=>304, 8490=>590, 8491=>615, 8492=>708, 8493=>633, 8494=>769, 8495=>532, 8496=>545, 8497=>708, 8498=>518, 8499=>962, 8500=>416, 8501=>670, 8502=>606, 8503=>419,
+ 8504=>580, 8505=>342, 8506=>833, 8507=>1074, 8508=>632, 8509=>655, 8510=>589, 8511=>764, 8512=>729, 8513=>697, 8514=>501, 8515=>501, 8516=>549, 8517=>737, 8518=>637, 8519=>554,
+ 8520=>316, 8521=>316, 8523=>702, 8526=>474, 8531=>872, 8532=>872, 8533=>872, 8534=>872, 8535=>872, 8536=>872, 8537=>872, 8538=>872, 8539=>872, 8540=>872, 8541=>872, 8542=>872,
+ 8543=>511, 8544=>265, 8545=>443, 8546=>620, 8547=>831, 8548=>615, 8549=>830, 8550=>1007, 8551=>1185, 8552=>826, 8553=>616, 8554=>839, 8555=>1018, 8556=>501, 8557=>628, 8558=>693,
+ 8559=>776, 8560=>250, 8561=>412, 8562=>573, 8563=>730, 8564=>532, 8565=>729, 8566=>892, 8567=>1053, 8568=>737, 8569=>532, 8570=>740, 8571=>901, 8572=>250, 8573=>495, 8574=>571,
+ 8575=>876, 8576=>1121, 8577=>693, 8578=>1121, 8579=>633, 8580=>494, 8592=>754, 8593=>754, 8594=>754, 8595=>754, 8596=>754, 8597=>754, 8598=>754, 8599=>754, 8600=>754, 8601=>754,
+ 8602=>754, 8603=>754, 8604=>754, 8605=>754, 8606=>754, 8607=>754, 8608=>754, 8609=>754, 8610=>754, 8611=>754, 8612=>754, 8613=>754, 8614=>754, 8615=>754, 8616=>754, 8617=>754,
+ 8618=>754, 8619=>754, 8620=>754, 8621=>754, 8622=>754, 8623=>754, 8624=>754, 8625=>754, 8626=>754, 8627=>754, 8628=>754, 8629=>754, 8630=>754, 8631=>754, 8632=>754, 8633=>754,
+ 8634=>754, 8635=>754, 8636=>754, 8637=>754, 8638=>754, 8639=>754, 8640=>754, 8641=>754, 8642=>754, 8643=>754, 8644=>754, 8645=>754, 8646=>754, 8647=>754, 8648=>754, 8649=>754,
+ 8650=>754, 8651=>754, 8652=>754, 8653=>754, 8654=>754, 8655=>754, 8656=>754, 8657=>754, 8658=>754, 8659=>754, 8660=>754, 8661=>754, 8662=>754, 8663=>754, 8664=>754, 8665=>754,
+ 8666=>754, 8667=>754, 8668=>754, 8669=>754, 8670=>754, 8671=>754, 8672=>754, 8673=>754, 8674=>754, 8675=>754, 8676=>754, 8677=>754, 8678=>754, 8679=>754, 8680=>754, 8681=>754,
+ 8682=>754, 8683=>754, 8684=>754, 8685=>754, 8686=>754, 8687=>754, 8688=>754, 8689=>754, 8690=>754, 8691=>754, 8692=>754, 8693=>754, 8694=>754, 8695=>754, 8696=>754, 8697=>754,
+ 8698=>754, 8699=>754, 8700=>754, 8701=>754, 8702=>754, 8703=>754, 8704=>615, 8705=>572, 8706=>465, 8707=>568, 8708=>568, 8709=>784, 8710=>602, 8711=>602, 8712=>784, 8713=>784,
+ 8714=>646, 8715=>784, 8716=>784, 8717=>646, 8718=>572, 8719=>681, 8720=>681, 8721=>606, 8722=>754, 8723=>754, 8724=>754, 8725=>150, 8726=>573, 8727=>754, 8728=>563, 8729=>563,
+ 8730=>573, 8731=>573, 8732=>573, 8733=>609, 8734=>750, 8735=>754, 8736=>807, 8737=>807, 8738=>754, 8739=>450, 8740=>450, 8741=>450, 8742=>450, 8743=>659, 8744=>659, 8745=>659,
+ 8746=>659, 8747=>469, 8748=>710, 8749=>951, 8750=>469, 8751=>710, 8752=>951, 8753=>469, 8754=>469, 8755=>469, 8756=>572, 8757=>572, 8758=>234, 8759=>572, 8760=>754, 8761=>754,
+ 8762=>754, 8763=>754, 8764=>754, 8765=>754, 8766=>754, 8767=>754, 8768=>337, 8769=>754, 8770=>754, 8771=>754, 8772=>754, 8773=>754, 8774=>754, 8775=>754, 8776=>754, 8777=>754,
+ 8778=>754, 8779=>754, 8780=>754, 8781=>754, 8782=>754, 8783=>754, 8784=>754, 8785=>754, 8786=>755, 8787=>755, 8788=>900, 8789=>900, 8790=>754, 8791=>754, 8792=>754, 8793=>754,
+ 8794=>754, 8795=>754, 8796=>754, 8797=>754, 8798=>754, 8799=>754, 8800=>754, 8801=>754, 8802=>754, 8803=>754, 8804=>754, 8805=>754, 8806=>754, 8807=>754, 8808=>754, 8809=>754,
+ 8810=>942, 8811=>942, 8812=>417, 8813=>754, 8814=>754, 8815=>754, 8816=>754, 8817=>754, 8818=>754, 8819=>754, 8820=>754, 8821=>754, 8822=>754, 8823=>754, 8824=>754, 8825=>754,
+ 8826=>754, 8827=>754, 8828=>754, 8829=>754, 8830=>754, 8831=>754, 8832=>754, 8833=>754, 8834=>754, 8835=>754, 8836=>754, 8837=>754, 8838=>754, 8839=>754, 8840=>754, 8841=>754,
+ 8842=>754, 8843=>754, 8844=>659, 8845=>659, 8846=>659, 8847=>754, 8848=>754, 8849=>754, 8850=>754, 8851=>649, 8852=>649, 8853=>754, 8854=>754, 8855=>754, 8856=>754, 8857=>754,
+ 8858=>754, 8859=>754, 8860=>754, 8861=>754, 8862=>754, 8863=>754, 8864=>754, 8865=>754, 8866=>784, 8867=>784, 8868=>784, 8869=>784, 8870=>468, 8871=>468, 8872=>784, 8873=>784,
+ 8874=>784, 8875=>784, 8876=>784, 8877=>784, 8878=>784, 8879=>784, 8882=>754, 8883=>754, 8884=>754, 8885=>754, 8886=>900, 8887=>900, 8888=>754, 8889=>754, 8890=>468, 8891=>659,
+ 8892=>659, 8893=>659, 8894=>754, 8895=>754, 8896=>738, 8897=>738, 8898=>738, 8899=>738, 8900=>494, 8901=>286, 8902=>563, 8904=>900, 8905=>900, 8906=>900, 8907=>900, 8908=>900,
+ 8909=>754, 8910=>659, 8911=>659, 8918=>754, 8919=>754, 8920=>1280, 8921=>1280, 8922=>754, 8923=>754, 8924=>754, 8925=>754, 8926=>754, 8927=>754, 8928=>754, 8929=>754, 8930=>754,
+ 8931=>754, 8932=>754, 8933=>754, 8934=>754, 8935=>754, 8936=>754, 8937=>754, 8938=>754, 8939=>754, 8940=>754, 8941=>754, 8942=>900, 8943=>900, 8944=>900, 8945=>900, 8946=>900,
+ 8947=>784, 8948=>646, 8949=>784, 8950=>784, 8951=>646, 8952=>784, 8953=>784, 8954=>900, 8955=>784, 8956=>646, 8957=>784, 8958=>646, 8959=>784, 8960=>542, 8961=>542, 8962=>571,
+ 8963=>754, 8964=>754, 8965=>754, 8966=>754, 8967=>439, 8968=>351, 8969=>351, 8970=>351, 8971=>351, 8972=>728, 8973=>728, 8974=>728, 8975=>728, 8976=>754, 8977=>461, 8984=>900,
+ 8985=>754, 8988=>422, 8989=>422, 8990=>422, 8991=>422, 8992=>469, 8993=>469, 8996=>1037, 8997=>1037, 8998=>1272, 8999=>1037, 9000=>1299, 9003=>1272, 9004=>786, 9075=>304, 9076=>571,
+ 9077=>753, 9082=>593, 9085=>681, 9095=>1037, 9108=>786, 9115=>450, 9116=>450, 9117=>450, 9118=>450, 9119=>450, 9120=>450, 9121=>450, 9122=>450, 9123=>450, 9124=>450, 9125=>450,
+ 9126=>450, 9127=>675, 9128=>675, 9129=>675, 9130=>675, 9131=>675, 9132=>675, 9133=>675, 9134=>469, 9166=>754, 9167=>850, 9187=>786, 9189=>692, 9250=>571, 9251=>571, 9312=>807,
+ 9313=>807, 9314=>807, 9315=>807, 9316=>807, 9317=>807, 9318=>807, 9319=>807, 9320=>807, 9321=>807, 9472=>542, 9473=>542, 9474=>542, 9475=>542, 9476=>542, 9477=>542, 9478=>542,
+ 9479=>542, 9480=>542, 9481=>542, 9482=>542, 9483=>542, 9484=>542, 9485=>542, 9486=>542, 9487=>542, 9488=>542, 9489=>542, 9490=>542, 9491=>542, 9492=>542, 9493=>542, 9494=>542,
+ 9495=>542, 9496=>542, 9497=>542, 9498=>542, 9499=>542, 9500=>542, 9501=>542, 9502=>542, 9503=>542, 9504=>542, 9505=>542, 9506=>542, 9507=>542, 9508=>542, 9509=>542, 9510=>542,
+ 9511=>542, 9512=>542, 9513=>542, 9514=>542, 9515=>542, 9516=>542, 9517=>542, 9518=>542, 9519=>542, 9520=>542, 9521=>542, 9522=>542, 9523=>542, 9524=>542, 9525=>542, 9526=>542,
+ 9527=>542, 9528=>542, 9529=>542, 9530=>542, 9531=>542, 9532=>542, 9533=>542, 9534=>542, 9535=>542, 9536=>542, 9537=>542, 9538=>542, 9539=>542, 9540=>542, 9541=>542, 9542=>542,
+ 9543=>542, 9544=>542, 9545=>542, 9546=>542, 9547=>542, 9548=>542, 9549=>542, 9550=>542, 9551=>542, 9552=>542, 9553=>542, 9554=>542, 9555=>542, 9556=>542, 9557=>542, 9558=>542,
+ 9559=>542, 9560=>542, 9561=>542, 9562=>542, 9563=>542, 9564=>542, 9565=>542, 9566=>542, 9567=>542, 9568=>542, 9569=>542, 9570=>542, 9571=>542, 9572=>542, 9573=>542, 9574=>542,
+ 9575=>542, 9576=>542, 9577=>542, 9578=>542, 9579=>542, 9580=>542, 9581=>542, 9582=>542, 9583=>542, 9584=>542, 9585=>542, 9586=>542, 9587=>542, 9588=>542, 9589=>542, 9590=>542,
+ 9591=>542, 9592=>542, 9593=>542, 9594=>542, 9595=>542, 9596=>542, 9597=>542, 9598=>542, 9599=>542, 9600=>692, 9601=>692, 9602=>692, 9603=>692, 9604=>692, 9605=>692, 9606=>692,
+ 9607=>692, 9608=>692, 9609=>692, 9610=>692, 9611=>692, 9612=>692, 9613=>692, 9614=>692, 9615=>692, 9616=>692, 9617=>692, 9618=>692, 9619=>692, 9620=>692, 9621=>692, 9622=>692,
+ 9623=>692, 9624=>692, 9625=>692, 9626=>692, 9627=>692, 9628=>692, 9629=>692, 9630=>692, 9631=>692, 9632=>850, 9633=>850, 9634=>850, 9635=>850, 9636=>850, 9637=>850, 9638=>850,
+ 9639=>850, 9640=>850, 9641=>850, 9642=>610, 9643=>610, 9644=>850, 9645=>850, 9646=>495, 9647=>495, 9648=>692, 9649=>692, 9650=>692, 9651=>692, 9652=>452, 9653=>452, 9654=>692,
+ 9655=>692, 9656=>452, 9657=>452, 9658=>692, 9659=>692, 9660=>692, 9661=>692, 9662=>452, 9663=>452, 9664=>692, 9665=>692, 9666=>452, 9667=>452, 9668=>692, 9669=>692, 9670=>692,
+ 9671=>692, 9672=>692, 9673=>785, 9674=>444, 9675=>785, 9676=>785, 9677=>785, 9678=>785, 9679=>785, 9680=>785, 9681=>785, 9682=>785, 9683=>785, 9684=>785, 9685=>785, 9686=>474,
+ 9687=>474, 9688=>712, 9689=>873, 9690=>873, 9691=>873, 9692=>348, 9693=>348, 9694=>348, 9695=>348, 9696=>785, 9697=>785, 9698=>692, 9699=>692, 9700=>692, 9701=>692, 9702=>531,
+ 9703=>850, 9704=>850, 9705=>850, 9706=>850, 9707=>850, 9708=>692, 9709=>692, 9710=>692, 9711=>1007, 9712=>850, 9713=>850, 9714=>850, 9715=>850, 9716=>785, 9717=>785, 9718=>785,
+ 9719=>785, 9720=>692, 9721=>692, 9722=>692, 9723=>747, 9724=>747, 9725=>659, 9726=>659, 9727=>692, 9728=>807, 9729=>900, 9730=>807, 9731=>807, 9732=>807, 9733=>807, 9734=>807,
+ 9735=>515, 9736=>806, 9737=>807, 9738=>799, 9739=>799, 9740=>604, 9741=>911, 9742=>1121, 9743=>1125, 9744=>807, 9745=>807, 9746=>807, 9747=>479, 9748=>807, 9749=>807, 9750=>807,
+ 9751=>807, 9752=>807, 9753=>807, 9754=>807, 9755=>807, 9756=>807, 9757=>548, 9758=>807, 9759=>548, 9760=>807, 9761=>807, 9762=>807, 9763=>807, 9764=>602, 9765=>671, 9766=>584,
+ 9767=>705, 9768=>490, 9769=>807, 9770=>807, 9771=>807, 9772=>639, 9773=>807, 9774=>807, 9775=>807, 9776=>896, 9777=>896, 9778=>896, 9779=>896, 9780=>896, 9781=>896, 9782=>896,
+ 9783=>896, 9784=>807, 9785=>807, 9786=>807, 9787=>807, 9788=>807, 9789=>807, 9790=>807, 9791=>552, 9792=>658, 9793=>658, 9794=>807, 9795=>807, 9796=>807, 9797=>807, 9798=>807,
+ 9799=>807, 9800=>807, 9801=>807, 9802=>807, 9803=>807, 9804=>807, 9805=>807, 9806=>807, 9807=>807, 9808=>807, 9809=>807, 9810=>807, 9811=>807, 9812=>807, 9813=>807, 9814=>807,
+ 9815=>807, 9816=>807, 9817=>807, 9818=>807, 9819=>807, 9820=>807, 9821=>807, 9822=>807, 9823=>807, 9824=>807, 9825=>807, 9826=>807, 9827=>807, 9828=>807, 9829=>807, 9830=>807,
+ 9831=>807, 9832=>807, 9833=>424, 9834=>574, 9835=>807, 9836=>807, 9837=>424, 9838=>321, 9839=>435, 9840=>673, 9841=>689, 9842=>807, 9843=>807, 9844=>807, 9845=>807, 9846=>807,
+ 9847=>807, 9848=>807, 9849=>807, 9850=>807, 9851=>807, 9852=>807, 9853=>807, 9854=>807, 9855=>807, 9856=>782, 9857=>782, 9858=>782, 9859=>782, 9860=>782, 9861=>782, 9862=>807,
+ 9863=>807, 9864=>807, 9865=>807, 9866=>807, 9867=>807, 9868=>807, 9869=>807, 9870=>807, 9871=>807, 9872=>807, 9873=>807, 9874=>807, 9875=>807, 9876=>807, 9877=>487, 9878=>807,
+ 9879=>807, 9880=>807, 9881=>807, 9882=>807, 9883=>807, 9884=>807, 9888=>807, 9889=>632, 9890=>903, 9891=>977, 9892=>1028, 9893=>811, 9894=>754, 9895=>754, 9896=>754, 9897=>754,
+ 9898=>754, 9899=>754, 9900=>754, 9901=>754, 9902=>754, 9903=>754, 9904=>759, 9905=>754, 9906=>658, 9985=>754, 9986=>754, 9987=>754, 9988=>754, 9990=>754, 9991=>754, 9992=>754,
+ 9993=>754, 9996=>754, 9997=>754, 9998=>754, 9999=>754, 10000=>754, 10001=>754, 10002=>754, 10003=>754, 10004=>754, 10005=>754, 10006=>754, 10007=>754, 10008=>754, 10009=>754, 10010=>754,
+ 10011=>754, 10012=>754, 10013=>754, 10014=>754, 10015=>754, 10016=>754, 10017=>754, 10018=>754, 10019=>754, 10020=>754, 10021=>754, 10022=>754, 10023=>754, 10025=>754, 10026=>754, 10027=>754,
+ 10028=>754, 10029=>754, 10030=>754, 10031=>754, 10032=>754, 10033=>754, 10034=>754, 10035=>754, 10036=>754, 10037=>754, 10038=>754, 10039=>754, 10040=>754, 10041=>754, 10042=>754, 10043=>754,
+ 10044=>754, 10045=>754, 10046=>754, 10047=>754, 10048=>754, 10049=>754, 10050=>754, 10051=>754, 10052=>754, 10053=>754, 10054=>754, 10055=>754, 10056=>754, 10057=>754, 10058=>754, 10059=>754,
+ 10061=>807, 10063=>807, 10064=>807, 10065=>807, 10066=>807, 10070=>807, 10072=>754, 10073=>754, 10074=>754, 10075=>290, 10076=>290, 10077=>484, 10078=>484, 10081=>754, 10082=>754, 10083=>754,
+ 10084=>754, 10085=>754, 10086=>754, 10087=>754, 10088=>754, 10089=>754, 10090=>754, 10091=>754, 10092=>754, 10093=>754, 10094=>754, 10095=>754, 10096=>754, 10097=>754, 10098=>754, 10099=>754,
+ 10100=>754, 10101=>754, 10102=>807, 10103=>807, 10104=>807, 10105=>807, 10106=>807, 10107=>807, 10108=>807, 10109=>807, 10110=>807, 10111=>807, 10112=>754, 10113=>754, 10114=>754, 10115=>754,
+ 10116=>754, 10117=>754, 10118=>754, 10119=>754, 10120=>754, 10121=>754, 10122=>754, 10123=>754, 10124=>754, 10125=>754, 10126=>754, 10127=>754, 10128=>754, 10129=>754, 10130=>754, 10131=>754,
+ 10132=>754, 10136=>754, 10137=>754, 10138=>754, 10139=>754, 10140=>754, 10141=>754, 10142=>754, 10143=>754, 10144=>754, 10145=>754, 10146=>754, 10147=>754, 10148=>754, 10149=>754, 10150=>754,
+ 10151=>754, 10152=>754, 10153=>754, 10154=>754, 10155=>754, 10156=>754, 10157=>754, 10158=>754, 10159=>754, 10161=>754, 10162=>754, 10163=>754, 10164=>754, 10165=>754, 10166=>754, 10167=>754,
+ 10168=>754, 10169=>754, 10170=>754, 10171=>754, 10172=>754, 10173=>754, 10174=>754, 10208=>444, 10214=>445, 10215=>445, 10216=>351, 10217=>351, 10218=>500, 10219=>500, 10224=>754, 10225=>754,
+ 10226=>754, 10227=>754, 10228=>1042, 10229=>1290, 10230=>1290, 10231=>1290, 10232=>1290, 10233=>1290, 10234=>1290, 10235=>1290, 10236=>1290, 10237=>1290, 10238=>1290, 10239=>1290, 10240=>659, 10241=>659,
+ 10242=>659, 10243=>659, 10244=>659, 10245=>659, 10246=>659, 10247=>659, 10248=>659, 10249=>659, 10250=>659, 10251=>659, 10252=>659, 10253=>659, 10254=>659, 10255=>659, 10256=>659, 10257=>659,
+ 10258=>659, 10259=>659, 10260=>659, 10261=>659, 10262=>659, 10263=>659, 10264=>659, 10265=>659, 10266=>659, 10267=>659, 10268=>659, 10269=>659, 10270=>659, 10271=>659, 10272=>659, 10273=>659,
+ 10274=>659, 10275=>659, 10276=>659, 10277=>659, 10278=>659, 10279=>659, 10280=>659, 10281=>659, 10282=>659, 10283=>659, 10284=>659, 10285=>659, 10286=>659, 10287=>659, 10288=>659, 10289=>659,
+ 10290=>659, 10291=>659, 10292=>659, 10293=>659, 10294=>659, 10295=>659, 10296=>659, 10297=>659, 10298=>659, 10299=>659, 10300=>659, 10301=>659, 10302=>659, 10303=>659, 10304=>659, 10305=>659,
+ 10306=>659, 10307=>659, 10308=>659, 10309=>659, 10310=>659, 10311=>659, 10312=>659, 10313=>659, 10314=>659, 10315=>659, 10316=>659, 10317=>659, 10318=>659, 10319=>659, 10320=>659, 10321=>659,
+ 10322=>659, 10323=>659, 10324=>659, 10325=>659, 10326=>659, 10327=>659, 10328=>659, 10329=>659, 10330=>659, 10331=>659, 10332=>659, 10333=>659, 10334=>659, 10335=>659, 10336=>659, 10337=>659,
+ 10338=>659, 10339=>659, 10340=>659, 10341=>659, 10342=>659, 10343=>659, 10344=>659, 10345=>659, 10346=>659, 10347=>659, 10348=>659, 10349=>659, 10350=>659, 10351=>659, 10352=>659, 10353=>659,
+ 10354=>659, 10355=>659, 10356=>659, 10357=>659, 10358=>659, 10359=>659, 10360=>659, 10361=>659, 10362=>659, 10363=>659, 10364=>659, 10365=>659, 10366=>659, 10367=>659, 10368=>659, 10369=>659,
+ 10370=>659, 10371=>659, 10372=>659, 10373=>659, 10374=>659, 10375=>659, 10376=>659, 10377=>659, 10378=>659, 10379=>659, 10380=>659, 10381=>659, 10382=>659, 10383=>659, 10384=>659, 10385=>659,
+ 10386=>659, 10387=>659, 10388=>659, 10389=>659, 10390=>659, 10391=>659, 10392=>659, 10393=>659, 10394=>659, 10395=>659, 10396=>659, 10397=>659, 10398=>659, 10399=>659, 10400=>659, 10401=>659,
+ 10402=>659, 10403=>659, 10404=>659, 10405=>659, 10406=>659, 10407=>659, 10408=>659, 10409=>659, 10410=>659, 10411=>659, 10412=>659, 10413=>659, 10414=>659, 10415=>659, 10416=>659, 10417=>659,
+ 10418=>659, 10419=>659, 10420=>659, 10421=>659, 10422=>659, 10423=>659, 10424=>659, 10425=>659, 10426=>659, 10427=>659, 10428=>659, 10429=>659, 10430=>659, 10431=>659, 10432=>659, 10433=>659,
+ 10434=>659, 10435=>659, 10436=>659, 10437=>659, 10438=>659, 10439=>659, 10440=>659, 10441=>659, 10442=>659, 10443=>659, 10444=>659, 10445=>659, 10446=>659, 10447=>659, 10448=>659, 10449=>659,
+ 10450=>659, 10451=>659, 10452=>659, 10453=>659, 10454=>659, 10455=>659, 10456=>659, 10457=>659, 10458=>659, 10459=>659, 10460=>659, 10461=>659, 10462=>659, 10463=>659, 10464=>659, 10465=>659,
+ 10466=>659, 10467=>659, 10468=>659, 10469=>659, 10470=>659, 10471=>659, 10472=>659, 10473=>659, 10474=>659, 10475=>659, 10476=>659, 10477=>659, 10478=>659, 10479=>659, 10480=>659, 10481=>659,
+ 10482=>659, 10483=>659, 10484=>659, 10485=>659, 10486=>659, 10487=>659, 10488=>659, 10489=>659, 10490=>659, 10491=>659, 10492=>659, 10493=>659, 10494=>659, 10495=>659, 10502=>754, 10503=>754,
+ 10506=>754, 10507=>754, 10560=>615, 10561=>615, 10627=>660, 10628=>660, 10702=>754, 10703=>900, 10704=>900, 10705=>900, 10706=>900, 10707=>900, 10708=>900, 10709=>900, 10731=>444, 10746=>754,
+ 10747=>754, 10752=>900, 10753=>900, 10754=>900, 10764=>1192, 10765=>469, 10766=>469, 10767=>469, 10768=>469, 10769=>469, 10770=>469, 10771=>469, 10772=>469, 10773=>469, 10774=>469, 10775=>469,
+ 10776=>469, 10777=>469, 10778=>469, 10779=>469, 10780=>469, 10799=>754, 10877=>754, 10878=>754, 10879=>754, 10880=>754, 10881=>754, 10882=>754, 10883=>754, 10884=>754, 10885=>754, 10886=>754,
+ 10887=>754, 10888=>754, 10889=>754, 10890=>754, 10891=>754, 10892=>754, 10893=>754, 10894=>754, 10895=>754, 10896=>754, 10897=>754, 10898=>754, 10899=>754, 10900=>754, 10901=>754, 10902=>754,
+ 10903=>754, 10904=>754, 10905=>754, 10906=>754, 10907=>754, 10908=>754, 10909=>754, 10910=>754, 10911=>754, 10912=>754, 10926=>754, 10927=>754, 10928=>754, 10929=>754, 10930=>754, 10931=>754,
+ 10932=>754, 10933=>754, 10934=>754, 10935=>754, 10936=>754, 10937=>754, 10938=>754, 11001=>754, 11002=>754, 11008=>754, 11009=>754, 11010=>754, 11011=>754, 11012=>754, 11013=>754, 11014=>754,
+ 11015=>754, 11016=>754, 11017=>754, 11018=>754, 11019=>754, 11020=>754, 11021=>754, 11022=>752, 11023=>752, 11024=>752, 11025=>752, 11026=>850, 11027=>850, 11028=>850, 11029=>850, 11030=>692,
+ 11031=>692, 11032=>692, 11033=>692, 11034=>850, 11040=>782, 11041=>786, 11042=>786, 11043=>786, 11360=>501, 11361=>250, 11362=>501, 11363=>542, 11364=>625, 11365=>551, 11366=>353, 11367=>677,
+ 11368=>570, 11369=>590, 11370=>521, 11371=>616, 11372=>472, 11373=>703, 11374=>776, 11375=>615, 11377=>661, 11378=>1015, 11379=>865, 11380=>532, 11381=>589, 11382=>511, 11383=>593, 11385=>373,
+ 11387=>441, 11388=>157, 11389=>387, 11568=>582, 11569=>799, 11570=>799, 11571=>614, 11572=>615, 11573=>571, 11574=>505, 11575=>615, 11576=>615, 11577=>568, 11578=>568, 11579=>614, 11580=>787,
+ 11581=>616, 11582=>441, 11583=>616, 11584=>799, 11585=>799, 11586=>270, 11587=>564, 11588=>677, 11589=>590, 11590=>475, 11591=>616, 11592=>580, 11593=>568, 11594=>452, 11595=>857, 11596=>700,
+ 11597=>673, 11598=>558, 11599=>265, 11600=>700, 11601=>265, 11602=>677, 11603=>569, 11604=>799, 11605=>799, 11606=>677, 11607=>288, 11608=>674, 11609=>799, 11610=>799, 11611=>628, 11612=>690,
+ 11613=>616, 11614=>628, 11615=>560, 11616=>615, 11617=>677, 11618=>568, 11619=>709, 11620=>510, 11621=>709, 11631=>463, 11800=>478, 11822=>478, 19904=>807, 19905=>807, 19906=>807, 19907=>807,
+ 19908=>807, 19909=>807, 19910=>807, 19911=>807, 19912=>807, 19913=>807, 19914=>807, 19915=>807, 19916=>807, 19917=>807, 19918=>807, 19919=>807, 19920=>807, 19921=>807, 19922=>807, 19923=>807,
+ 19924=>807, 19925=>807, 19926=>807, 19927=>807, 19928=>807, 19929=>807, 19930=>807, 19931=>807, 19932=>807, 19933=>807, 19934=>807, 19935=>807, 19936=>807, 19937=>807, 19938=>807, 19939=>807,
+ 19940=>807, 19941=>807, 19942=>807, 19943=>807, 19944=>807, 19945=>807, 19946=>807, 19947=>807, 19948=>807, 19949=>807, 19950=>807, 19951=>807, 19952=>807, 19953=>807, 19954=>807, 19955=>807,
+ 19956=>807, 19957=>807, 19958=>807, 19959=>807, 19960=>807, 19961=>807, 19962=>807, 19963=>807, 19964=>807, 19965=>807, 19966=>807, 19967=>807, 42564=>571, 42565=>469, 42566=>318, 42567=>304,
+ 42572=>1062, 42573=>925, 42576=>926, 42577=>815, 42580=>971, 42581=>757, 42770=>444, 42771=>444, 42772=>444, 42773=>444, 42774=>444, 42790=>677, 42791=>570, 42792=>790, 42793=>638, 42800=>441,
+ 42801=>469, 42802=>1125, 42803=>886, 42808=>874, 42809=>736, 42810=>874, 42811=>736, 42812=>863, 42813=>736, 42814=>633, 42815=>494, 42822=>612, 42823=>353, 42824=>523, 42825=>384, 42826=>726,
+ 42827=>633, 42830=>1222, 42831=>917, 42880=>501, 42881=>250, 43003=>518, 43004=>542, 43005=>776, 43006=>265, 43007=>1079, 61440=>879, 61441=>879, 63173=>550, 64256=>620, 64257=>567, 64258=>567,
+ 64259=>870, 64260=>870, 64261=>617, 64262=>774, 64275=>1081, 64276=>1081, 64277=>1076, 64278=>1067, 64279=>1376, 64285=>245, 64286=>0, 64287=>423, 64288=>572, 64289=>770, 64290=>696, 64291=>815,
+ 64292=>694, 64293=>759, 64294=>769, 64295=>726, 64296=>788, 64297=>754, 64298=>727, 64299=>727, 64300=>799, 64301=>799, 64302=>566, 64303=>566, 64304=>566, 64305=>547, 64306=>403, 64307=>534,
+ 64308=>576, 64309=>245, 64310=>336, 64312=>583, 64313=>302, 64314=>532, 64315=>500, 64316=>539, 64318=>593, 64320=>397, 64321=>629, 64323=>576, 64324=>543, 64326=>523, 64327=>596, 64328=>532,
+ 64329=>727, 64330=>591, 64331=>245, 64332=>547, 64333=>500, 64334=>543, 64335=>566, 64338=>847, 64339=>883, 64340=>250, 64341=>271, 64342=>847, 64343=>883, 64344=>250, 64345=>271, 64346=>847,
+ 64347=>883, 64348=>250, 64349=>271, 64350=>847, 64351=>883, 64352=>250, 64353=>271, 64354=>847, 64355=>883, 64356=>250, 64357=>271, 64358=>847, 64359=>883, 64360=>250, 64361=>271, 64362=>933,
+ 64363=>932, 64364=>430, 64365=>455, 64366=>933, 64367=>932, 64368=>430, 64369=>455, 64370=>581, 64371=>581, 64372=>556, 64373=>581, 64374=>581, 64375=>581, 64376=>556, 64377=>581, 64378=>581,
+ 64379=>581, 64380=>556, 64381=>581, 64382=>581, 64383=>581, 64384=>556, 64385=>581, 64394=>435, 64395=>497, 64396=>435, 64397=>497, 64398=>805, 64399=>805, 64400=>428, 64401=>497, 64402=>805,
+ 64403=>805, 64404=>428, 64405=>497, 64414=>661, 64415=>685, 64473=>435, 64474=>465, 64488=>250, 64489=>271, 64508=>704, 64509=>750, 64510=>250, 64511=>271, 65024=>0, 65025=>0, 65026=>0,
+ 65027=>0, 65028=>0, 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65056=>0, 65057=>0, 65058=>0,
+ 65059=>0, 65136=>264, 65137=>264, 65138=>264, 65139=>235, 65140=>264, 65142=>264, 65143=>264, 65144=>264, 65145=>264, 65146=>264, 65147=>264, 65148=>264, 65149=>264, 65150=>264, 65151=>264,
+ 65152=>423, 65153=>250, 65154=>274, 65155=>250, 65156=>274, 65157=>435, 65158=>465, 65159=>250, 65160=>274, 65161=>704, 65162=>750, 65163=>250, 65164=>271, 65165=>250, 65166=>274, 65167=>847,
+ 65168=>883, 65169=>250, 65170=>271, 65171=>471, 65172=>482, 65173=>847, 65174=>883, 65175=>250, 65176=>271, 65177=>847, 65178=>883, 65179=>250, 65180=>271, 65181=>581, 65182=>581, 65183=>556,
+ 65184=>581, 65185=>581, 65186=>581, 65187=>556, 65188=>581, 65189=>581, 65190=>581, 65191=>556, 65192=>581, 65193=>400, 65194=>472, 65195=>400, 65196=>472, 65197=>435, 65198=>497, 65199=>435,
+ 65200=>497, 65201=>1099, 65202=>1147, 65203=>754, 65204=>803, 65205=>1099, 65206=>1147, 65207=>754, 65208=>803, 65209=>1088, 65210=>1103, 65211=>764, 65212=>780, 65213=>1088, 65214=>1103, 65215=>764,
+ 65216=>780, 65217=>832, 65218=>854, 65219=>716, 65220=>738, 65221=>832, 65222=>854, 65223=>716, 65224=>738, 65225=>537, 65226=>479, 65227=>537, 65228=>434, 65229=>537, 65230=>479, 65231=>470,
+ 65232=>434, 65233=>933, 65234=>932, 65235=>430, 65236=>455, 65237=>698, 65238=>750, 65239=>430, 65240=>455, 65241=>742, 65242=>758, 65243=>428, 65244=>497, 65245=>654, 65246=>681, 65247=>274,
+ 65248=>298, 65249=>557, 65250=>599, 65251=>482, 65252=>520, 65253=>661, 65254=>685, 65255=>250, 65256=>271, 65257=>471, 65258=>482, 65259=>475, 65260=>415, 65261=>435, 65262=>465, 65263=>704,
+ 65264=>750, 65265=>704, 65266=>750, 65267=>250, 65268=>271, 65269=>513, 65270=>537, 65271=>513, 65272=>537, 65273=>513, 65274=>537, 65275=>513, 65276=>537, 65279=>0, 65529=>0, 65530=>0,
+ 65531=>0, 65532=>0, 65533=>923);
+$enc='';
+$diff='';
+$file='dejavusanscondensed.z';
+$ctg='dejavusanscondensed.ctg.z';
+$originalsize=529984;
+?>
diff --git a/lib/tcpdf/fonts/dejavusanscondensed.z b/lib/tcpdf/fonts/dejavusanscondensed.z
new file mode 100644
index 0000000000..d3df315134
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusanscondensed.z differ
diff --git a/lib/tcpdf/fonts/dejavusanscondensedb.ctg.z b/lib/tcpdf/fonts/dejavusanscondensedb.ctg.z
new file mode 100644
index 0000000000..363a1c46bf
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusanscondensedb.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusanscondensedb.php b/lib/tcpdf/fonts/dejavusanscondensedb.php
new file mode 100644
index 0000000000..58f9aaaa1b
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusanscondensedb.php
@@ -0,0 +1,314 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>32,'FontBBox'=>'[-962 -388 1777 1174]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>540);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>540, 32=>313, 33=>410, 34=>469, 35=>754, 36=>626, 37=>901, 38=>785, 39=>275, 40=>411, 41=>411, 42=>470, 43=>754, 44=>342, 45=>374, 46=>342,
+ 47=>329, 48=>626, 49=>626, 50=>626, 51=>626, 52=>626, 53=>626, 54=>626, 55=>626, 56=>626, 57=>626, 58=>360, 59=>360, 60=>754, 61=>754, 62=>754,
+ 63=>522, 64=>900, 65=>696, 66=>686, 67=>660, 68=>747, 69=>615, 70=>615, 71=>738, 72=>753, 73=>334, 74=>334, 75=>697, 76=>573, 77=>896, 78=>753,
+ 79=>765, 80=>659, 81=>765, 82=>693, 83=>648, 84=>614, 85=>730, 86=>696, 87=>993, 88=>694, 89=>651, 90=>652, 91=>411, 92=>329, 93=>411, 94=>754,
+ 95=>450, 96=>450, 97=>607, 98=>644, 99=>533, 100=>644, 101=>610, 102=>391, 103=>644, 104=>641, 105=>308, 106=>308, 107=>598, 108=>308, 109=>938, 110=>641,
+ 111=>618, 112=>644, 113=>644, 114=>444, 115=>536, 116=>430, 117=>641, 118=>586, 119=>831, 120=>580, 121=>586, 122=>523, 123=>641, 124=>329, 125=>641, 126=>754,
+ 8364=>626, 1027=>637, 8218=>342, 402=>391, 8222=>591, 8230=>900, 8224=>450, 8225=>450, 710=>450, 8240=>1296, 352=>648, 8249=>371, 338=>1050, 1036=>817, 381=>652, 1039=>753,
+ 8216=>342, 8217=>342, 8220=>591, 8221=>591, 8226=>575, 8211=>450, 8212=>900, 732=>450, 8482=>900, 353=>536, 8250=>371, 339=>984, 1116=>611, 382=>523, 376=>651, 160=>313,
+ 161=>410, 162=>626, 163=>626, 164=>572, 165=>626, 166=>329, 167=>450, 168=>450, 169=>900, 170=>507, 171=>581, 172=>754, 173=>374, 174=>900, 175=>450, 176=>450,
+ 177=>754, 178=>394, 179=>394, 180=>450, 181=>662, 182=>572, 183=>342, 184=>450, 185=>394, 186=>507, 187=>581, 188=>932, 189=>932, 190=>932, 191=>522, 192=>696,
+ 193=>696, 194=>696, 195=>696, 196=>696, 197=>696, 198=>976, 199=>660, 200=>615, 201=>615, 202=>615, 203=>615, 204=>334, 205=>334, 206=>334, 207=>334, 208=>754,
+ 209=>753, 210=>765, 211=>765, 212=>765, 213=>765, 214=>765, 215=>754, 216=>765, 217=>730, 218=>730, 219=>730, 220=>730, 221=>651, 222=>664, 223=>647, 224=>607,
+ 225=>607, 226=>607, 227=>607, 228=>607, 229=>607, 230=>943, 231=>533, 232=>610, 233=>610, 234=>610, 235=>610, 236=>343, 237=>343, 238=>343, 239=>343, 240=>618,
+ 241=>641, 242=>618, 243=>618, 244=>618, 245=>618, 246=>618, 247=>754, 248=>618, 249=>641, 250=>641, 251=>641, 252=>641, 253=>586, 254=>644, 255=>586, 256=>696,
+ 257=>607, 258=>696, 259=>607, 260=>696, 261=>607, 262=>660, 263=>533, 264=>660, 265=>533, 266=>660, 267=>533, 268=>660, 269=>533, 270=>747, 271=>644, 272=>754,
+ 273=>644, 274=>615, 275=>610, 276=>615, 277=>610, 278=>615, 279=>610, 280=>615, 281=>610, 282=>615, 283=>610, 284=>738, 285=>644, 286=>738, 287=>644, 288=>738,
+ 289=>644, 290=>738, 291=>644, 292=>753, 293=>641, 294=>876, 295=>711, 296=>334, 297=>343, 298=>334, 299=>343, 300=>334, 301=>343, 302=>334, 303=>308, 304=>334,
+ 305=>308, 306=>669, 307=>617, 308=>334, 309=>343, 310=>697, 311=>598, 312=>598, 313=>573, 314=>308, 315=>573, 316=>308, 317=>573, 318=>431, 319=>573, 320=>501,
+ 321=>578, 322=>334, 323=>753, 324=>641, 325=>753, 326=>641, 327=>753, 328=>641, 329=>884, 330=>753, 331=>641, 332=>765, 333=>618, 334=>765, 335=>618, 336=>765,
+ 337=>618, 340=>693, 341=>444, 342=>693, 343=>444, 344=>693, 345=>444, 346=>648, 347=>536, 348=>648, 349=>536, 350=>648, 351=>536, 354=>614, 355=>430, 356=>614,
+ 357=>430, 358=>614, 359=>430, 360=>730, 361=>641, 362=>730, 363=>641, 364=>730, 365=>641, 366=>730, 367=>641, 368=>730, 369=>641, 370=>730, 371=>641, 372=>993,
+ 373=>831, 374=>651, 375=>586, 377=>652, 378=>523, 379=>652, 380=>523, 383=>391, 384=>644, 385=>729, 386=>686, 387=>644, 388=>686, 389=>644, 390=>660, 391=>660,
+ 392=>533, 393=>754, 394=>791, 395=>681, 396=>644, 397=>619, 398=>615, 399=>764, 400=>626, 401=>615, 403=>738, 404=>713, 405=>940, 406=>392, 407=>350, 408=>697,
+ 409=>598, 410=>324, 411=>532, 412=>938, 413=>753, 414=>641, 415=>765, 416=>786, 417=>618, 418=>974, 419=>821, 420=>703, 421=>644, 422=>693, 423=>648, 424=>536,
+ 425=>615, 426=>497, 427=>430, 428=>636, 429=>430, 430=>614, 431=>751, 432=>641, 433=>765, 434=>732, 435=>717, 436=>700, 437=>652, 438=>523, 439=>695, 440=>695,
+ 441=>576, 442=>523, 443=>626, 444=>695, 445=>576, 446=>515, 447=>644, 448=>334, 449=>593, 450=>489, 451=>334, 452=>1399, 453=>1271, 454=>1168, 455=>908, 456=>882,
+ 457=>617, 458=>1088, 459=>1062, 460=>949, 461=>696, 462=>607, 463=>334, 464=>308, 465=>765, 466=>618, 467=>730, 468=>641, 469=>730, 470=>641, 471=>730, 472=>641,
+ 473=>730, 474=>641, 475=>730, 476=>641, 477=>678, 478=>696, 479=>607, 480=>696, 481=>607, 482=>976, 483=>943, 484=>738, 485=>644, 486=>738, 487=>644, 488=>697,
+ 489=>598, 490=>765, 491=>618, 492=>765, 493=>618, 494=>695, 495=>523, 496=>308, 497=>1399, 498=>1271, 499=>1168, 500=>738, 501=>644, 502=>1160, 503=>708, 504=>753,
+ 505=>641, 506=>696, 507=>607, 508=>976, 509=>943, 510=>765, 511=>618, 512=>696, 513=>607, 514=>696, 515=>607, 516=>615, 517=>610, 518=>615, 519=>610, 520=>334,
+ 521=>308, 522=>334, 523=>308, 524=>765, 525=>618, 526=>765, 527=>618, 528=>693, 529=>444, 530=>693, 531=>444, 532=>730, 533=>641, 534=>730, 535=>641, 536=>648,
+ 537=>536, 538=>614, 539=>430, 540=>621, 541=>546, 542=>753, 543=>641, 544=>753, 545=>778, 546=>728, 547=>593, 548=>652, 549=>523, 550=>696, 551=>607, 552=>615,
+ 553=>610, 554=>765, 555=>618, 556=>765, 557=>618, 558=>765, 559=>618, 560=>765, 561=>618, 562=>651, 563=>586, 564=>442, 565=>780, 566=>460, 567=>308, 568=>979,
+ 569=>979, 570=>696, 571=>660, 572=>533, 573=>573, 574=>614, 575=>536, 576=>523, 577=>703, 578=>553, 579=>686, 580=>730, 581=>696, 582=>615, 583=>610, 584=>334,
+ 585=>308, 586=>774, 587=>712, 588=>693, 589=>444, 590=>651, 591=>586, 592=>607, 593=>644, 594=>644, 595=>644, 596=>533, 597=>533, 598=>645, 599=>712, 600=>610,
+ 601=>610, 602=>788, 603=>501, 604=>490, 605=>733, 606=>658, 607=>308, 608=>712, 609=>644, 610=>564, 611=>579, 612=>571, 613=>641, 614=>641, 615=>641, 616=>491,
+ 617=>396, 618=>491, 619=>502, 620=>624, 621=>308, 622=>757, 623=>938, 624=>938, 625=>938, 626=>641, 627=>713, 628=>636, 629=>618, 630=>817, 631=>613, 632=>716,
+ 633=>484, 634=>484, 635=>584, 636=>444, 637=>444, 638=>536, 639=>536, 640=>578, 641=>578, 642=>536, 643=>374, 644=>391, 645=>544, 646=>497, 647=>430, 648=>430,
+ 649=>828, 650=>695, 651=>603, 652=>586, 653=>831, 654=>586, 655=>651, 656=>624, 657=>615, 658=>576, 659=>576, 660=>515, 661=>515, 662=>515, 663=>515, 664=>765,
+ 665=>569, 666=>658, 667=>616, 668=>622, 669=>308, 670=>659, 671=>485, 672=>712, 673=>515, 674=>515, 675=>1040, 676=>1093, 677=>1039, 678=>876, 679=>691, 680=>836,
+ 681=>923, 682=>712, 683=>702, 684=>532, 685=>374, 686=>609, 687=>710, 688=>410, 689=>410, 690=>197, 691=>284, 692=>284, 693=>284, 694=>369, 695=>532, 696=>375,
+ 697=>271, 698=>469, 699=>342, 700=>342, 701=>342, 702=>330, 703=>330, 704=>293, 705=>293, 706=>450, 707=>450, 708=>450, 709=>450, 711=>450, 712=>275, 713=>450,
+ 714=>450, 715=>450, 716=>275, 717=>450, 718=>450, 719=>450, 720=>303, 721=>303, 722=>330, 723=>330, 724=>450, 725=>450, 726=>450, 727=>450, 728=>450, 729=>450,
+ 730=>450, 731=>450, 733=>450, 734=>315, 735=>450, 736=>370, 737=>197, 738=>343, 739=>371, 740=>293, 741=>450, 742=>450, 743=>450, 744=>450, 745=>450, 748=>450,
+ 749=>450, 750=>450, 755=>450, 759=>450, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0,
+ 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0,
+ 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0,
+ 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0,
+ 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 837=>0, 838=>0, 839=>0, 840=>0, 841=>0, 842=>0, 843=>0,
+ 844=>0, 845=>0, 846=>0, 847=>0, 849=>0, 850=>0, 851=>0, 855=>0, 856=>0, 860=>0, 861=>0, 862=>0, 863=>0, 864=>0, 865=>0, 866=>0,
+ 884=>271, 885=>271, 890=>450, 891=>533, 892=>495, 893=>494, 894=>360, 900=>397, 901=>450, 902=>717, 903=>342, 904=>761, 905=>908, 906=>507, 908=>801, 910=>882,
+ 911=>804, 912=>390, 913=>696, 914=>686, 915=>637, 916=>696, 917=>615, 918=>652, 919=>753, 920=>765, 921=>334, 922=>697, 923=>696, 924=>896, 925=>753, 926=>568,
+ 927=>765, 928=>837, 929=>659, 931=>615, 932=>614, 933=>651, 934=>765, 935=>694, 936=>765, 937=>765, 938=>334, 939=>651, 940=>687, 941=>557, 942=>712, 943=>390,
+ 944=>675, 945=>618, 946=>644, 947=>613, 948=>618, 949=>501, 950=>532, 951=>641, 952=>618, 953=>351, 954=>639, 955=>569, 956=>662, 957=>613, 958=>532, 959=>618,
+ 960=>712, 961=>644, 962=>533, 963=>701, 964=>574, 965=>607, 966=>704, 967=>580, 968=>714, 969=>782, 970=>351, 971=>607, 972=>618, 973=>607, 974=>782, 976=>585,
+ 977=>594, 978=>671, 979=>883, 980=>671, 981=>716, 982=>782, 983=>669, 984=>765, 985=>618, 986=>660, 987=>533, 988=>615, 989=>444, 990=>632, 991=>593, 992=>827,
+ 993=>564, 994=>983, 995=>753, 996=>749, 997=>644, 998=>835, 999=>669, 1000=>660, 1001=>585, 1002=>709, 1003=>604, 1004=>677, 1005=>644, 1006=>614, 1007=>531, 1008=>669,
+ 1009=>644, 1010=>533, 1011=>308, 1012=>765, 1013=>580, 1014=>580, 1015=>664, 1016=>644, 1017=>660, 1018=>896, 1019=>659, 1020=>644, 1021=>628, 1022=>660, 1023=>628, 1024=>683,
+ 1025=>683, 1026=>791, 1028=>660, 1029=>648, 1030=>334, 1031=>334, 1032=>334, 1033=>1039, 1034=>1017, 1035=>791, 1037=>837, 1038=>771, 1040=>696, 1041=>686, 1042=>686, 1043=>573,
+ 1044=>801, 1045=>615, 1046=>1102, 1047=>639, 1048=>753, 1049=>753, 1050=>735, 1051=>747, 1052=>896, 1053=>753, 1054=>765, 1055=>753, 1056=>659, 1057=>660, 1058=>614, 1059=>694,
+ 1060=>892, 1061=>694, 1062=>835, 1063=>727, 1064=>1112, 1065=>1193, 1066=>845, 1067=>932, 1068=>686, 1069=>660, 1070=>1056, 1071=>693, 1072=>607, 1073=>628, 1074=>569, 1075=>470,
+ 1076=>727, 1077=>610, 1078=>896, 1079=>523, 1080=>630, 1081=>630, 1082=>611, 1083=>659, 1084=>735, 1085=>622, 1086=>618, 1087=>622, 1088=>644, 1089=>533, 1090=>521, 1091=>586,
+ 1092=>893, 1093=>580, 1094=>667, 1095=>618, 1096=>956, 1097=>995, 1098=>676, 1099=>813, 1100=>569, 1101=>533, 1102=>875, 1103=>578, 1104=>610, 1105=>610, 1106=>642, 1107=>470,
+ 1108=>533, 1109=>536, 1110=>308, 1111=>308, 1112=>308, 1113=>892, 1114=>860, 1115=>661, 1117=>630, 1118=>586, 1119=>622, 1120=>983, 1121=>782, 1122=>756, 1123=>662, 1124=>911,
+ 1125=>755, 1126=>893, 1127=>749, 1128=>1222, 1129=>1009, 1130=>765, 1131=>618, 1132=>1112, 1133=>906, 1134=>626, 1135=>501, 1136=>967, 1137=>955, 1138=>765, 1139=>618, 1140=>765,
+ 1141=>625, 1142=>765, 1143=>625, 1144=>1033, 1145=>939, 1146=>967, 1147=>776, 1148=>1265, 1149=>1055, 1150=>983, 1151=>782, 1152=>660, 1153=>533, 1154=>587, 1155=>0, 1156=>0,
+ 1157=>0, 1158=>0, 1160=>376, 1161=>376, 1162=>861, 1163=>726, 1164=>686, 1165=>550, 1166=>659, 1167=>644, 1168=>573, 1169=>470, 1170=>599, 1171=>488, 1172=>727, 1173=>602,
+ 1174=>1102, 1175=>896, 1176=>639, 1177=>523, 1178=>697, 1179=>611, 1180=>735, 1181=>611, 1182=>735, 1183=>611, 1184=>914, 1185=>743, 1186=>860, 1187=>727, 1188=>992, 1189=>787,
+ 1190=>1146, 1191=>915, 1192=>787, 1193=>639, 1194=>660, 1195=>533, 1196=>614, 1197=>521, 1198=>651, 1199=>586, 1200=>651, 1201=>586, 1202=>694, 1203=>580, 1204=>1001, 1205=>900,
+ 1206=>727, 1207=>618, 1208=>727, 1209=>618, 1210=>727, 1211=>641, 1212=>923, 1213=>729, 1214=>923, 1215=>729, 1216=>334, 1217=>1102, 1218=>896, 1219=>697, 1220=>567, 1221=>855,
+ 1222=>725, 1223=>753, 1224=>622, 1225=>861, 1226=>726, 1227=>727, 1228=>618, 1229=>1003, 1230=>839, 1231=>308, 1232=>696, 1233=>607, 1234=>696, 1235=>607, 1236=>976, 1237=>943,
+ 1238=>615, 1239=>610, 1240=>764, 1241=>610, 1242=>764, 1243=>610, 1244=>1102, 1245=>896, 1246=>639, 1247=>523, 1248=>695, 1249=>576, 1250=>753, 1251=>630, 1252=>753, 1253=>630,
+ 1254=>765, 1255=>618, 1256=>765, 1257=>618, 1258=>765, 1259=>618, 1260=>660, 1261=>533, 1262=>694, 1263=>586, 1264=>694, 1265=>586, 1266=>694, 1267=>586, 1268=>727, 1269=>618,
+ 1270=>573, 1271=>470, 1272=>932, 1273=>813, 1274=>599, 1275=>488, 1276=>694, 1277=>580, 1278=>694, 1279=>580, 1280=>686, 1281=>547, 1282=>1043, 1283=>804, 1284=>1007, 1285=>828,
+ 1286=>745, 1287=>624, 1288=>1117, 1289=>915, 1290=>1160, 1291=>912, 1292=>755, 1293=>574, 1294=>844, 1295=>722, 1296=>626, 1297=>501, 1298=>747, 1299=>659, 1306=>765, 1307=>644,
+ 1308=>993, 1309=>831, 1312=>1140, 1313=>953, 1314=>1146, 1315=>915, 1329=>886, 1330=>730, 1331=>886, 1332=>886, 1333=>730, 1334=>699, 1335=>730, 1336=>730, 1337=>877, 1338=>886,
+ 1339=>730, 1340=>639, 1341=>970, 1342=>1022, 1343=>730, 1344=>639, 1345=>681, 1346=>886, 1347=>789, 1348=>886, 1349=>714, 1350=>886, 1351=>730, 1352=>730, 1353=>730, 1354=>862,
+ 1355=>699, 1356=>886, 1357=>730, 1358=>886, 1359=>648, 1360=>730, 1361=>714, 1362=>805, 1363=>765, 1364=>842, 1365=>765, 1366=>648, 1369=>330, 1370=>342, 1371=>495, 1372=>495,
+ 1373=>342, 1374=>491, 1375=>468, 1377=>938, 1378=>641, 1379=>779, 1380=>781, 1381=>641, 1382=>735, 1383=>588, 1384=>641, 1385=>729, 1386=>735, 1387=>641, 1388=>448, 1389=>916,
+ 1390=>644, 1391=>641, 1392=>641, 1393=>644, 1394=>737, 1395=>641, 1396=>676, 1397=>308, 1398=>794, 1399=>502, 1400=>641, 1401=>502, 1402=>938, 1403=>502, 1404=>777, 1405=>641,
+ 1406=>732, 1407=>938, 1408=>641, 1409=>644, 1410=>514, 1411=>938, 1412=>700, 1413=>618, 1414=>648, 1415=>776, 1417=>360, 1418=>438, 1456=>0, 1457=>0, 1458=>0, 1459=>0,
+ 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1466=>0, 1467=>0, 1468=>0, 1469=>0, 1470=>374, 1471=>0, 1472=>334, 1473=>0, 1474=>0, 1475=>334,
+ 1478=>447, 1479=>0, 1488=>676, 1489=>605, 1490=>483, 1491=>589, 1492=>641, 1493=>308, 1494=>442, 1495=>641, 1496=>651, 1497=>308, 1498=>584, 1499=>584, 1500=>611, 1501=>641,
+ 1502=>698, 1503=>308, 1504=>447, 1505=>696, 1506=>610, 1507=>646, 1508=>618, 1509=>565, 1510=>676, 1511=>656, 1512=>584, 1513=>854, 1514=>676, 1520=>598, 1521=>598, 1522=>597,
+ 1523=>399, 1524=>639, 1548=>342, 1557=>0, 1563=>360, 1567=>522, 1569=>460, 1570=>308, 1571=>308, 1572=>559, 1573=>308, 1574=>825, 1575=>308, 1576=>904, 1577=>531, 1578=>904,
+ 1579=>904, 1580=>648, 1581=>648, 1582=>648, 1583=>461, 1584=>461, 1585=>518, 1586=>518, 1587=>1242, 1588=>1242, 1589=>1210, 1590=>1210, 1591=>935, 1592=>935, 1593=>615, 1594=>615,
+ 1600=>308, 1601=>1045, 1602=>804, 1603=>825, 1604=>781, 1605=>659, 1606=>768, 1607=>531, 1608=>559, 1609=>825, 1610=>825, 1611=>0, 1612=>0, 1613=>0, 1614=>0, 1615=>0,
+ 1616=>0, 1617=>0, 1618=>0, 1619=>0, 1620=>0, 1621=>0, 1626=>450, 1632=>549, 1633=>549, 1634=>549, 1635=>549, 1636=>549, 1637=>549, 1638=>549, 1639=>549, 1640=>549,
+ 1641=>549, 1642=>549, 1643=>336, 1644=>342, 1645=>490, 1646=>904, 1647=>804, 1652=>263, 1657=>904, 1658=>904, 1659=>904, 1660=>904, 1661=>904, 1662=>904, 1663=>904, 1664=>904,
+ 1665=>648, 1666=>648, 1667=>648, 1668=>648, 1669=>648, 1670=>648, 1671=>648, 1681=>518, 1682=>518, 1685=>613, 1688=>518, 1697=>1045, 1700=>1045, 1702=>1045, 1705=>921, 1711=>921,
+ 1717=>781, 1722=>768, 1727=>648, 1734=>559, 1740=>825, 1742=>825, 1749=>531, 1776=>549, 1777=>549, 1778=>549, 1779=>549, 1780=>549, 1781=>549, 1782=>549, 1783=>549, 1784=>549,
+ 1785=>549, 1984=>626, 1985=>626, 1986=>626, 1987=>626, 1988=>626, 1989=>626, 1990=>626, 1991=>626, 1992=>626, 1993=>626, 1994=>308, 1995=>492, 1996=>489, 1997=>586, 1998=>622,
+ 1999=>622, 2000=>534, 2001=>622, 2002=>813, 2003=>496, 2004=>496, 2005=>564, 2006=>619, 2007=>399, 2008=>920, 2009=>456, 2010=>743, 2011=>622, 2012=>586, 2013=>821, 2014=>564,
+ 2015=>636, 2016=>456, 2017=>586, 2018=>517, 2019=>564, 2020=>564, 2021=>564, 2022=>517, 2023=>517, 2027=>0, 2028=>0, 2029=>0, 2030=>0, 2031=>0, 2032=>0, 2033=>0,
+ 2034=>0, 2035=>0, 2036=>342, 2037=>342, 2040=>622, 2041=>622, 2042=>374, 3647=>668, 3713=>710, 3714=>673, 3716=>674, 3719=>512, 3720=>668, 3722=>669, 3725=>685, 3732=>635,
+ 3733=>633, 3734=>672, 3735=>737, 3737=>657, 3738=>654, 3739=>654, 3740=>830, 3741=>744, 3742=>779, 3743=>779, 3745=>752, 3746=>685, 3747=>692, 3749=>691, 3751=>642, 3754=>744,
+ 3755=>928, 3757=>651, 3758=>705, 3759=>840, 3760=>620, 3761=>0, 3762=>549, 3763=>549, 3764=>0, 3765=>0, 3766=>0, 3767=>0, 3768=>0, 3769=>0, 3771=>0, 3772=>0,
+ 3773=>603, 3776=>464, 3777=>774, 3778=>464, 3779=>584, 3780=>569, 3782=>683, 3784=>0, 3785=>0, 3786=>0, 3787=>0, 3788=>0, 3789=>0, 3792=>694, 3793=>694, 3794=>624,
+ 3795=>752, 3796=>655, 3797=>655, 3798=>764, 3799=>710, 3800=>683, 3801=>818, 3804=>1227, 3805=>1227, 4256=>826, 4257=>669, 4258=>665, 4259=>753, 4260=>584, 4261=>696, 4262=>771,
+ 4263=>800, 4264=>477, 4265=>570, 4266=>771, 4267=>810, 4268=>579, 4269=>813, 4270=>732, 4271=>677, 4272=>782, 4273=>579, 4274=>579, 4275=>797, 4276=>797, 4277=>660, 4278=>587,
+ 4279=>579, 4280=>582, 4281=>579, 4282=>710, 4283=>812, 4284=>570, 4285=>557, 4286=>579, 4287=>700, 4288=>802, 4289=>541, 4290=>668, 4291=>554, 4292=>570, 4293=>668, 4304=>497,
+ 4305=>497, 4306=>536, 4307=>734, 4308=>505, 4309=>506, 4310=>497, 4311=>744, 4312=>497, 4313=>488, 4314=>967, 4315=>506, 4316=>507, 4317=>730, 4318=>497, 4319=>532, 4320=>740,
+ 4321=>506, 4322=>621, 4323=>525, 4324=>732, 4325=>505, 4326=>731, 4327=>506, 4328=>506, 4329=>507, 4330=>568, 4331=>506, 4332=>506, 4333=>497, 4334=>506, 4335=>506, 4336=>501,
+ 4337=>543, 4338=>497, 4339=>497, 4340=>497, 4341=>544, 4342=>767, 4343=>571, 4344=>506, 4345=>536, 4346=>487, 4347=>426, 4348=>331, 5121=>696, 5122=>774, 5123=>696, 5124=>696,
+ 5125=>814, 5126=>814, 5127=>814, 5129=>814, 5130=>814, 5131=>814, 5132=>916, 5133=>908, 5134=>916, 5135=>908, 5136=>916, 5137=>908, 5138=>1034, 5139=>1025, 5140=>1034, 5141=>1025,
+ 5142=>814, 5143=>1034, 5144=>1028, 5145=>1034, 5146=>1028, 5147=>814, 5149=>278, 5150=>476, 5151=>382, 5152=>382, 5153=>355, 5154=>355, 5155=>355, 5156=>355, 5157=>507, 5158=>423,
+ 5159=>278, 5160=>355, 5161=>355, 5162=>355, 5163=>1092, 5164=>888, 5165=>1094, 5166=>1167, 5167=>696, 5168=>774, 5169=>696, 5170=>696, 5171=>797, 5172=>797, 5173=>797, 5175=>797,
+ 5176=>797, 5177=>797, 5178=>916, 5179=>908, 5180=>916, 5181=>908, 5182=>916, 5183=>908, 5184=>1034, 5185=>1025, 5186=>1034, 5187=>1025, 5188=>1034, 5189=>1028, 5190=>1034, 5191=>1028,
+ 5192=>797, 5193=>518, 5194=>206, 5196=>730, 5197=>812, 5198=>730, 5199=>730, 5200=>734, 5201=>734, 5202=>734, 5204=>734, 5205=>734, 5206=>734, 5207=>950, 5208=>943, 5209=>950,
+ 5210=>943, 5211=>950, 5212=>943, 5213=>954, 5214=>949, 5215=>954, 5216=>949, 5217=>954, 5218=>946, 5219=>954, 5220=>946, 5221=>954, 5222=>435, 5223=>904, 5224=>904, 5225=>921,
+ 5226=>915, 5227=>668, 5228=>743, 5229=>668, 5230=>668, 5231=>668, 5232=>668, 5233=>668, 5234=>668, 5235=>668, 5236=>926, 5237=>877, 5238=>882, 5239=>877, 5240=>882, 5241=>877,
+ 5242=>926, 5243=>877, 5244=>926, 5245=>877, 5246=>882, 5247=>877, 5248=>882, 5249=>877, 5250=>882, 5251=>451, 5252=>451, 5253=>844, 5254=>844, 5255=>844, 5256=>844, 5257=>668,
+ 5258=>743, 5259=>668, 5260=>668, 5261=>668, 5262=>668, 5263=>668, 5264=>668, 5265=>668, 5266=>926, 5267=>877, 5268=>926, 5269=>877, 5270=>926, 5271=>877, 5272=>926, 5273=>877,
+ 5274=>926, 5275=>877, 5276=>926, 5277=>877, 5278=>926, 5279=>877, 5280=>926, 5281=>451, 5282=>451, 5283=>563, 5284=>563, 5285=>563, 5286=>563, 5287=>563, 5288=>563, 5289=>563,
+ 5290=>563, 5291=>563, 5292=>793, 5293=>769, 5294=>777, 5295=>786, 5296=>777, 5297=>786, 5298=>793, 5299=>786, 5300=>793, 5301=>786, 5302=>777, 5303=>786, 5304=>777, 5305=>786,
+ 5306=>777, 5307=>392, 5308=>493, 5309=>392, 5312=>889, 5313=>988, 5314=>889, 5315=>889, 5316=>838, 5317=>838, 5318=>838, 5319=>838, 5320=>838, 5321=>1114, 5322=>1122, 5323=>1080,
+ 5324=>1105, 5325=>1080, 5326=>1105, 5327=>838, 5328=>593, 5329=>447, 5330=>593, 5331=>889, 5332=>988, 5333=>889, 5334=>889, 5335=>838, 5336=>838, 5337=>838, 5338=>838, 5339=>838,
+ 5340=>1107, 5341=>1122, 5342=>1155, 5343=>1105, 5344=>1155, 5345=>1105, 5346=>1105, 5347=>1093, 5348=>1105, 5349=>1093, 5350=>1155, 5351=>1105, 5352=>1155, 5353=>1105, 5354=>593, 5356=>797,
+ 5357=>657, 5358=>730, 5359=>657, 5360=>657, 5361=>657, 5362=>657, 5363=>657, 5364=>657, 5365=>657, 5366=>897, 5367=>862, 5368=>870, 5369=>890, 5370=>870, 5371=>890, 5372=>897,
+ 5373=>862, 5374=>897, 5375=>862, 5376=>870, 5377=>890, 5378=>870, 5379=>890, 5380=>870, 5381=>443, 5382=>414, 5383=>443, 5392=>831, 5393=>831, 5394=>831, 5395=>1022, 5396=>1022,
+ 5397=>1022, 5398=>1022, 5399=>1088, 5400=>1081, 5401=>1088, 5402=>1081, 5403=>1088, 5404=>1081, 5405=>1288, 5406=>1278, 5407=>1288, 5408=>1278, 5409=>1288, 5410=>1278, 5411=>1288, 5412=>1278,
+ 5413=>671, 5414=>698, 5415=>776, 5416=>698, 5417=>698, 5418=>698, 5419=>698, 5420=>698, 5421=>698, 5422=>698, 5423=>902, 5424=>903, 5425=>911, 5426=>896, 5427=>911, 5428=>896,
+ 5429=>902, 5430=>903, 5431=>902, 5432=>903, 5433=>911, 5434=>896, 5435=>911, 5436=>896, 5437=>911, 5438=>445, 5440=>355, 5441=>458, 5442=>929, 5443=>929, 5444=>878, 5445=>976,
+ 5446=>878, 5447=>878, 5448=>659, 5449=>659, 5450=>659, 5451=>659, 5452=>659, 5453=>659, 5454=>902, 5455=>863, 5456=>445, 5458=>797, 5459=>696, 5460=>774, 5461=>696, 5462=>696,
+ 5463=>835, 5464=>835, 5465=>835, 5466=>835, 5467=>1055, 5468=>1028, 5469=>542, 5470=>730, 5471=>730, 5472=>730, 5473=>730, 5474=>730, 5475=>730, 5476=>734, 5477=>734, 5478=>734,
+ 5479=>734, 5480=>954, 5481=>946, 5482=>493, 5492=>879, 5493=>879, 5494=>879, 5495=>879, 5496=>879, 5497=>879, 5498=>879, 5499=>556, 5500=>753, 5501=>458, 5502=>1114, 5503=>1114,
+ 5504=>1114, 5505=>1114, 5506=>1114, 5507=>1114, 5508=>1114, 5509=>890, 5514=>879, 5515=>879, 5516=>879, 5517=>879, 5518=>1432, 5519=>1432, 5520=>1432, 5521=>1165, 5522=>1165, 5523=>1432,
+ 5524=>1432, 5525=>763, 5526=>1146, 5536=>889, 5537=>889, 5538=>838, 5539=>838, 5540=>838, 5541=>838, 5542=>593, 5543=>698, 5544=>698, 5545=>698, 5546=>698, 5547=>698, 5548=>698,
+ 5549=>698, 5550=>445, 5551=>668, 5598=>747, 5601=>747, 5702=>446, 5703=>446, 5742=>371, 5743=>1114, 5744=>1432, 5745=>1814, 5746=>1814, 5747=>1548, 5748=>1510, 5749=>1814, 5750=>1814,
+ 5760=>489, 5761=>573, 5762=>851, 5763=>1128, 5764=>1406, 5765=>1684, 5766=>564, 5767=>842, 5768=>1128, 5769=>1403, 5770=>1684, 5771=>512, 5772=>789, 5773=>1068, 5774=>1347, 5775=>1626,
+ 5776=>573, 5777=>851, 5778=>1116, 5779=>1399, 5780=>1684, 5781=>512, 5782=>512, 5783=>709, 5784=>1110, 5785=>1403, 5786=>666, 5787=>574, 5788=>574, 7424=>586, 7425=>750, 7426=>943,
+ 7427=>547, 7428=>533, 7429=>608, 7430=>608, 7431=>502, 7432=>501, 7433=>308, 7434=>444, 7435=>598, 7436=>485, 7437=>735, 7438=>630, 7439=>618, 7440=>533, 7441=>594, 7442=>594,
+ 7443=>594, 7444=>984, 7446=>618, 7447=>618, 7448=>500, 7449=>578, 7450=>578, 7451=>521, 7452=>571, 7453=>663, 7454=>853, 7455=>625, 7456=>586, 7457=>831, 7458=>523, 7459=>581,
+ 7462=>485, 7463=>586, 7464=>622, 7465=>500, 7466=>703, 7467=>659, 7468=>438, 7469=>615, 7470=>432, 7472=>470, 7473=>387, 7474=>387, 7475=>465, 7476=>474, 7477=>211, 7478=>211,
+ 7479=>439, 7480=>361, 7481=>563, 7482=>474, 7483=>474, 7484=>481, 7485=>458, 7486=>415, 7487=>436, 7488=>387, 7489=>460, 7490=>625, 7491=>412, 7492=>412, 7493=>431, 7494=>641,
+ 7495=>431, 7496=>431, 7497=>431, 7498=>431, 7499=>347, 7500=>347, 7501=>431, 7502=>197, 7503=>438, 7504=>597, 7505=>410, 7506=>439, 7507=>372, 7508=>439, 7509=>439, 7510=>431,
+ 7511=>349, 7512=>410, 7513=>416, 7514=>597, 7515=>451, 7517=>405, 7518=>386, 7519=>389, 7520=>443, 7521=>365, 7522=>197, 7523=>284, 7524=>410, 7525=>451, 7526=>405, 7527=>386,
+ 7528=>405, 7529=>443, 7530=>365, 7543=>644, 7544=>474, 7547=>491, 7557=>462, 7579=>431, 7580=>372, 7581=>372, 7582=>439, 7583=>347, 7584=>339, 7585=>313, 7586=>431, 7587=>410,
+ 7588=>312, 7589=>253, 7590=>312, 7591=>312, 7592=>388, 7593=>293, 7594=>296, 7595=>333, 7596=>598, 7597=>597, 7598=>505, 7599=>505, 7600=>403, 7601=>439, 7602=>488, 7603=>379,
+ 7604=>356, 7605=>349, 7606=>524, 7607=>444, 7608=>359, 7609=>405, 7610=>451, 7611=>375, 7612=>471, 7613=>422, 7614=>409, 7615=>382, 7620=>0, 7621=>0, 7622=>0, 7623=>0,
+ 7624=>0, 7625=>0, 7680=>696, 7681=>607, 7682=>686, 7683=>644, 7684=>686, 7685=>644, 7686=>686, 7687=>644, 7688=>660, 7689=>533, 7690=>747, 7691=>644, 7692=>747, 7693=>644,
+ 7694=>747, 7695=>644, 7696=>747, 7697=>644, 7698=>747, 7699=>644, 7700=>615, 7701=>610, 7702=>615, 7703=>610, 7704=>615, 7705=>610, 7706=>615, 7707=>610, 7708=>615, 7709=>610,
+ 7710=>615, 7711=>391, 7712=>738, 7713=>644, 7714=>753, 7715=>641, 7716=>753, 7717=>641, 7718=>753, 7719=>641, 7720=>753, 7721=>641, 7722=>753, 7723=>641, 7724=>334, 7725=>308,
+ 7726=>334, 7727=>308, 7728=>697, 7729=>598, 7730=>697, 7731=>598, 7732=>697, 7733=>598, 7734=>573, 7735=>308, 7736=>573, 7737=>308, 7738=>573, 7739=>308, 7740=>573, 7741=>308,
+ 7742=>896, 7743=>938, 7744=>896, 7745=>938, 7746=>896, 7747=>938, 7748=>753, 7749=>641, 7750=>753, 7751=>641, 7752=>753, 7753=>641, 7754=>753, 7755=>641, 7756=>765, 7757=>618,
+ 7758=>765, 7759=>618, 7760=>765, 7761=>618, 7762=>765, 7763=>618, 7764=>659, 7765=>644, 7766=>659, 7767=>644, 7768=>693, 7769=>444, 7770=>693, 7771=>444, 7772=>693, 7773=>444,
+ 7774=>693, 7775=>444, 7776=>648, 7777=>536, 7778=>648, 7779=>536, 7780=>648, 7781=>536, 7782=>648, 7783=>536, 7784=>648, 7785=>536, 7786=>614, 7787=>430, 7788=>614, 7789=>430,
+ 7790=>614, 7791=>430, 7792=>614, 7793=>430, 7794=>730, 7795=>641, 7796=>730, 7797=>641, 7798=>730, 7799=>641, 7800=>730, 7801=>641, 7802=>730, 7803=>641, 7804=>696, 7805=>586,
+ 7806=>696, 7807=>586, 7808=>993, 7809=>831, 7810=>993, 7811=>831, 7812=>993, 7813=>831, 7814=>993, 7815=>831, 7816=>993, 7817=>831, 7818=>694, 7819=>580, 7820=>694, 7821=>580,
+ 7822=>651, 7823=>586, 7824=>652, 7825=>523, 7826=>652, 7827=>523, 7828=>652, 7829=>523, 7830=>641, 7831=>430, 7832=>831, 7833=>586, 7834=>607, 7835=>391, 7839=>618, 7840=>696,
+ 7841=>607, 7842=>696, 7843=>607, 7844=>696, 7845=>607, 7846=>696, 7847=>607, 7848=>696, 7849=>607, 7850=>696, 7851=>607, 7852=>696, 7853=>607, 7854=>696, 7855=>607, 7856=>696,
+ 7857=>607, 7858=>696, 7859=>607, 7860=>696, 7861=>607, 7862=>696, 7863=>607, 7864=>615, 7865=>610, 7866=>615, 7867=>610, 7868=>615, 7869=>610, 7870=>615, 7871=>610, 7872=>615,
+ 7873=>610, 7874=>615, 7875=>610, 7876=>615, 7877=>610, 7878=>615, 7879=>610, 7880=>334, 7881=>308, 7882=>334, 7883=>308, 7884=>765, 7885=>618, 7886=>765, 7887=>618, 7888=>765,
+ 7889=>618, 7890=>765, 7891=>618, 7892=>765, 7893=>618, 7894=>765, 7895=>618, 7896=>765, 7897=>618, 7898=>786, 7899=>618, 7900=>786, 7901=>618, 7902=>786, 7903=>618, 7904=>786,
+ 7905=>618, 7906=>786, 7907=>618, 7908=>730, 7909=>641, 7910=>730, 7911=>641, 7912=>751, 7913=>641, 7914=>751, 7915=>641, 7916=>751, 7917=>641, 7918=>751, 7919=>641, 7920=>751,
+ 7921=>641, 7922=>651, 7923=>586, 7924=>651, 7925=>586, 7926=>651, 7927=>586, 7928=>651, 7929=>586, 7936=>618, 7937=>618, 7938=>618, 7939=>618, 7940=>618, 7941=>618, 7942=>618,
+ 7943=>618, 7944=>696, 7945=>696, 7946=>937, 7947=>939, 7948=>841, 7949=>866, 7950=>751, 7951=>773, 7952=>501, 7953=>501, 7954=>501, 7955=>501, 7956=>501, 7957=>501, 7960=>712,
+ 7961=>715, 7962=>989, 7963=>986, 7964=>920, 7965=>947, 7968=>641, 7969=>641, 7970=>641, 7971=>641, 7972=>641, 7973=>641, 7974=>641, 7975=>641, 7976=>851, 7977=>856, 7978=>1125,
+ 7979=>1125, 7980=>1062, 7981=>1085, 7982=>948, 7983=>956, 7984=>351, 7985=>351, 7986=>351, 7987=>351, 7988=>351, 7989=>351, 7990=>351, 7991=>351, 7992=>435, 7993=>440, 7994=>699,
+ 7995=>707, 7996=>641, 7997=>664, 7998=>544, 7999=>544, 8000=>618, 8001=>618, 8002=>618, 8003=>618, 8004=>618, 8005=>618, 8008=>802, 8009=>839, 8010=>1099, 8011=>1101, 8012=>947,
+ 8013=>974, 8016=>607, 8017=>607, 8018=>607, 8019=>607, 8020=>607, 8021=>607, 8022=>607, 8023=>607, 8025=>837, 8027=>1065, 8029=>1079, 8031=>944, 8032=>782, 8033=>782, 8034=>782,
+ 8035=>782, 8036=>782, 8037=>782, 8038=>782, 8039=>782, 8040=>817, 8041=>862, 8042=>1121, 8043=>1126, 8044=>968, 8045=>994, 8046=>925, 8047=>968, 8048=>618, 8049=>618, 8050=>501,
+ 8051=>501, 8052=>641, 8053=>641, 8054=>351, 8055=>351, 8056=>618, 8057=>618, 8058=>607, 8059=>607, 8060=>782, 8061=>782, 8064=>618, 8065=>618, 8066=>618, 8067=>618, 8068=>618,
+ 8069=>618, 8070=>618, 8071=>618, 8072=>696, 8073=>696, 8074=>937, 8075=>939, 8076=>841, 8077=>866, 8078=>751, 8079=>773, 8080=>641, 8081=>641, 8082=>641, 8083=>641, 8084=>641,
+ 8085=>641, 8086=>641, 8087=>641, 8088=>851, 8089=>856, 8090=>1125, 8091=>1125, 8092=>1062, 8093=>1085, 8094=>948, 8095=>956, 8096=>782, 8097=>782, 8098=>782, 8099=>782, 8100=>782,
+ 8101=>782, 8102=>782, 8103=>782, 8104=>817, 8105=>862, 8106=>1121, 8107=>1126, 8108=>968, 8109=>994, 8110=>925, 8111=>968, 8112=>618, 8113=>618, 8114=>618, 8115=>618, 8116=>618,
+ 8118=>618, 8119=>618, 8120=>696, 8121=>696, 8122=>789, 8123=>717, 8124=>696, 8125=>450, 8126=>450, 8127=>450, 8128=>450, 8129=>450, 8130=>641, 8131=>641, 8132=>641, 8134=>641,
+ 8135=>641, 8136=>836, 8137=>761, 8138=>972, 8139=>908, 8140=>753, 8141=>450, 8142=>450, 8143=>450, 8144=>351, 8145=>351, 8146=>351, 8147=>351, 8150=>351, 8151=>351, 8152=>334,
+ 8153=>334, 8154=>559, 8155=>507, 8157=>450, 8158=>450, 8159=>450, 8160=>607, 8161=>607, 8162=>607, 8163=>607, 8164=>644, 8165=>644, 8166=>607, 8167=>607, 8168=>651, 8169=>651,
+ 8170=>918, 8171=>882, 8172=>754, 8173=>450, 8174=>450, 8175=>450, 8178=>782, 8179=>782, 8180=>782, 8182=>782, 8183=>782, 8184=>958, 8185=>801, 8186=>976, 8187=>804, 8188=>765,
+ 8189=>450, 8190=>450, 8192=>450, 8193=>900, 8194=>450, 8195=>900, 8196=>296, 8197=>225, 8198=>150, 8199=>626, 8200=>342, 8201=>180, 8202=>89, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>374, 8209=>374, 8210=>626, 8213=>900, 8214=>450, 8215=>450, 8219=>342, 8223=>591, 8227=>575, 8228=>299, 8229=>600, 8231=>313, 8234=>0, 8235=>0,
+ 8236=>0, 8237=>0, 8238=>0, 8239=>180, 8241=>1698, 8242=>237, 8243=>402, 8244=>567, 8245=>237, 8246=>402, 8247=>567, 8248=>659, 8251=>875, 8252=>564, 8253=>522, 8254=>450,
+ 8255=>745, 8256=>745, 8257=>296, 8258=>920, 8259=>450, 8260=>410, 8261=>411, 8262=>411, 8263=>927, 8264=>746, 8265=>746, 8266=>461, 8267=>572, 8268=>450, 8269=>450, 8270=>470,
+ 8271=>360, 8272=>745, 8273=>470, 8274=>500, 8275=>754, 8276=>745, 8277=>754, 8278=>615, 8279=>731, 8280=>754, 8281=>754, 8282=>342, 8283=>784, 8284=>754, 8285=>342, 8286=>342,
+ 8287=>200, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0, 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>394, 8305=>197, 8308=>394, 8309=>394,
+ 8310=>394, 8311=>394, 8312=>394, 8313=>394, 8314=>475, 8315=>475, 8316=>475, 8317=>259, 8318=>259, 8319=>410, 8320=>394, 8321=>394, 8322=>394, 8323=>394, 8324=>394, 8325=>394,
+ 8326=>394, 8327=>394, 8328=>394, 8329=>394, 8330=>475, 8331=>475, 8332=>475, 8333=>259, 8334=>259, 8336=>412, 8337=>431, 8338=>439, 8339=>371, 8340=>431, 8352=>836, 8353=>626,
+ 8354=>626, 8355=>626, 8356=>626, 8357=>938, 8358=>753, 8359=>1366, 8360=>1084, 8361=>993, 8362=>813, 8363=>626, 8365=>626, 8366=>614, 8367=>1252, 8368=>626, 8369=>626, 8370=>626,
+ 8371=>626, 8372=>773, 8373=>626, 8400=>0, 8401=>0, 8406=>0, 8407=>0, 8411=>0, 8412=>0, 8417=>0, 8448=>1007, 8449=>1053, 8450=>660, 8451=>1090, 8452=>806, 8453=>982,
+ 8454=>1029, 8455=>553, 8456=>628, 8457=>978, 8459=>965, 8460=>822, 8461=>799, 8462=>641, 8463=>641, 8464=>537, 8465=>627, 8466=>771, 8467=>424, 8468=>876, 8469=>753, 8470=>1083,
+ 8471=>900, 8472=>627, 8473=>675, 8474=>765, 8475=>844, 8476=>732, 8477=>721, 8478=>807, 8479=>639, 8480=>917, 8481=>1152, 8483=>679, 8484=>679, 8485=>520, 8486=>765, 8487=>765,
+ 8488=>686, 8489=>304, 8490=>697, 8491=>696, 8492=>835, 8493=>736, 8494=>769, 8495=>572, 8496=>656, 8497=>727, 8498=>615, 8499=>1065, 8500=>418, 8501=>714, 8502=>658, 8503=>444,
+ 8504=>615, 8505=>342, 8506=>851, 8507=>1213, 8508=>710, 8509=>663, 8510=>589, 8511=>776, 8512=>756, 8513=>697, 8514=>501, 8515=>573, 8516=>684, 8517=>747, 8518=>644, 8519=>610,
+ 8520=>308, 8521=>308, 8523=>785, 8526=>492, 8531=>932, 8532=>932, 8533=>932, 8534=>932, 8535=>932, 8536=>932, 8537=>932, 8538=>932, 8539=>932, 8540=>932, 8541=>932, 8542=>932,
+ 8543=>554, 8544=>334, 8545=>593, 8546=>851, 8547=>989, 8548=>696, 8549=>989, 8550=>1247, 8551=>1505, 8552=>1008, 8553=>694, 8554=>1008, 8555=>1266, 8556=>573, 8557=>660, 8558=>747,
+ 8559=>896, 8560=>308, 8561=>546, 8562=>785, 8563=>885, 8564=>586, 8565=>866, 8566=>1104, 8567=>1342, 8568=>872, 8569=>580, 8570=>872, 8571=>1110, 8572=>308, 8573=>533, 8574=>644,
+ 8575=>938, 8576=>1160, 8577=>747, 8578=>1160, 8579=>660, 8580=>533, 8592=>754, 8593=>754, 8594=>754, 8595=>754, 8596=>754, 8597=>754, 8598=>754, 8599=>754, 8600=>754, 8601=>754,
+ 8602=>754, 8603=>754, 8604=>754, 8605=>754, 8606=>754, 8607=>754, 8608=>754, 8609=>754, 8610=>754, 8611=>754, 8612=>754, 8613=>754, 8614=>754, 8615=>754, 8616=>754, 8617=>754,
+ 8618=>754, 8619=>754, 8620=>754, 8621=>754, 8622=>754, 8623=>754, 8624=>754, 8625=>754, 8626=>754, 8627=>754, 8628=>754, 8629=>754, 8630=>754, 8631=>754, 8632=>754, 8633=>754,
+ 8634=>754, 8635=>754, 8636=>754, 8637=>754, 8638=>754, 8639=>754, 8640=>754, 8641=>754, 8642=>754, 8643=>754, 8644=>754, 8645=>754, 8646=>754, 8647=>754, 8648=>754, 8649=>754,
+ 8650=>754, 8651=>754, 8652=>754, 8653=>754, 8654=>754, 8655=>754, 8656=>754, 8657=>754, 8658=>754, 8659=>754, 8660=>754, 8661=>754, 8662=>754, 8663=>754, 8664=>754, 8665=>754,
+ 8666=>754, 8667=>754, 8668=>754, 8669=>754, 8670=>754, 8671=>754, 8672=>754, 8673=>754, 8674=>754, 8675=>754, 8676=>754, 8677=>754, 8678=>754, 8679=>754, 8680=>754, 8681=>754,
+ 8682=>754, 8683=>754, 8684=>754, 8685=>754, 8686=>754, 8687=>754, 8688=>754, 8689=>754, 8690=>754, 8691=>754, 8692=>754, 8693=>754, 8694=>754, 8695=>754, 8696=>754, 8697=>754,
+ 8698=>754, 8699=>754, 8700=>754, 8701=>754, 8702=>754, 8703=>754, 8704=>696, 8705=>626, 8706=>489, 8707=>615, 8708=>615, 8709=>771, 8710=>627, 8711=>627, 8712=>807, 8713=>807,
+ 8714=>675, 8715=>807, 8716=>807, 8717=>675, 8718=>572, 8719=>708, 8720=>708, 8721=>646, 8722=>754, 8723=>754, 8724=>626, 8725=>150, 8726=>626, 8727=>754, 8728=>563, 8729=>342,
+ 8730=>600, 8731=>600, 8732=>600, 8733=>602, 8734=>750, 8735=>754, 8736=>807, 8737=>807, 8738=>754, 8739=>450, 8740=>450, 8741=>450, 8742=>450, 8743=>730, 8744=>730, 8745=>730,
+ 8746=>730, 8747=>549, 8748=>835, 8749=>1165, 8750=>506, 8751=>879, 8752=>1181, 8753=>506, 8754=>506, 8755=>506, 8756=>626, 8757=>626, 8758=>264, 8759=>626, 8760=>754, 8761=>754,
+ 8762=>754, 8763=>754, 8764=>754, 8765=>754, 8766=>754, 8767=>754, 8768=>337, 8769=>754, 8770=>754, 8771=>754, 8772=>754, 8773=>754, 8774=>754, 8775=>754, 8776=>754, 8777=>754,
+ 8778=>754, 8779=>754, 8780=>754, 8781=>754, 8782=>754, 8783=>754, 8784=>754, 8785=>754, 8786=>754, 8787=>754, 8788=>956, 8789=>956, 8790=>754, 8791=>754, 8792=>754, 8793=>754,
+ 8794=>754, 8795=>754, 8796=>754, 8797=>754, 8798=>754, 8799=>754, 8800=>754, 8801=>754, 8802=>754, 8803=>754, 8804=>754, 8805=>754, 8806=>754, 8807=>754, 8808=>756, 8809=>756,
+ 8810=>942, 8811=>942, 8812=>450, 8813=>754, 8814=>754, 8815=>754, 8816=>754, 8817=>754, 8818=>754, 8819=>754, 8820=>754, 8821=>754, 8822=>754, 8823=>754, 8824=>754, 8825=>754,
+ 8826=>754, 8827=>754, 8828=>754, 8829=>754, 8830=>754, 8831=>754, 8832=>754, 8833=>754, 8834=>754, 8835=>754, 8836=>754, 8837=>754, 8838=>754, 8839=>754, 8840=>754, 8841=>754,
+ 8842=>754, 8843=>754, 8844=>730, 8845=>730, 8846=>730, 8847=>754, 8848=>754, 8849=>754, 8850=>754, 8851=>678, 8852=>678, 8853=>754, 8854=>754, 8855=>754, 8856=>754, 8857=>754,
+ 8858=>754, 8859=>754, 8860=>754, 8861=>754, 8862=>754, 8863=>754, 8864=>754, 8865=>754, 8866=>822, 8867=>822, 8868=>822, 8869=>822, 8870=>488, 8871=>488, 8872=>822, 8873=>822,
+ 8874=>822, 8875=>822, 8876=>822, 8877=>822, 8878=>822, 8879=>822, 8882=>754, 8883=>754, 8884=>754, 8885=>754, 8886=>900, 8887=>900, 8888=>754, 8889=>754, 8890=>488, 8891=>730,
+ 8892=>730, 8893=>730, 8894=>754, 8895=>754, 8896=>758, 8897=>758, 8898=>758, 8899=>758, 8900=>494, 8901=>342, 8902=>563, 8904=>900, 8905=>900, 8906=>900, 8907=>900, 8908=>900,
+ 8909=>754, 8910=>730, 8911=>730, 8918=>754, 8919=>754, 8920=>1280, 8921=>1280, 8922=>754, 8923=>754, 8924=>754, 8925=>754, 8926=>754, 8927=>754, 8928=>754, 8929=>754, 8930=>754,
+ 8931=>754, 8932=>754, 8933=>754, 8934=>754, 8935=>754, 8936=>754, 8937=>754, 8938=>754, 8939=>754, 8940=>754, 8941=>754, 8942=>900, 8943=>900, 8944=>900, 8945=>900, 8946=>1042,
+ 8947=>807, 8948=>675, 8949=>807, 8950=>807, 8951=>675, 8952=>807, 8953=>807, 8954=>1042, 8955=>807, 8956=>675, 8957=>807, 8958=>675, 8959=>807, 8960=>542, 8961=>542, 8962=>644,
+ 8963=>754, 8964=>754, 8965=>754, 8966=>754, 8967=>439, 8968=>411, 8969=>411, 8970=>411, 8971=>411, 8972=>728, 8973=>728, 8974=>728, 8975=>728, 8976=>754, 8977=>484, 8984=>835,
+ 8985=>754, 8988=>422, 8989=>422, 8990=>422, 8991=>422, 8992=>549, 8993=>549, 8996=>1037, 8997=>1037, 8998=>1272, 8999=>1037, 9000=>1299, 9003=>1272, 9004=>786, 9075=>351, 9076=>644,
+ 9077=>782, 9082=>618, 9085=>776, 9095=>1037, 9108=>786, 9115=>450, 9116=>450, 9117=>450, 9118=>450, 9119=>450, 9120=>450, 9121=>450, 9122=>450, 9123=>450, 9124=>450, 9125=>450,
+ 9126=>450, 9127=>675, 9128=>675, 9129=>675, 9130=>675, 9131=>675, 9132=>675, 9133=>675, 9134=>549, 9166=>754, 9167=>850, 9187=>786, 9189=>692, 9250=>644, 9251=>644, 9312=>762,
+ 9313=>762, 9314=>762, 9315=>762, 9316=>762, 9317=>762, 9318=>762, 9319=>762, 9320=>762, 9321=>762, 9600=>692, 9601=>692, 9602=>692, 9603=>692, 9604=>692, 9605=>692, 9606=>692,
+ 9607=>692, 9608=>692, 9609=>692, 9610=>692, 9611=>692, 9612=>692, 9613=>692, 9614=>692, 9615=>692, 9616=>692, 9617=>692, 9618=>692, 9619=>692, 9620=>692, 9621=>692, 9622=>692,
+ 9623=>692, 9624=>692, 9625=>692, 9626=>692, 9627=>692, 9628=>692, 9629=>692, 9630=>692, 9631=>692, 9632=>850, 9633=>850, 9634=>850, 9635=>850, 9636=>850, 9637=>850, 9638=>850,
+ 9639=>850, 9640=>850, 9641=>850, 9642=>610, 9643=>610, 9644=>850, 9645=>850, 9646=>495, 9647=>495, 9648=>692, 9649=>692, 9650=>692, 9651=>692, 9652=>452, 9653=>452, 9654=>692,
+ 9655=>692, 9656=>452, 9657=>452, 9658=>692, 9659=>692, 9660=>692, 9661=>692, 9662=>452, 9663=>452, 9664=>692, 9665=>692, 9666=>452, 9667=>452, 9668=>692, 9669=>692, 9670=>692,
+ 9671=>692, 9672=>692, 9673=>785, 9674=>444, 9675=>785, 9676=>785, 9677=>785, 9678=>785, 9679=>785, 9680=>785, 9681=>785, 9682=>785, 9683=>785, 9684=>785, 9685=>785, 9686=>474,
+ 9687=>474, 9688=>756, 9689=>873, 9690=>873, 9691=>873, 9692=>348, 9693=>348, 9694=>348, 9695=>348, 9696=>692, 9697=>692, 9698=>692, 9699=>692, 9700=>692, 9701=>692, 9702=>575,
+ 9703=>850, 9704=>850, 9705=>850, 9706=>850, 9707=>850, 9708=>692, 9709=>692, 9710=>692, 9711=>1007, 9712=>850, 9713=>850, 9714=>850, 9715=>850, 9716=>785, 9717=>785, 9718=>785,
+ 9719=>785, 9720=>692, 9721=>692, 9722=>692, 9723=>747, 9724=>747, 9725=>659, 9726=>659, 9727=>692, 9728=>807, 9729=>900, 9730=>807, 9731=>807, 9732=>807, 9733=>807, 9734=>807,
+ 9735=>515, 9736=>806, 9737=>807, 9738=>799, 9739=>799, 9740=>604, 9741=>911, 9742=>1121, 9743=>1125, 9744=>807, 9745=>807, 9746=>807, 9747=>479, 9748=>807, 9749=>807, 9750=>807,
+ 9751=>807, 9752=>807, 9753=>807, 9754=>807, 9755=>807, 9756=>807, 9757=>548, 9758=>807, 9759=>548, 9760=>807, 9761=>807, 9762=>807, 9763=>807, 9764=>602, 9765=>671, 9766=>584,
+ 9767=>705, 9768=>490, 9769=>807, 9770=>807, 9771=>807, 9772=>639, 9773=>807, 9774=>807, 9775=>807, 9776=>896, 9777=>896, 9778=>896, 9779=>896, 9780=>896, 9781=>896, 9782=>896,
+ 9783=>896, 9784=>807, 9785=>807, 9786=>807, 9787=>807, 9788=>807, 9789=>807, 9790=>807, 9791=>552, 9792=>658, 9793=>658, 9794=>807, 9795=>807, 9796=>807, 9797=>807, 9798=>807,
+ 9799=>807, 9800=>807, 9801=>807, 9802=>807, 9803=>807, 9804=>807, 9805=>807, 9806=>807, 9807=>807, 9808=>807, 9809=>807, 9810=>807, 9811=>807, 9812=>807, 9813=>807, 9814=>807,
+ 9815=>807, 9816=>807, 9817=>807, 9818=>807, 9819=>807, 9820=>807, 9821=>807, 9822=>807, 9823=>807, 9824=>807, 9825=>807, 9826=>807, 9827=>807, 9828=>807, 9829=>807, 9830=>807,
+ 9831=>807, 9832=>807, 9833=>424, 9834=>574, 9835=>807, 9836=>807, 9837=>424, 9838=>321, 9839=>435, 9840=>673, 9841=>689, 9842=>807, 9843=>807, 9844=>807, 9845=>807, 9846=>807,
+ 9847=>807, 9848=>807, 9849=>807, 9850=>807, 9851=>807, 9852=>807, 9853=>807, 9854=>807, 9855=>807, 9856=>782, 9857=>782, 9858=>782, 9859=>782, 9860=>782, 9861=>782, 9862=>807,
+ 9863=>807, 9864=>807, 9865=>807, 9866=>807, 9867=>807, 9868=>807, 9869=>807, 9870=>807, 9871=>807, 9872=>807, 9873=>807, 9874=>807, 9875=>807, 9876=>807, 9877=>487, 9878=>807,
+ 9879=>807, 9880=>807, 9881=>807, 9882=>807, 9883=>807, 9884=>807, 9888=>807, 9889=>632, 9890=>903, 9891=>977, 9892=>1028, 9893=>811, 9894=>754, 9895=>754, 9896=>754, 9897=>754,
+ 9898=>754, 9899=>754, 9900=>754, 9901=>754, 9902=>754, 9903=>754, 9904=>759, 9905=>754, 9906=>658, 9985=>754, 9986=>754, 9987=>754, 9988=>754, 9990=>754, 9991=>754, 9992=>754,
+ 9993=>754, 9996=>754, 9997=>754, 9998=>754, 9999=>754, 10000=>754, 10001=>754, 10002=>754, 10003=>754, 10004=>754, 10005=>754, 10006=>754, 10007=>754, 10008=>754, 10009=>754, 10010=>754,
+ 10011=>754, 10012=>754, 10013=>754, 10014=>754, 10015=>754, 10016=>754, 10017=>754, 10018=>754, 10019=>754, 10020=>754, 10021=>754, 10022=>754, 10023=>754, 10025=>754, 10026=>754, 10027=>754,
+ 10028=>754, 10029=>754, 10030=>754, 10031=>754, 10032=>754, 10033=>754, 10034=>754, 10035=>754, 10036=>754, 10037=>754, 10038=>754, 10039=>754, 10040=>754, 10041=>754, 10042=>754, 10043=>754,
+ 10044=>754, 10045=>754, 10046=>754, 10047=>754, 10048=>754, 10049=>754, 10050=>754, 10051=>754, 10052=>754, 10053=>754, 10054=>754, 10055=>754, 10056=>754, 10057=>754, 10058=>754, 10059=>754,
+ 10061=>807, 10063=>807, 10064=>807, 10065=>807, 10066=>807, 10070=>807, 10072=>754, 10073=>754, 10074=>754, 10075=>312, 10076=>312, 10077=>528, 10078=>528, 10081=>754, 10082=>754, 10083=>754,
+ 10084=>754, 10085=>754, 10086=>754, 10087=>754, 10088=>754, 10089=>754, 10090=>754, 10091=>754, 10092=>754, 10093=>754, 10094=>754, 10095=>754, 10096=>754, 10097=>754, 10098=>754, 10099=>754,
+ 10100=>754, 10101=>754, 10102=>762, 10103=>762, 10104=>762, 10105=>762, 10106=>762, 10107=>762, 10108=>762, 10109=>762, 10110=>762, 10111=>762, 10112=>754, 10113=>754, 10114=>754, 10115=>754,
+ 10116=>754, 10117=>754, 10118=>754, 10119=>754, 10120=>754, 10121=>754, 10122=>754, 10123=>754, 10124=>754, 10125=>754, 10126=>754, 10127=>754, 10128=>754, 10129=>754, 10130=>754, 10131=>754,
+ 10132=>754, 10136=>754, 10137=>754, 10138=>754, 10139=>754, 10140=>754, 10141=>754, 10142=>754, 10143=>754, 10144=>754, 10145=>754, 10146=>754, 10147=>754, 10148=>754, 10149=>754, 10150=>754,
+ 10151=>754, 10152=>754, 10153=>754, 10154=>754, 10155=>754, 10156=>754, 10157=>754, 10158=>754, 10159=>754, 10161=>754, 10162=>754, 10163=>754, 10164=>754, 10165=>754, 10166=>754, 10167=>754,
+ 10168=>754, 10169=>754, 10170=>754, 10171=>754, 10172=>754, 10173=>754, 10174=>754, 10208=>444, 10214=>438, 10215=>438, 10216=>411, 10217=>411, 10218=>648, 10219=>648, 10224=>754, 10225=>754,
+ 10226=>754, 10227=>754, 10228=>1042, 10229=>1290, 10230=>1290, 10231=>1290, 10232=>1290, 10233=>1290, 10234=>1290, 10235=>1290, 10236=>1290, 10237=>1290, 10238=>1290, 10239=>1290, 10240=>703, 10241=>703,
+ 10242=>703, 10243=>703, 10244=>703, 10245=>703, 10246=>703, 10247=>703, 10248=>703, 10249=>703, 10250=>703, 10251=>703, 10252=>703, 10253=>703, 10254=>703, 10255=>703, 10256=>703, 10257=>703,
+ 10258=>703, 10259=>703, 10260=>703, 10261=>703, 10262=>703, 10263=>703, 10264=>703, 10265=>703, 10266=>703, 10267=>703, 10268=>703, 10269=>703, 10270=>703, 10271=>703, 10272=>703, 10273=>703,
+ 10274=>703, 10275=>703, 10276=>703, 10277=>703, 10278=>703, 10279=>703, 10280=>703, 10281=>703, 10282=>703, 10283=>703, 10284=>703, 10285=>703, 10286=>703, 10287=>703, 10288=>703, 10289=>703,
+ 10290=>703, 10291=>703, 10292=>703, 10293=>703, 10294=>703, 10295=>703, 10296=>703, 10297=>703, 10298=>703, 10299=>703, 10300=>703, 10301=>703, 10302=>703, 10303=>703, 10304=>703, 10305=>703,
+ 10306=>703, 10307=>703, 10308=>703, 10309=>703, 10310=>703, 10311=>703, 10312=>703, 10313=>703, 10314=>703, 10315=>703, 10316=>703, 10317=>703, 10318=>703, 10319=>703, 10320=>703, 10321=>703,
+ 10322=>703, 10323=>703, 10324=>703, 10325=>703, 10326=>703, 10327=>703, 10328=>703, 10329=>703, 10330=>703, 10331=>703, 10332=>703, 10333=>703, 10334=>703, 10335=>703, 10336=>703, 10337=>703,
+ 10338=>703, 10339=>703, 10340=>703, 10341=>703, 10342=>703, 10343=>703, 10344=>703, 10345=>703, 10346=>703, 10347=>703, 10348=>703, 10349=>703, 10350=>703, 10351=>703, 10352=>703, 10353=>703,
+ 10354=>703, 10355=>703, 10356=>703, 10357=>703, 10358=>703, 10359=>703, 10360=>703, 10361=>703, 10362=>703, 10363=>703, 10364=>703, 10365=>703, 10366=>703, 10367=>703, 10368=>703, 10369=>703,
+ 10370=>703, 10371=>703, 10372=>703, 10373=>703, 10374=>703, 10375=>703, 10376=>703, 10377=>703, 10378=>703, 10379=>703, 10380=>703, 10381=>703, 10382=>703, 10383=>703, 10384=>703, 10385=>703,
+ 10386=>703, 10387=>703, 10388=>703, 10389=>703, 10390=>703, 10391=>703, 10392=>703, 10393=>703, 10394=>703, 10395=>703, 10396=>703, 10397=>703, 10398=>703, 10399=>703, 10400=>703, 10401=>703,
+ 10402=>703, 10403=>703, 10404=>703, 10405=>703, 10406=>703, 10407=>703, 10408=>703, 10409=>703, 10410=>703, 10411=>703, 10412=>703, 10413=>703, 10414=>703, 10415=>703, 10416=>703, 10417=>703,
+ 10418=>703, 10419=>703, 10420=>703, 10421=>703, 10422=>703, 10423=>703, 10424=>703, 10425=>703, 10426=>703, 10427=>703, 10428=>703, 10429=>703, 10430=>703, 10431=>703, 10432=>703, 10433=>703,
+ 10434=>703, 10435=>703, 10436=>703, 10437=>703, 10438=>703, 10439=>703, 10440=>703, 10441=>703, 10442=>703, 10443=>703, 10444=>703, 10445=>703, 10446=>703, 10447=>703, 10448=>703, 10449=>703,
+ 10450=>703, 10451=>703, 10452=>703, 10453=>703, 10454=>703, 10455=>703, 10456=>703, 10457=>703, 10458=>703, 10459=>703, 10460=>703, 10461=>703, 10462=>703, 10463=>703, 10464=>703, 10465=>703,
+ 10466=>703, 10467=>703, 10468=>703, 10469=>703, 10470=>703, 10471=>703, 10472=>703, 10473=>703, 10474=>703, 10475=>703, 10476=>703, 10477=>703, 10478=>703, 10479=>703, 10480=>703, 10481=>703,
+ 10482=>703, 10483=>703, 10484=>703, 10485=>703, 10486=>703, 10487=>703, 10488=>703, 10489=>703, 10490=>703, 10491=>703, 10492=>703, 10493=>703, 10494=>703, 10495=>703, 10502=>754, 10503=>754,
+ 10506=>754, 10507=>754, 10560=>754, 10561=>754, 10627=>678, 10628=>678, 10702=>754, 10703=>941, 10704=>941, 10705=>900, 10706=>900, 10707=>900, 10708=>900, 10709=>900, 10731=>444, 10746=>754,
+ 10747=>754, 10752=>900, 10753=>900, 10754=>900, 10764=>1495, 10765=>506, 10766=>506, 10767=>506, 10768=>506, 10769=>506, 10770=>506, 10771=>506, 10772=>506, 10773=>506, 10774=>506, 10775=>506,
+ 10776=>506, 10777=>506, 10778=>506, 10779=>506, 10780=>506, 10799=>754, 10877=>754, 10878=>754, 10879=>754, 10880=>754, 10881=>754, 10882=>754, 10883=>754, 10884=>754, 10885=>754, 10886=>754,
+ 10887=>754, 10888=>754, 10889=>754, 10890=>754, 10891=>754, 10892=>754, 10893=>754, 10894=>754, 10895=>754, 10896=>754, 10897=>754, 10898=>754, 10899=>754, 10900=>754, 10901=>754, 10902=>754,
+ 10903=>754, 10904=>754, 10905=>754, 10906=>754, 10907=>754, 10908=>754, 10909=>754, 10910=>754, 10911=>754, 10912=>754, 10926=>754, 10927=>754, 10928=>754, 10929=>754, 10930=>754, 10931=>754,
+ 10932=>754, 10933=>754, 10934=>754, 10935=>754, 10936=>754, 10937=>754, 10938=>754, 11001=>754, 11002=>754, 11008=>754, 11009=>754, 11010=>754, 11011=>754, 11012=>754, 11013=>754, 11014=>754,
+ 11015=>754, 11016=>754, 11017=>754, 11018=>754, 11019=>754, 11020=>754, 11021=>754, 11022=>754, 11023=>754, 11024=>754, 11025=>754, 11026=>850, 11027=>850, 11028=>850, 11029=>850, 11030=>692,
+ 11031=>692, 11032=>692, 11033=>692, 11034=>850, 11040=>782, 11041=>786, 11042=>786, 11043=>786, 11360=>573, 11361=>324, 11362=>573, 11363=>659, 11364=>693, 11365=>607, 11366=>430, 11367=>860,
+ 11368=>641, 11369=>697, 11370=>598, 11371=>652, 11372=>523, 11373=>774, 11374=>896, 11375=>696, 11377=>700, 11378=>1099, 11379=>950, 11380=>586, 11381=>628, 11382=>508, 11383=>704, 11385=>484,
+ 11387=>502, 11388=>197, 11389=>438, 11568=>622, 11569=>847, 11570=>847, 11571=>652, 11572=>652, 11573=>652, 11574=>608, 11575=>696, 11576=>696, 11577=>615, 11578=>615, 11579=>721, 11580=>890,
+ 11581=>685, 11582=>561, 11583=>685, 11584=>847, 11585=>847, 11586=>335, 11587=>666, 11588=>753, 11589=>822, 11590=>604, 11591=>663, 11592=>612, 11593=>615, 11594=>542, 11595=>935, 11596=>700,
+ 11597=>753, 11598=>615, 11599=>334, 11600=>700, 11601=>335, 11602=>652, 11603=>622, 11604=>847, 11605=>847, 11606=>753, 11607=>335, 11608=>752, 11609=>847, 11610=>847, 11611=>660, 11612=>789,
+ 11613=>694, 11614=>660, 11615=>615, 11616=>696, 11617=>753, 11618=>615, 11619=>765, 11620=>627, 11621=>765, 11631=>644, 11800=>522, 11822=>522, 19904=>807, 19905=>807, 19906=>807, 19907=>807,
+ 19908=>807, 19909=>807, 19910=>807, 19911=>807, 19912=>807, 19913=>807, 19914=>807, 19915=>807, 19916=>807, 19917=>807, 19918=>807, 19919=>807, 19920=>807, 19921=>807, 19922=>807, 19923=>807,
+ 19924=>807, 19925=>807, 19926=>807, 19927=>807, 19928=>807, 19929=>807, 19930=>807, 19931=>807, 19932=>807, 19933=>807, 19934=>807, 19935=>807, 19936=>807, 19937=>807, 19938=>807, 19939=>807,
+ 19940=>807, 19941=>807, 19942=>807, 19943=>807, 19944=>807, 19945=>807, 19946=>807, 19947=>807, 19948=>807, 19949=>807, 19950=>807, 19951=>807, 19952=>807, 19953=>807, 19954=>807, 19955=>807,
+ 19956=>807, 19957=>807, 19958=>807, 19959=>807, 19960=>807, 19961=>807, 19962=>807, 19963=>807, 19964=>807, 19965=>807, 19966=>807, 19967=>807, 42564=>648, 42565=>536, 42566=>392, 42567=>396,
+ 42572=>1265, 42573=>1055, 42576=>1110, 42577=>924, 42580=>1056, 42581=>875, 42770=>450, 42771=>450, 42772=>450, 42773=>450, 42774=>450, 42790=>753, 42791=>641, 42792=>928, 42793=>771, 42800=>502,
+ 42801=>536, 42802=>1214, 42803=>946, 42808=>971, 42809=>830, 42810=>971, 42811=>830, 42812=>932, 42813=>830, 42814=>628, 42815=>494, 42822=>765, 42823=>488, 42824=>614, 42825=>478, 42826=>826,
+ 42827=>732, 42830=>1266, 42831=>995, 42880=>573, 42881=>308, 43003=>615, 43004=>659, 43005=>896, 43006=>334, 43007=>1192, 63173=>618, 64256=>729, 64257=>667, 64258=>667, 64259=>1003, 64260=>1004,
+ 64261=>727, 64262=>917, 64275=>1249, 64276=>1245, 64277=>1240, 64278=>1245, 64279=>1542, 64285=>308, 64286=>0, 64287=>597, 64288=>647, 64289=>867, 64290=>801, 64291=>889, 64292=>867, 64293=>844,
+ 64294=>889, 64295=>889, 64296=>878, 64297=>754, 64298=>854, 64299=>854, 64300=>949, 64301=>949, 64302=>676, 64303=>676, 64304=>676, 64305=>605, 64306=>483, 64307=>589, 64308=>641, 64309=>394,
+ 64310=>442, 64312=>651, 64313=>394, 64314=>584, 64315=>584, 64316=>611, 64318=>698, 64320=>447, 64321=>696, 64323=>646, 64324=>618, 64326=>676, 64327=>656, 64328=>584, 64329=>854, 64330=>676,
+ 64331=>308, 64332=>605, 64333=>584, 64334=>618, 64335=>676, 64338=>904, 64339=>953, 64340=>338, 64341=>367, 64342=>904, 64343=>953, 64344=>338, 64345=>367, 64346=>904, 64347=>953, 64348=>338,
+ 64349=>367, 64350=>904, 64351=>953, 64352=>338, 64353=>367, 64354=>904, 64355=>953, 64356=>338, 64357=>367, 64358=>904, 64359=>953, 64360=>338, 64361=>367, 64362=>1045, 64363=>1072, 64364=>589,
+ 64365=>647, 64366=>1045, 64367=>1072, 64368=>589, 64369=>647, 64370=>648, 64371=>648, 64372=>648, 64373=>648, 64374=>648, 64375=>648, 64376=>648, 64377=>648, 64378=>648, 64379=>648, 64380=>648,
+ 64381=>648, 64382=>648, 64383=>648, 64384=>648, 64385=>648, 64394=>518, 64395=>560, 64396=>518, 64397=>560, 64398=>921, 64399=>921, 64400=>523, 64401=>523, 64402=>921, 64403=>921, 64404=>523,
+ 64405=>523, 64414=>768, 64415=>810, 64473=>559, 64474=>564, 64488=>338, 64489=>367, 64508=>825, 64509=>910, 64510=>338, 64511=>367, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0,
+ 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65056=>0, 65057=>0, 65058=>0, 65059=>0, 65136=>308,
+ 65137=>308, 65138=>308, 65139=>311, 65140=>308, 65142=>308, 65143=>308, 65144=>308, 65145=>308, 65146=>308, 65147=>308, 65148=>308, 65149=>308, 65150=>308, 65151=>308, 65152=>460, 65153=>308,
+ 65154=>338, 65155=>308, 65156=>338, 65157=>559, 65158=>564, 65159=>308, 65160=>338, 65161=>825, 65162=>825, 65163=>338, 65164=>367, 65165=>308, 65166=>338, 65167=>904, 65168=>953, 65169=>338,
+ 65170=>367, 65171=>531, 65172=>545, 65173=>904, 65174=>953, 65175=>338, 65176=>367, 65177=>904, 65178=>953, 65179=>338, 65180=>367, 65181=>648, 65182=>648, 65183=>648, 65184=>648, 65185=>648,
+ 65186=>648, 65187=>648, 65188=>648, 65189=>648, 65190=>648, 65191=>648, 65192=>648, 65193=>461, 65194=>520, 65195=>461, 65196=>520, 65197=>518, 65198=>560, 65199=>518, 65200=>560, 65201=>1242,
+ 65202=>1272, 65203=>885, 65204=>916, 65205=>1242, 65206=>1272, 65207=>885, 65208=>916, 65209=>1210, 65210=>1228, 65211=>870, 65212=>887, 65213=>1210, 65214=>1228, 65215=>870, 65216=>887, 65217=>935,
+ 65218=>963, 65219=>848, 65220=>876, 65221=>935, 65222=>963, 65223=>848, 65224=>876, 65225=>615, 65226=>615, 65227=>615, 65228=>508, 65229=>615, 65230=>615, 65231=>615, 65232=>508, 65233=>1045,
+ 65234=>1072, 65235=>589, 65236=>647, 65237=>804, 65238=>811, 65239=>589, 65240=>647, 65241=>825, 65242=>838, 65243=>523, 65244=>523, 65245=>781, 65246=>803, 65247=>338, 65248=>367, 65249=>659,
+ 65250=>706, 65251=>557, 65252=>603, 65253=>768, 65254=>810, 65255=>338, 65256=>367, 65257=>531, 65258=>545, 65259=>624, 65260=>594, 65261=>559, 65262=>564, 65263=>825, 65264=>910, 65265=>825,
+ 65266=>910, 65267=>338, 65268=>367, 65269=>670, 65270=>683, 65271=>670, 65272=>683, 65273=>670, 65274=>683, 65275=>670, 65276=>683, 65279=>0, 65529=>0, 65530=>0, 65531=>0, 65532=>0,
+ 65533=>1002);
+$enc='';
+$diff='';
+$file='dejavusanscondensedb.z';
+$ctg='dejavusanscondensedb.ctg.z';
+$originalsize=519272;
+?>
diff --git a/lib/tcpdf/fonts/dejavusanscondensedb.z b/lib/tcpdf/fonts/dejavusanscondensedb.z
new file mode 100644
index 0000000000..63ce8388e5
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusanscondensedb.z differ
diff --git a/lib/tcpdf/fonts/dejavusanscondensedbi.ctg.z b/lib/tcpdf/fonts/dejavusanscondensedbi.ctg.z
new file mode 100644
index 0000000000..eed33320c0
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusanscondensedbi.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusanscondensedbi.php b/lib/tcpdf/fonts/dejavusanscondensedbi.php
new file mode 100644
index 0000000000..f0258a21a2
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusanscondensedbi.php
@@ -0,0 +1,285 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>96,'FontBBox'=>'[-960 -388 1804 1121]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>540);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>540, 32=>313, 33=>410, 34=>469, 35=>626, 36=>626, 37=>901, 38=>785, 39=>275, 40=>411, 41=>411, 42=>470, 43=>754, 44=>342, 45=>374, 46=>342,
+ 47=>329, 48=>626, 49=>626, 50=>626, 51=>626, 52=>626, 53=>626, 54=>626, 55=>626, 56=>626, 57=>626, 58=>360, 59=>360, 60=>754, 61=>754, 62=>754,
+ 63=>522, 64=>900, 65=>696, 66=>686, 67=>660, 68=>747, 69=>615, 70=>615, 71=>738, 72=>753, 73=>334, 74=>334, 75=>697, 76=>573, 77=>896, 78=>753,
+ 79=>765, 80=>659, 81=>765, 82=>693, 83=>648, 84=>614, 85=>730, 86=>696, 87=>993, 88=>694, 89=>651, 90=>652, 91=>411, 92=>329, 93=>411, 94=>754,
+ 95=>450, 96=>450, 97=>607, 98=>644, 99=>533, 100=>644, 101=>610, 102=>391, 103=>644, 104=>641, 105=>308, 106=>308, 107=>598, 108=>308, 109=>938, 110=>641,
+ 111=>618, 112=>644, 113=>644, 114=>444, 115=>536, 116=>430, 117=>641, 118=>586, 119=>831, 120=>580, 121=>586, 122=>523, 123=>641, 124=>329, 125=>641, 126=>754,
+ 8364=>626, 1027=>637, 8218=>342, 402=>391, 8222=>580, 8230=>900, 8224=>450, 8225=>450, 710=>450, 8240=>1309, 352=>648, 8249=>371, 338=>1050, 1036=>817, 381=>652, 1039=>753,
+ 8216=>342, 8217=>342, 8220=>580, 8221=>580, 8226=>575, 8211=>450, 8212=>900, 732=>450, 8482=>900, 353=>536, 8250=>371, 339=>984, 1116=>611, 382=>523, 376=>651, 160=>313,
+ 161=>410, 162=>626, 163=>626, 164=>572, 165=>626, 166=>329, 167=>450, 168=>450, 169=>900, 170=>507, 171=>584, 172=>754, 173=>374, 174=>900, 175=>450, 176=>450,
+ 177=>754, 178=>394, 179=>394, 180=>450, 181=>662, 182=>572, 183=>342, 184=>450, 185=>394, 186=>507, 187=>584, 188=>932, 189=>932, 190=>932, 191=>522, 192=>696,
+ 193=>696, 194=>696, 195=>696, 196=>696, 197=>696, 198=>976, 199=>660, 200=>615, 201=>615, 202=>615, 203=>615, 204=>334, 205=>334, 206=>334, 207=>334, 208=>760,
+ 209=>753, 210=>765, 211=>765, 212=>765, 213=>765, 214=>765, 215=>754, 216=>765, 217=>730, 218=>730, 219=>730, 220=>730, 221=>651, 222=>668, 223=>647, 224=>607,
+ 225=>607, 226=>607, 227=>607, 228=>607, 229=>607, 230=>943, 231=>533, 232=>610, 233=>610, 234=>610, 235=>610, 236=>343, 237=>343, 238=>343, 239=>343, 240=>618,
+ 241=>641, 242=>618, 243=>618, 244=>618, 245=>618, 246=>618, 247=>754, 248=>618, 249=>641, 250=>641, 251=>641, 252=>641, 253=>586, 254=>644, 255=>586, 256=>696,
+ 257=>607, 258=>696, 259=>607, 260=>696, 261=>607, 262=>660, 263=>533, 264=>660, 265=>533, 266=>660, 267=>533, 268=>660, 269=>533, 270=>747, 271=>644, 272=>760,
+ 273=>644, 274=>615, 275=>610, 276=>615, 277=>610, 278=>615, 279=>610, 280=>615, 281=>610, 282=>615, 283=>610, 284=>738, 285=>644, 286=>738, 287=>644, 288=>738,
+ 289=>644, 290=>738, 291=>644, 292=>753, 293=>641, 294=>876, 295=>711, 296=>334, 297=>343, 298=>334, 299=>343, 300=>334, 301=>343, 302=>334, 303=>308, 304=>334,
+ 305=>308, 306=>669, 307=>617, 308=>334, 309=>343, 310=>697, 311=>598, 312=>598, 313=>573, 314=>308, 315=>573, 316=>308, 317=>573, 318=>308, 319=>573, 320=>308,
+ 321=>594, 322=>337, 323=>753, 324=>641, 325=>753, 326=>641, 327=>753, 328=>641, 329=>884, 330=>753, 331=>641, 332=>765, 333=>618, 334=>765, 335=>618, 336=>765,
+ 337=>618, 340=>693, 341=>444, 342=>693, 343=>444, 344=>693, 345=>444, 346=>648, 347=>536, 348=>648, 349=>536, 350=>648, 351=>536, 354=>614, 355=>430, 356=>614,
+ 357=>430, 358=>614, 359=>430, 360=>730, 361=>641, 362=>730, 363=>641, 364=>730, 365=>641, 366=>730, 367=>641, 368=>730, 369=>641, 370=>730, 371=>641, 372=>993,
+ 373=>831, 374=>651, 375=>586, 377=>652, 378=>523, 379=>652, 380=>523, 383=>391, 384=>644, 385=>729, 386=>686, 387=>644, 388=>686, 389=>644, 390=>660, 391=>660,
+ 392=>533, 393=>760, 394=>791, 395=>686, 396=>644, 397=>618, 398=>615, 399=>765, 400=>626, 401=>615, 403=>738, 404=>713, 405=>940, 406=>392, 407=>350, 408=>697,
+ 409=>598, 410=>324, 411=>532, 412=>938, 413=>753, 414=>641, 415=>765, 416=>765, 417=>618, 418=>1002, 419=>866, 420=>703, 421=>644, 422=>693, 423=>648, 424=>536,
+ 425=>615, 426=>497, 427=>430, 428=>636, 429=>430, 430=>614, 431=>730, 432=>641, 433=>692, 434=>732, 435=>717, 436=>700, 437=>652, 438=>523, 439=>695, 440=>695,
+ 441=>576, 442=>523, 443=>626, 444=>695, 445=>576, 446=>515, 447=>644, 448=>334, 449=>593, 450=>489, 451=>334, 452=>1393, 453=>1305, 454=>1176, 455=>879, 456=>881,
+ 457=>603, 458=>1074, 459=>1091, 460=>957, 461=>696, 462=>607, 463=>334, 464=>308, 465=>765, 466=>618, 467=>730, 468=>641, 469=>730, 470=>641, 471=>730, 472=>641,
+ 473=>730, 474=>641, 475=>730, 476=>641, 477=>610, 478=>696, 479=>607, 480=>696, 481=>607, 482=>976, 483=>943, 484=>738, 485=>644, 486=>738, 487=>644, 488=>697,
+ 489=>598, 490=>765, 491=>618, 492=>765, 493=>618, 494=>695, 495=>523, 496=>308, 497=>1393, 498=>1305, 499=>1176, 500=>738, 501=>644, 502=>1160, 503=>708, 504=>753,
+ 505=>641, 506=>696, 507=>607, 508=>976, 509=>943, 510=>765, 511=>618, 512=>696, 513=>607, 514=>696, 515=>607, 516=>615, 517=>610, 518=>615, 519=>610, 520=>334,
+ 521=>308, 522=>334, 523=>308, 524=>765, 525=>618, 526=>765, 527=>618, 528=>693, 529=>444, 530=>693, 531=>444, 532=>730, 533=>641, 534=>730, 535=>641, 536=>648,
+ 537=>536, 538=>614, 539=>430, 540=>621, 541=>546, 542=>753, 543=>641, 544=>753, 545=>778, 546=>728, 547=>593, 548=>652, 549=>523, 550=>696, 551=>607, 552=>615,
+ 553=>610, 554=>765, 555=>618, 556=>765, 557=>618, 558=>765, 559=>618, 560=>765, 561=>618, 562=>651, 563=>586, 564=>442, 565=>780, 566=>460, 567=>308, 568=>979,
+ 569=>979, 570=>696, 571=>660, 572=>533, 573=>573, 574=>614, 575=>536, 576=>523, 577=>703, 578=>553, 579=>686, 580=>730, 581=>696, 582=>615, 583=>610, 584=>334,
+ 585=>308, 586=>774, 587=>712, 588=>693, 589=>444, 590=>651, 591=>586, 592=>607, 593=>644, 594=>644, 595=>644, 596=>533, 597=>533, 598=>712, 599=>712, 600=>610,
+ 601=>610, 602=>788, 603=>501, 604=>490, 605=>696, 606=>658, 607=>308, 608=>712, 609=>644, 610=>564, 611=>661, 612=>571, 613=>641, 614=>641, 615=>641, 616=>491,
+ 617=>396, 618=>491, 619=>502, 620=>624, 621=>308, 622=>757, 623=>938, 624=>938, 625=>938, 626=>641, 627=>713, 628=>578, 629=>618, 630=>817, 631=>613, 632=>716,
+ 633=>484, 634=>484, 635=>584, 636=>444, 637=>444, 638=>536, 639=>536, 640=>578, 641=>578, 642=>536, 643=>374, 644=>391, 645=>544, 646=>497, 647=>430, 648=>430,
+ 649=>828, 650=>692, 651=>603, 652=>586, 653=>831, 654=>586, 655=>651, 656=>624, 657=>615, 658=>576, 659=>576, 660=>515, 661=>515, 662=>515, 663=>515, 664=>765,
+ 665=>569, 666=>658, 667=>616, 668=>622, 669=>308, 670=>659, 671=>485, 672=>712, 673=>515, 674=>515, 675=>1040, 676=>1093, 677=>1039, 678=>876, 679=>691, 680=>836,
+ 681=>923, 682=>712, 683=>702, 684=>532, 685=>374, 686=>609, 687=>710, 688=>410, 689=>410, 690=>197, 691=>284, 692=>284, 693=>284, 694=>369, 695=>532, 696=>375,
+ 697=>271, 698=>469, 699=>342, 700=>342, 701=>342, 702=>330, 703=>330, 704=>293, 705=>293, 706=>450, 707=>450, 708=>450, 709=>450, 711=>450, 712=>275, 713=>450,
+ 714=>450, 715=>450, 716=>275, 717=>450, 718=>450, 719=>450, 720=>303, 721=>303, 722=>330, 723=>330, 724=>450, 725=>450, 726=>450, 727=>450, 728=>450, 729=>450,
+ 730=>450, 731=>450, 733=>450, 734=>315, 735=>450, 736=>370, 737=>197, 738=>343, 739=>371, 740=>293, 741=>450, 742=>450, 743=>450, 744=>450, 745=>450, 748=>450,
+ 749=>450, 750=>450, 755=>450, 759=>450, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0,
+ 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0,
+ 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0,
+ 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0,
+ 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>450, 837=>0, 838=>0, 839=>0, 840=>0, 841=>0, 842=>0, 843=>0,
+ 844=>0, 845=>0, 846=>0, 847=>0, 849=>0, 850=>0, 855=>0, 856=>0, 860=>0, 861=>0, 862=>0, 863=>0, 864=>0, 865=>0, 866=>0, 884=>271,
+ 885=>271, 890=>450, 891=>533, 892=>495, 893=>494, 894=>360, 900=>397, 901=>450, 902=>717, 903=>342, 904=>761, 905=>908, 906=>507, 908=>801, 910=>882, 911=>804,
+ 912=>390, 913=>696, 914=>686, 915=>637, 916=>696, 917=>615, 918=>652, 919=>753, 920=>765, 921=>334, 922=>697, 923=>696, 924=>896, 925=>753, 926=>568, 927=>765,
+ 928=>837, 929=>659, 931=>615, 932=>614, 933=>651, 934=>765, 935=>694, 936=>765, 937=>765, 938=>334, 939=>651, 940=>687, 941=>557, 942=>712, 943=>390, 944=>675,
+ 945=>618, 946=>644, 947=>613, 948=>618, 949=>501, 950=>532, 951=>641, 952=>618, 953=>351, 954=>639, 955=>569, 956=>662, 957=>613, 958=>532, 959=>618, 960=>712,
+ 961=>644, 962=>533, 963=>701, 964=>574, 965=>607, 966=>704, 967=>580, 968=>714, 969=>782, 970=>351, 971=>607, 972=>618, 973=>607, 974=>782, 976=>585, 977=>594,
+ 978=>671, 979=>883, 980=>671, 981=>716, 982=>782, 983=>669, 984=>765, 985=>618, 986=>660, 987=>533, 988=>615, 989=>444, 990=>632, 991=>593, 992=>827, 993=>564,
+ 994=>983, 995=>753, 996=>749, 997=>644, 998=>835, 999=>669, 1000=>660, 1001=>585, 1002=>709, 1003=>604, 1004=>677, 1005=>644, 1006=>614, 1007=>531, 1008=>669, 1009=>644,
+ 1010=>533, 1011=>308, 1012=>765, 1013=>580, 1014=>580, 1015=>668, 1016=>644, 1017=>660, 1018=>896, 1019=>659, 1020=>644, 1021=>660, 1022=>660, 1023=>628, 1024=>683, 1025=>615,
+ 1026=>791, 1028=>660, 1029=>648, 1030=>334, 1031=>334, 1032=>334, 1033=>1039, 1034=>1017, 1035=>791, 1037=>837, 1038=>771, 1040=>696, 1041=>686, 1042=>686, 1043=>573, 1044=>801,
+ 1045=>615, 1046=>1102, 1047=>639, 1048=>753, 1049=>753, 1050=>735, 1051=>747, 1052=>896, 1053=>753, 1054=>765, 1055=>753, 1056=>659, 1057=>660, 1058=>614, 1059=>694, 1060=>892,
+ 1061=>694, 1062=>835, 1063=>727, 1064=>1112, 1065=>1193, 1066=>845, 1067=>932, 1068=>686, 1069=>660, 1070=>1056, 1071=>693, 1072=>607, 1073=>628, 1074=>569, 1075=>470, 1076=>727,
+ 1077=>610, 1078=>896, 1079=>523, 1080=>630, 1081=>630, 1082=>611, 1083=>659, 1084=>735, 1085=>622, 1086=>618, 1087=>622, 1088=>644, 1089=>533, 1090=>521, 1091=>586, 1092=>893,
+ 1093=>580, 1094=>667, 1095=>618, 1096=>956, 1097=>995, 1098=>676, 1099=>813, 1100=>569, 1101=>533, 1102=>875, 1103=>578, 1104=>610, 1105=>610, 1106=>642, 1107=>470, 1108=>533,
+ 1109=>536, 1110=>308, 1111=>308, 1112=>308, 1113=>892, 1114=>860, 1115=>661, 1117=>630, 1118=>586, 1119=>622, 1120=>983, 1121=>782, 1122=>756, 1123=>662, 1124=>911, 1125=>755,
+ 1126=>893, 1127=>749, 1128=>1222, 1129=>1009, 1130=>765, 1131=>618, 1132=>1112, 1133=>906, 1134=>626, 1135=>501, 1136=>967, 1137=>955, 1138=>765, 1139=>618, 1140=>765, 1141=>625,
+ 1142=>765, 1143=>625, 1144=>1033, 1145=>939, 1146=>967, 1147=>776, 1148=>1265, 1149=>1055, 1150=>983, 1151=>782, 1152=>660, 1153=>533, 1154=>587, 1155=>0, 1156=>0, 1157=>0,
+ 1158=>0, 1160=>376, 1161=>376, 1162=>844, 1163=>725, 1164=>686, 1165=>550, 1166=>662, 1167=>646, 1168=>573, 1169=>470, 1170=>599, 1171=>488, 1172=>709, 1173=>470, 1174=>1102,
+ 1175=>896, 1176=>639, 1177=>523, 1178=>697, 1179=>611, 1180=>735, 1181=>611, 1182=>735, 1183=>611, 1184=>914, 1185=>743, 1186=>753, 1187=>622, 1188=>992, 1189=>783, 1190=>1129,
+ 1191=>880, 1192=>787, 1193=>639, 1194=>660, 1195=>533, 1196=>614, 1197=>521, 1198=>651, 1199=>586, 1200=>651, 1201=>586, 1202=>694, 1203=>580, 1204=>993, 1205=>901, 1206=>727,
+ 1207=>618, 1208=>727, 1209=>618, 1210=>727, 1211=>641, 1212=>923, 1213=>729, 1214=>923, 1215=>729, 1216=>334, 1217=>1102, 1218=>896, 1219=>700, 1220=>566, 1221=>839, 1222=>724,
+ 1223=>753, 1224=>622, 1225=>844, 1226=>725, 1227=>727, 1228=>618, 1229=>986, 1230=>838, 1231=>308, 1232=>696, 1233=>607, 1234=>696, 1235=>607, 1236=>976, 1237=>943, 1238=>615,
+ 1239=>610, 1240=>765, 1241=>610, 1242=>765, 1243=>610, 1244=>1102, 1245=>896, 1246=>639, 1247=>523, 1248=>695, 1249=>576, 1250=>753, 1251=>630, 1252=>753, 1253=>630, 1254=>765,
+ 1255=>618, 1256=>765, 1257=>618, 1258=>765, 1259=>618, 1260=>660, 1261=>533, 1262=>694, 1263=>586, 1264=>694, 1265=>586, 1266=>694, 1267=>586, 1268=>727, 1269=>618, 1270=>573,
+ 1271=>470, 1272=>932, 1273=>813, 1274=>599, 1275=>488, 1276=>694, 1277=>580, 1278=>694, 1279=>580, 1280=>686, 1281=>547, 1282=>1043, 1283=>804, 1284=>1007, 1285=>828, 1286=>745,
+ 1287=>624, 1288=>1117, 1289=>915, 1290=>1160, 1291=>912, 1292=>755, 1293=>574, 1294=>844, 1295=>722, 1296=>626, 1297=>501, 1298=>747, 1299=>659, 1306=>765, 1307=>644, 1308=>993,
+ 1309=>831, 1312=>1123, 1313=>920, 1314=>1128, 1315=>880, 1329=>886, 1330=>730, 1331=>886, 1332=>886, 1333=>730, 1334=>699, 1335=>730, 1336=>730, 1337=>877, 1338=>886, 1339=>730,
+ 1340=>639, 1341=>970, 1342=>1022, 1343=>730, 1344=>639, 1345=>681, 1346=>886, 1347=>789, 1348=>886, 1349=>714, 1350=>886, 1351=>730, 1352=>730, 1353=>730, 1354=>862, 1355=>699,
+ 1356=>886, 1357=>730, 1358=>886, 1359=>648, 1360=>730, 1361=>714, 1362=>805, 1363=>765, 1364=>842, 1365=>765, 1366=>648, 1369=>330, 1370=>342, 1371=>495, 1372=>495, 1373=>342,
+ 1374=>491, 1375=>468, 1377=>938, 1378=>641, 1379=>779, 1380=>781, 1381=>641, 1382=>735, 1383=>588, 1384=>641, 1385=>729, 1386=>735, 1387=>641, 1388=>448, 1389=>916, 1390=>644,
+ 1391=>641, 1392=>641, 1393=>644, 1394=>737, 1395=>641, 1396=>676, 1397=>308, 1398=>794, 1399=>502, 1400=>641, 1401=>502, 1402=>938, 1403=>502, 1404=>777, 1405=>641, 1406=>732,
+ 1407=>938, 1408=>641, 1409=>644, 1410=>514, 1411=>938, 1412=>700, 1413=>618, 1414=>648, 1415=>776, 1417=>360, 1418=>438, 1456=>0, 1457=>0, 1458=>0, 1459=>0, 1460=>0,
+ 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1466=>0, 1467=>0, 1468=>0, 1469=>0, 1470=>374, 1471=>0, 1472=>334, 1473=>0, 1474=>0, 1475=>334, 1478=>447,
+ 1479=>0, 1488=>676, 1489=>605, 1490=>483, 1491=>589, 1492=>641, 1493=>308, 1494=>442, 1495=>641, 1496=>651, 1497=>308, 1498=>584, 1499=>584, 1500=>611, 1501=>641, 1502=>698,
+ 1503=>308, 1504=>447, 1505=>696, 1506=>610, 1507=>646, 1508=>618, 1509=>565, 1510=>676, 1511=>656, 1512=>584, 1513=>854, 1514=>676, 1519=>900, 1520=>598, 1521=>598, 1522=>597,
+ 1523=>399, 1524=>639, 3647=>668, 3713=>734, 3714=>673, 3716=>674, 3719=>512, 3720=>668, 3722=>669, 3725=>685, 3732=>635, 3733=>633, 3734=>672, 3735=>737, 3737=>657, 3738=>654,
+ 3739=>654, 3740=>830, 3741=>744, 3742=>779, 3743=>779, 3745=>752, 3746=>685, 3747=>692, 3749=>691, 3751=>642, 3754=>744, 3755=>928, 3757=>651, 3758=>705, 3759=>840, 3760=>620,
+ 3761=>0, 3762=>549, 3763=>549, 3764=>0, 3765=>0, 3766=>0, 3767=>0, 3768=>0, 3769=>0, 3771=>0, 3772=>0, 3773=>603, 3776=>464, 3777=>774, 3778=>464, 3779=>584,
+ 3780=>569, 3782=>683, 3784=>0, 3785=>0, 3786=>0, 3787=>0, 3788=>0, 3789=>0, 3792=>694, 3793=>694, 3794=>624, 3795=>752, 3796=>655, 3797=>655, 3798=>764, 3799=>710,
+ 3800=>683, 3801=>818, 3804=>1227, 3805=>1227, 4256=>826, 4257=>669, 4258=>665, 4259=>753, 4260=>584, 4261=>696, 4262=>771, 4263=>800, 4264=>477, 4265=>570, 4266=>771, 4267=>810,
+ 4268=>579, 4269=>813, 4270=>732, 4271=>677, 4272=>782, 4273=>579, 4274=>579, 4275=>797, 4276=>797, 4277=>660, 4278=>587, 4279=>579, 4280=>582, 4281=>579, 4282=>710, 4283=>812,
+ 4284=>570, 4285=>557, 4286=>579, 4287=>700, 4288=>802, 4289=>541, 4290=>668, 4291=>554, 4292=>570, 4293=>668, 4304=>497, 4305=>497, 4306=>536, 4307=>734, 4308=>505, 4309=>506,
+ 4310=>497, 4311=>744, 4312=>497, 4313=>488, 4314=>967, 4315=>506, 4316=>507, 4317=>730, 4318=>497, 4319=>532, 4320=>740, 4321=>506, 4322=>621, 4323=>525, 4324=>732, 4325=>505,
+ 4326=>731, 4327=>506, 4328=>506, 4329=>507, 4330=>568, 4331=>506, 4332=>506, 4333=>497, 4334=>506, 4335=>506, 4336=>501, 4337=>543, 4338=>497, 4339=>497, 4340=>497, 4341=>544,
+ 4342=>767, 4343=>571, 4344=>506, 4345=>536, 4346=>487, 4347=>426, 4348=>331, 5121=>696, 5122=>774, 5123=>696, 5124=>696, 5125=>814, 5126=>814, 5127=>814, 5129=>814, 5130=>814,
+ 5131=>814, 5132=>916, 5133=>908, 5134=>916, 5135=>908, 5136=>916, 5137=>908, 5138=>1034, 5139=>1025, 5140=>1034, 5141=>1025, 5142=>814, 5143=>1034, 5144=>1028, 5145=>1034, 5146=>1028,
+ 5147=>814, 5149=>278, 5150=>476, 5151=>382, 5152=>382, 5153=>355, 5154=>355, 5155=>355, 5156=>355, 5157=>507, 5158=>423, 5159=>278, 5160=>355, 5161=>355, 5162=>355, 5163=>1092,
+ 5164=>888, 5165=>1094, 5166=>1167, 5167=>696, 5168=>774, 5169=>696, 5170=>696, 5171=>797, 5172=>797, 5173=>797, 5175=>797, 5176=>797, 5177=>797, 5178=>916, 5179=>908, 5180=>916,
+ 5181=>908, 5182=>916, 5183=>908, 5184=>1034, 5185=>1025, 5186=>1034, 5187=>1025, 5188=>1034, 5189=>1028, 5190=>1034, 5191=>1028, 5192=>797, 5193=>518, 5194=>206, 5196=>730, 5197=>812,
+ 5198=>730, 5199=>730, 5200=>734, 5201=>734, 5202=>734, 5204=>734, 5205=>734, 5206=>734, 5207=>950, 5208=>943, 5209=>950, 5210=>943, 5211=>950, 5212=>943, 5213=>954, 5214=>949,
+ 5215=>954, 5216=>949, 5217=>954, 5218=>946, 5219=>954, 5220=>946, 5221=>954, 5222=>435, 5223=>904, 5224=>904, 5225=>921, 5226=>915, 5227=>668, 5228=>743, 5229=>668, 5230=>668,
+ 5231=>668, 5232=>668, 5233=>668, 5234=>668, 5235=>668, 5236=>926, 5237=>877, 5238=>882, 5239=>877, 5240=>882, 5241=>877, 5242=>926, 5243=>877, 5244=>926, 5245=>877, 5246=>882,
+ 5247=>877, 5248=>882, 5249=>877, 5250=>882, 5251=>451, 5252=>451, 5253=>844, 5254=>844, 5255=>844, 5256=>844, 5257=>668, 5258=>743, 5259=>668, 5260=>668, 5261=>668, 5262=>668,
+ 5263=>668, 5264=>668, 5265=>668, 5266=>926, 5267=>877, 5268=>926, 5269=>877, 5270=>926, 5271=>877, 5272=>926, 5273=>877, 5274=>926, 5275=>877, 5276=>926, 5277=>877, 5278=>926,
+ 5279=>877, 5280=>926, 5281=>451, 5282=>451, 5283=>563, 5284=>563, 5285=>563, 5286=>563, 5287=>563, 5288=>563, 5289=>563, 5290=>563, 5291=>563, 5292=>793, 5293=>769, 5294=>777,
+ 5295=>786, 5296=>777, 5297=>786, 5298=>793, 5299=>786, 5300=>793, 5301=>786, 5302=>777, 5303=>786, 5304=>777, 5305=>786, 5306=>777, 5307=>392, 5308=>493, 5309=>392, 5312=>889,
+ 5313=>988, 5314=>889, 5315=>889, 5316=>838, 5317=>838, 5318=>838, 5319=>838, 5320=>838, 5321=>1114, 5322=>1122, 5323=>1080, 5324=>1105, 5325=>1080, 5326=>1105, 5327=>838, 5328=>593,
+ 5329=>447, 5330=>593, 5331=>889, 5332=>988, 5333=>889, 5334=>889, 5335=>838, 5336=>838, 5337=>838, 5338=>838, 5339=>838, 5340=>1107, 5341=>1122, 5342=>1155, 5343=>1105, 5344=>1155,
+ 5345=>1105, 5346=>1105, 5347=>1093, 5348=>1105, 5349=>1093, 5350=>1155, 5351=>1105, 5352=>1155, 5353=>1105, 5354=>593, 5356=>797, 5357=>657, 5358=>730, 5359=>657, 5360=>657, 5361=>657,
+ 5362=>657, 5363=>657, 5364=>657, 5365=>657, 5366=>897, 5367=>862, 5368=>870, 5369=>890, 5370=>870, 5371=>890, 5372=>897, 5373=>862, 5374=>897, 5375=>862, 5376=>870, 5377=>890,
+ 5378=>870, 5379=>890, 5380=>870, 5381=>443, 5382=>414, 5383=>443, 5392=>831, 5393=>831, 5394=>831, 5395=>1022, 5396=>1022, 5397=>1022, 5398=>1022, 5399=>1088, 5400=>1081, 5401=>1088,
+ 5402=>1081, 5403=>1088, 5404=>1081, 5405=>1288, 5406=>1278, 5407=>1288, 5408=>1278, 5409=>1288, 5410=>1278, 5411=>1288, 5412=>1278, 5413=>671, 5414=>698, 5415=>776, 5416=>698, 5417=>698,
+ 5418=>698, 5419=>698, 5420=>698, 5421=>698, 5422=>698, 5423=>902, 5424=>903, 5425=>911, 5426=>896, 5427=>911, 5428=>896, 5429=>902, 5430=>903, 5431=>902, 5432=>903, 5433=>911,
+ 5434=>896, 5435=>911, 5436=>896, 5437=>911, 5438=>445, 5440=>355, 5441=>458, 5442=>929, 5443=>929, 5444=>878, 5445=>976, 5446=>878, 5447=>878, 5448=>659, 5449=>659, 5450=>659,
+ 5451=>659, 5452=>659, 5453=>659, 5454=>902, 5455=>863, 5456=>445, 5458=>797, 5459=>696, 5460=>774, 5461=>696, 5462=>696, 5463=>835, 5464=>835, 5465=>835, 5466=>835, 5467=>1055,
+ 5468=>1028, 5469=>542, 5470=>730, 5471=>730, 5472=>730, 5473=>730, 5474=>730, 5475=>730, 5476=>734, 5477=>734, 5478=>734, 5479=>734, 5480=>954, 5481=>946, 5482=>493, 5492=>879,
+ 5493=>879, 5494=>879, 5495=>879, 5496=>879, 5497=>879, 5498=>879, 5499=>556, 5500=>753, 5501=>458, 5502=>1114, 5503=>1114, 5504=>1114, 5505=>1114, 5506=>1114, 5507=>1114, 5508=>1114,
+ 5509=>890, 5514=>879, 5515=>879, 5516=>879, 5517=>879, 5518=>1432, 5519=>1432, 5520=>1432, 5521=>1165, 5522=>1165, 5523=>1432, 5524=>1432, 5525=>763, 5526=>1146, 5536=>889, 5537=>889,
+ 5538=>838, 5539=>838, 5540=>838, 5541=>838, 5542=>593, 5543=>698, 5544=>698, 5545=>698, 5546=>698, 5547=>698, 5548=>698, 5549=>698, 5550=>445, 5551=>668, 5598=>747, 5601=>747,
+ 5702=>446, 5703=>446, 5742=>371, 5743=>1114, 5744=>1432, 5745=>1814, 5746=>1814, 5747=>1548, 5748=>1510, 5749=>1814, 5750=>1814, 7424=>586, 7425=>750, 7426=>943, 7427=>547, 7428=>533,
+ 7429=>608, 7430=>608, 7431=>502, 7432=>501, 7433=>308, 7434=>444, 7435=>598, 7436=>485, 7437=>735, 7438=>630, 7439=>618, 7440=>533, 7441=>594, 7442=>594, 7443=>594, 7444=>984,
+ 7446=>618, 7447=>618, 7448=>500, 7449=>578, 7450=>578, 7451=>521, 7452=>571, 7453=>663, 7454=>853, 7455=>625, 7456=>586, 7457=>831, 7458=>523, 7459=>581, 7462=>485, 7463=>586,
+ 7464=>622, 7465=>500, 7466=>703, 7467=>659, 7468=>438, 7469=>615, 7470=>432, 7472=>470, 7473=>387, 7474=>387, 7475=>465, 7476=>474, 7477=>211, 7478=>211, 7479=>439, 7480=>361,
+ 7481=>563, 7482=>474, 7483=>474, 7484=>481, 7485=>458, 7486=>415, 7487=>436, 7488=>387, 7489=>460, 7490=>625, 7491=>412, 7492=>412, 7493=>431, 7494=>641, 7495=>431, 7496=>431,
+ 7497=>431, 7498=>431, 7499=>347, 7500=>347, 7501=>431, 7502=>197, 7503=>438, 7504=>597, 7505=>410, 7506=>439, 7507=>372, 7508=>439, 7509=>439, 7510=>431, 7511=>349, 7512=>410,
+ 7513=>416, 7514=>597, 7515=>451, 7517=>405, 7518=>386, 7519=>389, 7520=>443, 7521=>365, 7522=>197, 7523=>284, 7524=>410, 7525=>451, 7526=>405, 7527=>386, 7528=>405, 7529=>443,
+ 7530=>365, 7543=>644, 7544=>474, 7547=>491, 7557=>462, 7579=>431, 7580=>372, 7581=>372, 7582=>439, 7583=>347, 7584=>339, 7585=>313, 7586=>431, 7587=>410, 7588=>312, 7589=>253,
+ 7590=>312, 7591=>312, 7592=>388, 7593=>293, 7594=>296, 7595=>333, 7596=>598, 7597=>597, 7598=>505, 7599=>505, 7600=>403, 7601=>439, 7602=>488, 7603=>379, 7604=>356, 7605=>349,
+ 7606=>524, 7607=>444, 7608=>359, 7609=>405, 7610=>451, 7611=>375, 7612=>471, 7613=>422, 7614=>409, 7615=>382, 7620=>0, 7621=>0, 7622=>0, 7623=>0, 7624=>0, 7625=>0,
+ 7680=>696, 7681=>607, 7682=>686, 7683=>644, 7684=>686, 7685=>644, 7686=>686, 7687=>644, 7688=>660, 7689=>533, 7690=>747, 7691=>644, 7692=>747, 7693=>644, 7694=>747, 7695=>644,
+ 7696=>747, 7697=>644, 7698=>747, 7699=>644, 7700=>615, 7701=>610, 7702=>615, 7703=>610, 7704=>615, 7705=>610, 7706=>615, 7707=>610, 7708=>615, 7709=>610, 7710=>615, 7711=>391,
+ 7712=>738, 7713=>644, 7714=>753, 7715=>641, 7716=>753, 7717=>641, 7718=>753, 7719=>641, 7720=>753, 7721=>641, 7722=>753, 7723=>641, 7724=>334, 7725=>308, 7726=>334, 7727=>308,
+ 7728=>697, 7729=>598, 7730=>697, 7731=>598, 7732=>697, 7733=>598, 7734=>573, 7735=>308, 7736=>573, 7737=>308, 7738=>573, 7739=>308, 7740=>573, 7741=>308, 7742=>896, 7743=>938,
+ 7744=>896, 7745=>938, 7746=>896, 7747=>938, 7748=>753, 7749=>641, 7750=>753, 7751=>641, 7752=>753, 7753=>641, 7754=>753, 7755=>641, 7756=>765, 7757=>618, 7758=>765, 7759=>618,
+ 7760=>765, 7761=>618, 7762=>765, 7763=>618, 7764=>659, 7765=>644, 7766=>659, 7767=>644, 7768=>693, 7769=>444, 7770=>693, 7771=>444, 7772=>693, 7773=>444, 7774=>693, 7775=>444,
+ 7776=>648, 7777=>536, 7778=>648, 7779=>536, 7780=>648, 7781=>536, 7782=>648, 7783=>536, 7784=>648, 7785=>536, 7786=>614, 7787=>430, 7788=>614, 7789=>430, 7790=>614, 7791=>430,
+ 7792=>614, 7793=>430, 7794=>730, 7795=>641, 7796=>730, 7797=>641, 7798=>730, 7799=>641, 7800=>730, 7801=>641, 7802=>730, 7803=>641, 7804=>696, 7805=>586, 7806=>696, 7807=>586,
+ 7808=>993, 7809=>831, 7810=>993, 7811=>831, 7812=>993, 7813=>831, 7814=>993, 7815=>831, 7816=>993, 7817=>831, 7818=>694, 7819=>580, 7820=>694, 7821=>580, 7822=>651, 7823=>586,
+ 7824=>652, 7825=>523, 7826=>652, 7827=>523, 7828=>652, 7829=>523, 7830=>641, 7831=>430, 7832=>831, 7833=>586, 7834=>607, 7835=>391, 7839=>618, 7840=>696, 7841=>607, 7842=>696,
+ 7843=>607, 7844=>696, 7845=>607, 7846=>696, 7847=>607, 7848=>696, 7849=>607, 7850=>696, 7851=>607, 7852=>696, 7853=>607, 7854=>696, 7855=>607, 7856=>696, 7857=>607, 7858=>696,
+ 7859=>607, 7860=>696, 7861=>607, 7862=>696, 7863=>607, 7864=>615, 7865=>610, 7866=>615, 7867=>610, 7868=>615, 7869=>610, 7870=>615, 7871=>610, 7872=>615, 7873=>610, 7874=>615,
+ 7875=>610, 7876=>615, 7877=>610, 7878=>615, 7879=>610, 7880=>334, 7881=>308, 7882=>334, 7883=>308, 7884=>765, 7885=>618, 7886=>765, 7887=>618, 7888=>765, 7889=>618, 7890=>765,
+ 7891=>618, 7892=>765, 7893=>618, 7894=>765, 7895=>618, 7896=>765, 7897=>618, 7898=>765, 7899=>618, 7900=>765, 7901=>618, 7902=>765, 7903=>618, 7904=>765, 7905=>618, 7906=>765,
+ 7907=>618, 7908=>730, 7909=>641, 7910=>730, 7911=>641, 7912=>730, 7913=>641, 7914=>730, 7915=>641, 7916=>730, 7917=>641, 7918=>730, 7919=>641, 7920=>730, 7921=>641, 7922=>651,
+ 7923=>586, 7924=>651, 7925=>586, 7926=>651, 7927=>586, 7928=>651, 7929=>586, 7936=>618, 7937=>618, 7938=>618, 7939=>618, 7940=>618, 7941=>618, 7942=>618, 7943=>618, 7944=>696,
+ 7945=>696, 7946=>937, 7947=>939, 7948=>841, 7949=>866, 7950=>751, 7951=>773, 7952=>501, 7953=>501, 7954=>501, 7955=>501, 7956=>501, 7957=>501, 7960=>712, 7961=>715, 7962=>989,
+ 7963=>986, 7964=>920, 7965=>947, 7968=>641, 7969=>641, 7970=>641, 7971=>641, 7972=>641, 7973=>641, 7974=>641, 7975=>641, 7976=>851, 7977=>856, 7978=>1125, 7979=>1125, 7980=>1062,
+ 7981=>1085, 7982=>948, 7983=>956, 7984=>351, 7985=>351, 7986=>351, 7987=>351, 7988=>351, 7989=>351, 7990=>351, 7991=>351, 7992=>435, 7993=>440, 7994=>699, 7995=>707, 7996=>641,
+ 7997=>664, 7998=>544, 7999=>544, 8000=>618, 8001=>618, 8002=>618, 8003=>618, 8004=>618, 8005=>618, 8008=>802, 8009=>839, 8010=>1099, 8011=>1101, 8012=>947, 8013=>974, 8016=>607,
+ 8017=>607, 8018=>607, 8019=>607, 8020=>607, 8021=>607, 8022=>607, 8023=>607, 8025=>837, 8027=>1065, 8029=>1079, 8031=>944, 8032=>782, 8033=>782, 8034=>782, 8035=>782, 8036=>782,
+ 8037=>782, 8038=>782, 8039=>782, 8040=>817, 8041=>862, 8042=>1121, 8043=>1126, 8044=>968, 8045=>994, 8046=>925, 8047=>968, 8048=>618, 8049=>618, 8050=>501, 8051=>501, 8052=>641,
+ 8053=>641, 8054=>351, 8055=>351, 8056=>618, 8057=>618, 8058=>607, 8059=>607, 8060=>782, 8061=>782, 8064=>618, 8065=>618, 8066=>618, 8067=>618, 8068=>618, 8069=>618, 8070=>618,
+ 8071=>618, 8072=>696, 8073=>696, 8074=>937, 8075=>939, 8076=>841, 8077=>866, 8078=>751, 8079=>773, 8080=>641, 8081=>641, 8082=>641, 8083=>641, 8084=>641, 8085=>641, 8086=>641,
+ 8087=>641, 8088=>851, 8089=>856, 8090=>1125, 8091=>1125, 8092=>1062, 8093=>1085, 8094=>948, 8095=>956, 8096=>782, 8097=>782, 8098=>782, 8099=>782, 8100=>782, 8101=>782, 8102=>782,
+ 8103=>782, 8104=>817, 8105=>862, 8106=>1121, 8107=>1126, 8108=>968, 8109=>994, 8110=>925, 8111=>968, 8112=>618, 8113=>618, 8114=>618, 8115=>618, 8116=>618, 8118=>618, 8119=>618,
+ 8120=>696, 8121=>696, 8122=>789, 8123=>717, 8124=>696, 8125=>450, 8126=>450, 8127=>450, 8128=>450, 8129=>450, 8130=>641, 8131=>641, 8132=>641, 8134=>641, 8135=>641, 8136=>836,
+ 8137=>761, 8138=>972, 8139=>908, 8140=>753, 8141=>450, 8142=>450, 8143=>450, 8144=>351, 8145=>351, 8146=>351, 8147=>351, 8150=>351, 8151=>351, 8152=>334, 8153=>334, 8154=>559,
+ 8155=>507, 8157=>450, 8158=>450, 8159=>450, 8160=>607, 8161=>607, 8162=>607, 8163=>607, 8164=>644, 8165=>644, 8166=>607, 8167=>607, 8168=>651, 8169=>651, 8170=>918, 8171=>882,
+ 8172=>754, 8173=>450, 8174=>450, 8175=>450, 8178=>782, 8179=>782, 8180=>782, 8182=>782, 8183=>782, 8184=>958, 8185=>801, 8186=>976, 8187=>804, 8188=>765, 8189=>450, 8190=>450,
+ 8192=>450, 8193=>900, 8194=>450, 8195=>900, 8196=>296, 8197=>225, 8198=>150, 8199=>626, 8200=>342, 8201=>180, 8202=>89, 8203=>0, 8204=>0, 8205=>0, 8206=>0, 8207=>0,
+ 8208=>374, 8209=>374, 8210=>626, 8213=>900, 8214=>450, 8215=>450, 8219=>342, 8223=>591, 8227=>575, 8228=>342, 8229=>616, 8231=>313, 8234=>0, 8235=>0, 8236=>0, 8237=>0,
+ 8238=>0, 8239=>180, 8241=>1717, 8242=>237, 8243=>402, 8244=>567, 8245=>237, 8246=>402, 8247=>567, 8248=>659, 8251=>875, 8252=>564, 8253=>522, 8254=>450, 8255=>745, 8256=>745,
+ 8257=>296, 8258=>920, 8259=>450, 8260=>150, 8261=>411, 8262=>411, 8263=>927, 8264=>746, 8265=>746, 8266=>461, 8267=>618, 8268=>450, 8269=>450, 8270=>470, 8271=>360, 8272=>745,
+ 8273=>470, 8274=>500, 8275=>754, 8276=>745, 8277=>754, 8278=>615, 8279=>731, 8280=>754, 8281=>754, 8282=>342, 8283=>784, 8284=>754, 8285=>342, 8286=>342, 8287=>200, 8288=>0,
+ 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0, 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>394, 8305=>197, 8308=>394, 8309=>394, 8310=>394, 8311=>394,
+ 8312=>394, 8313=>394, 8314=>475, 8315=>475, 8316=>475, 8317=>259, 8318=>259, 8319=>410, 8320=>394, 8321=>394, 8322=>394, 8323=>394, 8324=>394, 8325=>394, 8326=>394, 8327=>394,
+ 8328=>394, 8329=>394, 8330=>475, 8331=>475, 8332=>475, 8333=>259, 8334=>259, 8336=>412, 8337=>431, 8338=>439, 8339=>371, 8340=>431, 8352=>836, 8353=>626, 8354=>626, 8355=>626,
+ 8356=>626, 8357=>938, 8358=>753, 8359=>1339, 8360=>1084, 8361=>993, 8362=>768, 8363=>642, 8365=>626, 8366=>614, 8367=>1252, 8368=>626, 8369=>626, 8370=>626, 8371=>626, 8372=>773,
+ 8373=>626, 8400=>0, 8401=>0, 8406=>0, 8407=>0, 8411=>0, 8412=>0, 8417=>0, 8448=>995, 8449=>995, 8450=>660, 8451=>1090, 8452=>807, 8453=>1002, 8454=>1033, 8455=>626,
+ 8456=>628, 8457=>856, 8459=>965, 8460=>822, 8461=>799, 8462=>641, 8463=>641, 8464=>537, 8465=>627, 8466=>771, 8467=>424, 8468=>876, 8469=>753, 8470=>1083, 8471=>900, 8472=>627,
+ 8473=>675, 8474=>765, 8475=>844, 8476=>732, 8477=>721, 8478=>807, 8479=>639, 8480=>917, 8481=>1115, 8483=>751, 8484=>679, 8485=>560, 8486=>765, 8487=>692, 8488=>686, 8489=>272,
+ 8490=>697, 8491=>696, 8492=>835, 8493=>736, 8494=>769, 8495=>572, 8496=>656, 8497=>727, 8498=>615, 8499=>1065, 8500=>418, 8501=>714, 8502=>658, 8503=>444, 8504=>615, 8505=>342,
+ 8506=>851, 8507=>1232, 8508=>710, 8509=>663, 8510=>589, 8511=>776, 8512=>756, 8513=>707, 8514=>518, 8515=>573, 8516=>684, 8517=>747, 8518=>644, 8519=>610, 8520=>308, 8521=>308,
+ 8523=>785, 8526=>492, 8531=>932, 8532=>932, 8533=>932, 8534=>932, 8535=>932, 8536=>932, 8537=>932, 8538=>932, 8539=>932, 8540=>932, 8541=>932, 8542=>932, 8543=>554, 8544=>334,
+ 8545=>593, 8546=>851, 8547=>989, 8548=>696, 8549=>989, 8550=>1247, 8551=>1505, 8552=>1008, 8553=>694, 8554=>1008, 8555=>1266, 8556=>573, 8557=>660, 8558=>747, 8559=>896, 8560=>308,
+ 8561=>546, 8562=>785, 8563=>885, 8564=>586, 8565=>866, 8566=>1104, 8567=>1342, 8568=>872, 8569=>580, 8570=>872, 8571=>1110, 8572=>308, 8573=>533, 8574=>644, 8575=>938, 8576=>1160,
+ 8577=>747, 8578=>1160, 8579=>660, 8580=>533, 8592=>754, 8593=>754, 8594=>754, 8595=>754, 8596=>754, 8597=>754, 8598=>754, 8599=>754, 8600=>754, 8601=>754, 8602=>754, 8603=>754,
+ 8604=>754, 8605=>754, 8606=>754, 8607=>754, 8608=>754, 8609=>754, 8610=>754, 8611=>754, 8612=>754, 8613=>754, 8614=>754, 8615=>754, 8616=>754, 8617=>754, 8618=>754, 8619=>754,
+ 8620=>754, 8621=>754, 8622=>754, 8623=>754, 8624=>754, 8625=>754, 8626=>754, 8627=>754, 8628=>754, 8629=>754, 8630=>754, 8631=>754, 8632=>754, 8633=>754, 8634=>754, 8635=>754,
+ 8636=>754, 8637=>754, 8638=>754, 8639=>754, 8640=>754, 8641=>754, 8642=>754, 8643=>754, 8644=>754, 8645=>754, 8646=>754, 8647=>754, 8648=>754, 8649=>754, 8650=>754, 8651=>754,
+ 8652=>754, 8653=>754, 8654=>754, 8655=>754, 8656=>754, 8657=>754, 8658=>754, 8659=>754, 8660=>754, 8661=>754, 8662=>754, 8663=>754, 8664=>754, 8665=>754, 8666=>754, 8667=>754,
+ 8668=>754, 8669=>754, 8670=>754, 8671=>754, 8672=>754, 8673=>754, 8674=>754, 8675=>754, 8676=>754, 8677=>754, 8678=>754, 8679=>754, 8680=>754, 8681=>754, 8682=>754, 8683=>754,
+ 8684=>754, 8685=>754, 8686=>754, 8687=>754, 8688=>754, 8689=>754, 8690=>754, 8691=>754, 8692=>754, 8693=>754, 8694=>754, 8695=>754, 8696=>754, 8697=>754, 8698=>754, 8699=>754,
+ 8700=>754, 8701=>754, 8702=>754, 8703=>754, 8704=>696, 8705=>626, 8706=>489, 8707=>615, 8708=>615, 8709=>771, 8710=>627, 8711=>627, 8712=>807, 8713=>807, 8714=>675, 8715=>807,
+ 8716=>807, 8717=>675, 8718=>572, 8719=>708, 8720=>708, 8721=>646, 8722=>754, 8723=>754, 8724=>626, 8725=>150, 8726=>626, 8727=>754, 8728=>563, 8729=>342, 8730=>600, 8731=>600,
+ 8732=>600, 8733=>602, 8734=>750, 8735=>754, 8736=>807, 8737=>807, 8738=>754, 8739=>450, 8740=>450, 8741=>450, 8742=>450, 8743=>730, 8744=>730, 8745=>730, 8746=>730, 8747=>549,
+ 8748=>835, 8749=>1165, 8750=>506, 8751=>879, 8752=>1181, 8753=>506, 8754=>506, 8755=>506, 8756=>626, 8757=>626, 8758=>264, 8759=>626, 8760=>754, 8761=>754, 8762=>754, 8763=>754,
+ 8764=>754, 8765=>754, 8766=>754, 8767=>754, 8768=>337, 8769=>754, 8770=>754, 8771=>754, 8772=>754, 8773=>754, 8774=>754, 8775=>754, 8776=>754, 8777=>754, 8778=>754, 8779=>754,
+ 8780=>754, 8781=>754, 8782=>754, 8783=>754, 8784=>754, 8785=>754, 8786=>754, 8787=>754, 8788=>956, 8789=>956, 8790=>754, 8791=>754, 8792=>754, 8793=>754, 8794=>754, 8795=>754,
+ 8796=>754, 8797=>754, 8798=>754, 8799=>754, 8800=>754, 8801=>754, 8802=>754, 8803=>754, 8804=>754, 8805=>754, 8806=>754, 8807=>754, 8808=>756, 8809=>756, 8810=>942, 8811=>942,
+ 8812=>450, 8813=>754, 8814=>754, 8815=>754, 8816=>754, 8817=>754, 8818=>754, 8819=>754, 8820=>754, 8821=>754, 8822=>754, 8823=>754, 8824=>754, 8825=>754, 8826=>754, 8827=>754,
+ 8828=>754, 8829=>754, 8830=>754, 8831=>754, 8832=>754, 8833=>754, 8834=>754, 8835=>754, 8836=>754, 8837=>754, 8838=>754, 8839=>754, 8840=>754, 8841=>754, 8842=>754, 8843=>754,
+ 8844=>730, 8845=>730, 8846=>730, 8847=>754, 8848=>754, 8849=>754, 8850=>754, 8851=>678, 8852=>678, 8853=>754, 8854=>754, 8855=>754, 8856=>754, 8857=>754, 8858=>754, 8859=>754,
+ 8860=>754, 8861=>754, 8862=>754, 8863=>754, 8864=>754, 8865=>754, 8866=>822, 8867=>822, 8868=>822, 8869=>822, 8870=>488, 8871=>488, 8872=>822, 8873=>822, 8874=>822, 8875=>822,
+ 8876=>822, 8877=>822, 8878=>822, 8879=>822, 8882=>754, 8883=>754, 8884=>754, 8885=>754, 8886=>900, 8887=>900, 8888=>754, 8889=>754, 8890=>488, 8891=>730, 8892=>730, 8893=>730,
+ 8894=>754, 8895=>754, 8896=>758, 8897=>758, 8898=>758, 8899=>758, 8900=>494, 8901=>342, 8902=>563, 8904=>900, 8905=>900, 8906=>900, 8907=>900, 8908=>900, 8909=>754, 8910=>730,
+ 8911=>730, 8918=>754, 8919=>754, 8920=>1280, 8921=>1280, 8922=>754, 8923=>754, 8924=>754, 8925=>754, 8926=>754, 8927=>754, 8928=>754, 8929=>754, 8930=>754, 8931=>754, 8932=>754,
+ 8933=>754, 8934=>754, 8935=>754, 8936=>754, 8937=>754, 8938=>754, 8939=>754, 8940=>754, 8941=>754, 8942=>900, 8943=>900, 8944=>900, 8945=>900, 8946=>1042, 8947=>807, 8948=>675,
+ 8949=>807, 8950=>807, 8951=>675, 8952=>807, 8953=>807, 8954=>1042, 8955=>807, 8956=>675, 8957=>807, 8958=>675, 8959=>807, 8960=>542, 8961=>542, 8962=>644, 8963=>754, 8964=>754,
+ 8965=>754, 8966=>754, 8967=>439, 8968=>411, 8969=>411, 8970=>411, 8971=>411, 8972=>728, 8973=>728, 8974=>728, 8975=>728, 8976=>754, 8977=>484, 8984=>835, 8985=>754, 8988=>422,
+ 8989=>422, 8990=>422, 8991=>422, 8992=>549, 8993=>549, 8996=>1037, 8997=>1037, 8998=>1272, 8999=>1037, 9000=>1299, 9003=>1272, 9004=>786, 9075=>351, 9076=>644, 9077=>782, 9082=>618,
+ 9085=>776, 9095=>1037, 9108=>786, 9115=>450, 9116=>450, 9117=>450, 9118=>450, 9119=>450, 9120=>450, 9121=>450, 9122=>450, 9123=>450, 9124=>450, 9125=>450, 9126=>450, 9127=>675,
+ 9128=>675, 9129=>675, 9130=>675, 9131=>675, 9132=>675, 9133=>675, 9134=>549, 9166=>754, 9167=>850, 9187=>786, 9189=>692, 9250=>644, 9251=>644, 9312=>762, 9313=>762, 9314=>762,
+ 9315=>762, 9316=>762, 9317=>762, 9318=>762, 9319=>762, 9320=>762, 9321=>762, 9600=>692, 9601=>692, 9602=>692, 9603=>692, 9604=>692, 9605=>692, 9606=>692, 9607=>692, 9608=>692,
+ 9609=>692, 9610=>692, 9611=>692, 9612=>692, 9613=>692, 9614=>692, 9615=>692, 9616=>692, 9617=>692, 9618=>692, 9619=>692, 9620=>692, 9621=>692, 9622=>692, 9623=>692, 9624=>692,
+ 9625=>692, 9626=>692, 9627=>692, 9628=>692, 9629=>692, 9630=>692, 9631=>692, 9632=>850, 9633=>850, 9634=>850, 9635=>850, 9636=>850, 9637=>850, 9638=>850, 9639=>850, 9640=>850,
+ 9641=>850, 9642=>610, 9643=>610, 9644=>850, 9645=>850, 9646=>495, 9647=>495, 9648=>692, 9649=>692, 9650=>692, 9651=>692, 9652=>452, 9653=>452, 9654=>692, 9655=>692, 9656=>452,
+ 9657=>452, 9658=>692, 9659=>692, 9660=>692, 9661=>692, 9662=>452, 9663=>452, 9664=>692, 9665=>692, 9666=>452, 9667=>452, 9668=>692, 9669=>692, 9670=>692, 9671=>692, 9672=>692,
+ 9673=>785, 9674=>444, 9675=>785, 9676=>785, 9677=>785, 9678=>785, 9679=>785, 9680=>785, 9681=>785, 9682=>785, 9683=>785, 9684=>785, 9685=>785, 9686=>474, 9687=>474, 9688=>756,
+ 9689=>873, 9690=>873, 9691=>873, 9692=>348, 9693=>348, 9694=>348, 9695=>348, 9696=>692, 9697=>692, 9698=>692, 9699=>692, 9700=>692, 9701=>692, 9702=>575, 9703=>850, 9704=>850,
+ 9705=>850, 9706=>850, 9707=>850, 9708=>692, 9709=>692, 9710=>692, 9711=>1007, 9712=>850, 9713=>850, 9714=>850, 9715=>850, 9716=>785, 9717=>785, 9718=>785, 9719=>785, 9720=>692,
+ 9721=>692, 9722=>692, 9723=>747, 9724=>747, 9725=>659, 9726=>659, 9727=>692, 9728=>807, 9729=>900, 9730=>807, 9731=>807, 9732=>807, 9733=>807, 9734=>807, 9735=>515, 9736=>806,
+ 9737=>807, 9738=>799, 9739=>799, 9740=>604, 9741=>911, 9742=>1121, 9743=>1125, 9744=>807, 9745=>807, 9746=>807, 9747=>479, 9748=>807, 9749=>807, 9750=>807, 9751=>807, 9752=>807,
+ 9753=>807, 9754=>807, 9755=>807, 9756=>807, 9757=>548, 9758=>807, 9759=>548, 9760=>807, 9761=>807, 9762=>807, 9763=>807, 9764=>602, 9765=>671, 9766=>584, 9767=>705, 9768=>490,
+ 9769=>807, 9770=>807, 9771=>807, 9772=>639, 9773=>807, 9774=>807, 9775=>807, 9776=>896, 9777=>896, 9778=>896, 9779=>896, 9780=>896, 9781=>896, 9782=>896, 9783=>896, 9784=>807,
+ 9785=>807, 9786=>807, 9787=>807, 9788=>807, 9789=>807, 9790=>807, 9791=>552, 9792=>658, 9793=>658, 9794=>807, 9795=>807, 9796=>807, 9797=>807, 9798=>807, 9799=>807, 9800=>807,
+ 9801=>807, 9802=>807, 9803=>807, 9804=>807, 9805=>807, 9806=>807, 9807=>807, 9808=>807, 9809=>807, 9810=>807, 9811=>807, 9812=>807, 9813=>807, 9814=>807, 9815=>807, 9816=>807,
+ 9817=>807, 9818=>807, 9819=>807, 9820=>807, 9821=>807, 9822=>807, 9823=>807, 9824=>807, 9825=>807, 9826=>807, 9827=>807, 9828=>807, 9829=>807, 9830=>807, 9831=>807, 9832=>807,
+ 9833=>424, 9834=>574, 9835=>807, 9836=>807, 9837=>424, 9838=>321, 9839=>435, 9840=>673, 9841=>689, 9842=>807, 9843=>807, 9844=>807, 9845=>807, 9846=>807, 9847=>807, 9848=>807,
+ 9849=>807, 9850=>807, 9851=>807, 9852=>807, 9853=>807, 9854=>807, 9855=>807, 9856=>782, 9857=>782, 9858=>782, 9859=>782, 9860=>782, 9861=>782, 9862=>807, 9863=>807, 9864=>807,
+ 9865=>807, 9866=>807, 9867=>807, 9868=>807, 9869=>807, 9870=>807, 9871=>807, 9872=>807, 9873=>807, 9874=>807, 9875=>807, 9876=>807, 9877=>487, 9878=>807, 9879=>807, 9880=>807,
+ 9881=>807, 9882=>807, 9883=>807, 9884=>807, 9888=>807, 9889=>632, 9890=>903, 9891=>977, 9892=>1028, 9893=>811, 9894=>754, 9895=>754, 9896=>754, 9897=>754, 9898=>754, 9899=>754,
+ 9900=>754, 9901=>754, 9902=>754, 9903=>754, 9904=>759, 9905=>754, 9906=>658, 9985=>754, 9986=>754, 9987=>754, 9988=>754, 9990=>754, 9991=>754, 9992=>754, 9993=>754, 9996=>754,
+ 9997=>754, 9998=>754, 9999=>754, 10000=>754, 10001=>754, 10002=>754, 10003=>754, 10004=>754, 10005=>754, 10006=>754, 10007=>754, 10008=>754, 10009=>754, 10010=>754, 10011=>754, 10012=>754,
+ 10013=>754, 10014=>754, 10015=>754, 10016=>754, 10017=>754, 10018=>754, 10019=>754, 10020=>754, 10021=>754, 10022=>754, 10023=>754, 10025=>754, 10026=>754, 10027=>754, 10028=>754, 10029=>754,
+ 10030=>754, 10031=>754, 10032=>754, 10033=>754, 10034=>754, 10035=>754, 10036=>754, 10037=>754, 10038=>754, 10039=>754, 10040=>754, 10041=>754, 10042=>754, 10043=>754, 10044=>754, 10045=>754,
+ 10046=>754, 10047=>754, 10048=>754, 10049=>754, 10050=>754, 10051=>754, 10052=>754, 10053=>754, 10054=>754, 10055=>754, 10056=>754, 10057=>754, 10058=>754, 10059=>754, 10061=>807, 10063=>807,
+ 10064=>807, 10065=>807, 10066=>807, 10070=>807, 10072=>754, 10073=>754, 10074=>754, 10075=>290, 10076=>290, 10077=>484, 10078=>484, 10081=>754, 10082=>754, 10083=>754, 10084=>754, 10085=>754,
+ 10086=>754, 10087=>754, 10088=>754, 10089=>754, 10090=>754, 10091=>754, 10092=>754, 10093=>754, 10094=>754, 10095=>754, 10096=>754, 10097=>754, 10098=>754, 10099=>754, 10100=>754, 10101=>754,
+ 10102=>762, 10103=>762, 10104=>762, 10105=>762, 10106=>762, 10107=>762, 10108=>762, 10109=>762, 10110=>762, 10111=>762, 10112=>754, 10113=>754, 10114=>754, 10115=>754, 10116=>754, 10117=>754,
+ 10118=>754, 10119=>754, 10120=>754, 10121=>754, 10122=>754, 10123=>754, 10124=>754, 10125=>754, 10126=>754, 10127=>754, 10128=>754, 10129=>754, 10130=>754, 10131=>754, 10132=>754, 10136=>754,
+ 10137=>754, 10138=>754, 10139=>754, 10140=>754, 10141=>754, 10142=>754, 10143=>754, 10144=>754, 10145=>754, 10146=>754, 10147=>754, 10148=>754, 10149=>754, 10150=>754, 10151=>754, 10152=>754,
+ 10153=>754, 10154=>754, 10155=>754, 10156=>754, 10157=>754, 10158=>754, 10159=>754, 10161=>754, 10162=>754, 10163=>754, 10164=>754, 10165=>754, 10166=>754, 10167=>754, 10168=>754, 10169=>754,
+ 10170=>754, 10171=>754, 10172=>754, 10173=>754, 10174=>754, 10208=>444, 10214=>438, 10215=>438, 10216=>411, 10217=>411, 10218=>648, 10219=>648, 10224=>754, 10225=>754, 10226=>754, 10227=>754,
+ 10228=>1042, 10229=>1290, 10230=>1290, 10231=>1290, 10232=>1290, 10233=>1290, 10234=>1290, 10235=>1290, 10236=>1290, 10237=>1290, 10238=>1290, 10239=>1290, 10240=>703, 10241=>703, 10242=>703, 10243=>703,
+ 10244=>703, 10245=>703, 10246=>703, 10247=>703, 10248=>703, 10249=>703, 10250=>703, 10251=>703, 10252=>703, 10253=>703, 10254=>703, 10255=>703, 10256=>703, 10257=>703, 10258=>703, 10259=>703,
+ 10260=>703, 10261=>703, 10262=>703, 10263=>703, 10264=>703, 10265=>703, 10266=>703, 10267=>703, 10268=>703, 10269=>703, 10270=>703, 10271=>703, 10272=>703, 10273=>703, 10274=>703, 10275=>703,
+ 10276=>703, 10277=>703, 10278=>703, 10279=>703, 10280=>703, 10281=>703, 10282=>703, 10283=>703, 10284=>703, 10285=>703, 10286=>703, 10287=>703, 10288=>703, 10289=>703, 10290=>703, 10291=>703,
+ 10292=>703, 10293=>703, 10294=>703, 10295=>703, 10296=>703, 10297=>703, 10298=>703, 10299=>703, 10300=>703, 10301=>703, 10302=>703, 10303=>703, 10304=>703, 10305=>703, 10306=>703, 10307=>703,
+ 10308=>703, 10309=>703, 10310=>703, 10311=>703, 10312=>703, 10313=>703, 10314=>703, 10315=>703, 10316=>703, 10317=>703, 10318=>703, 10319=>703, 10320=>703, 10321=>703, 10322=>703, 10323=>703,
+ 10324=>703, 10325=>703, 10326=>703, 10327=>703, 10328=>703, 10329=>703, 10330=>703, 10331=>703, 10332=>703, 10333=>703, 10334=>703, 10335=>703, 10336=>703, 10337=>703, 10338=>703, 10339=>703,
+ 10340=>703, 10341=>703, 10342=>703, 10343=>703, 10344=>703, 10345=>703, 10346=>703, 10347=>703, 10348=>703, 10349=>703, 10350=>703, 10351=>703, 10352=>703, 10353=>703, 10354=>703, 10355=>703,
+ 10356=>703, 10357=>703, 10358=>703, 10359=>703, 10360=>703, 10361=>703, 10362=>703, 10363=>703, 10364=>703, 10365=>703, 10366=>703, 10367=>703, 10368=>703, 10369=>703, 10370=>703, 10371=>703,
+ 10372=>703, 10373=>703, 10374=>703, 10375=>703, 10376=>703, 10377=>703, 10378=>703, 10379=>703, 10380=>703, 10381=>703, 10382=>703, 10383=>703, 10384=>703, 10385=>703, 10386=>703, 10387=>703,
+ 10388=>703, 10389=>703, 10390=>703, 10391=>703, 10392=>703, 10393=>703, 10394=>703, 10395=>703, 10396=>703, 10397=>703, 10398=>703, 10399=>703, 10400=>703, 10401=>703, 10402=>703, 10403=>703,
+ 10404=>703, 10405=>703, 10406=>703, 10407=>703, 10408=>703, 10409=>703, 10410=>703, 10411=>703, 10412=>703, 10413=>703, 10414=>703, 10415=>703, 10416=>703, 10417=>703, 10418=>703, 10419=>703,
+ 10420=>703, 10421=>703, 10422=>703, 10423=>703, 10424=>703, 10425=>703, 10426=>703, 10427=>703, 10428=>703, 10429=>703, 10430=>703, 10431=>703, 10432=>703, 10433=>703, 10434=>703, 10435=>703,
+ 10436=>703, 10437=>703, 10438=>703, 10439=>703, 10440=>703, 10441=>703, 10442=>703, 10443=>703, 10444=>703, 10445=>703, 10446=>703, 10447=>703, 10448=>703, 10449=>703, 10450=>703, 10451=>703,
+ 10452=>703, 10453=>703, 10454=>703, 10455=>703, 10456=>703, 10457=>703, 10458=>703, 10459=>703, 10460=>703, 10461=>703, 10462=>703, 10463=>703, 10464=>703, 10465=>703, 10466=>703, 10467=>703,
+ 10468=>703, 10469=>703, 10470=>703, 10471=>703, 10472=>703, 10473=>703, 10474=>703, 10475=>703, 10476=>703, 10477=>703, 10478=>703, 10479=>703, 10480=>703, 10481=>703, 10482=>703, 10483=>703,
+ 10484=>703, 10485=>703, 10486=>703, 10487=>703, 10488=>703, 10489=>703, 10490=>703, 10491=>703, 10492=>703, 10493=>703, 10494=>703, 10495=>703, 10502=>754, 10503=>754, 10506=>754, 10507=>754,
+ 10560=>754, 10561=>754, 10627=>678, 10628=>678, 10702=>754, 10703=>941, 10704=>941, 10705=>900, 10706=>900, 10707=>900, 10708=>900, 10709=>900, 10731=>444, 10746=>754, 10747=>754, 10752=>900,
+ 10753=>900, 10754=>900, 10764=>1495, 10765=>506, 10766=>506, 10767=>506, 10768=>506, 10769=>506, 10770=>506, 10771=>506, 10772=>506, 10773=>506, 10774=>506, 10775=>506, 10776=>506, 10777=>506,
+ 10778=>506, 10779=>506, 10780=>506, 10799=>754, 10877=>754, 10878=>754, 10879=>754, 10880=>754, 10881=>754, 10882=>754, 10883=>754, 10884=>754, 10885=>754, 10886=>754, 10887=>754, 10888=>754,
+ 10889=>754, 10890=>754, 10891=>754, 10892=>754, 10893=>754, 10894=>754, 10895=>754, 10896=>754, 10897=>754, 10898=>754, 10899=>754, 10900=>754, 10901=>754, 10902=>754, 10903=>754, 10904=>754,
+ 10905=>754, 10906=>754, 10907=>754, 10908=>754, 10909=>754, 10910=>754, 10911=>754, 10912=>754, 10926=>754, 10927=>754, 10928=>754, 10929=>754, 10930=>754, 10931=>754, 10932=>754, 10933=>754,
+ 10934=>754, 10935=>754, 10936=>754, 10937=>754, 10938=>754, 11001=>754, 11002=>754, 11008=>754, 11009=>754, 11010=>754, 11011=>754, 11012=>754, 11013=>754, 11014=>754, 11015=>754, 11016=>754,
+ 11017=>754, 11018=>754, 11019=>754, 11020=>754, 11021=>754, 11022=>754, 11023=>754, 11024=>754, 11025=>754, 11026=>850, 11027=>850, 11028=>850, 11029=>850, 11030=>692, 11031=>692, 11032=>692,
+ 11033=>692, 11034=>850, 11040=>782, 11041=>786, 11042=>786, 11043=>786, 11360=>573, 11361=>324, 11362=>573, 11363=>659, 11364=>693, 11365=>607, 11366=>430, 11367=>860, 11368=>641, 11369=>697,
+ 11370=>598, 11371=>652, 11372=>523, 11373=>774, 11374=>896, 11375=>696, 11377=>700, 11378=>1099, 11379=>950, 11380=>586, 11381=>628, 11382=>508, 11383=>704, 11385=>484, 11387=>502, 11388=>197,
+ 11389=>438, 11800=>527, 11822=>522, 19904=>807, 19905=>807, 19906=>807, 19907=>807, 19908=>807, 19909=>807, 19910=>807, 19911=>807, 19912=>807, 19913=>807, 19914=>807, 19915=>807, 19916=>807,
+ 19917=>807, 19918=>807, 19919=>807, 19920=>807, 19921=>807, 19922=>807, 19923=>807, 19924=>807, 19925=>807, 19926=>807, 19927=>807, 19928=>807, 19929=>807, 19930=>807, 19931=>807, 19932=>807,
+ 19933=>807, 19934=>807, 19935=>807, 19936=>807, 19937=>807, 19938=>807, 19939=>807, 19940=>807, 19941=>807, 19942=>807, 19943=>807, 19944=>807, 19945=>807, 19946=>807, 19947=>807, 19948=>807,
+ 19949=>807, 19950=>807, 19951=>807, 19952=>807, 19953=>807, 19954=>807, 19955=>807, 19956=>807, 19957=>807, 19958=>807, 19959=>807, 19960=>807, 19961=>807, 19962=>807, 19963=>807, 19964=>807,
+ 19965=>807, 19966=>807, 19967=>807, 42564=>648, 42565=>536, 42566=>392, 42567=>396, 42572=>1265, 42573=>1055, 42576=>1110, 42577=>924, 42580=>1056, 42581=>875, 42770=>450, 42771=>450, 42772=>450,
+ 42773=>450, 42774=>450, 42790=>753, 42791=>641, 42792=>928, 42793=>771, 42800=>502, 42801=>536, 42802=>1214, 42803=>946, 42808=>971, 42809=>830, 42810=>971, 42811=>830, 42812=>932, 42813=>830,
+ 42814=>628, 42815=>494, 42822=>765, 42823=>488, 42824=>614, 42825=>478, 42826=>826, 42827=>732, 42830=>1266, 42831=>995, 42880=>573, 42881=>308, 43003=>615, 43004=>659, 43005=>896, 43006=>334,
+ 43007=>1192, 62917=>618, 64256=>749, 64257=>708, 64258=>708, 64259=>1024, 64260=>1024, 64261=>727, 64262=>917, 64275=>1249, 64276=>1245, 64277=>1240, 64278=>1245, 64279=>1542, 64285=>308, 64286=>0,
+ 64287=>597, 64288=>647, 64289=>867, 64290=>801, 64291=>889, 64292=>867, 64293=>844, 64294=>889, 64295=>889, 64296=>878, 64297=>754, 64298=>854, 64299=>854, 64300=>949, 64301=>949, 64302=>676,
+ 64303=>676, 64304=>676, 64305=>605, 64306=>483, 64307=>589, 64308=>641, 64309=>308, 64310=>442, 64312=>651, 64313=>420, 64314=>584, 64315=>584, 64316=>611, 64318=>698, 64320=>447, 64321=>696,
+ 64323=>646, 64324=>618, 64326=>676, 64327=>656, 64328=>584, 64329=>854, 64330=>676, 64331=>308, 64332=>605, 64333=>584, 64334=>618, 64335=>676, 65024=>0, 65025=>0, 65026=>0, 65027=>0,
+ 65028=>0, 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65056=>0, 65057=>0, 65058=>0, 65059=>0,
+ 65529=>0, 65530=>0, 65531=>0, 65532=>0, 65533=>1002);
+$enc='';
+$diff='';
+$file='dejavusanscondensedbi.z';
+$ctg='dejavusanscondensedbi.ctg.z';
+$originalsize=477812;
+?>
diff --git a/lib/tcpdf/fonts/dejavusanscondensedbi.z b/lib/tcpdf/fonts/dejavusanscondensedbi.z
new file mode 100644
index 0000000000..ee309639e1
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusanscondensedbi.z differ
diff --git a/lib/tcpdf/fonts/dejavusanscondensedi.ctg.z b/lib/tcpdf/fonts/dejavusanscondensedi.ctg.z
new file mode 100644
index 0000000000..099984b820
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusanscondensedi.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusanscondensedi.php b/lib/tcpdf/fonts/dejavusanscondensedi.php
new file mode 100644
index 0000000000..483797aa91
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusanscondensedi.php
@@ -0,0 +1,293 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>96,'FontBBox'=>'[-914 -356 1493 1068]','ItalicAngle'=>-11,'StemV'=>70,'MissingWidth'=>540);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>540, 32=>286, 33=>360, 34=>414, 35=>754, 36=>572, 37=>855, 38=>702, 39=>247, 40=>351, 41=>351, 42=>450, 43=>754, 44=>286, 45=>325, 46=>286,
+ 47=>303, 48=>572, 49=>572, 50=>572, 51=>572, 52=>572, 53=>572, 54=>572, 55=>572, 56=>572, 57=>572, 58=>303, 59=>303, 60=>754, 61=>754, 62=>754,
+ 63=>478, 64=>900, 65=>615, 66=>617, 67=>628, 68=>693, 69=>568, 70=>518, 71=>697, 72=>677, 73=>265, 74=>265, 75=>590, 76=>501, 77=>776, 78=>673,
+ 79=>708, 80=>542, 81=>708, 82=>625, 83=>571, 84=>549, 85=>659, 86=>615, 87=>890, 88=>616, 89=>549, 90=>616, 91=>351, 92=>303, 93=>351, 94=>754,
+ 95=>450, 96=>450, 97=>551, 98=>571, 99=>495, 100=>571, 101=>554, 102=>316, 103=>571, 104=>570, 105=>250, 106=>250, 107=>521, 108=>250, 109=>876, 110=>570,
+ 111=>550, 112=>571, 113=>571, 114=>370, 115=>469, 116=>353, 117=>570, 118=>532, 119=>736, 120=>532, 121=>532, 122=>472, 123=>572, 124=>303, 125=>572, 126=>754,
+ 8364=>572, 1027=>557, 8218=>286, 402=>316, 8222=>466, 8230=>900, 8224=>450, 8225=>450, 710=>450, 8240=>1215, 352=>571, 8249=>360, 338=>962, 1036=>710, 381=>616, 1039=>677,
+ 8216=>286, 8217=>286, 8220=>466, 8221=>466, 8226=>531, 8211=>450, 8212=>900, 732=>450, 8482=>900, 353=>469, 8250=>360, 339=>925, 1116=>543, 382=>472, 376=>549, 160=>286,
+ 161=>360, 162=>572, 163=>572, 164=>572, 165=>572, 166=>303, 167=>450, 168=>450, 169=>900, 170=>424, 171=>555, 172=>754, 173=>325, 174=>900, 175=>450, 176=>450,
+ 177=>754, 178=>360, 179=>360, 180=>450, 181=>572, 182=>572, 183=>286, 184=>450, 185=>360, 186=>424, 187=>555, 188=>872, 189=>872, 190=>872, 191=>478, 192=>615,
+ 193=>615, 194=>615, 195=>615, 196=>615, 197=>615, 198=>876, 199=>628, 200=>568, 201=>568, 202=>568, 203=>568, 204=>265, 205=>265, 206=>265, 207=>265, 208=>697,
+ 209=>673, 210=>708, 211=>708, 212=>708, 213=>708, 214=>708, 215=>754, 216=>708, 217=>659, 218=>659, 219=>659, 220=>659, 221=>549, 222=>547, 223=>567, 224=>551,
+ 225=>551, 226=>551, 227=>551, 228=>551, 229=>551, 230=>896, 231=>495, 232=>554, 233=>554, 234=>554, 235=>554, 236=>278, 237=>278, 238=>278, 239=>278, 240=>550,
+ 241=>570, 242=>550, 243=>550, 244=>550, 245=>550, 246=>550, 247=>754, 248=>550, 249=>570, 250=>570, 251=>570, 252=>570, 253=>532, 254=>571, 255=>532, 256=>615,
+ 257=>551, 258=>615, 259=>551, 260=>615, 261=>551, 262=>628, 263=>495, 264=>628, 265=>495, 266=>628, 267=>495, 268=>628, 269=>495, 270=>693, 271=>571, 272=>697,
+ 273=>571, 274=>568, 275=>554, 276=>568, 277=>554, 278=>568, 279=>554, 280=>568, 281=>554, 282=>568, 283=>554, 284=>697, 285=>571, 286=>697, 287=>571, 288=>697,
+ 289=>571, 290=>697, 291=>571, 292=>677, 293=>570, 294=>824, 295=>625, 296=>265, 297=>278, 298=>265, 299=>278, 300=>265, 301=>278, 302=>265, 303=>250, 304=>265,
+ 305=>250, 306=>531, 307=>500, 308=>265, 309=>278, 310=>590, 311=>521, 312=>521, 313=>501, 314=>250, 315=>501, 316=>250, 317=>501, 318=>250, 319=>501, 320=>250,
+ 321=>505, 322=>258, 323=>673, 324=>570, 325=>673, 326=>570, 327=>673, 328=>570, 329=>732, 330=>673, 331=>570, 332=>708, 333=>550, 334=>708, 335=>550, 336=>708,
+ 337=>550, 340=>625, 341=>370, 342=>625, 343=>370, 344=>625, 345=>370, 346=>571, 347=>469, 348=>571, 349=>469, 350=>571, 351=>469, 354=>549, 355=>353, 356=>549,
+ 357=>353, 358=>549, 359=>353, 360=>659, 361=>570, 362=>659, 363=>570, 364=>659, 365=>570, 366=>659, 367=>570, 368=>659, 369=>570, 370=>659, 371=>570, 372=>890,
+ 373=>736, 374=>549, 375=>532, 377=>616, 378=>472, 379=>616, 380=>472, 383=>316, 384=>571, 385=>661, 386=>617, 387=>571, 388=>617, 389=>571, 390=>633, 391=>628,
+ 392=>495, 393=>697, 394=>737, 395=>617, 396=>571, 397=>550, 398=>568, 399=>708, 400=>553, 401=>518, 403=>697, 404=>618, 405=>885, 406=>318, 407=>265, 408=>671,
+ 409=>521, 410=>250, 411=>532, 412=>876, 413=>673, 414=>570, 415=>708, 416=>822, 417=>550, 418=>844, 419=>663, 420=>586, 421=>571, 422=>625, 423=>571, 424=>469,
+ 425=>568, 426=>302, 427=>353, 428=>549, 429=>353, 430=>549, 431=>754, 432=>570, 433=>688, 434=>648, 435=>669, 436=>657, 437=>616, 438=>472, 439=>599, 440=>599,
+ 441=>520, 442=>472, 443=>572, 444=>599, 445=>520, 446=>459, 447=>571, 448=>265, 449=>443, 450=>413, 451=>266, 452=>1310, 453=>1165, 454=>1043, 455=>767, 456=>751,
+ 457=>500, 458=>938, 459=>923, 460=>820, 461=>615, 462=>551, 463=>265, 464=>250, 465=>708, 466=>550, 467=>659, 468=>570, 469=>659, 470=>570, 471=>659, 472=>570,
+ 473=>659, 474=>570, 475=>659, 476=>570, 477=>554, 478=>615, 479=>551, 480=>615, 481=>551, 482=>876, 483=>896, 484=>697, 485=>571, 486=>697, 487=>571, 488=>590,
+ 489=>521, 490=>708, 491=>550, 492=>708, 493=>550, 494=>599, 495=>472, 496=>250, 497=>1310, 498=>1165, 499=>1043, 500=>697, 501=>571, 502=>1001, 503=>614, 504=>673,
+ 505=>570, 506=>615, 507=>551, 508=>876, 509=>896, 510=>708, 511=>550, 512=>615, 513=>551, 514=>615, 515=>551, 516=>568, 517=>554, 518=>568, 519=>554, 520=>265,
+ 521=>250, 522=>265, 523=>250, 524=>708, 525=>550, 526=>708, 527=>550, 528=>625, 529=>370, 530=>625, 531=>370, 532=>659, 533=>570, 534=>659, 535=>570, 536=>571,
+ 537=>469, 538=>549, 539=>353, 540=>564, 541=>469, 542=>677, 543=>570, 544=>662, 545=>754, 546=>628, 547=>549, 548=>616, 549=>472, 550=>615, 551=>551, 552=>568,
+ 553=>554, 554=>708, 555=>550, 556=>708, 557=>550, 558=>708, 559=>550, 560=>708, 561=>550, 562=>549, 563=>532, 564=>427, 565=>758, 566=>429, 567=>250, 568=>898,
+ 569=>898, 570=>615, 571=>628, 572=>495, 573=>501, 574=>549, 575=>469, 576=>472, 577=>542, 578=>431, 579=>617, 580=>659, 581=>615, 582=>568, 583=>554, 584=>265,
+ 585=>250, 586=>703, 587=>571, 588=>625, 589=>370, 590=>549, 591=>532, 592=>551, 593=>571, 594=>571, 595=>571, 596=>495, 597=>495, 598=>571, 599=>654, 600=>554,
+ 601=>554, 602=>759, 603=>490, 604=>490, 605=>698, 606=>598, 607=>293, 608=>626, 609=>571, 610=>566, 611=>536, 612=>536, 613=>570, 614=>570, 615=>570, 616=>334,
+ 617=>348, 618=>334, 619=>356, 620=>438, 621=>250, 622=>635, 623=>876, 624=>876, 625=>876, 626=>581, 627=>578, 628=>570, 629=>550, 630=>772, 631=>655, 632=>593,
+ 633=>422, 634=>422, 635=>422, 636=>422, 637=>422, 638=>477, 639=>477, 640=>541, 641=>541, 642=>469, 643=>302, 644=>302, 645=>415, 646=>302, 647=>353, 648=>353,
+ 649=>570, 650=>556, 651=>538, 652=>532, 653=>736, 654=>532, 655=>549, 656=>472, 657=>472, 658=>520, 659=>520, 660=>459, 661=>459, 662=>459, 663=>459, 664=>708,
+ 665=>521, 666=>598, 667=>637, 668=>588, 669=>263, 670=>600, 671=>456, 672=>654, 673=>459, 674=>459, 675=>913, 676=>952, 677=>911, 678=>742, 679=>549, 680=>700,
+ 681=>763, 682=>576, 683=>589, 684=>463, 685=>463, 686=>513, 687=>597, 688=>359, 689=>359, 690=>157, 691=>233, 692=>266, 693=>266, 694=>341, 695=>463, 696=>335,
+ 697=>250, 698=>414, 699=>286, 700=>286, 701=>286, 702=>276, 703=>276, 704=>333, 705=>333, 706=>450, 707=>450, 708=>450, 709=>450, 711=>450, 712=>247, 713=>450,
+ 714=>450, 715=>450, 716=>247, 717=>450, 718=>450, 719=>450, 720=>303, 721=>303, 722=>276, 723=>276, 724=>450, 725=>450, 726=>371, 727=>450, 728=>450, 729=>450,
+ 730=>450, 731=>450, 733=>450, 734=>284, 735=>450, 736=>383, 737=>149, 738=>335, 739=>399, 740=>333, 741=>444, 742=>444, 743=>444, 744=>444, 745=>444, 748=>450,
+ 749=>450, 750=>450, 755=>450, 759=>450, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0,
+ 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0,
+ 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0,
+ 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0,
+ 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 837=>0, 838=>0, 839=>0, 840=>0, 841=>0, 842=>0, 843=>0,
+ 844=>0, 845=>0, 846=>0, 847=>0, 849=>0, 855=>0, 856=>0, 860=>0, 861=>0, 862=>0, 863=>0, 864=>0, 865=>0, 866=>0, 884=>250, 885=>250,
+ 890=>450, 891=>494, 892=>495, 893=>494, 894=>303, 900=>450, 901=>450, 902=>684, 903=>286, 904=>690, 905=>813, 906=>391, 908=>755, 910=>773, 911=>814, 912=>338,
+ 913=>615, 914=>617, 915=>501, 916=>615, 917=>568, 918=>616, 919=>677, 920=>708, 921=>265, 922=>590, 923=>615, 924=>776, 925=>673, 926=>568, 927=>708, 928=>752,
+ 929=>542, 931=>568, 932=>549, 933=>549, 934=>708, 935=>616, 936=>708, 937=>688, 938=>265, 939=>549, 940=>659, 941=>541, 942=>634, 943=>338, 944=>579, 945=>593,
+ 946=>574, 947=>532, 948=>550, 949=>486, 950=>489, 951=>570, 952=>550, 953=>304, 954=>530, 955=>532, 956=>572, 957=>502, 958=>501, 959=>550, 960=>542, 961=>571,
+ 962=>528, 963=>570, 964=>542, 965=>521, 966=>593, 967=>532, 968=>593, 969=>753, 970=>304, 971=>521, 972=>550, 973=>521, 974=>753, 976=>553, 977=>557, 978=>628,
+ 979=>758, 980=>628, 981=>593, 982=>753, 983=>597, 984=>708, 985=>550, 986=>583, 987=>528, 988=>518, 989=>413, 990=>593, 991=>593, 992=>778, 993=>564, 994=>840,
+ 995=>753, 996=>682, 997=>593, 998=>712, 999=>553, 1000=>618, 1001=>546, 1002=>690, 1003=>563, 1004=>629, 1005=>550, 1006=>549, 1007=>482, 1008=>597, 1009=>571, 1010=>495,
+ 1011=>250, 1012=>708, 1013=>554, 1014=>554, 1015=>547, 1016=>571, 1017=>628, 1018=>776, 1019=>585, 1020=>571, 1021=>633, 1022=>628, 1023=>633, 1024=>632, 1025=>632, 1026=>708,
+ 1028=>628, 1029=>571, 1030=>265, 1031=>265, 1032=>265, 1033=>984, 1034=>940, 1035=>708, 1037=>748, 1038=>609, 1040=>615, 1041=>617, 1042=>617, 1043=>501, 1044=>703, 1045=>568,
+ 1046=>969, 1047=>577, 1048=>673, 1049=>673, 1050=>639, 1051=>677, 1052=>776, 1053=>677, 1054=>708, 1055=>677, 1056=>542, 1057=>628, 1058=>549, 1059=>548, 1060=>774, 1061=>616,
+ 1062=>699, 1063=>617, 1064=>962, 1065=>984, 1066=>749, 1067=>736, 1068=>617, 1069=>628, 1070=>971, 1071=>625, 1072=>551, 1073=>555, 1074=>530, 1075=>473, 1076=>622, 1077=>554,
+ 1078=>811, 1079=>479, 1080=>584, 1081=>584, 1082=>543, 1083=>575, 1084=>679, 1085=>588, 1086=>550, 1087=>588, 1088=>571, 1089=>495, 1090=>524, 1091=>532, 1092=>769, 1093=>532,
+ 1094=>612, 1095=>532, 1096=>823, 1097=>848, 1098=>636, 1099=>710, 1100=>530, 1101=>494, 1102=>757, 1103=>541, 1104=>554, 1105=>554, 1106=>563, 1107=>473, 1108=>494, 1109=>469,
+ 1110=>250, 1111=>250, 1112=>250, 1113=>812, 1114=>809, 1115=>586, 1117=>584, 1118=>532, 1119=>588, 1120=>840, 1121=>753, 1122=>693, 1123=>604, 1124=>848, 1125=>674, 1126=>791,
+ 1127=>705, 1128=>1043, 1129=>901, 1130=>708, 1131=>550, 1132=>924, 1133=>742, 1134=>572, 1135=>486, 1136=>771, 1137=>789, 1138=>708, 1139=>550, 1140=>703, 1141=>598, 1142=>703,
+ 1143=>598, 1144=>893, 1145=>813, 1146=>857, 1147=>682, 1148=>1062, 1149=>925, 1150=>840, 1151=>753, 1152=>628, 1153=>495, 1154=>452, 1155=>0, 1156=>0, 1157=>0, 1158=>0,
+ 1160=>376, 1161=>376, 1162=>673, 1163=>591, 1164=>617, 1165=>530, 1166=>542, 1167=>571, 1168=>549, 1169=>473, 1170=>607, 1171=>500, 1172=>501, 1173=>441, 1174=>969, 1175=>811,
+ 1176=>577, 1177=>479, 1178=>639, 1179=>543, 1180=>639, 1181=>543, 1182=>639, 1183=>543, 1184=>771, 1185=>748, 1186=>677, 1187=>594, 1188=>913, 1189=>789, 1190=>1002, 1191=>855,
+ 1192=>716, 1193=>586, 1194=>628, 1195=>495, 1196=>549, 1197=>476, 1198=>549, 1199=>532, 1200=>549, 1201=>532, 1202=>616, 1203=>532, 1204=>840, 1205=>726, 1206=>617, 1207=>532,
+ 1208=>617, 1209=>532, 1210=>617, 1211=>570, 1212=>836, 1213=>658, 1214=>836, 1215=>658, 1216=>265, 1217=>969, 1218=>811, 1219=>589, 1220=>543, 1221=>677, 1222=>575, 1223=>677,
+ 1224=>594, 1225=>677, 1226=>594, 1227=>617, 1228=>532, 1229=>776, 1230=>679, 1231=>250, 1232=>615, 1233=>551, 1234=>615, 1235=>551, 1236=>876, 1237=>896, 1238=>568, 1239=>554,
+ 1240=>708, 1241=>554, 1242=>708, 1243=>554, 1244=>969, 1245=>811, 1246=>577, 1247=>479, 1248=>599, 1249=>520, 1250=>673, 1251=>584, 1252=>673, 1253=>584, 1254=>708, 1255=>550,
+ 1256=>708, 1257=>550, 1258=>708, 1259=>550, 1260=>628, 1261=>494, 1262=>548, 1263=>532, 1264=>548, 1265=>532, 1266=>548, 1267=>532, 1268=>617, 1269=>532, 1270=>501, 1271=>442,
+ 1272=>736, 1273=>710, 1274=>607, 1275=>500, 1276=>616, 1277=>532, 1278=>616, 1279=>532, 1280=>617, 1281=>530, 1282=>905, 1283=>807, 1284=>877, 1285=>782, 1286=>611, 1287=>529,
+ 1288=>964, 1289=>861, 1290=>1001, 1291=>870, 1292=>697, 1293=>593, 1294=>695, 1295=>640, 1296=>553, 1297=>486, 1298=>677, 1299=>575, 1306=>708, 1307=>571, 1308=>890, 1309=>736,
+ 1312=>1002, 1313=>848, 1314=>1002, 1315=>854, 1329=>780, 1330=>659, 1331=>794, 1332=>794, 1333=>659, 1334=>579, 1335=>613, 1336=>659, 1337=>765, 1338=>794, 1339=>659, 1340=>501,
+ 1341=>741, 1342=>888, 1343=>659, 1344=>636, 1345=>579, 1346=>794, 1347=>699, 1348=>794, 1349=>659, 1350=>756, 1351=>659, 1352=>659, 1353=>659, 1354=>711, 1355=>579, 1356=>794,
+ 1357=>659, 1358=>794, 1359=>571, 1360=>659, 1361=>659, 1362=>719, 1363=>774, 1364=>711, 1365=>708, 1366=>571, 1369=>276, 1370=>286, 1371=>450, 1372=>450, 1373=>352, 1374=>474,
+ 1375=>450, 1377=>876, 1378=>570, 1379=>686, 1380=>690, 1381=>570, 1382=>627, 1383=>479, 1384=>570, 1385=>630, 1386=>627, 1387=>570, 1388=>363, 1389=>804, 1390=>576, 1391=>570,
+ 1392=>570, 1393=>571, 1394=>631, 1395=>570, 1396=>593, 1397=>250, 1398=>684, 1399=>464, 1400=>570, 1401=>407, 1402=>876, 1403=>464, 1404=>691, 1405=>570, 1406=>626, 1407=>876,
+ 1408=>570, 1409=>571, 1410=>451, 1411=>876, 1412=>583, 1413=>550, 1414=>566, 1415=>686, 1417=>303, 1418=>390, 1456=>0, 1457=>0, 1458=>0, 1459=>0, 1460=>0, 1461=>0,
+ 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1466=>0, 1467=>0, 1468=>0, 1469=>0, 1470=>325, 1471=>0, 1472=>265, 1473=>0, 1474=>0, 1475=>265, 1478=>410, 1479=>0,
+ 1488=>566, 1489=>547, 1490=>403, 1491=>534, 1492=>576, 1493=>245, 1494=>336, 1495=>576, 1496=>583, 1497=>245, 1498=>532, 1499=>500, 1500=>539, 1501=>576, 1502=>593, 1503=>245,
+ 1504=>397, 1505=>629, 1506=>506, 1507=>576, 1508=>543, 1509=>468, 1510=>523, 1511=>596, 1512=>532, 1513=>727, 1514=>591, 1520=>423, 1521=>409, 1522=>423, 1523=>374, 1524=>580,
+ 3647=>586, 3713=>603, 3714=>615, 3716=>619, 3719=>434, 3720=>565, 3722=>615, 3725=>619, 3732=>577, 3733=>577, 3734=>605, 3735=>589, 3737=>576, 3738=>533, 3739=>533, 3740=>670,
+ 3741=>690, 3742=>618, 3743=>618, 3745=>631, 3746=>619, 3747=>615, 3749=>584, 3751=>569, 3754=>633, 3755=>737, 3757=>569, 3758=>615, 3759=>708, 3760=>569, 3761=>0, 3762=>485,
+ 3763=>485, 3764=>0, 3765=>0, 3766=>0, 3767=>0, 3768=>0, 3769=>0, 3771=>0, 3772=>0, 3773=>597, 3776=>324, 3777=>611, 3778=>414, 3779=>492, 3780=>442, 3782=>606,
+ 3784=>0, 3785=>0, 3786=>0, 3787=>0, 3788=>0, 3789=>0, 3792=>572, 3793=>576, 3794=>576, 3795=>603, 3796=>563, 3797=>563, 3798=>633, 3799=>603, 3800=>606, 3801=>609,
+ 3804=>925, 3805=>925, 4256=>756, 4257=>621, 4258=>577, 4259=>683, 4260=>532, 4261=>617, 4262=>710, 4263=>729, 4264=>420, 4265=>508, 4266=>710, 4267=>713, 4268=>526, 4269=>753,
+ 4270=>675, 4271=>620, 4272=>729, 4273=>526, 4274=>526, 4275=>753, 4276=>753, 4277=>581, 4278=>543, 4279=>526, 4280=>536, 4281=>526, 4282=>649, 4283=>715, 4284=>526, 4285=>510,
+ 4286=>526, 4287=>602, 4288=>719, 4289=>488, 4290=>598, 4291=>488, 4292=>508, 4293=>606, 4304=>457, 4305=>457, 4306=>479, 4307=>706, 4308=>470, 4309=>465, 4310=>457, 4311=>717,
+ 4312=>457, 4313=>466, 4314=>952, 4315=>470, 4316=>470, 4317=>704, 4318=>466, 4319=>470, 4320=>713, 4321=>470, 4322=>590, 4323=>471, 4324=>709, 4325=>470, 4326=>704, 4327=>470,
+ 4328=>470, 4329=>470, 4330=>510, 4331=>470, 4332=>470, 4333=>439, 4334=>470, 4335=>448, 4336=>465, 4337=>504, 4338=>457, 4339=>457, 4340=>457, 4341=>507, 4342=>741, 4343=>536,
+ 4344=>470, 4345=>498, 4346=>498, 4347=>365, 4348=>273, 5121=>615, 5122=>684, 5123=>615, 5124=>615, 5125=>692, 5126=>692, 5127=>692, 5129=>692, 5130=>692, 5131=>692, 5132=>751,
+ 5133=>751, 5134=>751, 5135=>751, 5136=>751, 5137=>751, 5138=>870, 5139=>906, 5140=>870, 5141=>906, 5142=>692, 5143=>870, 5144=>906, 5145=>870, 5146=>906, 5147=>692, 5149=>230,
+ 5150=>488, 5151=>381, 5152=>381, 5153=>350, 5154=>350, 5155=>354, 5156=>350, 5157=>419, 5158=>347, 5159=>230, 5160=>350, 5161=>350, 5162=>350, 5163=>980, 5164=>817, 5165=>857,
+ 5166=>1005, 5167=>615, 5168=>684, 5169=>615, 5170=>615, 5171=>656, 5172=>656, 5173=>656, 5175=>656, 5176=>656, 5177=>656, 5178=>751, 5179=>615, 5180=>751, 5181=>751, 5182=>751,
+ 5183=>751, 5184=>870, 5185=>906, 5186=>870, 5187=>906, 5188=>870, 5189=>906, 5190=>870, 5191=>906, 5192=>656, 5193=>457, 5194=>172, 5196=>659, 5197=>732, 5198=>659, 5199=>659,
+ 5200=>657, 5201=>657, 5202=>657, 5204=>657, 5205=>657, 5206=>657, 5207=>829, 5208=>800, 5209=>829, 5210=>800, 5211=>829, 5212=>800, 5213=>835, 5214=>810, 5215=>835, 5216=>810,
+ 5217=>853, 5218=>810, 5219=>853, 5220=>810, 5221=>853, 5222=>391, 5223=>790, 5224=>790, 5225=>779, 5226=>801, 5227=>565, 5228=>628, 5229=>565, 5230=>565, 5231=>565, 5232=>565,
+ 5233=>565, 5234=>565, 5235=>565, 5236=>773, 5237=>693, 5238=>733, 5239=>734, 5240=>733, 5241=>734, 5242=>773, 5243=>693, 5244=>773, 5245=>693, 5246=>733, 5247=>734, 5248=>733,
+ 5249=>734, 5250=>733, 5251=>366, 5252=>366, 5253=>675, 5254=>697, 5255=>675, 5256=>697, 5257=>565, 5258=>628, 5259=>565, 5260=>565, 5261=>565, 5262=>565, 5263=>565, 5264=>565,
+ 5265=>565, 5266=>773, 5267=>693, 5268=>733, 5269=>734, 5270=>733, 5271=>734, 5272=>773, 5273=>693, 5274=>773, 5275=>693, 5276=>733, 5277=>734, 5278=>733, 5279=>734, 5280=>733,
+ 5281=>391, 5282=>391, 5283=>549, 5284=>557, 5285=>501, 5286=>501, 5287=>549, 5288=>549, 5289=>549, 5290=>501, 5291=>501, 5292=>674, 5293=>691, 5294=>671, 5295=>687, 5296=>671,
+ 5297=>687, 5298=>674, 5299=>691, 5300=>674, 5301=>691, 5302=>671, 5303=>687, 5304=>671, 5305=>687, 5306=>671, 5307=>347, 5308=>457, 5309=>347, 5312=>766, 5313=>852, 5314=>766,
+ 5315=>766, 5316=>766, 5317=>766, 5318=>766, 5319=>766, 5320=>766, 5321=>962, 5322=>931, 5323=>953, 5324=>766, 5325=>953, 5326=>766, 5327=>766, 5328=>540, 5329=>407, 5330=>540,
+ 5331=>766, 5332=>852, 5333=>766, 5334=>766, 5335=>766, 5336=>766, 5337=>766, 5338=>766, 5339=>766, 5340=>962, 5341=>931, 5342=>953, 5343=>927, 5344=>953, 5345=>927, 5346=>962,
+ 5347=>931, 5348=>962, 5349=>931, 5350=>975, 5351=>927, 5352=>975, 5353=>927, 5354=>540, 5356=>656, 5357=>542, 5358=>603, 5359=>542, 5360=>542, 5361=>542, 5362=>542, 5363=>542,
+ 5364=>542, 5365=>542, 5366=>751, 5367=>678, 5368=>712, 5369=>694, 5370=>712, 5371=>694, 5372=>751, 5373=>678, 5374=>751, 5375=>678, 5376=>712, 5377=>694, 5378=>712, 5379=>694,
+ 5380=>712, 5381=>376, 5382=>378, 5383=>376, 5392=>641, 5393=>641, 5394=>641, 5395=>802, 5396=>802, 5397=>802, 5398=>802, 5399=>818, 5400=>785, 5401=>818, 5402=>785, 5403=>818,
+ 5404=>785, 5405=>1026, 5406=>989, 5407=>1026, 5408=>989, 5409=>1026, 5410=>989, 5411=>1026, 5412=>989, 5413=>576, 5414=>564, 5415=>627, 5416=>564, 5417=>564, 5418=>564, 5419=>564,
+ 5420=>564, 5421=>564, 5422=>564, 5423=>760, 5424=>703, 5425=>734, 5426=>736, 5427=>734, 5428=>736, 5429=>760, 5430=>703, 5431=>760, 5432=>703, 5433=>734, 5434=>736, 5435=>734,
+ 5436=>736, 5437=>734, 5438=>376, 5440=>350, 5441=>436, 5442=>824, 5443=>824, 5444=>776, 5445=>824, 5446=>776, 5447=>776, 5448=>542, 5449=>542, 5450=>542, 5451=>542, 5452=>542,
+ 5453=>542, 5454=>751, 5455=>678, 5456=>376, 5458=>656, 5459=>615, 5460=>684, 5461=>615, 5462=>615, 5463=>653, 5464=>653, 5465=>653, 5466=>653, 5467=>831, 5468=>906, 5469=>457,
+ 5470=>659, 5471=>659, 5472=>659, 5473=>659, 5474=>659, 5475=>659, 5476=>657, 5477=>657, 5478=>657, 5479=>657, 5480=>853, 5481=>810, 5482=>457, 5492=>747, 5493=>747, 5494=>747,
+ 5495=>747, 5496=>747, 5497=>747, 5498=>747, 5499=>507, 5500=>677, 5501=>436, 5502=>942, 5503=>942, 5504=>942, 5505=>942, 5506=>942, 5507=>942, 5508=>942, 5509=>743, 5514=>747,
+ 5515=>747, 5516=>747, 5517=>747, 5518=>1133, 5519=>1133, 5520=>1133, 5521=>901, 5522=>901, 5523=>1133, 5524=>1133, 5525=>629, 5526=>965, 5536=>766, 5537=>766, 5538=>719, 5539=>719,
+ 5540=>719, 5541=>719, 5542=>540, 5543=>579, 5544=>579, 5545=>579, 5546=>579, 5547=>579, 5548=>579, 5549=>579, 5550=>376, 5551=>565, 5598=>693, 5601=>693, 5702=>421, 5703=>421,
+ 5742=>399, 5743=>942, 5744=>1178, 5745=>1469, 5746=>1469, 5747=>1237, 5748=>1237, 5749=>1469, 5750=>1469, 7424=>532, 7425=>646, 7426=>883, 7427=>527, 7428=>495, 7429=>544, 7430=>544,
+ 7431=>441, 7432=>486, 7433=>250, 7434=>355, 7435=>521, 7436=>524, 7437=>679, 7438=>584, 7439=>550, 7440=>495, 7441=>615, 7442=>615, 7443=>615, 7444=>920, 7446=>550, 7447=>550,
+ 7448=>472, 7449=>541, 7450=>541, 7451=>524, 7452=>517, 7453=>663, 7454=>853, 7455=>574, 7456=>532, 7457=>736, 7458=>472, 7459=>473, 7462=>524, 7463=>532, 7464=>507, 7465=>472,
+ 7466=>531, 7467=>575, 7468=>387, 7469=>552, 7470=>389, 7472=>436, 7473=>358, 7474=>358, 7475=>439, 7476=>426, 7477=>167, 7478=>167, 7479=>372, 7480=>315, 7481=>489, 7482=>424,
+ 7483=>424, 7484=>446, 7485=>396, 7486=>342, 7487=>394, 7488=>346, 7489=>415, 7490=>560, 7491=>352, 7492=>352, 7493=>365, 7494=>583, 7495=>385, 7496=>365, 7497=>375, 7498=>375,
+ 7499=>324, 7500=>323, 7501=>365, 7502=>161, 7503=>383, 7504=>561, 7505=>368, 7506=>372, 7507=>333, 7508=>372, 7509=>372, 7510=>385, 7511=>265, 7512=>364, 7513=>422, 7514=>561,
+ 7515=>375, 7517=>361, 7518=>335, 7519=>347, 7520=>374, 7521=>327, 7522=>161, 7523=>233, 7524=>364, 7525=>375, 7526=>361, 7527=>335, 7528=>370, 7529=>374, 7530=>327, 7543=>571,
+ 7544=>426, 7547=>334, 7557=>250, 7579=>365, 7580=>333, 7581=>333, 7582=>372, 7583=>324, 7584=>267, 7585=>209, 7586=>365, 7587=>364, 7588=>235, 7589=>224, 7590=>234, 7591=>235,
+ 7592=>211, 7593=>224, 7594=>211, 7595=>338, 7596=>561, 7597=>561, 7598=>369, 7599=>431, 7600=>368, 7601=>372, 7602=>372, 7603=>324, 7604=>258, 7605=>265, 7606=>457, 7607=>376,
+ 7608=>325, 7609=>365, 7610=>375, 7611=>330, 7612=>393, 7613=>330, 7614=>353, 7615=>372, 7620=>0, 7621=>0, 7622=>0, 7623=>0, 7624=>0, 7625=>0, 7680=>615, 7681=>551,
+ 7682=>617, 7683=>571, 7684=>617, 7685=>571, 7686=>617, 7687=>571, 7688=>628, 7689=>495, 7690=>693, 7691=>571, 7692=>693, 7693=>571, 7694=>693, 7695=>571, 7696=>693, 7697=>571,
+ 7698=>693, 7699=>571, 7700=>568, 7701=>554, 7702=>568, 7703=>554, 7704=>568, 7705=>554, 7706=>568, 7707=>554, 7708=>568, 7709=>554, 7710=>518, 7711=>316, 7712=>697, 7713=>571,
+ 7714=>677, 7715=>570, 7716=>677, 7717=>570, 7718=>677, 7719=>570, 7720=>677, 7721=>570, 7722=>677, 7723=>570, 7724=>265, 7725=>250, 7726=>265, 7727=>250, 7728=>590, 7729=>521,
+ 7730=>590, 7731=>521, 7732=>590, 7733=>521, 7734=>501, 7735=>250, 7736=>501, 7737=>250, 7738=>501, 7739=>250, 7740=>501, 7741=>250, 7742=>776, 7743=>876, 7744=>776, 7745=>876,
+ 7746=>776, 7747=>876, 7748=>673, 7749=>570, 7750=>673, 7751=>570, 7752=>673, 7753=>570, 7754=>673, 7755=>570, 7756=>708, 7757=>550, 7758=>708, 7759=>550, 7760=>708, 7761=>550,
+ 7762=>708, 7763=>550, 7764=>542, 7765=>571, 7766=>542, 7767=>571, 7768=>625, 7769=>370, 7770=>625, 7771=>370, 7772=>625, 7773=>370, 7774=>625, 7775=>370, 7776=>571, 7777=>469,
+ 7778=>571, 7779=>469, 7780=>571, 7781=>469, 7782=>571, 7783=>469, 7784=>571, 7785=>469, 7786=>549, 7787=>353, 7788=>549, 7789=>353, 7790=>549, 7791=>353, 7792=>549, 7793=>353,
+ 7794=>659, 7795=>570, 7796=>659, 7797=>570, 7798=>659, 7799=>570, 7800=>659, 7801=>570, 7802=>659, 7803=>570, 7804=>615, 7805=>532, 7806=>615, 7807=>532, 7808=>890, 7809=>736,
+ 7810=>890, 7811=>736, 7812=>890, 7813=>736, 7814=>890, 7815=>736, 7816=>890, 7817=>736, 7818=>616, 7819=>532, 7820=>616, 7821=>532, 7822=>549, 7823=>532, 7824=>616, 7825=>472,
+ 7826=>616, 7827=>472, 7828=>616, 7829=>472, 7830=>570, 7831=>353, 7832=>736, 7833=>532, 7834=>551, 7835=>316, 7839=>550, 7840=>615, 7841=>551, 7842=>615, 7843=>551, 7844=>615,
+ 7845=>551, 7846=>615, 7847=>551, 7848=>615, 7849=>551, 7850=>615, 7851=>551, 7852=>615, 7853=>551, 7854=>615, 7855=>551, 7856=>615, 7857=>551, 7858=>615, 7859=>551, 7860=>615,
+ 7861=>551, 7862=>615, 7863=>551, 7864=>568, 7865=>554, 7866=>568, 7867=>554, 7868=>568, 7869=>554, 7870=>568, 7871=>554, 7872=>568, 7873=>554, 7874=>568, 7875=>554, 7876=>568,
+ 7877=>554, 7878=>568, 7879=>554, 7880=>265, 7881=>250, 7882=>265, 7883=>250, 7884=>708, 7885=>550, 7886=>708, 7887=>550, 7888=>708, 7889=>550, 7890=>708, 7891=>550, 7892=>708,
+ 7893=>550, 7894=>708, 7895=>550, 7896=>708, 7897=>550, 7898=>822, 7899=>550, 7900=>822, 7901=>550, 7902=>822, 7903=>550, 7904=>822, 7905=>550, 7906=>822, 7907=>550, 7908=>659,
+ 7909=>570, 7910=>659, 7911=>570, 7912=>754, 7913=>570, 7914=>754, 7915=>570, 7916=>754, 7917=>570, 7918=>754, 7919=>570, 7920=>754, 7921=>570, 7922=>549, 7923=>532, 7924=>549,
+ 7925=>532, 7926=>549, 7927=>532, 7928=>549, 7929=>532, 7936=>593, 7937=>593, 7938=>593, 7939=>593, 7940=>593, 7941=>593, 7942=>593, 7943=>593, 7944=>615, 7945=>615, 7946=>790,
+ 7947=>790, 7948=>692, 7949=>721, 7950=>637, 7951=>668, 7952=>486, 7953=>486, 7954=>486, 7955=>486, 7956=>486, 7957=>486, 7960=>640, 7961=>640, 7962=>869, 7963=>877, 7964=>809,
+ 7965=>835, 7968=>570, 7969=>570, 7970=>570, 7971=>570, 7972=>570, 7973=>570, 7974=>570, 7975=>570, 7976=>753, 7977=>751, 7978=>977, 7979=>980, 7980=>924, 7981=>945, 7982=>840,
+ 7983=>852, 7984=>304, 7985=>304, 7986=>304, 7987=>304, 7988=>304, 7989=>304, 7990=>304, 7991=>304, 7992=>342, 7993=>336, 7994=>571, 7995=>571, 7996=>513, 7997=>540, 7998=>440,
+ 7999=>443, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>724, 8009=>763, 8010=>985, 8011=>989, 8012=>844, 8013=>873, 8016=>521, 8017=>521, 8018=>521,
+ 8019=>521, 8020=>521, 8021=>521, 8022=>521, 8023=>521, 8025=>705, 8027=>897, 8029=>911, 8031=>808, 8032=>753, 8033=>753, 8034=>753, 8035=>753, 8036=>753, 8037=>753, 8038=>753,
+ 8039=>753, 8040=>722, 8041=>759, 8042=>980, 8043=>985, 8044=>851, 8045=>875, 8046=>829, 8047=>857, 8048=>593, 8049=>593, 8050=>486, 8051=>493, 8052=>570, 8053=>589, 8054=>304,
+ 8055=>304, 8056=>550, 8057=>550, 8058=>521, 8059=>521, 8060=>753, 8061=>753, 8064=>593, 8065=>593, 8066=>593, 8067=>593, 8068=>593, 8069=>593, 8070=>593, 8071=>593, 8072=>615,
+ 8073=>615, 8074=>790, 8075=>790, 8076=>692, 8077=>721, 8078=>637, 8079=>668, 8080=>570, 8081=>570, 8082=>570, 8083=>570, 8084=>570, 8085=>570, 8086=>570, 8087=>570, 8088=>753,
+ 8089=>751, 8090=>977, 8091=>980, 8092=>924, 8093=>945, 8094=>840, 8095=>852, 8096=>753, 8097=>753, 8098=>753, 8099=>753, 8100=>753, 8101=>753, 8102=>753, 8103=>753, 8104=>722,
+ 8105=>759, 8106=>980, 8107=>985, 8108=>851, 8109=>875, 8110=>829, 8111=>857, 8112=>593, 8113=>593, 8114=>593, 8115=>593, 8116=>593, 8118=>593, 8119=>593, 8120=>615, 8121=>615,
+ 8122=>645, 8123=>623, 8124=>615, 8125=>450, 8126=>450, 8127=>450, 8128=>450, 8129=>450, 8130=>570, 8131=>570, 8132=>589, 8134=>570, 8135=>570, 8136=>724, 8137=>671, 8138=>837,
+ 8139=>784, 8140=>677, 8141=>450, 8142=>450, 8143=>450, 8144=>304, 8145=>304, 8146=>304, 8147=>304, 8150=>304, 8151=>304, 8152=>265, 8153=>265, 8154=>427, 8155=>367, 8157=>450,
+ 8158=>450, 8159=>450, 8160=>521, 8161=>521, 8162=>521, 8163=>521, 8164=>571, 8165=>571, 8166=>521, 8167=>521, 8168=>549, 8169=>549, 8170=>760, 8171=>742, 8172=>616, 8173=>450,
+ 8174=>450, 8175=>450, 8178=>753, 8179=>753, 8180=>753, 8182=>753, 8183=>753, 8184=>847, 8185=>731, 8186=>830, 8187=>743, 8188=>688, 8189=>450, 8190=>450, 8192=>450, 8193=>900,
+ 8194=>450, 8195=>900, 8196=>296, 8197=>225, 8198=>150, 8199=>572, 8200=>286, 8201=>180, 8202=>89, 8203=>0, 8204=>0, 8205=>0, 8206=>0, 8207=>0, 8208=>325, 8209=>325,
+ 8210=>572, 8213=>900, 8214=>0, 8215=>450, 8219=>286, 8223=>466, 8227=>531, 8228=>299, 8229=>600, 8231=>286, 8234=>0, 8235=>0, 8236=>0, 8237=>0, 8238=>0, 8239=>180,
+ 8241=>1521, 8242=>204, 8243=>336, 8244=>468, 8245=>204, 8246=>336, 8247=>468, 8248=>305, 8251=>754, 8252=>437, 8253=>478, 8254=>450, 8255=>723, 8256=>723, 8257=>225, 8258=>900,
+ 8259=>450, 8260=>167, 8261=>351, 8262=>351, 8263=>830, 8264=>659, 8265=>659, 8266=>447, 8267=>572, 8268=>450, 8269=>450, 8270=>450, 8271=>303, 8272=>723, 8273=>450, 8274=>404,
+ 8275=>754, 8276=>723, 8277=>754, 8278=>527, 8279=>597, 8280=>754, 8281=>754, 8282=>286, 8283=>717, 8284=>754, 8285=>286, 8286=>286, 8287=>200, 8288=>0, 8289=>0, 8290=>0,
+ 8291=>0, 8292=>0, 8298=>0, 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>360, 8305=>161, 8308=>360, 8309=>360, 8310=>360, 8311=>360, 8312=>360, 8313=>360,
+ 8314=>475, 8315=>475, 8316=>475, 8317=>221, 8318=>221, 8319=>359, 8320=>360, 8321=>360, 8322=>360, 8323=>360, 8324=>360, 8325=>360, 8326=>360, 8327=>360, 8328=>360, 8329=>360,
+ 8330=>475, 8331=>475, 8332=>475, 8333=>221, 8334=>221, 8336=>352, 8337=>375, 8338=>372, 8339=>399, 8340=>375, 8352=>789, 8353=>572, 8354=>572, 8355=>572, 8356=>572, 8357=>876,
+ 8358=>673, 8359=>1143, 8360=>966, 8361=>890, 8362=>754, 8363=>572, 8365=>590, 8366=>549, 8367=>1145, 8368=>572, 8369=>572, 8370=>572, 8371=>572, 8372=>696, 8373=>577, 8400=>0,
+ 8401=>0, 8406=>0, 8407=>0, 8411=>0, 8412=>0, 8417=>0, 8448=>873, 8449=>873, 8450=>628, 8451=>1011, 8452=>807, 8453=>872, 8454=>929, 8455=>553, 8456=>628, 8457=>856,
+ 8459=>889, 8460=>679, 8461=>765, 8462=>570, 8463=>570, 8464=>422, 8465=>627, 8466=>648, 8467=>372, 8468=>736, 8469=>721, 8470=>936, 8471=>900, 8472=>627, 8473=>631, 8474=>708,
+ 8475=>718, 8476=>732, 8477=>712, 8478=>807, 8479=>615, 8480=>917, 8481=>912, 8483=>615, 8484=>670, 8485=>520, 8486=>688, 8487=>688, 8488=>554, 8489=>304, 8490=>590, 8491=>615,
+ 8492=>708, 8493=>633, 8494=>769, 8495=>532, 8496=>545, 8497=>708, 8498=>518, 8499=>962, 8500=>416, 8501=>670, 8502=>606, 8503=>419, 8504=>580, 8505=>342, 8506=>833, 8507=>1041,
+ 8508=>632, 8509=>655, 8510=>589, 8511=>764, 8512=>729, 8513=>697, 8514=>501, 8515=>501, 8516=>549, 8517=>737, 8518=>637, 8519=>554, 8520=>316, 8521=>316, 8523=>702, 8526=>474,
+ 8531=>872, 8532=>872, 8533=>872, 8534=>872, 8535=>872, 8536=>872, 8537=>872, 8538=>872, 8539=>872, 8540=>872, 8541=>872, 8542=>872, 8543=>511, 8544=>265, 8545=>443, 8546=>620,
+ 8547=>831, 8548=>615, 8549=>830, 8550=>1007, 8551=>1185, 8552=>826, 8553=>616, 8554=>839, 8555=>1018, 8556=>501, 8557=>628, 8558=>693, 8559=>776, 8560=>250, 8561=>412, 8562=>573,
+ 8563=>730, 8564=>532, 8565=>729, 8566=>892, 8567=>1053, 8568=>737, 8569=>532, 8570=>740, 8571=>901, 8572=>250, 8573=>495, 8574=>571, 8575=>876, 8576=>1121, 8577=>693, 8578=>1121,
+ 8579=>633, 8580=>494, 8592=>754, 8593=>754, 8594=>754, 8595=>754, 8596=>754, 8597=>754, 8598=>754, 8599=>754, 8600=>754, 8601=>754, 8602=>754, 8603=>754, 8604=>754, 8605=>754,
+ 8606=>754, 8607=>754, 8608=>754, 8609=>754, 8610=>754, 8611=>754, 8612=>754, 8613=>754, 8614=>754, 8615=>754, 8616=>754, 8617=>754, 8618=>754, 8619=>754, 8620=>754, 8621=>754,
+ 8622=>754, 8623=>754, 8624=>754, 8625=>754, 8626=>754, 8627=>754, 8628=>754, 8629=>754, 8630=>754, 8631=>754, 8632=>754, 8633=>754, 8634=>754, 8635=>754, 8636=>754, 8637=>754,
+ 8638=>754, 8639=>754, 8640=>754, 8641=>754, 8642=>754, 8643=>754, 8644=>754, 8645=>754, 8646=>754, 8647=>754, 8648=>754, 8649=>754, 8650=>754, 8651=>754, 8652=>754, 8653=>754,
+ 8654=>754, 8655=>754, 8656=>754, 8657=>754, 8658=>754, 8659=>754, 8660=>754, 8661=>754, 8662=>754, 8663=>754, 8664=>754, 8665=>754, 8666=>754, 8667=>754, 8668=>754, 8669=>754,
+ 8670=>754, 8671=>754, 8672=>754, 8673=>754, 8674=>754, 8675=>754, 8676=>754, 8677=>754, 8678=>754, 8679=>754, 8680=>754, 8681=>754, 8682=>754, 8683=>754, 8684=>754, 8685=>754,
+ 8686=>754, 8687=>754, 8688=>754, 8689=>754, 8690=>754, 8691=>754, 8692=>754, 8693=>754, 8694=>754, 8695=>754, 8696=>754, 8697=>754, 8698=>754, 8699=>754, 8700=>754, 8701=>754,
+ 8702=>754, 8703=>754, 8704=>615, 8705=>572, 8706=>465, 8707=>568, 8708=>568, 8709=>784, 8710=>602, 8711=>602, 8712=>784, 8713=>784, 8714=>646, 8715=>784, 8716=>784, 8717=>646,
+ 8718=>572, 8719=>681, 8720=>681, 8721=>606, 8722=>754, 8723=>754, 8724=>754, 8725=>150, 8726=>573, 8727=>754, 8728=>563, 8729=>563, 8730=>573, 8731=>573, 8732=>573, 8733=>609,
+ 8734=>750, 8735=>754, 8736=>807, 8737=>807, 8738=>754, 8739=>450, 8740=>450, 8741=>450, 8742=>450, 8743=>659, 8744=>659, 8745=>659, 8746=>659, 8747=>469, 8748=>710, 8749=>951,
+ 8750=>469, 8751=>710, 8752=>951, 8753=>469, 8754=>469, 8755=>469, 8756=>572, 8757=>572, 8758=>234, 8759=>572, 8760=>754, 8761=>754, 8762=>754, 8763=>754, 8764=>754, 8765=>754,
+ 8766=>754, 8767=>754, 8768=>337, 8769=>754, 8770=>754, 8771=>754, 8772=>754, 8773=>754, 8774=>754, 8775=>754, 8776=>754, 8777=>754, 8778=>754, 8779=>754, 8780=>754, 8781=>754,
+ 8782=>754, 8783=>754, 8784=>754, 8785=>754, 8786=>754, 8787=>754, 8788=>900, 8789=>900, 8790=>754, 8791=>754, 8792=>754, 8793=>754, 8794=>754, 8795=>754, 8796=>754, 8797=>754,
+ 8798=>754, 8799=>754, 8800=>754, 8801=>754, 8802=>754, 8803=>754, 8804=>754, 8805=>754, 8806=>754, 8807=>754, 8808=>754, 8809=>754, 8810=>942, 8811=>942, 8812=>417, 8813=>754,
+ 8814=>754, 8815=>754, 8816=>754, 8817=>754, 8818=>754, 8819=>754, 8820=>754, 8821=>754, 8822=>754, 8823=>754, 8824=>754, 8825=>754, 8826=>754, 8827=>754, 8828=>754, 8829=>754,
+ 8830=>754, 8831=>754, 8832=>754, 8833=>754, 8834=>754, 8835=>754, 8836=>754, 8837=>754, 8838=>754, 8839=>754, 8840=>754, 8841=>754, 8842=>754, 8843=>754, 8844=>659, 8845=>659,
+ 8846=>659, 8847=>754, 8848=>754, 8849=>754, 8850=>754, 8851=>649, 8852=>649, 8853=>754, 8854=>754, 8855=>754, 8856=>754, 8857=>754, 8858=>754, 8859=>754, 8860=>754, 8861=>754,
+ 8862=>754, 8863=>754, 8864=>754, 8865=>754, 8866=>784, 8867=>784, 8868=>784, 8869=>784, 8870=>468, 8871=>468, 8872=>784, 8873=>784, 8874=>784, 8875=>784, 8876=>784, 8877=>784,
+ 8878=>784, 8879=>784, 8882=>754, 8883=>754, 8884=>754, 8885=>754, 8886=>900, 8887=>900, 8888=>754, 8889=>754, 8890=>468, 8891=>659, 8892=>659, 8893=>659, 8894=>754, 8895=>754,
+ 8896=>738, 8897=>738, 8898=>738, 8899=>738, 8900=>494, 8901=>286, 8902=>563, 8904=>900, 8905=>900, 8906=>900, 8907=>900, 8908=>900, 8909=>754, 8910=>659, 8911=>659, 8918=>754,
+ 8919=>754, 8920=>1280, 8921=>1280, 8922=>754, 8923=>754, 8924=>754, 8925=>754, 8926=>754, 8927=>754, 8928=>754, 8929=>754, 8930=>754, 8931=>754, 8932=>754, 8933=>754, 8934=>754,
+ 8935=>754, 8936=>754, 8937=>754, 8938=>754, 8939=>754, 8940=>754, 8941=>754, 8942=>900, 8943=>900, 8944=>900, 8945=>900, 8946=>900, 8947=>784, 8948=>646, 8949=>784, 8950=>784,
+ 8951=>646, 8952=>784, 8953=>784, 8954=>900, 8955=>784, 8956=>646, 8957=>784, 8958=>646, 8959=>784, 8960=>542, 8961=>542, 8962=>571, 8963=>754, 8964=>754, 8965=>754, 8966=>754,
+ 8967=>439, 8968=>351, 8969=>351, 8970=>351, 8971=>351, 8972=>728, 8973=>728, 8974=>728, 8975=>728, 8976=>754, 8977=>461, 8984=>900, 8985=>754, 8988=>422, 8989=>422, 8990=>422,
+ 8991=>422, 8992=>469, 8993=>469, 8996=>1037, 8997=>1037, 8998=>1272, 8999=>1037, 9000=>1299, 9003=>1272, 9004=>786, 9075=>304, 9076=>571, 9077=>753, 9082=>593, 9085=>681, 9095=>1037,
+ 9108=>786, 9115=>450, 9116=>450, 9117=>450, 9118=>450, 9119=>450, 9120=>450, 9121=>450, 9122=>450, 9123=>450, 9124=>450, 9125=>450, 9126=>450, 9127=>675, 9128=>675, 9129=>675,
+ 9130=>675, 9131=>675, 9132=>675, 9133=>675, 9134=>469, 9166=>754, 9167=>850, 9187=>786, 9189=>692, 9250=>571, 9251=>571, 9312=>807, 9313=>807, 9314=>807, 9315=>807, 9316=>807,
+ 9317=>807, 9318=>807, 9319=>807, 9320=>807, 9321=>807, 9472=>542, 9473=>542, 9474=>542, 9475=>542, 9476=>542, 9477=>542, 9478=>542, 9479=>542, 9480=>542, 9481=>542, 9482=>542,
+ 9483=>542, 9484=>542, 9485=>542, 9486=>542, 9487=>542, 9488=>542, 9489=>542, 9490=>542, 9491=>542, 9492=>542, 9493=>542, 9494=>542, 9495=>542, 9496=>542, 9497=>542, 9498=>542,
+ 9499=>542, 9500=>542, 9501=>542, 9502=>542, 9503=>542, 9504=>542, 9505=>542, 9506=>542, 9507=>542, 9508=>542, 9509=>542, 9510=>542, 9511=>542, 9512=>542, 9513=>542, 9514=>542,
+ 9515=>542, 9516=>542, 9517=>542, 9518=>542, 9519=>542, 9520=>542, 9521=>542, 9522=>542, 9523=>542, 9524=>542, 9525=>542, 9526=>542, 9527=>542, 9528=>542, 9529=>542, 9530=>542,
+ 9531=>542, 9532=>542, 9533=>542, 9534=>542, 9535=>542, 9536=>542, 9537=>542, 9538=>542, 9539=>542, 9540=>542, 9541=>542, 9542=>542, 9543=>542, 9544=>542, 9545=>542, 9546=>542,
+ 9547=>542, 9548=>542, 9549=>542, 9550=>542, 9551=>542, 9552=>542, 9553=>542, 9554=>542, 9555=>542, 9556=>542, 9557=>542, 9558=>542, 9559=>542, 9560=>542, 9561=>542, 9562=>542,
+ 9563=>542, 9564=>542, 9565=>542, 9566=>542, 9567=>542, 9568=>542, 9569=>542, 9570=>542, 9571=>542, 9572=>542, 9573=>542, 9574=>542, 9575=>542, 9576=>542, 9577=>542, 9578=>542,
+ 9579=>542, 9580=>542, 9581=>542, 9582=>542, 9583=>542, 9584=>542, 9585=>542, 9586=>542, 9587=>542, 9588=>542, 9589=>542, 9590=>542, 9591=>542, 9592=>542, 9593=>542, 9594=>542,
+ 9595=>542, 9596=>542, 9597=>542, 9598=>542, 9599=>542, 9600=>692, 9601=>692, 9602=>692, 9603=>692, 9604=>692, 9605=>692, 9606=>692, 9607=>692, 9608=>692, 9609=>692, 9610=>692,
+ 9611=>692, 9612=>692, 9613=>692, 9614=>692, 9615=>692, 9616=>692, 9617=>692, 9618=>692, 9619=>692, 9620=>692, 9621=>692, 9622=>692, 9623=>692, 9624=>692, 9625=>692, 9626=>692,
+ 9627=>692, 9628=>692, 9629=>692, 9630=>692, 9631=>692, 9632=>850, 9633=>850, 9634=>850, 9635=>850, 9636=>850, 9637=>850, 9638=>850, 9639=>850, 9640=>850, 9641=>850, 9642=>610,
+ 9643=>610, 9644=>850, 9645=>850, 9646=>495, 9647=>495, 9648=>692, 9649=>692, 9650=>692, 9651=>692, 9652=>452, 9653=>452, 9654=>692, 9655=>692, 9656=>452, 9657=>452, 9658=>692,
+ 9659=>692, 9660=>692, 9661=>692, 9662=>452, 9663=>452, 9664=>692, 9665=>692, 9666=>452, 9667=>452, 9668=>692, 9669=>692, 9670=>692, 9671=>692, 9672=>692, 9673=>785, 9674=>444,
+ 9675=>785, 9676=>785, 9677=>785, 9678=>785, 9679=>785, 9680=>785, 9681=>785, 9682=>785, 9683=>785, 9684=>785, 9685=>785, 9686=>474, 9687=>474, 9688=>712, 9689=>873, 9690=>873,
+ 9691=>873, 9692=>348, 9693=>348, 9694=>348, 9695=>348, 9696=>692, 9697=>692, 9698=>692, 9699=>692, 9700=>692, 9701=>692, 9702=>531, 9703=>850, 9704=>850, 9705=>850, 9706=>850,
+ 9707=>850, 9708=>692, 9709=>692, 9710=>692, 9711=>1007, 9712=>850, 9713=>850, 9714=>850, 9715=>850, 9716=>785, 9717=>785, 9718=>785, 9719=>785, 9720=>692, 9721=>692, 9722=>692,
+ 9723=>747, 9724=>747, 9725=>659, 9726=>659, 9727=>692, 9728=>807, 9729=>900, 9730=>807, 9731=>807, 9732=>807, 9733=>807, 9734=>807, 9735=>515, 9736=>806, 9737=>807, 9738=>799,
+ 9739=>799, 9740=>604, 9741=>911, 9742=>1121, 9743=>1125, 9744=>807, 9745=>807, 9746=>807, 9747=>479, 9748=>807, 9749=>807, 9750=>807, 9751=>807, 9752=>807, 9753=>807, 9754=>807,
+ 9755=>807, 9756=>807, 9757=>548, 9758=>807, 9759=>548, 9760=>807, 9761=>807, 9762=>807, 9763=>807, 9764=>602, 9765=>671, 9766=>584, 9767=>705, 9768=>490, 9769=>807, 9770=>807,
+ 9771=>807, 9772=>639, 9773=>807, 9774=>807, 9775=>807, 9776=>890, 9777=>890, 9778=>890, 9779=>890, 9780=>890, 9781=>890, 9782=>890, 9783=>890, 9784=>807, 9785=>807, 9786=>807,
+ 9787=>807, 9788=>807, 9789=>807, 9790=>807, 9791=>552, 9792=>658, 9793=>658, 9794=>807, 9795=>807, 9796=>807, 9797=>807, 9798=>807, 9799=>807, 9800=>807, 9801=>807, 9802=>807,
+ 9803=>807, 9804=>807, 9805=>807, 9806=>807, 9807=>807, 9808=>807, 9809=>807, 9810=>807, 9811=>807, 9812=>807, 9813=>807, 9814=>807, 9815=>807, 9816=>807, 9817=>807, 9818=>807,
+ 9819=>807, 9820=>807, 9821=>807, 9822=>807, 9823=>807, 9824=>807, 9825=>807, 9826=>807, 9827=>807, 9828=>807, 9829=>807, 9830=>807, 9831=>807, 9832=>807, 9833=>424, 9834=>574,
+ 9835=>807, 9836=>807, 9837=>424, 9838=>321, 9839=>435, 9840=>673, 9841=>689, 9842=>807, 9843=>807, 9844=>807, 9845=>807, 9846=>807, 9847=>807, 9848=>807, 9849=>807, 9850=>807,
+ 9851=>807, 9852=>807, 9853=>807, 9854=>807, 9855=>807, 9856=>782, 9857=>782, 9858=>782, 9859=>782, 9860=>782, 9861=>782, 9862=>800, 9863=>800, 9864=>800, 9865=>800, 9866=>800,
+ 9867=>800, 9868=>800, 9869=>800, 9870=>800, 9871=>800, 9872=>675, 9873=>675, 9874=>800, 9875=>734, 9876=>644, 9877=>483, 9878=>766, 9879=>800, 9880=>615, 9881=>800, 9882=>637,
+ 9883=>800, 9884=>800, 9888=>800, 9889=>632, 9890=>903, 9891=>977, 9892=>1028, 9893=>811, 9894=>754, 9895=>754, 9896=>754, 9897=>754, 9898=>754, 9899=>754, 9900=>754, 9901=>754,
+ 9902=>754, 9903=>754, 9904=>759, 9905=>754, 9906=>658, 9985=>754, 9986=>754, 9987=>754, 9988=>754, 9990=>754, 9991=>754, 9992=>754, 9993=>754, 9996=>754, 9997=>754, 9998=>754,
+ 9999=>754, 10000=>754, 10001=>754, 10002=>754, 10003=>754, 10004=>754, 10005=>754, 10006=>754, 10007=>754, 10008=>754, 10009=>754, 10010=>754, 10011=>754, 10012=>754, 10013=>754, 10014=>754,
+ 10015=>754, 10016=>754, 10017=>754, 10018=>754, 10019=>754, 10020=>754, 10021=>754, 10022=>754, 10023=>754, 10025=>754, 10026=>754, 10027=>754, 10028=>754, 10029=>754, 10030=>754, 10031=>754,
+ 10032=>754, 10033=>754, 10034=>754, 10035=>754, 10036=>754, 10037=>754, 10038=>754, 10039=>754, 10040=>754, 10041=>754, 10042=>754, 10043=>754, 10044=>754, 10045=>754, 10046=>754, 10047=>754,
+ 10048=>754, 10049=>754, 10050=>754, 10051=>754, 10052=>754, 10053=>754, 10054=>754, 10055=>754, 10056=>754, 10057=>754, 10058=>754, 10059=>754, 10061=>807, 10063=>807, 10064=>807, 10065=>807,
+ 10066=>807, 10070=>807, 10072=>754, 10073=>754, 10074=>754, 10075=>290, 10076=>290, 10077=>484, 10078=>484, 10081=>754, 10082=>754, 10083=>754, 10084=>754, 10085=>754, 10086=>754, 10087=>754,
+ 10088=>754, 10089=>754, 10090=>754, 10091=>754, 10092=>754, 10093=>754, 10094=>754, 10095=>754, 10096=>754, 10097=>754, 10098=>754, 10099=>754, 10100=>754, 10101=>754, 10102=>807, 10103=>807,
+ 10104=>807, 10105=>807, 10106=>807, 10107=>807, 10108=>807, 10109=>807, 10110=>807, 10111=>807, 10112=>754, 10113=>754, 10114=>754, 10115=>754, 10116=>754, 10117=>754, 10118=>754, 10119=>754,
+ 10120=>754, 10121=>754, 10122=>754, 10123=>754, 10124=>754, 10125=>754, 10126=>754, 10127=>754, 10128=>754, 10129=>754, 10130=>754, 10131=>754, 10132=>754, 10136=>754, 10137=>754, 10138=>754,
+ 10139=>754, 10140=>754, 10141=>754, 10142=>754, 10143=>754, 10144=>754, 10145=>754, 10146=>754, 10147=>754, 10148=>754, 10149=>754, 10150=>754, 10151=>754, 10152=>754, 10153=>754, 10154=>754,
+ 10155=>754, 10156=>754, 10157=>754, 10158=>754, 10159=>754, 10161=>754, 10162=>754, 10163=>754, 10164=>754, 10165=>754, 10166=>754, 10167=>754, 10168=>754, 10169=>754, 10170=>754, 10171=>754,
+ 10172=>754, 10173=>754, 10174=>754, 10208=>444, 10214=>445, 10215=>445, 10216=>351, 10217=>351, 10218=>500, 10219=>500, 10224=>754, 10225=>754, 10226=>754, 10227=>754, 10228=>1042, 10229=>1290,
+ 10230=>1290, 10231=>1290, 10232=>1290, 10233=>1290, 10234=>1290, 10235=>1290, 10236=>1290, 10237=>1290, 10238=>1290, 10239=>1290, 10240=>659, 10241=>659, 10242=>659, 10243=>659, 10244=>659, 10245=>659,
+ 10246=>659, 10247=>659, 10248=>659, 10249=>659, 10250=>659, 10251=>659, 10252=>659, 10253=>659, 10254=>659, 10255=>659, 10256=>659, 10257=>659, 10258=>659, 10259=>659, 10260=>659, 10261=>659,
+ 10262=>659, 10263=>659, 10264=>659, 10265=>659, 10266=>659, 10267=>659, 10268=>659, 10269=>659, 10270=>659, 10271=>659, 10272=>659, 10273=>659, 10274=>659, 10275=>659, 10276=>659, 10277=>659,
+ 10278=>659, 10279=>659, 10280=>659, 10281=>659, 10282=>659, 10283=>659, 10284=>659, 10285=>659, 10286=>659, 10287=>659, 10288=>659, 10289=>659, 10290=>659, 10291=>659, 10292=>659, 10293=>659,
+ 10294=>659, 10295=>659, 10296=>659, 10297=>659, 10298=>659, 10299=>659, 10300=>659, 10301=>659, 10302=>659, 10303=>659, 10304=>659, 10305=>659, 10306=>659, 10307=>659, 10308=>659, 10309=>659,
+ 10310=>659, 10311=>659, 10312=>659, 10313=>659, 10314=>659, 10315=>659, 10316=>659, 10317=>659, 10318=>659, 10319=>659, 10320=>659, 10321=>659, 10322=>659, 10323=>659, 10324=>659, 10325=>659,
+ 10326=>659, 10327=>659, 10328=>659, 10329=>659, 10330=>659, 10331=>659, 10332=>659, 10333=>659, 10334=>659, 10335=>659, 10336=>659, 10337=>659, 10338=>659, 10339=>659, 10340=>659, 10341=>659,
+ 10342=>659, 10343=>659, 10344=>659, 10345=>659, 10346=>659, 10347=>659, 10348=>659, 10349=>659, 10350=>659, 10351=>659, 10352=>659, 10353=>659, 10354=>659, 10355=>659, 10356=>659, 10357=>659,
+ 10358=>659, 10359=>659, 10360=>659, 10361=>659, 10362=>659, 10363=>659, 10364=>659, 10365=>659, 10366=>659, 10367=>659, 10368=>659, 10369=>659, 10370=>659, 10371=>659, 10372=>659, 10373=>659,
+ 10374=>659, 10375=>659, 10376=>659, 10377=>659, 10378=>659, 10379=>659, 10380=>659, 10381=>659, 10382=>659, 10383=>659, 10384=>659, 10385=>659, 10386=>659, 10387=>659, 10388=>659, 10389=>659,
+ 10390=>659, 10391=>659, 10392=>659, 10393=>659, 10394=>659, 10395=>659, 10396=>659, 10397=>659, 10398=>659, 10399=>659, 10400=>659, 10401=>659, 10402=>659, 10403=>659, 10404=>659, 10405=>659,
+ 10406=>659, 10407=>659, 10408=>659, 10409=>659, 10410=>659, 10411=>659, 10412=>659, 10413=>659, 10414=>659, 10415=>659, 10416=>659, 10417=>659, 10418=>659, 10419=>659, 10420=>659, 10421=>659,
+ 10422=>659, 10423=>659, 10424=>659, 10425=>659, 10426=>659, 10427=>659, 10428=>659, 10429=>659, 10430=>659, 10431=>659, 10432=>659, 10433=>659, 10434=>659, 10435=>659, 10436=>659, 10437=>659,
+ 10438=>659, 10439=>659, 10440=>659, 10441=>659, 10442=>659, 10443=>659, 10444=>659, 10445=>659, 10446=>659, 10447=>659, 10448=>659, 10449=>659, 10450=>659, 10451=>659, 10452=>659, 10453=>659,
+ 10454=>659, 10455=>659, 10456=>659, 10457=>659, 10458=>659, 10459=>659, 10460=>659, 10461=>659, 10462=>659, 10463=>659, 10464=>659, 10465=>659, 10466=>659, 10467=>659, 10468=>659, 10469=>659,
+ 10470=>659, 10471=>659, 10472=>659, 10473=>659, 10474=>659, 10475=>659, 10476=>659, 10477=>659, 10478=>659, 10479=>659, 10480=>659, 10481=>659, 10482=>659, 10483=>659, 10484=>659, 10485=>659,
+ 10486=>659, 10487=>659, 10488=>659, 10489=>659, 10490=>659, 10491=>659, 10492=>659, 10493=>659, 10494=>659, 10495=>659, 10502=>754, 10503=>754, 10506=>754, 10507=>754, 10560=>615, 10561=>615,
+ 10627=>660, 10628=>660, 10702=>754, 10703=>900, 10704=>900, 10705=>900, 10706=>900, 10707=>900, 10708=>900, 10709=>900, 10731=>444, 10746=>754, 10747=>754, 10752=>900, 10753=>900, 10754=>900,
+ 10764=>1192, 10765=>469, 10766=>469, 10767=>469, 10768=>469, 10769=>469, 10770=>469, 10771=>469, 10772=>469, 10773=>469, 10774=>469, 10775=>469, 10776=>469, 10777=>469, 10778=>469, 10779=>469,
+ 10780=>469, 10799=>754, 10877=>754, 10878=>754, 10879=>754, 10880=>754, 10881=>754, 10882=>754, 10883=>754, 10884=>754, 10885=>754, 10886=>754, 10887=>754, 10888=>754, 10889=>754, 10890=>754,
+ 10891=>754, 10892=>754, 10893=>754, 10894=>754, 10895=>754, 10896=>754, 10897=>754, 10898=>754, 10899=>754, 10900=>754, 10901=>754, 10902=>754, 10903=>754, 10904=>754, 10905=>754, 10906=>754,
+ 10907=>754, 10908=>754, 10909=>754, 10910=>754, 10911=>754, 10912=>754, 10926=>754, 10927=>754, 10928=>754, 10929=>754, 10930=>754, 10931=>754, 10932=>754, 10933=>754, 10934=>754, 10935=>754,
+ 10936=>754, 10937=>754, 10938=>754, 11001=>754, 11002=>754, 11008=>754, 11009=>754, 11010=>754, 11011=>754, 11012=>754, 11013=>754, 11014=>754, 11015=>754, 11016=>754, 11017=>754, 11018=>754,
+ 11019=>754, 11020=>754, 11021=>754, 11022=>752, 11023=>752, 11024=>752, 11025=>752, 11026=>850, 11027=>850, 11028=>850, 11029=>850, 11030=>692, 11031=>692, 11032=>692, 11033=>692, 11034=>850,
+ 11040=>782, 11041=>786, 11042=>786, 11043=>786, 11360=>501, 11361=>250, 11362=>501, 11363=>542, 11364=>625, 11365=>551, 11366=>353, 11367=>677, 11368=>570, 11369=>590, 11370=>521, 11371=>616,
+ 11372=>472, 11373=>703, 11374=>776, 11375=>615, 11377=>661, 11378=>1015, 11379=>865, 11380=>532, 11381=>589, 11382=>511, 11383=>593, 11385=>373, 11387=>441, 11388=>157, 11389=>387, 11800=>478,
+ 11822=>478, 19904=>807, 19905=>807, 19906=>807, 19907=>807, 19908=>807, 19909=>807, 19910=>807, 19911=>807, 19912=>807, 19913=>807, 19914=>807, 19915=>807, 19916=>807, 19917=>807, 19918=>807,
+ 19919=>807, 19920=>807, 19921=>807, 19922=>807, 19923=>807, 19924=>807, 19925=>807, 19926=>807, 19927=>807, 19928=>807, 19929=>807, 19930=>807, 19931=>807, 19932=>807, 19933=>807, 19934=>807,
+ 19935=>807, 19936=>807, 19937=>807, 19938=>807, 19939=>807, 19940=>807, 19941=>807, 19942=>807, 19943=>807, 19944=>807, 19945=>807, 19946=>807, 19947=>807, 19948=>807, 19949=>807, 19950=>807,
+ 19951=>807, 19952=>807, 19953=>807, 19954=>807, 19955=>807, 19956=>807, 19957=>807, 19958=>807, 19959=>807, 19960=>807, 19961=>807, 19962=>807, 19963=>807, 19964=>807, 19965=>807, 19966=>807,
+ 19967=>807, 42564=>571, 42565=>469, 42566=>318, 42567=>304, 42572=>1062, 42573=>925, 42576=>926, 42577=>815, 42580=>971, 42581=>757, 42770=>444, 42771=>444, 42772=>444, 42773=>444, 42774=>444,
+ 42790=>677, 42791=>570, 42792=>790, 42793=>638, 42800=>441, 42801=>469, 42802=>1125, 42803=>886, 42808=>874, 42809=>736, 42810=>874, 42811=>736, 42812=>863, 42813=>736, 42814=>628, 42815=>494,
+ 42822=>612, 42823=>353, 42824=>523, 42825=>384, 42826=>726, 42827=>633, 42830=>1222, 42831=>917, 42880=>501, 42881=>250, 43003=>518, 43004=>542, 43005=>776, 43006=>265, 43007=>1079, 63173=>550,
+ 64256=>649, 64257=>581, 64258=>581, 64259=>899, 64260=>899, 64261=>617, 64262=>774, 64275=>1081, 64276=>1081, 64277=>1076, 64278=>1067, 64279=>1376, 64285=>245, 64286=>0, 64287=>423, 64288=>572,
+ 64289=>770, 64290=>696, 64291=>815, 64292=>694, 64293=>759, 64294=>769, 64295=>726, 64296=>788, 64297=>754, 64298=>727, 64299=>727, 64300=>799, 64301=>799, 64302=>566, 64303=>566, 64304=>566,
+ 64305=>547, 64306=>403, 64307=>534, 64308=>576, 64309=>245, 64310=>336, 64311=>900, 64312=>583, 64313=>302, 64314=>532, 64315=>500, 64316=>539, 64318=>593, 64320=>397, 64321=>629, 64323=>576,
+ 64324=>543, 64326=>523, 64327=>596, 64328=>532, 64329=>727, 64330=>591, 64331=>245, 64332=>547, 64333=>500, 64334=>543, 64335=>566, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0,
+ 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65056=>0, 65057=>0, 65058=>0, 65059=>0, 65529=>0,
+ 65530=>0, 65531=>0, 65532=>0, 65533=>923);
+$enc='';
+$diff='';
+$file='dejavusanscondensedi.z';
+$ctg='dejavusanscondensedi.ctg.z';
+$originalsize=473456;
+?>
diff --git a/lib/tcpdf/fonts/dejavusanscondensedi.z b/lib/tcpdf/fonts/dejavusanscondensedi.z
new file mode 100644
index 0000000000..1663c5782e
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusanscondensedi.z differ
diff --git a/lib/tcpdf/fonts/dejavusansi.ctg.z b/lib/tcpdf/fonts/dejavusansi.ctg.z
new file mode 100644
index 0000000000..099984b820
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansi.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusansi.php b/lib/tcpdf/fonts/dejavusansi.php
new file mode 100644
index 0000000000..588753a20b
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusansi.php
@@ -0,0 +1,293 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>96,'FontBBox'=>'[-1016 -356 1659 1068]','ItalicAngle'=>-11,'StemV'=>70,'MissingWidth'=>600);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>600, 32=>318, 33=>401, 34=>460, 35=>838, 36=>636, 37=>950, 38=>780, 39=>275, 40=>390, 41=>390, 42=>500, 43=>838, 44=>318, 45=>361, 46=>318,
+ 47=>337, 48=>636, 49=>636, 50=>636, 51=>636, 52=>636, 53=>636, 54=>636, 55=>636, 56=>636, 57=>636, 58=>337, 59=>337, 60=>838, 61=>838, 62=>838,
+ 63=>531, 64=>1000, 65=>684, 66=>686, 67=>698, 68=>770, 69=>632, 70=>575, 71=>775, 72=>752, 73=>295, 74=>295, 75=>656, 76=>557, 77=>863, 78=>748,
+ 79=>787, 80=>603, 81=>787, 82=>695, 83=>635, 84=>611, 85=>732, 86=>684, 87=>989, 88=>685, 89=>611, 90=>685, 91=>390, 92=>337, 93=>390, 94=>838,
+ 95=>500, 96=>500, 97=>613, 98=>635, 99=>550, 100=>635, 101=>615, 102=>352, 103=>635, 104=>634, 105=>278, 106=>278, 107=>579, 108=>278, 109=>974, 110=>634,
+ 111=>612, 112=>635, 113=>635, 114=>411, 115=>521, 116=>392, 117=>634, 118=>592, 119=>818, 120=>592, 121=>592, 122=>525, 123=>636, 124=>337, 125=>636, 126=>838,
+ 8364=>636, 1027=>557, 8218=>318, 402=>352, 8222=>518, 8230=>1000, 8224=>500, 8225=>500, 710=>500, 8240=>1350, 352=>635, 8249=>400, 338=>1070, 1036=>710, 381=>685, 1039=>752,
+ 8216=>318, 8217=>318, 8220=>518, 8221=>518, 8226=>590, 8211=>500, 8212=>1000, 732=>500, 8482=>1000, 353=>521, 8250=>400, 339=>1028, 1116=>604, 382=>525, 376=>611, 160=>318,
+ 161=>401, 162=>636, 163=>636, 164=>636, 165=>636, 166=>337, 167=>500, 168=>500, 169=>1000, 170=>471, 171=>617, 172=>838, 173=>361, 174=>1000, 175=>500, 176=>500,
+ 177=>838, 178=>401, 179=>401, 180=>500, 181=>636, 182=>636, 183=>318, 184=>500, 185=>401, 186=>471, 187=>617, 188=>969, 189=>969, 190=>969, 191=>531, 192=>684,
+ 193=>684, 194=>684, 195=>684, 196=>684, 197=>684, 198=>974, 199=>698, 200=>632, 201=>632, 202=>632, 203=>632, 204=>295, 205=>295, 206=>295, 207=>295, 208=>775,
+ 209=>748, 210=>787, 211=>787, 212=>787, 213=>787, 214=>787, 215=>838, 216=>787, 217=>732, 218=>732, 219=>732, 220=>732, 221=>611, 222=>608, 223=>630, 224=>613,
+ 225=>613, 226=>613, 227=>613, 228=>613, 229=>613, 230=>995, 231=>550, 232=>615, 233=>615, 234=>615, 235=>615, 236=>278, 237=>278, 238=>278, 239=>278, 240=>612,
+ 241=>634, 242=>612, 243=>612, 244=>612, 245=>612, 246=>612, 247=>838, 248=>612, 249=>634, 250=>634, 251=>634, 252=>634, 253=>592, 254=>635, 255=>592, 256=>684,
+ 257=>613, 258=>684, 259=>613, 260=>684, 261=>613, 262=>698, 263=>550, 264=>698, 265=>550, 266=>698, 267=>550, 268=>698, 269=>550, 270=>770, 271=>635, 272=>775,
+ 273=>635, 274=>632, 275=>615, 276=>632, 277=>615, 278=>632, 279=>615, 280=>632, 281=>615, 282=>632, 283=>615, 284=>775, 285=>635, 286=>775, 287=>635, 288=>775,
+ 289=>635, 290=>775, 291=>635, 292=>752, 293=>634, 294=>916, 295=>695, 296=>295, 297=>278, 298=>295, 299=>278, 300=>295, 301=>278, 302=>295, 303=>278, 304=>295,
+ 305=>278, 306=>590, 307=>556, 308=>295, 309=>278, 310=>656, 311=>579, 312=>579, 313=>557, 314=>278, 315=>557, 316=>278, 317=>557, 318=>329, 319=>557, 320=>596,
+ 321=>562, 322=>287, 323=>748, 324=>634, 325=>748, 326=>634, 327=>748, 328=>634, 329=>813, 330=>748, 331=>634, 332=>787, 333=>612, 334=>787, 335=>612, 336=>787,
+ 337=>612, 340=>695, 341=>411, 342=>695, 343=>411, 344=>695, 345=>411, 346=>635, 347=>521, 348=>635, 349=>521, 350=>635, 351=>521, 354=>611, 355=>392, 356=>611,
+ 357=>392, 358=>611, 359=>392, 360=>732, 361=>634, 362=>732, 363=>634, 364=>732, 365=>634, 366=>732, 367=>634, 368=>732, 369=>634, 370=>732, 371=>634, 372=>989,
+ 373=>818, 374=>611, 375=>592, 377=>685, 378=>525, 379=>685, 380=>525, 383=>352, 384=>635, 385=>735, 386=>686, 387=>635, 388=>686, 389=>635, 390=>703, 391=>698,
+ 392=>550, 393=>775, 394=>819, 395=>686, 396=>635, 397=>612, 398=>632, 399=>787, 400=>614, 401=>575, 403=>775, 404=>687, 405=>984, 406=>354, 407=>295, 408=>746,
+ 409=>579, 410=>278, 411=>592, 412=>974, 413=>748, 414=>634, 415=>787, 416=>913, 417=>612, 418=>938, 419=>737, 420=>652, 421=>635, 422=>695, 423=>635, 424=>521,
+ 425=>632, 426=>336, 427=>392, 428=>611, 429=>392, 430=>611, 431=>838, 432=>634, 433=>764, 434=>721, 435=>744, 436=>730, 437=>685, 438=>525, 439=>666, 440=>666,
+ 441=>578, 442=>525, 443=>636, 444=>666, 445=>578, 446=>510, 447=>635, 448=>295, 449=>492, 450=>459, 451=>295, 452=>1455, 453=>1295, 454=>1160, 455=>852, 456=>835,
+ 457=>556, 458=>1043, 459=>1026, 460=>912, 461=>684, 462=>613, 463=>295, 464=>278, 465=>787, 466=>612, 467=>732, 468=>634, 469=>732, 470=>634, 471=>732, 472=>634,
+ 473=>732, 474=>634, 475=>732, 476=>634, 477=>615, 478=>684, 479=>613, 480=>684, 481=>613, 482=>974, 483=>995, 484=>775, 485=>635, 486=>775, 487=>635, 488=>656,
+ 489=>579, 490=>787, 491=>612, 492=>787, 493=>612, 494=>666, 495=>525, 496=>278, 497=>1455, 498=>1295, 499=>1160, 500=>775, 501=>635, 502=>1113, 503=>682, 504=>748,
+ 505=>634, 506=>684, 507=>613, 508=>974, 509=>995, 510=>787, 511=>612, 512=>684, 513=>613, 514=>684, 515=>613, 516=>632, 517=>615, 518=>632, 519=>615, 520=>295,
+ 521=>278, 522=>295, 523=>278, 524=>787, 525=>612, 526=>787, 527=>612, 528=>695, 529=>411, 530=>695, 531=>411, 532=>732, 533=>634, 534=>732, 535=>634, 536=>635,
+ 537=>521, 538=>611, 539=>392, 540=>627, 541=>521, 542=>752, 543=>634, 544=>735, 545=>838, 546=>698, 547=>610, 548=>685, 549=>525, 550=>684, 551=>613, 552=>632,
+ 553=>615, 554=>787, 555=>612, 556=>787, 557=>612, 558=>787, 559=>612, 560=>787, 561=>612, 562=>611, 563=>592, 564=>475, 565=>843, 566=>477, 567=>278, 568=>998,
+ 569=>998, 570=>684, 571=>698, 572=>550, 573=>557, 574=>611, 575=>521, 576=>525, 577=>603, 578=>479, 579=>686, 580=>732, 581=>684, 582=>632, 583=>615, 584=>295,
+ 585=>278, 586=>781, 587=>635, 588=>695, 589=>411, 590=>611, 591=>592, 592=>613, 593=>635, 594=>635, 595=>635, 596=>550, 597=>550, 598=>635, 599=>727, 600=>615,
+ 601=>615, 602=>844, 603=>545, 604=>545, 605=>775, 606=>664, 607=>326, 608=>696, 609=>635, 610=>629, 611=>596, 612=>596, 613=>634, 614=>634, 615=>634, 616=>372,
+ 617=>387, 618=>372, 619=>396, 620=>487, 621=>278, 622=>706, 623=>974, 624=>974, 625=>974, 626=>646, 627=>642, 628=>634, 629=>612, 630=>858, 631=>728, 632=>660,
+ 633=>469, 634=>469, 635=>469, 636=>469, 637=>469, 638=>530, 639=>530, 640=>602, 641=>602, 642=>521, 643=>336, 644=>336, 645=>461, 646=>336, 647=>392, 648=>392,
+ 649=>634, 650=>618, 651=>598, 652=>592, 653=>818, 654=>592, 655=>611, 656=>525, 657=>525, 658=>578, 659=>578, 660=>510, 661=>510, 662=>510, 663=>510, 664=>787,
+ 665=>580, 666=>664, 667=>708, 668=>654, 669=>292, 670=>667, 671=>507, 672=>727, 673=>510, 674=>510, 675=>1014, 676=>1058, 677=>1013, 678=>824, 679=>610, 680=>778,
+ 681=>848, 682=>641, 683=>654, 684=>515, 685=>515, 686=>570, 687=>664, 688=>399, 689=>399, 690=>175, 691=>259, 692=>295, 693=>296, 694=>379, 695=>515, 696=>373,
+ 697=>278, 698=>460, 699=>318, 700=>318, 701=>318, 702=>307, 703=>307, 704=>370, 705=>370, 706=>500, 707=>500, 708=>500, 709=>500, 711=>500, 712=>275, 713=>500,
+ 714=>500, 715=>500, 716=>275, 717=>500, 718=>500, 719=>500, 720=>337, 721=>337, 722=>307, 723=>307, 724=>500, 725=>500, 726=>413, 727=>500, 728=>500, 729=>500,
+ 730=>500, 731=>500, 733=>500, 734=>315, 735=>500, 736=>426, 737=>166, 738=>373, 739=>444, 740=>370, 741=>493, 742=>493, 743=>493, 744=>493, 745=>493, 748=>500,
+ 749=>500, 750=>500, 755=>500, 759=>500, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0,
+ 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0,
+ 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0,
+ 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0,
+ 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 837=>0, 838=>0, 839=>0, 840=>0, 841=>0, 842=>0, 843=>0,
+ 844=>0, 845=>0, 846=>0, 847=>0, 849=>0, 855=>0, 856=>0, 860=>0, 861=>0, 862=>0, 863=>0, 864=>0, 865=>0, 866=>0, 884=>278, 885=>278,
+ 890=>500, 891=>549, 892=>550, 893=>549, 894=>337, 900=>500, 901=>500, 902=>695, 903=>318, 904=>767, 905=>903, 906=>435, 908=>839, 910=>860, 911=>905, 912=>338,
+ 913=>684, 914=>686, 915=>557, 916=>684, 917=>632, 918=>685, 919=>752, 920=>787, 921=>295, 922=>656, 923=>684, 924=>863, 925=>748, 926=>632, 927=>787, 928=>752,
+ 929=>603, 931=>632, 932=>611, 933=>611, 934=>787, 935=>685, 936=>787, 937=>764, 938=>295, 939=>611, 940=>659, 941=>543, 942=>631, 943=>338, 944=>579, 945=>659,
+ 946=>638, 947=>592, 948=>612, 949=>541, 950=>544, 951=>634, 952=>612, 953=>338, 954=>589, 955=>592, 956=>636, 957=>559, 958=>558, 959=>612, 960=>602, 961=>635,
+ 962=>587, 963=>634, 964=>602, 965=>579, 966=>660, 967=>592, 968=>660, 969=>837, 970=>338, 971=>579, 972=>612, 973=>579, 974=>837, 976=>614, 977=>619, 978=>699,
+ 979=>842, 980=>699, 981=>660, 982=>837, 983=>664, 984=>787, 985=>612, 986=>648, 987=>587, 988=>575, 989=>458, 990=>660, 991=>660, 992=>865, 993=>627, 994=>934,
+ 995=>837, 996=>758, 997=>659, 998=>792, 999=>615, 1000=>687, 1001=>607, 1002=>768, 1003=>625, 1004=>699, 1005=>612, 1006=>611, 1007=>536, 1008=>664, 1009=>635, 1010=>550,
+ 1011=>278, 1012=>787, 1013=>615, 1014=>615, 1015=>608, 1016=>635, 1017=>698, 1018=>863, 1019=>651, 1020=>635, 1021=>703, 1022=>698, 1023=>703, 1024=>632, 1025=>632, 1026=>786,
+ 1028=>698, 1029=>635, 1030=>295, 1031=>295, 1032=>295, 1033=>1094, 1034=>1045, 1035=>786, 1037=>748, 1038=>609, 1040=>684, 1041=>686, 1042=>686, 1043=>557, 1044=>781, 1045=>632,
+ 1046=>1077, 1047=>641, 1048=>748, 1049=>748, 1050=>710, 1051=>752, 1052=>863, 1053=>752, 1054=>787, 1055=>752, 1056=>603, 1057=>698, 1058=>611, 1059=>609, 1060=>861, 1061=>685,
+ 1062=>776, 1063=>686, 1064=>1069, 1065=>1094, 1066=>833, 1067=>818, 1068=>686, 1069=>698, 1070=>1080, 1071=>695, 1072=>613, 1073=>617, 1074=>589, 1075=>525, 1076=>691, 1077=>615,
+ 1078=>901, 1079=>532, 1080=>650, 1081=>650, 1082=>604, 1083=>639, 1084=>754, 1085=>654, 1086=>612, 1087=>654, 1088=>635, 1089=>550, 1090=>583, 1091=>592, 1092=>855, 1093=>592,
+ 1094=>681, 1095=>591, 1096=>915, 1097=>942, 1098=>707, 1099=>790, 1100=>589, 1101=>549, 1102=>842, 1103=>602, 1104=>615, 1105=>615, 1106=>625, 1107=>525, 1108=>549, 1109=>521,
+ 1110=>278, 1111=>278, 1112=>278, 1113=>902, 1114=>898, 1115=>652, 1117=>650, 1118=>592, 1119=>654, 1120=>934, 1121=>837, 1122=>771, 1123=>672, 1124=>942, 1125=>749, 1126=>879,
+ 1127=>783, 1128=>1160, 1129=>1001, 1130=>787, 1131=>612, 1132=>1027, 1133=>824, 1134=>636, 1135=>541, 1136=>856, 1137=>876, 1138=>787, 1139=>612, 1140=>781, 1141=>665, 1142=>781,
+ 1143=>665, 1144=>992, 1145=>904, 1146=>953, 1147=>758, 1148=>1180, 1149=>1028, 1150=>934, 1151=>837, 1152=>698, 1153=>550, 1154=>502, 1155=>0, 1156=>0, 1157=>0, 1158=>0,
+ 1160=>418, 1161=>418, 1162=>748, 1163=>657, 1164=>686, 1165=>589, 1166=>603, 1167=>635, 1168=>610, 1169=>525, 1170=>675, 1171=>556, 1172=>557, 1173=>491, 1174=>1077, 1175=>901,
+ 1176=>641, 1177=>532, 1178=>710, 1179=>604, 1180=>710, 1181=>604, 1182=>710, 1183=>604, 1184=>856, 1185=>832, 1186=>752, 1187=>661, 1188=>1014, 1189=>877, 1190=>1113, 1191=>950,
+ 1192=>796, 1193=>651, 1194=>698, 1195=>550, 1196=>611, 1197=>529, 1198=>611, 1199=>592, 1200=>611, 1201=>592, 1202=>685, 1203=>592, 1204=>934, 1205=>807, 1206=>686, 1207=>591,
+ 1208=>686, 1209=>591, 1210=>686, 1211=>634, 1212=>929, 1213=>731, 1214=>929, 1215=>731, 1216=>295, 1217=>1077, 1218=>901, 1219=>655, 1220=>604, 1221=>752, 1222=>639, 1223=>752,
+ 1224=>661, 1225=>752, 1226=>661, 1227=>686, 1228=>591, 1229=>863, 1230=>754, 1231=>278, 1232=>684, 1233=>613, 1234=>684, 1235=>613, 1236=>974, 1237=>995, 1238=>632, 1239=>615,
+ 1240=>787, 1241=>615, 1242=>787, 1243=>615, 1244=>1077, 1245=>901, 1246=>641, 1247=>532, 1248=>666, 1249=>578, 1250=>748, 1251=>650, 1252=>748, 1253=>650, 1254=>787, 1255=>612,
+ 1256=>787, 1257=>612, 1258=>787, 1259=>612, 1260=>698, 1261=>549, 1262=>609, 1263=>592, 1264=>609, 1265=>592, 1266=>609, 1267=>592, 1268=>686, 1269=>591, 1270=>557, 1271=>491,
+ 1272=>818, 1273=>790, 1274=>675, 1275=>556, 1276=>685, 1277=>592, 1278=>685, 1279=>592, 1280=>686, 1281=>589, 1282=>1006, 1283=>897, 1284=>975, 1285=>869, 1286=>679, 1287=>588,
+ 1288=>1072, 1289=>957, 1290=>1072, 1291=>967, 1292=>775, 1293=>660, 1294=>773, 1295=>711, 1296=>614, 1297=>541, 1298=>752, 1299=>639, 1306=>787, 1307=>635, 1308=>989, 1309=>818,
+ 1312=>1113, 1313=>942, 1314=>1113, 1315=>949, 1329=>867, 1330=>732, 1331=>882, 1332=>882, 1333=>732, 1334=>644, 1335=>682, 1336=>732, 1337=>851, 1338=>882, 1339=>732, 1340=>557,
+ 1341=>824, 1342=>986, 1343=>732, 1344=>707, 1345=>644, 1346=>882, 1347=>777, 1348=>882, 1349=>732, 1350=>840, 1351=>732, 1352=>732, 1353=>732, 1354=>791, 1355=>644, 1356=>882,
+ 1357=>732, 1358=>882, 1359=>635, 1360=>732, 1361=>732, 1362=>799, 1363=>861, 1364=>790, 1365=>787, 1366=>635, 1369=>307, 1370=>318, 1371=>500, 1372=>500, 1373=>392, 1374=>526,
+ 1375=>500, 1377=>974, 1378=>634, 1379=>762, 1380=>767, 1381=>634, 1382=>697, 1383=>533, 1384=>634, 1385=>700, 1386=>697, 1387=>634, 1388=>404, 1389=>894, 1390=>641, 1391=>634,
+ 1392=>634, 1393=>635, 1394=>702, 1395=>634, 1396=>659, 1397=>278, 1398=>760, 1399=>516, 1400=>634, 1401=>453, 1402=>974, 1403=>516, 1404=>769, 1405=>634, 1406=>696, 1407=>974,
+ 1408=>634, 1409=>690, 1410=>501, 1411=>974, 1412=>648, 1413=>612, 1414=>629, 1415=>763, 1417=>337, 1418=>433, 1456=>0, 1457=>0, 1458=>0, 1459=>0, 1460=>0, 1461=>0,
+ 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1466=>0, 1467=>0, 1468=>0, 1469=>0, 1470=>361, 1471=>0, 1472=>295, 1473=>0, 1474=>0, 1475=>295, 1478=>456, 1479=>0,
+ 1488=>629, 1489=>608, 1490=>448, 1491=>594, 1492=>640, 1493=>272, 1494=>374, 1495=>640, 1496=>648, 1497=>272, 1498=>592, 1499=>556, 1500=>599, 1501=>640, 1502=>659, 1503=>272,
+ 1504=>441, 1505=>700, 1506=>563, 1507=>640, 1508=>604, 1509=>521, 1510=>581, 1511=>663, 1512=>592, 1513=>808, 1514=>657, 1520=>471, 1521=>454, 1522=>471, 1523=>416, 1524=>645,
+ 3647=>652, 3713=>670, 3714=>684, 3716=>688, 3719=>482, 3720=>628, 3722=>684, 3725=>688, 3732=>642, 3733=>642, 3734=>672, 3735=>655, 3737=>641, 3738=>592, 3739=>592, 3740=>745,
+ 3741=>767, 3742=>687, 3743=>687, 3745=>702, 3746=>688, 3747=>684, 3749=>649, 3751=>632, 3754=>703, 3755=>819, 3757=>633, 3758=>684, 3759=>788, 3760=>632, 3761=>0, 3762=>539,
+ 3763=>539, 3764=>0, 3765=>0, 3766=>0, 3767=>0, 3768=>0, 3769=>0, 3771=>0, 3772=>0, 3773=>663, 3776=>360, 3777=>679, 3778=>460, 3779=>547, 3780=>491, 3782=>674,
+ 3784=>0, 3785=>0, 3786=>0, 3787=>0, 3788=>0, 3789=>0, 3792=>636, 3793=>641, 3794=>641, 3795=>670, 3796=>625, 3797=>625, 3798=>703, 3799=>670, 3800=>674, 3801=>677,
+ 3804=>1028, 3805=>1028, 4256=>840, 4257=>690, 4258=>642, 4259=>759, 4260=>591, 4261=>686, 4262=>789, 4263=>811, 4264=>467, 4265=>565, 4266=>789, 4267=>793, 4268=>584, 4269=>837,
+ 4270=>750, 4271=>688, 4272=>811, 4273=>584, 4274=>584, 4275=>837, 4276=>837, 4277=>646, 4278=>604, 4279=>584, 4280=>596, 4281=>584, 4282=>721, 4283=>795, 4284=>584, 4285=>566,
+ 4286=>584, 4287=>669, 4288=>799, 4289=>542, 4290=>664, 4291=>542, 4292=>565, 4293=>674, 4304=>508, 4305=>508, 4306=>533, 4307=>785, 4308=>522, 4309=>517, 4310=>508, 4311=>797,
+ 4312=>507, 4313=>518, 4314=>1058, 4315=>522, 4316=>523, 4317=>783, 4318=>518, 4319=>523, 4320=>792, 4321=>523, 4322=>656, 4323=>524, 4324=>788, 4325=>523, 4326=>782, 4327=>523,
+ 4328=>522, 4329=>522, 4330=>566, 4331=>523, 4332=>523, 4333=>489, 4334=>522, 4335=>498, 4336=>517, 4337=>560, 4338=>508, 4339=>508, 4340=>508, 4341=>563, 4342=>824, 4343=>595,
+ 4344=>522, 4345=>554, 4346=>553, 4347=>406, 4348=>304, 5121=>684, 5122=>684, 5123=>684, 5124=>684, 5125=>769, 5126=>809, 5127=>809, 5129=>809, 5130=>769, 5131=>719, 5132=>835,
+ 5133=>834, 5134=>835, 5135=>834, 5136=>835, 5137=>834, 5138=>967, 5139=>1007, 5140=>967, 5141=>1007, 5142=>809, 5143=>967, 5144=>1007, 5145=>967, 5146=>1007, 5147=>719, 5149=>256,
+ 5150=>543, 5151=>423, 5152=>423, 5153=>389, 5154=>389, 5155=>393, 5156=>389, 5157=>466, 5158=>385, 5159=>256, 5160=>389, 5161=>389, 5162=>389, 5163=>1090, 5164=>909, 5165=>953,
+ 5166=>1117, 5167=>684, 5168=>684, 5169=>684, 5170=>684, 5171=>729, 5172=>629, 5173=>629, 5175=>629, 5176=>729, 5177=>629, 5178=>835, 5179=>684, 5180=>835, 5181=>834, 5182=>835,
+ 5183=>834, 5184=>967, 5185=>1007, 5186=>967, 5187=>1007, 5188=>967, 5189=>1007, 5190=>967, 5191=>1007, 5192=>729, 5193=>508, 5194=>192, 5196=>732, 5197=>732, 5198=>732, 5199=>732,
+ 5200=>730, 5201=>730, 5202=>730, 5204=>730, 5205=>730, 5206=>730, 5207=>921, 5208=>889, 5209=>921, 5210=>889, 5211=>921, 5212=>889, 5213=>928, 5214=>900, 5215=>928, 5216=>900,
+ 5217=>947, 5218=>900, 5219=>947, 5220=>900, 5221=>947, 5222=>434, 5223=>877, 5224=>877, 5225=>866, 5226=>890, 5227=>628, 5228=>628, 5229=>628, 5230=>628, 5231=>628, 5232=>628,
+ 5233=>628, 5234=>628, 5235=>628, 5236=>860, 5237=>771, 5238=>815, 5239=>816, 5240=>815, 5241=>816, 5242=>860, 5243=>771, 5244=>860, 5245=>771, 5246=>815, 5247=>816, 5248=>815,
+ 5249=>816, 5250=>815, 5251=>407, 5252=>407, 5253=>750, 5254=>775, 5255=>750, 5256=>775, 5257=>628, 5258=>628, 5259=>628, 5260=>628, 5261=>628, 5262=>628, 5263=>628, 5264=>628,
+ 5265=>628, 5266=>860, 5267=>771, 5268=>815, 5269=>816, 5270=>815, 5271=>816, 5272=>860, 5273=>771, 5274=>860, 5275=>771, 5276=>815, 5277=>816, 5278=>815, 5279=>816, 5280=>815,
+ 5281=>435, 5282=>435, 5283=>610, 5284=>522, 5285=>557, 5286=>522, 5287=>610, 5288=>610, 5289=>522, 5290=>557, 5291=>557, 5292=>749, 5293=>769, 5294=>746, 5295=>764, 5296=>746,
+ 5297=>764, 5298=>749, 5299=>769, 5300=>749, 5301=>769, 5302=>746, 5303=>764, 5304=>746, 5305=>764, 5306=>746, 5307=>386, 5308=>508, 5309=>386, 5312=>852, 5313=>852, 5314=>852,
+ 5315=>852, 5316=>852, 5317=>799, 5318=>799, 5319=>852, 5320=>799, 5321=>1069, 5322=>1035, 5323=>1059, 5324=>852, 5325=>1059, 5326=>799, 5327=>852, 5328=>600, 5329=>453, 5330=>600,
+ 5331=>852, 5332=>852, 5333=>852, 5334=>852, 5335=>852, 5336=>799, 5337=>799, 5338=>852, 5339=>799, 5340=>1069, 5341=>1035, 5342=>1059, 5343=>1030, 5344=>1059, 5345=>1030, 5346=>1069,
+ 5347=>1035, 5348=>1069, 5349=>1035, 5350=>1083, 5351=>1030, 5352=>1083, 5353=>1030, 5354=>600, 5356=>729, 5357=>603, 5358=>603, 5359=>603, 5360=>603, 5361=>603, 5362=>603, 5363=>603,
+ 5364=>603, 5365=>603, 5366=>834, 5367=>754, 5368=>792, 5369=>771, 5370=>792, 5371=>771, 5372=>834, 5373=>754, 5374=>834, 5375=>754, 5376=>792, 5377=>771, 5378=>792, 5379=>771,
+ 5380=>792, 5381=>418, 5382=>420, 5383=>418, 5392=>712, 5393=>712, 5394=>712, 5395=>892, 5396=>892, 5397=>892, 5398=>892, 5399=>910, 5400=>872, 5401=>910, 5402=>872, 5403=>910,
+ 5404=>872, 5405=>1140, 5406=>1100, 5407=>1140, 5408=>1100, 5409=>1140, 5410=>1100, 5411=>1140, 5412=>1100, 5413=>641, 5414=>627, 5415=>627, 5416=>627, 5417=>627, 5418=>627, 5419=>627,
+ 5420=>627, 5421=>627, 5422=>627, 5423=>844, 5424=>781, 5425=>816, 5426=>818, 5427=>816, 5428=>818, 5429=>844, 5430=>781, 5431=>844, 5432=>781, 5433=>816, 5434=>818, 5435=>816,
+ 5436=>818, 5437=>816, 5438=>418, 5440=>389, 5441=>484, 5442=>916, 5443=>916, 5444=>863, 5445=>916, 5446=>863, 5447=>863, 5448=>603, 5449=>603, 5450=>603, 5451=>603, 5452=>603,
+ 5453=>603, 5454=>834, 5455=>754, 5456=>418, 5458=>729, 5459=>684, 5460=>684, 5461=>684, 5462=>684, 5463=>726, 5464=>672, 5465=>726, 5466=>726, 5467=>924, 5468=>1007, 5469=>508,
+ 5470=>732, 5471=>732, 5472=>732, 5473=>732, 5474=>732, 5475=>732, 5476=>730, 5477=>730, 5478=>730, 5479=>730, 5480=>947, 5481=>900, 5482=>508, 5492=>831, 5493=>831, 5494=>831,
+ 5495=>831, 5496=>831, 5497=>831, 5498=>831, 5499=>563, 5500=>752, 5501=>484, 5502=>1047, 5503=>1047, 5504=>1047, 5505=>1047, 5506=>1047, 5507=>1047, 5508=>1047, 5509=>825, 5514=>831,
+ 5515=>831, 5516=>831, 5517=>831, 5518=>1259, 5519=>1259, 5520=>1259, 5521=>1002, 5522=>1002, 5523=>1259, 5524=>1259, 5525=>700, 5526=>1073, 5536=>852, 5537=>852, 5538=>799, 5539=>799,
+ 5540=>799, 5541=>799, 5542=>600, 5543=>643, 5544=>643, 5545=>643, 5546=>643, 5547=>643, 5548=>643, 5549=>643, 5550=>418, 5551=>628, 5598=>770, 5601=>770, 5702=>468, 5703=>468,
+ 5742=>444, 5743=>1047, 5744=>1310, 5745=>1632, 5746=>1632, 5747=>1375, 5748=>1375, 5749=>1632, 5750=>1632, 7424=>592, 7425=>717, 7426=>982, 7427=>586, 7428=>550, 7429=>605, 7430=>605,
+ 7431=>491, 7432=>541, 7433=>278, 7434=>395, 7435=>579, 7436=>583, 7437=>754, 7438=>650, 7439=>612, 7440=>550, 7441=>684, 7442=>684, 7443=>684, 7444=>1023, 7446=>612, 7447=>612,
+ 7448=>524, 7449=>602, 7450=>602, 7451=>583, 7452=>574, 7453=>737, 7454=>948, 7455=>638, 7456=>592, 7457=>818, 7458=>525, 7459=>526, 7462=>583, 7463=>592, 7464=>564, 7465=>524,
+ 7466=>590, 7467=>639, 7468=>431, 7469=>613, 7470=>432, 7472=>485, 7473=>398, 7474=>398, 7475=>488, 7476=>474, 7477=>186, 7478=>186, 7479=>413, 7480=>351, 7481=>543, 7482=>471,
+ 7483=>471, 7484=>496, 7485=>439, 7486=>380, 7487=>438, 7488=>385, 7489=>461, 7490=>623, 7491=>392, 7492=>392, 7493=>405, 7494=>648, 7495=>428, 7496=>405, 7497=>417, 7498=>417,
+ 7499=>360, 7500=>359, 7501=>405, 7502=>179, 7503=>426, 7504=>623, 7505=>409, 7506=>414, 7507=>370, 7508=>414, 7509=>414, 7510=>428, 7511=>295, 7512=>405, 7513=>470, 7514=>623,
+ 7515=>417, 7517=>402, 7518=>373, 7519=>385, 7520=>416, 7521=>364, 7522=>179, 7523=>259, 7524=>405, 7525=>417, 7526=>402, 7527=>373, 7528=>412, 7529=>416, 7530=>364, 7543=>635,
+ 7544=>474, 7547=>372, 7557=>278, 7579=>405, 7580=>370, 7581=>370, 7582=>414, 7583=>360, 7584=>296, 7585=>233, 7586=>405, 7587=>405, 7588=>261, 7589=>250, 7590=>261, 7591=>261,
+ 7592=>234, 7593=>250, 7594=>235, 7595=>376, 7596=>623, 7597=>623, 7598=>411, 7599=>479, 7600=>409, 7601=>414, 7602=>414, 7603=>360, 7604=>287, 7605=>295, 7606=>508, 7607=>418,
+ 7608=>361, 7609=>406, 7610=>417, 7611=>366, 7612=>437, 7613=>366, 7614=>392, 7615=>414, 7620=>0, 7621=>0, 7622=>0, 7623=>0, 7624=>0, 7625=>0, 7680=>684, 7681=>613,
+ 7682=>686, 7683=>635, 7684=>686, 7685=>635, 7686=>686, 7687=>635, 7688=>698, 7689=>550, 7690=>770, 7691=>635, 7692=>770, 7693=>635, 7694=>770, 7695=>635, 7696=>770, 7697=>635,
+ 7698=>770, 7699=>635, 7700=>632, 7701=>615, 7702=>632, 7703=>615, 7704=>632, 7705=>615, 7706=>632, 7707=>615, 7708=>632, 7709=>615, 7710=>575, 7711=>352, 7712=>775, 7713=>635,
+ 7714=>752, 7715=>634, 7716=>752, 7717=>634, 7718=>752, 7719=>634, 7720=>752, 7721=>634, 7722=>752, 7723=>634, 7724=>295, 7725=>278, 7726=>295, 7727=>278, 7728=>656, 7729=>579,
+ 7730=>656, 7731=>579, 7732=>656, 7733=>579, 7734=>557, 7735=>278, 7736=>557, 7737=>278, 7738=>557, 7739=>278, 7740=>557, 7741=>278, 7742=>863, 7743=>974, 7744=>863, 7745=>974,
+ 7746=>863, 7747=>974, 7748=>748, 7749=>634, 7750=>748, 7751=>634, 7752=>748, 7753=>634, 7754=>748, 7755=>634, 7756=>787, 7757=>612, 7758=>787, 7759=>612, 7760=>787, 7761=>612,
+ 7762=>787, 7763=>612, 7764=>603, 7765=>635, 7766=>603, 7767=>635, 7768=>695, 7769=>411, 7770=>695, 7771=>411, 7772=>695, 7773=>411, 7774=>695, 7775=>411, 7776=>635, 7777=>521,
+ 7778=>635, 7779=>521, 7780=>635, 7781=>521, 7782=>635, 7783=>521, 7784=>635, 7785=>521, 7786=>611, 7787=>392, 7788=>611, 7789=>392, 7790=>611, 7791=>392, 7792=>611, 7793=>392,
+ 7794=>732, 7795=>634, 7796=>732, 7797=>634, 7798=>732, 7799=>634, 7800=>732, 7801=>634, 7802=>732, 7803=>634, 7804=>684, 7805=>592, 7806=>684, 7807=>592, 7808=>989, 7809=>818,
+ 7810=>989, 7811=>818, 7812=>989, 7813=>818, 7814=>989, 7815=>818, 7816=>989, 7817=>818, 7818=>685, 7819=>592, 7820=>685, 7821=>592, 7822=>611, 7823=>592, 7824=>685, 7825=>525,
+ 7826=>685, 7827=>525, 7828=>685, 7829=>525, 7830=>634, 7831=>392, 7832=>818, 7833=>592, 7834=>613, 7835=>352, 7839=>612, 7840=>684, 7841=>613, 7842=>684, 7843=>613, 7844=>684,
+ 7845=>613, 7846=>684, 7847=>613, 7848=>684, 7849=>613, 7850=>684, 7851=>613, 7852=>684, 7853=>613, 7854=>684, 7855=>613, 7856=>684, 7857=>613, 7858=>684, 7859=>613, 7860=>684,
+ 7861=>613, 7862=>684, 7863=>613, 7864=>632, 7865=>615, 7866=>632, 7867=>615, 7868=>632, 7869=>615, 7870=>632, 7871=>615, 7872=>632, 7873=>615, 7874=>632, 7875=>615, 7876=>632,
+ 7877=>615, 7878=>632, 7879=>615, 7880=>295, 7881=>278, 7882=>295, 7883=>278, 7884=>787, 7885=>612, 7886=>787, 7887=>612, 7888=>787, 7889=>612, 7890=>787, 7891=>612, 7892=>787,
+ 7893=>612, 7894=>787, 7895=>612, 7896=>787, 7897=>612, 7898=>913, 7899=>612, 7900=>913, 7901=>612, 7902=>913, 7903=>612, 7904=>913, 7905=>612, 7906=>913, 7907=>612, 7908=>732,
+ 7909=>634, 7910=>732, 7911=>634, 7912=>838, 7913=>634, 7914=>838, 7915=>634, 7916=>838, 7917=>634, 7918=>838, 7919=>634, 7920=>838, 7921=>634, 7922=>611, 7923=>592, 7924=>611,
+ 7925=>592, 7926=>611, 7927=>592, 7928=>611, 7929=>592, 7936=>659, 7937=>659, 7938=>659, 7939=>659, 7940=>659, 7941=>659, 7942=>659, 7943=>659, 7944=>684, 7945=>684, 7946=>877,
+ 7947=>877, 7948=>769, 7949=>801, 7950=>708, 7951=>743, 7952=>541, 7953=>541, 7954=>541, 7955=>541, 7956=>541, 7957=>541, 7960=>711, 7961=>711, 7962=>966, 7963=>975, 7964=>898,
+ 7965=>928, 7968=>634, 7969=>634, 7970=>634, 7971=>634, 7972=>634, 7973=>634, 7974=>634, 7975=>634, 7976=>837, 7977=>835, 7978=>1086, 7979=>1089, 7980=>1027, 7981=>1051, 7982=>934,
+ 7983=>947, 7984=>338, 7985=>338, 7986=>338, 7987=>338, 7988=>338, 7989=>338, 7990=>338, 7991=>338, 7992=>380, 7993=>374, 7994=>635, 7995=>635, 7996=>570, 7997=>600, 7998=>489,
+ 7999=>493, 8000=>612, 8001=>612, 8002=>612, 8003=>612, 8004=>612, 8005=>612, 8008=>804, 8009=>848, 8010=>1095, 8011=>1100, 8012=>938, 8013=>970, 8016=>579, 8017=>579, 8018=>579,
+ 8019=>579, 8020=>579, 8021=>579, 8022=>579, 8023=>579, 8025=>784, 8027=>998, 8029=>1012, 8031=>897, 8032=>837, 8033=>837, 8034=>837, 8035=>837, 8036=>837, 8037=>837, 8038=>837,
+ 8039=>837, 8040=>802, 8041=>843, 8042=>1089, 8043=>1095, 8044=>946, 8045=>972, 8046=>921, 8047=>952, 8048=>659, 8049=>659, 8050=>541, 8051=>548, 8052=>634, 8053=>654, 8054=>338,
+ 8055=>338, 8056=>612, 8057=>612, 8058=>579, 8059=>579, 8060=>837, 8061=>837, 8064=>659, 8065=>659, 8066=>659, 8067=>659, 8068=>659, 8069=>659, 8070=>659, 8071=>659, 8072=>684,
+ 8073=>684, 8074=>877, 8075=>877, 8076=>769, 8077=>801, 8078=>708, 8079=>743, 8080=>634, 8081=>634, 8082=>634, 8083=>634, 8084=>634, 8085=>634, 8086=>634, 8087=>634, 8088=>837,
+ 8089=>835, 8090=>1086, 8091=>1089, 8092=>1027, 8093=>1051, 8094=>934, 8095=>947, 8096=>837, 8097=>837, 8098=>837, 8099=>837, 8100=>837, 8101=>837, 8102=>837, 8103=>837, 8104=>802,
+ 8105=>843, 8106=>1089, 8107=>1095, 8108=>946, 8109=>972, 8110=>921, 8111=>952, 8112=>659, 8113=>659, 8114=>659, 8115=>659, 8116=>659, 8118=>659, 8119=>659, 8120=>684, 8121=>684,
+ 8122=>716, 8123=>692, 8124=>684, 8125=>500, 8126=>500, 8127=>500, 8128=>500, 8129=>500, 8130=>634, 8131=>634, 8132=>654, 8134=>634, 8135=>634, 8136=>805, 8137=>746, 8138=>931,
+ 8139=>871, 8140=>752, 8141=>500, 8142=>500, 8143=>500, 8144=>338, 8145=>338, 8146=>338, 8147=>338, 8150=>338, 8151=>338, 8152=>295, 8153=>295, 8154=>475, 8155=>408, 8157=>500,
+ 8158=>500, 8159=>500, 8160=>579, 8161=>579, 8162=>579, 8163=>579, 8164=>635, 8165=>635, 8166=>579, 8167=>579, 8168=>611, 8169=>611, 8170=>845, 8171=>825, 8172=>685, 8173=>500,
+ 8174=>500, 8175=>500, 8178=>837, 8179=>837, 8180=>837, 8182=>837, 8183=>837, 8184=>941, 8185=>813, 8186=>922, 8187=>826, 8188=>764, 8189=>500, 8190=>500, 8192=>500, 8193=>1000,
+ 8194=>500, 8195=>1000, 8196=>330, 8197=>250, 8198=>167, 8199=>636, 8200=>318, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0, 8206=>0, 8207=>0, 8208=>361, 8209=>361,
+ 8210=>636, 8213=>1000, 8214=>0, 8215=>500, 8219=>318, 8223=>518, 8227=>590, 8228=>333, 8229=>667, 8231=>318, 8234=>0, 8235=>0, 8236=>0, 8237=>0, 8238=>0, 8239=>200,
+ 8241=>1690, 8242=>227, 8243=>374, 8244=>520, 8245=>227, 8246=>374, 8247=>520, 8248=>339, 8251=>838, 8252=>485, 8253=>531, 8254=>500, 8255=>804, 8256=>804, 8257=>250, 8258=>1000,
+ 8259=>500, 8260=>167, 8261=>390, 8262=>390, 8263=>922, 8264=>733, 8265=>733, 8266=>497, 8267=>636, 8268=>500, 8269=>500, 8270=>500, 8271=>337, 8272=>804, 8273=>500, 8274=>450,
+ 8275=>838, 8276=>804, 8277=>838, 8278=>586, 8279=>663, 8280=>838, 8281=>838, 8282=>318, 8283=>797, 8284=>838, 8285=>318, 8286=>318, 8287=>222, 8288=>0, 8289=>0, 8290=>0,
+ 8291=>0, 8292=>0, 8298=>0, 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>401, 8305=>179, 8308=>401, 8309=>401, 8310=>401, 8311=>401, 8312=>401, 8313=>401,
+ 8314=>528, 8315=>528, 8316=>528, 8317=>246, 8318=>246, 8319=>399, 8320=>401, 8321=>401, 8322=>401, 8323=>401, 8324=>401, 8325=>401, 8326=>401, 8327=>401, 8328=>401, 8329=>401,
+ 8330=>528, 8331=>528, 8332=>528, 8333=>246, 8334=>246, 8336=>392, 8337=>417, 8338=>414, 8339=>444, 8340=>417, 8352=>877, 8353=>636, 8354=>636, 8355=>636, 8356=>636, 8357=>974,
+ 8358=>748, 8359=>1271, 8360=>1074, 8361=>989, 8362=>838, 8363=>636, 8365=>656, 8366=>611, 8367=>1272, 8368=>636, 8369=>636, 8370=>636, 8371=>636, 8372=>774, 8373=>641, 8400=>0,
+ 8401=>0, 8406=>0, 8407=>0, 8411=>0, 8412=>0, 8417=>0, 8448=>970, 8449=>970, 8450=>698, 8451=>1123, 8452=>896, 8453=>969, 8454=>1032, 8455=>614, 8456=>698, 8457=>952,
+ 8459=>988, 8460=>754, 8461=>850, 8462=>634, 8463=>634, 8464=>470, 8465=>697, 8466=>720, 8467=>413, 8468=>818, 8469=>801, 8470=>1040, 8471=>1000, 8472=>697, 8473=>701, 8474=>787,
+ 8475=>798, 8476=>814, 8477=>792, 8478=>896, 8479=>684, 8480=>1020, 8481=>1014, 8483=>684, 8484=>745, 8485=>578, 8486=>764, 8487=>764, 8488=>616, 8489=>338, 8490=>656, 8491=>684,
+ 8492=>786, 8493=>703, 8494=>854, 8495=>592, 8496=>605, 8497=>786, 8498=>575, 8499=>1069, 8500=>462, 8501=>745, 8502=>674, 8503=>466, 8504=>645, 8505=>380, 8506=>926, 8507=>1157,
+ 8508=>702, 8509=>728, 8510=>654, 8511=>849, 8512=>811, 8513=>775, 8514=>557, 8515=>557, 8516=>611, 8517=>819, 8518=>708, 8519=>615, 8520=>351, 8521=>351, 8523=>780, 8526=>526,
+ 8531=>969, 8532=>969, 8533=>969, 8534=>969, 8535=>969, 8536=>969, 8537=>969, 8538=>969, 8539=>969, 8540=>969, 8541=>969, 8542=>969, 8543=>568, 8544=>295, 8545=>492, 8546=>689,
+ 8547=>923, 8548=>684, 8549=>922, 8550=>1120, 8551=>1317, 8552=>917, 8553=>685, 8554=>933, 8555=>1131, 8556=>557, 8557=>698, 8558=>770, 8559=>863, 8560=>278, 8561=>458, 8562=>637,
+ 8563=>812, 8564=>592, 8565=>811, 8566=>991, 8567=>1170, 8568=>819, 8569=>592, 8570=>822, 8571=>1002, 8572=>278, 8573=>550, 8574=>635, 8575=>974, 8576=>1245, 8577=>770, 8578=>1245,
+ 8579=>703, 8580=>549, 8592=>838, 8593=>838, 8594=>838, 8595=>838, 8596=>838, 8597=>838, 8598=>838, 8599=>838, 8600=>838, 8601=>838, 8602=>838, 8603=>838, 8604=>838, 8605=>838,
+ 8606=>838, 8607=>838, 8608=>838, 8609=>838, 8610=>838, 8611=>838, 8612=>838, 8613=>838, 8614=>838, 8615=>838, 8616=>838, 8617=>838, 8618=>838, 8619=>838, 8620=>838, 8621=>838,
+ 8622=>838, 8623=>838, 8624=>838, 8625=>838, 8626=>838, 8627=>838, 8628=>838, 8629=>838, 8630=>838, 8631=>838, 8632=>838, 8633=>838, 8634=>838, 8635=>838, 8636=>838, 8637=>838,
+ 8638=>838, 8639=>838, 8640=>838, 8641=>838, 8642=>838, 8643=>838, 8644=>838, 8645=>838, 8646=>838, 8647=>838, 8648=>838, 8649=>838, 8650=>838, 8651=>838, 8652=>838, 8653=>838,
+ 8654=>838, 8655=>838, 8656=>838, 8657=>838, 8658=>838, 8659=>838, 8660=>838, 8661=>838, 8662=>838, 8663=>838, 8664=>838, 8665=>838, 8666=>838, 8667=>838, 8668=>838, 8669=>838,
+ 8670=>838, 8671=>838, 8672=>838, 8673=>838, 8674=>838, 8675=>838, 8676=>838, 8677=>838, 8678=>838, 8679=>838, 8680=>838, 8681=>838, 8682=>838, 8683=>838, 8684=>838, 8685=>838,
+ 8686=>838, 8687=>838, 8688=>838, 8689=>838, 8690=>838, 8691=>838, 8692=>838, 8693=>838, 8694=>838, 8695=>838, 8696=>838, 8697=>838, 8698=>838, 8699=>838, 8700=>838, 8701=>838,
+ 8702=>838, 8703=>838, 8704=>684, 8705=>636, 8706=>517, 8707=>632, 8708=>632, 8709=>871, 8710=>669, 8711=>669, 8712=>871, 8713=>871, 8714=>718, 8715=>871, 8716=>871, 8717=>718,
+ 8718=>636, 8719=>757, 8720=>757, 8721=>674, 8722=>838, 8723=>838, 8724=>838, 8725=>167, 8726=>637, 8727=>838, 8728=>626, 8729=>626, 8730=>637, 8731=>637, 8732=>637, 8733=>677,
+ 8734=>833, 8735=>838, 8736=>896, 8737=>896, 8738=>838, 8739=>500, 8740=>500, 8741=>500, 8742=>500, 8743=>732, 8744=>732, 8745=>732, 8746=>732, 8747=>521, 8748=>789, 8749=>1057,
+ 8750=>521, 8751=>789, 8752=>1057, 8753=>521, 8754=>521, 8755=>521, 8756=>636, 8757=>636, 8758=>260, 8759=>636, 8760=>838, 8761=>838, 8762=>838, 8763=>838, 8764=>838, 8765=>838,
+ 8766=>838, 8767=>838, 8768=>375, 8769=>838, 8770=>838, 8771=>838, 8772=>838, 8773=>838, 8774=>838, 8775=>838, 8776=>838, 8777=>838, 8778=>838, 8779=>838, 8780=>838, 8781=>838,
+ 8782=>838, 8783=>838, 8784=>838, 8785=>838, 8786=>838, 8787=>838, 8788=>1000, 8789=>1000, 8790=>838, 8791=>838, 8792=>838, 8793=>838, 8794=>838, 8795=>838, 8796=>838, 8797=>838,
+ 8798=>838, 8799=>838, 8800=>838, 8801=>838, 8802=>838, 8803=>838, 8804=>838, 8805=>838, 8806=>838, 8807=>838, 8808=>838, 8809=>838, 8810=>1047, 8811=>1047, 8812=>464, 8813=>838,
+ 8814=>838, 8815=>838, 8816=>838, 8817=>838, 8818=>838, 8819=>838, 8820=>838, 8821=>838, 8822=>838, 8823=>838, 8824=>838, 8825=>838, 8826=>838, 8827=>838, 8828=>838, 8829=>838,
+ 8830=>838, 8831=>838, 8832=>838, 8833=>838, 8834=>838, 8835=>838, 8836=>838, 8837=>838, 8838=>838, 8839=>838, 8840=>838, 8841=>838, 8842=>838, 8843=>838, 8844=>732, 8845=>732,
+ 8846=>732, 8847=>838, 8848=>838, 8849=>838, 8850=>838, 8851=>722, 8852=>722, 8853=>838, 8854=>838, 8855=>838, 8856=>838, 8857=>838, 8858=>838, 8859=>838, 8860=>838, 8861=>838,
+ 8862=>838, 8863=>838, 8864=>838, 8865=>838, 8866=>871, 8867=>871, 8868=>871, 8869=>871, 8870=>521, 8871=>521, 8872=>871, 8873=>871, 8874=>871, 8875=>871, 8876=>871, 8877=>871,
+ 8878=>871, 8879=>871, 8882=>838, 8883=>838, 8884=>838, 8885=>838, 8886=>1000, 8887=>1000, 8888=>838, 8889=>838, 8890=>521, 8891=>732, 8892=>732, 8893=>732, 8894=>838, 8895=>838,
+ 8896=>820, 8897=>820, 8898=>820, 8899=>820, 8900=>494, 8901=>318, 8902=>626, 8904=>1000, 8905=>1000, 8906=>1000, 8907=>1000, 8908=>1000, 8909=>838, 8910=>732, 8911=>732, 8918=>838,
+ 8919=>838, 8920=>1422, 8921=>1422, 8922=>838, 8923=>838, 8924=>838, 8925=>838, 8926=>838, 8927=>838, 8928=>838, 8929=>838, 8930=>838, 8931=>838, 8932=>838, 8933=>838, 8934=>838,
+ 8935=>838, 8936=>838, 8937=>838, 8938=>838, 8939=>838, 8940=>838, 8941=>838, 8942=>1000, 8943=>1000, 8944=>1000, 8945=>1000, 8946=>1000, 8947=>871, 8948=>718, 8949=>871, 8950=>871,
+ 8951=>718, 8952=>871, 8953=>871, 8954=>1000, 8955=>871, 8956=>718, 8957=>871, 8958=>718, 8959=>871, 8960=>602, 8961=>602, 8962=>635, 8963=>838, 8964=>838, 8965=>838, 8966=>838,
+ 8967=>488, 8968=>390, 8969=>390, 8970=>390, 8971=>390, 8972=>809, 8973=>809, 8974=>809, 8975=>809, 8976=>838, 8977=>513, 8984=>1000, 8985=>838, 8988=>469, 8989=>469, 8990=>469,
+ 8991=>469, 8992=>521, 8993=>521, 8996=>1152, 8997=>1152, 8998=>1414, 8999=>1152, 9000=>1443, 9003=>1414, 9004=>873, 9075=>338, 9076=>635, 9077=>837, 9082=>659, 9085=>757, 9095=>1152,
+ 9108=>873, 9115=>500, 9116=>500, 9117=>500, 9118=>500, 9119=>500, 9120=>500, 9121=>500, 9122=>500, 9123=>500, 9124=>500, 9125=>500, 9126=>500, 9127=>750, 9128=>750, 9129=>750,
+ 9130=>750, 9131=>750, 9132=>750, 9133=>750, 9134=>521, 9166=>838, 9167=>945, 9187=>873, 9189=>769, 9250=>635, 9251=>635, 9312=>896, 9313=>896, 9314=>896, 9315=>896, 9316=>896,
+ 9317=>896, 9318=>896, 9319=>896, 9320=>896, 9321=>896, 9472=>602, 9473=>602, 9474=>602, 9475=>602, 9476=>602, 9477=>602, 9478=>602, 9479=>602, 9480=>602, 9481=>602, 9482=>602,
+ 9483=>602, 9484=>602, 9485=>602, 9486=>602, 9487=>602, 9488=>602, 9489=>602, 9490=>602, 9491=>602, 9492=>602, 9493=>602, 9494=>602, 9495=>602, 9496=>602, 9497=>602, 9498=>602,
+ 9499=>602, 9500=>602, 9501=>602, 9502=>602, 9503=>602, 9504=>602, 9505=>602, 9506=>602, 9507=>602, 9508=>602, 9509=>602, 9510=>602, 9511=>602, 9512=>602, 9513=>602, 9514=>602,
+ 9515=>602, 9516=>602, 9517=>602, 9518=>602, 9519=>602, 9520=>602, 9521=>602, 9522=>602, 9523=>602, 9524=>602, 9525=>602, 9526=>602, 9527=>602, 9528=>602, 9529=>602, 9530=>602,
+ 9531=>602, 9532=>602, 9533=>602, 9534=>602, 9535=>602, 9536=>602, 9537=>602, 9538=>602, 9539=>602, 9540=>602, 9541=>602, 9542=>602, 9543=>602, 9544=>602, 9545=>602, 9546=>602,
+ 9547=>602, 9548=>602, 9549=>602, 9550=>602, 9551=>602, 9552=>602, 9553=>602, 9554=>602, 9555=>602, 9556=>602, 9557=>602, 9558=>602, 9559=>602, 9560=>602, 9561=>602, 9562=>602,
+ 9563=>602, 9564=>602, 9565=>602, 9566=>602, 9567=>602, 9568=>602, 9569=>602, 9570=>602, 9571=>602, 9572=>602, 9573=>602, 9574=>602, 9575=>602, 9576=>602, 9577=>602, 9578=>602,
+ 9579=>602, 9580=>602, 9581=>602, 9582=>602, 9583=>602, 9584=>602, 9585=>602, 9586=>602, 9587=>602, 9588=>602, 9589=>602, 9590=>602, 9591=>602, 9592=>602, 9593=>602, 9594=>602,
+ 9595=>602, 9596=>602, 9597=>602, 9598=>602, 9599=>602, 9600=>769, 9601=>769, 9602=>769, 9603=>769, 9604=>769, 9605=>769, 9606=>769, 9607=>769, 9608=>769, 9609=>769, 9610=>769,
+ 9611=>769, 9612=>769, 9613=>769, 9614=>769, 9615=>769, 9616=>769, 9617=>769, 9618=>769, 9619=>769, 9620=>769, 9621=>769, 9622=>769, 9623=>769, 9624=>769, 9625=>769, 9626=>769,
+ 9627=>769, 9628=>769, 9629=>769, 9630=>769, 9631=>769, 9632=>945, 9633=>945, 9634=>945, 9635=>945, 9636=>945, 9637=>945, 9638=>945, 9639=>945, 9640=>945, 9641=>945, 9642=>678,
+ 9643=>678, 9644=>945, 9645=>945, 9646=>550, 9647=>550, 9648=>769, 9649=>769, 9650=>769, 9651=>769, 9652=>502, 9653=>502, 9654=>769, 9655=>769, 9656=>502, 9657=>502, 9658=>769,
+ 9659=>769, 9660=>769, 9661=>769, 9662=>502, 9663=>502, 9664=>769, 9665=>769, 9666=>502, 9667=>502, 9668=>769, 9669=>769, 9670=>769, 9671=>769, 9672=>769, 9673=>873, 9674=>494,
+ 9675=>873, 9676=>873, 9677=>873, 9678=>873, 9679=>873, 9680=>873, 9681=>873, 9682=>873, 9683=>873, 9684=>873, 9685=>873, 9686=>527, 9687=>527, 9688=>791, 9689=>970, 9690=>970,
+ 9691=>970, 9692=>387, 9693=>387, 9694=>387, 9695=>387, 9696=>769, 9697=>769, 9698=>769, 9699=>769, 9700=>769, 9701=>769, 9702=>590, 9703=>945, 9704=>945, 9705=>945, 9706=>945,
+ 9707=>945, 9708=>769, 9709=>769, 9710=>769, 9711=>1119, 9712=>945, 9713=>945, 9714=>945, 9715=>945, 9716=>873, 9717=>873, 9718=>873, 9719=>873, 9720=>769, 9721=>769, 9722=>769,
+ 9723=>830, 9724=>830, 9725=>732, 9726=>732, 9727=>769, 9728=>896, 9729=>1000, 9730=>896, 9731=>896, 9732=>896, 9733=>896, 9734=>896, 9735=>573, 9736=>896, 9737=>896, 9738=>888,
+ 9739=>888, 9740=>671, 9741=>1013, 9742=>1246, 9743=>1250, 9744=>896, 9745=>896, 9746=>896, 9747=>532, 9748=>896, 9749=>896, 9750=>896, 9751=>896, 9752=>896, 9753=>896, 9754=>896,
+ 9755=>896, 9756=>896, 9757=>609, 9758=>896, 9759=>609, 9760=>896, 9761=>896, 9762=>896, 9763=>896, 9764=>669, 9765=>746, 9766=>649, 9767=>784, 9768=>545, 9769=>896, 9770=>896,
+ 9771=>896, 9772=>710, 9773=>896, 9774=>896, 9775=>896, 9776=>896, 9777=>896, 9778=>896, 9779=>896, 9780=>896, 9781=>896, 9782=>896, 9783=>896, 9784=>896, 9785=>896, 9786=>896,
+ 9787=>896, 9788=>896, 9789=>896, 9790=>896, 9791=>614, 9792=>731, 9793=>731, 9794=>896, 9795=>896, 9796=>896, 9797=>896, 9798=>896, 9799=>896, 9800=>896, 9801=>896, 9802=>896,
+ 9803=>896, 9804=>896, 9805=>896, 9806=>896, 9807=>896, 9808=>896, 9809=>896, 9810=>896, 9811=>896, 9812=>896, 9813=>896, 9814=>896, 9815=>896, 9816=>896, 9817=>896, 9818=>896,
+ 9819=>896, 9820=>896, 9821=>896, 9822=>896, 9823=>896, 9824=>896, 9825=>896, 9826=>896, 9827=>896, 9828=>896, 9829=>896, 9830=>896, 9831=>896, 9832=>896, 9833=>472, 9834=>638,
+ 9835=>896, 9836=>896, 9837=>472, 9838=>357, 9839=>484, 9840=>748, 9841=>766, 9842=>896, 9843=>896, 9844=>896, 9845=>896, 9846=>896, 9847=>896, 9848=>896, 9849=>896, 9850=>896,
+ 9851=>896, 9852=>896, 9853=>896, 9854=>896, 9855=>896, 9856=>869, 9857=>869, 9858=>869, 9859=>869, 9860=>869, 9861=>869, 9862=>890, 9863=>890, 9864=>890, 9865=>890, 9866=>890,
+ 9867=>890, 9868=>890, 9869=>890, 9870=>890, 9871=>890, 9872=>750, 9873=>750, 9874=>890, 9875=>816, 9876=>716, 9877=>537, 9878=>852, 9879=>890, 9880=>684, 9881=>890, 9882=>708,
+ 9883=>890, 9884=>890, 9888=>890, 9889=>702, 9890=>1003, 9891=>1085, 9892=>1143, 9893=>901, 9894=>838, 9895=>838, 9896=>838, 9897=>838, 9898=>838, 9899=>838, 9900=>838, 9901=>838,
+ 9902=>838, 9903=>838, 9904=>844, 9905=>838, 9906=>731, 9985=>838, 9986=>838, 9987=>838, 9988=>838, 9990=>838, 9991=>838, 9992=>838, 9993=>838, 9996=>838, 9997=>838, 9998=>838,
+ 9999=>838, 10000=>838, 10001=>838, 10002=>838, 10003=>838, 10004=>838, 10005=>838, 10006=>838, 10007=>838, 10008=>838, 10009=>838, 10010=>838, 10011=>838, 10012=>838, 10013=>838, 10014=>838,
+ 10015=>838, 10016=>838, 10017=>838, 10018=>838, 10019=>838, 10020=>838, 10021=>838, 10022=>838, 10023=>838, 10025=>838, 10026=>838, 10027=>838, 10028=>838, 10029=>838, 10030=>838, 10031=>838,
+ 10032=>838, 10033=>838, 10034=>838, 10035=>838, 10036=>838, 10037=>838, 10038=>838, 10039=>838, 10040=>838, 10041=>838, 10042=>838, 10043=>838, 10044=>838, 10045=>838, 10046=>838, 10047=>838,
+ 10048=>838, 10049=>838, 10050=>838, 10051=>838, 10052=>838, 10053=>838, 10054=>838, 10055=>838, 10056=>838, 10057=>838, 10058=>838, 10059=>838, 10061=>896, 10063=>896, 10064=>896, 10065=>896,
+ 10066=>896, 10070=>896, 10072=>838, 10073=>838, 10074=>838, 10075=>322, 10076=>322, 10077=>538, 10078=>538, 10081=>838, 10082=>838, 10083=>838, 10084=>838, 10085=>838, 10086=>838, 10087=>838,
+ 10088=>838, 10089=>838, 10090=>838, 10091=>838, 10092=>838, 10093=>838, 10094=>838, 10095=>838, 10096=>838, 10097=>838, 10098=>838, 10099=>838, 10100=>838, 10101=>838, 10102=>896, 10103=>896,
+ 10104=>896, 10105=>896, 10106=>896, 10107=>896, 10108=>896, 10109=>896, 10110=>896, 10111=>896, 10112=>838, 10113=>838, 10114=>838, 10115=>838, 10116=>838, 10117=>838, 10118=>838, 10119=>838,
+ 10120=>838, 10121=>838, 10122=>838, 10123=>838, 10124=>838, 10125=>838, 10126=>838, 10127=>838, 10128=>838, 10129=>838, 10130=>838, 10131=>838, 10132=>838, 10136=>838, 10137=>838, 10138=>838,
+ 10139=>838, 10140=>838, 10141=>838, 10142=>838, 10143=>838, 10144=>838, 10145=>838, 10146=>838, 10147=>838, 10148=>838, 10149=>838, 10150=>838, 10151=>838, 10152=>838, 10153=>838, 10154=>838,
+ 10155=>838, 10156=>838, 10157=>838, 10158=>838, 10159=>838, 10161=>838, 10162=>838, 10163=>838, 10164=>838, 10165=>838, 10166=>838, 10167=>838, 10168=>838, 10169=>838, 10170=>838, 10171=>838,
+ 10172=>838, 10173=>838, 10174=>838, 10208=>494, 10214=>495, 10215=>495, 10216=>390, 10217=>390, 10218=>556, 10219=>556, 10224=>838, 10225=>838, 10226=>838, 10227=>838, 10228=>1157, 10229=>1434,
+ 10230=>1434, 10231=>1434, 10232=>1434, 10233=>1434, 10234=>1434, 10235=>1434, 10236=>1434, 10237=>1434, 10238=>1434, 10239=>1434, 10240=>732, 10241=>732, 10242=>732, 10243=>732, 10244=>732, 10245=>732,
+ 10246=>732, 10247=>732, 10248=>732, 10249=>732, 10250=>732, 10251=>732, 10252=>732, 10253=>732, 10254=>732, 10255=>732, 10256=>732, 10257=>732, 10258=>732, 10259=>732, 10260=>732, 10261=>732,
+ 10262=>732, 10263=>732, 10264=>732, 10265=>732, 10266=>732, 10267=>732, 10268=>732, 10269=>732, 10270=>732, 10271=>732, 10272=>732, 10273=>732, 10274=>732, 10275=>732, 10276=>732, 10277=>732,
+ 10278=>732, 10279=>732, 10280=>732, 10281=>732, 10282=>732, 10283=>732, 10284=>732, 10285=>732, 10286=>732, 10287=>732, 10288=>732, 10289=>732, 10290=>732, 10291=>732, 10292=>732, 10293=>732,
+ 10294=>732, 10295=>732, 10296=>732, 10297=>732, 10298=>732, 10299=>732, 10300=>732, 10301=>732, 10302=>732, 10303=>732, 10304=>732, 10305=>732, 10306=>732, 10307=>732, 10308=>732, 10309=>732,
+ 10310=>732, 10311=>732, 10312=>732, 10313=>732, 10314=>732, 10315=>732, 10316=>732, 10317=>732, 10318=>732, 10319=>732, 10320=>732, 10321=>732, 10322=>732, 10323=>732, 10324=>732, 10325=>732,
+ 10326=>732, 10327=>732, 10328=>732, 10329=>732, 10330=>732, 10331=>732, 10332=>732, 10333=>732, 10334=>732, 10335=>732, 10336=>732, 10337=>732, 10338=>732, 10339=>732, 10340=>732, 10341=>732,
+ 10342=>732, 10343=>732, 10344=>732, 10345=>732, 10346=>732, 10347=>732, 10348=>732, 10349=>732, 10350=>732, 10351=>732, 10352=>732, 10353=>732, 10354=>732, 10355=>732, 10356=>732, 10357=>732,
+ 10358=>732, 10359=>732, 10360=>732, 10361=>732, 10362=>732, 10363=>732, 10364=>732, 10365=>732, 10366=>732, 10367=>732, 10368=>732, 10369=>732, 10370=>732, 10371=>732, 10372=>732, 10373=>732,
+ 10374=>732, 10375=>732, 10376=>732, 10377=>732, 10378=>732, 10379=>732, 10380=>732, 10381=>732, 10382=>732, 10383=>732, 10384=>732, 10385=>732, 10386=>732, 10387=>732, 10388=>732, 10389=>732,
+ 10390=>732, 10391=>732, 10392=>732, 10393=>732, 10394=>732, 10395=>732, 10396=>732, 10397=>732, 10398=>732, 10399=>732, 10400=>732, 10401=>732, 10402=>732, 10403=>732, 10404=>732, 10405=>732,
+ 10406=>732, 10407=>732, 10408=>732, 10409=>732, 10410=>732, 10411=>732, 10412=>732, 10413=>732, 10414=>732, 10415=>732, 10416=>732, 10417=>732, 10418=>732, 10419=>732, 10420=>732, 10421=>732,
+ 10422=>732, 10423=>732, 10424=>732, 10425=>732, 10426=>732, 10427=>732, 10428=>732, 10429=>732, 10430=>732, 10431=>732, 10432=>732, 10433=>732, 10434=>732, 10435=>732, 10436=>732, 10437=>732,
+ 10438=>732, 10439=>732, 10440=>732, 10441=>732, 10442=>732, 10443=>732, 10444=>732, 10445=>732, 10446=>732, 10447=>732, 10448=>732, 10449=>732, 10450=>732, 10451=>732, 10452=>732, 10453=>732,
+ 10454=>732, 10455=>732, 10456=>732, 10457=>732, 10458=>732, 10459=>732, 10460=>732, 10461=>732, 10462=>732, 10463=>732, 10464=>732, 10465=>732, 10466=>732, 10467=>732, 10468=>732, 10469=>732,
+ 10470=>732, 10471=>732, 10472=>732, 10473=>732, 10474=>732, 10475=>732, 10476=>732, 10477=>732, 10478=>732, 10479=>732, 10480=>732, 10481=>732, 10482=>732, 10483=>732, 10484=>732, 10485=>732,
+ 10486=>732, 10487=>732, 10488=>732, 10489=>732, 10490=>732, 10491=>732, 10492=>732, 10493=>732, 10494=>732, 10495=>732, 10502=>838, 10503=>838, 10506=>838, 10507=>838, 10560=>683, 10561=>683,
+ 10627=>734, 10628=>734, 10702=>838, 10703=>1000, 10704=>1000, 10705=>1000, 10706=>1000, 10707=>1000, 10708=>1000, 10709=>1000, 10731=>494, 10746=>838, 10747=>838, 10752=>1000, 10753=>1000, 10754=>1000,
+ 10764=>1325, 10765=>521, 10766=>521, 10767=>521, 10768=>521, 10769=>521, 10770=>521, 10771=>521, 10772=>521, 10773=>521, 10774=>521, 10775=>521, 10776=>521, 10777=>521, 10778=>521, 10779=>521,
+ 10780=>521, 10799=>838, 10877=>838, 10878=>838, 10879=>838, 10880=>838, 10881=>838, 10882=>838, 10883=>838, 10884=>838, 10885=>838, 10886=>838, 10887=>838, 10888=>838, 10889=>838, 10890=>838,
+ 10891=>838, 10892=>838, 10893=>838, 10894=>838, 10895=>838, 10896=>838, 10897=>838, 10898=>838, 10899=>838, 10900=>838, 10901=>838, 10902=>838, 10903=>838, 10904=>838, 10905=>838, 10906=>838,
+ 10907=>838, 10908=>838, 10909=>838, 10910=>838, 10911=>838, 10912=>838, 10926=>838, 10927=>838, 10928=>838, 10929=>838, 10930=>838, 10931=>838, 10932=>838, 10933=>838, 10934=>838, 10935=>838,
+ 10936=>838, 10937=>838, 10938=>838, 11001=>838, 11002=>838, 11008=>838, 11009=>838, 11010=>838, 11011=>838, 11012=>838, 11013=>838, 11014=>838, 11015=>838, 11016=>838, 11017=>838, 11018=>838,
+ 11019=>838, 11020=>838, 11021=>838, 11022=>836, 11023=>836, 11024=>836, 11025=>836, 11026=>945, 11027=>945, 11028=>945, 11029=>945, 11030=>769, 11031=>769, 11032=>769, 11033=>769, 11034=>945,
+ 11040=>869, 11041=>873, 11042=>873, 11043=>873, 11360=>557, 11361=>278, 11362=>557, 11363=>603, 11364=>695, 11365=>613, 11366=>392, 11367=>752, 11368=>634, 11369=>656, 11370=>579, 11371=>685,
+ 11372=>525, 11373=>781, 11374=>863, 11375=>684, 11377=>734, 11378=>1128, 11379=>961, 11380=>592, 11381=>654, 11382=>568, 11383=>660, 11385=>414, 11387=>491, 11388=>175, 11389=>431, 11800=>531,
+ 11822=>531, 19904=>896, 19905=>896, 19906=>896, 19907=>896, 19908=>896, 19909=>896, 19910=>896, 19911=>896, 19912=>896, 19913=>896, 19914=>896, 19915=>896, 19916=>896, 19917=>896, 19918=>896,
+ 19919=>896, 19920=>896, 19921=>896, 19922=>896, 19923=>896, 19924=>896, 19925=>896, 19926=>896, 19927=>896, 19928=>896, 19929=>896, 19930=>896, 19931=>896, 19932=>896, 19933=>896, 19934=>896,
+ 19935=>896, 19936=>896, 19937=>896, 19938=>896, 19939=>896, 19940=>896, 19941=>896, 19942=>896, 19943=>896, 19944=>896, 19945=>896, 19946=>896, 19947=>896, 19948=>896, 19949=>896, 19950=>896,
+ 19951=>896, 19952=>896, 19953=>896, 19954=>896, 19955=>896, 19956=>896, 19957=>896, 19958=>896, 19959=>896, 19960=>896, 19961=>896, 19962=>896, 19963=>896, 19964=>896, 19965=>896, 19966=>896,
+ 19967=>896, 42564=>635, 42565=>521, 42566=>354, 42567=>338, 42572=>1180, 42573=>1028, 42576=>1029, 42577=>906, 42580=>1080, 42581=>842, 42770=>493, 42771=>493, 42772=>493, 42773=>493, 42774=>493,
+ 42790=>752, 42791=>634, 42792=>878, 42793=>709, 42800=>491, 42801=>521, 42802=>1250, 42803=>985, 42808=>971, 42809=>818, 42810=>971, 42811=>818, 42812=>959, 42813=>818, 42814=>698, 42815=>549,
+ 42822=>680, 42823=>392, 42824=>582, 42825=>427, 42826=>807, 42827=>704, 42830=>1358, 42831=>1019, 42880=>557, 42881=>278, 43003=>575, 43004=>603, 43005=>863, 43006=>295, 43007=>1199, 63173=>612,
+ 64256=>722, 64257=>646, 64258=>646, 64259=>1000, 64260=>1000, 64261=>686, 64262=>861, 64275=>1202, 64276=>1202, 64277=>1196, 64278=>1186, 64279=>1529, 64285=>296, 64286=>0, 64287=>494, 64288=>636,
+ 64289=>856, 64290=>774, 64291=>906, 64292=>771, 64293=>843, 64294=>855, 64295=>807, 64296=>875, 64297=>838, 64298=>799, 64299=>799, 64300=>799, 64301=>799, 64302=>663, 64303=>663, 64304=>663,
+ 64305=>655, 64306=>454, 64307=>607, 64308=>690, 64309=>336, 64310=>437, 64311=>1000, 64312=>683, 64313=>336, 64314=>642, 64315=>666, 64316=>635, 64318=>736, 64320=>456, 64321=>771, 64323=>651,
+ 64324=>666, 64326=>639, 64327=>688, 64328=>642, 64329=>799, 64330=>726, 64331=>272, 64332=>655, 64333=>666, 64334=>666, 64335=>629, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0,
+ 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65056=>0, 65057=>0, 65058=>0, 65059=>0, 65529=>0,
+ 65530=>0, 65531=>0, 65532=>0, 65533=>1025);
+$enc='';
+$diff='';
+$file='dejavusansi.z';
+$ctg='dejavusansi.ctg.z';
+$originalsize=509044;
+?>
diff --git a/lib/tcpdf/fonts/dejavusansi.z b/lib/tcpdf/fonts/dejavusansi.z
new file mode 100644
index 0000000000..641e9d6a60
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansi.z differ
diff --git a/lib/tcpdf/fonts/dejavusansmono.ctg.z b/lib/tcpdf/fonts/dejavusansmono.ctg.z
new file mode 100644
index 0000000000..4af0cc8439
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansmono.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusansmono.php b/lib/tcpdf/fonts/dejavusansmono.php
new file mode 100644
index 0000000000..459a41c557
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusansmono.php
@@ -0,0 +1,196 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>33,'FontBBox'=>'[-558 -375 718 1042]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>602);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>602, 32=>602, 33=>602, 34=>602, 35=>602, 36=>602, 37=>602, 38=>602, 39=>602, 40=>602, 41=>602, 42=>602, 43=>602, 44=>602, 45=>602, 46=>602,
+ 47=>602, 48=>602, 49=>602, 50=>602, 51=>602, 52=>602, 53=>602, 54=>602, 55=>602, 56=>602, 57=>602, 58=>602, 59=>602, 60=>602, 61=>602, 62=>602,
+ 63=>602, 64=>602, 65=>602, 66=>602, 67=>602, 68=>602, 69=>602, 70=>602, 71=>602, 72=>602, 73=>602, 74=>602, 75=>602, 76=>602, 77=>602, 78=>602,
+ 79=>602, 80=>602, 81=>602, 82=>602, 83=>602, 84=>602, 85=>602, 86=>602, 87=>602, 88=>602, 89=>602, 90=>602, 91=>602, 92=>602, 93=>602, 94=>602,
+ 95=>602, 96=>602, 97=>602, 98=>602, 99=>602, 100=>602, 101=>602, 102=>602, 103=>602, 104=>602, 105=>602, 106=>602, 107=>602, 108=>602, 109=>602, 110=>602,
+ 111=>602, 112=>602, 113=>602, 114=>602, 115=>602, 116=>602, 117=>602, 118=>602, 119=>602, 120=>602, 121=>602, 122=>602, 123=>602, 124=>602, 125=>602, 126=>602,
+ 8364=>602, 1027=>602, 8218=>602, 402=>602, 8222=>602, 8230=>602, 8224=>602, 8225=>602, 710=>602, 8240=>602, 352=>602, 8249=>602, 338=>602, 1036=>602, 381=>602, 1039=>602,
+ 8216=>602, 8217=>602, 8220=>602, 8221=>602, 8226=>602, 8211=>602, 8212=>602, 732=>602, 8482=>602, 353=>602, 8250=>602, 339=>602, 1116=>602, 382=>602, 376=>602, 160=>602,
+ 161=>602, 162=>602, 163=>602, 164=>602, 165=>602, 166=>602, 167=>602, 168=>602, 169=>602, 170=>602, 171=>602, 172=>602, 173=>602, 174=>602, 175=>602, 176=>602,
+ 177=>602, 178=>602, 179=>602, 180=>602, 181=>602, 182=>602, 183=>602, 184=>602, 185=>602, 186=>602, 187=>602, 188=>602, 189=>602, 190=>602, 191=>602, 192=>602,
+ 193=>602, 194=>602, 195=>602, 196=>602, 197=>602, 198=>602, 199=>602, 200=>602, 201=>602, 202=>602, 203=>602, 204=>602, 205=>602, 206=>602, 207=>602, 208=>602,
+ 209=>602, 210=>602, 211=>602, 212=>602, 213=>602, 214=>602, 215=>602, 216=>602, 217=>602, 218=>602, 219=>602, 220=>602, 221=>602, 222=>602, 223=>602, 224=>602,
+ 225=>602, 226=>602, 227=>602, 228=>602, 229=>602, 230=>602, 231=>602, 232=>602, 233=>602, 234=>602, 235=>602, 236=>602, 237=>602, 238=>602, 239=>602, 240=>602,
+ 241=>602, 242=>602, 243=>602, 244=>602, 245=>602, 246=>602, 247=>602, 248=>602, 249=>602, 250=>602, 251=>602, 252=>602, 253=>602, 254=>602, 255=>602, 256=>602,
+ 257=>602, 258=>602, 259=>602, 260=>602, 261=>602, 262=>602, 263=>602, 264=>602, 265=>602, 266=>602, 267=>602, 268=>602, 269=>602, 270=>602, 271=>602, 272=>602,
+ 273=>602, 274=>602, 275=>602, 276=>602, 277=>602, 278=>602, 279=>602, 280=>602, 281=>602, 282=>602, 283=>602, 284=>602, 285=>602, 286=>602, 287=>602, 288=>602,
+ 289=>602, 290=>602, 291=>602, 292=>602, 293=>602, 294=>602, 295=>602, 296=>602, 297=>602, 298=>602, 299=>602, 300=>602, 301=>602, 302=>602, 303=>602, 304=>602,
+ 305=>602, 306=>602, 307=>602, 308=>602, 309=>602, 310=>602, 311=>602, 312=>602, 313=>602, 314=>602, 315=>602, 316=>602, 317=>602, 318=>602, 319=>602, 320=>602,
+ 321=>602, 322=>602, 323=>602, 324=>602, 325=>602, 326=>602, 327=>602, 328=>602, 329=>602, 330=>602, 331=>602, 332=>602, 333=>602, 334=>602, 335=>602, 336=>602,
+ 337=>602, 340=>602, 341=>602, 342=>602, 343=>602, 344=>602, 345=>602, 346=>602, 347=>602, 348=>602, 349=>602, 350=>602, 351=>602, 354=>602, 355=>602, 356=>602,
+ 357=>602, 358=>602, 359=>602, 360=>602, 361=>602, 362=>602, 363=>602, 364=>602, 365=>602, 366=>602, 367=>602, 368=>602, 369=>602, 370=>602, 371=>602, 372=>602,
+ 373=>602, 374=>602, 375=>602, 377=>602, 378=>602, 379=>602, 380=>602, 383=>602, 384=>602, 385=>602, 386=>602, 387=>602, 388=>602, 389=>602, 390=>602, 391=>602,
+ 392=>602, 393=>602, 394=>602, 395=>602, 396=>602, 397=>602, 398=>602, 399=>602, 400=>602, 401=>602, 403=>602, 404=>602, 405=>602, 406=>602, 407=>602, 408=>602,
+ 409=>602, 410=>602, 411=>602, 412=>602, 413=>602, 414=>602, 415=>602, 416=>602, 417=>602, 418=>602, 419=>602, 420=>602, 421=>602, 422=>602, 423=>602, 424=>602,
+ 425=>602, 426=>602, 427=>602, 428=>602, 429=>602, 430=>602, 431=>602, 432=>602, 433=>602, 434=>602, 435=>602, 436=>602, 437=>602, 438=>602, 439=>602, 440=>602,
+ 441=>602, 443=>602, 444=>602, 445=>602, 446=>602, 448=>602, 449=>602, 450=>602, 451=>602, 461=>602, 462=>602, 463=>602, 464=>602, 465=>602, 466=>602, 467=>602,
+ 468=>602, 469=>602, 470=>602, 471=>602, 472=>602, 473=>602, 474=>602, 475=>602, 476=>602, 477=>602, 478=>602, 479=>602, 480=>602, 481=>602, 482=>602, 483=>602,
+ 486=>602, 487=>602, 488=>602, 489=>602, 490=>602, 491=>602, 492=>602, 493=>602, 494=>602, 495=>602, 496=>602, 500=>602, 501=>602, 502=>602, 504=>602, 505=>602,
+ 508=>602, 509=>602, 510=>602, 511=>602, 512=>602, 513=>602, 514=>602, 515=>602, 516=>602, 517=>602, 518=>602, 519=>602, 520=>602, 521=>602, 522=>602, 523=>602,
+ 524=>602, 525=>602, 526=>602, 527=>602, 528=>602, 529=>602, 530=>602, 531=>602, 532=>602, 533=>602, 534=>602, 535=>602, 536=>602, 537=>602, 538=>602, 539=>602,
+ 542=>602, 543=>602, 544=>602, 545=>602, 548=>602, 549=>602, 550=>602, 551=>602, 552=>602, 553=>602, 554=>602, 555=>602, 556=>602, 557=>602, 558=>602, 559=>602,
+ 560=>602, 561=>602, 562=>602, 563=>602, 564=>602, 565=>602, 566=>602, 567=>602, 568=>602, 569=>602, 570=>602, 571=>602, 572=>602, 573=>602, 574=>602, 575=>602,
+ 576=>602, 577=>602, 581=>602, 592=>602, 593=>602, 594=>602, 595=>602, 596=>602, 597=>602, 598=>602, 599=>602, 600=>602, 601=>602, 602=>602, 603=>602, 604=>602,
+ 605=>602, 606=>602, 607=>602, 608=>602, 609=>602, 610=>602, 611=>602, 612=>602, 613=>602, 614=>602, 615=>602, 616=>602, 617=>602, 618=>602, 619=>602, 620=>602,
+ 621=>602, 622=>602, 623=>602, 624=>602, 625=>602, 626=>602, 627=>602, 628=>602, 629=>602, 630=>602, 631=>602, 632=>602, 633=>602, 634=>602, 635=>602, 636=>602,
+ 637=>602, 638=>602, 639=>602, 640=>602, 641=>602, 642=>602, 643=>602, 644=>602, 645=>602, 646=>602, 647=>602, 648=>602, 649=>602, 650=>602, 651=>602, 652=>602,
+ 653=>602, 654=>602, 655=>602, 656=>602, 657=>602, 658=>602, 659=>602, 660=>602, 661=>602, 662=>602, 663=>602, 664=>602, 665=>602, 666=>602, 667=>602, 668=>602,
+ 669=>602, 670=>602, 671=>602, 672=>602, 673=>602, 674=>602, 675=>602, 676=>602, 677=>602, 678=>602, 679=>602, 680=>602, 681=>602, 682=>602, 683=>602, 684=>602,
+ 685=>602, 686=>602, 687=>602, 688=>602, 689=>602, 690=>602, 691=>602, 692=>602, 693=>602, 694=>602, 695=>602, 696=>602, 697=>602, 699=>602, 700=>602, 701=>602,
+ 702=>602, 703=>602, 704=>602, 705=>602, 711=>602, 712=>602, 713=>602, 716=>602, 717=>602, 720=>602, 721=>602, 722=>602, 723=>602, 726=>602, 728=>602, 729=>602,
+ 730=>602, 731=>602, 733=>602, 734=>602, 736=>602, 737=>602, 738=>602, 739=>602, 740=>602, 741=>602, 742=>602, 743=>602, 744=>602, 745=>602, 755=>602, 768=>602,
+ 769=>602, 770=>602, 771=>602, 772=>602, 773=>602, 774=>602, 775=>602, 776=>602, 777=>602, 778=>602, 779=>602, 780=>602, 781=>602, 782=>602, 783=>602, 784=>602,
+ 785=>602, 786=>602, 787=>602, 788=>602, 789=>602, 790=>602, 791=>602, 792=>602, 793=>602, 794=>602, 795=>602, 796=>602, 797=>602, 798=>602, 799=>602, 800=>602,
+ 801=>602, 802=>602, 803=>602, 804=>602, 805=>602, 806=>602, 807=>602, 808=>602, 809=>602, 810=>602, 811=>602, 812=>602, 813=>602, 814=>602, 815=>602, 816=>602,
+ 817=>602, 818=>602, 819=>602, 820=>602, 821=>602, 822=>602, 823=>602, 824=>602, 825=>602, 826=>602, 827=>602, 828=>602, 829=>602, 830=>602, 831=>602, 835=>602,
+ 856=>602, 865=>602, 884=>602, 885=>602, 890=>602, 894=>602, 900=>602, 901=>602, 902=>602, 903=>602, 904=>602, 905=>602, 906=>602, 908=>602, 910=>602, 911=>602,
+ 912=>602, 913=>602, 914=>602, 915=>602, 916=>602, 917=>602, 918=>602, 919=>602, 920=>602, 921=>602, 922=>602, 923=>602, 924=>602, 925=>602, 926=>602, 927=>602,
+ 928=>602, 929=>602, 931=>602, 932=>602, 933=>602, 934=>602, 935=>602, 936=>602, 937=>602, 938=>602, 939=>602, 940=>602, 941=>602, 942=>602, 943=>602, 944=>602,
+ 945=>602, 946=>602, 947=>602, 948=>602, 949=>602, 950=>602, 951=>602, 952=>602, 953=>602, 954=>602, 955=>602, 956=>602, 957=>602, 958=>602, 959=>602, 960=>602,
+ 961=>602, 962=>602, 963=>602, 964=>602, 965=>602, 966=>602, 967=>602, 968=>602, 969=>602, 970=>602, 971=>602, 972=>602, 973=>602, 974=>602, 976=>602, 977=>602,
+ 978=>602, 979=>602, 980=>602, 981=>602, 982=>602, 983=>602, 984=>602, 985=>602, 986=>602, 987=>602, 988=>602, 989=>602, 990=>602, 991=>602, 992=>602, 993=>602,
+ 1008=>602, 1009=>602, 1010=>602, 1011=>602, 1012=>602, 1013=>602, 1014=>602, 1015=>602, 1016=>602, 1017=>602, 1018=>602, 1019=>602, 1020=>602, 1021=>602, 1022=>602, 1023=>602,
+ 1024=>602, 1025=>602, 1026=>602, 1028=>602, 1029=>602, 1030=>602, 1031=>602, 1032=>602, 1033=>602, 1034=>602, 1035=>602, 1037=>602, 1038=>602, 1040=>602, 1041=>602, 1042=>602,
+ 1043=>602, 1044=>602, 1045=>602, 1046=>602, 1047=>602, 1048=>602, 1049=>602, 1050=>602, 1051=>602, 1052=>602, 1053=>602, 1054=>602, 1055=>602, 1056=>602, 1057=>602, 1058=>602,
+ 1059=>602, 1060=>602, 1061=>602, 1062=>602, 1063=>602, 1064=>602, 1065=>602, 1066=>602, 1067=>602, 1068=>602, 1069=>602, 1070=>602, 1071=>602, 1072=>602, 1073=>602, 1074=>602,
+ 1075=>602, 1076=>602, 1077=>602, 1078=>602, 1079=>602, 1080=>602, 1081=>602, 1082=>602, 1083=>602, 1084=>602, 1085=>602, 1086=>602, 1087=>602, 1088=>602, 1089=>602, 1090=>602,
+ 1091=>602, 1092=>602, 1093=>602, 1094=>602, 1095=>602, 1096=>602, 1097=>602, 1098=>602, 1099=>602, 1100=>602, 1101=>602, 1102=>602, 1103=>602, 1104=>602, 1105=>602, 1106=>602,
+ 1107=>602, 1108=>602, 1109=>602, 1110=>602, 1111=>602, 1112=>602, 1113=>602, 1114=>602, 1115=>602, 1117=>602, 1118=>602, 1119=>602, 1168=>602, 1169=>602, 1170=>602, 1171=>602,
+ 1172=>602, 1173=>602, 1174=>602, 1175=>602, 1176=>602, 1177=>602, 1178=>602, 1179=>602, 1186=>602, 1187=>602, 1194=>602, 1195=>602, 1196=>602, 1197=>602, 1198=>602, 1199=>602,
+ 1200=>602, 1201=>602, 1202=>602, 1203=>602, 1210=>602, 1211=>602, 1216=>602, 1217=>602, 1218=>602, 1219=>602, 1220=>602, 1223=>602, 1224=>602, 1227=>602, 1228=>602, 1231=>602,
+ 1232=>602, 1233=>602, 1234=>602, 1235=>602, 1236=>602, 1237=>602, 1238=>602, 1239=>602, 1240=>602, 1241=>602, 1242=>602, 1243=>602, 1244=>602, 1245=>602, 1246=>602, 1247=>602,
+ 1248=>602, 1249=>602, 1250=>602, 1251=>602, 1252=>602, 1253=>602, 1254=>602, 1255=>602, 1256=>602, 1257=>602, 1258=>602, 1259=>602, 1260=>602, 1261=>602, 1262=>602, 1263=>602,
+ 1264=>602, 1265=>602, 1266=>602, 1267=>602, 1268=>602, 1269=>602, 1270=>602, 1271=>602, 1272=>602, 1273=>602, 1548=>602, 1557=>602, 1563=>602, 1567=>602, 1569=>602, 1570=>602,
+ 1571=>602, 1572=>602, 1573=>602, 1574=>602, 1575=>602, 1576=>602, 1577=>602, 1578=>602, 1579=>602, 1580=>602, 1581=>602, 1582=>602, 1583=>602, 1584=>602, 1585=>602, 1586=>602,
+ 1587=>602, 1588=>602, 1589=>602, 1590=>602, 1591=>602, 1592=>602, 1593=>602, 1594=>602, 1600=>602, 1601=>602, 1602=>602, 1603=>602, 1604=>602, 1605=>602, 1606=>602, 1607=>602,
+ 1608=>602, 1609=>602, 1610=>602, 1611=>602, 1612=>602, 1613=>602, 1614=>602, 1615=>602, 1616=>602, 1617=>602, 1618=>602, 1619=>602, 1620=>602, 1621=>602, 1626=>602, 1632=>602,
+ 1633=>602, 1634=>602, 1635=>602, 1636=>602, 1637=>602, 1638=>602, 1639=>602, 1640=>602, 1641=>602, 1642=>602, 1643=>602, 1644=>602, 1645=>602, 1646=>602, 1647=>602, 1652=>602,
+ 1657=>602, 1658=>602, 1659=>602, 1660=>602, 1661=>602, 1662=>602, 1663=>602, 1664=>602, 1665=>602, 1666=>602, 1667=>602, 1668=>602, 1669=>602, 1670=>602, 1671=>602, 1681=>602,
+ 1682=>602, 1688=>602, 1697=>602, 1700=>602, 1705=>602, 1711=>602, 1717=>602, 1722=>602, 1726=>602, 1734=>602, 1740=>602, 1742=>602, 1749=>602, 1776=>602, 1777=>602, 1778=>602,
+ 1779=>602, 1780=>602, 1781=>602, 1782=>602, 1783=>602, 1784=>602, 1785=>602, 3713=>602, 3714=>602, 3716=>602, 3719=>602, 3720=>602, 3722=>602, 3725=>602, 3732=>602, 3733=>602,
+ 3734=>602, 3735=>602, 3737=>602, 3738=>602, 3739=>602, 3740=>602, 3741=>602, 3742=>602, 3743=>602, 3745=>602, 3746=>602, 3747=>602, 3749=>602, 3751=>602, 3754=>602, 3755=>602,
+ 3757=>602, 3758=>602, 3759=>602, 3760=>602, 3761=>602, 3762=>602, 3763=>602, 3764=>602, 3765=>602, 3766=>602, 3767=>602, 3768=>602, 3769=>602, 3771=>602, 3772=>602, 3784=>602,
+ 3785=>602, 3786=>602, 3787=>602, 3788=>602, 3789=>602, 4304=>602, 4305=>602, 4306=>602, 4307=>602, 4308=>602, 4309=>602, 4310=>602, 4311=>602, 4312=>602, 4313=>602, 4314=>602,
+ 4315=>602, 4316=>602, 4317=>602, 4318=>602, 4319=>602, 4320=>602, 4321=>602, 4322=>602, 4323=>602, 4324=>602, 4325=>602, 4326=>602, 4327=>602, 4328=>602, 4329=>602, 4330=>602,
+ 4331=>602, 4332=>602, 4333=>602, 4334=>602, 4335=>602, 4336=>602, 4337=>602, 4338=>602, 4339=>602, 4340=>602, 4341=>602, 4342=>602, 4343=>602, 4344=>602, 4345=>602, 4346=>602,
+ 4347=>602, 4348=>602, 7426=>602, 7432=>602, 7433=>602, 7444=>602, 7446=>602, 7447=>602, 7453=>602, 7454=>602, 7455=>602, 7468=>602, 7469=>602, 7470=>602, 7472=>602, 7473=>602,
+ 7474=>602, 7475=>602, 7476=>602, 7477=>602, 7478=>602, 7479=>602, 7480=>602, 7481=>602, 7482=>602, 7483=>602, 7484=>602, 7486=>602, 7487=>602, 7488=>602, 7489=>602, 7490=>602,
+ 7491=>602, 7492=>602, 7493=>602, 7494=>602, 7495=>602, 7496=>602, 7497=>602, 7498=>602, 7499=>602, 7500=>602, 7501=>602, 7502=>602, 7503=>602, 7504=>602, 7505=>602, 7506=>602,
+ 7507=>602, 7508=>602, 7509=>602, 7510=>602, 7511=>602, 7512=>602, 7513=>602, 7514=>602, 7515=>602, 7522=>602, 7523=>602, 7524=>602, 7525=>602, 7543=>602, 7544=>602, 7547=>602,
+ 7557=>602, 7579=>602, 7580=>602, 7581=>602, 7582=>602, 7583=>602, 7584=>602, 7585=>602, 7586=>602, 7587=>602, 7588=>602, 7589=>602, 7590=>602, 7591=>602, 7592=>602, 7593=>602,
+ 7594=>602, 7595=>602, 7596=>602, 7597=>602, 7598=>602, 7599=>602, 7600=>602, 7601=>602, 7602=>602, 7603=>602, 7604=>602, 7605=>602, 7606=>602, 7607=>602, 7609=>602, 7610=>602,
+ 7611=>602, 7612=>602, 7613=>602, 7614=>602, 7615=>602, 7680=>602, 7681=>602, 7682=>602, 7683=>602, 7684=>602, 7685=>602, 7686=>602, 7687=>602, 7688=>602, 7689=>602, 7690=>602,
+ 7691=>602, 7692=>602, 7693=>602, 7694=>602, 7695=>602, 7696=>602, 7697=>602, 7698=>602, 7699=>602, 7704=>602, 7705=>602, 7706=>602, 7707=>602, 7708=>602, 7709=>602, 7710=>602,
+ 7711=>602, 7712=>602, 7713=>602, 7714=>602, 7715=>602, 7716=>602, 7717=>602, 7720=>602, 7721=>602, 7722=>602, 7723=>602, 7724=>602, 7725=>602, 7728=>602, 7729=>602, 7730=>602,
+ 7731=>602, 7732=>602, 7733=>602, 7734=>602, 7735=>602, 7736=>602, 7737=>602, 7738=>602, 7739=>602, 7740=>602, 7741=>602, 7742=>602, 7743=>602, 7744=>602, 7745=>602, 7746=>602,
+ 7747=>602, 7748=>602, 7749=>602, 7750=>602, 7751=>602, 7752=>602, 7753=>602, 7754=>602, 7755=>602, 7766=>602, 7767=>602, 7768=>602, 7769=>602, 7770=>602, 7771=>602, 7772=>602,
+ 7773=>602, 7774=>602, 7775=>602, 7776=>602, 7777=>602, 7778=>602, 7779=>602, 7784=>602, 7785=>602, 7786=>602, 7787=>602, 7788=>602, 7789=>602, 7790=>602, 7791=>602, 7792=>602,
+ 7793=>602, 7794=>602, 7795=>602, 7796=>602, 7797=>602, 7798=>602, 7799=>602, 7806=>602, 7807=>602, 7808=>602, 7809=>602, 7810=>602, 7811=>602, 7812=>602, 7813=>602, 7814=>602,
+ 7815=>602, 7816=>602, 7817=>602, 7818=>602, 7819=>602, 7822=>602, 7823=>602, 7826=>602, 7827=>602, 7828=>602, 7829=>602, 7830=>602, 7835=>602, 7840=>602, 7841=>602, 7856=>602,
+ 7857=>602, 7864=>602, 7865=>602, 7868=>602, 7869=>602, 7882=>602, 7883=>602, 7884=>602, 7885=>602, 7908=>602, 7909=>602, 7922=>602, 7923=>602, 7924=>602, 7925=>602, 7928=>602,
+ 7929=>602, 7936=>602, 7937=>602, 7938=>602, 7939=>602, 7940=>602, 7941=>602, 7942=>602, 7943=>602, 7944=>602, 7945=>602, 7946=>602, 7947=>602, 7948=>602, 7949=>602, 7950=>602,
+ 7951=>602, 7952=>602, 7953=>602, 7954=>602, 7955=>602, 7956=>602, 7957=>602, 7960=>602, 7961=>602, 7962=>602, 7963=>602, 7964=>602, 7965=>602, 7968=>602, 7969=>602, 7970=>602,
+ 7971=>602, 7972=>602, 7973=>602, 7974=>602, 7975=>602, 7976=>602, 7977=>602, 7978=>602, 7979=>602, 7980=>602, 7981=>602, 7982=>602, 7983=>602, 7984=>602, 7985=>602, 7986=>602,
+ 7987=>602, 7988=>602, 7989=>602, 7990=>602, 7991=>602, 7992=>602, 7993=>602, 7994=>602, 7995=>602, 7996=>602, 7997=>602, 7998=>602, 7999=>602, 8000=>602, 8001=>602, 8002=>602,
+ 8003=>602, 8004=>602, 8005=>602, 8008=>602, 8009=>602, 8010=>602, 8011=>602, 8012=>602, 8013=>602, 8016=>602, 8017=>602, 8018=>602, 8019=>602, 8020=>602, 8021=>602, 8022=>602,
+ 8023=>602, 8025=>602, 8027=>602, 8029=>602, 8031=>602, 8032=>602, 8033=>602, 8034=>602, 8035=>602, 8036=>602, 8037=>602, 8038=>602, 8039=>602, 8040=>602, 8041=>602, 8042=>602,
+ 8043=>602, 8044=>602, 8045=>602, 8046=>602, 8047=>602, 8048=>602, 8049=>602, 8050=>602, 8051=>602, 8052=>602, 8053=>602, 8054=>602, 8055=>602, 8056=>602, 8057=>602, 8058=>602,
+ 8059=>602, 8060=>602, 8061=>602, 8064=>602, 8065=>602, 8066=>602, 8067=>602, 8068=>602, 8069=>602, 8070=>602, 8071=>602, 8072=>602, 8073=>602, 8074=>602, 8075=>602, 8076=>602,
+ 8077=>602, 8078=>602, 8079=>602, 8080=>602, 8081=>602, 8082=>602, 8083=>602, 8084=>602, 8085=>602, 8086=>602, 8087=>602, 8088=>602, 8089=>602, 8090=>602, 8091=>602, 8092=>602,
+ 8093=>602, 8094=>602, 8095=>602, 8096=>602, 8097=>602, 8098=>602, 8099=>602, 8100=>602, 8101=>602, 8102=>602, 8103=>602, 8104=>602, 8105=>602, 8106=>602, 8107=>602, 8108=>602,
+ 8109=>602, 8110=>602, 8111=>602, 8112=>602, 8113=>602, 8114=>602, 8115=>602, 8116=>602, 8118=>602, 8119=>602, 8120=>602, 8121=>602, 8122=>602, 8123=>602, 8124=>602, 8125=>602,
+ 8126=>602, 8127=>602, 8128=>602, 8129=>602, 8130=>602, 8131=>602, 8132=>602, 8134=>602, 8135=>602, 8136=>602, 8137=>602, 8138=>602, 8139=>602, 8140=>602, 8141=>602, 8142=>602,
+ 8143=>602, 8144=>602, 8145=>602, 8146=>602, 8147=>602, 8150=>602, 8151=>602, 8152=>602, 8153=>602, 8154=>602, 8155=>602, 8157=>602, 8158=>602, 8159=>602, 8160=>602, 8161=>602,
+ 8162=>602, 8163=>602, 8164=>602, 8165=>602, 8166=>602, 8167=>602, 8168=>602, 8169=>602, 8170=>602, 8171=>602, 8172=>602, 8173=>602, 8174=>602, 8175=>602, 8178=>602, 8179=>602,
+ 8180=>602, 8182=>602, 8183=>602, 8184=>602, 8185=>602, 8186=>602, 8187=>602, 8188=>602, 8189=>602, 8190=>602, 8192=>602, 8193=>602, 8194=>602, 8195=>602, 8196=>602, 8197=>602,
+ 8198=>602, 8199=>602, 8200=>602, 8201=>602, 8202=>602, 8208=>602, 8209=>602, 8210=>602, 8213=>602, 8215=>602, 8219=>602, 8223=>602, 8227=>602, 8239=>602, 8241=>602, 8252=>602,
+ 8253=>602, 8254=>602, 8261=>602, 8262=>602, 8263=>602, 8264=>602, 8265=>602, 8287=>602, 8304=>602, 8305=>602, 8308=>602, 8309=>602, 8310=>602, 8311=>602, 8312=>602, 8313=>602,
+ 8314=>602, 8315=>602, 8316=>602, 8317=>602, 8318=>602, 8319=>602, 8320=>602, 8321=>602, 8322=>602, 8323=>602, 8324=>602, 8325=>602, 8326=>602, 8327=>602, 8328=>602, 8329=>602,
+ 8330=>602, 8331=>602, 8332=>602, 8333=>602, 8334=>602, 8336=>602, 8337=>602, 8338=>602, 8339=>602, 8340=>602, 8358=>602, 8369=>602, 8372=>602, 8373=>602, 8450=>602, 8462=>602,
+ 8470=>602, 8486=>602, 8490=>602, 8491=>602, 8531=>602, 8532=>602, 8533=>602, 8534=>602, 8535=>602, 8536=>602, 8537=>602, 8538=>602, 8539=>602, 8540=>602, 8541=>602, 8542=>602,
+ 8543=>602, 8592=>602, 8593=>602, 8594=>602, 8595=>602, 8596=>602, 8597=>602, 8598=>602, 8599=>602, 8600=>602, 8601=>602, 8602=>602, 8603=>602, 8604=>602, 8605=>602, 8606=>602,
+ 8607=>602, 8608=>602, 8609=>602, 8610=>602, 8611=>602, 8612=>602, 8613=>602, 8614=>602, 8615=>602, 8616=>602, 8617=>602, 8618=>602, 8619=>602, 8620=>602, 8621=>602, 8622=>602,
+ 8623=>602, 8624=>602, 8625=>602, 8626=>602, 8627=>602, 8628=>602, 8629=>602, 8630=>602, 8631=>602, 8632=>602, 8633=>602, 8634=>602, 8635=>602, 8636=>602, 8637=>602, 8638=>602,
+ 8639=>602, 8640=>602, 8641=>602, 8642=>602, 8643=>602, 8644=>602, 8645=>602, 8646=>602, 8647=>602, 8648=>602, 8649=>602, 8650=>602, 8651=>602, 8652=>602, 8653=>602, 8654=>602,
+ 8655=>602, 8656=>602, 8657=>602, 8658=>602, 8659=>602, 8660=>602, 8661=>602, 8662=>602, 8663=>602, 8664=>602, 8665=>602, 8666=>602, 8667=>602, 8668=>602, 8669=>602, 8670=>602,
+ 8671=>602, 8672=>602, 8673=>602, 8674=>602, 8675=>602, 8676=>602, 8677=>602, 8678=>602, 8679=>602, 8680=>602, 8681=>602, 8682=>602, 8683=>602, 8684=>602, 8685=>602, 8686=>602,
+ 8687=>602, 8688=>602, 8689=>602, 8690=>602, 8691=>602, 8692=>602, 8693=>602, 8694=>602, 8695=>602, 8696=>602, 8697=>602, 8698=>602, 8699=>602, 8700=>602, 8701=>602, 8702=>602,
+ 8703=>602, 8706=>602, 8709=>602, 8710=>602, 8711=>602, 8712=>602, 8713=>602, 8714=>602, 8715=>602, 8716=>602, 8717=>602, 8719=>602, 8721=>602, 8722=>602, 8723=>602, 8725=>602,
+ 8727=>602, 8728=>602, 8729=>602, 8730=>602, 8733=>602, 8734=>602, 8735=>602, 8736=>602, 8743=>602, 8744=>602, 8745=>602, 8746=>602, 8747=>602, 8748=>602, 8749=>602, 8760=>602,
+ 8761=>602, 8762=>602, 8763=>602, 8764=>602, 8765=>602, 8769=>602, 8770=>602, 8771=>602, 8772=>602, 8773=>602, 8774=>602, 8775=>602, 8776=>602, 8777=>602, 8778=>602, 8779=>602,
+ 8780=>602, 8781=>602, 8782=>602, 8783=>602, 8784=>602, 8785=>602, 8786=>602, 8787=>602, 8788=>602, 8789=>602, 8790=>602, 8791=>602, 8792=>602, 8793=>602, 8794=>602, 8795=>602,
+ 8796=>602, 8797=>602, 8798=>602, 8799=>602, 8800=>602, 8801=>602, 8802=>602, 8803=>602, 8804=>602, 8805=>602, 8806=>602, 8807=>602, 8808=>602, 8809=>602, 8813=>602, 8814=>602,
+ 8815=>602, 8816=>602, 8817=>602, 8818=>602, 8819=>602, 8820=>602, 8821=>602, 8822=>602, 8823=>602, 8824=>602, 8825=>602, 8826=>602, 8827=>602, 8828=>602, 8829=>602, 8830=>602,
+ 8831=>602, 8832=>602, 8833=>602, 8834=>602, 8835=>602, 8836=>602, 8837=>602, 8838=>602, 8839=>602, 8840=>602, 8841=>602, 8842=>602, 8843=>602, 8847=>602, 8848=>602, 8849=>602,
+ 8850=>602, 8853=>602, 8854=>602, 8855=>602, 8856=>602, 8857=>602, 8858=>602, 8859=>602, 8860=>602, 8861=>602, 8862=>602, 8863=>602, 8864=>602, 8865=>602, 8901=>602, 8902=>602,
+ 8909=>602, 8922=>602, 8923=>602, 8924=>602, 8925=>602, 8926=>602, 8927=>602, 8928=>602, 8929=>602, 8930=>602, 8931=>602, 8932=>602, 8933=>602, 8934=>602, 8935=>602, 8936=>602,
+ 8937=>602, 8943=>602, 8960=>602, 8961=>602, 8962=>602, 8963=>602, 8964=>602, 8965=>602, 8966=>602, 8968=>602, 8969=>602, 8970=>602, 8971=>602, 8972=>602, 8973=>602, 8974=>602,
+ 8975=>602, 8976=>602, 8977=>602, 8978=>602, 8979=>602, 8980=>602, 8981=>602, 8984=>602, 8985=>602, 8988=>602, 8989=>602, 8990=>602, 8991=>602, 8992=>602, 8993=>602, 8997=>602,
+ 8998=>602, 8999=>602, 9000=>602, 9003=>602, 9013=>602, 9015=>602, 9016=>602, 9017=>602, 9018=>602, 9019=>602, 9020=>602, 9021=>602, 9022=>602, 9025=>602, 9026=>602, 9027=>602,
+ 9028=>602, 9031=>602, 9032=>602, 9033=>602, 9035=>602, 9036=>602, 9037=>602, 9040=>602, 9042=>602, 9043=>602, 9044=>602, 9047=>602, 9048=>602, 9049=>602, 9050=>602, 9051=>602,
+ 9052=>602, 9054=>602, 9055=>602, 9056=>602, 9059=>602, 9060=>602, 9061=>602, 9064=>602, 9065=>602, 9067=>602, 9068=>602, 9069=>602, 9070=>602, 9071=>602, 9072=>602, 9075=>602,
+ 9076=>602, 9077=>602, 9078=>602, 9079=>602, 9080=>602, 9081=>602, 9082=>602, 9085=>602, 9088=>602, 9089=>602, 9090=>602, 9091=>602, 9096=>602, 9097=>602, 9098=>602, 9099=>602,
+ 9109=>602, 9115=>602, 9116=>602, 9117=>602, 9118=>602, 9119=>602, 9120=>602, 9121=>602, 9122=>602, 9123=>602, 9124=>602, 9125=>602, 9126=>602, 9127=>602, 9128=>602, 9129=>602,
+ 9130=>602, 9131=>602, 9132=>602, 9133=>602, 9134=>602, 9166=>602, 9167=>602, 9251=>602, 9472=>602, 9473=>602, 9474=>602, 9475=>602, 9476=>602, 9477=>602, 9478=>602, 9479=>602,
+ 9480=>602, 9481=>602, 9482=>602, 9483=>602, 9484=>602, 9485=>602, 9486=>602, 9487=>602, 9488=>602, 9489=>602, 9490=>602, 9491=>602, 9492=>602, 9493=>602, 9494=>602, 9495=>602,
+ 9496=>602, 9497=>602, 9498=>602, 9499=>602, 9500=>602, 9501=>602, 9502=>602, 9503=>602, 9504=>602, 9505=>602, 9506=>602, 9507=>602, 9508=>602, 9509=>602, 9510=>602, 9511=>602,
+ 9512=>602, 9513=>602, 9514=>602, 9515=>602, 9516=>602, 9517=>602, 9518=>602, 9519=>602, 9520=>602, 9521=>602, 9522=>602, 9523=>602, 9524=>602, 9525=>602, 9526=>602, 9527=>602,
+ 9528=>602, 9529=>602, 9530=>602, 9531=>602, 9532=>602, 9533=>602, 9534=>602, 9535=>602, 9536=>602, 9537=>602, 9538=>602, 9539=>602, 9540=>602, 9541=>602, 9542=>602, 9543=>602,
+ 9544=>602, 9545=>602, 9546=>602, 9547=>602, 9548=>602, 9549=>602, 9550=>602, 9551=>602, 9552=>602, 9553=>602, 9554=>602, 9555=>602, 9556=>602, 9557=>602, 9558=>602, 9559=>602,
+ 9560=>602, 9561=>602, 9562=>602, 9563=>602, 9564=>602, 9565=>602, 9566=>602, 9567=>602, 9568=>602, 9569=>602, 9570=>602, 9571=>602, 9572=>602, 9573=>602, 9574=>602, 9575=>602,
+ 9576=>602, 9577=>602, 9578=>602, 9579=>602, 9580=>602, 9581=>602, 9582=>602, 9583=>602, 9584=>602, 9585=>602, 9586=>602, 9587=>602, 9588=>602, 9589=>602, 9590=>602, 9591=>602,
+ 9592=>602, 9593=>602, 9594=>602, 9595=>602, 9596=>602, 9597=>602, 9598=>602, 9599=>602, 9600=>602, 9601=>602, 9602=>602, 9603=>602, 9604=>602, 9605=>602, 9606=>602, 9607=>602,
+ 9608=>602, 9609=>602, 9610=>602, 9611=>602, 9612=>602, 9613=>602, 9614=>602, 9615=>602, 9616=>602, 9617=>602, 9618=>602, 9619=>602, 9620=>602, 9621=>602, 9622=>602, 9623=>602,
+ 9624=>602, 9625=>602, 9626=>602, 9627=>602, 9628=>602, 9629=>602, 9630=>602, 9631=>602, 9632=>602, 9633=>602, 9634=>602, 9635=>602, 9636=>602, 9637=>602, 9638=>602, 9639=>602,
+ 9640=>602, 9641=>602, 9642=>602, 9643=>602, 9644=>602, 9645=>602, 9646=>602, 9647=>602, 9648=>602, 9649=>602, 9650=>602, 9651=>602, 9652=>602, 9653=>602, 9654=>602, 9655=>602,
+ 9656=>602, 9657=>602, 9658=>602, 9659=>602, 9660=>602, 9661=>602, 9662=>602, 9663=>602, 9664=>602, 9665=>602, 9666=>602, 9667=>602, 9668=>602, 9669=>602, 9670=>602, 9671=>602,
+ 9672=>602, 9673=>602, 9674=>602, 9675=>602, 9676=>602, 9677=>602, 9678=>602, 9679=>602, 9680=>602, 9681=>602, 9682=>602, 9683=>602, 9684=>602, 9685=>602, 9686=>602, 9687=>602,
+ 9688=>602, 9689=>602, 9690=>602, 9691=>602, 9692=>602, 9693=>602, 9694=>602, 9695=>602, 9696=>602, 9697=>602, 9698=>602, 9699=>602, 9700=>602, 9701=>602, 9702=>602, 9703=>602,
+ 9704=>602, 9705=>602, 9706=>602, 9707=>602, 9708=>602, 9709=>602, 9710=>602, 9711=>602, 9712=>602, 9713=>602, 9714=>602, 9715=>602, 9716=>602, 9717=>602, 9718=>602, 9719=>602,
+ 9720=>602, 9721=>602, 9722=>602, 9723=>602, 9724=>602, 9725=>602, 9726=>602, 9727=>602, 9728=>602, 9729=>602, 9730=>602, 9731=>602, 9732=>602, 9733=>602, 9734=>602, 9735=>602,
+ 9736=>602, 9737=>602, 9738=>602, 9739=>602, 9740=>602, 9741=>602, 9742=>602, 9743=>602, 9744=>602, 9745=>602, 9746=>602, 9747=>602, 9748=>602, 9749=>602, 9750=>602, 9751=>602,
+ 9752=>602, 9753=>602, 9754=>602, 9755=>602, 9756=>602, 9757=>602, 9758=>602, 9759=>602, 9760=>602, 9761=>602, 9762=>602, 9763=>602, 9764=>602, 9765=>602, 9766=>602, 9767=>602,
+ 9768=>602, 9769=>602, 9770=>602, 9771=>602, 9772=>602, 9773=>602, 9774=>602, 9775=>602, 9784=>602, 9785=>602, 9786=>602, 9787=>602, 9788=>602, 9789=>602, 9790=>602, 9791=>602,
+ 9792=>602, 9793=>602, 9794=>602, 9795=>602, 9796=>602, 9797=>602, 9798=>602, 9799=>602, 9800=>602, 9801=>602, 9802=>602, 9803=>602, 9804=>602, 9805=>602, 9806=>602, 9807=>602,
+ 9808=>602, 9809=>602, 9810=>602, 9811=>602, 9812=>602, 9813=>602, 9814=>602, 9815=>602, 9816=>602, 9817=>602, 9818=>602, 9819=>602, 9820=>602, 9821=>602, 9822=>602, 9823=>602,
+ 9824=>602, 9825=>602, 9826=>602, 9827=>602, 9828=>602, 9829=>602, 9830=>602, 9831=>602, 9832=>602, 9833=>602, 9834=>602, 9835=>602, 9836=>602, 9837=>602, 9838=>602, 9839=>602,
+ 9840=>602, 9841=>602, 9842=>602, 9843=>602, 9844=>602, 9845=>602, 9846=>602, 9847=>602, 9848=>602, 9849=>602, 9850=>602, 9851=>602, 9852=>602, 9853=>602, 9854=>602, 9855=>602,
+ 9856=>602, 9857=>602, 9858=>602, 9859=>602, 9860=>602, 9861=>602, 9862=>602, 9863=>602, 9864=>602, 9865=>602, 9866=>602, 9867=>602, 9872=>602, 9873=>602, 9874=>602, 9875=>602,
+ 9876=>602, 9877=>602, 9878=>602, 9879=>602, 9880=>602, 9881=>602, 9882=>602, 9883=>602, 9884=>602, 9888=>602, 9889=>602, 9904=>602, 9905=>602, 9985=>602, 9986=>602, 9987=>602,
+ 9988=>602, 9990=>602, 9991=>602, 9992=>602, 9993=>602, 9996=>602, 9997=>602, 9998=>602, 9999=>602, 10000=>602, 10001=>602, 10002=>602, 10003=>602, 10004=>602, 10005=>602, 10006=>602,
+ 10007=>602, 10008=>602, 10009=>602, 10010=>602, 10011=>602, 10012=>602, 10013=>602, 10014=>602, 10015=>602, 10016=>602, 10017=>602, 10018=>602, 10019=>602, 10020=>602, 10021=>602, 10022=>602,
+ 10023=>602, 10025=>602, 10026=>602, 10027=>602, 10028=>602, 10029=>602, 10030=>602, 10031=>602, 10032=>602, 10033=>602, 10034=>602, 10035=>602, 10036=>602, 10037=>602, 10038=>602, 10039=>602,
+ 10040=>602, 10041=>602, 10042=>602, 10043=>602, 10044=>602, 10045=>602, 10046=>602, 10047=>602, 10048=>602, 10049=>602, 10050=>602, 10051=>602, 10052=>602, 10053=>602, 10054=>602, 10055=>602,
+ 10056=>602, 10057=>602, 10058=>602, 10059=>602, 10061=>602, 10063=>602, 10064=>602, 10065=>602, 10066=>602, 10070=>602, 10072=>602, 10073=>602, 10074=>602, 10075=>602, 10076=>602, 10077=>602,
+ 10078=>602, 10081=>602, 10082=>602, 10083=>602, 10084=>602, 10085=>602, 10086=>602, 10087=>602, 10088=>602, 10089=>602, 10090=>602, 10091=>602, 10092=>602, 10093=>602, 10094=>602, 10095=>602,
+ 10096=>602, 10097=>602, 10098=>602, 10099=>602, 10100=>602, 10101=>602, 10132=>602, 10136=>602, 10137=>602, 10138=>602, 10139=>602, 10140=>602, 10141=>602, 10142=>602, 10143=>602, 10144=>602,
+ 10145=>602, 10146=>602, 10147=>602, 10148=>602, 10149=>602, 10150=>602, 10151=>602, 10152=>602, 10153=>602, 10154=>602, 10155=>602, 10156=>602, 10157=>602, 10158=>602, 10159=>602, 10161=>602,
+ 10162=>602, 10163=>602, 10164=>602, 10165=>602, 10166=>602, 10167=>602, 10168=>602, 10169=>602, 10170=>602, 10171=>602, 10172=>602, 10173=>602, 10174=>602, 10208=>602, 10216=>602, 10217=>602,
+ 10731=>602, 10746=>602, 10747=>602, 10799=>602, 11026=>602, 11027=>602, 11028=>602, 11029=>602, 11030=>602, 11031=>602, 11032=>602, 11033=>602, 11034=>602, 11381=>602, 11382=>602, 11383=>602,
+ 11800=>602, 11822=>602, 63173=>602, 64257=>602, 64258=>602, 64338=>602, 64339=>602, 64340=>602, 64341=>602, 64342=>602, 64343=>602, 64344=>602, 64345=>602, 64346=>602, 64347=>602, 64348=>602,
+ 64349=>602, 64350=>602, 64351=>602, 64352=>602, 64353=>602, 64354=>602, 64355=>602, 64356=>602, 64357=>602, 64358=>602, 64359=>602, 64360=>602, 64361=>602, 64362=>602, 64363=>602, 64364=>602,
+ 64365=>602, 64366=>602, 64367=>602, 64368=>602, 64369=>602, 64370=>602, 64371=>602, 64372=>602, 64373=>602, 64374=>602, 64375=>602, 64376=>602, 64377=>602, 64378=>602, 64379=>602, 64380=>602,
+ 64381=>602, 64382=>602, 64383=>602, 64384=>602, 64385=>602, 64394=>602, 64395=>602, 64396=>602, 64397=>602, 64398=>602, 64399=>602, 64400=>602, 64401=>602, 64402=>602, 64403=>602, 64404=>602,
+ 64405=>602, 64414=>602, 64415=>602, 64426=>602, 64427=>602, 64428=>602, 64429=>602, 64488=>602, 64489=>602, 64508=>602, 64509=>602, 64510=>602, 64511=>602, 65136=>602, 65137=>602, 65138=>602,
+ 65139=>602, 65140=>602, 65142=>602, 65143=>602, 65144=>602, 65145=>602, 65146=>602, 65147=>602, 65148=>602, 65149=>602, 65150=>602, 65151=>602, 65152=>602, 65153=>602, 65154=>602, 65155=>602,
+ 65156=>602, 65157=>602, 65158=>602, 65159=>602, 65160=>602, 65161=>602, 65162=>602, 65163=>602, 65164=>602, 65165=>602, 65166=>602, 65167=>602, 65168=>602, 65169=>602, 65170=>602, 65171=>602,
+ 65172=>602, 65173=>602, 65174=>602, 65175=>602, 65176=>602, 65177=>602, 65178=>602, 65179=>602, 65180=>602, 65181=>602, 65182=>602, 65183=>602, 65184=>602, 65185=>602, 65186=>602, 65187=>602,
+ 65188=>602, 65189=>602, 65190=>602, 65191=>602, 65192=>602, 65193=>602, 65194=>602, 65195=>602, 65196=>602, 65197=>602, 65198=>602, 65199=>602, 65200=>602, 65201=>602, 65202=>602, 65203=>602,
+ 65204=>602, 65205=>602, 65206=>602, 65207=>602, 65208=>602, 65209=>602, 65210=>602, 65211=>602, 65212=>602, 65213=>602, 65214=>602, 65215=>602, 65216=>602, 65217=>602, 65218=>602, 65219=>602,
+ 65220=>602, 65221=>602, 65222=>602, 65223=>602, 65224=>602, 65225=>602, 65226=>602, 65227=>602, 65228=>602, 65229=>602, 65230=>602, 65231=>602, 65232=>602, 65233=>602, 65234=>602, 65235=>602,
+ 65236=>602, 65237=>602, 65238=>602, 65239=>602, 65240=>602, 65241=>602, 65242=>602, 65243=>602, 65244=>602, 65245=>602, 65246=>602, 65247=>602, 65248=>602, 65249=>602, 65250=>602, 65251=>602,
+ 65252=>602, 65253=>602, 65254=>602, 65255=>602, 65256=>602, 65257=>602, 65258=>602, 65259=>602, 65260=>602, 65261=>602, 65262=>602, 65263=>602, 65264=>602, 65265=>602, 65266=>602, 65267=>602,
+ 65268=>602, 65269=>602, 65270=>602, 65271=>602, 65272=>602, 65273=>602, 65274=>602, 65275=>602, 65276=>602, 65279=>602, 65529=>602, 65530=>602, 65531=>602, 65532=>602, 65533=>602);
+$enc='';
+$diff='';
+$file='dejavusansmono.z';
+$ctg='dejavusansmono.ctg.z';
+$originalsize=309588;
+?>
diff --git a/lib/tcpdf/fonts/dejavusansmono.z b/lib/tcpdf/fonts/dejavusansmono.z
new file mode 100644
index 0000000000..244ed61d2f
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansmono.z differ
diff --git a/lib/tcpdf/fonts/dejavusansmonob.ctg.z b/lib/tcpdf/fonts/dejavusansmonob.ctg.z
new file mode 100644
index 0000000000..dc03fe005b
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansmonob.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusansmonob.php b/lib/tcpdf/fonts/dejavusansmonob.php
new file mode 100644
index 0000000000..269d22fe2f
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusansmonob.php
@@ -0,0 +1,188 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>33,'FontBBox'=>'[-446 -394 731 1052]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>602);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>602, 32=>602, 33=>602, 34=>602, 35=>602, 36=>602, 37=>602, 38=>602, 39=>602, 40=>602, 41=>602, 42=>602, 43=>602, 44=>602, 45=>602, 46=>602,
+ 47=>602, 48=>602, 49=>602, 50=>602, 51=>602, 52=>602, 53=>602, 54=>602, 55=>602, 56=>602, 57=>602, 58=>602, 59=>602, 60=>602, 61=>602, 62=>602,
+ 63=>602, 64=>602, 65=>602, 66=>602, 67=>602, 68=>602, 69=>602, 70=>602, 71=>602, 72=>602, 73=>602, 74=>602, 75=>602, 76=>602, 77=>602, 78=>602,
+ 79=>602, 80=>602, 81=>602, 82=>602, 83=>602, 84=>602, 85=>602, 86=>602, 87=>602, 88=>602, 89=>602, 90=>602, 91=>602, 92=>602, 93=>602, 94=>602,
+ 95=>602, 96=>602, 97=>602, 98=>602, 99=>602, 100=>602, 101=>602, 102=>602, 103=>602, 104=>602, 105=>602, 106=>602, 107=>602, 108=>602, 109=>602, 110=>602,
+ 111=>602, 112=>602, 113=>602, 114=>602, 115=>602, 116=>602, 117=>602, 118=>602, 119=>602, 120=>602, 121=>602, 122=>602, 123=>602, 124=>602, 125=>602, 126=>602,
+ 8364=>602, 1027=>602, 8218=>602, 402=>602, 8222=>602, 8230=>602, 8224=>602, 8225=>602, 710=>602, 8240=>602, 352=>602, 8249=>602, 338=>602, 1036=>602, 381=>602, 1039=>602,
+ 8216=>602, 8217=>602, 8220=>602, 8221=>602, 8226=>602, 8211=>602, 8212=>602, 732=>602, 8482=>602, 353=>602, 8250=>602, 339=>602, 1116=>602, 382=>602, 376=>602, 160=>602,
+ 161=>602, 162=>602, 163=>602, 164=>602, 165=>602, 166=>602, 167=>602, 168=>602, 169=>602, 170=>602, 171=>602, 172=>602, 173=>602, 174=>602, 175=>602, 176=>602,
+ 177=>602, 178=>602, 179=>602, 180=>602, 181=>602, 182=>602, 183=>602, 184=>602, 185=>602, 186=>602, 187=>602, 188=>602, 189=>602, 190=>602, 191=>602, 192=>602,
+ 193=>602, 194=>602, 195=>602, 196=>602, 197=>602, 198=>602, 199=>602, 200=>602, 201=>602, 202=>602, 203=>602, 204=>602, 205=>602, 206=>602, 207=>602, 208=>602,
+ 209=>602, 210=>602, 211=>602, 212=>602, 213=>602, 214=>602, 215=>602, 216=>602, 217=>602, 218=>602, 219=>602, 220=>602, 221=>602, 222=>602, 223=>602, 224=>602,
+ 225=>602, 226=>602, 227=>602, 228=>602, 229=>602, 230=>602, 231=>602, 232=>602, 233=>602, 234=>602, 235=>602, 236=>602, 237=>602, 238=>602, 239=>602, 240=>602,
+ 241=>602, 242=>602, 243=>602, 244=>602, 245=>602, 246=>602, 247=>602, 248=>602, 249=>602, 250=>602, 251=>602, 252=>602, 253=>602, 254=>602, 255=>602, 256=>602,
+ 257=>602, 258=>602, 259=>602, 260=>602, 261=>602, 262=>602, 263=>602, 264=>602, 265=>602, 266=>602, 267=>602, 268=>602, 269=>602, 270=>602, 271=>602, 272=>602,
+ 273=>602, 274=>602, 275=>602, 276=>602, 277=>602, 278=>602, 279=>602, 280=>602, 281=>602, 282=>602, 283=>602, 284=>602, 285=>602, 286=>602, 287=>602, 288=>602,
+ 289=>602, 290=>602, 291=>602, 292=>602, 293=>602, 294=>602, 295=>602, 296=>602, 297=>602, 298=>602, 299=>602, 300=>602, 301=>602, 302=>602, 303=>602, 304=>602,
+ 305=>602, 306=>602, 307=>602, 308=>602, 309=>602, 310=>602, 311=>602, 312=>602, 313=>602, 314=>602, 315=>602, 316=>602, 317=>602, 318=>602, 319=>602, 320=>602,
+ 321=>602, 322=>602, 323=>602, 324=>602, 325=>602, 326=>602, 327=>602, 328=>602, 329=>602, 330=>602, 331=>602, 332=>602, 333=>602, 334=>602, 335=>602, 336=>602,
+ 337=>602, 340=>602, 341=>602, 342=>602, 343=>602, 344=>602, 345=>602, 346=>602, 347=>602, 348=>602, 349=>602, 350=>602, 351=>602, 354=>602, 355=>602, 356=>602,
+ 357=>602, 358=>602, 359=>602, 360=>602, 361=>602, 362=>602, 363=>602, 364=>602, 365=>602, 366=>602, 367=>602, 368=>602, 369=>602, 370=>602, 371=>602, 372=>602,
+ 373=>602, 374=>602, 375=>602, 377=>602, 378=>602, 379=>602, 380=>602, 383=>602, 384=>602, 385=>602, 386=>602, 387=>602, 388=>602, 389=>602, 390=>602, 391=>602,
+ 392=>602, 393=>602, 394=>602, 395=>602, 396=>602, 397=>602, 398=>602, 399=>602, 400=>602, 401=>602, 403=>602, 404=>602, 405=>602, 406=>602, 407=>602, 408=>602,
+ 409=>602, 410=>602, 411=>602, 412=>602, 413=>602, 414=>602, 415=>602, 416=>602, 417=>602, 418=>602, 419=>602, 420=>602, 421=>602, 422=>602, 423=>602, 424=>602,
+ 425=>602, 426=>602, 427=>602, 428=>602, 429=>602, 430=>602, 431=>602, 432=>602, 433=>602, 434=>602, 435=>602, 436=>602, 437=>602, 438=>602, 439=>602, 440=>602,
+ 441=>602, 443=>602, 444=>602, 445=>602, 446=>602, 448=>602, 449=>602, 450=>602, 451=>602, 461=>602, 462=>602, 463=>602, 464=>602, 465=>602, 466=>602, 467=>602,
+ 468=>602, 469=>602, 470=>602, 471=>602, 472=>602, 473=>602, 474=>602, 475=>602, 476=>602, 477=>602, 478=>602, 479=>602, 480=>602, 481=>602, 482=>602, 483=>602,
+ 486=>602, 487=>602, 488=>602, 489=>602, 490=>602, 491=>602, 492=>602, 493=>602, 494=>602, 495=>602, 496=>602, 500=>602, 501=>602, 502=>602, 504=>602, 505=>602,
+ 508=>602, 509=>602, 510=>602, 511=>602, 512=>602, 513=>602, 514=>602, 515=>602, 516=>602, 517=>602, 518=>602, 519=>602, 520=>602, 521=>602, 522=>602, 523=>602,
+ 524=>602, 525=>602, 526=>602, 527=>602, 528=>602, 529=>602, 530=>602, 531=>602, 532=>602, 533=>602, 534=>602, 535=>602, 536=>602, 537=>602, 538=>602, 539=>602,
+ 542=>602, 543=>602, 544=>602, 545=>602, 548=>602, 549=>602, 550=>602, 551=>602, 552=>602, 553=>602, 554=>602, 555=>602, 556=>602, 557=>602, 558=>602, 559=>602,
+ 560=>602, 561=>602, 562=>602, 563=>602, 564=>602, 565=>602, 566=>602, 567=>602, 568=>602, 569=>602, 570=>602, 571=>602, 572=>602, 573=>602, 574=>602, 575=>602,
+ 576=>602, 577=>602, 581=>602, 592=>602, 593=>602, 594=>602, 595=>602, 596=>602, 597=>602, 598=>602, 599=>602, 600=>602, 601=>602, 602=>602, 603=>602, 604=>602,
+ 605=>602, 606=>602, 607=>602, 608=>602, 609=>602, 610=>602, 611=>602, 612=>602, 613=>602, 614=>602, 615=>602, 616=>602, 617=>602, 618=>602, 619=>602, 620=>602,
+ 621=>602, 622=>602, 623=>602, 624=>602, 625=>602, 626=>602, 627=>602, 628=>602, 629=>602, 630=>602, 631=>602, 632=>602, 633=>602, 634=>602, 635=>602, 636=>602,
+ 637=>602, 638=>602, 639=>602, 640=>602, 641=>602, 642=>602, 643=>602, 644=>602, 645=>602, 646=>602, 647=>602, 648=>602, 649=>602, 650=>602, 651=>602, 652=>602,
+ 653=>602, 654=>602, 655=>602, 656=>602, 657=>602, 658=>602, 659=>602, 660=>602, 661=>602, 662=>602, 663=>602, 664=>602, 665=>602, 666=>602, 667=>602, 668=>602,
+ 669=>602, 670=>602, 671=>602, 672=>602, 673=>602, 674=>602, 675=>602, 676=>602, 677=>602, 678=>602, 679=>602, 680=>602, 681=>602, 682=>602, 683=>602, 684=>602,
+ 685=>602, 686=>602, 687=>602, 688=>602, 689=>602, 690=>602, 691=>602, 692=>602, 693=>602, 694=>602, 695=>602, 696=>602, 697=>602, 699=>602, 700=>602, 701=>602,
+ 702=>602, 703=>602, 704=>602, 705=>602, 711=>602, 712=>602, 713=>602, 716=>602, 717=>602, 720=>602, 721=>602, 722=>602, 723=>602, 726=>602, 728=>602, 729=>602,
+ 730=>602, 731=>602, 733=>602, 734=>602, 736=>602, 737=>602, 738=>602, 739=>602, 740=>602, 741=>602, 742=>602, 743=>602, 744=>602, 745=>602, 755=>602, 768=>602,
+ 769=>602, 770=>602, 771=>602, 772=>602, 773=>602, 774=>602, 775=>602, 776=>602, 777=>602, 778=>602, 779=>602, 780=>602, 781=>602, 782=>602, 783=>602, 784=>602,
+ 785=>602, 786=>602, 787=>602, 788=>602, 789=>602, 790=>602, 791=>602, 792=>602, 793=>602, 794=>602, 795=>602, 796=>602, 797=>602, 798=>602, 799=>602, 800=>602,
+ 801=>602, 802=>602, 803=>602, 804=>602, 805=>602, 806=>602, 807=>602, 808=>602, 809=>602, 810=>602, 811=>602, 812=>602, 813=>602, 814=>602, 815=>602, 816=>602,
+ 817=>602, 818=>602, 819=>602, 820=>602, 821=>602, 822=>602, 823=>602, 824=>602, 825=>602, 826=>602, 827=>602, 828=>602, 829=>602, 830=>602, 831=>602, 835=>602,
+ 856=>602, 865=>602, 884=>602, 885=>602, 890=>602, 894=>602, 900=>602, 901=>602, 902=>602, 903=>602, 904=>602, 905=>602, 906=>602, 908=>602, 910=>602, 911=>602,
+ 912=>602, 913=>602, 914=>602, 915=>602, 916=>602, 917=>602, 918=>602, 919=>602, 920=>602, 921=>602, 922=>602, 923=>602, 924=>602, 925=>602, 926=>602, 927=>602,
+ 928=>602, 929=>602, 931=>602, 932=>602, 933=>602, 934=>602, 935=>602, 936=>602, 937=>602, 938=>602, 939=>602, 940=>602, 941=>602, 942=>602, 943=>602, 944=>602,
+ 945=>602, 946=>602, 947=>602, 948=>602, 949=>602, 950=>602, 951=>602, 952=>602, 953=>602, 954=>602, 955=>602, 956=>602, 957=>602, 958=>602, 959=>602, 960=>602,
+ 961=>602, 962=>602, 963=>602, 964=>602, 965=>602, 966=>602, 967=>602, 968=>602, 969=>602, 970=>602, 971=>602, 972=>602, 973=>602, 974=>602, 976=>602, 977=>602,
+ 978=>602, 979=>602, 980=>602, 981=>602, 982=>602, 983=>602, 984=>602, 985=>602, 986=>602, 987=>602, 988=>602, 989=>602, 990=>602, 991=>602, 992=>602, 993=>602,
+ 1008=>602, 1009=>602, 1010=>602, 1011=>602, 1012=>602, 1013=>602, 1014=>602, 1015=>602, 1016=>602, 1017=>602, 1018=>602, 1019=>602, 1020=>602, 1021=>602, 1022=>602, 1023=>602,
+ 1024=>602, 1025=>602, 1026=>602, 1028=>602, 1029=>602, 1030=>602, 1031=>602, 1032=>602, 1033=>602, 1034=>602, 1035=>602, 1037=>602, 1038=>602, 1040=>602, 1041=>602, 1042=>602,
+ 1043=>602, 1044=>602, 1045=>602, 1046=>602, 1047=>602, 1048=>602, 1049=>602, 1050=>602, 1051=>602, 1052=>602, 1053=>602, 1054=>602, 1055=>602, 1056=>602, 1057=>602, 1058=>602,
+ 1059=>602, 1060=>602, 1061=>602, 1062=>602, 1063=>602, 1064=>602, 1065=>602, 1066=>602, 1067=>602, 1068=>602, 1069=>602, 1070=>602, 1071=>602, 1072=>602, 1073=>602, 1074=>602,
+ 1075=>602, 1076=>602, 1077=>602, 1078=>602, 1079=>602, 1080=>602, 1081=>602, 1082=>602, 1083=>602, 1084=>602, 1085=>602, 1086=>602, 1087=>602, 1088=>602, 1089=>602, 1090=>602,
+ 1091=>602, 1092=>602, 1093=>602, 1094=>602, 1095=>602, 1096=>602, 1097=>602, 1098=>602, 1099=>602, 1100=>602, 1101=>602, 1102=>602, 1103=>602, 1104=>602, 1105=>602, 1106=>602,
+ 1107=>602, 1108=>602, 1109=>602, 1110=>602, 1111=>602, 1112=>602, 1113=>602, 1114=>602, 1115=>602, 1117=>602, 1118=>602, 1119=>602, 1168=>602, 1169=>602, 1170=>602, 1171=>602,
+ 1172=>602, 1173=>602, 1174=>602, 1175=>602, 1176=>602, 1177=>602, 1178=>602, 1179=>602, 1186=>602, 1187=>602, 1194=>602, 1195=>602, 1196=>602, 1197=>602, 1198=>602, 1199=>602,
+ 1200=>602, 1201=>602, 1202=>602, 1203=>602, 1210=>602, 1211=>602, 1216=>602, 1217=>602, 1218=>602, 1219=>602, 1220=>602, 1223=>602, 1224=>602, 1227=>602, 1228=>602, 1231=>602,
+ 1232=>602, 1233=>602, 1234=>602, 1235=>602, 1236=>602, 1237=>602, 1238=>602, 1239=>602, 1240=>602, 1241=>602, 1242=>602, 1243=>602, 1244=>602, 1245=>602, 1246=>602, 1247=>602,
+ 1248=>602, 1249=>602, 1250=>602, 1251=>602, 1252=>602, 1253=>602, 1254=>602, 1255=>602, 1256=>602, 1257=>602, 1258=>602, 1259=>602, 1260=>602, 1261=>602, 1262=>602, 1263=>602,
+ 1264=>602, 1265=>602, 1266=>602, 1267=>602, 1268=>602, 1269=>602, 1270=>602, 1271=>602, 1272=>602, 1273=>602, 1548=>602, 1557=>602, 1563=>602, 1567=>602, 1569=>602, 1570=>602,
+ 1571=>602, 1572=>602, 1573=>602, 1574=>602, 1575=>602, 1576=>602, 1577=>602, 1578=>602, 1579=>602, 1580=>602, 1581=>602, 1582=>602, 1583=>602, 1584=>602, 1585=>602, 1586=>602,
+ 1587=>602, 1588=>602, 1589=>602, 1590=>602, 1591=>602, 1592=>602, 1593=>602, 1594=>602, 1600=>602, 1601=>602, 1602=>602, 1603=>602, 1604=>602, 1605=>602, 1606=>602, 1607=>602,
+ 1608=>602, 1609=>602, 1610=>602, 1611=>602, 1612=>602, 1613=>602, 1614=>602, 1615=>602, 1616=>602, 1617=>602, 1618=>602, 1619=>602, 1620=>602, 1621=>602, 1626=>602, 1632=>602,
+ 1633=>602, 1634=>602, 1635=>602, 1636=>602, 1637=>602, 1638=>602, 1639=>602, 1640=>602, 1641=>602, 1642=>602, 1643=>602, 1644=>602, 1645=>602, 1646=>602, 1647=>602, 1652=>602,
+ 1657=>602, 1658=>602, 1659=>602, 1660=>602, 1661=>602, 1662=>602, 1663=>602, 1664=>602, 1665=>602, 1666=>602, 1667=>602, 1668=>602, 1669=>602, 1670=>602, 1671=>602, 1681=>602,
+ 1682=>602, 1688=>602, 1697=>602, 1700=>602, 1705=>602, 1711=>602, 1717=>602, 1722=>602, 1726=>602, 1734=>602, 1740=>602, 1742=>602, 1749=>602, 1776=>602, 1777=>602, 1778=>602,
+ 1779=>602, 1780=>602, 1781=>602, 1782=>602, 1783=>602, 1784=>602, 1785=>602, 3713=>602, 3714=>602, 3716=>602, 3719=>602, 3720=>602, 3722=>602, 3725=>602, 3732=>602, 3733=>602,
+ 3734=>602, 3735=>602, 3737=>602, 3738=>602, 3739=>602, 3740=>602, 3741=>602, 3742=>602, 3743=>602, 3745=>602, 3746=>602, 3747=>602, 3749=>602, 3751=>602, 3754=>602, 3755=>602,
+ 3757=>602, 3758=>602, 3759=>602, 3760=>602, 3761=>602, 3762=>602, 3763=>602, 3764=>602, 3765=>602, 3766=>602, 3767=>602, 3768=>602, 3769=>602, 3771=>602, 3772=>602, 3784=>602,
+ 3785=>602, 3786=>602, 3787=>602, 3788=>602, 3789=>602, 4304=>602, 4305=>602, 4306=>602, 4307=>602, 4308=>602, 4309=>602, 4310=>602, 4311=>602, 4312=>602, 4313=>602, 4314=>602,
+ 4315=>602, 4316=>602, 4317=>602, 4318=>602, 4319=>602, 4320=>602, 4321=>602, 4322=>602, 4323=>602, 4324=>602, 4325=>602, 4326=>602, 4327=>602, 4328=>602, 4329=>602, 4330=>602,
+ 4331=>602, 4332=>602, 4333=>602, 4334=>602, 4335=>602, 4336=>602, 4337=>602, 4338=>602, 4339=>602, 4340=>602, 4341=>602, 4342=>602, 4343=>602, 4344=>602, 4345=>602, 4346=>602,
+ 4347=>602, 4348=>602, 7426=>602, 7432=>602, 7433=>602, 7444=>602, 7446=>602, 7447=>602, 7453=>602, 7454=>602, 7455=>602, 7468=>602, 7469=>602, 7470=>602, 7472=>602, 7473=>602,
+ 7474=>602, 7475=>602, 7476=>602, 7477=>602, 7478=>602, 7479=>602, 7480=>602, 7481=>602, 7482=>602, 7483=>602, 7484=>602, 7486=>602, 7487=>602, 7488=>602, 7489=>602, 7490=>602,
+ 7491=>602, 7492=>602, 7493=>602, 7494=>602, 7495=>602, 7496=>602, 7497=>602, 7498=>602, 7499=>602, 7500=>602, 7501=>602, 7502=>602, 7503=>602, 7504=>602, 7505=>602, 7506=>602,
+ 7507=>602, 7508=>602, 7509=>602, 7510=>602, 7511=>602, 7512=>602, 7513=>602, 7514=>602, 7515=>602, 7522=>602, 7523=>602, 7524=>602, 7525=>602, 7543=>602, 7544=>602, 7547=>602,
+ 7557=>602, 7579=>602, 7580=>602, 7581=>602, 7582=>602, 7583=>602, 7584=>602, 7585=>602, 7586=>602, 7587=>602, 7588=>602, 7589=>602, 7590=>602, 7591=>602, 7592=>602, 7593=>602,
+ 7594=>602, 7595=>602, 7596=>602, 7597=>602, 7598=>602, 7599=>602, 7600=>602, 7601=>602, 7602=>602, 7603=>602, 7604=>602, 7605=>602, 7606=>602, 7607=>602, 7609=>602, 7610=>602,
+ 7611=>602, 7612=>602, 7613=>602, 7614=>602, 7615=>602, 7680=>602, 7681=>602, 7682=>602, 7683=>602, 7684=>602, 7685=>602, 7686=>602, 7687=>602, 7688=>602, 7689=>602, 7690=>602,
+ 7691=>602, 7692=>602, 7693=>602, 7694=>602, 7695=>602, 7696=>602, 7697=>602, 7698=>602, 7699=>602, 7704=>602, 7705=>602, 7706=>602, 7707=>602, 7708=>602, 7709=>602, 7710=>602,
+ 7711=>602, 7712=>602, 7713=>602, 7714=>602, 7715=>602, 7716=>602, 7717=>602, 7720=>602, 7721=>602, 7722=>602, 7723=>602, 7724=>602, 7725=>602, 7728=>602, 7729=>602, 7730=>602,
+ 7731=>602, 7732=>602, 7733=>602, 7734=>602, 7735=>602, 7736=>602, 7737=>602, 7738=>602, 7739=>602, 7740=>602, 7741=>602, 7742=>602, 7743=>602, 7744=>602, 7745=>602, 7746=>602,
+ 7747=>602, 7748=>602, 7749=>602, 7750=>602, 7751=>602, 7752=>602, 7753=>602, 7754=>602, 7755=>602, 7766=>602, 7767=>602, 7768=>602, 7769=>602, 7770=>602, 7771=>602, 7772=>602,
+ 7773=>602, 7774=>602, 7775=>602, 7776=>602, 7777=>602, 7778=>602, 7779=>602, 7784=>602, 7785=>602, 7786=>602, 7787=>602, 7788=>602, 7789=>602, 7790=>602, 7791=>602, 7792=>602,
+ 7793=>602, 7794=>602, 7795=>602, 7796=>602, 7797=>602, 7798=>602, 7799=>602, 7806=>602, 7807=>602, 7808=>602, 7809=>602, 7810=>602, 7811=>602, 7812=>602, 7813=>602, 7814=>602,
+ 7815=>602, 7816=>602, 7817=>602, 7818=>602, 7819=>602, 7822=>602, 7823=>602, 7826=>602, 7827=>602, 7828=>602, 7829=>602, 7830=>602, 7835=>602, 7840=>602, 7841=>602, 7856=>602,
+ 7857=>602, 7864=>602, 7865=>602, 7868=>602, 7869=>602, 7882=>602, 7883=>602, 7884=>602, 7885=>602, 7908=>602, 7909=>602, 7922=>602, 7923=>602, 7924=>602, 7925=>602, 7928=>602,
+ 7929=>602, 7936=>602, 7937=>602, 7938=>602, 7939=>602, 7940=>602, 7941=>602, 7942=>602, 7943=>602, 7944=>602, 7945=>602, 7946=>602, 7947=>602, 7948=>602, 7949=>602, 7950=>602,
+ 7951=>602, 7952=>602, 7953=>602, 7954=>602, 7955=>602, 7956=>602, 7957=>602, 7960=>602, 7961=>602, 7962=>602, 7963=>602, 7964=>602, 7965=>602, 7968=>602, 7969=>602, 7970=>602,
+ 7971=>602, 7972=>602, 7973=>602, 7974=>602, 7975=>602, 7976=>602, 7977=>602, 7978=>602, 7979=>602, 7980=>602, 7981=>602, 7982=>602, 7983=>602, 7984=>602, 7985=>602, 7986=>602,
+ 7987=>602, 7988=>602, 7989=>602, 7990=>602, 7991=>602, 7992=>602, 7993=>602, 7994=>602, 7995=>602, 7996=>602, 7997=>602, 7998=>602, 7999=>602, 8000=>602, 8001=>602, 8002=>602,
+ 8003=>602, 8004=>602, 8005=>602, 8008=>602, 8009=>602, 8010=>602, 8011=>602, 8012=>602, 8013=>602, 8016=>602, 8017=>602, 8018=>602, 8019=>602, 8020=>602, 8021=>602, 8022=>602,
+ 8023=>602, 8025=>602, 8027=>602, 8029=>602, 8031=>602, 8032=>602, 8033=>602, 8034=>602, 8035=>602, 8036=>602, 8037=>602, 8038=>602, 8039=>602, 8040=>602, 8041=>602, 8042=>602,
+ 8043=>602, 8044=>602, 8045=>602, 8046=>602, 8047=>602, 8048=>602, 8049=>602, 8050=>602, 8051=>602, 8052=>602, 8053=>602, 8054=>602, 8055=>602, 8056=>602, 8057=>602, 8058=>602,
+ 8059=>602, 8060=>602, 8061=>602, 8064=>602, 8065=>602, 8066=>602, 8067=>602, 8068=>602, 8069=>602, 8070=>602, 8071=>602, 8072=>602, 8073=>602, 8074=>602, 8075=>602, 8076=>602,
+ 8077=>602, 8078=>602, 8079=>602, 8080=>602, 8081=>602, 8082=>602, 8083=>602, 8084=>602, 8085=>602, 8086=>602, 8087=>602, 8088=>602, 8089=>602, 8090=>602, 8091=>602, 8092=>602,
+ 8093=>602, 8094=>602, 8095=>602, 8096=>602, 8097=>602, 8098=>602, 8099=>602, 8100=>602, 8101=>602, 8102=>602, 8103=>602, 8104=>602, 8105=>602, 8106=>602, 8107=>602, 8108=>602,
+ 8109=>602, 8110=>602, 8111=>602, 8112=>602, 8113=>602, 8114=>602, 8115=>602, 8116=>602, 8118=>602, 8119=>602, 8120=>602, 8121=>602, 8122=>602, 8123=>602, 8124=>602, 8125=>602,
+ 8126=>602, 8127=>602, 8128=>602, 8129=>602, 8130=>602, 8131=>602, 8132=>602, 8134=>602, 8135=>602, 8136=>602, 8137=>602, 8138=>602, 8139=>602, 8140=>602, 8141=>602, 8142=>602,
+ 8143=>602, 8144=>602, 8145=>602, 8146=>602, 8147=>602, 8150=>602, 8151=>602, 8152=>602, 8153=>602, 8154=>602, 8155=>602, 8157=>602, 8158=>602, 8159=>602, 8160=>602, 8161=>602,
+ 8162=>602, 8163=>602, 8164=>602, 8165=>602, 8166=>602, 8167=>602, 8168=>602, 8169=>602, 8170=>602, 8171=>602, 8172=>602, 8173=>602, 8174=>602, 8175=>602, 8178=>602, 8179=>602,
+ 8180=>602, 8182=>602, 8183=>602, 8184=>602, 8185=>602, 8186=>602, 8187=>602, 8188=>602, 8189=>602, 8190=>602, 8192=>602, 8193=>602, 8194=>602, 8195=>602, 8196=>602, 8197=>602,
+ 8198=>602, 8199=>602, 8200=>602, 8201=>602, 8202=>602, 8208=>602, 8209=>602, 8210=>602, 8213=>602, 8215=>602, 8219=>602, 8223=>602, 8227=>602, 8239=>602, 8241=>602, 8252=>602,
+ 8253=>602, 8254=>602, 8261=>602, 8262=>602, 8263=>602, 8264=>602, 8265=>602, 8287=>602, 8304=>602, 8305=>602, 8308=>602, 8309=>602, 8310=>602, 8311=>602, 8312=>602, 8313=>602,
+ 8314=>602, 8315=>602, 8316=>602, 8317=>602, 8318=>602, 8319=>602, 8320=>602, 8321=>602, 8322=>602, 8323=>602, 8324=>602, 8325=>602, 8326=>602, 8327=>602, 8328=>602, 8329=>602,
+ 8330=>602, 8331=>602, 8332=>602, 8333=>602, 8334=>602, 8336=>602, 8337=>602, 8338=>602, 8339=>602, 8340=>602, 8358=>602, 8369=>602, 8372=>602, 8373=>602, 8450=>602, 8462=>602,
+ 8470=>602, 8486=>602, 8490=>602, 8491=>602, 8531=>602, 8532=>602, 8533=>602, 8534=>602, 8535=>602, 8536=>602, 8537=>602, 8538=>602, 8539=>602, 8540=>602, 8541=>602, 8542=>602,
+ 8543=>602, 8592=>602, 8593=>602, 8594=>602, 8595=>602, 8596=>602, 8597=>602, 8598=>602, 8599=>602, 8600=>602, 8601=>602, 8602=>602, 8603=>602, 8604=>602, 8605=>602, 8606=>602,
+ 8607=>602, 8608=>602, 8609=>602, 8610=>602, 8611=>602, 8612=>602, 8613=>602, 8614=>602, 8615=>602, 8616=>602, 8617=>602, 8618=>602, 8619=>602, 8620=>602, 8621=>602, 8622=>602,
+ 8623=>602, 8624=>602, 8625=>602, 8626=>602, 8627=>602, 8628=>602, 8629=>602, 8630=>602, 8631=>602, 8632=>602, 8633=>602, 8634=>602, 8635=>602, 8636=>602, 8637=>602, 8638=>602,
+ 8639=>602, 8640=>602, 8641=>602, 8642=>602, 8643=>602, 8644=>602, 8645=>602, 8646=>602, 8647=>602, 8648=>602, 8649=>602, 8650=>602, 8651=>602, 8652=>602, 8653=>602, 8654=>602,
+ 8655=>602, 8656=>602, 8657=>602, 8658=>602, 8659=>602, 8660=>602, 8661=>602, 8662=>602, 8663=>602, 8664=>602, 8665=>602, 8666=>602, 8667=>602, 8668=>602, 8669=>602, 8670=>602,
+ 8671=>602, 8672=>602, 8673=>602, 8674=>602, 8675=>602, 8676=>602, 8677=>602, 8678=>602, 8679=>602, 8680=>602, 8681=>602, 8682=>602, 8683=>602, 8684=>602, 8685=>602, 8686=>602,
+ 8687=>602, 8688=>602, 8689=>602, 8690=>602, 8691=>602, 8692=>602, 8693=>602, 8694=>602, 8695=>602, 8696=>602, 8697=>602, 8698=>602, 8699=>602, 8700=>602, 8701=>602, 8702=>602,
+ 8703=>602, 8706=>602, 8709=>602, 8710=>602, 8711=>602, 8712=>602, 8713=>602, 8714=>602, 8715=>602, 8716=>602, 8717=>602, 8719=>602, 8721=>602, 8722=>602, 8723=>602, 8725=>602,
+ 8727=>602, 8728=>602, 8729=>602, 8730=>602, 8733=>602, 8734=>602, 8735=>602, 8736=>602, 8743=>602, 8744=>602, 8745=>602, 8746=>602, 8747=>602, 8748=>602, 8749=>602, 8760=>602,
+ 8761=>602, 8762=>602, 8763=>602, 8764=>602, 8765=>602, 8769=>602, 8770=>602, 8771=>602, 8772=>602, 8773=>602, 8774=>602, 8775=>602, 8776=>602, 8777=>602, 8778=>602, 8779=>602,
+ 8780=>602, 8781=>602, 8782=>602, 8783=>602, 8784=>602, 8785=>602, 8786=>602, 8787=>602, 8788=>602, 8789=>602, 8790=>602, 8791=>602, 8792=>602, 8793=>602, 8794=>602, 8795=>602,
+ 8796=>602, 8797=>602, 8798=>602, 8799=>602, 8800=>602, 8801=>602, 8802=>602, 8803=>602, 8804=>602, 8805=>602, 8806=>602, 8807=>602, 8808=>602, 8809=>602, 8813=>602, 8814=>602,
+ 8815=>602, 8816=>602, 8817=>602, 8818=>602, 8819=>602, 8820=>602, 8821=>602, 8822=>602, 8823=>602, 8824=>602, 8825=>602, 8826=>602, 8827=>602, 8828=>602, 8829=>602, 8830=>602,
+ 8831=>602, 8832=>602, 8833=>602, 8834=>602, 8835=>602, 8836=>602, 8837=>602, 8838=>602, 8839=>602, 8840=>602, 8841=>602, 8842=>602, 8843=>602, 8847=>602, 8848=>602, 8849=>602,
+ 8850=>602, 8853=>602, 8854=>602, 8855=>602, 8856=>602, 8857=>602, 8858=>602, 8859=>602, 8860=>602, 8861=>602, 8862=>602, 8863=>602, 8864=>602, 8865=>602, 8901=>602, 8902=>602,
+ 8909=>602, 8922=>602, 8923=>602, 8924=>602, 8925=>602, 8926=>602, 8927=>602, 8928=>602, 8929=>602, 8930=>602, 8931=>602, 8932=>602, 8933=>602, 8934=>602, 8935=>602, 8936=>602,
+ 8937=>602, 8943=>602, 8960=>602, 8961=>602, 8962=>602, 8963=>602, 8964=>602, 8965=>602, 8966=>602, 8968=>602, 8969=>602, 8970=>602, 8971=>602, 8972=>602, 8973=>602, 8974=>602,
+ 8975=>602, 8976=>602, 8977=>602, 8978=>602, 8979=>602, 8980=>602, 8981=>602, 8984=>602, 8985=>602, 8988=>602, 8989=>602, 8990=>602, 8991=>602, 8992=>602, 8993=>602, 8997=>602,
+ 8998=>602, 8999=>602, 9000=>602, 9003=>602, 9013=>602, 9015=>602, 9016=>602, 9017=>602, 9018=>602, 9019=>602, 9020=>602, 9021=>602, 9022=>602, 9025=>602, 9026=>602, 9027=>602,
+ 9028=>602, 9031=>602, 9032=>602, 9033=>602, 9035=>602, 9036=>602, 9037=>602, 9040=>602, 9042=>602, 9043=>602, 9044=>602, 9047=>602, 9048=>602, 9049=>602, 9050=>602, 9051=>602,
+ 9052=>602, 9054=>602, 9055=>602, 9056=>602, 9059=>602, 9060=>602, 9061=>602, 9064=>602, 9065=>602, 9067=>602, 9068=>602, 9069=>602, 9070=>602, 9071=>602, 9072=>602, 9075=>602,
+ 9076=>602, 9077=>602, 9078=>602, 9079=>602, 9080=>602, 9081=>602, 9082=>602, 9085=>602, 9088=>602, 9089=>602, 9090=>602, 9091=>602, 9096=>602, 9097=>602, 9098=>602, 9099=>602,
+ 9109=>602, 9115=>602, 9116=>602, 9117=>602, 9118=>602, 9119=>602, 9120=>602, 9121=>602, 9122=>602, 9123=>602, 9124=>602, 9125=>602, 9126=>602, 9127=>602, 9128=>602, 9129=>602,
+ 9130=>602, 9131=>602, 9132=>602, 9133=>602, 9134=>602, 9166=>602, 9167=>602, 9251=>602, 9600=>602, 9601=>602, 9602=>602, 9603=>602, 9604=>602, 9605=>602, 9606=>602, 9607=>602,
+ 9608=>602, 9609=>602, 9610=>602, 9611=>602, 9612=>602, 9613=>602, 9614=>602, 9615=>602, 9616=>602, 9617=>602, 9618=>602, 9619=>602, 9620=>602, 9621=>602, 9622=>602, 9623=>602,
+ 9624=>602, 9625=>602, 9626=>602, 9627=>602, 9628=>602, 9629=>602, 9630=>602, 9631=>602, 9632=>602, 9633=>602, 9634=>602, 9635=>602, 9636=>602, 9637=>602, 9638=>602, 9639=>602,
+ 9640=>602, 9641=>602, 9642=>602, 9643=>602, 9644=>602, 9645=>602, 9646=>602, 9647=>602, 9648=>602, 9649=>602, 9650=>602, 9651=>602, 9652=>602, 9653=>602, 9654=>602, 9655=>602,
+ 9656=>602, 9657=>602, 9658=>602, 9659=>602, 9660=>602, 9661=>602, 9662=>602, 9663=>602, 9664=>602, 9665=>602, 9666=>602, 9667=>602, 9668=>602, 9669=>602, 9670=>602, 9671=>602,
+ 9672=>602, 9673=>602, 9674=>602, 9675=>602, 9676=>602, 9677=>602, 9678=>602, 9679=>602, 9680=>602, 9681=>602, 9682=>602, 9683=>602, 9684=>602, 9685=>602, 9686=>602, 9687=>602,
+ 9688=>602, 9689=>602, 9690=>602, 9691=>602, 9692=>602, 9693=>602, 9694=>602, 9695=>602, 9696=>602, 9697=>602, 9698=>602, 9699=>602, 9700=>602, 9701=>602, 9702=>602, 9703=>602,
+ 9704=>602, 9705=>602, 9706=>602, 9707=>602, 9708=>602, 9709=>602, 9710=>602, 9711=>602, 9712=>602, 9713=>602, 9714=>602, 9715=>602, 9716=>602, 9717=>602, 9718=>602, 9719=>602,
+ 9720=>602, 9721=>602, 9722=>602, 9723=>602, 9724=>602, 9725=>602, 9726=>602, 9727=>602, 9728=>602, 9729=>602, 9730=>602, 9731=>602, 9732=>602, 9733=>602, 9734=>602, 9735=>602,
+ 9736=>602, 9737=>602, 9738=>602, 9739=>602, 9740=>602, 9741=>602, 9742=>602, 9743=>602, 9744=>602, 9745=>602, 9746=>602, 9747=>602, 9748=>602, 9749=>602, 9750=>602, 9751=>602,
+ 9752=>602, 9753=>602, 9754=>602, 9755=>602, 9756=>602, 9757=>602, 9758=>602, 9759=>602, 9760=>602, 9761=>602, 9762=>602, 9763=>602, 9764=>602, 9765=>602, 9766=>602, 9767=>602,
+ 9768=>602, 9769=>602, 9770=>602, 9771=>602, 9772=>602, 9773=>602, 9774=>602, 9775=>602, 9784=>602, 9785=>602, 9786=>602, 9787=>602, 9788=>602, 9789=>602, 9790=>602, 9791=>602,
+ 9792=>602, 9793=>602, 9794=>602, 9795=>602, 9796=>602, 9797=>602, 9798=>602, 9799=>602, 9800=>602, 9801=>602, 9802=>602, 9803=>602, 9804=>602, 9805=>602, 9806=>602, 9807=>602,
+ 9808=>602, 9809=>602, 9810=>602, 9811=>602, 9812=>602, 9813=>602, 9814=>602, 9815=>602, 9816=>602, 9817=>602, 9818=>602, 9819=>602, 9820=>602, 9821=>602, 9822=>602, 9823=>602,
+ 9824=>602, 9825=>602, 9826=>602, 9827=>602, 9828=>602, 9829=>602, 9830=>602, 9831=>602, 9832=>602, 9833=>602, 9834=>602, 9835=>602, 9836=>602, 9837=>602, 9838=>602, 9839=>602,
+ 9840=>602, 9841=>602, 9842=>602, 9843=>602, 9844=>602, 9845=>602, 9846=>602, 9847=>602, 9848=>602, 9849=>602, 9850=>602, 9851=>602, 9852=>602, 9853=>602, 9854=>602, 9855=>602,
+ 9856=>602, 9857=>602, 9858=>602, 9859=>602, 9860=>602, 9861=>602, 9862=>602, 9863=>602, 9864=>602, 9865=>602, 9866=>602, 9867=>602, 9872=>602, 9873=>602, 9874=>602, 9875=>602,
+ 9876=>602, 9877=>602, 9878=>602, 9879=>602, 9880=>602, 9881=>602, 9882=>602, 9883=>602, 9884=>602, 9888=>602, 9889=>602, 9904=>602, 9905=>602, 9985=>602, 9986=>602, 9987=>602,
+ 9988=>602, 9990=>602, 9991=>602, 9992=>602, 9993=>602, 9996=>602, 9997=>602, 9998=>602, 9999=>602, 10000=>602, 10001=>602, 10002=>602, 10003=>602, 10004=>602, 10005=>602, 10006=>602,
+ 10007=>602, 10008=>602, 10009=>602, 10010=>602, 10011=>602, 10012=>602, 10013=>602, 10014=>602, 10015=>602, 10016=>602, 10017=>602, 10018=>602, 10019=>602, 10020=>602, 10021=>602, 10022=>602,
+ 10023=>602, 10025=>602, 10026=>602, 10027=>602, 10028=>602, 10029=>602, 10030=>602, 10031=>602, 10032=>602, 10033=>602, 10034=>602, 10035=>602, 10036=>602, 10037=>602, 10038=>602, 10039=>602,
+ 10040=>602, 10041=>602, 10042=>602, 10043=>602, 10044=>602, 10045=>602, 10046=>602, 10047=>602, 10048=>602, 10049=>602, 10050=>602, 10051=>602, 10052=>602, 10053=>602, 10054=>602, 10055=>602,
+ 10056=>602, 10057=>602, 10058=>602, 10059=>602, 10061=>602, 10063=>602, 10064=>602, 10065=>602, 10066=>602, 10070=>602, 10072=>602, 10073=>602, 10074=>602, 10075=>602, 10076=>602, 10077=>602,
+ 10078=>602, 10081=>602, 10082=>602, 10083=>602, 10084=>602, 10085=>602, 10086=>602, 10087=>602, 10088=>602, 10089=>602, 10090=>602, 10091=>602, 10092=>602, 10093=>602, 10094=>602, 10095=>602,
+ 10096=>602, 10097=>602, 10098=>602, 10099=>602, 10100=>602, 10101=>602, 10132=>602, 10136=>602, 10137=>602, 10138=>602, 10139=>602, 10140=>602, 10141=>602, 10142=>602, 10143=>602, 10144=>602,
+ 10145=>602, 10146=>602, 10147=>602, 10148=>602, 10149=>602, 10150=>602, 10151=>602, 10152=>602, 10153=>602, 10154=>602, 10155=>602, 10156=>602, 10157=>602, 10158=>602, 10159=>602, 10161=>602,
+ 10162=>602, 10163=>602, 10164=>602, 10165=>602, 10166=>602, 10167=>602, 10168=>602, 10169=>602, 10170=>602, 10171=>602, 10172=>602, 10173=>602, 10174=>602, 10175=>602, 10208=>602, 10216=>602,
+ 10217=>602, 10731=>602, 10746=>602, 10747=>602, 10799=>602, 11026=>602, 11027=>602, 11028=>602, 11029=>602, 11030=>602, 11031=>602, 11032=>602, 11033=>602, 11034=>602, 11381=>602, 11382=>602,
+ 11383=>602, 11800=>602, 11822=>602, 63173=>602, 64257=>602, 64258=>602, 64338=>602, 64339=>602, 64340=>602, 64341=>602, 64342=>602, 64343=>602, 64344=>602, 64345=>602, 64346=>602, 64347=>602,
+ 64348=>602, 64349=>602, 64350=>602, 64351=>602, 64352=>602, 64353=>602, 64354=>602, 64355=>602, 64356=>602, 64357=>602, 64358=>602, 64359=>602, 64360=>602, 64361=>602, 64362=>602, 64363=>602,
+ 64364=>602, 64365=>602, 64366=>602, 64367=>602, 64368=>602, 64369=>602, 64370=>602, 64371=>602, 64372=>602, 64373=>602, 64374=>602, 64375=>602, 64376=>602, 64377=>602, 64378=>602, 64379=>602,
+ 64380=>602, 64381=>602, 64382=>602, 64383=>602, 64384=>602, 64385=>602, 64394=>602, 64395=>602, 64396=>602, 64397=>602, 64398=>602, 64399=>602, 64400=>602, 64401=>602, 64402=>602, 64403=>602,
+ 64404=>602, 64405=>602, 64414=>602, 64415=>602, 64426=>602, 64427=>602, 64428=>602, 64429=>602, 64488=>602, 64489=>602, 64508=>602, 64509=>602, 64510=>602, 64511=>602, 65136=>602, 65137=>602,
+ 65138=>602, 65139=>602, 65140=>602, 65142=>602, 65143=>602, 65144=>602, 65145=>602, 65146=>602, 65147=>602, 65148=>602, 65149=>602, 65150=>602, 65151=>602, 65152=>602, 65153=>602, 65154=>602,
+ 65155=>602, 65156=>602, 65157=>602, 65158=>602, 65159=>602, 65160=>602, 65161=>602, 65162=>602, 65163=>602, 65164=>602, 65165=>602, 65166=>602, 65167=>602, 65168=>602, 65169=>602, 65170=>602,
+ 65171=>602, 65172=>602, 65173=>602, 65174=>602, 65175=>602, 65176=>602, 65177=>602, 65178=>602, 65179=>602, 65180=>602, 65181=>602, 65182=>602, 65183=>602, 65184=>602, 65185=>602, 65186=>602,
+ 65187=>602, 65188=>602, 65189=>602, 65190=>602, 65191=>602, 65192=>602, 65193=>602, 65194=>602, 65195=>602, 65196=>602, 65197=>602, 65198=>602, 65199=>602, 65200=>602, 65201=>602, 65202=>602,
+ 65203=>602, 65204=>602, 65205=>602, 65206=>602, 65207=>602, 65208=>602, 65209=>602, 65210=>602, 65211=>602, 65212=>602, 65213=>602, 65214=>602, 65215=>602, 65216=>602, 65217=>602, 65218=>602,
+ 65219=>602, 65220=>602, 65221=>602, 65222=>602, 65223=>602, 65224=>602, 65225=>602, 65226=>602, 65227=>602, 65228=>602, 65229=>602, 65230=>602, 65231=>602, 65232=>602, 65233=>602, 65234=>602,
+ 65235=>602, 65236=>602, 65237=>602, 65238=>602, 65239=>602, 65240=>602, 65241=>602, 65242=>602, 65243=>602, 65244=>602, 65245=>602, 65246=>602, 65247=>602, 65248=>602, 65249=>602, 65250=>602,
+ 65251=>602, 65252=>602, 65253=>602, 65254=>602, 65255=>602, 65256=>602, 65257=>602, 65258=>602, 65259=>602, 65260=>602, 65261=>602, 65262=>602, 65263=>602, 65264=>602, 65265=>602, 65266=>602,
+ 65267=>602, 65268=>602, 65269=>602, 65270=>602, 65271=>602, 65272=>602, 65273=>602, 65274=>602, 65275=>602, 65276=>602, 65279=>602, 65529=>602, 65530=>602, 65531=>602, 65532=>602, 65533=>602);
+$enc='';
+$diff='';
+$file='dejavusansmonob.z';
+$ctg='dejavusansmonob.ctg.z';
+$originalsize=290372;
+?>
diff --git a/lib/tcpdf/fonts/dejavusansmonob.z b/lib/tcpdf/fonts/dejavusansmonob.z
new file mode 100644
index 0000000000..dc7ba687ef
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansmonob.z differ
diff --git a/lib/tcpdf/fonts/dejavusansmonobi.ctg.z b/lib/tcpdf/fonts/dejavusansmonobi.ctg.z
new file mode 100644
index 0000000000..047ecc392e
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansmonobi.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusansmonobi.php b/lib/tcpdf/fonts/dejavusansmonobi.php
new file mode 100644
index 0000000000..ce9ccc274c
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusansmonobi.php
@@ -0,0 +1,152 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>97,'FontBBox'=>'[-428 -394 808 1053]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>602);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>602, 32=>602, 33=>602, 34=>602, 35=>602, 36=>602, 37=>602, 38=>602, 39=>602, 40=>602, 41=>602, 42=>602, 43=>602, 44=>602, 45=>602, 46=>602,
+ 47=>602, 48=>602, 49=>602, 50=>602, 51=>602, 52=>602, 53=>602, 54=>602, 55=>602, 56=>602, 57=>602, 58=>602, 59=>602, 60=>602, 61=>602, 62=>602,
+ 63=>602, 64=>602, 65=>602, 66=>602, 67=>602, 68=>602, 69=>602, 70=>602, 71=>602, 72=>602, 73=>602, 74=>602, 75=>602, 76=>602, 77=>602, 78=>602,
+ 79=>602, 80=>602, 81=>602, 82=>602, 83=>602, 84=>602, 85=>602, 86=>602, 87=>602, 88=>602, 89=>602, 90=>602, 91=>602, 92=>602, 93=>602, 94=>602,
+ 95=>602, 96=>602, 97=>602, 98=>602, 99=>602, 100=>602, 101=>602, 102=>602, 103=>602, 104=>602, 105=>602, 106=>602, 107=>602, 108=>602, 109=>602, 110=>602,
+ 111=>602, 112=>602, 113=>602, 114=>602, 115=>602, 116=>602, 117=>602, 118=>602, 119=>602, 120=>602, 121=>602, 122=>602, 123=>602, 124=>602, 125=>602, 126=>602,
+ 8364=>602, 1027=>602, 8218=>602, 402=>602, 8222=>602, 8230=>602, 8224=>602, 8225=>602, 710=>602, 8240=>602, 352=>602, 8249=>602, 338=>602, 1036=>602, 381=>602, 1039=>602,
+ 8216=>602, 8217=>602, 8220=>602, 8221=>602, 8226=>602, 8211=>602, 8212=>602, 732=>602, 8482=>602, 353=>602, 8250=>602, 339=>602, 1116=>602, 382=>602, 376=>602, 160=>602,
+ 161=>602, 162=>602, 163=>602, 164=>602, 165=>602, 166=>602, 167=>602, 168=>602, 169=>602, 170=>602, 171=>602, 172=>602, 173=>602, 174=>602, 175=>602, 176=>602,
+ 177=>602, 178=>602, 179=>602, 180=>602, 181=>602, 182=>602, 183=>602, 184=>602, 185=>602, 186=>602, 187=>602, 188=>602, 189=>602, 190=>602, 191=>602, 192=>602,
+ 193=>602, 194=>602, 195=>602, 196=>602, 197=>602, 198=>602, 199=>602, 200=>602, 201=>602, 202=>602, 203=>602, 204=>602, 205=>602, 206=>602, 207=>602, 208=>602,
+ 209=>602, 210=>602, 211=>602, 212=>602, 213=>602, 214=>602, 215=>602, 216=>602, 217=>602, 218=>602, 219=>602, 220=>602, 221=>602, 222=>602, 223=>602, 224=>602,
+ 225=>602, 226=>602, 227=>602, 228=>602, 229=>602, 230=>602, 231=>602, 232=>602, 233=>602, 234=>602, 235=>602, 236=>602, 237=>602, 238=>602, 239=>602, 240=>602,
+ 241=>602, 242=>602, 243=>602, 244=>602, 245=>602, 246=>602, 247=>602, 248=>602, 249=>602, 250=>602, 251=>602, 252=>602, 253=>602, 254=>602, 255=>602, 256=>602,
+ 257=>602, 258=>602, 259=>602, 260=>602, 261=>602, 262=>602, 263=>602, 264=>602, 265=>602, 266=>602, 267=>602, 268=>602, 269=>602, 270=>602, 271=>602, 272=>602,
+ 273=>602, 274=>602, 275=>602, 276=>602, 277=>602, 278=>602, 279=>602, 280=>602, 281=>602, 282=>602, 283=>602, 284=>602, 285=>602, 286=>602, 287=>602, 288=>602,
+ 289=>602, 290=>602, 291=>602, 292=>602, 293=>602, 294=>602, 295=>602, 296=>602, 297=>602, 298=>602, 299=>602, 300=>602, 301=>602, 302=>602, 303=>602, 304=>602,
+ 305=>602, 306=>602, 307=>602, 308=>602, 309=>602, 310=>602, 311=>602, 312=>602, 313=>602, 314=>602, 315=>602, 316=>602, 317=>602, 318=>602, 319=>602, 320=>602,
+ 321=>602, 322=>602, 323=>602, 324=>602, 325=>602, 326=>602, 327=>602, 328=>602, 329=>602, 330=>602, 331=>602, 332=>602, 333=>602, 334=>602, 335=>602, 336=>602,
+ 337=>602, 340=>602, 341=>602, 342=>602, 343=>602, 344=>602, 345=>602, 346=>602, 347=>602, 348=>602, 349=>602, 350=>602, 351=>602, 354=>602, 355=>602, 356=>602,
+ 357=>602, 358=>602, 359=>602, 360=>602, 361=>602, 362=>602, 363=>602, 364=>602, 365=>602, 366=>602, 367=>602, 368=>602, 369=>602, 370=>602, 371=>602, 372=>602,
+ 373=>602, 374=>602, 375=>602, 377=>602, 378=>602, 379=>602, 380=>602, 383=>602, 384=>602, 385=>602, 386=>602, 387=>602, 388=>602, 389=>602, 390=>602, 391=>602,
+ 392=>602, 393=>602, 394=>602, 395=>602, 396=>602, 397=>602, 398=>602, 399=>602, 400=>602, 401=>602, 403=>602, 404=>602, 405=>602, 406=>602, 407=>602, 408=>602,
+ 409=>602, 410=>602, 411=>602, 412=>602, 413=>602, 414=>602, 415=>602, 416=>602, 417=>602, 418=>602, 419=>602, 420=>602, 421=>602, 422=>602, 423=>602, 424=>602,
+ 425=>602, 426=>602, 427=>602, 428=>602, 429=>602, 430=>602, 431=>602, 432=>602, 433=>602, 434=>602, 435=>602, 436=>602, 437=>602, 438=>602, 439=>602, 440=>602,
+ 441=>602, 443=>602, 444=>602, 445=>602, 446=>602, 448=>602, 449=>602, 450=>602, 451=>602, 461=>602, 462=>602, 463=>602, 464=>602, 465=>602, 466=>602, 467=>602,
+ 468=>602, 469=>602, 470=>602, 471=>602, 472=>602, 473=>602, 474=>602, 475=>602, 476=>602, 477=>602, 478=>602, 479=>602, 480=>602, 481=>602, 482=>602, 483=>602,
+ 486=>602, 487=>602, 488=>602, 489=>602, 490=>602, 491=>602, 492=>602, 493=>602, 494=>602, 495=>602, 500=>602, 501=>602, 502=>602, 504=>602, 505=>602, 508=>602,
+ 509=>602, 510=>602, 511=>602, 512=>602, 513=>602, 514=>602, 515=>602, 516=>602, 517=>602, 518=>602, 519=>602, 520=>602, 521=>602, 522=>602, 523=>602, 524=>602,
+ 525=>602, 526=>602, 527=>602, 528=>602, 529=>602, 530=>602, 531=>602, 532=>602, 533=>602, 534=>602, 535=>602, 536=>602, 537=>602, 538=>602, 539=>602, 542=>602,
+ 543=>602, 545=>602, 548=>602, 549=>602, 550=>602, 551=>602, 552=>602, 553=>602, 554=>602, 555=>602, 556=>602, 557=>602, 558=>602, 559=>602, 560=>602, 561=>602,
+ 562=>602, 563=>602, 564=>602, 565=>602, 566=>602, 567=>602, 568=>602, 569=>602, 570=>602, 571=>602, 572=>602, 573=>602, 574=>602, 575=>602, 576=>602, 577=>602,
+ 581=>602, 592=>602, 593=>602, 594=>602, 595=>602, 596=>602, 597=>602, 598=>602, 599=>602, 600=>602, 601=>602, 602=>602, 603=>602, 604=>602, 605=>602, 606=>602,
+ 607=>602, 608=>602, 609=>602, 610=>602, 611=>602, 612=>602, 613=>602, 614=>602, 615=>602, 616=>602, 617=>602, 618=>602, 619=>602, 620=>602, 621=>602, 622=>602,
+ 623=>602, 624=>602, 625=>602, 626=>602, 627=>602, 628=>602, 629=>602, 630=>602, 631=>602, 632=>602, 633=>602, 634=>602, 635=>602, 636=>602, 637=>602, 638=>602,
+ 639=>602, 640=>602, 641=>602, 642=>602, 643=>602, 644=>602, 645=>602, 646=>602, 647=>602, 648=>602, 649=>602, 650=>602, 651=>602, 652=>602, 653=>602, 654=>602,
+ 655=>602, 656=>602, 657=>602, 658=>602, 659=>602, 660=>602, 661=>602, 662=>602, 663=>602, 664=>602, 665=>602, 666=>602, 667=>602, 668=>602, 669=>602, 670=>602,
+ 671=>602, 672=>602, 673=>602, 674=>602, 675=>602, 676=>602, 677=>602, 678=>602, 679=>602, 680=>602, 681=>602, 682=>602, 683=>602, 684=>602, 685=>602, 686=>602,
+ 687=>602, 688=>602, 689=>602, 690=>602, 691=>602, 692=>602, 693=>602, 694=>602, 695=>602, 696=>602, 697=>602, 699=>602, 700=>602, 701=>602, 702=>602, 703=>602,
+ 704=>602, 705=>602, 711=>602, 712=>602, 713=>602, 716=>602, 717=>602, 720=>602, 721=>602, 722=>602, 723=>602, 726=>602, 728=>602, 729=>602, 730=>602, 731=>602,
+ 733=>602, 734=>602, 736=>602, 737=>602, 738=>602, 739=>602, 740=>602, 741=>602, 742=>602, 743=>602, 744=>602, 745=>602, 755=>602, 768=>602, 769=>602, 770=>602,
+ 771=>602, 772=>602, 773=>602, 774=>602, 775=>602, 776=>602, 777=>602, 778=>602, 779=>602, 780=>602, 781=>602, 782=>602, 783=>602, 784=>602, 785=>602, 786=>602,
+ 787=>602, 788=>602, 789=>602, 790=>602, 791=>602, 792=>602, 793=>602, 794=>602, 795=>602, 796=>602, 797=>602, 798=>602, 799=>602, 800=>602, 801=>602, 802=>602,
+ 803=>602, 804=>602, 805=>602, 806=>602, 807=>602, 808=>602, 809=>602, 810=>602, 811=>602, 812=>602, 813=>602, 814=>602, 815=>602, 816=>602, 817=>602, 818=>602,
+ 819=>602, 820=>602, 821=>602, 822=>602, 823=>602, 824=>602, 825=>602, 826=>602, 827=>602, 828=>602, 829=>602, 830=>602, 831=>602, 835=>602, 856=>602, 865=>602,
+ 884=>602, 885=>602, 890=>602, 894=>602, 900=>602, 901=>602, 902=>602, 903=>602, 904=>602, 905=>602, 906=>602, 908=>602, 910=>602, 911=>602, 912=>602, 913=>602,
+ 914=>602, 915=>602, 916=>602, 917=>602, 918=>602, 919=>602, 920=>602, 921=>602, 922=>602, 923=>602, 924=>602, 925=>602, 926=>602, 927=>602, 928=>602, 929=>602,
+ 931=>602, 932=>602, 933=>602, 934=>602, 935=>602, 936=>602, 937=>602, 938=>602, 939=>602, 940=>602, 941=>602, 942=>602, 943=>602, 944=>602, 945=>602, 946=>602,
+ 947=>602, 948=>602, 949=>602, 950=>602, 951=>602, 952=>602, 953=>602, 954=>602, 955=>602, 956=>602, 957=>602, 958=>602, 959=>602, 960=>602, 961=>602, 962=>602,
+ 963=>602, 964=>602, 965=>602, 966=>602, 967=>602, 968=>602, 969=>602, 970=>602, 971=>602, 972=>602, 973=>602, 974=>602, 976=>602, 977=>602, 978=>602, 979=>602,
+ 980=>602, 981=>602, 982=>602, 983=>602, 984=>602, 985=>602, 986=>602, 987=>602, 988=>602, 989=>602, 990=>602, 991=>602, 992=>602, 993=>602, 1008=>602, 1009=>602,
+ 1010=>602, 1011=>602, 1012=>602, 1013=>602, 1014=>602, 1015=>602, 1016=>602, 1017=>602, 1018=>602, 1019=>602, 1020=>602, 1021=>602, 1022=>602, 1023=>602, 1024=>602, 1025=>602,
+ 1026=>602, 1028=>602, 1029=>602, 1030=>602, 1031=>602, 1032=>602, 1033=>602, 1034=>602, 1035=>602, 1037=>602, 1038=>602, 1040=>602, 1041=>602, 1042=>602, 1043=>602, 1044=>602,
+ 1045=>602, 1046=>602, 1047=>602, 1048=>602, 1049=>602, 1050=>602, 1051=>602, 1052=>602, 1053=>602, 1054=>602, 1055=>602, 1056=>602, 1057=>602, 1058=>602, 1059=>602, 1060=>602,
+ 1061=>602, 1062=>602, 1063=>602, 1064=>602, 1065=>602, 1066=>602, 1067=>602, 1068=>602, 1069=>602, 1070=>602, 1071=>602, 1072=>602, 1073=>602, 1074=>602, 1075=>602, 1076=>602,
+ 1077=>602, 1078=>602, 1079=>602, 1080=>602, 1081=>602, 1082=>602, 1083=>602, 1084=>602, 1085=>602, 1086=>602, 1087=>602, 1088=>602, 1089=>602, 1090=>602, 1091=>602, 1092=>602,
+ 1093=>602, 1094=>602, 1095=>602, 1096=>602, 1097=>602, 1098=>602, 1099=>602, 1100=>602, 1101=>602, 1102=>602, 1103=>602, 1104=>602, 1105=>602, 1106=>602, 1107=>602, 1108=>602,
+ 1109=>602, 1110=>602, 1111=>602, 1112=>602, 1113=>602, 1114=>602, 1115=>602, 1117=>602, 1118=>602, 1119=>602, 1168=>602, 1169=>602, 1170=>602, 1171=>602, 1172=>602, 1173=>602,
+ 1174=>602, 1175=>602, 1176=>602, 1177=>602, 1178=>602, 1179=>602, 1186=>602, 1187=>602, 1194=>602, 1195=>602, 1196=>602, 1197=>602, 1198=>602, 1199=>602, 1200=>602, 1201=>602,
+ 1202=>602, 1203=>602, 1210=>602, 1211=>602, 1216=>602, 1217=>602, 1218=>602, 1219=>602, 1220=>602, 1223=>602, 1224=>602, 1227=>602, 1228=>602, 1231=>602, 1232=>602, 1233=>602,
+ 1234=>602, 1235=>602, 1236=>602, 1237=>602, 1238=>602, 1239=>602, 1240=>602, 1241=>602, 1242=>602, 1243=>602, 1244=>602, 1245=>602, 1246=>602, 1247=>602, 1248=>602, 1249=>602,
+ 1250=>602, 1251=>602, 1252=>602, 1253=>602, 1254=>602, 1255=>602, 1256=>602, 1257=>602, 1258=>602, 1259=>602, 1260=>602, 1261=>602, 1262=>602, 1263=>602, 1264=>602, 1265=>602,
+ 1266=>602, 1267=>602, 1268=>602, 1269=>602, 1270=>602, 1271=>602, 1272=>602, 1273=>602, 3713=>602, 3714=>602, 3716=>602, 3719=>602, 3720=>602, 3722=>602, 3725=>602, 3732=>602,
+ 3733=>602, 3734=>602, 3735=>602, 3737=>602, 3738=>602, 3739=>602, 3740=>602, 3741=>602, 3742=>602, 3743=>602, 3745=>602, 3746=>602, 3747=>602, 3749=>602, 3751=>602, 3754=>602,
+ 3755=>602, 3757=>602, 3758=>602, 3759=>602, 3760=>602, 3761=>602, 3762=>602, 3763=>602, 3764=>602, 3765=>602, 3766=>602, 3767=>602, 3768=>602, 3769=>602, 3771=>602, 3772=>602,
+ 3784=>602, 3785=>602, 3786=>602, 3787=>602, 3788=>602, 3789=>602, 4304=>602, 4305=>602, 4306=>602, 4307=>602, 4308=>602, 4309=>602, 4310=>602, 4311=>602, 4312=>602, 4313=>602,
+ 4314=>602, 4315=>602, 4316=>602, 4317=>602, 4318=>602, 4319=>602, 4320=>602, 4321=>602, 4322=>602, 4323=>602, 4324=>602, 4325=>602, 4326=>602, 4327=>602, 4328=>602, 4329=>602,
+ 4330=>602, 4331=>602, 4332=>602, 4333=>602, 4334=>602, 4335=>602, 4336=>602, 4337=>602, 4338=>602, 4339=>602, 4340=>602, 4341=>602, 4342=>602, 4343=>602, 4344=>602, 4345=>602,
+ 4346=>602, 4347=>602, 4348=>602, 7426=>602, 7432=>602, 7433=>602, 7444=>602, 7446=>602, 7447=>602, 7453=>602, 7454=>602, 7455=>602, 7468=>602, 7469=>602, 7470=>602, 7472=>602,
+ 7473=>602, 7474=>602, 7475=>602, 7476=>602, 7477=>602, 7478=>602, 7479=>602, 7480=>602, 7481=>602, 7482=>602, 7483=>602, 7484=>602, 7486=>602, 7487=>602, 7488=>602, 7489=>602,
+ 7490=>602, 7491=>602, 7492=>602, 7493=>602, 7494=>602, 7495=>602, 7496=>602, 7497=>602, 7498=>602, 7499=>602, 7500=>602, 7501=>602, 7502=>602, 7503=>602, 7504=>602, 7505=>602,
+ 7506=>602, 7507=>602, 7508=>602, 7509=>602, 7510=>602, 7511=>602, 7512=>602, 7513=>602, 7514=>602, 7515=>602, 7522=>602, 7523=>602, 7524=>602, 7525=>602, 7543=>602, 7544=>602,
+ 7547=>602, 7557=>602, 7579=>602, 7580=>602, 7581=>602, 7582=>602, 7583=>602, 7584=>602, 7585=>602, 7586=>602, 7587=>602, 7588=>602, 7589=>602, 7590=>602, 7591=>602, 7592=>602,
+ 7593=>602, 7594=>602, 7595=>602, 7596=>602, 7597=>602, 7598=>602, 7599=>602, 7600=>602, 7601=>602, 7602=>602, 7603=>602, 7604=>602, 7605=>602, 7606=>602, 7607=>602, 7609=>602,
+ 7610=>602, 7611=>602, 7612=>602, 7613=>602, 7614=>602, 7615=>602, 7680=>602, 7681=>602, 7682=>602, 7683=>602, 7684=>602, 7685=>602, 7686=>602, 7687=>602, 7688=>602, 7689=>602,
+ 7690=>602, 7691=>602, 7692=>602, 7693=>602, 7694=>602, 7695=>602, 7696=>602, 7697=>602, 7698=>602, 7699=>602, 7704=>602, 7705=>602, 7706=>602, 7707=>602, 7708=>602, 7709=>602,
+ 7710=>602, 7711=>602, 7712=>602, 7713=>602, 7714=>602, 7715=>602, 7716=>602, 7717=>602, 7720=>602, 7721=>602, 7722=>602, 7723=>602, 7724=>602, 7725=>602, 7728=>602, 7729=>602,
+ 7730=>602, 7731=>602, 7732=>602, 7733=>602, 7734=>602, 7735=>602, 7736=>602, 7737=>602, 7738=>602, 7739=>602, 7740=>602, 7741=>602, 7742=>602, 7743=>602, 7744=>602, 7745=>602,
+ 7746=>602, 7747=>602, 7748=>602, 7749=>602, 7750=>602, 7751=>602, 7752=>602, 7753=>602, 7754=>602, 7755=>602, 7766=>602, 7767=>602, 7768=>602, 7769=>602, 7770=>602, 7771=>602,
+ 7772=>602, 7773=>602, 7774=>602, 7775=>602, 7776=>602, 7777=>602, 7778=>602, 7779=>602, 7784=>602, 7785=>602, 7786=>602, 7787=>602, 7788=>602, 7789=>602, 7790=>602, 7791=>602,
+ 7792=>602, 7793=>602, 7794=>602, 7795=>602, 7796=>602, 7797=>602, 7798=>602, 7799=>602, 7806=>602, 7807=>602, 7808=>602, 7809=>602, 7810=>602, 7811=>602, 7812=>602, 7813=>602,
+ 7814=>602, 7815=>602, 7816=>602, 7817=>602, 7818=>602, 7819=>602, 7822=>602, 7823=>602, 7826=>602, 7827=>602, 7828=>602, 7829=>602, 7830=>602, 7835=>602, 7840=>602, 7841=>602,
+ 7856=>602, 7857=>602, 7864=>602, 7865=>602, 7868=>602, 7869=>602, 7882=>602, 7883=>602, 7884=>602, 7885=>602, 7908=>602, 7909=>602, 7922=>602, 7923=>602, 7924=>602, 7925=>602,
+ 7928=>602, 7929=>602, 7936=>602, 7937=>602, 7938=>602, 7939=>602, 7940=>602, 7941=>602, 7942=>602, 7943=>602, 7944=>602, 7945=>602, 7946=>602, 7947=>602, 7948=>602, 7949=>602,
+ 7950=>602, 7951=>602, 7952=>602, 7953=>602, 7954=>602, 7955=>602, 7956=>602, 7957=>602, 7960=>602, 7961=>602, 7962=>602, 7963=>602, 7964=>602, 7965=>602, 7968=>602, 7969=>602,
+ 7970=>602, 7971=>602, 7972=>602, 7973=>602, 7974=>602, 7975=>602, 7976=>602, 7977=>602, 7978=>602, 7979=>602, 7980=>602, 7981=>602, 7982=>602, 7983=>602, 7984=>602, 7985=>602,
+ 7986=>602, 7987=>602, 7988=>602, 7989=>602, 7990=>602, 7991=>602, 7992=>602, 7993=>602, 7994=>602, 7995=>602, 7996=>602, 7997=>602, 7998=>602, 7999=>602, 8000=>602, 8001=>602,
+ 8002=>602, 8003=>602, 8004=>602, 8005=>602, 8008=>602, 8009=>602, 8010=>602, 8011=>602, 8012=>602, 8013=>602, 8016=>602, 8017=>602, 8018=>602, 8019=>602, 8020=>602, 8021=>602,
+ 8022=>602, 8023=>602, 8025=>602, 8027=>602, 8029=>602, 8031=>602, 8032=>602, 8033=>602, 8034=>602, 8035=>602, 8036=>602, 8037=>602, 8038=>602, 8039=>602, 8040=>602, 8041=>602,
+ 8042=>602, 8043=>602, 8044=>602, 8045=>602, 8046=>602, 8047=>602, 8048=>602, 8049=>602, 8050=>602, 8051=>602, 8052=>602, 8053=>602, 8054=>602, 8055=>602, 8056=>602, 8057=>602,
+ 8058=>602, 8059=>602, 8060=>602, 8061=>602, 8064=>602, 8065=>602, 8066=>602, 8067=>602, 8068=>602, 8069=>602, 8070=>602, 8071=>602, 8072=>602, 8073=>602, 8074=>602, 8075=>602,
+ 8076=>602, 8077=>602, 8078=>602, 8079=>602, 8080=>602, 8081=>602, 8082=>602, 8083=>602, 8084=>602, 8085=>602, 8086=>602, 8087=>602, 8088=>602, 8089=>602, 8090=>602, 8091=>602,
+ 8092=>602, 8093=>602, 8094=>602, 8095=>602, 8096=>602, 8097=>602, 8098=>602, 8099=>602, 8100=>602, 8101=>602, 8102=>602, 8103=>602, 8104=>602, 8105=>602, 8106=>602, 8107=>602,
+ 8108=>602, 8109=>602, 8110=>602, 8111=>602, 8112=>602, 8113=>602, 8114=>602, 8115=>602, 8116=>602, 8118=>602, 8119=>602, 8120=>602, 8121=>602, 8122=>602, 8123=>602, 8124=>602,
+ 8125=>602, 8126=>602, 8127=>602, 8128=>602, 8129=>602, 8130=>602, 8131=>602, 8132=>602, 8134=>602, 8135=>602, 8136=>602, 8137=>602, 8138=>602, 8139=>602, 8140=>602, 8141=>602,
+ 8142=>602, 8143=>602, 8144=>602, 8145=>602, 8146=>602, 8147=>602, 8150=>602, 8151=>602, 8152=>602, 8153=>602, 8154=>602, 8155=>602, 8157=>602, 8158=>602, 8159=>602, 8160=>602,
+ 8161=>602, 8162=>602, 8163=>602, 8164=>602, 8165=>602, 8166=>602, 8167=>602, 8168=>602, 8169=>602, 8170=>602, 8171=>602, 8172=>602, 8173=>602, 8174=>602, 8175=>602, 8178=>602,
+ 8179=>602, 8180=>602, 8182=>602, 8183=>602, 8184=>602, 8185=>602, 8186=>602, 8187=>602, 8188=>602, 8189=>602, 8190=>602, 8192=>602, 8193=>602, 8194=>602, 8195=>602, 8196=>602,
+ 8197=>602, 8198=>602, 8199=>602, 8200=>602, 8201=>602, 8202=>602, 8208=>602, 8209=>602, 8210=>602, 8213=>602, 8215=>602, 8219=>602, 8223=>602, 8227=>602, 8239=>602, 8241=>602,
+ 8252=>602, 8253=>602, 8254=>602, 8261=>602, 8262=>602, 8263=>602, 8264=>602, 8265=>602, 8287=>602, 8304=>602, 8305=>602, 8308=>602, 8309=>602, 8310=>602, 8311=>602, 8312=>602,
+ 8313=>602, 8314=>602, 8315=>602, 8316=>602, 8317=>602, 8318=>602, 8319=>602, 8320=>602, 8321=>602, 8322=>602, 8323=>602, 8324=>602, 8325=>602, 8326=>602, 8327=>602, 8328=>602,
+ 8329=>602, 8330=>602, 8331=>602, 8332=>602, 8333=>602, 8334=>602, 8336=>602, 8337=>602, 8338=>602, 8339=>602, 8340=>602, 8358=>602, 8369=>602, 8372=>602, 8373=>602, 8450=>602,
+ 8462=>602, 8470=>602, 8486=>602, 8490=>602, 8491=>602, 8531=>602, 8532=>602, 8533=>602, 8534=>602, 8535=>602, 8536=>602, 8537=>602, 8538=>602, 8539=>602, 8540=>602, 8541=>602,
+ 8542=>602, 8543=>602, 8592=>602, 8593=>602, 8594=>602, 8595=>602, 8596=>602, 8597=>602, 8598=>602, 8599=>602, 8600=>602, 8601=>602, 8602=>602, 8603=>602, 8604=>602, 8605=>602,
+ 8606=>602, 8607=>602, 8608=>602, 8609=>602, 8610=>602, 8611=>602, 8612=>602, 8613=>602, 8614=>602, 8615=>602, 8616=>602, 8617=>602, 8618=>602, 8619=>602, 8620=>602, 8621=>602,
+ 8622=>602, 8623=>602, 8624=>602, 8625=>602, 8626=>602, 8627=>602, 8628=>602, 8629=>602, 8630=>602, 8631=>602, 8632=>602, 8633=>602, 8634=>602, 8635=>602, 8636=>602, 8637=>602,
+ 8638=>602, 8639=>602, 8640=>602, 8641=>602, 8642=>602, 8643=>602, 8644=>602, 8645=>602, 8646=>602, 8647=>602, 8648=>602, 8649=>602, 8650=>602, 8651=>602, 8652=>602, 8653=>602,
+ 8654=>602, 8655=>602, 8656=>602, 8657=>602, 8658=>602, 8659=>602, 8660=>602, 8661=>602, 8662=>602, 8663=>602, 8664=>602, 8665=>602, 8666=>602, 8667=>602, 8668=>602, 8669=>602,
+ 8670=>602, 8671=>602, 8672=>602, 8673=>602, 8674=>602, 8675=>602, 8676=>602, 8677=>602, 8678=>602, 8679=>602, 8680=>602, 8681=>602, 8682=>602, 8683=>602, 8684=>602, 8685=>602,
+ 8686=>602, 8687=>602, 8688=>602, 8689=>602, 8690=>602, 8691=>602, 8692=>602, 8693=>602, 8694=>602, 8695=>602, 8696=>602, 8697=>602, 8698=>602, 8699=>602, 8700=>602, 8701=>602,
+ 8702=>602, 8703=>602, 8706=>602, 8709=>602, 8710=>602, 8711=>602, 8712=>602, 8713=>602, 8714=>602, 8715=>602, 8716=>602, 8717=>602, 8719=>602, 8721=>602, 8722=>602, 8723=>602,
+ 8725=>602, 8727=>602, 8728=>602, 8729=>602, 8730=>602, 8733=>602, 8734=>602, 8735=>602, 8736=>602, 8743=>602, 8744=>602, 8745=>602, 8746=>602, 8747=>602, 8748=>602, 8749=>602,
+ 8760=>602, 8761=>602, 8762=>602, 8763=>602, 8764=>602, 8765=>602, 8769=>602, 8770=>602, 8771=>602, 8772=>602, 8773=>602, 8774=>602, 8775=>602, 8776=>602, 8777=>602, 8778=>602,
+ 8779=>602, 8780=>602, 8781=>602, 8782=>602, 8783=>602, 8784=>602, 8785=>602, 8786=>602, 8787=>602, 8788=>602, 8789=>602, 8790=>602, 8791=>602, 8792=>602, 8793=>602, 8794=>602,
+ 8795=>602, 8796=>602, 8797=>602, 8798=>602, 8799=>602, 8800=>602, 8801=>602, 8802=>602, 8803=>602, 8804=>602, 8805=>602, 8806=>602, 8807=>602, 8808=>602, 8809=>602, 8813=>602,
+ 8814=>602, 8815=>602, 8816=>602, 8817=>602, 8818=>602, 8819=>602, 8820=>602, 8821=>602, 8822=>602, 8823=>602, 8824=>602, 8825=>602, 8826=>602, 8827=>602, 8828=>602, 8829=>602,
+ 8830=>602, 8831=>602, 8832=>602, 8833=>602, 8834=>602, 8835=>602, 8836=>602, 8837=>602, 8838=>602, 8839=>602, 8840=>602, 8841=>602, 8842=>602, 8843=>602, 8847=>602, 8848=>602,
+ 8849=>602, 8850=>602, 8853=>602, 8854=>602, 8855=>602, 8856=>602, 8857=>602, 8858=>602, 8859=>602, 8860=>602, 8861=>602, 8862=>602, 8863=>602, 8864=>602, 8865=>602, 8901=>602,
+ 8902=>602, 8909=>602, 8922=>602, 8923=>602, 8924=>602, 8925=>602, 8926=>602, 8927=>602, 8928=>602, 8929=>602, 8930=>602, 8931=>602, 8932=>602, 8933=>602, 8934=>602, 8935=>602,
+ 8936=>602, 8937=>602, 8943=>602, 8960=>602, 8961=>602, 8962=>602, 8963=>602, 8964=>602, 8965=>602, 8966=>602, 8968=>602, 8969=>602, 8970=>602, 8971=>602, 8972=>602, 8973=>602,
+ 8974=>602, 8975=>602, 8976=>602, 8977=>602, 8978=>602, 8979=>602, 8980=>602, 8981=>602, 8984=>602, 8985=>602, 8988=>602, 8989=>602, 8990=>602, 8991=>602, 8992=>602, 8993=>602,
+ 8997=>602, 8998=>602, 8999=>602, 9000=>602, 9003=>602, 9013=>602, 9015=>602, 9016=>602, 9017=>602, 9018=>602, 9019=>602, 9020=>602, 9021=>602, 9022=>602, 9025=>602, 9026=>602,
+ 9027=>602, 9028=>602, 9031=>602, 9032=>602, 9033=>602, 9035=>602, 9036=>602, 9037=>602, 9040=>602, 9042=>602, 9043=>602, 9044=>602, 9047=>602, 9048=>602, 9049=>602, 9050=>602,
+ 9051=>602, 9052=>602, 9054=>602, 9055=>602, 9056=>602, 9059=>602, 9060=>602, 9061=>602, 9064=>602, 9065=>602, 9067=>602, 9068=>602, 9069=>602, 9070=>602, 9071=>602, 9072=>602,
+ 9075=>602, 9076=>602, 9077=>602, 9078=>602, 9079=>602, 9080=>602, 9081=>602, 9082=>602, 9085=>602, 9088=>602, 9089=>602, 9090=>602, 9091=>602, 9096=>602, 9097=>602, 9098=>602,
+ 9099=>602, 9109=>602, 9115=>602, 9116=>602, 9117=>602, 9118=>602, 9119=>602, 9120=>602, 9121=>602, 9122=>602, 9123=>602, 9124=>602, 9125=>602, 9126=>602, 9127=>602, 9128=>602,
+ 9129=>602, 9130=>602, 9131=>602, 9132=>602, 9133=>602, 9134=>602, 9166=>602, 9167=>602, 9251=>602, 9600=>602, 9601=>602, 9602=>602, 9603=>602, 9604=>602, 9605=>602, 9606=>602,
+ 9607=>602, 9608=>602, 9609=>602, 9610=>602, 9611=>602, 9612=>602, 9613=>602, 9614=>602, 9615=>602, 9616=>602, 9617=>602, 9618=>602, 9619=>602, 9620=>602, 9621=>602, 9622=>602,
+ 9623=>602, 9624=>602, 9625=>602, 9626=>602, 9627=>602, 9628=>602, 9629=>602, 9630=>602, 9631=>602, 9632=>602, 9633=>602, 9634=>602, 9635=>602, 9636=>602, 9637=>602, 9638=>602,
+ 9639=>602, 9640=>602, 9641=>602, 9642=>602, 9643=>602, 9644=>602, 9645=>602, 9646=>602, 9647=>602, 9648=>602, 9649=>602, 9650=>602, 9651=>602, 9652=>602, 9653=>602, 9654=>602,
+ 9655=>602, 9656=>602, 9657=>602, 9658=>602, 9659=>602, 9660=>602, 9661=>602, 9662=>602, 9663=>602, 9664=>602, 9665=>602, 9666=>602, 9667=>602, 9668=>602, 9669=>602, 9670=>602,
+ 9671=>602, 9672=>602, 9673=>602, 9674=>602, 9675=>602, 9676=>602, 9677=>602, 9678=>602, 9679=>602, 9680=>602, 9681=>602, 9682=>602, 9683=>602, 9684=>602, 9685=>602, 9686=>602,
+ 9687=>602, 9688=>602, 9689=>602, 9690=>602, 9691=>602, 9692=>602, 9693=>602, 9694=>602, 9695=>602, 9696=>602, 9697=>602, 9698=>602, 9699=>602, 9700=>602, 9701=>602, 9702=>602,
+ 9703=>602, 9704=>602, 9705=>602, 9706=>602, 9707=>602, 9708=>602, 9709=>602, 9710=>602, 9711=>602, 9712=>602, 9713=>602, 9714=>602, 9715=>602, 9716=>602, 9717=>602, 9718=>602,
+ 9719=>602, 9720=>602, 9721=>602, 9722=>602, 9723=>602, 9724=>602, 9725=>602, 9726=>602, 9727=>602, 9728=>602, 9784=>602, 9785=>602, 9786=>602, 9787=>602, 9788=>602, 9791=>602,
+ 9792=>602, 9793=>602, 9794=>602, 9795=>602, 9796=>602, 9797=>602, 9798=>602, 9799=>602, 9824=>602, 9825=>602, 9826=>602, 9827=>602, 9828=>602, 9829=>602, 9830=>602, 9831=>602,
+ 9833=>602, 9834=>602, 9835=>602, 9836=>602, 9837=>602, 9838=>602, 9839=>602, 10208=>602, 10216=>602, 10217=>602, 10731=>602, 10746=>602, 10747=>602, 10799=>602, 11026=>602, 11027=>602,
+ 11028=>602, 11029=>602, 11030=>602, 11031=>602, 11032=>602, 11033=>602, 11034=>602, 11381=>602, 11382=>602, 11383=>602, 11800=>602, 11822=>602, 63173=>602, 64257=>602, 64258=>602, 65529=>602,
+ 65530=>602, 65531=>602, 65532=>602, 65533=>602);
+$enc='';
+$diff='';
+$file='dejavusansmonobi.z';
+$ctg='dejavusansmonobi.ctg.z';
+$originalsize=211948;
+?>
diff --git a/lib/tcpdf/fonts/dejavusansmonobi.z b/lib/tcpdf/fonts/dejavusansmonobi.z
new file mode 100644
index 0000000000..5879e95dfd
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansmonobi.z differ
diff --git a/lib/tcpdf/fonts/dejavusansmonoi.ctg.z b/lib/tcpdf/fonts/dejavusansmonoi.ctg.z
new file mode 100644
index 0000000000..b6bacb61f7
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansmonoi.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavusansmonoi.php b/lib/tcpdf/fonts/dejavusansmonoi.php
new file mode 100644
index 0000000000..3d9920eace
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavusansmonoi.php
@@ -0,0 +1,160 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>97,'FontBBox'=>'[-406 -375 746 1028]','ItalicAngle'=>-11,'StemV'=>70,'MissingWidth'=>602);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>602, 32=>602, 33=>602, 34=>602, 35=>602, 36=>602, 37=>602, 38=>602, 39=>602, 40=>602, 41=>602, 42=>602, 43=>602, 44=>602, 45=>602, 46=>602,
+ 47=>602, 48=>602, 49=>602, 50=>602, 51=>602, 52=>602, 53=>602, 54=>602, 55=>602, 56=>602, 57=>602, 58=>602, 59=>602, 60=>602, 61=>602, 62=>602,
+ 63=>602, 64=>602, 65=>602, 66=>602, 67=>602, 68=>602, 69=>602, 70=>602, 71=>602, 72=>602, 73=>602, 74=>602, 75=>602, 76=>602, 77=>602, 78=>602,
+ 79=>602, 80=>602, 81=>602, 82=>602, 83=>602, 84=>602, 85=>602, 86=>602, 87=>602, 88=>602, 89=>602, 90=>602, 91=>602, 92=>602, 93=>602, 94=>602,
+ 95=>602, 96=>602, 97=>602, 98=>602, 99=>602, 100=>602, 101=>602, 102=>602, 103=>602, 104=>602, 105=>602, 106=>602, 107=>602, 108=>602, 109=>602, 110=>602,
+ 111=>602, 112=>602, 113=>602, 114=>602, 115=>602, 116=>602, 117=>602, 118=>602, 119=>602, 120=>602, 121=>602, 122=>602, 123=>602, 124=>602, 125=>602, 126=>602,
+ 8364=>602, 1027=>602, 8218=>602, 402=>602, 8222=>602, 8230=>602, 8224=>602, 8225=>602, 710=>602, 8240=>602, 352=>602, 8249=>602, 338=>602, 1036=>602, 381=>602, 1039=>602,
+ 8216=>602, 8217=>602, 8220=>602, 8221=>602, 8226=>602, 8211=>602, 8212=>602, 732=>602, 8482=>602, 353=>602, 8250=>602, 339=>602, 1116=>602, 382=>602, 376=>602, 160=>602,
+ 161=>602, 162=>602, 163=>602, 164=>602, 165=>602, 166=>602, 167=>602, 168=>602, 169=>602, 170=>602, 171=>602, 172=>602, 173=>602, 174=>602, 175=>602, 176=>602,
+ 177=>602, 178=>602, 179=>602, 180=>602, 181=>602, 182=>602, 183=>602, 184=>602, 185=>602, 186=>602, 187=>602, 188=>602, 189=>602, 190=>602, 191=>602, 192=>602,
+ 193=>602, 194=>602, 195=>602, 196=>602, 197=>602, 198=>602, 199=>602, 200=>602, 201=>602, 202=>602, 203=>602, 204=>602, 205=>602, 206=>602, 207=>602, 208=>602,
+ 209=>602, 210=>602, 211=>602, 212=>602, 213=>602, 214=>602, 215=>602, 216=>602, 217=>602, 218=>602, 219=>602, 220=>602, 221=>602, 222=>602, 223=>602, 224=>602,
+ 225=>602, 226=>602, 227=>602, 228=>602, 229=>602, 230=>602, 231=>602, 232=>602, 233=>602, 234=>602, 235=>602, 236=>602, 237=>602, 238=>602, 239=>602, 240=>602,
+ 241=>602, 242=>602, 243=>602, 244=>602, 245=>602, 246=>602, 247=>602, 248=>602, 249=>602, 250=>602, 251=>602, 252=>602, 253=>602, 254=>602, 255=>602, 256=>602,
+ 257=>602, 258=>602, 259=>602, 260=>602, 261=>602, 262=>602, 263=>602, 264=>602, 265=>602, 266=>602, 267=>602, 268=>602, 269=>602, 270=>602, 271=>602, 272=>602,
+ 273=>602, 274=>602, 275=>602, 276=>602, 277=>602, 278=>602, 279=>602, 280=>602, 281=>602, 282=>602, 283=>602, 284=>602, 285=>602, 286=>602, 287=>602, 288=>602,
+ 289=>602, 290=>602, 291=>602, 292=>602, 293=>602, 294=>602, 295=>602, 296=>602, 297=>602, 298=>602, 299=>602, 300=>602, 301=>602, 302=>602, 303=>602, 304=>602,
+ 305=>602, 306=>602, 307=>602, 308=>602, 309=>602, 310=>602, 311=>602, 312=>602, 313=>602, 314=>602, 315=>602, 316=>602, 317=>602, 318=>602, 319=>602, 320=>602,
+ 321=>602, 322=>602, 323=>602, 324=>602, 325=>602, 326=>602, 327=>602, 328=>602, 329=>602, 330=>602, 331=>602, 332=>602, 333=>602, 334=>602, 335=>602, 336=>602,
+ 337=>602, 340=>602, 341=>602, 342=>602, 343=>602, 344=>602, 345=>602, 346=>602, 347=>602, 348=>602, 349=>602, 350=>602, 351=>602, 354=>602, 355=>602, 356=>602,
+ 357=>602, 358=>602, 359=>602, 360=>602, 361=>602, 362=>602, 363=>602, 364=>602, 365=>602, 366=>602, 367=>602, 368=>602, 369=>602, 370=>602, 371=>602, 372=>602,
+ 373=>602, 374=>602, 375=>602, 377=>602, 378=>602, 379=>602, 380=>602, 383=>602, 384=>602, 385=>602, 386=>602, 387=>602, 388=>602, 389=>602, 390=>602, 391=>602,
+ 392=>602, 393=>602, 394=>602, 395=>602, 396=>602, 397=>602, 398=>602, 399=>602, 400=>602, 401=>602, 403=>602, 404=>602, 405=>602, 406=>602, 407=>602, 408=>602,
+ 409=>602, 410=>602, 411=>602, 412=>602, 413=>602, 414=>602, 415=>602, 416=>602, 417=>602, 418=>602, 419=>602, 420=>602, 421=>602, 422=>602, 423=>602, 424=>602,
+ 425=>602, 426=>602, 427=>602, 428=>602, 429=>602, 430=>602, 431=>602, 432=>602, 433=>602, 434=>602, 435=>602, 436=>602, 437=>602, 438=>602, 439=>602, 440=>602,
+ 441=>602, 443=>602, 444=>602, 445=>602, 446=>602, 448=>602, 449=>602, 450=>602, 451=>602, 461=>602, 462=>602, 463=>602, 464=>602, 465=>602, 466=>602, 467=>602,
+ 468=>602, 469=>602, 470=>602, 471=>602, 472=>602, 473=>602, 474=>602, 475=>602, 476=>602, 477=>602, 479=>602, 480=>602, 481=>602, 482=>602, 483=>602, 486=>602,
+ 487=>602, 488=>602, 489=>602, 490=>602, 491=>602, 492=>602, 493=>602, 494=>602, 495=>602, 500=>602, 501=>602, 502=>602, 504=>602, 505=>602, 508=>602, 509=>602,
+ 510=>602, 511=>602, 512=>602, 513=>602, 514=>602, 515=>602, 516=>602, 517=>602, 518=>602, 519=>602, 520=>602, 521=>602, 522=>602, 523=>602, 524=>602, 525=>602,
+ 526=>602, 527=>602, 528=>602, 529=>602, 530=>602, 531=>602, 532=>602, 533=>602, 534=>602, 535=>602, 536=>602, 537=>602, 538=>602, 539=>602, 542=>602, 543=>602,
+ 545=>602, 548=>602, 549=>602, 550=>602, 551=>602, 552=>602, 553=>602, 554=>602, 555=>602, 556=>602, 557=>602, 558=>602, 559=>602, 560=>602, 561=>602, 562=>602,
+ 563=>602, 564=>602, 565=>602, 566=>602, 567=>602, 568=>602, 569=>602, 570=>602, 571=>602, 572=>602, 573=>602, 574=>602, 575=>602, 576=>602, 577=>602, 581=>602,
+ 592=>602, 593=>602, 594=>602, 595=>602, 596=>602, 597=>602, 598=>602, 599=>602, 600=>602, 601=>602, 602=>602, 603=>602, 604=>602, 605=>602, 606=>602, 607=>602,
+ 608=>602, 609=>602, 610=>602, 611=>602, 612=>602, 613=>602, 614=>602, 615=>602, 616=>602, 617=>602, 618=>602, 619=>602, 620=>602, 621=>602, 622=>602, 623=>602,
+ 624=>602, 625=>602, 626=>602, 627=>602, 628=>602, 629=>602, 630=>602, 631=>602, 632=>602, 633=>602, 634=>602, 635=>602, 636=>602, 637=>602, 638=>602, 639=>602,
+ 640=>602, 641=>602, 642=>602, 643=>602, 644=>602, 645=>602, 646=>602, 647=>602, 648=>602, 649=>602, 650=>602, 651=>602, 652=>602, 653=>602, 654=>602, 655=>602,
+ 656=>602, 657=>602, 658=>602, 659=>602, 660=>602, 661=>602, 662=>602, 663=>602, 664=>602, 665=>602, 666=>602, 667=>602, 668=>602, 669=>602, 670=>602, 671=>602,
+ 672=>602, 673=>602, 674=>602, 675=>602, 676=>602, 677=>602, 678=>602, 679=>602, 680=>602, 681=>602, 682=>602, 683=>602, 684=>602, 685=>602, 686=>602, 687=>602,
+ 688=>602, 689=>602, 690=>602, 691=>602, 692=>602, 693=>602, 694=>602, 695=>602, 696=>602, 697=>602, 699=>602, 700=>602, 701=>602, 702=>602, 703=>602, 704=>602,
+ 705=>602, 711=>602, 712=>602, 713=>602, 716=>602, 717=>602, 720=>602, 721=>602, 722=>602, 723=>602, 726=>602, 728=>602, 729=>602, 730=>602, 731=>602, 733=>602,
+ 734=>602, 736=>602, 737=>602, 738=>602, 739=>602, 740=>602, 741=>602, 742=>602, 743=>602, 744=>602, 745=>602, 755=>602, 768=>602, 769=>602, 770=>602, 771=>602,
+ 772=>602, 773=>602, 774=>602, 775=>602, 776=>602, 777=>602, 778=>602, 779=>602, 780=>602, 781=>602, 782=>602, 783=>602, 784=>602, 785=>602, 786=>602, 787=>602,
+ 788=>602, 789=>602, 790=>602, 791=>602, 792=>602, 793=>602, 794=>602, 795=>602, 796=>602, 797=>602, 798=>602, 799=>602, 800=>602, 801=>602, 802=>602, 803=>602,
+ 804=>602, 805=>602, 806=>602, 807=>602, 808=>602, 809=>602, 810=>602, 811=>602, 812=>602, 813=>602, 814=>602, 815=>602, 816=>602, 817=>602, 818=>602, 819=>602,
+ 820=>602, 821=>602, 822=>602, 823=>602, 824=>602, 825=>602, 826=>602, 827=>602, 828=>602, 829=>602, 830=>602, 831=>602, 835=>602, 856=>602, 865=>602, 884=>602,
+ 885=>602, 890=>602, 894=>602, 900=>602, 901=>602, 902=>602, 903=>602, 904=>602, 905=>602, 906=>602, 908=>602, 910=>602, 911=>602, 912=>602, 913=>602, 914=>602,
+ 915=>602, 916=>602, 917=>602, 918=>602, 919=>602, 920=>602, 921=>602, 922=>602, 923=>602, 924=>602, 925=>602, 926=>602, 927=>602, 928=>602, 929=>602, 931=>602,
+ 932=>602, 933=>602, 934=>602, 935=>602, 936=>602, 937=>602, 938=>602, 939=>602, 940=>602, 941=>602, 942=>602, 943=>602, 944=>602, 945=>602, 946=>602, 947=>602,
+ 948=>602, 949=>602, 950=>602, 951=>602, 952=>602, 953=>602, 954=>602, 955=>602, 956=>602, 957=>602, 958=>602, 959=>602, 960=>602, 961=>602, 962=>602, 963=>602,
+ 964=>602, 965=>602, 966=>602, 967=>602, 968=>602, 969=>602, 970=>602, 971=>602, 972=>602, 973=>602, 974=>602, 976=>602, 977=>602, 978=>602, 979=>602, 980=>602,
+ 981=>602, 982=>602, 983=>602, 984=>602, 985=>602, 986=>602, 987=>602, 988=>602, 989=>602, 990=>602, 991=>602, 992=>602, 993=>602, 1008=>602, 1009=>602, 1010=>602,
+ 1011=>602, 1012=>602, 1013=>602, 1014=>602, 1015=>602, 1016=>602, 1017=>602, 1018=>602, 1019=>602, 1020=>602, 1021=>602, 1022=>602, 1023=>602, 1024=>602, 1025=>602, 1026=>602,
+ 1028=>602, 1029=>602, 1030=>602, 1031=>602, 1032=>602, 1033=>602, 1034=>602, 1035=>602, 1037=>602, 1038=>602, 1040=>602, 1041=>602, 1042=>602, 1043=>602, 1044=>602, 1045=>602,
+ 1046=>602, 1047=>602, 1048=>602, 1049=>602, 1050=>602, 1051=>602, 1052=>602, 1053=>602, 1054=>602, 1055=>602, 1056=>602, 1057=>602, 1058=>602, 1059=>602, 1060=>602, 1061=>602,
+ 1062=>602, 1063=>602, 1064=>602, 1065=>602, 1066=>602, 1067=>602, 1068=>602, 1069=>602, 1070=>602, 1071=>602, 1072=>602, 1073=>602, 1074=>602, 1075=>602, 1076=>602, 1077=>602,
+ 1078=>602, 1079=>602, 1080=>602, 1081=>602, 1082=>602, 1083=>602, 1084=>602, 1085=>602, 1086=>602, 1087=>602, 1088=>602, 1089=>602, 1090=>602, 1091=>602, 1092=>602, 1093=>602,
+ 1094=>602, 1095=>602, 1096=>602, 1097=>602, 1098=>602, 1099=>602, 1100=>602, 1101=>602, 1102=>602, 1103=>602, 1104=>602, 1105=>602, 1106=>602, 1107=>602, 1108=>602, 1109=>602,
+ 1110=>602, 1111=>602, 1112=>602, 1113=>602, 1114=>602, 1115=>602, 1117=>602, 1118=>602, 1119=>602, 1168=>602, 1169=>602, 1170=>602, 1171=>602, 1172=>602, 1173=>602, 1174=>602,
+ 1175=>602, 1176=>602, 1177=>602, 1178=>602, 1179=>602, 1186=>602, 1187=>602, 1194=>602, 1195=>602, 1196=>602, 1197=>602, 1198=>602, 1199=>602, 1200=>602, 1201=>602, 1202=>602,
+ 1203=>602, 1210=>602, 1211=>602, 1216=>602, 1217=>602, 1218=>602, 1219=>602, 1220=>602, 1223=>602, 1224=>602, 1227=>602, 1228=>602, 1231=>602, 1232=>602, 1233=>602, 1234=>602,
+ 1235=>602, 1236=>602, 1237=>602, 1238=>602, 1239=>602, 1240=>602, 1241=>602, 1242=>602, 1243=>602, 1244=>602, 1245=>602, 1246=>602, 1247=>602, 1248=>602, 1249=>602, 1250=>602,
+ 1251=>602, 1252=>602, 1253=>602, 1254=>602, 1255=>602, 1256=>602, 1257=>602, 1258=>602, 1259=>602, 1260=>602, 1261=>602, 1262=>602, 1263=>602, 1264=>602, 1265=>602, 1266=>602,
+ 1267=>602, 1268=>602, 1269=>602, 1270=>602, 1271=>602, 1272=>602, 1273=>602, 3713=>602, 3714=>602, 3716=>602, 3719=>602, 3720=>602, 3722=>602, 3725=>602, 3732=>602, 3733=>602,
+ 3734=>602, 3735=>602, 3737=>602, 3738=>602, 3739=>602, 3740=>602, 3741=>602, 3742=>602, 3743=>602, 3745=>602, 3746=>602, 3747=>602, 3749=>602, 3751=>602, 3754=>602, 3755=>602,
+ 3757=>602, 3758=>602, 3759=>602, 3760=>602, 3761=>602, 3762=>602, 3763=>602, 3764=>602, 3765=>602, 3766=>602, 3767=>602, 3768=>602, 3769=>602, 3771=>602, 3772=>602, 3784=>602,
+ 3785=>602, 3786=>602, 3787=>602, 3788=>602, 3789=>602, 4304=>602, 4305=>602, 4306=>602, 4307=>602, 4308=>602, 4309=>602, 4310=>602, 4311=>602, 4312=>602, 4313=>602, 4314=>602,
+ 4315=>602, 4316=>602, 4317=>602, 4318=>602, 4319=>602, 4320=>602, 4321=>602, 4322=>602, 4323=>602, 4324=>602, 4325=>602, 4326=>602, 4327=>602, 4328=>602, 4329=>602, 4330=>602,
+ 4331=>602, 4332=>602, 4333=>602, 4334=>602, 4335=>602, 4336=>602, 4337=>602, 4338=>602, 4339=>602, 4340=>602, 4341=>602, 4342=>602, 4343=>602, 4344=>602, 4345=>602, 4346=>602,
+ 4347=>602, 4348=>602, 7426=>602, 7432=>602, 7433=>602, 7444=>602, 7446=>602, 7447=>602, 7453=>602, 7454=>602, 7455=>602, 7468=>602, 7469=>602, 7470=>602, 7472=>602, 7473=>602,
+ 7474=>602, 7475=>602, 7476=>602, 7477=>602, 7478=>602, 7479=>602, 7480=>602, 7481=>602, 7482=>602, 7483=>602, 7484=>602, 7485=>602, 7486=>602, 7487=>602, 7488=>602, 7489=>602,
+ 7490=>602, 7491=>602, 7492=>602, 7493=>602, 7494=>602, 7495=>602, 7496=>602, 7497=>602, 7498=>602, 7499=>602, 7500=>602, 7501=>602, 7502=>602, 7503=>602, 7504=>602, 7505=>602,
+ 7506=>602, 7507=>602, 7508=>602, 7509=>602, 7510=>602, 7511=>602, 7512=>602, 7513=>602, 7514=>602, 7515=>602, 7522=>602, 7523=>602, 7524=>602, 7525=>602, 7543=>602, 7544=>602,
+ 7547=>602, 7557=>602, 7579=>602, 7580=>602, 7581=>602, 7582=>602, 7583=>602, 7584=>602, 7585=>602, 7586=>602, 7587=>602, 7588=>602, 7589=>602, 7590=>602, 7591=>602, 7592=>602,
+ 7593=>602, 7594=>602, 7595=>602, 7596=>602, 7597=>602, 7598=>602, 7599=>602, 7600=>602, 7601=>602, 7602=>602, 7603=>602, 7604=>602, 7605=>602, 7606=>602, 7607=>602, 7609=>602,
+ 7610=>602, 7611=>602, 7612=>602, 7613=>602, 7614=>602, 7615=>602, 7680=>602, 7681=>602, 7682=>602, 7683=>602, 7684=>602, 7685=>602, 7686=>602, 7687=>602, 7688=>602, 7689=>602,
+ 7690=>602, 7691=>602, 7692=>602, 7693=>602, 7694=>602, 7695=>602, 7696=>602, 7697=>602, 7698=>602, 7699=>602, 7704=>602, 7705=>602, 7706=>602, 7707=>602, 7708=>602, 7709=>602,
+ 7710=>602, 7711=>602, 7712=>602, 7713=>602, 7714=>602, 7715=>602, 7716=>602, 7717=>602, 7720=>602, 7721=>602, 7722=>602, 7723=>602, 7724=>602, 7725=>602, 7728=>602, 7729=>602,
+ 7730=>602, 7731=>602, 7732=>602, 7733=>602, 7734=>602, 7735=>602, 7736=>602, 7737=>602, 7738=>602, 7739=>602, 7740=>602, 7741=>602, 7742=>602, 7743=>602, 7744=>602, 7745=>602,
+ 7746=>602, 7747=>602, 7748=>602, 7749=>602, 7750=>602, 7751=>602, 7752=>602, 7753=>602, 7754=>602, 7755=>602, 7766=>602, 7767=>602, 7768=>602, 7769=>602, 7770=>602, 7771=>602,
+ 7772=>602, 7773=>602, 7774=>602, 7775=>602, 7776=>602, 7777=>602, 7778=>602, 7779=>602, 7784=>602, 7785=>602, 7786=>602, 7787=>602, 7788=>602, 7789=>602, 7790=>602, 7791=>602,
+ 7792=>602, 7793=>602, 7794=>602, 7795=>602, 7796=>602, 7797=>602, 7798=>602, 7799=>602, 7806=>602, 7807=>602, 7808=>602, 7809=>602, 7810=>602, 7811=>602, 7812=>602, 7813=>602,
+ 7814=>602, 7815=>602, 7816=>602, 7817=>602, 7818=>602, 7819=>602, 7822=>602, 7823=>602, 7826=>602, 7827=>602, 7828=>602, 7829=>602, 7830=>602, 7835=>602, 7840=>602, 7841=>602,
+ 7856=>602, 7857=>602, 7864=>602, 7865=>602, 7868=>602, 7869=>602, 7882=>602, 7883=>602, 7884=>602, 7885=>602, 7908=>602, 7909=>602, 7922=>602, 7923=>602, 7924=>602, 7925=>602,
+ 7928=>602, 7929=>602, 7936=>602, 7937=>602, 7938=>602, 7939=>602, 7940=>602, 7941=>602, 7942=>602, 7943=>602, 7944=>602, 7945=>602, 7946=>602, 7947=>602, 7948=>602, 7949=>602,
+ 7950=>602, 7951=>602, 7952=>602, 7953=>602, 7954=>602, 7955=>602, 7956=>602, 7957=>602, 7960=>602, 7961=>602, 7962=>602, 7963=>602, 7964=>602, 7965=>602, 7968=>602, 7969=>602,
+ 7970=>602, 7971=>602, 7972=>602, 7973=>602, 7974=>602, 7975=>602, 7976=>602, 7977=>602, 7978=>602, 7979=>602, 7980=>602, 7981=>602, 7982=>602, 7983=>602, 7984=>602, 7985=>602,
+ 7986=>602, 7987=>602, 7988=>602, 7989=>602, 7990=>602, 7991=>602, 7992=>602, 7993=>602, 7994=>602, 7995=>602, 7996=>602, 7997=>602, 7998=>602, 7999=>602, 8000=>602, 8001=>602,
+ 8002=>602, 8003=>602, 8004=>602, 8005=>602, 8008=>602, 8009=>602, 8010=>602, 8011=>602, 8012=>602, 8013=>602, 8016=>602, 8017=>602, 8018=>602, 8019=>602, 8020=>602, 8021=>602,
+ 8022=>602, 8023=>602, 8025=>602, 8027=>602, 8029=>602, 8031=>602, 8032=>602, 8033=>602, 8034=>602, 8035=>602, 8036=>602, 8037=>602, 8038=>602, 8039=>602, 8040=>602, 8041=>602,
+ 8042=>602, 8043=>602, 8044=>602, 8045=>602, 8046=>602, 8047=>602, 8048=>602, 8049=>602, 8050=>602, 8051=>602, 8052=>602, 8053=>602, 8054=>602, 8055=>602, 8056=>602, 8057=>602,
+ 8058=>602, 8059=>602, 8060=>602, 8061=>602, 8064=>602, 8065=>602, 8066=>602, 8067=>602, 8068=>602, 8069=>602, 8070=>602, 8071=>602, 8072=>602, 8073=>602, 8074=>602, 8075=>602,
+ 8076=>602, 8077=>602, 8078=>602, 8079=>602, 8080=>602, 8081=>602, 8082=>602, 8083=>602, 8084=>602, 8085=>602, 8086=>602, 8087=>602, 8088=>602, 8089=>602, 8090=>602, 8091=>602,
+ 8092=>602, 8093=>602, 8094=>602, 8095=>602, 8096=>602, 8097=>602, 8098=>602, 8099=>602, 8100=>602, 8101=>602, 8102=>602, 8103=>602, 8104=>602, 8105=>602, 8106=>602, 8107=>602,
+ 8108=>602, 8109=>602, 8110=>602, 8111=>602, 8112=>602, 8113=>602, 8114=>602, 8115=>602, 8116=>602, 8118=>602, 8119=>602, 8120=>602, 8121=>602, 8122=>602, 8123=>602, 8124=>602,
+ 8125=>602, 8126=>602, 8127=>602, 8128=>602, 8129=>602, 8130=>602, 8131=>602, 8132=>602, 8134=>602, 8135=>602, 8136=>602, 8137=>602, 8138=>602, 8139=>602, 8140=>602, 8141=>602,
+ 8142=>602, 8143=>602, 8144=>602, 8145=>602, 8146=>602, 8147=>602, 8150=>602, 8151=>602, 8152=>602, 8153=>602, 8154=>602, 8155=>602, 8157=>602, 8158=>602, 8159=>602, 8160=>602,
+ 8161=>602, 8162=>602, 8163=>602, 8164=>602, 8165=>602, 8166=>602, 8167=>602, 8168=>602, 8169=>602, 8170=>602, 8171=>602, 8172=>602, 8173=>602, 8174=>602, 8175=>602, 8178=>602,
+ 8179=>602, 8180=>602, 8182=>602, 8183=>602, 8184=>602, 8185=>602, 8186=>602, 8187=>602, 8188=>602, 8189=>602, 8190=>602, 8192=>602, 8193=>602, 8194=>602, 8195=>602, 8196=>602,
+ 8197=>602, 8198=>602, 8199=>602, 8200=>602, 8201=>602, 8202=>602, 8208=>602, 8209=>602, 8210=>602, 8213=>602, 8215=>602, 8219=>602, 8223=>602, 8227=>602, 8239=>602, 8241=>602,
+ 8252=>602, 8253=>602, 8254=>602, 8261=>602, 8262=>602, 8263=>602, 8264=>602, 8265=>602, 8287=>602, 8304=>602, 8305=>602, 8308=>602, 8309=>602, 8310=>602, 8311=>602, 8312=>602,
+ 8313=>602, 8314=>602, 8315=>602, 8316=>602, 8317=>602, 8318=>602, 8319=>602, 8320=>602, 8321=>602, 8322=>602, 8323=>602, 8324=>602, 8325=>602, 8326=>602, 8327=>602, 8328=>602,
+ 8329=>602, 8330=>602, 8331=>602, 8332=>602, 8333=>602, 8334=>602, 8336=>602, 8337=>602, 8338=>602, 8339=>602, 8340=>602, 8358=>602, 8369=>602, 8372=>602, 8373=>602, 8450=>602,
+ 8462=>602, 8470=>602, 8486=>602, 8490=>602, 8491=>602, 8531=>602, 8532=>602, 8533=>602, 8534=>602, 8535=>602, 8536=>602, 8537=>602, 8538=>602, 8539=>602, 8540=>602, 8541=>602,
+ 8542=>602, 8543=>602, 8592=>602, 8593=>602, 8594=>602, 8595=>602, 8596=>602, 8597=>602, 8598=>602, 8599=>602, 8600=>602, 8601=>602, 8602=>602, 8603=>602, 8604=>602, 8605=>602,
+ 8606=>602, 8607=>602, 8608=>602, 8609=>602, 8610=>602, 8611=>602, 8612=>602, 8613=>602, 8614=>602, 8615=>602, 8616=>602, 8617=>602, 8618=>602, 8619=>602, 8620=>602, 8621=>602,
+ 8622=>602, 8623=>602, 8624=>602, 8625=>602, 8626=>602, 8627=>602, 8628=>602, 8629=>602, 8630=>602, 8631=>602, 8632=>602, 8633=>602, 8634=>602, 8635=>602, 8636=>602, 8637=>602,
+ 8638=>602, 8639=>602, 8640=>602, 8641=>602, 8642=>602, 8643=>602, 8644=>602, 8645=>602, 8646=>602, 8647=>602, 8648=>602, 8649=>602, 8650=>602, 8651=>602, 8652=>602, 8653=>602,
+ 8654=>602, 8655=>602, 8656=>602, 8657=>602, 8658=>602, 8659=>602, 8660=>602, 8661=>602, 8662=>602, 8663=>602, 8664=>602, 8665=>602, 8666=>602, 8667=>602, 8668=>602, 8669=>602,
+ 8670=>602, 8671=>602, 8672=>602, 8673=>602, 8674=>602, 8675=>602, 8676=>602, 8677=>602, 8678=>602, 8679=>602, 8680=>602, 8681=>602, 8682=>602, 8683=>602, 8684=>602, 8685=>602,
+ 8686=>602, 8687=>602, 8688=>602, 8689=>602, 8690=>602, 8691=>602, 8692=>602, 8693=>602, 8694=>602, 8695=>602, 8696=>602, 8697=>602, 8698=>602, 8699=>602, 8700=>602, 8701=>602,
+ 8702=>602, 8703=>602, 8706=>602, 8709=>602, 8710=>602, 8711=>602, 8712=>602, 8713=>602, 8714=>602, 8715=>602, 8716=>602, 8717=>602, 8719=>602, 8721=>602, 8722=>602, 8723=>602,
+ 8725=>602, 8727=>602, 8728=>602, 8729=>602, 8730=>602, 8733=>602, 8734=>602, 8735=>602, 8736=>602, 8743=>602, 8744=>602, 8745=>602, 8746=>602, 8747=>602, 8748=>602, 8749=>602,
+ 8760=>602, 8761=>602, 8762=>602, 8763=>602, 8764=>602, 8765=>602, 8769=>602, 8770=>602, 8771=>602, 8772=>602, 8773=>602, 8774=>602, 8775=>602, 8776=>602, 8777=>602, 8778=>602,
+ 8779=>602, 8780=>602, 8781=>602, 8782=>602, 8783=>602, 8784=>602, 8785=>602, 8786=>602, 8787=>602, 8788=>602, 8789=>602, 8790=>602, 8791=>602, 8792=>602, 8793=>602, 8794=>602,
+ 8795=>602, 8796=>602, 8797=>602, 8798=>602, 8799=>602, 8800=>602, 8801=>602, 8802=>602, 8803=>602, 8804=>602, 8805=>602, 8806=>602, 8807=>602, 8808=>602, 8809=>602, 8813=>602,
+ 8814=>602, 8815=>602, 8816=>602, 8817=>602, 8818=>602, 8819=>602, 8820=>602, 8821=>602, 8822=>602, 8823=>602, 8824=>602, 8825=>602, 8826=>602, 8827=>602, 8828=>602, 8829=>602,
+ 8830=>602, 8831=>602, 8832=>602, 8833=>602, 8834=>602, 8835=>602, 8836=>602, 8837=>602, 8838=>602, 8839=>602, 8840=>602, 8841=>602, 8842=>602, 8843=>602, 8847=>602, 8848=>602,
+ 8849=>602, 8850=>602, 8853=>602, 8854=>602, 8855=>602, 8856=>602, 8857=>602, 8858=>602, 8859=>602, 8860=>602, 8861=>602, 8862=>602, 8863=>602, 8864=>602, 8865=>602, 8901=>602,
+ 8902=>602, 8909=>602, 8922=>602, 8923=>602, 8924=>602, 8925=>602, 8926=>602, 8927=>602, 8928=>602, 8929=>602, 8930=>602, 8931=>602, 8932=>602, 8933=>602, 8934=>602, 8935=>602,
+ 8936=>602, 8937=>602, 8943=>602, 8960=>602, 8961=>602, 8962=>602, 8963=>602, 8964=>602, 8965=>602, 8966=>602, 8968=>602, 8969=>602, 8970=>602, 8971=>602, 8972=>602, 8973=>602,
+ 8974=>602, 8975=>602, 8976=>602, 8977=>602, 8978=>602, 8979=>602, 8980=>602, 8981=>602, 8984=>602, 8985=>602, 8988=>602, 8989=>602, 8990=>602, 8991=>602, 8992=>602, 8993=>602,
+ 8997=>602, 8998=>602, 8999=>602, 9000=>602, 9003=>602, 9013=>602, 9015=>602, 9016=>602, 9017=>602, 9018=>602, 9019=>602, 9020=>602, 9021=>602, 9022=>602, 9025=>602, 9026=>602,
+ 9027=>602, 9028=>602, 9031=>602, 9032=>602, 9033=>602, 9035=>602, 9036=>602, 9037=>602, 9040=>602, 9042=>602, 9043=>602, 9044=>602, 9047=>602, 9048=>602, 9049=>602, 9050=>602,
+ 9051=>602, 9052=>602, 9054=>602, 9055=>602, 9056=>602, 9059=>602, 9060=>602, 9061=>602, 9064=>602, 9065=>602, 9067=>602, 9068=>602, 9069=>602, 9070=>602, 9071=>602, 9072=>602,
+ 9075=>602, 9076=>602, 9077=>602, 9078=>602, 9079=>602, 9080=>602, 9081=>602, 9082=>602, 9085=>602, 9088=>602, 9089=>602, 9090=>602, 9091=>602, 9096=>602, 9097=>602, 9098=>602,
+ 9099=>602, 9109=>602, 9115=>602, 9116=>602, 9117=>602, 9118=>602, 9119=>602, 9120=>602, 9121=>602, 9122=>602, 9123=>602, 9124=>602, 9125=>602, 9126=>602, 9127=>602, 9128=>602,
+ 9129=>602, 9130=>602, 9131=>602, 9132=>602, 9133=>602, 9134=>602, 9166=>602, 9167=>602, 9251=>602, 9472=>602, 9473=>602, 9474=>602, 9475=>602, 9476=>602, 9477=>602, 9478=>602,
+ 9479=>602, 9480=>602, 9481=>602, 9482=>602, 9483=>602, 9484=>602, 9485=>602, 9486=>602, 9487=>602, 9488=>602, 9489=>602, 9490=>602, 9491=>602, 9492=>602, 9493=>602, 9494=>602,
+ 9495=>602, 9496=>602, 9497=>602, 9498=>602, 9499=>602, 9500=>602, 9501=>602, 9502=>602, 9503=>602, 9504=>602, 9505=>602, 9506=>602, 9507=>602, 9508=>602, 9509=>602, 9510=>602,
+ 9511=>602, 9512=>602, 9513=>602, 9514=>602, 9515=>602, 9516=>602, 9517=>602, 9518=>602, 9519=>602, 9520=>602, 9521=>602, 9522=>602, 9523=>602, 9524=>602, 9525=>602, 9526=>602,
+ 9527=>602, 9528=>602, 9529=>602, 9530=>602, 9531=>602, 9532=>602, 9533=>602, 9534=>602, 9535=>602, 9536=>602, 9537=>602, 9538=>602, 9539=>602, 9540=>602, 9541=>602, 9542=>602,
+ 9543=>602, 9544=>602, 9545=>602, 9546=>602, 9547=>602, 9548=>602, 9549=>602, 9550=>602, 9551=>602, 9552=>602, 9553=>602, 9554=>602, 9555=>602, 9556=>602, 9557=>602, 9558=>602,
+ 9559=>602, 9560=>602, 9561=>602, 9562=>602, 9563=>602, 9564=>602, 9565=>602, 9566=>602, 9567=>602, 9568=>602, 9569=>602, 9570=>602, 9571=>602, 9572=>602, 9573=>602, 9574=>602,
+ 9575=>602, 9576=>602, 9577=>602, 9578=>602, 9579=>602, 9580=>602, 9581=>602, 9582=>602, 9583=>602, 9584=>602, 9585=>602, 9586=>602, 9587=>602, 9588=>602, 9589=>602, 9590=>602,
+ 9591=>602, 9592=>602, 9593=>602, 9594=>602, 9595=>602, 9596=>602, 9597=>602, 9598=>602, 9599=>602, 9600=>602, 9601=>602, 9602=>602, 9603=>602, 9604=>602, 9605=>602, 9606=>602,
+ 9607=>602, 9608=>602, 9609=>602, 9610=>602, 9611=>602, 9612=>602, 9613=>602, 9614=>602, 9615=>602, 9616=>602, 9617=>602, 9618=>602, 9619=>602, 9620=>602, 9621=>602, 9622=>602,
+ 9623=>602, 9624=>602, 9625=>602, 9626=>602, 9627=>602, 9628=>602, 9629=>602, 9630=>602, 9631=>602, 9632=>602, 9633=>602, 9634=>602, 9635=>602, 9636=>602, 9637=>602, 9638=>602,
+ 9639=>602, 9640=>602, 9641=>602, 9642=>602, 9643=>602, 9644=>602, 9645=>602, 9646=>602, 9647=>602, 9648=>602, 9649=>602, 9650=>602, 9651=>602, 9652=>602, 9653=>602, 9654=>602,
+ 9655=>602, 9656=>602, 9657=>602, 9658=>602, 9659=>602, 9660=>602, 9661=>602, 9662=>602, 9663=>602, 9664=>602, 9665=>602, 9666=>602, 9667=>602, 9668=>602, 9669=>602, 9670=>602,
+ 9671=>602, 9672=>602, 9673=>602, 9674=>602, 9675=>602, 9676=>602, 9677=>602, 9678=>602, 9679=>602, 9680=>602, 9681=>602, 9682=>602, 9683=>602, 9684=>602, 9685=>602, 9686=>602,
+ 9687=>602, 9688=>602, 9689=>602, 9690=>602, 9691=>602, 9692=>602, 9693=>602, 9694=>602, 9695=>602, 9696=>602, 9697=>602, 9698=>602, 9699=>602, 9700=>602, 9701=>602, 9702=>602,
+ 9703=>602, 9704=>602, 9705=>602, 9706=>602, 9707=>602, 9708=>602, 9709=>602, 9710=>602, 9711=>602, 9712=>602, 9713=>602, 9714=>602, 9715=>602, 9716=>602, 9717=>602, 9718=>602,
+ 9719=>602, 9720=>602, 9721=>602, 9722=>602, 9723=>602, 9724=>602, 9725=>602, 9726=>602, 9727=>602, 9728=>602, 9784=>602, 9785=>602, 9786=>602, 9787=>602, 9788=>602, 9791=>602,
+ 9792=>602, 9793=>602, 9794=>602, 9795=>602, 9796=>602, 9797=>602, 9798=>602, 9799=>602, 9824=>602, 9825=>602, 9826=>602, 9827=>602, 9828=>602, 9829=>602, 9830=>602, 9831=>602,
+ 9833=>602, 9834=>602, 9835=>602, 9836=>602, 9837=>602, 9838=>602, 9839=>602, 10208=>602, 10216=>602, 10217=>602, 10731=>602, 10746=>602, 10747=>602, 10799=>602, 11026=>602, 11027=>602,
+ 11028=>602, 11029=>602, 11030=>602, 11031=>602, 11032=>602, 11033=>602, 11034=>602, 11381=>602, 11382=>602, 11383=>602, 11800=>602, 11822=>602, 63173=>602, 64257=>602, 64258=>602, 65529=>602,
+ 65530=>602, 65531=>602, 65532=>602, 65533=>602);
+$enc='';
+$diff='';
+$file='dejavusansmonoi.z';
+$ctg='dejavusansmonoi.ctg.z';
+$originalsize=217972;
+?>
diff --git a/lib/tcpdf/fonts/dejavusansmonoi.z b/lib/tcpdf/fonts/dejavusansmonoi.z
new file mode 100644
index 0000000000..e9fdde0c01
Binary files /dev/null and b/lib/tcpdf/fonts/dejavusansmonoi.z differ
diff --git a/lib/tcpdf/fonts/dejavuserif.ctg.z b/lib/tcpdf/fonts/dejavuserif.ctg.z
new file mode 100644
index 0000000000..47e27aa441
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserif.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavuserif.php b/lib/tcpdf/fonts/dejavuserif.php
new file mode 100644
index 0000000000..768bd42124
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavuserif.php
@@ -0,0 +1,189 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>32,'FontBBox'=>'[-770 -347 1679 1242]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>600, 32=>318, 33=>402, 34=>460, 35=>838, 36=>636, 37=>950, 38=>890, 39=>275, 40=>390, 41=>390, 42=>500, 43=>838, 44=>318, 45=>338, 46=>318,
+ 47=>337, 48=>636, 49=>636, 50=>636, 51=>636, 52=>636, 53=>636, 54=>636, 55=>636, 56=>636, 57=>636, 58=>337, 59=>337, 60=>838, 61=>838, 62=>838,
+ 63=>536, 64=>1000, 65=>722, 66=>735, 67=>765, 68=>802, 69=>730, 70=>694, 71=>799, 72=>872, 73=>395, 74=>401, 75=>747, 76=>664, 77=>1024, 78=>875,
+ 79=>820, 80=>673, 81=>820, 82=>753, 83=>685, 84=>667, 85=>843, 86=>722, 87=>1028, 88=>712, 89=>660, 90=>695, 91=>390, 92=>337, 93=>390, 94=>838,
+ 95=>500, 96=>500, 97=>596, 98=>640, 99=>560, 100=>640, 101=>592, 102=>370, 103=>640, 104=>644, 105=>320, 106=>310, 107=>606, 108=>320, 109=>948, 110=>644,
+ 111=>602, 112=>640, 113=>640, 114=>478, 115=>513, 116=>402, 117=>644, 118=>565, 119=>856, 120=>564, 121=>565, 122=>527, 123=>636, 124=>337, 125=>636, 126=>838,
+ 8364=>636, 1027=>719, 8218=>318, 402=>370, 8222=>518, 8230=>1000, 8224=>500, 8225=>500, 710=>500, 8240=>1342, 352=>685, 8249=>400, 338=>1137, 1036=>774, 381=>695, 1039=>872,
+ 8216=>318, 8217=>318, 8220=>511, 8221=>511, 8226=>590, 8211=>500, 8212=>1000, 732=>500, 8482=>1000, 353=>513, 8250=>400, 339=>989, 1116=>625, 382=>527, 376=>660, 160=>318,
+ 161=>402, 162=>636, 163=>636, 164=>636, 165=>636, 166=>337, 167=>500, 168=>500, 169=>1000, 170=>475, 171=>612, 172=>838, 173=>338, 174=>1000, 175=>500, 176=>500,
+ 177=>838, 178=>401, 179=>401, 180=>500, 181=>650, 182=>636, 183=>318, 184=>500, 185=>401, 186=>470, 187=>612, 188=>969, 189=>969, 190=>969, 191=>536, 192=>722,
+ 193=>722, 194=>722, 195=>722, 196=>722, 197=>722, 198=>1001, 199=>765, 200=>730, 201=>730, 202=>730, 203=>730, 204=>395, 205=>395, 206=>395, 207=>395, 208=>807,
+ 209=>875, 210=>820, 211=>820, 212=>820, 213=>820, 214=>820, 215=>838, 216=>820, 217=>843, 218=>843, 219=>843, 220=>843, 221=>660, 222=>676, 223=>668, 224=>596,
+ 225=>596, 226=>596, 227=>596, 228=>596, 229=>596, 230=>940, 231=>560, 232=>592, 233=>592, 234=>592, 235=>592, 236=>320, 237=>320, 238=>320, 239=>320, 240=>602,
+ 241=>644, 242=>602, 243=>602, 244=>602, 245=>602, 246=>602, 247=>838, 248=>602, 249=>644, 250=>644, 251=>644, 252=>644, 253=>565, 254=>640, 255=>565, 256=>722,
+ 257=>596, 258=>722, 259=>596, 260=>722, 261=>596, 262=>765, 263=>560, 264=>765, 265=>560, 266=>765, 267=>560, 268=>765, 269=>560, 270=>802, 271=>640, 272=>807,
+ 273=>640, 274=>730, 275=>592, 276=>730, 277=>592, 278=>730, 279=>592, 280=>730, 281=>592, 282=>730, 283=>592, 284=>799, 285=>640, 286=>799, 287=>640, 288=>799,
+ 289=>640, 290=>799, 291=>640, 292=>872, 293=>644, 294=>872, 295=>644, 296=>395, 297=>320, 298=>395, 299=>320, 300=>395, 301=>320, 302=>395, 303=>320, 304=>395,
+ 305=>320, 306=>801, 307=>533, 308=>401, 309=>310, 310=>747, 311=>606, 312=>606, 313=>664, 314=>320, 315=>664, 316=>320, 317=>664, 318=>400, 319=>671, 320=>465,
+ 321=>669, 322=>324, 323=>875, 324=>644, 325=>875, 326=>644, 327=>875, 328=>644, 329=>866, 330=>843, 331=>644, 332=>820, 333=>602, 334=>820, 335=>602, 336=>820,
+ 337=>602, 340=>753, 341=>478, 342=>753, 343=>478, 344=>753, 345=>478, 346=>685, 347=>513, 348=>685, 349=>513, 350=>685, 351=>513, 354=>667, 355=>402, 356=>667,
+ 357=>402, 358=>667, 359=>402, 360=>843, 361=>644, 362=>843, 363=>644, 364=>843, 365=>644, 366=>843, 367=>644, 368=>843, 369=>644, 370=>843, 371=>644, 372=>1028,
+ 373=>856, 374=>660, 375=>565, 377=>695, 378=>527, 379=>695, 380=>527, 383=>370, 384=>640, 385=>735, 386=>735, 387=>640, 388=>735, 389=>640, 390=>765, 391=>765,
+ 392=>560, 393=>807, 394=>802, 395=>735, 396=>640, 397=>602, 398=>730, 399=>820, 400=>623, 401=>694, 403=>799, 404=>712, 405=>932, 406=>395, 407=>395, 408=>747,
+ 409=>606, 410=>320, 411=>634, 412=>948, 413=>875, 414=>644, 415=>820, 416=>820, 417=>602, 418=>1040, 419=>807, 420=>673, 421=>640, 422=>753, 423=>685, 424=>513,
+ 425=>707, 426=>324, 427=>402, 428=>667, 429=>402, 430=>667, 431=>843, 432=>644, 433=>829, 434=>760, 435=>738, 436=>663, 437=>695, 438=>527, 439=>564, 440=>564,
+ 441=>564, 443=>636, 444=>687, 445=>564, 446=>536, 448=>295, 449=>492, 450=>459, 451=>295, 452=>1497, 453=>1329, 454=>1167, 455=>1065, 456=>974, 457=>630, 458=>1276,
+ 459=>1185, 460=>954, 461=>722, 462=>596, 463=>395, 464=>320, 465=>820, 466=>602, 467=>843, 468=>644, 469=>843, 470=>644, 471=>843, 472=>644, 473=>843, 474=>644,
+ 475=>843, 476=>644, 477=>592, 478=>722, 479=>596, 480=>722, 481=>596, 482=>1001, 483=>940, 484=>848, 485=>640, 486=>799, 487=>640, 488=>747, 489=>606, 490=>820,
+ 491=>602, 492=>820, 493=>602, 494=>564, 495=>564, 496=>320, 497=>1497, 498=>1329, 499=>1167, 500=>799, 501=>640, 502=>1154, 504=>875, 505=>644, 506=>722, 507=>596,
+ 508=>1001, 509=>940, 510=>820, 511=>602, 512=>722, 513=>596, 514=>722, 515=>596, 516=>730, 517=>592, 518=>730, 519=>592, 520=>395, 521=>320, 522=>395, 523=>320,
+ 524=>820, 525=>602, 526=>820, 527=>602, 528=>753, 529=>478, 530=>753, 531=>478, 532=>843, 533=>644, 534=>843, 535=>644, 536=>685, 537=>513, 538=>667, 539=>402,
+ 542=>872, 543=>644, 544=>843, 545=>814, 548=>695, 549=>527, 550=>722, 551=>596, 552=>730, 553=>592, 554=>820, 555=>602, 556=>820, 557=>602, 558=>820, 559=>602,
+ 560=>820, 561=>602, 562=>660, 563=>565, 564=>500, 565=>832, 566=>494, 567=>310, 568=>960, 569=>960, 570=>722, 571=>765, 572=>560, 573=>664, 574=>667, 575=>513,
+ 576=>527, 577=>583, 578=>464, 581=>722, 592=>596, 593=>640, 594=>640, 595=>640, 596=>560, 597=>560, 598=>647, 599=>683, 600=>592, 601=>592, 602=>843, 603=>518,
+ 604=>509, 605=>773, 606=>613, 607=>315, 608=>683, 609=>640, 610=>544, 611=>712, 612=>564, 613=>644, 614=>644, 615=>644, 616=>320, 617=>392, 618=>320, 619=>380,
+ 620=>454, 621=>363, 622=>704, 623=>948, 624=>948, 625=>948, 626=>644, 627=>694, 628=>646, 629=>602, 630=>790, 631=>647, 632=>602, 633=>501, 634=>501, 635=>551,
+ 636=>478, 637=>478, 638=>453, 639=>453, 640=>594, 641=>594, 642=>513, 643=>271, 644=>370, 645=>487, 646=>324, 647=>402, 648=>402, 649=>644, 650=>620, 651=>608,
+ 652=>565, 653=>856, 654=>565, 655=>655, 656=>597, 657=>560, 658=>564, 659=>560, 660=>536, 661=>536, 662=>536, 663=>513, 664=>820, 665=>563, 666=>613, 667=>654,
+ 668=>667, 669=>366, 670=>606, 671=>646, 672=>683, 673=>536, 674=>536, 675=>996, 676=>1033, 677=>998, 678=>809, 679=>598, 680=>782, 681=>894, 682=>646, 683=>676,
+ 684=>598, 685=>443, 686=>781, 687=>767, 688=>433, 689=>430, 690=>264, 691=>347, 692=>347, 693=>430, 694=>392, 695=>585, 696=>423, 697=>278, 699=>318, 700=>318,
+ 701=>318, 702=>307, 703=>307, 704=>280, 705=>281, 711=>500, 712=>275, 713=>500, 716=>275, 720=>337, 721=>337, 722=>307, 723=>307, 726=>329, 728=>500, 729=>500,
+ 730=>500, 731=>500, 733=>500, 734=>417, 736=>447, 737=>243, 738=>337, 739=>424, 740=>281, 741=>602, 742=>602, 743=>602, 744=>602, 745=>602, 750=>484, 768=>0,
+ 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0,
+ 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0,
+ 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0,
+ 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 835=>0,
+ 847=>0, 856=>0, 865=>0, 884=>278, 885=>278, 890=>500, 894=>337, 900=>500, 901=>500, 902=>722, 903=>318, 904=>900, 905=>1039, 906=>562, 908=>835, 910=>897,
+ 911=>853, 912=>392, 913=>722, 914=>735, 915=>694, 916=>722, 917=>730, 918=>695, 919=>872, 920=>820, 921=>395, 922=>747, 923=>722, 924=>1024, 925=>875, 926=>704,
+ 927=>820, 928=>872, 929=>673, 931=>707, 932=>667, 933=>660, 934=>820, 935=>712, 936=>877, 937=>829, 938=>395, 939=>660, 940=>675, 941=>518, 942=>599, 943=>392,
+ 944=>608, 945=>675, 946=>578, 947=>598, 948=>602, 949=>518, 950=>542, 951=>599, 952=>602, 953=>392, 954=>625, 955=>634, 956=>650, 957=>608, 958=>551, 959=>602,
+ 960=>657, 961=>588, 962=>560, 963=>683, 964=>553, 965=>608, 966=>700, 967=>606, 968=>784, 969=>815, 970=>392, 971=>608, 972=>602, 973=>608, 974=>815, 976=>583,
+ 977=>715, 978=>687, 979=>874, 980=>687, 981=>682, 982=>815, 983=>624, 984=>820, 985=>602, 986=>765, 987=>560, 988=>694, 989=>463, 990=>590, 991=>660, 992=>782,
+ 993=>577, 1008=>624, 1009=>588, 1010=>560, 1011=>310, 1012=>820, 1013=>560, 1014=>560, 1015=>676, 1016=>640, 1017=>765, 1018=>1024, 1019=>708, 1020=>588, 1021=>765, 1022=>765,
+ 1023=>765, 1024=>754, 1025=>730, 1026=>799, 1028=>765, 1029=>685, 1030=>395, 1031=>395, 1032=>401, 1033=>1084, 1034=>1118, 1035=>872, 1037=>903, 1038=>723, 1040=>757, 1041=>735,
+ 1042=>735, 1043=>662, 1044=>813, 1045=>730, 1046=>1124, 1047=>623, 1048=>872, 1049=>872, 1050=>774, 1051=>834, 1052=>1024, 1053=>872, 1054=>820, 1055=>872, 1056=>673, 1057=>765,
+ 1058=>667, 1059=>723, 1060=>830, 1061=>712, 1062=>872, 1063=>773, 1064=>1141, 1065=>1141, 1066=>794, 1067=>984, 1068=>674, 1069=>765, 1070=>1193, 1071=>808, 1072=>596, 1073=>602,
+ 1074=>563, 1075=>524, 1076=>616, 1077=>592, 1078=>920, 1079=>545, 1080=>667, 1081=>667, 1082=>625, 1083=>635, 1084=>778, 1085=>667, 1086=>602, 1087=>667, 1088=>640, 1089=>560,
+ 1090=>553, 1091=>588, 1092=>783, 1093=>564, 1094=>643, 1095=>661, 1096=>930, 1097=>930, 1098=>636, 1099=>796, 1100=>544, 1101=>560, 1102=>871, 1103=>631, 1104=>592, 1105=>592,
+ 1106=>624, 1107=>524, 1108=>560, 1109=>513, 1110=>320, 1111=>320, 1112=>310, 1113=>843, 1114=>860, 1115=>644, 1117=>667, 1118=>588, 1119=>656, 1122=>762, 1123=>603, 1124=>1129,
+ 1125=>834, 1130=>1124, 1131=>920, 1138=>820, 1139=>552, 1140=>859, 1141=>678, 1164=>707, 1165=>544, 1168=>672, 1169=>529, 1170=>662, 1171=>523, 1172=>728, 1173=>614, 1174=>1124,
+ 1175=>920, 1176=>636, 1177=>537, 1178=>774, 1179=>606, 1182=>774, 1183=>625, 1184=>891, 1185=>717, 1186=>872, 1187=>641, 1188=>1139, 1189=>852, 1190=>1205, 1191=>941, 1194=>765,
+ 1195=>560, 1196=>667, 1197=>553, 1198=>660, 1199=>565, 1200=>660, 1201=>565, 1202=>712, 1203=>564, 1204=>1079, 1205=>899, 1206=>749, 1207=>690, 1210=>749, 1211=>644, 1216=>395,
+ 1217=>1124, 1218=>920, 1219=>747, 1220=>606, 1223=>872, 1224=>667, 1227=>749, 1228=>667, 1231=>320, 1232=>757, 1233=>596, 1234=>757, 1235=>596, 1236=>1001, 1237=>940, 1238=>730,
+ 1239=>592, 1240=>820, 1241=>592, 1242=>820, 1243=>592, 1244=>1124, 1245=>920, 1246=>623, 1247=>545, 1248=>564, 1249=>564, 1250=>872, 1251=>667, 1252=>872, 1253=>667, 1254=>820,
+ 1255=>602, 1256=>820, 1257=>602, 1258=>820, 1259=>602, 1260=>765, 1261=>560, 1262=>723, 1263=>588, 1264=>723, 1265=>588, 1266=>723, 1267=>588, 1268=>773, 1269=>661, 1270=>662,
+ 1271=>524, 1272=>984, 1273=>796, 4256=>693, 4257=>814, 4258=>793, 4259=>823, 4260=>703, 4261=>939, 4262=>876, 4263=>1053, 4264=>544, 4265=>719, 4266=>921, 4267=>901, 4268=>712,
+ 4269=>1028, 4270=>858, 4271=>794, 4272=>995, 4273=>703, 4274=>642, 4275=>972, 4276=>896, 4277=>976, 4278=>701, 4279=>703, 4280=>702, 4281=>703, 4282=>842, 4283=>896, 4284=>685,
+ 4285=>724, 4286=>703, 4287=>917, 4288=>958, 4289=>673, 4290=>827, 4291=>704, 4292=>802, 4293=>910, 4304=>510, 4305=>539, 4306=>565, 4307=>790, 4308=>519, 4309=>534, 4310=>578,
+ 4311=>815, 4312=>528, 4313=>527, 4314=>1011, 4315=>539, 4316=>539, 4317=>781, 4318=>538, 4319=>524, 4320=>780, 4321=>565, 4322=>731, 4323=>649, 4324=>771, 4325=>528, 4326=>813,
+ 4327=>531, 4328=>589, 4329=>540, 4330=>643, 4331=>541, 4332=>543, 4333=>520, 4334=>570, 4335=>656, 4336=>540, 4337=>580, 4338=>540, 4339=>540, 4340=>539, 4341=>631, 4342=>840,
+ 4343=>592, 4344=>541, 4345=>584, 4346=>351, 4347=>430, 4348=>539, 7426=>940, 7432=>509, 7433=>320, 7444=>989, 7446=>602, 7447=>602, 7453=>737, 7454=>948, 7455=>948, 7468=>455,
+ 7469=>630, 7470=>463, 7472=>505, 7473=>459, 7474=>459, 7475=>503, 7476=>549, 7477=>249, 7478=>252, 7479=>470, 7480=>418, 7481=>645, 7482=>551, 7483=>551, 7484=>516, 7486=>424,
+ 7487=>474, 7488=>420, 7489=>531, 7490=>647, 7491=>386, 7492=>386, 7493=>400, 7494=>618, 7495=>400, 7496=>400, 7497=>387, 7498=>387, 7499=>340, 7500=>340, 7501=>400, 7502=>175,
+ 7503=>365, 7504=>613, 7505=>399, 7506=>385, 7507=>346, 7508=>385, 7509=>385, 7510=>400, 7511=>247, 7512=>399, 7513=>464, 7514=>613, 7515=>373, 7522=>201, 7523=>347, 7524=>399,
+ 7525=>373, 7543=>640, 7544=>549, 7547=>372, 7557=>320, 7579=>400, 7580=>346, 7581=>346, 7582=>385, 7583=>340, 7584=>222, 7585=>229, 7586=>400, 7587=>399, 7588=>234, 7589=>244,
+ 7590=>234, 7591=>234, 7592=>230, 7593=>175, 7594=>175, 7595=>367, 7596=>613, 7597=>613, 7598=>407, 7599=>404, 7600=>399, 7601=>385, 7602=>385, 7603=>328, 7604=>211, 7605=>247,
+ 7606=>399, 7607=>389, 7609=>376, 7610=>373, 7611=>331, 7612=>331, 7613=>331, 7614=>364, 7615=>385, 7680=>722, 7681=>596, 7682=>735, 7683=>640, 7684=>735, 7685=>640, 7686=>735,
+ 7687=>640, 7688=>765, 7689=>560, 7690=>802, 7691=>640, 7692=>802, 7693=>640, 7694=>802, 7695=>640, 7696=>802, 7697=>640, 7698=>802, 7699=>640, 7700=>730, 7701=>592, 7702=>730,
+ 7703=>592, 7704=>730, 7705=>592, 7706=>730, 7707=>592, 7708=>730, 7709=>592, 7710=>694, 7711=>370, 7712=>799, 7713=>640, 7714=>872, 7715=>644, 7716=>872, 7717=>644, 7718=>872,
+ 7719=>644, 7720=>872, 7721=>644, 7722=>872, 7723=>644, 7724=>395, 7725=>320, 7728=>747, 7729=>606, 7730=>747, 7731=>606, 7732=>747, 7733=>606, 7734=>664, 7735=>320, 7736=>664,
+ 7737=>320, 7738=>664, 7739=>320, 7740=>664, 7741=>320, 7742=>1024, 7743=>948, 7744=>1024, 7745=>948, 7746=>1024, 7747=>948, 7748=>875, 7749=>644, 7750=>875, 7751=>644, 7752=>875,
+ 7753=>644, 7754=>875, 7755=>644, 7760=>820, 7761=>602, 7762=>820, 7763=>602, 7764=>673, 7765=>640, 7766=>673, 7767=>640, 7768=>753, 7769=>478, 7770=>753, 7771=>478, 7772=>753,
+ 7773=>478, 7774=>753, 7775=>478, 7776=>685, 7777=>513, 7778=>685, 7779=>513, 7784=>685, 7785=>513, 7786=>667, 7787=>402, 7788=>667, 7789=>402, 7790=>667, 7791=>402, 7792=>667,
+ 7793=>402, 7794=>843, 7795=>644, 7796=>843, 7797=>644, 7798=>843, 7799=>644, 7800=>843, 7801=>644, 7802=>843, 7803=>644, 7804=>722, 7805=>565, 7806=>722, 7807=>565, 7808=>1028,
+ 7809=>856, 7810=>1028, 7811=>856, 7812=>1028, 7813=>856, 7814=>1028, 7815=>856, 7816=>1028, 7817=>856, 7818=>712, 7819=>564, 7820=>712, 7821=>564, 7822=>660, 7823=>565, 7824=>695,
+ 7825=>527, 7826=>695, 7827=>527, 7828=>695, 7829=>527, 7830=>644, 7831=>402, 7832=>856, 7833=>565, 7834=>903, 7835=>513, 7840=>722, 7841=>596, 7842=>722, 7843=>596, 7852=>722,
+ 7853=>596, 7854=>722, 7855=>596, 7856=>722, 7857=>596, 7858=>722, 7859=>596, 7860=>722, 7861=>596, 7862=>722, 7863=>596, 7864=>730, 7865=>592, 7866=>730, 7867=>592, 7868=>730,
+ 7869=>592, 7878=>730, 7879=>592, 7880=>395, 7881=>320, 7882=>395, 7883=>320, 7884=>820, 7885=>602, 7886=>820, 7887=>602, 7896=>820, 7897=>602, 7908=>843, 7909=>644, 7910=>843,
+ 7911=>644, 7922=>660, 7923=>565, 7924=>660, 7925=>565, 7926=>660, 7927=>565, 7928=>660, 7929=>565, 7936=>675, 7937=>675, 7938=>675, 7939=>675, 7940=>675, 7941=>675, 7942=>675,
+ 7943=>675, 7944=>722, 7945=>722, 7946=>869, 7947=>869, 7948=>734, 7949=>763, 7950=>722, 7951=>722, 7952=>537, 7953=>537, 7954=>537, 7955=>537, 7956=>537, 7957=>537, 7960=>853,
+ 7961=>841, 7962=>1067, 7963=>1077, 7964=>1008, 7965=>1035, 7968=>599, 7969=>599, 7970=>599, 7971=>599, 7972=>599, 7973=>599, 7974=>599, 7975=>599, 7976=>998, 7977=>992, 7978=>1212,
+ 7979=>1224, 7980=>1159, 7981=>1183, 7982=>1098, 7983=>1095, 7984=>392, 7985=>392, 7986=>392, 7987=>392, 7988=>392, 7989=>392, 7990=>392, 7991=>392, 7992=>521, 7993=>512, 7994=>735,
+ 7995=>738, 7996=>679, 7997=>706, 7998=>624, 7999=>615, 8000=>602, 8001=>602, 8002=>602, 8003=>602, 8004=>602, 8005=>602, 8008=>820, 8009=>859, 8010=>1120, 8011=>1127, 8012=>937,
+ 8013=>964, 8016=>608, 8017=>608, 8018=>608, 8019=>608, 8020=>608, 8021=>608, 8022=>608, 8023=>608, 8025=>851, 8027=>1079, 8029=>1044, 8031=>953, 8032=>815, 8033=>815, 8034=>815,
+ 8035=>815, 8036=>815, 8037=>815, 8038=>815, 8039=>815, 8040=>829, 8041=>870, 8042=>1131, 8043=>1137, 8044=>946, 8045=>976, 8046=>938, 8047=>970, 8048=>675, 8049=>675, 8050=>537,
+ 8051=>537, 8052=>599, 8053=>599, 8054=>392, 8055=>392, 8056=>602, 8057=>602, 8058=>608, 8059=>608, 8060=>815, 8061=>815, 8064=>675, 8065=>675, 8066=>675, 8067=>675, 8068=>675,
+ 8069=>675, 8070=>675, 8071=>675, 8072=>722, 8073=>722, 8074=>869, 8075=>869, 8076=>734, 8077=>763, 8078=>722, 8079=>722, 8080=>599, 8081=>599, 8082=>599, 8083=>599, 8084=>599,
+ 8085=>599, 8086=>599, 8087=>599, 8088=>998, 8089=>992, 8090=>1212, 8091=>1224, 8092=>1159, 8093=>1183, 8094=>1098, 8095=>1095, 8096=>815, 8097=>815, 8098=>815, 8099=>815, 8100=>815,
+ 8101=>815, 8102=>815, 8103=>815, 8104=>829, 8105=>870, 8106=>1131, 8107=>1137, 8108=>946, 8109=>976, 8110=>938, 8111=>970, 8112=>675, 8113=>675, 8114=>675, 8115=>675, 8116=>675,
+ 8118=>675, 8119=>675, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>722, 8125=>500, 8126=>500, 8127=>500, 8128=>500, 8129=>500, 8130=>599, 8131=>599, 8132=>599, 8134=>599,
+ 8135=>599, 8136=>912, 8137=>900, 8138=>1063, 8139=>1039, 8140=>872, 8141=>500, 8142=>500, 8143=>500, 8144=>392, 8145=>392, 8146=>392, 8147=>392, 8150=>392, 8151=>392, 8152=>395,
+ 8153=>395, 8154=>588, 8155=>562, 8157=>500, 8158=>500, 8159=>500, 8160=>608, 8161=>608, 8162=>608, 8163=>608, 8164=>588, 8165=>588, 8166=>608, 8167=>608, 8168=>660, 8169=>660,
+ 8170=>921, 8171=>897, 8172=>790, 8173=>500, 8174=>500, 8175=>500, 8178=>815, 8179=>815, 8180=>815, 8182=>815, 8183=>815, 8184=>961, 8185=>835, 8186=>984, 8187=>853, 8188=>829,
+ 8189=>500, 8190=>500, 8192=>500, 8193=>1000, 8194=>500, 8195=>1000, 8196=>330, 8197=>250, 8198=>167, 8199=>636, 8200=>318, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>338, 8209=>338, 8210=>636, 8213=>1000, 8215=>500, 8219=>318, 8223=>511, 8227=>590, 8228=>334, 8229=>667, 8234=>0, 8235=>0, 8236=>0, 8237=>0,
+ 8238=>0, 8239=>200, 8241=>1734, 8252=>527, 8253=>536, 8254=>500, 8263=>976, 8264=>753, 8265=>753, 8287=>222, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0,
+ 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>401, 8305=>201, 8308=>401, 8309=>401, 8310=>401, 8311=>401, 8312=>401, 8313=>401, 8314=>528, 8315=>528, 8316=>528,
+ 8317=>246, 8318=>246, 8319=>433, 8320=>401, 8321=>401, 8322=>401, 8323=>401, 8324=>401, 8325=>401, 8326=>401, 8327=>401, 8328=>401, 8329=>401, 8330=>528, 8331=>528, 8332=>528,
+ 8333=>246, 8334=>246, 8336=>386, 8337=>387, 8338=>385, 8339=>424, 8340=>387, 8358=>660, 8367=>1057, 8369=>706, 8372=>780, 8373=>636, 8450=>796, 8451=>1119, 8457=>1047, 8461=>945,
+ 8462=>644, 8469=>914, 8470=>946, 8473=>752, 8474=>871, 8477=>831, 8484=>730, 8486=>829, 8487=>829, 8490=>747, 8491=>722, 8508=>732, 8509=>660, 8510=>710, 8511=>944, 8512=>707,
+ 8513=>775, 8514=>557, 8515=>557, 8516=>611, 8517=>867, 8518=>699, 8519=>636, 8520=>380, 8521=>362, 8523=>890, 8531=>969, 8532=>969, 8533=>969, 8534=>969, 8535=>969, 8536=>969,
+ 8537=>969, 8538=>969, 8539=>969, 8540=>969, 8541=>969, 8542=>969, 8543=>568, 8544=>395, 8545=>590, 8546=>786, 8547=>966, 8548=>722, 8549=>981, 8550=>1176, 8551=>1372, 8552=>932,
+ 8553=>712, 8554=>932, 8555=>1127, 8556=>664, 8557=>765, 8558=>802, 8559=>1024, 8560=>320, 8561=>640, 8562=>959, 8563=>885, 8564=>565, 8565=>885, 8566=>1205, 8567=>1524, 8568=>884,
+ 8569=>564, 8570=>884, 8571=>1204, 8572=>320, 8573=>560, 8574=>640, 8575=>948, 8576=>1206, 8577=>802, 8578=>1206, 8579=>765, 8580=>560, 8592=>838, 8593=>838, 8594=>838, 8595=>838,
+ 8596=>838, 8597=>838, 8598=>838, 8599=>838, 8600=>838, 8601=>838, 8602=>838, 8603=>838, 8604=>838, 8605=>838, 8606=>838, 8607=>838, 8608=>838, 8609=>838, 8610=>838, 8611=>838,
+ 8612=>838, 8613=>838, 8614=>838, 8615=>838, 8616=>838, 8617=>838, 8618=>838, 8619=>838, 8620=>838, 8621=>838, 8622=>838, 8623=>838, 8624=>838, 8625=>838, 8626=>838, 8627=>838,
+ 8628=>838, 8629=>838, 8630=>838, 8631=>838, 8632=>838, 8633=>838, 8634=>838, 8635=>838, 8636=>838, 8637=>838, 8638=>838, 8639=>838, 8640=>838, 8641=>838, 8642=>838, 8643=>838,
+ 8644=>838, 8645=>838, 8646=>838, 8647=>838, 8648=>838, 8649=>838, 8650=>838, 8651=>838, 8652=>838, 8653=>838, 8654=>838, 8655=>838, 8656=>838, 8657=>838, 8658=>838, 8659=>838,
+ 8660=>838, 8661=>838, 8662=>838, 8663=>838, 8664=>838, 8665=>838, 8666=>838, 8667=>838, 8668=>838, 8669=>838, 8670=>838, 8671=>838, 8672=>838, 8673=>838, 8674=>838, 8675=>838,
+ 8676=>838, 8677=>838, 8678=>838, 8679=>838, 8680=>838, 8681=>838, 8682=>838, 8683=>838, 8684=>838, 8685=>838, 8686=>838, 8687=>838, 8688=>838, 8689=>838, 8690=>838, 8691=>838,
+ 8692=>838, 8693=>838, 8694=>838, 8695=>838, 8696=>838, 8697=>838, 8698=>838, 8699=>838, 8700=>838, 8701=>838, 8702=>838, 8703=>838, 8704=>604, 8706=>517, 8707=>542, 8708=>542,
+ 8710=>698, 8711=>698, 8712=>740, 8713=>740, 8715=>740, 8716=>740, 8719=>796, 8720=>796, 8721=>714, 8722=>838, 8723=>838, 8724=>838, 8725=>167, 8727=>680, 8728=>490, 8729=>490,
+ 8730=>637, 8731=>637, 8732=>637, 8733=>677, 8734=>833, 8735=>838, 8736=>838, 8739=>291, 8740=>479, 8741=>462, 8742=>634, 8743=>732, 8744=>732, 8745=>838, 8746=>838, 8747=>521,
+ 8748=>852, 8749=>1182, 8760=>838, 8761=>838, 8762=>838, 8763=>838, 8764=>838, 8765=>838, 8770=>838, 8771=>838, 8776=>838, 8784=>838, 8785=>838, 8786=>838, 8787=>838, 8788=>1033,
+ 8789=>1033, 8800=>838, 8801=>838, 8804=>838, 8805=>838, 8834=>838, 8835=>838, 8836=>838, 8837=>838, 8838=>838, 8839=>838, 8844=>838, 8845=>838, 8846=>838, 8847=>846, 8848=>846,
+ 8849=>846, 8850=>846, 8851=>838, 8852=>838, 8853=>838, 8854=>838, 8855=>838, 8856=>838, 8857=>838, 8858=>838, 8859=>838, 8860=>838, 8861=>838, 8862=>838, 8863=>838, 8864=>838,
+ 8865=>838, 8866=>860, 8867=>860, 8868=>940, 8869=>940, 8870=>567, 8871=>567, 8872=>860, 8873=>860, 8874=>860, 8875=>1031, 8876=>860, 8877=>860, 8878=>860, 8879=>1031, 8901=>342,
+ 8962=>764, 8968=>390, 8969=>390, 8970=>390, 8971=>390, 8976=>838, 8977=>513, 8984=>1000, 8985=>838, 8992=>521, 8993=>521, 8997=>1000, 9000=>1443, 9085=>919, 9134=>521, 9167=>945,
+ 9251=>764, 9472=>602, 9473=>602, 9474=>602, 9475=>602, 9476=>602, 9477=>602, 9478=>602, 9479=>602, 9480=>602, 9481=>602, 9482=>602, 9483=>602, 9484=>602, 9485=>602, 9486=>602,
+ 9487=>602, 9488=>602, 9489=>602, 9490=>602, 9491=>602, 9492=>602, 9493=>602, 9494=>602, 9495=>602, 9496=>602, 9497=>602, 9498=>602, 9499=>602, 9500=>602, 9501=>602, 9502=>602,
+ 9503=>602, 9504=>602, 9505=>602, 9506=>602, 9507=>602, 9508=>602, 9509=>602, 9510=>602, 9511=>602, 9512=>602, 9513=>602, 9514=>602, 9515=>602, 9516=>602, 9517=>602, 9518=>602,
+ 9519=>602, 9520=>602, 9521=>602, 9522=>602, 9523=>602, 9524=>602, 9525=>602, 9526=>602, 9527=>602, 9528=>602, 9529=>602, 9530=>602, 9531=>602, 9532=>602, 9533=>602, 9534=>602,
+ 9535=>602, 9536=>602, 9537=>602, 9538=>602, 9539=>602, 9540=>602, 9541=>602, 9542=>602, 9543=>602, 9544=>602, 9545=>602, 9546=>602, 9547=>602, 9548=>602, 9549=>602, 9550=>602,
+ 9551=>602, 9552=>602, 9553=>602, 9554=>602, 9555=>602, 9556=>602, 9557=>602, 9558=>602, 9559=>602, 9560=>602, 9561=>602, 9562=>602, 9563=>602, 9564=>602, 9565=>602, 9566=>602,
+ 9567=>602, 9568=>602, 9569=>602, 9570=>602, 9571=>602, 9572=>602, 9573=>602, 9574=>602, 9575=>602, 9576=>602, 9577=>602, 9578=>602, 9579=>602, 9580=>602, 9581=>602, 9582=>602,
+ 9583=>602, 9584=>602, 9585=>602, 9586=>602, 9587=>602, 9588=>602, 9589=>602, 9590=>602, 9591=>602, 9592=>602, 9593=>602, 9594=>602, 9595=>602, 9596=>602, 9597=>602, 9598=>602,
+ 9599=>602, 9600=>769, 9601=>769, 9602=>769, 9603=>769, 9604=>769, 9605=>769, 9606=>769, 9607=>769, 9608=>769, 9609=>769, 9610=>769, 9611=>769, 9612=>769, 9613=>769, 9614=>769,
+ 9615=>769, 9616=>769, 9617=>769, 9618=>769, 9619=>769, 9620=>769, 9621=>769, 9622=>769, 9623=>769, 9624=>769, 9625=>769, 9626=>769, 9627=>769, 9628=>769, 9629=>769, 9630=>769,
+ 9631=>769, 9632=>945, 9633=>945, 9634=>945, 9635=>945, 9636=>945, 9637=>945, 9638=>945, 9639=>945, 9640=>945, 9641=>945, 9642=>678, 9643=>678, 9644=>945, 9645=>945, 9646=>550,
+ 9647=>550, 9648=>769, 9649=>769, 9650=>769, 9651=>769, 9652=>502, 9653=>502, 9654=>769, 9655=>769, 9656=>502, 9657=>502, 9658=>769, 9659=>769, 9660=>769, 9661=>769, 9662=>502,
+ 9663=>502, 9664=>769, 9665=>769, 9666=>502, 9667=>502, 9668=>769, 9669=>769, 9670=>769, 9671=>769, 9672=>769, 9673=>873, 9674=>494, 9675=>873, 9676=>873, 9677=>873, 9678=>873,
+ 9679=>873, 9680=>873, 9681=>873, 9682=>873, 9683=>873, 9684=>873, 9685=>873, 9686=>527, 9687=>527, 9688=>791, 9689=>970, 9690=>970, 9691=>970, 9692=>387, 9693=>387, 9694=>387,
+ 9695=>387, 9696=>873, 9697=>873, 9698=>769, 9699=>769, 9700=>769, 9701=>769, 9702=>590, 9703=>945, 9704=>945, 9705=>945, 9706=>945, 9707=>945, 9708=>769, 9709=>769, 9710=>769,
+ 9711=>1119, 9712=>945, 9713=>945, 9714=>945, 9715=>945, 9716=>873, 9717=>873, 9718=>873, 9719=>873, 9720=>769, 9721=>769, 9722=>769, 9723=>830, 9724=>830, 9725=>732, 9726=>732,
+ 9727=>769, 9728=>896, 9784=>896, 9785=>896, 9786=>896, 9787=>896, 9788=>896, 9791=>614, 9792=>731, 9793=>731, 9794=>896, 9795=>896, 9796=>896, 9797=>896, 9798=>896, 9799=>896,
+ 9824=>896, 9825=>896, 9826=>896, 9827=>896, 9828=>896, 9829=>896, 9830=>896, 9831=>896, 9833=>472, 9834=>638, 9835=>896, 9836=>896, 9837=>472, 9838=>357, 9839=>484, 10145=>838,
+ 10208=>494, 10216=>390, 10217=>390, 10224=>838, 10225=>838, 10226=>838, 10227=>838, 10228=>1033, 10229=>1434, 10230=>1434, 10231=>1434, 10232=>1434, 10233=>1434, 10234=>1434, 10235=>1434, 10236=>1434,
+ 10237=>1434, 10238=>1434, 10239=>1434, 10240=>732, 10241=>732, 10242=>732, 10243=>732, 10244=>732, 10245=>732, 10246=>732, 10247=>732, 10248=>732, 10249=>732, 10250=>732, 10251=>732, 10252=>732,
+ 10253=>732, 10254=>732, 10255=>732, 10256=>732, 10257=>732, 10258=>732, 10259=>732, 10260=>732, 10261=>732, 10262=>732, 10263=>732, 10264=>732, 10265=>732, 10266=>732, 10267=>732, 10268=>732,
+ 10269=>732, 10270=>732, 10271=>732, 10272=>732, 10273=>732, 10274=>732, 10275=>732, 10276=>732, 10277=>732, 10278=>732, 10279=>732, 10280=>732, 10281=>732, 10282=>732, 10283=>732, 10284=>732,
+ 10285=>732, 10286=>732, 10287=>732, 10288=>732, 10289=>732, 10290=>732, 10291=>732, 10292=>732, 10293=>732, 10294=>732, 10295=>732, 10296=>732, 10297=>732, 10298=>732, 10299=>732, 10300=>732,
+ 10301=>732, 10302=>732, 10303=>732, 10304=>732, 10305=>732, 10306=>732, 10307=>732, 10308=>732, 10309=>732, 10310=>732, 10311=>732, 10312=>732, 10313=>732, 10314=>732, 10315=>732, 10316=>732,
+ 10317=>732, 10318=>732, 10319=>732, 10320=>732, 10321=>732, 10322=>732, 10323=>732, 10324=>732, 10325=>732, 10326=>732, 10327=>732, 10328=>732, 10329=>732, 10330=>732, 10331=>732, 10332=>732,
+ 10333=>732, 10334=>732, 10335=>732, 10336=>732, 10337=>732, 10338=>732, 10339=>732, 10340=>732, 10341=>732, 10342=>732, 10343=>732, 10344=>732, 10345=>732, 10346=>732, 10347=>732, 10348=>732,
+ 10349=>732, 10350=>732, 10351=>732, 10352=>732, 10353=>732, 10354=>732, 10355=>732, 10356=>732, 10357=>732, 10358=>732, 10359=>732, 10360=>732, 10361=>732, 10362=>732, 10363=>732, 10364=>732,
+ 10365=>732, 10366=>732, 10367=>732, 10368=>732, 10369=>732, 10370=>732, 10371=>732, 10372=>732, 10373=>732, 10374=>732, 10375=>732, 10376=>732, 10377=>732, 10378=>732, 10379=>732, 10380=>732,
+ 10381=>732, 10382=>732, 10383=>732, 10384=>732, 10385=>732, 10386=>732, 10387=>732, 10388=>732, 10389=>732, 10390=>732, 10391=>732, 10392=>732, 10393=>732, 10394=>732, 10395=>732, 10396=>732,
+ 10397=>732, 10398=>732, 10399=>732, 10400=>732, 10401=>732, 10402=>732, 10403=>732, 10404=>732, 10405=>732, 10406=>732, 10407=>732, 10408=>732, 10409=>732, 10410=>732, 10411=>732, 10412=>732,
+ 10413=>732, 10414=>732, 10415=>732, 10416=>732, 10417=>732, 10418=>732, 10419=>732, 10420=>732, 10421=>732, 10422=>732, 10423=>732, 10424=>732, 10425=>732, 10426=>732, 10427=>732, 10428=>732,
+ 10429=>732, 10430=>732, 10431=>732, 10432=>732, 10433=>732, 10434=>732, 10435=>732, 10436=>732, 10437=>732, 10438=>732, 10439=>732, 10440=>732, 10441=>732, 10442=>732, 10443=>732, 10444=>732,
+ 10445=>732, 10446=>732, 10447=>732, 10448=>732, 10449=>732, 10450=>732, 10451=>732, 10452=>732, 10453=>732, 10454=>732, 10455=>732, 10456=>732, 10457=>732, 10458=>732, 10459=>732, 10460=>732,
+ 10461=>732, 10462=>732, 10463=>732, 10464=>732, 10465=>732, 10466=>732, 10467=>732, 10468=>732, 10469=>732, 10470=>732, 10471=>732, 10472=>732, 10473=>732, 10474=>732, 10475=>732, 10476=>732,
+ 10477=>732, 10478=>732, 10479=>732, 10480=>732, 10481=>732, 10482=>732, 10483=>732, 10484=>732, 10485=>732, 10486=>732, 10487=>732, 10488=>732, 10489=>732, 10490=>732, 10491=>732, 10492=>732,
+ 10493=>732, 10494=>732, 10495=>732, 10496=>838, 10497=>838, 10498=>838, 10499=>838, 10500=>838, 10501=>838, 10502=>838, 10503=>838, 10504=>838, 10505=>838, 10506=>838, 10507=>838, 10508=>838,
+ 10509=>838, 10510=>838, 10511=>838, 10512=>838, 10513=>838, 10514=>838, 10515=>838, 10516=>838, 10517=>838, 10518=>838, 10519=>838, 10520=>838, 10521=>838, 10522=>838, 10523=>838, 10524=>838,
+ 10525=>838, 10526=>838, 10527=>838, 10528=>838, 10529=>838, 10530=>838, 10531=>838, 10532=>838, 10533=>838, 10534=>838, 10535=>838, 10536=>838, 10537=>838, 10538=>838, 10539=>838, 10540=>838,
+ 10541=>838, 10542=>838, 10543=>838, 10544=>838, 10545=>838, 10546=>838, 10547=>838, 10548=>838, 10549=>838, 10550=>838, 10551=>838, 10552=>838, 10553=>838, 10554=>838, 10555=>838, 10556=>838,
+ 10557=>838, 10558=>838, 10559=>838, 10560=>838, 10561=>838, 10562=>838, 10563=>838, 10564=>838, 10565=>838, 10566=>838, 10567=>838, 10568=>838, 10569=>838, 10570=>838, 10571=>838, 10572=>838,
+ 10573=>838, 10574=>838, 10575=>838, 10576=>838, 10577=>838, 10578=>838, 10579=>838, 10580=>838, 10581=>838, 10582=>838, 10583=>838, 10584=>838, 10585=>838, 10586=>838, 10587=>838, 10588=>838,
+ 10589=>838, 10590=>838, 10591=>838, 10592=>838, 10593=>838, 10594=>838, 10595=>838, 10596=>838, 10597=>838, 10598=>838, 10599=>838, 10600=>838, 10601=>838, 10602=>838, 10603=>838, 10604=>838,
+ 10605=>838, 10606=>838, 10607=>838, 10608=>838, 10609=>838, 10610=>838, 10611=>838, 10612=>838, 10613=>838, 10614=>838, 10615=>981, 10616=>838, 10617=>838, 10618=>984, 10619=>838, 10620=>838,
+ 10621=>838, 10622=>838, 10623=>838, 10731=>494, 10764=>1513, 10765=>521, 10766=>521, 10799=>838, 11008=>838, 11009=>838, 11010=>838, 11011=>838, 11012=>838, 11013=>838, 11014=>838, 11015=>838,
+ 11016=>838, 11017=>838, 11018=>838, 11019=>838, 11020=>838, 11021=>838, 11022=>838, 11023=>838, 11024=>838, 11025=>838, 11026=>945, 11027=>945, 11028=>945, 11029=>945, 11030=>769, 11031=>769,
+ 11032=>769, 11033=>769, 11034=>945, 11367=>872, 11368=>644, 11369=>747, 11370=>606, 11371=>695, 11372=>527, 11381=>740, 11382=>556, 11383=>700, 11800=>536, 11822=>536, 63173=>602, 63185=>500,
+ 63188=>500, 64256=>710, 64257=>667, 64258=>667, 64259=>1028, 64260=>1030, 64261=>771, 64262=>933, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0, 65029=>0, 65030=>0, 65031=>0,
+ 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65529=>0, 65530=>0, 65531=>0, 65532=>0, 65533=>1025);
+$enc='';
+$diff='';
+$file='dejavuserif.z';
+$ctg='dejavuserif.ctg.z';
+$originalsize=305632;
+?>
diff --git a/lib/tcpdf/fonts/dejavuserif.z b/lib/tcpdf/fonts/dejavuserif.z
new file mode 100644
index 0000000000..aded2acfb7
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserif.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifb.ctg.z b/lib/tcpdf/fonts/dejavuserifb.ctg.z
new file mode 100644
index 0000000000..235e0dfad0
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifb.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifb.php b/lib/tcpdf/fonts/dejavuserifb.php
new file mode 100644
index 0000000000..d2ae669c09
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavuserifb.php
@@ -0,0 +1,180 @@
+939,'Descent'=>-236,'CapHeight'=>939,'Flags'=>32,'FontBBox'=>'[-836 -389 1796 1235]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>600, 32=>348, 33=>439, 34=>521, 35=>838, 36=>696, 37=>950, 38=>903, 39=>306, 40=>473, 41=>473, 42=>523, 43=>838, 44=>348, 45=>415, 46=>348,
+ 47=>365, 48=>696, 49=>696, 50=>696, 51=>696, 52=>696, 53=>696, 54=>696, 55=>696, 56=>696, 57=>696, 58=>369, 59=>369, 60=>838, 61=>838, 62=>838,
+ 63=>586, 64=>1000, 65=>776, 66=>845, 67=>796, 68=>867, 69=>762, 70=>710, 71=>854, 72=>945, 73=>468, 74=>473, 75=>869, 76=>703, 77=>1107, 78=>914,
+ 79=>871, 80=>752, 81=>871, 82=>831, 83=>722, 84=>744, 85=>872, 86=>776, 87=>1123, 88=>776, 89=>714, 90=>730, 91=>473, 92=>365, 93=>473, 94=>838,
+ 95=>500, 96=>500, 97=>648, 98=>699, 99=>609, 100=>699, 101=>636, 102=>430, 103=>699, 104=>727, 105=>380, 106=>362, 107=>693, 108=>380, 109=>1058, 110=>727,
+ 111=>667, 112=>699, 113=>699, 114=>527, 115=>563, 116=>462, 117=>727, 118=>581, 119=>861, 120=>596, 121=>581, 122=>568, 123=>643, 124=>364, 125=>643, 126=>838,
+ 8364=>696, 1027=>690, 8218=>348, 402=>430, 8222=>575, 8230=>1000, 8224=>523, 8225=>523, 710=>500, 8240=>1385, 352=>722, 8249=>400, 338=>1180, 1036=>910, 381=>730, 1039=>945,
+ 8216=>348, 8217=>348, 8220=>575, 8221=>575, 8226=>639, 8211=>500, 8212=>1000, 732=>500, 8482=>1000, 353=>563, 8250=>400, 339=>1028, 1116=>722, 382=>568, 376=>714, 160=>348,
+ 161=>439, 162=>696, 163=>696, 164=>636, 165=>696, 166=>364, 167=>523, 168=>500, 169=>1000, 170=>487, 171=>625, 172=>838, 173=>415, 174=>1000, 175=>500, 176=>500,
+ 177=>838, 178=>438, 179=>438, 180=>500, 181=>732, 182=>636, 183=>348, 184=>500, 185=>438, 186=>500, 187=>625, 188=>1043, 189=>1043, 190=>1043, 191=>586, 192=>776,
+ 193=>776, 194=>776, 195=>776, 196=>776, 197=>776, 198=>1034, 199=>796, 200=>762, 201=>762, 202=>762, 203=>762, 204=>468, 205=>468, 206=>468, 207=>468, 208=>874,
+ 209=>914, 210=>871, 211=>871, 212=>871, 213=>871, 214=>871, 215=>838, 216=>871, 217=>872, 218=>872, 219=>872, 220=>872, 221=>714, 222=>757, 223=>760, 224=>648,
+ 225=>648, 226=>648, 227=>648, 228=>648, 229=>648, 230=>975, 231=>609, 232=>636, 233=>636, 234=>636, 235=>636, 236=>380, 237=>380, 238=>380, 239=>380, 240=>667,
+ 241=>727, 242=>667, 243=>667, 244=>667, 245=>667, 246=>667, 247=>838, 248=>667, 249=>727, 250=>727, 251=>727, 252=>727, 253=>581, 254=>699, 255=>581, 256=>776,
+ 257=>648, 258=>776, 259=>648, 260=>776, 261=>648, 262=>796, 263=>609, 264=>796, 265=>609, 266=>796, 267=>609, 268=>796, 269=>609, 270=>867, 271=>699, 272=>874,
+ 273=>699, 274=>762, 275=>636, 276=>762, 277=>636, 278=>762, 279=>636, 280=>762, 281=>636, 282=>762, 283=>636, 284=>854, 285=>699, 286=>854, 287=>699, 288=>854,
+ 289=>699, 290=>854, 291=>699, 292=>945, 293=>727, 294=>945, 295=>727, 296=>468, 297=>380, 298=>468, 299=>380, 300=>468, 301=>380, 302=>468, 303=>380, 304=>468,
+ 305=>380, 306=>942, 307=>751, 308=>473, 309=>362, 310=>869, 311=>693, 312=>693, 313=>703, 314=>380, 315=>703, 316=>380, 317=>703, 318=>508, 319=>703, 320=>557,
+ 321=>710, 322=>385, 323=>914, 324=>727, 325=>914, 326=>727, 327=>914, 328=>727, 329=>1008, 330=>872, 331=>727, 332=>871, 333=>667, 334=>871, 335=>667, 336=>871,
+ 337=>667, 340=>831, 341=>527, 342=>831, 343=>527, 344=>831, 345=>527, 346=>722, 347=>563, 348=>722, 349=>563, 350=>722, 351=>563, 354=>744, 355=>462, 356=>744,
+ 357=>462, 358=>744, 359=>462, 360=>872, 361=>727, 362=>872, 363=>727, 364=>872, 365=>727, 366=>872, 367=>727, 368=>872, 369=>727, 370=>872, 371=>727, 372=>1123,
+ 373=>861, 374=>714, 375=>581, 377=>730, 378=>568, 379=>730, 380=>568, 383=>430, 384=>699, 385=>845, 386=>854, 387=>699, 388=>854, 389=>699, 390=>796, 391=>796,
+ 392=>609, 393=>874, 394=>867, 395=>854, 396=>699, 397=>667, 398=>762, 399=>871, 400=>721, 401=>710, 403=>854, 404=>771, 405=>1043, 406=>468, 407=>468, 408=>869,
+ 409=>693, 410=>380, 411=>701, 412=>1058, 413=>914, 414=>727, 415=>871, 416=>871, 417=>667, 418=>1200, 419=>943, 420=>752, 421=>699, 422=>831, 423=>722, 424=>563,
+ 425=>707, 426=>331, 427=>462, 428=>744, 429=>462, 430=>744, 431=>872, 432=>727, 433=>890, 434=>890, 435=>714, 436=>708, 437=>730, 438=>568, 439=>568, 440=>568,
+ 441=>568, 443=>696, 444=>754, 445=>568, 446=>536, 448=>295, 449=>492, 450=>459, 451=>295, 452=>1597, 453=>1435, 454=>1267, 455=>1176, 456=>1065, 457=>742, 458=>1387,
+ 459=>1276, 460=>1089, 461=>776, 462=>648, 463=>468, 464=>380, 465=>871, 466=>667, 467=>872, 468=>727, 469=>872, 470=>727, 471=>872, 472=>727, 473=>872, 474=>727,
+ 475=>872, 476=>727, 477=>636, 478=>776, 479=>648, 480=>776, 481=>648, 482=>1034, 483=>975, 484=>896, 485=>699, 486=>854, 487=>699, 488=>869, 489=>693, 490=>871,
+ 491=>667, 492=>871, 493=>667, 494=>568, 495=>568, 496=>380, 497=>1597, 498=>1435, 499=>1267, 500=>854, 501=>699, 502=>1221, 504=>914, 505=>727, 506=>776, 507=>648,
+ 508=>1034, 509=>975, 510=>871, 511=>667, 512=>776, 513=>648, 514=>776, 515=>648, 516=>762, 517=>636, 518=>762, 519=>636, 520=>468, 521=>380, 522=>468, 523=>380,
+ 524=>871, 525=>667, 526=>871, 527=>667, 528=>831, 529=>527, 530=>831, 531=>527, 532=>872, 533=>727, 534=>872, 535=>727, 536=>722, 537=>563, 538=>744, 539=>462,
+ 542=>945, 543=>727, 544=>872, 545=>791, 548=>730, 549=>568, 550=>776, 551=>648, 552=>762, 553=>636, 554=>871, 555=>667, 556=>871, 557=>667, 558=>871, 559=>667,
+ 560=>871, 561=>667, 562=>714, 563=>581, 564=>573, 565=>922, 566=>564, 567=>362, 568=>1031, 569=>1031, 570=>776, 571=>796, 572=>609, 573=>703, 574=>744, 575=>563,
+ 576=>568, 577=>660, 578=>547, 581=>776, 592=>648, 593=>699, 594=>699, 595=>699, 596=>609, 597=>609, 598=>699, 599=>730, 600=>636, 601=>636, 602=>907, 603=>608,
+ 604=>562, 605=>907, 606=>720, 607=>387, 608=>699, 609=>699, 610=>626, 611=>712, 612=>627, 613=>727, 614=>727, 615=>727, 616=>380, 617=>380, 618=>380, 619=>409,
+ 620=>514, 621=>380, 622=>795, 623=>1058, 624=>1058, 625=>1058, 626=>727, 627=>727, 628=>712, 629=>667, 630=>1061, 631=>749, 632=>667, 633=>571, 634=>571, 635=>571,
+ 636=>527, 637=>527, 638=>452, 639=>487, 640=>801, 641=>801, 642=>563, 643=>331, 644=>430, 645=>540, 646=>331, 647=>492, 648=>462, 649=>727, 650=>679, 651=>694,
+ 652=>641, 653=>907, 654=>635, 655=>727, 656=>568, 657=>568, 658=>568, 659=>568, 660=>536, 661=>536, 662=>536, 663=>545, 664=>871, 665=>695, 666=>720, 667=>626,
+ 668=>732, 669=>384, 670=>740, 671=>646, 672=>699, 673=>536, 674=>536, 675=>1117, 676=>1179, 677=>1117, 678=>911, 679=>715, 680=>909, 681=>1039, 682=>790, 683=>795,
+ 684=>662, 685=>443, 686=>613, 687=>717, 688=>521, 689=>519, 690=>313, 691=>414, 692=>414, 693=>480, 694=>527, 695=>662, 696=>485, 697=>302, 699=>348, 700=>348,
+ 701=>348, 702=>366, 703=>366, 704=>313, 705=>313, 711=>500, 712=>282, 713=>500, 716=>282, 720=>369, 721=>369, 722=>366, 723=>366, 726=>392, 728=>500, 729=>500,
+ 730=>500, 731=>500, 733=>500, 734=>417, 736=>458, 737=>292, 738=>395, 739=>475, 740=>313, 741=>484, 742=>484, 743=>484, 744=>484, 745=>484, 750=>553, 768=>0,
+ 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0,
+ 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0,
+ 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0,
+ 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 835=>0,
+ 847=>0, 856=>0, 865=>0, 884=>302, 885=>302, 890=>500, 894=>369, 900=>500, 901=>500, 902=>776, 903=>348, 904=>947, 905=>1118, 906=>662, 908=>887, 910=>953,
+ 911=>911, 912=>484, 913=>776, 914=>845, 915=>710, 916=>776, 917=>762, 918=>730, 919=>945, 920=>871, 921=>468, 922=>869, 923=>776, 924=>1107, 925=>914, 926=>704,
+ 927=>871, 928=>944, 929=>752, 931=>707, 932=>744, 933=>714, 934=>871, 935=>776, 936=>913, 937=>890, 938=>468, 939=>714, 940=>770, 941=>608, 942=>727, 943=>484,
+ 944=>694, 945=>770, 946=>664, 947=>660, 948=>667, 949=>608, 950=>592, 951=>727, 952=>667, 953=>484, 954=>750, 955=>701, 956=>732, 957=>694, 958=>592, 959=>667,
+ 960=>732, 961=>665, 962=>609, 963=>737, 964=>673, 965=>694, 966=>905, 967=>658, 968=>941, 969=>952, 970=>484, 971=>694, 972=>667, 973=>694, 974=>952, 976=>667,
+ 977=>849, 978=>764, 979=>969, 980=>764, 981=>941, 982=>952, 983=>655, 984=>871, 985=>667, 986=>796, 987=>609, 988=>710, 989=>527, 990=>590, 991=>660, 992=>796,
+ 993=>667, 1008=>655, 1009=>665, 1010=>609, 1011=>362, 1012=>871, 1013=>609, 1014=>609, 1015=>757, 1016=>699, 1017=>796, 1018=>1107, 1019=>860, 1020=>692, 1021=>796, 1022=>796,
+ 1023=>796, 1024=>762, 1025=>762, 1026=>901, 1028=>795, 1029=>722, 1030=>468, 1031=>468, 1032=>473, 1033=>1202, 1034=>1262, 1035=>963, 1037=>945, 1038=>812, 1040=>814, 1041=>854,
+ 1042=>845, 1043=>690, 1044=>889, 1045=>762, 1046=>1312, 1047=>721, 1048=>945, 1049=>945, 1050=>910, 1051=>884, 1052=>1107, 1053=>945, 1054=>871, 1055=>944, 1056=>752, 1057=>796,
+ 1058=>744, 1059=>812, 1060=>949, 1061=>776, 1062=>966, 1063=>913, 1064=>1268, 1065=>1293, 1066=>957, 1067=>1202, 1068=>825, 1069=>795, 1070=>1287, 1071=>882, 1072=>648, 1073=>667,
+ 1074=>695, 1075=>613, 1076=>667, 1077=>636, 1078=>1010, 1079=>638, 1080=>742, 1081=>742, 1082=>722, 1083=>705, 1084=>869, 1085=>732, 1086=>667, 1087=>732, 1088=>699, 1089=>609,
+ 1090=>620, 1091=>640, 1092=>902, 1093=>596, 1094=>739, 1095=>732, 1096=>1075, 1097=>1082, 1098=>767, 1099=>1002, 1100=>679, 1101=>609, 1102=>1025, 1103=>739, 1104=>636, 1105=>636,
+ 1106=>719, 1107=>613, 1108=>609, 1109=>563, 1110=>380, 1111=>380, 1112=>362, 1113=>988, 1114=>1015, 1115=>727, 1117=>742, 1118=>640, 1119=>732, 1122=>880, 1123=>703, 1124=>1195,
+ 1125=>963, 1130=>1312, 1131=>1010, 1138=>871, 1139=>652, 1140=>916, 1141=>749, 1164=>846, 1165=>673, 1168=>700, 1169=>618, 1170=>690, 1171=>613, 1172=>868, 1173=>716, 1174=>1312,
+ 1175=>1010, 1176=>721, 1177=>638, 1178=>947, 1179=>744, 1182=>910, 1183=>722, 1184=>1041, 1185=>827, 1186=>966, 1187=>739, 1188=>1167, 1189=>956, 1190=>1345, 1191=>1059, 1194=>796,
+ 1195=>609, 1196=>744, 1197=>620, 1198=>714, 1199=>581, 1200=>714, 1201=>581, 1202=>866, 1203=>649, 1204=>1250, 1205=>997, 1206=>928, 1207=>739, 1210=>910, 1211=>727, 1216=>468,
+ 1217=>1312, 1218=>1010, 1219=>869, 1220=>693, 1223=>945, 1224=>732, 1227=>913, 1228=>732, 1231=>380, 1232=>814, 1233=>648, 1234=>814, 1235=>648, 1236=>1034, 1237=>975, 1238=>762,
+ 1239=>636, 1240=>871, 1241=>636, 1242=>871, 1243=>636, 1244=>1312, 1245=>1010, 1246=>721, 1247=>638, 1248=>568, 1249=>568, 1250=>945, 1251=>742, 1252=>945, 1253=>742, 1254=>871,
+ 1255=>667, 1256=>871, 1257=>667, 1258=>871, 1259=>667, 1260=>795, 1261=>609, 1262=>812, 1263=>640, 1264=>812, 1265=>640, 1266=>812, 1267=>640, 1268=>913, 1269=>732, 1270=>690,
+ 1271=>613, 1272=>1202, 1273=>1002, 4256=>712, 4257=>883, 4258=>817, 4259=>825, 4260=>737, 4261=>1017, 4262=>957, 4263=>1144, 4264=>606, 4265=>771, 4266=>992, 4267=>991, 4268=>751,
+ 4269=>1070, 4270=>914, 4271=>851, 4272=>1046, 4273=>747, 4274=>713, 4275=>1015, 4276=>921, 4277=>1006, 4278=>765, 4279=>786, 4280=>775, 4281=>786, 4282=>857, 4283=>1016, 4284=>726,
+ 4285=>775, 4286=>767, 4287=>1048, 4288=>1059, 4289=>756, 4290=>842, 4291=>757, 4292=>831, 4293=>1003, 4304=>541, 4305=>568, 4306=>603, 4307=>809, 4308=>568, 4309=>578, 4310=>608,
+ 4311=>842, 4312=>557, 4313=>561, 4314=>1021, 4315=>578, 4316=>578, 4317=>801, 4318=>567, 4319=>578, 4320=>799, 4321=>591, 4322=>748, 4323=>679, 4324=>796, 4325=>577, 4326=>831,
+ 4327=>579, 4328=>606, 4329=>578, 4330=>678, 4331=>579, 4332=>571, 4333=>573, 4334=>610, 4335=>668, 4336=>578, 4337=>618, 4338=>568, 4339=>568, 4340=>568, 4341=>657, 4342=>856,
+ 4343=>619, 4344=>569, 4345=>612, 4346=>388, 4347=>464, 4348=>568, 7426=>940, 7432=>509, 7433=>320, 7444=>989, 7446=>667, 7447=>667, 7453=>737, 7454=>948, 7455=>948, 7468=>489,
+ 7469=>651, 7470=>532, 7472=>546, 7473=>480, 7474=>480, 7475=>538, 7476=>595, 7477=>294, 7478=>298, 7479=>547, 7480=>443, 7481=>697, 7482=>576, 7483=>576, 7484=>548, 7486=>474,
+ 7487=>523, 7488=>455, 7489=>469, 7490=>549, 7491=>466, 7492=>466, 7493=>498, 7494=>657, 7495=>499, 7496=>498, 7497=>444, 7498=>444, 7499=>412, 7500=>412, 7501=>498, 7502=>300,
+ 7503=>523, 7504=>729, 7505=>473, 7506=>467, 7507=>427, 7508=>467, 7509=>467, 7510=>499, 7511=>371, 7512=>520, 7513=>434, 7514=>729, 7515=>491, 7522=>239, 7523=>414, 7524=>520,
+ 7525=>491, 7543=>640, 7544=>595, 7547=>380, 7557=>380, 7579=>498, 7580=>427, 7581=>427, 7582=>467, 7583=>412, 7584=>383, 7585=>373, 7586=>498, 7587=>522, 7588=>300, 7589=>307,
+ 7590=>300, 7591=>300, 7592=>370, 7593=>368, 7594=>321, 7595=>430, 7596=>682, 7597=>729, 7598=>588, 7599=>587, 7600=>472, 7601=>467, 7602=>522, 7603=>400, 7604=>387, 7605=>371,
+ 7606=>520, 7607=>475, 7609=>489, 7610=>491, 7611=>412, 7612=>527, 7613=>412, 7614=>452, 7615=>467, 7680=>776, 7681=>648, 7682=>845, 7683=>699, 7684=>845, 7685=>699, 7686=>845,
+ 7687=>699, 7688=>796, 7689=>609, 7690=>867, 7691=>699, 7692=>867, 7693=>699, 7694=>867, 7695=>699, 7696=>867, 7697=>699, 7698=>867, 7699=>699, 7700=>762, 7701=>636, 7702=>762,
+ 7703=>636, 7704=>762, 7705=>636, 7706=>762, 7707=>636, 7708=>762, 7709=>636, 7710=>710, 7711=>430, 7712=>854, 7713=>699, 7714=>945, 7715=>727, 7716=>945, 7717=>727, 7718=>945,
+ 7719=>727, 7720=>945, 7721=>727, 7722=>945, 7723=>727, 7724=>468, 7725=>380, 7728=>869, 7729=>693, 7730=>869, 7731=>693, 7732=>869, 7733=>693, 7734=>703, 7735=>380, 7736=>703,
+ 7737=>380, 7738=>703, 7739=>380, 7740=>703, 7741=>380, 7742=>1107, 7743=>1058, 7744=>1107, 7745=>1058, 7746=>1107, 7747=>1058, 7748=>914, 7749=>727, 7750=>914, 7751=>727, 7752=>914,
+ 7753=>727, 7754=>914, 7755=>727, 7760=>871, 7761=>667, 7762=>871, 7763=>667, 7764=>752, 7765=>699, 7766=>752, 7767=>699, 7768=>831, 7769=>527, 7770=>831, 7771=>527, 7772=>831,
+ 7773=>527, 7774=>831, 7775=>527, 7776=>722, 7777=>563, 7778=>722, 7779=>563, 7784=>722, 7785=>563, 7786=>744, 7787=>462, 7788=>744, 7789=>462, 7790=>744, 7791=>462, 7792=>744,
+ 7793=>462, 7794=>872, 7795=>727, 7796=>872, 7797=>727, 7798=>872, 7799=>727, 7800=>872, 7801=>727, 7802=>872, 7803=>727, 7804=>776, 7805=>581, 7806=>776, 7807=>581, 7808=>1123,
+ 7809=>861, 7810=>1123, 7811=>861, 7812=>1123, 7813=>861, 7814=>1123, 7815=>861, 7816=>1123, 7817=>861, 7818=>776, 7819=>596, 7820=>776, 7821=>596, 7822=>714, 7823=>581, 7824=>730,
+ 7825=>568, 7826=>730, 7827=>568, 7828=>730, 7829=>568, 7830=>727, 7831=>462, 7832=>861, 7833=>581, 7834=>1014, 7835=>563, 7840=>776, 7841=>648, 7842=>776, 7843=>648, 7852=>776,
+ 7853=>648, 7854=>776, 7855=>648, 7856=>776, 7857=>648, 7858=>776, 7859=>648, 7860=>776, 7861=>648, 7862=>776, 7863=>648, 7864=>762, 7865=>636, 7866=>762, 7867=>636, 7868=>762,
+ 7869=>636, 7878=>762, 7879=>636, 7880=>468, 7881=>380, 7882=>468, 7883=>380, 7884=>871, 7885=>667, 7886=>871, 7887=>667, 7896=>871, 7897=>667, 7908=>872, 7909=>727, 7910=>872,
+ 7911=>727, 7922=>714, 7923=>581, 7924=>714, 7925=>581, 7926=>714, 7927=>581, 7928=>714, 7929=>581, 7936=>770, 7937=>770, 7938=>770, 7939=>770, 7940=>770, 7941=>770, 7942=>770,
+ 7943=>770, 7944=>776, 7945=>776, 7946=>978, 7947=>978, 7948=>832, 7949=>849, 7950=>776, 7951=>776, 7952=>608, 7953=>608, 7954=>608, 7955=>608, 7956=>608, 7957=>608, 7960=>917,
+ 7961=>909, 7962=>1169, 7963=>1169, 7964=>1093, 7965=>1120, 7968=>727, 7969=>727, 7970=>727, 7971=>727, 7972=>727, 7973=>727, 7974=>727, 7975=>727, 7976=>1100, 7977=>1094, 7978=>1358,
+ 7979=>1361, 7980=>1279, 7981=>1308, 7982=>1197, 7983=>1194, 7984=>484, 7985=>484, 7986=>484, 7987=>484, 7988=>484, 7989=>484, 7990=>484, 7991=>484, 7992=>629, 7993=>617, 7994=>878,
+ 7995=>881, 7996=>799, 7997=>831, 7998=>723, 7999=>714, 8000=>667, 8001=>667, 8002=>667, 8003=>667, 8004=>667, 8005=>667, 8008=>900, 8009=>935, 8010=>1240, 8011=>1237, 8012=>1035,
+ 8013=>1066, 8016=>694, 8017=>694, 8018=>694, 8019=>694, 8020=>694, 8021=>694, 8022=>694, 8023=>694, 8025=>922, 8027=>1186, 8029=>1133, 8031=>1019, 8032=>952, 8033=>952, 8034=>952,
+ 8035=>952, 8036=>952, 8037=>952, 8038=>952, 8039=>952, 8040=>931, 8041=>963, 8042=>1268, 8043=>1274, 8044=>1054, 8045=>1088, 8046=>1023, 8047=>1060, 8048=>770, 8049=>770, 8050=>608,
+ 8051=>608, 8052=>727, 8053=>727, 8054=>484, 8055=>484, 8056=>667, 8057=>667, 8058=>694, 8059=>694, 8060=>952, 8061=>952, 8064=>770, 8065=>770, 8066=>770, 8067=>770, 8068=>770,
+ 8069=>770, 8070=>770, 8071=>770, 8072=>776, 8073=>776, 8074=>978, 8075=>978, 8076=>832, 8077=>849, 8078=>776, 8079=>776, 8080=>727, 8081=>727, 8082=>727, 8083=>727, 8084=>727,
+ 8085=>727, 8086=>727, 8087=>727, 8088=>1100, 8089=>1094, 8090=>1358, 8091=>1361, 8092=>1279, 8093=>1308, 8094=>1197, 8095=>1194, 8096=>952, 8097=>952, 8098=>952, 8099=>952, 8100=>952,
+ 8101=>952, 8102=>952, 8103=>952, 8104=>931, 8105=>963, 8106=>1268, 8107=>1274, 8108=>1054, 8109=>1088, 8110=>1023, 8111=>1060, 8112=>770, 8113=>770, 8114=>770, 8115=>770, 8116=>770,
+ 8118=>770, 8119=>770, 8120=>776, 8121=>776, 8122=>811, 8123=>776, 8124=>776, 8125=>500, 8126=>500, 8127=>500, 8128=>500, 8129=>500, 8130=>727, 8131=>727, 8132=>727, 8134=>727,
+ 8135=>727, 8136=>1000, 8137=>947, 8138=>1191, 8139=>1118, 8140=>945, 8141=>500, 8142=>500, 8143=>500, 8144=>484, 8145=>484, 8146=>484, 8147=>484, 8150=>484, 8151=>484, 8152=>468,
+ 8153=>468, 8154=>714, 8155=>662, 8157=>500, 8158=>500, 8159=>500, 8160=>694, 8161=>694, 8162=>694, 8163=>694, 8164=>665, 8165=>665, 8166=>694, 8167=>694, 8168=>714, 8169=>714,
+ 8170=>1019, 8171=>953, 8172=>910, 8173=>500, 8174=>500, 8175=>500, 8178=>952, 8179=>952, 8180=>952, 8182=>952, 8183=>952, 8184=>1069, 8185=>887, 8186=>1101, 8187=>911, 8188=>890,
+ 8189=>500, 8190=>500, 8192=>500, 8193=>1000, 8194=>500, 8195=>1000, 8196=>330, 8197=>250, 8198=>167, 8199=>696, 8200=>348, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>415, 8209=>415, 8210=>696, 8213=>1000, 8215=>500, 8219=>348, 8223=>575, 8227=>639, 8228=>348, 8229=>674, 8234=>0, 8235=>0, 8236=>0, 8237=>0,
+ 8238=>0, 8239=>200, 8241=>1820, 8252=>629, 8253=>586, 8254=>500, 8263=>1082, 8264=>856, 8265=>856, 8287=>222, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0,
+ 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>438, 8305=>239, 8308=>438, 8309=>438, 8310=>438, 8311=>438, 8312=>438, 8313=>438, 8314=>528, 8315=>528, 8316=>528,
+ 8317=>298, 8318=>298, 8319=>519, 8320=>438, 8321=>438, 8322=>438, 8323=>438, 8324=>438, 8325=>438, 8326=>438, 8327=>438, 8328=>438, 8329=>438, 8330=>528, 8331=>528, 8332=>528,
+ 8333=>298, 8334=>298, 8336=>466, 8337=>444, 8338=>467, 8339=>475, 8340=>444, 8358=>696, 8367=>1155, 8369=>790, 8372=>876, 8373=>696, 8451=>1198, 8457=>1112, 8462=>727, 8470=>1087,
+ 8486=>890, 8487=>890, 8490=>869, 8491=>776, 8513=>775, 8514=>557, 8515=>637, 8516=>760, 8523=>903, 8531=>1035, 8532=>1035, 8533=>1035, 8534=>1035, 8535=>1035, 8536=>1035, 8537=>1035,
+ 8538=>1035, 8539=>1035, 8540=>1035, 8541=>1035, 8542=>1035, 8543=>615, 8544=>468, 8545=>736, 8546=>1005, 8547=>1093, 8548=>776, 8549=>1127, 8550=>1396, 8551=>1664, 8552=>1069, 8553=>776,
+ 8554=>1078, 8555=>1347, 8556=>703, 8557=>796, 8558=>867, 8559=>1107, 8560=>380, 8561=>760, 8562=>1140, 8563=>961, 8564=>581, 8565=>961, 8566=>1341, 8567=>1721, 8568=>976, 8569=>596,
+ 8570=>976, 8571=>1356, 8572=>380, 8573=>609, 8574=>699, 8575=>1058, 8576=>1255, 8577=>867, 8578=>1268, 8579=>796, 8580=>609, 8592=>838, 8593=>838, 8594=>838, 8595=>838, 8596=>838,
+ 8597=>838, 8598=>838, 8599=>838, 8600=>838, 8601=>838, 8602=>838, 8603=>838, 8604=>838, 8605=>838, 8606=>838, 8607=>838, 8608=>838, 8609=>838, 8610=>838, 8611=>838, 8612=>838,
+ 8613=>838, 8614=>838, 8615=>838, 8616=>838, 8617=>838, 8618=>838, 8619=>838, 8620=>838, 8621=>838, 8622=>838, 8623=>850, 8624=>838, 8625=>838, 8626=>838, 8627=>838, 8628=>838,
+ 8629=>838, 8630=>838, 8631=>838, 8632=>838, 8633=>838, 8634=>838, 8635=>838, 8636=>838, 8637=>838, 8638=>838, 8639=>838, 8640=>838, 8641=>838, 8642=>838, 8643=>838, 8644=>838,
+ 8645=>838, 8646=>838, 8647=>838, 8648=>838, 8649=>838, 8650=>838, 8651=>838, 8652=>838, 8653=>838, 8654=>838, 8655=>838, 8656=>838, 8657=>838, 8658=>838, 8659=>838, 8660=>838,
+ 8661=>838, 8662=>838, 8663=>838, 8664=>838, 8665=>838, 8666=>838, 8667=>838, 8668=>838, 8669=>838, 8670=>838, 8671=>838, 8672=>838, 8673=>838, 8674=>838, 8675=>838, 8676=>838,
+ 8677=>838, 8678=>838, 8679=>838, 8680=>838, 8681=>838, 8682=>838, 8683=>838, 8684=>838, 8685=>838, 8686=>838, 8687=>838, 8688=>838, 8689=>838, 8690=>838, 8691=>838, 8692=>838,
+ 8693=>838, 8694=>838, 8695=>838, 8696=>838, 8697=>838, 8698=>838, 8699=>838, 8700=>838, 8701=>838, 8702=>838, 8703=>838, 8704=>641, 8706=>534, 8707=>620, 8708=>620, 8710=>753,
+ 8711=>753, 8712=>740, 8713=>740, 8715=>740, 8716=>740, 8719=>842, 8720=>842, 8721=>753, 8722=>838, 8723=>838, 8724=>838, 8725=>167, 8727=>691, 8728=>519, 8729=>519, 8730=>657,
+ 8731=>657, 8732=>657, 8733=>672, 8734=>833, 8735=>838, 8736=>838, 8739=>324, 8740=>607, 8741=>529, 8742=>773, 8743=>812, 8744=>812, 8745=>838, 8746=>838, 8747=>579, 8748=>1000,
+ 8749=>1391, 8760=>838, 8761=>838, 8762=>838, 8763=>838, 8764=>838, 8765=>838, 8770=>838, 8771=>838, 8776=>838, 8784=>838, 8785=>838, 8786=>838, 8787=>838, 8788=>1082, 8789=>1082,
+ 8800=>838, 8801=>838, 8804=>838, 8805=>838, 8834=>838, 8835=>838, 8836=>838, 8837=>838, 8838=>838, 8839=>838, 8844=>838, 8845=>838, 8846=>838, 8847=>838, 8848=>838, 8849=>838,
+ 8850=>838, 8851=>838, 8852=>838, 8853=>838, 8854=>838, 8855=>838, 8856=>838, 8857=>838, 8858=>838, 8859=>838, 8860=>838, 8861=>838, 8862=>838, 8863=>838, 8864=>838, 8865=>838,
+ 8866=>884, 8867=>884, 8868=>960, 8869=>960, 8870=>616, 8871=>616, 8872=>884, 8873=>884, 8874=>884, 8875=>1080, 8876=>884, 8877=>884, 8878=>884, 8879=>1080, 8901=>398, 8962=>834,
+ 8968=>473, 8969=>473, 8970=>473, 8971=>473, 8976=>838, 8977=>539, 8984=>928, 8985=>838, 8992=>579, 8993=>579, 8997=>1000, 9000=>1443, 9085=>1008, 9134=>579, 9167=>945, 9251=>834,
+ 9600=>769, 9601=>769, 9602=>769, 9603=>769, 9604=>769, 9605=>769, 9606=>769, 9607=>769, 9608=>769, 9609=>769, 9610=>769, 9611=>769, 9612=>769, 9613=>769, 9614=>769, 9615=>769,
+ 9616=>769, 9617=>769, 9618=>769, 9619=>769, 9620=>769, 9621=>769, 9622=>769, 9623=>769, 9624=>769, 9625=>769, 9626=>769, 9627=>769, 9628=>769, 9629=>769, 9630=>769, 9631=>769,
+ 9632=>945, 9633=>945, 9634=>945, 9635=>945, 9636=>945, 9637=>945, 9638=>945, 9639=>945, 9640=>945, 9641=>945, 9642=>678, 9643=>678, 9644=>945, 9645=>945, 9646=>550, 9647=>550,
+ 9648=>769, 9649=>769, 9650=>769, 9651=>769, 9652=>502, 9653=>502, 9654=>769, 9655=>769, 9656=>502, 9657=>502, 9658=>769, 9659=>769, 9660=>769, 9661=>769, 9662=>502, 9663=>502,
+ 9664=>769, 9665=>769, 9666=>502, 9667=>502, 9668=>769, 9669=>769, 9670=>769, 9671=>769, 9672=>769, 9673=>873, 9674=>494, 9675=>873, 9676=>873, 9677=>873, 9678=>873, 9679=>873,
+ 9680=>873, 9681=>873, 9682=>873, 9683=>873, 9684=>873, 9685=>873, 9686=>527, 9687=>527, 9688=>791, 9689=>970, 9690=>970, 9691=>970, 9692=>387, 9693=>387, 9694=>387, 9695=>387,
+ 9696=>873, 9697=>873, 9698=>769, 9699=>769, 9700=>769, 9701=>769, 9702=>590, 9703=>945, 9704=>945, 9705=>945, 9706=>945, 9707=>945, 9708=>769, 9709=>769, 9710=>769, 9711=>1119,
+ 9712=>945, 9713=>945, 9714=>945, 9715=>945, 9716=>873, 9717=>873, 9718=>873, 9719=>873, 9720=>769, 9721=>769, 9722=>769, 9723=>830, 9724=>830, 9725=>732, 9726=>732, 9727=>769,
+ 9728=>896, 9784=>896, 9785=>896, 9786=>896, 9787=>896, 9788=>896, 9791=>614, 9792=>731, 9793=>731, 9794=>896, 9795=>896, 9796=>896, 9797=>896, 9798=>896, 9799=>896, 9824=>896,
+ 9825=>896, 9826=>896, 9827=>896, 9828=>896, 9829=>896, 9830=>896, 9831=>896, 9833=>472, 9834=>638, 9835=>896, 9836=>896, 9837=>472, 9838=>357, 9839=>484, 10145=>838, 10208=>494,
+ 10216=>457, 10217=>457, 10224=>838, 10225=>838, 10226=>838, 10227=>838, 10228=>1033, 10229=>1434, 10230=>1434, 10231=>1434, 10232=>1434, 10233=>1434, 10234=>1434, 10235=>1434, 10236=>1434, 10237=>1434,
+ 10238=>1434, 10239=>1434, 10240=>781, 10241=>781, 10242=>781, 10243=>781, 10244=>781, 10245=>781, 10246=>781, 10247=>781, 10248=>781, 10249=>781, 10250=>781, 10251=>781, 10252=>781, 10253=>781,
+ 10254=>781, 10255=>781, 10256=>781, 10257=>781, 10258=>781, 10259=>781, 10260=>781, 10261=>781, 10262=>781, 10263=>781, 10264=>781, 10265=>781, 10266=>781, 10267=>781, 10268=>781, 10269=>781,
+ 10270=>781, 10271=>781, 10272=>781, 10273=>781, 10274=>781, 10275=>781, 10276=>781, 10277=>781, 10278=>781, 10279=>781, 10280=>781, 10281=>781, 10282=>781, 10283=>781, 10284=>781, 10285=>781,
+ 10286=>781, 10287=>781, 10288=>781, 10289=>781, 10290=>781, 10291=>781, 10292=>781, 10293=>781, 10294=>781, 10295=>781, 10296=>781, 10297=>781, 10298=>781, 10299=>781, 10300=>781, 10301=>781,
+ 10302=>781, 10303=>781, 10304=>781, 10305=>781, 10306=>781, 10307=>781, 10308=>781, 10309=>781, 10310=>781, 10311=>781, 10312=>781, 10313=>781, 10314=>781, 10315=>781, 10316=>781, 10317=>781,
+ 10318=>781, 10319=>781, 10320=>781, 10321=>781, 10322=>781, 10323=>781, 10324=>781, 10325=>781, 10326=>781, 10327=>781, 10328=>781, 10329=>781, 10330=>781, 10331=>781, 10332=>781, 10333=>781,
+ 10334=>781, 10335=>781, 10336=>781, 10337=>781, 10338=>781, 10339=>781, 10340=>781, 10341=>781, 10342=>781, 10343=>781, 10344=>781, 10345=>781, 10346=>781, 10347=>781, 10348=>781, 10349=>781,
+ 10350=>781, 10351=>781, 10352=>781, 10353=>781, 10354=>781, 10355=>781, 10356=>781, 10357=>781, 10358=>781, 10359=>781, 10360=>781, 10361=>781, 10362=>781, 10363=>781, 10364=>781, 10365=>781,
+ 10366=>781, 10367=>781, 10368=>781, 10369=>781, 10370=>781, 10371=>781, 10372=>781, 10373=>781, 10374=>781, 10375=>781, 10376=>781, 10377=>781, 10378=>781, 10379=>781, 10380=>781, 10381=>781,
+ 10382=>781, 10383=>781, 10384=>781, 10385=>781, 10386=>781, 10387=>781, 10388=>781, 10389=>781, 10390=>781, 10391=>781, 10392=>781, 10393=>781, 10394=>781, 10395=>781, 10396=>781, 10397=>781,
+ 10398=>781, 10399=>781, 10400=>781, 10401=>781, 10402=>781, 10403=>781, 10404=>781, 10405=>781, 10406=>781, 10407=>781, 10408=>781, 10409=>781, 10410=>781, 10411=>781, 10412=>781, 10413=>781,
+ 10414=>781, 10415=>781, 10416=>781, 10417=>781, 10418=>781, 10419=>781, 10420=>781, 10421=>781, 10422=>781, 10423=>781, 10424=>781, 10425=>781, 10426=>781, 10427=>781, 10428=>781, 10429=>781,
+ 10430=>781, 10431=>781, 10432=>781, 10433=>781, 10434=>781, 10435=>781, 10436=>781, 10437=>781, 10438=>781, 10439=>781, 10440=>781, 10441=>781, 10442=>781, 10443=>781, 10444=>781, 10445=>781,
+ 10446=>781, 10447=>781, 10448=>781, 10449=>781, 10450=>781, 10451=>781, 10452=>781, 10453=>781, 10454=>781, 10455=>781, 10456=>781, 10457=>781, 10458=>781, 10459=>781, 10460=>781, 10461=>781,
+ 10462=>781, 10463=>781, 10464=>781, 10465=>781, 10466=>781, 10467=>781, 10468=>781, 10469=>781, 10470=>781, 10471=>781, 10472=>781, 10473=>781, 10474=>781, 10475=>781, 10476=>781, 10477=>781,
+ 10478=>781, 10479=>781, 10480=>781, 10481=>781, 10482=>781, 10483=>781, 10484=>781, 10485=>781, 10486=>781, 10487=>781, 10488=>781, 10489=>781, 10490=>781, 10491=>781, 10492=>781, 10493=>781,
+ 10494=>781, 10495=>781, 10496=>838, 10497=>838, 10498=>838, 10499=>838, 10500=>838, 10501=>838, 10502=>838, 10503=>838, 10504=>838, 10505=>838, 10506=>838, 10507=>838, 10508=>838, 10509=>838,
+ 10510=>838, 10511=>838, 10512=>838, 10513=>838, 10514=>838, 10515=>838, 10516=>838, 10517=>838, 10518=>838, 10519=>838, 10520=>838, 10521=>838, 10522=>838, 10523=>838, 10524=>838, 10525=>838,
+ 10526=>838, 10527=>838, 10528=>838, 10529=>838, 10530=>838, 10531=>838, 10532=>838, 10533=>838, 10534=>838, 10535=>838, 10536=>838, 10537=>838, 10538=>838, 10539=>838, 10540=>838, 10541=>838,
+ 10542=>838, 10543=>838, 10544=>838, 10545=>838, 10546=>838, 10547=>838, 10548=>838, 10549=>838, 10550=>838, 10551=>838, 10552=>838, 10553=>838, 10554=>838, 10555=>838, 10556=>838, 10557=>838,
+ 10558=>838, 10559=>838, 10560=>838, 10561=>838, 10562=>838, 10563=>838, 10564=>838, 10565=>838, 10566=>838, 10567=>838, 10568=>838, 10569=>838, 10570=>838, 10571=>838, 10572=>838, 10573=>838,
+ 10574=>838, 10575=>838, 10576=>838, 10577=>838, 10578=>838, 10579=>838, 10580=>838, 10581=>838, 10582=>838, 10583=>838, 10584=>838, 10585=>838, 10586=>838, 10587=>838, 10588=>838, 10589=>838,
+ 10590=>838, 10591=>838, 10592=>838, 10593=>838, 10594=>838, 10595=>838, 10596=>838, 10597=>838, 10598=>838, 10599=>838, 10600=>838, 10601=>838, 10602=>838, 10603=>838, 10604=>838, 10605=>838,
+ 10606=>838, 10607=>838, 10608=>838, 10609=>838, 10610=>838, 10611=>838, 10612=>838, 10613=>838, 10614=>838, 10615=>1032, 10616=>838, 10617=>838, 10618=>960, 10619=>838, 10620=>838, 10621=>838,
+ 10622=>838, 10623=>838, 10731=>494, 10764=>1782, 10765=>610, 10766=>610, 10799=>838, 11008=>838, 11009=>838, 11010=>838, 11011=>838, 11012=>838, 11013=>838, 11014=>838, 11015=>838, 11016=>838,
+ 11017=>838, 11018=>838, 11019=>838, 11020=>838, 11021=>838, 11022=>838, 11023=>838, 11024=>838, 11025=>838, 11026=>945, 11027=>945, 11028=>945, 11029=>945, 11030=>769, 11031=>769, 11032=>769,
+ 11033=>769, 11034=>945, 11367=>945, 11368=>727, 11369=>869, 11370=>693, 11371=>730, 11372=>568, 11381=>779, 11382=>601, 11383=>905, 11800=>586, 11822=>586, 63173=>667, 63185=>500, 63188=>500,
+ 64256=>821, 64257=>727, 64258=>727, 64259=>1120, 64260=>1117, 64261=>871, 64262=>971, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0, 65029=>0, 65030=>0, 65031=>0, 65032=>0,
+ 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65529=>0, 65530=>0, 65531=>0, 65532=>0, 65533=>1113);
+$enc='';
+$diff='';
+$file='dejavuserifb.z';
+$ctg='dejavuserifb.ctg.z';
+$originalsize=280160;
+?>
diff --git a/lib/tcpdf/fonts/dejavuserifb.z b/lib/tcpdf/fonts/dejavuserifb.z
new file mode 100644
index 0000000000..bdf6c8c5d4
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifb.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifbi.ctg.z b/lib/tcpdf/fonts/dejavuserifbi.ctg.z
new file mode 100644
index 0000000000..8ea26ce3a1
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifbi.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifbi.php b/lib/tcpdf/fonts/dejavuserifbi.php
new file mode 100644
index 0000000000..5548053bf9
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavuserifbi.php
@@ -0,0 +1,180 @@
+939,'Descent'=>-236,'CapHeight'=>939,'Flags'=>96,'FontBBox'=>'[-906 -389 1760 1235]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>600);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>600, 32=>348, 33=>439, 34=>521, 35=>838, 36=>696, 37=>950, 38=>903, 39=>306, 40=>473, 41=>473, 42=>523, 43=>838, 44=>348, 45=>415, 46=>348,
+ 47=>365, 48=>696, 49=>696, 50=>696, 51=>696, 52=>696, 53=>696, 54=>696, 55=>696, 56=>696, 57=>696, 58=>369, 59=>369, 60=>838, 61=>838, 62=>838,
+ 63=>586, 64=>1000, 65=>776, 66=>845, 67=>796, 68=>867, 69=>762, 70=>710, 71=>854, 72=>945, 73=>468, 74=>473, 75=>869, 76=>703, 77=>1107, 78=>914,
+ 79=>871, 80=>752, 81=>871, 82=>831, 83=>722, 84=>744, 85=>872, 86=>776, 87=>1123, 88=>776, 89=>714, 90=>730, 91=>473, 92=>365, 93=>473, 94=>838,
+ 95=>500, 96=>500, 97=>648, 98=>699, 99=>609, 100=>699, 101=>636, 102=>430, 103=>699, 104=>727, 105=>380, 106=>362, 107=>693, 108=>380, 109=>1058, 110=>727,
+ 111=>667, 112=>699, 113=>699, 114=>527, 115=>563, 116=>462, 117=>727, 118=>581, 119=>861, 120=>596, 121=>581, 122=>568, 123=>643, 124=>364, 125=>643, 126=>838,
+ 8364=>696, 1027=>690, 8218=>348, 402=>430, 8222=>575, 8230=>1000, 8224=>523, 8225=>523, 710=>500, 8240=>1385, 352=>722, 8249=>400, 338=>1180, 1036=>910, 381=>730, 1039=>945,
+ 8216=>348, 8217=>348, 8220=>575, 8221=>575, 8226=>639, 8211=>500, 8212=>1000, 732=>500, 8482=>1000, 353=>563, 8250=>400, 339=>1028, 1116=>677, 382=>568, 376=>714, 160=>348,
+ 161=>439, 162=>696, 163=>696, 164=>636, 165=>696, 166=>364, 167=>523, 168=>500, 169=>1000, 170=>487, 171=>625, 172=>838, 173=>415, 174=>1000, 175=>500, 176=>500,
+ 177=>838, 178=>438, 179=>438, 180=>500, 181=>732, 182=>636, 183=>348, 184=>500, 185=>438, 186=>500, 187=>625, 188=>1043, 189=>1043, 190=>1043, 191=>586, 192=>776,
+ 193=>776, 194=>776, 195=>776, 196=>776, 197=>776, 198=>1034, 199=>796, 200=>762, 201=>762, 202=>762, 203=>762, 204=>468, 205=>468, 206=>468, 207=>468, 208=>874,
+ 209=>914, 210=>871, 211=>871, 212=>871, 213=>871, 214=>871, 215=>838, 216=>871, 217=>872, 218=>872, 219=>872, 220=>872, 221=>714, 222=>757, 223=>760, 224=>648,
+ 225=>648, 226=>648, 227=>648, 228=>648, 229=>648, 230=>932, 231=>609, 232=>636, 233=>636, 234=>636, 235=>636, 236=>380, 237=>380, 238=>380, 239=>380, 240=>667,
+ 241=>727, 242=>667, 243=>667, 244=>667, 245=>667, 246=>667, 247=>838, 248=>667, 249=>727, 250=>727, 251=>727, 252=>727, 253=>581, 254=>699, 255=>581, 256=>776,
+ 257=>648, 258=>776, 259=>648, 260=>776, 261=>648, 262=>796, 263=>609, 264=>796, 265=>609, 266=>796, 267=>609, 268=>796, 269=>609, 270=>867, 271=>699, 272=>874,
+ 273=>699, 274=>762, 275=>636, 276=>762, 277=>636, 278=>762, 279=>636, 280=>762, 281=>636, 282=>762, 283=>636, 284=>854, 285=>699, 286=>854, 287=>699, 288=>854,
+ 289=>699, 290=>854, 291=>699, 292=>945, 293=>727, 294=>945, 295=>727, 296=>468, 297=>380, 298=>468, 299=>380, 300=>468, 301=>380, 302=>468, 303=>380, 304=>468,
+ 305=>380, 306=>942, 307=>751, 308=>473, 309=>362, 310=>869, 311=>693, 312=>693, 313=>703, 314=>380, 315=>703, 316=>380, 317=>703, 318=>508, 319=>703, 320=>557,
+ 321=>710, 322=>385, 323=>914, 324=>727, 325=>914, 326=>727, 327=>914, 328=>727, 329=>1008, 330=>872, 331=>727, 332=>871, 333=>667, 334=>871, 335=>667, 336=>871,
+ 337=>667, 340=>831, 341=>527, 342=>831, 343=>527, 344=>831, 345=>527, 346=>722, 347=>563, 348=>722, 349=>563, 350=>722, 351=>563, 354=>744, 355=>462, 356=>744,
+ 357=>462, 358=>744, 359=>462, 360=>872, 361=>727, 362=>872, 363=>727, 364=>872, 365=>727, 366=>872, 367=>727, 368=>872, 369=>727, 370=>872, 371=>727, 372=>1123,
+ 373=>861, 374=>714, 375=>581, 377=>730, 378=>568, 379=>730, 380=>568, 383=>430, 384=>699, 385=>845, 386=>854, 387=>699, 388=>854, 389=>699, 390=>796, 391=>796,
+ 392=>609, 393=>874, 394=>867, 395=>854, 396=>699, 397=>667, 398=>762, 399=>871, 400=>721, 401=>710, 403=>854, 404=>771, 405=>1043, 406=>468, 407=>468, 408=>869,
+ 409=>693, 410=>380, 411=>701, 412=>1058, 413=>914, 414=>727, 415=>871, 416=>871, 417=>667, 418=>1200, 419=>943, 420=>752, 421=>699, 422=>831, 423=>722, 424=>563,
+ 425=>707, 426=>331, 427=>462, 428=>744, 429=>462, 430=>744, 431=>872, 432=>727, 433=>890, 434=>890, 435=>714, 436=>699, 437=>730, 438=>568, 439=>568, 440=>568,
+ 441=>568, 443=>696, 444=>754, 445=>568, 446=>536, 448=>295, 449=>492, 450=>459, 451=>295, 452=>1597, 453=>1435, 454=>1267, 455=>1176, 456=>1065, 457=>742, 458=>1387,
+ 459=>1276, 460=>1089, 461=>776, 462=>648, 463=>468, 464=>380, 465=>871, 466=>667, 467=>872, 468=>727, 469=>872, 470=>727, 471=>872, 472=>727, 473=>872, 474=>727,
+ 475=>872, 476=>727, 477=>636, 478=>776, 479=>648, 480=>776, 481=>648, 482=>1034, 483=>975, 484=>896, 485=>699, 486=>854, 487=>699, 488=>869, 489=>693, 490=>871,
+ 491=>667, 492=>871, 493=>667, 494=>568, 495=>568, 496=>362, 497=>1597, 498=>1435, 499=>1267, 500=>854, 501=>699, 502=>1221, 504=>914, 505=>727, 506=>776, 507=>648,
+ 508=>1034, 509=>975, 510=>871, 511=>667, 512=>776, 513=>648, 514=>776, 515=>648, 516=>762, 517=>636, 518=>762, 519=>636, 520=>468, 521=>380, 522=>468, 523=>380,
+ 524=>871, 525=>667, 526=>871, 527=>667, 528=>831, 529=>527, 530=>831, 531=>527, 532=>872, 533=>727, 534=>872, 535=>727, 536=>722, 537=>563, 538=>744, 539=>462,
+ 542=>945, 543=>727, 544=>872, 545=>791, 548=>730, 549=>568, 550=>776, 551=>648, 552=>762, 553=>636, 554=>871, 555=>667, 556=>871, 557=>667, 558=>871, 559=>667,
+ 560=>871, 561=>667, 562=>714, 563=>581, 564=>573, 565=>922, 566=>564, 567=>362, 568=>1031, 569=>1031, 570=>776, 571=>796, 572=>609, 573=>703, 574=>744, 575=>563,
+ 576=>568, 577=>660, 578=>547, 581=>776, 592=>648, 593=>699, 594=>699, 595=>699, 596=>609, 597=>609, 598=>699, 599=>730, 600=>636, 601=>636, 602=>907, 603=>608,
+ 604=>562, 605=>907, 606=>720, 607=>387, 608=>699, 609=>699, 610=>626, 611=>712, 612=>627, 613=>727, 614=>727, 615=>727, 616=>380, 617=>380, 618=>380, 619=>409,
+ 620=>514, 621=>380, 622=>795, 623=>1058, 624=>1058, 625=>1058, 626=>727, 627=>727, 628=>712, 629=>667, 630=>1061, 631=>749, 632=>667, 633=>571, 634=>571, 635=>571,
+ 636=>527, 637=>527, 638=>452, 639=>487, 640=>801, 641=>801, 642=>563, 643=>331, 644=>430, 645=>540, 646=>331, 647=>492, 648=>462, 649=>727, 650=>679, 651=>694,
+ 652=>581, 653=>861, 654=>635, 655=>727, 656=>568, 657=>568, 658=>568, 659=>568, 660=>536, 661=>536, 662=>536, 663=>545, 664=>871, 665=>695, 666=>720, 667=>626,
+ 668=>732, 669=>384, 670=>740, 671=>646, 672=>699, 673=>536, 674=>536, 675=>1117, 676=>1179, 677=>1117, 678=>911, 679=>715, 680=>909, 681=>1039, 682=>790, 683=>795,
+ 684=>662, 685=>443, 686=>613, 687=>717, 688=>521, 689=>519, 690=>313, 691=>414, 692=>414, 693=>480, 694=>527, 695=>542, 696=>366, 697=>302, 699=>348, 700=>348,
+ 701=>348, 702=>366, 703=>366, 704=>313, 705=>313, 711=>500, 712=>282, 713=>500, 716=>282, 720=>369, 721=>369, 722=>366, 723=>366, 726=>392, 728=>500, 729=>500,
+ 730=>500, 731=>500, 733=>500, 734=>417, 736=>448, 737=>292, 738=>395, 739=>375, 740=>313, 741=>484, 742=>484, 743=>484, 744=>484, 745=>484, 750=>553, 768=>0,
+ 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0,
+ 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0,
+ 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0,
+ 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 835=>0,
+ 847=>0, 856=>0, 865=>0, 884=>302, 885=>302, 890=>500, 894=>369, 900=>500, 901=>500, 902=>776, 903=>348, 904=>947, 905=>1136, 906=>662, 908=>887, 910=>953,
+ 911=>911, 912=>484, 913=>776, 914=>845, 915=>710, 916=>776, 917=>762, 918=>730, 919=>945, 920=>871, 921=>468, 922=>869, 923=>776, 924=>1107, 925=>914, 926=>704,
+ 927=>871, 928=>945, 929=>752, 931=>707, 932=>744, 933=>714, 934=>871, 935=>776, 936=>913, 937=>890, 938=>468, 939=>714, 940=>770, 941=>608, 942=>727, 943=>484,
+ 944=>694, 945=>770, 946=>664, 947=>660, 948=>667, 949=>608, 950=>592, 951=>727, 952=>667, 953=>484, 954=>750, 955=>701, 956=>732, 957=>694, 958=>592, 959=>667,
+ 960=>732, 961=>665, 962=>609, 963=>737, 964=>673, 965=>694, 966=>905, 967=>658, 968=>941, 969=>952, 970=>484, 971=>694, 972=>667, 973=>694, 974=>952, 976=>667,
+ 977=>849, 978=>764, 979=>969, 980=>764, 981=>941, 982=>952, 983=>655, 984=>871, 985=>667, 986=>796, 987=>609, 988=>710, 989=>527, 990=>590, 991=>660, 992=>796,
+ 993=>667, 1008=>655, 1009=>665, 1010=>609, 1011=>362, 1012=>871, 1013=>609, 1014=>609, 1015=>757, 1016=>699, 1017=>796, 1018=>1107, 1019=>860, 1020=>692, 1021=>796, 1022=>796,
+ 1023=>796, 1024=>762, 1025=>762, 1026=>901, 1028=>795, 1029=>722, 1030=>468, 1031=>468, 1032=>473, 1033=>1202, 1034=>1262, 1035=>963, 1037=>945, 1038=>812, 1040=>814, 1041=>854,
+ 1042=>845, 1043=>690, 1044=>889, 1045=>762, 1046=>1312, 1047=>721, 1048=>945, 1049=>945, 1050=>910, 1051=>884, 1052=>1107, 1053=>945, 1054=>871, 1055=>945, 1056=>752, 1057=>796,
+ 1058=>744, 1059=>812, 1060=>949, 1061=>776, 1062=>966, 1063=>913, 1064=>1268, 1065=>1293, 1066=>957, 1067=>1202, 1068=>825, 1069=>795, 1070=>1287, 1071=>882, 1072=>648, 1073=>722,
+ 1074=>657, 1075=>563, 1076=>695, 1077=>636, 1078=>1306, 1079=>638, 1080=>727, 1081=>727, 1082=>677, 1083=>732, 1084=>951, 1085=>729, 1086=>667, 1087=>727, 1088=>699, 1089=>609,
+ 1090=>1058, 1091=>598, 1092=>902, 1093=>596, 1094=>803, 1095=>715, 1096=>1058, 1097=>1134, 1098=>727, 1099=>1018, 1100=>660, 1101=>645, 1102=>1001, 1103=>796, 1104=>636, 1105=>636,
+ 1106=>719, 1107=>563, 1108=>609, 1109=>563, 1110=>380, 1111=>380, 1112=>362, 1113=>1014, 1114=>1011, 1115=>727, 1117=>727, 1118=>598, 1119=>727, 1122=>880, 1123=>1050, 1124=>1195,
+ 1125=>963, 1130=>1312, 1131=>1010, 1138=>871, 1139=>652, 1140=>916, 1141=>749, 1164=>846, 1165=>673, 1168=>700, 1169=>618, 1170=>690, 1171=>563, 1172=>854, 1173=>705, 1174=>1312,
+ 1175=>1306, 1176=>721, 1177=>638, 1178=>902, 1179=>703, 1182=>910, 1183=>677, 1184=>1041, 1185=>760, 1186=>952, 1187=>805, 1188=>1167, 1189=>955, 1190=>1324, 1191=>1013, 1194=>796,
+ 1195=>609, 1196=>744, 1197=>1142, 1198=>714, 1199=>572, 1200=>713, 1201=>572, 1202=>789, 1203=>596, 1204=>1235, 1205=>974, 1206=>913, 1207=>792, 1210=>910, 1211=>727, 1216=>468,
+ 1217=>1312, 1218=>1306, 1219=>869, 1220=>693, 1223=>945, 1224=>732, 1227=>984, 1228=>732, 1231=>380, 1232=>814, 1233=>648, 1234=>814, 1235=>648, 1236=>1034, 1237=>975, 1238=>762,
+ 1239=>636, 1240=>871, 1241=>636, 1242=>871, 1243=>636, 1244=>1312, 1245=>1306, 1246=>721, 1247=>638, 1248=>568, 1249=>568, 1250=>945, 1251=>727, 1252=>945, 1253=>727, 1254=>871,
+ 1255=>667, 1256=>871, 1257=>667, 1258=>871, 1259=>667, 1260=>795, 1261=>645, 1262=>812, 1263=>598, 1264=>812, 1265=>598, 1266=>812, 1267=>598, 1268=>913, 1269=>715, 1270=>690,
+ 1271=>563, 1272=>1202, 1273=>1018, 4256=>712, 4257=>883, 4258=>817, 4259=>825, 4260=>737, 4261=>1017, 4262=>957, 4263=>1144, 4264=>606, 4265=>771, 4266=>992, 4267=>991, 4268=>751,
+ 4269=>1070, 4270=>914, 4271=>851, 4272=>1046, 4273=>747, 4274=>713, 4275=>1015, 4276=>921, 4277=>1006, 4278=>765, 4279=>786, 4280=>775, 4281=>786, 4282=>857, 4283=>1016, 4284=>726,
+ 4285=>775, 4286=>767, 4287=>1048, 4288=>1059, 4289=>756, 4290=>842, 4291=>757, 4292=>831, 4293=>1003, 4304=>541, 4305=>568, 4306=>603, 4307=>809, 4308=>568, 4309=>578, 4310=>608,
+ 4311=>842, 4312=>557, 4313=>561, 4314=>1021, 4315=>578, 4316=>578, 4317=>801, 4318=>567, 4319=>578, 4320=>799, 4321=>591, 4322=>748, 4323=>679, 4324=>796, 4325=>577, 4326=>831,
+ 4327=>579, 4328=>606, 4329=>578, 4330=>678, 4331=>579, 4332=>571, 4333=>573, 4334=>610, 4335=>668, 4336=>578, 4337=>618, 4338=>568, 4339=>568, 4340=>568, 4341=>657, 4342=>856,
+ 4343=>619, 4344=>569, 4345=>612, 4346=>388, 4347=>464, 4348=>568, 7426=>940, 7432=>509, 7433=>320, 7444=>989, 7446=>667, 7447=>667, 7453=>737, 7454=>948, 7455=>948, 7468=>489,
+ 7469=>651, 7470=>532, 7472=>546, 7473=>480, 7474=>480, 7475=>538, 7476=>595, 7477=>294, 7478=>298, 7479=>547, 7480=>443, 7481=>697, 7482=>576, 7483=>576, 7484=>548, 7486=>474,
+ 7487=>523, 7488=>469, 7489=>549, 7490=>708, 7491=>466, 7492=>466, 7493=>498, 7494=>657, 7495=>499, 7496=>498, 7497=>444, 7498=>444, 7499=>412, 7500=>412, 7501=>498, 7502=>300,
+ 7503=>523, 7504=>729, 7505=>473, 7506=>467, 7507=>427, 7508=>467, 7509=>467, 7510=>499, 7511=>371, 7512=>520, 7513=>434, 7514=>729, 7515=>491, 7522=>239, 7523=>414, 7524=>520,
+ 7525=>491, 7543=>640, 7544=>595, 7547=>380, 7557=>380, 7579=>498, 7580=>427, 7581=>427, 7582=>467, 7583=>412, 7584=>271, 7585=>373, 7586=>498, 7587=>522, 7588=>300, 7589=>307,
+ 7590=>300, 7591=>300, 7592=>370, 7593=>368, 7594=>321, 7595=>430, 7596=>682, 7597=>729, 7598=>588, 7599=>587, 7600=>472, 7601=>467, 7602=>522, 7603=>400, 7604=>387, 7605=>371,
+ 7606=>520, 7607=>475, 7609=>489, 7610=>366, 7611=>357, 7612=>527, 7613=>412, 7614=>452, 7615=>467, 7680=>776, 7681=>648, 7682=>845, 7683=>699, 7684=>845, 7685=>699, 7686=>845,
+ 7687=>699, 7688=>796, 7689=>609, 7690=>867, 7691=>699, 7692=>867, 7693=>699, 7694=>867, 7695=>699, 7696=>867, 7697=>699, 7698=>867, 7699=>699, 7700=>762, 7701=>636, 7702=>762,
+ 7703=>636, 7704=>762, 7705=>636, 7706=>762, 7707=>636, 7708=>762, 7709=>636, 7710=>710, 7711=>430, 7712=>854, 7713=>699, 7714=>945, 7715=>727, 7716=>945, 7717=>727, 7718=>945,
+ 7719=>727, 7720=>945, 7721=>727, 7722=>945, 7723=>727, 7724=>468, 7725=>380, 7728=>869, 7729=>693, 7730=>869, 7731=>693, 7732=>869, 7733=>693, 7734=>703, 7735=>380, 7736=>703,
+ 7737=>380, 7738=>703, 7739=>380, 7740=>703, 7741=>380, 7742=>1107, 7743=>1058, 7744=>1107, 7745=>1058, 7746=>1107, 7747=>1058, 7748=>914, 7749=>727, 7750=>914, 7751=>727, 7752=>914,
+ 7753=>727, 7754=>914, 7755=>727, 7760=>871, 7761=>667, 7762=>871, 7763=>667, 7764=>752, 7765=>699, 7766=>752, 7767=>699, 7768=>831, 7769=>527, 7770=>831, 7771=>527, 7772=>831,
+ 7773=>527, 7774=>831, 7775=>527, 7776=>722, 7777=>563, 7778=>722, 7779=>563, 7784=>722, 7785=>563, 7786=>744, 7787=>462, 7788=>744, 7789=>462, 7790=>744, 7791=>462, 7792=>744,
+ 7793=>462, 7794=>872, 7795=>727, 7796=>872, 7797=>727, 7798=>872, 7799=>727, 7800=>872, 7801=>727, 7802=>872, 7803=>727, 7804=>776, 7805=>581, 7806=>776, 7807=>581, 7808=>1123,
+ 7809=>861, 7810=>1123, 7811=>861, 7812=>1123, 7813=>861, 7814=>1123, 7815=>861, 7816=>1123, 7817=>861, 7818=>776, 7819=>596, 7820=>776, 7821=>596, 7822=>714, 7823=>581, 7824=>730,
+ 7825=>568, 7826=>730, 7827=>568, 7828=>730, 7829=>568, 7830=>727, 7831=>462, 7832=>861, 7833=>581, 7834=>1014, 7835=>563, 7840=>776, 7841=>648, 7842=>776, 7843=>648, 7852=>776,
+ 7853=>648, 7854=>776, 7855=>648, 7856=>776, 7857=>648, 7858=>776, 7859=>648, 7860=>776, 7861=>648, 7862=>776, 7863=>648, 7864=>762, 7865=>636, 7866=>762, 7867=>636, 7868=>762,
+ 7869=>636, 7878=>762, 7879=>636, 7880=>468, 7881=>380, 7882=>468, 7883=>380, 7884=>871, 7885=>667, 7886=>871, 7887=>667, 7896=>871, 7897=>667, 7908=>872, 7909=>727, 7910=>872,
+ 7911=>727, 7922=>714, 7923=>581, 7924=>714, 7925=>581, 7926=>714, 7927=>581, 7928=>714, 7929=>581, 7936=>770, 7937=>770, 7938=>770, 7939=>770, 7940=>770, 7941=>770, 7942=>770,
+ 7943=>770, 7944=>776, 7945=>776, 7946=>978, 7947=>978, 7948=>832, 7949=>849, 7950=>776, 7951=>776, 7952=>608, 7953=>608, 7954=>608, 7955=>608, 7956=>608, 7957=>608, 7960=>917,
+ 7961=>909, 7962=>1169, 7963=>1169, 7964=>1093, 7965=>1120, 7968=>727, 7969=>727, 7970=>727, 7971=>727, 7972=>727, 7973=>727, 7974=>727, 7975=>727, 7976=>1100, 7977=>1094, 7978=>1358,
+ 7979=>1361, 7980=>1279, 7981=>1308, 7982=>1197, 7983=>1194, 7984=>484, 7985=>484, 7986=>484, 7987=>484, 7988=>484, 7989=>484, 7990=>484, 7991=>484, 7992=>629, 7993=>617, 7994=>878,
+ 7995=>881, 7996=>799, 7997=>831, 7998=>723, 7999=>714, 8000=>667, 8001=>667, 8002=>667, 8003=>667, 8004=>667, 8005=>667, 8008=>900, 8009=>935, 8010=>1240, 8011=>1237, 8012=>1035,
+ 8013=>1066, 8016=>694, 8017=>694, 8018=>694, 8019=>694, 8020=>694, 8021=>694, 8022=>694, 8023=>694, 8025=>922, 8027=>1186, 8029=>1133, 8031=>1019, 8032=>952, 8033=>952, 8034=>952,
+ 8035=>952, 8036=>952, 8037=>952, 8038=>952, 8039=>952, 8040=>931, 8041=>963, 8042=>1268, 8043=>1274, 8044=>1054, 8045=>1088, 8046=>1023, 8047=>1060, 8048=>770, 8049=>770, 8050=>608,
+ 8051=>608, 8052=>727, 8053=>727, 8054=>484, 8055=>484, 8056=>667, 8057=>667, 8058=>694, 8059=>694, 8060=>952, 8061=>952, 8064=>770, 8065=>770, 8066=>770, 8067=>770, 8068=>770,
+ 8069=>770, 8070=>770, 8071=>770, 8072=>776, 8073=>776, 8074=>978, 8075=>978, 8076=>832, 8077=>849, 8078=>776, 8079=>776, 8080=>727, 8081=>727, 8082=>727, 8083=>727, 8084=>727,
+ 8085=>727, 8086=>727, 8087=>727, 8088=>1100, 8089=>1094, 8090=>1358, 8091=>1361, 8092=>1279, 8093=>1308, 8094=>1197, 8095=>1194, 8096=>952, 8097=>952, 8098=>952, 8099=>952, 8100=>952,
+ 8101=>952, 8102=>952, 8103=>952, 8104=>931, 8105=>963, 8106=>1268, 8107=>1274, 8108=>1054, 8109=>1088, 8110=>1023, 8111=>1060, 8112=>770, 8113=>770, 8114=>770, 8115=>770, 8116=>770,
+ 8118=>770, 8119=>770, 8120=>776, 8121=>776, 8122=>811, 8123=>776, 8124=>776, 8125=>500, 8126=>500, 8127=>500, 8128=>500, 8129=>500, 8130=>727, 8131=>727, 8132=>727, 8134=>727,
+ 8135=>727, 8136=>1000, 8137=>947, 8138=>1191, 8139=>1118, 8140=>945, 8141=>500, 8142=>500, 8143=>500, 8144=>484, 8145=>484, 8146=>484, 8147=>484, 8150=>484, 8151=>484, 8152=>468,
+ 8153=>468, 8154=>714, 8155=>662, 8157=>500, 8158=>500, 8159=>500, 8160=>694, 8161=>694, 8162=>694, 8163=>694, 8164=>665, 8165=>665, 8166=>694, 8167=>694, 8168=>714, 8169=>714,
+ 8170=>1019, 8171=>953, 8172=>910, 8173=>500, 8174=>500, 8175=>500, 8178=>952, 8179=>952, 8180=>952, 8182=>952, 8183=>952, 8184=>1069, 8185=>887, 8186=>1101, 8187=>911, 8188=>890,
+ 8189=>500, 8190=>500, 8192=>500, 8193=>1000, 8194=>500, 8195=>1000, 8196=>330, 8197=>250, 8198=>167, 8199=>696, 8200=>348, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>415, 8209=>415, 8210=>696, 8213=>1000, 8215=>500, 8219=>348, 8223=>575, 8227=>639, 8228=>348, 8229=>674, 8234=>0, 8235=>0, 8236=>0, 8237=>0,
+ 8238=>0, 8239=>200, 8241=>1813, 8252=>629, 8253=>586, 8254=>500, 8263=>1082, 8264=>856, 8265=>856, 8287=>222, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0,
+ 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>438, 8305=>239, 8308=>438, 8309=>438, 8310=>438, 8311=>438, 8312=>438, 8313=>438, 8314=>528, 8315=>528, 8316=>528,
+ 8317=>298, 8318=>298, 8319=>458, 8320=>438, 8321=>438, 8322=>438, 8323=>438, 8324=>438, 8325=>438, 8326=>438, 8327=>438, 8328=>438, 8329=>438, 8330=>528, 8331=>528, 8332=>528,
+ 8333=>298, 8334=>298, 8336=>466, 8337=>444, 8338=>467, 8339=>375, 8340=>444, 8358=>696, 8367=>1155, 8369=>790, 8372=>876, 8373=>696, 8451=>1198, 8457=>1112, 8462=>727, 8470=>1087,
+ 8486=>890, 8487=>890, 8490=>869, 8491=>776, 8513=>786, 8514=>576, 8515=>637, 8516=>760, 8523=>903, 8531=>1035, 8532=>1035, 8533=>1035, 8534=>1035, 8535=>1035, 8536=>1035, 8537=>1035,
+ 8538=>1035, 8539=>1035, 8540=>1035, 8541=>1035, 8542=>1035, 8543=>615, 8544=>468, 8545=>736, 8546=>1005, 8547=>1093, 8548=>776, 8549=>1127, 8550=>1396, 8551=>1664, 8552=>1069, 8553=>776,
+ 8554=>1078, 8555=>1347, 8556=>703, 8557=>796, 8558=>867, 8559=>1107, 8560=>380, 8561=>760, 8562=>1140, 8563=>961, 8564=>581, 8565=>961, 8566=>1341, 8567=>1721, 8568=>976, 8569=>596,
+ 8570=>976, 8571=>1356, 8572=>380, 8573=>609, 8574=>699, 8575=>1058, 8576=>1255, 8577=>867, 8578=>1268, 8579=>796, 8580=>609, 8592=>838, 8593=>838, 8594=>838, 8595=>838, 8596=>838,
+ 8597=>838, 8598=>838, 8599=>838, 8600=>838, 8601=>838, 8602=>838, 8603=>838, 8604=>838, 8605=>838, 8606=>838, 8607=>838, 8608=>838, 8609=>838, 8610=>838, 8611=>838, 8612=>838,
+ 8613=>838, 8614=>838, 8615=>838, 8616=>838, 8617=>838, 8618=>838, 8619=>838, 8620=>838, 8621=>838, 8622=>838, 8623=>850, 8624=>838, 8625=>838, 8626=>838, 8627=>838, 8628=>838,
+ 8629=>838, 8630=>838, 8631=>838, 8632=>838, 8633=>838, 8634=>838, 8635=>838, 8636=>838, 8637=>838, 8638=>838, 8639=>838, 8640=>838, 8641=>838, 8642=>838, 8643=>838, 8644=>838,
+ 8645=>838, 8646=>838, 8647=>838, 8648=>838, 8649=>838, 8650=>838, 8651=>838, 8652=>838, 8653=>838, 8654=>838, 8655=>838, 8656=>838, 8657=>838, 8658=>838, 8659=>838, 8660=>838,
+ 8661=>838, 8662=>838, 8663=>838, 8664=>838, 8665=>838, 8666=>838, 8667=>838, 8668=>838, 8669=>838, 8670=>838, 8671=>838, 8672=>838, 8673=>838, 8674=>838, 8675=>838, 8676=>838,
+ 8677=>838, 8678=>838, 8679=>838, 8680=>838, 8681=>838, 8682=>838, 8683=>838, 8684=>838, 8685=>838, 8686=>838, 8687=>838, 8688=>838, 8689=>838, 8690=>838, 8691=>838, 8692=>838,
+ 8693=>838, 8694=>838, 8695=>838, 8696=>838, 8697=>838, 8698=>838, 8699=>838, 8700=>838, 8701=>838, 8702=>838, 8703=>838, 8704=>641, 8706=>534, 8707=>620, 8708=>620, 8710=>753,
+ 8711=>753, 8712=>740, 8713=>740, 8715=>740, 8716=>740, 8719=>842, 8720=>842, 8721=>753, 8722=>838, 8723=>838, 8724=>838, 8725=>167, 8727=>691, 8728=>519, 8729=>519, 8730=>657,
+ 8731=>657, 8732=>657, 8733=>672, 8734=>833, 8735=>838, 8736=>838, 8739=>324, 8740=>607, 8741=>529, 8742=>773, 8743=>812, 8744=>812, 8745=>838, 8746=>838, 8747=>579, 8748=>1000,
+ 8749=>1391, 8760=>838, 8761=>838, 8762=>838, 8763=>838, 8764=>838, 8765=>838, 8770=>838, 8771=>838, 8776=>838, 8784=>838, 8785=>838, 8786=>838, 8787=>838, 8788=>1082, 8789=>1082,
+ 8800=>838, 8801=>838, 8804=>838, 8805=>838, 8834=>838, 8835=>838, 8836=>838, 8837=>838, 8838=>838, 8839=>838, 8844=>838, 8845=>838, 8846=>838, 8847=>838, 8848=>838, 8849=>838,
+ 8850=>838, 8851=>838, 8852=>838, 8853=>838, 8854=>838, 8855=>838, 8856=>838, 8857=>838, 8858=>838, 8859=>838, 8860=>838, 8861=>838, 8862=>838, 8863=>838, 8864=>838, 8865=>838,
+ 8866=>884, 8867=>884, 8868=>960, 8869=>960, 8870=>616, 8871=>616, 8872=>884, 8873=>884, 8874=>884, 8875=>1080, 8876=>884, 8877=>884, 8878=>884, 8879=>1080, 8901=>398, 8962=>834,
+ 8968=>473, 8969=>473, 8970=>473, 8971=>473, 8976=>838, 8977=>539, 8984=>928, 8985=>838, 8992=>579, 8993=>579, 8997=>1000, 9000=>1443, 9085=>1008, 9134=>579, 9167=>945, 9251=>834,
+ 9600=>769, 9601=>769, 9602=>769, 9603=>769, 9604=>769, 9605=>769, 9606=>769, 9607=>769, 9608=>769, 9609=>769, 9610=>769, 9611=>769, 9612=>769, 9613=>769, 9614=>769, 9615=>769,
+ 9616=>769, 9617=>769, 9618=>769, 9619=>769, 9620=>769, 9621=>769, 9622=>769, 9623=>769, 9624=>769, 9625=>769, 9626=>769, 9627=>769, 9628=>769, 9629=>769, 9630=>769, 9631=>769,
+ 9632=>945, 9633=>945, 9634=>945, 9635=>945, 9636=>945, 9637=>945, 9638=>945, 9639=>945, 9640=>945, 9641=>945, 9642=>678, 9643=>678, 9644=>945, 9645=>945, 9646=>550, 9647=>550,
+ 9648=>769, 9649=>769, 9650=>769, 9651=>769, 9652=>502, 9653=>502, 9654=>769, 9655=>769, 9656=>502, 9657=>502, 9658=>769, 9659=>769, 9660=>769, 9661=>769, 9662=>502, 9663=>502,
+ 9664=>769, 9665=>769, 9666=>502, 9667=>502, 9668=>769, 9669=>769, 9670=>769, 9671=>769, 9672=>769, 9673=>873, 9674=>494, 9675=>873, 9676=>873, 9677=>873, 9678=>873, 9679=>873,
+ 9680=>873, 9681=>873, 9682=>873, 9683=>873, 9684=>873, 9685=>873, 9686=>527, 9687=>527, 9688=>791, 9689=>970, 9690=>970, 9691=>970, 9692=>387, 9693=>387, 9694=>387, 9695=>387,
+ 9696=>873, 9697=>873, 9698=>769, 9699=>769, 9700=>769, 9701=>769, 9702=>590, 9703=>945, 9704=>945, 9705=>945, 9706=>945, 9707=>945, 9708=>769, 9709=>769, 9710=>769, 9711=>1119,
+ 9712=>945, 9713=>945, 9714=>945, 9715=>945, 9716=>873, 9717=>873, 9718=>873, 9719=>873, 9720=>769, 9721=>769, 9722=>769, 9723=>830, 9724=>830, 9725=>732, 9726=>732, 9727=>769,
+ 9728=>896, 9784=>896, 9785=>896, 9786=>896, 9787=>896, 9788=>896, 9791=>614, 9792=>731, 9793=>731, 9794=>896, 9795=>896, 9796=>896, 9797=>896, 9798=>896, 9799=>896, 9824=>896,
+ 9825=>896, 9826=>896, 9827=>896, 9828=>896, 9829=>896, 9830=>896, 9831=>896, 9833=>472, 9834=>638, 9835=>896, 9836=>896, 9837=>472, 9838=>357, 9839=>484, 10145=>838, 10208=>494,
+ 10216=>457, 10217=>457, 10224=>838, 10225=>838, 10226=>838, 10227=>838, 10228=>1033, 10229=>1434, 10230=>1434, 10231=>1434, 10232=>1434, 10233=>1434, 10234=>1434, 10235=>1434, 10236=>1434, 10237=>1434,
+ 10238=>1434, 10239=>1434, 10240=>781, 10241=>781, 10242=>781, 10243=>781, 10244=>781, 10245=>781, 10246=>781, 10247=>781, 10248=>781, 10249=>781, 10250=>781, 10251=>781, 10252=>781, 10253=>781,
+ 10254=>781, 10255=>781, 10256=>781, 10257=>781, 10258=>781, 10259=>781, 10260=>781, 10261=>781, 10262=>781, 10263=>781, 10264=>781, 10265=>781, 10266=>781, 10267=>781, 10268=>781, 10269=>781,
+ 10270=>781, 10271=>781, 10272=>781, 10273=>781, 10274=>781, 10275=>781, 10276=>781, 10277=>781, 10278=>781, 10279=>781, 10280=>781, 10281=>781, 10282=>781, 10283=>781, 10284=>781, 10285=>781,
+ 10286=>781, 10287=>781, 10288=>781, 10289=>781, 10290=>781, 10291=>781, 10292=>781, 10293=>781, 10294=>781, 10295=>781, 10296=>781, 10297=>781, 10298=>781, 10299=>781, 10300=>781, 10301=>781,
+ 10302=>781, 10303=>781, 10304=>781, 10305=>781, 10306=>781, 10307=>781, 10308=>781, 10309=>781, 10310=>781, 10311=>781, 10312=>781, 10313=>781, 10314=>781, 10315=>781, 10316=>781, 10317=>781,
+ 10318=>781, 10319=>781, 10320=>781, 10321=>781, 10322=>781, 10323=>781, 10324=>781, 10325=>781, 10326=>781, 10327=>781, 10328=>781, 10329=>781, 10330=>781, 10331=>781, 10332=>781, 10333=>781,
+ 10334=>781, 10335=>781, 10336=>781, 10337=>781, 10338=>781, 10339=>781, 10340=>781, 10341=>781, 10342=>781, 10343=>781, 10344=>781, 10345=>781, 10346=>781, 10347=>781, 10348=>781, 10349=>781,
+ 10350=>781, 10351=>781, 10352=>781, 10353=>781, 10354=>781, 10355=>781, 10356=>781, 10357=>781, 10358=>781, 10359=>781, 10360=>781, 10361=>781, 10362=>781, 10363=>781, 10364=>781, 10365=>781,
+ 10366=>781, 10367=>781, 10368=>781, 10369=>781, 10370=>781, 10371=>781, 10372=>781, 10373=>781, 10374=>781, 10375=>781, 10376=>781, 10377=>781, 10378=>781, 10379=>781, 10380=>781, 10381=>781,
+ 10382=>781, 10383=>781, 10384=>781, 10385=>781, 10386=>781, 10387=>781, 10388=>781, 10389=>781, 10390=>781, 10391=>781, 10392=>781, 10393=>781, 10394=>781, 10395=>781, 10396=>781, 10397=>781,
+ 10398=>781, 10399=>781, 10400=>781, 10401=>781, 10402=>781, 10403=>781, 10404=>781, 10405=>781, 10406=>781, 10407=>781, 10408=>781, 10409=>781, 10410=>781, 10411=>781, 10412=>781, 10413=>781,
+ 10414=>781, 10415=>781, 10416=>781, 10417=>781, 10418=>781, 10419=>781, 10420=>781, 10421=>781, 10422=>781, 10423=>781, 10424=>781, 10425=>781, 10426=>781, 10427=>781, 10428=>781, 10429=>781,
+ 10430=>781, 10431=>781, 10432=>781, 10433=>781, 10434=>781, 10435=>781, 10436=>781, 10437=>781, 10438=>781, 10439=>781, 10440=>781, 10441=>781, 10442=>781, 10443=>781, 10444=>781, 10445=>781,
+ 10446=>781, 10447=>781, 10448=>781, 10449=>781, 10450=>781, 10451=>781, 10452=>781, 10453=>781, 10454=>781, 10455=>781, 10456=>781, 10457=>781, 10458=>781, 10459=>781, 10460=>781, 10461=>781,
+ 10462=>781, 10463=>781, 10464=>781, 10465=>781, 10466=>781, 10467=>781, 10468=>781, 10469=>781, 10470=>781, 10471=>781, 10472=>781, 10473=>781, 10474=>781, 10475=>781, 10476=>781, 10477=>781,
+ 10478=>781, 10479=>781, 10480=>781, 10481=>781, 10482=>781, 10483=>781, 10484=>781, 10485=>781, 10486=>781, 10487=>781, 10488=>781, 10489=>781, 10490=>781, 10491=>781, 10492=>781, 10493=>781,
+ 10494=>781, 10495=>781, 10496=>838, 10497=>838, 10498=>838, 10499=>838, 10500=>838, 10501=>838, 10502=>838, 10503=>838, 10504=>838, 10505=>838, 10506=>838, 10507=>838, 10508=>838, 10509=>838,
+ 10510=>838, 10511=>838, 10512=>838, 10513=>838, 10514=>838, 10515=>838, 10516=>838, 10517=>838, 10518=>838, 10519=>838, 10520=>838, 10521=>838, 10522=>838, 10523=>838, 10524=>838, 10525=>838,
+ 10526=>838, 10527=>838, 10528=>838, 10529=>838, 10530=>838, 10531=>838, 10532=>838, 10533=>838, 10534=>838, 10535=>838, 10536=>838, 10537=>838, 10538=>838, 10539=>838, 10540=>838, 10541=>838,
+ 10542=>838, 10543=>838, 10544=>838, 10545=>838, 10546=>838, 10547=>838, 10548=>838, 10549=>838, 10550=>838, 10551=>838, 10552=>838, 10553=>838, 10554=>838, 10555=>838, 10556=>838, 10557=>838,
+ 10558=>838, 10559=>838, 10560=>838, 10561=>838, 10562=>838, 10563=>838, 10564=>838, 10565=>838, 10566=>838, 10567=>838, 10568=>838, 10569=>838, 10570=>838, 10571=>838, 10572=>838, 10573=>838,
+ 10574=>838, 10575=>838, 10576=>838, 10577=>838, 10578=>838, 10579=>838, 10580=>838, 10581=>838, 10582=>838, 10583=>838, 10584=>838, 10585=>838, 10586=>838, 10587=>838, 10588=>838, 10589=>838,
+ 10590=>838, 10591=>838, 10592=>838, 10593=>838, 10594=>838, 10595=>838, 10596=>838, 10597=>838, 10598=>838, 10599=>838, 10600=>838, 10601=>838, 10602=>838, 10603=>838, 10604=>838, 10605=>838,
+ 10606=>838, 10607=>838, 10608=>838, 10609=>838, 10610=>838, 10611=>838, 10612=>838, 10613=>838, 10614=>838, 10615=>1032, 10616=>838, 10617=>838, 10618=>960, 10619=>838, 10620=>838, 10621=>838,
+ 10622=>838, 10623=>838, 10731=>494, 10764=>1782, 10765=>610, 10766=>610, 10799=>838, 11008=>838, 11009=>838, 11010=>838, 11011=>838, 11012=>838, 11013=>838, 11014=>838, 11015=>838, 11016=>838,
+ 11017=>838, 11018=>838, 11019=>838, 11020=>838, 11021=>838, 11022=>838, 11023=>838, 11024=>838, 11025=>838, 11026=>945, 11027=>945, 11028=>945, 11029=>945, 11030=>769, 11031=>769, 11032=>769,
+ 11033=>769, 11034=>945, 11367=>945, 11368=>727, 11369=>869, 11370=>693, 11371=>730, 11372=>568, 11381=>779, 11382=>601, 11383=>905, 11800=>586, 11822=>586, 63172=>563, 63173=>667, 63174=>699,
+ 63175=>727, 63176=>1058, 63185=>500, 63188=>500, 64256=>827, 64257=>727, 64258=>727, 64259=>1108, 64260=>1146, 64261=>879, 64262=>971, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0,
+ 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65529=>0, 65530=>0, 65531=>0, 65532=>0, 65533=>1113);
+$enc='';
+$diff='';
+$file='dejavuserifbi.z';
+$ctg='dejavuserifbi.ctg.z';
+$originalsize=266592;
+?>
diff --git a/lib/tcpdf/fonts/dejavuserifbi.z b/lib/tcpdf/fonts/dejavuserifbi.z
new file mode 100644
index 0000000000..8152cc7a79
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifbi.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifcondensed.ctg.z b/lib/tcpdf/fonts/dejavuserifcondensed.ctg.z
new file mode 100644
index 0000000000..47e27aa441
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifcondensed.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifcondensed.php b/lib/tcpdf/fonts/dejavuserifcondensed.php
new file mode 100644
index 0000000000..d65e639bce
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavuserifcondensed.php
@@ -0,0 +1,189 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>32,'FontBBox'=>'[-692 -347 1511 1242]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>540);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>540, 32=>286, 33=>361, 34=>414, 35=>754, 36=>572, 37=>855, 38=>801, 39=>247, 40=>351, 41=>351, 42=>450, 43=>754, 44=>286, 45=>304, 46=>286,
+ 47=>303, 48=>572, 49=>572, 50=>572, 51=>572, 52=>572, 53=>572, 54=>572, 55=>572, 56=>572, 57=>572, 58=>303, 59=>303, 60=>754, 61=>754, 62=>754,
+ 63=>482, 64=>900, 65=>650, 66=>661, 67=>688, 68=>721, 69=>657, 70=>624, 71=>719, 72=>785, 73=>355, 74=>360, 75=>672, 76=>598, 77=>921, 78=>787,
+ 79=>738, 80=>605, 81=>738, 82=>677, 83=>616, 84=>600, 85=>758, 86=>650, 87=>925, 88=>641, 89=>594, 90=>625, 91=>351, 92=>303, 93=>351, 94=>754,
+ 95=>450, 96=>450, 97=>536, 98=>576, 99=>504, 100=>576, 101=>532, 102=>333, 103=>576, 104=>580, 105=>288, 106=>279, 107=>545, 108=>288, 109=>853, 110=>580,
+ 111=>542, 112=>576, 113=>576, 114=>430, 115=>461, 116=>361, 117=>580, 118=>508, 119=>770, 120=>507, 121=>508, 122=>474, 123=>572, 124=>303, 125=>572, 126=>754,
+ 8364=>572, 1027=>662, 8218=>286, 402=>333, 8222=>466, 8230=>900, 8224=>450, 8225=>450, 710=>450, 8240=>1208, 352=>616, 8249=>360, 338=>1023, 1036=>774, 381=>625, 1039=>785,
+ 8216=>286, 8217=>286, 8220=>460, 8221=>460, 8226=>531, 8211=>450, 8212=>900, 732=>450, 8482=>900, 353=>461, 8250=>360, 339=>890, 1116=>563, 382=>474, 376=>594, 160=>286,
+ 161=>361, 162=>572, 163=>572, 164=>572, 165=>572, 166=>303, 167=>450, 168=>450, 169=>900, 170=>427, 171=>550, 172=>754, 173=>304, 174=>900, 175=>450, 176=>450,
+ 177=>754, 178=>360, 179=>360, 180=>450, 181=>584, 182=>572, 183=>286, 184=>450, 185=>360, 186=>423, 187=>550, 188=>872, 189=>872, 190=>872, 191=>482, 192=>650,
+ 193=>650, 194=>650, 195=>650, 196=>650, 197=>650, 198=>901, 199=>688, 200=>657, 201=>657, 202=>657, 203=>657, 204=>355, 205=>355, 206=>355, 207=>355, 208=>726,
+ 209=>787, 210=>738, 211=>738, 212=>738, 213=>738, 214=>738, 215=>754, 216=>738, 217=>758, 218=>758, 219=>758, 220=>758, 221=>594, 222=>608, 223=>601, 224=>536,
+ 225=>536, 226=>536, 227=>536, 228=>536, 229=>536, 230=>846, 231=>504, 232=>532, 233=>532, 234=>532, 235=>532, 236=>320, 237=>320, 238=>320, 239=>320, 240=>542,
+ 241=>580, 242=>542, 243=>542, 244=>542, 245=>542, 246=>542, 247=>754, 248=>542, 249=>580, 250=>580, 251=>580, 252=>580, 253=>508, 254=>576, 255=>508, 256=>650,
+ 257=>536, 258=>650, 259=>536, 260=>650, 261=>536, 262=>688, 263=>504, 264=>688, 265=>504, 266=>688, 267=>504, 268=>688, 269=>504, 270=>721, 271=>576, 272=>726,
+ 273=>576, 274=>657, 275=>532, 276=>657, 277=>532, 278=>657, 279=>532, 280=>657, 281=>532, 282=>657, 283=>532, 284=>719, 285=>576, 286=>719, 287=>576, 288=>719,
+ 289=>576, 290=>719, 291=>576, 292=>785, 293=>580, 294=>785, 295=>580, 296=>355, 297=>320, 298=>355, 299=>320, 300=>355, 301=>320, 302=>355, 303=>288, 304=>355,
+ 305=>288, 306=>721, 307=>479, 308=>360, 309=>310, 310=>672, 311=>545, 312=>545, 313=>598, 314=>288, 315=>598, 316=>288, 317=>598, 318=>288, 319=>598, 320=>288,
+ 321=>602, 322=>292, 323=>787, 324=>580, 325=>787, 326=>580, 327=>787, 328=>580, 329=>779, 330=>758, 331=>580, 332=>738, 333=>542, 334=>738, 335=>542, 336=>738,
+ 337=>542, 340=>677, 341=>430, 342=>677, 343=>430, 344=>677, 345=>430, 346=>616, 347=>461, 348=>616, 349=>461, 350=>616, 351=>461, 354=>600, 355=>361, 356=>600,
+ 357=>361, 358=>600, 359=>361, 360=>758, 361=>580, 362=>758, 363=>580, 364=>758, 365=>580, 366=>758, 367=>580, 368=>758, 369=>580, 370=>758, 371=>580, 372=>925,
+ 373=>770, 374=>594, 375=>508, 377=>625, 378=>474, 379=>625, 380=>474, 383=>333, 384=>576, 385=>661, 386=>661, 387=>576, 388=>661, 389=>576, 390=>688, 391=>688,
+ 392=>504, 393=>726, 394=>721, 395=>661, 396=>576, 397=>542, 398=>657, 399=>738, 400=>561, 401=>624, 403=>719, 404=>641, 405=>839, 406=>355, 407=>355, 408=>672,
+ 409=>545, 410=>288, 411=>570, 412=>853, 413=>787, 414=>580, 415=>738, 416=>738, 417=>542, 418=>936, 419=>726, 420=>605, 421=>576, 422=>677, 423=>616, 424=>461,
+ 425=>636, 426=>292, 427=>361, 428=>600, 429=>361, 430=>600, 431=>758, 432=>580, 433=>746, 434=>684, 435=>664, 436=>596, 437=>625, 438=>474, 439=>508, 440=>508,
+ 441=>508, 443=>572, 444=>618, 445=>508, 446=>482, 448=>265, 449=>443, 450=>413, 451=>265, 452=>1347, 453=>1195, 454=>1050, 455=>958, 456=>876, 457=>567, 458=>1148,
+ 459=>1066, 460=>858, 461=>650, 462=>536, 463=>355, 464=>288, 465=>738, 466=>542, 467=>758, 468=>580, 469=>758, 470=>580, 471=>758, 472=>580, 473=>758, 474=>580,
+ 475=>758, 476=>580, 477=>532, 478=>650, 479=>536, 480=>650, 481=>536, 482=>901, 483=>846, 484=>763, 485=>576, 486=>719, 487=>576, 488=>672, 489=>545, 490=>738,
+ 491=>542, 492=>738, 493=>542, 494=>508, 495=>508, 496=>288, 497=>1347, 498=>1195, 499=>1050, 500=>719, 501=>576, 502=>1038, 504=>787, 505=>580, 506=>650, 507=>536,
+ 508=>901, 509=>846, 510=>738, 511=>542, 512=>650, 513=>536, 514=>650, 515=>536, 516=>657, 517=>532, 518=>657, 519=>532, 520=>355, 521=>288, 522=>355, 523=>288,
+ 524=>738, 525=>542, 526=>738, 527=>542, 528=>677, 529=>430, 530=>677, 531=>430, 532=>758, 533=>580, 534=>758, 535=>580, 536=>616, 537=>461, 538=>600, 539=>361,
+ 542=>785, 543=>580, 544=>758, 545=>732, 548=>625, 549=>474, 550=>650, 551=>536, 552=>657, 553=>532, 554=>738, 555=>542, 556=>738, 557=>542, 558=>738, 559=>542,
+ 560=>738, 561=>542, 562=>594, 563=>508, 564=>450, 565=>748, 566=>444, 567=>279, 568=>864, 569=>864, 570=>650, 571=>688, 572=>504, 573=>598, 574=>600, 575=>461,
+ 576=>474, 577=>525, 578=>417, 581=>650, 592=>536, 593=>576, 594=>576, 595=>576, 596=>504, 597=>504, 598=>582, 599=>614, 600=>532, 601=>532, 602=>759, 603=>466,
+ 604=>458, 605=>695, 606=>552, 607=>283, 608=>615, 609=>576, 610=>489, 611=>641, 612=>507, 613=>580, 614=>580, 615=>580, 616=>288, 617=>353, 618=>288, 619=>342,
+ 620=>409, 621=>326, 622=>633, 623=>853, 624=>853, 625=>853, 626=>579, 627=>624, 628=>581, 629=>542, 630=>711, 631=>583, 632=>542, 633=>451, 634=>451, 635=>496,
+ 636=>430, 637=>430, 638=>407, 639=>407, 640=>534, 641=>534, 642=>461, 643=>244, 644=>333, 645=>438, 646=>292, 647=>361, 648=>361, 649=>580, 650=>558, 651=>547,
+ 652=>508, 653=>770, 654=>508, 655=>589, 656=>537, 657=>504, 658=>508, 659=>504, 660=>482, 661=>482, 662=>482, 663=>461, 664=>738, 665=>506, 666=>552, 667=>588,
+ 668=>600, 669=>329, 670=>545, 671=>581, 672=>615, 673=>482, 674=>482, 675=>896, 676=>930, 677=>898, 678=>728, 679=>538, 680=>704, 681=>804, 682=>582, 683=>608,
+ 684=>538, 685=>398, 686=>703, 687=>690, 688=>389, 689=>387, 690=>237, 691=>312, 692=>312, 693=>387, 694=>352, 695=>527, 696=>381, 697=>250, 699=>286, 700=>286,
+ 701=>286, 702=>276, 703=>276, 704=>252, 705=>252, 711=>450, 712=>247, 713=>450, 716=>247, 720=>303, 721=>303, 722=>276, 723=>276, 726=>295, 728=>450, 729=>450,
+ 730=>450, 731=>450, 733=>450, 734=>375, 736=>402, 737=>218, 738=>303, 739=>381, 740=>252, 741=>542, 742=>542, 743=>542, 744=>542, 745=>542, 750=>435, 768=>0,
+ 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0,
+ 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0,
+ 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0,
+ 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 835=>0,
+ 847=>0, 856=>0, 865=>0, 884=>250, 885=>250, 890=>450, 894=>303, 900=>450, 901=>450, 902=>722, 903=>286, 904=>810, 905=>935, 906=>505, 908=>751, 910=>808,
+ 911=>767, 912=>353, 913=>650, 914=>661, 915=>624, 916=>650, 917=>657, 918=>625, 919=>785, 920=>738, 921=>355, 922=>672, 923=>650, 924=>921, 925=>787, 926=>633,
+ 927=>738, 928=>785, 929=>605, 931=>636, 932=>600, 933=>594, 934=>738, 935=>641, 936=>789, 937=>746, 938=>355, 939=>594, 940=>607, 941=>466, 942=>539, 943=>353,
+ 944=>547, 945=>607, 946=>520, 947=>538, 948=>542, 949=>466, 950=>488, 951=>539, 952=>542, 953=>353, 954=>563, 955=>570, 956=>584, 957=>547, 958=>496, 959=>542,
+ 960=>591, 961=>529, 962=>504, 963=>614, 964=>498, 965=>547, 966=>630, 967=>545, 968=>706, 969=>734, 970=>353, 971=>547, 972=>542, 973=>547, 974=>734, 976=>524,
+ 977=>643, 978=>618, 979=>787, 980=>618, 981=>613, 982=>734, 983=>561, 984=>738, 985=>542, 986=>688, 987=>504, 988=>624, 989=>417, 990=>531, 991=>593, 992=>704,
+ 993=>519, 1008=>561, 1009=>529, 1010=>504, 1011=>279, 1012=>738, 1013=>504, 1014=>504, 1015=>608, 1016=>576, 1017=>688, 1018=>921, 1019=>637, 1020=>529, 1021=>688, 1022=>688,
+ 1023=>688, 1024=>730, 1025=>730, 1026=>719, 1028=>688, 1029=>616, 1030=>355, 1031=>355, 1032=>360, 1033=>976, 1034=>1006, 1035=>785, 1037=>872, 1038=>650, 1040=>681, 1041=>661,
+ 1042=>661, 1043=>596, 1044=>731, 1045=>657, 1046=>1011, 1047=>561, 1048=>785, 1049=>785, 1050=>696, 1051=>751, 1052=>921, 1053=>785, 1054=>738, 1055=>785, 1056=>605, 1057=>688,
+ 1058=>600, 1059=>650, 1060=>747, 1061=>641, 1062=>785, 1063=>695, 1064=>1027, 1065=>1027, 1066=>715, 1067=>885, 1068=>606, 1069=>688, 1070=>1074, 1071=>727, 1072=>536, 1073=>542,
+ 1074=>506, 1075=>471, 1076=>554, 1077=>532, 1078=>828, 1079=>491, 1080=>600, 1081=>600, 1082=>563, 1083=>571, 1084=>700, 1085=>600, 1086=>542, 1087=>600, 1088=>576, 1089=>504,
+ 1090=>498, 1091=>529, 1092=>704, 1093=>507, 1094=>579, 1095=>595, 1096=>836, 1097=>836, 1098=>572, 1099=>716, 1100=>490, 1101=>504, 1102=>783, 1103=>567, 1104=>532, 1105=>532,
+ 1106=>561, 1107=>471, 1108=>504, 1109=>461, 1110=>288, 1111=>288, 1112=>279, 1113=>759, 1114=>774, 1115=>580, 1117=>600, 1118=>529, 1119=>590, 1122=>686, 1123=>542, 1124=>1016,
+ 1125=>750, 1130=>1011, 1131=>828, 1138=>738, 1139=>497, 1140=>773, 1141=>610, 1164=>636, 1165=>490, 1168=>604, 1169=>476, 1170=>596, 1171=>471, 1172=>655, 1173=>552, 1174=>1011,
+ 1175=>828, 1176=>572, 1177=>483, 1178=>696, 1179=>545, 1182=>696, 1183=>563, 1184=>801, 1185=>645, 1186=>785, 1187=>577, 1188=>1025, 1189=>767, 1190=>1084, 1191=>847, 1194=>688,
+ 1195=>504, 1196=>600, 1197=>498, 1198=>594, 1199=>508, 1200=>594, 1201=>508, 1202=>641, 1203=>507, 1204=>971, 1205=>809, 1206=>674, 1207=>621, 1210=>674, 1211=>580, 1216=>355,
+ 1217=>1011, 1218=>828, 1219=>672, 1220=>545, 1223=>785, 1224=>600, 1227=>674, 1228=>600, 1231=>288, 1232=>681, 1233=>536, 1234=>681, 1235=>536, 1236=>901, 1237=>846, 1238=>657,
+ 1239=>532, 1240=>738, 1241=>532, 1242=>738, 1243=>532, 1244=>1011, 1245=>828, 1246=>561, 1247=>491, 1248=>508, 1249=>508, 1250=>785, 1251=>600, 1252=>785, 1253=>600, 1254=>738,
+ 1255=>542, 1256=>738, 1257=>542, 1258=>738, 1259=>542, 1260=>688, 1261=>504, 1262=>650, 1263=>529, 1264=>650, 1265=>529, 1266=>650, 1267=>529, 1268=>695, 1269=>595, 1270=>596,
+ 1271=>471, 1272=>885, 1273=>716, 4256=>624, 4257=>733, 4258=>713, 4259=>740, 4260=>632, 4261=>845, 4262=>789, 4263=>948, 4264=>489, 4265=>646, 4266=>829, 4267=>811, 4268=>641,
+ 4269=>925, 4270=>772, 4271=>714, 4272=>895, 4273=>633, 4274=>578, 4275=>875, 4276=>807, 4277=>878, 4278=>631, 4279=>632, 4280=>632, 4281=>633, 4282=>758, 4283=>807, 4284=>616,
+ 4285=>651, 4286=>633, 4287=>825, 4288=>861, 4289=>606, 4290=>744, 4291=>633, 4292=>721, 4293=>819, 4304=>458, 4305=>485, 4306=>508, 4307=>710, 4308=>467, 4309=>480, 4310=>520,
+ 4311=>734, 4312=>475, 4313=>475, 4314=>910, 4315=>485, 4316=>485, 4317=>703, 4318=>483, 4319=>472, 4320=>702, 4321=>509, 4322=>658, 4323=>584, 4324=>694, 4325=>475, 4326=>731,
+ 4327=>478, 4328=>530, 4329=>485, 4330=>579, 4331=>486, 4332=>488, 4333=>467, 4334=>513, 4335=>590, 4336=>485, 4337=>521, 4338=>486, 4339=>486, 4340=>485, 4341=>568, 4342=>756,
+ 4343=>532, 4344=>486, 4345=>526, 4346=>315, 4347=>387, 4348=>485, 7426=>846, 7432=>458, 7433=>288, 7444=>890, 7446=>542, 7447=>542, 7453=>663, 7454=>853, 7455=>853, 7468=>409,
+ 7469=>567, 7470=>417, 7472=>454, 7473=>413, 7474=>413, 7475=>453, 7476=>494, 7477=>224, 7478=>227, 7479=>423, 7480=>376, 7481=>580, 7482=>496, 7483=>496, 7484=>464, 7486=>381,
+ 7487=>426, 7488=>378, 7489=>478, 7490=>583, 7491=>347, 7492=>347, 7493=>360, 7494=>556, 7495=>360, 7496=>360, 7497=>348, 7498=>348, 7499=>306, 7500=>306, 7501=>360, 7502=>157,
+ 7503=>328, 7504=>552, 7505=>359, 7506=>347, 7507=>312, 7508=>347, 7509=>347, 7510=>360, 7511=>222, 7512=>359, 7513=>417, 7514=>552, 7515=>335, 7522=>181, 7523=>312, 7524=>359,
+ 7525=>335, 7543=>576, 7544=>494, 7547=>334, 7557=>288, 7579=>360, 7580=>312, 7581=>312, 7582=>347, 7583=>306, 7584=>199, 7585=>206, 7586=>360, 7587=>359, 7588=>210, 7589=>219,
+ 7590=>210, 7591=>210, 7592=>207, 7593=>158, 7594=>157, 7595=>330, 7596=>552, 7597=>552, 7598=>366, 7599=>364, 7600=>359, 7601=>347, 7602=>347, 7603=>295, 7604=>190, 7605=>222,
+ 7606=>359, 7607=>350, 7609=>338, 7610=>335, 7611=>297, 7612=>297, 7613=>297, 7614=>327, 7615=>347, 7680=>650, 7681=>536, 7682=>661, 7683=>576, 7684=>661, 7685=>576, 7686=>661,
+ 7687=>576, 7688=>688, 7689=>504, 7690=>721, 7691=>576, 7692=>721, 7693=>576, 7694=>721, 7695=>576, 7696=>721, 7697=>576, 7698=>721, 7699=>576, 7700=>657, 7701=>532, 7702=>657,
+ 7703=>532, 7704=>657, 7705=>532, 7706=>657, 7707=>532, 7708=>657, 7709=>532, 7710=>624, 7711=>333, 7712=>719, 7713=>576, 7714=>785, 7715=>580, 7716=>785, 7717=>580, 7718=>785,
+ 7719=>580, 7720=>785, 7721=>580, 7722=>785, 7723=>580, 7724=>355, 7725=>288, 7728=>672, 7729=>545, 7730=>672, 7731=>545, 7732=>672, 7733=>545, 7734=>598, 7735=>288, 7736=>598,
+ 7737=>288, 7738=>598, 7739=>288, 7740=>598, 7741=>288, 7742=>921, 7743=>853, 7744=>921, 7745=>853, 7746=>921, 7747=>853, 7748=>787, 7749=>580, 7750=>787, 7751=>580, 7752=>787,
+ 7753=>580, 7754=>787, 7755=>580, 7760=>738, 7761=>542, 7762=>738, 7763=>542, 7764=>605, 7765=>576, 7766=>605, 7767=>576, 7768=>677, 7769=>430, 7770=>677, 7771=>430, 7772=>677,
+ 7773=>430, 7774=>677, 7775=>430, 7776=>616, 7777=>461, 7778=>616, 7779=>461, 7784=>616, 7785=>461, 7786=>600, 7787=>361, 7788=>600, 7789=>361, 7790=>600, 7791=>361, 7792=>600,
+ 7793=>361, 7794=>758, 7795=>580, 7796=>758, 7797=>580, 7798=>758, 7799=>580, 7800=>758, 7801=>580, 7802=>758, 7803=>580, 7804=>650, 7805=>508, 7806=>650, 7807=>508, 7808=>925,
+ 7809=>770, 7810=>925, 7811=>770, 7812=>925, 7813=>770, 7814=>925, 7815=>770, 7816=>925, 7817=>770, 7818=>641, 7819=>507, 7820=>641, 7821=>507, 7822=>594, 7823=>508, 7824=>625,
+ 7825=>474, 7826=>625, 7827=>474, 7828=>625, 7829=>474, 7830=>580, 7831=>361, 7832=>770, 7833=>508, 7834=>813, 7835=>461, 7840=>650, 7841=>536, 7842=>650, 7843=>536, 7852=>650,
+ 7853=>536, 7854=>650, 7855=>536, 7856=>650, 7857=>536, 7858=>650, 7859=>536, 7860=>650, 7861=>536, 7862=>650, 7863=>536, 7864=>657, 7865=>532, 7866=>657, 7867=>532, 7868=>657,
+ 7869=>532, 7878=>657, 7879=>532, 7880=>355, 7881=>288, 7882=>355, 7883=>288, 7884=>738, 7885=>542, 7886=>738, 7887=>542, 7896=>738, 7897=>542, 7908=>758, 7909=>580, 7910=>758,
+ 7911=>580, 7922=>594, 7923=>508, 7924=>594, 7925=>508, 7926=>594, 7927=>508, 7928=>594, 7929=>508, 7936=>607, 7937=>607, 7938=>607, 7939=>607, 7940=>607, 7941=>607, 7942=>607,
+ 7943=>607, 7944=>650, 7945=>650, 7946=>782, 7947=>782, 7948=>660, 7949=>687, 7950=>650, 7951=>650, 7952=>483, 7953=>483, 7954=>483, 7955=>483, 7956=>483, 7957=>483, 7960=>768,
+ 7961=>757, 7962=>960, 7963=>969, 7964=>907, 7965=>931, 7968=>539, 7969=>539, 7970=>539, 7971=>539, 7972=>539, 7973=>539, 7974=>539, 7975=>539, 7976=>898, 7977=>893, 7978=>1090,
+ 7979=>1101, 7980=>1043, 7981=>1064, 7982=>988, 7983=>985, 7984=>353, 7985=>353, 7986=>353, 7987=>353, 7988=>353, 7989=>353, 7990=>353, 7991=>353, 7992=>469, 7993=>461, 7994=>661,
+ 7995=>664, 7996=>611, 7997=>635, 7998=>561, 7999=>553, 8000=>542, 8001=>542, 8002=>542, 8003=>542, 8004=>542, 8005=>542, 8008=>738, 8009=>773, 8010=>1008, 8011=>1015, 8012=>843,
+ 8013=>867, 8016=>547, 8017=>547, 8018=>547, 8019=>547, 8020=>547, 8021=>547, 8022=>547, 8023=>547, 8025=>765, 8027=>971, 8029=>939, 8031=>857, 8032=>734, 8033=>734, 8034=>734,
+ 8035=>734, 8036=>734, 8037=>734, 8038=>734, 8039=>734, 8040=>746, 8041=>783, 8042=>1018, 8043=>1023, 8044=>852, 8045=>878, 8046=>844, 8047=>873, 8048=>607, 8049=>607, 8050=>483,
+ 8051=>483, 8052=>539, 8053=>539, 8054=>353, 8055=>353, 8056=>542, 8057=>542, 8058=>547, 8059=>547, 8060=>734, 8061=>734, 8064=>607, 8065=>607, 8066=>607, 8067=>607, 8068=>607,
+ 8069=>607, 8070=>607, 8071=>607, 8072=>650, 8073=>650, 8074=>782, 8075=>782, 8076=>660, 8077=>687, 8078=>650, 8079=>650, 8080=>539, 8081=>539, 8082=>539, 8083=>539, 8084=>539,
+ 8085=>539, 8086=>539, 8087=>539, 8088=>898, 8089=>893, 8090=>1090, 8091=>1101, 8092=>1043, 8093=>1064, 8094=>988, 8095=>985, 8096=>734, 8097=>734, 8098=>734, 8099=>734, 8100=>734,
+ 8101=>734, 8102=>734, 8103=>734, 8104=>746, 8105=>783, 8106=>1018, 8107=>1023, 8108=>852, 8109=>878, 8110=>844, 8111=>873, 8112=>607, 8113=>607, 8114=>607, 8115=>607, 8116=>607,
+ 8118=>607, 8119=>607, 8120=>650, 8121=>650, 8122=>650, 8123=>650, 8124=>650, 8125=>450, 8126=>450, 8127=>450, 8128=>450, 8129=>450, 8130=>539, 8131=>539, 8132=>539, 8134=>539,
+ 8135=>539, 8136=>820, 8137=>810, 8138=>956, 8139=>935, 8140=>785, 8141=>450, 8142=>450, 8143=>450, 8144=>353, 8145=>353, 8146=>353, 8147=>353, 8150=>353, 8151=>353, 8152=>355,
+ 8153=>355, 8154=>529, 8155=>505, 8157=>450, 8158=>450, 8159=>450, 8160=>547, 8161=>547, 8162=>547, 8163=>547, 8164=>529, 8165=>529, 8166=>547, 8167=>547, 8168=>594, 8169=>594,
+ 8170=>829, 8171=>808, 8172=>711, 8173=>450, 8174=>450, 8175=>450, 8178=>734, 8179=>734, 8180=>734, 8182=>734, 8183=>734, 8184=>865, 8185=>751, 8186=>886, 8187=>767, 8188=>746,
+ 8189=>450, 8190=>450, 8192=>450, 8193=>900, 8194=>450, 8195=>900, 8196=>296, 8197=>225, 8198=>150, 8199=>572, 8200=>286, 8201=>180, 8202=>89, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>304, 8209=>304, 8210=>572, 8213=>900, 8215=>450, 8219=>286, 8223=>460, 8227=>531, 8228=>300, 8229=>600, 8234=>0, 8235=>0, 8236=>0, 8237=>0,
+ 8238=>0, 8239=>180, 8241=>1560, 8252=>475, 8253=>482, 8254=>450, 8263=>878, 8264=>678, 8265=>678, 8287=>200, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0,
+ 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>360, 8305=>181, 8308=>360, 8309=>360, 8310=>360, 8311=>360, 8312=>360, 8313=>360, 8314=>475, 8315=>475, 8316=>475,
+ 8317=>221, 8318=>221, 8319=>389, 8320=>360, 8321=>360, 8322=>360, 8323=>360, 8324=>360, 8325=>360, 8326=>360, 8327=>360, 8328=>360, 8329=>360, 8330=>475, 8331=>475, 8332=>475,
+ 8333=>221, 8334=>221, 8336=>347, 8337=>348, 8338=>347, 8339=>381, 8340=>348, 8358=>594, 8367=>951, 8369=>635, 8372=>702, 8373=>572, 8450=>716, 8451=>1006, 8457=>942, 8461=>850,
+ 8462=>580, 8469=>822, 8470=>852, 8473=>677, 8474=>784, 8477=>748, 8484=>657, 8486=>746, 8487=>746, 8490=>672, 8491=>650, 8508=>659, 8509=>594, 8510=>639, 8511=>850, 8512=>636,
+ 8513=>697, 8514=>501, 8515=>501, 8516=>549, 8517=>780, 8518=>629, 8519=>572, 8520=>342, 8521=>325, 8523=>801, 8531=>872, 8532=>872, 8533=>872, 8534=>872, 8535=>872, 8536=>872,
+ 8537=>872, 8538=>872, 8539=>872, 8540=>872, 8541=>872, 8542=>872, 8543=>511, 8544=>355, 8545=>531, 8546=>707, 8547=>870, 8548=>650, 8549=>883, 8550=>1059, 8551=>1234, 8552=>838,
+ 8553=>641, 8554=>839, 8555=>1015, 8556=>598, 8557=>688, 8558=>721, 8559=>921, 8560=>288, 8561=>576, 8562=>863, 8563=>796, 8564=>508, 8565=>796, 8566=>1084, 8567=>1372, 8568=>795,
+ 8569=>507, 8570=>795, 8571=>1083, 8572=>288, 8573=>504, 8574=>576, 8575=>853, 8576=>1085, 8577=>721, 8578=>1085, 8579=>688, 8580=>504, 8592=>754, 8593=>754, 8594=>754, 8595=>754,
+ 8596=>754, 8597=>754, 8598=>754, 8599=>754, 8600=>754, 8601=>754, 8602=>754, 8603=>754, 8604=>754, 8605=>754, 8606=>754, 8607=>754, 8608=>754, 8609=>754, 8610=>754, 8611=>754,
+ 8612=>754, 8613=>754, 8614=>754, 8615=>754, 8616=>754, 8617=>754, 8618=>754, 8619=>754, 8620=>754, 8621=>754, 8622=>754, 8623=>754, 8624=>754, 8625=>754, 8626=>754, 8627=>754,
+ 8628=>754, 8629=>754, 8630=>754, 8631=>754, 8632=>754, 8633=>754, 8634=>754, 8635=>754, 8636=>754, 8637=>754, 8638=>754, 8639=>754, 8640=>754, 8641=>754, 8642=>754, 8643=>754,
+ 8644=>754, 8645=>754, 8646=>754, 8647=>754, 8648=>754, 8649=>754, 8650=>754, 8651=>754, 8652=>754, 8653=>754, 8654=>754, 8655=>754, 8656=>754, 8657=>754, 8658=>754, 8659=>754,
+ 8660=>754, 8661=>754, 8662=>754, 8663=>754, 8664=>754, 8665=>754, 8666=>754, 8667=>754, 8668=>754, 8669=>754, 8670=>754, 8671=>754, 8672=>754, 8673=>754, 8674=>754, 8675=>754,
+ 8676=>754, 8677=>754, 8678=>754, 8679=>754, 8680=>754, 8681=>754, 8682=>754, 8683=>754, 8684=>754, 8685=>754, 8686=>754, 8687=>754, 8688=>754, 8689=>754, 8690=>754, 8691=>754,
+ 8692=>754, 8693=>754, 8694=>754, 8695=>754, 8696=>754, 8697=>754, 8698=>754, 8699=>754, 8700=>754, 8701=>754, 8702=>754, 8703=>754, 8704=>543, 8706=>465, 8707=>488, 8708=>488,
+ 8710=>628, 8711=>628, 8712=>666, 8713=>666, 8715=>666, 8716=>666, 8719=>716, 8720=>716, 8721=>642, 8722=>754, 8723=>754, 8724=>754, 8725=>150, 8727=>611, 8728=>441, 8729=>441,
+ 8730=>573, 8731=>573, 8732=>573, 8733=>609, 8734=>750, 8735=>754, 8736=>754, 8739=>262, 8740=>431, 8741=>416, 8742=>570, 8743=>659, 8744=>659, 8745=>754, 8746=>754, 8747=>469,
+ 8748=>766, 8749=>1063, 8760=>754, 8761=>754, 8762=>754, 8763=>754, 8764=>754, 8765=>754, 8770=>754, 8771=>754, 8776=>754, 8784=>754, 8785=>754, 8786=>754, 8787=>754, 8788=>930,
+ 8789=>930, 8800=>754, 8801=>754, 8804=>754, 8805=>754, 8834=>754, 8835=>754, 8836=>754, 8837=>754, 8838=>754, 8839=>754, 8844=>754, 8845=>754, 8846=>754, 8847=>761, 8848=>761,
+ 8849=>761, 8850=>761, 8851=>754, 8852=>754, 8853=>754, 8854=>754, 8855=>754, 8856=>754, 8857=>754, 8858=>754, 8859=>754, 8860=>754, 8861=>754, 8862=>754, 8863=>754, 8864=>754,
+ 8865=>754, 8866=>773, 8867=>773, 8868=>846, 8869=>846, 8870=>510, 8871=>510, 8872=>773, 8873=>773, 8874=>773, 8875=>927, 8876=>773, 8877=>773, 8878=>773, 8879=>927, 8901=>308,
+ 8962=>687, 8968=>351, 8969=>351, 8970=>351, 8971=>351, 8976=>754, 8977=>461, 8984=>900, 8985=>754, 8992=>469, 8993=>469, 8997=>900, 9000=>1299, 9085=>827, 9134=>469, 9167=>850,
+ 9251=>687, 9472=>542, 9473=>542, 9474=>542, 9475=>542, 9476=>542, 9477=>542, 9478=>542, 9479=>542, 9480=>542, 9481=>542, 9482=>542, 9483=>542, 9484=>542, 9485=>542, 9486=>542,
+ 9487=>542, 9488=>542, 9489=>542, 9490=>542, 9491=>542, 9492=>542, 9493=>542, 9494=>542, 9495=>542, 9496=>542, 9497=>542, 9498=>542, 9499=>542, 9500=>542, 9501=>542, 9502=>542,
+ 9503=>542, 9504=>542, 9505=>542, 9506=>542, 9507=>542, 9508=>542, 9509=>542, 9510=>542, 9511=>542, 9512=>542, 9513=>542, 9514=>542, 9515=>542, 9516=>542, 9517=>542, 9518=>542,
+ 9519=>542, 9520=>542, 9521=>542, 9522=>542, 9523=>542, 9524=>542, 9525=>542, 9526=>542, 9527=>542, 9528=>542, 9529=>542, 9530=>542, 9531=>542, 9532=>542, 9533=>542, 9534=>542,
+ 9535=>542, 9536=>542, 9537=>542, 9538=>542, 9539=>542, 9540=>542, 9541=>542, 9542=>542, 9543=>542, 9544=>542, 9545=>542, 9546=>542, 9547=>542, 9548=>542, 9549=>542, 9550=>542,
+ 9551=>542, 9552=>542, 9553=>542, 9554=>542, 9555=>542, 9556=>542, 9557=>542, 9558=>542, 9559=>542, 9560=>542, 9561=>542, 9562=>542, 9563=>542, 9564=>542, 9565=>542, 9566=>542,
+ 9567=>542, 9568=>542, 9569=>542, 9570=>542, 9571=>542, 9572=>542, 9573=>542, 9574=>542, 9575=>542, 9576=>542, 9577=>542, 9578=>542, 9579=>542, 9580=>542, 9581=>542, 9582=>542,
+ 9583=>542, 9584=>542, 9585=>542, 9586=>542, 9587=>542, 9588=>542, 9589=>542, 9590=>542, 9591=>542, 9592=>542, 9593=>542, 9594=>542, 9595=>542, 9596=>542, 9597=>542, 9598=>542,
+ 9599=>542, 9600=>692, 9601=>692, 9602=>692, 9603=>692, 9604=>692, 9605=>692, 9606=>692, 9607=>692, 9608=>692, 9609=>692, 9610=>692, 9611=>692, 9612=>692, 9613=>692, 9614=>692,
+ 9615=>692, 9616=>692, 9617=>692, 9618=>692, 9619=>692, 9620=>692, 9621=>692, 9622=>692, 9623=>692, 9624=>692, 9625=>692, 9626=>692, 9627=>692, 9628=>692, 9629=>692, 9630=>692,
+ 9631=>692, 9632=>850, 9633=>850, 9634=>850, 9635=>850, 9636=>850, 9637=>850, 9638=>850, 9639=>850, 9640=>850, 9641=>850, 9642=>610, 9643=>610, 9644=>850, 9645=>850, 9646=>495,
+ 9647=>495, 9648=>692, 9649=>692, 9650=>692, 9651=>692, 9652=>452, 9653=>452, 9654=>692, 9655=>692, 9656=>452, 9657=>452, 9658=>692, 9659=>692, 9660=>692, 9661=>692, 9662=>452,
+ 9663=>452, 9664=>692, 9665=>692, 9666=>452, 9667=>452, 9668=>692, 9669=>692, 9670=>692, 9671=>692, 9672=>692, 9673=>785, 9674=>444, 9675=>785, 9676=>785, 9677=>785, 9678=>785,
+ 9679=>785, 9680=>785, 9681=>785, 9682=>785, 9683=>785, 9684=>785, 9685=>785, 9686=>474, 9687=>474, 9688=>712, 9689=>873, 9690=>873, 9691=>873, 9692=>348, 9693=>348, 9694=>348,
+ 9695=>348, 9696=>785, 9697=>785, 9698=>692, 9699=>692, 9700=>692, 9701=>692, 9702=>531, 9703=>850, 9704=>850, 9705=>850, 9706=>850, 9707=>850, 9708=>692, 9709=>692, 9710=>692,
+ 9711=>1007, 9712=>850, 9713=>850, 9714=>850, 9715=>850, 9716=>785, 9717=>785, 9718=>785, 9719=>785, 9720=>692, 9721=>692, 9722=>692, 9723=>747, 9724=>747, 9725=>659, 9726=>659,
+ 9727=>692, 9728=>807, 9784=>807, 9785=>807, 9786=>807, 9787=>807, 9788=>807, 9791=>552, 9792=>658, 9793=>658, 9794=>807, 9795=>807, 9796=>807, 9797=>807, 9798=>807, 9799=>807,
+ 9824=>807, 9825=>807, 9826=>807, 9827=>807, 9828=>807, 9829=>807, 9830=>807, 9831=>807, 9833=>424, 9834=>574, 9835=>807, 9836=>807, 9837=>424, 9838=>321, 9839=>435, 10145=>754,
+ 10208=>444, 10216=>351, 10217=>351, 10224=>754, 10225=>754, 10226=>754, 10227=>754, 10228=>930, 10229=>1290, 10230=>1290, 10231=>1290, 10232=>1290, 10233=>1290, 10234=>1290, 10235=>1290, 10236=>1290,
+ 10237=>1290, 10238=>1290, 10239=>1290, 10240=>659, 10241=>659, 10242=>659, 10243=>659, 10244=>659, 10245=>659, 10246=>659, 10247=>659, 10248=>659, 10249=>659, 10250=>659, 10251=>659, 10252=>659,
+ 10253=>659, 10254=>659, 10255=>659, 10256=>659, 10257=>659, 10258=>659, 10259=>659, 10260=>659, 10261=>659, 10262=>659, 10263=>659, 10264=>659, 10265=>659, 10266=>659, 10267=>659, 10268=>659,
+ 10269=>659, 10270=>659, 10271=>659, 10272=>659, 10273=>659, 10274=>659, 10275=>659, 10276=>659, 10277=>659, 10278=>659, 10279=>659, 10280=>659, 10281=>659, 10282=>659, 10283=>659, 10284=>659,
+ 10285=>659, 10286=>659, 10287=>659, 10288=>659, 10289=>659, 10290=>659, 10291=>659, 10292=>659, 10293=>659, 10294=>659, 10295=>659, 10296=>659, 10297=>659, 10298=>659, 10299=>659, 10300=>659,
+ 10301=>659, 10302=>659, 10303=>659, 10304=>659, 10305=>659, 10306=>659, 10307=>659, 10308=>659, 10309=>659, 10310=>659, 10311=>659, 10312=>659, 10313=>659, 10314=>659, 10315=>659, 10316=>659,
+ 10317=>659, 10318=>659, 10319=>659, 10320=>659, 10321=>659, 10322=>659, 10323=>659, 10324=>659, 10325=>659, 10326=>659, 10327=>659, 10328=>659, 10329=>659, 10330=>659, 10331=>659, 10332=>659,
+ 10333=>659, 10334=>659, 10335=>659, 10336=>659, 10337=>659, 10338=>659, 10339=>659, 10340=>659, 10341=>659, 10342=>659, 10343=>659, 10344=>659, 10345=>659, 10346=>659, 10347=>659, 10348=>659,
+ 10349=>659, 10350=>659, 10351=>659, 10352=>659, 10353=>659, 10354=>659, 10355=>659, 10356=>659, 10357=>659, 10358=>659, 10359=>659, 10360=>659, 10361=>659, 10362=>659, 10363=>659, 10364=>659,
+ 10365=>659, 10366=>659, 10367=>659, 10368=>659, 10369=>659, 10370=>659, 10371=>659, 10372=>659, 10373=>659, 10374=>659, 10375=>659, 10376=>659, 10377=>659, 10378=>659, 10379=>659, 10380=>659,
+ 10381=>659, 10382=>659, 10383=>659, 10384=>659, 10385=>659, 10386=>659, 10387=>659, 10388=>659, 10389=>659, 10390=>659, 10391=>659, 10392=>659, 10393=>659, 10394=>659, 10395=>659, 10396=>659,
+ 10397=>659, 10398=>659, 10399=>659, 10400=>659, 10401=>659, 10402=>659, 10403=>659, 10404=>659, 10405=>659, 10406=>659, 10407=>659, 10408=>659, 10409=>659, 10410=>659, 10411=>659, 10412=>659,
+ 10413=>659, 10414=>659, 10415=>659, 10416=>659, 10417=>659, 10418=>659, 10419=>659, 10420=>659, 10421=>659, 10422=>659, 10423=>659, 10424=>659, 10425=>659, 10426=>659, 10427=>659, 10428=>659,
+ 10429=>659, 10430=>659, 10431=>659, 10432=>659, 10433=>659, 10434=>659, 10435=>659, 10436=>659, 10437=>659, 10438=>659, 10439=>659, 10440=>659, 10441=>659, 10442=>659, 10443=>659, 10444=>659,
+ 10445=>659, 10446=>659, 10447=>659, 10448=>659, 10449=>659, 10450=>659, 10451=>659, 10452=>659, 10453=>659, 10454=>659, 10455=>659, 10456=>659, 10457=>659, 10458=>659, 10459=>659, 10460=>659,
+ 10461=>659, 10462=>659, 10463=>659, 10464=>659, 10465=>659, 10466=>659, 10467=>659, 10468=>659, 10469=>659, 10470=>659, 10471=>659, 10472=>659, 10473=>659, 10474=>659, 10475=>659, 10476=>659,
+ 10477=>659, 10478=>659, 10479=>659, 10480=>659, 10481=>659, 10482=>659, 10483=>659, 10484=>659, 10485=>659, 10486=>659, 10487=>659, 10488=>659, 10489=>659, 10490=>659, 10491=>659, 10492=>659,
+ 10493=>659, 10494=>659, 10495=>659, 10496=>754, 10497=>754, 10498=>754, 10499=>754, 10500=>754, 10501=>754, 10502=>754, 10503=>754, 10504=>754, 10505=>754, 10506=>754, 10507=>754, 10508=>754,
+ 10509=>754, 10510=>754, 10511=>754, 10512=>754, 10513=>754, 10514=>754, 10515=>754, 10516=>754, 10517=>754, 10518=>754, 10519=>754, 10520=>754, 10521=>754, 10522=>754, 10523=>754, 10524=>754,
+ 10525=>754, 10526=>754, 10527=>754, 10528=>754, 10529=>754, 10530=>754, 10531=>754, 10532=>754, 10533=>754, 10534=>754, 10535=>754, 10536=>754, 10537=>754, 10538=>754, 10539=>754, 10540=>754,
+ 10541=>754, 10542=>754, 10543=>754, 10544=>754, 10545=>754, 10546=>754, 10547=>754, 10548=>754, 10549=>754, 10550=>754, 10551=>754, 10552=>754, 10553=>754, 10554=>754, 10555=>754, 10556=>754,
+ 10557=>754, 10558=>754, 10559=>754, 10560=>754, 10561=>754, 10562=>754, 10563=>754, 10564=>754, 10565=>754, 10566=>754, 10567=>754, 10568=>754, 10569=>754, 10570=>754, 10571=>754, 10572=>754,
+ 10573=>754, 10574=>754, 10575=>754, 10576=>754, 10577=>754, 10578=>754, 10579=>754, 10580=>754, 10581=>754, 10582=>754, 10583=>754, 10584=>754, 10585=>754, 10586=>754, 10587=>754, 10588=>754,
+ 10589=>754, 10590=>754, 10591=>754, 10592=>754, 10593=>754, 10594=>754, 10595=>754, 10596=>754, 10597=>754, 10598=>754, 10599=>754, 10600=>754, 10601=>754, 10602=>754, 10603=>754, 10604=>754,
+ 10605=>754, 10606=>754, 10607=>754, 10608=>754, 10609=>754, 10610=>754, 10611=>754, 10612=>754, 10613=>754, 10614=>754, 10615=>883, 10616=>754, 10617=>754, 10618=>886, 10619=>754, 10620=>754,
+ 10621=>754, 10622=>754, 10623=>754, 10731=>444, 10764=>1361, 10765=>469, 10766=>469, 10799=>754, 11008=>754, 11009=>754, 11010=>754, 11011=>754, 11012=>754, 11013=>754, 11014=>754, 11015=>754,
+ 11016=>754, 11017=>754, 11018=>754, 11019=>754, 11020=>754, 11021=>754, 11022=>754, 11023=>754, 11024=>754, 11025=>754, 11026=>850, 11027=>850, 11028=>850, 11029=>850, 11030=>692, 11031=>692,
+ 11032=>692, 11033=>692, 11034=>850, 11367=>785, 11368=>580, 11369=>672, 11370=>545, 11371=>625, 11372=>474, 11381=>666, 11382=>500, 11383=>630, 11800=>482, 11822=>482, 63173=>542, 63185=>450,
+ 63188=>450, 64256=>639, 64257=>600, 64258=>600, 64259=>925, 64260=>927, 64261=>694, 64262=>839, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0, 65029=>0, 65030=>0, 65031=>0,
+ 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65529=>0, 65530=>0, 65531=>0, 65532=>0, 65533=>923);
+$enc='';
+$diff='';
+$file='dejavuserifcondensed.z';
+$ctg='dejavuserifcondensed.ctg.z';
+$originalsize=272660;
+?>
diff --git a/lib/tcpdf/fonts/dejavuserifcondensed.z b/lib/tcpdf/fonts/dejavuserifcondensed.z
new file mode 100644
index 0000000000..c3a067ad24
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifcondensed.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifcondensedb.ctg.z b/lib/tcpdf/fonts/dejavuserifcondensedb.ctg.z
new file mode 100644
index 0000000000..235e0dfad0
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifcondensedb.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifcondensedb.php b/lib/tcpdf/fonts/dejavuserifcondensedb.php
new file mode 100644
index 0000000000..958aba921a
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavuserifcondensedb.php
@@ -0,0 +1,180 @@
+939,'Descent'=>-236,'CapHeight'=>939,'Flags'=>32,'FontBBox'=>'[-752 -389 1616 1235]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>540);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>540, 32=>313, 33=>395, 34=>469, 35=>754, 36=>626, 37=>855, 38=>813, 39=>275, 40=>426, 41=>426, 42=>470, 43=>754, 44=>313, 45=>374, 46=>313,
+ 47=>329, 48=>626, 49=>626, 50=>626, 51=>626, 52=>626, 53=>626, 54=>626, 55=>626, 56=>626, 57=>626, 58=>332, 59=>332, 60=>754, 61=>754, 62=>754,
+ 63=>527, 64=>900, 65=>698, 66=>760, 67=>716, 68=>780, 69=>686, 70=>639, 71=>769, 72=>850, 73=>421, 74=>426, 75=>782, 76=>633, 77=>996, 78=>822,
+ 79=>784, 80=>677, 81=>784, 82=>748, 83=>650, 84=>669, 85=>785, 86=>698, 87=>1011, 88=>698, 89=>642, 90=>657, 91=>426, 92=>329, 93=>426, 94=>754,
+ 95=>450, 96=>450, 97=>583, 98=>629, 99=>548, 100=>629, 101=>572, 102=>387, 103=>629, 104=>654, 105=>342, 106=>325, 107=>624, 108=>342, 109=>952, 110=>654,
+ 111=>600, 112=>629, 113=>629, 114=>474, 115=>506, 116=>416, 117=>654, 118=>523, 119=>774, 120=>536, 121=>523, 122=>511, 123=>579, 124=>327, 125=>579, 126=>754,
+ 8364=>626, 1027=>690, 8218=>313, 402=>387, 8222=>518, 8230=>900, 8224=>470, 8225=>470, 710=>450, 8240=>1246, 352=>650, 8249=>360, 338=>1062, 1036=>910, 381=>657, 1039=>850,
+ 8216=>313, 8217=>313, 8220=>518, 8221=>518, 8226=>575, 8211=>450, 8212=>900, 732=>450, 8482=>900, 353=>506, 8250=>360, 339=>925, 1116=>650, 382=>511, 376=>642, 160=>313,
+ 161=>395, 162=>626, 163=>626, 164=>572, 165=>626, 166=>327, 167=>470, 168=>450, 169=>900, 170=>438, 171=>563, 172=>754, 173=>374, 174=>900, 175=>450, 176=>450,
+ 177=>754, 178=>394, 179=>394, 180=>450, 181=>659, 182=>572, 183=>313, 184=>450, 185=>394, 186=>450, 187=>563, 188=>938, 189=>938, 190=>938, 191=>527, 192=>698,
+ 193=>698, 194=>698, 195=>698, 196=>698, 197=>698, 198=>931, 199=>716, 200=>686, 201=>686, 202=>686, 203=>686, 204=>421, 205=>421, 206=>421, 207=>421, 208=>787,
+ 209=>822, 210=>784, 211=>784, 212=>784, 213=>784, 214=>784, 215=>754, 216=>784, 217=>785, 218=>785, 219=>785, 220=>785, 221=>642, 222=>681, 223=>684, 224=>583,
+ 225=>583, 226=>583, 227=>583, 228=>583, 229=>583, 230=>877, 231=>548, 232=>572, 233=>572, 234=>572, 235=>572, 236=>380, 237=>380, 238=>380, 239=>380, 240=>600,
+ 241=>654, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>754, 248=>600, 249=>654, 250=>654, 251=>654, 252=>654, 253=>523, 254=>629, 255=>523, 256=>698,
+ 257=>583, 258=>698, 259=>583, 260=>698, 261=>583, 262=>716, 263=>548, 264=>716, 265=>548, 266=>716, 267=>548, 268=>716, 269=>548, 270=>780, 271=>629, 272=>787,
+ 273=>629, 274=>686, 275=>572, 276=>686, 277=>572, 278=>686, 279=>572, 280=>686, 281=>572, 282=>686, 283=>572, 284=>769, 285=>629, 286=>769, 287=>629, 288=>769,
+ 289=>629, 290=>769, 291=>629, 292=>850, 293=>654, 294=>850, 295=>654, 296=>421, 297=>380, 298=>421, 299=>380, 300=>421, 301=>380, 302=>421, 303=>342, 304=>421,
+ 305=>342, 306=>848, 307=>676, 308=>426, 309=>362, 310=>782, 311=>624, 312=>624, 313=>633, 314=>342, 315=>633, 316=>342, 317=>633, 318=>342, 319=>633, 320=>342,
+ 321=>639, 322=>346, 323=>822, 324=>654, 325=>822, 326=>654, 327=>822, 328=>654, 329=>907, 330=>785, 331=>654, 332=>784, 333=>600, 334=>784, 335=>600, 336=>784,
+ 337=>600, 340=>748, 341=>474, 342=>748, 343=>474, 344=>748, 345=>474, 346=>650, 347=>506, 348=>650, 349=>506, 350=>650, 351=>506, 354=>669, 355=>416, 356=>669,
+ 357=>416, 358=>669, 359=>416, 360=>785, 361=>654, 362=>785, 363=>654, 364=>785, 365=>654, 366=>785, 367=>654, 368=>785, 369=>654, 370=>785, 371=>654, 372=>1011,
+ 373=>774, 374=>642, 375=>523, 377=>657, 378=>511, 379=>657, 380=>511, 383=>387, 384=>629, 385=>760, 386=>769, 387=>629, 388=>769, 389=>629, 390=>716, 391=>716,
+ 392=>548, 393=>787, 394=>780, 395=>769, 396=>629, 397=>600, 398=>686, 399=>784, 400=>649, 401=>639, 403=>769, 404=>693, 405=>938, 406=>421, 407=>421, 408=>782,
+ 409=>624, 410=>342, 411=>631, 412=>952, 413=>822, 414=>654, 415=>784, 416=>784, 417=>600, 418=>1080, 419=>849, 420=>677, 421=>629, 422=>748, 423=>650, 424=>506,
+ 425=>636, 426=>298, 427=>416, 428=>669, 429=>416, 430=>669, 431=>785, 432=>654, 433=>801, 434=>801, 435=>642, 436=>637, 437=>657, 438=>511, 439=>511, 440=>511,
+ 441=>511, 443=>626, 444=>678, 445=>511, 446=>482, 448=>265, 449=>443, 450=>413, 451=>265, 452=>1437, 453=>1292, 454=>1140, 455=>1059, 456=>958, 457=>667, 458=>1248,
+ 459=>1148, 460=>980, 461=>698, 462=>583, 463=>421, 464=>342, 465=>784, 466=>600, 467=>785, 468=>654, 469=>785, 470=>654, 471=>785, 472=>654, 473=>785, 474=>654,
+ 475=>785, 476=>654, 477=>572, 478=>698, 479=>583, 480=>698, 481=>583, 482=>931, 483=>877, 484=>806, 485=>629, 486=>769, 487=>629, 488=>782, 489=>624, 490=>784,
+ 491=>600, 492=>784, 493=>600, 494=>511, 495=>568, 496=>342, 497=>1437, 498=>1292, 499=>1140, 500=>769, 501=>629, 502=>1099, 504=>822, 505=>654, 506=>698, 507=>583,
+ 508=>931, 509=>877, 510=>784, 511=>600, 512=>698, 513=>583, 514=>698, 515=>583, 516=>686, 517=>572, 518=>686, 519=>572, 520=>421, 521=>342, 522=>421, 523=>342,
+ 524=>784, 525=>600, 526=>784, 527=>600, 528=>748, 529=>474, 530=>748, 531=>474, 532=>785, 533=>654, 534=>785, 535=>654, 536=>650, 537=>506, 538=>669, 539=>416,
+ 542=>850, 543=>654, 544=>785, 545=>711, 548=>657, 549=>511, 550=>698, 551=>583, 552=>686, 553=>572, 554=>784, 555=>600, 556=>784, 557=>600, 558=>784, 559=>600,
+ 560=>784, 561=>600, 562=>642, 563=>523, 564=>516, 565=>830, 566=>508, 567=>325, 568=>928, 569=>928, 570=>698, 571=>716, 572=>548, 573=>633, 574=>669, 575=>506,
+ 576=>511, 577=>594, 578=>492, 581=>698, 592=>583, 593=>629, 594=>629, 595=>629, 596=>548, 597=>548, 598=>629, 599=>657, 600=>572, 601=>572, 602=>816, 603=>547,
+ 604=>505, 605=>816, 606=>647, 607=>348, 608=>629, 609=>629, 610=>563, 611=>641, 612=>564, 613=>654, 614=>654, 615=>654, 616=>342, 617=>342, 618=>342, 619=>368,
+ 620=>462, 621=>342, 622=>716, 623=>952, 624=>952, 625=>952, 626=>654, 627=>654, 628=>641, 629=>600, 630=>955, 631=>674, 632=>600, 633=>514, 634=>514, 635=>514,
+ 636=>474, 637=>474, 638=>406, 639=>438, 640=>721, 641=>721, 642=>506, 643=>298, 644=>387, 645=>486, 646=>298, 647=>443, 648=>416, 649=>654, 650=>611, 651=>624,
+ 652=>577, 653=>816, 654=>571, 655=>654, 656=>511, 657=>511, 658=>511, 659=>511, 660=>482, 661=>482, 662=>482, 663=>490, 664=>784, 665=>625, 666=>647, 667=>563,
+ 668=>659, 669=>345, 670=>666, 671=>581, 672=>629, 673=>482, 674=>482, 675=>1005, 676=>1061, 677=>1005, 678=>819, 679=>643, 680=>817, 681=>935, 682=>711, 683=>716,
+ 684=>596, 685=>398, 686=>552, 687=>646, 688=>469, 689=>466, 690=>282, 691=>372, 692=>372, 693=>432, 694=>474, 695=>595, 696=>436, 697=>271, 699=>313, 700=>313,
+ 701=>313, 702=>330, 703=>330, 704=>282, 705=>282, 711=>450, 712=>254, 713=>450, 716=>254, 720=>332, 721=>332, 722=>330, 723=>330, 726=>353, 728=>450, 729=>450,
+ 730=>450, 731=>450, 733=>450, 734=>375, 736=>412, 737=>263, 738=>355, 739=>427, 740=>282, 741=>436, 742=>436, 743=>436, 744=>436, 745=>436, 750=>498, 768=>0,
+ 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0,
+ 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0,
+ 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0,
+ 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 835=>0,
+ 847=>0, 856=>0, 865=>0, 884=>271, 885=>271, 890=>450, 894=>332, 900=>450, 901=>450, 902=>776, 903=>313, 904=>852, 905=>1006, 906=>595, 908=>798, 910=>857,
+ 911=>820, 912=>435, 913=>698, 914=>760, 915=>639, 916=>698, 917=>686, 918=>657, 919=>850, 920=>784, 921=>421, 922=>782, 923=>698, 924=>996, 925=>822, 926=>633,
+ 927=>784, 928=>850, 929=>677, 931=>636, 932=>669, 933=>642, 934=>784, 935=>698, 936=>822, 937=>801, 938=>421, 939=>642, 940=>692, 941=>547, 942=>654, 943=>435,
+ 944=>624, 945=>692, 946=>598, 947=>594, 948=>600, 949=>547, 950=>533, 951=>654, 952=>600, 953=>435, 954=>674, 955=>631, 956=>659, 957=>624, 958=>533, 959=>600,
+ 960=>659, 961=>598, 962=>548, 963=>664, 964=>605, 965=>624, 966=>814, 967=>592, 968=>847, 969=>857, 970=>435, 971=>624, 972=>600, 973=>624, 974=>857, 976=>600,
+ 977=>764, 978=>687, 979=>872, 980=>687, 981=>847, 982=>857, 983=>589, 984=>784, 985=>600, 986=>716, 987=>548, 988=>639, 989=>475, 990=>531, 991=>593, 992=>716,
+ 993=>600, 1008=>589, 1009=>598, 1010=>548, 1011=>325, 1012=>784, 1013=>548, 1014=>548, 1015=>681, 1016=>629, 1017=>716, 1018=>996, 1019=>774, 1020=>623, 1021=>716, 1022=>716,
+ 1023=>716, 1024=>762, 1025=>762, 1026=>811, 1028=>716, 1029=>650, 1030=>421, 1031=>421, 1032=>426, 1033=>1081, 1034=>1135, 1035=>866, 1037=>945, 1038=>812, 1040=>733, 1041=>769,
+ 1042=>760, 1043=>621, 1044=>800, 1045=>686, 1046=>1181, 1047=>649, 1048=>850, 1049=>850, 1050=>818, 1051=>795, 1052=>996, 1053=>850, 1054=>784, 1055=>850, 1056=>677, 1057=>716,
+ 1058=>669, 1059=>730, 1060=>854, 1061=>698, 1062=>870, 1063=>822, 1064=>1141, 1065=>1164, 1066=>861, 1067=>1081, 1068=>743, 1069=>716, 1070=>1158, 1071=>793, 1072=>583, 1073=>600,
+ 1074=>625, 1075=>551, 1076=>600, 1077=>572, 1078=>909, 1079=>574, 1080=>667, 1081=>667, 1082=>650, 1083=>634, 1084=>782, 1085=>659, 1086=>600, 1087=>659, 1088=>629, 1089=>548,
+ 1090=>558, 1091=>576, 1092=>812, 1093=>536, 1094=>665, 1095=>659, 1096=>967, 1097=>974, 1098=>690, 1099=>902, 1100=>611, 1101=>548, 1102=>923, 1103=>665, 1104=>572, 1105=>572,
+ 1106=>646, 1107=>551, 1108=>548, 1109=>506, 1110=>342, 1111=>342, 1112=>325, 1113=>889, 1114=>913, 1115=>654, 1117=>667, 1118=>576, 1119=>659, 1122=>792, 1123=>633, 1124=>1076,
+ 1125=>867, 1130=>1181, 1131=>909, 1138=>784, 1139=>587, 1140=>824, 1141=>673, 1164=>761, 1165=>606, 1168=>630, 1169=>556, 1170=>621, 1171=>551, 1172=>781, 1173=>645, 1174=>1181,
+ 1175=>909, 1176=>649, 1177=>574, 1178=>852, 1179=>669, 1182=>818, 1183=>650, 1184=>937, 1185=>744, 1186=>870, 1187=>665, 1188=>1050, 1189=>860, 1190=>1210, 1191=>953, 1194=>716,
+ 1195=>548, 1196=>669, 1197=>558, 1198=>642, 1199=>523, 1200=>642, 1201=>523, 1202=>779, 1203=>584, 1204=>1125, 1205=>896, 1206=>835, 1207=>665, 1210=>819, 1211=>654, 1216=>421,
+ 1217=>1181, 1218=>909, 1219=>782, 1220=>624, 1223=>850, 1224=>659, 1227=>822, 1228=>659, 1231=>342, 1232=>733, 1233=>583, 1234=>733, 1235=>583, 1236=>931, 1237=>877, 1238=>686,
+ 1239=>572, 1240=>784, 1241=>572, 1242=>784, 1243=>572, 1244=>1181, 1245=>909, 1246=>649, 1247=>574, 1248=>511, 1249=>511, 1250=>850, 1251=>667, 1252=>850, 1253=>667, 1254=>784,
+ 1255=>600, 1256=>784, 1257=>600, 1258=>784, 1259=>600, 1260=>716, 1261=>548, 1262=>730, 1263=>576, 1264=>730, 1265=>576, 1266=>730, 1267=>576, 1268=>822, 1269=>659, 1270=>621,
+ 1271=>551, 1272=>1081, 1273=>902, 4256=>641, 4257=>794, 4258=>735, 4259=>742, 4260=>663, 4261=>915, 4262=>861, 4263=>1029, 4264=>545, 4265=>694, 4266=>892, 4267=>892, 4268=>676,
+ 4269=>963, 4270=>822, 4271=>765, 4272=>941, 4273=>672, 4274=>642, 4275=>913, 4276=>829, 4277=>905, 4278=>688, 4279=>707, 4280=>697, 4281=>708, 4282=>771, 4283=>914, 4284=>653,
+ 4285=>698, 4286=>690, 4287=>943, 4288=>953, 4289=>681, 4290=>757, 4291=>681, 4292=>747, 4293=>902, 4304=>487, 4305=>511, 4306=>542, 4307=>728, 4308=>511, 4309=>520, 4310=>547,
+ 4311=>758, 4312=>501, 4313=>504, 4314=>919, 4315=>520, 4316=>520, 4317=>721, 4318=>510, 4319=>520, 4320=>719, 4321=>532, 4322=>673, 4323=>611, 4324=>716, 4325=>519, 4326=>747,
+ 4327=>521, 4328=>545, 4329=>520, 4330=>610, 4331=>521, 4332=>514, 4333=>516, 4334=>549, 4335=>602, 4336=>520, 4337=>556, 4338=>511, 4339=>511, 4340=>511, 4341=>591, 4342=>770,
+ 4343=>557, 4344=>512, 4345=>551, 4346=>349, 4347=>417, 4348=>511, 7426=>846, 7432=>458, 7433=>288, 7444=>890, 7446=>600, 7447=>600, 7453=>663, 7454=>853, 7455=>853, 7468=>439,
+ 7469=>586, 7470=>479, 7472=>491, 7473=>432, 7474=>432, 7475=>483, 7476=>536, 7477=>265, 7478=>268, 7479=>492, 7480=>398, 7481=>627, 7482=>518, 7483=>518, 7484=>493, 7486=>426,
+ 7487=>471, 7488=>409, 7489=>422, 7490=>494, 7491=>419, 7492=>419, 7493=>448, 7494=>591, 7495=>448, 7496=>448, 7497=>400, 7498=>400, 7499=>370, 7500=>370, 7501=>448, 7502=>270,
+ 7503=>471, 7504=>655, 7505=>426, 7506=>420, 7507=>384, 7508=>420, 7509=>420, 7510=>448, 7511=>333, 7512=>468, 7513=>390, 7514=>655, 7515=>442, 7522=>215, 7523=>372, 7524=>468,
+ 7525=>442, 7543=>576, 7544=>536, 7547=>342, 7557=>342, 7579=>448, 7580=>384, 7581=>384, 7582=>420, 7583=>370, 7584=>345, 7585=>335, 7586=>448, 7587=>470, 7588=>270, 7589=>276,
+ 7590=>270, 7591=>270, 7592=>333, 7593=>331, 7594=>289, 7595=>387, 7596=>613, 7597=>655, 7598=>529, 7599=>528, 7600=>425, 7601=>420, 7602=>470, 7603=>360, 7604=>348, 7605=>333,
+ 7606=>468, 7607=>427, 7609=>439, 7610=>442, 7611=>371, 7612=>474, 7613=>371, 7614=>407, 7615=>420, 7680=>698, 7681=>583, 7682=>760, 7683=>629, 7684=>760, 7685=>629, 7686=>760,
+ 7687=>629, 7688=>716, 7689=>548, 7690=>780, 7691=>629, 7692=>780, 7693=>629, 7694=>780, 7695=>629, 7696=>780, 7697=>629, 7698=>780, 7699=>629, 7700=>686, 7701=>572, 7702=>686,
+ 7703=>572, 7704=>686, 7705=>572, 7706=>686, 7707=>572, 7708=>686, 7709=>572, 7710=>639, 7711=>387, 7712=>769, 7713=>629, 7714=>850, 7715=>654, 7716=>850, 7717=>654, 7718=>850,
+ 7719=>654, 7720=>850, 7721=>654, 7722=>850, 7723=>654, 7724=>421, 7725=>342, 7728=>782, 7729=>624, 7730=>782, 7731=>624, 7732=>782, 7733=>624, 7734=>633, 7735=>342, 7736=>633,
+ 7737=>342, 7738=>633, 7739=>342, 7740=>633, 7741=>342, 7742=>996, 7743=>952, 7744=>996, 7745=>952, 7746=>996, 7747=>952, 7748=>822, 7749=>654, 7750=>822, 7751=>654, 7752=>822,
+ 7753=>654, 7754=>822, 7755=>654, 7760=>784, 7761=>600, 7762=>784, 7763=>600, 7764=>677, 7765=>629, 7766=>677, 7767=>629, 7768=>748, 7769=>474, 7770=>748, 7771=>474, 7772=>748,
+ 7773=>474, 7774=>748, 7775=>474, 7776=>650, 7777=>506, 7778=>650, 7779=>506, 7784=>650, 7785=>506, 7786=>669, 7787=>416, 7788=>669, 7789=>416, 7790=>669, 7791=>416, 7792=>669,
+ 7793=>416, 7794=>785, 7795=>654, 7796=>785, 7797=>654, 7798=>785, 7799=>654, 7800=>785, 7801=>654, 7802=>785, 7803=>654, 7804=>698, 7805=>523, 7806=>698, 7807=>523, 7808=>1011,
+ 7809=>774, 7810=>1011, 7811=>774, 7812=>1011, 7813=>774, 7814=>1011, 7815=>774, 7816=>1011, 7817=>774, 7818=>698, 7819=>536, 7820=>698, 7821=>536, 7822=>642, 7823=>523, 7824=>657,
+ 7825=>511, 7826=>657, 7827=>511, 7828=>657, 7829=>511, 7830=>654, 7831=>416, 7832=>774, 7833=>523, 7834=>913, 7835=>506, 7840=>698, 7841=>583, 7842=>698, 7843=>583, 7852=>698,
+ 7853=>583, 7854=>698, 7855=>583, 7856=>698, 7857=>583, 7858=>698, 7859=>583, 7860=>698, 7861=>583, 7862=>698, 7863=>583, 7864=>686, 7865=>572, 7866=>686, 7867=>572, 7868=>686,
+ 7869=>572, 7878=>686, 7879=>572, 7880=>421, 7881=>342, 7882=>421, 7883=>342, 7884=>784, 7885=>600, 7886=>784, 7887=>600, 7896=>784, 7897=>600, 7908=>785, 7909=>654, 7910=>785,
+ 7911=>654, 7922=>642, 7923=>523, 7924=>642, 7925=>523, 7926=>642, 7927=>523, 7928=>642, 7929=>523, 7936=>692, 7937=>692, 7938=>692, 7939=>692, 7940=>692, 7941=>692, 7942=>692,
+ 7943=>692, 7944=>698, 7945=>698, 7946=>880, 7947=>880, 7948=>748, 7949=>764, 7950=>698, 7951=>698, 7952=>547, 7953=>547, 7954=>547, 7955=>547, 7956=>547, 7957=>547, 7960=>826,
+ 7961=>817, 7962=>1052, 7963=>1052, 7964=>984, 7965=>1007, 7968=>654, 7969=>654, 7970=>654, 7971=>654, 7972=>654, 7973=>654, 7974=>654, 7975=>654, 7976=>990, 7977=>984, 7978=>1222,
+ 7979=>1225, 7980=>1151, 7981=>1177, 7982=>1077, 7983=>1074, 7984=>435, 7985=>435, 7986=>435, 7987=>435, 7988=>435, 7989=>435, 7990=>435, 7991=>435, 7992=>566, 7993=>555, 7994=>790,
+ 7995=>792, 7996=>719, 7997=>748, 7998=>650, 7999=>642, 8000=>600, 8001=>600, 8002=>600, 8003=>600, 8004=>600, 8005=>600, 8008=>810, 8009=>841, 8010=>1116, 8011=>1113, 8012=>931,
+ 8013=>959, 8016=>624, 8017=>624, 8018=>624, 8019=>624, 8020=>624, 8021=>624, 8022=>624, 8023=>624, 8025=>830, 8027=>1067, 8029=>1020, 8031=>917, 8032=>857, 8033=>857, 8034=>857,
+ 8035=>857, 8036=>857, 8037=>857, 8038=>857, 8039=>857, 8040=>838, 8041=>867, 8042=>1141, 8043=>1146, 8044=>949, 8045=>979, 8046=>920, 8047=>954, 8048=>692, 8049=>692, 8050=>547,
+ 8051=>547, 8052=>654, 8053=>654, 8054=>435, 8055=>435, 8056=>600, 8057=>600, 8058=>624, 8059=>624, 8060=>857, 8061=>857, 8064=>692, 8065=>692, 8066=>692, 8067=>692, 8068=>692,
+ 8069=>692, 8070=>692, 8071=>692, 8072=>698, 8073=>698, 8074=>880, 8075=>880, 8076=>748, 8077=>764, 8078=>698, 8079=>698, 8080=>654, 8081=>654, 8082=>654, 8083=>654, 8084=>654,
+ 8085=>654, 8086=>654, 8087=>654, 8088=>990, 8089=>984, 8090=>1222, 8091=>1225, 8092=>1151, 8093=>1177, 8094=>1077, 8095=>1074, 8096=>857, 8097=>857, 8098=>857, 8099=>857, 8100=>857,
+ 8101=>857, 8102=>857, 8103=>857, 8104=>838, 8105=>867, 8106=>1141, 8107=>1146, 8108=>949, 8109=>979, 8110=>920, 8111=>954, 8112=>692, 8113=>692, 8114=>692, 8115=>692, 8116=>692,
+ 8118=>692, 8119=>692, 8120=>698, 8121=>698, 8122=>729, 8123=>698, 8124=>698, 8125=>450, 8126=>450, 8127=>450, 8128=>450, 8129=>450, 8130=>654, 8131=>654, 8132=>654, 8134=>654,
+ 8135=>654, 8136=>899, 8137=>852, 8138=>1072, 8139=>1006, 8140=>850, 8141=>450, 8142=>450, 8143=>450, 8144=>435, 8145=>435, 8146=>435, 8147=>435, 8150=>435, 8151=>435, 8152=>421,
+ 8153=>421, 8154=>642, 8155=>595, 8157=>450, 8158=>450, 8159=>450, 8160=>624, 8161=>624, 8162=>624, 8163=>624, 8164=>598, 8165=>598, 8166=>624, 8167=>624, 8168=>642, 8169=>642,
+ 8170=>917, 8171=>857, 8172=>819, 8173=>450, 8174=>450, 8175=>450, 8178=>857, 8179=>857, 8180=>857, 8182=>857, 8183=>857, 8184=>962, 8185=>798, 8186=>991, 8187=>820, 8188=>801,
+ 8189=>450, 8190=>450, 8192=>450, 8193=>900, 8194=>450, 8195=>900, 8196=>296, 8197=>225, 8198=>150, 8199=>626, 8200=>313, 8201=>180, 8202=>89, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>374, 8209=>374, 8210=>626, 8213=>900, 8215=>450, 8219=>313, 8223=>518, 8227=>575, 8228=>313, 8229=>606, 8234=>0, 8235=>0, 8236=>0, 8237=>0,
+ 8238=>0, 8239=>180, 8241=>1638, 8252=>566, 8253=>527, 8254=>450, 8263=>974, 8264=>770, 8265=>770, 8287=>200, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0,
+ 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>394, 8305=>215, 8308=>394, 8309=>394, 8310=>394, 8311=>394, 8312=>394, 8313=>394, 8314=>475, 8315=>475, 8316=>475,
+ 8317=>268, 8318=>268, 8319=>467, 8320=>394, 8321=>394, 8322=>394, 8323=>394, 8324=>394, 8325=>394, 8326=>394, 8327=>394, 8328=>394, 8329=>394, 8330=>475, 8331=>475, 8332=>475,
+ 8333=>268, 8334=>268, 8336=>419, 8337=>400, 8338=>420, 8339=>427, 8340=>400, 8358=>626, 8367=>1039, 8369=>710, 8372=>788, 8373=>626, 8451=>1078, 8457=>1001, 8462=>654, 8470=>978,
+ 8486=>801, 8487=>801, 8490=>782, 8491=>698, 8513=>697, 8514=>501, 8515=>573, 8516=>684, 8523=>813, 8531=>932, 8532=>932, 8533=>932, 8534=>932, 8535=>932, 8536=>932, 8537=>932,
+ 8538=>932, 8539=>932, 8540=>932, 8541=>932, 8542=>932, 8543=>554, 8544=>421, 8545=>663, 8546=>904, 8547=>984, 8548=>698, 8549=>1014, 8550=>1256, 8551=>1498, 8552=>962, 8553=>698,
+ 8554=>970, 8555=>1212, 8556=>633, 8557=>716, 8558=>780, 8559=>996, 8560=>342, 8561=>684, 8562=>1025, 8563=>865, 8564=>523, 8565=>865, 8566=>1207, 8567=>1548, 8568=>878, 8569=>536,
+ 8570=>878, 8571=>1220, 8572=>342, 8573=>548, 8574=>629, 8575=>952, 8576=>1129, 8577=>780, 8578=>1141, 8579=>716, 8580=>548, 8592=>754, 8593=>754, 8594=>754, 8595=>754, 8596=>754,
+ 8597=>754, 8598=>754, 8599=>754, 8600=>754, 8601=>754, 8602=>754, 8603=>754, 8604=>754, 8605=>754, 8606=>754, 8607=>754, 8608=>754, 8609=>754, 8610=>754, 8611=>754, 8612=>754,
+ 8613=>754, 8614=>754, 8615=>754, 8616=>754, 8617=>754, 8618=>754, 8619=>754, 8620=>754, 8621=>754, 8622=>754, 8623=>765, 8624=>754, 8625=>754, 8626=>754, 8627=>754, 8628=>754,
+ 8629=>754, 8630=>754, 8631=>754, 8632=>754, 8633=>754, 8634=>754, 8635=>754, 8636=>754, 8637=>754, 8638=>754, 8639=>754, 8640=>754, 8641=>754, 8642=>754, 8643=>754, 8644=>754,
+ 8645=>754, 8646=>754, 8647=>754, 8648=>754, 8649=>754, 8650=>754, 8651=>754, 8652=>754, 8653=>754, 8654=>754, 8655=>754, 8656=>754, 8657=>754, 8658=>754, 8659=>754, 8660=>754,
+ 8661=>754, 8662=>754, 8663=>754, 8664=>754, 8665=>754, 8666=>754, 8667=>754, 8668=>754, 8669=>754, 8670=>754, 8671=>754, 8672=>754, 8673=>754, 8674=>754, 8675=>754, 8676=>754,
+ 8677=>754, 8678=>754, 8679=>754, 8680=>754, 8681=>754, 8682=>754, 8683=>754, 8684=>754, 8685=>754, 8686=>754, 8687=>754, 8688=>754, 8689=>754, 8690=>754, 8691=>754, 8692=>754,
+ 8693=>754, 8694=>754, 8695=>754, 8696=>754, 8697=>754, 8698=>754, 8699=>754, 8700=>754, 8701=>754, 8702=>754, 8703=>754, 8704=>577, 8706=>480, 8707=>558, 8708=>558, 8710=>677,
+ 8711=>677, 8712=>666, 8713=>666, 8715=>666, 8716=>666, 8719=>757, 8720=>757, 8721=>677, 8722=>754, 8723=>754, 8724=>754, 8725=>150, 8727=>622, 8728=>466, 8729=>466, 8730=>591,
+ 8731=>591, 8732=>591, 8733=>604, 8734=>750, 8735=>754, 8736=>754, 8739=>292, 8740=>546, 8741=>476, 8742=>696, 8743=>730, 8744=>730, 8745=>754, 8746=>754, 8747=>521, 8748=>900,
+ 8749=>1252, 8760=>754, 8761=>754, 8762=>754, 8763=>754, 8764=>754, 8765=>754, 8770=>754, 8771=>754, 8776=>754, 8784=>754, 8785=>754, 8786=>754, 8787=>754, 8788=>974, 8789=>974,
+ 8800=>754, 8801=>754, 8804=>754, 8805=>754, 8834=>754, 8835=>754, 8836=>754, 8837=>754, 8838=>754, 8839=>754, 8844=>754, 8845=>754, 8846=>754, 8847=>754, 8848=>754, 8849=>754,
+ 8850=>754, 8851=>754, 8852=>754, 8853=>754, 8854=>754, 8855=>754, 8856=>754, 8857=>754, 8858=>754, 8859=>754, 8860=>754, 8861=>754, 8862=>754, 8863=>754, 8864=>754, 8865=>754,
+ 8866=>795, 8867=>795, 8868=>864, 8869=>864, 8870=>554, 8871=>554, 8872=>795, 8873=>795, 8874=>795, 8875=>971, 8876=>795, 8877=>795, 8878=>795, 8879=>971, 8901=>358, 8962=>751,
+ 8968=>426, 8969=>426, 8970=>426, 8971=>426, 8976=>754, 8977=>484, 8984=>835, 8985=>754, 8992=>521, 8993=>521, 8997=>900, 9000=>1299, 9085=>907, 9134=>521, 9167=>850, 9251=>751,
+ 9600=>692, 9601=>692, 9602=>692, 9603=>692, 9604=>692, 9605=>692, 9606=>692, 9607=>692, 9608=>692, 9609=>692, 9610=>692, 9611=>692, 9612=>692, 9613=>692, 9614=>692, 9615=>692,
+ 9616=>692, 9617=>692, 9618=>692, 9619=>692, 9620=>692, 9621=>692, 9622=>692, 9623=>692, 9624=>692, 9625=>692, 9626=>692, 9627=>692, 9628=>692, 9629=>692, 9630=>692, 9631=>692,
+ 9632=>850, 9633=>850, 9634=>850, 9635=>850, 9636=>850, 9637=>850, 9638=>850, 9639=>850, 9640=>850, 9641=>850, 9642=>610, 9643=>610, 9644=>850, 9645=>850, 9646=>495, 9647=>495,
+ 9648=>692, 9649=>692, 9650=>692, 9651=>692, 9652=>452, 9653=>452, 9654=>692, 9655=>692, 9656=>452, 9657=>452, 9658=>692, 9659=>692, 9660=>692, 9661=>692, 9662=>452, 9663=>452,
+ 9664=>692, 9665=>692, 9666=>452, 9667=>452, 9668=>692, 9669=>692, 9670=>692, 9671=>692, 9672=>692, 9673=>785, 9674=>444, 9675=>785, 9676=>785, 9677=>785, 9678=>785, 9679=>785,
+ 9680=>785, 9681=>785, 9682=>785, 9683=>785, 9684=>785, 9685=>785, 9686=>474, 9687=>474, 9688=>712, 9689=>873, 9690=>873, 9691=>873, 9692=>348, 9693=>348, 9694=>348, 9695=>348,
+ 9696=>785, 9697=>785, 9698=>692, 9699=>692, 9700=>692, 9701=>692, 9702=>531, 9703=>850, 9704=>850, 9705=>850, 9706=>850, 9707=>850, 9708=>692, 9709=>692, 9710=>692, 9711=>1007,
+ 9712=>850, 9713=>850, 9714=>850, 9715=>850, 9716=>785, 9717=>785, 9718=>785, 9719=>785, 9720=>692, 9721=>692, 9722=>692, 9723=>747, 9724=>747, 9725=>659, 9726=>659, 9727=>692,
+ 9728=>807, 9784=>807, 9785=>807, 9786=>807, 9787=>807, 9788=>807, 9791=>552, 9792=>658, 9793=>658, 9794=>807, 9795=>807, 9796=>807, 9797=>807, 9798=>807, 9799=>807, 9824=>807,
+ 9825=>807, 9826=>807, 9827=>807, 9828=>807, 9829=>807, 9830=>807, 9831=>807, 9833=>424, 9834=>574, 9835=>807, 9836=>807, 9837=>424, 9838=>321, 9839=>435, 10145=>754, 10208=>444,
+ 10216=>411, 10217=>411, 10224=>754, 10225=>754, 10226=>754, 10227=>754, 10228=>930, 10229=>1290, 10230=>1290, 10231=>1290, 10232=>1290, 10233=>1290, 10234=>1290, 10235=>1290, 10236=>1290, 10237=>1290,
+ 10238=>1290, 10239=>1290, 10240=>703, 10241=>703, 10242=>703, 10243=>703, 10244=>703, 10245=>703, 10246=>703, 10247=>703, 10248=>703, 10249=>703, 10250=>703, 10251=>703, 10252=>703, 10253=>703,
+ 10254=>703, 10255=>703, 10256=>703, 10257=>703, 10258=>703, 10259=>703, 10260=>703, 10261=>703, 10262=>703, 10263=>703, 10264=>703, 10265=>703, 10266=>703, 10267=>703, 10268=>703, 10269=>703,
+ 10270=>703, 10271=>703, 10272=>703, 10273=>703, 10274=>703, 10275=>703, 10276=>703, 10277=>703, 10278=>703, 10279=>703, 10280=>703, 10281=>703, 10282=>703, 10283=>703, 10284=>703, 10285=>703,
+ 10286=>703, 10287=>703, 10288=>703, 10289=>703, 10290=>703, 10291=>703, 10292=>703, 10293=>703, 10294=>703, 10295=>703, 10296=>703, 10297=>703, 10298=>703, 10299=>703, 10300=>703, 10301=>703,
+ 10302=>703, 10303=>703, 10304=>703, 10305=>703, 10306=>703, 10307=>703, 10308=>703, 10309=>703, 10310=>703, 10311=>703, 10312=>703, 10313=>703, 10314=>703, 10315=>703, 10316=>703, 10317=>703,
+ 10318=>703, 10319=>703, 10320=>703, 10321=>703, 10322=>703, 10323=>703, 10324=>703, 10325=>703, 10326=>703, 10327=>703, 10328=>703, 10329=>703, 10330=>703, 10331=>703, 10332=>703, 10333=>703,
+ 10334=>703, 10335=>703, 10336=>703, 10337=>703, 10338=>703, 10339=>703, 10340=>703, 10341=>703, 10342=>703, 10343=>703, 10344=>703, 10345=>703, 10346=>703, 10347=>703, 10348=>703, 10349=>703,
+ 10350=>703, 10351=>703, 10352=>703, 10353=>703, 10354=>703, 10355=>703, 10356=>703, 10357=>703, 10358=>703, 10359=>703, 10360=>703, 10361=>703, 10362=>703, 10363=>703, 10364=>703, 10365=>703,
+ 10366=>703, 10367=>703, 10368=>703, 10369=>703, 10370=>703, 10371=>703, 10372=>703, 10373=>703, 10374=>703, 10375=>703, 10376=>703, 10377=>703, 10378=>703, 10379=>703, 10380=>703, 10381=>703,
+ 10382=>703, 10383=>703, 10384=>703, 10385=>703, 10386=>703, 10387=>703, 10388=>703, 10389=>703, 10390=>703, 10391=>703, 10392=>703, 10393=>703, 10394=>703, 10395=>703, 10396=>703, 10397=>703,
+ 10398=>703, 10399=>703, 10400=>703, 10401=>703, 10402=>703, 10403=>703, 10404=>703, 10405=>703, 10406=>703, 10407=>703, 10408=>703, 10409=>703, 10410=>703, 10411=>703, 10412=>703, 10413=>703,
+ 10414=>703, 10415=>703, 10416=>703, 10417=>703, 10418=>703, 10419=>703, 10420=>703, 10421=>703, 10422=>703, 10423=>703, 10424=>703, 10425=>703, 10426=>703, 10427=>703, 10428=>703, 10429=>703,
+ 10430=>703, 10431=>703, 10432=>703, 10433=>703, 10434=>703, 10435=>703, 10436=>703, 10437=>703, 10438=>703, 10439=>703, 10440=>703, 10441=>703, 10442=>703, 10443=>703, 10444=>703, 10445=>703,
+ 10446=>703, 10447=>703, 10448=>703, 10449=>703, 10450=>703, 10451=>703, 10452=>703, 10453=>703, 10454=>703, 10455=>703, 10456=>703, 10457=>703, 10458=>703, 10459=>703, 10460=>703, 10461=>703,
+ 10462=>703, 10463=>703, 10464=>703, 10465=>703, 10466=>703, 10467=>703, 10468=>703, 10469=>703, 10470=>703, 10471=>703, 10472=>703, 10473=>703, 10474=>703, 10475=>703, 10476=>703, 10477=>703,
+ 10478=>703, 10479=>703, 10480=>703, 10481=>703, 10482=>703, 10483=>703, 10484=>703, 10485=>703, 10486=>703, 10487=>703, 10488=>703, 10489=>703, 10490=>703, 10491=>703, 10492=>703, 10493=>703,
+ 10494=>703, 10495=>703, 10496=>754, 10497=>754, 10498=>754, 10499=>754, 10500=>754, 10501=>754, 10502=>754, 10503=>754, 10504=>754, 10505=>754, 10506=>754, 10507=>754, 10508=>754, 10509=>754,
+ 10510=>754, 10511=>754, 10512=>754, 10513=>754, 10514=>754, 10515=>754, 10516=>754, 10517=>754, 10518=>754, 10519=>754, 10520=>754, 10521=>754, 10522=>754, 10523=>754, 10524=>754, 10525=>754,
+ 10526=>754, 10527=>754, 10528=>754, 10529=>754, 10530=>754, 10531=>754, 10532=>754, 10533=>754, 10534=>754, 10535=>754, 10536=>754, 10537=>754, 10538=>754, 10539=>754, 10540=>754, 10541=>754,
+ 10542=>754, 10543=>754, 10544=>754, 10545=>754, 10546=>754, 10547=>754, 10548=>754, 10549=>754, 10550=>754, 10551=>754, 10552=>754, 10553=>754, 10554=>754, 10555=>754, 10556=>754, 10557=>754,
+ 10558=>754, 10559=>754, 10560=>754, 10561=>754, 10562=>754, 10563=>754, 10564=>754, 10565=>754, 10566=>754, 10567=>754, 10568=>754, 10569=>754, 10570=>754, 10571=>754, 10572=>754, 10573=>754,
+ 10574=>754, 10575=>754, 10576=>754, 10577=>754, 10578=>754, 10579=>754, 10580=>754, 10581=>754, 10582=>754, 10583=>754, 10584=>754, 10585=>754, 10586=>754, 10587=>754, 10588=>754, 10589=>754,
+ 10590=>754, 10591=>754, 10592=>754, 10593=>754, 10594=>754, 10595=>754, 10596=>754, 10597=>754, 10598=>754, 10599=>754, 10600=>754, 10601=>754, 10602=>754, 10603=>754, 10604=>754, 10605=>754,
+ 10606=>754, 10607=>754, 10608=>754, 10609=>754, 10610=>754, 10611=>754, 10612=>754, 10613=>754, 10614=>754, 10615=>929, 10616=>754, 10617=>754, 10618=>864, 10619=>754, 10620=>754, 10621=>754,
+ 10622=>754, 10623=>754, 10731=>444, 10764=>1604, 10765=>549, 10766=>549, 10799=>754, 11008=>754, 11009=>754, 11010=>754, 11011=>754, 11012=>754, 11013=>754, 11014=>754, 11015=>754, 11016=>754,
+ 11017=>754, 11018=>754, 11019=>754, 11020=>754, 11021=>754, 11022=>754, 11023=>754, 11024=>754, 11025=>754, 11026=>850, 11027=>850, 11028=>850, 11029=>850, 11030=>692, 11031=>692, 11032=>692,
+ 11033=>692, 11034=>850, 11367=>850, 11368=>654, 11369=>782, 11370=>624, 11371=>657, 11372=>511, 11381=>701, 11382=>541, 11383=>814, 11800=>527, 11822=>527, 63173=>600, 63185=>450, 63188=>450,
+ 64256=>738, 64257=>654, 64258=>654, 64259=>1007, 64260=>1005, 64261=>784, 64262=>874, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0, 65029=>0, 65030=>0, 65031=>0, 65032=>0,
+ 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65529=>0, 65530=>0, 65531=>0, 65532=>0, 65533=>1002);
+$enc='';
+$diff='';
+$file='dejavuserifcondensedb.z';
+$ctg='dejavuserifcondensedb.ctg.z';
+$originalsize=255880;
+?>
diff --git a/lib/tcpdf/fonts/dejavuserifcondensedb.z b/lib/tcpdf/fonts/dejavuserifcondensedb.z
new file mode 100644
index 0000000000..ac9d50491e
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifcondensedb.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifcondensedbi.ctg.z b/lib/tcpdf/fonts/dejavuserifcondensedbi.ctg.z
new file mode 100644
index 0000000000..8ea26ce3a1
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifcondensedbi.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifcondensedbi.php b/lib/tcpdf/fonts/dejavuserifcondensedbi.php
new file mode 100644
index 0000000000..6b1165f553
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavuserifcondensedbi.php
@@ -0,0 +1,180 @@
+939,'Descent'=>-236,'CapHeight'=>939,'Flags'=>96,'FontBBox'=>'[-815 -389 1584 1235]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>540);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>540, 32=>313, 33=>395, 34=>469, 35=>754, 36=>626, 37=>855, 38=>813, 39=>275, 40=>426, 41=>426, 42=>470, 43=>754, 44=>313, 45=>374, 46=>313,
+ 47=>329, 48=>626, 49=>626, 50=>626, 51=>626, 52=>626, 53=>626, 54=>626, 55=>626, 56=>626, 57=>626, 58=>332, 59=>332, 60=>754, 61=>754, 62=>754,
+ 63=>527, 64=>900, 65=>698, 66=>760, 67=>716, 68=>780, 69=>686, 70=>639, 71=>769, 72=>850, 73=>421, 74=>426, 75=>782, 76=>633, 77=>996, 78=>822,
+ 79=>784, 80=>677, 81=>784, 82=>748, 83=>650, 84=>669, 85=>785, 86=>698, 87=>1011, 88=>698, 89=>642, 90=>657, 91=>426, 92=>329, 93=>426, 94=>754,
+ 95=>450, 96=>450, 97=>583, 98=>629, 99=>548, 100=>629, 101=>572, 102=>387, 103=>629, 104=>654, 105=>342, 106=>325, 107=>624, 108=>342, 109=>952, 110=>654,
+ 111=>600, 112=>629, 113=>629, 114=>474, 115=>506, 116=>416, 117=>654, 118=>523, 119=>774, 120=>536, 121=>523, 122=>511, 123=>579, 124=>327, 125=>579, 126=>754,
+ 8364=>626, 1027=>621, 8218=>313, 402=>387, 8222=>518, 8230=>900, 8224=>470, 8225=>470, 710=>450, 8240=>1246, 352=>650, 8249=>360, 338=>1062, 1036=>818, 381=>657, 1039=>850,
+ 8216=>313, 8217=>313, 8220=>518, 8221=>518, 8226=>575, 8211=>450, 8212=>900, 732=>450, 8482=>900, 353=>506, 8250=>360, 339=>925, 1116=>609, 382=>511, 376=>642, 160=>313,
+ 161=>395, 162=>626, 163=>626, 164=>572, 165=>626, 166=>327, 167=>470, 168=>450, 169=>900, 170=>438, 171=>563, 172=>754, 173=>374, 174=>900, 175=>450, 176=>450,
+ 177=>754, 178=>394, 179=>394, 180=>450, 181=>659, 182=>572, 183=>313, 184=>450, 185=>394, 186=>450, 187=>563, 188=>938, 189=>938, 190=>938, 191=>527, 192=>698,
+ 193=>698, 194=>698, 195=>698, 196=>698, 197=>698, 198=>931, 199=>716, 200=>686, 201=>686, 202=>686, 203=>686, 204=>421, 205=>421, 206=>421, 207=>421, 208=>787,
+ 209=>822, 210=>784, 211=>784, 212=>784, 213=>784, 214=>784, 215=>754, 216=>784, 217=>785, 218=>785, 219=>785, 220=>785, 221=>642, 222=>681, 223=>684, 224=>583,
+ 225=>583, 226=>583, 227=>583, 228=>583, 229=>583, 230=>838, 231=>548, 232=>572, 233=>572, 234=>572, 235=>572, 236=>342, 237=>342, 238=>342, 239=>342, 240=>600,
+ 241=>654, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>754, 248=>600, 249=>654, 250=>654, 251=>654, 252=>654, 253=>523, 254=>629, 255=>523, 256=>698,
+ 257=>583, 258=>698, 259=>583, 260=>698, 261=>583, 262=>716, 263=>548, 264=>716, 265=>548, 266=>716, 267=>548, 268=>716, 269=>548, 270=>780, 271=>629, 272=>787,
+ 273=>629, 274=>686, 275=>572, 276=>686, 277=>572, 278=>686, 279=>572, 280=>686, 281=>572, 282=>686, 283=>572, 284=>769, 285=>629, 286=>769, 287=>629, 288=>769,
+ 289=>629, 290=>769, 291=>629, 292=>850, 293=>654, 294=>850, 295=>654, 296=>421, 297=>342, 298=>421, 299=>342, 300=>421, 301=>342, 302=>421, 303=>342, 304=>421,
+ 305=>342, 306=>848, 307=>676, 308=>426, 309=>325, 310=>782, 311=>624, 312=>624, 313=>633, 314=>342, 315=>633, 316=>342, 317=>633, 318=>457, 319=>633, 320=>501,
+ 321=>639, 322=>346, 323=>822, 324=>654, 325=>822, 326=>654, 327=>822, 328=>654, 329=>907, 330=>785, 331=>654, 332=>784, 333=>600, 334=>784, 335=>600, 336=>784,
+ 337=>600, 340=>748, 341=>474, 342=>748, 343=>474, 344=>748, 345=>474, 346=>650, 347=>506, 348=>650, 349=>506, 350=>650, 351=>506, 354=>669, 355=>416, 356=>669,
+ 357=>416, 358=>669, 359=>416, 360=>785, 361=>654, 362=>785, 363=>654, 364=>785, 365=>654, 366=>785, 367=>654, 368=>785, 369=>654, 370=>785, 371=>654, 372=>1011,
+ 373=>774, 374=>642, 375=>523, 377=>657, 378=>511, 379=>657, 380=>511, 383=>387, 384=>629, 385=>760, 386=>769, 387=>629, 388=>769, 389=>629, 390=>716, 391=>716,
+ 392=>548, 393=>787, 394=>780, 395=>769, 396=>629, 397=>600, 398=>686, 399=>784, 400=>649, 401=>639, 403=>769, 404=>693, 405=>938, 406=>421, 407=>421, 408=>782,
+ 409=>624, 410=>342, 411=>631, 412=>952, 413=>822, 414=>654, 415=>784, 416=>784, 417=>600, 418=>1080, 419=>849, 420=>677, 421=>629, 422=>748, 423=>650, 424=>506,
+ 425=>636, 426=>298, 427=>416, 428=>669, 429=>416, 430=>669, 431=>785, 432=>654, 433=>801, 434=>801, 435=>642, 436=>628, 437=>657, 438=>511, 439=>511, 440=>511,
+ 441=>511, 443=>626, 444=>678, 445=>511, 446=>482, 448=>265, 449=>443, 450=>413, 451=>265, 452=>1437, 453=>1292, 454=>1140, 455=>1059, 456=>958, 457=>667, 458=>1248,
+ 459=>1148, 460=>980, 461=>698, 462=>583, 463=>421, 464=>342, 465=>784, 466=>600, 467=>785, 468=>654, 469=>785, 470=>654, 471=>785, 472=>654, 473=>785, 474=>654,
+ 475=>785, 476=>654, 477=>572, 478=>698, 479=>583, 480=>698, 481=>583, 482=>931, 483=>877, 484=>806, 485=>629, 486=>769, 487=>629, 488=>782, 489=>624, 490=>784,
+ 491=>600, 492=>784, 493=>600, 494=>511, 495=>568, 496=>325, 497=>1437, 498=>1292, 499=>1140, 500=>769, 501=>629, 502=>1099, 504=>822, 505=>654, 506=>698, 507=>583,
+ 508=>931, 509=>838, 510=>784, 511=>600, 512=>698, 513=>583, 514=>698, 515=>583, 516=>686, 517=>572, 518=>686, 519=>572, 520=>421, 521=>342, 522=>421, 523=>342,
+ 524=>784, 525=>600, 526=>784, 527=>600, 528=>748, 529=>474, 530=>748, 531=>474, 532=>785, 533=>654, 534=>785, 535=>654, 536=>650, 537=>506, 538=>669, 539=>416,
+ 542=>850, 543=>654, 544=>785, 545=>711, 548=>657, 549=>511, 550=>698, 551=>583, 552=>686, 553=>572, 554=>784, 555=>600, 556=>784, 557=>600, 558=>784, 559=>600,
+ 560=>784, 561=>600, 562=>642, 563=>523, 564=>516, 565=>830, 566=>508, 567=>325, 568=>928, 569=>928, 570=>698, 571=>716, 572=>548, 573=>633, 574=>669, 575=>506,
+ 576=>511, 577=>594, 578=>492, 581=>698, 592=>583, 593=>629, 594=>629, 595=>629, 596=>548, 597=>548, 598=>629, 599=>657, 600=>572, 601=>572, 602=>816, 603=>547,
+ 604=>505, 605=>816, 606=>647, 607=>348, 608=>629, 609=>629, 610=>563, 611=>641, 612=>564, 613=>654, 614=>654, 615=>654, 616=>342, 617=>342, 618=>342, 619=>368,
+ 620=>462, 621=>342, 622=>716, 623=>952, 624=>952, 625=>952, 626=>654, 627=>654, 628=>641, 629=>600, 630=>955, 631=>674, 632=>600, 633=>514, 634=>514, 635=>514,
+ 636=>474, 637=>474, 638=>406, 639=>438, 640=>721, 641=>721, 642=>506, 643=>298, 644=>387, 645=>486, 646=>298, 647=>443, 648=>416, 649=>654, 650=>611, 651=>624,
+ 652=>523, 653=>774, 654=>571, 655=>654, 656=>511, 657=>511, 658=>511, 659=>511, 660=>482, 661=>482, 662=>482, 663=>490, 664=>784, 665=>625, 666=>647, 667=>563,
+ 668=>659, 669=>345, 670=>666, 671=>581, 672=>629, 673=>482, 674=>482, 675=>1005, 676=>1061, 677=>1005, 678=>819, 679=>643, 680=>817, 681=>935, 682=>711, 683=>716,
+ 684=>596, 685=>398, 686=>552, 687=>646, 688=>469, 689=>466, 690=>282, 691=>372, 692=>372, 693=>432, 694=>474, 695=>488, 696=>329, 697=>271, 699=>313, 700=>313,
+ 701=>313, 702=>330, 703=>330, 704=>282, 705=>282, 711=>450, 712=>254, 713=>450, 716=>254, 720=>332, 721=>332, 722=>330, 723=>330, 726=>353, 728=>450, 729=>450,
+ 730=>450, 731=>450, 733=>450, 734=>375, 736=>403, 737=>263, 738=>355, 739=>338, 740=>282, 741=>436, 742=>436, 743=>436, 744=>436, 745=>436, 750=>498, 768=>0,
+ 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0,
+ 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0,
+ 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0,
+ 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 835=>0,
+ 847=>0, 856=>0, 865=>0, 884=>271, 885=>271, 890=>450, 894=>332, 900=>450, 901=>450, 902=>698, 903=>313, 904=>852, 905=>1022, 906=>595, 908=>798, 910=>857,
+ 911=>820, 912=>435, 913=>698, 914=>760, 915=>639, 916=>698, 917=>686, 918=>657, 919=>850, 920=>784, 921=>421, 922=>782, 923=>698, 924=>996, 925=>822, 926=>633,
+ 927=>784, 928=>850, 929=>677, 931=>636, 932=>669, 933=>642, 934=>784, 935=>698, 936=>822, 937=>801, 938=>421, 939=>642, 940=>692, 941=>547, 942=>654, 943=>435,
+ 944=>624, 945=>692, 946=>598, 947=>594, 948=>600, 949=>547, 950=>533, 951=>654, 952=>600, 953=>435, 954=>674, 955=>631, 956=>659, 957=>624, 958=>533, 959=>600,
+ 960=>659, 961=>598, 962=>548, 963=>664, 964=>605, 965=>624, 966=>814, 967=>592, 968=>847, 969=>857, 970=>435, 971=>624, 972=>600, 973=>624, 974=>857, 976=>600,
+ 977=>764, 978=>687, 979=>872, 980=>687, 981=>847, 982=>857, 983=>589, 984=>784, 985=>600, 986=>716, 987=>548, 988=>639, 989=>475, 990=>531, 991=>593, 992=>716,
+ 993=>600, 1008=>589, 1009=>598, 1010=>548, 1011=>325, 1012=>784, 1013=>548, 1014=>548, 1015=>681, 1016=>629, 1017=>716, 1018=>996, 1019=>774, 1020=>623, 1021=>716, 1022=>716,
+ 1023=>716, 1024=>686, 1025=>686, 1026=>811, 1028=>716, 1029=>650, 1030=>421, 1031=>421, 1032=>426, 1033=>1081, 1034=>1135, 1035=>866, 1037=>850, 1038=>812, 1040=>733, 1041=>769,
+ 1042=>760, 1043=>621, 1044=>800, 1045=>686, 1046=>1181, 1047=>649, 1048=>850, 1049=>850, 1050=>818, 1051=>795, 1052=>996, 1053=>850, 1054=>784, 1055=>850, 1056=>677, 1057=>716,
+ 1058=>669, 1059=>730, 1060=>854, 1061=>698, 1062=>870, 1063=>822, 1064=>1141, 1065=>1164, 1066=>861, 1067=>1081, 1068=>743, 1069=>716, 1070=>1158, 1071=>793, 1072=>583, 1073=>650,
+ 1074=>591, 1075=>506, 1076=>625, 1077=>572, 1078=>1175, 1079=>574, 1080=>654, 1081=>654, 1082=>609, 1083=>659, 1084=>855, 1085=>656, 1086=>600, 1087=>654, 1088=>629, 1089=>548,
+ 1090=>952, 1091=>538, 1092=>812, 1093=>536, 1094=>723, 1095=>643, 1096=>952, 1097=>1021, 1098=>654, 1099=>916, 1100=>593, 1101=>580, 1102=>901, 1103=>716, 1104=>572, 1105=>572,
+ 1106=>646, 1107=>506, 1108=>548, 1109=>506, 1110=>342, 1111=>342, 1112=>325, 1113=>913, 1114=>910, 1115=>654, 1117=>654, 1118=>538, 1119=>654, 1122=>792, 1123=>945, 1124=>1076,
+ 1125=>867, 1130=>1181, 1131=>909, 1138=>784, 1139=>587, 1140=>824, 1141=>673, 1164=>761, 1165=>606, 1168=>630, 1169=>556, 1170=>621, 1171=>506, 1172=>768, 1173=>634, 1174=>1181,
+ 1175=>1175, 1176=>649, 1177=>574, 1178=>812, 1179=>633, 1182=>818, 1183=>609, 1184=>937, 1185=>684, 1186=>856, 1187=>725, 1188=>1050, 1189=>859, 1190=>1191, 1191=>911, 1194=>716,
+ 1195=>548, 1196=>669, 1197=>1028, 1198=>642, 1199=>515, 1200=>642, 1201=>515, 1202=>709, 1203=>536, 1204=>1112, 1205=>876, 1206=>822, 1207=>712, 1210=>819, 1211=>654, 1216=>421,
+ 1217=>1181, 1218=>1175, 1219=>782, 1220=>624, 1223=>850, 1224=>659, 1227=>885, 1228=>659, 1231=>342, 1232=>733, 1233=>583, 1234=>733, 1235=>583, 1236=>931, 1237=>877, 1238=>686,
+ 1239=>572, 1240=>784, 1241=>572, 1242=>784, 1243=>572, 1244=>1181, 1245=>1175, 1246=>649, 1247=>574, 1248=>511, 1249=>511, 1250=>850, 1251=>654, 1252=>850, 1253=>654, 1254=>784,
+ 1255=>600, 1256=>784, 1257=>600, 1258=>784, 1259=>600, 1260=>716, 1261=>580, 1262=>730, 1263=>538, 1264=>730, 1265=>538, 1266=>730, 1267=>538, 1268=>822, 1269=>643, 1270=>621,
+ 1271=>506, 1272=>1081, 1273=>916, 4256=>641, 4257=>794, 4258=>735, 4259=>742, 4260=>663, 4261=>915, 4262=>861, 4263=>1029, 4264=>545, 4265=>694, 4266=>892, 4267=>892, 4268=>676,
+ 4269=>963, 4270=>822, 4271=>765, 4272=>941, 4273=>672, 4274=>642, 4275=>913, 4276=>829, 4277=>905, 4278=>688, 4279=>707, 4280=>697, 4281=>708, 4282=>771, 4283=>914, 4284=>653,
+ 4285=>698, 4286=>690, 4287=>943, 4288=>953, 4289=>681, 4290=>757, 4291=>681, 4292=>747, 4293=>902, 4304=>487, 4305=>511, 4306=>542, 4307=>728, 4308=>511, 4309=>520, 4310=>547,
+ 4311=>758, 4312=>501, 4313=>504, 4314=>919, 4315=>520, 4316=>520, 4317=>721, 4318=>510, 4319=>520, 4320=>719, 4321=>532, 4322=>673, 4323=>611, 4324=>716, 4325=>519, 4326=>747,
+ 4327=>521, 4328=>545, 4329=>520, 4330=>610, 4331=>521, 4332=>514, 4333=>516, 4334=>549, 4335=>602, 4336=>520, 4337=>556, 4338=>511, 4339=>511, 4340=>511, 4341=>591, 4342=>770,
+ 4343=>557, 4344=>512, 4345=>551, 4346=>349, 4347=>417, 4348=>511, 7426=>846, 7432=>458, 7433=>288, 7444=>890, 7446=>600, 7447=>600, 7453=>663, 7454=>853, 7455=>853, 7468=>439,
+ 7469=>586, 7470=>479, 7472=>491, 7473=>432, 7474=>432, 7475=>483, 7476=>536, 7477=>265, 7478=>268, 7479=>492, 7480=>398, 7481=>627, 7482=>518, 7483=>518, 7484=>493, 7486=>426,
+ 7487=>471, 7488=>422, 7489=>494, 7490=>637, 7491=>419, 7492=>419, 7493=>448, 7494=>591, 7495=>448, 7496=>448, 7497=>400, 7498=>400, 7499=>370, 7500=>370, 7501=>448, 7502=>270,
+ 7503=>471, 7504=>655, 7505=>426, 7506=>420, 7507=>384, 7508=>420, 7509=>420, 7510=>448, 7511=>333, 7512=>468, 7513=>390, 7514=>655, 7515=>442, 7522=>215, 7523=>372, 7524=>468,
+ 7525=>442, 7543=>576, 7544=>536, 7547=>342, 7557=>342, 7579=>448, 7580=>384, 7581=>384, 7582=>420, 7583=>370, 7584=>244, 7585=>335, 7586=>448, 7587=>470, 7588=>270, 7589=>276,
+ 7590=>270, 7591=>270, 7592=>333, 7593=>331, 7594=>289, 7595=>387, 7596=>613, 7597=>655, 7598=>529, 7599=>528, 7600=>425, 7601=>420, 7602=>470, 7603=>360, 7604=>348, 7605=>333,
+ 7606=>468, 7607=>427, 7609=>439, 7610=>329, 7611=>321, 7612=>474, 7613=>371, 7614=>407, 7615=>420, 7680=>698, 7681=>583, 7682=>760, 7683=>629, 7684=>760, 7685=>629, 7686=>760,
+ 7687=>629, 7688=>716, 7689=>548, 7690=>780, 7691=>629, 7692=>780, 7693=>629, 7694=>780, 7695=>629, 7696=>780, 7697=>629, 7698=>780, 7699=>629, 7700=>686, 7701=>572, 7702=>686,
+ 7703=>572, 7704=>686, 7705=>572, 7706=>686, 7707=>572, 7708=>686, 7709=>572, 7710=>639, 7711=>387, 7712=>769, 7713=>629, 7714=>850, 7715=>654, 7716=>850, 7717=>654, 7718=>850,
+ 7719=>654, 7720=>850, 7721=>654, 7722=>850, 7723=>654, 7724=>421, 7725=>342, 7728=>782, 7729=>624, 7730=>782, 7731=>624, 7732=>782, 7733=>624, 7734=>633, 7735=>342, 7736=>633,
+ 7737=>342, 7738=>633, 7739=>342, 7740=>633, 7741=>342, 7742=>996, 7743=>952, 7744=>996, 7745=>952, 7746=>996, 7747=>952, 7748=>822, 7749=>654, 7750=>822, 7751=>654, 7752=>822,
+ 7753=>654, 7754=>822, 7755=>654, 7760=>784, 7761=>600, 7762=>784, 7763=>600, 7764=>677, 7765=>629, 7766=>677, 7767=>629, 7768=>748, 7769=>474, 7770=>748, 7771=>474, 7772=>748,
+ 7773=>474, 7774=>748, 7775=>474, 7776=>650, 7777=>506, 7778=>650, 7779=>506, 7784=>650, 7785=>506, 7786=>669, 7787=>416, 7788=>669, 7789=>416, 7790=>669, 7791=>416, 7792=>669,
+ 7793=>416, 7794=>785, 7795=>654, 7796=>785, 7797=>654, 7798=>785, 7799=>654, 7800=>785, 7801=>654, 7802=>785, 7803=>654, 7804=>698, 7805=>523, 7806=>698, 7807=>523, 7808=>1011,
+ 7809=>774, 7810=>1011, 7811=>774, 7812=>1011, 7813=>774, 7814=>1011, 7815=>774, 7816=>1011, 7817=>774, 7818=>698, 7819=>536, 7820=>698, 7821=>536, 7822=>642, 7823=>523, 7824=>657,
+ 7825=>511, 7826=>657, 7827=>511, 7828=>657, 7829=>511, 7830=>654, 7831=>416, 7832=>774, 7833=>523, 7834=>913, 7835=>506, 7840=>698, 7841=>583, 7842=>698, 7843=>583, 7852=>698,
+ 7853=>583, 7854=>698, 7855=>583, 7856=>698, 7857=>583, 7858=>698, 7859=>583, 7860=>698, 7861=>583, 7862=>698, 7863=>583, 7864=>686, 7865=>572, 7866=>686, 7867=>572, 7868=>686,
+ 7869=>572, 7878=>686, 7879=>572, 7880=>421, 7881=>342, 7882=>421, 7883=>342, 7884=>784, 7885=>600, 7886=>784, 7887=>600, 7896=>784, 7897=>600, 7908=>785, 7909=>654, 7910=>785,
+ 7911=>654, 7922=>642, 7923=>523, 7924=>642, 7925=>523, 7926=>642, 7927=>523, 7928=>642, 7929=>523, 7936=>692, 7937=>692, 7938=>692, 7939=>692, 7940=>692, 7941=>692, 7942=>692,
+ 7943=>692, 7944=>698, 7945=>698, 7946=>880, 7947=>880, 7948=>748, 7949=>764, 7950=>698, 7951=>698, 7952=>547, 7953=>547, 7954=>547, 7955=>547, 7956=>547, 7957=>547, 7960=>826,
+ 7961=>817, 7962=>1052, 7963=>1052, 7964=>984, 7965=>1007, 7968=>654, 7969=>654, 7970=>654, 7971=>654, 7972=>654, 7973=>654, 7974=>654, 7975=>654, 7976=>990, 7977=>984, 7978=>1222,
+ 7979=>1225, 7980=>1151, 7981=>1177, 7982=>1077, 7983=>1074, 7984=>435, 7985=>435, 7986=>435, 7987=>435, 7988=>435, 7989=>435, 7990=>435, 7991=>435, 7992=>566, 7993=>555, 7994=>790,
+ 7995=>792, 7996=>719, 7997=>748, 7998=>650, 7999=>642, 8000=>600, 8001=>600, 8002=>600, 8003=>600, 8004=>600, 8005=>600, 8008=>810, 8009=>841, 8010=>1116, 8011=>1113, 8012=>931,
+ 8013=>959, 8016=>624, 8017=>624, 8018=>624, 8019=>624, 8020=>624, 8021=>624, 8022=>624, 8023=>624, 8025=>830, 8027=>1067, 8029=>1020, 8031=>917, 8032=>857, 8033=>857, 8034=>857,
+ 8035=>857, 8036=>857, 8037=>857, 8038=>857, 8039=>857, 8040=>838, 8041=>867, 8042=>1141, 8043=>1146, 8044=>949, 8045=>979, 8046=>920, 8047=>954, 8048=>692, 8049=>692, 8050=>547,
+ 8051=>547, 8052=>654, 8053=>654, 8054=>435, 8055=>435, 8056=>600, 8057=>600, 8058=>624, 8059=>624, 8060=>857, 8061=>857, 8064=>692, 8065=>692, 8066=>692, 8067=>692, 8068=>692,
+ 8069=>692, 8070=>692, 8071=>692, 8072=>698, 8073=>698, 8074=>880, 8075=>880, 8076=>748, 8077=>764, 8078=>698, 8079=>698, 8080=>654, 8081=>654, 8082=>654, 8083=>654, 8084=>654,
+ 8085=>654, 8086=>654, 8087=>654, 8088=>990, 8089=>984, 8090=>1222, 8091=>1225, 8092=>1151, 8093=>1177, 8094=>1077, 8095=>1074, 8096=>857, 8097=>857, 8098=>857, 8099=>857, 8100=>857,
+ 8101=>857, 8102=>857, 8103=>857, 8104=>838, 8105=>867, 8106=>1141, 8107=>1146, 8108=>949, 8109=>979, 8110=>920, 8111=>954, 8112=>692, 8113=>692, 8114=>692, 8115=>692, 8116=>692,
+ 8118=>692, 8119=>692, 8120=>698, 8121=>698, 8122=>729, 8123=>698, 8124=>698, 8125=>450, 8126=>450, 8127=>450, 8128=>450, 8129=>450, 8130=>654, 8131=>654, 8132=>654, 8134=>654,
+ 8135=>654, 8136=>899, 8137=>852, 8138=>1072, 8139=>1006, 8140=>850, 8141=>450, 8142=>450, 8143=>450, 8144=>435, 8145=>435, 8146=>435, 8147=>435, 8150=>435, 8151=>435, 8152=>421,
+ 8153=>421, 8154=>642, 8155=>595, 8157=>450, 8158=>450, 8159=>450, 8160=>624, 8161=>624, 8162=>624, 8163=>624, 8164=>598, 8165=>598, 8166=>624, 8167=>624, 8168=>642, 8169=>642,
+ 8170=>917, 8171=>857, 8172=>819, 8173=>450, 8174=>450, 8175=>450, 8178=>857, 8179=>857, 8180=>857, 8182=>857, 8183=>857, 8184=>962, 8185=>798, 8186=>991, 8187=>820, 8188=>801,
+ 8189=>450, 8190=>450, 8192=>450, 8193=>900, 8194=>450, 8195=>900, 8196=>296, 8197=>225, 8198=>150, 8199=>626, 8200=>313, 8201=>180, 8202=>89, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>374, 8209=>374, 8210=>626, 8213=>900, 8215=>450, 8219=>313, 8223=>518, 8227=>575, 8228=>313, 8229=>606, 8234=>0, 8235=>0, 8236=>0, 8237=>0,
+ 8238=>0, 8239=>180, 8241=>1631, 8252=>566, 8253=>527, 8254=>450, 8263=>974, 8264=>770, 8265=>770, 8287=>200, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0,
+ 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>394, 8305=>215, 8308=>394, 8309=>394, 8310=>394, 8311=>394, 8312=>394, 8313=>394, 8314=>475, 8315=>475, 8316=>475,
+ 8317=>268, 8318=>268, 8319=>412, 8320=>394, 8321=>394, 8322=>394, 8323=>394, 8324=>394, 8325=>394, 8326=>394, 8327=>394, 8328=>394, 8329=>394, 8330=>475, 8331=>475, 8332=>475,
+ 8333=>268, 8334=>268, 8336=>419, 8337=>400, 8338=>420, 8339=>338, 8340=>400, 8358=>626, 8367=>1039, 8369=>710, 8372=>788, 8373=>626, 8451=>1078, 8457=>1001, 8462=>654, 8470=>978,
+ 8486=>801, 8487=>801, 8490=>782, 8491=>698, 8513=>707, 8514=>518, 8515=>573, 8516=>684, 8523=>813, 8531=>932, 8532=>932, 8533=>932, 8534=>932, 8535=>932, 8536=>932, 8537=>932,
+ 8538=>932, 8539=>932, 8540=>932, 8541=>932, 8542=>932, 8543=>554, 8544=>421, 8545=>663, 8546=>904, 8547=>984, 8548=>698, 8549=>1014, 8550=>1256, 8551=>1498, 8552=>962, 8553=>698,
+ 8554=>970, 8555=>1212, 8556=>633, 8557=>716, 8558=>780, 8559=>996, 8560=>342, 8561=>684, 8562=>1025, 8563=>865, 8564=>523, 8565=>865, 8566=>1207, 8567=>1548, 8568=>878, 8569=>536,
+ 8570=>878, 8571=>1220, 8572=>342, 8573=>548, 8574=>629, 8575=>952, 8576=>1129, 8577=>780, 8578=>1141, 8579=>716, 8580=>548, 8592=>754, 8593=>754, 8594=>754, 8595=>754, 8596=>754,
+ 8597=>754, 8598=>754, 8599=>754, 8600=>754, 8601=>754, 8602=>754, 8603=>754, 8604=>754, 8605=>754, 8606=>754, 8607=>754, 8608=>754, 8609=>754, 8610=>754, 8611=>754, 8612=>754,
+ 8613=>754, 8614=>754, 8615=>754, 8616=>754, 8617=>754, 8618=>754, 8619=>754, 8620=>754, 8621=>754, 8622=>754, 8623=>765, 8624=>754, 8625=>754, 8626=>754, 8627=>754, 8628=>754,
+ 8629=>754, 8630=>754, 8631=>754, 8632=>754, 8633=>754, 8634=>754, 8635=>754, 8636=>754, 8637=>754, 8638=>754, 8639=>754, 8640=>754, 8641=>754, 8642=>754, 8643=>754, 8644=>754,
+ 8645=>754, 8646=>754, 8647=>754, 8648=>754, 8649=>754, 8650=>754, 8651=>754, 8652=>754, 8653=>754, 8654=>754, 8655=>754, 8656=>754, 8657=>754, 8658=>754, 8659=>754, 8660=>754,
+ 8661=>754, 8662=>754, 8663=>754, 8664=>754, 8665=>754, 8666=>754, 8667=>754, 8668=>754, 8669=>754, 8670=>754, 8671=>754, 8672=>754, 8673=>754, 8674=>754, 8675=>754, 8676=>754,
+ 8677=>754, 8678=>754, 8679=>754, 8680=>754, 8681=>754, 8682=>754, 8683=>754, 8684=>754, 8685=>754, 8686=>754, 8687=>754, 8688=>754, 8689=>754, 8690=>754, 8691=>754, 8692=>754,
+ 8693=>754, 8694=>754, 8695=>754, 8696=>754, 8697=>754, 8698=>754, 8699=>754, 8700=>754, 8701=>754, 8702=>754, 8703=>754, 8704=>577, 8706=>480, 8707=>558, 8708=>558, 8710=>677,
+ 8711=>677, 8712=>666, 8713=>666, 8715=>666, 8716=>666, 8719=>757, 8720=>757, 8721=>677, 8722=>754, 8723=>754, 8724=>754, 8725=>150, 8727=>622, 8728=>466, 8729=>466, 8730=>591,
+ 8731=>591, 8732=>591, 8733=>604, 8734=>750, 8735=>754, 8736=>754, 8739=>292, 8740=>546, 8741=>476, 8742=>696, 8743=>730, 8744=>730, 8745=>754, 8746=>754, 8747=>521, 8748=>900,
+ 8749=>1252, 8760=>754, 8761=>754, 8762=>754, 8763=>754, 8764=>754, 8765=>754, 8770=>754, 8771=>754, 8776=>754, 8784=>754, 8785=>754, 8786=>754, 8787=>754, 8788=>974, 8789=>974,
+ 8800=>754, 8801=>754, 8804=>754, 8805=>754, 8834=>754, 8835=>754, 8836=>754, 8837=>754, 8838=>754, 8839=>754, 8844=>754, 8845=>754, 8846=>754, 8847=>754, 8848=>754, 8849=>754,
+ 8850=>754, 8851=>754, 8852=>754, 8853=>754, 8854=>754, 8855=>754, 8856=>754, 8857=>754, 8858=>754, 8859=>754, 8860=>754, 8861=>754, 8862=>754, 8863=>754, 8864=>754, 8865=>754,
+ 8866=>795, 8867=>795, 8868=>864, 8869=>864, 8870=>554, 8871=>554, 8872=>795, 8873=>795, 8874=>795, 8875=>971, 8876=>795, 8877=>795, 8878=>795, 8879=>971, 8901=>358, 8962=>751,
+ 8968=>426, 8969=>426, 8970=>426, 8971=>426, 8976=>754, 8977=>484, 8984=>835, 8985=>754, 8992=>521, 8993=>521, 8997=>900, 9000=>1299, 9085=>907, 9134=>521, 9167=>850, 9251=>751,
+ 9600=>692, 9601=>692, 9602=>692, 9603=>692, 9604=>692, 9605=>692, 9606=>692, 9607=>692, 9608=>692, 9609=>692, 9610=>692, 9611=>692, 9612=>692, 9613=>692, 9614=>692, 9615=>692,
+ 9616=>692, 9617=>692, 9618=>692, 9619=>692, 9620=>692, 9621=>692, 9622=>692, 9623=>692, 9624=>692, 9625=>692, 9626=>692, 9627=>692, 9628=>692, 9629=>692, 9630=>692, 9631=>692,
+ 9632=>850, 9633=>850, 9634=>850, 9635=>850, 9636=>850, 9637=>850, 9638=>850, 9639=>850, 9640=>850, 9641=>850, 9642=>610, 9643=>610, 9644=>850, 9645=>850, 9646=>495, 9647=>495,
+ 9648=>692, 9649=>692, 9650=>692, 9651=>692, 9652=>452, 9653=>452, 9654=>692, 9655=>692, 9656=>452, 9657=>452, 9658=>692, 9659=>692, 9660=>692, 9661=>692, 9662=>452, 9663=>452,
+ 9664=>692, 9665=>692, 9666=>452, 9667=>452, 9668=>692, 9669=>692, 9670=>692, 9671=>692, 9672=>692, 9673=>785, 9674=>444, 9675=>785, 9676=>785, 9677=>785, 9678=>785, 9679=>785,
+ 9680=>785, 9681=>785, 9682=>785, 9683=>785, 9684=>785, 9685=>785, 9686=>474, 9687=>474, 9688=>712, 9689=>873, 9690=>873, 9691=>873, 9692=>348, 9693=>348, 9694=>348, 9695=>348,
+ 9696=>785, 9697=>785, 9698=>692, 9699=>692, 9700=>692, 9701=>692, 9702=>531, 9703=>850, 9704=>850, 9705=>850, 9706=>850, 9707=>850, 9708=>692, 9709=>692, 9710=>692, 9711=>1007,
+ 9712=>850, 9713=>850, 9714=>850, 9715=>850, 9716=>785, 9717=>785, 9718=>785, 9719=>785, 9720=>692, 9721=>692, 9722=>692, 9723=>747, 9724=>747, 9725=>659, 9726=>659, 9727=>692,
+ 9728=>807, 9784=>807, 9785=>807, 9786=>807, 9787=>807, 9788=>807, 9791=>552, 9792=>658, 9793=>658, 9794=>807, 9795=>807, 9796=>807, 9797=>807, 9798=>807, 9799=>807, 9824=>807,
+ 9825=>807, 9826=>807, 9827=>807, 9828=>807, 9829=>807, 9830=>807, 9831=>807, 9833=>424, 9834=>574, 9835=>807, 9836=>807, 9837=>424, 9838=>321, 9839=>435, 10145=>754, 10208=>444,
+ 10216=>411, 10217=>411, 10224=>754, 10225=>754, 10226=>754, 10227=>754, 10228=>930, 10229=>1290, 10230=>1290, 10231=>1290, 10232=>1290, 10233=>1290, 10234=>1290, 10235=>1290, 10236=>1290, 10237=>1290,
+ 10238=>1290, 10239=>1290, 10240=>703, 10241=>703, 10242=>703, 10243=>703, 10244=>703, 10245=>703, 10246=>703, 10247=>703, 10248=>703, 10249=>703, 10250=>703, 10251=>703, 10252=>703, 10253=>703,
+ 10254=>703, 10255=>703, 10256=>703, 10257=>703, 10258=>703, 10259=>703, 10260=>703, 10261=>703, 10262=>703, 10263=>703, 10264=>703, 10265=>703, 10266=>703, 10267=>703, 10268=>703, 10269=>703,
+ 10270=>703, 10271=>703, 10272=>703, 10273=>703, 10274=>703, 10275=>703, 10276=>703, 10277=>703, 10278=>703, 10279=>703, 10280=>703, 10281=>703, 10282=>703, 10283=>703, 10284=>703, 10285=>703,
+ 10286=>703, 10287=>703, 10288=>703, 10289=>703, 10290=>703, 10291=>703, 10292=>703, 10293=>703, 10294=>703, 10295=>703, 10296=>703, 10297=>703, 10298=>703, 10299=>703, 10300=>703, 10301=>703,
+ 10302=>703, 10303=>703, 10304=>703, 10305=>703, 10306=>703, 10307=>703, 10308=>703, 10309=>703, 10310=>703, 10311=>703, 10312=>703, 10313=>703, 10314=>703, 10315=>703, 10316=>703, 10317=>703,
+ 10318=>703, 10319=>703, 10320=>703, 10321=>703, 10322=>703, 10323=>703, 10324=>703, 10325=>703, 10326=>703, 10327=>703, 10328=>703, 10329=>703, 10330=>703, 10331=>703, 10332=>703, 10333=>703,
+ 10334=>703, 10335=>703, 10336=>703, 10337=>703, 10338=>703, 10339=>703, 10340=>703, 10341=>703, 10342=>703, 10343=>703, 10344=>703, 10345=>703, 10346=>703, 10347=>703, 10348=>703, 10349=>703,
+ 10350=>703, 10351=>703, 10352=>703, 10353=>703, 10354=>703, 10355=>703, 10356=>703, 10357=>703, 10358=>703, 10359=>703, 10360=>703, 10361=>703, 10362=>703, 10363=>703, 10364=>703, 10365=>703,
+ 10366=>703, 10367=>703, 10368=>703, 10369=>703, 10370=>703, 10371=>703, 10372=>703, 10373=>703, 10374=>703, 10375=>703, 10376=>703, 10377=>703, 10378=>703, 10379=>703, 10380=>703, 10381=>703,
+ 10382=>703, 10383=>703, 10384=>703, 10385=>703, 10386=>703, 10387=>703, 10388=>703, 10389=>703, 10390=>703, 10391=>703, 10392=>703, 10393=>703, 10394=>703, 10395=>703, 10396=>703, 10397=>703,
+ 10398=>703, 10399=>703, 10400=>703, 10401=>703, 10402=>703, 10403=>703, 10404=>703, 10405=>703, 10406=>703, 10407=>703, 10408=>703, 10409=>703, 10410=>703, 10411=>703, 10412=>703, 10413=>703,
+ 10414=>703, 10415=>703, 10416=>703, 10417=>703, 10418=>703, 10419=>703, 10420=>703, 10421=>703, 10422=>703, 10423=>703, 10424=>703, 10425=>703, 10426=>703, 10427=>703, 10428=>703, 10429=>703,
+ 10430=>703, 10431=>703, 10432=>703, 10433=>703, 10434=>703, 10435=>703, 10436=>703, 10437=>703, 10438=>703, 10439=>703, 10440=>703, 10441=>703, 10442=>703, 10443=>703, 10444=>703, 10445=>703,
+ 10446=>703, 10447=>703, 10448=>703, 10449=>703, 10450=>703, 10451=>703, 10452=>703, 10453=>703, 10454=>703, 10455=>703, 10456=>703, 10457=>703, 10458=>703, 10459=>703, 10460=>703, 10461=>703,
+ 10462=>703, 10463=>703, 10464=>703, 10465=>703, 10466=>703, 10467=>703, 10468=>703, 10469=>703, 10470=>703, 10471=>703, 10472=>703, 10473=>703, 10474=>703, 10475=>703, 10476=>703, 10477=>703,
+ 10478=>703, 10479=>703, 10480=>703, 10481=>703, 10482=>703, 10483=>703, 10484=>703, 10485=>703, 10486=>703, 10487=>703, 10488=>703, 10489=>703, 10490=>703, 10491=>703, 10492=>703, 10493=>703,
+ 10494=>703, 10495=>703, 10496=>754, 10497=>754, 10498=>754, 10499=>754, 10500=>754, 10501=>754, 10502=>754, 10503=>754, 10504=>754, 10505=>754, 10506=>754, 10507=>754, 10508=>754, 10509=>754,
+ 10510=>754, 10511=>754, 10512=>754, 10513=>754, 10514=>754, 10515=>754, 10516=>754, 10517=>754, 10518=>754, 10519=>754, 10520=>754, 10521=>754, 10522=>754, 10523=>754, 10524=>754, 10525=>754,
+ 10526=>754, 10527=>754, 10528=>754, 10529=>754, 10530=>754, 10531=>754, 10532=>754, 10533=>754, 10534=>754, 10535=>754, 10536=>754, 10537=>754, 10538=>754, 10539=>754, 10540=>754, 10541=>754,
+ 10542=>754, 10543=>754, 10544=>754, 10545=>754, 10546=>754, 10547=>754, 10548=>754, 10549=>754, 10550=>754, 10551=>754, 10552=>754, 10553=>754, 10554=>754, 10555=>754, 10556=>754, 10557=>754,
+ 10558=>754, 10559=>754, 10560=>754, 10561=>754, 10562=>754, 10563=>754, 10564=>754, 10565=>754, 10566=>754, 10567=>754, 10568=>754, 10569=>754, 10570=>754, 10571=>754, 10572=>754, 10573=>754,
+ 10574=>754, 10575=>754, 10576=>754, 10577=>754, 10578=>754, 10579=>754, 10580=>754, 10581=>754, 10582=>754, 10583=>754, 10584=>754, 10585=>754, 10586=>754, 10587=>754, 10588=>754, 10589=>754,
+ 10590=>754, 10591=>754, 10592=>754, 10593=>754, 10594=>754, 10595=>754, 10596=>754, 10597=>754, 10598=>754, 10599=>754, 10600=>754, 10601=>754, 10602=>754, 10603=>754, 10604=>754, 10605=>754,
+ 10606=>754, 10607=>754, 10608=>754, 10609=>754, 10610=>754, 10611=>754, 10612=>754, 10613=>754, 10614=>754, 10615=>929, 10616=>754, 10617=>754, 10618=>864, 10619=>754, 10620=>754, 10621=>754,
+ 10622=>754, 10623=>754, 10731=>444, 10764=>1604, 10765=>549, 10766=>549, 10799=>754, 11008=>754, 11009=>754, 11010=>754, 11011=>754, 11012=>754, 11013=>754, 11014=>754, 11015=>754, 11016=>754,
+ 11017=>754, 11018=>754, 11019=>754, 11020=>754, 11021=>754, 11022=>754, 11023=>754, 11024=>754, 11025=>754, 11026=>850, 11027=>850, 11028=>850, 11029=>850, 11030=>692, 11031=>692, 11032=>692,
+ 11033=>692, 11034=>850, 11367=>850, 11368=>654, 11369=>782, 11370=>624, 11371=>657, 11372=>511, 11381=>701, 11382=>541, 11383=>814, 11800=>527, 11822=>527, 63172=>506, 63173=>600, 63174=>629,
+ 63175=>654, 63176=>952, 63185=>450, 63188=>450, 64256=>744, 64257=>654, 64258=>654, 64259=>998, 64260=>1031, 64261=>791, 64262=>874, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0,
+ 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65529=>0, 65530=>0, 65531=>0, 65532=>0, 65533=>1002);
+$enc='';
+$diff='';
+$file='dejavuserifcondensedbi.z';
+$ctg='dejavuserifcondensedbi.ctg.z';
+$originalsize=265980;
+?>
diff --git a/lib/tcpdf/fonts/dejavuserifcondensedbi.z b/lib/tcpdf/fonts/dejavuserifcondensedbi.z
new file mode 100644
index 0000000000..fb149dbf94
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifcondensedbi.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifcondensedi.ctg.z b/lib/tcpdf/fonts/dejavuserifcondensedi.ctg.z
new file mode 100644
index 0000000000..f4872c387e
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifcondensedi.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifcondensedi.php b/lib/tcpdf/fonts/dejavuserifcondensedi.php
new file mode 100644
index 0000000000..b72289694a
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavuserifcondensedi.php
@@ -0,0 +1,188 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>96,'FontBBox'=>'[-755 -347 1485 1227]','ItalicAngle'=>-11,'StemV'=>70,'MissingWidth'=>540);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>540, 32=>286, 33=>361, 34=>414, 35=>754, 36=>572, 37=>855, 38=>801, 39=>247, 40=>351, 41=>351, 42=>450, 43=>754, 44=>286, 45=>304, 46=>286,
+ 47=>303, 48=>572, 49=>572, 50=>572, 51=>572, 52=>572, 53=>572, 54=>572, 55=>572, 56=>572, 57=>572, 58=>303, 59=>303, 60=>754, 61=>754, 62=>754,
+ 63=>482, 64=>900, 65=>650, 66=>661, 67=>688, 68=>721, 69=>657, 70=>624, 71=>719, 72=>785, 73=>355, 74=>360, 75=>672, 76=>598, 77=>921, 78=>787,
+ 79=>738, 80=>605, 81=>738, 82=>677, 83=>616, 84=>600, 85=>758, 86=>650, 87=>925, 88=>641, 89=>594, 90=>625, 91=>351, 92=>303, 93=>351, 94=>754,
+ 95=>450, 96=>450, 97=>536, 98=>576, 99=>504, 100=>576, 101=>532, 102=>333, 103=>576, 104=>580, 105=>288, 106=>279, 107=>545, 108=>288, 109=>853, 110=>580,
+ 111=>542, 112=>576, 113=>576, 114=>430, 115=>461, 116=>361, 117=>580, 118=>508, 119=>770, 120=>507, 121=>508, 122=>474, 123=>572, 124=>303, 125=>572, 126=>754,
+ 8364=>572, 1027=>596, 8218=>286, 402=>333, 8222=>466, 8230=>900, 8224=>450, 8225=>450, 710=>450, 8240=>1208, 352=>616, 8249=>360, 338=>1023, 1036=>696, 381=>625, 1039=>785,
+ 8216=>286, 8217=>286, 8220=>460, 8221=>460, 8226=>531, 8211=>450, 8212=>900, 732=>450, 8482=>900, 353=>461, 8250=>360, 339=>890, 1116=>537, 382=>474, 376=>594, 160=>286,
+ 161=>361, 162=>572, 163=>572, 164=>572, 165=>572, 166=>303, 167=>450, 168=>450, 169=>900, 170=>427, 171=>550, 172=>754, 173=>304, 174=>900, 175=>450, 176=>450,
+ 177=>754, 178=>360, 179=>360, 180=>450, 181=>584, 182=>572, 183=>286, 184=>450, 185=>360, 186=>423, 187=>550, 188=>872, 189=>872, 190=>872, 191=>482, 192=>650,
+ 193=>650, 194=>650, 195=>650, 196=>650, 197=>650, 198=>901, 199=>688, 200=>657, 201=>657, 202=>657, 203=>657, 204=>355, 205=>355, 206=>355, 207=>355, 208=>726,
+ 209=>787, 210=>738, 211=>738, 212=>738, 213=>738, 214=>738, 215=>754, 216=>738, 217=>758, 218=>758, 219=>758, 220=>758, 221=>594, 222=>608, 223=>601, 224=>536,
+ 225=>536, 226=>536, 227=>536, 228=>536, 229=>536, 230=>846, 231=>504, 232=>532, 233=>532, 234=>532, 235=>532, 236=>288, 237=>288, 238=>288, 239=>288, 240=>542,
+ 241=>580, 242=>542, 243=>542, 244=>542, 245=>542, 246=>542, 247=>754, 248=>542, 249=>580, 250=>580, 251=>580, 252=>580, 253=>508, 254=>576, 255=>508, 256=>650,
+ 257=>536, 258=>650, 259=>536, 260=>650, 261=>536, 262=>688, 263=>504, 264=>688, 265=>504, 266=>688, 267=>504, 268=>688, 269=>504, 270=>721, 271=>576, 272=>726,
+ 273=>576, 274=>657, 275=>532, 276=>657, 277=>532, 278=>657, 279=>532, 280=>657, 281=>532, 282=>657, 283=>532, 284=>719, 285=>576, 286=>719, 287=>576, 288=>719,
+ 289=>576, 290=>719, 291=>576, 292=>785, 293=>580, 294=>785, 295=>580, 296=>355, 297=>288, 298=>355, 299=>288, 300=>355, 301=>288, 302=>355, 303=>288, 304=>355,
+ 305=>288, 306=>721, 307=>479, 308=>360, 309=>279, 310=>672, 311=>545, 312=>545, 313=>598, 314=>288, 315=>598, 316=>288, 317=>598, 318=>360, 319=>604, 320=>418,
+ 321=>602, 322=>292, 323=>787, 324=>580, 325=>787, 326=>580, 327=>787, 328=>580, 329=>779, 330=>758, 331=>580, 332=>738, 333=>542, 334=>738, 335=>542, 336=>738,
+ 337=>542, 340=>677, 341=>430, 342=>677, 343=>430, 344=>677, 345=>430, 346=>616, 347=>461, 348=>616, 349=>461, 350=>616, 351=>461, 354=>600, 355=>361, 356=>600,
+ 357=>361, 358=>600, 359=>361, 360=>758, 361=>580, 362=>758, 363=>580, 364=>758, 365=>580, 366=>758, 367=>580, 368=>758, 369=>580, 370=>758, 371=>580, 372=>925,
+ 373=>770, 374=>594, 375=>508, 377=>625, 378=>474, 379=>625, 380=>474, 383=>333, 384=>576, 385=>661, 386=>661, 387=>576, 388=>661, 389=>576, 390=>688, 391=>688,
+ 392=>504, 393=>726, 394=>721, 395=>661, 396=>576, 397=>542, 398=>657, 399=>738, 400=>561, 401=>624, 403=>719, 404=>641, 405=>839, 406=>355, 407=>355, 408=>672,
+ 409=>545, 410=>288, 411=>570, 412=>853, 413=>787, 414=>580, 415=>738, 416=>738, 417=>542, 418=>936, 419=>726, 420=>605, 421=>576, 422=>677, 423=>616, 424=>461,
+ 425=>636, 426=>292, 427=>361, 428=>600, 429=>361, 430=>600, 431=>758, 432=>580, 433=>746, 434=>684, 435=>664, 436=>670, 437=>625, 438=>474, 439=>508, 440=>508,
+ 441=>508, 443=>572, 444=>618, 445=>508, 446=>482, 448=>265, 449=>443, 450=>413, 451=>265, 452=>1347, 453=>1195, 454=>1050, 455=>958, 456=>876, 457=>567, 458=>1148,
+ 459=>1066, 460=>858, 461=>650, 462=>536, 463=>355, 464=>288, 465=>738, 466=>542, 467=>758, 468=>580, 469=>758, 470=>580, 471=>758, 472=>580, 473=>758, 474=>580,
+ 475=>758, 476=>580, 477=>532, 478=>650, 479=>536, 480=>650, 481=>536, 482=>901, 483=>846, 484=>763, 485=>576, 486=>719, 487=>576, 488=>672, 489=>545, 490=>738,
+ 491=>542, 492=>738, 493=>542, 494=>508, 495=>508, 496=>288, 497=>1347, 498=>1195, 499=>1050, 500=>719, 501=>576, 502=>1038, 504=>787, 505=>580, 506=>650, 507=>536,
+ 508=>901, 509=>846, 510=>738, 511=>542, 512=>650, 513=>536, 514=>650, 515=>536, 516=>657, 517=>532, 518=>657, 519=>532, 520=>355, 521=>288, 522=>355, 523=>288,
+ 524=>738, 525=>542, 526=>738, 527=>542, 528=>677, 529=>430, 530=>677, 531=>430, 532=>758, 533=>580, 534=>758, 535=>580, 536=>616, 537=>461, 538=>600, 539=>361,
+ 542=>785, 543=>580, 544=>758, 545=>732, 548=>625, 549=>474, 550=>650, 551=>536, 552=>657, 553=>532, 554=>738, 555=>542, 556=>738, 557=>542, 558=>738, 559=>542,
+ 560=>738, 561=>542, 562=>594, 563=>508, 564=>450, 565=>748, 566=>444, 567=>279, 568=>864, 569=>864, 570=>650, 571=>688, 572=>504, 573=>598, 574=>600, 575=>461,
+ 576=>474, 577=>525, 578=>417, 581=>650, 592=>536, 593=>576, 594=>607, 595=>576, 596=>504, 597=>504, 598=>582, 599=>614, 600=>532, 601=>532, 602=>759, 603=>483,
+ 604=>458, 605=>695, 606=>552, 607=>283, 608=>615, 609=>576, 610=>489, 611=>641, 612=>507, 613=>580, 614=>580, 615=>580, 616=>288, 617=>353, 618=>288, 619=>342,
+ 620=>409, 621=>326, 622=>633, 623=>853, 624=>853, 625=>853, 626=>579, 627=>624, 628=>581, 629=>542, 630=>711, 631=>583, 632=>542, 633=>451, 634=>451, 635=>496,
+ 636=>430, 637=>430, 638=>407, 639=>407, 640=>534, 641=>534, 642=>461, 643=>244, 644=>333, 645=>438, 646=>292, 647=>361, 648=>361, 649=>580, 650=>558, 651=>547,
+ 652=>508, 653=>770, 654=>508, 655=>589, 656=>537, 657=>504, 658=>508, 659=>504, 660=>482, 661=>482, 662=>482, 663=>461, 664=>738, 665=>506, 666=>552, 667=>588,
+ 668=>600, 669=>329, 670=>545, 671=>581, 672=>615, 673=>482, 674=>482, 675=>896, 676=>930, 677=>898, 678=>728, 679=>538, 680=>704, 681=>804, 682=>582, 683=>608,
+ 684=>538, 685=>398, 686=>703, 687=>690, 688=>389, 689=>387, 690=>237, 691=>312, 692=>312, 693=>387, 694=>352, 695=>485, 696=>320, 697=>250, 699=>286, 700=>286,
+ 701=>286, 702=>276, 703=>276, 704=>252, 705=>252, 711=>450, 712=>254, 713=>450, 716=>254, 720=>303, 721=>303, 722=>276, 723=>276, 726=>353, 728=>450, 729=>450,
+ 730=>450, 731=>450, 733=>450, 734=>375, 736=>403, 737=>218, 738=>303, 739=>319, 740=>252, 741=>436, 742=>436, 743=>436, 744=>436, 745=>436, 750=>435, 768=>0,
+ 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0,
+ 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0,
+ 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0,
+ 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 835=>0,
+ 847=>0, 856=>0, 865=>0, 884=>250, 885=>250, 890=>450, 894=>303, 900=>450, 901=>450, 902=>650, 903=>286, 904=>810, 905=>935, 906=>505, 908=>751, 910=>808,
+ 911=>767, 912=>353, 913=>650, 914=>661, 915=>624, 916=>650, 917=>657, 918=>625, 919=>785, 920=>738, 921=>355, 922=>672, 923=>650, 924=>921, 925=>787, 926=>633,
+ 927=>738, 928=>785, 929=>605, 931=>636, 932=>600, 933=>594, 934=>738, 935=>641, 936=>789, 937=>746, 938=>355, 939=>594, 940=>607, 941=>483, 942=>539, 943=>353,
+ 944=>547, 945=>607, 946=>520, 947=>538, 948=>542, 949=>483, 950=>488, 951=>539, 952=>542, 953=>353, 954=>590, 955=>570, 956=>584, 957=>547, 958=>496, 959=>542,
+ 960=>591, 961=>529, 962=>504, 963=>614, 964=>498, 965=>547, 966=>630, 967=>545, 968=>706, 969=>734, 970=>353, 971=>547, 972=>542, 973=>547, 974=>734, 976=>524,
+ 977=>643, 978=>618, 979=>787, 980=>618, 981=>613, 982=>734, 983=>561, 984=>738, 985=>542, 986=>688, 987=>504, 988=>624, 989=>417, 990=>531, 991=>593, 992=>704,
+ 993=>519, 1008=>561, 1009=>529, 1010=>504, 1011=>279, 1012=>738, 1013=>504, 1014=>504, 1015=>608, 1016=>576, 1017=>688, 1018=>921, 1019=>637, 1020=>529, 1021=>688, 1022=>688,
+ 1023=>688, 1024=>657, 1025=>657, 1026=>719, 1028=>688, 1029=>616, 1030=>355, 1031=>355, 1032=>360, 1033=>976, 1034=>1006, 1035=>785, 1037=>785, 1038=>650, 1040=>681, 1041=>661,
+ 1042=>661, 1043=>596, 1044=>731, 1045=>657, 1046=>1011, 1047=>561, 1048=>785, 1049=>785, 1050=>696, 1051=>751, 1052=>921, 1053=>785, 1054=>738, 1055=>785, 1056=>605, 1057=>688,
+ 1058=>600, 1059=>650, 1060=>747, 1061=>641, 1062=>785, 1063=>695, 1064=>1027, 1065=>1027, 1066=>715, 1067=>885, 1068=>606, 1069=>688, 1070=>1074, 1071=>727, 1072=>536, 1073=>549,
+ 1074=>523, 1075=>455, 1076=>570, 1077=>532, 1078=>1023, 1079=>491, 1080=>580, 1081=>580, 1082=>537, 1083=>573, 1084=>746, 1085=>593, 1086=>542, 1087=>580, 1088=>576, 1089=>504,
+ 1090=>853, 1091=>522, 1092=>704, 1093=>507, 1094=>628, 1095=>560, 1096=>853, 1097=>901, 1098=>600, 1099=>733, 1100=>490, 1101=>504, 1102=>792, 1103=>596, 1104=>532, 1105=>532,
+ 1106=>561, 1107=>455, 1108=>504, 1109=>461, 1110=>288, 1111=>288, 1112=>279, 1113=>773, 1114=>790, 1115=>580, 1117=>580, 1118=>522, 1119=>580, 1122=>686, 1123=>794, 1124=>1016,
+ 1125=>750, 1130=>1011, 1131=>828, 1138=>738, 1139=>497, 1140=>773, 1141=>610, 1164=>636, 1165=>490, 1168=>604, 1169=>476, 1170=>596, 1171=>455, 1172=>657, 1173=>552, 1174=>1011,
+ 1175=>1023, 1176=>561, 1177=>491, 1178=>696, 1179=>544, 1182=>696, 1183=>537, 1184=>803, 1185=>602, 1186=>785, 1187=>641, 1188=>1025, 1189=>771, 1190=>1085, 1191=>848, 1194=>688,
+ 1195=>504, 1196=>600, 1197=>911, 1198=>594, 1199=>514, 1200=>594, 1201=>514, 1202=>641, 1203=>566, 1204=>971, 1205=>809, 1206=>674, 1207=>609, 1210=>674, 1211=>580, 1216=>355,
+ 1217=>1011, 1218=>1023, 1219=>672, 1220=>545, 1223=>785, 1224=>600, 1227=>674, 1228=>600, 1231=>288, 1232=>681, 1233=>536, 1234=>681, 1235=>536, 1236=>901, 1237=>846, 1238=>657,
+ 1239=>532, 1240=>738, 1241=>532, 1242=>738, 1243=>532, 1244=>1011, 1245=>1023, 1246=>561, 1247=>491, 1248=>508, 1249=>508, 1250=>785, 1251=>580, 1252=>785, 1253=>580, 1254=>738,
+ 1255=>542, 1256=>738, 1257=>542, 1258=>738, 1259=>542, 1260=>688, 1261=>504, 1262=>650, 1263=>522, 1264=>650, 1265=>522, 1266=>650, 1267=>522, 1268=>695, 1269=>560, 1270=>596,
+ 1271=>455, 1272=>885, 1273=>733, 4256=>624, 4257=>733, 4258=>713, 4259=>740, 4260=>632, 4261=>845, 4262=>789, 4263=>948, 4264=>489, 4265=>646, 4266=>829, 4267=>811, 4268=>641,
+ 4269=>925, 4270=>772, 4271=>714, 4272=>895, 4273=>633, 4274=>578, 4275=>875, 4276=>807, 4277=>878, 4278=>631, 4279=>632, 4280=>632, 4281=>633, 4282=>758, 4283=>807, 4284=>616,
+ 4285=>651, 4286=>633, 4287=>825, 4288=>861, 4289=>606, 4290=>744, 4291=>633, 4292=>721, 4293=>819, 4304=>458, 4305=>485, 4306=>508, 4307=>710, 4308=>467, 4309=>480, 4310=>520,
+ 4311=>734, 4312=>475, 4313=>475, 4314=>910, 4315=>485, 4316=>485, 4317=>703, 4318=>483, 4319=>472, 4320=>702, 4321=>509, 4322=>658, 4323=>584, 4324=>694, 4325=>475, 4326=>731,
+ 4327=>478, 4328=>530, 4329=>485, 4330=>579, 4331=>486, 4332=>488, 4333=>467, 4334=>513, 4335=>590, 4336=>485, 4337=>521, 4338=>486, 4339=>486, 4340=>485, 4341=>568, 4342=>756,
+ 4343=>532, 4344=>486, 4345=>526, 4346=>315, 4347=>387, 4348=>485, 7426=>846, 7432=>458, 7433=>288, 7444=>890, 7446=>542, 7447=>542, 7453=>663, 7454=>853, 7455=>853, 7468=>409,
+ 7469=>567, 7470=>417, 7472=>454, 7473=>413, 7474=>413, 7475=>453, 7476=>494, 7477=>224, 7478=>227, 7479=>423, 7480=>376, 7481=>580, 7482=>496, 7483=>496, 7484=>464, 7486=>381,
+ 7487=>426, 7488=>378, 7489=>478, 7490=>583, 7491=>347, 7492=>347, 7493=>360, 7494=>556, 7495=>360, 7496=>360, 7497=>348, 7498=>348, 7499=>385, 7500=>306, 7501=>360, 7502=>157,
+ 7503=>328, 7504=>552, 7505=>359, 7506=>347, 7507=>312, 7508=>347, 7509=>347, 7510=>360, 7511=>222, 7512=>359, 7513=>417, 7514=>552, 7515=>335, 7522=>181, 7523=>312, 7524=>359,
+ 7525=>335, 7543=>576, 7544=>494, 7547=>334, 7557=>288, 7579=>439, 7580=>317, 7581=>317, 7582=>426, 7583=>385, 7584=>209, 7585=>285, 7586=>439, 7587=>359, 7588=>181, 7589=>181,
+ 7590=>181, 7591=>181, 7592=>286, 7593=>237, 7594=>236, 7595=>409, 7596=>552, 7597=>552, 7598=>445, 7599=>443, 7600=>438, 7601=>347, 7602=>426, 7603=>374, 7604=>269, 7605=>301,
+ 7606=>359, 7607=>429, 7609=>417, 7610=>320, 7611=>298, 7612=>376, 7613=>376, 7614=>406, 7615=>426, 7680=>650, 7681=>536, 7682=>661, 7683=>576, 7684=>661, 7685=>576, 7686=>661,
+ 7687=>576, 7688=>688, 7689=>504, 7690=>721, 7691=>576, 7692=>721, 7693=>576, 7694=>721, 7695=>576, 7696=>721, 7697=>576, 7698=>721, 7699=>576, 7700=>657, 7701=>532, 7702=>657,
+ 7703=>532, 7704=>657, 7705=>532, 7706=>657, 7707=>532, 7708=>657, 7709=>532, 7710=>624, 7711=>333, 7712=>719, 7713=>576, 7714=>785, 7715=>580, 7716=>785, 7717=>580, 7718=>785,
+ 7719=>580, 7720=>785, 7721=>580, 7722=>785, 7723=>580, 7724=>355, 7725=>288, 7728=>672, 7729=>545, 7730=>672, 7731=>545, 7732=>672, 7733=>545, 7734=>598, 7735=>288, 7736=>598,
+ 7737=>288, 7738=>598, 7739=>288, 7740=>598, 7741=>288, 7742=>921, 7743=>853, 7744=>921, 7745=>853, 7746=>921, 7747=>857, 7748=>787, 7749=>580, 7750=>787, 7751=>580, 7752=>787,
+ 7753=>580, 7754=>787, 7755=>580, 7760=>738, 7761=>542, 7762=>738, 7763=>542, 7764=>605, 7765=>576, 7766=>605, 7767=>576, 7768=>677, 7769=>430, 7770=>677, 7771=>430, 7772=>677,
+ 7773=>430, 7774=>677, 7775=>430, 7776=>616, 7777=>461, 7778=>616, 7779=>461, 7784=>616, 7785=>461, 7786=>600, 7787=>361, 7788=>600, 7789=>361, 7790=>600, 7791=>361, 7792=>600,
+ 7793=>361, 7794=>758, 7795=>580, 7796=>758, 7797=>580, 7798=>758, 7799=>580, 7800=>758, 7801=>580, 7802=>758, 7803=>580, 7804=>650, 7805=>508, 7806=>650, 7807=>508, 7808=>925,
+ 7809=>770, 7810=>925, 7811=>770, 7812=>925, 7813=>770, 7814=>925, 7815=>770, 7816=>925, 7817=>770, 7818=>641, 7819=>507, 7820=>641, 7821=>507, 7822=>594, 7823=>508, 7824=>625,
+ 7825=>474, 7826=>625, 7827=>474, 7828=>625, 7829=>474, 7830=>580, 7831=>361, 7832=>770, 7833=>508, 7834=>813, 7835=>461, 7840=>650, 7841=>536, 7842=>650, 7843=>536, 7852=>650,
+ 7853=>536, 7854=>650, 7855=>536, 7856=>650, 7857=>536, 7858=>650, 7859=>536, 7860=>650, 7861=>536, 7862=>650, 7863=>536, 7864=>657, 7865=>532, 7866=>657, 7867=>532, 7868=>657,
+ 7869=>532, 7878=>657, 7879=>532, 7880=>355, 7881=>288, 7882=>355, 7883=>288, 7884=>738, 7885=>542, 7886=>738, 7887=>542, 7896=>738, 7897=>542, 7908=>758, 7909=>580, 7910=>758,
+ 7911=>580, 7922=>594, 7923=>508, 7924=>594, 7925=>508, 7926=>594, 7927=>508, 7928=>594, 7929=>508, 7936=>607, 7937=>607, 7938=>607, 7939=>607, 7940=>607, 7941=>607, 7942=>607,
+ 7943=>607, 7944=>650, 7945=>650, 7946=>782, 7947=>782, 7948=>660, 7949=>687, 7950=>650, 7951=>650, 7952=>483, 7953=>483, 7954=>483, 7955=>483, 7956=>483, 7957=>483, 7960=>768,
+ 7961=>757, 7962=>960, 7963=>969, 7964=>907, 7965=>931, 7968=>539, 7969=>539, 7970=>539, 7971=>539, 7972=>539, 7973=>539, 7974=>539, 7975=>539, 7976=>898, 7977=>893, 7978=>1090,
+ 7979=>1101, 7980=>1043, 7981=>1064, 7982=>988, 7983=>985, 7984=>353, 7985=>353, 7986=>353, 7987=>353, 7988=>353, 7989=>353, 7990=>353, 7991=>353, 7992=>469, 7993=>461, 7994=>661,
+ 7995=>664, 7996=>611, 7997=>635, 7998=>561, 7999=>553, 8000=>542, 8001=>542, 8002=>542, 8003=>542, 8004=>542, 8005=>542, 8008=>738, 8009=>773, 8010=>1008, 8011=>1015, 8012=>843,
+ 8013=>867, 8016=>547, 8017=>547, 8018=>547, 8019=>547, 8020=>547, 8021=>547, 8022=>547, 8023=>547, 8025=>765, 8027=>971, 8029=>939, 8031=>857, 8032=>734, 8033=>734, 8034=>734,
+ 8035=>734, 8036=>734, 8037=>734, 8038=>734, 8039=>734, 8040=>746, 8041=>783, 8042=>1018, 8043=>1023, 8044=>852, 8045=>878, 8046=>844, 8047=>873, 8048=>607, 8049=>607, 8050=>483,
+ 8051=>483, 8052=>539, 8053=>539, 8054=>353, 8055=>353, 8056=>542, 8057=>542, 8058=>547, 8059=>547, 8060=>734, 8061=>734, 8064=>607, 8065=>607, 8066=>607, 8067=>607, 8068=>607,
+ 8069=>607, 8070=>607, 8071=>607, 8072=>650, 8073=>650, 8074=>782, 8075=>782, 8076=>660, 8077=>687, 8078=>650, 8079=>650, 8080=>539, 8081=>539, 8082=>539, 8083=>539, 8084=>539,
+ 8085=>539, 8086=>539, 8087=>539, 8088=>898, 8089=>893, 8090=>1090, 8091=>1101, 8092=>1043, 8093=>1064, 8094=>988, 8095=>985, 8096=>734, 8097=>734, 8098=>734, 8099=>734, 8100=>734,
+ 8101=>734, 8102=>734, 8103=>734, 8104=>746, 8105=>783, 8106=>1018, 8107=>1023, 8108=>852, 8109=>878, 8110=>844, 8111=>873, 8112=>607, 8113=>607, 8114=>607, 8115=>607, 8116=>607,
+ 8118=>607, 8119=>607, 8120=>650, 8121=>650, 8122=>650, 8123=>650, 8124=>650, 8125=>450, 8126=>450, 8127=>450, 8128=>450, 8129=>450, 8130=>539, 8131=>539, 8132=>539, 8134=>539,
+ 8135=>539, 8136=>820, 8137=>810, 8138=>956, 8139=>935, 8140=>785, 8141=>450, 8142=>450, 8143=>450, 8144=>353, 8145=>353, 8146=>353, 8147=>353, 8150=>353, 8151=>353, 8152=>355,
+ 8153=>355, 8154=>529, 8155=>505, 8157=>450, 8158=>450, 8159=>450, 8160=>547, 8161=>547, 8162=>547, 8163=>547, 8164=>529, 8165=>529, 8166=>547, 8167=>547, 8168=>594, 8169=>594,
+ 8170=>829, 8171=>808, 8172=>711, 8173=>450, 8174=>450, 8175=>450, 8178=>734, 8179=>734, 8180=>734, 8182=>734, 8183=>734, 8184=>865, 8185=>751, 8186=>886, 8187=>767, 8188=>746,
+ 8189=>450, 8190=>450, 8192=>450, 8193=>900, 8194=>450, 8195=>900, 8196=>296, 8197=>225, 8198=>150, 8199=>572, 8200=>286, 8201=>180, 8202=>89, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>304, 8209=>304, 8210=>572, 8213=>900, 8215=>450, 8219=>286, 8223=>460, 8227=>531, 8228=>301, 8229=>600, 8234=>0, 8235=>0, 8236=>0, 8237=>0,
+ 8238=>0, 8239=>180, 8241=>1560, 8252=>475, 8253=>482, 8254=>450, 8263=>878, 8264=>678, 8265=>678, 8287=>200, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0,
+ 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>360, 8305=>181, 8308=>360, 8309=>360, 8310=>360, 8311=>360, 8312=>360, 8313=>360, 8314=>475, 8315=>475, 8316=>475,
+ 8317=>221, 8318=>221, 8319=>365, 8320=>360, 8321=>360, 8322=>360, 8323=>360, 8324=>360, 8325=>360, 8326=>360, 8327=>360, 8328=>360, 8329=>360, 8330=>475, 8331=>475, 8332=>475,
+ 8333=>221, 8334=>221, 8336=>347, 8337=>348, 8338=>347, 8339=>319, 8340=>348, 8358=>594, 8367=>951, 8369=>635, 8372=>702, 8373=>572, 8451=>1006, 8457=>942, 8462=>580, 8470=>852,
+ 8486=>746, 8487=>746, 8490=>672, 8491=>650, 8513=>697, 8514=>501, 8515=>501, 8516=>549, 8523=>801, 8531=>872, 8532=>872, 8533=>872, 8534=>872, 8535=>872, 8536=>872, 8537=>872,
+ 8538=>872, 8539=>872, 8540=>872, 8541=>872, 8542=>872, 8543=>511, 8544=>355, 8545=>531, 8546=>707, 8547=>870, 8548=>650, 8549=>883, 8550=>1059, 8551=>1234, 8552=>838, 8553=>641,
+ 8554=>839, 8555=>1015, 8556=>598, 8557=>688, 8558=>721, 8559=>921, 8560=>288, 8561=>576, 8562=>863, 8563=>796, 8564=>508, 8565=>796, 8566=>1084, 8567=>1372, 8568=>795, 8569=>507,
+ 8570=>795, 8571=>1083, 8572=>288, 8573=>504, 8574=>576, 8575=>853, 8576=>1085, 8577=>721, 8578=>1085, 8579=>688, 8580=>504, 8592=>754, 8593=>754, 8594=>754, 8595=>754, 8596=>754,
+ 8597=>754, 8598=>754, 8599=>754, 8600=>754, 8601=>754, 8602=>754, 8603=>754, 8604=>754, 8605=>754, 8606=>754, 8607=>754, 8608=>754, 8609=>754, 8610=>754, 8611=>754, 8612=>754,
+ 8613=>754, 8614=>754, 8615=>754, 8616=>754, 8617=>754, 8618=>754, 8619=>754, 8620=>754, 8621=>754, 8622=>754, 8623=>754, 8624=>754, 8625=>754, 8626=>754, 8627=>754, 8628=>754,
+ 8629=>754, 8630=>754, 8631=>754, 8632=>754, 8633=>754, 8634=>754, 8635=>754, 8636=>754, 8637=>754, 8638=>754, 8639=>754, 8640=>754, 8641=>754, 8642=>754, 8643=>754, 8644=>754,
+ 8645=>754, 8646=>754, 8647=>754, 8648=>754, 8649=>754, 8650=>754, 8651=>754, 8652=>754, 8653=>754, 8654=>754, 8655=>754, 8656=>754, 8657=>754, 8658=>754, 8659=>754, 8660=>754,
+ 8661=>754, 8662=>754, 8663=>754, 8664=>754, 8665=>754, 8666=>754, 8667=>754, 8668=>754, 8669=>754, 8670=>754, 8671=>754, 8672=>754, 8673=>754, 8674=>754, 8675=>754, 8676=>754,
+ 8677=>754, 8678=>754, 8679=>754, 8680=>754, 8681=>754, 8682=>754, 8683=>754, 8684=>754, 8685=>754, 8686=>754, 8687=>754, 8688=>754, 8689=>754, 8690=>754, 8691=>754, 8692=>754,
+ 8693=>754, 8694=>754, 8695=>754, 8696=>754, 8697=>754, 8698=>754, 8699=>754, 8700=>754, 8701=>754, 8702=>754, 8703=>754, 8704=>543, 8706=>465, 8707=>488, 8708=>488, 8710=>628,
+ 8711=>628, 8712=>666, 8713=>666, 8715=>666, 8716=>666, 8719=>716, 8720=>716, 8721=>642, 8722=>754, 8723=>754, 8724=>754, 8725=>150, 8727=>611, 8728=>441, 8729=>441, 8730=>573,
+ 8731=>573, 8732=>573, 8733=>609, 8734=>750, 8735=>754, 8736=>754, 8739=>262, 8740=>431, 8741=>416, 8742=>570, 8743=>659, 8744=>659, 8745=>754, 8746=>754, 8747=>469, 8748=>766,
+ 8749=>1063, 8760=>754, 8761=>754, 8762=>754, 8763=>754, 8764=>754, 8765=>754, 8770=>754, 8771=>754, 8776=>754, 8784=>754, 8785=>754, 8786=>754, 8787=>754, 8788=>930, 8789=>930,
+ 8800=>754, 8801=>754, 8804=>754, 8805=>754, 8834=>754, 8835=>754, 8836=>754, 8837=>754, 8838=>754, 8839=>754, 8844=>754, 8845=>754, 8846=>754, 8847=>761, 8848=>761, 8849=>761,
+ 8850=>761, 8851=>754, 8852=>754, 8853=>754, 8854=>754, 8855=>754, 8856=>754, 8857=>754, 8858=>754, 8859=>754, 8860=>754, 8861=>754, 8862=>754, 8863=>754, 8864=>754, 8865=>754,
+ 8866=>773, 8867=>773, 8868=>846, 8869=>846, 8870=>510, 8871=>510, 8872=>773, 8873=>773, 8874=>773, 8875=>927, 8876=>773, 8877=>773, 8878=>773, 8879=>927, 8901=>308, 8962=>687,
+ 8968=>351, 8969=>351, 8970=>351, 8971=>351, 8976=>754, 8977=>461, 8984=>900, 8985=>754, 8992=>469, 8993=>469, 8997=>900, 9000=>1299, 9085=>827, 9134=>469, 9167=>850, 9251=>687,
+ 9472=>542, 9473=>542, 9474=>542, 9475=>542, 9476=>542, 9477=>542, 9478=>542, 9479=>542, 9480=>542, 9481=>542, 9482=>542, 9483=>542, 9484=>542, 9485=>542, 9486=>542, 9487=>542,
+ 9488=>542, 9489=>542, 9490=>542, 9491=>542, 9492=>542, 9493=>542, 9494=>542, 9495=>542, 9496=>542, 9497=>542, 9498=>542, 9499=>542, 9500=>542, 9501=>542, 9502=>542, 9503=>542,
+ 9504=>542, 9505=>542, 9506=>542, 9507=>542, 9508=>542, 9509=>542, 9510=>542, 9511=>542, 9512=>542, 9513=>542, 9514=>542, 9515=>542, 9516=>542, 9517=>542, 9518=>542, 9519=>542,
+ 9520=>542, 9521=>542, 9522=>542, 9523=>542, 9524=>542, 9525=>542, 9526=>542, 9527=>542, 9528=>542, 9529=>542, 9530=>542, 9531=>542, 9532=>542, 9533=>542, 9534=>542, 9535=>542,
+ 9536=>542, 9537=>542, 9538=>542, 9539=>542, 9540=>542, 9541=>542, 9542=>542, 9543=>542, 9544=>542, 9545=>542, 9546=>542, 9547=>542, 9548=>542, 9549=>542, 9550=>542, 9551=>542,
+ 9552=>542, 9553=>542, 9554=>542, 9555=>542, 9556=>542, 9557=>542, 9558=>542, 9559=>542, 9560=>542, 9561=>542, 9562=>542, 9563=>542, 9564=>542, 9565=>542, 9566=>542, 9567=>542,
+ 9568=>542, 9569=>542, 9570=>542, 9571=>542, 9572=>542, 9573=>542, 9574=>542, 9575=>542, 9576=>542, 9577=>542, 9578=>542, 9579=>542, 9580=>542, 9581=>542, 9582=>542, 9583=>542,
+ 9584=>542, 9585=>542, 9586=>542, 9587=>542, 9588=>542, 9589=>542, 9590=>542, 9591=>542, 9592=>542, 9593=>542, 9594=>542, 9595=>542, 9596=>542, 9597=>542, 9598=>542, 9599=>542,
+ 9600=>692, 9601=>692, 9602=>692, 9603=>692, 9604=>692, 9605=>692, 9606=>692, 9607=>692, 9608=>692, 9609=>692, 9610=>692, 9611=>692, 9612=>692, 9613=>692, 9614=>692, 9615=>692,
+ 9616=>692, 9617=>692, 9618=>692, 9619=>692, 9620=>692, 9621=>692, 9622=>692, 9623=>692, 9624=>692, 9625=>692, 9626=>692, 9627=>692, 9628=>692, 9629=>692, 9630=>692, 9631=>692,
+ 9632=>850, 9633=>850, 9634=>850, 9635=>850, 9636=>850, 9637=>850, 9638=>850, 9639=>850, 9640=>850, 9641=>850, 9642=>610, 9643=>610, 9644=>850, 9645=>850, 9646=>495, 9647=>495,
+ 9648=>692, 9649=>692, 9650=>692, 9651=>692, 9652=>452, 9653=>452, 9654=>692, 9655=>692, 9656=>452, 9657=>452, 9658=>692, 9659=>692, 9660=>692, 9661=>692, 9662=>452, 9663=>452,
+ 9664=>692, 9665=>692, 9666=>452, 9667=>452, 9668=>692, 9669=>692, 9670=>692, 9671=>692, 9672=>692, 9673=>785, 9674=>444, 9675=>785, 9676=>785, 9677=>785, 9678=>785, 9679=>785,
+ 9680=>785, 9681=>785, 9682=>785, 9683=>785, 9684=>785, 9685=>785, 9686=>474, 9687=>474, 9688=>712, 9689=>873, 9690=>873, 9691=>873, 9692=>348, 9693=>348, 9694=>348, 9695=>348,
+ 9696=>785, 9697=>785, 9698=>692, 9699=>692, 9700=>692, 9701=>692, 9702=>531, 9703=>850, 9704=>850, 9705=>850, 9706=>850, 9707=>850, 9708=>692, 9709=>692, 9710=>692, 9711=>1007,
+ 9712=>850, 9713=>850, 9714=>850, 9715=>850, 9716=>785, 9717=>785, 9718=>785, 9719=>785, 9720=>692, 9721=>692, 9722=>692, 9723=>747, 9724=>747, 9725=>659, 9726=>659, 9727=>692,
+ 9728=>807, 9784=>807, 9785=>807, 9786=>807, 9787=>807, 9788=>807, 9791=>552, 9792=>658, 9793=>658, 9794=>807, 9795=>807, 9796=>807, 9797=>807, 9798=>807, 9799=>807, 9824=>807,
+ 9825=>807, 9826=>807, 9827=>807, 9828=>807, 9829=>807, 9830=>807, 9831=>807, 9833=>424, 9834=>574, 9835=>807, 9836=>807, 9837=>424, 9838=>321, 9839=>435, 10145=>754, 10208=>444,
+ 10216=>351, 10217=>351, 10224=>754, 10225=>754, 10226=>754, 10227=>754, 10228=>930, 10229=>1290, 10230=>1290, 10231=>1290, 10232=>1290, 10233=>1290, 10234=>1290, 10235=>1290, 10236=>1290, 10237=>1290,
+ 10238=>1290, 10239=>1290, 10240=>659, 10241=>659, 10242=>659, 10243=>659, 10244=>659, 10245=>659, 10246=>659, 10247=>659, 10248=>659, 10249=>659, 10250=>659, 10251=>659, 10252=>659, 10253=>659,
+ 10254=>659, 10255=>659, 10256=>659, 10257=>659, 10258=>659, 10259=>659, 10260=>659, 10261=>659, 10262=>659, 10263=>659, 10264=>659, 10265=>659, 10266=>659, 10267=>659, 10268=>659, 10269=>659,
+ 10270=>659, 10271=>659, 10272=>659, 10273=>659, 10274=>659, 10275=>659, 10276=>659, 10277=>659, 10278=>659, 10279=>659, 10280=>659, 10281=>659, 10282=>659, 10283=>659, 10284=>659, 10285=>659,
+ 10286=>659, 10287=>659, 10288=>659, 10289=>659, 10290=>659, 10291=>659, 10292=>659, 10293=>659, 10294=>659, 10295=>659, 10296=>659, 10297=>659, 10298=>659, 10299=>659, 10300=>659, 10301=>659,
+ 10302=>659, 10303=>659, 10304=>659, 10305=>659, 10306=>659, 10307=>659, 10308=>659, 10309=>659, 10310=>659, 10311=>659, 10312=>659, 10313=>659, 10314=>659, 10315=>659, 10316=>659, 10317=>659,
+ 10318=>659, 10319=>659, 10320=>659, 10321=>659, 10322=>659, 10323=>659, 10324=>659, 10325=>659, 10326=>659, 10327=>659, 10328=>659, 10329=>659, 10330=>659, 10331=>659, 10332=>659, 10333=>659,
+ 10334=>659, 10335=>659, 10336=>659, 10337=>659, 10338=>659, 10339=>659, 10340=>659, 10341=>659, 10342=>659, 10343=>659, 10344=>659, 10345=>659, 10346=>659, 10347=>659, 10348=>659, 10349=>659,
+ 10350=>659, 10351=>659, 10352=>659, 10353=>659, 10354=>659, 10355=>659, 10356=>659, 10357=>659, 10358=>659, 10359=>659, 10360=>659, 10361=>659, 10362=>659, 10363=>659, 10364=>659, 10365=>659,
+ 10366=>659, 10367=>659, 10368=>659, 10369=>659, 10370=>659, 10371=>659, 10372=>659, 10373=>659, 10374=>659, 10375=>659, 10376=>659, 10377=>659, 10378=>659, 10379=>659, 10380=>659, 10381=>659,
+ 10382=>659, 10383=>659, 10384=>659, 10385=>659, 10386=>659, 10387=>659, 10388=>659, 10389=>659, 10390=>659, 10391=>659, 10392=>659, 10393=>659, 10394=>659, 10395=>659, 10396=>659, 10397=>659,
+ 10398=>659, 10399=>659, 10400=>659, 10401=>659, 10402=>659, 10403=>659, 10404=>659, 10405=>659, 10406=>659, 10407=>659, 10408=>659, 10409=>659, 10410=>659, 10411=>659, 10412=>659, 10413=>659,
+ 10414=>659, 10415=>659, 10416=>659, 10417=>659, 10418=>659, 10419=>659, 10420=>659, 10421=>659, 10422=>659, 10423=>659, 10424=>659, 10425=>659, 10426=>659, 10427=>659, 10428=>659, 10429=>659,
+ 10430=>659, 10431=>659, 10432=>659, 10433=>659, 10434=>659, 10435=>659, 10436=>659, 10437=>659, 10438=>659, 10439=>659, 10440=>659, 10441=>659, 10442=>659, 10443=>659, 10444=>659, 10445=>659,
+ 10446=>659, 10447=>659, 10448=>659, 10449=>659, 10450=>659, 10451=>659, 10452=>659, 10453=>659, 10454=>659, 10455=>659, 10456=>659, 10457=>659, 10458=>659, 10459=>659, 10460=>659, 10461=>659,
+ 10462=>659, 10463=>659, 10464=>659, 10465=>659, 10466=>659, 10467=>659, 10468=>659, 10469=>659, 10470=>659, 10471=>659, 10472=>659, 10473=>659, 10474=>659, 10475=>659, 10476=>659, 10477=>659,
+ 10478=>659, 10479=>659, 10480=>659, 10481=>659, 10482=>659, 10483=>659, 10484=>659, 10485=>659, 10486=>659, 10487=>659, 10488=>659, 10489=>659, 10490=>659, 10491=>659, 10492=>659, 10493=>659,
+ 10494=>659, 10495=>659, 10496=>754, 10497=>754, 10498=>754, 10499=>754, 10500=>754, 10501=>754, 10502=>754, 10503=>754, 10504=>754, 10505=>754, 10506=>754, 10507=>754, 10508=>754, 10509=>754,
+ 10510=>754, 10511=>754, 10512=>754, 10513=>754, 10514=>754, 10515=>754, 10516=>754, 10517=>754, 10518=>754, 10519=>754, 10520=>754, 10521=>754, 10522=>754, 10523=>754, 10524=>754, 10525=>754,
+ 10526=>754, 10527=>754, 10528=>754, 10529=>754, 10530=>754, 10531=>754, 10532=>754, 10533=>754, 10534=>754, 10535=>754, 10536=>754, 10537=>754, 10538=>754, 10539=>754, 10540=>754, 10541=>754,
+ 10542=>754, 10543=>754, 10544=>754, 10545=>754, 10546=>754, 10547=>754, 10548=>754, 10549=>754, 10550=>754, 10551=>754, 10552=>754, 10553=>754, 10554=>754, 10555=>754, 10556=>754, 10557=>754,
+ 10558=>754, 10559=>754, 10560=>754, 10561=>754, 10562=>754, 10563=>754, 10564=>754, 10565=>754, 10566=>754, 10567=>754, 10568=>754, 10569=>754, 10570=>754, 10571=>754, 10572=>754, 10573=>754,
+ 10574=>754, 10575=>754, 10576=>754, 10577=>754, 10578=>754, 10579=>754, 10580=>754, 10581=>754, 10582=>754, 10583=>754, 10584=>754, 10585=>754, 10586=>754, 10587=>754, 10588=>754, 10589=>754,
+ 10590=>754, 10591=>754, 10592=>754, 10593=>754, 10594=>754, 10595=>754, 10596=>754, 10597=>754, 10598=>754, 10599=>754, 10600=>754, 10601=>754, 10602=>754, 10603=>754, 10604=>754, 10605=>754,
+ 10606=>754, 10607=>754, 10608=>754, 10609=>754, 10610=>754, 10611=>754, 10612=>754, 10613=>754, 10614=>754, 10615=>883, 10616=>754, 10617=>754, 10618=>886, 10619=>754, 10620=>754, 10621=>754,
+ 10622=>754, 10623=>754, 10731=>444, 10764=>1361, 10765=>469, 10766=>469, 10799=>754, 11008=>754, 11009=>754, 11010=>754, 11011=>754, 11012=>754, 11013=>754, 11014=>754, 11015=>754, 11016=>754,
+ 11017=>754, 11018=>754, 11019=>754, 11020=>754, 11021=>754, 11022=>754, 11023=>754, 11024=>754, 11025=>754, 11026=>850, 11027=>850, 11028=>850, 11029=>850, 11030=>692, 11031=>692, 11032=>692,
+ 11033=>692, 11034=>850, 11367=>785, 11368=>580, 11369=>672, 11370=>545, 11371=>625, 11372=>474, 11381=>666, 11382=>500, 11383=>630, 11800=>482, 11822=>482, 63172=>455, 63173=>542, 63174=>576,
+ 63175=>580, 63176=>853, 63185=>450, 63188=>450, 64256=>637, 64257=>600, 64258=>600, 64259=>847, 64260=>887, 64261=>669, 64262=>824, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0,
+ 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65529=>0, 65530=>0, 65531=>0, 65532=>0, 65533=>923);
+$enc='';
+$diff='';
+$file='dejavuserifcondensedi.z';
+$ctg='dejavuserifcondensedi.ctg.z';
+$originalsize=275368;
+?>
diff --git a/lib/tcpdf/fonts/dejavuserifcondensedi.z b/lib/tcpdf/fonts/dejavuserifcondensedi.z
new file mode 100644
index 0000000000..4484ff1b6f
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifcondensedi.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifi.ctg.z b/lib/tcpdf/fonts/dejavuserifi.ctg.z
new file mode 100644
index 0000000000..f4872c387e
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifi.ctg.z differ
diff --git a/lib/tcpdf/fonts/dejavuserifi.php b/lib/tcpdf/fonts/dejavuserifi.php
new file mode 100644
index 0000000000..faf9d03a43
--- /dev/null
+++ b/lib/tcpdf/fonts/dejavuserifi.php
@@ -0,0 +1,188 @@
+928,'Descent'=>-236,'CapHeight'=>928,'Flags'=>96,'FontBBox'=>'[-839 -347 1650 1227]','ItalicAngle'=>-11,'StemV'=>70,'MissingWidth'=>600);
+$up=-63;
+$ut=44;
+$cw=array(
+ 0=>600, 32=>318, 33=>402, 34=>460, 35=>838, 36=>636, 37=>950, 38=>890, 39=>275, 40=>390, 41=>390, 42=>500, 43=>838, 44=>318, 45=>338, 46=>318,
+ 47=>337, 48=>636, 49=>636, 50=>636, 51=>636, 52=>636, 53=>636, 54=>636, 55=>636, 56=>636, 57=>636, 58=>337, 59=>337, 60=>838, 61=>838, 62=>838,
+ 63=>536, 64=>1000, 65=>722, 66=>735, 67=>765, 68=>802, 69=>730, 70=>694, 71=>799, 72=>872, 73=>395, 74=>401, 75=>747, 76=>664, 77=>1024, 78=>875,
+ 79=>820, 80=>673, 81=>820, 82=>753, 83=>685, 84=>667, 85=>843, 86=>722, 87=>1028, 88=>712, 89=>660, 90=>695, 91=>390, 92=>337, 93=>390, 94=>838,
+ 95=>500, 96=>500, 97=>596, 98=>640, 99=>560, 100=>640, 101=>592, 102=>370, 103=>640, 104=>644, 105=>320, 106=>310, 107=>606, 108=>320, 109=>948, 110=>644,
+ 111=>602, 112=>640, 113=>640, 114=>478, 115=>513, 116=>402, 117=>644, 118=>565, 119=>856, 120=>564, 121=>565, 122=>527, 123=>636, 124=>337, 125=>636, 126=>838,
+ 8364=>636, 1027=>662, 8218=>318, 402=>370, 8222=>518, 8230=>1000, 8224=>500, 8225=>500, 710=>500, 8240=>1342, 352=>685, 8249=>400, 338=>1137, 1036=>774, 381=>695, 1039=>872,
+ 8216=>318, 8217=>318, 8220=>511, 8221=>511, 8226=>590, 8211=>500, 8212=>1000, 732=>500, 8482=>1000, 353=>513, 8250=>400, 339=>989, 1116=>597, 382=>527, 376=>660, 160=>318,
+ 161=>402, 162=>636, 163=>636, 164=>636, 165=>636, 166=>337, 167=>500, 168=>500, 169=>1000, 170=>475, 171=>612, 172=>838, 173=>338, 174=>1000, 175=>500, 176=>500,
+ 177=>838, 178=>401, 179=>401, 180=>500, 181=>650, 182=>636, 183=>318, 184=>500, 185=>401, 186=>470, 187=>612, 188=>969, 189=>969, 190=>969, 191=>536, 192=>722,
+ 193=>722, 194=>722, 195=>722, 196=>722, 197=>722, 198=>1001, 199=>765, 200=>730, 201=>730, 202=>730, 203=>730, 204=>395, 205=>395, 206=>395, 207=>395, 208=>807,
+ 209=>875, 210=>820, 211=>820, 212=>820, 213=>820, 214=>820, 215=>838, 216=>820, 217=>843, 218=>843, 219=>843, 220=>843, 221=>660, 222=>676, 223=>668, 224=>596,
+ 225=>596, 226=>596, 227=>596, 228=>596, 229=>596, 230=>940, 231=>560, 232=>592, 233=>592, 234=>592, 235=>592, 236=>320, 237=>320, 238=>320, 239=>320, 240=>602,
+ 241=>644, 242=>602, 243=>602, 244=>602, 245=>602, 246=>602, 247=>838, 248=>602, 249=>644, 250=>644, 251=>644, 252=>644, 253=>565, 254=>640, 255=>565, 256=>722,
+ 257=>596, 258=>722, 259=>596, 260=>722, 261=>596, 262=>765, 263=>560, 264=>765, 265=>560, 266=>765, 267=>560, 268=>765, 269=>560, 270=>802, 271=>640, 272=>807,
+ 273=>640, 274=>730, 275=>592, 276=>730, 277=>592, 278=>730, 279=>592, 280=>730, 281=>592, 282=>730, 283=>592, 284=>799, 285=>640, 286=>799, 287=>640, 288=>799,
+ 289=>640, 290=>799, 291=>640, 292=>872, 293=>644, 294=>872, 295=>644, 296=>395, 297=>320, 298=>395, 299=>320, 300=>395, 301=>320, 302=>395, 303=>320, 304=>395,
+ 305=>320, 306=>801, 307=>533, 308=>401, 309=>310, 310=>747, 311=>606, 312=>606, 313=>664, 314=>320, 315=>664, 316=>320, 317=>664, 318=>400, 319=>671, 320=>465,
+ 321=>669, 322=>324, 323=>875, 324=>644, 325=>875, 326=>644, 327=>875, 328=>644, 329=>866, 330=>843, 331=>644, 332=>820, 333=>602, 334=>820, 335=>602, 336=>820,
+ 337=>602, 340=>753, 341=>478, 342=>753, 343=>478, 344=>753, 345=>478, 346=>685, 347=>513, 348=>685, 349=>513, 350=>685, 351=>513, 354=>667, 355=>402, 356=>667,
+ 357=>402, 358=>667, 359=>402, 360=>843, 361=>644, 362=>843, 363=>644, 364=>843, 365=>644, 366=>843, 367=>644, 368=>843, 369=>644, 370=>843, 371=>644, 372=>1028,
+ 373=>856, 374=>660, 375=>565, 377=>695, 378=>527, 379=>695, 380=>527, 383=>370, 384=>640, 385=>735, 386=>735, 387=>640, 388=>735, 389=>640, 390=>765, 391=>765,
+ 392=>560, 393=>807, 394=>802, 395=>735, 396=>640, 397=>602, 398=>730, 399=>820, 400=>623, 401=>694, 403=>799, 404=>712, 405=>932, 406=>395, 407=>395, 408=>747,
+ 409=>606, 410=>320, 411=>634, 412=>948, 413=>875, 414=>644, 415=>820, 416=>820, 417=>602, 418=>1040, 419=>807, 420=>673, 421=>640, 422=>753, 423=>685, 424=>513,
+ 425=>707, 426=>324, 427=>402, 428=>667, 429=>402, 430=>667, 431=>843, 432=>644, 433=>829, 434=>760, 435=>738, 436=>745, 437=>695, 438=>527, 439=>564, 440=>564,
+ 441=>564, 443=>636, 444=>687, 445=>564, 446=>536, 448=>295, 449=>492, 450=>459, 451=>295, 452=>1497, 453=>1329, 454=>1167, 455=>1065, 456=>974, 457=>630, 458=>1276,
+ 459=>1185, 460=>954, 461=>722, 462=>596, 463=>395, 464=>320, 465=>820, 466=>602, 467=>843, 468=>644, 469=>843, 470=>644, 471=>843, 472=>644, 473=>843, 474=>644,
+ 475=>843, 476=>644, 477=>592, 478=>722, 479=>596, 480=>722, 481=>596, 482=>1001, 483=>940, 484=>848, 485=>640, 486=>799, 487=>640, 488=>747, 489=>606, 490=>820,
+ 491=>602, 492=>820, 493=>602, 494=>564, 495=>564, 496=>320, 497=>1497, 498=>1329, 499=>1167, 500=>799, 501=>640, 502=>1154, 504=>875, 505=>644, 506=>722, 507=>596,
+ 508=>1001, 509=>940, 510=>820, 511=>602, 512=>722, 513=>596, 514=>722, 515=>596, 516=>730, 517=>592, 518=>730, 519=>592, 520=>395, 521=>320, 522=>395, 523=>320,
+ 524=>820, 525=>602, 526=>820, 527=>602, 528=>753, 529=>478, 530=>753, 531=>478, 532=>843, 533=>644, 534=>843, 535=>644, 536=>685, 537=>513, 538=>667, 539=>402,
+ 542=>872, 543=>644, 544=>843, 545=>814, 548=>695, 549=>527, 550=>722, 551=>596, 552=>730, 553=>592, 554=>820, 555=>602, 556=>820, 557=>602, 558=>820, 559=>602,
+ 560=>820, 561=>602, 562=>660, 563=>565, 564=>500, 565=>832, 566=>494, 567=>310, 568=>960, 569=>960, 570=>722, 571=>765, 572=>560, 573=>664, 574=>667, 575=>513,
+ 576=>527, 577=>583, 578=>464, 581=>722, 592=>596, 593=>640, 594=>675, 595=>640, 596=>560, 597=>560, 598=>647, 599=>683, 600=>592, 601=>592, 602=>843, 603=>537,
+ 604=>509, 605=>773, 606=>613, 607=>315, 608=>683, 609=>640, 610=>544, 611=>712, 612=>564, 613=>644, 614=>644, 615=>644, 616=>320, 617=>392, 618=>320, 619=>380,
+ 620=>454, 621=>363, 622=>704, 623=>948, 624=>948, 625=>948, 626=>644, 627=>694, 628=>646, 629=>602, 630=>790, 631=>647, 632=>602, 633=>501, 634=>501, 635=>551,
+ 636=>478, 637=>478, 638=>453, 639=>453, 640=>594, 641=>594, 642=>513, 643=>271, 644=>370, 645=>487, 646=>324, 647=>402, 648=>402, 649=>644, 650=>620, 651=>608,
+ 652=>565, 653=>856, 654=>565, 655=>655, 656=>597, 657=>560, 658=>564, 659=>560, 660=>536, 661=>536, 662=>536, 663=>513, 664=>820, 665=>563, 666=>613, 667=>654,
+ 668=>667, 669=>366, 670=>606, 671=>646, 672=>683, 673=>536, 674=>536, 675=>996, 676=>1033, 677=>998, 678=>809, 679=>598, 680=>782, 681=>894, 682=>646, 683=>676,
+ 684=>598, 685=>443, 686=>781, 687=>767, 688=>433, 689=>430, 690=>264, 691=>347, 692=>347, 693=>430, 694=>392, 695=>539, 696=>355, 697=>278, 699=>318, 700=>318,
+ 701=>318, 702=>307, 703=>307, 704=>280, 705=>281, 711=>500, 712=>282, 713=>500, 716=>282, 720=>337, 721=>337, 722=>307, 723=>307, 726=>392, 728=>500, 729=>500,
+ 730=>500, 731=>500, 733=>500, 734=>417, 736=>448, 737=>243, 738=>337, 739=>355, 740=>281, 741=>484, 742=>484, 743=>484, 744=>484, 745=>484, 750=>484, 768=>0,
+ 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0,
+ 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0,
+ 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0,
+ 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 835=>0,
+ 847=>0, 856=>0, 865=>0, 884=>278, 885=>278, 890=>500, 894=>337, 900=>500, 901=>500, 902=>722, 903=>318, 904=>900, 905=>1039, 906=>562, 908=>835, 910=>897,
+ 911=>853, 912=>392, 913=>722, 914=>735, 915=>694, 916=>722, 917=>730, 918=>695, 919=>872, 920=>820, 921=>395, 922=>747, 923=>722, 924=>1024, 925=>875, 926=>704,
+ 927=>820, 928=>872, 929=>673, 931=>707, 932=>667, 933=>660, 934=>820, 935=>712, 936=>877, 937=>829, 938=>395, 939=>660, 940=>675, 941=>537, 942=>599, 943=>392,
+ 944=>608, 945=>675, 946=>578, 947=>598, 948=>602, 949=>537, 950=>542, 951=>599, 952=>602, 953=>392, 954=>656, 955=>634, 956=>650, 957=>608, 958=>551, 959=>602,
+ 960=>657, 961=>588, 962=>560, 963=>683, 964=>553, 965=>608, 966=>700, 967=>606, 968=>784, 969=>815, 970=>392, 971=>608, 972=>602, 973=>608, 974=>815, 976=>583,
+ 977=>715, 978=>687, 979=>874, 980=>687, 981=>682, 982=>815, 983=>624, 984=>820, 985=>602, 986=>765, 987=>560, 988=>694, 989=>463, 990=>590, 991=>660, 992=>782,
+ 993=>577, 1008=>624, 1009=>588, 1010=>560, 1011=>310, 1012=>820, 1013=>560, 1014=>560, 1015=>676, 1016=>640, 1017=>765, 1018=>1024, 1019=>708, 1020=>588, 1021=>765, 1022=>765,
+ 1023=>765, 1024=>730, 1025=>730, 1026=>799, 1028=>765, 1029=>685, 1030=>395, 1031=>395, 1032=>401, 1033=>1084, 1034=>1118, 1035=>872, 1037=>872, 1038=>723, 1040=>757, 1041=>735,
+ 1042=>735, 1043=>662, 1044=>813, 1045=>730, 1046=>1124, 1047=>623, 1048=>872, 1049=>860, 1050=>774, 1051=>834, 1052=>1024, 1053=>872, 1054=>820, 1055=>872, 1056=>673, 1057=>765,
+ 1058=>667, 1059=>723, 1060=>830, 1061=>712, 1062=>872, 1063=>773, 1064=>1141, 1065=>1141, 1066=>794, 1067=>984, 1068=>674, 1069=>765, 1070=>1193, 1071=>808, 1072=>596, 1073=>610,
+ 1074=>582, 1075=>505, 1076=>634, 1077=>592, 1078=>1137, 1079=>545, 1080=>644, 1081=>644, 1082=>597, 1083=>637, 1084=>829, 1085=>659, 1086=>602, 1087=>644, 1088=>640, 1089=>560,
+ 1090=>948, 1091=>580, 1092=>783, 1093=>564, 1094=>698, 1095=>622, 1096=>947, 1097=>1001, 1098=>667, 1099=>814, 1100=>544, 1101=>560, 1102=>880, 1103=>662, 1104=>592, 1105=>592,
+ 1106=>624, 1107=>505, 1108=>560, 1109=>513, 1110=>320, 1111=>320, 1112=>310, 1113=>859, 1114=>878, 1115=>644, 1117=>644, 1118=>580, 1119=>644, 1122=>762, 1123=>882, 1124=>1129,
+ 1125=>834, 1130=>1124, 1131=>920, 1138=>820, 1139=>552, 1140=>859, 1141=>678, 1164=>707, 1165=>544, 1168=>672, 1169=>529, 1170=>662, 1171=>505, 1172=>730, 1173=>614, 1174=>1124,
+ 1175=>1137, 1176=>623, 1177=>545, 1178=>774, 1179=>604, 1182=>774, 1183=>597, 1184=>892, 1185=>669, 1186=>872, 1187=>712, 1188=>1139, 1189=>857, 1190=>1206, 1191=>943, 1194=>765,
+ 1195=>560, 1196=>667, 1197=>1013, 1198=>660, 1199=>571, 1200=>660, 1201=>571, 1202=>712, 1203=>629, 1204=>1079, 1205=>899, 1206=>749, 1207=>677, 1210=>749, 1211=>644, 1216=>395,
+ 1217=>1124, 1218=>1137, 1219=>747, 1220=>606, 1223=>872, 1224=>667, 1227=>749, 1228=>667, 1231=>320, 1232=>757, 1233=>596, 1234=>757, 1235=>596, 1236=>1001, 1237=>940, 1238=>730,
+ 1239=>592, 1240=>820, 1241=>592, 1242=>820, 1243=>592, 1244=>1124, 1245=>1137, 1246=>623, 1247=>545, 1248=>564, 1249=>564, 1250=>872, 1251=>644, 1252=>872, 1253=>644, 1254=>820,
+ 1255=>602, 1256=>820, 1257=>602, 1258=>820, 1259=>602, 1260=>765, 1261=>560, 1262=>723, 1263=>580, 1264=>723, 1265=>580, 1266=>723, 1267=>580, 1268=>773, 1269=>622, 1270=>662,
+ 1271=>505, 1272=>984, 1273=>814, 4256=>693, 4257=>814, 4258=>793, 4259=>823, 4260=>703, 4261=>939, 4262=>876, 4263=>1053, 4264=>544, 4265=>719, 4266=>921, 4267=>901, 4268=>712,
+ 4269=>1028, 4270=>858, 4271=>794, 4272=>995, 4273=>703, 4274=>642, 4275=>972, 4276=>896, 4277=>976, 4278=>701, 4279=>703, 4280=>702, 4281=>703, 4282=>842, 4283=>896, 4284=>685,
+ 4285=>724, 4286=>703, 4287=>917, 4288=>958, 4289=>673, 4290=>827, 4291=>704, 4292=>802, 4293=>910, 4304=>510, 4305=>539, 4306=>565, 4307=>790, 4308=>519, 4309=>534, 4310=>578,
+ 4311=>815, 4312=>528, 4313=>527, 4314=>1011, 4315=>539, 4316=>539, 4317=>781, 4318=>538, 4319=>524, 4320=>780, 4321=>565, 4322=>731, 4323=>649, 4324=>771, 4325=>528, 4326=>813,
+ 4327=>531, 4328=>589, 4329=>540, 4330=>643, 4331=>541, 4332=>543, 4333=>520, 4334=>570, 4335=>656, 4336=>540, 4337=>580, 4338=>540, 4339=>540, 4340=>539, 4341=>631, 4342=>840,
+ 4343=>592, 4344=>541, 4345=>584, 4346=>351, 4347=>430, 4348=>539, 7426=>940, 7432=>509, 7433=>320, 7444=>989, 7446=>602, 7447=>602, 7453=>737, 7454=>948, 7455=>948, 7468=>455,
+ 7469=>630, 7470=>463, 7472=>505, 7473=>459, 7474=>459, 7475=>503, 7476=>549, 7477=>249, 7478=>252, 7479=>470, 7480=>418, 7481=>645, 7482=>551, 7483=>551, 7484=>516, 7486=>424,
+ 7487=>474, 7488=>420, 7489=>531, 7490=>647, 7491=>386, 7492=>386, 7493=>400, 7494=>618, 7495=>400, 7496=>400, 7497=>387, 7498=>387, 7499=>428, 7500=>340, 7501=>400, 7502=>175,
+ 7503=>365, 7504=>613, 7505=>399, 7506=>385, 7507=>346, 7508=>385, 7509=>385, 7510=>400, 7511=>247, 7512=>399, 7513=>464, 7514=>613, 7515=>373, 7522=>201, 7523=>347, 7524=>399,
+ 7525=>373, 7543=>640, 7544=>549, 7547=>372, 7557=>320, 7579=>488, 7580=>353, 7581=>353, 7582=>473, 7583=>428, 7584=>233, 7585=>316, 7586=>488, 7587=>399, 7588=>201, 7589=>201,
+ 7590=>201, 7591=>201, 7592=>318, 7593=>263, 7594=>263, 7595=>455, 7596=>613, 7597=>613, 7598=>495, 7599=>492, 7600=>487, 7601=>385, 7602=>473, 7603=>416, 7604=>299, 7605=>334,
+ 7606=>399, 7607=>477, 7609=>464, 7610=>355, 7611=>332, 7612=>418, 7613=>418, 7614=>452, 7615=>473, 7680=>722, 7681=>596, 7682=>735, 7683=>640, 7684=>735, 7685=>640, 7686=>735,
+ 7687=>640, 7688=>765, 7689=>560, 7690=>802, 7691=>640, 7692=>802, 7693=>640, 7694=>802, 7695=>640, 7696=>802, 7697=>640, 7698=>802, 7699=>640, 7700=>730, 7701=>592, 7702=>730,
+ 7703=>592, 7704=>730, 7705=>592, 7706=>730, 7707=>592, 7708=>730, 7709=>592, 7710=>694, 7711=>370, 7712=>799, 7713=>640, 7714=>872, 7715=>644, 7716=>872, 7717=>644, 7718=>872,
+ 7719=>644, 7720=>872, 7721=>644, 7722=>872, 7723=>644, 7724=>395, 7725=>320, 7728=>747, 7729=>606, 7730=>747, 7731=>606, 7732=>747, 7733=>606, 7734=>664, 7735=>320, 7736=>664,
+ 7737=>320, 7738=>664, 7739=>320, 7740=>664, 7741=>320, 7742=>1024, 7743=>948, 7744=>1024, 7745=>948, 7746=>1024, 7747=>953, 7748=>875, 7749=>644, 7750=>875, 7751=>644, 7752=>875,
+ 7753=>644, 7754=>875, 7755=>644, 7760=>820, 7761=>602, 7762=>820, 7763=>602, 7764=>673, 7765=>640, 7766=>673, 7767=>640, 7768=>753, 7769=>478, 7770=>753, 7771=>478, 7772=>753,
+ 7773=>478, 7774=>753, 7775=>478, 7776=>685, 7777=>513, 7778=>685, 7779=>513, 7784=>685, 7785=>513, 7786=>667, 7787=>402, 7788=>667, 7789=>402, 7790=>667, 7791=>402, 7792=>667,
+ 7793=>402, 7794=>843, 7795=>644, 7796=>843, 7797=>644, 7798=>843, 7799=>644, 7800=>843, 7801=>644, 7802=>843, 7803=>644, 7804=>722, 7805=>565, 7806=>722, 7807=>565, 7808=>1028,
+ 7809=>856, 7810=>1028, 7811=>856, 7812=>1028, 7813=>856, 7814=>1028, 7815=>856, 7816=>1028, 7817=>856, 7818=>712, 7819=>564, 7820=>712, 7821=>564, 7822=>660, 7823=>565, 7824=>695,
+ 7825=>527, 7826=>695, 7827=>527, 7828=>695, 7829=>527, 7830=>644, 7831=>402, 7832=>856, 7833=>565, 7834=>903, 7835=>513, 7840=>722, 7841=>596, 7842=>722, 7843=>596, 7852=>722,
+ 7853=>596, 7854=>722, 7855=>596, 7856=>722, 7857=>596, 7858=>722, 7859=>596, 7860=>722, 7861=>596, 7862=>722, 7863=>596, 7864=>730, 7865=>592, 7866=>730, 7867=>592, 7868=>730,
+ 7869=>592, 7878=>730, 7879=>592, 7880=>395, 7881=>320, 7882=>395, 7883=>320, 7884=>820, 7885=>602, 7886=>820, 7887=>602, 7896=>820, 7897=>602, 7908=>843, 7909=>644, 7910=>843,
+ 7911=>644, 7922=>660, 7923=>565, 7924=>660, 7925=>565, 7926=>660, 7927=>565, 7928=>660, 7929=>565, 7936=>675, 7937=>675, 7938=>675, 7939=>675, 7940=>675, 7941=>675, 7942=>675,
+ 7943=>675, 7944=>722, 7945=>722, 7946=>869, 7947=>869, 7948=>734, 7949=>763, 7950=>722, 7951=>722, 7952=>537, 7953=>537, 7954=>537, 7955=>537, 7956=>537, 7957=>537, 7960=>853,
+ 7961=>841, 7962=>1067, 7963=>1077, 7964=>1008, 7965=>1035, 7968=>599, 7969=>599, 7970=>599, 7971=>599, 7972=>599, 7973=>599, 7974=>599, 7975=>599, 7976=>998, 7977=>992, 7978=>1212,
+ 7979=>1224, 7980=>1159, 7981=>1183, 7982=>1098, 7983=>1095, 7984=>392, 7985=>392, 7986=>392, 7987=>392, 7988=>392, 7989=>392, 7990=>392, 7991=>392, 7992=>521, 7993=>512, 7994=>735,
+ 7995=>738, 7996=>679, 7997=>706, 7998=>624, 7999=>615, 8000=>602, 8001=>602, 8002=>602, 8003=>602, 8004=>602, 8005=>602, 8008=>820, 8009=>859, 8010=>1120, 8011=>1127, 8012=>937,
+ 8013=>964, 8016=>608, 8017=>608, 8018=>608, 8019=>608, 8020=>608, 8021=>608, 8022=>608, 8023=>608, 8025=>851, 8027=>1079, 8029=>1044, 8031=>953, 8032=>815, 8033=>815, 8034=>815,
+ 8035=>815, 8036=>815, 8037=>815, 8038=>815, 8039=>815, 8040=>829, 8041=>870, 8042=>1131, 8043=>1137, 8044=>946, 8045=>976, 8046=>938, 8047=>970, 8048=>675, 8049=>675, 8050=>537,
+ 8051=>537, 8052=>599, 8053=>599, 8054=>392, 8055=>392, 8056=>602, 8057=>602, 8058=>608, 8059=>608, 8060=>815, 8061=>815, 8064=>675, 8065=>675, 8066=>675, 8067=>675, 8068=>675,
+ 8069=>675, 8070=>675, 8071=>675, 8072=>722, 8073=>722, 8074=>869, 8075=>869, 8076=>734, 8077=>763, 8078=>722, 8079=>722, 8080=>599, 8081=>599, 8082=>599, 8083=>599, 8084=>599,
+ 8085=>599, 8086=>599, 8087=>599, 8088=>998, 8089=>992, 8090=>1212, 8091=>1224, 8092=>1159, 8093=>1183, 8094=>1098, 8095=>1095, 8096=>815, 8097=>815, 8098=>815, 8099=>815, 8100=>815,
+ 8101=>815, 8102=>815, 8103=>815, 8104=>829, 8105=>870, 8106=>1131, 8107=>1137, 8108=>946, 8109=>976, 8110=>938, 8111=>970, 8112=>675, 8113=>675, 8114=>675, 8115=>675, 8116=>675,
+ 8118=>675, 8119=>675, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>722, 8125=>500, 8126=>500, 8127=>500, 8128=>500, 8129=>500, 8130=>599, 8131=>599, 8132=>599, 8134=>599,
+ 8135=>599, 8136=>912, 8137=>900, 8138=>1063, 8139=>1039, 8140=>872, 8141=>500, 8142=>500, 8143=>500, 8144=>392, 8145=>392, 8146=>392, 8147=>392, 8150=>392, 8151=>392, 8152=>395,
+ 8153=>395, 8154=>588, 8155=>562, 8157=>500, 8158=>500, 8159=>500, 8160=>608, 8161=>608, 8162=>608, 8163=>608, 8164=>588, 8165=>588, 8166=>608, 8167=>608, 8168=>660, 8169=>660,
+ 8170=>921, 8171=>897, 8172=>790, 8173=>500, 8174=>500, 8175=>500, 8178=>815, 8179=>815, 8180=>815, 8182=>815, 8183=>815, 8184=>961, 8185=>835, 8186=>984, 8187=>853, 8188=>829,
+ 8189=>500, 8190=>500, 8192=>500, 8193=>1000, 8194=>500, 8195=>1000, 8196=>330, 8197=>250, 8198=>167, 8199=>636, 8200=>318, 8201=>200, 8202=>100, 8203=>0, 8204=>0, 8205=>0,
+ 8206=>0, 8207=>0, 8208=>338, 8209=>338, 8210=>636, 8213=>1000, 8215=>500, 8219=>318, 8223=>511, 8227=>590, 8228=>334, 8229=>667, 8234=>0, 8235=>0, 8236=>0, 8237=>0,
+ 8238=>0, 8239=>200, 8241=>1734, 8252=>527, 8253=>536, 8254=>500, 8263=>976, 8264=>753, 8265=>753, 8287=>222, 8288=>0, 8289=>0, 8290=>0, 8291=>0, 8292=>0, 8298=>0,
+ 8299=>0, 8300=>0, 8301=>0, 8302=>0, 8303=>0, 8304=>401, 8305=>201, 8308=>401, 8309=>401, 8310=>401, 8311=>401, 8312=>401, 8313=>401, 8314=>528, 8315=>528, 8316=>528,
+ 8317=>246, 8318=>246, 8319=>405, 8320=>401, 8321=>401, 8322=>401, 8323=>401, 8324=>401, 8325=>401, 8326=>401, 8327=>401, 8328=>401, 8329=>401, 8330=>528, 8331=>528, 8332=>528,
+ 8333=>246, 8334=>246, 8336=>386, 8337=>387, 8338=>385, 8339=>355, 8340=>387, 8358=>660, 8367=>1057, 8369=>706, 8372=>780, 8373=>636, 8451=>1119, 8457=>1047, 8462=>644, 8470=>946,
+ 8486=>829, 8487=>829, 8490=>747, 8491=>722, 8513=>775, 8514=>557, 8515=>557, 8516=>611, 8523=>890, 8531=>969, 8532=>969, 8533=>969, 8534=>969, 8535=>969, 8536=>969, 8537=>969,
+ 8538=>969, 8539=>969, 8540=>969, 8541=>969, 8542=>969, 8543=>568, 8544=>395, 8545=>590, 8546=>786, 8547=>966, 8548=>722, 8549=>981, 8550=>1176, 8551=>1372, 8552=>932, 8553=>712,
+ 8554=>932, 8555=>1127, 8556=>664, 8557=>765, 8558=>802, 8559=>1024, 8560=>320, 8561=>640, 8562=>959, 8563=>885, 8564=>565, 8565=>885, 8566=>1205, 8567=>1524, 8568=>884, 8569=>564,
+ 8570=>884, 8571=>1204, 8572=>320, 8573=>560, 8574=>640, 8575=>948, 8576=>1206, 8577=>802, 8578=>1206, 8579=>765, 8580=>560, 8592=>838, 8593=>838, 8594=>838, 8595=>838, 8596=>838,
+ 8597=>838, 8598=>838, 8599=>838, 8600=>838, 8601=>838, 8602=>838, 8603=>838, 8604=>838, 8605=>838, 8606=>838, 8607=>838, 8608=>838, 8609=>838, 8610=>838, 8611=>838, 8612=>838,
+ 8613=>838, 8614=>838, 8615=>838, 8616=>838, 8617=>838, 8618=>838, 8619=>838, 8620=>838, 8621=>838, 8622=>838, 8623=>838, 8624=>838, 8625=>838, 8626=>838, 8627=>838, 8628=>838,
+ 8629=>838, 8630=>838, 8631=>838, 8632=>838, 8633=>838, 8634=>838, 8635=>838, 8636=>838, 8637=>838, 8638=>838, 8639=>838, 8640=>838, 8641=>838, 8642=>838, 8643=>838, 8644=>838,
+ 8645=>838, 8646=>838, 8647=>838, 8648=>838, 8649=>838, 8650=>838, 8651=>838, 8652=>838, 8653=>838, 8654=>838, 8655=>838, 8656=>838, 8657=>838, 8658=>838, 8659=>838, 8660=>838,
+ 8661=>838, 8662=>838, 8663=>838, 8664=>838, 8665=>838, 8666=>838, 8667=>838, 8668=>838, 8669=>838, 8670=>838, 8671=>838, 8672=>838, 8673=>838, 8674=>838, 8675=>838, 8676=>838,
+ 8677=>838, 8678=>838, 8679=>838, 8680=>838, 8681=>838, 8682=>838, 8683=>838, 8684=>838, 8685=>838, 8686=>838, 8687=>838, 8688=>838, 8689=>838, 8690=>838, 8691=>838, 8692=>838,
+ 8693=>838, 8694=>838, 8695=>838, 8696=>838, 8697=>838, 8698=>838, 8699=>838, 8700=>838, 8701=>838, 8702=>838, 8703=>838, 8704=>604, 8706=>517, 8707=>542, 8708=>542, 8710=>698,
+ 8711=>698, 8712=>740, 8713=>740, 8715=>740, 8716=>740, 8719=>796, 8720=>796, 8721=>714, 8722=>838, 8723=>838, 8724=>838, 8725=>167, 8727=>680, 8728=>490, 8729=>490, 8730=>637,
+ 8731=>637, 8732=>637, 8733=>677, 8734=>833, 8735=>838, 8736=>838, 8739=>291, 8740=>479, 8741=>462, 8742=>634, 8743=>732, 8744=>732, 8745=>838, 8746=>838, 8747=>521, 8748=>852,
+ 8749=>1182, 8760=>838, 8761=>838, 8762=>838, 8763=>838, 8764=>838, 8765=>838, 8770=>838, 8771=>838, 8776=>838, 8784=>838, 8785=>838, 8786=>838, 8787=>838, 8788=>1033, 8789=>1033,
+ 8800=>838, 8801=>838, 8804=>838, 8805=>838, 8834=>838, 8835=>838, 8836=>838, 8837=>838, 8838=>838, 8839=>838, 8844=>838, 8845=>838, 8846=>838, 8847=>846, 8848=>846, 8849=>846,
+ 8850=>846, 8851=>838, 8852=>838, 8853=>838, 8854=>838, 8855=>838, 8856=>838, 8857=>838, 8858=>838, 8859=>838, 8860=>838, 8861=>838, 8862=>838, 8863=>838, 8864=>838, 8865=>838,
+ 8866=>860, 8867=>860, 8868=>940, 8869=>940, 8870=>567, 8871=>567, 8872=>860, 8873=>860, 8874=>860, 8875=>1031, 8876=>860, 8877=>860, 8878=>860, 8879=>1031, 8901=>342, 8962=>764,
+ 8968=>390, 8969=>390, 8970=>390, 8971=>390, 8976=>838, 8977=>513, 8984=>1000, 8985=>838, 8992=>521, 8993=>521, 8997=>1000, 9000=>1443, 9085=>919, 9134=>521, 9167=>945, 9251=>764,
+ 9472=>602, 9473=>602, 9474=>602, 9475=>602, 9476=>602, 9477=>602, 9478=>602, 9479=>602, 9480=>602, 9481=>602, 9482=>602, 9483=>602, 9484=>602, 9485=>602, 9486=>602, 9487=>602,
+ 9488=>602, 9489=>602, 9490=>602, 9491=>602, 9492=>602, 9493=>602, 9494=>602, 9495=>602, 9496=>602, 9497=>602, 9498=>602, 9499=>602, 9500=>602, 9501=>602, 9502=>602, 9503=>602,
+ 9504=>602, 9505=>602, 9506=>602, 9507=>602, 9508=>602, 9509=>602, 9510=>602, 9511=>602, 9512=>602, 9513=>602, 9514=>602, 9515=>602, 9516=>602, 9517=>602, 9518=>602, 9519=>602,
+ 9520=>602, 9521=>602, 9522=>602, 9523=>602, 9524=>602, 9525=>602, 9526=>602, 9527=>602, 9528=>602, 9529=>602, 9530=>602, 9531=>602, 9532=>602, 9533=>602, 9534=>602, 9535=>602,
+ 9536=>602, 9537=>602, 9538=>602, 9539=>602, 9540=>602, 9541=>602, 9542=>602, 9543=>602, 9544=>602, 9545=>602, 9546=>602, 9547=>602, 9548=>602, 9549=>602, 9550=>602, 9551=>602,
+ 9552=>602, 9553=>602, 9554=>602, 9555=>602, 9556=>602, 9557=>602, 9558=>602, 9559=>602, 9560=>602, 9561=>602, 9562=>602, 9563=>602, 9564=>602, 9565=>602, 9566=>602, 9567=>602,
+ 9568=>602, 9569=>602, 9570=>602, 9571=>602, 9572=>602, 9573=>602, 9574=>602, 9575=>602, 9576=>602, 9577=>602, 9578=>602, 9579=>602, 9580=>602, 9581=>602, 9582=>602, 9583=>602,
+ 9584=>602, 9585=>602, 9586=>602, 9587=>602, 9588=>602, 9589=>602, 9590=>602, 9591=>602, 9592=>602, 9593=>602, 9594=>602, 9595=>602, 9596=>602, 9597=>602, 9598=>602, 9599=>602,
+ 9600=>769, 9601=>769, 9602=>769, 9603=>769, 9604=>769, 9605=>769, 9606=>769, 9607=>769, 9608=>769, 9609=>769, 9610=>769, 9611=>769, 9612=>769, 9613=>769, 9614=>769, 9615=>769,
+ 9616=>769, 9617=>769, 9618=>769, 9619=>769, 9620=>769, 9621=>769, 9622=>769, 9623=>769, 9624=>769, 9625=>769, 9626=>769, 9627=>769, 9628=>769, 9629=>769, 9630=>769, 9631=>769,
+ 9632=>945, 9633=>945, 9634=>945, 9635=>945, 9636=>945, 9637=>945, 9638=>945, 9639=>945, 9640=>945, 9641=>945, 9642=>678, 9643=>678, 9644=>945, 9645=>945, 9646=>550, 9647=>550,
+ 9648=>769, 9649=>769, 9650=>769, 9651=>769, 9652=>502, 9653=>502, 9654=>769, 9655=>769, 9656=>502, 9657=>502, 9658=>769, 9659=>769, 9660=>769, 9661=>769, 9662=>502, 9663=>502,
+ 9664=>769, 9665=>769, 9666=>502, 9667=>502, 9668=>769, 9669=>769, 9670=>769, 9671=>769, 9672=>769, 9673=>873, 9674=>494, 9675=>873, 9676=>873, 9677=>873, 9678=>873, 9679=>873,
+ 9680=>873, 9681=>873, 9682=>873, 9683=>873, 9684=>873, 9685=>873, 9686=>527, 9687=>527, 9688=>791, 9689=>970, 9690=>970, 9691=>970, 9692=>387, 9693=>387, 9694=>387, 9695=>387,
+ 9696=>873, 9697=>873, 9698=>769, 9699=>769, 9700=>769, 9701=>769, 9702=>590, 9703=>945, 9704=>945, 9705=>945, 9706=>945, 9707=>945, 9708=>769, 9709=>769, 9710=>769, 9711=>1119,
+ 9712=>945, 9713=>945, 9714=>945, 9715=>945, 9716=>873, 9717=>873, 9718=>873, 9719=>873, 9720=>769, 9721=>769, 9722=>769, 9723=>830, 9724=>830, 9725=>732, 9726=>732, 9727=>769,
+ 9728=>896, 9784=>896, 9785=>896, 9786=>896, 9787=>896, 9788=>896, 9791=>614, 9792=>731, 9793=>731, 9794=>896, 9795=>896, 9796=>896, 9797=>896, 9798=>896, 9799=>896, 9824=>896,
+ 9825=>896, 9826=>896, 9827=>896, 9828=>896, 9829=>896, 9830=>896, 9831=>896, 9833=>472, 9834=>638, 9835=>896, 9836=>896, 9837=>472, 9838=>357, 9839=>484, 10145=>838, 10208=>494,
+ 10216=>390, 10217=>390, 10224=>838, 10225=>838, 10226=>838, 10227=>838, 10228=>1033, 10229=>1434, 10230=>1434, 10231=>1434, 10232=>1434, 10233=>1434, 10234=>1434, 10235=>1434, 10236=>1434, 10237=>1434,
+ 10238=>1434, 10239=>1434, 10240=>732, 10241=>732, 10242=>732, 10243=>732, 10244=>732, 10245=>732, 10246=>732, 10247=>732, 10248=>732, 10249=>732, 10250=>732, 10251=>732, 10252=>732, 10253=>732,
+ 10254=>732, 10255=>732, 10256=>732, 10257=>732, 10258=>732, 10259=>732, 10260=>732, 10261=>732, 10262=>732, 10263=>732, 10264=>732, 10265=>732, 10266=>732, 10267=>732, 10268=>732, 10269=>732,
+ 10270=>732, 10271=>732, 10272=>732, 10273=>732, 10274=>732, 10275=>732, 10276=>732, 10277=>732, 10278=>732, 10279=>732, 10280=>732, 10281=>732, 10282=>732, 10283=>732, 10284=>732, 10285=>732,
+ 10286=>732, 10287=>732, 10288=>732, 10289=>732, 10290=>732, 10291=>732, 10292=>732, 10293=>732, 10294=>732, 10295=>732, 10296=>732, 10297=>732, 10298=>732, 10299=>732, 10300=>732, 10301=>732,
+ 10302=>732, 10303=>732, 10304=>732, 10305=>732, 10306=>732, 10307=>732, 10308=>732, 10309=>732, 10310=>732, 10311=>732, 10312=>732, 10313=>732, 10314=>732, 10315=>732, 10316=>732, 10317=>732,
+ 10318=>732, 10319=>732, 10320=>732, 10321=>732, 10322=>732, 10323=>732, 10324=>732, 10325=>732, 10326=>732, 10327=>732, 10328=>732, 10329=>732, 10330=>732, 10331=>732, 10332=>732, 10333=>732,
+ 10334=>732, 10335=>732, 10336=>732, 10337=>732, 10338=>732, 10339=>732, 10340=>732, 10341=>732, 10342=>732, 10343=>732, 10344=>732, 10345=>732, 10346=>732, 10347=>732, 10348=>732, 10349=>732,
+ 10350=>732, 10351=>732, 10352=>732, 10353=>732, 10354=>732, 10355=>732, 10356=>732, 10357=>732, 10358=>732, 10359=>732, 10360=>732, 10361=>732, 10362=>732, 10363=>732, 10364=>732, 10365=>732,
+ 10366=>732, 10367=>732, 10368=>732, 10369=>732, 10370=>732, 10371=>732, 10372=>732, 10373=>732, 10374=>732, 10375=>732, 10376=>732, 10377=>732, 10378=>732, 10379=>732, 10380=>732, 10381=>732,
+ 10382=>732, 10383=>732, 10384=>732, 10385=>732, 10386=>732, 10387=>732, 10388=>732, 10389=>732, 10390=>732, 10391=>732, 10392=>732, 10393=>732, 10394=>732, 10395=>732, 10396=>732, 10397=>732,
+ 10398=>732, 10399=>732, 10400=>732, 10401=>732, 10402=>732, 10403=>732, 10404=>732, 10405=>732, 10406=>732, 10407=>732, 10408=>732, 10409=>732, 10410=>732, 10411=>732, 10412=>732, 10413=>732,
+ 10414=>732, 10415=>732, 10416=>732, 10417=>732, 10418=>732, 10419=>732, 10420=>732, 10421=>732, 10422=>732, 10423=>732, 10424=>732, 10425=>732, 10426=>732, 10427=>732, 10428=>732, 10429=>732,
+ 10430=>732, 10431=>732, 10432=>732, 10433=>732, 10434=>732, 10435=>732, 10436=>732, 10437=>732, 10438=>732, 10439=>732, 10440=>732, 10441=>732, 10442=>732, 10443=>732, 10444=>732, 10445=>732,
+ 10446=>732, 10447=>732, 10448=>732, 10449=>732, 10450=>732, 10451=>732, 10452=>732, 10453=>732, 10454=>732, 10455=>732, 10456=>732, 10457=>732, 10458=>732, 10459=>732, 10460=>732, 10461=>732,
+ 10462=>732, 10463=>732, 10464=>732, 10465=>732, 10466=>732, 10467=>732, 10468=>732, 10469=>732, 10470=>732, 10471=>732, 10472=>732, 10473=>732, 10474=>732, 10475=>732, 10476=>732, 10477=>732,
+ 10478=>732, 10479=>732, 10480=>732, 10481=>732, 10482=>732, 10483=>732, 10484=>732, 10485=>732, 10486=>732, 10487=>732, 10488=>732, 10489=>732, 10490=>732, 10491=>732, 10492=>732, 10493=>732,
+ 10494=>732, 10495=>732, 10496=>838, 10497=>838, 10498=>838, 10499=>838, 10500=>838, 10501=>838, 10502=>838, 10503=>838, 10504=>838, 10505=>838, 10506=>838, 10507=>838, 10508=>838, 10509=>838,
+ 10510=>838, 10511=>838, 10512=>838, 10513=>838, 10514=>838, 10515=>838, 10516=>838, 10517=>838, 10518=>838, 10519=>838, 10520=>838, 10521=>838, 10522=>838, 10523=>838, 10524=>838, 10525=>838,
+ 10526=>838, 10527=>838, 10528=>838, 10529=>838, 10530=>838, 10531=>838, 10532=>838, 10533=>838, 10534=>838, 10535=>838, 10536=>838, 10537=>838, 10538=>838, 10539=>838, 10540=>838, 10541=>838,
+ 10542=>838, 10543=>838, 10544=>838, 10545=>838, 10546=>838, 10547=>838, 10548=>838, 10549=>838, 10550=>838, 10551=>838, 10552=>838, 10553=>838, 10554=>838, 10555=>838, 10556=>838, 10557=>838,
+ 10558=>838, 10559=>838, 10560=>838, 10561=>838, 10562=>838, 10563=>838, 10564=>838, 10565=>838, 10566=>838, 10567=>838, 10568=>838, 10569=>838, 10570=>838, 10571=>838, 10572=>838, 10573=>838,
+ 10574=>838, 10575=>838, 10576=>838, 10577=>838, 10578=>838, 10579=>838, 10580=>838, 10581=>838, 10582=>838, 10583=>838, 10584=>838, 10585=>838, 10586=>838, 10587=>838, 10588=>838, 10589=>838,
+ 10590=>838, 10591=>838, 10592=>838, 10593=>838, 10594=>838, 10595=>838, 10596=>838, 10597=>838, 10598=>838, 10599=>838, 10600=>838, 10601=>838, 10602=>838, 10603=>838, 10604=>838, 10605=>838,
+ 10606=>838, 10607=>838, 10608=>838, 10609=>838, 10610=>838, 10611=>838, 10612=>838, 10613=>838, 10614=>838, 10615=>981, 10616=>838, 10617=>838, 10618=>984, 10619=>838, 10620=>838, 10621=>838,
+ 10622=>838, 10623=>838, 10731=>494, 10764=>1513, 10765=>521, 10766=>521, 10799=>838, 11008=>838, 11009=>838, 11010=>838, 11011=>838, 11012=>838, 11013=>838, 11014=>838, 11015=>838, 11016=>838,
+ 11017=>838, 11018=>838, 11019=>838, 11020=>838, 11021=>838, 11022=>838, 11023=>838, 11024=>838, 11025=>838, 11026=>945, 11027=>945, 11028=>945, 11029=>945, 11030=>769, 11031=>769, 11032=>769,
+ 11033=>769, 11034=>945, 11367=>872, 11368=>644, 11369=>747, 11370=>606, 11371=>695, 11372=>527, 11381=>740, 11382=>556, 11383=>700, 11800=>536, 11822=>536, 63172=>505, 63173=>602, 63174=>640,
+ 63175=>644, 63176=>947, 63185=>500, 63188=>500, 64256=>708, 64257=>667, 64258=>667, 64259=>941, 64260=>986, 64261=>744, 64262=>916, 65024=>0, 65025=>0, 65026=>0, 65027=>0, 65028=>0,
+ 65029=>0, 65030=>0, 65031=>0, 65032=>0, 65033=>0, 65034=>0, 65035=>0, 65036=>0, 65037=>0, 65038=>0, 65039=>0, 65529=>0, 65530=>0, 65531=>0, 65532=>0, 65533=>1025);
+$enc='';
+$diff='';
+$file='dejavuserifi.z';
+$ctg='dejavuserifi.ctg.z';
+$originalsize=275844;
+?>
diff --git a/lib/tcpdf/fonts/dejavuserifi.z b/lib/tcpdf/fonts/dejavuserifi.z
new file mode 100644
index 0000000000..d076e5c3d6
Binary files /dev/null and b/lib/tcpdf/fonts/dejavuserifi.z differ
diff --git a/lib/tcpdf/fonts/freefont-20060126/AUTHORS b/lib/tcpdf/fonts/freefont-20060126/AUTHORS
new file mode 100644
index 0000000000..205038846d
--- /dev/null
+++ b/lib/tcpdf/fonts/freefont-20060126/AUTHORS
@@ -0,0 +1,181 @@
+-*- mode:text; coding:utf-8; -*-
+$Id$
+
+The free UCS scalable font collection is being maintained by Primo¾
+Peterlin . The folowing list
+cites the other contributors that contributed to particular ISO 10646
+blocks.
+
+* URW++ Design & Development GmbH
+
+ Basic Latin (U+0041-U+007A)
+ Latin-1 Supplement (U+00C0-U+00FF) (most)
+ Latin Extended-A (U+0100-U+017F)
+ Spacing Modifier Letters (U+02B0-U+02FF)
+ Mathematical Operators (U+2200-U+22FF) (parts)
+ Block Elements (U+2580-U+259F)
+ Dingbats (U+2700-U+27BF)
+
+* Yannis Haralambous and John
+ Plaice
+
+ Latin Extended-B (U+0180-U+024F)
+ IPA Extensions (U+0250-U+02AF)
+ Greek (U+0370-U+03FF)
+ Armenian (U+0530-U+058F)
+ Hebrew (U+0590-U+05FF)
+ Arabic (U+0600-U+06FF)
+ Currency Symbols (U+20A0-U+20CF)
+ Arabic Presentation Forms-A (U+FB50-U+FDFF)
+ Arabic Presentation Forms-B (U+FE70-U+FEFF)
+
+* Young U. Ryu
+
+ Arrows (U+2190-U+21FF)
+ Mathematical Symbols (U+2200-U+22FF)
+
+* Valek Filippov
+
+ Cyrillic (U+0400-U+04FF)
+
+* Wadalab Kanji Comittee
+
+ Hiragana (U+3040-U+309F)
+ Katakana (U+30A0-U+30FF)
+
+* Angelo Haritsis
+
+ Greek (U+0370-U+03FF)
+
+* Yannis Haralambous and Virach Sornlertlamvanich
+
+ Thai (U+0E00-U+0E7F)
+
+* Shaheed R. Haque
+
+ Bengali (U+0980-U+09FF)
+
+* Sam Stepanyan
+
+ Armenian (U+0530-U+058F)
+
+* Mohamed Ishan
+
+ Thaana (U+0780-U+07BF)
+
+* Sushant Kumar Dash
+
+ Oriya (U+0B00-U+0B7F)
+
+* Harsh Kumar
+
+ Devanagari (U+0900-U+097F)
+ Bengali (U+0980-U+09FF)
+ Gurmukhi (U+0A00-U+0A7F)
+ Gujarati (U+0A80-U+0AFF)
+
+* Prasad A. Chodavarapu
+
+ Telugu (U+0C00-U+0C7F)
+
+* Frans Velthuis and Anshuman Pandey
+
+
+ Devanagari (U+0900-U+097F)
+
+* Hardip Singh Pannu
+
+ Gurmukhi (U+0A00-U+0A7F)
+
+* Jeroen Hellingman
+
+ Oriya (U+0B00-U+0B7F)
+ Malayalam (U+0D00-U+0D7F)
+
+* Thomas Ridgeway
+
+ Tamil (U+0B80-U+0BFF)
+
+* Berhanu Beyene <1beyene AT informatik.uni-hamburg.de>,
+ Prof. Dr. Manfred Kudlek , Olaf
+ Kummer , and Jochen Metzinger >
+
+ Ethiopic (U+1200-U+137F)
+
+* Maxim Iorsh
+
+ Hebrew (U+0590-U+05FF)
+
+* Vyacheslav Dikonov
+
+ Syriac (U+0700-U+074A)
+ Braille (U+2800-U+28FF)
+
+* Panayotis Katsaloulis
+
+ Greek Extended (U+1F00-U+1FFF)
+
+* M.S. Sridhar
+
+ Devanagari (U+0900-U+097F)
+ Bengali (U+0980-U+09FF)
+ Gurmukhi (U+0A00-U+0A7F)
+ Gujarati (U+0A80-U+0AFF)
+ Oriya (U+0B00-U+0B7F)
+ Tamil (U+0B80-U+0BFF)
+ Telugu (U+0C00-U+0C7F)
+ Kannada (U+0C80-U+0CFF)
+ Malayalam (U+0D00-U+0D7F)
+
+* DMS Electronics, The Sri Lanka Tipitaka Project, and Noah Levitt
+
+
+ Sinhala (U+0D80-U+0DFF)
+
+* Dan Shurovich Chirkov
+
+ Cyrillic (U+0400-U+04FF)
+
+* Abbas Izad
+
+ Arabic (U+0600-U+06FF)
+ Arabic Presentation Forms-A (U+FB50-U+FDFF)
+ Arabic Presentation Forms-B (U+FE70-U+FEFF)
+
+* Denis Jacquerye
+
+ Latin Extended-B (U+0180-U+024F)
+ IPA Extensions (U+0250-U+02AF)
+
+* K.H. Hussain and R. Chitrajan
+
+ Malayalam (U+0D00-U+0D7F)
+
+* Solaiman Karim and Omi Azad
+
+ Bengali (U+0980-U+09FF)
+
+* Sonali Sonania and Monika Shah
+
+
+ Devanagari (U+0900-U+097F)
+ Gujarati (U+0A80-U+0AFF)
+
+* Pravin Satpute , Bageshri Salvi
+ , Rahul Bhalerao and Sandeep Shedmake
+
+ Devanagari (U+0900-U+097F)
+ Gujarati (U+0A80-U+0AFF)
+ Oriya (U+0B00-U+0B7F)
+ Malayalam (U+0D00-U+0D7F)
+ Tamil (U+0B80-U+0BFF)
+
+
+* Kulbir Singh Thind
+
+ Gurmukhi (U+0A00-U+0A7F)
+
+
+Please see the CREDITS file for details on who contributed particular
+subsets of the glyphs in font files.
diff --git a/lib/tcpdf/fonts/freefont-20060126/COPYING b/lib/tcpdf/fonts/freefont-20060126/COPYING
new file mode 100644
index 0000000000..7f1c9b60a7
--- /dev/null
+++ b/lib/tcpdf/fonts/freefont-20060126/COPYING
@@ -0,0 +1,341 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-13017, USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C) 19yy
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) 19yy name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ , 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Library General
+Public License instead of this License.
diff --git a/lib/tcpdf/fonts/freefont-20060126/CREDITS b/lib/tcpdf/fonts/freefont-20060126/CREDITS
new file mode 100644
index 0000000000..a688962494
--- /dev/null
+++ b/lib/tcpdf/fonts/freefont-20060126/CREDITS
@@ -0,0 +1,480 @@
+-*- mode:text; coding:utf-8; -*-
+$Id$
+
+This file lists the contributors and contributions to the free UCS
+scalable font project.
+
+
+* URW++ Design & Development GmbH
+
+URW++ donated a set of 35 core PostScript Type 1 fonts to the
+Ghostscript project , to be available
+under the terms of GNU General Public License (GPL).
+
+ Basic Latin (U+0041-U+007A)
+ Latin-1 Supplement (U+00C0-U+00FF)
+ Latin Extended-A (U+0100-U+017F)
+ Spacing Modifier Letters (U+02B0-U+02FF)
+ Mathematical Operators (U+2200-U+22FF)
+ Block Elements (U+2580-U+259F)
+ Dingbats (U+2700-U+27BF)
+
+
+* Yannis Haralambous and John
+ Plaice
+
+Yannis Haralambous and John Plaice are the authors of Omega
+typesetting system, . Omega is an
+extension of TeX. Its first release, aims primarily at improving TeX's
+multilingual abilities. In Omega all characters and pointers into
+data-structures are 16-bit wide, instead of 8-bit, thereby eliminating
+many of the trivial limitations of TeX. Omega also allows multiple
+input and output character sets, and uses programmable filters to
+translate from one encoding to another, to perform contextual
+analysis, etc. Internally, Omega uses the universal 16-bit Unicode
+standard character set, based on ISO-10646. These improvements not
+only make it a lot easier for TeX users to cope with multiple or
+complex languages, like Arabic, Indic, Khmer, Chinese, Japanese or
+Korean, in one document, but will also form the basis for future
+developments in other areas, such as native color support and
+hypertext features. ... Fonts for UT1 (omlgc family) and UT2 (omah
+family) are under development: these fonts are in PostScript format
+and visually close to Times and Helvetica font families. (from the
+Omega WWW site). Omega fonts are available subject to GPL
+.
+
+ Latin Extended-B (U+0180-U+024F)
+ IPA Extensions (U+0250-U+02AF)
+ Greek (U+0370-U+03FF)
+ Armenian (U+0530-U+058F)
+ Hebrew (U+0590-U+05FF)
+ Arabic (U+0600-U+06FF)
+ Currency Symbols (U+20A0-U+20CF)
+ Arabic Presentation Forms-A (U+FB50-U+FDFF)
+ Arabic Presentation Forms-B (U+FE70-U+FEFF)
+
+
+* Valek Filippov
+
+Valek Filippov added Cyrillic glyphs and composite Latin Extended A to
+the whole set of the abovementioned URW set of 35 PostScript core
+fonts, . The fonts are available under
+GPL.
+
+ Latin Extended-A (U+0100-U+017F)
+ Cyrillic (U+0400-U+04FF)
+
+
+* Wadalab Kanji Comittee
+
+Between April 1990 and March 1992, Wadalab Kanji Comittee put together
+a series of scalable font files with Japanese scripts, in four forms:
+Sai Micho, Chu Mincho, Cho Kaku and Saimaru. The font files are
+written in custom file format, while tools for conversion into
+Metafont and PostScript Type 1 are also supplied. The Wadalab Kanji
+Comittee has later been dismissed, and the resulting files can be now
+found on the FTP server of the Depertment of Mathematical Engineering
+and Information Physics, Faculty of Engineering, University of Tokyo
+.
+
+ Hiragana (U+3040-U+309F)
+ Katakana (U+30A0-U+30FF)
+
+
+* Young U. Ryu
+
+Young Ryu is the author of Txfonts, a set of mathematical symbols
+designed to accompany text typeset in Times or its variants. In the
+documentation, Young adresses the design of mathematical symbols: "The
+Adobe Times fonts are thicker than the CM fonts. Designing math fonts
+for Times based on the rule thickness of Times = , , + , / , < ,
+etc. would result in too thick math symbols, in my opinion. In the TX
+fonts, these glyphs are thinner than those of original Times
+fonts. That is, the rule thickness of these glyphs is around 85% of
+that of the Times fonts, but still thicker than that of the CM fonts."
+TX fonts are are distributed under the GNU public license
+(GPL). Pointers to their location are available on
+.
+
+ Arrows (U+2190-U+21FF)
+ Mathematical Symbols (U+2200-U+22FF)
+
+
+* Angelo Haritsis
+
+Angelo Haritsis has compiled a set of Greek Type 1 fonts, available on
+.
+The glyphs from this source has been used to compose Greek glyphs in
+FreeSans and FreeMono.
+
+Angelo's licence says: "You can enjoy free use of these fonts for
+educational or commercial purposes. All derived works should include
+this paragraph. If you want to change something please let me have
+your changes (via email) so that they can go into the next
+version. You can also send comments etc to the above address."
+
+ Greek (U+0370-U+03FF)
+
+
+* Yannis Haralambous and Virach Sornlertlamvanich
+
+In 1999, Yannis Haralambous and Virach Sornlertlamvanich made a set of
+glyphs covering the Thai national standard NF3, in both upright and
+slanted shape. The collection of glyphs have been made part of GNU
+intlfonts 1.2 package and is available on
+ under GPL.
+
+ Thai (U+0E00-U+0E7F)
+
+
+* Shaheed R. Haque
+
+Shaheed Haque has developed a basic set of basic Bengali glyphs
+(without ligatures), using ISO10646 encoding. They are available under
+the XFree86 license at .
+
+Copyright (C) 2001 S.R.Haque . All Rights Reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL S.R.HAQUE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of S.R.Haque shall not be
+used in advertising or otherwise to promote the sale, use or other
+dealings in this Software without prior written authorization from
+S.R.Haque.
+
+ Bengali (U+0980-U+09FF)
+
+
+* Sam Stepanyan
+
+Sam Stepanyan created a set of Armenian sans serif glyphs visually
+compatible with Helvetica or Arial. Available on
+. On
+2002-01-24, Sam writes: "Arial Armenian font is free for
+non-commercial use, so it is OK to use under GPL license."
+
+ Armenian (U+0530-U+058F)
+
+
+* Mohamed Ishan
+
+Mohamed Ishan has started a Thaana Unicode Project
+ and among other things created a
+couple of Thaana fonts, available under FDL or BDF license.
+
+ Thaana (U+0780-U+07BF)
+
+
+* Sushant Kumar Dash (*)
+
+Sushant Dash has created a font in his mother tongue, Oriya. As he
+states on his web page :
+"Please feel free to foreword this mail to your Oriya friends. No
+copyright law is applied for this font. It is totally free!!! Feel
+free to modify this using any font editing tools. This is designed for
+people like me, who are away from Orissa and want to write letters
+home using Computers, but suffer due to unavailability of Oriya
+fonts.(Or the cost of the available packages are too much)."
+
+ Oriya (U+0B00-U+0B7F)
+
+
+* Harsh Kumar
+
+Harsh Kumar has started BharatBhasha -
+an effort to provide "FREE software, Tutorial, Source Codes
+etc. available for working in Hindi, Marathi, Gujarati, Gurmukhi and
+Bangla. You can type text, write Web pages or develop Indian Languages
+Applications on Windows and on Linux. We also offer FREE help to
+users, enthusiasts and software developers for their work in Indian
+languages."
+
+ Devanagari (U+0900-U+097F)
+ Bengali (U+0980-U+09FF)
+ Gurmukhi (U+0A00-U+0A7F)
+ Gujarati (U+0A80-U+0AFF)
+
+
+* Prasad A. Chodavarapu
+
+Prasad A. Chodavarapu created Tikkana, a Telugu font available in Type
+1 and TrueType format on .
+Tikkana exceeds the Unicode Telugu range with some composite glyphs.
+Available under the GNU General Public License.
+
+ Telugu (U+0C00-U+0C7F)
+
+
+* Frans Velthuis and Anshuman Pandey
+
+
+In 1991, Frans Velthuis from the Groningen University, The
+Netherlands, released a Devanagari font as Metafont source, available
+under the terms of GNU GPL. Later, Anshuman Pandey from the Washington
+University, Seattle, USA, took over the maintenance of font. Fonts can
+be found on CTAN, . I
+converted the font to Type 1 format using P-Béter Szabó's TeXtrace-A
+program and removed some
+redundant control points with PfaEdit.
+
+ Devanagari (U+0900-U+097F)
+
+
+* Hardip Singh Pannu
+
+In 1991, Hardip Singh Pannu has created a free Gurmukhi TrueType font,
+available as regular, bold, oblique and bold oblique form. Its license
+says "Please remember that these fonts are copyrighted (by me) and are
+for non-profit use only."
+
+ Gurmukhi (U+0A00-U+0A7F)
+
+
+* Jeroen Hellingman
+
+Jeroen Hellingman created a set of Malayalam metafonts in 1994, and a
+set of Oriya metafonts in 1996. Malayalam fonts were created as
+uniform stroke only, while Oriya metafonts exist in both uniform and
+modulated stroke. From private communication: "It is my intention to
+release the fonts under GPL, but not all copies around have this
+notice on them." Metafonts can be found on CTAN,
+ and
+.
+
+ Oriya (U+0B00-U+0B7F)
+ Malayalam (U+0D00-U+0D7F)
+
+
+* Thomas Ridgeway <> (*)
+
+Thomas Ridgeway, then at the Humanities And Arts Computing Center,
+Washington University, Seattle, USA, (now defunct), created a Tamil
+metafont in 1990. Anshuman Pandey from the same university took over
+the maintenance of font. Fonts can be found at CTAN,
+.
+
+ Tamil (U+0B80-U+0BFF)
+
+
+* Berhanu Beyene <1beyene AT informatik.uni-hamburg.de>,
+ Prof. Dr. Manfred Kudlek , Olaf
+ Kummer , and Jochen Metzinger >
+
+Beyene, Kudlek, Kummer and Metzinger from the Theoretical Foundations
+of Computer Science, University of Hamburg, prepared a set of Ethiopic
+metafonts, found on
+. They also
+maintain home page on the Ethiopic font project,
+,
+and can be reached at . The current
+version of fonts is 0.7 (1998), and they are released under GNU GPL. I
+converted the fonts to Type 1 format using P-Béter Szabó's TeXtrace-A
+program and removed some
+redundant control points with PfaEdit.
+
+ Ethiopic (U+1200-U+137F)
+
+
+* Maxim Iorsh
+
+In 2002, Maxim Iorsh started the Culmus project, aiming at providing
+Hebrew-speaking Linux and Unix community with a basic collection of
+Hebrew fonts for X Windows. The fonts are visually compatible with
+URW++ Century Schoolbook L, URW++ Nimbus Sans L and URW++ Nimbus Mono
+L families, respectively, and are released under GNU GPL license. See
+also .
+
+ Hebrew (U+0590-U+05FF)
+
+
+* Panayotis Katsaloulis
+
+Panayotis Katsaloulis helped fixing Greek accents in the Greek
+Extended area.
+
+ Greek Extended (U+1F00-U+1FFF)
+
+
+* Vyacheslav Dikonov
+
+Vyacheslav Dikonov made a Braille unicode font that could be merged
+with the UCS fonts to fill the 2800-28FF range completely. (uniform
+scaling is possible to adapt it to any cell size). He also contributed
+a free syriac font, whose glyphs (about half of them) are borrowed
+from the "Carlo Ator" font freely downloadable from
+. Vyacheslav also filled in a few missing
+spots in the U+2000-U+27FF area, e.g. the box drawing section, sets of
+subscript and superscript digits and capital Roman numbers.
+
+ Syriac (U+0700-U+074A)
+ Box Drawing (U+2500-U+257F)
+ Braille (U+2800-U+28FF)
+
+
+* M.S. Sridhar
+
+M/S Cyberscape Multimedia Limited, Mumbai, developers of Akruti
+Software for Indian Languages (http://www.akruti.com/), have released
+a set of TTF fonts for nine Indian scripts (Devanagari, Gujarati,
+Telugu, Tamil, Malayalam, Kannada, Bengali, Oriya, and Gurumukhi)
+under the GNU General Public License (GPL). You can download the fonts
+from the Free Software Foundation of India WWW site
+(http://www.gnu.org.in/software/software.html#akruti) or from the
+Akruti website.
+
+For any further information or assistance regarding these fonts,
+please contact mssridhar AT vsnl.com.
+
+ Devanagari (U+0900-U+097F)
+ Bengali (U+0980-U+09FF)
+ Gurmukhi (U+0A00-U+0A7F)
+ Gujarati (U+0A80-U+0AFF)
+ Oriya (U+0B00-U+0B7F)
+ Tamil (U+0B80-U+0BFF)
+ Telugu (U+0C00-U+0C7F)
+ Kannada (U+0C80-U+0CFF)
+ Malayalam (U+0D00-U+0D7F)
+
+
+* DMS Electronics, The Sri Lanka Tipitaka Project, and Noah Levitt
+
+
+Noah Levitt found out that the Sinhalese fonts available on the site
+ are released under GNU GPL, or,
+precisely, "Public Domain under GNU Licence
+ Produced by DMS
+Electronics for The Sri Lanka Tipitaka Project" (taken from the font
+comment), and took the effort of recoding the font to Unicode.
+
+ Sinhala (U+0D80-U+0DFF)
+
+
+* Daniel Shurovich Chirkov
+
+Dan Chirkov updated the FreeSerif font with the missing Cyrillic
+glyphs needed for conformance to Unicode 3.2. The effort is part of
+the Slavjanskij package for Mac OS X,
+.
+
+ Cyrillic (U+0400-U+04FF)
+
+
+* Denis Jacquerye
+
+Denis Jacquerye added new glyphs and corrected existing ones in the
+Latin Extended-B and IPA Extensions ranges.
+
+ Latin Extended-B (U+0180-U+024F)
+ IPA Extensions (U+0250-U+02AF)
+
+
+* K.H. Hussain and R. Chitrajan
+
+`Rachana' in Malayalam means `to write', `to create'. Rachana Akshara
+Vedi, a team of socially committed information technology
+professionals and philologists, has applied developments in computer
+technology and desktop publishing to resurrect the Malayalam language
+from the disorder, fragmentation and degeneration it had suffered
+since the attempt to adapt the Malayalam script for using with a
+regular mechanical typewriter, which took place in
+1967-69. K.H. Hussein at the Kerala Forest Research Institute has
+released "Rachana Normal" fonts with approximately 900 glyphs required
+to typeset traditional Malayalam. R. Chitrajan apparently encoded the
+glyphs in the OpenType table.
+
+ Malayalam (U+0D00-U+0D7F)
+
+
+* Solaiman Karim
+
+ Bengali (U+0980-U+09FF)
+
+Solaiman Karim has developed several OpenType Bangla fonts and
+released them under GNU GPL on www.ekushey.org.
+
+
+* Sonali Sonania and Monika Shah
+
+
+ Devanagari (U+0900-U+097F)
+ Gujarati (U+0A80-U+0AFF)
+
+Glyphs were drawn by Cyberscape Multimedia Ltd., #101,Mahalakshmi
+Mansion 21st Main 22nd "A" Cross Banashankari 2nd stage Banglore
+560070, India. Converted to OTF by IndicTrans Team, Powai, Mumbai,
+lead by Prof. Jitendra Shah. Maintained by Monika Shah and Sonali
+Sonania of janabhaaratii Team, C-DAC, Mumbai. This font is released
+under GPL by Dr. Alka Irani and Prof Jitendra Shah, janabhaaratii
+Team, C-DAC, Mumabi. janabhaaratii is localisation project at C-DAC
+Mumbai (formerly National Centre for Software Technology); funded by
+TDIL, Govt. of India. Contact:monika_shah AT lycos.com,
+sonalisonania AT yahoo.com, jitendras AT vsnl.com, alka AT ncst.ernet.in.
+website: www.janabhaaratii.org.in.
+
+
+* Pravin Satpute , Bageshri Salvi
+ , Rahul Bhalerao and Sandeep Shedmake
+
+ Devanagari (U+0900-U+097F)
+ Gujarati (U+0A80-U+0AFF)
+ Oriya (U+0B00-U+0B7F)
+ Malayalam (U+0D00-U+0D7F)
+ Tamil (U+0B80-U+0BFF)
+
+In December 2005 the team at www.gnowledge.org released a set of two
+Unicode pan-Indic fonts: "Samyak" and "Samyak Sans". "Samyak" font
+belongs to serif style and is an original work of the team; "Samyak
+Sans" font belongs to sans serif style and is actually a compilation
+of already released Indic fonts (Gargi, Padma, Mukti, Utkal, Akruti
+and ThendralUni). Both fonts are based on Unicode standard. You can
+download the font files (released under GNU/GPL License) from
+http://www.gnowledge.org/Gnoware/localization/font.htm
+
+
+* Kulbir Singh Thind
+
+ Gurmukhi (U+0A00-U+0A7F)
+
+Dr. Kulbir Singh Thind designed a set of Gurmukhi Unicode fonts,
+AnmolUni and AnmolUni-Bold, which are available under the terms of GNU
+Generel Public Licens from the Punjabu Computing Resource Center,
+http://guca.sourceforge.net/typography/fonts/anmoluni/.
+
+
+* Primož Peterlin
+
+Primož Peterlin filled in missing glyphs here and there (e.g. Latin
+Extended-B and IPA Extensions ranges in the FreeMono familiy), and
+created the following UCS blocks:
+
+ Latin Extended-B (U+0180-U+024F)
+ IPA Extensions (U+0250-U+02AF)
+ Arrows (U+2190-U+21FF)
+ Box Drawing (U+2500-U+257F)
+ Block Elements (U+2580-U+259F)
+ Geometrical Shapes (U+25A0-U+25FF)
+
+
+Notes:
+
+*: The glyph collection looks license-compatible, but its author has
+ not yet replied and agreed on his/her work being used in part of
+ this glyph collection.
diff --git a/lib/tcpdf/fonts/freefont-20060126/ChangeLog b/lib/tcpdf/fonts/freefont-20060126/ChangeLog
new file mode 100644
index 0000000000..f269114bf2
--- /dev/null
+++ b/lib/tcpdf/fonts/freefont-20060126/ChangeLog
@@ -0,0 +1,1443 @@
+$Id$
+
+2006-01-26 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd: added U+0569, U+0571, U+0579, U+057B,
+ U+0586. Armenian small letters completed.
+
+ * sfd/FreeSerif.sfd: added U+0297, U+02AD-02AF. IPA Extensions
+ section is now complete. Copied a dozen of glyphs from Omega IPA
+ to Phonetic Extension section.
+
+2006-01-25 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: added U+01A, U+01A3, U+01A6, U+01B2, U+01BA,
+ U+01BB, U+01BE, U+01BF.
+
+ * sfd/FreeSans.sfd: aligned small Armenian letters to x-height in
+ response to bug #15480. Armenian in Free Sans needs a major
+ cleanup.
+
+2006-01-24 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd: changed U+0452, U+045B. Cleanup: U+0460,
+ U+0461, U+04Bc, U+04BD, U+0508.
+
+ * sfd/FreeSansOblique.sfd: replaced accented chars in Latin-1 and
+ Latin Extended-B sections with references, where possible.
+
+ * sfd/FreeSerif.sfd: changed U+0285.
+
+2006-01-23 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: added U+0195, U+01AA, U+0297, U+03D7,
+ U+03F0. Several flipped references replaced by outlines.
+
+ * sfd/FreeSansOblique.sfd: Latin Extended-B section more or less
+ brought in sync with FreeSans.
+
+ * sfd/FreeMonoBoldOblique.sfd: added glyphs from FreeMonoBold in
+ the Latin Extended-B and IPA Extensions sections.
+
+ * sfd/FreeSerifBold.sfd: Added U+0224, U+0225. Changed U+01B7,
+ U+01B8, U+04E0, U+0452, U+045B. Replaced accented characters in
+ the Cyrillic region with references.
+
+2006-01-21 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: added U+0255, U+0264, U+0277, U+0286,
+ U+029D. Changed U+0261. Deleted spurious glyphs in the control
+ code area.
+
+2006-01-19 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: replaced Hardip Pannu Singh's Gurmukhi with
+ AnmolUni by Kulbir Singh Thind.
+
+2006-01-17 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd: Added U+018D, U+0194, U+01B5, U+01B6,
+ U+01BE, U+0262, U+02A2.
+
+ * sfd/FreeSansBold.sfd: Changed U+0261 in order to distinguish it
+ from U+0067. Changed U+0251, U+0252.
+
+ * sfd/FreeSerifBold.sfd: Small changes in the Cyrillic
+ section. Added U+0183, U+018C.
+
+ * sfd/FreeSans.sfd: Added U+2045, U+2046.
+
+ * sfd/FreeSansBold.sfd: Filled in the Gurkmukhi part with the
+ AnmolUni-Bold by Kulbir Singh Thind. Also some minor corrections
+ in the Cyrillic part.
+
+ * CREDITS: Added Kulbir Singh Thind.
+
+ * AUTHORS: Added Kulbir Singh Thind.
+
+2006-01-14 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd: Thomas Ridgeway's Tamil characters replaced
+ by the ones released by the Samyak font project.
+
+ * CREDITS: Added Pravin Satpute, Bageshri Salvi, Rahul Bhalerao
+ and Sandeep Shedmake
+
+ * AUTHORS: Added Pravin Satpute, Bageshri Salvi, Rahul Bhalerao
+ and Sandeep Shedmake
+
+2006-01-08 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd, sfd/FreeMonoBoldOblique.sfd: minor changes.
+
+2006-01-05 Denis Jacquerye
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
+ sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
+ sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
+ sfd/FreeSerifBoldItalic.sfd: added cedi sign U+20B5, Ghanaian
+ currency
+
+2005-12-29 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: minor cleanup in the Gujarati part.
+
+2005-12-22 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: Devanagari and Gujarati parts cleared; once
+ again merged with Gargi 1.9 and Padmaa 0.6, this time correctly so
+ that the anchor points survived the merger.
+
+2005-12-16 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: added U+0577.
+
+2005-12-15 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: added U+0559, U+055F, U+2024.
+
+ * sfd/FreeSansBold.sfd: added U+056E, U+0573.
+
+2005-12-14 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: Merged with Gargi 1.9 and Padmaa 0.6,
+ courtesy Monika Shah and Sonali Sonania from C-DAC, Mumbai.
+
+ * CREDITS: Added Monika Shah and Sonali Sonania.
+
+ * AUTHORS: Added Monika Shah and Sonali Sonania.
+
+2005-12-13 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - Removed Sinhala glyphs.
+
+ * sfd/FreeSerif.sfd - Added Sinhala glyphs, formerly in FreeSans.
+
+2005-12-09 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd: added U+20AF, U+211E. Changed U+20AC (EURO
+ SIGN).
+
+ * tools/freefont-ttf.spec: Added specification file for building
+ RPM package, courtesy Rok Papez.
+
+ * sfd/FreeSerifBold.sfd: added more glyphs from Txfonts to the
+ Arrows and Mathematical Symbols ranges.
+
+ * sfd/FreeSerifBoldItalic.sfd: added U+03F5 from Txfonts.
+
+2005-12-08 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: added U+0567, U+056A, U+056C, U+0582.
+
+ * sfd/FreeSerifBold.sfd: copied Box Drawing range from FreeSans.
+
+ * sfd/FreeSerifBold.sfd: added glyphs from Txfonts to the Arrows
+ and Mathematical Symbols ranges.
+
+ * sfd/FreeSerif.sfd: added U+2259-225A, U+22BA, U+2308-230B,
+ U+2322-2323. Cyrillic composite characters replaced with
+ references.
+
+2005-12-07 Primoz Peterlin
+
+ * sfd/FreeSerifBold.sfd: added U+025A, U+025D, U+026B, U+029B,
+ U+02AE, U+02AF, U+02DE.
+
+ * sfd/FreeSerifBold.sfd: updated Hebrew part with Drugulin font
+ from the Culmus project.
+
+ * sfd/FreeSerif.sfd: added U+207A-207C, U+208A-208C, U+2215-2216.
+
+ * sfd/FreeSans.sfd: added U+2320 TOP HALF INTEGRAL, U+23AE
+ INTEGRAL EXTENSION, U+2321 BOTTOM HALF INTEGRAL (bug #13370).
+
+2005-12-07 Primoz Peterlin
+
+ * sfd/FreeSerifBold.sfd: added U+0294-0296, U+02A1-02A2. Started
+ adding "below" anchors. Performed hinting on characters that were
+ not hinted "en masse".
+
+2005-12-06 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: fixed some more metrics problems in the
+ Extended Greek area; performed hinting on characters that were not
+ hinted "en masse".
+
+ * Makefile: clean also signature files.
+
+ * sfd/FreeMonoBoldOblique.sfd, sfd/FreeMonoBold.sfd: cosmetic
+ changes; cleaning background of referenced composed characters.
+
+2005-12-05 Panayotis Katsaloulis
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
+ sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
+ sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
+ sfd/FreeSerifBoldItalic.sfd: Some changes to the greek glyphs,
+ mostly having to do with "tonos" (accent)
+
+2005-12-05 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: minor cosmetic changes.
+
+ * sfd/FreeSans.sfd: adjusted widths of characters in the Extended
+ Greek range; accents are not any more considerably overhanging on
+ the left side. Added U+1EDA-1EE3, U+1EE8-1EF1.
+
+ * sfd/FreeSans.sfd: continued working on Extended Greek range;
+ metrics still not finished.
+
+2005-12-03 Primoz Peterlin
+
+ * sfd/FreeSans.sfd: fixed combined Greek accents (bug
+ #12800). Width of characters still need to be adjusted as in
+ FreeSerif.
+
+ * sfd/FreeSerif.sfd: fixed positions of Greek accents (bug #12798).
+
+ * CREDITS: Added Panayotis Katsaloulis.
+
+ * AUTHORS: Added Panayotis Katsaloulis.
+
+ * Makefile: minor changes; now creating also a tarfile with sfds.
+
+2005-12-01 Primoz Peterlin
+
+ * sfd/FreeSerifItalic.sfd: added U+0183, U+018C, U+01C0, U+01C1,
+ U+01C3, U+01E0, U+01E1, U+01F8, U+01F9.
+
+ * Makefile: created a Makefile to assist building.
+
+ * README: an update.
+
+ * COPYING: added GNU General Public License, version 2.
+
+ * tools/GenerateTrueType: wrote a FontForge script for conversion
+ to TrueType.
+
+ * sfd/FreeSerif.sfd: merged with SolaimanLipi Bangla OpenType font
+ from www.ekushey.org, courtesy Solaiman Karim.
+
+ * sfd/FreeSerifItalic.sfd: merged with SolaimanLipi Bangla
+ OpenType font from www.ekushey.org, slanted by 15.5 degrees.
+
+ * sfd/FreeSans.sfd: merged with Rupali Bangla OpenType font from
+ www.ekushey.org
+
+ * sfd/FreeSansOblique.sfd: merged with Rupali Bangla OpenType font from
+ www.ekushey.org, slanted by 12 degrees.
+
+ * CREDITS: added Solaiman Karim
+
+ * AUTHORS: added Solaiman Karim
+
+2005-11-30 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd: merged with the Rachana Normal.
+
+ * AUTHORS: added K.H. Hussain and R. Chitrajan
+
+ * CREDITS: added K.H. Hussain and R. Chitrajan
+
+2005-11-23 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - cleaned some background images.
+
+ * sfd/FreeSans.sfd - added U+01A0-01A1, U+01AF-01B0, U+026E,
+ U+028F, U+0291, U+02A3-02A5, U+031B. Modified U+0198.
+
+2005-11-22 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - added U+2504-250B.
+
+ * sfd/FreeSans.sfd - added U+2591-25A1, U+25A3-25A5, U+25AA, U+25AC.
+
+ * sfd/FreeSans.sfd, sfd/FreeSansBold.sfd - added U+0263.
+
+2005-11-21 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - corrected positions of some Greek diacritics
+ on page 0x1F.
+
+ * sfd/FreeMonoOblique.sfd - working on bringing it in sync with
+ FreeMono.sfd.
+
+ * sfd/FreeSerifBoldItalic.sfd - applied the sequence suggested by
+ Werner Lemberg for reducing redundant points. Added a couple of
+ glyphs in the IPA Extensions region.
+
+ * sfd/FreeSansBold.sfd - added U+0574, U+0576. Removed overlaps.
+
+2005-11-20 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - added U+02AA-02AC, U+02B0-02B2.
+
+2005-11-19 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - added U+01B7-01B9, U+0196, U+019A, U+01C3,
+ U+0224-0225, U+025E, U+029A, U+2422. Changed U+0184-0185, U+0192,
+ U+01B4, U+0282, U+0284.
+
+2005-11-18 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - added U+02EE, U+207F.
+
+ * sfd/FreeSans.sfd - started Box Drawing area.
+
+2005-11-17 Primoz Peterlin
+
+ * sfd/FreeSerifBold.sfd - added glyphs from the Omega project to
+ Latin Extended-B, IPA Extensions and Greek ranges.
+
+ * sfd/FreeSerifBoldItalic.sfd - added glyphs from the Omega
+ project to Latin Extended-B, IPA Extensions and Greek ranges.
+
+ * sfd/FreeSerifItalic.sfd - added glyphs from the Omega
+ project to Latin Extended-B, IPA Extensions and Greek ranges.
+
+ * sfd/FreeSerifItalic.sfd - added U+018B, U+025C, U+0265, U+026F,
+ U+0279, U+0287, U+028C-028E, U+029E.
+
+ * sfd/FreeSerifBoldItalic.sfd - added U+1EDA-1EE3, U+1EE8-1EF1,
+ U+2190-219B, U+219E-21A8, U+21B9-21BA, U+21C4-21CA, U+21E4-21E5,
+ U+2669-266F. MES-1 compliant.
+
+ * sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd, sfd/FreeSansOblique.sfd,
+ sfd/FreeSansBold.sfd, sfd/FreeSansBoldOblique.sfd,
+ sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
+ sfd/FreeSerifBoldItalic.sfd - added U+FFFD.
+
+ * sfd/FreeSerif.sfd - removed overlaps in Latin Extended-B and IPA
+ Extensions ranges.
+
+2005-11-16 Primoz Peterlin
+
+ * sfd/FreeSerifItalic.sfd - applied the sequence suggested by
+ Werner Lemberg for reducing redundant points.
+
+ * sfd/papers/eurotex2003/freefont.tex,
+ sfd/papers/eurotex2003/freefont.bib - Revised version, sent back
+ by Karl Berry on 20050110, that should match the one published in
+ TUGboat.
+
+ * sfd/FreeSerifItalic.sfd - started added accent anchors. Added a
+ handful of Greek letters from Omega font collection.
+
+ * sfd/FreeSerif.sfd - added a handful of letters in the Latin
+ Extended-B and IPA Extension ranges from the Omega font collection.
+
+2005-11-16 Denis Jacquerye
+
+ * sfd/FreeSerif.sfd - moved U+0263 to U+0264; added U+0263
+
+ * sfd/FreeSerifItalic.sfd - fixe U+01EE; added U+01B7-U+01B9
+
+2005-11-16 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - Made small Greek letters the same height as
+ Latin and Cyrillic ones and replaced them with references, where
+ applicable.
+
+ * sfd/FreeSerif.sfd - replaced Greek letters with references,
+ where applicable. Added U+03D7, U+03F0-03F2.
+
+ * sfd/FreeSerif.sfd - added U+0255, U+025A, U+025D, U+025F,
+ U+0262-0263, U+026B-026C, U+0274, U+0276-0277, U+028F, U+0291,
+ U+029D.
+
+ * sfd/FreeMonoOblique.sfd - applied the sequence suggested by
+ Werner Lemberg for reducing redundant points. Added U+F6BE.
+
+ * sfd/FreeSansOblique.sfd - applied the sequence suggested by
+ Werner Lemberg for reducing redundant points.
+
+ * sfd/FreeSans.sfd - changed U+01A5.
+
+2005-11-16 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - applied the sequence suggested by Werner
+ Lemberg for reducing redundant points. Replaced accented glyphs in
+ the Latin-1 and Latin Extended-A areas with references. Made
+ capital Greek letters the same height as Latin and Cyrillic ones
+ and replaced them with references, where applicable.
+
+2005-11-15 Denis Jacquerye
+
+ * sfd/FreeSans.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeSansOblique.sfd - fixed
+ U+026A, it was a dotlessi and therefore like U+0069 when
+ accented.
+
+2005-11-15 Primoz Peterlin
+
+ * sfd/FreeMonoBold.sfd - corrected Greek tonos (slanted instead of
+ a vertical line).
+
+ * sfd/FreeMonoBoldOblique.sfd - applied the sequence suggested by
+ Werner Lemberg for reducing redundant points. Replaced accented
+ glyphs in the Latin-1 and Latin Extended-A areas with references.
+
+2005-11-14 Primoz Peterlin
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
+ sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
+ sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
+ sfd/FreeSerifBoldItalic.sfd - Added 2005 in copyright info.
+
+ * sfd/FreeSansBoldOblique.sfd - applied the sequence suggested by
+ Werner Lemberg for reducing redundant points. Replaced accented
+ glyphs in the Latin-1 area with references.
+
+ * sfd/FreeSansBoldOblique.sfd - added U+0180, U+0184, U+0185,
+ U+0195, U+01A0-01A2, U+01AF-01B0, U+025E, U+026E, U+0292,
+ U+0294-0296, U+029A, U+02A1, U+2126-2127, U+2190-219B,
+ U+219E-21A8, U+21C4-21CA, U+2669-266F. MES-1 compliant.
+
+ * sfd/FreeMono.sfd - Replaced accented glyphs in the Greek and
+ Cyrillic areas with references.
+
+ * sfd/FreeMonoBold.sfd - applied the sequence suggested by Werner
+ Lemberg for reducing redundant points. Replaced accented glyphs in
+ the Latin-1 and Latin Extended-A areas with references.
+
+2005-11-14 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - applied the sequence suggested by Werner
+ Lemberg for reducing redundant points.
+
+ * sfd/FreeSansBold.sfd - added U+219A, U+219B, U+2669-266F.
+
+ * sfd/FreeSerifBold.sfd - added U+2669-266F.
+
+2005-11-12 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd - added U+0180, U+0181, U+0183, U+0187,
+ U+0188, U+018A, U+018C, U+018D, U+0193, U+019C, U+01A0, U+01A1,
+ U+01AC, U+01AF, U+01B0, U+025C, U+0260, U+026E, U+0277, U+0281,
+ U+0284.
+
+2005-11-11 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd - added U+195, U+1A6, U+025E, U+026E,
+ U+029A, U+0313, U+0314, U+0342, U+0344, U+0345. Started adding
+ accent anchors.
+
+ * sfd/FreeMono.sfd - applied the sequence for reducing redundant
+ points, suggested by Werner Lemberg.
+
+ * sfd/FreeMono.sfd - corrected Greek letters (using tonos instead
+ of a vertical line). Added U+026E, U+F6BE. Accented characters in
+ Latin 1, Latin Extended A and partly Latin Extended B replaced by
+ references.
+
+ * sfd/FreeSerifBold.sfd - applied the sequence for reducing
+ redundant points, suggested by Werner Lemberg. Added U+01A5,
+ U+02A0, U+2190-219B, U+219E-21A8, U+21B8, U+21B9, U+21C4-21CA,
+ U+21E4, U+21E5.
+
+2005-11-10 Primoz Peterlin
+
+ * sfd/FreeSansOblique - changed U+0192, U+01A5; added U+01C0-01C3.
+
+ * sfd/FreeSansBold.sfd - replaced glyphs with references in the
+ Cyrillic area. Removed U+04A8, U+04A9. Added U+04C5, U+04C6,
+ U+04C9, U+04CA, U+04CD, U+04CE, U+0535, U+053F, U+0546, U+0565,
+ U+0584, U+0587, U+0589.
+
+2005-11-10 Denis Jacquerye
+
+ * sfd/FreeSans.sfd - added U+028A-U+028B
+
+ * sfd/FreeSansOblique - added U+028A-U+028B, U+0276,
+ U+0292, U+0294-U+0296, U+0298-U+0299 and U+029B; fixed some
+ other glyphs
+
+2005-11-10 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - added U+01A6. Simplified outlines in the
+ ASCII range.
+
+ * sfd/FreeSansBold.sfd - added U+00A0, U+00AD, U+0531, U+2126,
+ U+2190-2199, U+219E-21A8, U+21C4-21CA.
+
+ * sfd/FreeSansBold.sfd - applied the sequence for reducing
+ redundant points, suggested by Werner Lemberg. Added automatically
+ constructed accented characters in page 0x1E.
+
+2005-11-09 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - added U+0183, U+018C.
+
+ * sfd/FreeSans.sfd - added U+1EA2, U+1EA3, U+1EA8, U+1EA9, U+1EB2,
+ U+1EB3, U+1EBA, U+1EBB, U+1EC2, U+1EC3, U+1EC8, U+1EC9, U+1ECE,
+ U+1ECF, U+1ED4, U+1ED5, U+1EE6, U+1EE7, U+1EF6, U+1EF7, U+220A,
+ U+220B, U+220D, U+2272, U+2273, U+2282, U+2283.
+
+ * sfd/FreeSerifItalic.sfd - changed U+03D5.
+
+ * sfd/FreeSerifBoldItalic.sfd - changed U+03C6; added U+2070,
+ U+2075-2079, U+207F, U+2080, U+2085-2089, U+2155-217F.
+
+ * sfd/FreeSerif.sfd - added U+0184, U+0185, U+018D, U+0195,
+ U+0197, U+019A, U+019B, U+01A0, U+01A1, U+01AC, U+01B5, U+01B6,
+ U+01C0, U+01C1, U+01C3, U+01F6, U+0294-0296, U+1E9A, U+1EDA-1EE3,
+ U+1EE8-1EF1.
+
+2005-11-07 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd - added U+0562, U+056D. U+0575.
+
+ * sfd/FreeMono.sfd - added U+0589.
+
+2005-11-06 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - added U+0278, U+03D5, U+2248. Corrected
+ U+2071, U+222E, U+2242, U+2243 in response to bug reports
+ http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276118
+ http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276120
+
+ * sfd/FreeMono.sfd - added U+2227, U+2228, U+2262. Corrected
+ U+2299-229D in response to bug report
+ http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276121
+
+ * sfd/FreeMonoBold.sfd - added U+2010, U+2012 in response to bug
+ report http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=289032
+ Swapped U+03C6 (Greek small letter phi) and U+03D5 (Greek phi
+ symbol) in order to conform to Unicode standard. Simplified glyph
+ shapes in ASCII range. Started adding "above" and "below" anchors.
+
+2005-11-05 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - accented letters in Latin Extended-A
+ replaced by references wherever possible.
+
+ * sfd/FreeSerif.sfd - added U+0180, U+0181, U+0187, U+0188,
+ U+018A, U+0193, U+019C, U+01A4, U+01A5, U+01A7, U+01A8, U+01AF,
+ U+01B0, U+026E, U+0270, U+0278, U+0280, U+0281, U+028B, U+0299,
+ U+029C, U+029F.
+
+2005-11-03 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd - added U+0180, U+0184, U+0185, U+0192,
+ U+019B, U+01A0-01A2, U+01AF, U+01B0, U+01EE, U+01EF, U+0292,
+ U+0294-0296, U+02A1, U+0532, U+054C, U+057C, U+222B. Changed
+ U+014B, U+01A5, U+01B4, U+03BB.
+
+ * sfd/FreeSans.sfd - added U+04C5, U+04C6, U+04C9, U+04CA, U+04D,
+ U+04CE.
+
+ * sfd/FreeSansBold.sfd - cleaner Arabic outlines. Added U+01E4,
+ U+01E5.
+
+2005-11-02 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd - started Armenian; added U+0538, U+0542,
+ U+0544, U+0548, U+054D, U+054F, U+0550, U+0553, U+0555, U+0561,
+ U+0563, U+0564, U+0566, U+0568 U+056B, U+056F, U+0570, U+0572,
+ U+0578, U+057A, U+057D-057F, U+0580, U+0581, U+0583, U+0585.
+
+ * sfd/FreeMono.sfd - swapped U+03C6 (Greek small letter phi) and
+ U+03D5 (Greek phi symbol) in order to conform to Unicode standard.
+ Added U+04C5, U+04C6, U+04C9, U+04CA, U+04D, U+04CE.
+
+2005-11-01 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd - modified U+019C.
+
+ * sfd/FreeSansBoldOblique.sfd - added U+00A0, U+00AD, U+019C,
+ U+01B7, U+01B8, U+0275, U+0278, U+0298, U+2012, U+2015,
+ U+2070-207F, U+2080-208E, U+2153-217F, U+2213, U+2215.
+
+2005-10-31 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - added U+0199, U+01AB, U+0265, U+0282,
+ U+0288, U+028C-028E, U+0290, U+029E, U+02A0.
+
+2005-10-28 Primoz Peterlin
+
+ * sfd/FreeSerifBold.sfd - added U+019E, U+01AB, U+01AD, U+01B1,
+ U+0256, U+025F, U+0265, U+0269, U+026F, U+0270, U+0279-027F,
+ U+0282, U+0287, U+0288, U+028C-028E, U+0290.
+
+ * sfd/FreeSerifBold.sfd - added U+2070, U+2075-2079, U+2080,
+ U+2085-2089, U+2153-215E, U+2113-2115, U+2119.
+
+ * sfd/FreeSerifBold.sfd - added U+0199, U+019B, U+01B8, U+01B9,
+ U+01BE, U+01C0, U+0262, U+0274, U+0278, U+0280, U+028F, U+0298,
+ U+0299, U+029C, U+029E, U+029F, U+2012, U+2015, U+2016, U+2129,
+ U+2217.
+
+2005-10-27 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - added U+018D, U+0194, U+019B, U+019C, U+01B5,
+ U+01B6, U+0295, U+0296, U+029B, U+02A2, U+0472, U+0473, U+2114,
+ U+2119.
+
+ * sfd/FreeSerifItalic.sfd - minor cleanup in the superscript range
+ (U+2070-2079).
+
+ * sfd/FreeSansBold.sfd - added subscripts and superscripts
+ (U+2070-208F), completed fractions (U+2152-215F) and Roman
+ numerals (U+2160-217F).
+
+ * sfd/FreeSerifBold.sfd - added U+018B, U+018E, U+018F, U+0191,
+ U+019D, U+01A7, U+01A8, U+01AE, U+0253, U+0266, U+0267, U+026A,
+ U+0271-0273, U+0283, U+0285.
+
+2005-10-26 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - added "above" anchors to selected Cyrillic
+ characters. Added U+0294, U+02A1.
+
+ * sfd/FreeMono.sfd - added U+2011, U+2012, U+203B, U+204A, U+2071,
+ U+2129, U+2232, U+2233. Changed and/or corrected U+2106, U+211E,
+ U+2126, U+2127, U+2153-215F, U+2202.
+
+ * sfd/FreeMono.sfd - a try to imitate Denis' work on adding
+ anchors by adding "above" anchor to a couple of basic Latin
+ characters.
+
+ * sfd/FreeSansBold.sfd - added U+0278, U+0298. Cleaned up outlines
+ of most Greek letters.
+
+ * sfd/FreeSansBold.sfd - Added U+2010-2012, U+2015, U+2032,
+ U+203C, U+2047-2049.
+
+ * sfd/FreeSans.sfd - Added U+01C0-01C2, U+0276, U+0292,
+ U+0298. Changed U+0251, U+0294, U+02A1.
+
+2005-10-25 Primoz Peterlin
+
+ * sfd/FreeSerifItalic.sfd - added U+00A0, U+00AD, U+2010-2012,
+ U+2015, U+2126, U+2127, U+2153-215E, U+2160-217F, U+2190-2193,
+ U+2669-266F. FreeSerifItalic is now MES-1 compliant.
+
+ * sfd/FreeSerif.sfd - added U+0191, U+019D, U+01AE, U+027E,
+ U+027F, U+0283, U+0285.
+
+ * sfd/FreeSerif.sfd - added U+019E, U+01AD, U+01B8, U+01B9,
+ U+0253, U+0256, U+0257, U+025C, U+0260, U+0266, U+0267, U+0269,
+ U+026D, U+0271-0273, U+0279-027D.
+
+ * sfd/FreeSerifBoldItalic.sfd - added U+00A0, U+00AD, U+2010-2012,
+ U+2015, U+2032-2034, U+203C, U+2047-204A, U+2074, U+2081-2084,
+ U+2126, U+2153, U+2154, U+215F, U+2215. Corrected positions of
+ diacritics on U+0200-0217.
+
+ * sfd/FreeSansOblique.sfd, sfd/FreeSans.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeMonoBoldOblique.sfd,
+ sfd/FreeMonoBold.sfd, sfd/FreeSerifItalic.sfd,
+ sfd/FreeSerifBold.sfd sfd/FreeSerifBoldItalic.sfd - brought in
+ sync with Valek Filipov's urw-fonts-1.0.7pre41.
+
+ * sfd/FreeSansOblique.sfd - added U+00A0, U+2011-2012, U+2015,
+ U+2070, U+2071, U+2074-2079, U+2080-2089, U+2126, U+2153-215F,
+ U+2190-2195, U+2215, U+266A. FreeSansOblique is now MES-1
+ compliant.
+
+2005-10-24 Denis Jacquerye
+
+ * sfd/FreeSans.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansOblique.sfd, sfd/FreeSansBoldOblique.sfd - added
+ ccmp for i and j to be substituted with dotless i or j when
+ followed by above diacritic
+
+2005-10-24 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - added U+2011, U+2012, U+2015. FreeSans is now
+ MES-1 conformant.
+
+2005-10-23 Denis Jacquerye
+
+ * sfd/FreeSans.sfd - added above, below, abovemk and belowmk
+ anchors for diacritics placement to many Basic Latin characters,
+ some Latin Extented A and B, and some IPA characters; fixed a
+ couple of precomposed characters to have diacritics at the same
+ height as similar characters.
+
+2005-10-21 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - added U+02B9, U+02BA, U+02CD, U+2017,
+ U+2036, U+2037, U+203C, U+203E, U+2047-204A.
+
+2005-10-20 Primoz Peterlin
+
+ * sfd/FreeSerifBold.sfd - added U+0182, U+0189, U+0192, U+019F,
+ U+01A9, U+01B7, U+01C4-01CC, U+01E0-1E2, U+01F0-01F3, U+F6BE.
+ Corrected position of diacritics on U+0200-0217.
+
+ * sfd/FreeSerif.sfd - added U+00A0, U+00AD, U+0182, U+0189,
+ U+018B, U+018E, U+018F, U+0192, U+019F, U+01A9, U+01B1, U+01B7,
+ U+01DD, U+2010-2013, U+2015. FreeSerif is now MES-1 conformant.
+
+2005-10-19 Denis Jacquerye
+
+ * sfd/FreeSerif.sfd - added U+0268, U+026A, U+0289, U+0292; and
+ anchor "above" to more base glyphs.
+
+ * sfd/FreeSerifBold.sfd, sfd/FreeSerifItalic.sfd,
+ sfd/FreeSerifBoldItalic.sfd - added U+0250-0252, U+0258-0259,
+ U+0261, U+0268, U+026A, U+0279, U+0289
+
+ * sfd/FreeSerifBold.sfd - added anchor "above" to marks
+ U+0300-0314, and to base glyphs (vowels).
+
+2005-10-18 Denis Jacquerye
+
+ * sfd/FreeSerif.sfd - added anchor "above" to marks U+0300-0314,
+ and bases vowel of the U+0041-007A range, U+00E6, U+0186, U+0190,
+ U+0254 and U+025B; fixed Latin-1 Supplement block accented glyphs
+ to use references.
+
+2005-10-17 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd - added U+01B7, U+01B8, U+0275.
+
+2005-10-16 Denis Jacquerye
+ * sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd - added some Latin
+ Extended-B African letters: U+0181, U+018A, U+0197-0198, U+01A4,
+ U+01AC, U+01B1, U+01B3-01B4;
+
+ * sfd/FreeSansBold.sfd, sfd/FreeSansBoldOblique.sfd - added Latin
+ Extended-B U+0187, 018E-018F, U+0191, U+0193, U+0197-0199,
+ U+019D-019F, U+01AB-01AE; correcting width of non-space
+ Combining Diacrtical Marks; added more glyphs to IPA Extensions
+ to match non Bold
+
+ * sfd/FreeSansBoldOblique.sfd - added many accented glyphs to
+ Latin Extended-B
+
+2005-10-15 Denis Jacquerye
+ * sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd - added IPA Extensions
+ U+0262,U+0274,U+0280-0281, U+0299, U+029F, and Spacing Modifier
+ Letters U+02C9-02CB; fixed U+0287,029E height to baseline; added
+ stroke to U+0268
+
+ * sfd/FreeSansOblique.sfd - fixed skew on U+027F
+
+ * sfd/FreeSansBold.sfd, sfd/FreeSansBoldOblique.sfd - added to Latin
+ Extended-B U+01A7-01A8, IPA Extensions U+0251-0253, U+0256-0257,
+ U+0261, U+0265-026A, U+026F-0273, U+0289, U+028C-028E
+
+ * sfd/FreeSansBoldOblique.sfd - added to Latin extended-B U+0189,
+ U+01A8, U+01B1, U+0283, U+02C9 and Spacing Modifiers U+02C9-02CB
+
+2005-10-14 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd - Added a couple of composite glyphs,
+ mostly in the IPA and Latin Extended B ranges.
+
+2005-10-13 Denis Jacquerye
+
+ * FreeSans.sfd - removed overlap and simplified U+0187, 0191,
+ 0193, 01A5, 01AE, 0260, 0271, 0272, 0273, 027B; fixed diacritics
+ placement on U+0200-0217; fixed glyph for U+0283 to correct esh
+ without stroke; added U+025F and fixed U+025F from it; fixed
+ height of glyph at U+0285; arranged U+027E,027F to make more
+ distinguishable from U+0072.
+
+ * FreeSansOblique.sfd - added the corrected or new glyphs from
+ FreeSans; diacritics on U+200-0217 will need height readjustements.
+
+ * FreeSansBold.sfd, FreeSansBoldOblique.sfd - added U+0186, 0190,
+ 0250, 0254, 0258, 0259, 025B, 025C
+
+2005-10-13 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Minor changes: U+22A2, U+22A3, U+22A6, U+23AE.
+ Added U+0250, U+0251, U+0258, U+0259, U+0275.
+
+ * sfd/FreeSerifItalic.sfd - Added glyphs U+222B-U+222F, U+2320,
+ U+2321. Fixed diacritics on U+0200-U+0217.
+
+2005-10-12 Denis Jacquerye
+
+ * sfd/FreeSerif.sfd - Corrected diacritics position on
+ U+01D5-01D9,01DB,01EA-01ED,0200-0217 and U+022A.
+
+ * sfd/FreeSerif.sfd, sfd/FreeSerifBold.sfd, sfd/FreeSerifItalic.sfd,
+ sfd/FreeSerifBoldItalic.sfd - added U+0186,0190,0254 and U+025B.
+
+2005-10-11 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Fixed bug #13399 (glyphs for U+0360 and
+ U+0361 were swapped).
+
+ * sfd/FreeSerif.sfd - Attempt to correct bug #13370: INTEGRAL
+ EXTENSION does not align with TOP/BOTTOM HALF INTEGRAL; added
+ glyph U+23AE.
+
+2005-05-16 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Corrected shapes for Cross of Lorraine and
+ Cross of Jerusalem.
+
+2005-04-07 Primoz Peterlin
+
+ * sfd/FreeSansBold.sfd - Added some combining accents, just to
+ test the a version of FontForge.
+
+2003-12-05 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Some composite Latin characters rebuilt, as
+ they had accents 600 points to the left due to changes on October
+ 2. Some other minor changes in the mathematics area.
+
+2003-10-08 Primoz Peterlin
+
+ * sfd/FreeMonoOblique.sfd, sfd/FreeSerifBoldItalic.sfd,
+ FreeSerifItalic.sfd - applied Josef Segur's corrections from
+ Oct. 5.
+
+2003-10-02 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Abbas Izad's contributed Arabic/Farsi
+ characters added.
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
+ sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
+ sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
+ sfd/FreeSerifBoldItalic.sfd - Combining characters (U+0300 -
+ U+036F) moved left, so that they have negative horizontal values
+ and zero advance width.
+
+2003-09-15 Primoz Peterlin
+
+ * sfd/FreeSerifBold.sfd, sfd/FreeSerifItalic.sfd - Started working
+ on super- and subscripts.
+
+2003-09-12 Primoz Peterlin
+
+ * sfd/FreeSans.sfd, sfd/FreeSerif.sfd - Added some missing
+ Hiragana and Katakana characters.
+
+ * sfd/FreeSansBold.sfd - Cleared background characters in Latin
+ Extended-A. Added some automatically constructed characters in
+ Latin Extended-B. Started with superscripts and subscripts.
+
+ * sfd/FreeSans.sfd - Subscript numerals (U+2080-U+2089) completed.
+
+2003-05-19 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Thai characters po pla and bo baimai
+ swapped; Thai character fongman corrected; all courtesy Theppitak
+ Karoonboonyanan.
+
+2003-05-17 Panayotis Katsaloulis
+
+ * sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
+ sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - Full support
+ of all ancient greek glyphs
+
+2003-05-15 Primoz Peterlin
+
+ * tools/KerningNumerals.pl - A Perl script for moving kerning
+ information from ASCII numerals (U+0030...) to characters in the
+ Adobe corporate use area (U+F6xx).
+
+ * sfd/FreeSansBold.sfd, sfd/FreeSansOblique.sfd,
+ sfd/FreeSansBoldOblique.sfd - Created kerned numerals in the Adobe
+ corporate use area (U+F6xx) and moved kerning information from
+ ASCII numerals to the kerned numerals.
+
+2003-05-14 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - First approximation of super- and subscript
+ numerals and vulgar fractions.
+
+ * sfd/FreeSerif.sfd - Super- and subscript numerals complete,
+ vulgar fractions completed and redone as references rather than
+ outlines.
+
+2003-05-12 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Clean-up of the Cyrillic letters added on
+ March 27; super- and subscripts, vulgar fractions.
+
+2003-05-09 Primoz Peterlin
+
+ * sfd/FreeMonoBold.sfd - Added a couple of characters to
+ the Latin Extended-B area and the IPA extensions area.
+
+2003-05-08 Primoz Peterlin
+
+ * sfd/FreeSerifBoldItalic.sfd - Added a couple of characters to
+ the Latin Extended-B area.
+
+ * sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
+ sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - ASCII
+ numerals now monospaced; kerned numerals moved to Adobe corporate
+ use area
+ (U+F6xx).
+
+2003-05-07 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Roman numerals now more complete.
+
+ * sfd/FreeSansOblique.sfd, sfd/FreeSansBoldOblique.sfd - Accented
+ characters added in the Latin Extended-B area.
+
+ * sfd/FreeSans.sfd - Greek accents added in the Greek Extended
+ area, characters added in the Latin Extended-B area, Roman
+ numerals added.
+
+ * sfd/FreeMonoOblique.sfd - Kerning pairs removed (what were they
+ doing in a monospaced font, anyway?).
+
+ * sfd/FreeMonoBoldOblique.sfd - Additions in Latin Extended-B and
+ Basic Greek.
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoBold.sfd, sfd/FreeMonoOblique.sfd,
+ sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
+ sfd/FreeSansBold.sfd, sfd/FreeSansOblique.sfd,
+ sfd/FreeSansBoldOblique.sfd - Major cleanup (fixed widths, open
+ paths, path directions (clockwise/counter-clockwise), points
+ rounded to integer values; outlines simplified etc.)
+
+2003-05-06 Primoz Peterlin
+
+ * tools/OS2UnicodeRange - A simple script to display OS/2 Unicode
+ range table in TrueType fonts.
+
+ * sfd/FreeSans.sfd, sfd/FreeSansBold.sfd - ASCII numerals now
+ monospaced; kerned numerals moved to Adobe corporate use area
+ (U+F6xx). FreeSans is done, FreeSansBold half-way.
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
+ sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
+ sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
+ sfd/FreeSerifBoldItalic.sfd - Added 2003 in copyright info.
+
+2003-03-27 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Cyrillic and Cyrillic Supplement blocks
+ brought to conformance with Unicode 3.2, courtesy Daniel Shurovich
+ Chirkov.
+
+2003-03-19 Primoz Peterlin
+
+ * sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd - somewhat wider
+ germandbls (U+00DF), due to complaints by Walter Schmidt.
+
+2003-03-18 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - Added Sinhala glyphs from the Tipitaka
+ project , recoded to Unicode by Noah Levitt.
+
+2003-02-19 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - Minor changes on mathematical operators.
+
+2003-02-18 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - minor cleanup of glyph backgrounds; changed
+ integral signs (U+222B - U+2230)
+
+2003-02-05 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - added a couple of glyphs in the IPA and
+ African Latin ranges.
+
+2003-01-30 Primoz Peterlin
+
+ * sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd - Corrected Maltese Hbar (U+0126)
+ and/or hbar (U+0127).
+
+2003-01-28 Primoz Peterlin
+
+ * sfd/FreeSerifItalic.sfd - Corrected Maltese hbar (U+0127).
+
+2002-12-18 Primoz Peterlin
+
+ * tools/ConvertFont - PfaEdit script for converting SFD files to
+ TrueType fonts.
+
+ * sfd/FreeSans.sfd - Added Tamil and Kannada glyphs from the
+ Akruti Indic fonts.
+
+2002-12-17 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - Added Devanagari and Gujarati glyphs from the
+ Akruti Indic fonts.
+
+ * www/index.html - Added information on Rogier van Dalen's tools.
+
+ * AUTHORS - Added M.S. Sridhar.
+
+ * CREDITS - Correct spelling of Culmus project. Added M.S. Sridhar.
+
+2002-12-06 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Added Braille glyphs, courtesy Vyacheslav
+ Dikonov.
+
+ * sfd/FreeSans.sfd - Added Unicode Syriac glyphs, courtesy
+ Vyacheslav Dikonov.
+
+2002-10-11 Primoz Peterlin
+
+ * www/index.html - Added information on the availability of the
+ Debian GNU/Linux package.
+
+ * sfd/FreeSerif.sfd, sfd/FreeSans.sfd - added some kern pairs
+ beyond Latin-1 area.
+
+ * sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
+ sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - re-introduced
+ all the emtpy glyph slots (changes from Sep 23 made PfaEdit
+ crash).
+
+2002-09-23 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
+ sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - imported
+ kerning information from the URW++ AFM files
+
+2002-09-11 Primoz Peterlin
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoOblique.sfd - updated Hebrew parts to comply with
+ Culmus v0.6.
+
+ * sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansOblique.sfd - Added Danilo Segan's Serbian Cyrillic
+ glyphs; updated Hebrew parts to comply with Culmus v0.6.
+
+2002-09-09 Primoz Peterlin
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoOblique.sfd, sfd/FreeSans.sfd,
+ sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansOblique.sfd - Updated Cyrillic part to match
+ Filippov's 1.0.7pre14
+
+ * sfd/FreeSansOblique.sfd - added Sam Stepanyan's Armenian glyphs
+ from FreeSans (skewed for 12 degrees).
+
+2002-09-06 Primoz Peterlin
+
+ * sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd,
+ sfd/FreeSansBold.sfd, sfd/FreeSansOblique.sfd - Added Maxim
+ Iorsh's Hebrew characters.
+
+2002-08-29 Primoz Peterlin
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd,
+ sfd/FreeMonoBold.sfd, sfd/FreeMonoOblique.sfd - Added Maxim
+ Iorsh's Hebrew characters.
+
+ * AUTHORS, CREDITS - Added Maxim Iorsh as author.
+
+2002-08-28 Primoz Peterlin
+
+ * www/index.html - Added information of Microsoft's withdrawal of
+ freely available Unicode TrueType fonts
+
+ * www/resources.html - Added link to Maxim Iorsh's Culmus project.
+
+2002-07-26 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Added a couple of characters (Arrows area).
+
+2002-06-11 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Applied Michalis Kabrianis's patch concerning
+ perispomeni in Greek politoniko.
+
+2002-05-23 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Applied Michalis Kabrianis's patch concerning
+ psili in Greek politoniko. Also added two working variants of
+ chars in the IPA range.
+
+2002-05-15 Primoz Peterlin
+
+ * sfd/FreeSans.sfd, sfd/FreeSansBold.sfd, sfd/FreeSerif.sfd,
+ sfd/FreeSerifBold.sfd - Deleted explicit ".notdef" character with
+ no contours.
+
+2002-05-14 Primoz Peterlin
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
+ sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
+ sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
+ sfd/FreeSerifBoldItalic.sfd - The new version of PfaEdit saves
+ correctly formed Panose and LineGap lines.
+
+ * sfd/FreeSansBoldOblique.sfd - Filled-in the missing TTFWidth and
+ TTFWeight values.
+
+2002-05-09 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - Added diacritics to the Spacing Modifier
+ Letters and Combining Diacritical Marks areas. Added composed
+ glyphs to the Latin Extended-B area.
+
+2002-05-07 Primoz Peterlin
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
+ sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
+ sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
+ sfd/FreeSerifBoldItalic.sfd - Updated Panose information with data
+ provided by Josef W. Segur. Updated TTF headers with English and
+ Slovenian text.
+
+2002-04-30 Primoz Peterlin
+
+ * sfd/FreeMonoBold.sfd - Working on Greek small letters. Several
+ minor changes (lower carons etc.)
+
+2002-04-29 Primoz Peterlin
+
+ * FreeMonoBoldOblique.sfd - Started adding Greek.
+
+ * sfd/FreeMonoBold.sfd - Added glyphs in the Geometrical Shapes
+ and Miscellaneous Symbols area. Harmonizing Greek with Latin. Done
+ with capitals.
+
+ * sfd/FreeMono.sfd - Deleted the explicit .notdef character. Added
+ one glyph to the Geometrical Shapes area, which is now completed;
+ added three glyphs to the Miscellaneous Symbols area. Harmonizing
+ Greek with Latin. Done with the capitals.
+
+2002-04-26 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - Adjusted accent positions on several glyphs
+ in the Latin Extended-A area.
+
+2002-04-25 Primoz Peterlin
+
+ * sfd/FreeMonoBold.sfd - Box Drawing area completed. Added a
+ couple of glyphs in the Geometrical Shapes area.
+
+ * sfd/FreeMono.sfd - Small corrections in the Box Drawing area.
+
+2002-04-24 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Box Drawing area completed.
+
+2002-04-23 Primoz Peterlin
+
+ * tools/WGL4.lst - corrected.
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoBold.sfd - Working on Box Drawing
+ area.
+
+2002-04-22 Primoz Peterlin
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoBold.sfd - Working on Latin
+ Extended-B and Greek.
+
+2002-04-19 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Somewhat cleaner chess figures.
+
+ * tools/MES-2.txt, tools/MES-2.lst - Corrected list (it is not
+ 203C-203E, it is 203C and 203E).
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
+ sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
+ sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
+ sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
+ sfd/FreeSerifBoldItalic.sfd - Changed "Family Name" from Free to
+ FreeSerif, FreeSans and FreeMono, as appropriate. Changed Font
+ Modifiers from MonoBold etc. to Bold, Italic, Oblique, BoldOblique
+ and BoldItalic.
+
+2002-04-18 Primoz Peterlin
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
+ sfd/FreeMonoBoldOblique.sfd - Corrected metrics; now all character
+ widths are set to 600.
+
+2002-04-17 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Corrected glyphs in the Box Drawing area and
+ Block Elements area, which should extend through the ascender *and
+ descender* height.
+
+ * sfd/FreeMonoBold.sfd - Continued working on harmonizing Greek
+ letters with Latin and Cyrillic.
+
+ * sfd/FreeMonoBold.sfd - Added some box drawing characters.
+
+2002-04-16 Primoz Peterlin
+
+ * www/design-notes.html - Updated notes on stroke width for
+ symbols in Free Mono Bold.
+
+ * sfd/FreeMono.sfd - Added a handful of characters in the
+ Miscellaneous Symbols area.
+
+ * sfd/FreeMonoBoldOblique.sfd - Added subscripts, superscripts and
+ vulgar fractions.
+
+ * sfd/FreeMonoBold.sfd - Started harmonizing Greek letters with
+ Latin and Cyrillic.
+
+ * sfd/FreeMonoBold.sfd - Added subscripts, superscripts and vulgar
+ fractions.
+
+2002-04-15 Primoz Peterlin
+
+ * www/design-notes.html - Updated notes on super-/subscripts in
+ Free Mono Bold. Separate subsections for Free Mono regular and
+ Free Mono Bold.
+
+2002-04-12 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Added Ethiopian glyphs, converted from the
+ Metafont sources from TGI, Universität Hamburg (authors Berhanu
+ Beyene, Prof. Dr. Manfred Kudlek, Olaf Kummer, and Jochen
+ Metzinger) using Szabo's TeXtrace and retouched using
+ PfaEdit. Ethiopian metafonts are released under GNU GPL,
+ .
+
+ * sfd/FreeMonoBold.sfd - Added 40 characters, mostly in the Latin
+ Extended-B and IPA Extensions areas.
+
+2002-04-11 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Added a handful of characters in the Latin
+ Extended-B, IPA Extensions, Currency Symbols and Miscellaneous
+ Symbols areas.
+
+2002-04-09 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Correcting accent positioning in the Extended
+ Greek area; adding a couple of characters here and there. Still 20
+ characters short of MES-2 conformance.
+
+2002-04-08 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Added some characters in the Arrows area;
+ more or less completed Extended Greek area (accents still need to
+ be fine-tuned).
+
+2002-04-05 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Modern non-Russian Cyrilic mostly completed.
+
+ * sfd/FreeMonoOblique.sfd - Synchronized with FreeMono.
+
+ * sfd/FreeSerif.sfd - Added Thomas Ridgeway's Tamil characters
+ (converted from Metafont and edited somehwat).
+
+2002-04-04 Primoz Peterlin
+
+ * sfd/FreeMonoOblique.sfd - Armenian letters added.
+
+ * sfd/FreeMonoBold.sfd - Serbian Cyrillic letters dje, tshe, lje
+ and nje corrected.
+
+ * sfd/FreeMono.sfd - Serbian Cyrillic letters dje and tshe
+ corrected. Some other non-Russian Cyrillic letters modified and
+ "welded together".
+
+2002-04-03 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Added more or less complete Armenian
+ area. The glyphs are a tidied-up version based on the Armenian
+ Courier on the . Now we have
+ 1673 characters.
+
+2002-03-28 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Added some mathematical symbols.
+
+2002-03-26 Primoz Peterlin
+
+ * sfd/FreeSans.sfd - took H.S. Pannu's Gurmukhi from FreeSerif. It
+ actually fits to FreeSans much better. It seems I'll have to look
+ for another Gurmukhi font with modulated stroke for FreeSerif.
+
+ * sfd/FreeSerifItalic.sfd - replaced existing Hebrew glyphs by
+ those from FreeSerif (slanted for 15.5 degrees).
+
+ * sfd/FreeSerif.sfd - Added dotted Hebrew letters. Changed barred H.
+
+ * sfd/FreeMono.sfd - Completed vulgar fractions; minor changes in
+ Greek; added some mathematical operators.
+
+ * sfd/FreeMonoBold.sfd - added 12 characters to Latin Extended-B
+ and IPA Extensions areas (total 984).
+
+2002-03-25 Primoz Peterlin
+
+ * sfd/FreeMonoBold.sfd - started adding Latin Extended-B and IPA
+ Extensions.
+
+ * sfd/FreeMono.sfd - Minor cosmetic changes; cleaning up Greek
+ (removing redundant control points), added some non-European
+ Cyrillic glyphs as a test.
+
+2002-03-22 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - Some minor modifications; letters in Latin
+ Extended-B area "welded" together.
+
+2002-03-20 Primoz Peterlin
+
+ * www/index.html - finally linked the resources and design notes
+ pages.
+
+ * www/design-notes.html - added scaling information for super- and
+ subscript numerals in FreeMono.
+
+2002-03-19 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - the Latin Extended-B and IPA Extension area
+ characters moved from FreeMono and skewed for 12 degrees.
+
+2002-03-18 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - added a dozen or two of new characters, in
+ particular in the Latin Extended-B and IPA Extension area.
+
+2002-03-15 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - added a dozen of two of new characters, in
+ particular in the IPA Extension area.
+
+ * www/design-notes.html - Corrected data for x-height in FreeMono;
+ information on constructing small caps.
+
+2002-03-14 Primoz Peterlin
+
+ * sfd/FreeMono.sfd - added three smiley characters to the
+ Miscallaneous Symbols area.
+
+2002-03-10 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Anshuman Pandey has only converted Gurmukhi
+ from TrueType to Metafont; the original author of Gurkmukhi font
+ is Hardip Singh Pannu .
+ Got the permission from him to include the Gurmukhi glyph set.
+
+2002-03-08 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Added some more glyphs in the Mathematical
+ Symbols area to a total number of 3374.
+
+2002-03-06 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Added a basic Gurmukhi set.
+
+ * www/design-notes.html - started a page on design notes
+
+ * sfd/FreeMono.sfd - realized that glyphs in the Box Drawing area
+ and Block Elements area should extend through the ascender *and
+ descender* height, and corrected it.
+
+ * sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd - added some musical
+ glyphs, linking "no-break space" to space, "soft hyphen" to
+ hyphen-minus etc.
+
+2002-03-05 Primoz Peterlin
+
+ * tools/WGL4.lst - Added Windows Glyph List 4.0
+
+ * tools/LigatureList.pl - Wrote a Perl script, which lists the
+ GSUB list (ligature list) of a OpenType font.
+
+ * sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd,
+ sfd/FreeSerifItalic.sfd - auxilliary Hebrew glyphs added. They are
+ too light compared with Latin and will be substituted with better
+ ones.
+
+2002-03-04 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Added some more glyphs to the Mathematical
+ Operators area (page 0x22).
+
+ * sfd/FreeSerif.sfd - Incomplete and fragmentary support for
+ Devanagari, originating from Harsh Kumar's Shusha fonts was
+ replaced by Frans Velthuis' Devanagari metafont, now maintained by
+ Anshuman Pandey and available under
+ GPL. Until I figure out how to provide glyph substitution table in
+ OpenType, only the Unicode part is there.
+
+2002-02-28 Primoz Peterlin
+
+ * ChangeLog file created
+
+ * sfd/FreeSerif.sfd - Added some Telugu glyphs to page 0x0C,
+ courtesy Prasad A. Chodavarapu
+
+ * sfd/FreeSerif.sfd - Added some glyphs to the Miscellaneous
+ Symbols page (0x26).
+
+2002-02-26 Primoz Peterlin
+
+ * mailing lists freefont-announce and freefont-bugs created
+
+2002-02-25 Primoz Peterlin
+
+ * sfd/FreeSerif.sfd - Added a couple of glyphs in Mathematics
+ Operators area.
+
+ * sfd/FreeMono.sfd
+ - Added some more glyphs, in particular in the Mathematical
+ Operators section.
+ - Changed FamilyName to Free, FontName to FreeMono, and Full name
+ to "Free Monospaced".
+
+2002-02-20 Primoz Peterlin
+
+ * sfd/ directory added containing FreeSerif, FreeSans and FreeMono
+ families.
+
+ * tools/ directory added containing lists with characters required
+ for MES (Multilinguag European Subset) compliance.
+
+ * tools/mes-list-expand.pl created - a Perl script for expanding MES
+ ranges into simple one-char-per-line format
+
+ * tools/CheckConformance.pl created - a Perl script for checking
+ conformance of a font file with a given coded character set
+
+ * homepage created
+
+2002-02-19 Primoz Peterlin
+
+ * freefont (Free UCS Scalable Fonts) project approved on
+ savannah.gnu.org:
diff --git a/lib/tcpdf/fonts/freefont-20060126/INSTALL b/lib/tcpdf/fonts/freefont-20060126/INSTALL
new file mode 100644
index 0000000000..49b839fe04
--- /dev/null
+++ b/lib/tcpdf/fonts/freefont-20060126/INSTALL
@@ -0,0 +1,57 @@
+-*-mode:text;-*-
+$Id$
+
+
+ Installing the Free UCS outline fonts
+ =====================================
+
+
+These installation notes are supposed to provide a helpful guidance
+through the process of installation of free UCS outline fonts. They
+can probably be significantly improved. Please direct your comments,
+suggestions for improvements, criticisms etc. to Primoz PETERLIN
+ and thus help improve them.
+
+
+1. UNIX/GNU/Linux/BSD Systems
+
+The rather awkward "UNIX/GNU/Linux/BSD" agglomeration is used to
+denote any system capable of running XFree86 server with FreeType
+, a high-quality free font rasterizer.
+
+1.1 The rough way
+
+Unfortunately, hardly any other way exists at the moment.
+
+1) Fetch the freefont-ttf.tar.gz package with Free UCS outline fonts
+ in the TrueType format.
+
+2) Unpack TrueType fonts into a suitable directory,
+ e.g. /usr/share/fonts/default/TrueType/.
+
+3) If you have chosen any other directory, make sure the directory you
+ used to install the fonts is listed in the path searched by the X
+ Font Server. Append the directory to the "catalogue=" in the
+ /etc/X11/fs/config.
+
+4) Run ttmkfdir in the directory where you unpacked the fonts.
+
+
+1.2 Debian GNU/Linux
+
+Users of Debian GNU/Linux system will probably want to use the
+pre-packed Debian package, as available from the Debian site,
+, or
+any of its mirrors. You can install them by issuing the command
+
+apt-get install ttf-freefont
+
+
+2. Microsoft Windows 95/98/NT/2000/XP
+
+To be written.
+
+
+3. MacOS
+
+To be written.
diff --git a/lib/tcpdf/fonts/freefont-20060126/README b/lib/tcpdf/fonts/freefont-20060126/README
new file mode 100644
index 0000000000..45859c5176
--- /dev/null
+++ b/lib/tcpdf/fonts/freefont-20060126/README
@@ -0,0 +1,142 @@
+-*-text-*-
+$Id$
+
+Summary: This project aims to privide a set of free scalable (i.e.,
+OpenType) fonts covering the ISO 10646/Unicode UCS (Universal
+Character Set).
+
+
+WHY DO WE NEED FREE SCALABLE UCS FONTS?
+
+A large number of free software users switched from free X11
+bitmapped fonts to proprietary Microsoft Truetype fonts, as a) they
+used to be freely downloaded from Microsoft Typography page
+, b) they contain a more
+or less decent subsed of the ISO 10646 UCS (Universal Character Set),
+c) they are high-quality, well hinted scalable Truetype fonts, and d)
+Freetype , a free high-quality Truetype font
+renderer exists and has been integrated into the latest release of
+XFree86, the free X11 server.
+
+Building a dependence on non-free software, even a niche one like
+fonts, is dangerous. Microsoft Truetype core fonts are not free, they
+are just costless. For now, at least. Citing the TrueType core fonts
+for the Web FAQ :
+"You may only redistribute the fonts in their original form (.exe or
+.sit.hqx) and with their original file name from your Web site or
+intranet site. You must not supply the fonts, or any derivative fonts
+based on them, in any form that adds value to commercial products,
+such as CD-ROM or disk based multimedia programs, application software
+or utilities." As of August 2002, however, the fonts are not
+anymore available on the Web, which makes the situation clearer.
+
+Aren't there any free high-quality scalable fonts? Yes, there are.
+URW++, a German digital typefoundry, released their own version of the
+35 Postscript Type 1 core fonts under GPL as their donation to the
+Ghostscript project . The Wadalab
+Kanji comittee has produced Type 1 font files with thousands of
+filigree Japanese glyphs .
+Yannis Haralambous has drawn beautiful glyphs for the Omega
+typesetting system . And so
+on. Scattered around the internet there are numerous other free
+resources for other national scripts, many of them aiming to be a
+suitable match for Latin fonts like Times or Helvetica.
+
+
+WHAT DO WE PLAN TO ACHIEVE, AND HOW?
+
+Our aim is to collect available resources, fill in the missing pieces,
+and provide a set of free high-quality scalable (Opentype) UCS fonts,
+released under GNU General Public License.
+
+Free UCS scalable fonts will cover the following character sets
+
+* ISO 8859 parts 1-15
+* CEN MES-3 European Unicode Subset
+ http://www.evertype.com/standards/iso10646/pdf/cwa13873.pdf
+* IBM/Microsoft code pages 437, 850, 852, 1250, 1252 and more
+* Microsoft/Adobe Windows Glyph List 4 (WGL4)
+ http://partners.adobe.com/asn/developer/opentype/appendices/wgl4.html
+* KOI8-R and KOI8-RU
+* DEC VT100 graphics symbols
+* International Phonetic Alphabet
+* Arabic, Hebrew, Armenian, Georgian, Ethiopian, Thai and Lao alphabets,
+ including Arabic presentation forms A/B
+* Japanese Katakana and Hiragana
+* mathematical symbols, including the whole TeX repertoire of symbols
+* APL symbols
+ etc.
+
+A free outline font editor, George Williams's FontForge
+ will be used for creating new
+glyphs.
+
+Which font shapes should be made? As historical style terms like
+Renaissance or Baroque letterforms cannot be applied beyond
+Latin/Cyrillic/Greek scripts to any greater extent than Kufi or Nashki
+can be applied beyond Arabic script, a smaller subset of styles will
+be made: one monospaced and two proportional (one with uniform stroke
+and one with modulated) will be made at the start.
+
+In the beginning, however, we don't believe that Truetype hinting will
+be good enough to compete with neither the hand-crafted bitmapped
+fonts at small sizes, nor with commercial TrueType fonts. A companion
+program for modifying the TrueType font tables, TtfMod, is in the
+works, though: . For
+applications like xterm, users are referred to the existing UCS bitmap
+fonts, .
+
+
+LICENSING
+
+Free UCS scalable fonts is free software; you can redistribute it
+and/or modify it under the terms of the GNU General Public License as
+published by the Free Software Foundation; either version 2 of the
+License, or (at your option) any later version.
+
+The fonts are distributed in the hope that they will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301, USA.
+
+As a special exception, if you create a document which uses this font,
+and embed this font or unaltered portions of this font into the
+document, this font does not by itself cause the resulting document to
+be covered by the GNU General Public License. This exception does not
+however invalidate any other reasons why the document might be covered
+by the GNU General Public License. If you modify this font, you may
+extend this exception to your version of the font, but you are not
+obligated to do so. If you do not wish to do so, delete this exception
+statement from your version.
+
+
+WHAT DO THE FILE SUFFICES MEAN?
+
+The files with .sfd (Spline Font Database) are in FontForge's native
+format. Please use these if you plan to modify the font
+files. FontForge can export these to mostly any existing font file
+format.
+
+TrueType fonts for immediate consumption are the files with the .ttf
+(TrueType Font) suffix. You can use them directly, e.g. with the X
+font server.
+
+The files with .ps (PostScript) suffix are not font files at all -
+they are merely PostScript files with glyph tables, which can be used
+for overview, which glyphs are contained in which font file.
+
+You may have noticed the lacking of PostScript Type 1 (.pfa/.pfb) font
+files. Type 1 format does not support large (> 256) encoding vectors,
+so they can not be used with ISO 10646 encoding. If your printer
+supports it, you can use Type 0 format, though. Please use FontForge
+for conversion to Type 0.
+
+
+Primoz Peterlin,
+
+Free UCS scalable fonts: http://savannah.nongnu.org/projects/freefont/
diff --git a/lib/tcpdf/fonts/freemono.ctg.z b/lib/tcpdf/fonts/freemono.ctg.z
new file mode 100644
index 0000000000..32912b5162
Binary files /dev/null and b/lib/tcpdf/fonts/freemono.ctg.z differ
diff --git a/lib/tcpdf/fonts/freemono.php b/lib/tcpdf/fonts/freemono.php
index 1e1c35be50..104cd255ec 100755
--- a/lib/tcpdf/fonts/freemono.php
+++ b/lib/tcpdf/fonts/freemono.php
@@ -1,174 +1,174 @@
1057,'Descent'=>-319,'CapHeight'=>1057,'Flags'=>32,'FontBBox'=>'[-557 -319 699 1057]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
+$desc=array('Ascent'=>1073,'Descent'=>-319,'CapHeight'=>1073,'Flags'=>32,'FontBBox'=>'[-557 -319 699 1073]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
- 13=>333, 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600,
- 47=>600, 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600,
- 63=>600, 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600,
- 79=>600, 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600,
- 95=>600, 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600,
- 111=>600, 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600,
- 8364=>600, 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600,
- 8216=>600, 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600,
- 161=>600, 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600,
- 177=>600, 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600,
- 193=>600, 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600,
- 209=>600, 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600,
- 225=>600, 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600,
- 241=>600, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600,
- 257=>600, 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600,
- 273=>600, 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600,
- 289=>600, 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600,
- 305=>600, 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600,
- 321=>600, 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600,
- 337=>600, 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600,
- 357=>600, 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600,
- 373=>600, 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, 385=>600, 386=>600, 387=>600, 388=>600, 389=>600, 390=>600, 391=>600,
- 392=>600, 393=>600, 394=>600, 395=>600, 396=>600, 397=>600, 398=>600, 399=>600, 400=>600, 401=>600, 403=>600, 404=>600, 405=>600, 406=>600, 407=>600, 408=>600,
- 409=>600, 410=>600, 411=>600, 412=>600, 413=>600, 414=>600, 415=>600, 416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600,
- 425=>600, 426=>600, 427=>600, 428=>600, 429=>600, 430=>600, 431=>600, 432=>600, 433=>600, 434=>600, 435=>600, 436=>600, 437=>600, 438=>600, 439=>600, 440=>600,
- 441=>600, 442=>600, 443=>600, 444=>600, 445=>600, 446=>600, 447=>600, 448=>600, 449=>600, 450=>600, 451=>600, 452=>600, 453=>600, 454=>600, 455=>600, 456=>600,
- 457=>600, 458=>600, 459=>600, 460=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600,
- 473=>600, 474=>600, 475=>600, 476=>600, 477=>600, 478=>600, 479=>600, 480=>600, 481=>600, 482=>600, 483=>600, 484=>600, 485=>600, 486=>600, 487=>600, 488=>600,
- 489=>600, 490=>600, 491=>600, 492=>600, 493=>600, 494=>600, 495=>600, 496=>600, 497=>600, 498=>600, 499=>600, 500=>600, 501=>600, 502=>600, 503=>600, 504=>600,
- 505=>600, 506=>600, 507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>600, 513=>600, 514=>600, 515=>600, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600,
- 521=>600, 522=>600, 523=>600, 524=>600, 525=>600, 526=>600, 527=>600, 528=>600, 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600,
- 537=>600, 538=>600, 539=>600, 540=>600, 541=>600, 542=>600, 543=>600, 548=>600, 549=>600, 550=>600, 551=>600, 552=>600, 553=>600, 554=>600, 555=>600, 556=>600,
- 557=>600, 558=>600, 559=>600, 560=>600, 561=>600, 562=>600, 563=>600, 577=>600, 578=>600, 592=>600, 593=>600, 594=>600, 595=>600, 596=>600, 597=>600, 598=>600,
- 599=>600, 600=>600, 601=>600, 602=>600, 603=>600, 604=>600, 607=>600, 608=>600, 609=>600, 610=>600, 611=>600, 612=>600, 613=>600, 614=>600, 615=>600, 616=>600,
- 617=>600, 618=>600, 619=>600, 620=>600, 621=>600, 623=>600, 624=>600, 625=>600, 626=>600, 627=>600, 628=>600, 629=>600, 630=>600, 632=>600, 633=>600, 634=>600,
- 635=>600, 636=>600, 637=>600, 638=>600, 639=>600, 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 646=>600, 647=>600, 648=>600, 649=>600, 652=>600,
- 653=>600, 654=>600, 655=>600, 656=>600, 657=>600, 658=>600, 660=>600, 661=>600, 662=>600, 663=>600, 665=>600, 667=>600, 668=>600, 669=>600, 670=>600, 671=>600,
- 672=>600, 673=>600, 674=>600, 675=>600, 676=>600, 678=>600, 679=>600, 699=>600, 700=>600, 701=>600, 702=>600, 703=>600, 711=>600, 712=>600, 713=>600, 714=>600,
- 715=>600, 720=>600, 721=>600, 722=>600, 723=>600, 724=>600, 725=>600, 726=>600, 727=>600, 728=>600, 729=>600, 730=>600, 731=>600, 733=>600, 735=>600, 750=>600,
- 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0,
- 784=>0, 785=>0, 795=>0, 801=>0, 802=>0, 807=>0, 808=>0, 819=>600, 821=>0, 822=>0, 823=>0, 824=>0, 834=>0, 836=>0, 890=>600, 900=>600,
- 901=>600, 902=>600, 903=>600, 904=>600, 905=>600, 906=>600, 908=>600, 910=>600, 911=>600, 912=>600, 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600,
- 919=>600, 920=>600, 921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600, 930=>600, 931=>600, 932=>600, 933=>600, 934=>600,
- 935=>600, 936=>600, 937=>600, 938=>600, 939=>600, 940=>600, 941=>600, 942=>600, 943=>600, 944=>600, 945=>600, 946=>600, 947=>600, 948=>600, 949=>600, 950=>600,
- 951=>600, 952=>600, 953=>600, 954=>600, 955=>600, 956=>600, 957=>600, 958=>600, 959=>600, 960=>600, 961=>600, 962=>600, 963=>600, 964=>600, 965=>600, 966=>600,
- 967=>600, 968=>600, 969=>600, 970=>600, 971=>600, 972=>600, 973=>600, 974=>600, 976=>600, 977=>600, 978=>600, 979=>600, 981=>600, 986=>600, 987=>600, 988=>600,
- 1024=>600, 1025=>600, 1026=>600, 1028=>600, 1029=>600, 1030=>600, 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600,
- 1043=>600, 1044=>600, 1045=>600, 1046=>600, 1047=>600, 1048=>600, 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600,
- 1059=>600, 1060=>600, 1061=>600, 1062=>600, 1063=>600, 1064=>600, 1065=>600, 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600,
- 1075=>600, 1076=>600, 1077=>600, 1078=>600, 1079=>600, 1080=>600, 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600,
- 1091=>600, 1092=>600, 1093=>600, 1094=>600, 1095=>600, 1096=>600, 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600,
- 1107=>600, 1108=>600, 1109=>600, 1110=>600, 1111=>600, 1112=>600, 1113=>600, 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1124=>600, 1130=>600, 1132=>600, 1136=>600,
- 1137=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600, 1168=>600, 1169=>600, 1170=>600, 1171=>600, 1172=>600, 1173=>600, 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600,
- 1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600, 1184=>600, 1185=>600, 1186=>600, 1187=>600, 1188=>600, 1189=>600, 1190=>600, 1191=>600, 1192=>600, 1193=>600, 1194=>600,
- 1195=>600, 1196=>600, 1197=>600, 1198=>600, 1199=>600, 1200=>600, 1201=>600, 1202=>600, 1203=>600, 1204=>600, 1205=>600, 1206=>600, 1207=>600, 1208=>600, 1209=>600, 1210=>600,
- 1211=>600, 1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600, 1217=>600, 1218=>600, 1219=>600, 1220=>600, 1223=>600, 1224=>600, 1227=>600, 1228=>600, 1232=>600, 1233=>600,
- 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600, 1239=>600, 1240=>600, 1241=>600, 1242=>600, 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600,
- 1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600, 1255=>600, 1256=>600, 1257=>600, 1258=>600, 1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600,
- 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1272=>600, 1273=>600, 1329=>600, 1330=>600, 1331=>600, 1332=>600, 1333=>600, 1334=>600, 1335=>600, 1336=>600, 1337=>600, 1338=>600,
- 1339=>600, 1340=>600, 1341=>600, 1342=>600, 1343=>600, 1344=>600, 1345=>600, 1346=>600, 1347=>600, 1348=>600, 1349=>600, 1350=>600, 1351=>600, 1352=>600, 1353=>600, 1354=>600,
- 1355=>600, 1356=>600, 1357=>600, 1358=>600, 1359=>600, 1360=>600, 1361=>600, 1362=>600, 1363=>600, 1364=>600, 1365=>600, 1366=>600, 1377=>600, 1378=>600, 1379=>600, 1380=>600,
- 1381=>600, 1382=>600, 1383=>600, 1384=>600, 1385=>600, 1386=>600, 1387=>600, 1388=>600, 1389=>600, 1390=>600, 1391=>600, 1392=>600, 1393=>600, 1394=>600, 1395=>600, 1396=>600,
- 1397=>600, 1398=>600, 1399=>600, 1400=>600, 1401=>600, 1402=>600, 1403=>600, 1404=>600, 1405=>600, 1406=>600, 1407=>600, 1408=>600, 1409=>600, 1410=>600, 1411=>600, 1412=>600,
- 1413=>600, 1414=>600, 1418=>600, 1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600, 1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600,
- 1470=>600, 1471=>600, 1472=>600, 1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600,
- 1497=>600, 1498=>600, 1499=>600, 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600,
- 1513=>600, 1514=>600, 1520=>600, 1521=>600, 1522=>600, 1523=>600, 1524=>600, 5792=>600, 5793=>600, 5794=>600, 5795=>600, 5796=>600, 5797=>600, 5798=>600, 5799=>600, 5800=>600,
- 5801=>600, 5802=>600, 5803=>600, 5804=>600, 5805=>600, 5806=>600, 5807=>600, 5808=>600, 5809=>600, 5810=>600, 5811=>600, 5812=>600, 5813=>600, 5814=>600, 5815=>600, 5816=>600,
- 5817=>600, 5818=>600, 5819=>600, 5820=>600, 5821=>600, 5822=>600, 5823=>600, 5824=>600, 5825=>600, 5826=>600, 5827=>600, 5828=>600, 5829=>600, 5830=>600, 5831=>600, 5832=>600,
- 5833=>600, 5834=>600, 5835=>600, 5836=>600, 5837=>600, 5838=>600, 5839=>600, 5840=>600, 5841=>600, 5842=>600, 5843=>600, 5844=>600, 5845=>600, 5846=>600, 5847=>600, 5848=>600,
- 5849=>600, 5850=>600, 5851=>600, 5852=>600, 5853=>600, 5854=>600, 5855=>600, 5856=>600, 5857=>600, 5858=>600, 5859=>600, 5860=>600, 5861=>600, 5862=>600, 5863=>600, 5864=>600,
- 5865=>600, 5866=>600, 5867=>600, 5868=>600, 5869=>600, 5870=>600, 5871=>600, 5872=>600, 7680=>600, 7681=>600, 7682=>600, 7683=>600, 7684=>600, 7685=>600, 7686=>600, 7687=>600,
- 7688=>600, 7689=>600, 7690=>600, 7691=>600, 7692=>600, 7693=>600, 7694=>600, 7695=>600, 7696=>600, 7697=>600, 7698=>600, 7699=>600, 7700=>600, 7701=>600, 7702=>600, 7703=>600,
- 7704=>600, 7705=>600, 7706=>600, 7707=>600, 7708=>600, 7709=>600, 7710=>600, 7711=>600, 7712=>600, 7713=>600, 7714=>600, 7715=>600, 7716=>600, 7717=>600, 7718=>600, 7719=>600,
- 7720=>600, 7721=>600, 7722=>600, 7723=>600, 7724=>600, 7725=>600, 7726=>600, 7727=>600, 7728=>600, 7729=>600, 7730=>600, 7731=>600, 7732=>600, 7733=>600, 7734=>600, 7735=>600,
- 7736=>600, 7737=>600, 7738=>600, 7739=>600, 7740=>600, 7741=>600, 7742=>600, 7743=>600, 7744=>600, 7745=>600, 7746=>600, 7747=>600, 7748=>600, 7749=>600, 7750=>600, 7751=>600,
- 7752=>600, 7753=>600, 7754=>600, 7755=>600, 7756=>600, 7757=>600, 7758=>600, 7759=>600, 7760=>600, 7761=>600, 7762=>600, 7763=>600, 7764=>600, 7765=>600, 7766=>600, 7767=>600,
- 7768=>600, 7769=>600, 7770=>600, 7771=>600, 7772=>600, 7773=>600, 7774=>600, 7775=>600, 7776=>600, 7777=>600, 7778=>600, 7779=>600, 7780=>600, 7781=>600, 7782=>600, 7783=>600,
- 7784=>600, 7785=>600, 7786=>600, 7787=>600, 7788=>600, 7789=>600, 7790=>600, 7791=>600, 7792=>600, 7793=>600, 7794=>600, 7795=>600, 7796=>600, 7797=>600, 7798=>600, 7799=>600,
- 7800=>600, 7801=>600, 7802=>600, 7803=>600, 7804=>600, 7805=>600, 7806=>600, 7807=>600, 7808=>600, 7809=>600, 7810=>600, 7811=>600, 7812=>600, 7813=>600, 7814=>600, 7815=>600,
- 7816=>600, 7817=>600, 7818=>600, 7819=>600, 7820=>600, 7821=>600, 7822=>600, 7823=>600, 7824=>600, 7825=>600, 7826=>600, 7827=>600, 7828=>600, 7829=>600, 7830=>600, 7831=>600,
- 7832=>600, 7833=>600, 7834=>600, 7835=>600, 7840=>600, 7841=>600, 7842=>600, 7843=>600, 7844=>600, 7845=>600, 7846=>600, 7847=>600, 7848=>600, 7849=>600, 7850=>600, 7851=>600,
- 7852=>600, 7853=>600, 7854=>600, 7855=>600, 7856=>600, 7857=>600, 7858=>600, 7859=>600, 7860=>600, 7861=>600, 7862=>600, 7863=>600, 7864=>600, 7865=>600, 7866=>600, 7867=>600,
- 7868=>600, 7869=>600, 7870=>600, 7871=>600, 7872=>600, 7873=>600, 7874=>600, 7875=>600, 7876=>600, 7877=>600, 7878=>600, 7879=>600, 7880=>600, 7881=>600, 7882=>600, 7883=>600,
- 7884=>600, 7885=>600, 7886=>600, 7887=>600, 7888=>600, 7889=>600, 7890=>600, 7891=>600, 7892=>600, 7893=>600, 7894=>600, 7895=>600, 7896=>600, 7897=>600, 7898=>600, 7899=>600,
- 7900=>600, 7901=>600, 7902=>600, 7903=>600, 7904=>600, 7905=>600, 7906=>600, 7907=>600, 7908=>600, 7909=>600, 7910=>600, 7911=>600, 7912=>600, 7913=>600, 7914=>600, 7915=>600,
- 7916=>600, 7917=>600, 7918=>600, 7919=>600, 7920=>600, 7921=>600, 7922=>600, 7923=>600, 7924=>600, 7925=>600, 7926=>600, 7927=>600, 7928=>600, 7929=>600, 7936=>600, 7937=>600,
- 7938=>600, 7939=>600, 7940=>600, 7941=>600, 7942=>600, 7943=>600, 7944=>600, 7945=>600, 7946=>600, 7947=>600, 7948=>600, 7949=>600, 7950=>600, 7951=>600, 7952=>600, 7953=>600,
- 7954=>600, 7955=>600, 7956=>600, 7957=>600, 7960=>600, 7961=>600, 7962=>600, 7963=>600, 7964=>600, 7965=>600, 7968=>600, 7969=>600, 7970=>600, 7971=>600, 7972=>600, 7973=>600,
- 7974=>600, 7975=>600, 7976=>600, 7977=>600, 7978=>600, 7979=>600, 7980=>600, 7981=>600, 7982=>600, 7983=>600, 7984=>600, 7985=>600, 7986=>600, 7987=>600, 7988=>600, 7989=>600,
- 7990=>600, 7991=>600, 7992=>600, 7993=>600, 7994=>600, 7995=>600, 7996=>600, 7997=>600, 7998=>600, 7999=>600, 8000=>600, 8001=>600, 8002=>600, 8003=>600, 8004=>600, 8005=>600,
- 8008=>600, 8009=>600, 8010=>600, 8011=>600, 8012=>600, 8013=>600, 8016=>600, 8017=>600, 8018=>600, 8019=>600, 8020=>600, 8021=>600, 8022=>600, 8023=>600, 8025=>600, 8027=>600,
- 8029=>600, 8031=>600, 8032=>600, 8033=>600, 8034=>600, 8035=>600, 8036=>600, 8037=>600, 8038=>600, 8039=>600, 8040=>600, 8041=>600, 8042=>600, 8043=>600, 8044=>600, 8045=>600,
- 8046=>600, 8047=>600, 8048=>600, 8049=>600, 8050=>600, 8051=>600, 8052=>600, 8053=>600, 8054=>600, 8055=>600, 8056=>600, 8057=>600, 8058=>600, 8059=>600, 8060=>600, 8061=>600,
- 8064=>600, 8065=>600, 8066=>600, 8067=>600, 8068=>600, 8069=>600, 8070=>600, 8071=>600, 8072=>600, 8073=>600, 8074=>600, 8075=>600, 8076=>600, 8077=>600, 8078=>600, 8079=>600,
- 8080=>600, 8081=>600, 8082=>600, 8083=>600, 8084=>600, 8085=>600, 8086=>600, 8087=>600, 8088=>600, 8089=>600, 8090=>600, 8091=>600, 8092=>600, 8093=>600, 8094=>600, 8095=>600,
- 8096=>600, 8097=>600, 8098=>600, 8099=>600, 8100=>600, 8101=>600, 8102=>600, 8103=>600, 8104=>600, 8105=>600, 8106=>600, 8107=>600, 8108=>600, 8109=>600, 8110=>600, 8111=>600,
- 8112=>600, 8113=>600, 8114=>600, 8115=>600, 8116=>600, 8118=>600, 8119=>600, 8120=>600, 8121=>600, 8122=>600, 8123=>600, 8124=>600, 8125=>600, 8126=>600, 8127=>600, 8128=>600,
- 8129=>600, 8130=>600, 8131=>600, 8132=>600, 8134=>600, 8135=>600, 8136=>600, 8137=>600, 8138=>600, 8139=>600, 8140=>600, 8141=>600, 8142=>600, 8143=>600, 8144=>600, 8145=>600,
- 8146=>600, 8147=>600, 8150=>600, 8151=>600, 8152=>600, 8153=>600, 8154=>600, 8155=>600, 8157=>600, 8158=>600, 8159=>600, 8160=>600, 8161=>600, 8162=>600, 8163=>600, 8164=>600,
- 8165=>600, 8166=>600, 8167=>600, 8168=>600, 8169=>600, 8170=>600, 8171=>600, 8172=>600, 8173=>600, 8175=>600, 8178=>600, 8179=>600, 8180=>600, 8182=>600, 8183=>600, 8184=>600,
- 8185=>600, 8186=>600, 8187=>600, 8188=>600, 8189=>600, 8190=>600, 8208=>600, 8213=>600, 8215=>600, 8219=>600, 8223=>600, 8229=>600, 8241=>600, 8242=>600, 8243=>600, 8244=>600,
- 8245=>600, 8246=>600, 8247=>600, 8252=>600, 8253=>600, 8254=>600, 8259=>600, 8260=>600, 8261=>600, 8262=>600, 8264=>600, 8265=>600, 8267=>600, 8304=>600, 8305=>600, 8306=>600,
- 8307=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600, 8314=>600, 8315=>600, 8316=>600, 8317=>600, 8318=>600, 8319=>600, 8320=>600, 8321=>600, 8322=>600,
- 8323=>600, 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8330=>600, 8331=>600, 8332=>600, 8333=>600, 8334=>600, 8355=>600, 8356=>600, 8359=>600, 8362=>600,
- 8448=>600, 8449=>600, 8450=>600, 8451=>600, 8453=>600, 8454=>600, 8455=>600, 8461=>600, 8464=>600, 8465=>600, 8466=>600, 8467=>600, 8468=>600, 8469=>600, 8470=>600, 8471=>600,
- 8472=>600, 8473=>600, 8474=>600, 8477=>600, 8478=>600, 8484=>600, 8485=>600, 8486=>600, 8487=>600, 8490=>600, 8491=>600, 8498=>600, 8501=>600, 8531=>600, 8532=>600, 8533=>600,
- 8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8544=>600, 8545=>600, 8546=>600, 8547=>600, 8548=>600, 8549=>600,
- 8550=>600, 8551=>600, 8552=>600, 8553=>600, 8554=>600, 8555=>600, 8556=>600, 8557=>600, 8558=>600, 8559=>600, 8592=>600, 8593=>600, 8594=>600, 8595=>600, 8596=>600, 8597=>600,
- 8598=>600, 8599=>600, 8600=>600, 8601=>600, 8602=>600, 8603=>600, 8604=>600, 8605=>600, 8606=>600, 8607=>600, 8608=>600, 8609=>600, 8610=>600, 8611=>600, 8612=>600, 8613=>600,
- 8614=>600, 8615=>600, 8616=>600, 8617=>600, 8618=>600, 8619=>600, 8620=>600, 8621=>600, 8622=>600, 8623=>600, 8624=>600, 8625=>600, 8626=>600, 8627=>600, 8628=>600, 8629=>600,
- 8630=>600, 8631=>600, 8632=>600, 8633=>600, 8634=>600, 8635=>600, 8636=>600, 8637=>600, 8638=>600, 8639=>600, 8640=>600, 8641=>600, 8642=>600, 8643=>600, 8644=>600, 8645=>600,
- 8646=>600, 8647=>600, 8648=>600, 8649=>600, 8650=>600, 8651=>600, 8652=>600, 8653=>600, 8654=>600, 8655=>600, 8656=>600, 8657=>600, 8658=>600, 8659=>600, 8660=>600, 8661=>600,
- 8704=>600, 8705=>600, 8706=>600, 8707=>600, 8708=>600, 8709=>600, 8710=>600, 8711=>600, 8712=>600, 8713=>600, 8714=>600, 8715=>600, 8716=>600, 8717=>600, 8719=>600, 8721=>600,
- 8722=>600, 8723=>600, 8724=>600, 8725=>600, 8729=>600, 8730=>600, 8731=>600, 8732=>600, 8733=>600, 8734=>600, 8735=>600, 8743=>600, 8744=>600, 8745=>600, 8746=>600, 8747=>600,
- 8748=>600, 8749=>600, 8750=>600, 8751=>600, 8752=>600, 8756=>600, 8757=>600, 8759=>600, 8764=>600, 8765=>600, 8769=>600, 8770=>600, 8771=>600, 8772=>600, 8773=>600, 8776=>600,
- 8784=>600, 8785=>600, 8786=>600, 8787=>600, 8793=>600, 8794=>600, 8800=>600, 8801=>600, 8804=>600, 8805=>600, 8806=>600, 8807=>600, 8810=>600, 8811=>600, 8812=>600, 8814=>600,
- 8815=>600, 8822=>600, 8823=>600, 8834=>600, 8835=>600, 8838=>600, 8839=>600, 8853=>600, 8854=>600, 8855=>600, 8856=>600, 8857=>600, 8858=>600, 8859=>600, 8860=>600, 8861=>600,
- 8866=>600, 8867=>600, 8868=>600, 8869=>600, 8870=>600, 8871=>600, 8872=>600, 8873=>600, 8874=>600, 8875=>600, 8876=>600, 8877=>600, 8878=>600, 8879=>600, 8894=>600, 8901=>600,
- 8902=>600, 8960=>600, 8962=>600, 8963=>600, 8968=>600, 8969=>600, 8970=>600, 8971=>600, 8972=>600, 8973=>600, 8974=>600, 8975=>600, 8976=>600, 8981=>600, 8988=>600, 8989=>600,
- 8990=>600, 8991=>600, 9001=>600, 9002=>600, 9115=>600, 9116=>600, 9117=>600, 9118=>600, 9119=>600, 9120=>600, 9121=>600, 9122=>600, 9123=>600, 9124=>600, 9125=>600, 9126=>600,
- 9127=>600, 9128=>600, 9129=>600, 9130=>600, 9131=>600, 9132=>600, 9133=>600, 9134=>600, 9135=>600, 9136=>600, 9137=>600, 9138=>600, 9139=>600, 9140=>600, 9143=>600, 9146=>600,
- 9147=>600, 9148=>600, 9149=>600, 9472=>600, 9473=>600, 9474=>600, 9475=>600, 9476=>600, 9477=>600, 9478=>600, 9479=>600, 9480=>600, 9481=>600, 9482=>600, 9483=>600, 9484=>600,
- 9485=>600, 9486=>600, 9487=>600, 9488=>600, 9489=>600, 9490=>600, 9491=>600, 9492=>600, 9493=>600, 9494=>600, 9495=>600, 9496=>600, 9497=>600, 9498=>600, 9499=>600, 9500=>600,
- 9501=>600, 9502=>600, 9503=>600, 9504=>600, 9505=>600, 9506=>600, 9507=>600, 9508=>600, 9509=>600, 9510=>600, 9511=>600, 9512=>600, 9513=>600, 9514=>600, 9515=>600, 9516=>600,
- 9517=>600, 9518=>600, 9519=>600, 9520=>600, 9521=>600, 9522=>600, 9523=>600, 9524=>600, 9525=>600, 9526=>600, 9527=>600, 9528=>600, 9529=>600, 9530=>600, 9531=>600, 9532=>600,
- 9533=>600, 9534=>600, 9535=>600, 9536=>600, 9537=>600, 9538=>600, 9539=>600, 9540=>600, 9541=>600, 9542=>600, 9543=>600, 9544=>600, 9545=>600, 9546=>600, 9547=>600, 9548=>600,
- 9549=>600, 9550=>600, 9551=>600, 9552=>600, 9553=>600, 9554=>600, 9555=>600, 9556=>600, 9557=>600, 9558=>600, 9559=>600, 9560=>600, 9561=>600, 9562=>600, 9563=>600, 9564=>600,
- 9565=>600, 9566=>600, 9567=>600, 9568=>600, 9569=>600, 9570=>600, 9571=>600, 9572=>600, 9573=>600, 9574=>600, 9575=>600, 9576=>600, 9577=>600, 9578=>600, 9579=>600, 9580=>600,
- 9581=>600, 9582=>600, 9583=>600, 9584=>600, 9585=>600, 9586=>600, 9587=>600, 9588=>600, 9589=>600, 9590=>600, 9591=>600, 9592=>600, 9593=>600, 9594=>600, 9595=>600, 9596=>600,
- 9597=>600, 9598=>600, 9599=>600, 9600=>600, 9601=>600, 9602=>600, 9603=>600, 9604=>600, 9605=>600, 9606=>600, 9607=>600, 9608=>600, 9609=>600, 9610=>600, 9611=>600, 9612=>600,
- 9613=>600, 9614=>600, 9615=>600, 9616=>600, 9617=>600, 9618=>600, 9619=>600, 9620=>600, 9621=>600, 9622=>600, 9623=>600, 9624=>600, 9625=>600, 9626=>600, 9627=>600, 9628=>600,
- 9629=>600, 9630=>600, 9631=>600, 9632=>600, 9633=>600, 9634=>600, 9635=>600, 9636=>600, 9637=>600, 9638=>600, 9639=>600, 9640=>600, 9641=>600, 9642=>600, 9643=>600, 9644=>600,
- 9645=>600, 9646=>600, 9647=>600, 9648=>600, 9649=>600, 9650=>600, 9651=>600, 9652=>600, 9653=>600, 9654=>600, 9655=>600, 9656=>600, 9657=>600, 9658=>600, 9659=>600, 9660=>600,
- 9661=>600, 9662=>600, 9663=>600, 9664=>600, 9665=>600, 9666=>600, 9667=>600, 9668=>600, 9669=>600, 9670=>600, 9671=>600, 9672=>600, 9673=>600, 9674=>600, 9675=>600, 9676=>600,
- 9677=>600, 9678=>600, 9679=>600, 9680=>600, 9681=>600, 9682=>600, 9683=>600, 9684=>600, 9685=>600, 9686=>600, 9687=>600, 9688=>600, 9689=>600, 9690=>600, 9691=>600, 9692=>600,
- 9693=>600, 9694=>600, 9695=>600, 9696=>600, 9697=>600, 9698=>600, 9699=>600, 9700=>600, 9701=>600, 9702=>600, 9703=>600, 9704=>600, 9705=>600, 9706=>600, 9707=>600, 9708=>600,
- 9709=>600, 9710=>600, 9711=>600, 9712=>600, 9713=>600, 9714=>600, 9715=>600, 9716=>600, 9717=>600, 9718=>600, 9719=>600, 9720=>600, 9721=>600, 9722=>600, 9723=>600, 9724=>600,
- 9725=>600, 9726=>600, 9727=>600, 9728=>600, 9729=>600, 9730=>600, 9733=>600, 9734=>600, 9735=>600, 9736=>600, 9737=>600, 9744=>600, 9745=>600, 9746=>600, 9756=>600, 9758=>600,
- 9766=>600, 9768=>600, 9769=>600, 9774=>600, 9776=>600, 9777=>600, 9778=>600, 9779=>600, 9780=>600, 9781=>600, 9782=>600, 9783=>600, 9785=>600, 9786=>600, 9787=>600, 9788=>600,
- 9791=>600, 9792=>600, 9793=>600, 9794=>600, 9833=>600, 9834=>600, 9835=>600, 9836=>600, 9837=>600, 9838=>600, 9839=>600, 10214=>600, 10215=>600, 10216=>600, 10217=>600, 10218=>600,
- 10219=>600, 10240=>600, 10241=>600, 10242=>600, 10243=>600, 10244=>600, 10245=>600, 10246=>600, 10247=>600, 10248=>600, 10249=>600, 10250=>600, 10251=>600, 10252=>600, 10253=>600, 10254=>600,
- 10255=>600, 10256=>600, 10257=>600, 10258=>600, 10259=>600, 10260=>600, 10261=>600, 10262=>600, 10263=>600, 10264=>600, 10265=>600, 10266=>600, 10267=>600, 10268=>600, 10269=>600, 10270=>600,
- 10271=>600, 10272=>600, 10273=>600, 10274=>600, 10275=>600, 10276=>600, 10277=>600, 10278=>600, 10279=>600, 10280=>600, 10281=>600, 10282=>600, 10283=>600, 10284=>600, 10285=>600, 10286=>600,
- 10287=>600, 10288=>600, 10289=>600, 10290=>600, 10291=>600, 10292=>600, 10293=>600, 10294=>600, 10295=>600, 10296=>600, 10297=>600, 10298=>600, 10299=>600, 10300=>600, 10301=>600, 10302=>600,
- 10303=>600, 10304=>600, 10305=>600, 10306=>600, 10307=>600, 10308=>600, 10309=>600, 10310=>600, 10311=>600, 10312=>600, 10313=>600, 10314=>600, 10315=>600, 10316=>600, 10317=>600, 10318=>600,
- 10319=>600, 10320=>600, 10321=>600, 10322=>600, 10323=>600, 10324=>600, 10325=>600, 10326=>600, 10327=>600, 10328=>600, 10329=>600, 10330=>600, 10331=>600, 10332=>600, 10333=>600, 10334=>600,
- 10335=>600, 10336=>600, 10337=>600, 10338=>600, 10339=>600, 10340=>600, 10341=>600, 10342=>600, 10343=>600, 10344=>600, 10345=>600, 10346=>600, 10347=>600, 10348=>600, 10349=>600, 10350=>600,
- 10351=>600, 10352=>600, 10353=>600, 10354=>600, 10355=>600, 10356=>600, 10357=>600, 10358=>600, 10359=>600, 10360=>600, 10361=>600, 10362=>600, 10363=>600, 10364=>600, 10365=>600, 10366=>600,
- 10367=>600, 10368=>600, 10369=>600, 10370=>600, 10371=>600, 10372=>600, 10373=>600, 10374=>600, 10375=>600, 10376=>600, 10377=>600, 10378=>600, 10379=>600, 10380=>600, 10381=>600, 10382=>600,
- 10383=>600, 10384=>600, 10385=>600, 10386=>600, 10387=>600, 10388=>600, 10389=>600, 10390=>600, 10391=>600, 10392=>600, 10393=>600, 10394=>600, 10395=>600, 10396=>600, 10397=>600, 10398=>600,
- 10399=>600, 10400=>600, 10401=>600, 10402=>600, 10403=>600, 10404=>600, 10405=>600, 10406=>600, 10407=>600, 10408=>600, 10409=>600, 10410=>600, 10411=>600, 10412=>600, 10413=>600, 10414=>600,
- 10415=>600, 10416=>600, 10417=>600, 10418=>600, 10419=>600, 10420=>600, 10421=>600, 10422=>600, 10423=>600, 10424=>600, 10425=>600, 10426=>600, 10427=>600, 10428=>600, 10429=>600, 10430=>600,
- 10431=>600, 10432=>600, 10433=>600, 10434=>600, 10435=>600, 10436=>600, 10437=>600, 10438=>600, 10439=>600, 10440=>600, 10441=>600, 10442=>600, 10443=>600, 10444=>600, 10445=>600, 10446=>600,
- 10447=>600, 10448=>600, 10449=>600, 10450=>600, 10451=>600, 10452=>600, 10453=>600, 10454=>600, 10455=>600, 10456=>600, 10457=>600, 10458=>600, 10459=>600, 10460=>600, 10461=>600, 10462=>600,
- 10463=>600, 10464=>600, 10465=>600, 10466=>600, 10467=>600, 10468=>600, 10469=>600, 10470=>600, 10471=>600, 10472=>600, 10473=>600, 10474=>600, 10475=>600, 10476=>600, 10477=>600, 10478=>600,
- 10479=>600, 10480=>600, 10481=>600, 10482=>600, 10483=>600, 10484=>600, 10485=>600, 10486=>600, 10487=>600, 10488=>600, 10489=>600, 10490=>600, 10491=>600, 10492=>600, 10493=>600, 10494=>600,
- 10495=>600, 63171=>600, 64256=>600, 64257=>600, 64258=>600, 64261=>600, 64262=>600, 64285=>600, 64286=>600, 64287=>600, 64288=>600, 64289=>600, 64290=>600, 64291=>600, 64292=>600, 64293=>600,
- 64294=>600, 64295=>600, 64296=>600, 64297=>600, 64298=>600, 64299=>600, 64300=>600, 64301=>600, 64302=>600, 64303=>600, 64304=>600, 64305=>600, 64306=>600, 64307=>600, 64308=>600, 64309=>600,
- 64310=>600, 64312=>600, 64313=>600, 64314=>600, 64315=>600, 64316=>600, 64318=>600, 64320=>600, 64321=>600, 64323=>600, 64324=>600, 64326=>600, 64327=>600, 64328=>600, 64329=>600, 64330=>600,
- 64331=>600, 64332=>600, 64333=>600, 64334=>600, 64335=>600, 65533=>600, 8174=>600);
+ 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600, 47=>600,
+ 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600, 63=>600,
+ 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600, 79=>600,
+ 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600, 95=>600,
+ 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600, 111=>600,
+ 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600, 8364=>600,
+ 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600, 8216=>600,
+ 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600, 161=>600,
+ 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600, 177=>600,
+ 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600, 193=>600,
+ 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600, 209=>600,
+ 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600, 225=>600,
+ 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600, 241=>600,
+ 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600, 257=>600,
+ 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600, 273=>600,
+ 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600, 289=>600,
+ 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600, 305=>600,
+ 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600, 321=>600,
+ 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600, 337=>600,
+ 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600, 357=>783,
+ 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600, 373=>600,
+ 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, 385=>600, 386=>600, 387=>600, 388=>600, 389=>600, 390=>600, 391=>600, 392=>600,
+ 393=>600, 394=>600, 395=>600, 396=>600, 397=>600, 398=>600, 399=>600, 400=>600, 401=>600, 403=>600, 404=>600, 405=>600, 406=>600, 407=>600, 408=>600, 409=>600,
+ 410=>600, 411=>600, 412=>600, 413=>600, 414=>600, 415=>600, 416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600, 425=>600,
+ 426=>600, 427=>600, 428=>600, 429=>600, 430=>600, 431=>600, 432=>600, 433=>600, 434=>600, 435=>600, 436=>600, 437=>600, 438=>600, 439=>600, 440=>600, 441=>600,
+ 442=>600, 443=>600, 444=>600, 445=>600, 446=>600, 447=>600, 448=>600, 449=>600, 450=>600, 451=>600, 452=>600, 453=>600, 454=>600, 455=>600, 456=>600, 457=>600,
+ 458=>600, 459=>600, 460=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600,
+ 474=>600, 475=>600, 476=>600, 477=>600, 478=>600, 479=>600, 480=>600, 481=>600, 482=>600, 483=>600, 484=>600, 485=>600, 486=>600, 487=>600, 488=>600, 489=>600,
+ 490=>600, 491=>600, 492=>600, 493=>600, 494=>600, 495=>600, 496=>600, 497=>600, 498=>600, 499=>600, 500=>600, 501=>600, 502=>600, 503=>600, 504=>600, 505=>600,
+ 506=>600, 507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>801, 513=>801, 514=>950, 515=>950, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600,
+ 522=>600, 523=>600, 524=>600, 525=>600, 526=>600, 527=>600, 528=>600, 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600, 537=>600,
+ 538=>600, 539=>600, 540=>600, 541=>600, 542=>600, 543=>600, 548=>600, 549=>600, 550=>600, 551=>600, 552=>600, 553=>600, 554=>600, 555=>600, 556=>600, 557=>600,
+ 558=>600, 559=>600, 560=>600, 561=>600, 562=>600, 563=>600, 592=>600, 593=>600, 594=>600, 595=>600, 596=>600, 597=>600, 598=>600, 599=>600, 600=>600, 601=>600,
+ 602=>600, 603=>600, 604=>600, 607=>600, 608=>600, 609=>600, 610=>600, 611=>600, 612=>600, 613=>600, 614=>600, 615=>600, 616=>600, 617=>600, 618=>600, 619=>600,
+ 620=>600, 621=>600, 622=>600, 623=>600, 624=>600, 625=>600, 626=>600, 627=>600, 628=>600, 629=>600, 630=>600, 632=>600, 633=>600, 634=>600, 635=>600, 636=>600,
+ 637=>600, 638=>600, 639=>600, 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 646=>600, 647=>600, 648=>600, 649=>600, 652=>600, 653=>600, 654=>600,
+ 655=>600, 656=>600, 657=>600, 658=>600, 660=>600, 661=>600, 662=>600, 663=>600, 664=>600, 665=>600, 667=>600, 668=>600, 669=>600, 670=>600, 671=>600, 672=>600,
+ 673=>600, 674=>600, 675=>600, 676=>600, 678=>600, 679=>600, 699=>600, 700=>600, 701=>600, 702=>600, 703=>600, 711=>600, 712=>600, 713=>600, 714=>600, 715=>600,
+ 720=>600, 721=>600, 722=>600, 723=>600, 724=>600, 725=>600, 726=>600, 727=>600, 728=>600, 729=>600, 730=>600, 731=>600, 733=>600, 735=>600, 750=>600, 768=>0,
+ 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0,
+ 785=>0, 795=>0, 801=>0, 802=>0, 807=>0, 808=>0, 821=>0, 822=>0, 823=>0, 824=>0, 834=>0, 836=>0, 890=>600, 900=>600, 901=>600, 902=>600,
+ 903=>600, 904=>600, 905=>600, 906=>600, 908=>600, 910=>600, 911=>600, 912=>600, 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600, 920=>600,
+ 921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600, 931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600, 937=>600,
+ 938=>600, 939=>600, 940=>600, 941=>600, 942=>600, 943=>600, 944=>600, 945=>600, 946=>600, 947=>600, 948=>600, 949=>600, 950=>600, 951=>600, 952=>600, 953=>600,
+ 954=>600, 955=>600, 956=>600, 957=>600, 958=>600, 959=>600, 960=>600, 961=>600, 962=>600, 963=>600, 964=>600, 965=>600, 966=>600, 967=>600, 968=>600, 969=>600,
+ 970=>600, 971=>600, 972=>600, 973=>600, 974=>600, 976=>600, 977=>600, 981=>600, 986=>600, 987=>600, 988=>600, 1024=>600, 1025=>600, 1026=>600, 1028=>600, 1029=>600,
+ 1030=>600, 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600, 1043=>600, 1044=>600, 1045=>600, 1046=>600, 1047=>600,
+ 1048=>600, 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600, 1059=>600, 1060=>600, 1061=>600, 1062=>600, 1063=>600,
+ 1064=>600, 1065=>600, 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600, 1075=>600, 1076=>600, 1077=>600, 1078=>600, 1079=>600,
+ 1080=>600, 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600, 1091=>600, 1092=>600, 1093=>600, 1094=>600, 1095=>600,
+ 1096=>600, 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600, 1107=>600, 1108=>600, 1109=>600, 1110=>600, 1111=>600,
+ 1112=>600, 1113=>600, 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1124=>600, 1130=>600, 1132=>600, 1136=>600, 1137=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600,
+ 1168=>600, 1169=>600, 1170=>600, 1171=>600, 1172=>600, 1173=>600, 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600,
+ 1184=>600, 1185=>600, 1186=>600, 1187=>600, 1188=>600, 1189=>600, 1190=>600, 1191=>600, 1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600, 1198=>600, 1199=>600,
+ 1200=>600, 1201=>600, 1202=>600, 1203=>600, 1204=>600, 1205=>600, 1206=>600, 1207=>600, 1208=>600, 1209=>600, 1210=>600, 1211=>600, 1212=>600, 1213=>600, 1214=>600, 1215=>600,
+ 1216=>600, 1217=>600, 1218=>600, 1219=>600, 1220=>600, 1221=>600, 1222=>600, 1223=>600, 1224=>600, 1225=>600, 1226=>600, 1227=>600, 1228=>600, 1229=>600, 1230=>600, 1232=>600,
+ 1233=>600, 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600, 1239=>600, 1240=>600, 1241=>600, 1242=>600, 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600,
+ 1249=>600, 1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600, 1255=>600, 1256=>600, 1257=>600, 1258=>600, 1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600,
+ 1265=>600, 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1272=>600, 1273=>600, 1329=>600, 1330=>600, 1331=>600, 1332=>600, 1333=>600, 1334=>600, 1335=>600, 1336=>600, 1337=>600,
+ 1338=>600, 1339=>600, 1340=>600, 1341=>600, 1342=>600, 1343=>600, 1344=>600, 1345=>600, 1346=>600, 1347=>600, 1348=>600, 1349=>600, 1350=>600, 1351=>600, 1352=>600, 1353=>600,
+ 1354=>600, 1355=>600, 1356=>600, 1357=>600, 1358=>600, 1359=>600, 1360=>600, 1361=>600, 1362=>600, 1363=>600, 1364=>600, 1365=>600, 1366=>600, 1377=>600, 1378=>600, 1379=>600,
+ 1380=>600, 1381=>600, 1382=>600, 1383=>600, 1384=>600, 1385=>600, 1386=>600, 1387=>600, 1388=>600, 1389=>600, 1390=>600, 1391=>600, 1392=>600, 1393=>600, 1394=>600, 1395=>600,
+ 1396=>600, 1397=>600, 1398=>600, 1399=>600, 1400=>600, 1401=>600, 1402=>600, 1403=>600, 1404=>600, 1405=>600, 1406=>600, 1407=>600, 1408=>600, 1409=>600, 1410=>600, 1411=>600,
+ 1412=>600, 1413=>600, 1414=>600, 1417=>600, 1418=>600, 1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600, 1464=>600, 1465=>600, 1467=>600,
+ 1468=>600, 1469=>600, 1470=>600, 1471=>600, 1472=>600, 1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600,
+ 1495=>600, 1496=>600, 1497=>600, 1498=>600, 1499=>600, 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600,
+ 1511=>600, 1512=>600, 1513=>600, 1514=>600, 1520=>600, 1521=>600, 1522=>600, 1523=>600, 1524=>600, 5792=>600, 5793=>600, 5794=>600, 5795=>600, 5796=>600, 5797=>600, 5798=>600,
+ 5799=>600, 5800=>600, 5801=>600, 5802=>600, 5803=>600, 5804=>600, 5805=>600, 5806=>600, 5807=>600, 5808=>600, 5809=>600, 5810=>600, 5811=>600, 5812=>600, 5813=>600, 5814=>600,
+ 5815=>600, 5816=>600, 5817=>600, 5818=>600, 5819=>600, 5820=>600, 5821=>600, 5822=>600, 5823=>600, 5824=>600, 5825=>600, 5826=>600, 5827=>600, 5828=>600, 5829=>600, 5830=>600,
+ 5831=>600, 5832=>600, 5833=>600, 5834=>600, 5835=>600, 5836=>600, 5837=>600, 5838=>600, 5839=>600, 5840=>600, 5841=>600, 5842=>600, 5843=>600, 5844=>600, 5845=>600, 5846=>600,
+ 5847=>600, 5848=>600, 5849=>600, 5850=>600, 5851=>600, 5852=>600, 5853=>600, 5854=>600, 5855=>600, 5856=>600, 5857=>600, 5858=>600, 5859=>600, 5860=>600, 5861=>600, 5862=>600,
+ 5863=>600, 5864=>600, 5865=>600, 5866=>600, 5867=>600, 5868=>600, 5869=>600, 5870=>600, 5871=>600, 5872=>600, 7680=>600, 7681=>600, 7682=>600, 7683=>600, 7684=>600, 7685=>600,
+ 7686=>600, 7687=>600, 7688=>600, 7689=>600, 7690=>600, 7691=>600, 7692=>600, 7693=>600, 7694=>600, 7695=>600, 7696=>600, 7697=>600, 7698=>600, 7699=>600, 7700=>600, 7701=>600,
+ 7702=>600, 7703=>600, 7704=>600, 7705=>600, 7706=>600, 7707=>600, 7708=>600, 7709=>600, 7710=>600, 7711=>600, 7712=>600, 7713=>600, 7714=>600, 7715=>600, 7716=>600, 7717=>600,
+ 7718=>600, 7719=>600, 7720=>600, 7721=>600, 7722=>600, 7723=>600, 7724=>600, 7725=>600, 7726=>600, 7727=>600, 7728=>600, 7729=>600, 7730=>600, 7731=>600, 7732=>600, 7733=>600,
+ 7734=>600, 7735=>600, 7736=>600, 7737=>600, 7738=>600, 7739=>600, 7740=>600, 7741=>600, 7742=>600, 7743=>600, 7744=>600, 7745=>600, 7746=>600, 7747=>600, 7748=>600, 7749=>600,
+ 7750=>600, 7751=>600, 7752=>600, 7753=>600, 7754=>600, 7755=>600, 7756=>600, 7757=>600, 7758=>600, 7759=>600, 7760=>600, 7761=>600, 7762=>600, 7763=>600, 7764=>600, 7765=>600,
+ 7766=>600, 7767=>600, 7768=>600, 7769=>600, 7770=>600, 7771=>600, 7772=>600, 7773=>600, 7774=>600, 7775=>600, 7776=>600, 7777=>600, 7778=>600, 7779=>600, 7780=>600, 7781=>600,
+ 7782=>600, 7783=>600, 7784=>600, 7785=>600, 7786=>600, 7787=>600, 7788=>600, 7789=>600, 7790=>600, 7791=>600, 7792=>600, 7793=>600, 7794=>600, 7795=>600, 7796=>600, 7797=>600,
+ 7798=>600, 7799=>600, 7800=>600, 7801=>600, 7802=>600, 7803=>600, 7804=>600, 7805=>600, 7806=>600, 7807=>600, 7808=>600, 7809=>600, 7810=>600, 7811=>600, 7812=>600, 7813=>600,
+ 7814=>600, 7815=>600, 7816=>600, 7817=>600, 7818=>600, 7819=>600, 7820=>600, 7821=>600, 7822=>600, 7823=>600, 7824=>600, 7825=>600, 7826=>600, 7827=>600, 7828=>600, 7829=>600,
+ 7830=>600, 7831=>600, 7832=>600, 7833=>600, 7834=>600, 7835=>600, 7840=>600, 7841=>600, 7842=>660, 7843=>660, 7844=>600, 7845=>600, 7846=>600, 7847=>600, 7848=>660, 7849=>660,
+ 7850=>600, 7851=>600, 7852=>600, 7853=>600, 7854=>600, 7855=>600, 7856=>600, 7857=>600, 7858=>660, 7859=>660, 7860=>600, 7861=>600, 7862=>600, 7863=>600, 7864=>600, 7865=>600,
+ 7866=>600, 7867=>600, 7868=>600, 7869=>600, 7870=>600, 7871=>600, 7872=>600, 7873=>600, 7874=>600, 7875=>600, 7876=>600, 7877=>600, 7878=>600, 7879=>600, 7880=>600, 7881=>600,
+ 7882=>600, 7883=>600, 7884=>600, 7885=>600, 7886=>600, 7887=>600, 7888=>600, 7889=>600, 7890=>600, 7891=>600, 7892=>600, 7893=>600, 7894=>600, 7895=>600, 7896=>600, 7897=>600,
+ 7898=>600, 7899=>600, 7900=>600, 7901=>600, 7902=>600, 7903=>600, 7904=>600, 7905=>600, 7906=>600, 7907=>600, 7908=>600, 7909=>600, 7910=>600, 7911=>600, 7912=>600, 7913=>600,
+ 7914=>600, 7915=>600, 7916=>600, 7917=>600, 7918=>600, 7919=>600, 7920=>600, 7921=>600, 7922=>600, 7923=>600, 7924=>600, 7925=>600, 7926=>600, 7927=>600, 7928=>600, 7929=>600,
+ 7936=>600, 7937=>600, 7938=>600, 7939=>600, 7940=>600, 7941=>600, 7942=>600, 7943=>600, 7944=>600, 7945=>600, 7946=>600, 7947=>600, 7948=>600, 7949=>600, 7950=>600, 7951=>600,
+ 7952=>600, 7953=>600, 7954=>600, 7955=>600, 7956=>600, 7957=>600, 7960=>600, 7961=>600, 7962=>600, 7963=>600, 7964=>600, 7965=>600, 7968=>600, 7969=>600, 7970=>600, 7971=>600,
+ 7972=>600, 7973=>600, 7974=>600, 7975=>600, 7976=>600, 7977=>600, 7978=>600, 7979=>600, 7980=>600, 7981=>600, 7982=>600, 7983=>600, 7984=>600, 7985=>600, 7986=>600, 7987=>600,
+ 7988=>600, 7989=>600, 7990=>600, 7991=>600, 7992=>600, 7993=>600, 7994=>600, 7995=>600, 7996=>600, 7997=>600, 7998=>600, 7999=>600, 8000=>600, 8001=>600, 8002=>600, 8003=>600,
+ 8004=>600, 8005=>600, 8008=>600, 8009=>600, 8010=>600, 8011=>600, 8012=>600, 8013=>600, 8016=>600, 8017=>600, 8018=>600, 8019=>600, 8020=>600, 8021=>600, 8022=>600, 8023=>600,
+ 8025=>600, 8027=>600, 8029=>600, 8031=>600, 8032=>600, 8033=>600, 8034=>600, 8035=>600, 8036=>600, 8037=>600, 8038=>600, 8039=>600, 8040=>600, 8041=>600, 8042=>600, 8043=>600,
+ 8044=>600, 8045=>600, 8046=>600, 8047=>600, 8048=>600, 8049=>600, 8050=>600, 8051=>600, 8052=>600, 8053=>600, 8054=>600, 8055=>600, 8056=>600, 8057=>600, 8058=>600, 8059=>600,
+ 8060=>600, 8061=>600, 8064=>600, 8065=>600, 8066=>600, 8067=>600, 8068=>600, 8069=>600, 8070=>600, 8071=>600, 8072=>600, 8073=>600, 8074=>600, 8075=>600, 8076=>600, 8077=>600,
+ 8078=>600, 8079=>600, 8080=>600, 8081=>600, 8082=>600, 8083=>600, 8084=>600, 8085=>600, 8086=>600, 8087=>600, 8088=>600, 8089=>600, 8090=>600, 8091=>600, 8092=>600, 8093=>600,
+ 8094=>600, 8095=>600, 8096=>600, 8097=>600, 8098=>600, 8099=>600, 8100=>600, 8101=>600, 8102=>600, 8103=>600, 8104=>600, 8105=>600, 8106=>600, 8107=>600, 8108=>600, 8109=>600,
+ 8110=>600, 8111=>600, 8112=>600, 8113=>600, 8114=>600, 8115=>600, 8116=>600, 8118=>600, 8119=>600, 8120=>600, 8121=>600, 8122=>600, 8123=>600, 8124=>600, 8126=>600, 8127=>600,
+ 8128=>600, 8129=>600, 8130=>600, 8131=>600, 8132=>600, 8134=>600, 8135=>600, 8136=>600, 8137=>600, 8138=>600, 8139=>600, 8140=>600, 8141=>600, 8142=>600, 8143=>600, 8144=>600,
+ 8145=>600, 8146=>600, 8147=>600, 8150=>600, 8151=>600, 8152=>600, 8153=>600, 8154=>600, 8155=>600, 8157=>600, 8158=>600, 8159=>600, 8160=>600, 8161=>600, 8162=>600, 8163=>600,
+ 8164=>600, 8165=>600, 8166=>600, 8167=>600, 8168=>600, 8169=>600, 8170=>600, 8171=>600, 8172=>600, 8173=>600, 8174=>600, 8175=>600, 8178=>600, 8179=>600, 8180=>600, 8182=>600,
+ 8183=>600, 8184=>600, 8185=>600, 8186=>600, 8187=>600, 8188=>600, 8189=>600, 8190=>600, 8208=>600, 8209=>600, 8210=>600, 8213=>600, 8215=>600, 8219=>600, 8223=>600, 8241=>600,
+ 8242=>600, 8243=>600, 8244=>600, 8245=>600, 8246=>600, 8247=>600, 8251=>600, 8252=>600, 8253=>600, 8254=>600, 8260=>600, 8261=>600, 8262=>600, 8264=>600, 8265=>600, 8266=>600,
+ 8267=>600, 8304=>600, 8305=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600, 8314=>600, 8315=>600, 8316=>600, 8317=>600, 8318=>600, 8319=>600, 8320=>600,
+ 8321=>600, 8322=>600, 8323=>600, 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8330=>600, 8331=>600, 8332=>600, 8333=>600, 8334=>600, 8355=>600, 8356=>600,
+ 8359=>600, 8362=>600, 8373=>600, 8448=>600, 8449=>600, 8450=>600, 8451=>600, 8453=>600, 8454=>600, 8455=>600, 8461=>600, 8464=>600, 8465=>600, 8466=>600, 8467=>600, 8468=>600,
+ 8469=>600, 8470=>600, 8471=>600, 8472=>600, 8473=>600, 8474=>600, 8477=>600, 8478=>600, 8484=>600, 8486=>600, 8487=>600, 8489=>600, 8490=>600, 8491=>600, 8498=>600, 8501=>600,
+ 8531=>600, 8532=>600, 8533=>600, 8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8544=>600, 8545=>600, 8546=>600,
+ 8547=>600, 8548=>600, 8549=>600, 8550=>600, 8551=>600, 8552=>600, 8553=>600, 8554=>600, 8555=>600, 8556=>600, 8557=>600, 8558=>600, 8559=>600, 8592=>600, 8593=>600, 8594=>600,
+ 8595=>600, 8596=>600, 8597=>600, 8598=>600, 8599=>600, 8600=>600, 8601=>600, 8602=>600, 8603=>600, 8604=>600, 8605=>600, 8606=>600, 8607=>600, 8608=>600, 8609=>600, 8610=>600,
+ 8611=>600, 8612=>600, 8613=>600, 8614=>600, 8615=>600, 8616=>600, 8617=>600, 8618=>600, 8619=>600, 8620=>600, 8621=>600, 8622=>600, 8623=>600, 8624=>600, 8625=>600, 8626=>600,
+ 8627=>600, 8628=>600, 8629=>600, 8630=>600, 8631=>600, 8632=>600, 8633=>600, 8634=>600, 8635=>600, 8636=>600, 8637=>600, 8638=>600, 8639=>600, 8640=>600, 8641=>600, 8642=>600,
+ 8643=>600, 8644=>600, 8645=>600, 8646=>600, 8647=>600, 8648=>600, 8649=>600, 8650=>600, 8651=>600, 8652=>600, 8653=>600, 8654=>600, 8655=>600, 8656=>600, 8657=>600, 8658=>600,
+ 8659=>600, 8660=>600, 8661=>600, 8704=>600, 8706=>600, 8707=>600, 8708=>600, 8709=>600, 8710=>600, 8711=>600, 8712=>600, 8713=>600, 8714=>600, 8715=>600, 8716=>600, 8717=>600,
+ 8719=>600, 8721=>600, 8722=>600, 8723=>600, 8724=>600, 8725=>600, 8727=>600, 8728=>600, 8729=>600, 8730=>600, 8731=>600, 8732=>600, 8733=>600, 8734=>600, 8735=>600, 8743=>600,
+ 8744=>600, 8745=>600, 8746=>600, 8747=>600, 8748=>600, 8749=>600, 8750=>600, 8751=>600, 8752=>600, 8754=>600, 8755=>600, 8756=>600, 8757=>600, 8759=>600, 8764=>600, 8765=>600,
+ 8769=>600, 8770=>600, 8771=>600, 8772=>600, 8773=>600, 8776=>600, 8784=>600, 8785=>600, 8786=>600, 8787=>600, 8793=>600, 8794=>600, 8800=>600, 8801=>600, 8802=>600, 8804=>600,
+ 8805=>600, 8806=>600, 8807=>600, 8810=>600, 8811=>600, 8812=>600, 8814=>600, 8815=>600, 8822=>600, 8823=>600, 8834=>600, 8835=>600, 8838=>600, 8839=>600, 8853=>600, 8854=>600,
+ 8855=>600, 8856=>600, 8857=>600, 8858=>600, 8859=>600, 8860=>600, 8861=>600, 8866=>600, 8867=>600, 8868=>600, 8869=>600, 8870=>600, 8871=>600, 8872=>600, 8873=>600, 8874=>600,
+ 8875=>600, 8876=>600, 8877=>600, 8878=>600, 8879=>600, 8894=>600, 8901=>600, 8902=>600, 8960=>600, 8963=>600, 8968=>600, 8969=>600, 8970=>600, 8971=>600, 8972=>600, 8973=>600,
+ 8974=>600, 8975=>600, 8976=>600, 8981=>600, 8988=>600, 8989=>600, 8990=>600, 8991=>600, 9001=>600, 9002=>600, 9115=>600, 9116=>600, 9117=>600, 9118=>600, 9119=>600, 9120=>600,
+ 9121=>600, 9122=>600, 9123=>600, 9124=>600, 9125=>600, 9126=>600, 9127=>600, 9128=>600, 9129=>600, 9130=>600, 9131=>600, 9132=>600, 9133=>600, 9134=>600, 9135=>600, 9136=>600,
+ 9137=>600, 9138=>600, 9139=>600, 9140=>600, 9143=>600, 9146=>600, 9147=>600, 9148=>600, 9149=>600, 9472=>600, 9473=>600, 9474=>600, 9475=>600, 9476=>600, 9477=>600, 9478=>600,
+ 9479=>600, 9480=>600, 9481=>600, 9482=>600, 9483=>600, 9484=>600, 9485=>600, 9486=>600, 9487=>600, 9488=>600, 9489=>600, 9490=>600, 9491=>600, 9492=>600, 9493=>600, 9494=>600,
+ 9495=>600, 9496=>600, 9497=>600, 9498=>600, 9499=>600, 9500=>600, 9501=>600, 9502=>600, 9503=>600, 9504=>600, 9505=>600, 9506=>600, 9507=>600, 9508=>600, 9509=>600, 9510=>600,
+ 9511=>600, 9512=>600, 9513=>600, 9514=>600, 9515=>600, 9516=>600, 9517=>600, 9518=>600, 9519=>600, 9520=>600, 9521=>600, 9522=>600, 9523=>600, 9524=>600, 9525=>600, 9526=>600,
+ 9527=>600, 9528=>600, 9529=>600, 9530=>600, 9531=>600, 9532=>600, 9533=>600, 9534=>600, 9535=>600, 9536=>600, 9537=>600, 9538=>600, 9539=>600, 9540=>600, 9541=>600, 9542=>600,
+ 9543=>600, 9544=>600, 9545=>600, 9546=>600, 9547=>600, 9548=>600, 9549=>600, 9550=>600, 9551=>600, 9552=>600, 9553=>600, 9554=>600, 9555=>600, 9556=>600, 9557=>600, 9558=>600,
+ 9559=>600, 9560=>600, 9561=>600, 9562=>600, 9563=>600, 9564=>600, 9565=>600, 9566=>600, 9567=>600, 9568=>600, 9569=>600, 9570=>600, 9571=>600, 9572=>600, 9573=>600, 9574=>600,
+ 9575=>600, 9576=>600, 9577=>600, 9578=>600, 9579=>600, 9580=>600, 9581=>600, 9582=>600, 9583=>600, 9584=>600, 9585=>600, 9586=>600, 9587=>600, 9588=>600, 9589=>600, 9590=>600,
+ 9591=>600, 9592=>600, 9593=>600, 9594=>600, 9595=>600, 9596=>600, 9597=>600, 9598=>600, 9599=>600, 9600=>600, 9601=>600, 9602=>600, 9603=>600, 9604=>600, 9605=>600, 9606=>600,
+ 9607=>600, 9608=>600, 9609=>600, 9610=>600, 9611=>600, 9612=>600, 9613=>600, 9614=>600, 9615=>600, 9616=>600, 9617=>600, 9618=>600, 9619=>600, 9620=>600, 9621=>600, 9622=>600,
+ 9623=>600, 9624=>600, 9625=>600, 9626=>600, 9627=>600, 9628=>600, 9629=>600, 9630=>600, 9631=>600, 9632=>600, 9633=>600, 9634=>600, 9635=>600, 9636=>600, 9637=>600, 9638=>600,
+ 9639=>600, 9640=>600, 9641=>600, 9642=>600, 9643=>600, 9644=>600, 9645=>600, 9646=>600, 9647=>600, 9648=>600, 9649=>600, 9650=>600, 9651=>600, 9652=>600, 9653=>600, 9654=>600,
+ 9655=>600, 9656=>600, 9657=>600, 9658=>600, 9659=>600, 9660=>600, 9661=>600, 9662=>600, 9663=>600, 9664=>600, 9665=>600, 9666=>600, 9667=>600, 9668=>600, 9669=>600, 9670=>600,
+ 9671=>600, 9672=>600, 9673=>600, 9674=>600, 9675=>600, 9676=>600, 9677=>600, 9678=>600, 9679=>600, 9680=>600, 9681=>600, 9682=>600, 9683=>600, 9684=>600, 9685=>600, 9686=>600,
+ 9687=>600, 9688=>600, 9689=>600, 9690=>600, 9691=>600, 9692=>600, 9693=>600, 9694=>600, 9695=>600, 9696=>600, 9697=>600, 9698=>600, 9699=>600, 9700=>600, 9701=>600, 9702=>600,
+ 9703=>600, 9704=>600, 9705=>600, 9706=>600, 9707=>600, 9708=>600, 9709=>600, 9710=>600, 9711=>600, 9712=>600, 9713=>600, 9714=>600, 9715=>600, 9716=>600, 9717=>600, 9718=>600,
+ 9719=>600, 9720=>600, 9721=>600, 9722=>600, 9723=>600, 9724=>600, 9725=>600, 9726=>600, 9727=>600, 9728=>600, 9729=>600, 9730=>600, 9733=>600, 9734=>600, 9735=>600, 9736=>600,
+ 9737=>600, 9744=>600, 9745=>600, 9746=>600, 9756=>600, 9758=>600, 9766=>600, 9768=>600, 9769=>600, 9774=>600, 9776=>600, 9777=>600, 9778=>600, 9779=>600, 9780=>600, 9781=>600,
+ 9782=>600, 9783=>600, 9785=>600, 9786=>600, 9787=>600, 9788=>600, 9791=>600, 9792=>600, 9793=>600, 9794=>600, 9833=>600, 9834=>600, 9835=>600, 9836=>600, 9837=>600, 9838=>600,
+ 9839=>600, 10214=>600, 10215=>600, 10216=>600, 10217=>600, 10218=>600, 10219=>600, 10240=>600, 10241=>600, 10242=>600, 10243=>600, 10244=>600, 10245=>600, 10246=>600, 10247=>600, 10248=>600,
+ 10249=>600, 10250=>600, 10251=>600, 10252=>600, 10253=>600, 10254=>600, 10255=>600, 10256=>600, 10257=>600, 10258=>600, 10259=>600, 10260=>600, 10261=>600, 10262=>600, 10263=>600, 10264=>600,
+ 10265=>600, 10266=>600, 10267=>600, 10268=>600, 10269=>600, 10270=>600, 10271=>600, 10272=>600, 10273=>600, 10274=>600, 10275=>600, 10276=>600, 10277=>600, 10278=>600, 10279=>600, 10280=>600,
+ 10281=>600, 10282=>600, 10283=>600, 10284=>600, 10285=>600, 10286=>600, 10287=>600, 10288=>600, 10289=>600, 10290=>600, 10291=>600, 10292=>600, 10293=>600, 10294=>600, 10295=>600, 10296=>600,
+ 10297=>600, 10298=>600, 10299=>600, 10300=>600, 10301=>600, 10302=>600, 10303=>600, 10304=>600, 10305=>600, 10306=>600, 10307=>600, 10308=>600, 10309=>600, 10310=>600, 10311=>600, 10312=>600,
+ 10313=>600, 10314=>600, 10315=>600, 10316=>600, 10317=>600, 10318=>600, 10319=>600, 10320=>600, 10321=>600, 10322=>600, 10323=>600, 10324=>600, 10325=>600, 10326=>600, 10327=>600, 10328=>600,
+ 10329=>600, 10330=>600, 10331=>600, 10332=>600, 10333=>600, 10334=>600, 10335=>600, 10336=>600, 10337=>600, 10338=>600, 10339=>600, 10340=>600, 10341=>600, 10342=>600, 10343=>600, 10344=>600,
+ 10345=>600, 10346=>600, 10347=>600, 10348=>600, 10349=>600, 10350=>600, 10351=>600, 10352=>600, 10353=>600, 10354=>600, 10355=>600, 10356=>600, 10357=>600, 10358=>600, 10359=>600, 10360=>600,
+ 10361=>600, 10362=>600, 10363=>600, 10364=>600, 10365=>600, 10366=>600, 10367=>600, 10368=>600, 10369=>600, 10370=>600, 10371=>600, 10372=>600, 10373=>600, 10374=>600, 10375=>600, 10376=>600,
+ 10377=>600, 10378=>600, 10379=>600, 10380=>600, 10381=>600, 10382=>600, 10383=>600, 10384=>600, 10385=>600, 10386=>600, 10387=>600, 10388=>600, 10389=>600, 10390=>600, 10391=>600, 10392=>600,
+ 10393=>600, 10394=>600, 10395=>600, 10396=>600, 10397=>600, 10398=>600, 10399=>600, 10400=>600, 10401=>600, 10402=>600, 10403=>600, 10404=>600, 10405=>600, 10406=>600, 10407=>600, 10408=>600,
+ 10409=>600, 10410=>600, 10411=>600, 10412=>600, 10413=>600, 10414=>600, 10415=>600, 10416=>600, 10417=>600, 10418=>600, 10419=>600, 10420=>600, 10421=>600, 10422=>600, 10423=>600, 10424=>600,
+ 10425=>600, 10426=>600, 10427=>600, 10428=>600, 10429=>600, 10430=>600, 10431=>600, 10432=>600, 10433=>600, 10434=>600, 10435=>600, 10436=>600, 10437=>600, 10438=>600, 10439=>600, 10440=>600,
+ 10441=>600, 10442=>600, 10443=>600, 10444=>600, 10445=>600, 10446=>600, 10447=>600, 10448=>600, 10449=>600, 10450=>600, 10451=>600, 10452=>600, 10453=>600, 10454=>600, 10455=>600, 10456=>600,
+ 10457=>600, 10458=>600, 10459=>600, 10460=>600, 10461=>600, 10462=>600, 10463=>600, 10464=>600, 10465=>600, 10466=>600, 10467=>600, 10468=>600, 10469=>600, 10470=>600, 10471=>600, 10472=>600,
+ 10473=>600, 10474=>600, 10475=>600, 10476=>600, 10477=>600, 10478=>600, 10479=>600, 10480=>600, 10481=>600, 10482=>600, 10483=>600, 10484=>600, 10485=>600, 10486=>600, 10487=>600, 10488=>600,
+ 10489=>600, 10490=>600, 10491=>600, 10492=>600, 10493=>600, 10494=>600, 10495=>600, 63166=>600, 63171=>600, 64256=>600, 64257=>600, 64258=>600, 64261=>600, 64262=>600, 64285=>600, 64286=>600,
+ 64287=>600, 64288=>600, 64289=>600, 64290=>600, 64291=>600, 64292=>600, 64293=>600, 64294=>600, 64295=>600, 64296=>600, 64297=>600, 64298=>600, 64299=>600, 64300=>600, 64301=>600, 64302=>600,
+ 64303=>600, 64304=>600, 64305=>600, 64306=>600, 64307=>600, 64308=>600, 64309=>600, 64310=>600, 64312=>600, 64313=>600, 64314=>600, 64315=>600, 64316=>600, 64318=>600, 64320=>600, 64321=>600,
+ 64323=>600, 64324=>600, 64326=>600, 64327=>600, 64328=>600, 64329=>600, 64330=>600, 64331=>600, 64332=>600, 64333=>600, 64334=>600, 64335=>600, 65533=>600);
$enc='';
$diff='';
-$file='FreeMono.z';
-$ctg='FreeMono.ctg.z';
-$originalsize=293572;
+$file='freemono.z';
+$ctg='freemono.ctg.z';
+$originalsize=289856;
?>
diff --git a/lib/tcpdf/fonts/freemono.z b/lib/tcpdf/fonts/freemono.z
new file mode 100644
index 0000000000..f588e5afef
Binary files /dev/null and b/lib/tcpdf/fonts/freemono.z differ
diff --git a/lib/tcpdf/fonts/freemonob.ctg.z b/lib/tcpdf/fonts/freemonob.ctg.z
new file mode 100644
index 0000000000..e19c2064a7
Binary files /dev/null and b/lib/tcpdf/fonts/freemonob.ctg.z differ
diff --git a/lib/tcpdf/fonts/freemonob.php b/lib/tcpdf/fonts/freemonob.php
index 1020dcc39d..123033581e 100755
--- a/lib/tcpdf/fonts/freemonob.php
+++ b/lib/tcpdf/fonts/freemonob.php
@@ -1,107 +1,107 @@
1155,'Descent'=>-365,'CapHeight'=>1155,'Flags'=>32,'FontBBox'=>'[-656 -365 950 1155]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
+$desc=array('Ascent'=>1155,'Descent'=>-366,'CapHeight'=>1155,'Flags'=>32,'FontBBox'=>'[-547 -366 754 1155]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
- 13=>333, 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600,
- 47=>600, 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600,
- 63=>600, 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600,
- 79=>600, 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600,
- 95=>600, 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600,
- 111=>600, 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600,
- 8364=>600, 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600,
- 8216=>600, 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600,
- 161=>600, 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600,
- 177=>600, 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600,
- 193=>600, 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600,
- 209=>600, 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600,
- 225=>600, 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600,
- 241=>600, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600,
- 257=>600, 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600,
- 273=>600, 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600,
- 289=>600, 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600,
- 305=>600, 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600,
- 321=>600, 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600,
- 337=>600, 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600,
- 357=>600, 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600,
- 373=>600, 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, 385=>600, 386=>600, 387=>600, 390=>600, 391=>600, 392=>600, 393=>600,
- 394=>600, 395=>600, 396=>600, 397=>600, 398=>600, 400=>600, 401=>600, 403=>600, 405=>600, 406=>600, 407=>600, 409=>600, 410=>600, 411=>600, 412=>600, 413=>600,
- 414=>600, 415=>600, 416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600, 425=>600, 427=>600, 428=>600, 429=>600, 430=>600,
- 431=>600, 432=>600, 435=>600, 436=>600, 437=>600, 438=>600, 439=>600, 440=>600, 443=>600, 448=>600, 449=>600, 451=>600, 455=>600, 456=>600, 457=>600, 459=>600,
- 460=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600, 474=>600, 475=>600,
- 476=>600, 477=>600, 478=>600, 479=>600, 480=>600, 481=>600, 482=>600, 483=>600, 484=>600, 485=>600, 486=>600, 487=>600, 488=>600, 489=>600, 490=>600, 491=>600,
- 492=>600, 493=>600, 494=>600, 496=>600, 500=>600, 501=>600, 502=>600, 504=>600, 505=>600, 506=>600, 507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>600,
- 513=>600, 514=>600, 515=>600, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600, 522=>600, 523=>600, 524=>600, 525=>600, 526=>600, 527=>600, 528=>600,
- 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600, 537=>600, 538=>600, 539=>600, 542=>600, 543=>600, 548=>600, 549=>600, 550=>600,
- 551=>600, 552=>600, 553=>600, 554=>600, 555=>600, 556=>600, 557=>600, 558=>600, 559=>600, 560=>600, 561=>600, 562=>600, 563=>600, 592=>600, 593=>600, 594=>600,
- 595=>600, 596=>600, 598=>600, 599=>600, 600=>600, 601=>600, 603=>600, 604=>600, 607=>600, 608=>600, 609=>600, 613=>600, 614=>600, 615=>600, 616=>600, 617=>600,
- 618=>600, 619=>600, 621=>600, 623=>600, 624=>600, 625=>600, 626=>600, 627=>600, 628=>600, 629=>600, 633=>600, 634=>600, 635=>600, 636=>600, 637=>600, 638=>600,
- 639=>600, 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 647=>600, 648=>600, 649=>600, 652=>600, 653=>600, 654=>600, 656=>600, 660=>600, 661=>600,
- 662=>600, 663=>600, 664=>600, 668=>600, 670=>600, 671=>600, 672=>600, 673=>600, 674=>600, 711=>600, 720=>600, 721=>600, 728=>600, 729=>600, 730=>600, 731=>600,
- 733=>600, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0,
- 783=>0, 784=>0, 785=>0, 795=>0, 801=>0, 802=>0, 807=>0, 808=>0, 823=>0, 884=>600, 885=>600, 890=>600, 894=>600, 900=>600, 901=>600, 902=>600,
- 903=>600, 904=>600, 905=>600, 906=>600, 908=>600, 910=>600, 911=>600, 912=>600, 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600, 920=>600,
- 921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600, 931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600, 937=>600,
- 938=>600, 939=>600, 940=>600, 941=>600, 942=>600, 943=>600, 944=>600, 945=>600, 946=>600, 947=>600, 948=>600, 949=>600, 950=>600, 951=>600, 952=>600, 953=>600,
- 954=>600, 955=>600, 956=>600, 957=>600, 958=>600, 959=>600, 960=>600, 961=>600, 962=>600, 963=>600, 964=>600, 965=>600, 966=>600, 967=>600, 968=>600, 969=>600,
- 970=>600, 971=>600, 972=>600, 973=>600, 974=>600, 976=>600, 977=>600, 981=>600, 1009=>600, 1024=>600, 1025=>600, 1026=>600, 1028=>600, 1029=>600, 1030=>600, 1031=>600,
- 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600, 1043=>600, 1044=>600, 1045=>600, 1046=>600, 1047=>600, 1048=>600, 1049=>600,
- 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600, 1059=>600, 1060=>600, 1061=>600, 1062=>600, 1063=>600, 1064=>600, 1065=>600,
- 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600, 1075=>600, 1076=>600, 1077=>600, 1078=>600, 1079=>600, 1080=>600, 1081=>600,
- 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600, 1091=>600, 1092=>600, 1093=>600, 1094=>600, 1095=>600, 1096=>600, 1097=>600,
- 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600, 1107=>600, 1108=>600, 1109=>600, 1110=>600, 1111=>600, 1112=>600, 1113=>600,
- 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600, 1168=>600, 1169=>600, 1170=>600, 1171=>600, 1172=>600, 1173=>600, 1174=>600,
- 1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600, 1184=>600, 1185=>600, 1186=>600, 1187=>600, 1188=>600, 1189=>600, 1190=>600,
- 1191=>600, 1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600, 1198=>600, 1199=>600, 1200=>600, 1201=>600, 1202=>600, 1203=>600, 1204=>600, 1205=>600, 1206=>600,
- 1207=>600, 1208=>600, 1209=>600, 1210=>600, 1211=>600, 1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600, 1217=>600, 1218=>600, 1219=>600, 1220=>600, 1221=>600, 1222=>600,
- 1223=>600, 1224=>600, 1225=>600, 1226=>600, 1227=>600, 1228=>600, 1229=>600, 1230=>600, 1231=>600, 1232=>600, 1233=>600, 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600,
- 1239=>600, 1240=>600, 1241=>600, 1242=>600, 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600, 1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600,
- 1255=>600, 1256=>600, 1257=>600, 1258=>600, 1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600, 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1270=>600,
- 1271=>600, 1272=>600, 1273=>600, 1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600, 1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600,
- 1470=>600, 1471=>600, 1472=>600, 1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600,
- 1497=>600, 1498=>600, 1499=>600, 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600,
- 1513=>600, 1514=>600, 1520=>600, 1521=>600, 1522=>600, 1523=>600, 1524=>600, 7680=>600, 7681=>600, 7682=>600, 7683=>600, 7684=>600, 7685=>600, 7686=>600, 7687=>600, 7688=>600,
- 7689=>600, 7690=>600, 7691=>600, 7692=>600, 7693=>600, 7694=>600, 7695=>600, 7696=>600, 7697=>600, 7698=>600, 7699=>600, 7700=>600, 7701=>600, 7702=>600, 7703=>600, 7704=>600,
- 7705=>600, 7706=>600, 7707=>600, 7708=>600, 7709=>600, 7710=>600, 7711=>600, 7712=>600, 7713=>600, 7714=>600, 7715=>600, 7716=>600, 7717=>600, 7718=>600, 7719=>600, 7720=>600,
- 7721=>600, 7722=>600, 7723=>600, 7724=>600, 7725=>600, 7726=>600, 7727=>600, 7728=>600, 7729=>600, 7730=>600, 7731=>600, 7732=>600, 7733=>600, 7734=>600, 7735=>600, 7736=>600,
- 7737=>600, 7738=>600, 7739=>600, 7740=>600, 7741=>600, 7742=>600, 7743=>600, 7744=>600, 7745=>600, 7746=>600, 7747=>600, 7748=>600, 7749=>600, 7750=>600, 7751=>600, 7752=>600,
- 7753=>600, 7754=>600, 7755=>600, 7756=>600, 7757=>600, 7758=>600, 7759=>600, 7760=>600, 7761=>600, 7762=>600, 7763=>600, 7764=>600, 7765=>600, 7766=>600, 7767=>600, 7768=>600,
- 7769=>600, 7770=>600, 7771=>600, 7772=>600, 7773=>600, 7774=>600, 7775=>600, 7776=>600, 7777=>600, 7778=>600, 7779=>600, 7780=>600, 7781=>600, 7782=>600, 7783=>600, 7784=>600,
- 7785=>600, 7786=>600, 7787=>600, 7788=>600, 7789=>600, 7790=>600, 7791=>600, 7792=>600, 7793=>600, 7794=>600, 7795=>600, 7796=>600, 7797=>600, 7798=>600, 7799=>600, 7800=>600,
- 7801=>600, 7802=>600, 7803=>600, 7804=>600, 7805=>600, 7806=>600, 7807=>600, 7808=>600, 7809=>600, 7810=>600, 7811=>600, 7812=>600, 7813=>600, 7814=>600, 7815=>600, 7816=>600,
- 7817=>600, 7818=>600, 7819=>600, 7820=>600, 7821=>600, 7822=>600, 7823=>600, 7824=>600, 7825=>600, 7826=>600, 7827=>600, 7828=>600, 7829=>600, 7830=>600, 7831=>600, 7832=>600,
- 7833=>600, 7835=>600, 7840=>600, 7841=>600, 7842=>600, 7843=>600, 7844=>600, 7845=>600, 7846=>600, 7847=>600, 7848=>600, 7849=>600, 7850=>600, 7851=>600, 7852=>600, 7853=>600,
- 7854=>600, 7855=>600, 7856=>600, 7857=>600, 7858=>600, 7859=>600, 7860=>600, 7861=>600, 7862=>600, 7863=>600, 7864=>600, 7865=>600, 7866=>600, 7867=>600, 7868=>600, 7869=>600,
- 7870=>600, 7871=>600, 7872=>600, 7873=>600, 7874=>600, 7875=>600, 7876=>600, 7877=>600, 7878=>600, 7879=>600, 7880=>600, 7881=>600, 7882=>600, 7883=>600, 7884=>600, 7885=>600,
- 7886=>600, 7887=>600, 7888=>600, 7889=>600, 7890=>600, 7891=>600, 7892=>600, 7893=>600, 7894=>600, 7895=>600, 7896=>600, 7897=>600, 7898=>600, 7899=>600, 7900=>600, 7901=>600,
- 7902=>600, 7903=>600, 7904=>600, 7905=>600, 7906=>600, 7907=>600, 7908=>600, 7909=>600, 7910=>600, 7911=>600, 7912=>600, 7913=>600, 7914=>600, 7915=>600, 7916=>600, 7917=>600,
- 7918=>600, 7919=>600, 7920=>600, 7921=>600, 7922=>600, 7923=>600, 7924=>600, 7925=>600, 7926=>600, 7927=>600, 7928=>600, 7929=>600, 8209=>600, 8213=>600, 8219=>600, 8223=>600,
- 8242=>600, 8243=>600, 8244=>600, 8245=>600, 8246=>600, 8247=>600, 8252=>600, 8260=>600, 8261=>600, 8262=>600, 8264=>600, 8265=>600, 8267=>600, 8292=>600, 8304=>600, 8305=>600,
- 8306=>600, 8307=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600, 8314=>600, 8315=>600, 8316=>600, 8317=>600, 8318=>600, 8319=>600, 8320=>600, 8321=>600,
- 8322=>600, 8323=>600, 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8355=>600, 8356=>600, 8362=>600, 8466=>600, 8470=>600, 8486=>600, 8487=>600, 8490=>600,
- 8491=>600, 8531=>600, 8532=>600, 8533=>600, 8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8592=>600, 8593=>600,
- 8594=>600, 8595=>600, 8706=>600, 8709=>600, 8710=>600, 8711=>600, 8721=>600, 8722=>600, 8725=>600, 8730=>600, 8733=>600, 8734=>600, 8735=>600, 8800=>600, 8801=>600, 8804=>600,
- 8805=>600, 8976=>600, 9472=>600, 9473=>600, 9474=>600, 9475=>600, 9476=>600, 9477=>600, 9478=>600, 9479=>600, 9480=>600, 9481=>600, 9482=>600, 9483=>600, 9484=>600, 9485=>600,
- 9486=>600, 9487=>600, 9488=>600, 9489=>600, 9490=>600, 9491=>600, 9492=>600, 9493=>600, 9494=>600, 9495=>600, 9496=>600, 9497=>600, 9498=>600, 9499=>600, 9500=>600, 9501=>600,
- 9502=>600, 9503=>600, 9504=>600, 9505=>600, 9506=>600, 9507=>600, 9508=>600, 9509=>600, 9510=>600, 9511=>600, 9512=>600, 9513=>600, 9514=>600, 9515=>600, 9516=>600, 9517=>600,
- 9518=>600, 9519=>600, 9520=>600, 9521=>600, 9522=>600, 9523=>600, 9524=>600, 9525=>600, 9526=>600, 9527=>600, 9528=>600, 9529=>600, 9530=>600, 9531=>600, 9532=>600, 9533=>600,
- 9534=>600, 9535=>600, 9536=>600, 9537=>600, 9538=>600, 9539=>600, 9540=>600, 9541=>600, 9542=>600, 9543=>600, 9544=>600, 9545=>600, 9546=>600, 9547=>600, 9548=>600, 9549=>600,
- 9550=>600, 9551=>600, 9552=>600, 9553=>600, 9554=>600, 9555=>600, 9556=>600, 9557=>600, 9558=>600, 9559=>600, 9560=>600, 9561=>600, 9562=>600, 9563=>600, 9564=>600, 9565=>600,
- 9566=>600, 9567=>600, 9568=>600, 9569=>600, 9570=>600, 9571=>600, 9572=>600, 9573=>600, 9574=>600, 9575=>600, 9576=>600, 9577=>600, 9578=>600, 9579=>600, 9580=>600, 9581=>600,
- 9582=>600, 9583=>600, 9584=>600, 9585=>600, 9586=>600, 9587=>600, 9588=>600, 9589=>600, 9590=>600, 9591=>600, 9592=>600, 9593=>600, 9594=>600, 9595=>600, 9596=>600, 9597=>600,
- 9598=>600, 9599=>600, 9600=>600, 9601=>600, 9602=>600, 9603=>600, 9604=>600, 9605=>600, 9606=>600, 9607=>600, 9608=>600, 9609=>600, 9610=>600, 9611=>600, 9612=>600, 9613=>600,
- 9614=>600, 9615=>600, 9616=>600, 9617=>600, 9618=>600, 9619=>600, 9620=>600, 9621=>600, 9632=>600, 9633=>600, 9635=>600, 9636=>600, 9637=>600, 9638=>600, 9639=>600, 9640=>600,
- 9641=>600, 9642=>600, 9643=>600, 9644=>600, 9645=>600, 9646=>600, 9647=>600, 9648=>600, 9649=>600, 9650=>600, 9651=>600, 9652=>600, 9653=>600, 9654=>600, 9655=>600, 9656=>600,
- 9657=>600, 9658=>600, 9660=>600, 9661=>600, 9662=>600, 9663=>600, 9664=>600, 9665=>600, 9666=>600, 9667=>600, 9668=>600, 9669=>600, 9670=>600, 9671=>600, 9673=>600, 9674=>600,
- 9675=>600, 9677=>600, 9679=>600, 9680=>600, 9681=>600, 9682=>600, 9683=>600, 9684=>600, 9685=>600, 9686=>600, 9687=>600, 9688=>600, 9689=>600, 9698=>600, 9699=>600, 9700=>600,
- 9701=>600, 9702=>600, 9703=>600, 9704=>600, 9705=>600, 9706=>600, 9707=>600, 9708=>600, 9709=>600, 9710=>600, 9712=>600, 9713=>600, 9714=>600, 9715=>600, 9716=>600, 9717=>600,
- 9718=>600, 9719=>600, 9735=>600, 9736=>600, 9737=>600, 9776=>600, 9777=>600, 9778=>600, 9779=>600, 9780=>600, 9781=>600, 9782=>600, 9783=>600, 9785=>600, 9786=>600, 9787=>600,
- 9833=>600, 9834=>600, 9835=>600, 9836=>600, 63166=>600, 63171=>600, 64256=>600, 64257=>600, 64258=>600);
+ 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600, 47=>600,
+ 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600, 63=>600,
+ 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600, 79=>600,
+ 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600, 95=>600,
+ 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600, 111=>600,
+ 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600, 8364=>600,
+ 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600, 8216=>600,
+ 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600, 161=>600,
+ 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600, 177=>600,
+ 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600, 193=>600,
+ 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600, 209=>600,
+ 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>660, 225=>660,
+ 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600, 241=>600,
+ 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600, 257=>1010,
+ 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600, 273=>600,
+ 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600, 289=>600,
+ 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600, 305=>600,
+ 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600, 321=>600,
+ 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600, 337=>600,
+ 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600, 357=>600,
+ 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600, 373=>600,
+ 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, 385=>600, 386=>600, 387=>600, 390=>600, 391=>600, 392=>600, 393=>600, 394=>600,
+ 395=>600, 396=>600, 397=>600, 398=>600, 400=>600, 401=>600, 403=>600, 405=>600, 406=>600, 407=>600, 409=>600, 410=>600, 411=>600, 412=>600, 413=>600, 414=>600,
+ 415=>600, 416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600, 425=>600, 427=>600, 428=>600, 429=>600, 430=>600, 431=>600,
+ 432=>600, 435=>600, 436=>600, 437=>600, 438=>600, 439=>600, 440=>600, 443=>600, 448=>600, 449=>600, 451=>600, 455=>600, 456=>600, 457=>600, 459=>600, 460=>600,
+ 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600, 474=>600, 475=>600, 476=>600,
+ 477=>600, 478=>600, 479=>600, 480=>600, 481=>600, 482=>600, 483=>600, 484=>600, 485=>600, 486=>600, 487=>600, 488=>600, 489=>600, 490=>600, 491=>600, 492=>600,
+ 493=>600, 494=>600, 496=>600, 500=>600, 501=>600, 502=>600, 504=>600, 505=>600, 506=>600, 507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>600, 513=>824,
+ 514=>600, 515=>1010, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600, 522=>600, 523=>600, 524=>600, 525=>600, 526=>600, 527=>600, 528=>600, 529=>600,
+ 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600, 537=>600, 538=>600, 539=>600, 542=>600, 543=>600, 548=>600, 549=>600, 550=>600, 551=>600,
+ 552=>600, 553=>600, 554=>600, 555=>600, 556=>600, 557=>600, 558=>600, 559=>600, 560=>600, 561=>600, 562=>600, 563=>600, 592=>600, 593=>600, 594=>600, 595=>600,
+ 596=>600, 598=>600, 599=>600, 600=>600, 601=>600, 603=>600, 604=>600, 607=>600, 608=>600, 609=>600, 613=>600, 614=>600, 615=>600, 616=>600, 617=>600, 618=>600,
+ 619=>600, 621=>600, 623=>600, 624=>600, 625=>600, 626=>600, 627=>600, 628=>600, 629=>600, 633=>600, 634=>600, 635=>600, 636=>600, 637=>600, 638=>600, 639=>600,
+ 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 647=>600, 648=>600, 649=>600, 652=>600, 653=>600, 654=>600, 656=>600, 660=>600, 661=>600, 662=>600,
+ 663=>600, 664=>600, 668=>600, 670=>600, 671=>600, 672=>600, 673=>600, 674=>600, 699=>0, 700=>0, 711=>600, 720=>600, 721=>600, 728=>600, 729=>600, 730=>600,
+ 731=>600, 733=>600, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0,
+ 782=>0, 783=>0, 784=>0, 785=>0, 795=>0, 801=>0, 802=>0, 807=>0, 808=>0, 823=>0, 884=>600, 885=>600, 890=>600, 894=>600, 900=>600, 901=>600,
+ 902=>600, 903=>600, 904=>600, 905=>600, 906=>600, 908=>600, 910=>600, 911=>600, 912=>600, 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600,
+ 920=>600, 921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600, 931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600,
+ 937=>600, 938=>600, 939=>600, 940=>600, 941=>600, 942=>600, 943=>600, 944=>600, 945=>600, 946=>600, 947=>600, 948=>600, 949=>600, 950=>600, 951=>600, 952=>600,
+ 953=>600, 954=>600, 955=>600, 956=>600, 957=>600, 958=>600, 959=>600, 960=>600, 961=>600, 962=>600, 963=>600, 964=>600, 965=>600, 966=>600, 967=>600, 968=>600,
+ 969=>600, 970=>600, 971=>600, 972=>600, 973=>600, 974=>600, 976=>600, 977=>600, 981=>600, 1009=>600, 1024=>600, 1025=>600, 1026=>600, 1028=>600, 1029=>600, 1030=>600,
+ 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600, 1043=>600, 1044=>600, 1045=>600, 1046=>600, 1047=>600, 1048=>600,
+ 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600, 1059=>600, 1060=>600, 1061=>600, 1062=>600, 1063=>600, 1064=>600,
+ 1065=>600, 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600, 1075=>600, 1076=>600, 1077=>600, 1078=>600, 1079=>600, 1080=>600,
+ 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600, 1091=>600, 1092=>600, 1093=>600, 1094=>600, 1095=>600, 1096=>600,
+ 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600, 1107=>600, 1108=>600, 1109=>600, 1110=>600, 1111=>600, 1112=>600,
+ 1113=>600, 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1164=>600, 1165=>600, 1166=>578, 1167=>600, 1168=>600, 1169=>600, 1170=>600, 1171=>600, 1172=>578, 1173=>600,
+ 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600, 1184=>600, 1185=>600, 1186=>600, 1187=>600, 1188=>600, 1189=>600,
+ 1190=>578, 1191=>600, 1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600, 1198=>578, 1199=>600, 1200=>600, 1201=>600, 1202=>600, 1203=>600, 1204=>578, 1205=>578,
+ 1206=>600, 1207=>600, 1208=>578, 1209=>578, 1210=>578, 1211=>578, 1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600, 1217=>600, 1218=>600, 1219=>600, 1220=>600, 1223=>600,
+ 1224=>600, 1227=>600, 1228=>600, 1232=>600, 1233=>600, 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600, 1239=>600, 1240=>600, 1241=>600, 1242=>600, 1243=>600, 1244=>600,
+ 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600, 1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600, 1255=>600, 1256=>600, 1257=>600, 1258=>600, 1259=>600, 1260=>600,
+ 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600, 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1272=>600, 1273=>600, 1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600,
+ 1461=>600, 1462=>600, 1463=>600, 1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600, 1470=>600, 1471=>600, 1472=>600, 1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600,
+ 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600, 1497=>600, 1498=>600, 1499=>600, 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600,
+ 1505=>600, 1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600, 1513=>600, 1514=>600, 1520=>600, 1521=>600, 1522=>600, 1523=>600, 1524=>600, 7680=>600,
+ 7681=>600, 7682=>600, 7683=>600, 7684=>600, 7685=>600, 7686=>600, 7687=>600, 7688=>600, 7689=>600, 7690=>600, 7691=>600, 7692=>600, 7693=>600, 7694=>600, 7695=>600, 7696=>600,
+ 7697=>600, 7698=>600, 7699=>600, 7700=>600, 7701=>600, 7702=>600, 7703=>600, 7704=>600, 7705=>600, 7706=>600, 7707=>600, 7708=>600, 7709=>600, 7710=>600, 7711=>600, 7712=>600,
+ 7713=>600, 7714=>600, 7715=>600, 7716=>600, 7717=>600, 7718=>600, 7719=>600, 7720=>600, 7721=>600, 7722=>600, 7723=>600, 7724=>600, 7725=>600, 7726=>600, 7727=>600, 7728=>600,
+ 7729=>600, 7730=>600, 7731=>600, 7732=>600, 7733=>600, 7734=>600, 7735=>600, 7736=>600, 7737=>600, 7738=>600, 7739=>600, 7740=>600, 7741=>600, 7742=>600, 7743=>600, 7744=>600,
+ 7745=>600, 7746=>600, 7747=>600, 7748=>600, 7749=>600, 7750=>600, 7751=>600, 7752=>600, 7753=>600, 7754=>600, 7755=>600, 7756=>600, 7757=>600, 7758=>600, 7759=>600, 7760=>600,
+ 7761=>600, 7762=>600, 7763=>600, 7764=>600, 7765=>600, 7766=>600, 7767=>600, 7768=>600, 7769=>600, 7770=>600, 7771=>600, 7772=>600, 7773=>600, 7774=>600, 7775=>600, 7776=>600,
+ 7777=>600, 7778=>600, 7779=>600, 7780=>600, 7781=>600, 7782=>600, 7783=>600, 7784=>600, 7785=>600, 7786=>600, 7787=>600, 7788=>600, 7789=>600, 7790=>600, 7791=>600, 7792=>600,
+ 7793=>600, 7794=>600, 7795=>600, 7796=>600, 7797=>600, 7798=>600, 7799=>600, 7800=>600, 7801=>600, 7802=>600, 7803=>600, 7804=>600, 7805=>600, 7806=>600, 7807=>600, 7808=>600,
+ 7809=>600, 7810=>600, 7811=>600, 7812=>600, 7813=>600, 7814=>600, 7815=>600, 7816=>600, 7817=>600, 7818=>600, 7819=>600, 7820=>600, 7821=>600, 7822=>600, 7823=>600, 7824=>600,
+ 7825=>600, 7826=>600, 7827=>600, 7828=>600, 7829=>600, 7830=>600, 7831=>600, 7832=>600, 7833=>600, 7835=>600, 7840=>600, 7841=>600, 7842=>600, 7843=>600, 7844=>600, 7845=>600,
+ 7846=>600, 7847=>600, 7848=>600, 7849=>600, 7850=>600, 7851=>600, 7852=>600, 7853=>600, 7854=>600, 7855=>600, 7856=>600, 7857=>600, 7858=>600, 7859=>600, 7860=>600, 7861=>600,
+ 7862=>600, 7863=>600, 7864=>600, 7865=>600, 7866=>600, 7867=>600, 7868=>600, 7869=>600, 7870=>600, 7871=>600, 7872=>600, 7873=>600, 7874=>600, 7875=>600, 7876=>600, 7877=>600,
+ 7878=>600, 7879=>600, 7880=>600, 7881=>600, 7882=>600, 7883=>600, 7884=>600, 7885=>600, 7886=>600, 7887=>600, 7888=>600, 7889=>600, 7890=>600, 7891=>600, 7892=>600, 7893=>600,
+ 7894=>600, 7895=>600, 7896=>600, 7897=>600, 7898=>600, 7899=>600, 7900=>600, 7901=>600, 7902=>600, 7903=>600, 7904=>600, 7905=>600, 7906=>600, 7907=>600, 7908=>600, 7909=>600,
+ 7910=>600, 7911=>600, 7912=>600, 7913=>600, 7914=>600, 7915=>600, 7916=>600, 7917=>600, 7918=>600, 7919=>600, 7920=>600, 7921=>600, 7922=>600, 7923=>600, 7924=>600, 7925=>600,
+ 7926=>600, 7927=>600, 7928=>600, 7929=>600, 8208=>600, 8209=>600, 8210=>600, 8213=>600, 8219=>600, 8223=>600, 8242=>600, 8243=>600, 8244=>600, 8245=>600, 8246=>600, 8247=>600,
+ 8252=>600, 8260=>600, 8261=>600, 8262=>600, 8264=>600, 8265=>600, 8267=>600, 8292=>600, 8304=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600, 8314=>600,
+ 8315=>600, 8316=>600, 8317=>600, 8318=>600, 8319=>600, 8320=>600, 8321=>600, 8322=>600, 8323=>600, 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8355=>600,
+ 8356=>600, 8362=>600, 8373=>600, 8466=>600, 8470=>600, 8486=>600, 8487=>600, 8490=>600, 8491=>600, 8531=>600, 8532=>600, 8533=>600, 8534=>600, 8535=>600, 8536=>600, 8537=>600,
+ 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8592=>600, 8593=>600, 8594=>600, 8595=>600, 8706=>600, 8709=>600, 8710=>600, 8711=>600, 8721=>600, 8722=>600,
+ 8723=>600, 8725=>600, 8730=>600, 8733=>600, 8734=>600, 8735=>600, 8800=>600, 8801=>600, 8804=>600, 8805=>600, 8976=>600, 9472=>600, 9473=>600, 9474=>600, 9475=>600, 9476=>600,
+ 9477=>600, 9478=>600, 9479=>600, 9480=>600, 9481=>600, 9482=>600, 9483=>600, 9484=>600, 9485=>600, 9486=>600, 9487=>600, 9488=>600, 9489=>600, 9490=>600, 9491=>600, 9492=>600,
+ 9493=>600, 9494=>600, 9495=>600, 9496=>600, 9497=>600, 9498=>600, 9499=>600, 9500=>600, 9501=>600, 9502=>600, 9503=>600, 9504=>600, 9505=>600, 9506=>600, 9507=>600, 9508=>600,
+ 9509=>600, 9510=>600, 9511=>600, 9512=>600, 9513=>600, 9514=>600, 9515=>600, 9516=>600, 9517=>600, 9518=>600, 9519=>600, 9520=>600, 9521=>600, 9522=>600, 9523=>600, 9524=>600,
+ 9525=>600, 9526=>600, 9527=>600, 9528=>600, 9529=>600, 9530=>600, 9531=>600, 9532=>600, 9533=>600, 9534=>600, 9535=>600, 9536=>600, 9537=>600, 9538=>600, 9539=>600, 9540=>600,
+ 9541=>600, 9542=>600, 9543=>600, 9544=>600, 9545=>600, 9546=>600, 9547=>600, 9548=>600, 9549=>600, 9550=>600, 9551=>600, 9552=>600, 9553=>600, 9554=>600, 9555=>600, 9556=>600,
+ 9557=>600, 9558=>600, 9559=>600, 9560=>600, 9561=>600, 9562=>600, 9563=>600, 9564=>600, 9565=>600, 9566=>600, 9567=>600, 9568=>600, 9569=>600, 9570=>600, 9571=>600, 9572=>600,
+ 9573=>600, 9574=>600, 9575=>600, 9576=>600, 9577=>600, 9578=>600, 9579=>600, 9580=>600, 9581=>600, 9582=>600, 9583=>600, 9584=>600, 9585=>600, 9586=>600, 9587=>600, 9588=>600,
+ 9589=>600, 9590=>600, 9591=>600, 9592=>600, 9593=>600, 9594=>600, 9595=>600, 9596=>600, 9597=>600, 9598=>600, 9599=>600, 9600=>600, 9601=>600, 9602=>600, 9603=>600, 9604=>600,
+ 9605=>600, 9606=>600, 9607=>600, 9608=>600, 9609=>600, 9610=>600, 9611=>600, 9612=>600, 9613=>600, 9614=>600, 9615=>600, 9616=>600, 9617=>600, 9618=>600, 9619=>600, 9620=>600,
+ 9621=>600, 9632=>600, 9633=>600, 9635=>600, 9636=>600, 9637=>600, 9638=>600, 9639=>600, 9640=>600, 9641=>600, 9642=>600, 9643=>600, 9644=>600, 9645=>600, 9646=>600, 9647=>600,
+ 9648=>600, 9649=>600, 9650=>600, 9651=>600, 9652=>600, 9653=>600, 9654=>600, 9655=>600, 9656=>600, 9657=>600, 9658=>600, 9660=>600, 9661=>600, 9662=>600, 9663=>600, 9664=>600,
+ 9665=>600, 9666=>600, 9667=>600, 9668=>600, 9669=>600, 9670=>600, 9671=>600, 9673=>600, 9674=>600, 9675=>600, 9677=>600, 9679=>600, 9680=>600, 9681=>600, 9682=>600, 9683=>600,
+ 9684=>600, 9685=>600, 9686=>600, 9687=>600, 9688=>600, 9689=>600, 9698=>600, 9699=>600, 9700=>600, 9701=>600, 9702=>600, 9703=>600, 9704=>600, 9705=>600, 9706=>600, 9707=>600,
+ 9708=>600, 9709=>600, 9710=>600, 9712=>600, 9713=>600, 9714=>600, 9715=>600, 9716=>600, 9717=>600, 9718=>600, 9719=>600, 9735=>600, 9736=>600, 9737=>600, 9776=>600, 9777=>600,
+ 9778=>600, 9779=>600, 9780=>600, 9781=>600, 9782=>600, 9783=>600, 9785=>600, 9786=>600, 9787=>600, 9833=>600, 9834=>600, 9835=>600, 9836=>600, 63166=>600, 63171=>600, 64256=>600,
+ 64257=>600, 64258=>600, 65533=>788);
$enc='';
$diff='';
-$file='FreeMonoBold.z';
-$ctg='FreeMonoBold.ctg.z';
-$originalsize=175016;
+$file='freemonob.z';
+$ctg='freemonob.ctg.z';
+$originalsize=162968;
?>
diff --git a/lib/tcpdf/fonts/freemonob.z b/lib/tcpdf/fonts/freemonob.z
new file mode 100644
index 0000000000..2e710f0a6a
Binary files /dev/null and b/lib/tcpdf/fonts/freemonob.z differ
diff --git a/lib/tcpdf/fonts/freemonobi.ctg.z b/lib/tcpdf/fonts/freemonobi.ctg.z
new file mode 100644
index 0000000000..b1d64323de
Binary files /dev/null and b/lib/tcpdf/fonts/freemonobi.ctg.z differ
diff --git a/lib/tcpdf/fonts/freemonobi.php b/lib/tcpdf/fonts/freemonobi.php
index 236549678a..ca85004d03 100755
--- a/lib/tcpdf/fonts/freemonobi.php
+++ b/lib/tcpdf/fonts/freemonobi.php
@@ -1,62 +1,73 @@
1111,'Descent'=>-278,'CapHeight'=>1111,'Flags'=>96,'FontBBox'=>'[-513 -278 840 1111]','ItalicAngle'=>-12,'StemV'=>120,'MissingWidth'=>600);
+$desc=array('Ascent'=>1111,'Descent'=>-366,'CapHeight'=>1111,'Flags'=>96,'FontBBox'=>'[-418 -366 809 1111]','ItalicAngle'=>-12,'StemV'=>120,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
- 13=>333, 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600,
- 47=>600, 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600,
- 63=>600, 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600,
- 79=>600, 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600,
- 95=>600, 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600,
- 111=>600, 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600,
- 8364=>600, 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600,
- 8216=>600, 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600,
- 161=>600, 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600,
- 177=>600, 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600,
- 193=>600, 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600,
- 209=>600, 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600,
- 225=>600, 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600,
- 241=>600, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600,
- 257=>600, 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600,
- 273=>600, 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600,
- 289=>600, 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600,
- 305=>600, 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600,
- 321=>600, 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600,
- 337=>600, 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600,
- 357=>600, 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600,
- 373=>600, 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 425=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600,
- 468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600, 474=>600, 475=>600, 476=>600, 477=>600, 478=>600, 479=>600, 482=>600, 483=>600, 486=>600, 487=>600,
- 488=>600, 489=>600, 490=>600, 491=>600, 492=>600, 493=>600, 496=>600, 500=>600, 501=>600, 504=>600, 505=>600, 506=>600, 507=>600, 508=>600, 509=>600, 510=>600,
- 511=>600, 512=>600, 513=>600, 514=>600, 515=>600, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600, 522=>600, 523=>600, 524=>600, 525=>600, 526=>600,
- 527=>600, 528=>600, 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600, 537=>600, 538=>600, 539=>600, 593=>600, 617=>600, 711=>600,
- 728=>600, 729=>0, 730=>600, 731=>600, 733=>600, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 780=>0,
- 783=>0, 784=>0, 785=>0, 900=>600, 901=>600, 902=>600, 904=>600, 912=>600, 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600, 920=>600,
- 921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600, 931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600, 937=>600,
- 938=>600, 939=>600, 945=>600, 946=>600, 947=>600, 950=>600, 951=>600, 952=>600, 953=>600, 954=>600, 955=>600, 956=>600, 957=>600, 959=>600, 970=>600, 1024=>600,
- 1025=>600, 1026=>600, 1028=>600, 1029=>600, 1030=>600, 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600, 1043=>600,
- 1044=>600, 1045=>600, 1046=>600, 1047=>600, 1048=>600, 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600, 1059=>600,
- 1060=>600, 1061=>600, 1062=>600, 1063=>600, 1064=>600, 1065=>600, 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600, 1075=>600,
- 1076=>600, 1077=>600, 1078=>600, 1079=>600, 1080=>600, 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600, 1091=>600,
- 1092=>600, 1093=>600, 1094=>600, 1095=>600, 1096=>600, 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600, 1107=>600,
- 1108=>600, 1109=>600, 1110=>600, 1111=>600, 1112=>600, 1113=>600, 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600, 1168=>600,
- 1169=>600, 1170=>600, 1171=>600, 1172=>600, 1173=>600, 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600, 1184=>600,
- 1185=>600, 1186=>600, 1187=>600, 1188=>600, 1189=>600, 1190=>600, 1191=>600, 1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600, 1198=>600, 1199=>600, 1200=>600,
- 1201=>600, 1202=>600, 1203=>600, 1204=>600, 1205=>600, 1206=>600, 1207=>600, 1208=>600, 1209=>600, 1210=>600, 1211=>600, 1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600,
- 1217=>600, 1218=>600, 1219=>600, 1220=>600, 1223=>600, 1224=>600, 1227=>600, 1228=>600, 1232=>600, 1233=>600, 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600, 1239=>600,
- 1240=>600, 1241=>600, 1242=>600, 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600, 1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600, 1255=>600,
- 1256=>600, 1257=>600, 1258=>600, 1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600, 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1272=>600, 1273=>600,
- 1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600, 1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600, 1470=>600, 1471=>600, 1472=>600,
- 1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600, 1497=>600, 1498=>600, 1499=>600,
- 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600, 1513=>600, 1514=>600, 1520=>600,
- 1521=>600, 1522=>600, 1523=>600, 1524=>600, 8213=>600, 8260=>600, 8304=>600, 8305=>600, 8306=>600, 8307=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600,
- 8320=>600, 8321=>600, 8322=>600, 8323=>600, 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8362=>600, 8470=>600, 8486=>600, 8531=>600, 8532=>600, 8533=>600,
- 8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8592=>600, 8593=>600, 8594=>600, 8595=>600, 8706=>600, 8710=>600,
- 8721=>600, 8722=>600, 8730=>600, 8734=>600, 8800=>600, 8804=>600, 8805=>600, 9674=>600, 9833=>600, 9834=>600, 9835=>600, 9836=>600, 63166=>600, 63171=>600, 64257=>600, 64258=>600);
+ 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600, 47=>600,
+ 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600, 63=>600,
+ 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600, 79=>600,
+ 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600, 95=>600,
+ 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600, 111=>600,
+ 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600, 8364=>600,
+ 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600, 8216=>600,
+ 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600, 161=>600,
+ 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600, 177=>600,
+ 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600, 193=>600,
+ 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600, 209=>600,
+ 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600, 225=>600,
+ 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600, 241=>600,
+ 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600, 257=>600,
+ 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600, 273=>600,
+ 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600, 289=>600,
+ 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600, 305=>600,
+ 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600, 321=>600,
+ 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600, 337=>600,
+ 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600, 357=>863,
+ 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600, 373=>600,
+ 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, 385=>600, 386=>600, 387=>600, 390=>600, 391=>600, 392=>600, 393=>600, 394=>600,
+ 395=>600, 396=>600, 397=>600, 398=>600, 400=>600, 401=>600, 403=>600, 405=>600, 406=>600, 407=>600, 409=>600, 410=>600, 411=>600, 412=>600, 413=>600, 414=>600,
+ 415=>600, 416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600, 425=>600, 427=>600, 428=>600, 429=>600, 430=>600, 431=>600,
+ 432=>600, 435=>600, 436=>600, 437=>600, 438=>600, 439=>600, 440=>600, 443=>600, 455=>600, 456=>600, 457=>600, 459=>600, 460=>600, 461=>600, 462=>600, 463=>600,
+ 464=>600, 465=>600, 466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600, 474=>600, 475=>600, 476=>600, 477=>600, 478=>600, 479=>600,
+ 482=>600, 483=>600, 486=>600, 487=>600, 488=>600, 489=>600, 490=>600, 491=>600, 492=>600, 493=>600, 494=>600, 496=>600, 500=>600, 501=>600, 504=>600, 505=>600,
+ 506=>600, 507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>600, 513=>600, 514=>600, 515=>600, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600,
+ 522=>600, 523=>600, 524=>600, 525=>600, 526=>600, 527=>600, 528=>600, 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600, 537=>600,
+ 538=>600, 539=>600, 542=>600, 543=>600, 550=>600, 551=>600, 552=>600, 553=>600, 554=>600, 555=>600, 556=>600, 557=>600, 558=>600, 559=>600, 592=>600, 593=>600,
+ 594=>600, 595=>600, 596=>600, 598=>600, 599=>600, 600=>600, 601=>600, 603=>600, 604=>600, 607=>600, 608=>600, 609=>600, 613=>600, 614=>600, 615=>600, 616=>600,
+ 617=>600, 618=>600, 619=>600, 621=>600, 623=>600, 624=>600, 625=>600, 626=>600, 627=>600, 628=>600, 629=>600, 633=>600, 634=>600, 635=>600, 636=>600, 637=>600,
+ 638=>600, 639=>600, 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 647=>600, 648=>600, 649=>600, 652=>600, 653=>600, 654=>600, 656=>600, 660=>600,
+ 661=>600, 662=>600, 663=>600, 664=>600, 668=>600, 670=>600, 671=>600, 672=>600, 673=>600, 674=>600, 699=>0, 700=>0, 711=>600, 728=>600, 729=>0, 730=>600,
+ 731=>600, 733=>600, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 780=>0, 783=>0, 784=>0, 785=>0,
+ 806=>0, 884=>600, 885=>600, 890=>600, 894=>600, 900=>600, 901=>600, 902=>600, 903=>600, 904=>600, 905=>600, 906=>600, 908=>600, 910=>600, 911=>600, 912=>600,
+ 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600, 920=>600, 921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600,
+ 929=>600, 931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600, 937=>600, 938=>600, 939=>600, 940=>600, 941=>600, 942=>600, 943=>600, 944=>600, 945=>600,
+ 946=>600, 947=>600, 948=>600, 949=>600, 950=>600, 951=>600, 952=>600, 953=>600, 954=>600, 955=>600, 956=>600, 957=>600, 958=>600, 959=>600, 960=>600, 961=>600,
+ 962=>600, 963=>600, 964=>600, 965=>600, 966=>600, 967=>600, 968=>600, 969=>600, 970=>600, 971=>600, 972=>600, 973=>600, 974=>600, 981=>600, 1024=>600, 1025=>600,
+ 1026=>600, 1028=>600, 1029=>600, 1030=>600, 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600, 1043=>600, 1044=>600,
+ 1045=>600, 1046=>600, 1047=>600, 1048=>600, 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600, 1059=>600, 1060=>600,
+ 1061=>600, 1062=>600, 1063=>600, 1064=>600, 1065=>600, 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600, 1075=>600, 1076=>600,
+ 1077=>600, 1078=>600, 1079=>600, 1080=>600, 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600, 1091=>600, 1092=>600,
+ 1093=>600, 1094=>600, 1095=>600, 1096=>600, 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600, 1107=>600, 1108=>600,
+ 1109=>600, 1110=>600, 1111=>600, 1112=>600, 1113=>600, 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600, 1168=>600, 1169=>600,
+ 1170=>600, 1171=>600, 1172=>600, 1173=>600, 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600, 1184=>600, 1185=>600,
+ 1186=>600, 1187=>600, 1188=>600, 1189=>600, 1190=>600, 1191=>600, 1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600, 1198=>579, 1199=>600, 1200=>600, 1201=>600,
+ 1202=>600, 1203=>600, 1204=>579, 1205=>579, 1206=>600, 1207=>600, 1208=>579, 1209=>579, 1210=>579, 1211=>579, 1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600, 1217=>600,
+ 1218=>600, 1219=>600, 1220=>600, 1223=>600, 1224=>600, 1227=>600, 1228=>600, 1232=>600, 1233=>600, 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600, 1239=>600, 1240=>600,
+ 1241=>600, 1242=>600, 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600, 1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600, 1255=>600, 1256=>600,
+ 1257=>600, 1258=>600, 1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600, 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1272=>600, 1273=>600, 1456=>600,
+ 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600, 1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600, 1470=>600, 1471=>600, 1472=>600, 1473=>600,
+ 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600, 1497=>600, 1498=>600, 1499=>600, 1500=>600,
+ 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600, 1513=>600, 1514=>600, 1520=>600, 1521=>600,
+ 1522=>600, 1523=>600, 1524=>600, 8208=>600, 8209=>600, 8210=>600, 8213=>600, 8260=>600, 8304=>600, 8306=>600, 8307=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600,
+ 8313=>600, 8320=>600, 8321=>600, 8322=>600, 8323=>600, 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8362=>600, 8373=>600, 8470=>600, 8486=>600, 8487=>600,
+ 8491=>600, 8531=>600, 8532=>600, 8533=>600, 8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8592=>600, 8593=>600,
+ 8594=>600, 8595=>600, 8706=>600, 8710=>600, 8721=>600, 8722=>600, 8730=>600, 8734=>600, 8800=>600, 8804=>600, 8805=>600, 9674=>600, 9833=>600, 9834=>600, 9835=>600, 9836=>600,
+ 63166=>600, 63171=>600, 64257=>600, 64258=>600, 65533=>788);
$enc='';
$diff='';
-$file='FreeMonoBoldOblique.z';
-$ctg='FreeMonoBoldOblique.ctg.z';
-$originalsize=128384;
+$file='freemonobi.z';
+$ctg='freemonobi.ctg.z';
+$originalsize=133612;
?>
diff --git a/lib/tcpdf/fonts/freemonobi.z b/lib/tcpdf/fonts/freemonobi.z
new file mode 100644
index 0000000000..ba6de9a09f
Binary files /dev/null and b/lib/tcpdf/fonts/freemonobi.z differ
diff --git a/lib/tcpdf/fonts/freemonoi.ctg.z b/lib/tcpdf/fonts/freemonoi.ctg.z
new file mode 100644
index 0000000000..be6b17714f
Binary files /dev/null and b/lib/tcpdf/fonts/freemonoi.ctg.z differ
diff --git a/lib/tcpdf/fonts/freemonoi.php b/lib/tcpdf/fonts/freemonoi.php
index 75b9bf95b6..1faef54828 100755
--- a/lib/tcpdf/fonts/freemonoi.php
+++ b/lib/tcpdf/fonts/freemonoi.php
@@ -1,89 +1,120 @@
1000,'Descent'=>-273,'CapHeight'=>1000,'Flags'=>96,'FontBBox'=>'[-577 -273 779 1000]','ItalicAngle'=>-12,'StemV'=>70,'MissingWidth'=>600);
+$desc=array('Ascent'=>1077,'Descent'=>-346,'CapHeight'=>1077,'Flags'=>96,'FontBBox'=>'[-577 -346 848 1077]','ItalicAngle'=>-12,'StemV'=>70,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
- 13=>333, 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600,
- 47=>600, 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600,
- 63=>600, 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600,
- 79=>600, 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600,
- 95=>600, 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600,
- 111=>600, 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600,
- 8364=>600, 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600,
- 8216=>600, 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600,
- 161=>600, 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600,
- 177=>600, 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600,
- 193=>600, 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600,
- 209=>600, 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600,
- 225=>600, 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600,
- 241=>600, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600,
- 257=>600, 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600,
- 273=>600, 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600,
- 289=>600, 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600,
- 305=>600, 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600,
- 321=>600, 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600,
- 337=>600, 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600,
- 357=>600, 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600,
- 373=>600, 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, 385=>600, 386=>600, 387=>600, 388=>600, 389=>600, 390=>600, 391=>600,
- 392=>600, 393=>600, 394=>600, 395=>600, 396=>600, 397=>600, 398=>600, 399=>600, 400=>600, 401=>600, 403=>600, 404=>600, 405=>600, 406=>600, 407=>600, 408=>600,
- 409=>600, 410=>600, 411=>600, 412=>600, 413=>600, 414=>600, 415=>600, 416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600,
- 425=>600, 426=>600, 427=>600, 428=>600, 429=>600, 430=>600, 431=>600, 432=>600, 433=>600, 434=>600, 435=>600, 436=>600, 437=>600, 438=>600, 439=>600, 440=>600,
- 441=>600, 442=>600, 443=>600, 444=>600, 445=>600, 446=>600, 448=>600, 449=>600, 450=>600, 451=>600, 452=>600, 453=>600, 454=>600, 455=>600, 456=>600, 457=>600,
- 458=>600, 459=>600, 460=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600,
- 474=>600, 475=>600, 476=>600, 477=>600, 478=>600, 479=>600, 480=>600, 481=>600, 482=>600, 483=>600, 484=>600, 485=>600, 486=>600, 487=>600, 488=>600, 489=>600,
- 490=>600, 491=>600, 492=>600, 493=>600, 494=>600, 495=>600, 496=>600, 497=>600, 498=>600, 499=>600, 500=>600, 501=>600, 502=>600, 504=>600, 505=>600, 506=>600,
- 507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>600, 513=>600, 514=>600, 515=>600, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600, 522=>600,
- 523=>600, 524=>600, 525=>600, 526=>600, 527=>600, 528=>600, 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600, 537=>600, 538=>600,
- 539=>600, 542=>600, 543=>600, 548=>600, 549=>600, 550=>600, 551=>600, 552=>600, 553=>600, 554=>600, 555=>600, 556=>600, 557=>600, 558=>600, 559=>600, 560=>600,
- 561=>600, 562=>600, 563=>600, 592=>600, 593=>600, 594=>600, 595=>600, 596=>600, 597=>600, 598=>600, 599=>600, 600=>600, 601=>600, 602=>600, 603=>600, 604=>600,
- 605=>600, 606=>600, 607=>600, 608=>600, 609=>600, 610=>600, 611=>600, 612=>600, 613=>600, 614=>600, 615=>600, 616=>600, 617=>600, 618=>600, 619=>600, 620=>600,
- 621=>600, 622=>600, 623=>600, 624=>600, 625=>600, 626=>600, 627=>600, 628=>600, 629=>600, 630=>600, 631=>600, 632=>600, 633=>600, 634=>600, 635=>600, 636=>600,
- 637=>600, 638=>600, 639=>600, 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 646=>600, 647=>600, 648=>600, 649=>600, 650=>600, 651=>600, 652=>600,
- 653=>600, 654=>600, 655=>600, 656=>600, 657=>600, 658=>600, 659=>600, 660=>600, 661=>600, 662=>600, 663=>600, 664=>600, 665=>600, 666=>600, 667=>600, 668=>600,
- 669=>600, 670=>600, 671=>600, 672=>600, 673=>600, 674=>600, 711=>600, 712=>600, 713=>600, 714=>600, 715=>600, 728=>600, 729=>600, 730=>600, 731=>600, 733=>600,
- 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0,
- 807=>0, 808=>0, 821=>0, 822=>0, 823=>0, 824=>0, 901=>600, 902=>600, 904=>600, 905=>600, 906=>600, 908=>600, 910=>600, 911=>600, 912=>600, 913=>600,
- 914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600, 920=>600, 921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600,
- 931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600, 937=>600, 938=>600, 939=>600, 940=>600, 941=>600, 942=>600, 943=>600, 944=>600, 945=>600, 946=>600,
- 947=>600, 948=>600, 949=>600, 950=>600, 951=>600, 952=>600, 953=>600, 954=>600, 955=>600, 956=>600, 957=>600, 958=>600, 959=>600, 960=>600, 961=>600, 962=>600,
- 963=>600, 964=>600, 965=>600, 966=>600, 967=>600, 968=>600, 969=>600, 970=>600, 971=>600, 972=>600, 973=>600, 974=>600, 1024=>600, 1025=>600, 1026=>600, 1028=>600,
- 1029=>600, 1030=>600, 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600, 1043=>600, 1044=>600, 1045=>600, 1046=>600,
- 1047=>600, 1048=>600, 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600, 1059=>600, 1060=>600, 1061=>600, 1062=>600,
- 1063=>600, 1064=>600, 1065=>600, 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600, 1075=>600, 1076=>600, 1077=>600, 1078=>600,
- 1079=>600, 1080=>600, 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600, 1091=>600, 1092=>600, 1093=>600, 1094=>600,
- 1095=>600, 1096=>600, 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600, 1107=>600, 1108=>600, 1109=>600, 1110=>600,
- 1111=>600, 1112=>600, 1113=>600, 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600, 1168=>600, 1169=>600, 1170=>600, 1171=>600,
- 1172=>600, 1173=>600, 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600, 1184=>600, 1185=>600, 1186=>600, 1187=>600,
- 1188=>600, 1189=>600, 1190=>600, 1191=>600, 1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600, 1198=>600, 1199=>600, 1200=>600, 1201=>600, 1202=>600, 1203=>600,
- 1204=>600, 1205=>600, 1206=>600, 1207=>600, 1208=>600, 1209=>600, 1210=>600, 1211=>600, 1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600, 1217=>600, 1218=>600, 1219=>600,
- 1220=>600, 1223=>600, 1224=>600, 1227=>600, 1228=>600, 1232=>600, 1233=>600, 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600, 1239=>600, 1240=>600, 1241=>600, 1242=>600,
- 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600, 1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600, 1255=>600, 1256=>600, 1257=>600, 1258=>600,
- 1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600, 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1272=>600, 1273=>600, 1328=>600, 1329=>600, 1330=>600,
- 1331=>600, 1332=>600, 1333=>600, 1334=>600, 1335=>600, 1336=>600, 1337=>600, 1338=>600, 1339=>600, 1340=>600, 1341=>600, 1342=>600, 1343=>600, 1344=>600, 1345=>600, 1346=>600,
- 1347=>600, 1348=>600, 1349=>600, 1350=>600, 1351=>600, 1352=>600, 1353=>600, 1354=>600, 1355=>600, 1356=>600, 1357=>600, 1358=>600, 1359=>600, 1360=>600, 1361=>600, 1362=>600,
- 1363=>600, 1364=>600, 1365=>600, 1366=>600, 1367=>600, 1368=>600, 1369=>600, 1370=>600, 1371=>600, 1372=>600, 1373=>600, 1374=>600, 1375=>600, 1376=>600, 1377=>600, 1378=>600,
- 1379=>600, 1380=>600, 1381=>600, 1382=>600, 1383=>600, 1384=>600, 1385=>600, 1386=>600, 1387=>600, 1388=>600, 1389=>600, 1390=>600, 1391=>600, 1392=>600, 1393=>600, 1394=>600,
- 1395=>600, 1396=>600, 1397=>600, 1398=>600, 1399=>600, 1400=>600, 1401=>600, 1402=>600, 1403=>600, 1404=>600, 1405=>600, 1406=>600, 1407=>600, 1408=>600, 1409=>600, 1410=>600,
- 1411=>600, 1412=>600, 1413=>600, 1414=>600, 1415=>600, 1416=>600, 1417=>600, 1418=>600, 1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600,
- 1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600, 1470=>600, 1471=>600, 1472=>600, 1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600,
- 1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600, 1497=>600, 1498=>600, 1499=>600, 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600,
- 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600, 1513=>600, 1514=>600, 1520=>600, 1521=>600, 1522=>600, 1523=>600, 1524=>600, 8213=>600, 8241=>600, 8242=>600, 8243=>600,
- 8244=>600, 8245=>600, 8246=>600, 8247=>600, 8252=>600, 8253=>600, 8260=>600, 8261=>600, 8262=>600, 8263=>600, 8264=>600, 8265=>600, 8304=>600, 8305=>600, 8306=>600, 8307=>600,
- 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600, 8314=>600, 8315=>600, 8316=>600, 8317=>600, 8318=>600, 8319=>600, 8320=>600, 8321=>600, 8322=>600, 8323=>600,
- 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8356=>600, 8362=>600, 8448=>600, 8449=>600, 8450=>600, 8451=>600, 8452=>600, 8453=>600, 8454=>600, 8455=>600,
- 8456=>600, 8457=>600, 8458=>600, 8459=>600, 8460=>600, 8461=>600, 8462=>600, 8463=>600, 8464=>600, 8465=>600, 8466=>600, 8467=>600, 8468=>600, 8469=>600, 8470=>600, 8471=>600,
- 8472=>600, 8473=>600, 8474=>600, 8475=>600, 8476=>600, 8477=>600, 8478=>600, 8479=>600, 8484=>600, 8486=>600, 8487=>600, 8490=>600, 8491=>600, 8531=>600, 8532=>600, 8533=>600,
- 8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8592=>600, 8593=>600, 8594=>600, 8595=>600, 8596=>600, 8597=>600,
- 8598=>600, 8599=>600, 8600=>600, 8601=>600, 8616=>600, 8706=>600, 8710=>600, 8721=>600, 8722=>600, 8730=>600, 8734=>600, 8800=>600, 8804=>600, 8805=>600, 9674=>600, 9833=>600,
- 9834=>600, 9835=>600, 9836=>600, 9837=>600, 9838=>600, 9839=>600, 63171=>600, 64257=>600, 64258=>600, 64285=>600, 64286=>600, 64287=>600, 64288=>600, 64289=>600, 64290=>600, 64291=>600,
- 64292=>600, 64293=>600, 64294=>600, 64295=>600, 64296=>600, 64297=>600, 64298=>600, 64299=>600, 64300=>600, 64301=>600, 64302=>600, 64303=>600, 64304=>600, 64305=>600, 64306=>600, 64307=>600,
- 64308=>600, 64309=>600, 64310=>600, 64312=>600, 64313=>600, 64314=>600, 64315=>600, 64316=>600, 64318=>600, 64320=>600, 64321=>600, 64323=>600, 64324=>600, 64326=>600, 64327=>600, 64328=>600,
- 64329=>600, 64330=>600, 64331=>600, 64332=>600, 64333=>600, 64334=>600, 64335=>600);
+ 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600, 47=>600,
+ 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600, 63=>600,
+ 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600, 79=>600,
+ 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600, 95=>600,
+ 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600, 111=>600,
+ 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600, 8364=>600,
+ 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600, 8216=>600,
+ 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600, 161=>600,
+ 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600, 177=>600,
+ 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600, 193=>600,
+ 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600, 209=>600,
+ 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600, 225=>600,
+ 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600, 241=>600,
+ 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600, 257=>600,
+ 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600, 273=>600,
+ 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600, 289=>600,
+ 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600, 305=>600,
+ 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600, 321=>600,
+ 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600, 337=>600,
+ 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600, 357=>600,
+ 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600, 373=>600,
+ 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, 385=>600, 386=>600, 387=>600, 388=>600, 389=>600, 390=>600, 391=>600, 392=>600,
+ 393=>600, 394=>600, 395=>600, 396=>600, 397=>600, 398=>600, 399=>600, 400=>600, 401=>600, 403=>600, 404=>600, 405=>600, 406=>600, 407=>600, 408=>600, 409=>600,
+ 410=>600, 411=>600, 412=>600, 413=>600, 414=>600, 415=>600, 416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600, 425=>600,
+ 426=>600, 427=>600, 428=>600, 429=>600, 430=>600, 431=>600, 432=>600, 433=>600, 434=>600, 435=>600, 436=>600, 437=>600, 438=>600, 439=>600, 440=>600, 441=>600,
+ 442=>600, 443=>600, 444=>600, 445=>600, 446=>600, 447=>600, 448=>600, 449=>600, 450=>600, 451=>600, 452=>600, 453=>600, 454=>600, 455=>600, 456=>600, 457=>600,
+ 458=>600, 459=>600, 460=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600,
+ 474=>600, 475=>600, 476=>600, 477=>600, 478=>600, 479=>600, 480=>600, 481=>600, 482=>600, 483=>600, 484=>600, 485=>600, 486=>600, 487=>600, 488=>600, 489=>600,
+ 490=>600, 491=>600, 492=>600, 493=>600, 494=>600, 495=>600, 496=>600, 497=>600, 498=>600, 499=>600, 500=>600, 501=>600, 502=>600, 503=>600, 504=>600, 505=>600,
+ 506=>600, 507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>600, 513=>600, 514=>600, 515=>600, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600,
+ 522=>600, 523=>600, 524=>600, 525=>600, 526=>600, 527=>600, 528=>600, 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600, 537=>600,
+ 538=>600, 539=>600, 540=>600, 541=>600, 542=>600, 543=>600, 548=>600, 549=>600, 550=>600, 551=>600, 552=>600, 553=>600, 554=>600, 555=>600, 556=>600, 557=>600,
+ 558=>600, 559=>600, 560=>600, 561=>600, 562=>600, 563=>600, 592=>600, 593=>600, 594=>600, 595=>600, 596=>600, 597=>600, 598=>600, 599=>600, 600=>600, 601=>600,
+ 602=>600, 603=>600, 604=>600, 607=>600, 608=>600, 609=>600, 610=>600, 611=>600, 612=>600, 613=>600, 614=>600, 615=>600, 616=>600, 617=>600, 618=>600, 619=>600,
+ 620=>600, 621=>600, 622=>600, 623=>600, 624=>600, 625=>600, 626=>600, 627=>600, 628=>600, 629=>600, 630=>600, 632=>600, 633=>600, 634=>600, 635=>600, 636=>600,
+ 637=>600, 638=>600, 639=>600, 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 646=>600, 647=>600, 648=>600, 649=>600, 651=>600, 652=>600, 653=>600,
+ 654=>600, 655=>600, 656=>600, 657=>600, 658=>600, 660=>600, 661=>600, 662=>600, 663=>600, 664=>600, 665=>600, 667=>600, 668=>600, 669=>600, 670=>600, 671=>600,
+ 672=>600, 673=>600, 674=>600, 679=>600, 699=>600, 700=>600, 701=>600, 702=>600, 703=>600, 711=>600, 712=>600, 713=>600, 714=>600, 715=>600, 728=>600, 729=>600,
+ 730=>600, 731=>600, 733=>600, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0,
+ 781=>0, 782=>0, 783=>0, 807=>0, 808=>0, 821=>0, 822=>0, 823=>0, 824=>0, 890=>600, 900=>600, 901=>600, 902=>600, 904=>600, 905=>600, 906=>600,
+ 908=>600, 910=>600, 911=>600, 912=>600, 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600, 920=>600, 921=>600, 922=>600, 923=>600, 924=>600,
+ 925=>600, 926=>600, 927=>600, 928=>600, 929=>600, 931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600, 937=>600, 938=>600, 939=>600, 940=>600, 941=>600,
+ 942=>600, 943=>600, 944=>600, 945=>600, 946=>600, 947=>600, 948=>600, 949=>600, 950=>600, 951=>600, 952=>600, 953=>600, 954=>600, 955=>600, 956=>600, 957=>600,
+ 958=>600, 959=>600, 960=>600, 961=>600, 962=>600, 963=>600, 964=>600, 965=>600, 966=>600, 967=>600, 968=>600, 969=>600, 970=>600, 971=>600, 972=>600, 973=>600,
+ 974=>600, 981=>600, 1024=>600, 1025=>600, 1026=>600, 1028=>600, 1029=>600, 1030=>600, 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600,
+ 1041=>600, 1042=>600, 1043=>600, 1044=>600, 1045=>600, 1046=>600, 1047=>600, 1048=>600, 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600,
+ 1057=>600, 1058=>600, 1059=>600, 1060=>600, 1061=>600, 1062=>600, 1063=>600, 1064=>600, 1065=>600, 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600,
+ 1073=>600, 1074=>600, 1075=>600, 1076=>600, 1077=>600, 1078=>600, 1079=>600, 1080=>600, 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600,
+ 1089=>600, 1090=>600, 1091=>600, 1092=>600, 1093=>600, 1094=>600, 1095=>600, 1096=>600, 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600,
+ 1105=>600, 1106=>600, 1107=>600, 1108=>600, 1109=>600, 1110=>600, 1111=>600, 1112=>600, 1113=>600, 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1164=>600, 1165=>600,
+ 1166=>600, 1167=>600, 1168=>600, 1169=>600, 1170=>600, 1171=>600, 1172=>600, 1173=>600, 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600,
+ 1182=>600, 1183=>600, 1184=>600, 1185=>600, 1186=>600, 1187=>600, 1188=>600, 1189=>600, 1190=>600, 1191=>600, 1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600,
+ 1198=>600, 1199=>600, 1200=>600, 1201=>600, 1202=>600, 1203=>600, 1204=>600, 1205=>600, 1206=>600, 1207=>600, 1208=>600, 1209=>600, 1210=>600, 1211=>600, 1212=>600, 1213=>600,
+ 1214=>600, 1215=>600, 1216=>600, 1217=>600, 1218=>600, 1219=>600, 1220=>600, 1223=>600, 1224=>600, 1227=>600, 1228=>600, 1232=>600, 1233=>600, 1234=>600, 1235=>600, 1236=>600,
+ 1237=>600, 1238=>600, 1239=>600, 1240=>600, 1241=>600, 1242=>600, 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600, 1250=>600, 1251=>600, 1252=>600,
+ 1253=>600, 1254=>600, 1255=>600, 1256=>600, 1257=>600, 1258=>600, 1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600, 1266=>600, 1267=>600, 1268=>600,
+ 1269=>600, 1272=>600, 1273=>600, 1329=>600, 1330=>600, 1331=>600, 1332=>600, 1333=>600, 1334=>600, 1335=>600, 1336=>600, 1337=>600, 1338=>600, 1339=>600, 1340=>600, 1341=>600,
+ 1342=>600, 1343=>600, 1344=>600, 1345=>600, 1346=>600, 1347=>600, 1348=>600, 1349=>600, 1350=>600, 1351=>600, 1352=>600, 1353=>600, 1354=>600, 1355=>600, 1356=>600, 1357=>600,
+ 1358=>600, 1359=>600, 1360=>600, 1361=>600, 1362=>600, 1363=>600, 1364=>600, 1365=>600, 1366=>600, 1377=>600, 1378=>600, 1379=>600, 1380=>600, 1381=>600, 1382=>600, 1383=>600,
+ 1384=>600, 1385=>600, 1386=>600, 1387=>600, 1388=>600, 1389=>600, 1390=>600, 1391=>600, 1392=>600, 1393=>600, 1394=>600, 1395=>600, 1396=>600, 1397=>600, 1398=>600, 1399=>600,
+ 1400=>600, 1401=>600, 1402=>600, 1403=>600, 1404=>600, 1405=>600, 1406=>600, 1407=>600, 1408=>600, 1409=>600, 1410=>600, 1411=>600, 1412=>600, 1413=>600, 1414=>600, 1418=>600,
+ 1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600, 1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600, 1470=>600, 1471=>600, 1472=>600,
+ 1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600, 1497=>600, 1498=>600, 1499=>600,
+ 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600, 1513=>600, 1514=>600, 1520=>600,
+ 1521=>600, 1522=>600, 1523=>600, 1524=>600, 7680=>600, 7681=>600, 7682=>600, 7683=>600, 7684=>600, 7685=>600, 7686=>600, 7687=>600, 7688=>600, 7689=>600, 7690=>600, 7691=>600,
+ 7692=>600, 7693=>600, 7694=>600, 7695=>600, 7696=>600, 7697=>600, 7698=>600, 7699=>600, 7700=>600, 7701=>600, 7702=>600, 7703=>600, 7704=>600, 7705=>600, 7706=>600, 7707=>600,
+ 7708=>600, 7709=>600, 7710=>600, 7711=>600, 7712=>600, 7713=>600, 7714=>600, 7715=>600, 7716=>600, 7717=>600, 7718=>600, 7719=>600, 7720=>600, 7721=>600, 7722=>600, 7723=>600,
+ 7724=>600, 7725=>600, 7726=>600, 7727=>600, 7728=>600, 7729=>600, 7730=>600, 7731=>600, 7732=>600, 7733=>600, 7734=>600, 7735=>600, 7736=>600, 7737=>600, 7738=>600, 7739=>600,
+ 7740=>600, 7741=>600, 7742=>600, 7743=>600, 7744=>600, 7745=>600, 7746=>600, 7747=>600, 7748=>600, 7749=>600, 7750=>600, 7751=>600, 7752=>600, 7753=>600, 7754=>600, 7755=>600,
+ 7756=>600, 7757=>600, 7758=>600, 7759=>600, 7760=>600, 7761=>600, 7762=>600, 7763=>600, 7764=>600, 7765=>600, 7766=>600, 7767=>600, 7768=>600, 7769=>600, 7770=>600, 7771=>600,
+ 7772=>600, 7773=>600, 7774=>600, 7775=>600, 7776=>600, 7777=>600, 7778=>600, 7779=>600, 7780=>600, 7781=>600, 7782=>600, 7783=>600, 7784=>600, 7785=>600, 7786=>600, 7787=>600,
+ 7788=>600, 7789=>600, 7790=>600, 7791=>600, 7792=>600, 7793=>600, 7794=>600, 7795=>600, 7796=>600, 7797=>600, 7798=>600, 7799=>600, 7800=>600, 7801=>600, 7802=>600, 7803=>600,
+ 7804=>600, 7805=>600, 7806=>600, 7807=>600, 7808=>600, 7809=>600, 7810=>600, 7811=>600, 7812=>600, 7813=>600, 7814=>600, 7815=>600, 7816=>600, 7817=>600, 7818=>600, 7819=>600,
+ 7820=>600, 7821=>600, 7822=>600, 7823=>600, 7824=>600, 7825=>600, 7826=>600, 7827=>600, 7828=>600, 7829=>600, 7830=>600, 7831=>600, 7832=>600, 7833=>600, 7835=>600, 7840=>600,
+ 7841=>600, 7842=>600, 7843=>600, 7844=>600, 7845=>600, 7846=>600, 7847=>600, 7848=>600, 7849=>600, 7850=>600, 7851=>600, 7852=>600, 7853=>600, 7854=>600, 7855=>600, 7856=>600,
+ 7857=>600, 7858=>600, 7859=>600, 7860=>600, 7861=>600, 7862=>600, 7863=>600, 7864=>600, 7865=>600, 7866=>600, 7867=>600, 7868=>600, 7869=>600, 7870=>600, 7871=>600, 7872=>600,
+ 7873=>600, 7874=>600, 7875=>600, 7876=>600, 7877=>600, 7878=>600, 7879=>600, 7880=>600, 7881=>600, 7882=>600, 7883=>600, 7884=>600, 7885=>600, 7886=>600, 7887=>600, 7888=>600,
+ 7889=>600, 7890=>600, 7891=>600, 7892=>600, 7893=>600, 7894=>600, 7895=>600, 7896=>600, 7897=>600, 7898=>600, 7899=>600, 7900=>600, 7901=>600, 7902=>600, 7903=>600, 7904=>600,
+ 7905=>600, 7906=>600, 7907=>600, 7908=>600, 7909=>600, 7910=>600, 7911=>600, 7912=>600, 7913=>600, 7914=>600, 7915=>600, 7916=>600, 7917=>600, 7918=>600, 7919=>600, 7920=>600,
+ 7921=>600, 7922=>600, 7923=>600, 7924=>600, 7925=>600, 7926=>600, 7927=>600, 7928=>600, 7929=>600, 7936=>600, 7937=>600, 7938=>600, 7939=>600, 7940=>600, 7941=>600, 7942=>600,
+ 7943=>600, 7944=>600, 7945=>600, 7946=>600, 7947=>600, 7948=>600, 7949=>600, 7950=>600, 7951=>600, 7952=>600, 7953=>600, 7954=>600, 7955=>600, 7956=>600, 7957=>600, 7958=>600,
+ 7959=>600, 7960=>600, 7961=>600, 7962=>600, 7963=>600, 7964=>600, 7965=>600, 7966=>600, 7967=>600, 7968=>600, 7969=>600, 7970=>600, 7971=>600, 7972=>600, 7973=>600, 7974=>600,
+ 7975=>600, 7976=>600, 7977=>600, 7978=>600, 7979=>600, 7980=>600, 7981=>600, 7982=>600, 7983=>600, 7984=>600, 7985=>600, 7986=>600, 7987=>600, 7988=>600, 7989=>600, 7990=>600,
+ 7991=>600, 7992=>600, 7993=>600, 7994=>600, 7995=>600, 7996=>600, 7997=>600, 7998=>600, 7999=>600, 8000=>600, 8001=>600, 8002=>600, 8003=>600, 8004=>600, 8005=>600, 8006=>600,
+ 8007=>600, 8008=>600, 8009=>600, 8010=>600, 8011=>600, 8012=>600, 8013=>600, 8014=>600, 8015=>600, 8016=>600, 8017=>600, 8018=>600, 8019=>600, 8020=>600, 8021=>600, 8022=>600,
+ 8023=>600, 8024=>600, 8025=>600, 8026=>600, 8027=>600, 8028=>600, 8029=>600, 8030=>600, 8031=>600, 8032=>600, 8033=>600, 8034=>600, 8035=>600, 8036=>600, 8037=>600, 8038=>600,
+ 8039=>600, 8040=>600, 8041=>600, 8042=>600, 8043=>600, 8044=>600, 8045=>600, 8046=>600, 8047=>600, 8048=>600, 8049=>600, 8050=>600, 8051=>600, 8052=>600, 8053=>600, 8054=>600,
+ 8055=>600, 8056=>600, 8057=>600, 8058=>600, 8059=>600, 8060=>600, 8061=>600, 8062=>600, 8063=>600, 8064=>600, 8065=>600, 8066=>600, 8067=>600, 8068=>600, 8069=>600, 8070=>600,
+ 8071=>600, 8072=>600, 8073=>600, 8074=>600, 8075=>600, 8076=>600, 8077=>600, 8078=>600, 8079=>600, 8080=>600, 8081=>600, 8082=>600, 8083=>600, 8084=>600, 8085=>600, 8086=>600,
+ 8087=>600, 8088=>600, 8089=>600, 8090=>600, 8091=>600, 8092=>600, 8093=>600, 8094=>600, 8095=>600, 8096=>600, 8097=>600, 8098=>600, 8099=>600, 8100=>600, 8101=>600, 8102=>600,
+ 8103=>600, 8104=>600, 8105=>600, 8106=>600, 8107=>600, 8108=>600, 8109=>600, 8110=>600, 8111=>600, 8112=>600, 8113=>600, 8114=>600, 8115=>600, 8116=>600, 8117=>600, 8118=>600,
+ 8119=>600, 8120=>600, 8121=>600, 8122=>600, 8123=>600, 8124=>600, 8125=>600, 8126=>600, 8127=>600, 8128=>600, 8129=>600, 8130=>600, 8131=>600, 8132=>600, 8133=>600, 8134=>600,
+ 8135=>600, 8136=>600, 8137=>600, 8138=>600, 8139=>600, 8140=>600, 8141=>600, 8142=>600, 8143=>600, 8144=>600, 8145=>600, 8146=>600, 8147=>600, 8148=>600, 8149=>600, 8150=>600,
+ 8151=>600, 8152=>600, 8153=>600, 8154=>600, 8155=>600, 8156=>600, 8157=>746, 8158=>827, 8159=>600, 8160=>600, 8161=>600, 8162=>600, 8163=>600, 8164=>600, 8165=>600, 8166=>600,
+ 8167=>600, 8168=>600, 8169=>600, 8170=>600, 8171=>600, 8172=>600, 8173=>600, 8174=>600, 8175=>600, 8176=>600, 8177=>600, 8178=>600, 8179=>600, 8180=>600, 8181=>600, 8182=>600,
+ 8183=>600, 8184=>600, 8185=>600, 8186=>600, 8187=>600, 8188=>600, 8189=>600, 8190=>600, 8213=>600, 8219=>600, 8223=>600, 8241=>600, 8242=>600, 8243=>600, 8244=>600, 8245=>600,
+ 8246=>600, 8247=>600, 8251=>600, 8252=>600, 8253=>600, 8254=>600, 8260=>600, 8261=>600, 8262=>600, 8264=>600, 8265=>600, 8266=>600, 8267=>600, 8304=>600, 8305=>600, 8306=>600,
+ 8307=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600, 8320=>600, 8321=>600, 8322=>600, 8323=>600, 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600,
+ 8329=>600, 8355=>600, 8356=>600, 8359=>600, 8362=>600, 8373=>600, 8448=>600, 8449=>600, 8450=>600, 8451=>600, 8453=>600, 8454=>600, 8455=>600, 8461=>600, 8464=>600, 8466=>600,
+ 8467=>600, 8468=>600, 8469=>600, 8470=>600, 8471=>600, 8472=>600, 8473=>600, 8474=>600, 8477=>600, 8478=>600, 8484=>600, 8486=>600, 8487=>600, 8490=>600, 8491=>600, 8531=>600,
+ 8532=>600, 8533=>600, 8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8544=>600, 8545=>600, 8546=>600, 8547=>600,
+ 8548=>600, 8549=>600, 8550=>600, 8551=>600, 8552=>600, 8553=>600, 8554=>600, 8555=>600, 8556=>600, 8557=>600, 8558=>600, 8559=>600, 8592=>600, 8593=>600, 8594=>600, 8595=>600,
+ 8596=>600, 8597=>600, 8598=>600, 8599=>600, 8600=>600, 8601=>600, 8616=>600, 8706=>600, 8710=>600, 8721=>600, 8722=>600, 8725=>600, 8730=>600, 8734=>600, 8800=>600, 8804=>600,
+ 8805=>600, 9674=>600, 9833=>600, 9834=>600, 9835=>600, 9836=>600, 9837=>600, 9838=>600, 9839=>600, 63166=>600, 63171=>600, 64257=>600, 64258=>600, 64285=>600, 64286=>600, 64287=>600,
+ 64288=>600, 64289=>600, 64290=>600, 64291=>600, 64292=>600, 64293=>600, 64294=>600, 64295=>600, 64296=>600, 64297=>600, 64298=>600, 64299=>600, 64300=>600, 64301=>600, 64302=>600, 64303=>600,
+ 64304=>600, 64305=>600, 64306=>600, 64307=>600, 64308=>600, 64309=>600, 64310=>600, 64312=>600, 64313=>600, 64314=>600, 64315=>600, 64316=>600, 64318=>600, 64320=>600, 64321=>600, 64323=>600,
+ 64324=>600, 64326=>600, 64327=>600, 64328=>600, 64329=>600, 64330=>600, 64331=>600, 64332=>600, 64333=>600, 64334=>600, 64335=>600, 65533=>788);
$enc='';
$diff='';
-$file='FreeMonoOblique.z';
-$ctg='FreeMonoOblique.ctg.z';
-$originalsize=175484;
+$file='freemonoi.z';
+$ctg='freemonoi.ctg.z';
+$originalsize=215592;
?>
diff --git a/lib/tcpdf/fonts/freemonoi.z b/lib/tcpdf/fonts/freemonoi.z
new file mode 100644
index 0000000000..706641b014
Binary files /dev/null and b/lib/tcpdf/fonts/freemonoi.z differ
diff --git a/lib/tcpdf/fonts/freesans.ctg.z b/lib/tcpdf/fonts/freesans.ctg.z
new file mode 100644
index 0000000000..244bc6730f
Binary files /dev/null and b/lib/tcpdf/fonts/freesans.ctg.z differ
diff --git a/lib/tcpdf/fonts/freesans.php b/lib/tcpdf/fonts/freesans.php
index ff57eacb59..5a9c7e206b 100755
--- a/lib/tcpdf/fonts/freesans.php
+++ b/lib/tcpdf/fonts/freesans.php
@@ -1,149 +1,184 @@
1141,'Descent'=>-459,'CapHeight'=>1141,'Flags'=>32,'FontBBox'=>'[-797 -459 1632 1141]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
+$desc=array('Ascent'=>1230,'Descent'=>-462,'CapHeight'=>1230,'Flags'=>32,'FontBBox'=>'[-631 -462 1632 1230]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
$up=-151;
$ut=50;
$cw=array(
- 13=>333, 32=>278, 33=>278, 34=>355, 35=>556, 36=>556, 37=>889, 38=>667, 39=>191, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278,
- 47=>278, 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>278, 59=>278, 60=>584, 61=>584, 62=>584,
- 63=>556, 64=>1015, 65=>667, 66=>667, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>500, 75=>667, 76=>556, 77=>833, 78=>722,
- 79=>778, 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>278, 92=>278, 93=>278, 94=>469,
- 95=>556, 96=>333, 97=>556, 98=>556, 99=>500, 100=>556, 101=>556, 102=>278, 103=>556, 104=>556, 105=>222, 106=>222, 107=>500, 108=>222, 109=>833, 110=>556,
- 111=>556, 112=>556, 113=>556, 114=>333, 115=>500, 116=>278, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, 122=>500, 123=>334, 124=>260, 125=>334, 126=>584,
- 8364=>556, 1027=>611, 8218=>222, 402=>556, 8222=>333, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>667, 381=>611, 1039=>722,
- 8216=>222, 8217=>221, 8220=>333, 8221=>333, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>500, 8250=>333, 339=>944, 1116=>500, 382=>500, 376=>667, 160=>278,
- 161=>333, 162=>556, 163=>556, 164=>556, 165=>556, 166=>260, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 173=>333, 174=>737, 175=>333, 176=>606,
- 177=>584, 178=>351, 179=>351, 180=>333, 181=>556, 182=>537, 183=>278, 184=>333, 185=>351, 186=>365, 187=>556, 188=>869, 189=>869, 190=>869, 191=>611, 192=>667,
- 193=>667, 194=>667, 195=>667, 196=>667, 197=>667, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722,
- 209=>722, 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>666, 222=>666, 223=>611, 224=>556,
- 225=>556, 226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>500, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>556,
- 241=>556, 242=>556, 243=>556, 244=>556, 245=>556, 246=>556, 247=>584, 248=>611, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>555, 255=>500, 256=>667,
- 257=>556, 258=>667, 259=>556, 260=>667, 261=>556, 262=>722, 263=>500, 264=>722, 265=>500, 266=>722, 267=>500, 268=>722, 269=>500, 270=>722, 271=>635, 272=>722,
- 273=>556, 274=>667, 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>556, 286=>778, 287=>556, 288=>778,
- 289=>556, 290=>778, 291=>556, 292=>722, 293=>556, 294=>722, 295=>556, 296=>278, 297=>278, 298=>278, 299=>222, 300=>278, 301=>278, 302=>278, 303=>222, 304=>278,
- 305=>278, 306=>700, 307=>374, 308=>500, 309=>222, 310=>667, 311=>500, 312=>500, 313=>556, 314=>222, 315=>556, 316=>222, 317=>556, 318=>292, 319=>556, 320=>500,
- 321=>556, 322=>222, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>556, 330=>722, 331=>556, 332=>778, 333=>556, 334=>778, 335=>556, 336=>778,
- 337=>556, 340=>722, 341=>333, 342=>722, 343=>333, 344=>722, 345=>333, 346=>667, 347=>500, 348=>667, 349=>500, 350=>667, 351=>500, 354=>611, 355=>278, 356=>611,
- 357=>308, 358=>611, 359=>278, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>944,
- 373=>722, 374=>667, 375=>500, 377=>611, 378=>500, 379=>611, 380=>500, 383=>278, 384=>556, 386=>667, 387=>556, 388=>667, 389=>556, 390=>722, 391=>722, 392=>500,
- 393=>722, 395=>667, 396=>556, 398=>667, 399=>778, 400=>667, 401=>611, 403=>778, 409=>500, 413=>722, 414=>556, 415=>778, 421=>556, 423=>667, 424=>500, 425=>611,
- 427=>278, 429=>278, 430=>611, 452=>1311, 453=>1208, 454=>1056, 455=>1056, 456=>778, 457=>444, 458=>1158, 459=>944, 460=>778, 461=>667, 462=>556, 463=>278, 464=>278,
- 465=>778, 466=>556, 467=>722, 468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556, 477=>556, 478=>667, 479=>556, 480=>667,
- 481=>556, 482=>1000, 483=>889, 486=>778, 487=>556, 488=>667, 489=>500, 490=>778, 491=>556, 492=>778, 493=>556, 496=>222, 497=>1333, 498=>1222, 499=>1056, 500=>778,
- 501=>556, 504=>722, 505=>556, 506=>667, 507=>556, 508=>1000, 509=>889, 510=>778, 511=>611, 512=>667, 513=>556, 514=>667, 515=>556, 516=>667, 517=>556, 518=>667,
- 519=>556, 520=>278, 521=>278, 522=>278, 523=>278, 524=>778, 525=>556, 526=>778, 527=>556, 528=>722, 529=>333, 530=>722, 531=>333, 532=>722, 533=>556, 534=>722,
- 535=>556, 536=>667, 537=>500, 538=>611, 539=>278, 542=>722, 543=>556, 550=>667, 551=>556, 552=>667, 553=>556, 554=>778, 555=>556, 556=>778, 557=>556, 558=>778,
- 559=>556, 560=>778, 561=>556, 562=>667, 563=>500, 592=>556, 593=>556, 594=>556, 595=>556, 596=>500, 598=>556, 599=>556, 600=>556, 601=>556, 603=>500, 604=>500,
- 608=>556, 609=>556, 613=>556, 614=>556, 615=>556, 616=>222, 617=>222, 618=>278, 621=>222, 623=>833, 624=>833, 625=>833, 626=>556, 627=>556, 629=>556, 633=>333,
- 634=>333, 635=>333, 636=>333, 637=>333, 638=>278, 639=>278, 642=>500, 643=>278, 644=>278, 645=>278, 647=>278, 648=>278, 649=>556, 652=>500, 653=>722, 654=>500,
- 656=>500, 668=>500, 670=>500, 672=>556, 711=>333, 714=>333, 715=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0,
- 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 780=>0, 783=>0, 785=>0, 786=>0, 787=>0, 788=>0, 806=>0, 807=>0, 808=>0, 884=>199,
- 885=>199, 890=>332, 894=>278, 900=>414, 901=>747, 902=>730, 903=>278, 904=>664, 905=>681, 906=>230, 908=>792, 910=>710, 911=>758, 912=>286, 913=>684, 914=>628,
- 915=>582, 916=>684, 917=>650, 918=>628, 919=>683, 920=>750, 921=>236, 922=>684, 923=>684, 924=>800, 925=>654, 926=>630, 927=>750, 928=>721, 929=>638, 931=>628,
- 932=>628, 933=>684, 934=>717, 935=>723, 936=>745, 937=>720, 938=>236, 939=>684, 940=>608, 941=>528, 942=>547, 943=>307, 944=>515, 945=>596, 946=>516, 947=>531,
- 948=>560, 949=>510, 950=>462, 951=>526, 952=>526, 953=>286, 954=>516, 955=>560, 956=>574, 957=>504, 958=>470, 959=>550, 960=>661, 961=>566, 962=>535, 963=>616,
- 964=>532, 965=>515, 966=>741, 967=>572, 968=>662, 969=>740, 970=>286, 971=>515, 972=>553, 973=>518, 974=>740, 1024=>667, 1025=>667, 1026=>766, 1028=>722, 1029=>667,
- 1030=>278, 1031=>278, 1032=>500, 1033=>1080, 1034=>1014, 1035=>766, 1037=>722, 1038=>650, 1040=>667, 1041=>667, 1042=>667, 1043=>611, 1044=>812, 1045=>667, 1046=>1023, 1047=>667,
- 1048=>728, 1049=>728, 1050=>667, 1051=>673, 1052=>844, 1053=>719, 1054=>778, 1055=>719, 1056=>667, 1057=>722, 1058=>611, 1059=>650, 1060=>936, 1061=>667, 1062=>741, 1063=>648,
- 1064=>828, 1065=>850, 1066=>897, 1067=>872, 1068=>667, 1069=>722, 1070=>1032, 1071=>702, 1072=>556, 1073=>556, 1074=>522, 1075=>430, 1076=>602, 1077=>556, 1078=>837, 1079=>500,
- 1080=>567, 1081=>567, 1082=>510, 1083=>557, 1084=>618, 1085=>558, 1086=>556, 1087=>557, 1088=>576, 1089=>500, 1090=>496, 1091=>500, 1092=>912, 1093=>500, 1094=>578, 1095=>520,
- 1096=>692, 1097=>712, 1098=>734, 1099=>690, 1100=>552, 1101=>500, 1102=>758, 1103=>543, 1104=>556, 1105=>556, 1106=>568, 1107=>430, 1108=>500, 1109=>500, 1110=>222, 1111=>278,
- 1112=>222, 1113=>840, 1114=>850, 1115=>568, 1117=>556, 1118=>500, 1119=>556, 1164=>667, 1165=>552, 1166=>667, 1167=>556, 1168=>611, 1169=>430, 1170=>611, 1171=>430, 1172=>611,
- 1173=>430, 1174=>1023, 1175=>837, 1176=>667, 1177=>500, 1178=>667, 1179=>500, 1180=>667, 1181=>500, 1182=>667, 1183=>500, 1184=>667, 1185=>500, 1186=>722, 1187=>556, 1188=>1060,
- 1189=>764, 1190=>722, 1191=>556, 1192=>722, 1193=>500, 1194=>722, 1195=>500, 1196=>611, 1197=>496, 1198=>667, 1199=>500, 1200=>667, 1201=>500, 1202=>667, 1203=>500, 1204=>774,
- 1205=>608, 1206=>642, 1207=>508, 1208=>642, 1209=>508, 1210=>642, 1211=>508, 1212=>778, 1213=>556, 1214=>688, 1215=>556, 1216=>278, 1217=>1023, 1218=>837, 1219=>667, 1220=>500,
- 1223=>722, 1224=>556, 1227=>642, 1228=>508, 1232=>667, 1233=>556, 1234=>667, 1235=>556, 1236=>1000, 1237=>889, 1238=>667, 1239=>556, 1240=>778, 1241=>556, 1242=>778, 1243=>556,
- 1244=>1023, 1245=>837, 1246=>667, 1247=>500, 1248=>667, 1249=>500, 1250=>728, 1251=>567, 1252=>728, 1253=>567, 1254=>778, 1255=>556, 1256=>778, 1257=>556, 1258=>778, 1259=>556,
- 1260=>722, 1261=>500, 1262=>650, 1263=>500, 1264=>650, 1265=>500, 1266=>650, 1267=>500, 1268=>648, 1269=>520, 1272=>872, 1273=>690, 1329=>722, 1330=>705, 1331=>774, 1332=>754,
- 1333=>722, 1334=>751, 1335=>485, 1336=>722, 1337=>782, 1338=>655, 1339=>699, 1340=>417, 1341=>853, 1342=>791, 1343=>711, 1344=>588, 1345=>663, 1346=>665, 1347=>665, 1348=>756,
- 1349=>623, 1350=>773, 1351=>603, 1352=>722, 1353=>648, 1354=>722, 1355=>751, 1356=>750, 1357=>722, 1358=>748, 1359=>667, 1360=>699, 1361=>623, 1362=>417, 1363=>785, 1364=>638,
- 1365=>778, 1366=>716, 1370=>222, 1371=>133, 1372=>325, 1373=>333, 1374=>344, 1377=>833, 1378=>556, 1379=>572, 1380=>581, 1381=>550, 1382=>588, 1383=>448, 1384=>556, 1385=>568,
- 1386=>582, 1387=>545, 1388=>301, 1389=>799, 1390=>556, 1391=>554, 1392=>533, 1393=>548, 1394=>552, 1395=>552, 1396=>544, 1397=>222, 1398=>544, 1399=>456, 1400=>556, 1401=>390,
- 1402=>833, 1403=>509, 1404=>547, 1405=>533, 1406=>610, 1407=>887, 1408=>556, 1409=>545, 1410=>352, 1411=>853, 1412=>588, 1413=>579, 1414=>690, 1415=>545, 1417=>278, 1418=>367,
- 1456=>70, 1457=>335, 1458=>329, 1459=>329, 1460=>70, 1461=>200, 1462=>200, 1463=>188, 1464=>188, 1465=>70, 1467=>329, 1468=>70, 1469=>70, 1470=>488, 1471=>200, 1472=>212,
- 1473=>0, 1474=>0, 1475=>278, 1476=>70, 1488=>640, 1489=>591, 1490=>466, 1491=>598, 1492=>622, 1493=>212, 1494=>351, 1495=>623, 1496=>608, 1497=>200, 1498=>526, 1499=>550,
- 1500=>600, 1501=>623, 1502=>621, 1503=>212, 1504=>378, 1505=>607, 1506=>587, 1507=>575, 1508=>568, 1509=>540, 1510=>590, 1511=>606, 1512=>547, 1513=>776, 1514=>687, 1792=>600,
- 1793=>201, 1794=>201, 1795=>201, 1796=>201, 1797=>500, 1798=>500, 1799=>500, 1800=>370, 1801=>370, 1802=>574, 1803=>574, 1804=>645, 1805=>574, 1808=>452, 1809=>452, 1810=>574,
- 1811=>645, 1812=>645, 1813=>509, 1814=>509, 1815=>682, 1816=>585, 1817=>404, 1818=>627, 1819=>718, 1820=>718, 1821=>484, 1822=>682, 1823=>600, 1824=>660, 1825=>682, 1826=>538,
- 1827=>718, 1828=>718, 1829=>718, 1830=>574, 1831=>574, 1832=>638, 1833=>585, 1834=>509, 1835=>682, 1836=>682, 1840=>1, 1841=>1, 1842=>1, 1843=>1, 1844=>1, 1845=>1,
- 1846=>1, 1847=>1, 1848=>1, 1849=>1, 1850=>1, 1851=>1, 1852=>1, 1853=>1, 1854=>1, 1855=>1, 1856=>1, 1857=>1, 1858=>1, 1859=>1, 1860=>1, 1861=>1,
- 1862=>1, 1863=>1, 1864=>1, 1865=>1, 1866=>1, 2305=>6, 2306=>6, 2309=>644, 2310=>816, 2311=>392, 2312=>392, 2313=>459, 2314=>661, 2315=>641, 2317=>423, 2320=>423,
- 2321=>816, 2323=>816, 2324=>816, 2325=>393, 2326=>622, 2327=>424, 2328=>472, 2329=>508, 2330=>517, 2331=>583, 2332=>549, 2333=>503, 2334=>538, 2335=>444, 2336=>480, 2337=>519,
- 2338=>479, 2339=>504, 2340=>439, 2341=>542, 2342=>427, 2343=>520, 2344=>415, 2345=>415, 2346=>401, 2347=>401, 2348=>442, 2349=>520, 2350=>463, 2351=>451, 2352=>319, 2353=>319,
- 2354=>549, 2355=>641, 2357=>442, 2358=>589, 2359=>398, 2360=>506, 2361=>430, 2364=>6, 2365=>438, 2366=>172, 2367=>172, 2368=>172, 2369=>6, 2370=>6, 2371=>6, 2373=>6,
- 2375=>6, 2376=>6, 2377=>172, 2379=>172, 2380=>172, 2381=>6, 2384=>898, 2385=>6, 2406=>584, 2407=>584, 2408=>584, 2409=>584, 2410=>584, 2411=>584, 2412=>584, 2413=>584,
- 2414=>584, 2415=>584, 2416=>898, 2433=>300, 2434=>400, 2435=>300, 2437=>640, 2438=>780, 2439=>520, 2440=>520, 2441=>530, 2442=>550, 2443=>620, 2444=>420, 2447=>480, 2448=>620,
- 2451=>620, 2452=>720, 2453=>652, 2454=>500, 2455=>490, 2456=>466, 2457=>540, 2458=>490, 2459=>540, 2460=>630, 2461=>590, 2462=>680, 2463=>510, 2464=>490, 2465=>520, 2466=>520,
- 2467=>470, 2468=>540, 2469=>490, 2470=>470, 2471=>490, 2472=>452, 2474=>560, 2475=>650, 2476=>480, 2477=>588, 2478=>480, 2479=>470, 2480=>480, 2482=>472, 2486=>512, 2487=>470,
- 2488=>470, 2489=>520, 2492=>160, 2494=>180, 2495=>180, 2496=>180, 2497=>320, 2498=>329, 2499=>195, 2500=>260, 2503=>340, 2504=>340, 2507=>740, 2508=>740, 2509=>400, 2519=>180,
- 2524=>540, 2525=>520, 2527=>470, 2528=>612, 2529=>420, 2530=>234, 2531=>360, 2534=>460, 2535=>420, 2536=>520, 2537=>540, 2538=>400, 2539=>400, 2540=>560, 2541=>390, 2542=>480,
- 2543=>420, 2544=>480, 2545=>470, 2546=>400, 2547=>470, 2548=>400, 2549=>400, 2550=>400, 2551=>120, 2552=>440, 2553=>420, 2554=>420, 2565=>744, 2566=>914, 2567=>690, 2568=>670,
- 2569=>596, 2570=>596, 2575=>498, 2576=>744, 2579=>596, 2580=>744, 2581=>550, 2582=>534, 2583=>618, 2584=>690, 2585=>546, 2586=>518, 2587=>592, 2588=>492, 2589=>574, 2590=>514,
- 2591=>526, 2592=>556, 2593=>524, 2594=>528, 2595=>574, 2596=>484, 2597=>534, 2598=>504, 2599=>534, 2600=>538, 2602=>534, 2603=>506, 2604=>562, 2605=>516, 2606=>546, 2607=>670,
- 2608=>538, 2610=>726, 2611=>726, 2613=>514, 2614=>546, 2616=>546, 2617=>517, 2620=>286, 2622=>172, 2623=>190, 2624=>190, 2625=>1, 2626=>1, 2631=>1, 2632=>1, 2635=>1,
- 2636=>1, 2637=>1, 2649=>534, 2650=>618, 2651=>492, 2652=>484, 2654=>506, 2662=>616, 2663=>480, 2664=>560, 2665=>480, 2666=>468, 2667=>492, 2668=>514, 2669=>538, 2670=>572,
- 2671=>560, 2672=>1, 2674=>498, 2675=>596, 2676=>900, 2689=>33, 2690=>33, 2693=>767, 2694=>961, 2695=>500, 2696=>495, 2697=>528, 2698=>702, 2699=>885, 2709=>501, 2710=>612,
- 2711=>619, 2712=>569, 2713=>532, 2714=>358, 2715=>620, 2716=>606, 2717=>602, 2718=>631, 2719=>495, 2720=>528, 2721=>531, 2722=>511, 2723=>614, 2724=>294, 2725=>344, 2726=>425,
- 2727=>345, 2728=>611, 2730=>512, 2731=>578, 2732=>428, 2733=>423, 2734=>231, 2735=>582, 2736=>344, 2738=>558, 2739=>670, 2741=>537, 2742=>592, 2743=>568, 2744=>600, 2745=>544,
- 2749=>531, 2750=>232, 2751=>232, 2752=>232, 2753=>33, 2754=>33, 2755=>33, 2759=>33, 2760=>33, 2763=>232, 2764=>232, 2768=>903, 2790=>479, 2791=>416, 2792=>465, 2793=>469,
- 2794=>498, 2795=>463, 2796=>451, 2797=>510, 2798=>455, 2799=>488, 2818=>131, 2819=>302, 2821=>560, 2822=>644, 2823=>632, 2825=>630, 2827=>553, 2831=>604, 2835=>520, 2837=>572,
- 2838=>570, 2839=>580, 2840=>565, 2842=>580, 2844=>564, 2845=>575, 2847=>565, 2848=>565, 2849=>524, 2858=>572, 2859=>700, 2863=>655, 2864=>620, 2866=>652, 2867=>560, 2870=>565,
- 2871=>565, 2872=>545, 2873=>524, 2878=>128, 2879=>1, 2880=>190, 2881=>1, 2882=>1, 2883=>1, 2887=>396, 2912=>563, 2918=>508, 2919=>424, 2920=>440, 2921=>600, 2922=>600,
- 2923=>600, 2924=>600, 2925=>600, 2926=>511, 2927=>483, 2946=>479, 2947=>893, 2949=>1018, 2950=>1170, 2951=>916, 2952=>676, 2953=>836, 2954=>1225, 2958=>744, 2959=>744, 2960=>848,
- 2962=>813, 2963=>813, 2964=>813, 2965=>688, 2969=>744, 2970=>676, 2972=>848, 2974=>984, 2975=>777, 2979=>1338, 2980=>664, 2984=>561, 2985=>1029, 2986=>607, 2990=>697, 2991=>697,
- 2992=>434, 2993=>617, 2994=>869, 2995=>859, 2996=>697, 2997=>869, 2999=>1145, 3000=>1064, 3001=>1316, 3006=>424, 3007=>125, 3008=>596, 3009=>539, 3014=>596, 3015=>650, 3016=>973,
- 3018=>1286, 3019=>1286, 3020=>1706, 3021=>333, 3031=>859, 3034=>778, 3035=>881, 3036=>876, 3037=>648, 3041=>744, 3203=>342, 3205=>620, 3206=>591, 3207=>600, 3208=>776, 3209=>1138,
- 3210=>1464, 3214=>574, 3215=>570, 3216=>580, 3218=>589, 3219=>597, 3220=>625, 3221=>256, 3222=>565, 3223=>326, 3224=>604, 3225=>651, 3226=>408, 3228=>611, 3230=>843, 3231=>610,
- 3232=>258, 3233=>317, 3234=>328, 3235=>803, 3236=>317, 3237=>328, 3238=>352, 3239=>352, 3240=>317, 3248=>248, 3249=>621, 3250=>620, 3251=>620, 3302=>649, 3303=>550, 3304=>573,
- 3305=>567, 3306=>562, 3307=>557, 3308=>562, 3309=>567, 3310=>557, 3311=>557, 3458=>468, 3459=>318, 3461=>660, 3465=>778, 3466=>807, 3467=>830, 3473=>838, 3476=>860, 3481=>1000,
- 3482=>973, 3483=>860, 3484=>997, 3486=>740, 3488=>838, 3489=>886, 3490=>886, 3492=>1295, 3493=>1295, 3495=>838, 3496=>860, 3497=>860, 3498=>860, 3499=>1403, 3501=>973, 3502=>838,
- 3503=>660, 3504=>860, 3505=>973, 3507=>660, 3508=>886, 3509=>838, 3510=>860, 3511=>973, 3512=>838, 3513=>860, 3514=>886, 3515=>807, 3517=>830, 3520=>838, 3521=>973, 3522=>886,
- 3523=>886, 3524=>973, 3525=>830, 3526=>973, 3530=>0, 3535=>432, 3536=>380, 3537=>420, 3538=>0, 3539=>0, 3540=>0, 3542=>0, 3544=>501, 3545=>652, 3551=>648, 7936=>596,
- 7937=>596, 7938=>596, 7939=>596, 7940=>596, 7941=>596, 7942=>596, 7943=>596, 7944=>684, 7945=>684, 7946=>684, 7947=>684, 7948=>684, 7949=>684, 7950=>684, 7951=>684, 7952=>510,
- 7953=>510, 7954=>510, 7955=>510, 7956=>510, 7957=>510, 7960=>650, 7961=>650, 7962=>650, 7963=>650, 7964=>650, 7965=>650, 7968=>526, 7969=>526, 7970=>526, 7971=>526, 7972=>526,
- 7973=>526, 7974=>526, 7975=>526, 7976=>683, 7977=>683, 7978=>683, 7979=>683, 7980=>683, 7981=>683, 7982=>683, 7983=>683, 7984=>286, 7985=>286, 7986=>286, 7987=>286, 7988=>286,
- 7989=>286, 7990=>286, 7991=>286, 7992=>236, 7993=>236, 7994=>236, 7995=>236, 7996=>236, 7997=>236, 7998=>236, 7999=>236, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550,
- 8005=>550, 8008=>750, 8009=>750, 8010=>750, 8011=>750, 8012=>750, 8013=>750, 8016=>515, 8017=>515, 8018=>515, 8019=>515, 8020=>515, 8021=>515, 8022=>515, 8023=>515, 8025=>684,
- 8027=>684, 8029=>684, 8031=>684, 8032=>740, 8033=>740, 8034=>740, 8035=>740, 8036=>740, 8037=>740, 8038=>740, 8039=>740, 8040=>720, 8041=>720, 8042=>720, 8043=>720, 8044=>720,
- 8045=>720, 8046=>720, 8047=>720, 8048=>596, 8049=>596, 8050=>510, 8051=>510, 8052=>526, 8053=>526, 8054=>286, 8055=>286, 8056=>550, 8057=>550, 8058=>515, 8059=>515, 8060=>740,
- 8061=>740, 8064=>596, 8065=>596, 8066=>596, 8067=>596, 8068=>596, 8069=>596, 8070=>596, 8071=>596, 8072=>882, 8073=>882, 8074=>882, 8075=>882, 8076=>882, 8077=>882, 8078=>882,
- 8079=>882, 8080=>526, 8081=>526, 8082=>526, 8083=>526, 8084=>526, 8085=>526, 8086=>526, 8087=>526, 8088=>857, 8089=>857, 8090=>857, 8091=>857, 8092=>857, 8093=>857, 8094=>857,
- 8095=>857, 8096=>740, 8097=>740, 8098=>740, 8099=>740, 8100=>740, 8101=>740, 8102=>740, 8103=>740, 8104=>945, 8105=>945, 8106=>945, 8107=>945, 8108=>945, 8109=>945, 8110=>945,
- 8111=>945, 8112=>596, 8113=>596, 8114=>596, 8115=>596, 8116=>596, 8118=>596, 8119=>596, 8120=>684, 8121=>684, 8122=>684, 8123=>684, 8124=>882, 8125=>278, 8126=>201, 8127=>333,
- 8128=>278, 8129=>333, 8130=>526, 8131=>526, 8132=>536, 8134=>526, 8135=>526, 8136=>650, 8137=>650, 8138=>683, 8139=>683, 8140=>857, 8141=>582, 8142=>582, 8143=>333, 8144=>286,
- 8145=>286, 8146=>286, 8147=>286, 8150=>286, 8151=>312, 8152=>236, 8153=>236, 8154=>236, 8155=>236, 8157=>582, 8158=>582, 8159=>333, 8160=>515, 8161=>515, 8162=>515, 8163=>515,
- 8164=>566, 8165=>566, 8166=>515, 8167=>515, 8168=>684, 8169=>684, 8170=>684, 8171=>684, 8172=>638, 8173=>333, 8174=>393, 8175=>333, 8178=>740, 8179=>740, 8180=>740, 8182=>740,
- 8183=>740, 8184=>750, 8185=>750, 8186=>720, 8187=>720, 8188=>939, 8189=>333, 8190=>333, 8208=>333, 8219=>221, 8223=>333, 8227=>350, 8241=>1360, 8242=>278, 8243=>469, 8244=>680,
- 8245=>278, 8246=>469, 8247=>680, 8251=>622, 8252=>556, 8253=>556, 8260=>167, 8263=>1112, 8264=>834, 8265=>834, 8267=>537, 8304=>351, 8305=>351, 8308=>351, 8309=>351, 8310=>351,
- 8311=>351, 8312=>351, 8313=>351, 8320=>351, 8321=>351, 8322=>351, 8323=>351, 8324=>351, 8325=>353, 8326=>351, 8327=>351, 8328=>351, 8329=>351, 8359=>1445, 8360=>1222, 8362=>869,
- 8459=>969, 8460=>615, 8464=>809, 8465=>519, 8466=>874, 8470=>1008, 8475=>850, 8476=>644, 8486=>720, 8487=>720, 8488=>512, 8490=>667, 8491=>667, 8492=>908, 8493=>623, 8496=>562,
- 8497=>611, 8498=>611, 8499=>1080, 8531=>869, 8532=>869, 8533=>869, 8534=>869, 8535=>869, 8536=>869, 8537=>869, 8538=>869, 8539=>869, 8540=>869, 8541=>869, 8542=>869, 8543=>869,
- 8544=>278, 8545=>556, 8546=>834, 8547=>945, 8548=>667, 8549=>945, 8550=>1223, 8551=>1501, 8552=>945, 8553=>667, 8554=>945, 8555=>1223, 8556=>556, 8557=>722, 8558=>722, 8559=>833,
- 8560=>222, 8561=>444, 8562=>666, 8563=>722, 8564=>500, 8565=>722, 8566=>944, 8567=>1166, 8568=>722, 8569=>500, 8570=>722, 8571=>944, 8572=>222, 8573=>500, 8574=>556, 8575=>833,
- 8592=>987, 8593=>603, 8594=>987, 8595=>603, 8596=>1042, 8597=>1042, 8629=>658, 8656=>987, 8657=>603, 8658=>987, 8659=>603, 8660=>1042, 8704=>667, 8706=>556, 8707=>667, 8709=>556,
- 8710=>711, 8711=>711, 8712=>713, 8713=>713, 8719=>823, 8720=>823, 8721=>804, 8722=>584, 8723=>584, 8727=>500, 8730=>542, 8733=>713, 8734=>713, 8736=>768, 8743=>603, 8744=>603,
- 8745=>768, 8746=>768, 8747=>556, 8748=>796, 8749=>956, 8750=>556, 8756=>863, 8764=>549, 8766=>584, 8769=>584, 8770=>584, 8771=>584, 8777=>636, 8800=>548, 8804=>584, 8805=>584,
- 8853=>768, 8854=>768, 8855=>768, 8869=>658, 8960=>823, 9674=>489, 9834=>555, 12289=>1000, 12290=>1000, 12291=>1000, 12293=>1000, 12295=>1000, 12296=>1000, 12297=>1000, 12298=>1000, 12299=>1000,
- 12300=>1000, 12301=>1000, 12302=>1000, 12303=>1000, 12304=>1000, 12305=>1000, 12308=>1000, 12309=>1000, 12353=>1000, 12354=>1000, 12355=>1000, 12356=>1000, 12357=>1000, 12358=>1000, 12359=>1000, 12360=>1000,
- 12361=>1000, 12362=>1000, 12363=>1000, 12364=>1000, 12365=>1000, 12366=>1000, 12367=>1000, 12368=>1000, 12369=>1000, 12370=>1000, 12371=>1000, 12372=>1000, 12373=>1000, 12374=>1000, 12375=>1000, 12376=>1000,
- 12377=>1000, 12378=>1000, 12379=>1000, 12380=>1000, 12381=>1000, 12382=>1000, 12383=>1000, 12384=>1000, 12385=>1000, 12386=>1000, 12387=>1000, 12388=>1000, 12389=>1000, 12390=>1000, 12391=>1000, 12392=>1000,
- 12393=>1000, 12394=>1000, 12395=>1000, 12396=>1000, 12397=>1000, 12398=>1000, 12399=>1000, 12400=>1000, 12401=>1000, 12402=>1000, 12403=>1000, 12404=>1000, 12405=>1000, 12406=>1000, 12407=>1000, 12408=>1000,
- 12409=>1000, 12410=>1000, 12411=>1000, 12412=>1000, 12413=>1000, 12414=>1000, 12415=>1000, 12416=>1000, 12417=>1000, 12418=>1000, 12419=>1000, 12420=>1000, 12421=>1000, 12422=>1000, 12423=>1000, 12424=>1000,
- 12425=>1000, 12426=>1000, 12427=>1000, 12428=>1000, 12429=>1000, 12430=>1000, 12431=>1000, 12432=>1000, 12433=>1000, 12434=>1000, 12435=>1000, 12441=>1000, 12443=>1000, 12449=>1000, 12450=>1000, 12451=>1000,
- 12452=>1000, 12453=>1000, 12454=>1000, 12455=>1000, 12456=>1000, 12457=>1000, 12458=>1000, 12459=>1000, 12460=>1000, 12461=>1000, 12462=>1000, 12463=>1000, 12464=>1000, 12465=>1000, 12466=>1000, 12467=>1000,
- 12468=>1000, 12469=>1000, 12470=>1000, 12471=>1000, 12472=>1000, 12473=>1000, 12474=>1000, 12475=>1000, 12476=>1000, 12477=>1000, 12478=>1000, 12479=>1000, 12480=>1000, 12481=>1000, 12482=>1000, 12483=>1000,
- 12484=>1000, 12485=>1000, 12486=>1000, 12487=>1000, 12488=>1000, 12489=>1000, 12490=>1000, 12491=>1000, 12492=>1000, 12493=>1000, 12494=>1000, 12495=>1000, 12496=>1000, 12497=>1000, 12498=>1000, 12499=>1000,
- 12500=>1000, 12501=>1000, 12502=>1000, 12503=>1000, 12504=>1000, 12505=>1000, 12506=>1000, 12507=>1000, 12508=>1000, 12509=>1000, 12510=>1000, 12511=>1000, 12512=>1000, 12513=>1000, 12514=>1000, 12515=>1000,
- 12516=>1000, 12517=>1000, 12518=>1000, 12519=>1000, 12520=>1000, 12521=>1000, 12522=>1000, 12523=>1000, 12524=>1000, 12525=>1000, 12526=>1000, 12527=>1000, 12528=>1000, 12529=>1000, 12530=>1000, 12531=>1000,
- 12532=>1000, 12533=>1000, 12534=>1000, 12535=>1000, 12536=>1000, 12537=>1000, 12538=>1000, 12539=>278, 12540=>1000, 12541=>1000, 12542=>1000, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556,
- 63038=>556, 63039=>556, 63040=>556, 63041=>556, 63166=>222, 63171=>333, 63196=>556, 64256=>556, 64257=>500, 64258=>500, 64259=>778, 64260=>778, 64261=>556, 64262=>778, 64285=>200, 64286=>305,
- 64287=>400, 64288=>587, 64289=>890, 64290=>848, 64291=>872, 64292=>800, 64293=>850, 64294=>873, 64295=>797, 64296=>937, 64297=>584, 64298=>776, 64299=>776, 64300=>776, 64301=>776, 64302=>640,
- 64303=>640, 64304=>640, 64305=>591, 64306=>466, 64307=>598, 64308=>622, 64309=>262, 64310=>351, 64312=>608, 64313=>270, 64314=>526, 64315=>550, 64316=>600, 64318=>621, 64320=>378, 64321=>607,
- 64323=>575, 64324=>568, 64326=>590, 64327=>606, 64328=>547, 64329=>776, 64330=>687, 64331=>212, 64332=>591, 64333=>550, 64334=>568, 64335=>640, 65533=>788);
+ 13=>333, 14=>212, 32=>278, 33=>278, 34=>355, 35=>556, 36=>556, 37=>889, 38=>667, 39=>191, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333,
+ 46=>278, 47=>278, 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>278, 59=>278, 60=>584, 61=>584,
+ 62=>584, 63=>556, 64=>1015, 65=>667, 66=>667, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>500, 75=>667, 76=>556, 77=>833,
+ 78=>722, 79=>778, 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>278, 92=>278, 93=>278,
+ 94=>469, 95=>556, 96=>333, 97=>556, 98=>556, 99=>500, 100=>556, 101=>556, 102=>278, 103=>556, 104=>556, 105=>222, 106=>222, 107=>500, 108=>222, 109=>833,
+ 110=>556, 111=>556, 112=>556, 113=>556, 114=>333, 115=>500, 116=>278, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, 122=>500, 123=>334, 124=>260, 125=>334,
+ 126=>584, 8364=>556, 1027=>611, 8218=>222, 402=>278, 8222=>333, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>667, 381=>611,
+ 1039=>722, 8216=>222, 8217=>221, 8220=>333, 8221=>333, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>500, 8250=>333, 339=>944, 1116=>510, 382=>500, 376=>667,
+ 160=>278, 161=>278, 162=>556, 163=>556, 164=>556, 165=>556, 166=>260, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 173=>333, 174=>737, 175=>333,
+ 176=>606, 177=>584, 178=>351, 179=>351, 180=>333, 181=>556, 182=>537, 183=>278, 184=>333, 185=>351, 186=>365, 187=>556, 188=>869, 189=>869, 190=>869, 191=>556,
+ 192=>667, 193=>667, 194=>667, 195=>667, 196=>667, 197=>667, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278,
+ 208=>722, 209=>722, 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>666, 223=>611,
+ 224=>556, 225=>556, 226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>500, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278,
+ 240=>556, 241=>556, 242=>556, 243=>556, 244=>556, 245=>556, 246=>556, 247=>584, 248=>611, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>555, 255=>500,
+ 256=>667, 257=>556, 258=>667, 259=>556, 260=>667, 261=>556, 262=>722, 263=>500, 264=>722, 265=>500, 266=>722, 267=>500, 268=>722, 269=>500, 270=>722, 271=>722,
+ 272=>722, 273=>556, 274=>667, 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>556, 286=>778, 287=>556,
+ 288=>778, 289=>556, 290=>778, 291=>697, 292=>722, 293=>556, 294=>722, 295=>556, 296=>278, 297=>278, 298=>278, 299=>278, 300=>278, 301=>278, 302=>278, 303=>222,
+ 304=>278, 305=>278, 306=>700, 307=>374, 308=>500, 309=>222, 310=>667, 311=>500, 312=>500, 313=>556, 314=>222, 315=>556, 316=>222, 317=>556, 318=>387, 319=>556,
+ 320=>500, 321=>556, 322=>222, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>722, 330=>722, 331=>556, 332=>778, 333=>556, 334=>778, 335=>556,
+ 336=>778, 337=>556, 340=>722, 341=>333, 342=>722, 343=>333, 344=>722, 345=>333, 346=>667, 347=>500, 348=>667, 349=>500, 350=>667, 351=>500, 354=>611, 355=>278,
+ 356=>611, 357=>443, 358=>611, 359=>278, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556,
+ 372=>944, 373=>722, 374=>667, 375=>500, 377=>611, 378=>500, 379=>611, 380=>500, 383=>278, 384=>556, 385=>854, 386=>667, 387=>556, 388=>667, 389=>556, 390=>722,
+ 391=>722, 392=>500, 393=>722, 394=>899, 395=>667, 396=>556, 397=>556, 398=>667, 399=>722, 400=>667, 401=>611, 403=>778, 404=>667, 405=>889, 406=>278, 407=>333,
+ 408=>667, 409=>500, 410=>333, 411=>560, 412=>833, 413=>722, 414=>556, 415=>778, 416=>778, 417=>556, 418=>944, 419=>722, 420=>842, 421=>556, 422=>666, 423=>667,
+ 424=>500, 425=>611, 426=>333, 427=>278, 428=>611, 429=>278, 430=>611, 431=>722, 432=>556, 433=>778, 434=>722, 435=>722, 436=>556, 437=>611, 438=>500, 439=>611,
+ 440=>611, 441=>500, 442=>500, 443=>556, 446=>556, 447=>556, 448=>260, 449=>370, 450=>584, 451=>278, 452=>1311, 453=>1208, 454=>1056, 455=>1056, 456=>778, 457=>444,
+ 458=>1158, 459=>944, 460=>778, 461=>667, 462=>556, 463=>278, 464=>278, 465=>778, 466=>556, 467=>722, 468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722,
+ 474=>556, 475=>722, 476=>556, 477=>556, 478=>667, 479=>556, 480=>667, 481=>556, 482=>1000, 483=>889, 484=>778, 485=>556, 486=>778, 487=>556, 488=>667, 489=>500,
+ 490=>778, 491=>556, 492=>778, 493=>556, 494=>611, 495=>500, 496=>222, 497=>1333, 498=>1222, 499=>1056, 500=>778, 501=>556, 504=>722, 505=>556, 506=>667, 507=>556,
+ 508=>1000, 509=>889, 510=>778, 511=>611, 512=>667, 513=>556, 514=>667, 515=>556, 516=>667, 517=>556, 518=>667, 519=>556, 520=>278, 521=>278, 522=>278, 523=>278,
+ 524=>778, 525=>556, 526=>778, 527=>556, 528=>722, 529=>333, 530=>1083, 531=>333, 532=>722, 533=>556, 534=>722, 535=>556, 536=>667, 537=>500, 538=>611, 539=>278,
+ 542=>722, 543=>556, 548=>611, 549=>500, 550=>667, 551=>556, 552=>667, 553=>556, 554=>778, 555=>556, 556=>778, 557=>556, 558=>778, 559=>556, 560=>778, 561=>556,
+ 562=>667, 563=>500, 592=>556, 593=>556, 594=>556, 595=>556, 596=>500, 597=>500, 598=>556, 599=>556, 600=>556, 601=>556, 603=>500, 604=>500, 606=>500, 607=>222,
+ 608=>556, 609=>556, 610=>546, 611=>500, 612=>556, 613=>556, 614=>556, 615=>556, 616=>222, 617=>222, 618=>278, 621=>222, 622=>611, 623=>833, 624=>833, 625=>833,
+ 626=>556, 627=>556, 628=>567, 629=>556, 630=>778, 631=>722, 632=>741, 633=>333, 634=>333, 635=>333, 636=>333, 637=>333, 638=>384, 639=>369, 640=>546, 641=>546,
+ 642=>500, 643=>278, 644=>278, 645=>278, 646=>444, 647=>278, 648=>278, 649=>556, 650=>626, 651=>539, 652=>500, 653=>722, 654=>500, 655=>556, 656=>500, 657=>500,
+ 658=>500, 660=>556, 661=>556, 662=>556, 663=>722, 664=>778, 665=>522, 666=>500, 667=>546, 668=>558, 669=>444, 670=>500, 671=>430, 672=>556, 673=>556, 674=>556,
+ 675=>944, 676=>944, 677=>944, 702=>333, 703=>333, 711=>333, 713=>333, 714=>333, 715=>333, 722=>333, 723=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333,
+ 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0,
+ 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0,
+ 800=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0,
+ 817=>0, 818=>0, 819=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 849=>0, 855=>0, 865=>0, 884=>199, 885=>199, 890=>332, 894=>278,
+ 900=>333, 901=>333, 902=>667, 903=>278, 904=>833, 905=>944, 906=>500, 908=>833, 910=>833, 911=>833, 912=>286, 913=>667, 914=>667, 915=>582, 916=>778, 917=>667,
+ 918=>628, 919=>722, 920=>778, 921=>278, 922=>667, 923=>667, 924=>833, 925=>722, 926=>630, 927=>778, 928=>722, 929=>667, 931=>628, 932=>611, 933=>667, 934=>717,
+ 935=>667, 936=>745, 937=>778, 938=>278, 939=>667, 940=>608, 941=>528, 942=>547, 943=>307, 944=>515, 945=>596, 946=>516, 947=>531, 948=>556, 949=>510, 950=>462,
+ 951=>526, 952=>526, 953=>286, 954=>516, 955=>560, 956=>574, 957=>500, 958=>470, 959=>556, 960=>661, 961=>566, 962=>535, 963=>616, 964=>532, 965=>515, 966=>741,
+ 967=>572, 968=>662, 969=>740, 970=>286, 971=>515, 972=>553, 973=>518, 974=>740, 981=>741, 983=>556, 1008=>556, 1024=>667, 1025=>667, 1026=>766, 1028=>722, 1029=>667,
+ 1030=>278, 1031=>278, 1032=>500, 1033=>1080, 1034=>1014, 1035=>766, 1037=>728, 1038=>650, 1040=>667, 1041=>667, 1042=>667, 1043=>611, 1044=>812, 1045=>667, 1046=>1023, 1047=>667,
+ 1048=>728, 1049=>728, 1050=>667, 1051=>673, 1052=>833, 1053=>722, 1054=>778, 1055=>719, 1056=>667, 1057=>722, 1058=>611, 1059=>650, 1060=>936, 1061=>667, 1062=>741, 1063=>648,
+ 1064=>828, 1065=>850, 1066=>897, 1067=>872, 1068=>667, 1069=>722, 1070=>1032, 1071=>702, 1072=>556, 1073=>556, 1074=>522, 1075=>430, 1076=>602, 1077=>556, 1078=>837, 1079=>500,
+ 1080=>567, 1081=>567, 1082=>510, 1083=>557, 1084=>618, 1085=>558, 1086=>556, 1087=>557, 1088=>556, 1089=>500, 1090=>496, 1091=>500, 1092=>912, 1093=>500, 1094=>578, 1095=>520,
+ 1096=>692, 1097=>712, 1098=>734, 1099=>690, 1100=>552, 1101=>500, 1102=>758, 1103=>543, 1104=>556, 1105=>556, 1106=>568, 1107=>430, 1108=>500, 1109=>500, 1110=>222, 1111=>278,
+ 1112=>222, 1113=>840, 1114=>850, 1115=>568, 1117=>567, 1118=>500, 1119=>556, 1138=>778, 1139=>556, 1164=>667, 1165=>552, 1166=>667, 1167=>556, 1168=>611, 1169=>430, 1170=>611,
+ 1171=>430, 1172=>611, 1173=>490, 1174=>1023, 1175=>837, 1176=>667, 1177=>500, 1178=>667, 1179=>510, 1180=>667, 1181=>500, 1182=>667, 1183=>500, 1184=>900, 1185=>683, 1186=>722,
+ 1187=>556, 1188=>1000, 1189=>764, 1190=>1061, 1191=>826, 1194=>722, 1195=>500, 1196=>611, 1197=>496, 1198=>667, 1199=>667, 1200=>667, 1201=>667, 1202=>667, 1203=>500, 1204=>942,
+ 1205=>732, 1206=>648, 1207=>520, 1208=>648, 1209=>520, 1210=>648, 1211=>520, 1212=>927, 1213=>716, 1214=>927, 1215=>716, 1216=>278, 1217=>1023, 1218=>837, 1219=>667, 1220=>500,
+ 1221=>673, 1222=>557, 1223=>722, 1224=>556, 1225=>722, 1226=>558, 1227=>648, 1228=>520, 1229=>833, 1230=>618, 1232=>667, 1233=>556, 1234=>667, 1235=>556, 1236=>1000, 1237=>889,
+ 1238=>667, 1239=>556, 1240=>722, 1241=>556, 1242=>722, 1243=>556, 1244=>1023, 1245=>837, 1246=>667, 1247=>500, 1248=>611, 1249=>500, 1250=>728, 1251=>567, 1252=>728, 1253=>567,
+ 1254=>778, 1255=>556, 1256=>778, 1257=>556, 1258=>778, 1259=>556, 1260=>722, 1261=>500, 1262=>650, 1263=>500, 1264=>650, 1265=>500, 1266=>650, 1267=>500, 1268=>648, 1269=>520,
+ 1272=>872, 1273=>690, 1329=>722, 1330=>705, 1331=>774, 1332=>754, 1333=>722, 1334=>751, 1335=>485, 1336=>722, 1337=>782, 1338=>655, 1339=>699, 1340=>417, 1341=>853, 1342=>791,
+ 1343=>711, 1344=>588, 1345=>663, 1346=>665, 1347=>665, 1348=>756, 1349=>623, 1350=>773, 1351=>603, 1352=>722, 1353=>648, 1354=>722, 1355=>751, 1356=>750, 1357=>722, 1358=>748,
+ 1359=>667, 1360=>699, 1361=>623, 1362=>417, 1363=>785, 1364=>638, 1365=>778, 1366=>716, 1369=>333, 1370=>222, 1371=>133, 1372=>333, 1373=>333, 1374=>333, 1375=>333, 1377=>833,
+ 1378=>556, 1379=>572, 1380=>581, 1381=>550, 1382=>588, 1383=>448, 1384=>556, 1385=>568, 1386=>582, 1387=>545, 1388=>301, 1389=>799, 1390=>556, 1391=>554, 1392=>533, 1393=>548,
+ 1394=>552, 1395=>552, 1396=>544, 1397=>222, 1398=>544, 1399=>456, 1400=>556, 1401=>390, 1402=>833, 1403=>509, 1404=>547, 1405=>533, 1406=>610, 1407=>887, 1408=>556, 1409=>545,
+ 1410=>352, 1411=>853, 1412=>588, 1413=>579, 1414=>690, 1415=>545, 1417=>278, 1418=>333, 1456=>70, 1457=>335, 1458=>329, 1459=>329, 1460=>70, 1461=>200, 1462=>200, 1463=>188,
+ 1464=>188, 1465=>70, 1467=>329, 1468=>70, 1469=>70, 1470=>488, 1471=>200, 1472=>212, 1473=>0, 1474=>0, 1475=>278, 1476=>70, 1488=>640, 1489=>591, 1490=>466, 1491=>598,
+ 1492=>622, 1493=>212, 1494=>351, 1495=>623, 1496=>608, 1497=>200, 1498=>526, 1499=>550, 1500=>600, 1501=>623, 1502=>621, 1503=>212, 1504=>378, 1505=>607, 1506=>587, 1507=>575,
+ 1508=>568, 1509=>540, 1510=>590, 1511=>606, 1512=>547, 1513=>776, 1514=>687, 1792=>600, 1793=>201, 1794=>201, 1795=>201, 1796=>201, 1797=>500, 1798=>500, 1799=>500, 1800=>370,
+ 1801=>370, 1802=>574, 1803=>574, 1804=>645, 1805=>574, 1808=>452, 1809=>452, 1810=>574, 1811=>645, 1812=>645, 1813=>509, 1814=>509, 1815=>682, 1816=>585, 1817=>404, 1818=>627,
+ 1819=>718, 1820=>718, 1821=>484, 1822=>682, 1823=>600, 1824=>660, 1825=>682, 1826=>538, 1827=>718, 1828=>718, 1829=>718, 1830=>574, 1831=>574, 1832=>638, 1833=>585, 1834=>509,
+ 1835=>682, 1836=>682, 1840=>1, 1841=>1, 1842=>1, 1843=>1, 1844=>1, 1845=>1, 1846=>1, 1847=>1, 1848=>1, 1849=>1, 1850=>1, 1851=>1, 1852=>1, 1853=>1,
+ 1854=>1, 1855=>1, 1856=>1, 1857=>1, 1858=>1, 1859=>1, 1860=>1, 1861=>1, 1862=>1, 1863=>1, 1864=>1, 1865=>1, 1866=>1, 2305=>6, 2306=>0, 2307=>305,
+ 2308=>717, 2309=>717, 2310=>829, 2311=>463, 2312=>463, 2313=>581, 2314=>803, 2315=>920, 2316=>639, 2317=>430, 2318=>430, 2319=>430, 2320=>430, 2321=>856, 2322=>828, 2323=>837,
+ 2324=>856, 2325=>749, 2326=>779, 2327=>522, 2328=>587, 2329=>650, 2330=>619, 2331=>641, 2332=>703, 2333=>691, 2334=>677, 2335=>568, 2336=>529, 2337=>611, 2338=>536, 2339=>607,
+ 2340=>564, 2341=>659, 2342=>500, 2343=>591, 2344=>521, 2345=>568, 2346=>477, 2347=>728, 2348=>490, 2349=>577, 2350=>517, 2351=>554, 2352=>433, 2353=>433, 2354=>656, 2355=>660,
+ 2356=>660, 2357=>490, 2358=>645, 2359=>477, 2360=>666, 2361=>484, 2363=>639, 2364=>6, 2365=>442, 2366=>211, 2367=>211, 2368=>211, 2369=>6, 2370=>3, 2371=>6, 2372=>6,
+ 2373=>6, 2374=>84, 2375=>6, 2376=>6, 2377=>224, 2378=>234, 2379=>211, 2380=>211, 2381=>6, 2383=>6, 2384=>839, 2385=>15, 2386=>0, 2387=>9, 2388=>9, 2389=>12,
+ 2392=>750, 2393=>779, 2394=>522, 2395=>703, 2396=>613, 2397=>536, 2398=>728, 2399=>554, 2400=>899, 2401=>625, 2402=>625, 2403=>625, 2404=>674, 2405=>674, 2406=>575, 2407=>575,
+ 2408=>575, 2409=>575, 2410=>575, 2411=>575, 2412=>575, 2413=>575, 2414=>575, 2415=>575, 2416=>365, 2417=>211, 2418=>211, 2419=>211, 2420=>211, 2421=>211, 2422=>211, 2433=>0,
+ 2434=>300, 2435=>264, 2437=>594, 2438=>790, 2439=>469, 2440=>513, 2441=>520, 2442=>549, 2443=>594, 2444=>481, 2447=>580, 2448=>627, 2451=>540, 2452=>613, 2453=>570, 2454=>467,
+ 2455=>471, 2456=>428, 2457=>483, 2458=>408, 2459=>509, 2460=>591, 2461=>563, 2462=>771, 2463=>381, 2464=>404, 2465=>522, 2466=>408, 2467=>450, 2468=>543, 2469=>477, 2470=>418,
+ 2471=>433, 2472=>445, 2474=>499, 2475=>584, 2476=>377, 2477=>555, 2478=>448, 2479=>423, 2480=>390, 2482=>498, 2486=>498, 2487=>425, 2488=>495, 2489=>440, 2492=>22, 2493=>440,
+ 2494=>193, 2495=>189, 2496=>180, 2497=>0, 2498=>0, 2499=>0, 2500=>0, 2503=>252, 2504=>243, 2507=>889, 2508=>865, 2509=>0, 2510=>356, 2519=>219, 2524=>523, 2525=>408,
+ 2527=>428, 2528=>594, 2529=>481, 2530=>0, 2531=>-199, 2534=>500, 2535=>437, 2536=>479, 2537=>530, 2538=>497, 2539=>500, 2540=>482, 2541=>503, 2542=>517, 2543=>481, 2544=>377,
+ 2545=>377, 2546=>429, 2547=>383, 2548=>429, 2549=>478, 2550=>545, 2551=>158, 2552=>365, 2553=>280, 2554=>357, 2561=>5, 2562=>64, 2563=>351, 2565=>860, 2566=>1088, 2567=>869,
+ 2568=>928, 2569=>723, 2570=>723, 2575=>665, 2576=>857, 2579=>716, 2580=>858, 2581=>682, 2582=>634, 2583=>696, 2584=>744, 2585=>649, 2586=>674, 2587=>656, 2588=>653, 2589=>629,
+ 2590=>639, 2591=>641, 2592=>657, 2593=>650, 2594=>653, 2595=>651, 2596=>640, 2597=>634, 2598=>662, 2599=>630, 2600=>625, 2602=>645, 2603=>653, 2604=>624, 2605=>613, 2606=>658,
+ 2607=>734, 2608=>620, 2610=>676, 2611=>719, 2613=>626, 2614=>666, 2616=>666, 2617=>614, 2620=>0, 2622=>286, 2623=>322, 2624=>301, 2625=>9, 2626=>9, 2631=>9, 2632=>9,
+ 2635=>9, 2636=>9, 2637=>0, 2649=>636, 2650=>762, 2651=>652, 2652=>653, 2654=>656, 2662=>672, 2663=>543, 2664=>622, 2665=>622, 2666=>576, 2667=>595, 2668=>509, 2669=>645,
+ 2670=>661, 2671=>655, 2672=>9, 2673=>168, 2674=>666, 2675=>726, 2676=>1217, 2689=>22, 2690=>23, 2691=>-51, 2693=>775, 2694=>979, 2695=>588, 2696=>563, 2697=>525, 2698=>724,
+ 2699=>942, 2701=>775, 2703=>775, 2704=>775, 2705=>979, 2707=>979, 2708=>979, 2709=>610, 2710=>706, 2711=>623, 2712=>610, 2713=>601, 2714=>614, 2715=>642, 2716=>684, 2717=>634,
+ 2718=>644, 2719=>509, 2720=>541, 2721=>539, 2722=>524, 2723=>657, 2724=>547, 2725=>616, 2726=>494, 2727=>601, 2728=>627, 2730=>524, 2731=>620, 2732=>691, 2733=>687, 2734=>468,
+ 2735=>590, 2736=>509, 2738=>571, 2739=>687, 2741=>526, 2742=>620, 2743=>575, 2744=>620, 2745=>549, 2746=>0, 2748=>53, 2749=>415, 2750=>241, 2751=>186, 2752=>217, 2753=>32,
+ 2754=>21, 2755=>38, 2756=>27, 2757=>45, 2759=>41, 2760=>46, 2761=>207, 2763=>190, 2764=>182, 2765=>16, 2768=>962, 2784=>949, 2788=>222, 2789=>383, 2790=>479, 2791=>502,
+ 2792=>484, 2793=>471, 2794=>501, 2795=>527, 2796=>462, 2797=>524, 2798=>454, 2799=>495, 2800=>496, 2801=>752, 2818=>131, 2819=>302, 2821=>560, 2822=>644, 2823=>632, 2825=>630,
+ 2827=>553, 2831=>604, 2835=>520, 2837=>572, 2838=>570, 2839=>580, 2840=>565, 2842=>580, 2844=>564, 2845=>575, 2847=>565, 2848=>565, 2849=>524, 2858=>572, 2859=>700, 2863=>655,
+ 2864=>620, 2866=>652, 2867=>560, 2870=>565, 2871=>565, 2872=>545, 2873=>524, 2878=>128, 2879=>1, 2880=>190, 2881=>1, 2882=>1, 2883=>1, 2887=>396, 2912=>563, 2918=>508,
+ 2919=>424, 2920=>440, 2921=>600, 2922=>600, 2923=>600, 2924=>600, 2925=>600, 2926=>511, 2927=>483, 2946=>479, 2947=>893, 2949=>1018, 2950=>1170, 2951=>916, 2952=>676, 2953=>836,
+ 2954=>1225, 2958=>744, 2959=>744, 2960=>848, 2962=>813, 2963=>813, 2964=>813, 2965=>688, 2969=>744, 2970=>676, 2972=>848, 2974=>984, 2975=>777, 2979=>1338, 2980=>664, 2984=>561,
+ 2985=>1029, 2986=>607, 2990=>697, 2991=>697, 2992=>434, 2993=>617, 2994=>869, 2995=>859, 2996=>697, 2997=>869, 2999=>1145, 3000=>1064, 3001=>1316, 3006=>424, 3007=>125, 3008=>596,
+ 3009=>539, 3014=>596, 3015=>650, 3016=>973, 3018=>1286, 3019=>1286, 3020=>1706, 3021=>333, 3031=>859, 3034=>778, 3035=>881, 3036=>876, 3037=>648, 3041=>744, 3203=>342, 3205=>620,
+ 3206=>591, 3207=>600, 3208=>776, 3209=>1138, 3210=>1464, 3214=>574, 3215=>570, 3216=>580, 3218=>589, 3219=>597, 3220=>625, 3221=>256, 3222=>565, 3223=>326, 3224=>604, 3225=>651,
+ 3226=>408, 3228=>611, 3230=>843, 3231=>610, 3232=>258, 3233=>317, 3234=>328, 3235=>803, 3236=>317, 3237=>328, 3238=>352, 3239=>352, 3240=>317, 3248=>248, 3249=>621, 3250=>620,
+ 3251=>620, 3302=>649, 3303=>550, 3304=>573, 3305=>567, 3306=>562, 3307=>557, 3308=>562, 3309=>567, 3310=>557, 3311=>557, 7680=>667, 7681=>556, 7682=>667, 7683=>556, 7684=>667,
+ 7685=>556, 7686=>667, 7687=>556, 7688=>722, 7689=>500, 7690=>722, 7691=>556, 7692=>722, 7693=>556, 7694=>722, 7695=>556, 7696=>722, 7697=>556, 7698=>722, 7699=>556, 7700=>667,
+ 7701=>556, 7702=>667, 7703=>556, 7704=>667, 7705=>556, 7706=>667, 7707=>556, 7708=>667, 7709=>556, 7710=>611, 7711=>278, 7712=>778, 7713=>556, 7714=>722, 7715=>556, 7716=>722,
+ 7717=>556, 7718=>722, 7719=>556, 7720=>722, 7721=>556, 7722=>722, 7723=>556, 7724=>278, 7725=>222, 7726=>278, 7727=>278, 7728=>667, 7729=>500, 7730=>667, 7731=>500, 7732=>667,
+ 7733=>500, 7734=>556, 7735=>222, 7736=>556, 7737=>222, 7738=>556, 7739=>222, 7740=>556, 7741=>222, 7742=>833, 7743=>833, 7744=>833, 7745=>833, 7746=>833, 7747=>833, 7748=>722,
+ 7749=>556, 7750=>722, 7751=>556, 7752=>722, 7753=>556, 7754=>722, 7755=>556, 7756=>778, 7757=>556, 7758=>778, 7759=>556, 7760=>778, 7761=>556, 7762=>778, 7763=>556, 7764=>667,
+ 7765=>556, 7766=>667, 7767=>556, 7768=>722, 7769=>333, 7770=>722, 7771=>333, 7772=>722, 7773=>333, 7774=>722, 7775=>333, 7776=>667, 7777=>500, 7778=>667, 7779=>500, 7780=>667,
+ 7781=>500, 7782=>667, 7783=>500, 7784=>667, 7785=>500, 7786=>611, 7787=>278, 7788=>611, 7789=>278, 7790=>611, 7791=>278, 7792=>611, 7793=>278, 7794=>722, 7795=>556, 7796=>722,
+ 7797=>556, 7798=>722, 7799=>556, 7800=>722, 7801=>556, 7802=>722, 7803=>556, 7804=>667, 7805=>500, 7806=>667, 7807=>500, 7808=>944, 7809=>722, 7810=>944, 7811=>722, 7812=>944,
+ 7813=>722, 7814=>944, 7815=>722, 7816=>944, 7817=>722, 7818=>667, 7819=>500, 7820=>667, 7821=>500, 7822=>667, 7823=>500, 7824=>611, 7825=>500, 7826=>611, 7827=>500, 7828=>611,
+ 7829=>500, 7830=>556, 7831=>278, 7832=>722, 7833=>500, 7835=>278, 7840=>667, 7841=>556, 7842=>667, 7843=>556, 7844=>667, 7845=>556, 7846=>667, 7847=>556, 7848=>667, 7849=>556,
+ 7850=>667, 7851=>556, 7852=>667, 7853=>556, 7854=>667, 7855=>556, 7856=>667, 7857=>556, 7858=>667, 7859=>556, 7860=>667, 7861=>556, 7862=>667, 7863=>556, 7864=>667, 7865=>556,
+ 7866=>667, 7867=>556, 7868=>667, 7869=>556, 7870=>667, 7871=>556, 7872=>667, 7873=>556, 7874=>667, 7875=>556, 7876=>667, 7877=>556, 7878=>667, 7879=>556, 7880=>278, 7881=>278,
+ 7882=>278, 7883=>222, 7884=>778, 7885=>556, 7886=>778, 7887=>556, 7888=>778, 7889=>556, 7890=>778, 7891=>556, 7892=>778, 7893=>556, 7894=>778, 7895=>556, 7896=>778, 7897=>556,
+ 7898=>778, 7899=>556, 7900=>778, 7901=>556, 7902=>778, 7903=>556, 7904=>778, 7905=>556, 7906=>778, 7907=>556, 7908=>722, 7909=>556, 7910=>722, 7911=>556, 7912=>722, 7913=>556,
+ 7914=>722, 7915=>556, 7916=>722, 7917=>556, 7918=>722, 7919=>556, 7920=>722, 7921=>556, 7922=>667, 7923=>500, 7924=>667, 7925=>500, 7926=>667, 7927=>500, 7928=>667, 7929=>500,
+ 7936=>596, 7937=>596, 7938=>596, 7939=>596, 7940=>596, 7941=>596, 7942=>596, 7943=>596, 7944=>667, 7945=>667, 7946=>833, 7947=>833, 7948=>833, 7949=>833, 7950=>833, 7951=>833,
+ 7952=>510, 7953=>510, 7954=>510, 7955=>510, 7956=>510, 7957=>510, 7960=>778, 7961=>778, 7962=>944, 7963=>944, 7964=>944, 7965=>944, 7968=>526, 7969=>526, 7970=>526, 7971=>526,
+ 7972=>526, 7973=>526, 7974=>526, 7975=>526, 7976=>778, 7977=>778, 7978=>1000, 7979=>1000, 7980=>1000, 7981=>1000, 7982=>1000, 7983=>1000, 7984=>286, 7985=>286, 7986=>286, 7987=>286,
+ 7988=>286, 7989=>286, 7990=>286, 7991=>286, 7992=>400, 7993=>400, 7994=>611, 7995=>611, 7996=>611, 7997=>611, 7998=>611, 7999=>611, 8000=>556, 8001=>556, 8002=>556, 8003=>556,
+ 8004=>556, 8005=>556, 8008=>833, 8009=>833, 8010=>1111, 8011=>1111, 8012=>1111, 8013=>1111, 8016=>515, 8017=>515, 8018=>515, 8019=>515, 8020=>515, 8021=>515, 8022=>515, 8023=>515,
+ 8025=>833, 8027=>1000, 8029=>1000, 8031=>1000, 8032=>740, 8033=>740, 8034=>740, 8035=>740, 8036=>740, 8037=>740, 8038=>740, 8039=>740, 8040=>833, 8041=>833, 8042=>1111, 8043=>1111,
+ 8044=>1000, 8045=>1000, 8046=>1000, 8047=>1000, 8048=>596, 8049=>596, 8050=>510, 8051=>510, 8052=>526, 8053=>526, 8054=>286, 8055=>286, 8056=>556, 8057=>556, 8058=>515, 8059=>515,
+ 8060=>740, 8061=>740, 8064=>596, 8065=>596, 8066=>596, 8067=>596, 8068=>596, 8069=>596, 8070=>596, 8071=>596, 8072=>883, 8073=>883, 8074=>1049, 8075=>1049, 8076=>1049, 8077=>1049,
+ 8078=>1049, 8079=>1049, 8080=>526, 8081=>526, 8082=>526, 8083=>526, 8084=>526, 8085=>526, 8086=>526, 8087=>526, 8088=>994, 8089=>994, 8090=>1216, 8091=>1216, 8092=>1216, 8093=>1216,
+ 8094=>1216, 8095=>1216, 8096=>740, 8097=>740, 8098=>740, 8099=>740, 8100=>740, 8101=>740, 8102=>740, 8103=>740, 8104=>1000, 8105=>1000, 8106=>1311, 8107=>1311, 8108=>1216, 8109=>1216,
+ 8110=>1216, 8111=>1216, 8112=>596, 8113=>596, 8114=>596, 8115=>596, 8116=>596, 8118=>596, 8119=>596, 8120=>667, 8121=>667, 8122=>667, 8123=>667, 8124=>883, 8125=>278, 8126=>200,
+ 8127=>333, 8128=>333, 8129=>333, 8130=>526, 8131=>526, 8132=>536, 8134=>526, 8135=>526, 8136=>833, 8137=>833, 8138=>944, 8139=>944, 8140=>938, 8141=>400, 8142=>400, 8143=>333,
+ 8144=>286, 8145=>286, 8146=>286, 8147=>286, 8150=>286, 8151=>312, 8152=>278, 8153=>278, 8154=>500, 8155=>500, 8157=>400, 8158=>400, 8159=>333, 8160=>515, 8161=>515, 8162=>515,
+ 8163=>515, 8164=>566, 8165=>566, 8166=>515, 8167=>515, 8168=>667, 8169=>667, 8170=>833, 8171=>833, 8172=>778, 8173=>333, 8174=>393, 8175=>333, 8178=>740, 8179=>740, 8180=>740,
+ 8182=>740, 8183=>740, 8184=>833, 8185=>833, 8186=>833, 8187=>833, 8188=>939, 8189=>333, 8190=>333, 8203=>0, 8204=>0, 8205=>0, 8208=>333, 8209=>333, 8210=>556, 8213=>1000,
+ 8219=>221, 8223=>333, 8227=>350, 8228=>278, 8241=>1360, 8242=>278, 8243=>469, 8244=>680, 8245=>278, 8246=>469, 8247=>680, 8251=>622, 8252=>556, 8253=>556, 8260=>167, 8261=>334,
+ 8262=>334, 8263=>1112, 8264=>834, 8265=>834, 8267=>537, 8304=>351, 8305=>351, 8308=>351, 8309=>351, 8310=>351, 8311=>351, 8312=>351, 8313=>351, 8320=>351, 8321=>351, 8322=>351,
+ 8323=>351, 8324=>351, 8325=>353, 8326=>351, 8327=>351, 8328=>351, 8329=>351, 8359=>1445, 8360=>1222, 8362=>869, 8373=>640, 8459=>969, 8460=>615, 8464=>809, 8465=>519, 8466=>874,
+ 8470=>1008, 8471=>737, 8475=>850, 8476=>644, 8486=>778, 8487=>778, 8488=>512, 8490=>667, 8491=>667, 8492=>908, 8493=>623, 8496=>562, 8497=>611, 8498=>611, 8499=>1080, 8531=>869,
+ 8532=>869, 8533=>869, 8534=>869, 8535=>869, 8536=>869, 8537=>869, 8538=>869, 8539=>869, 8540=>869, 8541=>869, 8542=>869, 8543=>869, 8544=>278, 8545=>556, 8546=>834, 8547=>945,
+ 8548=>667, 8549=>945, 8550=>1223, 8551=>1501, 8552=>945, 8553=>667, 8554=>945, 8555=>1223, 8556=>556, 8557=>722, 8558=>722, 8559=>833, 8560=>222, 8561=>444, 8562=>666, 8563=>722,
+ 8564=>500, 8565=>722, 8566=>944, 8567=>1166, 8568=>722, 8569=>500, 8570=>722, 8571=>944, 8572=>222, 8573=>500, 8574=>556, 8575=>833, 8592=>987, 8593=>603, 8594=>987, 8595=>603,
+ 8596=>1042, 8597=>1042, 8629=>658, 8656=>987, 8657=>603, 8658=>987, 8659=>603, 8660=>1042, 8704=>667, 8706=>556, 8707=>667, 8709=>556, 8710=>711, 8711=>711, 8712=>584, 8713=>584,
+ 8714=>584, 8715=>584, 8717=>713, 8719=>823, 8720=>823, 8721=>804, 8722=>584, 8723=>584, 8724=>584, 8727=>584, 8729=>584, 8730=>542, 8733=>713, 8734=>713, 8736=>768, 8743=>603,
+ 8744=>603, 8745=>768, 8746=>768, 8747=>556, 8748=>796, 8749=>956, 8750=>556, 8756=>863, 8764=>549, 8766=>584, 8769=>584, 8770=>584, 8771=>584, 8776=>584, 8777=>584, 8800=>548,
+ 8804=>584, 8805=>584, 8818=>584, 8819=>584, 8834=>584, 8835=>584, 8853=>768, 8854=>768, 8855=>768, 8869=>658, 8960=>823, 8992=>556, 8993=>556, 9134=>556, 9250=>556, 9472=>1000,
+ 9473=>1000, 9474=>1000, 9475=>1000, 9476=>1000, 9477=>1000, 9478=>1000, 9479=>1000, 9480=>1000, 9481=>1000, 9482=>1000, 9483=>1000, 9484=>1000, 9485=>1000, 9486=>1000, 9487=>1000, 9488=>1000,
+ 9489=>1000, 9490=>1000, 9491=>1000, 9492=>1000, 9493=>1000, 9494=>1000, 9495=>1000, 9496=>1000, 9497=>1000, 9498=>1000, 9499=>1000, 9500=>1000, 9501=>1000, 9502=>1000, 9503=>1000, 9504=>1000,
+ 9505=>1000, 9506=>1000, 9507=>1000, 9508=>1000, 9509=>1000, 9510=>1000, 9511=>1000, 9512=>1000, 9513=>1000, 9514=>1000, 9515=>1000, 9516=>1000, 9517=>1000, 9518=>1000, 9519=>1000, 9520=>1000,
+ 9521=>1000, 9522=>1000, 9523=>1000, 9524=>1000, 9525=>1000, 9526=>1000, 9527=>1000, 9528=>1000, 9529=>1000, 9530=>1000, 9531=>1000, 9532=>1000, 9533=>1000, 9534=>1000, 9535=>1000, 9536=>1000,
+ 9537=>1000, 9538=>1000, 9539=>1000, 9540=>1000, 9541=>1000, 9542=>1000, 9543=>1000, 9544=>1000, 9545=>1000, 9546=>1000, 9547=>1000, 9552=>1000, 9553=>1000, 9554=>1000, 9555=>1000, 9556=>1000,
+ 9557=>1000, 9558=>1000, 9559=>1000, 9560=>1000, 9561=>1000, 9562=>1000, 9563=>1000, 9564=>1000, 9565=>1000, 9566=>1000, 9567=>1000, 9568=>1000, 9569=>1000, 9570=>1000, 9571=>1000, 9572=>1000,
+ 9573=>1000, 9574=>1000, 9575=>1000, 9576=>1000, 9577=>1000, 9578=>1000, 9579=>1000, 9580=>1000, 9600=>1000, 9601=>1000, 9602=>1000, 9603=>1000, 9604=>1000, 9605=>1000, 9606=>1000, 9607=>1000,
+ 9608=>1000, 9609=>1000, 9610=>1000, 9611=>1000, 9612=>1000, 9613=>1000, 9614=>1000, 9615=>1000, 9616=>1000, 9617=>1000, 9618=>1000, 9619=>1000, 9620=>1000, 9621=>1000, 9622=>1000, 9623=>1000,
+ 9624=>1000, 9625=>1000, 9626=>1000, 9627=>1000, 9628=>1000, 9629=>1000, 9630=>1000, 9631=>1000, 9632=>1000, 9633=>1000, 9635=>1000, 9636=>1000, 9637=>1000, 9642=>1000, 9644=>1000, 9674=>489,
+ 9676=>0, 9772=>1130, 9834=>555, 10048=>1453, 10049=>1454, 12289=>1000, 12290=>1000, 12291=>1000, 12293=>1000, 12295=>1000, 12296=>1000, 12297=>1000, 12298=>1000, 12299=>1000, 12300=>1000, 12301=>1000,
+ 12302=>1000, 12303=>1000, 12304=>1000, 12305=>1000, 12308=>1000, 12309=>1000, 12353=>1000, 12354=>1000, 12355=>1000, 12356=>1000, 12357=>1000, 12358=>1000, 12359=>1000, 12360=>1000, 12361=>1000, 12362=>1000,
+ 12363=>1000, 12364=>1000, 12365=>1000, 12366=>1000, 12367=>1000, 12368=>1000, 12369=>1000, 12370=>1000, 12371=>1000, 12372=>1000, 12373=>1000, 12374=>1000, 12375=>1000, 12376=>1000, 12377=>1000, 12378=>1000,
+ 12379=>1000, 12380=>1000, 12381=>1000, 12382=>1000, 12383=>1000, 12384=>1000, 12385=>1000, 12386=>1000, 12387=>1000, 12388=>1000, 12389=>1000, 12390=>1000, 12391=>1000, 12392=>1000, 12393=>1000, 12394=>1000,
+ 12395=>1000, 12396=>1000, 12397=>1000, 12398=>1000, 12399=>1000, 12400=>1000, 12401=>1000, 12402=>1000, 12403=>1000, 12404=>1000, 12405=>1000, 12406=>1000, 12407=>1000, 12408=>1000, 12409=>1000, 12410=>1000,
+ 12411=>1000, 12412=>1000, 12413=>1000, 12414=>1000, 12415=>1000, 12416=>1000, 12417=>1000, 12418=>1000, 12419=>1000, 12420=>1000, 12421=>1000, 12422=>1000, 12423=>1000, 12424=>1000, 12425=>1000, 12426=>1000,
+ 12427=>1000, 12428=>1000, 12429=>1000, 12430=>1000, 12431=>1000, 12432=>1000, 12433=>1000, 12434=>1000, 12435=>1000, 12441=>1000, 12443=>1000, 12449=>1000, 12450=>1000, 12451=>1000, 12452=>1000, 12453=>1000,
+ 12454=>1000, 12455=>1000, 12456=>1000, 12457=>1000, 12458=>1000, 12459=>1000, 12460=>1000, 12461=>1000, 12462=>1000, 12463=>1000, 12464=>1000, 12465=>1000, 12466=>1000, 12467=>1000, 12468=>1000, 12469=>1000,
+ 12470=>1000, 12471=>1000, 12472=>1000, 12473=>1000, 12474=>1000, 12475=>1000, 12476=>1000, 12477=>1000, 12478=>1000, 12479=>1000, 12480=>1000, 12481=>1000, 12482=>1000, 12483=>1000, 12484=>1000, 12485=>1000,
+ 12486=>1000, 12487=>1000, 12488=>1000, 12489=>1000, 12490=>1000, 12491=>1000, 12492=>1000, 12493=>1000, 12494=>1000, 12495=>1000, 12496=>1000, 12497=>1000, 12498=>1000, 12499=>1000, 12500=>1000, 12501=>1000,
+ 12502=>1000, 12503=>1000, 12504=>1000, 12505=>1000, 12506=>1000, 12507=>1000, 12508=>1000, 12509=>1000, 12510=>1000, 12511=>1000, 12512=>1000, 12513=>1000, 12514=>1000, 12515=>1000, 12516=>1000, 12517=>1000,
+ 12518=>1000, 12519=>1000, 12520=>1000, 12521=>1000, 12522=>1000, 12523=>1000, 12524=>1000, 12525=>1000, 12526=>1000, 12527=>1000, 12528=>1000, 12529=>1000, 12530=>1000, 12531=>1000, 12532=>1000, 12533=>1000,
+ 12534=>1000, 12535=>1000, 12536=>1000, 12537=>1000, 12538=>1000, 12539=>278, 12540=>1000, 12541=>1000, 12542=>1000, 59752=>196, 59753=>6, 59754=>6, 63033=>556, 63034=>556, 63035=>556, 63036=>556,
+ 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556, 63166=>222, 63171=>333, 63196=>556, 64256=>556, 64257=>500, 64258=>500, 64259=>778, 64260=>778, 64261=>556, 64262=>778, 64285=>200,
+ 64286=>305, 64287=>400, 64288=>587, 64289=>890, 64290=>848, 64291=>872, 64292=>800, 64293=>850, 64294=>873, 64295=>797, 64296=>937, 64297=>584, 64298=>776, 64299=>776, 64300=>776, 64301=>776,
+ 64302=>640, 64303=>640, 64304=>640, 64305=>591, 64306=>466, 64307=>598, 64308=>622, 64309=>262, 64310=>351, 64312=>608, 64313=>270, 64314=>526, 64315=>550, 64316=>600, 64318=>621, 64320=>378,
+ 64321=>607, 64323=>575, 64324=>568, 64326=>590, 64327=>606, 64328=>547, 64329=>776, 64330=>687, 64331=>212, 64332=>591, 64333=>550, 64334=>568, 64335=>640, 65533=>788);
$enc='';
$diff='';
-$file='FreeSans.z';
-$ctg='FreeSans.ctg.z';
-$originalsize=264072;
+$file='freesans.z';
+$ctg='freesans.ctg.z';
+$originalsize=514280;
?>
diff --git a/lib/tcpdf/fonts/freesans.z b/lib/tcpdf/fonts/freesans.z
new file mode 100644
index 0000000000..43fba45504
Binary files /dev/null and b/lib/tcpdf/fonts/freesans.z differ
diff --git a/lib/tcpdf/fonts/freesansb.ctg.z b/lib/tcpdf/fonts/freesansb.ctg.z
new file mode 100644
index 0000000000..14ae5dd275
Binary files /dev/null and b/lib/tcpdf/fonts/freesansb.ctg.z differ
diff --git a/lib/tcpdf/fonts/freesansb.php b/lib/tcpdf/fonts/freesansb.php
index e37b3ab8ff..51e206f3ec 100755
--- a/lib/tcpdf/fonts/freesansb.php
+++ b/lib/tcpdf/fonts/freesansb.php
@@ -1,79 +1,122 @@
1159,'Descent'=>-355,'CapHeight'=>1159,'Flags'=>32,'FontBBox'=>'[-459 -355 1300 1159]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
+$desc=array('Ascent'=>1167,'Descent'=>-460,'CapHeight'=>1167,'Flags'=>32,'FontBBox'=>'[-628 -1175 1556 1639]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
$up=-155;
$ut=69;
$cw=array(
- 13=>333, 32=>278, 33=>333, 34=>474, 35=>556, 36=>556, 37=>889, 38=>722, 39=>238, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278,
- 47=>278, 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>333, 59=>333, 60=>584, 61=>584, 62=>584,
- 63=>611, 64=>975, 65=>722, 66=>722, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>556, 75=>722, 76=>611, 77=>833, 78=>722,
- 79=>778, 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>333, 92=>278, 93=>333, 94=>584,
- 95=>556, 96=>333, 97=>556, 98=>611, 99=>556, 100=>611, 101=>556, 102=>333, 103=>611, 104=>611, 105=>278, 106=>278, 107=>556, 108=>278, 109=>889, 110=>611,
- 111=>611, 112=>611, 113=>611, 114=>389, 115=>556, 116=>333, 117=>611, 118=>556, 119=>778, 120=>556, 121=>556, 122=>500, 123=>389, 124=>280, 125=>389, 126=>584,
- 8364=>556, 1027=>611, 8218=>278, 402=>556, 8222=>500, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>722, 381=>611, 1039=>722,
- 8216=>278, 8217=>278, 8220=>500, 8221=>500, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>556, 8250=>333, 339=>944, 1116=>573, 382=>500, 376=>667, 161=>333,
- 162=>556, 163=>556, 164=>556, 165=>556, 166=>280, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 174=>737, 175=>333, 176=>606, 177=>584, 178=>351,
- 179=>351, 180=>333, 181=>611, 182=>556, 183=>278, 184=>333, 185=>351, 186=>365, 187=>556, 188=>869, 189=>869, 190=>869, 191=>611, 192=>722, 193=>722, 194=>722,
- 195=>722, 196=>722, 197=>722, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722, 209=>722, 210=>778,
- 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556, 226=>556,
- 227=>556, 228=>556, 229=>556, 230=>889, 231=>556, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>611, 241=>611, 242=>611,
- 243=>611, 244=>611, 245=>611, 246=>611, 247=>584, 248=>611, 249=>611, 250=>611, 251=>611, 252=>611, 253=>556, 254=>611, 255=>556, 256=>722, 257=>556, 258=>722,
- 259=>556, 260=>722, 261=>556, 262=>722, 263=>556, 264=>722, 265=>556, 266=>722, 267=>556, 268=>722, 269=>556, 270=>722, 271=>611, 272=>722, 273=>611, 274=>667,
- 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>611, 286=>778, 287=>611, 288=>778, 289=>611, 290=>778,
- 291=>611, 292=>722, 293=>611, 294=>722, 295=>611, 296=>278, 297=>278, 298=>278, 299=>278, 300=>278, 301=>278, 302=>278, 303=>278, 304=>278, 305=>278, 306=>808,
- 307=>492, 308=>556, 309=>278, 310=>722, 311=>556, 312=>573, 313=>611, 314=>278, 315=>611, 316=>278, 317=>611, 318=>278, 319=>611, 320=>556, 321=>611, 322=>278,
- 323=>722, 324=>611, 325=>722, 326=>611, 327=>722, 328=>611, 329=>611, 330=>722, 331=>611, 332=>778, 333=>611, 334=>778, 335=>611, 336=>778, 337=>611, 340=>722,
- 341=>389, 342=>722, 343=>389, 344=>722, 345=>389, 346=>667, 347=>556, 348=>667, 349=>556, 350=>667, 351=>556, 354=>611, 355=>333, 356=>611, 357=>333, 358=>611,
- 359=>333, 360=>722, 361=>611, 362=>722, 363=>611, 364=>722, 365=>611, 366=>722, 367=>611, 368=>722, 369=>611, 370=>722, 371=>611, 372=>944, 373=>778, 374=>667,
- 375=>556, 377=>611, 378=>500, 379=>611, 380=>500, 383=>333, 452=>1333, 453=>1222, 454=>1111, 455=>1167, 456=>889, 457=>556, 458=>1278, 459=>1000, 460=>889, 461=>722,
- 462=>556, 463=>278, 464=>278, 465=>778, 466=>611, 467=>722, 468=>611, 469=>722, 470=>611, 471=>722, 472=>611, 473=>722, 474=>611, 475=>722, 476=>611, 478=>722,
- 479=>556, 482=>1000, 483=>889, 486=>778, 487=>611, 488=>722, 489=>556, 490=>778, 491=>611, 492=>778, 493=>611, 497=>1333, 498=>1222, 499=>1111, 504=>722, 505=>611,
- 506=>722, 507=>556, 508=>1000, 509=>889, 510=>778, 511=>611, 514=>722, 515=>556, 518=>667, 519=>556, 522=>278, 523=>278, 526=>778, 527=>611, 530=>722, 531=>389,
- 534=>722, 535=>611, 536=>667, 537=>556, 538=>611, 539=>333, 711=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 884=>379, 885=>379, 890=>332, 894=>333,
- 900=>325, 901=>658, 902=>761, 903=>474, 904=>706, 905=>733, 906=>285, 908=>785, 910=>823, 911=>819, 913=>722, 914=>722, 915=>642, 916=>726, 917=>667, 918=>611,
- 919=>722, 920=>810, 921=>278, 922=>722, 923=>744, 924=>860, 925=>714, 926=>690, 927=>822, 928=>781, 929=>698, 931=>688, 932=>688, 933=>804, 934=>777, 935=>783,
- 936=>805, 937=>780, 938=>278, 939=>804, 940=>660, 941=>559, 942=>560, 943=>356, 944=>575, 945=>656, 946=>576, 947=>591, 948=>620, 949=>570, 950=>522, 951=>586,
- 952=>586, 953=>346, 954=>576, 955=>620, 956=>667, 957=>564, 958=>530, 959=>610, 960=>721, 961=>626, 962=>595, 963=>676, 964=>592, 965=>575, 966=>801, 967=>632,
- 968=>722, 969=>800, 970=>346, 971=>575, 972=>599, 973=>567, 974=>1125, 1024=>667, 1025=>709, 1026=>790, 1028=>722, 1029=>667, 1030=>278, 1031=>278, 1032=>556, 1033=>1110,
- 1034=>1113, 1035=>790, 1037=>726, 1038=>718, 1040=>722, 1041=>722, 1042=>722, 1043=>611, 1044=>900, 1045=>709, 1046=>1093, 1047=>672, 1048=>757, 1049=>757, 1050=>750, 1051=>729,
- 1052=>874, 1053=>753, 1054=>778, 1055=>753, 1056=>671, 1057=>722, 1058=>611, 1059=>718, 1060=>892, 1061=>667, 1062=>816, 1063=>685, 1064=>1057, 1065=>1183, 1066=>928, 1067=>949,
- 1068=>687, 1069=>722, 1070=>1109, 1071=>698, 1072=>556, 1073=>606, 1074=>572, 1075=>454, 1076=>685, 1077=>556, 1078=>809, 1079=>546, 1080=>615, 1081=>615, 1082=>573, 1083=>577,
- 1084=>666, 1085=>603, 1086=>611, 1087=>603, 1088=>611, 1089=>556, 1090=>454, 1091=>556, 1092=>957, 1093=>556, 1094=>652, 1095=>578, 1096=>886, 1097=>968, 1098=>693, 1099=>811,
- 1100=>562, 1101=>564, 1102=>908, 1103=>596, 1104=>556, 1105=>556, 1106=>606, 1107=>454, 1108=>556, 1109=>556, 1110=>278, 1111=>278, 1112=>278, 1113=>900, 1114=>611, 1115=>606,
- 1117=>608, 1118=>556, 1119=>608, 1164=>687, 1165=>562, 1166=>667, 1167=>611, 1168=>611, 1169=>454, 1170=>611, 1171=>454, 1172=>611, 1173=>454, 1174=>1093, 1175=>809, 1176=>672,
- 1177=>546, 1178=>722, 1179=>573, 1180=>722, 1181=>573, 1182=>722, 1183=>573, 1184=>722, 1185=>573, 1186=>722, 1187=>608, 1188=>722, 1189=>608, 1190=>722, 1191=>608, 1192=>722,
- 1193=>556, 1194=>722, 1195=>556, 1196=>611, 1197=>454, 1198=>667, 1199=>556, 1200=>667, 1201=>556, 1202=>667, 1203=>556, 1204=>814, 1205=>685, 1206=>675, 1207=>580, 1208=>675,
- 1209=>580, 1210=>675, 1211=>580, 1212=>722, 1213=>556, 1214=>722, 1215=>556, 1216=>278, 1217=>1093, 1218=>809, 1219=>722, 1220=>573, 1223=>722, 1224=>608, 1227=>675, 1228=>580,
- 1232=>722, 1233=>556, 1234=>722, 1235=>556, 1236=>1000, 1237=>889, 1238=>709, 1239=>556, 1240=>722, 1241=>556, 1242=>722, 1243=>556, 1244=>1093, 1245=>809, 1246=>672, 1247=>546,
- 1248=>672, 1249=>546, 1250=>757, 1251=>615, 1252=>757, 1253=>615, 1254=>778, 1255=>611, 1256=>778, 1257=>611, 1258=>778, 1259=>611, 1260=>722, 1261=>564, 1262=>718, 1263=>556,
- 1264=>718, 1265=>556, 1266=>718, 1267=>556, 1268=>685, 1269=>578, 1272=>949, 1273=>811, 1456=>82, 1457=>347, 1458=>341, 1459=>341, 1460=>82, 1461=>211, 1462=>211, 1463=>200,
- 1464=>200, 1465=>82, 1467=>341, 1468=>82, 1469=>82, 1470=>516, 1471=>200, 1472=>297, 1473=>1038, 1474=>1038, 1475=>333, 1476=>82, 1488=>714, 1489=>651, 1490=>557, 1491=>638,
- 1492=>682, 1493=>297, 1494=>443, 1495=>682, 1496=>670, 1497=>284, 1498=>590, 1499=>595, 1500=>667, 1501=>683, 1502=>704, 1503=>297, 1504=>429, 1505=>670, 1506=>653, 1507=>661,
- 1508=>660, 1509=>616, 1510=>671, 1511=>672, 1512=>600, 1513=>840, 1514=>756, 1520=>554, 1521=>550, 1522=>542, 1523=>238, 1524=>474, 1559=>556, 1560=>778, 1561=>944, 1562=>611,
- 1563=>278, 1564=>889, 1569=>844, 1576=>923, 1578=>922, 1579=>922, 1581=>649, 1582=>704, 1587=>1221, 7936=>656, 7937=>656, 7938=>656, 7939=>656, 7940=>656, 7941=>656, 7942=>656,
- 7943=>656, 7944=>722, 7945=>722, 7946=>722, 7947=>722, 7948=>722, 7949=>722, 7950=>722, 7951=>722, 7952=>570, 7953=>570, 7954=>570, 7955=>570, 7956=>570, 7957=>570, 7960=>667,
- 7961=>667, 7962=>667, 7963=>667, 7964=>667, 7965=>667, 7968=>586, 7969=>586, 7970=>586, 7971=>586, 7972=>586, 7973=>586, 7974=>586, 7975=>586, 7976=>722, 7977=>722, 7978=>722,
- 7979=>722, 7980=>722, 7981=>722, 7982=>722, 7983=>722, 7984=>346, 7985=>346, 7986=>346, 7987=>346, 7988=>346, 7989=>346, 7990=>346, 7991=>346, 7992=>278, 7993=>278, 7994=>278,
- 7995=>278, 7996=>278, 7997=>278, 7998=>278, 7999=>278, 8000=>610, 8001=>610, 8002=>610, 8003=>610, 8004=>610, 8005=>610, 8008=>822, 8009=>822, 8010=>822, 8011=>822, 8012=>822,
- 8013=>822, 8016=>575, 8017=>575, 8018=>575, 8019=>575, 8020=>575, 8021=>575, 8022=>575, 8023=>575, 8025=>804, 8027=>804, 8029=>804, 8031=>804, 8032=>800, 8033=>800, 8034=>800,
- 8035=>800, 8036=>800, 8037=>800, 8038=>800, 8039=>800, 8040=>780, 8041=>780, 8042=>780, 8043=>780, 8044=>780, 8045=>780, 8046=>780, 8047=>780, 8048=>656, 8049=>656, 8050=>570,
- 8051=>570, 8052=>586, 8053=>586, 8054=>346, 8055=>346, 8056=>610, 8057=>610, 8058=>575, 8059=>575, 8060=>800, 8061=>800, 8064=>656, 8065=>656, 8066=>656, 8067=>656, 8068=>656,
- 8069=>656, 8070=>656, 8071=>656, 8072=>968, 8073=>968, 8074=>968, 8075=>968, 8076=>968, 8077=>968, 8078=>968, 8079=>968, 8080=>586, 8081=>586, 8082=>586, 8083=>586, 8084=>586,
- 8085=>586, 8086=>586, 8087=>586, 8088=>968, 8089=>968, 8090=>968, 8091=>968, 8092=>968, 8093=>968, 8094=>968, 8095=>968, 8096=>800, 8097=>800, 8098=>800, 8099=>800, 8100=>800,
- 8101=>800, 8102=>800, 8103=>800, 8104=>1026, 8105=>1026, 8106=>1026, 8107=>1026, 8108=>1026, 8109=>1026, 8110=>1026, 8111=>1026, 8112=>656, 8113=>656, 8114=>656, 8115=>656, 8116=>660,
- 8118=>656, 8119=>656, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>968, 8125=>278, 8126=>346, 8127=>278, 8128=>278, 8129=>333, 8130=>586, 8131=>586, 8132=>560, 8134=>586,
- 8135=>586, 8136=>667, 8137=>667, 8138=>722, 8139=>722, 8140=>968, 8141=>492, 8142=>489, 8143=>394, 8144=>346, 8145=>346, 8146=>346, 8147=>346, 8150=>346, 8151=>346, 8152=>278,
- 8153=>278, 8154=>278, 8155=>278, 8157=>481, 8158=>589, 8159=>333, 8160=>575, 8161=>575, 8162=>575, 8163=>575, 8164=>626, 8165=>626, 8166=>575, 8167=>575, 8168=>804, 8169=>804,
- 8170=>804, 8171=>804, 8172=>698, 8173=>333, 8174=>333, 8175=>333, 8178=>800, 8179=>800, 8180=>1125, 8182=>800, 8183=>800, 8184=>822, 8185=>822, 8186=>780, 8187=>780, 8188=>1111,
- 8189=>333, 8190=>278, 8260=>167, 8308=>351, 8321=>351, 8322=>351, 8323=>351, 8324=>351, 8362=>1049, 8543=>869, 8706=>490, 8710=>729, 8721=>711, 8722=>584, 8730=>542, 8800=>548,
- 8804=>584, 8805=>584, 9674=>489, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556, 63171=>333, 63196=>556, 64257=>611, 64258=>611,
- 64285=>284, 64286=>305, 64287=>542, 64288=>653, 64289=>964, 64290=>888, 64291=>932, 64292=>845, 64293=>917, 64294=>933, 64295=>850, 64296=>1006, 64297=>584, 64298=>840, 64299=>840, 64300=>840,
- 64301=>840, 64302=>714, 64303=>714, 64304=>714, 64305=>651, 64306=>557, 64307=>638, 64308=>682, 64309=>367, 64310=>443, 64312=>670, 64313=>354, 64314=>590, 64315=>595, 64316=>667, 64318=>704,
- 64320=>429, 64321=>670, 64323=>661, 64324=>660, 64326=>671, 64327=>672, 64328=>600, 64329=>840, 64330=>756, 64331=>297, 64332=>651, 64333=>595, 64334=>660, 64335=>714, 65182=>636);
+ 32=>278, 33=>333, 34=>474, 35=>556, 36=>556, 37=>889, 38=>722, 39=>238, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278, 47=>278,
+ 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>333, 59=>333, 60=>584, 61=>584, 62=>584, 63=>611,
+ 64=>975, 65=>722, 66=>722, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>556, 75=>722, 76=>611, 77=>833, 78=>722, 79=>778,
+ 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>333, 92=>278, 93=>333, 94=>584, 95=>556,
+ 96=>333, 97=>556, 98=>611, 99=>556, 100=>611, 101=>556, 102=>333, 103=>611, 104=>611, 105=>278, 106=>278, 107=>556, 108=>278, 109=>889, 110=>611, 111=>611,
+ 112=>611, 113=>611, 114=>389, 115=>556, 116=>333, 117=>611, 118=>556, 119=>778, 120=>556, 121=>556, 122=>500, 123=>389, 124=>280, 125=>389, 126=>584, 8364=>556,
+ 1027=>611, 8218=>278, 402=>333, 8222=>500, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>750, 381=>611, 1039=>722, 8216=>278,
+ 8217=>278, 8220=>500, 8221=>500, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>556, 8250=>333, 339=>944, 1116=>573, 382=>500, 376=>667, 160=>278, 161=>333,
+ 162=>556, 163=>556, 164=>556, 165=>556, 166=>280, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 173=>333, 174=>737, 175=>333, 176=>606, 177=>584,
+ 178=>351, 179=>351, 180=>333, 181=>611, 182=>556, 183=>278, 184=>333, 185=>351, 186=>365, 187=>556, 188=>869, 189=>869, 190=>869, 191=>611, 192=>722, 193=>722,
+ 194=>722, 195=>722, 196=>722, 197=>722, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722, 209=>722,
+ 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556,
+ 226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>556, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>611, 241=>611,
+ 242=>611, 243=>611, 244=>611, 245=>611, 246=>611, 247=>584, 248=>611, 249=>611, 250=>611, 251=>611, 252=>611, 253=>556, 254=>611, 255=>556, 256=>722, 257=>556,
+ 258=>722, 259=>556, 260=>722, 261=>556, 262=>722, 263=>556, 264=>722, 265=>556, 266=>722, 267=>556, 268=>722, 269=>556, 270=>722, 271=>611, 272=>722, 273=>611,
+ 274=>667, 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>611, 286=>778, 287=>611, 288=>778, 289=>611,
+ 290=>778, 291=>611, 292=>722, 293=>611, 294=>722, 295=>611, 296=>278, 297=>278, 298=>278, 299=>278, 300=>278, 301=>278, 302=>278, 303=>278, 304=>278, 305=>278,
+ 306=>808, 307=>492, 308=>556, 309=>278, 310=>722, 311=>556, 312=>573, 313=>611, 314=>278, 315=>611, 316=>278, 317=>611, 318=>278, 319=>611, 320=>556, 321=>611,
+ 322=>278, 323=>722, 324=>611, 325=>722, 326=>611, 327=>722, 328=>611, 329=>611, 330=>722, 331=>611, 332=>778, 333=>611, 334=>778, 335=>611, 336=>778, 337=>611,
+ 340=>722, 341=>389, 342=>722, 343=>389, 344=>722, 345=>389, 346=>667, 347=>556, 348=>667, 349=>556, 350=>667, 351=>556, 354=>611, 355=>333, 356=>611, 357=>333,
+ 358=>611, 359=>333, 360=>722, 361=>611, 362=>722, 363=>611, 364=>722, 365=>611, 366=>722, 367=>611, 368=>722, 369=>611, 370=>722, 371=>611, 372=>944, 373=>778,
+ 374=>667, 375=>556, 377=>611, 378=>500, 379=>611, 380=>500, 383=>333, 384=>611, 385=>963, 386=>722, 387=>611, 388=>687, 389=>611, 390=>722, 391=>752, 392=>562,
+ 393=>722, 394=>968, 395=>722, 396=>611, 397=>620, 398=>667, 399=>778, 400=>672, 401=>611, 403=>778, 404=>667, 405=>889, 407=>395, 408=>778, 409=>556, 411=>620,
+ 412=>944, 413=>722, 414=>611, 415=>778, 416=>778, 417=>611, 418=>1111, 420=>914, 421=>611, 422=>722, 423=>667, 424=>556, 425=>688, 427=>333, 428=>742, 429=>333,
+ 430=>611, 431=>722, 432=>611, 433=>780, 435=>667, 436=>620, 437=>611, 438=>500, 439=>556, 440=>556, 446=>611, 452=>1333, 453=>1222, 454=>1111, 455=>1167, 456=>889,
+ 457=>556, 458=>1278, 459=>1000, 460=>889, 461=>722, 462=>556, 463=>278, 464=>278, 465=>778, 466=>611, 467=>722, 468=>611, 469=>722, 470=>611, 471=>722, 472=>611,
+ 473=>722, 474=>611, 475=>722, 476=>611, 477=>556, 478=>722, 479=>556, 480=>722, 481=>556, 482=>1000, 483=>889, 484=>778, 485=>611, 486=>778, 487=>611, 488=>722,
+ 489=>556, 490=>778, 491=>611, 492=>778, 493=>611, 494=>556, 495=>556, 496=>278, 497=>1333, 498=>1222, 499=>1111, 500=>778, 501=>611, 504=>722, 505=>611, 506=>722,
+ 507=>556, 508=>1000, 509=>889, 510=>778, 511=>611, 512=>722, 513=>556, 514=>722, 515=>556, 516=>667, 517=>556, 518=>667, 519=>556, 520=>278, 521=>278, 522=>278,
+ 523=>278, 524=>778, 525=>611, 526=>778, 527=>611, 528=>722, 529=>389, 530=>722, 531=>389, 532=>722, 533=>611, 534=>722, 535=>611, 536=>667, 537=>556, 538=>611,
+ 539=>333, 542=>722, 543=>611, 550=>722, 551=>556, 552=>667, 553=>556, 554=>778, 555=>611, 556=>778, 557=>611, 558=>778, 559=>611, 560=>778, 561=>611, 562=>667,
+ 563=>556, 592=>556, 593=>667, 594=>667, 595=>611, 596=>556, 598=>611, 599=>611, 600=>556, 601=>556, 603=>570, 604=>546, 606=>570, 607=>278, 608=>611, 609=>611,
+ 610=>556, 611=>556, 613=>619, 614=>611, 615=>611, 616=>278, 617=>344, 618=>278, 621=>298, 622=>778, 623=>889, 624=>889, 625=>889, 626=>611, 627=>611, 628=>615,
+ 629=>611, 632=>778, 633=>389, 634=>389, 635=>389, 636=>389, 637=>389, 638=>455, 639=>455, 640=>620, 641=>620, 642=>556, 643=>333, 644=>278, 645=>333, 647=>328,
+ 648=>333, 649=>623, 652=>556, 653=>778, 654=>556, 656=>500, 658=>556, 660=>611, 661=>611, 662=>611, 664=>611, 665=>572, 666=>570, 668=>603, 670=>556, 671=>454,
+ 672=>611, 673=>611, 674=>611, 711=>333, 713=>333, 714=>333, 715=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0,
+ 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 780=>0, 783=>0, 785=>0, 787=>0, 788=>0, 807=>0, 808=>0, 834=>0, 836=>0,
+ 837=>0, 884=>379, 885=>379, 890=>333, 894=>333, 900=>333, 901=>333, 902=>761, 903=>474, 904=>706, 905=>733, 906=>285, 908=>785, 910=>823, 911=>819, 912=>346,
+ 913=>722, 914=>722, 915=>642, 916=>726, 917=>667, 918=>611, 919=>722, 920=>810, 921=>278, 922=>722, 923=>744, 924=>860, 925=>714, 926=>690, 927=>778, 928=>781,
+ 929=>698, 931=>688, 932=>688, 933=>804, 934=>777, 935=>783, 936=>805, 937=>780, 938=>278, 939=>804, 940=>660, 941=>559, 942=>560, 943=>356, 944=>575, 945=>656,
+ 946=>576, 947=>591, 948=>620, 949=>570, 950=>522, 951=>586, 952=>586, 953=>346, 954=>576, 955=>620, 956=>667, 957=>564, 958=>530, 959=>611, 960=>721, 961=>626,
+ 962=>595, 963=>676, 964=>592, 965=>575, 966=>801, 967=>632, 968=>722, 969=>800, 970=>346, 971=>575, 972=>599, 973=>567, 974=>800, 981=>778, 1024=>667, 1025=>667,
+ 1026=>790, 1028=>722, 1029=>667, 1030=>278, 1031=>278, 1032=>556, 1033=>1110, 1034=>1113, 1035=>790, 1037=>757, 1038=>718, 1040=>722, 1041=>722, 1042=>722, 1043=>611, 1044=>900,
+ 1045=>667, 1046=>1093, 1047=>672, 1048=>757, 1049=>757, 1050=>750, 1051=>729, 1052=>833, 1053=>722, 1054=>778, 1055=>753, 1056=>667, 1057=>722, 1058=>611, 1059=>718, 1060=>892,
+ 1061=>667, 1062=>816, 1063=>685, 1064=>1057, 1065=>1183, 1066=>928, 1067=>949, 1068=>687, 1069=>722, 1070=>1109, 1071=>698, 1072=>556, 1073=>606, 1074=>572, 1075=>454, 1076=>685,
+ 1077=>556, 1078=>809, 1079=>546, 1080=>615, 1081=>615, 1082=>573, 1083=>577, 1084=>666, 1085=>603, 1086=>611, 1087=>603, 1088=>611, 1089=>556, 1090=>454, 1091=>556, 1092=>957,
+ 1093=>556, 1094=>652, 1095=>578, 1096=>886, 1097=>968, 1098=>693, 1099=>811, 1100=>562, 1101=>564, 1102=>908, 1103=>596, 1104=>556, 1105=>556, 1106=>606, 1107=>454, 1108=>556,
+ 1109=>556, 1110=>278, 1111=>278, 1112=>278, 1113=>900, 1114=>900, 1115=>606, 1117=>615, 1118=>556, 1119=>608, 1164=>687, 1165=>562, 1166=>667, 1167=>611, 1168=>611, 1169=>454,
+ 1170=>611, 1171=>454, 1172=>611, 1173=>584, 1174=>1093, 1175=>809, 1176=>672, 1177=>546, 1178=>750, 1179=>573, 1180=>722, 1181=>573, 1182=>722, 1183=>573, 1184=>912, 1185=>704,
+ 1186=>753, 1187=>608, 1188=>985, 1189=>787, 1190=>1092, 1191=>925, 1194=>722, 1195=>556, 1196=>611, 1197=>454, 1198=>667, 1199=>667, 1200=>667, 1201=>667, 1202=>667, 1203=>556,
+ 1204=>951, 1205=>738, 1206=>781, 1207=>627, 1208=>685, 1209=>578, 1210=>685, 1211=>578, 1212=>957, 1213=>716, 1214=>957, 1215=>716, 1216=>278, 1217=>1093, 1218=>809, 1219=>750,
+ 1220=>573, 1221=>729, 1222=>577, 1223=>722, 1224=>608, 1225=>722, 1226=>603, 1227=>685, 1228=>578, 1229=>833, 1230=>666, 1232=>722, 1233=>556, 1234=>722, 1235=>556, 1236=>1000,
+ 1237=>889, 1238=>667, 1239=>556, 1240=>722, 1241=>556, 1242=>722, 1243=>556, 1244=>1093, 1245=>809, 1246=>672, 1247=>546, 1248=>672, 1249=>546, 1250=>757, 1251=>615, 1252=>757,
+ 1253=>615, 1254=>778, 1255=>611, 1256=>778, 1257=>611, 1258=>778, 1259=>611, 1260=>722, 1261=>564, 1262=>718, 1263=>556, 1264=>718, 1265=>556, 1266=>718, 1267=>556, 1268=>685,
+ 1269=>578, 1272=>949, 1273=>811, 1329=>722, 1330=>722, 1331=>778, 1332=>722, 1333=>722, 1336=>722, 1343=>722, 1346=>722, 1348=>722, 1350=>722, 1352=>722, 1356=>722, 1357=>722,
+ 1359=>667, 1360=>722, 1363=>892, 1365=>778, 1373=>333, 1377=>889, 1378=>611, 1379=>611, 1380=>611, 1381=>611, 1382=>611, 1383=>448, 1384=>611, 1385=>667, 1386=>722, 1387=>611,
+ 1388=>333, 1389=>833, 1390=>667, 1391=>611, 1392=>611, 1393=>611, 1394=>611, 1395=>611, 1396=>611, 1397=>278, 1398=>611, 1399=>556, 1400=>611, 1401=>390, 1402=>889, 1403=>556,
+ 1404=>611, 1405=>611, 1406=>611, 1407=>944, 1408=>611, 1409=>611, 1410=>389, 1411=>944, 1412=>611, 1413=>611, 1414=>778, 1415=>611, 1417=>333, 1456=>82, 1457=>347, 1458=>341,
+ 1459=>341, 1460=>82, 1461=>211, 1462=>211, 1463=>200, 1464=>200, 1465=>82, 1467=>341, 1468=>82, 1469=>82, 1470=>516, 1471=>200, 1472=>297, 1473=>1038, 1474=>1038, 1475=>333,
+ 1476=>82, 1488=>714, 1489=>651, 1490=>557, 1491=>638, 1492=>682, 1493=>297, 1494=>443, 1495=>682, 1496=>670, 1497=>284, 1498=>590, 1499=>595, 1500=>667, 1501=>683, 1502=>704,
+ 1503=>297, 1504=>429, 1505=>670, 1506=>653, 1507=>661, 1508=>660, 1509=>616, 1510=>671, 1511=>672, 1512=>600, 1513=>840, 1514=>756, 1520=>554, 1521=>550, 1522=>542, 1523=>238,
+ 1524=>474, 1559=>556, 1560=>778, 1561=>944, 1562=>611, 1563=>278, 1564=>889, 1569=>844, 1576=>923, 1578=>922, 1579=>922, 1581=>649, 1582=>704, 1587=>1221, 2404=>467, 2405=>656,
+ 2561=>0, 2562=>122, 2563=>313, 2565=>897, 2566=>1157, 2567=>930, 2568=>966, 2569=>762, 2570=>762, 2575=>729, 2576=>904, 2579=>773, 2580=>903, 2581=>726, 2582=>672, 2583=>741,
+ 2584=>790, 2585=>702, 2586=>723, 2587=>693, 2588=>688, 2589=>673, 2590=>683, 2591=>686, 2592=>711, 2593=>680, 2594=>693, 2595=>729, 2596=>691, 2597=>694, 2598=>699, 2599=>666,
+ 2600=>669, 2602=>683, 2603=>690, 2604=>660, 2605=>659, 2606=>692, 2607=>772, 2608=>673, 2610=>731, 2611=>814, 2613=>663, 2614=>704, 2616=>702, 2617=>650, 2620=>0, 2622=>307,
+ 2623=>304, 2624=>306, 2625=>7, 2626=>7, 2631=>7, 2632=>8, 2635=>6, 2636=>5, 2637=>8, 2649=>684, 2650=>813, 2651=>715, 2652=>695, 2654=>709, 2662=>697, 2663=>630,
+ 2664=>696, 2665=>690, 2666=>646, 2667=>636, 2668=>571, 2669=>682, 2670=>718, 2671=>730, 2672=>9, 2673=>162, 2674=>722, 2675=>760, 2676=>1110, 7680=>722, 7681=>556, 7682=>722,
+ 7683=>611, 7684=>722, 7685=>611, 7686=>722, 7687=>611, 7688=>722, 7689=>556, 7690=>722, 7691=>611, 7692=>722, 7693=>611, 7694=>722, 7695=>611, 7696=>722, 7697=>611, 7698=>722,
+ 7699=>611, 7700=>667, 7701=>556, 7702=>667, 7703=>556, 7704=>667, 7705=>556, 7706=>667, 7707=>556, 7708=>667, 7709=>556, 7710=>611, 7711=>333, 7712=>778, 7713=>611, 7714=>722,
+ 7715=>611, 7716=>722, 7717=>611, 7718=>722, 7719=>611, 7720=>722, 7721=>611, 7722=>722, 7723=>611, 7724=>278, 7725=>278, 7726=>278, 7727=>278, 7728=>722, 7729=>556, 7730=>722,
+ 7731=>556, 7732=>722, 7733=>556, 7734=>611, 7735=>278, 7736=>611, 7737=>278, 7738=>611, 7739=>278, 7740=>611, 7741=>278, 7742=>833, 7743=>889, 7744=>833, 7745=>889, 7746=>833,
+ 7747=>889, 7748=>722, 7749=>611, 7750=>722, 7751=>611, 7752=>722, 7753=>611, 7754=>722, 7755=>611, 7756=>778, 7757=>611, 7758=>778, 7759=>611, 7760=>778, 7761=>611, 7762=>778,
+ 7763=>611, 7764=>667, 7765=>611, 7766=>667, 7767=>611, 7768=>722, 7769=>389, 7770=>722, 7771=>389, 7772=>722, 7773=>389, 7774=>722, 7775=>389, 7776=>667, 7777=>556, 7778=>667,
+ 7779=>556, 7780=>667, 7781=>556, 7782=>667, 7783=>556, 7784=>667, 7785=>556, 7786=>611, 7787=>333, 7788=>611, 7789=>333, 7790=>611, 7791=>333, 7792=>611, 7793=>333, 7794=>722,
+ 7795=>611, 7796=>722, 7797=>611, 7798=>722, 7799=>611, 7800=>722, 7801=>611, 7802=>722, 7803=>611, 7804=>667, 7805=>556, 7806=>667, 7807=>556, 7808=>944, 7809=>778, 7810=>944,
+ 7811=>778, 7812=>944, 7813=>778, 7814=>944, 7815=>778, 7816=>944, 7817=>778, 7818=>667, 7819=>556, 7820=>667, 7821=>556, 7822=>667, 7823=>556, 7824=>611, 7825=>500, 7826=>611,
+ 7827=>500, 7828=>611, 7829=>500, 7830=>611, 7831=>333, 7832=>778, 7833=>556, 7835=>333, 7840=>722, 7841=>556, 7844=>722, 7845=>556, 7846=>722, 7847=>556, 7850=>722, 7851=>556,
+ 7852=>722, 7853=>556, 7854=>722, 7855=>556, 7856=>722, 7857=>556, 7860=>722, 7861=>556, 7862=>722, 7863=>556, 7864=>667, 7865=>556, 7868=>667, 7869=>556, 7870=>667, 7871=>556,
+ 7872=>667, 7873=>556, 7876=>667, 7877=>556, 7878=>667, 7879=>556, 7882=>278, 7883=>278, 7884=>778, 7885=>611, 7888=>778, 7889=>611, 7890=>778, 7891=>611, 7894=>778, 7895=>611,
+ 7896=>778, 7897=>611, 7898=>778, 7899=>611, 7900=>778, 7901=>611, 7904=>778, 7905=>611, 7906=>778, 7907=>611, 7908=>722, 7909=>611, 7912=>722, 7913=>611, 7914=>722, 7915=>611,
+ 7918=>722, 7919=>611, 7920=>722, 7921=>611, 7922=>667, 7923=>556, 7924=>667, 7925=>556, 7928=>667, 7929=>556, 7936=>656, 7937=>656, 7938=>656, 7939=>656, 7940=>656, 7941=>656,
+ 7942=>656, 7943=>656, 7944=>722, 7945=>722, 7946=>722, 7947=>722, 7948=>722, 7949=>722, 7950=>722, 7951=>722, 7952=>570, 7953=>570, 7954=>570, 7955=>570, 7956=>570, 7957=>570,
+ 7960=>667, 7961=>667, 7962=>667, 7963=>667, 7964=>667, 7965=>667, 7968=>586, 7969=>586, 7970=>586, 7971=>586, 7972=>586, 7973=>586, 7974=>586, 7975=>586, 7976=>722, 7977=>722,
+ 7978=>722, 7979=>722, 7980=>722, 7981=>722, 7982=>722, 7983=>722, 7984=>346, 7985=>346, 7986=>346, 7987=>346, 7988=>346, 7989=>346, 7990=>346, 7991=>346, 7992=>278, 7993=>278,
+ 7994=>278, 7995=>278, 7996=>278, 7997=>278, 7998=>278, 7999=>278, 8000=>610, 8001=>610, 8002=>610, 8003=>610, 8004=>610, 8005=>610, 8008=>778, 8009=>778, 8010=>778, 8011=>778,
+ 8012=>778, 8013=>778, 8016=>575, 8017=>575, 8018=>575, 8019=>575, 8020=>575, 8021=>575, 8022=>575, 8023=>575, 8025=>804, 8027=>804, 8029=>804, 8031=>804, 8032=>800, 8033=>800,
+ 8034=>800, 8035=>800, 8036=>800, 8037=>800, 8038=>800, 8039=>800, 8040=>780, 8041=>780, 8042=>780, 8043=>780, 8044=>780, 8045=>780, 8046=>780, 8047=>780, 8048=>656, 8049=>656,
+ 8050=>570, 8051=>570, 8052=>586, 8053=>586, 8054=>346, 8055=>346, 8056=>610, 8057=>610, 8058=>575, 8059=>575, 8060=>800, 8061=>800, 8064=>656, 8065=>656, 8066=>656, 8067=>656,
+ 8068=>656, 8069=>656, 8070=>656, 8071=>656, 8072=>968, 8073=>968, 8074=>968, 8075=>968, 8076=>968, 8077=>968, 8078=>968, 8079=>968, 8080=>586, 8081=>586, 8082=>586, 8083=>586,
+ 8084=>586, 8085=>586, 8086=>586, 8087=>586, 8088=>968, 8089=>968, 8090=>968, 8091=>968, 8092=>968, 8093=>968, 8094=>968, 8095=>968, 8096=>800, 8097=>800, 8098=>800, 8099=>800,
+ 8100=>800, 8101=>800, 8102=>800, 8103=>800, 8104=>1026, 8105=>1026, 8106=>1026, 8107=>1026, 8108=>1026, 8109=>1026, 8110=>1026, 8111=>1026, 8112=>656, 8113=>656, 8114=>656, 8115=>656,
+ 8116=>660, 8118=>656, 8119=>656, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>968, 8125=>278, 8126=>346, 8127=>278, 8128=>278, 8129=>333, 8130=>586, 8131=>586, 8132=>560,
+ 8134=>586, 8135=>586, 8136=>667, 8137=>667, 8138=>722, 8139=>722, 8140=>968, 8141=>492, 8142=>489, 8143=>394, 8144=>346, 8145=>346, 8146=>346, 8147=>346, 8150=>346, 8151=>346,
+ 8152=>278, 8153=>278, 8154=>278, 8155=>278, 8157=>481, 8158=>589, 8159=>333, 8160=>575, 8161=>575, 8162=>575, 8163=>575, 8164=>626, 8165=>626, 8166=>575, 8167=>575, 8168=>804,
+ 8169=>804, 8170=>804, 8171=>804, 8172=>698, 8173=>333, 8174=>333, 8175=>333, 8178=>800, 8179=>800, 8180=>1125, 8182=>800, 8183=>800, 8184=>778, 8185=>778, 8186=>780, 8187=>780,
+ 8188=>1111, 8189=>333, 8190=>278, 8203=>0, 8204=>0, 8205=>0, 8208=>333, 8209=>333, 8210=>556, 8213=>1000, 8242=>238, 8252=>666, 8260=>167, 8263=>1222, 8264=>944, 8265=>944,
+ 8304=>351, 8305=>351, 8308=>351, 8309=>351, 8310=>351, 8311=>351, 8312=>351, 8313=>351, 8314=>351, 8315=>351, 8316=>351, 8317=>351, 8318=>351, 8319=>351, 8320=>351, 8321=>351,
+ 8322=>351, 8323=>351, 8324=>351, 8325=>351, 8326=>351, 8327=>351, 8328=>351, 8329=>351, 8330=>351, 8331=>351, 8332=>351, 8333=>351, 8334=>351, 8362=>1049, 8373=>591, 8486=>780,
+ 8531=>869, 8532=>869, 8533=>869, 8534=>869, 8535=>869, 8536=>869, 8537=>869, 8538=>869, 8539=>869, 8540=>869, 8541=>869, 8542=>869, 8543=>869, 8544=>278, 8545=>556, 8546=>834,
+ 8547=>945, 8548=>667, 8549=>945, 8550=>1223, 8551=>1501, 8552=>945, 8553=>667, 8554=>945, 8555=>1223, 8556=>611, 8557=>722, 8558=>722, 8559=>833, 8560=>278, 8561=>556, 8562=>834,
+ 8563=>834, 8564=>556, 8565=>834, 8566=>1112, 8567=>1390, 8568=>834, 8569=>556, 8570=>834, 8571=>1112, 8572=>278, 8573=>556, 8574=>611, 8575=>889, 8592=>964, 8593=>964, 8594=>964,
+ 8595=>964, 8596=>964, 8597=>964, 8598=>964, 8599=>964, 8600=>964, 8601=>964, 8602=>964, 8603=>964, 8606=>964, 8607=>964, 8608=>964, 8609=>964, 8610=>964, 8611=>964, 8612=>964,
+ 8613=>964, 8614=>964, 8615=>964, 8616=>964, 8644=>964, 8645=>964, 8646=>964, 8647=>964, 8648=>964, 8649=>964, 8650=>964, 8704=>722, 8706=>556, 8707=>667, 8710=>729, 8711=>729,
+ 8721=>711, 8722=>584, 8725=>869, 8730=>542, 8747=>556, 8800=>548, 8804=>584, 8805=>584, 9674=>489, 9676=>688, 9772=>1143, 9833=>333, 9834=>556, 9835=>778, 9836=>778, 9837=>556,
+ 9838=>556, 9839=>556, 10048=>1453, 10049=>1454, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556, 63166=>278, 63171=>333, 63196=>556,
+ 64257=>611, 64258=>611, 64285=>284, 64286=>305, 64287=>542, 64288=>653, 64289=>964, 64290=>888, 64291=>932, 64292=>845, 64293=>917, 64294=>933, 64295=>850, 64296=>1006, 64297=>584, 64298=>840,
+ 64299=>840, 64300=>840, 64301=>840, 64302=>714, 64303=>714, 64304=>714, 64305=>651, 64306=>557, 64307=>638, 64308=>682, 64309=>367, 64310=>443, 64312=>670, 64313=>354, 64314=>590, 64315=>595,
+ 64316=>667, 64318=>704, 64320=>429, 64321=>670, 64323=>661, 64324=>660, 64326=>671, 64327=>672, 64328=>600, 64329=>840, 64330=>756, 64331=>297, 64332=>651, 64333=>595, 64334=>660, 64335=>714,
+ 65182=>636, 65533=>788);
$enc='';
$diff='';
-$file='FreeSansBold.z';
-$ctg='FreeSansBold.ctg.z';
-$originalsize=91432;
+$file='freesansb.z';
+$ctg='freesansb.ctg.z';
+$originalsize=151660;
?>
diff --git a/lib/tcpdf/fonts/freesansb.z b/lib/tcpdf/fonts/freesansb.z
new file mode 100644
index 0000000000..202640b490
Binary files /dev/null and b/lib/tcpdf/fonts/freesansb.z differ
diff --git a/lib/tcpdf/fonts/freesansbi.ctg.z b/lib/tcpdf/fonts/freesansbi.ctg.z
new file mode 100644
index 0000000000..be59ea31c3
Binary files /dev/null and b/lib/tcpdf/fonts/freesansbi.ctg.z differ
diff --git a/lib/tcpdf/fonts/freesansbi.php b/lib/tcpdf/fonts/freesansbi.php
index e966f38e2a..8ed511e5c8 100755
--- a/lib/tcpdf/fonts/freesansbi.php
+++ b/lib/tcpdf/fonts/freesansbi.php
@@ -1,76 +1,95 @@
979,'Descent'=>-309,'CapHeight'=>979,'Flags'=>96,'FontBBox'=>'[-379 -309 1283 979]','ItalicAngle'=>-12,'StemV'=>120,'MissingWidth'=>600);
+$desc=array('Ascent'=>1163,'Descent'=>-309,'CapHeight'=>1163,'Flags'=>96,'FontBBox'=>'[-380 -1175 1591 1639]','ItalicAngle'=>-12,'StemV'=>120,'MissingWidth'=>600);
$up=-111;
$ut=69;
$cw=array(
- 13=>333, 32=>278, 33=>333, 34=>474, 35=>556, 36=>556, 37=>889, 38=>722, 39=>238, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278,
- 47=>278, 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>333, 59=>333, 60=>584, 61=>584, 62=>584,
- 63=>611, 64=>975, 65=>722, 66=>722, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>556, 75=>722, 76=>611, 77=>833, 78=>722,
- 79=>778, 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>333, 92=>278, 93=>333, 94=>584,
- 95=>556, 96=>333, 97=>556, 98=>611, 99=>556, 100=>611, 101=>556, 102=>333, 103=>611, 104=>611, 105=>278, 106=>278, 107=>556, 108=>278, 109=>889, 110=>611,
- 111=>611, 112=>611, 113=>611, 114=>389, 115=>556, 116=>333, 117=>611, 118=>556, 119=>778, 120=>556, 121=>556, 122=>500, 123=>389, 124=>280, 125=>389, 126=>584,
- 8364=>556, 1027=>611, 8218=>278, 402=>556, 8222=>500, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>722, 381=>611, 1039=>722,
- 8216=>278, 8217=>278, 8220=>500, 8221=>500, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>556, 8250=>333, 339=>944, 1116=>556, 382=>500, 376=>667, 161=>333,
- 162=>556, 163=>556, 164=>556, 165=>556, 166=>280, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 174=>737, 175=>333, 176=>606, 177=>584, 178=>444,
- 179=>444, 180=>333, 181=>611, 182=>556, 183=>278, 184=>333, 185=>444, 186=>365, 187=>556, 188=>1055, 189=>1055, 190=>1055, 191=>611, 192=>722, 193=>722, 194=>722,
- 195=>722, 196=>722, 197=>722, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722, 209=>722, 210=>778,
- 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556, 226=>556,
- 227=>556, 228=>556, 229=>556, 230=>889, 231=>556, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>611, 241=>611, 242=>611,
- 243=>611, 244=>611, 245=>611, 246=>611, 247=>584, 248=>611, 249=>611, 250=>611, 251=>611, 252=>611, 253=>556, 254=>611, 255=>556, 256=>722, 257=>556, 258=>722,
- 259=>556, 260=>722, 261=>556, 262=>722, 263=>556, 264=>722, 265=>556, 266=>722, 267=>556, 268=>722, 269=>556, 270=>722, 271=>722, 272=>722, 273=>611, 274=>667,
- 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>611, 286=>778, 287=>611, 288=>778, 289=>611, 290=>778,
- 291=>611, 292=>722, 293=>611, 294=>722, 295=>611, 296=>278, 297=>278, 298=>278, 299=>278, 300=>278, 301=>278, 302=>278, 303=>268, 304=>278, 305=>278, 306=>278,
- 307=>278, 308=>556, 309=>278, 310=>722, 311=>556, 312=>529, 313=>611, 314=>278, 315=>611, 316=>278, 317=>611, 318=>384, 319=>611, 320=>556, 321=>611, 322=>278,
- 323=>722, 324=>611, 325=>722, 326=>611, 327=>722, 328=>611, 329=>611, 330=>722, 331=>611, 332=>778, 333=>611, 334=>778, 335=>611, 336=>778, 337=>611, 340=>722,
- 341=>389, 342=>722, 343=>389, 344=>722, 345=>389, 346=>667, 347=>556, 348=>667, 349=>556, 350=>667, 351=>556, 354=>611, 355=>333, 356=>611, 357=>404, 358=>611,
- 359=>333, 360=>722, 361=>611, 362=>722, 363=>611, 364=>722, 365=>611, 366=>722, 367=>611, 368=>722, 369=>611, 370=>722, 371=>611, 372=>944, 373=>778, 374=>667,
- 375=>556, 377=>611, 378=>500, 379=>611, 380=>500, 383=>333, 536=>667, 537=>556, 538=>611, 539=>333, 711=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333,
- 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 780=>0, 783=>0, 785=>0, 787=>0, 788=>0, 884=>208,
- 885=>247, 890=>364, 894=>333, 900=>308, 901=>446, 902=>688, 903=>418, 904=>642, 905=>743, 906=>228, 908=>754, 910=>736, 911=>743, 912=>346, 913=>764, 914=>688,
- 915=>642, 916=>744, 917=>710, 918=>688, 919=>743, 920=>810, 921=>296, 922=>744, 923=>744, 924=>860, 925=>714, 926=>690, 927=>822, 928=>781, 929=>698, 931=>688,
- 932=>688, 933=>744, 934=>777, 935=>783, 936=>805, 937=>780, 938=>296, 939=>744, 940=>640, 941=>530, 942=>597, 943=>339, 944=>575, 945=>656, 946=>576, 947=>591,
- 948=>620, 949=>570, 950=>522, 951=>586, 952=>586, 953=>346, 954=>576, 955=>620, 956=>667, 957=>564, 958=>530, 959=>610, 960=>721, 961=>626, 962=>595, 963=>676,
- 964=>592, 965=>575, 966=>801, 967=>632, 968=>722, 969=>800, 970=>346, 971=>575, 972=>609, 973=>604, 974=>769, 1024=>666, 1025=>666, 1026=>790, 1028=>722, 1029=>667,
- 1030=>278, 1031=>278, 1032=>556, 1033=>1110, 1034=>1088, 1035=>790, 1037=>722, 1038=>718, 1040=>722, 1041=>722, 1042=>723, 1043=>611, 1044=>918, 1045=>666, 1046=>1054, 1047=>659,
- 1048=>722, 1049=>722, 1050=>720, 1051=>722, 1052=>843, 1053=>722, 1054=>778, 1055=>722, 1056=>649, 1057=>837, 1058=>611, 1059=>698, 1060=>902, 1061=>664, 1062=>730, 1063=>671,
- 1064=>1101, 1065=>1179, 1066=>816, 1067=>939, 1068=>639, 1069=>737, 1070=>1080, 1071=>690, 1072=>554, 1073=>611, 1074=>621, 1075=>475, 1076=>804, 1077=>552, 1078=>775, 1079=>556,
- 1080=>636, 1081=>636, 1082=>529, 1083=>608, 1084=>697, 1085=>636, 1086=>611, 1087=>636, 1088=>611, 1089=>554, 1090=>454, 1091=>552, 1092=>989, 1093=>554, 1094=>690, 1095=>606,
- 1096=>934, 1097=>987, 1098=>741, 1099=>839, 1100=>619, 1101=>575, 1102=>908, 1103=>636, 1104=>552, 1105=>552, 1106=>606, 1107=>454, 1108=>556, 1109=>556, 1110=>278, 1111=>278,
- 1112=>278, 1113=>900, 1114=>611, 1115=>606, 1117=>636, 1118=>556, 1119=>636, 1164=>639, 1165=>619, 1166=>649, 1167=>611, 1168=>611, 1169=>454, 1170=>611, 1171=>475, 1172=>611,
- 1173=>475, 1174=>1054, 1175=>775, 1176=>659, 1177=>556, 1178=>720, 1179=>529, 1180=>720, 1181=>529, 1182=>720, 1183=>529, 1184=>720, 1185=>529, 1186=>722, 1187=>636, 1188=>722,
- 1189=>636, 1190=>722, 1191=>636, 1192=>837, 1193=>554, 1194=>837, 1195=>554, 1196=>611, 1197=>454, 1198=>667, 1199=>556, 1200=>667, 1201=>556, 1202=>664, 1203=>554, 1204=>730,
- 1205=>690, 1206=>671, 1207=>606, 1208=>671, 1209=>606, 1210=>671, 1211=>606, 1212=>837, 1213=>554, 1214=>837, 1215=>554, 1216=>278, 1217=>1054, 1218=>775, 1219=>720, 1220=>529,
- 1223=>722, 1224=>636, 1227=>671, 1228=>606, 1232=>722, 1233=>554, 1234=>722, 1235=>554, 1236=>1000, 1237=>889, 1238=>666, 1239=>552, 1240=>837, 1241=>554, 1242=>837, 1243=>554,
- 1244=>1054, 1245=>775, 1246=>659, 1247=>556, 1248=>659, 1249=>556, 1250=>722, 1251=>636, 1252=>722, 1253=>636, 1254=>778, 1255=>611, 1256=>778, 1257=>611, 1258=>778, 1259=>611,
- 1260=>737, 1261=>575, 1262=>698, 1263=>552, 1264=>698, 1265=>552, 1266=>698, 1267=>552, 1268=>671, 1269=>606, 1272=>939, 1273=>839, 1456=>82, 1457=>347, 1458=>341, 1459=>341,
- 1460=>82, 1461=>211, 1462=>211, 1463=>200, 1464=>200, 1465=>82, 1467=>341, 1468=>82, 1469=>82, 1470=>516, 1471=>200, 1472=>297, 1473=>1038, 1474=>1038, 1475=>333, 1476=>82,
- 1488=>714, 1489=>651, 1490=>557, 1491=>638, 1492=>682, 1493=>297, 1494=>443, 1495=>682, 1496=>670, 1497=>284, 1498=>590, 1499=>595, 1500=>667, 1501=>683, 1502=>704, 1503=>297,
- 1504=>429, 1505=>670, 1506=>653, 1507=>661, 1508=>660, 1509=>616, 1510=>671, 1511=>672, 1512=>600, 1513=>840, 1514=>756, 1520=>554, 1521=>550, 1522=>542, 1523=>238, 1524=>474,
- 7936=>656, 7937=>656, 7938=>656, 7939=>656, 7940=>656, 7941=>656, 7942=>656, 7943=>656, 7944=>764, 7945=>764, 7946=>764, 7947=>764, 7948=>764, 7949=>764, 7950=>764, 7951=>764,
- 7952=>570, 7953=>570, 7954=>570, 7955=>570, 7956=>570, 7957=>570, 7960=>710, 7961=>710, 7962=>710, 7963=>710, 7964=>710, 7965=>710, 7968=>586, 7969=>586, 7970=>586, 7971=>586,
- 7972=>586, 7973=>586, 7974=>586, 7975=>586, 7976=>743, 7977=>743, 7978=>743, 7979=>743, 7980=>743, 7981=>743, 7982=>743, 7983=>743, 7984=>346, 7985=>346, 7986=>346, 7987=>346,
- 7988=>346, 7989=>346, 7990=>346, 7991=>346, 7992=>296, 7993=>296, 7994=>296, 7995=>296, 7996=>296, 7997=>296, 7998=>296, 7999=>296, 8000=>610, 8001=>610, 8002=>610, 8003=>610,
- 8004=>610, 8005=>610, 8008=>822, 8009=>822, 8010=>822, 8011=>822, 8012=>822, 8013=>822, 8016=>575, 8017=>575, 8018=>575, 8019=>575, 8020=>575, 8021=>575, 8022=>575, 8023=>575,
- 8025=>744, 8027=>744, 8029=>744, 8031=>744, 8032=>800, 8033=>800, 8034=>800, 8035=>800, 8036=>800, 8037=>800, 8038=>800, 8039=>800, 8040=>780, 8041=>780, 8042=>780, 8043=>780,
- 8044=>780, 8045=>780, 8046=>780, 8047=>780, 8048=>656, 8049=>656, 8050=>570, 8051=>570, 8052=>586, 8053=>586, 8054=>346, 8055=>346, 8056=>610, 8057=>610, 8058=>575, 8059=>575,
- 8060=>800, 8061=>800, 8064=>656, 8065=>656, 8066=>656, 8067=>656, 8068=>656, 8069=>656, 8070=>656, 8071=>656, 8072=>1007, 8073=>1007, 8074=>1007, 8075=>1007, 8076=>1007, 8077=>1007,
- 8078=>1007, 8079=>1007, 8080=>586, 8081=>586, 8082=>586, 8083=>586, 8084=>586, 8085=>586, 8086=>586, 8087=>586, 8088=>986, 8089=>986, 8090=>986, 8091=>986, 8092=>986, 8093=>986,
- 8094=>986, 8095=>986, 8096=>800, 8097=>800, 8098=>800, 8099=>800, 8100=>800, 8101=>800, 8102=>800, 8103=>800, 8104=>1023, 8105=>1023, 8106=>1023, 8107=>1023, 8108=>1023, 8109=>1023,
- 8110=>1023, 8111=>1023, 8112=>656, 8113=>656, 8114=>656, 8115=>656, 8116=>640, 8118=>656, 8119=>656, 8120=>764, 8121=>764, 8122=>764, 8123=>764, 8124=>1007, 8125=>278, 8126=>201,
- 8127=>147, 8128=>278, 8129=>333, 8130=>586, 8131=>586, 8132=>597, 8134=>586, 8135=>586, 8136=>710, 8137=>710, 8138=>743, 8139=>743, 8140=>986, 8141=>402, 8142=>403, 8143=>147,
- 8144=>346, 8145=>346, 8146=>346, 8147=>346, 8150=>346, 8151=>346, 8152=>296, 8153=>296, 8154=>296, 8155=>296, 8157=>434, 8158=>433, 8159=>333, 8160=>575, 8161=>575, 8162=>575,
- 8163=>575, 8164=>626, 8165=>626, 8166=>575, 8167=>575, 8168=>744, 8169=>744, 8173=>333, 8174=>351, 8175=>303, 8182=>800, 8183=>800, 8184=>822, 8185=>822, 8186=>780, 8187=>780,
- 8188=>1023, 8189=>333, 8190=>159, 8260=>167, 8263=>1222, 8264=>944, 8265=>944, 8362=>1049, 8706=>490, 8710=>729, 8721=>711, 8722=>584, 8730=>542, 8800=>584, 8804=>584, 8805=>584,
- 9674=>489, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556, 63166=>278, 63171=>333, 63196=>556, 64256=>666, 64257=>611, 64258=>611,
- 64259=>944, 64260=>944, 64261=>666, 64262=>889, 64285=>284, 64286=>305, 64287=>542, 64288=>653, 64289=>964, 64290=>888, 64291=>932, 64292=>845, 64293=>917, 64294=>933, 64295=>850, 64296=>1006,
- 64297=>584, 64298=>840, 64299=>840, 64300=>840, 64301=>840, 64302=>714, 64303=>714, 64304=>714, 64305=>651, 64306=>557, 64307=>638, 64308=>682, 64309=>367, 64310=>443, 64312=>670, 64313=>354,
- 64314=>590, 64315=>595, 64316=>667, 64318=>704, 64320=>429, 64321=>670, 64323=>661, 64324=>660, 64326=>671, 64327=>672, 64328=>600, 64329=>840, 64330=>756, 64331=>297, 64332=>651, 64333=>595,
- 64334=>660, 64335=>714);
+ 32=>278, 33=>333, 34=>474, 35=>556, 36=>556, 37=>889, 38=>722, 39=>238, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278, 47=>278,
+ 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>333, 59=>333, 60=>584, 61=>584, 62=>584, 63=>611,
+ 64=>975, 65=>722, 66=>722, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>556, 75=>722, 76=>611, 77=>833, 78=>722, 79=>778,
+ 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>333, 92=>278, 93=>333, 94=>584, 95=>556,
+ 96=>333, 97=>556, 98=>611, 99=>556, 100=>611, 101=>556, 102=>333, 103=>611, 104=>611, 105=>278, 106=>278, 107=>556, 108=>278, 109=>889, 110=>611, 111=>611,
+ 112=>611, 113=>611, 114=>389, 115=>556, 116=>333, 117=>611, 118=>556, 119=>778, 120=>556, 121=>556, 122=>500, 123=>389, 124=>280, 125=>389, 126=>584, 8364=>556,
+ 1027=>611, 8218=>278, 402=>556, 8222=>500, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>720, 381=>611, 1039=>722, 8216=>278,
+ 8217=>278, 8220=>500, 8221=>500, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>556, 8250=>333, 339=>944, 1116=>529, 382=>500, 376=>667, 160=>278, 161=>333,
+ 162=>556, 163=>556, 164=>556, 165=>556, 166=>280, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 173=>333, 174=>737, 175=>333, 176=>606, 177=>584,
+ 178=>444, 179=>444, 180=>333, 181=>611, 182=>556, 183=>278, 184=>333, 185=>444, 186=>365, 187=>556, 188=>1055, 189=>1055, 190=>1055, 191=>611, 192=>722, 193=>722,
+ 194=>722, 195=>722, 196=>722, 197=>722, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722, 209=>722,
+ 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556,
+ 226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>556, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>611, 241=>611,
+ 242=>611, 243=>611, 244=>611, 245=>611, 246=>611, 247=>584, 248=>611, 249=>611, 250=>611, 251=>611, 252=>611, 253=>556, 254=>611, 255=>556, 256=>722, 257=>556,
+ 258=>722, 259=>556, 260=>722, 261=>556, 262=>722, 263=>556, 264=>722, 265=>556, 266=>722, 267=>556, 268=>722, 269=>556, 270=>722, 271=>722, 272=>722, 273=>611,
+ 274=>667, 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>611, 286=>778, 287=>611, 288=>778, 289=>611,
+ 290=>778, 291=>611, 292=>722, 293=>611, 294=>722, 295=>611, 296=>278, 297=>278, 298=>278, 299=>278, 300=>278, 301=>278, 302=>278, 303=>268, 304=>278, 305=>278,
+ 306=>278, 307=>278, 308=>556, 309=>278, 310=>722, 311=>556, 312=>529, 313=>611, 314=>278, 315=>611, 316=>278, 317=>611, 318=>384, 319=>611, 320=>556, 321=>611,
+ 322=>278, 323=>722, 324=>611, 325=>722, 326=>611, 327=>722, 328=>611, 329=>611, 330=>722, 331=>611, 332=>778, 333=>611, 334=>778, 335=>611, 336=>778, 337=>611,
+ 340=>722, 341=>389, 342=>722, 343=>389, 344=>722, 345=>389, 346=>667, 347=>556, 348=>667, 349=>556, 350=>667, 351=>556, 354=>611, 355=>333, 356=>611, 357=>404,
+ 358=>611, 359=>333, 360=>722, 361=>611, 362=>722, 363=>611, 364=>722, 365=>611, 366=>722, 367=>611, 368=>722, 369=>611, 370=>722, 371=>611, 372=>944, 373=>778,
+ 374=>667, 375=>556, 377=>611, 378=>500, 379=>611, 380=>500, 383=>333, 384=>611, 385=>963, 386=>722, 387=>611, 388=>687, 389=>611, 390=>722, 391=>752, 392=>562,
+ 393=>722, 394=>968, 395=>722, 396=>611, 398=>667, 399=>778, 400=>672, 401=>611, 403=>778, 405=>889, 407=>395, 408=>778, 409=>556, 412=>889, 413=>722, 414=>611,
+ 415=>778, 416=>778, 417=>611, 418=>1111, 420=>914, 421=>611, 423=>667, 424=>556, 425=>688, 427=>333, 428=>742, 429=>333, 430=>611, 431=>722, 432=>611, 433=>780,
+ 435=>667, 436=>706, 439=>556, 440=>556, 452=>1333, 453=>1222, 454=>1111, 455=>1167, 456=>889, 457=>556, 458=>1278, 459=>1000, 460=>889, 461=>722, 462=>556, 463=>278,
+ 464=>278, 465=>778, 466=>611, 467=>722, 468=>611, 477=>556, 482=>1000, 483=>889, 486=>778, 487=>611, 488=>722, 489=>556, 490=>778, 491=>611, 492=>778, 493=>611,
+ 496=>278, 497=>1333, 498=>1222, 499=>1111, 500=>778, 501=>611, 504=>722, 505=>611, 506=>722, 507=>556, 508=>1000, 509=>889, 510=>778, 511=>611, 512=>722, 513=>556,
+ 514=>722, 515=>556, 516=>667, 517=>556, 518=>667, 519=>556, 520=>278, 521=>278, 522=>278, 523=>278, 524=>778, 525=>611, 526=>778, 527=>611, 528=>722, 529=>389,
+ 530=>722, 531=>389, 532=>722, 533=>611, 534=>722, 535=>611, 536=>667, 537=>556, 538=>611, 539=>333, 542=>722, 543=>611, 550=>722, 551=>556, 552=>667, 553=>556,
+ 558=>778, 559=>611, 562=>667, 563=>556, 592=>556, 593=>611, 594=>611, 595=>611, 596=>556, 598=>611, 599=>611, 600=>556, 601=>556, 603=>570, 604=>546, 606=>570,
+ 607=>278, 608=>611, 609=>611, 613=>619, 614=>611, 615=>611, 616=>278, 617=>344, 618=>278, 621=>298, 622=>778, 623=>889, 624=>889, 625=>889, 626=>611, 627=>611,
+ 628=>615, 629=>611, 632=>778, 633=>389, 634=>389, 635=>389, 636=>389, 637=>389, 638=>455, 639=>455, 640=>620, 641=>620, 642=>556, 643=>333, 644=>278, 645=>333,
+ 647=>328, 648=>333, 649=>623, 652=>556, 653=>778, 654=>556, 656=>500, 658=>556, 660=>611, 661=>611, 662=>611, 664=>611, 665=>572, 666=>570, 668=>603, 670=>556,
+ 671=>454, 672=>611, 673=>611, 711=>333, 713=>333, 714=>333, 715=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0,
+ 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 780=>0, 783=>0, 785=>0, 787=>0, 788=>0, 884=>208, 885=>247, 890=>364, 894=>333, 900=>308,
+ 901=>446, 902=>688, 903=>418, 904=>642, 905=>743, 906=>228, 908=>754, 910=>736, 911=>743, 912=>346, 913=>764, 914=>688, 915=>642, 916=>744, 917=>710, 918=>688,
+ 919=>743, 920=>810, 921=>296, 922=>744, 923=>744, 924=>860, 925=>714, 926=>690, 927=>822, 928=>781, 929=>698, 931=>688, 932=>688, 933=>744, 934=>777, 935=>783,
+ 936=>805, 937=>780, 938=>296, 939=>744, 940=>640, 941=>530, 942=>597, 943=>339, 944=>575, 945=>656, 946=>576, 947=>591, 948=>620, 949=>570, 950=>522, 951=>586,
+ 952=>586, 953=>346, 954=>576, 955=>620, 956=>667, 957=>564, 958=>530, 959=>610, 960=>721, 961=>626, 962=>595, 963=>676, 964=>592, 965=>575, 966=>801, 967=>632,
+ 968=>722, 969=>800, 970=>346, 971=>575, 972=>609, 973=>604, 974=>769, 1024=>666, 1025=>666, 1026=>790, 1028=>722, 1029=>667, 1030=>278, 1031=>278, 1032=>556, 1033=>1110,
+ 1034=>1088, 1035=>790, 1037=>722, 1038=>698, 1040=>722, 1041=>722, 1042=>722, 1043=>611, 1044=>918, 1045=>667, 1046=>1054, 1047=>659, 1048=>722, 1049=>722, 1050=>722, 1051=>722,
+ 1052=>833, 1053=>722, 1054=>778, 1055=>722, 1056=>667, 1057=>722, 1058=>611, 1059=>698, 1060=>902, 1061=>664, 1062=>730, 1063=>671, 1064=>1101, 1065=>1179, 1066=>816, 1067=>939,
+ 1068=>639, 1069=>737, 1070=>1080, 1071=>690, 1072=>556, 1073=>611, 1074=>621, 1075=>475, 1076=>804, 1077=>556, 1078=>775, 1079=>556, 1080=>636, 1081=>636, 1082=>529, 1083=>608,
+ 1084=>697, 1085=>636, 1086=>611, 1087=>636, 1088=>611, 1089=>556, 1090=>454, 1091=>552, 1092=>989, 1093=>554, 1094=>690, 1095=>606, 1096=>934, 1097=>987, 1098=>741, 1099=>839,
+ 1100=>619, 1101=>575, 1102=>908, 1103=>636, 1104=>552, 1105=>552, 1106=>606, 1107=>475, 1108=>556, 1109=>556, 1110=>278, 1111=>278, 1112=>278, 1113=>900, 1114=>611, 1115=>606,
+ 1117=>636, 1118=>552, 1119=>636, 1164=>639, 1165=>619, 1166=>649, 1167=>611, 1168=>611, 1169=>454, 1170=>611, 1171=>475, 1172=>611, 1173=>475, 1174=>1054, 1175=>775, 1176=>659,
+ 1177=>556, 1178=>720, 1179=>529, 1180=>720, 1181=>529, 1182=>720, 1183=>529, 1184=>889, 1185=>650, 1186=>722, 1187=>636, 1188=>992, 1189=>807, 1190=>1067, 1191=>876, 1192=>837,
+ 1193=>554, 1194=>837, 1195=>554, 1196=>611, 1197=>454, 1198=>667, 1199=>667, 1200=>667, 1201=>667, 1202=>664, 1203=>554, 1204=>864, 1205=>727, 1206=>743, 1207=>606, 1208=>671,
+ 1209=>606, 1210=>671, 1211=>606, 1212=>837, 1213=>552, 1214=>837, 1215=>552, 1216=>278, 1217=>1054, 1218=>775, 1219=>720, 1220=>529, 1223=>722, 1224=>636, 1227=>671, 1228=>606,
+ 1232=>722, 1233=>554, 1234=>722, 1235=>554, 1236=>1000, 1237=>889, 1238=>666, 1239=>552, 1240=>837, 1241=>552, 1242=>837, 1243=>552, 1244=>1054, 1245=>775, 1246=>659, 1247=>556,
+ 1248=>659, 1249=>556, 1250=>722, 1251=>636, 1252=>722, 1253=>636, 1254=>778, 1255=>611, 1256=>778, 1257=>611, 1258=>778, 1259=>611, 1260=>737, 1261=>575, 1262=>698, 1263=>552,
+ 1264=>698, 1265=>552, 1266=>698, 1267=>552, 1268=>671, 1269=>606, 1272=>939, 1273=>839, 1456=>82, 1457=>347, 1458=>341, 1459=>341, 1460=>82, 1461=>211, 1462=>211, 1463=>200,
+ 1464=>200, 1465=>82, 1467=>341, 1468=>82, 1469=>82, 1470=>516, 1471=>200, 1472=>297, 1473=>1038, 1474=>1038, 1475=>333, 1476=>82, 1488=>714, 1489=>651, 1490=>557, 1491=>638,
+ 1492=>682, 1493=>297, 1494=>443, 1495=>682, 1496=>670, 1497=>284, 1498=>590, 1499=>595, 1500=>667, 1501=>683, 1502=>704, 1503=>297, 1504=>429, 1505=>670, 1506=>653, 1507=>661,
+ 1508=>660, 1509=>616, 1510=>671, 1511=>672, 1512=>600, 1513=>840, 1514=>756, 1520=>554, 1521=>550, 1522=>542, 1523=>238, 1524=>474, 7936=>656, 7937=>656, 7938=>656, 7939=>656,
+ 7940=>656, 7941=>656, 7942=>656, 7943=>656, 7944=>764, 7945=>764, 7946=>764, 7947=>764, 7948=>764, 7949=>764, 7950=>764, 7951=>764, 7952=>570, 7953=>570, 7954=>570, 7955=>570,
+ 7956=>570, 7957=>570, 7960=>710, 7961=>710, 7962=>710, 7963=>710, 7964=>710, 7965=>710, 7968=>586, 7969=>586, 7970=>586, 7971=>586, 7972=>586, 7973=>586, 7974=>586, 7975=>586,
+ 7976=>743, 7977=>743, 7978=>743, 7979=>743, 7980=>743, 7981=>743, 7982=>743, 7983=>743, 7984=>346, 7985=>346, 7986=>346, 7987=>346, 7988=>346, 7989=>346, 7990=>346, 7991=>346,
+ 7992=>296, 7993=>296, 7994=>296, 7995=>296, 7996=>296, 7997=>296, 7998=>296, 7999=>296, 8000=>610, 8001=>610, 8002=>610, 8003=>610, 8004=>610, 8005=>610, 8008=>822, 8009=>822,
+ 8010=>822, 8011=>822, 8012=>822, 8013=>822, 8016=>575, 8017=>575, 8018=>575, 8019=>575, 8020=>575, 8021=>575, 8022=>575, 8023=>575, 8025=>744, 8027=>744, 8029=>744, 8031=>744,
+ 8032=>800, 8033=>800, 8034=>800, 8035=>800, 8036=>800, 8037=>800, 8038=>800, 8039=>800, 8040=>780, 8041=>780, 8042=>780, 8043=>780, 8044=>780, 8045=>780, 8046=>780, 8047=>780,
+ 8048=>656, 8049=>656, 8050=>570, 8051=>570, 8052=>586, 8053=>586, 8054=>346, 8055=>346, 8056=>610, 8057=>610, 8058=>575, 8059=>575, 8060=>800, 8061=>800, 8064=>656, 8065=>656,
+ 8066=>656, 8067=>656, 8068=>656, 8069=>656, 8070=>656, 8071=>656, 8072=>1007, 8073=>1007, 8074=>1007, 8075=>1007, 8076=>1007, 8077=>1007, 8078=>1007, 8079=>1007, 8080=>586, 8081=>586,
+ 8082=>586, 8083=>586, 8084=>586, 8085=>586, 8086=>586, 8087=>586, 8088=>986, 8089=>986, 8090=>986, 8091=>986, 8092=>986, 8093=>986, 8094=>986, 8095=>986, 8096=>800, 8097=>800,
+ 8098=>800, 8099=>800, 8100=>800, 8101=>800, 8102=>800, 8103=>800, 8104=>1023, 8105=>1023, 8106=>1023, 8107=>1023, 8108=>1023, 8109=>1023, 8110=>1023, 8111=>1023, 8112=>656, 8113=>656,
+ 8114=>656, 8115=>656, 8116=>640, 8118=>656, 8119=>656, 8120=>764, 8121=>764, 8122=>764, 8123=>764, 8124=>1007, 8125=>278, 8126=>201, 8127=>147, 8128=>278, 8129=>333, 8130=>586,
+ 8131=>586, 8132=>597, 8134=>586, 8135=>586, 8136=>710, 8137=>710, 8138=>743, 8139=>743, 8140=>986, 8141=>402, 8142=>403, 8143=>147, 8144=>346, 8145=>346, 8146=>346, 8147=>346,
+ 8150=>346, 8151=>346, 8152=>296, 8153=>296, 8154=>296, 8155=>296, 8157=>434, 8158=>433, 8159=>333, 8160=>575, 8161=>575, 8162=>575, 8163=>575, 8164=>626, 8165=>626, 8166=>575,
+ 8167=>575, 8168=>744, 8169=>744, 8173=>333, 8174=>351, 8175=>303, 8182=>800, 8183=>800, 8184=>822, 8185=>822, 8186=>780, 8187=>780, 8188=>1023, 8189=>333, 8190=>159, 8210=>556,
+ 8213=>1000, 8260=>167, 8263=>1222, 8264=>944, 8265=>944, 8304=>351, 8305=>351, 8308=>351, 8309=>351, 8310=>351, 8311=>351, 8312=>351, 8313=>351, 8314=>351, 8315=>351, 8316=>351,
+ 8317=>351, 8318=>351, 8319=>351, 8320=>351, 8321=>351, 8322=>351, 8323=>351, 8324=>351, 8325=>351, 8326=>351, 8327=>351, 8328=>351, 8329=>351, 8330=>351, 8331=>351, 8332=>351,
+ 8333=>351, 8334=>351, 8362=>1049, 8373=>591, 8486=>780, 8487=>780, 8531=>869, 8532=>869, 8533=>869, 8534=>869, 8535=>869, 8536=>869, 8537=>869, 8538=>869, 8539=>869, 8540=>869,
+ 8541=>869, 8542=>869, 8543=>869, 8544=>278, 8545=>556, 8546=>834, 8547=>945, 8548=>667, 8549=>945, 8550=>1223, 8551=>1501, 8552=>945, 8553=>667, 8554=>945, 8555=>1223, 8556=>611,
+ 8557=>722, 8558=>722, 8559=>833, 8560=>278, 8561=>556, 8562=>834, 8563=>834, 8564=>556, 8565=>834, 8566=>1112, 8567=>1390, 8568=>834, 8569=>556, 8570=>834, 8571=>1112, 8572=>278,
+ 8573=>556, 8574=>611, 8575=>889, 8592=>964, 8593=>964, 8594=>964, 8595=>964, 8596=>964, 8597=>964, 8598=>964, 8599=>964, 8600=>964, 8601=>964, 8602=>964, 8603=>964, 8606=>964,
+ 8607=>964, 8608=>964, 8609=>964, 8610=>964, 8611=>964, 8612=>964, 8613=>964, 8614=>964, 8615=>964, 8616=>964, 8644=>964, 8645=>964, 8646=>964, 8647=>964, 8648=>964, 8649=>964,
+ 8650=>964, 8706=>490, 8710=>729, 8721=>711, 8722=>584, 8723=>584, 8725=>1055, 8730=>542, 8800=>584, 8804=>584, 8805=>584, 9674=>489, 9833=>333, 9834=>556, 9835=>778, 9836=>778,
+ 9837=>556, 9838=>556, 9839=>556, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556, 63166=>278, 63171=>333, 63196=>556, 64256=>666,
+ 64257=>611, 64258=>611, 64259=>944, 64260=>944, 64261=>666, 64262=>889, 64285=>284, 64286=>305, 64287=>542, 64288=>653, 64289=>964, 64290=>888, 64291=>932, 64292=>845, 64293=>917, 64294=>933,
+ 64295=>850, 64296=>1006, 64297=>584, 64298=>840, 64299=>840, 64300=>840, 64301=>840, 64302=>714, 64303=>714, 64304=>714, 64305=>651, 64306=>557, 64307=>638, 64308=>682, 64309=>367, 64310=>443,
+ 64312=>670, 64313=>354, 64314=>590, 64315=>595, 64316=>667, 64318=>704, 64320=>429, 64321=>670, 64323=>661, 64324=>660, 64326=>671, 64327=>672, 64328=>600, 64329=>840, 64330=>756, 64331=>297,
+ 64332=>651, 64333=>595, 64334=>660, 64335=>714, 65533=>788);
$enc='';
$diff='';
-$file='FreeSansBoldOblique.z';
-$ctg='FreeSansBoldOblique.ctg.z';
-$originalsize=95508;
+$file='freesansbi.z';
+$ctg='freesansbi.ctg.z';
+$originalsize=112240;
?>
diff --git a/lib/tcpdf/fonts/freesansbi.z b/lib/tcpdf/fonts/freesansbi.z
new file mode 100644
index 0000000000..e04b4ad785
Binary files /dev/null and b/lib/tcpdf/fonts/freesansbi.z differ
diff --git a/lib/tcpdf/fonts/freesansi.ctg.z b/lib/tcpdf/fonts/freesansi.ctg.z
new file mode 100644
index 0000000000..2bd86d1cf4
Binary files /dev/null and b/lib/tcpdf/fonts/freesansi.ctg.z differ
diff --git a/lib/tcpdf/fonts/freesansi.php b/lib/tcpdf/fonts/freesansi.php
index e91d8c55c8..6ff7b4fa7d 100755
--- a/lib/tcpdf/fonts/freesansi.php
+++ b/lib/tcpdf/fonts/freesansi.php
@@ -1,85 +1,104 @@
1141,'Descent'=>-419,'CapHeight'=>1141,'Flags'=>96,'FontBBox'=>'[-313 -419 1129 1141]','ItalicAngle'=>-12,'StemV'=>70,'MissingWidth'=>600);
+$desc=array('Ascent'=>1142,'Descent'=>-431,'CapHeight'=>1142,'Flags'=>96,'FontBBox'=>'[-620 -431 1459 1141]','ItalicAngle'=>-12,'StemV'=>70,'MissingWidth'=>600);
$up=-151;
$ut=50;
$cw=array(
- 13=>333, 32=>278, 33=>278, 34=>355, 35=>556, 36=>556, 37=>889, 38=>667, 39=>191, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278,
- 47=>278, 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>278, 59=>278, 60=>584, 61=>584, 62=>584,
- 63=>556, 64=>1015, 65=>667, 66=>667, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>500, 75=>667, 76=>556, 77=>833, 78=>722,
- 79=>778, 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>278, 92=>278, 93=>278, 94=>469,
- 95=>556, 96=>333, 97=>556, 98=>556, 99=>500, 100=>556, 101=>556, 102=>278, 103=>556, 104=>556, 105=>222, 106=>222, 107=>500, 108=>222, 109=>833, 110=>556,
- 111=>556, 112=>556, 113=>556, 114=>333, 115=>500, 116=>278, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, 122=>500, 123=>334, 124=>260, 125=>334, 126=>584,
- 8364=>556, 1027=>611, 8218=>222, 402=>556, 8222=>333, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>667, 381=>611, 1039=>722,
- 8216=>222, 8217=>222, 8220=>333, 8221=>333, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>500, 8250=>333, 339=>944, 1116=>500, 382=>500, 376=>667, 161=>333,
- 162=>556, 163=>556, 164=>556, 165=>556, 166=>260, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 173=>333, 174=>737, 175=>333, 176=>606, 177=>584,
- 178=>390, 179=>390, 180=>333, 181=>556, 182=>537, 183=>278, 184=>333, 185=>390, 186=>365, 187=>556, 188=>947, 189=>947, 190=>947, 191=>611, 192=>667, 193=>667,
- 194=>667, 195=>667, 196=>667, 197=>667, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722, 209=>722,
- 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556,
- 226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>500, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>556, 241=>556,
- 242=>556, 243=>556, 244=>556, 245=>556, 246=>556, 247=>584, 248=>611, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>556, 255=>500, 256=>667, 257=>556,
- 258=>667, 259=>556, 260=>667, 261=>556, 262=>722, 263=>500, 264=>722, 265=>500, 266=>722, 267=>500, 268=>722, 269=>500, 270=>722, 271=>650, 272=>722, 273=>556,
- 274=>667, 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>556, 286=>778, 287=>556, 288=>778, 289=>556,
- 290=>778, 291=>527, 292=>722, 293=>556, 294=>722, 295=>556, 296=>278, 297=>278, 298=>278, 299=>222, 300=>278, 301=>278, 302=>278, 303=>222, 304=>278, 305=>278,
- 306=>742, 307=>362, 308=>500, 309=>222, 310=>667, 311=>500, 312=>510, 313=>556, 314=>222, 315=>556, 316=>222, 317=>556, 318=>307, 319=>556, 320=>500, 321=>556,
- 322=>222, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>556, 330=>722, 331=>556, 332=>778, 333=>556, 334=>778, 335=>556, 336=>778, 337=>556,
- 340=>722, 341=>333, 342=>722, 343=>333, 344=>722, 345=>333, 346=>667, 347=>500, 348=>667, 349=>500, 350=>667, 351=>500, 354=>611, 355=>278, 356=>611, 357=>319,
- 358=>611, 359=>278, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>944, 373=>722,
- 374=>667, 375=>500, 377=>611, 378=>500, 379=>611, 380=>500, 383=>278, 461=>667, 462=>556, 463=>278, 464=>278, 465=>778, 466=>556, 467=>722, 468=>556, 469=>722,
- 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556, 478=>667, 479=>556, 482=>1000, 483=>889, 486=>778, 487=>556, 488=>667, 489=>500, 490=>778,
- 491=>556, 492=>778, 493=>556, 496=>222, 500=>778, 501=>556, 504=>722, 505=>556, 506=>667, 507=>556, 508=>1000, 509=>889, 510=>778, 511=>611, 512=>667, 513=>556,
- 514=>667, 515=>556, 516=>667, 517=>556, 518=>667, 519=>556, 520=>278, 521=>278, 522=>278, 523=>278, 524=>778, 525=>556, 526=>778, 527=>556, 528=>722, 529=>333,
- 530=>722, 531=>333, 532=>722, 533=>556, 534=>722, 535=>556, 536=>667, 537=>500, 538=>611, 539=>278, 711=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333,
- 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 783=>0, 785=>0, 787=>0, 788=>0, 884=>199, 885=>199,
- 890=>332, 894=>278, 900=>291, 901=>624, 902=>659, 903=>358, 904=>657, 905=>678, 906=>183, 908=>729, 910=>699, 911=>747, 912=>286, 913=>684, 914=>628, 915=>582,
- 916=>684, 917=>650, 918=>628, 919=>683, 920=>750, 921=>236, 922=>684, 923=>684, 924=>800, 925=>654, 926=>630, 927=>750, 928=>721, 929=>638, 931=>628, 932=>628,
- 933=>684, 934=>717, 935=>723, 936=>745, 937=>720, 938=>236, 939=>684, 940=>593, 941=>519, 942=>595, 943=>271, 944=>515, 945=>596, 946=>516, 947=>531, 948=>560,
- 949=>510, 950=>462, 951=>526, 952=>526, 953=>286, 954=>516, 955=>560, 956=>607, 957=>504, 958=>470, 959=>550, 960=>661, 961=>566, 962=>535, 963=>616, 964=>532,
- 965=>515, 966=>741, 967=>572, 968=>662, 969=>740, 970=>286, 971=>515, 972=>535, 973=>503, 974=>725, 1024=>667, 1025=>667, 1026=>766, 1028=>722, 1029=>667, 1030=>278,
- 1031=>278, 1032=>500, 1033=>968, 1034=>1173, 1035=>766, 1037=>731, 1038=>650, 1040=>667, 1041=>639, 1042=>667, 1043=>611, 1044=>816, 1045=>667, 1046=>897, 1047=>652, 1048=>731,
- 1049=>731, 1050=>664, 1051=>646, 1052=>833, 1053=>722, 1054=>778, 1055=>722, 1056=>667, 1057=>722, 1058=>611, 1059=>530, 1060=>891, 1061=>667, 1062=>722, 1063=>642, 1064=>836,
- 1065=>837, 1066=>866, 1067=>886, 1068=>698, 1069=>717, 1070=>1079, 1071=>691, 1072=>556, 1073=>556, 1074=>538, 1075=>430, 1076=>640, 1077=>556, 1078=>818, 1079=>495, 1080=>560,
- 1081=>560, 1082=>510, 1083=>556, 1084=>621, 1085=>561, 1086=>556, 1087=>560, 1088=>556, 1089=>500, 1090=>400, 1091=>500, 1092=>916, 1093=>500, 1094=>560, 1095=>497, 1096=>695,
- 1097=>695, 1098=>640, 1099=>734, 1100=>523, 1101=>534, 1102=>788, 1103=>564, 1104=>556, 1105=>556, 1106=>568, 1107=>430, 1108=>500, 1109=>500, 1110=>222, 1111=>278, 1112=>222,
- 1113=>840, 1114=>850, 1115=>568, 1117=>560, 1118=>500, 1119=>560, 1164=>698, 1165=>523, 1166=>667, 1167=>556, 1168=>611, 1169=>430, 1170=>611, 1171=>430, 1172=>611, 1173=>430,
- 1174=>897, 1175=>818, 1176=>652, 1177=>495, 1178=>664, 1179=>510, 1180=>664, 1181=>510, 1182=>664, 1183=>510, 1184=>664, 1185=>510, 1186=>722, 1187=>561, 1188=>722, 1189=>561,
- 1190=>722, 1191=>560, 1192=>722, 1193=>495, 1194=>722, 1195=>495, 1196=>611, 1197=>400, 1198=>667, 1199=>500, 1200=>667, 1201=>500, 1202=>665, 1203=>496, 1204=>722, 1205=>560,
- 1206=>642, 1207=>497, 1208=>642, 1209=>497, 1210=>642, 1211=>497, 1212=>722, 1213=>495, 1214=>722, 1215=>495, 1216=>278, 1217=>897, 1218=>818, 1219=>664, 1220=>510, 1223=>722,
- 1224=>561, 1227=>642, 1228=>497, 1232=>667, 1233=>556, 1234=>667, 1235=>556, 1236=>1000, 1237=>889, 1238=>667, 1239=>556, 1240=>722, 1241=>495, 1242=>722, 1243=>495, 1244=>897,
- 1245=>818, 1246=>652, 1247=>495, 1248=>652, 1249=>495, 1250=>731, 1251=>560, 1252=>731, 1253=>560, 1254=>778, 1255=>556, 1256=>780, 1257=>554, 1258=>780, 1259=>554, 1260=>717,
- 1261=>534, 1262=>530, 1263=>500, 1264=>530, 1265=>500, 1266=>530, 1267=>500, 1268=>642, 1269=>497, 1272=>886, 1273=>734, 1329=>722, 1330=>705, 1331=>774, 1332=>754, 1333=>722,
- 1334=>751, 1335=>485, 1336=>722, 1337=>782, 1338=>655, 1339=>699, 1340=>417, 1341=>853, 1342=>791, 1343=>711, 1344=>588, 1345=>663, 1346=>665, 1347=>665, 1348=>756, 1349=>623,
- 1350=>773, 1351=>603, 1352=>722, 1353=>648, 1354=>722, 1355=>751, 1356=>750, 1357=>722, 1358=>748, 1359=>667, 1360=>699, 1361=>623, 1362=>417, 1363=>785, 1364=>638, 1365=>778,
- 1366=>716, 1370=>222, 1371=>133, 1372=>325, 1373=>333, 1374=>344, 1377=>833, 1378=>556, 1379=>572, 1380=>581, 1381=>550, 1382=>588, 1383=>448, 1384=>556, 1385=>568, 1386=>582,
- 1387=>545, 1388=>301, 1389=>799, 1390=>556, 1391=>554, 1392=>533, 1393=>548, 1394=>552, 1395=>552, 1396=>544, 1397=>222, 1398=>544, 1399=>456, 1400=>556, 1401=>390, 1402=>833,
- 1403=>509, 1404=>547, 1405=>533, 1406=>610, 1407=>887, 1408=>556, 1409=>545, 1410=>352, 1411=>853, 1412=>588, 1413=>579, 1414=>690, 1415=>545, 1417=>278, 1418=>367, 1456=>70,
- 1457=>335, 1458=>329, 1459=>329, 1460=>70, 1461=>200, 1462=>200, 1463=>188, 1464=>188, 1465=>70, 1467=>329, 1468=>70, 1469=>70, 1470=>488, 1471=>200, 1472=>212, 1473=>0,
- 1474=>0, 1475=>278, 1476=>70, 1488=>640, 1489=>591, 1490=>466, 1491=>598, 1492=>622, 1493=>212, 1494=>351, 1495=>623, 1496=>608, 1497=>200, 1498=>526, 1499=>550, 1500=>600,
- 1501=>623, 1502=>621, 1503=>212, 1504=>378, 1505=>607, 1506=>587, 1507=>575, 1508=>568, 1509=>540, 1510=>590, 1511=>606, 1512=>547, 1513=>776, 1514=>687, 1520=>424, 1521=>412,
- 1522=>400, 1523=>184, 1524=>344, 7936=>596, 7937=>596, 7938=>596, 7939=>596, 7940=>596, 7941=>596, 7942=>596, 7943=>596, 7944=>684, 7945=>684, 7946=>684, 7947=>684, 7948=>684,
- 7949=>684, 7950=>684, 7951=>684, 7952=>510, 7953=>510, 7954=>510, 7955=>510, 7956=>510, 7957=>510, 7960=>650, 7961=>650, 7962=>650, 7963=>650, 7964=>650, 7965=>650, 7968=>526,
- 7969=>526, 7970=>526, 7971=>526, 7972=>526, 7973=>526, 7974=>526, 7975=>526, 7976=>683, 7977=>683, 7978=>683, 7979=>683, 7980=>683, 7981=>683, 7982=>683, 7983=>683, 7984=>286,
- 7985=>286, 7986=>286, 7987=>286, 7988=>286, 7989=>286, 7990=>286, 7991=>286, 7992=>236, 7993=>236, 7994=>236, 7995=>236, 7996=>236, 7997=>236, 7998=>236, 7999=>236, 8000=>550,
- 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>750, 8009=>750, 8010=>750, 8011=>750, 8012=>750, 8013=>750, 8016=>515, 8017=>515, 8018=>515, 8019=>515, 8020=>515,
- 8021=>515, 8022=>515, 8023=>515, 8025=>684, 8027=>684, 8029=>684, 8031=>684, 8032=>740, 8033=>740, 8034=>740, 8035=>740, 8036=>740, 8037=>740, 8038=>740, 8039=>740, 8040=>720,
- 8041=>720, 8042=>720, 8043=>720, 8044=>720, 8045=>720, 8046=>720, 8047=>720, 8048=>596, 8049=>596, 8050=>510, 8051=>510, 8052=>526, 8053=>526, 8054=>286, 8055=>286, 8056=>550,
- 8057=>550, 8058=>515, 8059=>515, 8060=>740, 8061=>740, 8064=>596, 8065=>596, 8066=>596, 8067=>596, 8068=>596, 8069=>596, 8070=>596, 8071=>596, 8072=>900, 8073=>900, 8074=>900,
- 8075=>900, 8076=>900, 8077=>900, 8078=>900, 8079=>900, 8080=>526, 8081=>526, 8082=>526, 8083=>526, 8084=>526, 8085=>526, 8086=>526, 8087=>526, 8088=>899, 8089=>899, 8090=>899,
- 8091=>899, 8092=>899, 8093=>899, 8094=>899, 8095=>899, 8096=>740, 8097=>740, 8098=>740, 8099=>740, 8100=>740, 8101=>740, 8102=>740, 8103=>740, 8104=>936, 8105=>936, 8106=>936,
- 8107=>936, 8108=>936, 8109=>936, 8110=>936, 8111=>936, 8112=>596, 8113=>596, 8114=>596, 8115=>596, 8116=>593, 8118=>596, 8119=>596, 8120=>684, 8121=>684, 8122=>684, 8123=>684,
- 8124=>900, 8125=>278, 8126=>201, 8127=>147, 8128=>278, 8129=>333, 8130=>526, 8131=>526, 8132=>595, 8134=>526, 8135=>526, 8136=>650, 8137=>650, 8138=>683, 8139=>683, 8140=>899,
- 8141=>602, 8142=>601, 8143=>333, 8144=>286, 8145=>286, 8146=>286, 8147=>286, 8150=>286, 8151=>286, 8152=>236, 8153=>236, 8154=>236, 8155=>236, 8157=>434, 8158=>433, 8159=>333,
- 8160=>515, 8161=>515, 8162=>515, 8163=>515, 8164=>566, 8165=>566, 8166=>515, 8167=>515, 8168=>684, 8169=>684, 8170=>684, 8171=>684, 8172=>638, 8173=>333, 8174=>624, 8175=>303,
- 8178=>740, 8179=>740, 8180=>725, 8182=>740, 8183=>740, 8184=>750, 8185=>750, 8186=>720, 8187=>720, 8188=>936, 8189=>333, 8190=>159, 8260=>167, 8362=>869, 8706=>490, 8710=>712,
- 8721=>711, 8722=>584, 8730=>542, 8800=>584, 8804=>584, 8805=>584, 9674=>489, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556,
- 63166=>222, 63171=>333, 63196=>556, 64256=>556, 64257=>500, 64258=>500, 64259=>778, 64260=>778, 64261=>556, 64262=>778, 64285=>200, 64286=>305, 64287=>400, 64288=>587, 64289=>890, 64290=>848,
- 64291=>872, 64292=>800, 64293=>850, 64294=>873, 64295=>797, 64296=>937, 64297=>584, 64298=>776, 64299=>776, 64300=>776, 64301=>776, 64302=>640, 64303=>640, 64304=>640, 64305=>591, 64306=>466,
- 64307=>598, 64308=>622, 64309=>262, 64310=>351, 64312=>608, 64313=>270, 64314=>526, 64315=>550, 64316=>600, 64318=>621, 64320=>378, 64321=>607, 64323=>575, 64324=>568, 64326=>590, 64327=>606,
- 64328=>547, 64329=>776, 64330=>687, 64331=>212, 64332=>591, 64333=>550, 64334=>568, 64335=>640);
+ 32=>278, 33=>278, 34=>355, 35=>556, 36=>556, 37=>889, 38=>667, 39=>191, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278, 47=>278,
+ 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>278, 59=>278, 60=>584, 61=>584, 62=>584, 63=>556,
+ 64=>1015, 65=>667, 66=>667, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>500, 75=>667, 76=>556, 77=>833, 78=>722, 79=>778,
+ 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>278, 92=>278, 93=>278, 94=>469, 95=>556,
+ 96=>333, 97=>556, 98=>556, 99=>500, 100=>556, 101=>556, 102=>278, 103=>556, 104=>556, 105=>222, 106=>222, 107=>500, 108=>222, 109=>833, 110=>556, 111=>556,
+ 112=>556, 113=>556, 114=>333, 115=>500, 116=>278, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, 122=>500, 123=>334, 124=>260, 125=>334, 126=>584, 8364=>556,
+ 1027=>611, 8218=>222, 402=>278, 8222=>333, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>664, 381=>611, 1039=>722, 8216=>222,
+ 8217=>222, 8220=>333, 8221=>333, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>500, 8250=>333, 339=>944, 1116=>510, 382=>500, 376=>667, 160=>278, 161=>333,
+ 162=>556, 163=>556, 164=>556, 165=>556, 166=>260, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 173=>333, 174=>737, 175=>333, 176=>606, 177=>584,
+ 178=>390, 179=>390, 180=>333, 181=>556, 182=>537, 183=>278, 184=>333, 185=>390, 186=>365, 187=>556, 188=>947, 189=>947, 190=>947, 191=>611, 192=>667, 193=>667,
+ 194=>667, 195=>667, 196=>667, 197=>667, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722, 209=>722,
+ 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556,
+ 226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>500, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>556, 241=>556,
+ 242=>556, 243=>556, 244=>556, 245=>556, 246=>556, 247=>584, 248=>611, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>556, 255=>500, 256=>667, 257=>556,
+ 258=>667, 259=>556, 260=>667, 261=>556, 262=>722, 263=>500, 264=>722, 265=>500, 266=>722, 267=>500, 268=>722, 269=>500, 270=>722, 271=>722, 272=>722, 273=>556,
+ 274=>667, 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>556, 286=>778, 287=>556, 288=>778, 289=>556,
+ 290=>778, 291=>527, 292=>722, 293=>556, 294=>722, 295=>556, 296=>278, 297=>278, 298=>278, 299=>278, 300=>278, 301=>278, 302=>278, 303=>222, 304=>278, 305=>278,
+ 306=>742, 307=>362, 308=>500, 309=>222, 310=>667, 311=>500, 312=>510, 313=>556, 314=>222, 315=>556, 316=>222, 317=>556, 318=>387, 319=>556, 320=>500, 321=>556,
+ 322=>222, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>722, 330=>722, 331=>556, 332=>778, 333=>556, 334=>778, 335=>556, 336=>778, 337=>556,
+ 340=>722, 341=>333, 342=>722, 343=>333, 344=>722, 345=>333, 346=>667, 347=>500, 348=>667, 349=>500, 350=>667, 351=>500, 354=>611, 355=>278, 356=>611, 357=>443,
+ 358=>611, 359=>278, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>944, 373=>722,
+ 374=>667, 375=>500, 377=>611, 378=>500, 379=>611, 380=>500, 383=>278, 384=>556, 385=>854, 386=>667, 387=>556, 388=>667, 389=>556, 390=>722, 391=>722, 392=>500,
+ 393=>722, 394=>899, 395=>667, 396=>556, 397=>556, 398=>667, 399=>778, 400=>667, 401=>611, 403=>778, 404=>667, 405=>889, 406=>278, 407=>333, 408=>741, 409=>500,
+ 410=>333, 411=>560, 412=>833, 413=>722, 414=>556, 415=>778, 416=>778, 417=>556, 420=>842, 421=>556, 423=>667, 424=>500, 425=>611, 426=>333, 427=>278, 428=>611,
+ 429=>278, 430=>611, 431=>722, 432=>556, 433=>720, 435=>788, 436=>616, 437=>611, 438=>500, 439=>611, 440=>611, 441=>500, 448=>260, 449=>520, 450=>584, 451=>278,
+ 452=>1311, 453=>1208, 454=>1056, 455=>1056, 456=>778, 457=>444, 458=>1158, 459=>944, 460=>778, 461=>667, 462=>556, 463=>278, 464=>278, 465=>778, 466=>556, 467=>722,
+ 468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556, 477=>556, 478=>667, 479=>556, 480=>667, 481=>556, 482=>1000, 483=>889,
+ 486=>778, 487=>556, 488=>667, 489=>500, 490=>778, 491=>556, 492=>778, 493=>556, 494=>611, 495=>500, 496=>222, 497=>1333, 498=>1222, 499=>1056, 500=>778, 501=>556,
+ 504=>722, 505=>556, 506=>667, 507=>556, 508=>1000, 509=>889, 510=>778, 511=>611, 512=>667, 513=>556, 514=>667, 515=>556, 516=>667, 517=>556, 518=>667, 519=>556,
+ 520=>278, 521=>278, 522=>278, 523=>278, 524=>778, 525=>556, 526=>778, 527=>556, 528=>722, 529=>333, 530=>722, 531=>333, 532=>722, 533=>556, 534=>722, 535=>556,
+ 536=>667, 537=>500, 538=>611, 539=>278, 542=>722, 543=>556, 550=>667, 551=>556, 552=>667, 553=>556, 554=>778, 555=>556, 556=>778, 557=>556, 558=>778, 559=>556,
+ 560=>778, 561=>556, 562=>667, 563=>500, 592=>556, 593=>556, 594=>659, 595=>556, 596=>500, 598=>556, 599=>556, 600=>556, 601=>556, 603=>500, 604=>500, 606=>1000,
+ 607=>222, 608=>556, 609=>556, 610=>546, 613=>556, 614=>556, 615=>556, 616=>222, 617=>222, 618=>278, 620=>1000, 621=>222, 622=>1000, 623=>833, 624=>833, 625=>833,
+ 626=>556, 627=>556, 628=>560, 629=>556, 630=>778, 632=>741, 633=>333, 634=>333, 635=>333, 636=>333, 637=>333, 638=>384, 639=>369, 640=>546, 641=>546, 642=>500,
+ 643=>278, 644=>278, 645=>278, 647=>278, 648=>278, 649=>556, 650=>626, 651=>539, 652=>500, 653=>722, 654=>500, 656=>500, 658=>500, 660=>556, 661=>556, 662=>556,
+ 664=>556, 665=>522, 667=>546, 668=>500, 670=>500, 671=>430, 672=>556, 711=>333, 713=>333, 714=>333, 715=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333,
+ 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 783=>0, 785=>0, 787=>0, 788=>0, 884=>199, 885=>199,
+ 890=>332, 894=>278, 900=>291, 901=>624, 902=>659, 903=>358, 904=>657, 905=>678, 906=>183, 908=>729, 910=>699, 911=>747, 912=>286, 913=>684, 914=>628, 915=>582,
+ 916=>684, 917=>650, 918=>628, 919=>683, 920=>750, 921=>236, 922=>684, 923=>684, 924=>800, 925=>654, 926=>630, 927=>750, 928=>721, 929=>638, 931=>628, 932=>628,
+ 933=>684, 934=>717, 935=>723, 936=>745, 937=>720, 938=>236, 939=>684, 940=>593, 941=>519, 942=>595, 943=>271, 944=>515, 945=>596, 946=>516, 947=>531, 948=>560,
+ 949=>510, 950=>462, 951=>526, 952=>526, 953=>286, 954=>516, 955=>560, 956=>607, 957=>504, 958=>470, 959=>550, 960=>661, 961=>566, 962=>535, 963=>616, 964=>532,
+ 965=>515, 966=>741, 967=>572, 968=>662, 969=>740, 970=>286, 971=>515, 972=>535, 973=>503, 974=>725, 981=>741, 1024=>667, 1025=>667, 1026=>766, 1028=>722, 1029=>667,
+ 1030=>278, 1031=>278, 1032=>500, 1033=>968, 1034=>1173, 1035=>766, 1037=>731, 1038=>530, 1040=>667, 1041=>639, 1042=>667, 1043=>611, 1044=>816, 1045=>667, 1046=>897, 1047=>652,
+ 1048=>731, 1049=>731, 1050=>664, 1051=>646, 1052=>833, 1053=>722, 1054=>778, 1055=>722, 1056=>667, 1057=>722, 1058=>611, 1059=>530, 1060=>891, 1061=>667, 1062=>722, 1063=>642,
+ 1064=>836, 1065=>837, 1066=>866, 1067=>886, 1068=>698, 1069=>717, 1070=>1079, 1071=>691, 1072=>556, 1073=>556, 1074=>538, 1075=>430, 1076=>640, 1077=>556, 1078=>818, 1079=>495,
+ 1080=>560, 1081=>560, 1082=>510, 1083=>556, 1084=>621, 1085=>561, 1086=>556, 1087=>560, 1088=>556, 1089=>500, 1090=>400, 1091=>500, 1092=>916, 1093=>500, 1094=>560, 1095=>497,
+ 1096=>695, 1097=>695, 1098=>640, 1099=>734, 1100=>523, 1101=>534, 1102=>788, 1103=>564, 1104=>556, 1105=>556, 1106=>568, 1107=>430, 1108=>500, 1109=>500, 1110=>222, 1111=>278,
+ 1112=>222, 1113=>840, 1114=>850, 1115=>568, 1117=>560, 1118=>500, 1119=>560, 1164=>698, 1165=>523, 1166=>667, 1167=>556, 1168=>611, 1169=>430, 1170=>611, 1171=>430, 1172=>611,
+ 1173=>430, 1174=>897, 1175=>818, 1176=>652, 1177=>495, 1178=>664, 1179=>510, 1180=>664, 1181=>510, 1182=>664, 1183=>510, 1184=>704, 1185=>618, 1186=>722, 1187=>561, 1188=>1010,
+ 1189=>753, 1190=>1061, 1191=>803, 1194=>722, 1195=>500, 1196=>611, 1197=>400, 1198=>667, 1199=>667, 1200=>667, 1201=>667, 1202=>665, 1203=>496, 1204=>879, 1205=>629, 1206=>642,
+ 1207=>497, 1208=>642, 1209=>497, 1210=>642, 1211=>497, 1212=>722, 1213=>605, 1214=>722, 1215=>605, 1216=>278, 1217=>897, 1218=>818, 1219=>664, 1220=>510, 1223=>722, 1224=>561,
+ 1227=>642, 1228=>497, 1232=>667, 1233=>556, 1234=>667, 1235=>556, 1236=>1000, 1237=>889, 1238=>667, 1239=>556, 1240=>722, 1241=>495, 1242=>722, 1243=>495, 1244=>897, 1245=>818,
+ 1246=>652, 1247=>495, 1248=>652, 1249=>495, 1250=>731, 1251=>560, 1252=>731, 1253=>560, 1254=>778, 1255=>556, 1256=>780, 1257=>554, 1258=>780, 1259=>554, 1260=>717, 1261=>534,
+ 1262=>530, 1263=>500, 1264=>530, 1265=>500, 1266=>530, 1267=>500, 1268=>642, 1269=>497, 1272=>886, 1273=>734, 1329=>722, 1330=>705, 1331=>774, 1332=>754, 1333=>722, 1334=>751,
+ 1335=>485, 1336=>722, 1337=>782, 1338=>655, 1339=>699, 1340=>417, 1341=>853, 1342=>791, 1343=>711, 1344=>588, 1345=>663, 1346=>665, 1347=>665, 1348=>756, 1349=>623, 1350=>773,
+ 1351=>603, 1352=>722, 1353=>648, 1354=>722, 1355=>751, 1356=>750, 1357=>722, 1358=>748, 1359=>667, 1360=>699, 1361=>623, 1362=>417, 1363=>785, 1364=>638, 1365=>778, 1366=>716,
+ 1370=>222, 1371=>133, 1372=>325, 1373=>333, 1374=>344, 1377=>833, 1378=>556, 1379=>572, 1380=>581, 1381=>550, 1382=>588, 1383=>448, 1384=>556, 1385=>568, 1386=>582, 1387=>545,
+ 1388=>301, 1389=>799, 1390=>556, 1391=>554, 1392=>533, 1393=>548, 1394=>552, 1395=>552, 1396=>544, 1397=>222, 1398=>544, 1399=>456, 1400=>556, 1401=>390, 1402=>833, 1403=>509,
+ 1404=>547, 1405=>533, 1406=>610, 1407=>887, 1408=>556, 1409=>545, 1410=>352, 1411=>853, 1412=>588, 1413=>579, 1414=>690, 1415=>545, 1417=>278, 1418=>367, 1456=>70, 1457=>335,
+ 1458=>329, 1459=>329, 1460=>70, 1461=>200, 1462=>200, 1463=>188, 1464=>188, 1465=>70, 1467=>329, 1468=>70, 1469=>70, 1470=>488, 1471=>200, 1472=>212, 1473=>0, 1474=>0,
+ 1475=>278, 1476=>70, 1488=>640, 1489=>591, 1490=>466, 1491=>598, 1492=>622, 1493=>212, 1494=>351, 1495=>623, 1496=>608, 1497=>200, 1498=>526, 1499=>550, 1500=>600, 1501=>623,
+ 1502=>621, 1503=>212, 1504=>378, 1505=>607, 1506=>587, 1507=>575, 1508=>568, 1509=>540, 1510=>590, 1511=>606, 1512=>547, 1513=>776, 1514=>687, 1520=>424, 1521=>412, 1522=>400,
+ 1523=>184, 1524=>344, 2433=>0, 2434=>300, 2435=>264, 2437=>594, 2438=>790, 2439=>469, 2440=>513, 2441=>520, 2442=>549, 2443=>594, 2444=>481, 2447=>580, 2448=>627, 2451=>540,
+ 2452=>613, 2453=>570, 2454=>467, 2455=>471, 2456=>428, 2457=>483, 2458=>408, 2459=>509, 2460=>591, 2461=>563, 2462=>771, 2463=>381, 2464=>404, 2465=>522, 2466=>408, 2467=>450,
+ 2468=>543, 2469=>477, 2470=>418, 2471=>433, 2472=>445, 2474=>499, 2475=>584, 2476=>377, 2477=>555, 2478=>448, 2479=>423, 2480=>390, 2482=>498, 2486=>498, 2487=>425, 2488=>495,
+ 2489=>440, 2492=>22, 2493=>440, 2494=>193, 2495=>189, 2496=>180, 2497=>0, 2498=>0, 2499=>0, 2500=>0, 2503=>252, 2504=>243, 2507=>889, 2508=>865, 2509=>0, 2510=>356,
+ 2519=>219, 2524=>523, 2525=>408, 2527=>428, 2528=>594, 2529=>481, 2530=>0, 2531=>-199, 2534=>500, 2535=>437, 2536=>479, 2537=>530, 2538=>497, 2539=>500, 2540=>482, 2541=>503,
+ 2542=>517, 2543=>481, 2544=>377, 2545=>377, 2546=>429, 2547=>383, 2548=>429, 2549=>478, 2550=>545, 2551=>158, 2552=>365, 2553=>280, 2554=>357, 7936=>596, 7937=>596, 7938=>596,
+ 7939=>596, 7940=>596, 7941=>596, 7942=>596, 7943=>596, 7944=>684, 7945=>684, 7946=>684, 7947=>684, 7948=>684, 7949=>684, 7950=>684, 7951=>684, 7952=>510, 7953=>510, 7954=>510,
+ 7955=>510, 7956=>510, 7957=>510, 7960=>650, 7961=>650, 7962=>650, 7963=>650, 7964=>650, 7965=>650, 7968=>526, 7969=>526, 7970=>526, 7971=>526, 7972=>526, 7973=>526, 7974=>526,
+ 7975=>526, 7976=>683, 7977=>683, 7978=>683, 7979=>683, 7980=>683, 7981=>683, 7982=>683, 7983=>683, 7984=>286, 7985=>286, 7986=>286, 7987=>286, 7988=>286, 7989=>286, 7990=>286,
+ 7991=>286, 7992=>236, 7993=>236, 7994=>236, 7995=>236, 7996=>236, 7997=>236, 7998=>236, 7999=>236, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>750,
+ 8009=>750, 8010=>750, 8011=>750, 8012=>750, 8013=>750, 8016=>515, 8017=>515, 8018=>515, 8019=>515, 8020=>515, 8021=>515, 8022=>515, 8023=>515, 8025=>684, 8027=>684, 8029=>684,
+ 8031=>684, 8032=>740, 8033=>740, 8034=>740, 8035=>740, 8036=>740, 8037=>740, 8038=>740, 8039=>740, 8040=>720, 8041=>720, 8042=>720, 8043=>720, 8044=>720, 8045=>720, 8046=>720,
+ 8047=>720, 8048=>596, 8049=>596, 8050=>510, 8051=>510, 8052=>526, 8053=>526, 8054=>286, 8055=>286, 8056=>550, 8057=>550, 8058=>515, 8059=>515, 8060=>740, 8061=>740, 8064=>596,
+ 8065=>596, 8066=>596, 8067=>596, 8068=>596, 8069=>596, 8070=>596, 8071=>596, 8072=>900, 8073=>900, 8074=>900, 8075=>900, 8076=>900, 8077=>900, 8078=>900, 8079=>900, 8080=>526,
+ 8081=>526, 8082=>526, 8083=>526, 8084=>526, 8085=>526, 8086=>526, 8087=>526, 8088=>899, 8089=>899, 8090=>899, 8091=>899, 8092=>899, 8093=>899, 8094=>899, 8095=>899, 8096=>740,
+ 8097=>740, 8098=>740, 8099=>740, 8100=>740, 8101=>740, 8102=>740, 8103=>740, 8104=>936, 8105=>936, 8106=>936, 8107=>936, 8108=>936, 8109=>936, 8110=>936, 8111=>936, 8112=>596,
+ 8113=>596, 8114=>596, 8115=>596, 8116=>593, 8118=>596, 8119=>596, 8120=>684, 8121=>684, 8122=>684, 8123=>684, 8124=>900, 8125=>278, 8126=>201, 8127=>147, 8128=>278, 8129=>333,
+ 8130=>526, 8131=>526, 8132=>595, 8134=>526, 8135=>526, 8136=>650, 8137=>650, 8138=>683, 8139=>683, 8140=>899, 8141=>602, 8142=>601, 8143=>333, 8144=>286, 8145=>286, 8146=>286,
+ 8147=>286, 8150=>286, 8151=>286, 8152=>236, 8153=>236, 8154=>236, 8155=>236, 8157=>434, 8158=>433, 8159=>333, 8160=>515, 8161=>515, 8162=>515, 8163=>515, 8164=>566, 8165=>566,
+ 8166=>515, 8167=>515, 8168=>684, 8169=>684, 8170=>684, 8171=>684, 8172=>638, 8173=>333, 8174=>624, 8175=>303, 8178=>740, 8179=>740, 8180=>725, 8182=>740, 8183=>740, 8184=>750,
+ 8185=>750, 8186=>720, 8187=>720, 8188=>936, 8189=>333, 8190=>159, 8204=>0, 8205=>0, 8208=>333, 8209=>333, 8210=>556, 8213=>1000, 8260=>167, 8304=>351, 8305=>351, 8308=>351,
+ 8309=>351, 8310=>351, 8311=>351, 8312=>351, 8313=>351, 8320=>351, 8321=>351, 8322=>351, 8323=>351, 8324=>351, 8325=>353, 8326=>351, 8327=>351, 8328=>351, 8329=>351, 8359=>1445,
+ 8360=>1222, 8362=>869, 8373=>640, 8486=>720, 8531=>869, 8532=>869, 8533=>869, 8534=>869, 8535=>869, 8536=>869, 8537=>869, 8538=>869, 8539=>869, 8540=>869, 8541=>869, 8542=>869,
+ 8543=>869, 8592=>987, 8593=>603, 8594=>987, 8595=>603, 8596=>1042, 8597=>1042, 8706=>490, 8710=>712, 8721=>711, 8722=>584, 8725=>947, 8730=>542, 8800=>584, 8804=>584, 8805=>584,
+ 9674=>489, 9834=>555, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556, 63166=>222, 63171=>333, 63196=>556, 64256=>556, 64257=>500,
+ 64258=>500, 64259=>778, 64260=>778, 64261=>556, 64262=>778, 64285=>200, 64286=>305, 64287=>400, 64288=>587, 64289=>890, 64290=>848, 64291=>872, 64292=>800, 64293=>850, 64294=>873, 64295=>797,
+ 64296=>937, 64297=>584, 64298=>776, 64299=>776, 64300=>776, 64301=>776, 64302=>640, 64303=>640, 64304=>640, 64305=>591, 64306=>466, 64307=>598, 64308=>622, 64309=>262, 64310=>351, 64312=>608,
+ 64313=>270, 64314=>526, 64315=>550, 64316=>600, 64318=>621, 64320=>378, 64321=>607, 64323=>575, 64324=>568, 64326=>590, 64327=>606, 64328=>547, 64329=>776, 64330=>687, 64331=>212, 64332=>591,
+ 64333=>550, 64334=>568, 64335=>640, 65533=>788);
$enc='';
$diff='';
-$file='FreeSansOblique.z';
-$ctg='FreeSansOblique.ctg.z';
-$originalsize=110740;
+$file='freesansi.z';
+$ctg='freesansi.ctg.z';
+$originalsize=267956;
?>
diff --git a/lib/tcpdf/fonts/freesansi.z b/lib/tcpdf/fonts/freesansi.z
new file mode 100644
index 0000000000..62ed52a617
Binary files /dev/null and b/lib/tcpdf/fonts/freesansi.z differ
diff --git a/lib/tcpdf/fonts/freeserif.ctg.z b/lib/tcpdf/fonts/freeserif.ctg.z
new file mode 100644
index 0000000000..7a82c02190
Binary files /dev/null and b/lib/tcpdf/fonts/freeserif.ctg.z differ
diff --git a/lib/tcpdf/fonts/freeserif.php b/lib/tcpdf/fonts/freeserif.php
index 712f17c158..6b0a44f584 100755
--- a/lib/tcpdf/fonts/freeserif.php
+++ b/lib/tcpdf/fonts/freeserif.php
@@ -1,233 +1,258 @@
1166,'Descent'=>-446,'CapHeight'=>1166,'Flags'=>32,'FontBBox'=>'[-672 -446 1588 1166]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
+$desc=array('Ascent'=>1166,'Descent'=>-545,'CapHeight'=>1166,'Flags'=>32,'FontBBox'=>'[-797 -545 2010 1166]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
- 13=>333, 32=>250, 33=>333, 34=>408, 35=>500, 36=>500, 37=>833, 38=>778, 39=>180, 40=>333, 41=>333, 42=>500, 43=>564, 44=>250, 45=>333, 46=>250,
- 47=>278, 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>278, 59=>278, 60=>564, 61=>564, 62=>564,
- 63=>444, 64=>921, 65=>722, 66=>667, 67=>667, 68=>722, 69=>611, 70=>556, 71=>722, 72=>722, 73=>333, 74=>389, 75=>722, 76=>611, 77=>889, 78=>722,
- 79=>722, 80=>556, 81=>722, 82=>667, 83=>556, 84=>611, 85=>722, 86=>722, 87=>944, 88=>722, 89=>722, 90=>611, 91=>333, 92=>278, 93=>333, 94=>469,
- 95=>500, 96=>333, 97=>444, 98=>500, 99=>444, 100=>500, 101=>444, 102=>333, 103=>500, 104=>500, 105=>278, 106=>278, 107=>500, 108=>278, 109=>778, 110=>500,
- 111=>500, 112=>500, 113=>500, 114=>333, 115=>389, 116=>278, 117=>500, 118=>500, 119=>722, 120=>500, 121=>500, 122=>444, 123=>480, 124=>200, 125=>480, 126=>541,
- 8364=>500, 1027=>556, 8218=>333, 1107=>418, 8222=>444, 8230=>1000, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>556, 8249=>333, 338=>889, 1036=>722, 381=>611, 1039=>722,
- 8216=>333, 8217=>333, 8220=>444, 8221=>444, 8226=>350, 8211=>500, 8212=>1000, 732=>333, 8482=>980, 353=>389, 8250=>333, 339=>722, 1116=>500, 382=>444, 376=>722, 161=>333,
- 162=>500, 163=>500, 164=>500, 165=>500, 166=>200, 167=>500, 168=>333, 169=>760, 170=>276, 171=>500, 172=>564, 174=>760, 175=>333, 176=>400, 177=>564, 178=>300,
- 179=>300, 180=>333, 181=>500, 182=>453, 183=>250, 184=>333, 185=>300, 186=>310, 187=>500, 188=>750, 189=>750, 190=>750, 191=>444, 192=>722, 193=>722, 194=>722,
- 195=>722, 196=>722, 197=>722, 198=>889, 199=>667, 200=>611, 201=>611, 202=>611, 203=>611, 204=>333, 205=>333, 206=>333, 207=>333, 208=>722, 209=>722, 210=>722,
- 211=>722, 212=>722, 213=>722, 214=>722, 215=>564, 216=>722, 217=>722, 218=>722, 219=>722, 220=>722, 221=>722, 222=>556, 223=>500, 224=>444, 225=>444, 226=>444,
- 227=>444, 228=>444, 229=>444, 230=>667, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>500, 242=>500,
- 243=>500, 244=>500, 245=>500, 246=>500, 247=>564, 248=>500, 249=>500, 250=>500, 251=>500, 252=>500, 253=>500, 254=>500, 255=>500, 256=>722, 257=>444, 258=>722,
- 259=>444, 260=>722, 261=>444, 262=>667, 263=>444, 264=>667, 265=>444, 266=>667, 267=>444, 268=>667, 269=>444, 270=>722, 271=>600, 272=>722, 273=>500, 274=>611,
- 275=>444, 276=>611, 277=>444, 278=>611, 279=>444, 280=>611, 281=>444, 282=>611, 283=>444, 284=>722, 285=>500, 286=>722, 287=>500, 288=>722, 289=>500, 290=>722,
- 291=>500, 292=>722, 293=>500, 294=>722, 295=>548, 296=>333, 297=>278, 298=>333, 299=>278, 300=>333, 301=>278, 302=>333, 303=>278, 304=>333, 305=>278, 306=>728,
- 307=>480, 308=>389, 309=>278, 310=>722, 311=>500, 312=>500, 313=>611, 314=>278, 315=>611, 316=>278, 317=>611, 318=>348, 319=>832, 320=>444, 321=>611, 322=>278,
- 323=>722, 324=>500, 325=>722, 326=>500, 327=>722, 328=>500, 329=>556, 330=>722, 331=>500, 332=>722, 333=>500, 334=>722, 335=>500, 336=>722, 337=>500, 340=>667,
- 341=>333, 342=>667, 343=>333, 344=>667, 345=>333, 346=>556, 347=>389, 348=>556, 349=>389, 350=>556, 351=>389, 354=>611, 355=>278, 356=>611, 357=>278, 358=>611,
- 359=>278, 360=>722, 361=>500, 362=>722, 363=>500, 364=>722, 365=>500, 366=>722, 367=>500, 368=>722, 369=>500, 370=>722, 371=>500, 372=>944, 373=>722, 374=>722,
- 375=>500, 377=>611, 378=>444, 379=>611, 380=>444, 383=>333, 439=>1000, 450=>600, 452=>1333, 453=>1166, 454=>944, 455=>1000, 456=>889, 457=>556, 458=>1120, 459=>990,
- 460=>778, 461=>722, 462=>444, 463=>333, 464=>278, 465=>722, 466=>500, 467=>722, 468=>500, 469=>722, 470=>500, 471=>722, 472=>500, 473=>722, 474=>500, 475=>722,
- 476=>500, 477=>444, 478=>722, 479=>444, 480=>722, 481=>444, 482=>889, 483=>667, 484=>722, 485=>500, 486=>722, 487=>500, 488=>722, 489=>500, 490=>722, 491=>500,
- 492=>722, 493=>500, 494=>615, 495=>456, 496=>278, 497=>1333, 498=>1166, 499=>944, 500=>722, 501=>500, 504=>722, 505=>500, 506=>722, 507=>444, 508=>889, 509=>667,
- 510=>722, 511=>500, 512=>722, 513=>444, 514=>722, 515=>444, 516=>611, 517=>444, 518=>611, 519=>444, 520=>333, 521=>278, 522=>333, 523=>278, 524=>722, 525=>500,
- 526=>722, 527=>500, 528=>667, 529=>333, 530=>667, 531=>333, 532=>722, 533=>500, 534=>722, 535=>500, 536=>556, 537=>389, 538=>611, 539=>278, 542=>722, 543=>500,
- 550=>722, 551=>444, 552=>611, 553=>444, 554=>722, 555=>500, 556=>722, 557=>500, 558=>722, 559=>500, 560=>722, 561=>500, 562=>722, 563=>500, 601=>1000, 658=>1000,
- 699=>333, 700=>500, 701=>500, 702=>333, 703=>333, 711=>333, 713=>333, 714=>333, 715=>333, 718=>333, 719=>333, 724=>333, 725=>333, 726=>333, 727=>333, 728=>333,
- 729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0,
- 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0,
- 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0,
- 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0,
- 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 837=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>332, 894=>278,
- 900=>186, 901=>332, 902=>722, 903=>250, 904=>611, 905=>722, 906=>333, 908=>722, 910=>696, 911=>757, 912=>267, 913=>722, 914=>667, 915=>586, 916=>660, 917=>611,
- 918=>611, 919=>722, 920=>726, 921=>333, 922=>722, 923=>722, 924=>889, 925=>722, 926=>628, 927=>722, 928=>722, 929=>556, 931=>627, 932=>611, 933=>696, 934=>742,
- 935=>722, 936=>863, 937=>757, 938=>333, 939=>656, 940=>587, 941=>426, 942=>534, 943=>267, 944=>534, 945=>587, 946=>534, 947=>480, 948=>534, 949=>426, 950=>480,
- 951=>534, 952=>534, 953=>267, 954=>527, 955=>480, 956=>534, 957=>480, 958=>480, 959=>534, 960=>587, 961=>534, 962=>439, 963=>534, 964=>426, 965=>534, 966=>640,
- 967=>480, 968=>693, 969=>693, 970=>267, 971=>534, 972=>534, 973=>534, 974=>693, 976=>534, 977=>534, 978=>696, 979=>696, 980=>696, 981=>640, 982=>587, 986=>510,
- 987=>426, 988=>611, 989=>470, 990=>613, 991=>613, 992=>627, 993=>526, 1024=>611, 1025=>667, 1026=>768, 1028=>667, 1029=>556, 1030=>333, 1031=>333, 1032=>389, 1033=>969,
- 1034=>980, 1035=>698, 1037=>722, 1038=>746, 1040=>771, 1041=>646, 1042=>667, 1043=>626, 1044=>747, 1045=>667, 1046=>997, 1047=>532, 1048=>824, 1049=>715, 1050=>750, 1051=>750,
- 1052=>990, 1053=>823, 1054=>771, 1055=>818, 1056=>604, 1057=>719, 1058=>667, 1059=>731, 1060=>869, 1061=>771, 1062=>823, 1063=>747, 1064=>1122, 1065=>1122, 1066=>757, 1067=>981,
- 1068=>646, 1069=>698, 1070=>1104, 1071=>749, 1072=>500, 1073=>552, 1074=>500, 1075=>443, 1076=>531, 1077=>438, 1078=>716, 1079=>417, 1080=>527, 1081=>527, 1082=>525, 1083=>530,
- 1084=>666, 1085=>565, 1086=>552, 1087=>565, 1088=>552, 1089=>438, 1090=>476, 1091=>500, 1092=>667, 1093=>500, 1094=>497, 1095=>531, 1096=>810, 1097=>810, 1098=>556, 1099=>719,
- 1100=>491, 1101=>445, 1102=>783, 1103=>487, 1104=>444, 1105=>438, 1106=>548, 1108=>444, 1109=>389, 1110=>278, 1111=>278, 1112=>278, 1113=>714, 1114=>706, 1115=>548, 1117=>500,
- 1118=>500, 1119=>500, 1120=>1056, 1121=>693, 1122=>654, 1123=>567, 1124=>969, 1125=>686, 1126=>730, 1127=>502, 1128=>1059, 1129=>765, 1130=>997, 1131=>716, 1132=>1295, 1133=>963,
- 1134=>532, 1135=>473, 1136=>863, 1137=>693, 1138=>726, 1139=>500, 1140=>801, 1141=>480, 1142=>801, 1143=>480, 1144=>1356, 1145=>969, 1146=>771, 1147=>500, 1148=>1056, 1149=>693,
- 1150=>1056, 1151=>693, 1152=>754, 1153=>497, 1154=>424, 1155=>369, 1156=>689, 1157=>445, 1158=>445, 1160=>1080, 1161=>1076, 1162=>824, 1163=>565, 1164=>556, 1165=>504, 1166=>556,
- 1167=>500, 1168=>556, 1169=>418, 1170=>556, 1171=>418, 1172=>573, 1173=>468, 1174=>1053, 1175=>766, 1176=>556, 1177=>389, 1178=>722, 1179=>500, 1180=>722, 1181=>500, 1182=>722,
- 1183=>500, 1184=>852, 1185=>671, 1186=>722, 1187=>500, 1188=>984, 1189=>660, 1190=>1014, 1191=>714, 1192=>722, 1193=>542, 1194=>667, 1195=>444, 1196=>611, 1197=>484, 1198=>722,
- 1199=>500, 1200=>722, 1201=>500, 1202=>722, 1203=>500, 1204=>967, 1205=>723, 1206=>722, 1207=>500, 1208=>722, 1209=>500, 1210=>722, 1211=>500, 1212=>866, 1213=>561, 1214=>866,
- 1215=>561, 1216=>333, 1217=>1053, 1218=>766, 1219=>722, 1220=>500, 1221=>750, 1222=>530, 1223=>722, 1224=>500, 1225=>823, 1226=>565, 1227=>722, 1228=>500, 1229=>990, 1230=>666,
- 1231=>500, 1232=>722, 1233=>444, 1234=>722, 1235=>444, 1236=>889, 1237=>667, 1238=>611, 1239=>444, 1240=>722, 1241=>444, 1242=>716, 1243=>444, 1244=>1053, 1245=>766, 1246=>556,
- 1247=>389, 1248=>556, 1249=>389, 1250=>722, 1251=>500, 1252=>722, 1253=>500, 1254=>722, 1255=>500, 1256=>722, 1257=>500, 1258=>722, 1259=>500, 1260=>667, 1261=>444, 1262=>746,
- 1263=>500, 1264=>746, 1265=>500, 1266=>746, 1267=>500, 1268=>722, 1269=>500, 1272=>940, 1273=>710, 1280=>556, 1281=>500, 1282=>900, 1283=>819, 1284=>605, 1285=>515, 1286=>841,
- 1287=>566, 1288=>974, 1289=>530, 1290=>1035, 1291=>565, 1292=>722, 1293=>444, 1294=>611, 1295=>476, 1457=>0, 1458=>0, 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0,
- 1465=>0, 1467=>0, 1468=>0, 1472=>126, 1475=>418, 1488=>537, 1489=>537, 1490=>350, 1491=>537, 1492=>537, 1493=>350, 1494=>350, 1495=>537, 1496=>537, 1497=>350, 1498=>537,
- 1499=>537, 1500=>537, 1501=>537, 1502=>537, 1503=>350, 1504=>350, 1505=>537, 1506=>537, 1507=>537, 1508=>537, 1509=>537, 1510=>537, 1511=>537, 1512=>537, 1513=>537, 1514=>537,
- 1520=>537, 1521=>537, 1522=>537, 1523=>396, 1524=>396, 1548=>226, 1563=>250, 1567=>473, 1569=>350, 1570=>321, 1571=>249, 1572=>399, 1573=>249, 1574=>776, 1575=>249, 1576=>950,
- 1577=>424, 1578=>925, 1579=>924, 1580=>750, 1581=>748, 1582=>701, 1583=>397, 1584=>399, 1585=>328, 1586=>331, 1587=>951, 1588=>949, 1589=>949, 1590=>949, 1591=>557, 1592=>550,
- 1593=>625, 1594=>602, 1601=>801, 1602=>696, 1603=>757, 1604=>655, 1605=>549, 1606=>651, 1607=>424, 1608=>399, 1609=>776, 1610=>776, 1611=>300, 1613=>300, 1614=>300, 1615=>300,
- 1616=>300, 1617=>300, 1632=>297, 1633=>254, 1634=>427, 1635=>497, 1636=>440, 1637=>465, 1638=>466, 1639=>421, 1640=>459, 1641=>424, 1643=>212, 1652=>300, 1662=>926, 1670=>750,
- 1688=>338, 1711=>874, 1740=>776, 1748=>176, 1920=>395, 1921=>440, 1922=>511, 1923=>478, 1924=>424, 1925=>380, 1926=>394, 1927=>406, 1928=>416, 1929=>414, 1930=>412, 1931=>472,
- 1932=>439, 1933=>452, 1934=>414, 1935=>503, 1936=>773, 1937=>387, 1938=>419, 1939=>522, 1940=>412, 1941=>394, 1942=>388, 1943=>456, 1944=>504, 1945=>404, 1946=>393, 1947=>436,
- 1948=>475, 1949=>779, 1950=>775, 1951=>846, 1952=>490, 1953=>444, 1954=>414, 1955=>487, 1956=>404, 1957=>427, 1958=>32, 1959=>32, 1960=>39, 1961=>40, 1962=>39, 1963=>40,
- 1964=>40, 1965=>40, 1966=>40, 1967=>40, 1968=>0, 2305=>415, 2306=>398, 2307=>398, 2309=>862, 2310=>1042, 2311=>553, 2312=>553, 2313=>597, 2314=>848, 2315=>967, 2316=>828,
- 2317=>654, 2319=>654, 2321=>1042, 2323=>1042, 2324=>1042, 2325=>743, 2326=>798, 2327=>694, 2328=>694, 2329=>730, 2330=>734, 2331=>888, 2332=>814, 2333=>834, 2334=>734, 2335=>629,
- 2336=>629, 2337=>653, 2338=>609, 2339=>694, 2340=>654, 2341=>694, 2342=>588, 2343=>694, 2344=>654, 2345=>654, 2346=>615, 2347=>788, 2348=>621, 2349=>694, 2350=>694, 2351=>694,
- 2352=>575, 2353=>575, 2354=>787, 2355=>848, 2356=>848, 2357=>621, 2359=>615, 2360=>734, 2361=>609, 2364=>398, 2365=>569, 2366=>341, 2367=>341, 2368=>341, 2369=>0, 2370=>0,
- 2371=>0, 2372=>0, 2373=>415, 2375=>615, 2376=>615, 2377=>341, 2379=>341, 2380=>341, 2381=>0, 2384=>1047, 2392=>743, 2393=>798, 2394=>694, 2395=>814, 2396=>653, 2397=>609,
- 2398=>788, 2400=>967, 2401=>828, 2402=>0, 2403=>0, 2404=>398, 2405=>478, 2406=>455, 2407=>420, 2408=>569, 2409=>509, 2410=>702, 2411=>629, 2412=>569, 2413=>702, 2414=>609,
- 2415=>609, 2416=>626, 2433=>300, 2434=>400, 2435=>300, 2437=>640, 2438=>780, 2439=>520, 2440=>520, 2441=>530, 2442=>550, 2443=>610, 2444=>420, 2447=>480, 2448=>620, 2451=>620,
- 2452=>720, 2453=>652, 2454=>490, 2455=>490, 2456=>466, 2457=>540, 2458=>490, 2459=>540, 2460=>630, 2461=>590, 2462=>680, 2463=>510, 2464=>490, 2465=>520, 2466=>520, 2467=>470,
- 2468=>540, 2469=>490, 2470=>470, 2471=>490, 2472=>452, 2474=>560, 2475=>650, 2476=>480, 2477=>588, 2478=>470, 2479=>470, 2480=>480, 2482=>472, 2486=>512, 2487=>470, 2488=>470,
- 2489=>520, 2492=>160, 2494=>180, 2495=>180, 2496=>180, 2497=>320, 2498=>329, 2499=>195, 2500=>260, 2503=>340, 2504=>340, 2507=>740, 2508=>740, 2509=>400, 2519=>180, 2524=>540,
- 2525=>520, 2527=>470, 2528=>612, 2529=>420, 2530=>234, 2531=>360, 2534=>460, 2535=>420, 2536=>520, 2537=>540, 2538=>400, 2539=>400, 2540=>560, 2541=>390, 2542=>480, 2543=>420,
- 2544=>480, 2545=>470, 2546=>400, 2547=>470, 2548=>400, 2549=>400, 2550=>400, 2551=>120, 2552=>440, 2553=>420, 2554=>420, 2565=>744, 2566=>914, 2567=>690, 2568=>670, 2569=>596,
- 2570=>596, 2575=>498, 2576=>744, 2579=>596, 2580=>744, 2581=>550, 2582=>534, 2583=>618, 2584=>690, 2585=>546, 2586=>518, 2587=>592, 2588=>492, 2589=>574, 2590=>514, 2591=>526,
- 2592=>556, 2593=>524, 2594=>528, 2595=>574, 2596=>484, 2597=>534, 2598=>504, 2599=>534, 2600=>538, 2602=>534, 2603=>506, 2604=>562, 2605=>516, 2606=>546, 2607=>670, 2608=>538,
- 2610=>726, 2611=>726, 2613=>514, 2614=>546, 2616=>546, 2617=>517, 2620=>286, 2622=>172, 2623=>190, 2624=>190, 2625=>1, 2626=>1, 2631=>1, 2632=>1, 2635=>1, 2636=>1,
- 2637=>1, 2649=>534, 2650=>618, 2651=>492, 2652=>484, 2654=>506, 2662=>616, 2663=>480, 2664=>560, 2665=>480, 2666=>468, 2667=>492, 2668=>514, 2669=>538, 2670=>572, 2671=>560,
- 2672=>1, 2674=>498, 2675=>596, 2676=>900, 2947=>806, 2949=>861, 2950=>1076, 2951=>861, 2952=>595, 2953=>861, 2954=>1206, 2958=>689, 2959=>689, 2960=>753, 2962=>689, 2963=>689,
- 2965=>646, 2969=>646, 2970=>646, 2972=>753, 2974=>972, 2975=>753, 2979=>1261, 2980=>732, 2984=>646, 2985=>861, 2986=>658, 2990=>689, 2991=>646, 2992=>499, 2993=>560, 2994=>603,
- 2995=>753, 2996=>689, 2997=>714, 2999=>947, 3000=>1033, 3001=>1292, 3006=>499, 3007=>418, 3014=>603, 3015=>603, 3016=>861, 3021=>278, 3074=>330, 3075=>225, 3077=>450, 3078=>457,
- 3079=>397, 3080=>726, 3081=>439, 3082=>686, 3083=>824, 3084=>539, 3086=>395, 3087=>395, 3088=>423, 3090=>447, 3091=>442, 3092=>604, 3093=>370, 3094=>452, 3095=>398, 3096=>634,
- 3097=>445, 3098=>433, 3099=>433, 3100=>445, 3101=>390, 3102=>592, 3103=>453, 3104=>388, 3105=>440, 3106=>439, 3107=>478, 3108=>420, 3109=>420, 3110=>421, 3111=>420, 3112=>413,
- 3114=>424, 3115=>427, 3116=>415, 3117=>422, 3120=>396, 3122=>419, 3585=>581, 3586=>529, 3587=>596, 3588=>581, 3589=>594, 3590=>649, 3591=>494, 3592=>561, 3593=>690, 3594=>529,
- 3595=>596, 3596=>792, 3597=>793, 3598=>632, 3599=>632, 3600=>562, 3601=>707, 3602=>795, 3603=>891, 3604=>580, 3605=>591, 3606=>581, 3607=>642, 3608=>555, 3609=>689, 3610=>615,
- 3611=>615, 3612=>600, 3613=>600, 3614=>671, 3615=>671, 3616=>632, 3617=>591, 3618=>536, 3619=>511, 3620=>581, 3621=>561, 3622=>632, 3623=>559, 3624=>593, 3625=>701, 3626=>573,
- 3627=>643, 3628=>773, 3629=>561, 3630=>561, 3631=>506, 3632=>501, 3633=>0, 3634=>466, 3635=>467, 3636=>0, 3637=>0, 3638=>0, 3639=>0, 3640=>0, 3641=>0, 3642=>0,
- 3647=>667, 3648=>329, 3649=>582, 3650=>406, 3651=>406, 3652=>406, 3653=>267, 3654=>525, 3655=>0, 3656=>0, 3657=>0, 3658=>0, 3659=>0, 3660=>0, 3661=>0, 3662=>0,
- 3663=>707, 3664=>568, 3665=>568, 3666=>615, 3667=>639, 3668=>679, 3669=>680, 3670=>515, 3671=>767, 3672=>643, 3673=>608, 3674=>683, 3675=>1485, 4608=>583, 4609=>770, 4610=>560,
- 4611=>525, 4612=>525, 4613=>583, 4614=>758, 4616=>598, 4617=>787, 4618=>817, 4619=>583, 4620=>758, 4621=>612, 4622=>875, 4623=>817, 4624=>817, 4625=>1050, 4626=>1050, 4627=>817,
- 4628=>1050, 4629=>817, 4630=>787, 4631=>1021, 4632=>933, 4633=>1137, 4634=>1067, 4635=>980, 4636=>1065, 4637=>962, 4638=>962, 4639=>1097, 4640=>831, 4641=>1021, 4642=>851, 4643=>735,
- 4644=>875, 4645=>968, 4646=>817, 4647=>881, 4648=>583, 4649=>642, 4650=>583, 4651=>758, 4652=>700, 4653=>583, 4654=>700, 4655=>758, 4656=>583, 4657=>787, 4658=>787, 4659=>583,
- 4660=>729, 4661=>583, 4662=>583, 4663=>817, 4664=>642, 4665=>817, 4666=>846, 4667=>642, 4668=>758, 4669=>744, 4670=>642, 4671=>817, 4672=>700, 4673=>700, 4674=>700, 4675=>758,
- 4676=>700, 4677=>700, 4678=>729, 4680=>846, 4682=>1079, 4683=>700, 4684=>700, 4685=>1021, 4688=>700, 4689=>700, 4690=>700, 4691=>758, 4692=>700, 4693=>758, 4694=>729, 4696=>846,
- 4698=>1079, 4699=>700, 4700=>700, 4701=>1021, 4704=>525, 4705=>758, 4706=>758, 4707=>525, 4708=>700, 4709=>773, 4710=>525, 4711=>787, 4712=>525, 4713=>758, 4714=>758, 4715=>525,
- 4716=>700, 4717=>773, 4718=>525, 4719=>525, 4720=>729, 4721=>729, 4722=>729, 4723=>802, 4724=>729, 4725=>729, 4726=>758, 4727=>729, 4728=>758, 4729=>758, 4730=>758, 4731=>817,
- 4732=>758, 4733=>817, 4734=>758, 4735=>758, 4736=>612, 4737=>817, 4738=>817, 4739=>612, 4740=>787, 4741=>583, 4742=>875, 4744=>962, 4746=>992, 4747=>700, 4748=>758, 4749=>904,
- 4752=>408, 4753=>583, 4754=>525, 4755=>554, 4756=>481, 4757=>554, 4758=>642, 4759=>671, 4760=>700, 4761=>758, 4762=>729, 4763=>700, 4764=>671, 4765=>700, 4766=>758, 4767=>700,
- 4768=>583, 4769=>735, 4770=>822, 4771=>583, 4772=>793, 4773=>583, 4774=>583, 4775=>694, 4776=>554, 4777=>729, 4778=>773, 4779=>554, 4780=>700, 4781=>554, 4782=>554, 4784=>992,
- 4786=>1021, 4787=>671, 4788=>787, 4789=>904, 4792=>729, 4793=>904, 4794=>948, 4795=>729, 4796=>875, 4797=>729, 4798=>729, 4800=>1137, 4801=>1000, 4802=>1167, 4803=>758, 4804=>875,
- 4805=>1108, 4808=>758, 4809=>875, 4810=>700, 4811=>700, 4812=>700, 4813=>992, 4814=>758, 4816=>554, 4817=>787, 4818=>758, 4819=>583, 4820=>758, 4821=>496, 4822=>612, 4824=>525,
- 4825=>700, 4826=>700, 4827=>525, 4828=>685, 4829=>729, 4830=>510, 4831=>729, 4832=>962, 4833=>962, 4834=>962, 4835=>962, 4836=>962, 4837=>1021, 4838=>962, 4839=>962, 4840=>467,
- 4841=>525, 4842=>671, 4843=>612, 4844=>612, 4845=>671, 4846=>671, 4848=>612, 4849=>875, 4850=>817, 4851=>642, 4852=>729, 4853=>729, 4854=>758, 4855=>817, 4856=>700, 4857=>758,
- 4858=>715, 4859=>700, 4860=>700, 4861=>787, 4862=>758, 4863=>700, 4864=>700, 4865=>758, 4866=>715, 4867=>700, 4868=>700, 4869=>787, 4870=>758, 4871=>700, 4872=>467, 4873=>671,
- 4874=>671, 4875=>612, 4876=>612, 4877=>583, 4878=>525, 4880=>846, 4882=>904, 4883=>554, 4884=>700, 4885=>817, 4888=>525, 4889=>729, 4890=>729, 4891=>612, 4892=>671, 4893=>583,
- 4894=>525, 4896=>817, 4897=>1021, 4898=>1021, 4899=>817, 4900=>992, 4901=>758, 4902=>817, 4903=>1021, 4904=>1079, 4905=>1137, 4906=>1137, 4907=>1050, 4908=>1312, 4909=>1050, 4910=>1050,
- 4911=>1123, 4912=>647, 4913=>793, 4914=>822, 4915=>647, 4916=>793, 4917=>764, 4918=>583, 4919=>647, 4920=>583, 4921=>793, 4922=>822, 4923=>583, 4924=>793, 4925=>764, 4926=>583,
- 4927=>793, 4928=>540, 4929=>758, 4930=>583, 4931=>467, 4932=>583, 4933=>481, 4934=>612, 4936=>758, 4937=>700, 4938=>758, 4939=>700, 4940=>831, 4941=>671, 4942=>758, 4943=>700,
- 4944=>758, 4945=>758, 4946=>758, 4947=>817, 4948=>758, 4949=>758, 4950=>817, 4951=>758, 4952=>642, 4953=>980, 4954=>758, 4961=>233, 4962=>583, 4963=>408, 4964=>408, 4965=>525,
- 4966=>525, 4967=>233, 4968=>700, 4969=>671, 4970=>612, 4971=>642, 4972=>642, 4973=>642, 4974=>583, 4975=>700, 4976=>758, 4977=>642, 4978=>583, 4979=>700, 4980=>729, 4981=>720,
- 4982=>583, 4983=>758, 4984=>700, 4985=>904, 4986=>612, 4987=>583, 4988=>875, 7680=>722, 7681=>444, 7682=>667, 7683=>500, 7684=>667, 7685=>500, 7686=>667, 7687=>500, 7688=>667,
- 7689=>444, 7690=>722, 7691=>500, 7692=>722, 7693=>500, 7694=>722, 7695=>500, 7696=>722, 7697=>500, 7698=>722, 7699=>500, 7700=>611, 7701=>444, 7702=>611, 7703=>444, 7704=>611,
- 7705=>444, 7706=>611, 7707=>444, 7708=>611, 7709=>444, 7710=>556, 7711=>333, 7712=>722, 7713=>500, 7714=>722, 7715=>500, 7716=>722, 7717=>500, 7718=>722, 7719=>500, 7720=>722,
- 7721=>500, 7722=>722, 7723=>500, 7724=>333, 7725=>278, 7726=>333, 7727=>278, 7728=>722, 7729=>500, 7730=>722, 7731=>500, 7732=>722, 7733=>500, 7734=>611, 7735=>278, 7736=>611,
- 7737=>278, 7738=>611, 7739=>278, 7740=>611, 7741=>278, 7742=>889, 7743=>778, 7744=>889, 7745=>778, 7746=>889, 7747=>778, 7748=>722, 7749=>500, 7750=>722, 7751=>500, 7752=>722,
- 7753=>500, 7754=>722, 7755=>500, 7756=>722, 7757=>500, 7758=>722, 7759=>500, 7760=>722, 7761=>500, 7762=>722, 7763=>500, 7764=>556, 7765=>500, 7766=>556, 7767=>500, 7768=>667,
- 7769=>333, 7770=>667, 7771=>333, 7772=>667, 7773=>333, 7774=>667, 7775=>333, 7776=>556, 7777=>389, 7778=>556, 7779=>389, 7780=>556, 7781=>389, 7782=>556, 7783=>389, 7784=>556,
- 7785=>389, 7786=>611, 7787=>278, 7788=>611, 7789=>278, 7790=>611, 7791=>278, 7792=>611, 7793=>278, 7794=>722, 7795=>500, 7796=>722, 7797=>500, 7798=>722, 7799=>500, 7800=>722,
- 7801=>500, 7802=>722, 7803=>500, 7804=>722, 7805=>500, 7806=>722, 7807=>500, 7808=>944, 7809=>722, 7810=>944, 7811=>722, 7812=>944, 7813=>722, 7814=>944, 7815=>722, 7816=>944,
- 7817=>722, 7818=>722, 7819=>500, 7820=>722, 7821=>500, 7822=>722, 7823=>500, 7824=>611, 7825=>444, 7826=>611, 7827=>444, 7828=>611, 7829=>444, 7830=>500, 7831=>278, 7832=>722,
- 7833=>500, 7835=>333, 7840=>722, 7841=>444, 7842=>722, 7843=>444, 7844=>722, 7845=>444, 7846=>722, 7847=>444, 7848=>722, 7849=>444, 7850=>722, 7851=>444, 7852=>722, 7853=>444,
- 7854=>722, 7855=>444, 7856=>722, 7857=>444, 7858=>722, 7859=>444, 7860=>722, 7861=>444, 7862=>722, 7863=>444, 7864=>611, 7865=>444, 7866=>611, 7867=>444, 7868=>611, 7869=>444,
- 7870=>611, 7871=>444, 7872=>611, 7873=>444, 7874=>611, 7875=>444, 7876=>611, 7877=>444, 7878=>611, 7879=>444, 7880=>333, 7881=>278, 7882=>333, 7883=>278, 7884=>722, 7885=>500,
- 7886=>722, 7887=>500, 7888=>722, 7889=>500, 7890=>722, 7891=>500, 7892=>722, 7893=>500, 7894=>722, 7895=>500, 7896=>722, 7897=>500, 7908=>722, 7909=>500, 7910=>722, 7911=>500,
- 7922=>722, 7923=>500, 7924=>722, 7925=>500, 7926=>722, 7927=>500, 7928=>722, 7929=>500, 7936=>587, 7937=>587, 7938=>587, 7939=>587, 7940=>587, 7941=>587, 7942=>587, 7943=>587,
- 7944=>722, 7945=>722, 7946=>722, 7947=>722, 7948=>722, 7949=>722, 7950=>722, 7951=>722, 7952=>426, 7953=>426, 7954=>426, 7955=>426, 7956=>426, 7957=>426, 7960=>611, 7961=>611,
- 7962=>611, 7963=>611, 7964=>611, 7965=>611, 7968=>534, 7969=>534, 7970=>534, 7971=>534, 7972=>534, 7973=>534, 7974=>534, 7975=>534, 7976=>722, 7977=>722, 7978=>722, 7979=>722,
- 7980=>722, 7981=>722, 7982=>722, 7983=>722, 7984=>267, 7985=>267, 7986=>267, 7987=>267, 7988=>267, 7989=>267, 7990=>267, 7991=>267, 7992=>333, 7993=>333, 7994=>333, 7995=>333,
- 7996=>333, 7997=>333, 7998=>333, 7999=>333, 8000=>534, 8001=>534, 8002=>534, 8003=>534, 8004=>534, 8005=>534, 8008=>722, 8009=>722, 8010=>722, 8011=>722, 8012=>722, 8013=>722,
- 8016=>534, 8017=>534, 8018=>534, 8019=>534, 8020=>534, 8021=>534, 8022=>534, 8023=>534, 8025=>696, 8027=>696, 8029=>696, 8031=>696, 8032=>693, 8033=>693, 8034=>693, 8035=>693,
- 8036=>693, 8037=>693, 8038=>693, 8039=>693, 8040=>757, 8041=>757, 8042=>757, 8043=>757, 8044=>757, 8045=>757, 8046=>757, 8047=>757, 8048=>587, 8049=>587, 8050=>426, 8051=>426,
- 8052=>534, 8053=>534, 8054=>267, 8055=>267, 8056=>534, 8057=>534, 8058=>534, 8059=>534, 8060=>693, 8061=>693, 8064=>587, 8065=>587, 8066=>587, 8067=>587, 8068=>587, 8069=>587,
- 8070=>587, 8071=>587, 8072=>722, 8073=>722, 8074=>722, 8075=>722, 8076=>722, 8077=>722, 8078=>722, 8079=>722, 8080=>534, 8081=>534, 8082=>534, 8083=>534, 8084=>534, 8085=>534,
- 8086=>534, 8087=>534, 8088=>722, 8089=>722, 8090=>722, 8091=>722, 8092=>722, 8093=>722, 8094=>722, 8095=>722, 8096=>693, 8097=>693, 8098=>693, 8099=>693, 8100=>693, 8101=>693,
- 8102=>693, 8103=>693, 8104=>757, 8105=>757, 8106=>757, 8107=>757, 8108=>757, 8109=>757, 8110=>757, 8111=>757, 8112=>587, 8113=>587, 8114=>587, 8115=>587, 8116=>587, 8118=>587,
- 8119=>587, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>722, 8125=>250, 8126=>332, 8127=>500, 8128=>500, 8129=>534, 8130=>534, 8131=>534, 8132=>534, 8134=>534, 8135=>534,
- 8136=>611, 8137=>611, 8138=>722, 8139=>722, 8140=>722, 8141=>500, 8142=>500, 8143=>500, 8144=>267, 8145=>267, 8146=>267, 8147=>267, 8150=>267, 8151=>267, 8152=>333, 8153=>333,
- 8154=>333, 8155=>333, 8157=>500, 8158=>500, 8159=>500, 8160=>534, 8161=>534, 8162=>534, 8163=>534, 8164=>534, 8165=>534, 8166=>534, 8167=>534, 8168=>696, 8169=>696, 8170=>696,
- 8171=>696, 8172=>556, 8173=>534, 8174=>534, 8175=>500, 8178=>693, 8179=>693, 8180=>693, 8182=>693, 8183=>693, 8184=>722, 8185=>722, 8186=>757, 8187=>757, 8188=>757, 8189=>500,
- 8190=>500, 8219=>333, 8223=>444, 8227=>350, 8241=>1363, 8242=>247, 8243=>411, 8244=>611, 8245=>220, 8248=>469, 8251=>629, 8253=>444, 8255=>953, 8256=>953, 8257=>314, 8258=>931,
- 8259=>333, 8260=>167, 8261=>383, 8262=>383, 8267=>453, 8304=>300, 8305=>300, 8308=>300, 8309=>300, 8310=>300, 8311=>300, 8312=>300, 8313=>300, 8314=>1000, 8320=>300, 8321=>300,
- 8322=>300, 8323=>300, 8324=>300, 8325=>300, 8326=>300, 8327=>300, 8328=>300, 8329=>300, 8352=>698, 8353=>667, 8354=>667, 8355=>556, 8356=>500, 8357=>778, 8358=>722, 8359=>630,
- 8361=>944, 8413=>788, 8450=>667, 8451=>954, 8453=>1000, 8457=>822, 8458=>500, 8459=>969, 8460=>663, 8461=>822, 8462=>500, 8463=>500, 8464=>809, 8465=>686, 8466=>874, 8467=>417,
- 8469=>822, 8470=>954, 8471=>760, 8472=>987, 8473=>656, 8474=>722, 8475=>850, 8476=>795, 8477=>767, 8479=>667, 8480=>879, 8483=>722, 8484=>731, 8486=>757, 8487=>757, 8488=>663,
- 8490=>722, 8491=>722, 8492=>908, 8493=>614, 8494=>533, 8496=>562, 8497=>895, 8498=>556, 8499=>1080, 8501=>823, 8502=>642, 8503=>315, 8504=>532, 8505=>417, 8531=>750, 8532=>750,
- 8533=>750, 8534=>750, 8535=>750, 8536=>750, 8537=>750, 8538=>750, 8539=>750, 8540=>750, 8541=>750, 8542=>750, 8543=>750, 8544=>333, 8545=>630, 8546=>927, 8547=>1019, 8548=>722,
- 8549=>1019, 8550=>1316, 8551=>1629, 8552=>1019, 8553=>722, 8554=>1019, 8555=>1316, 8556=>611, 8557=>667, 8558=>722, 8559=>889, 8560=>278, 8561=>556, 8562=>834, 8563=>778, 8564=>500,
- 8565=>778, 8566=>1056, 8567=>1334, 8568=>778, 8569=>500, 8570=>778, 8571=>1056, 8572=>278, 8573=>444, 8574=>500, 8575=>778, 8592=>964, 8593=>499, 8594=>964, 8595=>499, 8596=>964,
- 8597=>499, 8598=>964, 8599=>964, 8600=>964, 8601=>964, 8602=>964, 8603=>964, 8604=>1009, 8605=>1009, 8606=>964, 8608=>964, 8610=>1093, 8611=>1093, 8612=>1093, 8614=>1093, 8619=>964,
- 8620=>964, 8621=>1151, 8622=>964, 8624=>482, 8625=>482, 8626=>482, 8627=>482, 8628=>658, 8629=>658, 8630=>1069, 8631=>1069, 8634=>939, 8635=>939, 8636=>964, 8637=>964, 8638=>499,
- 8639=>499, 8640=>964, 8641=>964, 8642=>499, 8643=>499, 8644=>964, 8645=>840, 8646=>964, 8647=>964, 8648=>840, 8649=>964, 8650=>840, 8651=>964, 8652=>964, 8653=>964, 8654=>964,
- 8655=>964, 8656=>964, 8657=>550, 8658=>964, 8659=>550, 8660=>964, 8661=>550, 8662=>1047, 8663=>1047, 8664=>1047, 8665=>1047, 8666=>964, 8667=>964, 8668=>1092, 8669=>1092, 8672=>964,
- 8674=>964, 8704=>587, 8705=>716, 8706=>494, 8707=>587, 8708=>587, 8709=>500, 8710=>612, 8711=>713, 8712=>536, 8713=>536, 8714=>439, 8715=>536, 8716=>536, 8717=>439, 8719=>823,
- 8720=>823, 8721=>713, 8722=>636, 8723=>636, 8724=>636, 8727=>471, 8728=>497, 8729=>497, 8730=>549, 8731=>549, 8732=>549, 8733=>636, 8734=>853, 8735=>509, 8736=>509, 8737=>509,
- 8738=>509, 8741=>320, 8742=>320, 8743=>654, 8744=>654, 8745=>654, 8746=>654, 8747=>416, 8748=>750, 8749=>1083, 8750=>722, 8751=>750, 8756=>629, 8757=>629, 8758=>250, 8759=>629,
- 8760=>636, 8761=>847, 8762=>636, 8763=>636, 8764=>636, 8765=>636, 8768=>264, 8769=>636, 8770=>636, 8771=>636, 8772=>636, 8773=>636, 8774=>636, 8775=>636, 8776=>636, 8777=>636,
- 8778=>636, 8779=>636, 8781=>636, 8782=>636, 8783=>636, 8784=>636, 8785=>636, 8786=>636, 8787=>636, 8788=>847, 8789=>847, 8790=>636, 8791=>636, 8796=>636, 8800=>636, 8801=>636,
- 8802=>636, 8803=>636, 8804=>636, 8805=>636, 8806=>636, 8807=>636, 8808=>636, 8809=>636, 8810=>918, 8811=>918, 8812=>410, 8813=>636, 8814=>636, 8815=>636, 8816=>636, 8817=>636,
- 8818=>636, 8819=>636, 8820=>636, 8821=>636, 8822=>636, 8823=>636, 8824=>636, 8825=>636, 8826=>636, 8827=>636, 8828=>636, 8829=>636, 8830=>636, 8831=>636, 8832=>636, 8833=>636,
- 8834=>636, 8835=>636, 8836=>636, 8837=>636, 8838=>636, 8839=>636, 8840=>636, 8841=>636, 8842=>636, 8843=>636, 8844=>654, 8845=>654, 8846=>654, 8847=>636, 8848=>636, 8849=>636,
- 8850=>636, 8851=>654, 8852=>654, 8853=>636, 8854=>636, 8855=>636, 8856=>636, 8857=>636, 8858=>636, 8859=>636, 8860=>636, 8861=>636, 8862=>636, 8863=>636, 8864=>636, 8865=>636,
- 8866=>466, 8867=>466, 8868=>712, 8869=>712, 8871=>466, 8873=>588, 8874=>710, 8875=>588, 8876=>466, 8877=>466, 8878=>588, 8879=>588, 8882=>636, 8883=>636, 8884=>636, 8885=>636,
- 8886=>1296, 8887=>1296, 8888=>966, 8891=>654, 8892=>654, 8893=>654, 8896=>654, 8897=>654, 8898=>654, 8899=>654, 8900=>512, 8901=>250, 8902=>471, 8903=>629, 8904=>722, 8907=>816,
- 8908=>816, 8909=>636, 8910=>636, 8911=>636, 8912=>636, 8913=>636, 8914=>654, 8915=>654, 8916=>654, 8917=>636, 8918=>636, 8919=>636, 8920=>1215, 8921=>1215, 8922=>636, 8923=>636,
- 8924=>636, 8925=>636, 8926=>636, 8927=>636, 8928=>636, 8929=>636, 8930=>636, 8931=>636, 8932=>636, 8933=>636, 8934=>636, 8935=>636, 8936=>636, 8937=>636, 8938=>636, 8939=>636,
- 8940=>636, 8941=>636, 8942=>250, 8943=>1000, 8944=>1000, 8945=>1000, 8960=>780, 8961=>444, 8976=>564, 8986=>805, 8992=>686, 8993=>686, 9001=>329, 9002=>329, 9031=>777, 9032=>777,
- 9040=>777, 9047=>777, 9054=>777, 9251=>500, 9312=>788, 9313=>788, 9314=>788, 9315=>788, 9316=>788, 9317=>788, 9318=>788, 9319=>788, 9320=>788, 9321=>788, 9472=>889, 9473=>889,
- 9474=>889, 9475=>889, 9476=>889, 9477=>889, 9478=>889, 9479=>889, 9480=>889, 9481=>889, 9482=>889, 9483=>889, 9484=>889, 9485=>889, 9486=>889, 9487=>889, 9488=>889, 9489=>889,
- 9490=>889, 9491=>889, 9492=>889, 9493=>889, 9494=>889, 9495=>889, 9496=>889, 9497=>889, 9498=>889, 9499=>889, 9500=>889, 9501=>889, 9502=>889, 9503=>889, 9504=>889, 9505=>889,
- 9506=>889, 9507=>889, 9508=>889, 9509=>889, 9510=>889, 9511=>889, 9512=>889, 9513=>889, 9514=>889, 9515=>889, 9516=>889, 9517=>889, 9518=>889, 9519=>889, 9520=>889, 9521=>889,
- 9522=>889, 9523=>889, 9524=>889, 9525=>889, 9526=>889, 9527=>889, 9528=>889, 9529=>889, 9530=>889, 9531=>889, 9532=>889, 9533=>889, 9534=>889, 9535=>889, 9536=>889, 9537=>889,
- 9538=>889, 9539=>889, 9540=>889, 9541=>889, 9542=>889, 9543=>889, 9544=>889, 9545=>889, 9546=>889, 9547=>889, 9552=>889, 9553=>889, 9554=>889, 9555=>889, 9556=>889, 9557=>889,
- 9558=>889, 9559=>889, 9560=>889, 9561=>889, 9562=>889, 9563=>889, 9564=>889, 9565=>889, 9566=>889, 9567=>889, 9568=>889, 9569=>889, 9570=>889, 9571=>889, 9572=>889, 9573=>889,
- 9574=>889, 9575=>889, 9576=>889, 9577=>889, 9578=>889, 9579=>889, 9580=>889, 9581=>889, 9600=>761, 9601=>761, 9602=>761, 9603=>761, 9604=>761, 9605=>761, 9606=>761, 9607=>761,
- 9608=>761, 9609=>761, 9610=>761, 9611=>761, 9612=>761, 9613=>761, 9614=>761, 9615=>761, 9616=>761, 9620=>761, 9621=>761, 9632=>761, 9633=>761, 9650=>892, 9654=>892, 9660=>892,
- 9664=>892, 9670=>788, 9674=>494, 9675=>791, 9679=>791, 9680=>791, 9681=>791, 9682=>791, 9683=>791, 9684=>791, 9685=>791, 9686=>791, 9687=>791, 9698=>761, 9699=>761, 9700=>761,
- 9701=>761, 9703=>761, 9704=>761, 9705=>761, 9706=>761, 9733=>816, 9734=>823, 9740=>799, 9741=>972, 9742=>719, 9744=>761, 9745=>761, 9746=>761, 9753=>760, 9754=>960, 9755=>960,
- 9756=>939, 9757=>500, 9758=>939, 9759=>500, 9760=>500, 9762=>805, 9763=>805, 9766=>494, 9768=>494, 9770=>805, 9772=>640, 9774=>805, 9775=>805, 9776=>600, 9777=>600, 9778=>600,
- 9779=>600, 9780=>600, 9781=>600, 9782=>600, 9783=>600, 9784=>805, 9785=>805, 9786=>805, 9787=>805, 9788=>805, 9789=>777, 9790=>777, 9791=>541, 9792=>541, 9793=>541, 9794=>799,
- 9795=>700, 9796=>583, 9797=>541, 9798=>652, 9799=>583, 9800=>805, 9801=>805, 9802=>805, 9803=>1013, 9804=>833, 9805=>1152, 9806=>1152, 9807=>1152, 9808=>704, 9809=>805, 9810=>1152,
- 9811=>805, 9812=>800, 9813=>800, 9814=>800, 9815=>800, 9816=>800, 9817=>800, 9818=>800, 9819=>800, 9820=>800, 9821=>800, 9822=>800, 9823=>800, 9824=>626, 9825=>694, 9826=>595,
- 9827=>776, 9829=>694, 9830=>595, 9833=>333, 9834=>555, 9835=>722, 9836=>722, 9837=>415, 9838=>377, 9839=>402, 9840=>776, 9841=>776, 9985=>974, 9986=>961, 9987=>974, 9988=>980,
- 9990=>789, 9991=>790, 9992=>791, 9993=>690, 9996=>549, 9997=>855, 9998=>911, 9999=>933, 10000=>911, 10001=>945, 10002=>974, 10003=>755, 10004=>846, 10005=>762, 10006=>761, 10007=>571,
- 10008=>677, 10009=>763, 10010=>760, 10011=>759, 10012=>754, 10013=>494, 10014=>552, 10015=>537, 10016=>577, 10017=>692, 10018=>786, 10019=>788, 10020=>788, 10021=>790, 10022=>793, 10023=>794,
- 10025=>823, 10026=>789, 10027=>841, 10028=>823, 10029=>833, 10030=>816, 10031=>831, 10032=>923, 10033=>744, 10034=>723, 10035=>749, 10036=>790, 10037=>792, 10038=>695, 10039=>776, 10040=>768,
- 10041=>792, 10042=>759, 10043=>707, 10044=>708, 10045=>682, 10046=>701, 10047=>826, 10048=>815, 10049=>789, 10050=>789, 10051=>707, 10052=>687, 10053=>696, 10054=>689, 10055=>786, 10056=>787,
- 10057=>713, 10058=>791, 10059=>785, 10061=>873, 10063=>762, 10064=>762, 10065=>759, 10066=>759, 10070=>784, 10072=>138, 10073=>277, 10074=>415, 10075=>392, 10076=>392, 10077=>668, 10078=>668,
- 10081=>732, 10082=>544, 10083=>544, 10084=>910, 10085=>667, 10086=>760, 10087=>760, 10102=>788, 10103=>788, 10104=>788, 10105=>788, 10106=>788, 10107=>788, 10108=>788, 10109=>788, 10110=>788,
- 10111=>788, 10112=>788, 10113=>788, 10114=>788, 10115=>788, 10116=>788, 10117=>788, 10118=>788, 10119=>788, 10120=>788, 10121=>788, 10122=>788, 10123=>788, 10124=>788, 10125=>788, 10126=>788,
- 10127=>788, 10128=>788, 10129=>788, 10130=>788, 10131=>788, 10132=>894, 10136=>748, 10137=>924, 10138=>748, 10139=>918, 10140=>927, 10141=>928, 10142=>928, 10143=>834, 10144=>873, 10145=>828,
- 10146=>924, 10147=>924, 10148=>917, 10149=>930, 10150=>931, 10151=>463, 10152=>883, 10153=>836, 10154=>836, 10155=>867, 10156=>867, 10157=>696, 10158=>696, 10159=>874, 10161=>874, 10162=>760,
- 10163=>946, 10164=>771, 10165=>865, 10166=>771, 10167=>888, 10168=>967, 10169=>888, 10170=>831, 10171=>873, 10172=>927, 10173=>970, 10174=>918, 12289=>1000, 12290=>1000, 12291=>1000, 12293=>1000,
- 12295=>1000, 12296=>1000, 12297=>1000, 12298=>1000, 12299=>1000, 12300=>1000, 12301=>1000, 12302=>1000, 12303=>1000, 12304=>1000, 12305=>1000, 12306=>1000, 12308=>1000, 12309=>1000, 12353=>1000, 12354=>1000,
- 12355=>1000, 12356=>1000, 12357=>1000, 12358=>1000, 12359=>1000, 12360=>1000, 12361=>1000, 12362=>1000, 12363=>1000, 12364=>1000, 12365=>1000, 12366=>1000, 12367=>1000, 12368=>1000, 12369=>1000, 12370=>1000,
- 12371=>1000, 12372=>1000, 12373=>1000, 12374=>1000, 12375=>1000, 12376=>1000, 12377=>1000, 12378=>1000, 12379=>1000, 12380=>1000, 12381=>1000, 12382=>1000, 12383=>1000, 12384=>1000, 12385=>1000, 12386=>1000,
- 12387=>1000, 12388=>1000, 12389=>1000, 12390=>1000, 12391=>1000, 12392=>1000, 12393=>1000, 12394=>1000, 12395=>1000, 12396=>1000, 12397=>1000, 12398=>1000, 12399=>1000, 12400=>1000, 12401=>1000, 12402=>1000,
- 12403=>1000, 12404=>1000, 12405=>1000, 12406=>1000, 12407=>1000, 12408=>1000, 12409=>1000, 12410=>1000, 12411=>1000, 12412=>1000, 12413=>1000, 12414=>1000, 12415=>1000, 12416=>1000, 12417=>1000, 12418=>1000,
- 12419=>1000, 12420=>1000, 12421=>1000, 12422=>1000, 12423=>1000, 12424=>1000, 12425=>1000, 12426=>1000, 12427=>1000, 12428=>1000, 12429=>1000, 12430=>1000, 12431=>1000, 12432=>1000, 12433=>1000, 12434=>1000,
- 12435=>1000, 12436=>1273, 12441=>1000, 12443=>1000, 12449=>1000, 12450=>1000, 12451=>1000, 12452=>1000, 12453=>1000, 12454=>1000, 12455=>1000, 12456=>1000, 12457=>1000, 12458=>1000, 12459=>1000, 12460=>1000,
- 12461=>1000, 12462=>1000, 12463=>1000, 12464=>1000, 12465=>1000, 12466=>1000, 12467=>1000, 12468=>1000, 12469=>1000, 12470=>1000, 12471=>1000, 12472=>1000, 12473=>1000, 12474=>1000, 12475=>1000, 12476=>1000,
- 12477=>1000, 12478=>1000, 12479=>1000, 12480=>1000, 12481=>1000, 12482=>1000, 12483=>1000, 12484=>1000, 12485=>1000, 12486=>1000, 12487=>1000, 12488=>1000, 12489=>1000, 12490=>1000, 12491=>1000, 12492=>1000,
- 12493=>1000, 12494=>1000, 12495=>1000, 12496=>1000, 12497=>1000, 12498=>1000, 12499=>1000, 12500=>1000, 12501=>1000, 12502=>1000, 12503=>1000, 12504=>1000, 12505=>1000, 12506=>1000, 12507=>1000, 12508=>1000,
- 12509=>1000, 12510=>1000, 12511=>1000, 12512=>1000, 12513=>1000, 12514=>1000, 12515=>1000, 12516=>1000, 12517=>1000, 12518=>1000, 12519=>1000, 12520=>1000, 12521=>1000, 12522=>1000, 12523=>1000, 12524=>1000,
- 12525=>1000, 12526=>1000, 12527=>1000, 12528=>1000, 12529=>1000, 12530=>1000, 12531=>1000, 12532=>1000, 12533=>1000, 12534=>1000, 12535=>1273, 12536=>1273, 12537=>1273, 12538=>1273, 12539=>250, 12540=>1000,
- 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500, 63038=>500, 63039=>500, 63040=>500, 63041=>500, 63171=>333, 63193=>790, 63194=>790, 63195=>890, 63196=>500, 63718=>603, 63719=>1000,
- 63720=>790, 63721=>790, 63722=>786, 63723=>384, 63724=>384, 63725=>384, 63726=>384, 63727=>384, 63728=>384, 63729=>494, 63730=>494, 63731=>494, 63732=>494, 63733=>686, 63734=>384, 63735=>384,
- 63736=>384, 63737=>384, 63738=>384, 63739=>384, 63740=>494, 63741=>494, 63742=>494, 64256=>605, 64257=>556, 64258=>556, 64259=>824, 64260=>821, 64262=>677, 64298=>537, 64299=>537, 64300=>537,
- 64301=>537, 64302=>537, 64303=>537, 64304=>537, 64305=>537, 64306=>350, 64307=>537, 64308=>537, 64309=>350, 64310=>350, 64312=>537, 64313=>350, 64314=>537, 64315=>537, 64316=>537, 64318=>537,
- 64320=>350, 64321=>537, 64323=>537, 64324=>537, 64326=>537, 64327=>537, 64328=>537, 64329=>537, 64330=>537, 64331=>350, 64332=>537, 64333=>537, 64334=>537, 64342=>926, 64343=>926, 64344=>308,
- 64345=>308, 64378=>750, 64379=>750, 64380=>580, 64381=>580, 64394=>338, 64395=>338, 64402=>874, 64403=>874, 64404=>329, 64405=>329, 64508=>776, 64509=>700, 64510=>304, 64511=>304, 65010=>640,
- 65020=>837, 65136=>300, 65140=>300, 65142=>300, 65144=>300, 65146=>300, 65148=>300, 65153=>321, 65164=>301, 65165=>249, 65166=>275, 65167=>950, 65168=>950, 65169=>293, 65170=>293, 65173=>925,
- 65174=>925, 65175=>308, 65176=>308, 65177=>924, 65178=>924, 65179=>298, 65180=>298, 65181=>750, 65182=>750, 65183=>574, 65184=>574, 65185=>748, 65186=>750, 65187=>600, 65188=>600, 65189=>701,
- 65190=>775, 65191=>596, 65192=>596, 65193=>397, 65194=>397, 65195=>399, 65196=>399, 65197=>328, 65198=>328, 65199=>331, 65200=>331, 65201=>951, 65202=>951, 65203=>600, 65204=>600, 65205=>949,
- 65206=>949, 65207=>649, 65208=>649, 65209=>949, 65210=>949, 65211=>823, 65212=>823, 65213=>949, 65214=>949, 65215=>805, 65216=>805, 65217=>557, 65221=>550, 65225=>625, 65226=>575, 65227=>674,
- 65228=>550, 65229=>602, 65230=>577, 65231=>578, 65232=>577, 65233=>801, 65234=>801, 65235=>300, 65236=>300, 65237=>696, 65238=>696, 65239=>650, 65240=>650, 65241=>757, 65242=>757, 65243=>318,
- 65244=>318, 65245=>655, 65246=>655, 65247=>206, 65248=>206, 65249=>549, 65250=>549, 65251=>403, 65252=>403, 65253=>651, 65254=>651, 65255=>323, 65256=>323, 65257=>424, 65258=>622, 65259=>525,
- 65260=>476, 65261=>399, 65262=>399, 65275=>676, 65276=>724, 65533=>788);
+ 32=>250, 33=>333, 34=>408, 35=>500, 36=>500, 37=>833, 38=>778, 39=>180, 40=>333, 41=>333, 42=>500, 43=>564, 44=>250, 45=>333, 46=>250, 47=>278,
+ 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>278, 59=>278, 60=>564, 61=>564, 62=>564, 63=>444,
+ 64=>921, 65=>722, 66=>667, 67=>667, 68=>722, 69=>611, 70=>556, 71=>722, 72=>722, 73=>333, 74=>389, 75=>722, 76=>611, 77=>889, 78=>722, 79=>722,
+ 80=>556, 81=>722, 82=>667, 83=>556, 84=>611, 85=>722, 86=>722, 87=>944, 88=>722, 89=>722, 90=>611, 91=>333, 92=>278, 93=>333, 94=>469, 95=>500,
+ 96=>333, 97=>444, 98=>500, 99=>444, 100=>500, 101=>444, 102=>333, 103=>500, 104=>500, 105=>278, 106=>278, 107=>500, 108=>278, 109=>778, 110=>500, 111=>500,
+ 112=>500, 113=>500, 114=>333, 115=>389, 116=>278, 117=>500, 118=>500, 119=>722, 120=>500, 121=>500, 122=>444, 123=>480, 124=>200, 125=>480, 126=>541, 8364=>741,
+ 1027=>556, 8218=>333, 402=>333, 8222=>444, 8230=>1000, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>556, 8249=>333, 338=>889, 1036=>722, 381=>611, 1039=>722, 8216=>333,
+ 8217=>333, 8220=>444, 8221=>444, 8226=>350, 8211=>500, 8212=>1000, 732=>333, 8482=>980, 353=>389, 8250=>333, 339=>722, 1116=>525, 382=>444, 376=>722, 160=>250, 161=>333,
+ 162=>500, 163=>500, 164=>500, 165=>500, 166=>200, 167=>500, 168=>333, 169=>760, 170=>276, 171=>500, 172=>564, 173=>333, 174=>760, 175=>333, 176=>400, 177=>564,
+ 178=>300, 179=>300, 180=>333, 181=>500, 182=>453, 183=>250, 184=>333, 185=>300, 186=>310, 187=>500, 188=>750, 189=>750, 190=>750, 191=>444, 192=>722, 193=>722,
+ 194=>722, 195=>722, 196=>722, 197=>722, 198=>889, 199=>667, 200=>611, 201=>611, 202=>611, 203=>611, 204=>333, 205=>333, 206=>333, 207=>333, 208=>722, 209=>722,
+ 210=>722, 211=>722, 212=>722, 213=>722, 214=>722, 215=>564, 216=>722, 217=>722, 218=>722, 219=>722, 220=>722, 221=>722, 222=>556, 223=>500, 224=>444, 225=>444,
+ 226=>444, 227=>444, 228=>444, 229=>444, 230=>667, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>500,
+ 242=>500, 243=>500, 244=>500, 245=>500, 246=>500, 247=>564, 248=>500, 249=>500, 250=>500, 251=>500, 252=>500, 253=>500, 254=>500, 255=>500, 256=>722, 257=>444,
+ 258=>722, 259=>444, 260=>722, 261=>444, 262=>667, 263=>444, 264=>667, 265=>444, 266=>667, 267=>444, 268=>667, 269=>444, 270=>722, 271=>600, 272=>722, 273=>500,
+ 274=>611, 275=>444, 276=>611, 277=>444, 278=>611, 279=>444, 280=>611, 281=>444, 282=>611, 283=>444, 284=>722, 285=>500, 286=>722, 287=>500, 288=>722, 289=>500,
+ 290=>722, 291=>500, 292=>722, 293=>500, 294=>722, 295=>548, 296=>333, 297=>278, 298=>333, 299=>278, 300=>333, 301=>278, 302=>333, 303=>278, 304=>333, 305=>278,
+ 306=>722, 307=>556, 308=>389, 309=>278, 310=>722, 311=>500, 312=>500, 313=>611, 314=>278, 315=>611, 316=>278, 317=>611, 318=>348, 319=>722, 320=>444, 321=>611,
+ 322=>278, 323=>722, 324=>500, 325=>722, 326=>500, 327=>722, 328=>500, 329=>556, 330=>722, 331=>500, 332=>722, 333=>500, 334=>722, 335=>500, 336=>722, 337=>500,
+ 340=>667, 341=>333, 342=>667, 343=>333, 344=>667, 345=>333, 346=>556, 347=>389, 348=>556, 349=>389, 350=>556, 351=>389, 354=>611, 355=>278, 356=>611, 357=>278,
+ 358=>611, 359=>278, 360=>722, 361=>500, 362=>722, 363=>500, 364=>722, 365=>500, 366=>722, 367=>500, 368=>722, 369=>500, 370=>722, 371=>500, 372=>944, 373=>722,
+ 374=>722, 375=>500, 377=>611, 378=>444, 379=>611, 380=>444, 383=>333, 384=>500, 385=>667, 386=>646, 387=>500, 388=>646, 389=>500, 390=>667, 391=>667, 392=>444,
+ 393=>722, 394=>722, 395=>646, 396=>500, 397=>534, 398=>611, 399=>722, 400=>518, 401=>556, 403=>722, 404=>665, 405=>729, 406=>333, 407=>333, 408=>810, 409=>500,
+ 410=>278, 411=>480, 412=>944, 413=>722, 414=>500, 415=>726, 416=>722, 417=>500, 418=>1043, 419=>778, 420=>556, 421=>500, 422=>667, 423=>556, 424=>389, 425=>627,
+ 426=>592, 427=>278, 428=>611, 429=>278, 430=>611, 431=>722, 432=>500, 433=>757, 434=>722, 435=>822, 436=>667, 437=>611, 438=>444, 439=>556, 440=>556, 441=>389,
+ 442=>500, 443=>500, 444=>615, 445=>439, 446=>421, 447=>500, 448=>200, 449=>400, 450=>600, 451=>333, 452=>1333, 453=>1166, 454=>944, 455=>1000, 456=>889, 457=>556,
+ 458=>1111, 459=>1000, 460=>778, 461=>722, 462=>444, 463=>333, 464=>278, 465=>722, 466=>500, 467=>722, 468=>500, 469=>722, 470=>500, 471=>722, 472=>500, 473=>722,
+ 474=>500, 475=>722, 476=>500, 477=>444, 478=>722, 479=>444, 480=>722, 481=>444, 482=>889, 483=>667, 484=>722, 485=>500, 486=>722, 487=>500, 488=>722, 489=>500,
+ 490=>722, 491=>500, 492=>722, 493=>500, 494=>556, 495=>389, 496=>278, 497=>1333, 498=>1166, 499=>944, 500=>722, 501=>500, 502=>944, 504=>722, 505=>500, 506=>722,
+ 507=>444, 508=>889, 509=>667, 510=>722, 511=>500, 512=>722, 513=>444, 514=>722, 515=>444, 516=>611, 517=>444, 518=>611, 519=>444, 520=>333, 521=>278, 522=>333,
+ 523=>278, 524=>722, 525=>500, 526=>722, 527=>500, 528=>667, 529=>333, 530=>667, 531=>333, 532=>722, 533=>500, 534=>722, 535=>500, 536=>556, 537=>389, 538=>611,
+ 539=>278, 542=>722, 543=>500, 550=>722, 551=>444, 552=>611, 553=>444, 554=>722, 555=>500, 556=>722, 557=>500, 558=>722, 559=>500, 560=>722, 561=>500, 562=>722,
+ 563=>500, 565=>597, 567=>278, 592=>444, 593=>500, 594=>507, 595=>500, 596=>444, 597=>444, 598=>500, 599=>500, 600=>444, 601=>444, 602=>722, 603=>426, 604=>426,
+ 605=>674, 606=>454, 607=>278, 608=>500, 609=>500, 610=>484, 611=>500, 612=>582, 613=>500, 614=>500, 615=>500, 616=>278, 617=>278, 618=>278, 619=>278, 620=>278,
+ 621=>278, 622=>556, 623=>778, 624=>778, 625=>778, 626=>500, 627=>500, 628=>500, 629=>500, 630=>668, 631=>693, 632=>640, 633=>333, 634=>333, 635=>333, 636=>333,
+ 637=>333, 638=>333, 639=>333, 640=>487, 641=>487, 642=>389, 643=>333, 644=>500, 645=>333, 646=>500, 647=>278, 648=>278, 649=>500, 650=>517, 651=>534, 652=>500,
+ 653=>722, 654=>500, 655=>510, 656=>444, 657=>444, 658=>389, 659=>456, 660=>444, 661=>444, 662=>444, 663=>444, 664=>500, 665=>500, 666=>454, 667=>665, 668=>565,
+ 669=>347, 670=>500, 671=>443, 672=>500, 673=>444, 674=>444, 675=>798, 676=>795, 677=>805, 678=>554, 679=>561, 680=>678, 681=>722, 682=>554, 683=>554, 684=>500,
+ 685=>500, 686=>611, 687=>611, 688=>300, 689=>300, 690=>278, 698=>408, 699=>333, 700=>500, 701=>500, 702=>333, 703=>333, 711=>333, 713=>333, 714=>333, 715=>333,
+ 717=>333, 718=>333, 719=>333, 724=>333, 725=>333, 726=>333, 727=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 750=>444, 768=>0, 769=>0, 770=>0,
+ 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0,
+ 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0,
+ 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0,
+ 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0,
+ 835=>0, 836=>0, 837=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>332, 894=>278, 900=>267, 901=>333, 902=>722, 903=>250, 904=>611, 905=>722, 906=>333,
+ 908=>722, 910=>696, 911=>757, 912=>267, 913=>722, 914=>667, 915=>586, 916=>660, 917=>611, 918=>611, 919=>722, 920=>726, 921=>333, 922=>722, 923=>722, 924=>889,
+ 925=>722, 926=>628, 927=>722, 928=>722, 929=>556, 931=>627, 932=>611, 933=>696, 934=>742, 935=>722, 936=>863, 937=>757, 938=>333, 939=>656, 940=>587, 941=>426,
+ 942=>534, 943=>267, 944=>534, 945=>587, 946=>534, 947=>480, 948=>534, 949=>426, 950=>480, 951=>534, 952=>534, 953=>267, 954=>527, 955=>480, 956=>534, 957=>480,
+ 958=>480, 959=>500, 960=>587, 961=>534, 962=>439, 963=>534, 964=>426, 965=>534, 966=>640, 967=>480, 968=>693, 969=>693, 970=>267, 971=>534, 972=>500, 973=>534,
+ 974=>693, 976=>534, 977=>587, 978=>620, 979=>620, 980=>620, 981=>640, 982=>684, 983=>534, 986=>510, 987=>426, 988=>611, 989=>445, 990=>613, 991=>613, 992=>627,
+ 993=>526, 1008=>534, 1009=>534, 1010=>485, 1024=>611, 1025=>667, 1026=>768, 1028=>667, 1029=>556, 1030=>333, 1031=>333, 1032=>389, 1033=>969, 1034=>980, 1035=>698, 1037=>722,
+ 1038=>746, 1040=>771, 1041=>646, 1042=>667, 1043=>626, 1044=>747, 1045=>667, 1046=>997, 1047=>532, 1048=>824, 1049=>824, 1050=>750, 1051=>750, 1052=>990, 1053=>823, 1054=>771,
+ 1055=>818, 1056=>604, 1057=>719, 1058=>667, 1059=>731, 1060=>869, 1061=>771, 1062=>823, 1063=>747, 1064=>1122, 1065=>1122, 1066=>757, 1067=>981, 1068=>646, 1069=>698, 1070=>1104,
+ 1071=>749, 1072=>500, 1073=>552, 1074=>500, 1075=>443, 1076=>531, 1077=>438, 1078=>716, 1079=>417, 1080=>527, 1081=>527, 1082=>525, 1083=>530, 1084=>666, 1085=>565, 1086=>552,
+ 1087=>565, 1088=>552, 1089=>438, 1090=>476, 1091=>500, 1092=>667, 1093=>500, 1094=>497, 1095=>531, 1096=>810, 1097=>810, 1098=>556, 1099=>719, 1100=>491, 1101=>445, 1102=>783,
+ 1103=>487, 1104=>444, 1105=>438, 1106=>548, 1107=>418, 1108=>444, 1109=>389, 1110=>278, 1111=>278, 1112=>278, 1113=>714, 1114=>706, 1115=>548, 1117=>527, 1118=>500, 1119=>500,
+ 1120=>1056, 1121=>693, 1122=>654, 1123=>567, 1124=>969, 1125=>686, 1126=>730, 1127=>502, 1128=>1059, 1129=>765, 1130=>997, 1131=>716, 1132=>1295, 1133=>963, 1134=>532, 1135=>473,
+ 1136=>863, 1137=>693, 1138=>726, 1139=>500, 1140=>801, 1141=>480, 1142=>801, 1143=>480, 1144=>1356, 1145=>969, 1146=>771, 1147=>500, 1148=>1056, 1149=>693, 1150=>1056, 1151=>693,
+ 1152=>754, 1153=>497, 1154=>424, 1155=>369, 1156=>689, 1157=>445, 1158=>445, 1160=>1080, 1161=>1076, 1162=>824, 1163=>565, 1164=>556, 1165=>504, 1166=>556, 1167=>500, 1168=>556,
+ 1169=>418, 1170=>556, 1171=>418, 1172=>573, 1173=>468, 1174=>1053, 1175=>766, 1176=>556, 1177=>389, 1178=>722, 1179=>500, 1180=>722, 1181=>500, 1182=>722, 1183=>500, 1184=>852,
+ 1185=>671, 1186=>722, 1187=>500, 1188=>984, 1189=>660, 1190=>1014, 1191=>714, 1192=>722, 1193=>542, 1194=>667, 1195=>444, 1196=>611, 1197=>484, 1198=>722, 1199=>500, 1200=>722,
+ 1201=>500, 1202=>722, 1203=>500, 1204=>967, 1205=>723, 1206=>722, 1207=>500, 1208=>722, 1209=>500, 1210=>722, 1211=>500, 1212=>866, 1213=>561, 1214=>866, 1215=>561, 1216=>333,
+ 1217=>997, 1218=>716, 1219=>722, 1220=>500, 1221=>750, 1222=>530, 1223=>722, 1224=>500, 1225=>823, 1226=>565, 1227=>722, 1228=>500, 1229=>990, 1230=>666, 1231=>500, 1232=>722,
+ 1233=>500, 1234=>722, 1235=>500, 1236=>889, 1237=>667, 1238=>611, 1239=>438, 1240=>722, 1241=>444, 1242=>722, 1243=>444, 1244=>997, 1245=>716, 1246=>532, 1247=>417, 1248=>556,
+ 1249=>389, 1250=>824, 1251=>527, 1252=>824, 1253=>527, 1254=>771, 1255=>552, 1256=>722, 1257=>500, 1258=>722, 1259=>500, 1260=>698, 1261=>445, 1262=>731, 1263=>500, 1264=>731,
+ 1265=>500, 1266=>731, 1267=>500, 1268=>747, 1269=>531, 1272=>981, 1273=>719, 1280=>556, 1281=>500, 1282=>900, 1283=>819, 1284=>605, 1285=>515, 1286=>841, 1287=>566, 1288=>974,
+ 1289=>530, 1290=>1035, 1291=>565, 1292=>722, 1293=>444, 1294=>611, 1295=>476, 1457=>0, 1458=>0, 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1467=>0,
+ 1468=>0, 1472=>126, 1475=>418, 1488=>537, 1489=>537, 1490=>350, 1491=>537, 1492=>537, 1493=>350, 1494=>350, 1495=>537, 1496=>537, 1497=>350, 1498=>537, 1499=>537, 1500=>537,
+ 1501=>537, 1502=>537, 1503=>350, 1504=>350, 1505=>537, 1506=>537, 1507=>537, 1508=>537, 1509=>537, 1510=>537, 1511=>537, 1512=>537, 1513=>537, 1514=>537, 1520=>537, 1521=>537,
+ 1522=>537, 1523=>396, 1524=>396, 1548=>226, 1563=>250, 1567=>473, 1569=>350, 1570=>321, 1571=>249, 1572=>399, 1573=>249, 1574=>776, 1575=>249, 1576=>950, 1577=>424, 1578=>925,
+ 1579=>924, 1580=>750, 1581=>748, 1582=>701, 1583=>397, 1584=>399, 1585=>328, 1586=>331, 1587=>951, 1588=>949, 1589=>949, 1590=>949, 1591=>557, 1592=>550, 1593=>625, 1594=>602,
+ 1601=>801, 1602=>696, 1603=>757, 1604=>655, 1605=>549, 1606=>651, 1607=>424, 1608=>399, 1609=>776, 1610=>776, 1611=>300, 1613=>300, 1614=>300, 1615=>300, 1616=>300, 1617=>300,
+ 1632=>297, 1633=>254, 1634=>427, 1635=>497, 1636=>440, 1637=>465, 1638=>466, 1639=>421, 1640=>459, 1641=>424, 1643=>212, 1652=>300, 1662=>926, 1670=>750, 1688=>338, 1711=>874,
+ 1740=>776, 1748=>176, 1920=>395, 1921=>440, 1922=>511, 1923=>478, 1924=>424, 1925=>380, 1926=>394, 1927=>406, 1928=>416, 1929=>414, 1930=>412, 1931=>472, 1932=>439, 1933=>452,
+ 1934=>414, 1935=>503, 1936=>773, 1937=>387, 1938=>419, 1939=>522, 1940=>412, 1941=>394, 1942=>388, 1943=>456, 1944=>504, 1945=>404, 1946=>393, 1947=>436, 1948=>475, 1949=>779,
+ 1950=>775, 1951=>846, 1952=>490, 1953=>444, 1954=>414, 1955=>487, 1956=>404, 1957=>427, 1958=>32, 1959=>32, 1960=>39, 1961=>40, 1962=>39, 1963=>40, 1964=>40, 1965=>40,
+ 1966=>40, 1967=>40, 1968=>0, 2305=>415, 2306=>398, 2307=>398, 2309=>862, 2310=>1042, 2311=>553, 2312=>553, 2313=>597, 2314=>848, 2315=>967, 2316=>828, 2317=>654, 2319=>654,
+ 2321=>1042, 2323=>1042, 2324=>1042, 2325=>743, 2326=>798, 2327=>694, 2328=>694, 2329=>730, 2330=>734, 2331=>888, 2332=>814, 2333=>834, 2334=>734, 2335=>629, 2336=>629, 2337=>653,
+ 2338=>609, 2339=>694, 2340=>654, 2341=>694, 2342=>588, 2343=>694, 2344=>654, 2345=>654, 2346=>615, 2347=>788, 2348=>621, 2349=>694, 2350=>694, 2351=>694, 2352=>575, 2353=>575,
+ 2354=>787, 2355=>848, 2356=>848, 2357=>621, 2359=>615, 2360=>734, 2361=>609, 2364=>398, 2365=>569, 2366=>341, 2367=>341, 2368=>341, 2369=>0, 2370=>0, 2371=>0, 2372=>0,
+ 2373=>415, 2375=>615, 2376=>615, 2377=>341, 2379=>341, 2380=>341, 2381=>0, 2384=>1047, 2392=>743, 2393=>798, 2394=>694, 2395=>814, 2396=>653, 2397=>609, 2398=>788, 2400=>967,
+ 2401=>828, 2402=>0, 2403=>0, 2404=>398, 2405=>478, 2406=>455, 2407=>420, 2408=>569, 2409=>509, 2410=>702, 2411=>629, 2412=>569, 2413=>702, 2414=>609, 2415=>609, 2416=>626,
+ 2433=>0, 2434=>300, 2435=>312, 2437=>594, 2438=>776, 2439=>469, 2440=>513, 2441=>535, 2442=>561, 2443=>604, 2444=>481, 2447=>580, 2448=>604, 2451=>540, 2452=>620, 2453=>570,
+ 2454=>485, 2455=>484, 2456=>471, 2457=>457, 2458=>408, 2459=>452, 2460=>591, 2461=>551, 2462=>771, 2463=>414, 2464=>404, 2465=>522, 2466=>415, 2467=>450, 2468=>551, 2469=>477,
+ 2470=>478, 2471=>449, 2472=>448, 2474=>535, 2475=>611, 2476=>443, 2477=>534, 2478=>492, 2479=>474, 2480=>442, 2482=>542, 2486=>507, 2487=>467, 2488=>523, 2489=>419, 2492=>0,
+ 2493=>419, 2494=>202, 2495=>189, 2496=>202, 2497=>0, 2498=>0, 2499=>0, 2500=>0, 2503=>294, 2504=>289, 2507=>774, 2508=>825, 2509=>0, 2510=>356, 2519=>219, 2524=>523,
+ 2525=>420, 2527=>469, 2528=>604, 2529=>481, 2530=>0, 2531=>0, 2534=>500, 2535=>437, 2536=>479, 2537=>507, 2538=>497, 2539=>500, 2540=>482, 2541=>503, 2542=>517, 2543=>481,
+ 2544=>443, 2545=>443, 2546=>429, 2547=>383, 2548=>432, 2549=>478, 2550=>539, 2551=>158, 2552=>365, 2553=>280, 2554=>357, 2565=>744, 2566=>914, 2567=>690, 2568=>670, 2569=>596,
+ 2570=>596, 2575=>498, 2576=>744, 2579=>596, 2580=>744, 2581=>550, 2582=>534, 2583=>618, 2584=>690, 2585=>546, 2586=>518, 2587=>592, 2588=>492, 2589=>574, 2590=>514, 2591=>526,
+ 2592=>556, 2593=>524, 2594=>528, 2595=>574, 2596=>484, 2597=>534, 2598=>504, 2599=>534, 2600=>538, 2602=>534, 2603=>506, 2604=>562, 2605=>516, 2606=>546, 2607=>670, 2608=>538,
+ 2610=>726, 2611=>726, 2613=>514, 2614=>546, 2616=>546, 2617=>517, 2620=>286, 2622=>172, 2623=>190, 2624=>190, 2625=>1, 2626=>1, 2631=>1, 2632=>1, 2635=>1, 2636=>1,
+ 2637=>1, 2649=>534, 2650=>618, 2651=>492, 2652=>484, 2654=>506, 2662=>616, 2663=>480, 2664=>560, 2665=>480, 2666=>468, 2667=>492, 2668=>514, 2669=>538, 2670=>572, 2671=>560,
+ 2672=>1, 2674=>498, 2675=>596, 2676=>900, 2946=>443, 2947=>791, 2949=>1167, 2950=>1375, 2951=>1088, 2952=>758, 2953=>631, 2954=>1441, 2958=>773, 2959=>773, 2960=>887, 2962=>966,
+ 2963=>966, 2964=>2019, 2965=>869, 2969=>884, 2970=>779, 2972=>887, 2974=>1117, 2975=>756, 2979=>1578, 2980=>883, 2984=>719, 2985=>1168, 2986=>602, 2990=>802, 2991=>852, 2992=>580,
+ 2993=>703, 2994=>832, 2995=>1032, 2996=>827, 2997=>939, 2999=>1109, 3000=>1114, 3001=>1365, 3006=>580, 3007=>226, 3008=>376, 3009=>518, 3010=>771, 3014=>885, 3015=>640, 3016=>1076,
+ 3018=>1482, 3019=>1265, 3020=>1947, 3021=>234, 3031=>1032, 3074=>330, 3075=>225, 3077=>450, 3078=>457, 3079=>397, 3080=>726, 3081=>439, 3082=>686, 3083=>824, 3084=>539, 3086=>395,
+ 3087=>395, 3088=>423, 3090=>447, 3091=>442, 3092=>604, 3093=>370, 3094=>452, 3095=>398, 3096=>634, 3097=>445, 3098=>433, 3099=>433, 3100=>445, 3101=>390, 3102=>592, 3103=>453,
+ 3104=>388, 3105=>440, 3106=>439, 3107=>478, 3108=>420, 3109=>420, 3110=>421, 3111=>420, 3112=>413, 3114=>424, 3115=>427, 3116=>415, 3117=>422, 3120=>396, 3122=>419, 3330=>417,
+ 3331=>221, 3333=>1055, 3334=>1193, 3335=>792, 3336=>1467, 3337=>570, 3338=>1243, 3339=>676, 3340=>898, 3342=>1008, 3343=>1004, 3344=>1538, 3346=>585, 3347=>981, 3348=>1254, 3349=>775,
+ 3350=>798, 3351=>692, 3352=>1095, 3353=>809, 3354=>726, 3355=>963, 3356=>703, 3357=>1244, 3358=>1104, 3359=>462, 3360=>531, 3361=>983, 3362=>1027, 3363=>1102, 3364=>780, 3365=>731,
+ 3366=>485, 3367=>738, 3368=>747, 3370=>780, 3371=>961, 3372=>1023, 3373=>500, 3374=>510, 3375=>792, 3376=>528, 3377=>511, 3378=>713, 3379=>553, 3380=>516, 3381=>715, 3382=>785,
+ 3383=>920, 3384=>980, 3385=>977, 3390=>403, 3391=>283, 3392=>323, 3393=>275, 3394=>258, 3395=>378, 3398=>543, 3399=>478, 3400=>1086, 3402=>1127, 3403=>1038, 3404=>676, 3405=>89,
+ 3415=>676, 3424=>676, 3425=>1008, 3430=>675, 3431=>668, 3432=>673, 3433=>737, 3434=>721, 3435=>702, 3436=>702, 3437=>687, 3438=>675, 3439=>683, 3440=>375, 3458=>468, 3459=>318,
+ 3461=>660, 3465=>778, 3466=>807, 3467=>830, 3473=>838, 3476=>860, 3481=>1000, 3482=>973, 3483=>860, 3484=>997, 3486=>740, 3488=>838, 3489=>886, 3490=>886, 3492=>1295, 3493=>1295,
+ 3495=>838, 3496=>860, 3497=>860, 3498=>860, 3499=>1403, 3501=>973, 3502=>838, 3503=>660, 3504=>860, 3505=>973, 3507=>660, 3508=>886, 3509=>838, 3510=>860, 3511=>973, 3512=>838,
+ 3513=>860, 3514=>886, 3515=>807, 3517=>830, 3520=>838, 3521=>973, 3522=>886, 3523=>886, 3524=>973, 3525=>830, 3526=>973, 3530=>0, 3535=>432, 3536=>380, 3537=>420, 3538=>0,
+ 3539=>0, 3540=>0, 3542=>0, 3544=>501, 3545=>652, 3551=>648, 3585=>581, 3586=>529, 3587=>596, 3588=>581, 3589=>594, 3590=>649, 3591=>494, 3592=>561, 3593=>690, 3594=>529,
+ 3595=>596, 3596=>792, 3597=>793, 3598=>632, 3599=>632, 3600=>562, 3601=>707, 3602=>795, 3603=>891, 3604=>580, 3605=>591, 3606=>581, 3607=>642, 3608=>555, 3609=>689, 3610=>615,
+ 3611=>615, 3612=>600, 3613=>600, 3614=>671, 3615=>671, 3616=>632, 3617=>591, 3618=>536, 3619=>511, 3620=>581, 3621=>561, 3622=>632, 3623=>559, 3624=>593, 3625=>701, 3626=>573,
+ 3627=>643, 3628=>773, 3629=>561, 3630=>561, 3631=>506, 3632=>501, 3633=>0, 3634=>466, 3635=>467, 3636=>0, 3637=>0, 3638=>0, 3639=>0, 3640=>0, 3641=>0, 3642=>0,
+ 3647=>667, 3648=>329, 3649=>582, 3650=>406, 3651=>406, 3652=>406, 3653=>267, 3654=>525, 3655=>0, 3656=>0, 3657=>0, 3658=>0, 3659=>0, 3660=>0, 3661=>0, 3662=>0,
+ 3663=>707, 3664=>568, 3665=>568, 3666=>615, 3667=>639, 3668=>679, 3669=>680, 3670=>515, 3671=>767, 3672=>643, 3673=>608, 3674=>683, 3675=>1485, 4608=>583, 4609=>770, 4610=>560,
+ 4611=>525, 4612=>525, 4613=>583, 4614=>758, 4616=>598, 4617=>787, 4618=>817, 4619=>583, 4620=>758, 4621=>612, 4622=>875, 4623=>817, 4624=>817, 4625=>1050, 4626=>1050, 4627=>817,
+ 4628=>1050, 4629=>817, 4630=>787, 4631=>1021, 4632=>933, 4633=>1137, 4634=>1067, 4635=>980, 4636=>1065, 4637=>962, 4638=>962, 4639=>1097, 4640=>831, 4641=>1021, 4642=>851, 4643=>735,
+ 4644=>875, 4645=>968, 4646=>817, 4647=>881, 4648=>583, 4649=>642, 4650=>583, 4651=>758, 4652=>700, 4653=>583, 4654=>700, 4655=>758, 4656=>583, 4657=>787, 4658=>787, 4659=>583,
+ 4660=>729, 4661=>583, 4662=>583, 4663=>817, 4664=>642, 4665=>817, 4666=>846, 4667=>642, 4668=>758, 4669=>744, 4670=>642, 4671=>817, 4672=>700, 4673=>700, 4674=>700, 4675=>758,
+ 4676=>700, 4677=>700, 4678=>729, 4680=>846, 4682=>1079, 4683=>700, 4684=>700, 4685=>1021, 4688=>700, 4689=>700, 4690=>700, 4691=>758, 4692=>700, 4693=>758, 4694=>729, 4696=>846,
+ 4698=>1079, 4699=>700, 4700=>700, 4701=>1021, 4704=>525, 4705=>758, 4706=>758, 4707=>525, 4708=>700, 4709=>773, 4710=>525, 4711=>787, 4712=>525, 4713=>758, 4714=>758, 4715=>525,
+ 4716=>700, 4717=>773, 4718=>525, 4719=>525, 4720=>729, 4721=>729, 4722=>729, 4723=>802, 4724=>729, 4725=>729, 4726=>758, 4727=>729, 4728=>758, 4729=>758, 4730=>758, 4731=>817,
+ 4732=>758, 4733=>817, 4734=>758, 4735=>758, 4736=>612, 4737=>817, 4738=>817, 4739=>612, 4740=>787, 4741=>583, 4742=>875, 4744=>962, 4746=>992, 4747=>700, 4748=>758, 4749=>904,
+ 4752=>408, 4753=>583, 4754=>525, 4755=>554, 4756=>481, 4757=>554, 4758=>642, 4759=>671, 4760=>700, 4761=>758, 4762=>729, 4763=>700, 4764=>671, 4765=>700, 4766=>758, 4767=>700,
+ 4768=>583, 4769=>735, 4770=>822, 4771=>583, 4772=>793, 4773=>583, 4774=>583, 4775=>694, 4776=>554, 4777=>729, 4778=>773, 4779=>554, 4780=>700, 4781=>554, 4782=>554, 4784=>992,
+ 4786=>1021, 4787=>671, 4788=>787, 4789=>904, 4792=>729, 4793=>904, 4794=>948, 4795=>729, 4796=>875, 4797=>729, 4798=>729, 4800=>1137, 4801=>1000, 4802=>1167, 4803=>758, 4804=>875,
+ 4805=>1108, 4808=>758, 4809=>875, 4810=>700, 4811=>700, 4812=>700, 4813=>992, 4814=>758, 4816=>554, 4817=>787, 4818=>758, 4819=>583, 4820=>758, 4821=>496, 4822=>612, 4824=>525,
+ 4825=>700, 4826=>700, 4827=>525, 4828=>685, 4829=>729, 4830=>510, 4831=>729, 4832=>962, 4833=>962, 4834=>962, 4835=>962, 4836=>962, 4837=>1021, 4838=>962, 4839=>962, 4840=>467,
+ 4841=>525, 4842=>671, 4843=>612, 4844=>612, 4845=>671, 4846=>671, 4848=>612, 4849=>875, 4850=>817, 4851=>642, 4852=>729, 4853=>729, 4854=>758, 4855=>817, 4856=>700, 4857=>758,
+ 4858=>715, 4859=>700, 4860=>700, 4861=>787, 4862=>758, 4863=>700, 4864=>700, 4865=>758, 4866=>715, 4867=>700, 4868=>700, 4869=>787, 4870=>758, 4871=>700, 4872=>467, 4873=>671,
+ 4874=>671, 4875=>612, 4876=>612, 4877=>583, 4878=>525, 4880=>846, 4882=>904, 4883=>554, 4884=>700, 4885=>817, 4888=>525, 4889=>729, 4890=>729, 4891=>612, 4892=>671, 4893=>583,
+ 4894=>525, 4896=>817, 4897=>1021, 4898=>1021, 4899=>817, 4900=>992, 4901=>758, 4902=>817, 4903=>1021, 4904=>1079, 4905=>1137, 4906=>1137, 4907=>1050, 4908=>1312, 4909=>1050, 4910=>1050,
+ 4911=>1123, 4912=>647, 4913=>793, 4914=>822, 4915=>647, 4916=>793, 4917=>764, 4918=>583, 4919=>647, 4920=>583, 4921=>793, 4922=>822, 4923=>583, 4924=>793, 4925=>764, 4926=>583,
+ 4927=>793, 4928=>540, 4929=>758, 4930=>583, 4931=>467, 4932=>583, 4933=>481, 4934=>612, 4936=>758, 4937=>700, 4938=>758, 4939=>700, 4940=>831, 4941=>671, 4942=>758, 4943=>700,
+ 4944=>758, 4945=>758, 4946=>758, 4947=>817, 4948=>758, 4949=>758, 4950=>817, 4951=>758, 4952=>642, 4953=>980, 4954=>758, 4961=>233, 4962=>583, 4963=>408, 4964=>408, 4965=>525,
+ 4966=>525, 4967=>233, 4968=>700, 4969=>671, 4970=>612, 4971=>642, 4972=>642, 4973=>642, 4974=>583, 4975=>700, 4976=>758, 4977=>642, 4978=>583, 4979=>700, 4980=>729, 4981=>720,
+ 4982=>583, 4983=>758, 4984=>700, 4985=>904, 4986=>612, 4987=>583, 4988=>875, 7424=>484, 7427=>447, 7429=>484, 7431=>425, 7435=>295, 7436=>542, 7437=>409, 7438=>616, 7451=>431,
+ 7452=>509, 7456=>500, 7457=>722, 7458=>444, 7465=>408, 7553=>500, 7556=>525, 7557=>278, 7559=>507, 7565=>500, 7680=>722, 7681=>444, 7682=>667, 7683=>500, 7684=>667, 7685=>500,
+ 7686=>667, 7687=>500, 7688=>667, 7689=>444, 7690=>722, 7691=>500, 7692=>722, 7693=>500, 7694=>722, 7695=>500, 7696=>722, 7697=>500, 7698=>722, 7699=>500, 7700=>611, 7701=>444,
+ 7702=>611, 7703=>444, 7704=>611, 7705=>444, 7706=>611, 7707=>444, 7708=>611, 7709=>444, 7710=>556, 7711=>333, 7712=>722, 7713=>500, 7714=>722, 7715=>500, 7716=>722, 7717=>500,
+ 7718=>722, 7719=>500, 7720=>722, 7721=>500, 7722=>722, 7723=>500, 7724=>333, 7725=>278, 7726=>333, 7727=>278, 7728=>722, 7729=>500, 7730=>722, 7731=>500, 7732=>722, 7733=>500,
+ 7734=>611, 7735=>278, 7736=>611, 7737=>278, 7738=>611, 7739=>278, 7740=>611, 7741=>278, 7742=>889, 7743=>778, 7744=>889, 7745=>778, 7746=>889, 7747=>778, 7748=>722, 7749=>500,
+ 7750=>722, 7751=>500, 7752=>722, 7753=>500, 7754=>722, 7755=>500, 7756=>722, 7757=>500, 7758=>722, 7759=>500, 7760=>722, 7761=>500, 7762=>722, 7763=>500, 7764=>556, 7765=>500,
+ 7766=>556, 7767=>500, 7768=>667, 7769=>333, 7770=>667, 7771=>333, 7772=>667, 7773=>333, 7774=>667, 7775=>333, 7776=>556, 7777=>389, 7778=>556, 7779=>389, 7780=>556, 7781=>389,
+ 7782=>556, 7783=>389, 7784=>556, 7785=>389, 7786=>611, 7787=>278, 7788=>611, 7789=>278, 7790=>611, 7791=>278, 7792=>611, 7793=>278, 7794=>722, 7795=>500, 7796=>722, 7797=>500,
+ 7798=>722, 7799=>500, 7800=>722, 7801=>500, 7802=>722, 7803=>500, 7804=>722, 7805=>500, 7806=>722, 7807=>500, 7808=>944, 7809=>722, 7810=>944, 7811=>722, 7812=>944, 7813=>722,
+ 7814=>944, 7815=>722, 7816=>944, 7817=>722, 7818=>722, 7819=>500, 7820=>722, 7821=>500, 7822=>722, 7823=>500, 7824=>611, 7825=>444, 7826=>611, 7827=>444, 7828=>611, 7829=>444,
+ 7830=>500, 7831=>278, 7832=>722, 7833=>500, 7834=>444, 7835=>333, 7840=>722, 7841=>444, 7842=>807, 7843=>529, 7844=>722, 7845=>444, 7846=>722, 7847=>444, 7848=>807, 7849=>529,
+ 7850=>722, 7851=>444, 7852=>722, 7853=>444, 7854=>722, 7855=>444, 7856=>722, 7857=>444, 7858=>807, 7859=>529, 7860=>722, 7861=>444, 7862=>722, 7863=>444, 7864=>611, 7865=>444,
+ 7866=>696, 7867=>529, 7868=>611, 7869=>444, 7870=>611, 7871=>444, 7872=>611, 7873=>444, 7874=>696, 7875=>529, 7876=>611, 7877=>444, 7878=>611, 7879=>444, 7880=>333, 7881=>278,
+ 7882=>333, 7883=>278, 7884=>722, 7885=>500, 7886=>807, 7887=>585, 7888=>722, 7889=>500, 7890=>722, 7891=>500, 7892=>807, 7893=>585, 7894=>722, 7895=>500, 7896=>722, 7897=>500,
+ 7898=>722, 7899=>500, 7900=>722, 7901=>500, 7902=>807, 7903=>585, 7904=>722, 7905=>500, 7906=>722, 7907=>500, 7908=>722, 7909=>500, 7910=>807, 7911=>585, 7912=>722, 7913=>500,
+ 7914=>722, 7915=>500, 7916=>807, 7917=>585, 7918=>722, 7919=>500, 7920=>722, 7921=>500, 7922=>722, 7923=>500, 7924=>722, 7925=>500, 7926=>807, 7927=>585, 7928=>722, 7929=>500,
+ 7936=>587, 7937=>587, 7938=>587, 7939=>587, 7940=>587, 7941=>587, 7942=>587, 7943=>587, 7944=>722, 7945=>722, 7946=>833, 7947=>833, 7948=>833, 7949=>833, 7950=>833, 7951=>833,
+ 7952=>426, 7953=>426, 7954=>426, 7955=>426, 7956=>426, 7957=>426, 7960=>889, 7961=>889, 7962=>944, 7963=>944, 7964=>944, 7965=>944, 7968=>534, 7969=>534, 7970=>534, 7971=>534,
+ 7972=>534, 7973=>534, 7974=>534, 7975=>534, 7976=>889, 7977=>889, 7978=>1000, 7979=>1000, 7980=>1000, 7981=>1000, 7982=>1000, 7983=>1000, 7984=>267, 7985=>267, 7986=>267, 7987=>267,
+ 7988=>267, 7989=>267, 7990=>267, 7991=>267, 7992=>556, 7993=>556, 7994=>696, 7995=>696, 7996=>696, 7997=>696, 7998=>696, 7999=>696, 8000=>500, 8001=>500, 8002=>500, 8003=>500,
+ 8004=>500, 8005=>500, 8008=>889, 8009=>889, 8010=>944, 8011=>1000, 8012=>944, 8013=>1000, 8016=>534, 8017=>534, 8018=>534, 8019=>534, 8020=>534, 8021=>534, 8022=>534, 8023=>534,
+ 8025=>889, 8027=>1000, 8029=>1000, 8031=>1000, 8032=>693, 8033=>693, 8034=>693, 8035=>693, 8036=>693, 8037=>693, 8038=>693, 8039=>693, 8040=>944, 8041=>944, 8042=>1000, 8043=>1000,
+ 8044=>1000, 8045=>1000, 8046=>1000, 8047=>1000, 8048=>587, 8049=>587, 8050=>426, 8051=>426, 8052=>534, 8053=>534, 8054=>267, 8055=>267, 8056=>500, 8057=>500, 8058=>534, 8059=>534,
+ 8060=>693, 8061=>693, 8064=>587, 8065=>587, 8066=>587, 8067=>587, 8068=>587, 8069=>587, 8070=>587, 8071=>587, 8072=>944, 8073=>944, 8074=>1000, 8075=>1000, 8076=>1000, 8077=>1000,
+ 8078=>1000, 8079=>1000, 8080=>534, 8081=>534, 8082=>534, 8083=>534, 8084=>534, 8085=>534, 8086=>534, 8087=>534, 8088=>1116, 8089=>1116, 8090=>1227, 8091=>1227, 8092=>1227, 8093=>1227,
+ 8094=>1227, 8095=>1227, 8096=>693, 8097=>693, 8098=>693, 8099=>693, 8100=>693, 8101=>693, 8102=>693, 8103=>693, 8104=>1171, 8105=>1171, 8106=>1227, 8107=>1227, 8108=>1227, 8109=>1227,
+ 8110=>1227, 8111=>1227, 8112=>587, 8113=>587, 8114=>587, 8115=>587, 8116=>587, 8118=>587, 8119=>587, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>944, 8125=>250, 8126=>332,
+ 8127=>500, 8128=>500, 8129=>534, 8130=>534, 8131=>534, 8132=>534, 8134=>534, 8135=>534, 8136=>722, 8137=>722, 8138=>889, 8139=>889, 8140=>949, 8141=>500, 8142=>500, 8143=>500,
+ 8144=>267, 8145=>267, 8146=>267, 8147=>267, 8150=>267, 8151=>267, 8152=>333, 8153=>333, 8154=>500, 8155=>500, 8157=>500, 8158=>500, 8159=>500, 8160=>534, 8161=>534, 8162=>534,
+ 8163=>534, 8164=>534, 8165=>534, 8166=>534, 8167=>534, 8168=>696, 8169=>696, 8170=>889, 8171=>889, 8172=>778, 8173=>534, 8174=>534, 8175=>500, 8178=>693, 8179=>693, 8180=>693,
+ 8182=>693, 8183=>693, 8184=>889, 8185=>889, 8186=>889, 8187=>889, 8188=>1000, 8189=>500, 8190=>500, 8204=>0, 8205=>0, 8208=>333, 8209=>333, 8210=>500, 8213=>1000, 8215=>500,
+ 8219=>333, 8223=>444, 8227=>350, 8241=>1363, 8242=>247, 8243=>411, 8244=>611, 8245=>220, 8246=>440, 8247=>660, 8248=>469, 8251=>629, 8252=>666, 8253=>444, 8254=>500, 8255=>953,
+ 8256=>953, 8257=>314, 8258=>931, 8259=>333, 8260=>167, 8261=>383, 8262=>383, 8263=>888, 8264=>777, 8265=>777, 8266=>500, 8267=>453, 8304=>300, 8305=>300, 8308=>300, 8309=>300,
+ 8310=>300, 8311=>300, 8312=>300, 8313=>300, 8314=>300, 8315=>300, 8316=>300, 8319=>300, 8320=>300, 8321=>300, 8322=>300, 8323=>300, 8324=>300, 8325=>300, 8326=>300, 8327=>300,
+ 8328=>300, 8329=>300, 8330=>300, 8331=>300, 8332=>300, 8352=>698, 8353=>667, 8354=>667, 8355=>556, 8356=>500, 8357=>778, 8358=>722, 8359=>630, 8360=>1056, 8361=>944, 8367=>1340,
+ 8370=>611, 8413=>788, 8450=>667, 8451=>954, 8453=>1000, 8457=>822, 8458=>500, 8459=>969, 8460=>663, 8461=>822, 8462=>500, 8463=>500, 8464=>809, 8465=>686, 8466=>874, 8467=>417,
+ 8469=>822, 8470=>954, 8471=>760, 8472=>987, 8473=>656, 8474=>722, 8475=>850, 8476=>795, 8477=>767, 8478=>667, 8479=>667, 8480=>879, 8483=>722, 8484=>731, 8486=>757, 8487=>757,
+ 8488=>663, 8490=>722, 8491=>722, 8492=>908, 8493=>614, 8494=>533, 8496=>562, 8497=>895, 8498=>556, 8499=>1080, 8501=>823, 8502=>642, 8503=>315, 8504=>532, 8505=>417, 8531=>750,
+ 8532=>750, 8533=>750, 8534=>750, 8535=>750, 8536=>750, 8537=>750, 8538=>750, 8539=>750, 8540=>750, 8541=>750, 8542=>750, 8543=>750, 8544=>333, 8545=>630, 8546=>927, 8547=>1019,
+ 8548=>722, 8549=>1019, 8550=>1316, 8551=>1629, 8552=>1019, 8553=>722, 8554=>1019, 8555=>1316, 8556=>611, 8557=>667, 8558=>722, 8559=>889, 8560=>278, 8561=>556, 8562=>834, 8563=>778,
+ 8564=>500, 8565=>778, 8566=>1056, 8567=>1334, 8568=>778, 8569=>500, 8570=>778, 8571=>1056, 8572=>278, 8573=>444, 8574=>500, 8575=>778, 8592=>964, 8593=>500, 8594=>964, 8595=>499,
+ 8596=>964, 8597=>499, 8598=>964, 8599=>964, 8600=>964, 8601=>964, 8602=>964, 8603=>964, 8604=>1009, 8605=>1009, 8606=>964, 8608=>964, 8610=>1093, 8611=>1093, 8612=>1093, 8613=>500,
+ 8614=>1093, 8615=>500, 8616=>500, 8619=>964, 8620=>964, 8621=>1151, 8622=>964, 8624=>482, 8625=>482, 8626=>482, 8627=>482, 8628=>658, 8629=>658, 8630=>1069, 8631=>1069, 8634=>939,
+ 8635=>939, 8636=>964, 8637=>964, 8638=>499, 8639=>499, 8640=>964, 8641=>964, 8642=>499, 8643=>499, 8644=>964, 8645=>840, 8646=>964, 8647=>964, 8648=>840, 8649=>964, 8650=>840,
+ 8651=>964, 8652=>964, 8653=>964, 8654=>964, 8655=>964, 8656=>964, 8657=>550, 8658=>964, 8659=>550, 8660=>964, 8661=>550, 8662=>1047, 8663=>1047, 8664=>1047, 8665=>1047, 8666=>964,
+ 8667=>964, 8668=>1092, 8669=>1092, 8672=>964, 8674=>964, 8704=>587, 8705=>716, 8706=>494, 8707=>587, 8708=>587, 8709=>500, 8710=>612, 8711=>713, 8712=>536, 8713=>536, 8714=>439,
+ 8715=>536, 8716=>536, 8717=>439, 8719=>823, 8720=>823, 8721=>713, 8722=>636, 8723=>636, 8724=>636, 8725=>636, 8726=>636, 8727=>471, 8728=>497, 8729=>497, 8730=>549, 8731=>549,
+ 8732=>549, 8733=>636, 8734=>853, 8735=>509, 8736=>509, 8737=>509, 8738=>509, 8741=>320, 8742=>320, 8743=>654, 8744=>654, 8745=>654, 8746=>654, 8747=>416, 8748=>750, 8749=>1083,
+ 8750=>722, 8751=>750, 8756=>629, 8757=>629, 8758=>250, 8759=>629, 8760=>636, 8761=>847, 8762=>636, 8763=>636, 8764=>636, 8765=>636, 8768=>264, 8769=>636, 8770=>636, 8771=>636,
+ 8772=>636, 8773=>636, 8774=>636, 8775=>636, 8776=>636, 8777=>636, 8778=>636, 8779=>636, 8781=>636, 8782=>636, 8783=>636, 8784=>636, 8785=>636, 8786=>636, 8787=>636, 8788=>847,
+ 8789=>847, 8790=>636, 8791=>636, 8793=>636, 8794=>636, 8796=>636, 8800=>636, 8801=>636, 8802=>636, 8803=>636, 8804=>636, 8805=>636, 8806=>636, 8807=>636, 8808=>636, 8809=>636,
+ 8810=>918, 8811=>918, 8812=>410, 8813=>636, 8814=>636, 8815=>636, 8816=>636, 8817=>636, 8818=>636, 8819=>636, 8820=>636, 8821=>636, 8822=>636, 8823=>636, 8824=>636, 8825=>636,
+ 8826=>636, 8827=>636, 8828=>636, 8829=>636, 8830=>636, 8831=>636, 8832=>636, 8833=>636, 8834=>636, 8835=>636, 8836=>636, 8837=>636, 8838=>636, 8839=>636, 8840=>636, 8841=>636,
+ 8842=>636, 8843=>636, 8844=>654, 8845=>654, 8846=>654, 8847=>636, 8848=>636, 8849=>636, 8850=>636, 8851=>654, 8852=>654, 8853=>636, 8854=>636, 8855=>636, 8856=>636, 8857=>636,
+ 8858=>636, 8859=>636, 8860=>636, 8861=>636, 8862=>636, 8863=>636, 8864=>636, 8865=>636, 8866=>600, 8867=>600, 8868=>712, 8869=>712, 8870=>466, 8871=>466, 8873=>588, 8874=>710,
+ 8875=>588, 8876=>466, 8877=>466, 8878=>588, 8879=>588, 8882=>636, 8883=>636, 8884=>636, 8885=>636, 8886=>1296, 8887=>1296, 8888=>966, 8890=>626, 8891=>654, 8892=>654, 8893=>654,
+ 8896=>654, 8897=>654, 8898=>654, 8899=>654, 8900=>512, 8901=>250, 8902=>471, 8903=>629, 8904=>722, 8907=>816, 8908=>816, 8909=>636, 8910=>636, 8911=>636, 8912=>636, 8913=>636,
+ 8914=>654, 8915=>654, 8916=>654, 8917=>636, 8918=>636, 8919=>636, 8920=>1215, 8921=>1215, 8922=>636, 8923=>636, 8924=>636, 8925=>636, 8926=>636, 8927=>636, 8928=>636, 8929=>636,
+ 8930=>636, 8931=>636, 8932=>636, 8933=>636, 8934=>636, 8935=>636, 8936=>636, 8937=>636, 8938=>636, 8939=>636, 8940=>636, 8941=>636, 8942=>250, 8943=>1000, 8944=>1000, 8945=>1000,
+ 8960=>780, 8961=>444, 8968=>474, 8969=>474, 8970=>474, 8971=>474, 8976=>564, 8986=>805, 8992=>686, 8993=>686, 8994=>658, 8995=>658, 9001=>329, 9002=>329, 9031=>777, 9032=>777,
+ 9040=>777, 9047=>777, 9054=>777, 9134=>686, 9251=>500, 9312=>788, 9313=>788, 9314=>788, 9315=>788, 9316=>788, 9317=>788, 9318=>788, 9319=>788, 9320=>788, 9321=>788, 9472=>889,
+ 9473=>889, 9474=>889, 9475=>889, 9476=>889, 9477=>889, 9478=>889, 9479=>889, 9480=>889, 9481=>889, 9482=>889, 9483=>889, 9484=>889, 9485=>889, 9486=>889, 9487=>889, 9488=>889,
+ 9489=>889, 9490=>889, 9491=>889, 9492=>889, 9493=>889, 9494=>889, 9495=>889, 9496=>889, 9497=>889, 9498=>889, 9499=>889, 9500=>889, 9501=>889, 9502=>889, 9503=>889, 9504=>889,
+ 9505=>889, 9506=>889, 9507=>889, 9508=>889, 9509=>889, 9510=>889, 9511=>889, 9512=>889, 9513=>889, 9514=>889, 9515=>889, 9516=>889, 9517=>889, 9518=>889, 9519=>889, 9520=>889,
+ 9521=>889, 9522=>889, 9523=>889, 9524=>889, 9525=>889, 9526=>889, 9527=>889, 9528=>889, 9529=>889, 9530=>889, 9531=>889, 9532=>889, 9533=>889, 9534=>889, 9535=>889, 9536=>889,
+ 9537=>889, 9538=>889, 9539=>889, 9540=>889, 9541=>889, 9542=>889, 9543=>889, 9544=>889, 9545=>889, 9546=>889, 9547=>889, 9552=>889, 9553=>889, 9554=>889, 9555=>889, 9556=>889,
+ 9557=>889, 9558=>889, 9559=>889, 9560=>889, 9561=>889, 9562=>889, 9563=>889, 9564=>889, 9565=>889, 9566=>889, 9567=>889, 9568=>889, 9569=>889, 9570=>889, 9571=>889, 9572=>889,
+ 9573=>889, 9574=>889, 9575=>889, 9576=>889, 9577=>889, 9578=>889, 9579=>889, 9580=>889, 9581=>889, 9600=>761, 9601=>761, 9602=>761, 9603=>761, 9604=>761, 9605=>761, 9606=>761,
+ 9607=>761, 9608=>761, 9609=>761, 9610=>761, 9611=>761, 9612=>761, 9613=>761, 9614=>761, 9615=>761, 9616=>761, 9620=>761, 9621=>761, 9632=>761, 9633=>761, 9650=>892, 9654=>892,
+ 9660=>892, 9664=>892, 9670=>788, 9674=>494, 9675=>791, 9676=>684, 9679=>791, 9680=>791, 9681=>791, 9682=>791, 9683=>791, 9684=>791, 9685=>791, 9686=>791, 9687=>791, 9698=>761,
+ 9699=>761, 9700=>761, 9701=>761, 9703=>761, 9704=>761, 9705=>761, 9706=>761, 9733=>816, 9734=>823, 9740=>799, 9741=>972, 9742=>719, 9744=>761, 9745=>761, 9746=>761, 9753=>760,
+ 9754=>960, 9755=>960, 9756=>939, 9757=>500, 9758=>939, 9759=>500, 9760=>500, 9762=>805, 9763=>805, 9766=>494, 9768=>494, 9770=>805, 9772=>640, 9774=>805, 9775=>805, 9776=>600,
+ 9777=>600, 9778=>600, 9779=>600, 9780=>600, 9781=>600, 9782=>600, 9783=>600, 9784=>805, 9785=>805, 9786=>805, 9787=>805, 9788=>805, 9789=>777, 9790=>777, 9791=>541, 9792=>541,
+ 9793=>541, 9794=>799, 9795=>700, 9796=>583, 9797=>541, 9798=>652, 9799=>583, 9800=>805, 9801=>805, 9802=>805, 9803=>1013, 9804=>833, 9805=>1152, 9806=>1152, 9807=>1152, 9808=>704,
+ 9809=>805, 9810=>1152, 9811=>805, 9812=>800, 9813=>800, 9814=>800, 9815=>800, 9816=>800, 9817=>800, 9818=>800, 9819=>800, 9820=>800, 9821=>800, 9822=>800, 9823=>800, 9824=>626,
+ 9825=>694, 9826=>595, 9827=>776, 9829=>694, 9830=>595, 9833=>333, 9834=>555, 9835=>722, 9836=>722, 9837=>415, 9838=>377, 9839=>402, 9840=>776, 9841=>776, 9985=>974, 9986=>961,
+ 9987=>974, 9988=>980, 9990=>789, 9991=>790, 9992=>791, 9993=>690, 9996=>549, 9997=>855, 9998=>911, 9999=>933, 10000=>911, 10001=>945, 10002=>974, 10003=>755, 10004=>846, 10005=>762,
+ 10006=>761, 10007=>571, 10008=>677, 10009=>763, 10010=>760, 10011=>759, 10012=>754, 10013=>494, 10014=>552, 10015=>537, 10016=>577, 10017=>692, 10018=>786, 10019=>788, 10020=>788, 10021=>790,
+ 10022=>793, 10023=>794, 10025=>823, 10026=>789, 10027=>841, 10028=>823, 10029=>833, 10030=>816, 10031=>831, 10032=>923, 10033=>744, 10034=>723, 10035=>749, 10036=>790, 10037=>792, 10038=>695,
+ 10039=>776, 10040=>768, 10041=>792, 10042=>759, 10043=>707, 10044=>708, 10045=>682, 10046=>701, 10047=>826, 10048=>815, 10049=>789, 10050=>789, 10051=>707, 10052=>687, 10053=>696, 10054=>689,
+ 10055=>786, 10056=>787, 10057=>713, 10058=>791, 10059=>785, 10061=>873, 10063=>762, 10064=>762, 10065=>759, 10066=>759, 10070=>784, 10072=>138, 10073=>277, 10074=>415, 10075=>392, 10076=>392,
+ 10077=>668, 10078=>668, 10081=>732, 10082=>544, 10083=>544, 10084=>910, 10085=>667, 10086=>760, 10087=>760, 10102=>788, 10103=>788, 10104=>788, 10105=>788, 10106=>788, 10107=>788, 10108=>788,
+ 10109=>788, 10110=>788, 10111=>788, 10112=>788, 10113=>788, 10114=>788, 10115=>788, 10116=>788, 10117=>788, 10118=>788, 10119=>788, 10120=>788, 10121=>788, 10122=>788, 10123=>788, 10124=>788,
+ 10125=>788, 10126=>788, 10127=>788, 10128=>788, 10129=>788, 10130=>788, 10131=>788, 10132=>894, 10136=>748, 10137=>924, 10138=>748, 10139=>918, 10140=>927, 10141=>928, 10142=>928, 10143=>834,
+ 10144=>873, 10145=>828, 10146=>924, 10147=>924, 10148=>917, 10149=>930, 10150=>931, 10151=>463, 10152=>883, 10153=>836, 10154=>836, 10155=>867, 10156=>867, 10157=>696, 10158=>696, 10159=>874,
+ 10161=>874, 10162=>760, 10163=>946, 10164=>771, 10165=>865, 10166=>771, 10167=>888, 10168=>967, 10169=>888, 10170=>831, 10171=>873, 10172=>927, 10173=>970, 10174=>918, 12289=>1000, 12290=>1000,
+ 12291=>1000, 12293=>1000, 12295=>1000, 12296=>1000, 12297=>1000, 12298=>1000, 12299=>1000, 12300=>1000, 12301=>1000, 12302=>1000, 12303=>1000, 12304=>1000, 12305=>1000, 12306=>1000, 12308=>1000, 12309=>1000,
+ 12353=>1000, 12354=>1000, 12355=>1000, 12356=>1000, 12357=>1000, 12358=>1000, 12359=>1000, 12360=>1000, 12361=>1000, 12362=>1000, 12363=>1000, 12364=>1000, 12365=>1000, 12366=>1000, 12367=>1000, 12368=>1000,
+ 12369=>1000, 12370=>1000, 12371=>1000, 12372=>1000, 12373=>1000, 12374=>1000, 12375=>1000, 12376=>1000, 12377=>1000, 12378=>1000, 12379=>1000, 12380=>1000, 12381=>1000, 12382=>1000, 12383=>1000, 12384=>1000,
+ 12385=>1000, 12386=>1000, 12387=>1000, 12388=>1000, 12389=>1000, 12390=>1000, 12391=>1000, 12392=>1000, 12393=>1000, 12394=>1000, 12395=>1000, 12396=>1000, 12397=>1000, 12398=>1000, 12399=>1000, 12400=>1000,
+ 12401=>1000, 12402=>1000, 12403=>1000, 12404=>1000, 12405=>1000, 12406=>1000, 12407=>1000, 12408=>1000, 12409=>1000, 12410=>1000, 12411=>1000, 12412=>1000, 12413=>1000, 12414=>1000, 12415=>1000, 12416=>1000,
+ 12417=>1000, 12418=>1000, 12419=>1000, 12420=>1000, 12421=>1000, 12422=>1000, 12423=>1000, 12424=>1000, 12425=>1000, 12426=>1000, 12427=>1000, 12428=>1000, 12429=>1000, 12430=>1000, 12431=>1000, 12432=>1000,
+ 12433=>1000, 12434=>1000, 12435=>1000, 12436=>1273, 12441=>1000, 12443=>1000, 12449=>1000, 12450=>1000, 12451=>1000, 12452=>1000, 12453=>1000, 12454=>1000, 12455=>1000, 12456=>1000, 12457=>1000, 12458=>1000,
+ 12459=>1000, 12460=>1000, 12461=>1000, 12462=>1000, 12463=>1000, 12464=>1000, 12465=>1000, 12466=>1000, 12467=>1000, 12468=>1000, 12469=>1000, 12470=>1000, 12471=>1000, 12472=>1000, 12473=>1000, 12474=>1000,
+ 12475=>1000, 12476=>1000, 12477=>1000, 12478=>1000, 12479=>1000, 12480=>1000, 12481=>1000, 12482=>1000, 12483=>1000, 12484=>1000, 12485=>1000, 12486=>1000, 12487=>1000, 12488=>1000, 12489=>1000, 12490=>1000,
+ 12491=>1000, 12492=>1000, 12493=>1000, 12494=>1000, 12495=>1000, 12496=>1000, 12497=>1000, 12498=>1000, 12499=>1000, 12500=>1000, 12501=>1000, 12502=>1000, 12503=>1000, 12504=>1000, 12505=>1000, 12506=>1000,
+ 12507=>1000, 12508=>1000, 12509=>1000, 12510=>1000, 12511=>1000, 12512=>1000, 12513=>1000, 12514=>1000, 12515=>1000, 12516=>1000, 12517=>1000, 12518=>1000, 12519=>1000, 12520=>1000, 12521=>1000, 12522=>1000,
+ 12523=>1000, 12524=>1000, 12525=>1000, 12526=>1000, 12527=>1000, 12528=>1000, 12529=>1000, 12530=>1000, 12531=>1000, 12532=>1000, 12533=>1000, 12534=>1000, 12535=>1273, 12536=>1273, 12537=>1273, 12538=>1273,
+ 12539=>250, 12540=>1000, 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500, 63038=>500, 63039=>500, 63040=>500, 63041=>500, 63166=>278, 63171=>333, 63193=>790, 63194=>790, 63195=>890,
+ 63196=>500, 63718=>603, 63719=>1000, 63720=>790, 63721=>790, 63722=>786, 63723=>384, 63724=>384, 63725=>384, 63726=>384, 63727=>384, 63728=>384, 63729=>494, 63730=>494, 63731=>494, 63732=>494,
+ 63733=>686, 63734=>384, 63735=>384, 63736=>384, 63737=>384, 63738=>384, 63739=>384, 63740=>494, 63741=>494, 63742=>494, 64256=>605, 64257=>556, 64258=>556, 64259=>824, 64260=>821, 64262=>677,
+ 64298=>537, 64299=>537, 64300=>537, 64301=>537, 64302=>537, 64303=>537, 64304=>537, 64305=>537, 64306=>350, 64307=>537, 64308=>537, 64309=>350, 64310=>350, 64312=>537, 64313=>350, 64314=>537,
+ 64315=>537, 64316=>537, 64318=>537, 64320=>350, 64321=>537, 64323=>537, 64324=>537, 64326=>537, 64327=>537, 64328=>537, 64329=>537, 64330=>537, 64331=>350, 64332=>537, 64333=>537, 64334=>537,
+ 64342=>926, 64343=>926, 64344=>308, 64345=>308, 64378=>750, 64379=>750, 64380=>580, 64381=>580, 64394=>338, 64395=>338, 64402=>874, 64403=>874, 64404=>329, 64405=>329, 64508=>776, 64509=>700,
+ 64510=>304, 64511=>304, 65010=>640, 65020=>837, 65136=>300, 65140=>300, 65142=>300, 65144=>300, 65146=>300, 65148=>300, 65153=>321, 65164=>301, 65165=>249, 65166=>275, 65167=>950, 65168=>950,
+ 65169=>293, 65170=>293, 65173=>925, 65174=>925, 65175=>308, 65176=>308, 65177=>924, 65178=>924, 65179=>298, 65180=>298, 65181=>750, 65182=>750, 65183=>574, 65184=>574, 65185=>748, 65186=>750,
+ 65187=>600, 65188=>600, 65189=>701, 65190=>775, 65191=>596, 65192=>596, 65193=>397, 65194=>397, 65195=>399, 65196=>399, 65197=>328, 65198=>328, 65199=>331, 65200=>331, 65201=>951, 65202=>951,
+ 65203=>600, 65204=>600, 65205=>949, 65206=>949, 65207=>649, 65208=>649, 65209=>949, 65210=>949, 65211=>823, 65212=>823, 65213=>949, 65214=>949, 65215=>805, 65216=>805, 65217=>557, 65221=>550,
+ 65225=>625, 65226=>575, 65227=>674, 65228=>550, 65229=>602, 65230=>577, 65231=>578, 65232=>577, 65233=>801, 65234=>801, 65235=>300, 65236=>300, 65237=>696, 65238=>696, 65239=>650, 65240=>650,
+ 65241=>757, 65242=>757, 65243=>318, 65244=>318, 65245=>655, 65246=>655, 65247=>206, 65248=>206, 65249=>549, 65250=>549, 65251=>403, 65252=>403, 65253=>651, 65254=>651, 65255=>323, 65256=>323,
+ 65257=>424, 65258=>622, 65259=>525, 65260=>476, 65261=>399, 65262=>399, 65275=>676, 65276=>724, 65533=>788);
$enc='';
$diff='';
-$file='FreeSerif.z';
-$ctg='FreeSerif.ctg.z';
-$originalsize=621136;
+$file='freeserif.z';
+$ctg='freeserif.ctg.z';
+$originalsize=1143380;
?>
diff --git a/lib/tcpdf/fonts/freeserif.z b/lib/tcpdf/fonts/freeserif.z
new file mode 100644
index 0000000000..f7501297f7
Binary files /dev/null and b/lib/tcpdf/fonts/freeserif.z differ
diff --git a/lib/tcpdf/fonts/freeserifb.ctg.z b/lib/tcpdf/fonts/freeserifb.ctg.z
new file mode 100644
index 0000000000..e8e4467525
Binary files /dev/null and b/lib/tcpdf/fonts/freeserifb.ctg.z differ
diff --git a/lib/tcpdf/fonts/freeserifb.php b/lib/tcpdf/fonts/freeserifb.php
index eba5d54d35..97fa0a3e11 100755
--- a/lib/tcpdf/fonts/freeserifb.php
+++ b/lib/tcpdf/fonts/freeserifb.php
@@ -1,110 +1,158 @@
1173,'Descent'=>-488,'CapHeight'=>1173,'Flags'=>32,'FontBBox'=>'[-500 -488 1860 1173]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
+$desc=array('Ascent'=>1173,'Descent'=>-488,'CapHeight'=>1173,'Flags'=>32,'FontBBox'=>'[-560 -488 1860 1173]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
- 13=>333, 32=>250, 33=>333, 34=>555, 35=>500, 36=>500, 37=>1000, 38=>833, 39=>278, 40=>333, 41=>333, 42=>500, 43=>570, 44=>250, 45=>333, 46=>250,
- 47=>278, 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>333, 59=>333, 60=>570, 61=>570, 62=>570,
- 63=>500, 64=>930, 65=>722, 66=>667, 67=>722, 68=>724, 69=>667, 70=>611, 71=>778, 72=>774, 73=>386, 74=>500, 75=>764, 76=>664, 77=>943, 78=>722,
- 79=>778, 80=>611, 81=>778, 82=>712, 83=>556, 84=>667, 85=>722, 86=>722, 87=>1000, 88=>722, 89=>722, 90=>667, 91=>333, 92=>278, 93=>333, 94=>581,
- 95=>500, 96=>333, 97=>500, 98=>556, 99=>444, 100=>556, 101=>444, 102=>333, 103=>500, 104=>556, 105=>278, 106=>333, 107=>556, 108=>278, 109=>833, 110=>556,
- 111=>500, 112=>556, 113=>556, 114=>444, 115=>389, 116=>333, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, 122=>444, 123=>394, 124=>220, 125=>394, 126=>520,
- 8364=>500, 1027=>611, 8218=>333, 1107=>458, 8222=>500, 8230=>1000, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>556, 8249=>333, 338=>1000, 1036=>778, 381=>667, 1039=>778,
- 8216=>333, 8217=>333, 8220=>500, 8221=>500, 8226=>350, 8211=>500, 8212=>1000, 732=>333, 8482=>1000, 353=>389, 8250=>333, 339=>722, 1116=>534, 382=>444, 376=>722, 161=>333,
- 162=>500, 163=>500, 164=>500, 165=>500, 166=>220, 167=>500, 168=>333, 169=>747, 170=>300, 171=>500, 172=>570, 174=>747, 175=>333, 176=>400, 177=>570, 178=>300,
- 179=>300, 180=>333, 181=>556, 182=>540, 183=>250, 184=>333, 185=>300, 186=>330, 187=>500, 188=>750, 189=>750, 190=>750, 191=>500, 192=>722, 193=>722, 194=>722,
- 195=>722, 196=>722, 197=>722, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>389, 205=>389, 206=>389, 207=>389, 208=>722, 209=>722, 210=>778,
- 211=>778, 212=>778, 213=>778, 214=>778, 215=>570, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>722, 222=>611, 223=>556, 224=>500, 225=>500, 226=>500,
- 227=>500, 228=>500, 229=>500, 230=>722, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>556, 242=>500,
- 243=>500, 244=>500, 245=>500, 246=>500, 247=>570, 248=>500, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>556, 255=>500, 256=>722, 257=>500, 258=>722,
- 259=>500, 260=>722, 261=>500, 262=>722, 263=>444, 264=>722, 265=>444, 266=>722, 267=>444, 268=>722, 269=>444, 270=>722, 271=>556, 272=>722, 273=>556, 274=>667,
- 275=>444, 276=>667, 277=>444, 278=>667, 279=>444, 280=>667, 281=>444, 282=>667, 283=>444, 284=>778, 285=>500, 286=>778, 287=>500, 288=>778, 289=>500, 290=>778,
- 291=>500, 292=>778, 293=>556, 294=>778, 295=>556, 296=>389, 297=>278, 298=>389, 299=>278, 300=>389, 301=>278, 302=>389, 303=>278, 304=>389, 305=>278, 306=>882,
- 307=>486, 308=>500, 309=>333, 310=>778, 311=>556, 312=>534, 313=>667, 314=>278, 315=>667, 316=>278, 317=>667, 318=>278, 319=>667, 320=>528, 321=>667, 322=>278,
- 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>704, 330=>722, 331=>556, 332=>778, 333=>500, 334=>778, 335=>500, 336=>778, 337=>500, 340=>722,
- 341=>444, 342=>722, 343=>444, 344=>722, 345=>444, 346=>556, 347=>389, 348=>556, 349=>389, 350=>556, 351=>389, 354=>667, 355=>333, 356=>667, 357=>333, 358=>667,
- 359=>333, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>1000, 373=>722, 374=>722,
- 375=>500, 377=>667, 378=>444, 379=>667, 380=>444, 383=>333, 439=>1000, 450=>570, 461=>722, 462=>500, 463=>386, 464=>278, 465=>778, 466=>500, 467=>722, 468=>556,
- 469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556, 477=>444, 478=>722, 479=>500, 482=>1000, 483=>722, 484=>778, 485=>500, 486=>778,
- 487=>500, 488=>764, 489=>556, 490=>778, 491=>500, 492=>778, 493=>500, 494=>654, 495=>508, 500=>778, 501=>500, 504=>722, 505=>556, 506=>722, 507=>500, 508=>1000,
- 509=>722, 510=>778, 511=>500, 512=>722, 513=>500, 514=>722, 515=>500, 516=>667, 517=>444, 518=>667, 519=>444, 520=>386, 521=>278, 522=>386, 523=>278, 524=>778,
- 525=>500, 526=>778, 527=>500, 528=>712, 529=>444, 530=>712, 531=>444, 532=>722, 533=>556, 534=>722, 535=>556, 536=>556, 537=>389, 538=>667, 539=>333, 542=>774,
- 543=>556, 550=>722, 551=>500, 552=>667, 553=>444, 554=>778, 555=>500, 556=>778, 557=>500, 558=>778, 559=>500, 560=>778, 561=>500, 562=>722, 563=>500, 658=>508,
- 711=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0,
- 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0,
- 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0,
- 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0,
- 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>0, 894=>333, 900=>180, 901=>330, 902=>722, 903=>250,
- 904=>811, 905=>958, 906=>569, 908=>811, 910=>902, 911=>811, 912=>330, 913=>722, 914=>667, 915=>611, 916=>759, 917=>667, 918=>667, 919=>778, 920=>778, 921=>389,
- 922=>778, 923=>722, 924=>944, 925=>722, 926=>650, 927=>778, 928=>812, 929=>611, 931=>650, 932=>667, 933=>722, 934=>868, 935=>722, 936=>868, 937=>811, 938=>0,
- 939=>722, 940=>605, 941=>440, 942=>605, 943=>330, 944=>550, 945=>605, 946=>550, 947=>550, 948=>550, 949=>440, 950=>495, 951=>605, 952=>550, 953=>330, 954=>608,
- 955=>495, 956=>605, 957=>495, 958=>495, 959=>550, 960=>605, 961=>550, 962=>440, 963=>550, 964=>440, 965=>550, 966=>660, 967=>495, 968=>715, 969=>715, 970=>330,
- 971=>550, 972=>550, 973=>550, 974=>715, 976=>550, 977=>550, 978=>722, 979=>722, 980=>722, 981=>660, 982=>605, 986=>510, 987=>426, 988=>611, 989=>470, 1024=>667,
- 1025=>667, 1026=>667, 1028=>722, 1029=>556, 1030=>389, 1031=>389, 1032=>500, 1033=>1032, 1034=>1032, 1035=>808, 1037=>778, 1038=>722, 1040=>722, 1041=>667, 1042=>667, 1043=>591,
- 1044=>778, 1045=>667, 1046=>1107, 1047=>564, 1048=>773, 1049=>773, 1050=>764, 1051=>778, 1052=>944, 1053=>778, 1054=>778, 1055=>774, 1056=>611, 1057=>722, 1058=>667, 1059=>722,
- 1060=>800, 1061=>722, 1062=>773, 1063=>778, 1064=>1113, 1065=>1112, 1066=>867, 1067=>970, 1068=>630, 1069=>722, 1070=>1114, 1071=>735, 1072=>500, 1073=>500, 1074=>502, 1075=>443,
- 1076=>556, 1077=>444, 1078=>750, 1079=>408, 1080=>574, 1081=>574, 1082=>534, 1083=>544, 1084=>676, 1085=>556, 1086=>500, 1087=>556, 1088=>556, 1089=>444, 1090=>494, 1091=>500,
- 1092=>825, 1093=>500, 1094=>556, 1095=>556, 1096=>818, 1097=>818, 1098=>612, 1099=>762, 1100=>512, 1101=>444, 1102=>790, 1103=>512, 1104=>444, 1105=>444, 1106=>556, 1108=>444,
- 1109=>389, 1110=>278, 1111=>278, 1112=>333, 1113=>792, 1114=>786, 1115=>556, 1117=>556, 1118=>500, 1119=>556, 1164=>611, 1165=>512, 1166=>611, 1167=>556, 1168=>611, 1169=>458,
- 1170=>611, 1171=>458, 1172=>611, 1173=>458, 1174=>1107, 1175=>750, 1176=>580, 1177=>389, 1178=>778, 1179=>534, 1180=>778, 1181=>534, 1182=>778, 1183=>534, 1184=>967, 1185=>633,
- 1186=>778, 1187=>556, 1188=>1014, 1189=>735, 1190=>778, 1191=>830, 1192=>722, 1193=>444, 1194=>722, 1195=>444, 1196=>667, 1197=>494, 1198=>722, 1199=>500, 1200=>722, 1201=>500,
- 1202=>722, 1203=>500, 1204=>1046, 1205=>778, 1206=>778, 1207=>556, 1208=>778, 1209=>556, 1210=>778, 1211=>556, 1212=>660, 1213=>444, 1214=>660, 1215=>444, 1216=>389, 1217=>1107,
- 1218=>750, 1219=>778, 1220=>534, 1223=>778, 1224=>556, 1227=>778, 1228=>556, 1232=>722, 1233=>500, 1234=>722, 1235=>500, 1236=>1000, 1237=>722, 1238=>667, 1239=>444, 1240=>660,
- 1241=>444, 1242=>660, 1243=>444, 1244=>1107, 1245=>750, 1246=>564, 1247=>408, 1248=>580, 1249=>389, 1250=>778, 1251=>556, 1252=>778, 1253=>556, 1254=>778, 1255=>500, 1256=>778,
- 1257=>500, 1258=>778, 1259=>500, 1260=>722, 1261=>444, 1262=>722, 1263=>500, 1264=>722, 1265=>500, 1266=>722, 1267=>500, 1268=>778, 1269=>556, 1272=>987, 1273=>762, 1488=>504,
- 1489=>504, 1490=>313, 1491=>504, 1492=>504, 1493=>285, 1494=>285, 1495=>504, 1496=>504, 1497=>285, 1498=>517, 1499=>504, 1500=>504, 1501=>504, 1502=>504, 1503=>281, 1504=>285,
- 1505=>504, 1506=>504, 1507=>526, 1508=>504, 1509=>491, 1510=>504, 1511=>549, 1512=>513, 1513=>538, 1514=>504, 1548=>250, 7680=>722, 7681=>500, 7682=>667, 7683=>556, 7684=>667,
- 7685=>556, 7686=>667, 7687=>556, 7688=>722, 7689=>444, 7690=>724, 7691=>556, 7692=>724, 7693=>556, 7694=>724, 7695=>556, 7696=>724, 7697=>556, 7698=>724, 7699=>556, 7700=>667,
- 7701=>444, 7702=>667, 7703=>444, 7704=>667, 7705=>444, 7706=>667, 7707=>444, 7708=>667, 7709=>444, 7710=>611, 7711=>333, 7712=>778, 7713=>500, 7714=>774, 7715=>556, 7716=>774,
- 7717=>556, 7718=>774, 7719=>556, 7720=>774, 7721=>556, 7722=>774, 7723=>556, 7724=>386, 7725=>278, 7726=>389, 7727=>278, 7728=>764, 7729=>556, 7730=>764, 7731=>556, 7732=>764,
- 7733=>556, 7734=>664, 7735=>278, 7736=>664, 7737=>278, 7738=>664, 7739=>278, 7740=>664, 7741=>278, 7742=>943, 7743=>833, 7744=>943, 7745=>833, 7746=>943, 7747=>833, 7748=>722,
- 7749=>556, 7750=>722, 7751=>556, 7752=>722, 7753=>556, 7754=>722, 7755=>556, 7756=>778, 7757=>500, 7758=>778, 7759=>500, 7760=>778, 7761=>500, 7762=>778, 7763=>500, 7764=>611,
- 7765=>556, 7766=>611, 7767=>556, 7768=>712, 7769=>444, 7770=>712, 7771=>444, 7772=>712, 7773=>444, 7774=>712, 7775=>444, 7776=>556, 7777=>389, 7778=>556, 7779=>389, 7780=>556,
- 7781=>389, 7782=>556, 7783=>389, 7784=>556, 7785=>389, 7786=>667, 7787=>333, 7788=>667, 7789=>333, 7790=>667, 7791=>333, 7792=>667, 7793=>333, 7794=>722, 7795=>556, 7796=>722,
- 7797=>556, 7798=>722, 7799=>556, 7800=>722, 7801=>556, 7802=>722, 7803=>556, 7804=>722, 7805=>500, 7806=>722, 7807=>500, 7808=>1000, 7809=>722, 7810=>1000, 7811=>722, 7812=>1000,
- 7813=>722, 7814=>1000, 7815=>722, 7816=>1000, 7817=>722, 7818=>722, 7819=>500, 7820=>722, 7821=>500, 7822=>722, 7823=>500, 7824=>667, 7825=>444, 7826=>667, 7827=>444, 7828=>667,
- 7829=>444, 7830=>556, 7831=>333, 7832=>722, 7833=>500, 7835=>333, 7840=>722, 7841=>500, 7842=>722, 7843=>500, 7844=>722, 7845=>500, 7846=>722, 7847=>500, 7848=>722, 7849=>500,
- 7850=>722, 7851=>500, 7852=>722, 7853=>500, 7854=>722, 7855=>500, 7856=>722, 7857=>500, 7858=>722, 7859=>500, 7860=>722, 7861=>500, 7862=>722, 7863=>500, 7864=>667, 7865=>444,
- 7866=>667, 7867=>444, 7868=>667, 7869=>444, 7870=>667, 7871=>444, 7872=>667, 7873=>444, 7874=>667, 7875=>444, 7876=>667, 7877=>444, 7878=>667, 7879=>444, 7880=>386, 7881=>278,
- 7882=>386, 7883=>278, 7884=>778, 7885=>500, 7886=>778, 7887=>500, 7888=>778, 7889=>500, 7890=>778, 7891=>500, 7892=>778, 7893=>500, 7894=>778, 7895=>500, 7896=>778, 7897=>500,
- 7908=>722, 7909=>556, 7910=>722, 7911=>556, 7922=>722, 7923=>500, 7924=>722, 7925=>500, 7926=>722, 7927=>500, 7928=>722, 7929=>500, 7936=>605, 7937=>605, 7938=>605, 7939=>605,
- 7940=>605, 7941=>605, 7942=>605, 7943=>605, 7944=>722, 7945=>722, 7946=>722, 7947=>722, 7948=>722, 7949=>722, 7950=>722, 7951=>722, 7952=>440, 7953=>440, 7954=>440, 7955=>440,
- 7956=>440, 7957=>440, 7960=>667, 7961=>667, 7962=>667, 7963=>667, 7964=>667, 7965=>667, 7968=>605, 7969=>605, 7970=>605, 7971=>605, 7972=>605, 7973=>605, 7974=>605, 7975=>605,
- 7976=>778, 7977=>778, 7978=>778, 7979=>778, 7980=>778, 7981=>778, 7982=>778, 7983=>778, 7984=>330, 7985=>330, 7986=>330, 7987=>330, 7988=>330, 7989=>330, 7990=>330, 7991=>330,
- 7992=>389, 7993=>389, 7994=>389, 7995=>389, 7996=>389, 7997=>389, 7998=>389, 7999=>389, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>778, 8009=>778,
- 8010=>778, 8011=>778, 8012=>778, 8013=>778, 8016=>550, 8017=>550, 8018=>550, 8019=>550, 8020=>550, 8021=>550, 8022=>550, 8023=>550, 8025=>722, 8027=>722, 8029=>722, 8031=>722,
- 8032=>715, 8033=>715, 8034=>715, 8035=>715, 8036=>715, 8037=>715, 8038=>715, 8039=>715, 8040=>811, 8041=>811, 8042=>811, 8043=>811, 8044=>811, 8045=>811, 8046=>811, 8047=>811,
- 8048=>605, 8049=>605, 8050=>440, 8051=>440, 8052=>605, 8053=>605, 8054=>330, 8055=>330, 8056=>550, 8057=>550, 8058=>550, 8059=>550, 8060=>715, 8061=>715, 8064=>605, 8065=>605,
- 8066=>605, 8067=>605, 8068=>605, 8069=>605, 8070=>605, 8071=>605, 8072=>722, 8073=>722, 8074=>722, 8075=>722, 8076=>722, 8077=>722, 8078=>722, 8079=>722, 8080=>605, 8081=>605,
- 8082=>605, 8083=>605, 8084=>605, 8085=>605, 8086=>605, 8087=>605, 8088=>778, 8089=>778, 8090=>778, 8091=>778, 8092=>778, 8093=>778, 8094=>778, 8095=>778, 8096=>715, 8097=>715,
- 8098=>715, 8099=>715, 8100=>715, 8101=>715, 8102=>715, 8103=>715, 8104=>811, 8105=>811, 8106=>811, 8107=>811, 8108=>811, 8109=>811, 8110=>811, 8111=>811, 8112=>605, 8113=>605,
- 8114=>605, 8115=>605, 8116=>605, 8118=>605, 8119=>605, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>722, 8125=>500, 8126=>0, 8127=>500, 8128=>500, 8129=>550, 8130=>605,
- 8131=>605, 8132=>605, 8134=>605, 8135=>605, 8136=>667, 8137=>667, 8138=>778, 8139=>778, 8140=>778, 8141=>500, 8142=>500, 8143=>500, 8144=>330, 8145=>330, 8146=>330, 8147=>330,
- 8150=>330, 8151=>330, 8152=>389, 8153=>389, 8154=>389, 8155=>389, 8157=>500, 8158=>500, 8159=>500, 8160=>550, 8161=>550, 8162=>550, 8163=>550, 8164=>550, 8165=>550, 8166=>550,
- 8167=>550, 8168=>722, 8169=>722, 8170=>722, 8171=>722, 8172=>611, 8173=>550, 8174=>550, 8175=>500, 8178=>715, 8179=>715, 8180=>715, 8182=>715, 8183=>715, 8184=>778, 8185=>778,
- 8186=>811, 8187=>811, 8188=>811, 8189=>500, 8190=>500, 8208=>333, 8209=>333, 8219=>333, 8223=>500, 8227=>560, 8228=>250, 8229=>500, 8241=>1820, 8248=>469, 8251=>727, 8252=>666,
- 8253=>695, 8255=>953, 8256=>953, 8257=>338, 8258=>931, 8259=>333, 8260=>167, 8261=>332, 8262=>332, 8263=>1000, 8264=>833, 8265=>833, 8267=>540, 8308=>300, 8309=>1000, 8321=>300,
- 8322=>300, 8323=>300, 8324=>300, 8352=>710, 8353=>722, 8354=>783, 8355=>611, 8356=>500, 8357=>833, 8358=>722, 8359=>700, 8361=>1000, 8451=>1122, 8470=>954, 8471=>747, 8479=>722,
- 8483=>722, 8486=>811, 8487=>811, 8490=>764, 8491=>722, 8494=>551, 8498=>611, 8543=>750, 8544=>386, 8545=>772, 8546=>1158, 8547=>1108, 8548=>722, 8549=>1108, 8550=>1494, 8551=>1880,
- 8552=>1108, 8553=>722, 8554=>1108, 8555=>1494, 8556=>664, 8557=>722, 8558=>724, 8559=>943, 8560=>278, 8561=>556, 8562=>834, 8563=>778, 8564=>500, 8565=>778, 8566=>1056, 8567=>1334,
- 8568=>778, 8569=>500, 8570=>778, 8571=>1056, 8572=>278, 8573=>444, 8574=>556, 8575=>833, 8706=>494, 8710=>612, 8721=>713, 8722=>570, 8730=>549, 8734=>752, 8800=>570, 8804=>570,
- 8805=>570, 9674=>494, 12353=>1000, 12354=>1000, 12355=>1000, 12356=>1000, 12357=>1000, 12358=>1000, 12359=>1000, 12360=>1000, 12361=>1000, 12362=>1000, 12363=>1000, 12364=>1000, 12365=>1000, 12366=>1000,
- 12367=>1000, 12368=>1000, 12369=>1000, 12370=>1000, 12371=>1000, 12372=>1000, 12373=>1000, 12374=>1000, 12375=>1000, 12376=>1000, 12377=>1000, 12378=>1000, 12379=>1000, 12380=>1000, 12381=>1000, 12382=>1000,
- 12383=>1000, 12384=>1000, 12385=>1000, 12386=>1000, 12387=>1000, 12388=>1000, 12389=>1000, 12390=>1000, 12391=>1000, 12392=>1000, 12393=>1000, 12394=>1000, 12395=>1000, 12396=>1000, 12397=>1000, 12398=>1000,
- 12399=>1000, 12400=>1000, 12401=>1000, 12402=>1000, 12403=>1000, 12404=>1000, 12405=>1000, 12406=>1000, 12407=>1000, 12408=>1000, 12409=>1000, 12410=>1000, 12411=>1000, 12412=>1000, 12413=>1000, 12414=>1000,
- 12415=>1000, 12416=>1000, 12417=>1000, 12418=>1000, 12419=>1000, 12420=>1000, 12421=>1000, 12422=>1000, 12423=>1000, 12424=>1000, 12425=>1000, 12426=>1000, 12427=>1000, 12428=>1000, 12429=>1000, 12430=>1000,
- 12431=>1000, 12432=>1000, 12433=>1000, 12434=>1000, 12435=>1000, 12449=>1000, 12450=>1000, 12451=>1000, 12452=>1000, 12453=>1000, 12454=>1000, 12455=>1000, 12456=>1000, 12457=>1000, 12458=>1000, 12459=>1000,
- 12460=>1000, 12461=>1000, 12462=>1000, 12463=>1000, 12464=>1000, 12465=>1000, 12466=>1000, 12467=>1000, 12468=>1000, 12469=>1000, 12470=>1000, 12471=>1000, 12472=>1000, 12473=>1000, 12474=>1000, 12475=>1000,
- 12476=>1000, 12477=>1000, 12478=>1000, 12479=>1000, 12480=>1000, 12481=>1000, 12482=>1000, 12483=>1000, 12484=>1000, 12485=>1000, 12486=>1000, 12487=>1000, 12488=>1000, 12489=>1000, 12490=>1000, 12491=>1000,
- 12492=>1000, 12493=>1000, 12494=>1000, 12495=>1000, 12496=>1000, 12497=>1000, 12498=>1000, 12499=>1000, 12500=>1000, 12501=>1000, 12502=>1000, 12503=>1000, 12504=>1000, 12505=>1000, 12506=>1000, 12507=>1000,
- 12508=>1000, 12509=>1000, 12510=>1000, 12511=>1000, 12512=>1000, 12513=>1000, 12514=>1000, 12515=>1000, 12516=>1000, 12517=>1000, 12518=>1000, 12519=>1000, 12520=>1000, 12521=>1000, 12522=>1000, 12523=>1000,
- 12524=>1000, 12525=>1000, 12526=>1000, 12527=>1000, 12528=>1000, 12529=>1000, 12530=>1000, 12531=>1000, 12532=>1000, 12533=>1000, 12534=>1000, 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500,
- 63038=>500, 63039=>500, 63040=>500, 63041=>500, 63171=>333, 63196=>500, 64256=>556, 64257=>556, 64258=>556, 64259=>834, 64260=>834, 64262=>723);
+ 32=>250, 33=>333, 34=>555, 35=>500, 36=>500, 37=>1000, 38=>833, 39=>278, 40=>333, 41=>333, 42=>507, 43=>676, 44=>250, 45=>333, 46=>250, 47=>278,
+ 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>333, 59=>333, 60=>676, 61=>676, 62=>676, 63=>500,
+ 64=>930, 65=>722, 66=>667, 67=>722, 68=>724, 69=>667, 70=>611, 71=>778, 72=>774, 73=>386, 74=>500, 75=>764, 76=>664, 77=>943, 78=>722, 79=>778,
+ 80=>611, 81=>778, 82=>712, 83=>556, 84=>667, 85=>722, 86=>722, 87=>1000, 88=>722, 89=>722, 90=>667, 91=>333, 92=>278, 93=>333, 94=>581, 95=>500,
+ 96=>333, 97=>500, 98=>556, 99=>444, 100=>556, 101=>444, 102=>333, 103=>500, 104=>556, 105=>278, 106=>333, 107=>556, 108=>278, 109=>833, 110=>556, 111=>500,
+ 112=>556, 113=>556, 114=>444, 115=>389, 116=>333, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, 122=>444, 123=>394, 124=>220, 125=>394, 126=>520, 8364=>500,
+ 1027=>611, 8218=>333, 402=>333, 8222=>500, 8230=>1000, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>556, 8249=>333, 338=>1000, 1036=>778, 381=>667, 1039=>778, 8216=>333,
+ 8217=>333, 8220=>500, 8221=>500, 8226=>524, 8211=>500, 8212=>1000, 732=>333, 8482=>1000, 353=>389, 8250=>333, 339=>722, 1116=>534, 382=>444, 376=>722, 160=>250, 161=>333,
+ 162=>500, 163=>500, 164=>500, 165=>500, 166=>220, 167=>500, 168=>333, 169=>747, 170=>300, 171=>500, 172=>680, 173=>333, 174=>747, 175=>333, 176=>400, 177=>676,
+ 178=>300, 179=>300, 180=>333, 181=>556, 182=>540, 183=>250, 184=>333, 185=>300, 186=>330, 187=>500, 188=>750, 189=>750, 190=>750, 191=>500, 192=>722, 193=>722,
+ 194=>722, 195=>722, 196=>722, 197=>722, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>389, 205=>389, 206=>389, 207=>389, 208=>722, 209=>722,
+ 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>676, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>722, 222=>611, 223=>556, 224=>500, 225=>500,
+ 226=>500, 227=>500, 228=>500, 229=>500, 230=>722, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>556,
+ 242=>500, 243=>500, 244=>500, 245=>500, 246=>500, 247=>676, 248=>500, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>556, 255=>500, 256=>722, 257=>500,
+ 258=>722, 259=>500, 260=>722, 261=>500, 262=>722, 263=>444, 264=>722, 265=>444, 266=>722, 267=>444, 268=>722, 269=>444, 270=>722, 271=>556, 272=>722, 273=>556,
+ 274=>667, 275=>444, 276=>667, 277=>444, 278=>667, 279=>444, 280=>667, 281=>444, 282=>667, 283=>444, 284=>778, 285=>500, 286=>778, 287=>500, 288=>778, 289=>500,
+ 290=>778, 291=>500, 292=>778, 293=>556, 294=>778, 295=>556, 296=>389, 297=>278, 298=>389, 299=>278, 300=>389, 301=>278, 302=>389, 303=>278, 304=>389, 305=>278,
+ 306=>882, 307=>486, 308=>500, 309=>333, 310=>778, 311=>556, 312=>534, 313=>667, 314=>278, 315=>667, 316=>278, 317=>667, 318=>278, 319=>667, 320=>528, 321=>667,
+ 322=>278, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>704, 330=>722, 331=>556, 332=>778, 333=>500, 334=>778, 335=>500, 336=>778, 337=>500,
+ 340=>722, 341=>444, 342=>722, 343=>444, 344=>722, 345=>444, 346=>556, 347=>389, 348=>556, 349=>389, 350=>556, 351=>389, 354=>667, 355=>333, 356=>667, 357=>333,
+ 358=>667, 359=>333, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>1000, 373=>722,
+ 374=>722, 375=>500, 377=>667, 378=>444, 379=>667, 380=>444, 383=>333, 384=>556, 385=>667, 386=>667, 387=>556, 388=>667, 389=>556, 390=>722, 391=>722, 392=>444,
+ 393=>722, 394=>724, 395=>667, 396=>556, 397=>550, 398=>667, 399=>778, 400=>631, 401=>611, 403=>778, 404=>776, 405=>807, 406=>327, 407=>389, 408=>887, 409=>556,
+ 410=>278, 411=>495, 412=>1000, 413=>722, 414=>556, 415=>778, 416=>778, 417=>500, 418=>1192, 419=>795, 420=>611, 421=>556, 422=>748, 423=>556, 424=>389, 425=>650,
+ 426=>391, 427=>333, 428=>667, 429=>333, 430=>667, 431=>722, 432=>556, 433=>811, 434=>685, 435=>853, 436=>705, 437=>667, 438=>444, 439=>654, 440=>654, 441=>508,
+ 442=>500, 443=>500, 444=>654, 445=>520, 446=>444, 447=>611, 448=>220, 449=>444, 450=>570, 451=>333, 452=>1391, 453=>1168, 454=>1000, 455=>1164, 456=>997, 457=>611,
+ 458=>1222, 459=>1055, 460=>889, 461=>722, 462=>500, 463=>386, 464=>278, 465=>778, 466=>500, 467=>722, 468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722,
+ 474=>556, 475=>722, 476=>556, 477=>444, 478=>722, 479=>500, 480=>1112, 481=>890, 482=>1000, 483=>722, 484=>778, 485=>500, 486=>778, 487=>500, 488=>764, 489=>556,
+ 490=>778, 491=>500, 492=>778, 493=>500, 494=>654, 495=>508, 496=>333, 497=>1391, 498=>1168, 499=>1000, 500=>778, 501=>500, 504=>722, 505=>556, 506=>722, 507=>500,
+ 508=>1000, 509=>722, 510=>778, 511=>500, 512=>1038, 513=>816, 514=>1085, 515=>863, 516=>983, 517=>760, 518=>1030, 519=>807, 520=>702, 521=>278, 522=>749, 523=>278,
+ 524=>1094, 525=>816, 526=>1141, 527=>863, 528=>712, 529=>444, 530=>712, 531=>444, 532=>1038, 533=>872, 534=>1085, 535=>919, 536=>556, 537=>389, 538=>667, 539=>333,
+ 542=>774, 543=>556, 548=>667, 549=>444, 550=>722, 551=>500, 552=>667, 553=>444, 554=>778, 555=>500, 556=>778, 557=>500, 558=>778, 559=>500, 560=>778, 561=>500,
+ 562=>722, 563=>500, 592=>500, 593=>523, 594=>523, 595=>556, 596=>444, 598=>556, 599=>556, 600=>444, 601=>444, 602=>611, 603=>440, 604=>440, 605=>611, 607=>333,
+ 608=>500, 609=>500, 610=>556, 613=>556, 614=>556, 615=>556, 616=>278, 617=>333, 618=>278, 619=>278, 621=>278, 622=>667, 623=>833, 624=>833, 625=>833, 626=>556,
+ 627=>556, 628=>556, 629=>500, 631=>715, 632=>667, 633=>444, 634=>444, 635=>444, 636=>444, 637=>444, 638=>394, 639=>394, 640=>556, 641=>556, 642=>389, 643=>333,
+ 644=>333, 645=>333, 647=>333, 648=>333, 649=>500, 650=>557, 651=>529, 652=>500, 653=>722, 654=>500, 655=>500, 656=>444, 658=>508, 660=>500, 661=>500, 662=>500,
+ 664=>778, 665=>502, 667=>722, 668=>556, 670=>556, 671=>444, 672=>556, 673=>500, 674=>500, 686=>611, 687=>722, 711=>333, 728=>333, 729=>333, 730=>333, 731=>333,
+ 733=>333, 734=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0,
+ 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0,
+ 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0,
+ 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0,
+ 830=>0, 831=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>0, 894=>333, 900=>330, 901=>333, 902=>722, 903=>250, 904=>811, 905=>958, 906=>569, 908=>811,
+ 910=>902, 911=>811, 912=>330, 913=>722, 914=>667, 915=>611, 916=>759, 917=>667, 918=>667, 919=>774, 920=>778, 921=>386, 922=>777, 923=>722, 924=>943, 925=>722,
+ 926=>650, 927=>778, 928=>812, 929=>611, 931=>650, 932=>667, 933=>722, 934=>868, 935=>722, 936=>868, 937=>811, 938=>0, 939=>722, 940=>605, 941=>440, 942=>605,
+ 943=>330, 944=>550, 945=>605, 946=>550, 947=>550, 948=>550, 949=>440, 950=>495, 951=>605, 952=>550, 953=>330, 954=>608, 955=>495, 956=>605, 957=>495, 958=>495,
+ 959=>550, 960=>605, 961=>550, 962=>440, 963=>550, 964=>440, 965=>550, 966=>660, 967=>495, 968=>715, 969=>715, 970=>330, 971=>550, 972=>550, 973=>550, 974=>715,
+ 976=>550, 977=>605, 978=>722, 979=>722, 980=>722, 981=>660, 982=>715, 986=>650, 987=>550, 988=>611, 989=>513, 991=>495, 992=>722, 993=>802, 1008=>550, 1009=>550,
+ 1010=>477, 1024=>667, 1025=>667, 1026=>932, 1028=>722, 1029=>556, 1030=>389, 1031=>389, 1032=>500, 1033=>1032, 1034=>1032, 1035=>932, 1037=>778, 1038=>722, 1040=>722, 1041=>667,
+ 1042=>667, 1043=>591, 1044=>778, 1045=>667, 1046=>1107, 1047=>564, 1048=>773, 1049=>773, 1050=>764, 1051=>778, 1052=>944, 1053=>778, 1054=>778, 1055=>774, 1056=>611, 1057=>722,
+ 1058=>667, 1059=>722, 1060=>800, 1061=>722, 1062=>773, 1063=>778, 1064=>1113, 1065=>1112, 1066=>867, 1067=>970, 1068=>630, 1069=>722, 1070=>1114, 1071=>735, 1072=>500, 1073=>500,
+ 1074=>502, 1075=>443, 1076=>556, 1077=>444, 1078=>750, 1079=>408, 1080=>574, 1081=>574, 1082=>534, 1083=>544, 1084=>676, 1085=>556, 1086=>500, 1087=>556, 1088=>556, 1089=>444,
+ 1090=>494, 1091=>500, 1092=>825, 1093=>500, 1094=>556, 1095=>556, 1096=>818, 1097=>818, 1098=>612, 1099=>762, 1100=>512, 1101=>444, 1102=>790, 1103=>512, 1104=>444, 1105=>444,
+ 1106=>556, 1107=>458, 1108=>444, 1109=>389, 1110=>278, 1111=>278, 1112=>333, 1113=>792, 1114=>786, 1115=>556, 1117=>556, 1118=>500, 1119=>556, 1164=>611, 1165=>512, 1166=>611,
+ 1167=>556, 1168=>611, 1169=>458, 1170=>611, 1171=>458, 1172=>611, 1173=>458, 1174=>1107, 1175=>750, 1176=>580, 1177=>389, 1178=>778, 1179=>534, 1180=>778, 1181=>534, 1182=>778,
+ 1183=>534, 1184=>967, 1185=>633, 1186=>778, 1187=>556, 1188=>1014, 1189=>735, 1190=>778, 1191=>830, 1192=>722, 1193=>444, 1194=>722, 1195=>444, 1196=>667, 1197=>494, 1198=>722,
+ 1199=>500, 1200=>722, 1201=>500, 1202=>722, 1203=>500, 1204=>1046, 1205=>778, 1206=>778, 1207=>556, 1208=>778, 1209=>556, 1210=>778, 1211=>556, 1212=>778, 1213=>444, 1214=>778,
+ 1215=>444, 1216=>389, 1217=>1107, 1218=>750, 1219=>778, 1220=>534, 1223=>778, 1224=>556, 1227=>778, 1228=>556, 1232=>722, 1233=>500, 1234=>722, 1235=>500, 1236=>1000, 1237=>722,
+ 1238=>667, 1239=>444, 1240=>778, 1241=>444, 1242=>778, 1243=>444, 1244=>1107, 1245=>750, 1246=>564, 1247=>408, 1248=>654, 1249=>389, 1250=>773, 1251=>574, 1252=>773, 1253=>574,
+ 1254=>778, 1255=>500, 1256=>778, 1257=>500, 1258=>778, 1259=>500, 1260=>722, 1261=>444, 1262=>722, 1263=>890, 1264=>722, 1265=>500, 1266=>722, 1267=>500, 1268=>778, 1269=>556,
+ 1272=>970, 1273=>762, 1425=>0, 1426=>0, 1427=>0, 1428=>0, 1429=>0, 1430=>0, 1431=>0, 1432=>0, 1433=>0, 1434=>0, 1435=>0, 1436=>0, 1437=>0, 1438=>0,
+ 1439=>0, 1440=>0, 1441=>0, 1443=>0, 1444=>0, 1445=>0, 1446=>0, 1447=>0, 1448=>0, 1449=>0, 1450=>0, 1451=>0, 1452=>0, 1453=>0, 1454=>0, 1455=>0,
+ 1456=>0, 1457=>0, 1458=>0, 1459=>0, 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1467=>0, 1468=>0, 1469=>0, 1470=>433, 1471=>0, 1472=>155,
+ 1473=>0, 1474=>0, 1475=>400, 1476=>0, 1488=>593, 1489=>498, 1490=>339, 1491=>523, 1492=>561, 1493=>266, 1494=>291, 1495=>559, 1496=>576, 1497=>266, 1498=>496, 1499=>501,
+ 1500=>510, 1501=>542, 1502=>581, 1503=>273, 1504=>347, 1505=>512, 1506=>552, 1507=>493, 1508=>491, 1509=>537, 1510=>561, 1511=>544, 1512=>502, 1513=>716, 1514=>571, 1520=>532,
+ 1521=>532, 1522=>532, 1548=>250, 7680=>722, 7681=>500, 7682=>667, 7683=>556, 7684=>667, 7685=>556, 7686=>667, 7687=>556, 7688=>722, 7689=>444, 7690=>724, 7691=>556, 7692=>724,
+ 7693=>556, 7694=>724, 7695=>556, 7696=>724, 7697=>556, 7698=>724, 7699=>556, 7700=>667, 7701=>444, 7702=>667, 7703=>444, 7704=>667, 7705=>444, 7706=>667, 7707=>444, 7708=>667,
+ 7709=>444, 7710=>611, 7711=>333, 7712=>778, 7713=>500, 7714=>774, 7715=>556, 7716=>774, 7717=>556, 7718=>774, 7719=>556, 7720=>774, 7721=>556, 7722=>774, 7723=>556, 7724=>386,
+ 7725=>278, 7726=>389, 7727=>278, 7728=>764, 7729=>556, 7730=>764, 7731=>556, 7732=>764, 7733=>556, 7734=>664, 7735=>278, 7736=>664, 7737=>278, 7738=>664, 7739=>278, 7740=>664,
+ 7741=>278, 7742=>943, 7743=>833, 7744=>943, 7745=>833, 7746=>943, 7747=>833, 7748=>722, 7749=>556, 7750=>722, 7751=>556, 7752=>722, 7753=>556, 7754=>722, 7755=>556, 7756=>778,
+ 7757=>500, 7758=>778, 7759=>500, 7760=>778, 7761=>500, 7762=>778, 7763=>500, 7764=>611, 7765=>556, 7766=>611, 7767=>556, 7768=>712, 7769=>444, 7770=>712, 7771=>444, 7772=>712,
+ 7773=>444, 7774=>712, 7775=>444, 7776=>556, 7777=>389, 7778=>556, 7779=>389, 7780=>556, 7781=>389, 7782=>556, 7783=>389, 7784=>556, 7785=>389, 7786=>667, 7787=>333, 7788=>667,
+ 7789=>333, 7790=>667, 7791=>333, 7792=>667, 7793=>333, 7794=>722, 7795=>556, 7796=>722, 7797=>556, 7798=>722, 7799=>556, 7800=>722, 7801=>556, 7802=>722, 7803=>556, 7804=>722,
+ 7805=>500, 7806=>722, 7807=>500, 7808=>1000, 7809=>722, 7810=>1000, 7811=>722, 7812=>1000, 7813=>722, 7814=>1000, 7815=>722, 7816=>1000, 7817=>722, 7818=>722, 7819=>500, 7820=>722,
+ 7821=>500, 7822=>722, 7823=>500, 7824=>667, 7825=>444, 7826=>667, 7827=>444, 7828=>667, 7829=>444, 7830=>556, 7831=>333, 7832=>722, 7833=>500, 7835=>333, 7840=>722, 7841=>500,
+ 7842=>825, 7843=>603, 7844=>722, 7845=>500, 7846=>722, 7847=>500, 7848=>722, 7849=>500, 7850=>722, 7851=>500, 7852=>722, 7853=>500, 7854=>722, 7855=>500, 7856=>722, 7857=>500,
+ 7858=>825, 7859=>603, 7860=>722, 7861=>500, 7862=>722, 7863=>500, 7864=>667, 7865=>444, 7866=>770, 7867=>547, 7868=>667, 7869=>444, 7870=>667, 7871=>444, 7872=>667, 7873=>444,
+ 7874=>667, 7875=>444, 7876=>667, 7877=>444, 7878=>667, 7879=>444, 7880=>386, 7881=>278, 7882=>386, 7883=>278, 7884=>778, 7885=>500, 7886=>881, 7887=>603, 7888=>778, 7889=>500,
+ 7890=>778, 7891=>500, 7892=>881, 7893=>603, 7894=>778, 7895=>500, 7896=>778, 7897=>500, 7898=>894, 7899=>616, 7900=>894, 7901=>616, 7902=>881, 7903=>603, 7904=>778, 7905=>500,
+ 7906=>778, 7907=>500, 7908=>722, 7909=>556, 7910=>722, 7911=>556, 7912=>838, 7913=>672, 7914=>838, 7915=>672, 7916=>825, 7917=>659, 7918=>722, 7919=>556, 7920=>722, 7921=>556,
+ 7922=>722, 7923=>500, 7924=>722, 7925=>500, 7926=>825, 7927=>603, 7928=>722, 7929=>500, 7936=>605, 7937=>605, 7938=>605, 7939=>605, 7940=>605, 7941=>605, 7942=>605, 7943=>605,
+ 7944=>722, 7945=>722, 7946=>722, 7947=>722, 7948=>722, 7949=>722, 7950=>722, 7951=>722, 7952=>440, 7953=>440, 7954=>440, 7955=>440, 7956=>440, 7957=>440, 7960=>667, 7961=>667,
+ 7962=>667, 7963=>667, 7964=>667, 7965=>667, 7968=>605, 7969=>605, 7970=>605, 7971=>605, 7972=>605, 7973=>605, 7974=>605, 7975=>605, 7976=>774, 7977=>774, 7978=>774, 7979=>774,
+ 7980=>774, 7981=>774, 7982=>774, 7983=>774, 7984=>330, 7985=>330, 7986=>330, 7987=>330, 7988=>330, 7989=>330, 7990=>330, 7991=>330, 7992=>386, 7993=>386, 7994=>386, 7995=>386,
+ 7996=>386, 7997=>386, 7998=>386, 7999=>386, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>778, 8009=>778, 8010=>778, 8011=>778, 8012=>778, 8013=>778,
+ 8016=>550, 8017=>550, 8018=>550, 8019=>550, 8020=>550, 8021=>550, 8022=>550, 8023=>550, 8025=>722, 8027=>722, 8029=>722, 8031=>722, 8032=>715, 8033=>715, 8034=>715, 8035=>715,
+ 8036=>715, 8037=>715, 8038=>715, 8039=>715, 8040=>811, 8041=>811, 8042=>811, 8043=>811, 8044=>811, 8045=>811, 8046=>811, 8047=>811, 8048=>605, 8049=>605, 8050=>440, 8051=>440,
+ 8052=>605, 8053=>605, 8054=>330, 8055=>330, 8056=>550, 8057=>550, 8058=>550, 8059=>550, 8060=>715, 8061=>715, 8064=>605, 8065=>605, 8066=>605, 8067=>605, 8068=>605, 8069=>605,
+ 8070=>605, 8071=>605, 8072=>722, 8073=>722, 8074=>722, 8075=>722, 8076=>722, 8077=>722, 8078=>722, 8079=>722, 8080=>605, 8081=>605, 8082=>605, 8083=>605, 8084=>605, 8085=>605,
+ 8086=>605, 8087=>605, 8088=>774, 8089=>774, 8090=>774, 8091=>774, 8092=>774, 8093=>774, 8094=>774, 8095=>774, 8096=>715, 8097=>715, 8098=>715, 8099=>715, 8100=>715, 8101=>715,
+ 8102=>715, 8103=>715, 8104=>811, 8105=>811, 8106=>811, 8107=>811, 8108=>811, 8109=>811, 8110=>811, 8111=>811, 8112=>605, 8113=>605, 8114=>605, 8115=>605, 8116=>605, 8118=>605,
+ 8119=>605, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>952, 8125=>500, 8126=>0, 8127=>500, 8128=>500, 8129=>550, 8130=>605, 8131=>605, 8132=>605, 8134=>605, 8135=>605,
+ 8136=>667, 8137=>667, 8138=>774, 8139=>774, 8140=>774, 8141=>500, 8142=>500, 8143=>500, 8144=>330, 8145=>330, 8146=>330, 8147=>330, 8150=>330, 8151=>330, 8152=>386, 8153=>386,
+ 8154=>386, 8155=>386, 8157=>500, 8158=>500, 8159=>500, 8160=>550, 8161=>550, 8162=>550, 8163=>550, 8164=>550, 8165=>550, 8166=>550, 8167=>550, 8168=>722, 8169=>722, 8170=>722,
+ 8171=>722, 8172=>611, 8173=>550, 8174=>550, 8175=>500, 8178=>715, 8179=>715, 8180=>715, 8182=>715, 8183=>715, 8184=>778, 8185=>778, 8186=>811, 8187=>811, 8188=>811, 8189=>500,
+ 8190=>500, 8204=>0, 8205=>0, 8206=>0, 8207=>0, 8208=>333, 8209=>333, 8210=>500, 8213=>1000, 8214=>333, 8219=>333, 8223=>500, 8227=>560, 8228=>250, 8229=>500, 8241=>1820,
+ 8242=>373, 8248=>469, 8251=>727, 8252=>666, 8253=>695, 8255=>953, 8256=>953, 8257=>338, 8258=>931, 8259=>333, 8260=>167, 8261=>332, 8262=>332, 8263=>1000, 8264=>833, 8265=>833,
+ 8267=>540, 8304=>300, 8308=>300, 8309=>300, 8310=>300, 8311=>300, 8312=>300, 8313=>300, 8320=>300, 8321=>300, 8322=>300, 8323=>300, 8324=>300, 8325=>300, 8326=>300, 8327=>300,
+ 8328=>300, 8329=>300, 8352=>710, 8353=>722, 8354=>783, 8355=>611, 8356=>500, 8357=>833, 8358=>722, 8359=>700, 8360=>1101, 8361=>1000, 8363=>513, 8373=>500, 8451=>1122, 8457=>1011,
+ 8458=>500, 8459=>960, 8463=>556, 8464=>792, 8465=>737, 8466=>800, 8467=>427, 8470=>954, 8471=>1048, 8472=>666, 8475=>747, 8476=>955, 8478=>722, 8479=>722, 8480=>891, 8483=>722,
+ 8486=>811, 8487=>811, 8489=>333, 8490=>764, 8491=>722, 8492=>806, 8494=>551, 8497=>723, 8498=>611, 8499=>1203, 8501=>666, 8502=>651, 8503=>329, 8504=>549, 8531=>750, 8532=>750,
+ 8533=>750, 8534=>750, 8535=>750, 8536=>750, 8537=>750, 8538=>750, 8539=>750, 8540=>750, 8541=>750, 8542=>750, 8543=>750, 8544=>386, 8545=>772, 8546=>1158, 8547=>1108, 8548=>722,
+ 8549=>1108, 8550=>1494, 8551=>1880, 8552=>1108, 8553=>722, 8554=>1108, 8555=>1494, 8556=>664, 8557=>722, 8558=>724, 8559=>943, 8560=>278, 8561=>556, 8562=>834, 8563=>778, 8564=>500,
+ 8565=>778, 8566=>1056, 8567=>1334, 8568=>778, 8569=>500, 8570=>778, 8571=>1056, 8572=>278, 8573=>444, 8574=>556, 8575=>833, 8592=>964, 8593=>523, 8594=>964, 8595=>523, 8596=>964,
+ 8597=>964, 8598=>964, 8599=>964, 8600=>964, 8601=>964, 8602=>964, 8603=>964, 8604=>1152, 8605=>1152, 8606=>964, 8607=>964, 8608=>964, 8609=>964, 8610=>1078, 8611=>1078, 8612=>964,
+ 8613=>964, 8614=>964, 8615=>964, 8616=>964, 8617=>964, 8618=>964, 8619=>964, 8620=>964, 8621=>1168, 8622=>964, 8624=>622, 8625=>622, 8630=>1069, 8631=>1069, 8632=>964, 8633=>964,
+ 8634=>980, 8635=>980, 8636=>964, 8637=>964, 8638=>557, 8639=>556, 8640=>964, 8641=>964, 8642=>557, 8643=>556, 8644=>964, 8645=>964, 8646=>964, 8647=>964, 8648=>964, 8649=>964,
+ 8650=>964, 8651=>964, 8652=>964, 8653=>964, 8654=>964, 8655=>964, 8656=>964, 8657=>630, 8658=>964, 8659=>630, 8660=>964, 8661=>630, 8662=>1063, 8663=>1063, 8664=>1063, 8665=>1063,
+ 8666=>964, 8667=>964, 8668=>1100, 8669=>1100, 8672=>964, 8674=>964, 8676=>964, 8677=>964, 8704=>627, 8705=>716, 8706=>558, 8707=>627, 8708=>627, 8709=>500, 8710=>612, 8711=>719,
+ 8713=>576, 8714=>576, 8716=>576, 8717=>576, 8720=>733, 8721=>713, 8722=>676, 8723=>676, 8724=>676, 8725=>750, 8727=>570, 8729=>570, 8730=>549, 8733=>676, 8734=>752, 8736=>555,
+ 8737=>555, 8738=>555, 8739=>240, 8740=>531, 8741=>478, 8742=>705, 8743=>694, 8744=>694, 8745=>694, 8746=>694, 8747=>323, 8756=>629, 8757=>629, 8761=>947, 8764=>676, 8765=>676,
+ 8766=>763, 8768=>305, 8769=>676, 8770=>676, 8771=>676, 8773=>676, 8776=>676, 8777=>676, 8778=>676, 8781=>676, 8782=>676, 8783=>676, 8784=>676, 8785=>676, 8786=>676, 8787=>676,
+ 8788=>947, 8789=>947, 8790=>676, 8791=>676, 8796=>676, 8800=>570, 8801=>676, 8802=>676, 8804=>570, 8805=>570, 8806=>676, 8807=>676, 8808=>676, 8809=>676, 8810=>1047, 8811=>1047,
+ 8812=>450, 8813=>676, 8814=>676, 8815=>676, 8816=>676, 8817=>676, 8818=>676, 8819=>676, 8820=>676, 8821=>676, 8822=>676, 8823=>676, 8824=>676, 8825=>676, 8826=>676, 8827=>676,
+ 8828=>676, 8829=>676, 8830=>676, 8831=>676, 8832=>676, 8833=>676, 8834=>676, 8835=>676, 8836=>676, 8837=>676, 8838=>676, 8839=>676, 8840=>676, 8841=>676, 8842=>676, 8843=>676,
+ 8846=>694, 8847=>676, 8848=>676, 8849=>676, 8850=>676, 8851=>694, 8852=>694, 8853=>738, 8854=>738, 8855=>738, 8856=>738, 8857=>738, 8858=>738, 8859=>738, 8861=>738, 8862=>678,
+ 8863=>678, 8864=>678, 8865=>678, 8866=>487, 8867=>487, 8868=>752, 8869=>752, 8871=>487, 8873=>659, 8874=>831, 8876=>487, 8877=>487, 8878=>659, 8879=>659, 8882=>676, 8883=>676,
+ 8884=>676, 8885=>676, 8886=>1380, 8887=>1380, 8888=>1027, 8890=>626, 8891=>694, 8892=>694, 8893=>694, 8900=>512, 8903=>676, 8904=>759, 8905=>632, 8906=>632, 8907=>1000, 8908=>1000,
+ 8909=>676, 8910=>694, 8911=>694, 8912=>676, 8913=>676, 8914=>694, 8915=>694, 8916=>694, 8918=>676, 8919=>676, 8920=>1441, 8921=>1441, 8922=>676, 8923=>676, 8924=>676, 8925=>676,
+ 8926=>676, 8927=>676, 8928=>676, 8929=>676, 8930=>676, 8931=>676, 8934=>676, 8935=>676, 8936=>676, 8937=>676, 8938=>676, 8939=>676, 8940=>676, 8941=>676, 8960=>737, 8968=>411,
+ 8969=>411, 8970=>411, 8971=>411, 8976=>680, 8994=>951, 8995=>951, 9001=>398, 9002=>398, 9251=>500, 9472=>1000, 9473=>1000, 9474=>1000, 9475=>1000, 9476=>1000, 9477=>1000, 9478=>1000,
+ 9479=>1000, 9480=>1000, 9481=>1000, 9482=>1000, 9483=>1000, 9484=>1000, 9485=>1000, 9486=>1000, 9487=>1000, 9488=>1000, 9489=>1000, 9490=>1000, 9491=>1000, 9492=>1000, 9493=>1000, 9494=>1000,
+ 9495=>1000, 9496=>1000, 9497=>1000, 9498=>1000, 9499=>1000, 9500=>1000, 9501=>1000, 9502=>1000, 9503=>1000, 9504=>1000, 9505=>1000, 9506=>1000, 9507=>1000, 9508=>1000, 9509=>1000, 9510=>1000,
+ 9511=>1000, 9512=>1000, 9513=>1000, 9514=>1000, 9515=>1000, 9516=>1000, 9517=>1000, 9518=>1000, 9519=>1000, 9520=>1000, 9521=>1000, 9522=>1000, 9523=>1000, 9524=>1000, 9525=>1000, 9526=>1000,
+ 9527=>1000, 9528=>1000, 9529=>1000, 9530=>1000, 9531=>1000, 9532=>1000, 9533=>1000, 9534=>1000, 9535=>1000, 9536=>1000, 9537=>1000, 9538=>1000, 9539=>1000, 9540=>1000, 9541=>1000, 9542=>1000,
+ 9543=>1000, 9544=>1000, 9545=>1000, 9546=>1000, 9547=>1000, 9552=>1000, 9553=>1000, 9554=>1000, 9555=>1000, 9556=>1000, 9557=>1000, 9558=>1000, 9559=>1000, 9560=>1000, 9561=>1000, 9562=>1000,
+ 9563=>1000, 9564=>1000, 9565=>1000, 9566=>1000, 9567=>1000, 9568=>1000, 9569=>1000, 9570=>1000, 9571=>1000, 9572=>1000, 9573=>1000, 9574=>1000, 9575=>1000, 9576=>1000, 9577=>1000, 9578=>1000,
+ 9579=>1000, 9580=>1000, 9600=>1000, 9601=>1000, 9602=>1000, 9603=>1000, 9604=>1000, 9605=>1000, 9606=>1000, 9607=>1000, 9608=>1000, 9609=>1000, 9610=>1000, 9611=>1000, 9612=>1000, 9613=>1000,
+ 9614=>1000, 9615=>1000, 9616=>1000, 9617=>1000, 9618=>1000, 9619=>1000, 9620=>1000, 9621=>1000, 9622=>1000, 9623=>1000, 9624=>1000, 9625=>1000, 9626=>1000, 9627=>1000, 9628=>1000, 9629=>1000,
+ 9630=>1000, 9631=>1000, 9632=>678, 9633=>678, 9642=>309, 9650=>681, 9651=>681, 9654=>681, 9660=>681, 9661=>681, 9664=>681, 9670=>580, 9671=>580, 9674=>494, 9675=>738, 9676=>604,
+ 9679=>738, 9702=>524, 9733=>1003, 9824=>618, 9825=>645, 9826=>587, 9827=>582, 9828=>582, 9829=>645, 9830=>587, 9831=>618, 9833=>333, 9834=>556, 9835=>778, 9836=>778, 9837=>556,
+ 9838=>556, 9839=>556, 10214=>561, 10215=>561, 12353=>1000, 12354=>1000, 12355=>1000, 12356=>1000, 12357=>1000, 12358=>1000, 12359=>1000, 12360=>1000, 12361=>1000, 12362=>1000, 12363=>1000, 12364=>1000,
+ 12365=>1000, 12366=>1000, 12367=>1000, 12368=>1000, 12369=>1000, 12370=>1000, 12371=>1000, 12372=>1000, 12373=>1000, 12374=>1000, 12375=>1000, 12376=>1000, 12377=>1000, 12378=>1000, 12379=>1000, 12380=>1000,
+ 12381=>1000, 12382=>1000, 12383=>1000, 12384=>1000, 12385=>1000, 12386=>1000, 12387=>1000, 12388=>1000, 12389=>1000, 12390=>1000, 12391=>1000, 12392=>1000, 12393=>1000, 12394=>1000, 12395=>1000, 12396=>1000,
+ 12397=>1000, 12398=>1000, 12399=>1000, 12400=>1000, 12401=>1000, 12402=>1000, 12403=>1000, 12404=>1000, 12405=>1000, 12406=>1000, 12407=>1000, 12408=>1000, 12409=>1000, 12410=>1000, 12411=>1000, 12412=>1000,
+ 12413=>1000, 12414=>1000, 12415=>1000, 12416=>1000, 12417=>1000, 12418=>1000, 12419=>1000, 12420=>1000, 12421=>1000, 12422=>1000, 12423=>1000, 12424=>1000, 12425=>1000, 12426=>1000, 12427=>1000, 12428=>1000,
+ 12429=>1000, 12430=>1000, 12431=>1000, 12432=>1000, 12433=>1000, 12434=>1000, 12435=>1000, 12449=>1000, 12450=>1000, 12451=>1000, 12452=>1000, 12453=>1000, 12454=>1000, 12455=>1000, 12456=>1000, 12457=>1000,
+ 12458=>1000, 12459=>1000, 12460=>1000, 12461=>1000, 12462=>1000, 12463=>1000, 12464=>1000, 12465=>1000, 12466=>1000, 12467=>1000, 12468=>1000, 12469=>1000, 12470=>1000, 12471=>1000, 12472=>1000, 12473=>1000,
+ 12474=>1000, 12475=>1000, 12476=>1000, 12477=>1000, 12478=>1000, 12479=>1000, 12480=>1000, 12481=>1000, 12482=>1000, 12483=>1000, 12484=>1000, 12485=>1000, 12486=>1000, 12487=>1000, 12488=>1000, 12489=>1000,
+ 12490=>1000, 12491=>1000, 12492=>1000, 12493=>1000, 12494=>1000, 12495=>1000, 12496=>1000, 12497=>1000, 12498=>1000, 12499=>1000, 12500=>1000, 12501=>1000, 12502=>1000, 12503=>1000, 12504=>1000, 12505=>1000,
+ 12506=>1000, 12507=>1000, 12508=>1000, 12509=>1000, 12510=>1000, 12511=>1000, 12512=>1000, 12513=>1000, 12514=>1000, 12515=>1000, 12516=>1000, 12517=>1000, 12518=>1000, 12519=>1000, 12520=>1000, 12521=>1000,
+ 12522=>1000, 12523=>1000, 12524=>1000, 12525=>1000, 12526=>1000, 12527=>1000, 12528=>1000, 12529=>1000, 12530=>1000, 12531=>1000, 12532=>1000, 12533=>1000, 12534=>1000, 59393=>266, 59394=>496, 59395=>496,
+ 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500, 63038=>500, 63039=>500, 63040=>500, 63041=>500, 63166=>333, 63171=>333, 63196=>500, 64256=>556, 64257=>556, 64258=>556, 64259=>834,
+ 64260=>834, 64262=>723, 64285=>266, 64286=>0, 64287=>532, 64288=>552, 64297=>570, 64298=>716, 64299=>716, 64300=>716, 64301=>716, 64302=>593, 64303=>593, 64304=>593, 64305=>498, 64306=>339,
+ 64307=>523, 64308=>561, 64309=>266, 64310=>291, 64311=>559, 64312=>576, 64313=>266, 64314=>496, 64315=>501, 64316=>510, 64317=>542, 64318=>581, 64319=>273, 64320=>347, 64321=>512, 64322=>552,
+ 64323=>493, 64324=>491, 64325=>537, 64326=>561, 64327=>544, 64328=>502, 64329=>716, 64330=>571, 64331=>266, 64332=>498, 64333=>501, 64334=>491, 64335=>593, 65533=>788);
$enc='';
$diff='';
-$file='FreeSerifBold.z';
-$ctg='FreeSerifBold.ctg.z';
-$originalsize=198992;
+$file='freeserifb.z';
+$ctg='freeserifb.ctg.z';
+$originalsize=271576;
?>
diff --git a/lib/tcpdf/fonts/freeserifb.z b/lib/tcpdf/fonts/freeserifb.z
new file mode 100644
index 0000000000..1ca5beb482
Binary files /dev/null and b/lib/tcpdf/fonts/freeserifb.z differ
diff --git a/lib/tcpdf/fonts/freeserifbi.ctg.z b/lib/tcpdf/fonts/freeserifbi.ctg.z
new file mode 100644
index 0000000000..37376911c0
Binary files /dev/null and b/lib/tcpdf/fonts/freeserifbi.ctg.z differ
diff --git a/lib/tcpdf/fonts/freeserifbi.php b/lib/tcpdf/fonts/freeserifbi.php
index 365d0a12c7..a12b3fc754 100755
--- a/lib/tcpdf/fonts/freeserifbi.php
+++ b/lib/tcpdf/fonts/freeserifbi.php
@@ -1,97 +1,113 @@
1171,'Descent'=>-488,'CapHeight'=>1171,'Flags'=>96,'FontBBox'=>'[-575 -488 1577 1171]','ItalicAngle'=>-16.3,'StemV'=>120,'MissingWidth'=>600);
+$desc=array('Ascent'=>1171,'Descent'=>-488,'CapHeight'=>1171,'Flags'=>96,'FontBBox'=>'[-575 -1120 1867 1571]','ItalicAngle'=>-16.3,'StemV'=>120,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
- 13=>333, 32=>250, 33=>389, 34=>555, 35=>500, 36=>500, 37=>833, 38=>778, 39=>278, 40=>333, 41=>333, 42=>500, 43=>570, 44=>250, 45=>333, 46=>250,
- 47=>278, 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>333, 59=>333, 60=>570, 61=>570, 62=>570,
- 63=>500, 64=>832, 65=>667, 66=>667, 67=>667, 68=>744, 69=>670, 70=>656, 71=>722, 72=>778, 73=>393, 74=>500, 75=>664, 76=>609, 77=>896, 78=>722,
- 79=>722, 80=>614, 81=>722, 82=>672, 83=>556, 84=>611, 85=>722, 86=>667, 87=>889, 88=>667, 89=>611, 90=>611, 91=>333, 92=>278, 93=>333, 94=>570,
- 95=>500, 96=>333, 97=>500, 98=>500, 99=>444, 100=>500, 101=>444, 102=>333, 103=>500, 104=>556, 105=>278, 106=>278, 107=>500, 108=>278, 109=>778, 110=>556,
- 111=>500, 112=>500, 113=>500, 114=>389, 115=>389, 116=>278, 117=>556, 118=>444, 119=>667, 120=>500, 121=>444, 122=>389, 123=>348, 124=>220, 125=>348, 126=>570,
- 8364=>500, 1027=>667, 8218=>333, 1107=>458, 8222=>500, 8230=>1000, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>556, 8249=>333, 338=>944, 1036=>778, 381=>611, 1039=>869,
- 8216=>333, 8217=>333, 8220=>500, 8221=>500, 8226=>350, 8211=>500, 8212=>1000, 732=>333, 8482=>1000, 353=>389, 8250=>333, 339=>722, 1116=>558, 382=>389, 376=>611, 161=>389,
- 162=>500, 163=>500, 164=>500, 165=>500, 166=>220, 167=>500, 168=>333, 169=>747, 170=>266, 171=>500, 172=>606, 174=>747, 175=>333, 176=>400, 177=>570, 178=>300,
- 179=>300, 180=>333, 181=>576, 182=>500, 183=>250, 184=>333, 185=>300, 186=>300, 187=>500, 188=>750, 189=>750, 190=>750, 191=>500, 192=>667, 193=>667, 194=>667,
- 195=>667, 196=>667, 197=>667, 198=>944, 199=>667, 200=>667, 201=>667, 202=>667, 203=>667, 204=>389, 205=>389, 206=>389, 207=>389, 208=>722, 209=>722, 210=>722,
- 211=>722, 212=>722, 213=>722, 214=>722, 215=>570, 216=>722, 217=>722, 218=>722, 219=>722, 220=>722, 221=>611, 222=>611, 223=>500, 224=>500, 225=>500, 226=>500,
- 227=>500, 228=>500, 229=>500, 230=>722, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>556, 242=>500,
- 243=>500, 244=>500, 245=>500, 246=>500, 247=>570, 248=>500, 249=>556, 250=>556, 251=>556, 252=>556, 253=>444, 254=>500, 255=>444, 256=>667, 257=>500, 258=>667,
- 259=>500, 260=>667, 261=>500, 262=>667, 263=>444, 264=>667, 265=>444, 266=>667, 267=>444, 268=>667, 269=>444, 270=>722, 271=>644, 272=>722, 273=>500, 274=>667,
- 275=>444, 276=>667, 277=>444, 278=>667, 279=>444, 280=>667, 281=>444, 282=>667, 283=>444, 284=>722, 285=>500, 286=>722, 287=>500, 288=>722, 289=>500, 290=>722,
- 291=>500, 292=>778, 293=>556, 294=>778, 295=>556, 296=>389, 297=>278, 298=>389, 299=>278, 300=>389, 301=>278, 302=>389, 303=>278, 304=>389, 305=>278, 306=>826,
- 307=>547, 308=>500, 309=>278, 310=>667, 311=>500, 312=>534, 313=>611, 314=>278, 315=>611, 316=>278, 317=>638, 318=>424, 319=>611, 320=>528, 321=>611, 322=>278,
- 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>556, 330=>722, 331=>556, 332=>722, 333=>500, 334=>722, 335=>500, 336=>722, 337=>500, 340=>667,
- 341=>389, 342=>667, 343=>389, 344=>667, 345=>389, 346=>556, 347=>389, 348=>556, 349=>389, 350=>556, 351=>389, 354=>611, 355=>278, 356=>611, 357=>278, 358=>611,
- 359=>278, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>889, 373=>667, 374=>611,
- 375=>444, 377=>611, 378=>389, 379=>611, 380=>389, 383=>333, 439=>1000, 452=>1355, 453=>1133, 454=>889, 455=>1109, 456=>887, 457=>556, 458=>1222, 459=>1000, 460=>834,
- 461=>667, 462=>500, 463=>393, 464=>278, 465=>722, 466=>500, 467=>722, 468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556,
- 477=>444, 478=>667, 479=>500, 480=>667, 481=>500, 482=>944, 483=>722, 484=>722, 485=>500, 486=>722, 487=>500, 488=>664, 489=>500, 490=>722, 491=>500, 492=>722,
- 493=>500, 494=>614, 495=>461, 496=>278, 497=>1355, 498=>1133, 499=>889, 500=>722, 501=>500, 504=>722, 505=>556, 506=>667, 507=>500, 508=>944, 509=>722, 510=>722,
- 511=>500, 512=>667, 513=>500, 514=>667, 515=>500, 516=>670, 517=>444, 518=>670, 519=>444, 520=>393, 521=>278, 522=>393, 523=>278, 524=>722, 525=>500, 526=>722,
- 527=>500, 528=>672, 529=>389, 530=>672, 531=>389, 532=>722, 533=>556, 534=>722, 535=>556, 536=>556, 537=>389, 538=>611, 539=>278, 542=>778, 543=>556, 550=>667,
- 551=>500, 552=>670, 553=>444, 554=>722, 555=>500, 556=>722, 557=>500, 558=>722, 559=>500, 560=>722, 561=>500, 562=>611, 563=>444, 658=>461, 711=>333, 714=>333,
- 715=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0,
- 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>-113, 790=>0, 791=>0, 792=>0, 793=>0,
- 794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0,
- 810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0,
- 826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>0, 894=>333, 900=>180, 901=>330, 902=>667, 903=>250,
- 904=>667, 905=>778, 906=>389, 908=>722, 910=>722, 911=>741, 912=>330, 913=>667, 914=>667, 915=>637, 916=>740, 917=>667, 918=>611, 919=>778, 920=>722, 921=>389,
- 922=>677, 923=>667, 924=>889, 925=>722, 926=>650, 927=>722, 928=>778, 929=>611, 931=>730, 932=>621, 933=>722, 934=>748, 935=>667, 936=>868, 937=>741, 938=>389,
- 939=>722, 940=>605, 941=>440, 942=>605, 943=>330, 944=>550, 945=>605, 946=>550, 947=>550, 948=>550, 949=>440, 950=>495, 951=>605, 952=>550, 953=>330, 954=>608,
- 955=>495, 956=>605, 957=>495, 958=>495, 959=>550, 960=>605, 961=>550, 962=>440, 963=>550, 964=>440, 965=>550, 966=>660, 967=>495, 968=>715, 969=>715, 970=>330,
- 971=>550, 972=>550, 973=>550, 974=>715, 976=>550, 977=>550, 978=>722, 979=>722, 980=>722, 981=>660, 982=>605, 1024=>667, 1025=>667, 1026=>611, 1028=>722, 1029=>556,
- 1030=>389, 1031=>389, 1032=>500, 1033=>778, 1034=>778, 1035=>611, 1037=>870, 1038=>722, 1040=>667, 1041=>733, 1042=>667, 1043=>656, 1044=>864, 1045=>667, 1046=>1107, 1047=>564,
- 1048=>870, 1049=>870, 1050=>775, 1051=>855, 1052=>889, 1053=>778, 1054=>722, 1055=>869, 1056=>611, 1057=>667, 1058=>611, 1059=>766, 1060=>833, 1061=>667, 1062=>869, 1063=>823,
- 1064=>1208, 1065=>1209, 1066=>796, 1067=>1060, 1068=>712, 1069=>732, 1070=>1195, 1071=>821, 1072=>500, 1073=>500, 1074=>444, 1075=>389, 1076=>534, 1077=>444, 1078=>1051, 1079=>408,
- 1080=>556, 1081=>556, 1082=>534, 1083=>637, 1084=>859, 1085=>560, 1086=>500, 1087=>556, 1088=>500, 1089=>444, 1090=>778, 1091=>444, 1092=>764, 1093=>500, 1094=>556, 1095=>556,
- 1096=>806, 1097=>806, 1098=>591, 1099=>744, 1100=>444, 1101=>451, 1102=>765, 1103=>594, 1104=>444, 1105=>444, 1106=>494, 1108=>444, 1109=>389, 1110=>278, 1111=>278, 1112=>278,
- 1113=>637, 1114=>556, 1115=>494, 1117=>556, 1118=>444, 1119=>556, 1164=>712, 1165=>444, 1166=>611, 1167=>500, 1168=>611, 1169=>458, 1170=>667, 1171=>458, 1172=>667, 1173=>458,
- 1174=>1107, 1175=>1051, 1176=>657, 1177=>439, 1178=>772, 1179=>534, 1180=>772, 1181=>534, 1182=>772, 1183=>534, 1184=>772, 1185=>534, 1186=>778, 1187=>560, 1188=>778, 1189=>560,
- 1190=>869, 1191=>556, 1192=>667, 1193=>444, 1194=>667, 1195=>444, 1196=>611, 1197=>494, 1198=>611, 1199=>444, 1200=>611, 1201=>444, 1202=>667, 1203=>500, 1204=>869, 1205=>556,
- 1206=>823, 1207=>556, 1208=>823, 1209=>556, 1210=>823, 1211=>556, 1212=>620, 1213=>444, 1214=>620, 1215=>444, 1216=>389, 1217=>1107, 1218=>1051, 1219=>772, 1220=>534, 1223=>778,
- 1224=>560, 1227=>823, 1228=>556, 1232=>667, 1233=>500, 1234=>667, 1235=>500, 1236=>944, 1237=>722, 1238=>667, 1239=>444, 1240=>620, 1241=>444, 1242=>620, 1243=>444, 1244=>1107,
- 1245=>1051, 1246=>564, 1247=>408, 1248=>657, 1249=>439, 1250=>870, 1251=>556, 1252=>870, 1253=>556, 1254=>722, 1255=>500, 1256=>722, 1257=>500, 1258=>722, 1259=>500, 1260=>732,
- 1261=>451, 1262=>766, 1263=>444, 1264=>766, 1265=>444, 1266=>766, 1267=>444, 1268=>823, 1269=>556, 1272=>1060, 1273=>744, 1488=>504, 1489=>504, 1490=>313, 1491=>504, 1492=>504,
- 1493=>285, 1494=>285, 1495=>504, 1496=>504, 1497=>285, 1498=>517, 1499=>504, 1500=>504, 1501=>504, 1502=>504, 1503=>281, 1504=>285, 1505=>504, 1506=>504, 1507=>526, 1508=>504,
- 1509=>491, 1510=>504, 1511=>549, 1512=>513, 1513=>538, 1514=>504, 7680=>667, 7681=>500, 7682=>667, 7683=>500, 7684=>667, 7685=>500, 7686=>667, 7687=>500, 7688=>667, 7689=>444,
- 7690=>744, 7691=>500, 7692=>744, 7693=>500, 7694=>744, 7695=>500, 7696=>744, 7697=>500, 7698=>744, 7699=>500, 7700=>667, 7701=>444, 7702=>667, 7703=>444, 7704=>670, 7705=>444,
- 7706=>670, 7707=>444, 7708=>670, 7709=>444, 7710=>656, 7711=>333, 7712=>722, 7713=>500, 7714=>778, 7715=>556, 7716=>778, 7717=>556, 7718=>778, 7719=>556, 7720=>778, 7721=>556,
- 7722=>778, 7723=>556, 7724=>393, 7725=>278, 7726=>389, 7727=>278, 7728=>664, 7729=>500, 7730=>664, 7731=>500, 7732=>664, 7733=>500, 7734=>609, 7735=>278, 7736=>609, 7737=>278,
- 7738=>609, 7739=>278, 7740=>609, 7741=>278, 7742=>896, 7743=>778, 7744=>896, 7745=>778, 7746=>896, 7747=>778, 7748=>722, 7749=>556, 7750=>722, 7751=>556, 7752=>722, 7753=>556,
- 7754=>722, 7755=>556, 7756=>722, 7757=>500, 7758=>722, 7759=>500, 7760=>722, 7761=>500, 7762=>722, 7763=>500, 7764=>614, 7765=>500, 7766=>614, 7767=>500, 7768=>672, 7769=>389,
- 7770=>672, 7771=>389, 7772=>672, 7773=>389, 7774=>672, 7775=>389, 7776=>556, 7777=>389, 7778=>556, 7779=>389, 7780=>556, 7781=>389, 7782=>556, 7783=>389, 7784=>556, 7785=>389,
- 7786=>611, 7787=>278, 7788=>611, 7789=>278, 7790=>611, 7791=>278, 7792=>611, 7793=>278, 7794=>722, 7795=>556, 7796=>722, 7797=>556, 7798=>722, 7799=>556, 7800=>722, 7801=>556,
- 7802=>722, 7803=>556, 7804=>667, 7805=>444, 7806=>667, 7807=>444, 7808=>889, 7809=>667, 7810=>889, 7811=>667, 7812=>889, 7813=>667, 7814=>889, 7815=>667, 7816=>889, 7817=>667,
- 7818=>667, 7819=>500, 7820=>667, 7821=>500, 7822=>611, 7823=>444, 7824=>611, 7825=>389, 7826=>611, 7827=>389, 7828=>611, 7829=>389, 7830=>556, 7831=>278, 7832=>667, 7833=>444,
- 7835=>333, 7840=>667, 7841=>500, 7842=>667, 7843=>500, 7844=>667, 7845=>500, 7846=>667, 7847=>500, 7848=>667, 7849=>500, 7850=>667, 7851=>500, 7852=>667, 7853=>500, 7854=>667,
- 7855=>500, 7856=>667, 7857=>500, 7858=>667, 7859=>500, 7860=>667, 7861=>500, 7862=>667, 7863=>500, 7864=>670, 7865=>444, 7866=>670, 7867=>444, 7868=>670, 7869=>444, 7870=>667,
- 7871=>444, 7872=>667, 7873=>444, 7874=>667, 7875=>444, 7876=>667, 7877=>444, 7878=>670, 7879=>444, 7880=>393, 7881=>278, 7882=>393, 7883=>278, 7884=>722, 7885=>500, 7886=>722,
- 7887=>500, 7888=>722, 7889=>500, 7890=>722, 7891=>500, 7892=>722, 7893=>500, 7894=>722, 7895=>500, 7896=>722, 7897=>500, 7908=>722, 7909=>556, 7910=>722, 7911=>556, 7922=>611,
- 7923=>444, 7924=>611, 7925=>444, 7926=>611, 7927=>444, 7928=>611, 7929=>444, 7936=>605, 7937=>605, 7938=>605, 7939=>605, 7940=>605, 7941=>605, 7942=>605, 7943=>605, 7944=>667,
- 7945=>667, 7946=>667, 7947=>667, 7948=>667, 7949=>667, 7950=>667, 7951=>667, 7952=>440, 7953=>440, 7954=>440, 7955=>440, 7956=>440, 7957=>440, 7960=>667, 7961=>667, 7962=>667,
- 7963=>667, 7964=>667, 7965=>667, 7968=>605, 7969=>605, 7970=>605, 7971=>605, 7972=>605, 7973=>605, 7974=>605, 7975=>605, 7976=>778, 7977=>778, 7978=>778, 7979=>778, 7980=>778,
- 7981=>778, 7982=>778, 7983=>778, 7984=>330, 7985=>330, 7986=>330, 7987=>330, 7988=>330, 7989=>330, 7990=>330, 7991=>330, 7992=>389, 7993=>389, 7994=>389, 7995=>389, 7996=>389,
- 7997=>389, 7998=>389, 7999=>389, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>722, 8009=>722, 8010=>722, 8011=>722, 8012=>722, 8013=>722, 8016=>550,
- 8017=>550, 8018=>550, 8019=>550, 8020=>550, 8021=>550, 8022=>550, 8023=>550, 8025=>722, 8027=>722, 8029=>722, 8031=>722, 8032=>715, 8033=>715, 8034=>715, 8035=>715, 8036=>715,
- 8037=>715, 8038=>715, 8039=>715, 8040=>741, 8041=>741, 8042=>741, 8043=>741, 8044=>741, 8045=>741, 8046=>741, 8047=>741, 8048=>605, 8049=>605, 8050=>440, 8051=>440, 8052=>605,
- 8053=>605, 8054=>330, 8055=>330, 8056=>550, 8057=>550, 8058=>550, 8059=>550, 8060=>715, 8061=>715, 8064=>605, 8065=>605, 8066=>605, 8067=>605, 8068=>605, 8069=>605, 8070=>605,
- 8071=>605, 8072=>667, 8073=>667, 8074=>667, 8075=>667, 8076=>667, 8077=>667, 8078=>667, 8079=>667, 8080=>605, 8081=>605, 8082=>605, 8083=>605, 8084=>605, 8085=>605, 8086=>605,
- 8087=>605, 8088=>778, 8089=>778, 8090=>778, 8091=>778, 8092=>778, 8093=>778, 8094=>778, 8095=>778, 8096=>715, 8097=>715, 8098=>715, 8099=>715, 8100=>715, 8101=>715, 8102=>715,
- 8103=>715, 8104=>741, 8105=>741, 8106=>741, 8107=>741, 8108=>741, 8109=>741, 8110=>741, 8111=>741, 8112=>605, 8113=>605, 8114=>605, 8115=>605, 8116=>605, 8118=>605, 8119=>605,
- 8120=>667, 8121=>667, 8122=>667, 8123=>667, 8124=>667, 8125=>250, 8126=>0, 8127=>500, 8128=>500, 8129=>550, 8130=>605, 8131=>605, 8132=>605, 8134=>605, 8135=>605, 8136=>667,
- 8137=>667, 8138=>778, 8139=>778, 8140=>778, 8141=>500, 8142=>500, 8143=>500, 8144=>330, 8145=>330, 8146=>330, 8147=>330, 8150=>330, 8151=>330, 8152=>389, 8153=>389, 8154=>389,
- 8155=>389, 8157=>500, 8158=>500, 8159=>500, 8160=>550, 8161=>550, 8162=>550, 8163=>550, 8164=>550, 8165=>550, 8166=>550, 8167=>550, 8168=>722, 8169=>722, 8170=>722, 8171=>722,
- 8172=>611, 8173=>550, 8174=>550, 8175=>500, 8178=>715, 8179=>715, 8180=>715, 8182=>715, 8183=>715, 8184=>722, 8185=>722, 8186=>741, 8187=>741, 8188=>741, 8189=>500, 8190=>500,
- 8219=>333, 8223=>500, 8227=>560, 8241=>1618, 8251=>727, 8253=>733, 8255=>953, 8256=>953, 8257=>338, 8258=>931, 8259=>333, 8260=>167, 8261=>332, 8262=>332, 8352=>667, 8353=>667,
- 8354=>667, 8355=>667, 8356=>500, 8357=>778, 8358=>722, 8359=>705, 8361=>889, 8470=>981, 8471=>747, 8483=>667, 8494=>551, 8498=>667, 8706=>494, 8710=>612, 8721=>713, 8722=>606,
- 8730=>549, 8734=>752, 8800=>570, 8804=>570, 8805=>570, 9674=>494, 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500, 63038=>500, 63039=>500, 63040=>500, 63041=>500, 63166=>278,
- 63171=>333, 63196=>500, 64256=>583, 64257=>556, 64258=>556, 64259=>824, 64260=>821, 64262=>662);
+ 32=>250, 33=>389, 34=>555, 35=>500, 36=>500, 37=>833, 38=>778, 39=>278, 40=>333, 41=>333, 42=>500, 43=>570, 44=>250, 45=>333, 46=>250, 47=>278,
+ 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>333, 59=>333, 60=>570, 61=>570, 62=>570, 63=>500,
+ 64=>832, 65=>667, 66=>667, 67=>667, 68=>744, 69=>670, 70=>656, 71=>722, 72=>778, 73=>393, 74=>500, 75=>664, 76=>609, 77=>896, 78=>722, 79=>722,
+ 80=>614, 81=>722, 82=>672, 83=>556, 84=>611, 85=>722, 86=>667, 87=>889, 88=>667, 89=>611, 90=>611, 91=>333, 92=>278, 93=>333, 94=>570, 95=>500,
+ 96=>333, 97=>500, 98=>500, 99=>444, 100=>500, 101=>444, 102=>333, 103=>500, 104=>556, 105=>278, 106=>278, 107=>500, 108=>278, 109=>778, 110=>556, 111=>500,
+ 112=>500, 113=>500, 114=>389, 115=>389, 116=>278, 117=>556, 118=>444, 119=>667, 120=>500, 121=>444, 122=>389, 123=>348, 124=>220, 125=>348, 126=>570, 8364=>500,
+ 1027=>667, 8218=>333, 402=>333, 8222=>500, 8230=>1000, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>556, 8249=>333, 338=>944, 1036=>778, 381=>611, 1039=>869, 8216=>333,
+ 8217=>333, 8220=>500, 8221=>500, 8226=>350, 8211=>500, 8212=>1000, 732=>333, 8482=>1000, 353=>389, 8250=>333, 339=>722, 1116=>558, 382=>389, 376=>611, 160=>250, 161=>389,
+ 162=>500, 163=>500, 164=>500, 165=>500, 166=>220, 167=>500, 168=>333, 169=>747, 170=>266, 171=>500, 172=>606, 173=>333, 174=>747, 175=>333, 176=>400, 177=>570,
+ 178=>300, 179=>300, 180=>333, 181=>576, 182=>500, 183=>250, 184=>333, 185=>300, 186=>300, 187=>500, 188=>750, 189=>750, 190=>750, 191=>500, 192=>667, 193=>667,
+ 194=>667, 195=>667, 196=>667, 197=>667, 198=>944, 199=>667, 200=>667, 201=>667, 202=>667, 203=>667, 204=>389, 205=>389, 206=>389, 207=>389, 208=>722, 209=>722,
+ 210=>722, 211=>722, 212=>722, 213=>722, 214=>722, 215=>570, 216=>722, 217=>722, 218=>722, 219=>722, 220=>722, 221=>611, 222=>611, 223=>500, 224=>500, 225=>500,
+ 226=>500, 227=>500, 228=>500, 229=>500, 230=>722, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>556,
+ 242=>500, 243=>500, 244=>500, 245=>500, 246=>500, 247=>570, 248=>500, 249=>556, 250=>556, 251=>556, 252=>556, 253=>444, 254=>500, 255=>444, 256=>667, 257=>500,
+ 258=>667, 259=>500, 260=>667, 261=>500, 262=>667, 263=>444, 264=>667, 265=>444, 266=>667, 267=>444, 268=>667, 269=>444, 270=>722, 271=>644, 272=>722, 273=>500,
+ 274=>667, 275=>444, 276=>667, 277=>444, 278=>667, 279=>444, 280=>667, 281=>444, 282=>667, 283=>444, 284=>722, 285=>500, 286=>722, 287=>500, 288=>722, 289=>500,
+ 290=>722, 291=>500, 292=>778, 293=>556, 294=>778, 295=>556, 296=>389, 297=>278, 298=>389, 299=>278, 300=>389, 301=>278, 302=>389, 303=>278, 304=>389, 305=>278,
+ 306=>826, 307=>547, 308=>500, 309=>278, 310=>667, 311=>500, 312=>534, 313=>611, 314=>278, 315=>611, 316=>278, 317=>638, 318=>424, 319=>611, 320=>528, 321=>611,
+ 322=>278, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>556, 330=>722, 331=>547, 332=>722, 333=>500, 334=>722, 335=>500, 336=>722, 337=>500,
+ 340=>667, 341=>389, 342=>667, 343=>389, 344=>667, 345=>389, 346=>556, 347=>389, 348=>556, 349=>389, 350=>556, 351=>389, 354=>611, 355=>278, 356=>611, 357=>278,
+ 358=>611, 359=>278, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>889, 373=>667,
+ 374=>611, 375=>444, 377=>611, 378=>389, 379=>611, 380=>389, 383=>333, 384=>500, 385=>809, 386=>733, 387=>500, 388=>591, 389=>500, 390=>722, 391=>962, 392=>681,
+ 393=>722, 394=>864, 395=>733, 396=>500, 397=>550, 398=>670, 399=>722, 400=>631, 401=>769, 403=>962, 404=>716, 405=>745, 406=>278, 407=>389, 408=>829, 409=>500,
+ 410=>278, 411=>495, 412=>853, 413=>919, 414=>556, 415=>722, 416=>908, 417=>640, 418=>1014, 419=>778, 420=>757, 421=>500, 422=>611, 423=>556, 424=>389, 425=>730,
+ 426=>333, 427=>278, 428=>611, 429=>298, 430=>611, 431=>920, 432=>730, 433=>811, 434=>678, 435=>611, 436=>581, 437=>611, 438=>389, 439=>614, 440=>614, 441=>461,
+ 442=>445, 443=>500, 444=>614, 445=>500, 446=>389, 447=>500, 448=>220, 452=>1355, 453=>1133, 454=>889, 455=>1109, 456=>887, 457=>556, 458=>1222, 459=>1000, 460=>834,
+ 461=>667, 462=>500, 463=>393, 464=>278, 465=>722, 466=>500, 467=>722, 468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556,
+ 477=>444, 478=>667, 479=>500, 480=>667, 481=>500, 482=>944, 483=>722, 484=>722, 485=>500, 486=>722, 487=>500, 488=>664, 489=>500, 490=>722, 491=>500, 492=>722,
+ 493=>500, 494=>614, 495=>461, 496=>278, 497=>1355, 498=>1133, 499=>889, 500=>722, 501=>500, 504=>722, 505=>556, 506=>667, 507=>500, 508=>944, 509=>722, 510=>722,
+ 511=>500, 512=>667, 513=>500, 514=>667, 515=>500, 516=>670, 517=>444, 518=>670, 519=>444, 520=>393, 521=>278, 522=>393, 523=>278, 524=>722, 525=>500, 526=>722,
+ 527=>500, 528=>672, 529=>389, 530=>672, 531=>389, 532=>722, 533=>556, 534=>722, 535=>556, 536=>556, 537=>389, 538=>611, 539=>278, 542=>778, 543=>556, 550=>667,
+ 551=>500, 552=>670, 553=>444, 554=>722, 555=>500, 556=>722, 557=>500, 558=>722, 559=>500, 560=>722, 561=>500, 562=>611, 563=>444, 592=>500, 593=>605, 594=>605,
+ 595=>500, 596=>444, 599=>668, 600=>444, 601=>444, 603=>440, 608=>569, 609=>500, 613=>556, 616=>278, 617=>330, 618=>278, 623=>778, 629=>500, 633=>389, 643=>333,
+ 648=>278, 649=>500, 650=>557, 651=>492, 652=>444, 653=>667, 654=>444, 658=>461, 670=>500, 711=>333, 714=>333, 715=>333, 728=>333, 729=>333, 730=>333, 731=>333,
+ 733=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0,
+ 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>-113, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0, 797=>0, 798=>0,
+ 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0, 813=>0, 814=>0,
+ 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0, 829=>0, 830=>0,
+ 831=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>0, 894=>333, 900=>330, 901=>333, 902=>667, 903=>250, 904=>667, 905=>778, 906=>389, 908=>722, 910=>722,
+ 911=>741, 912=>330, 913=>667, 914=>667, 915=>637, 916=>740, 917=>667, 918=>611, 919=>778, 920=>722, 921=>389, 922=>677, 923=>667, 924=>889, 925=>722, 926=>650,
+ 927=>722, 928=>778, 929=>611, 931=>730, 932=>621, 933=>722, 934=>748, 935=>667, 936=>868, 937=>741, 938=>389, 939=>722, 940=>605, 941=>440, 942=>605, 943=>330,
+ 944=>550, 945=>605, 946=>550, 947=>550, 948=>550, 949=>440, 950=>495, 951=>605, 952=>550, 953=>330, 954=>608, 955=>495, 956=>605, 957=>495, 958=>495, 959=>550,
+ 960=>605, 961=>550, 962=>440, 963=>550, 964=>440, 965=>550, 966=>660, 967=>495, 968=>715, 969=>715, 970=>330, 971=>550, 972=>550, 973=>550, 974=>715, 976=>550,
+ 977=>605, 978=>722, 979=>722, 980=>722, 981=>660, 982=>715, 985=>550, 986=>650, 987=>550, 988=>667, 989=>513, 990=>611, 991=>495, 992=>671, 993=>662, 1008=>550,
+ 1009=>550, 1010=>477, 1013=>411, 1024=>667, 1025=>667, 1026=>728, 1028=>722, 1029=>556, 1030=>389, 1031=>389, 1032=>500, 1033=>987, 1034=>913, 1035=>788, 1037=>870, 1038=>722,
+ 1040=>667, 1041=>733, 1042=>667, 1043=>656, 1044=>864, 1045=>667, 1046=>1107, 1047=>564, 1048=>870, 1049=>870, 1050=>775, 1051=>855, 1052=>889, 1053=>778, 1054=>722, 1055=>869,
+ 1056=>611, 1057=>667, 1058=>611, 1059=>766, 1060=>833, 1061=>667, 1062=>869, 1063=>823, 1064=>1208, 1065=>1209, 1066=>796, 1067=>1060, 1068=>712, 1069=>732, 1070=>1195, 1071=>821,
+ 1072=>500, 1073=>500, 1074=>444, 1075=>389, 1076=>534, 1077=>444, 1078=>1051, 1079=>408, 1080=>556, 1081=>556, 1082=>534, 1083=>637, 1084=>859, 1085=>560, 1086=>500, 1087=>556,
+ 1088=>500, 1089=>444, 1090=>778, 1091=>444, 1092=>764, 1093=>500, 1094=>556, 1095=>556, 1096=>806, 1097=>806, 1098=>591, 1099=>744, 1100=>444, 1101=>451, 1102=>765, 1103=>594,
+ 1104=>444, 1105=>444, 1106=>451, 1107=>458, 1108=>444, 1109=>389, 1110=>278, 1111=>278, 1112=>278, 1113=>731, 1114=>658, 1115=>556, 1117=>556, 1118=>444, 1119=>556, 1164=>712,
+ 1165=>444, 1166=>611, 1167=>500, 1168=>611, 1169=>458, 1170=>667, 1171=>458, 1172=>667, 1173=>458, 1174=>1107, 1175=>1051, 1176=>657, 1177=>439, 1178=>772, 1179=>534, 1180=>772,
+ 1181=>534, 1182=>772, 1183=>534, 1184=>772, 1185=>534, 1186=>778, 1187=>560, 1188=>778, 1189=>560, 1190=>1085, 1191=>556, 1192=>667, 1193=>444, 1194=>667, 1195=>444, 1196=>611,
+ 1197=>494, 1198=>611, 1199=>611, 1200=>611, 1201=>611, 1202=>667, 1203=>500, 1204=>869, 1205=>556, 1206=>823, 1207=>556, 1208=>823, 1209=>556, 1210=>823, 1211=>556, 1212=>620,
+ 1213=>444, 1214=>620, 1215=>444, 1216=>389, 1217=>1107, 1218=>1051, 1219=>772, 1220=>534, 1223=>778, 1224=>560, 1227=>823, 1228=>556, 1232=>667, 1233=>500, 1234=>667, 1235=>500,
+ 1236=>944, 1237=>722, 1238=>667, 1239=>444, 1240=>722, 1241=>444, 1242=>722, 1243=>444, 1244=>1107, 1245=>1051, 1246=>564, 1247=>408, 1248=>614, 1249=>461, 1250=>870, 1251=>556,
+ 1252=>870, 1253=>556, 1254=>722, 1255=>500, 1256=>722, 1257=>500, 1258=>722, 1259=>500, 1260=>732, 1261=>451, 1262=>766, 1263=>444, 1264=>766, 1265=>444, 1266=>766, 1267=>444,
+ 1268=>823, 1269=>556, 1272=>1060, 1273=>744, 1488=>504, 1489=>504, 1490=>313, 1491=>504, 1492=>504, 1493=>285, 1494=>285, 1495=>504, 1496=>504, 1497=>285, 1498=>517, 1499=>504,
+ 1500=>504, 1501=>504, 1502=>504, 1503=>281, 1504=>285, 1505=>504, 1506=>504, 1507=>526, 1508=>504, 1509=>491, 1510=>504, 1511=>549, 1512=>513, 1513=>538, 1514=>504, 7680=>667,
+ 7681=>500, 7682=>667, 7683=>500, 7684=>667, 7685=>500, 7686=>667, 7687=>500, 7688=>667, 7689=>444, 7690=>744, 7691=>500, 7692=>744, 7693=>500, 7694=>744, 7695=>500, 7696=>744,
+ 7697=>500, 7698=>744, 7699=>500, 7700=>667, 7701=>444, 7702=>667, 7703=>444, 7704=>670, 7705=>444, 7706=>670, 7707=>444, 7708=>670, 7709=>444, 7710=>656, 7711=>333, 7712=>722,
+ 7713=>500, 7714=>778, 7715=>556, 7716=>778, 7717=>556, 7718=>778, 7719=>556, 7720=>778, 7721=>556, 7722=>778, 7723=>556, 7724=>393, 7725=>278, 7726=>389, 7727=>278, 7728=>664,
+ 7729=>500, 7730=>664, 7731=>500, 7732=>664, 7733=>500, 7734=>609, 7735=>278, 7736=>609, 7737=>278, 7738=>609, 7739=>278, 7740=>609, 7741=>278, 7742=>896, 7743=>778, 7744=>896,
+ 7745=>778, 7746=>896, 7747=>778, 7748=>722, 7749=>556, 7750=>722, 7751=>556, 7752=>722, 7753=>556, 7754=>722, 7755=>556, 7756=>722, 7757=>500, 7758=>722, 7759=>500, 7760=>722,
+ 7761=>500, 7762=>722, 7763=>500, 7764=>614, 7765=>500, 7766=>614, 7767=>500, 7768=>672, 7769=>389, 7770=>672, 7771=>389, 7772=>672, 7773=>389, 7774=>672, 7775=>389, 7776=>556,
+ 7777=>389, 7778=>556, 7779=>389, 7780=>556, 7781=>389, 7782=>556, 7783=>389, 7784=>556, 7785=>389, 7786=>611, 7787=>278, 7788=>611, 7789=>278, 7790=>611, 7791=>278, 7792=>611,
+ 7793=>278, 7794=>722, 7795=>556, 7796=>722, 7797=>556, 7798=>722, 7799=>556, 7800=>722, 7801=>556, 7802=>722, 7803=>556, 7804=>667, 7805=>444, 7806=>667, 7807=>444, 7808=>889,
+ 7809=>667, 7810=>889, 7811=>667, 7812=>889, 7813=>667, 7814=>889, 7815=>667, 7816=>889, 7817=>667, 7818=>667, 7819=>500, 7820=>667, 7821=>500, 7822=>611, 7823=>444, 7824=>611,
+ 7825=>389, 7826=>611, 7827=>389, 7828=>611, 7829=>389, 7830=>556, 7831=>278, 7832=>667, 7833=>444, 7835=>333, 7840=>667, 7841=>500, 7842=>667, 7843=>500, 7844=>667, 7845=>500,
+ 7846=>667, 7847=>500, 7848=>667, 7849=>500, 7850=>667, 7851=>500, 7852=>667, 7853=>500, 7854=>667, 7855=>500, 7856=>667, 7857=>500, 7858=>667, 7859=>500, 7860=>667, 7861=>500,
+ 7862=>667, 7863=>500, 7864=>670, 7865=>444, 7866=>670, 7867=>444, 7868=>670, 7869=>444, 7870=>667, 7871=>444, 7872=>667, 7873=>444, 7874=>667, 7875=>444, 7876=>667, 7877=>444,
+ 7878=>670, 7879=>444, 7880=>393, 7881=>278, 7882=>393, 7883=>278, 7884=>722, 7885=>500, 7886=>722, 7887=>500, 7888=>722, 7889=>500, 7890=>722, 7891=>500, 7892=>722, 7893=>500,
+ 7894=>722, 7895=>500, 7896=>722, 7897=>500, 7898=>908, 7899=>640, 7900=>908, 7901=>640, 7902=>908, 7903=>640, 7904=>908, 7905=>640, 7906=>908, 7907=>640, 7908=>722, 7909=>556,
+ 7910=>722, 7911=>556, 7912=>920, 7913=>730, 7914=>920, 7915=>730, 7916=>920, 7917=>730, 7918=>920, 7919=>730, 7920=>920, 7921=>730, 7922=>611, 7923=>444, 7924=>611, 7925=>444,
+ 7926=>611, 7927=>444, 7928=>611, 7929=>444, 7936=>605, 7937=>605, 7938=>605, 7939=>605, 7940=>605, 7941=>605, 7942=>605, 7943=>605, 7944=>667, 7945=>667, 7946=>667, 7947=>667,
+ 7948=>667, 7949=>667, 7950=>667, 7951=>667, 7952=>440, 7953=>440, 7954=>440, 7955=>440, 7956=>440, 7957=>440, 7960=>667, 7961=>667, 7962=>667, 7963=>667, 7964=>667, 7965=>667,
+ 7968=>605, 7969=>605, 7970=>605, 7971=>605, 7972=>605, 7973=>605, 7974=>605, 7975=>605, 7976=>778, 7977=>778, 7978=>778, 7979=>778, 7980=>778, 7981=>778, 7982=>778, 7983=>778,
+ 7984=>330, 7985=>330, 7986=>330, 7987=>330, 7988=>330, 7989=>330, 7990=>330, 7991=>330, 7992=>389, 7993=>389, 7994=>389, 7995=>389, 7996=>389, 7997=>389, 7998=>389, 7999=>389,
+ 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>722, 8009=>722, 8010=>722, 8011=>722, 8012=>722, 8013=>722, 8016=>550, 8017=>550, 8018=>550, 8019=>550,
+ 8020=>550, 8021=>550, 8022=>550, 8023=>550, 8025=>722, 8027=>722, 8029=>722, 8031=>722, 8032=>715, 8033=>715, 8034=>715, 8035=>715, 8036=>715, 8037=>715, 8038=>715, 8039=>715,
+ 8040=>741, 8041=>741, 8042=>741, 8043=>741, 8044=>741, 8045=>741, 8046=>741, 8047=>741, 8048=>605, 8049=>605, 8050=>440, 8051=>440, 8052=>605, 8053=>605, 8054=>330, 8055=>330,
+ 8056=>550, 8057=>550, 8058=>550, 8059=>550, 8060=>715, 8061=>715, 8064=>605, 8065=>605, 8066=>605, 8067=>605, 8068=>605, 8069=>605, 8070=>605, 8071=>605, 8072=>667, 8073=>667,
+ 8074=>667, 8075=>667, 8076=>667, 8077=>667, 8078=>667, 8079=>667, 8080=>605, 8081=>605, 8082=>605, 8083=>605, 8084=>605, 8085=>605, 8086=>605, 8087=>605, 8088=>778, 8089=>778,
+ 8090=>778, 8091=>778, 8092=>778, 8093=>778, 8094=>778, 8095=>778, 8096=>715, 8097=>715, 8098=>715, 8099=>715, 8100=>715, 8101=>715, 8102=>715, 8103=>715, 8104=>741, 8105=>741,
+ 8106=>741, 8107=>741, 8108=>741, 8109=>741, 8110=>741, 8111=>741, 8112=>605, 8113=>605, 8114=>605, 8115=>605, 8116=>605, 8118=>605, 8119=>605, 8120=>667, 8121=>667, 8122=>667,
+ 8123=>667, 8124=>667, 8125=>250, 8126=>0, 8127=>500, 8128=>500, 8129=>550, 8130=>605, 8131=>605, 8132=>605, 8134=>605, 8135=>605, 8136=>667, 8137=>667, 8138=>778, 8139=>778,
+ 8140=>778, 8141=>500, 8142=>500, 8143=>500, 8144=>330, 8145=>330, 8146=>330, 8147=>330, 8150=>330, 8151=>330, 8152=>389, 8153=>389, 8154=>389, 8155=>389, 8157=>500, 8158=>500,
+ 8159=>500, 8160=>550, 8161=>550, 8162=>550, 8163=>550, 8164=>550, 8165=>550, 8166=>550, 8167=>550, 8168=>722, 8169=>722, 8170=>722, 8171=>722, 8172=>611, 8173=>550, 8174=>550,
+ 8175=>500, 8178=>715, 8179=>715, 8180=>715, 8182=>715, 8183=>715, 8184=>722, 8185=>722, 8186=>741, 8187=>741, 8188=>741, 8189=>500, 8190=>500, 8208=>333, 8209=>333, 8210=>500,
+ 8213=>1000, 8219=>333, 8223=>500, 8227=>560, 8241=>1618, 8242=>278, 8243=>556, 8244=>834, 8251=>727, 8252=>778, 8253=>733, 8255=>953, 8256=>953, 8257=>338, 8258=>931, 8259=>333,
+ 8260=>167, 8261=>332, 8262=>332, 8263=>1000, 8264=>889, 8265=>889, 8266=>500, 8304=>300, 8308=>300, 8309=>300, 8310=>300, 8311=>300, 8312=>300, 8313=>300, 8319=>300, 8320=>300,
+ 8321=>300, 8322=>300, 8323=>300, 8324=>300, 8325=>300, 8326=>300, 8327=>300, 8328=>300, 8329=>300, 8352=>667, 8353=>667, 8354=>667, 8355=>667, 8356=>500, 8357=>778, 8358=>722,
+ 8359=>705, 8361=>889, 8373=>500, 8451=>1067, 8455=>631, 8457=>1056, 8462=>556, 8463=>556, 8470=>981, 8471=>747, 8483=>667, 8486=>741, 8487=>741, 8489=>330, 8490=>664, 8491=>667,
+ 8494=>551, 8495=>444, 8498=>667, 8500=>500, 8501=>504, 8502=>504, 8503=>313, 8504=>504, 8531=>750, 8532=>750, 8533=>750, 8534=>750, 8535=>750, 8536=>750, 8537=>750, 8538=>750,
+ 8539=>750, 8540=>750, 8541=>750, 8542=>750, 8543=>750, 8544=>393, 8545=>786, 8546=>1179, 8547=>1060, 8548=>667, 8549=>1060, 8550=>1453, 8551=>1846, 8552=>1060, 8553=>667, 8554=>1060,
+ 8555=>1453, 8556=>609, 8557=>667, 8558=>744, 8559=>896, 8560=>278, 8561=>556, 8562=>834, 8563=>722, 8564=>444, 8565=>722, 8566=>1000, 8567=>1278, 8568=>778, 8569=>500, 8570=>778,
+ 8571=>1056, 8572=>278, 8573=>444, 8574=>500, 8575=>778, 8592=>964, 8593=>964, 8594=>964, 8595=>964, 8596=>964, 8597=>964, 8598=>964, 8599=>964, 8600=>964, 8601=>964, 8602=>964,
+ 8603=>964, 8606=>964, 8607=>964, 8608=>964, 8609=>964, 8610=>964, 8611=>964, 8612=>964, 8613=>964, 8614=>964, 8615=>964, 8616=>964, 8633=>964, 8634=>964, 8644=>964, 8645=>964,
+ 8646=>964, 8647=>964, 8648=>964, 8649=>964, 8650=>964, 8676=>964, 8677=>964, 8706=>494, 8710=>612, 8721=>713, 8722=>606, 8725=>750, 8730=>549, 8734=>752, 8800=>570, 8804=>570,
+ 8805=>570, 9674=>494, 9833=>333, 9834=>556, 9835=>778, 9836=>778, 9837=>556, 9838=>556, 9839=>556, 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500, 63038=>500, 63039=>500,
+ 63040=>500, 63041=>500, 63166=>278, 63171=>333, 63196=>500, 64256=>583, 64257=>556, 64258=>556, 64259=>824, 64260=>821, 64262=>662, 65533=>788);
$enc='';
$diff='';
-$file='FreeSerifBoldItalic.z';
-$ctg='FreeSerifBoldItalic.ctg.z';
-$originalsize=126456;
+$file='freeserifbi.z';
+$ctg='freeserifbi.ctg.z';
+$originalsize=159408;
?>
diff --git a/lib/tcpdf/fonts/freeserifbi.z b/lib/tcpdf/fonts/freeserifbi.z
new file mode 100644
index 0000000000..c61356dd81
Binary files /dev/null and b/lib/tcpdf/fonts/freeserifbi.z differ
diff --git a/lib/tcpdf/fonts/freeserifi.ctg.z b/lib/tcpdf/fonts/freeserifi.ctg.z
new file mode 100644
index 0000000000..c6cdf43408
Binary files /dev/null and b/lib/tcpdf/fonts/freeserifi.ctg.z differ
diff --git a/lib/tcpdf/fonts/freeserifi.php b/lib/tcpdf/fonts/freeserifi.php
index 52fabc89d1..ff8f24a647 100755
--- a/lib/tcpdf/fonts/freeserifi.php
+++ b/lib/tcpdf/fonts/freeserifi.php
@@ -1,104 +1,122 @@
1122,'Descent'=>-438,'CapHeight'=>1122,'Flags'=>96,'FontBBox'=>'[-674 -438 1558 1122]','ItalicAngle'=>-16.5,'StemV'=>70,'MissingWidth'=>600);
+$desc=array('Ascent'=>1122,'Descent'=>-438,'CapHeight'=>1122,'Flags'=>96,'FontBBox'=>'[-674 -438 1673 1122]','ItalicAngle'=>-16.5,'StemV'=>70,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
- 13=>333, 32=>250, 33=>333, 34=>420, 35=>500, 36=>500, 37=>833, 38=>778, 39=>214, 40=>333, 41=>333, 42=>500, 43=>675, 44=>250, 45=>333, 46=>250,
- 47=>278, 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>333, 59=>333, 60=>675, 61=>675, 62=>675,
- 63=>500, 64=>920, 65=>611, 66=>611, 67=>667, 68=>722, 69=>604, 70=>611, 71=>722, 72=>722, 73=>339, 74=>444, 75=>652, 76=>556, 77=>828, 78=>657,
- 79=>722, 80=>603, 81=>722, 82=>616, 83=>500, 84=>556, 85=>722, 86=>611, 87=>833, 88=>611, 89=>556, 90=>556, 91=>389, 92=>278, 93=>389, 94=>422,
- 95=>500, 96=>333, 97=>500, 98=>500, 99=>444, 100=>500, 101=>444, 102=>278, 103=>500, 104=>500, 105=>278, 106=>278, 107=>444, 108=>278, 109=>722, 110=>500,
- 111=>500, 112=>500, 113=>500, 114=>389, 115=>389, 116=>278, 117=>500, 118=>444, 119=>667, 120=>444, 121=>444, 122=>389, 123=>400, 124=>275, 125=>400, 126=>541,
- 8364=>500, 1027=>556, 8218=>333, 1107=>454, 8222=>556, 8230=>889, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>500, 8249=>333, 338=>944, 1036=>743, 381=>556, 1039=>814,
- 8216=>333, 8217=>333, 8220=>556, 8221=>556, 8226=>350, 8211=>500, 8212=>889, 732=>333, 8482=>980, 353=>389, 8250=>333, 339=>667, 1116=>491, 382=>389, 376=>556, 161=>389,
- 162=>500, 163=>500, 164=>500, 165=>500, 166=>275, 167=>500, 168=>333, 169=>760, 170=>276, 171=>500, 172=>675, 174=>760, 175=>333, 176=>400, 177=>675, 178=>300,
- 179=>300, 180=>333, 181=>500, 182=>523, 183=>250, 184=>333, 185=>300, 186=>310, 187=>500, 188=>750, 189=>750, 190=>750, 191=>500, 192=>611, 193=>611, 194=>611,
- 195=>611, 196=>611, 197=>611, 198=>889, 199=>667, 200=>611, 201=>611, 202=>611, 203=>611, 204=>333, 205=>333, 206=>333, 207=>333, 208=>722, 209=>667, 210=>722,
- 211=>722, 212=>722, 213=>722, 214=>722, 215=>675, 216=>722, 217=>722, 218=>722, 219=>722, 220=>722, 221=>556, 222=>611, 223=>500, 224=>500, 225=>500, 226=>500,
- 227=>500, 228=>500, 229=>500, 230=>667, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>500, 242=>500,
- 243=>500, 244=>500, 245=>500, 246=>500, 247=>675, 248=>500, 249=>500, 250=>500, 251=>500, 252=>500, 253=>444, 254=>500, 255=>444, 256=>611, 257=>500, 258=>611,
- 259=>500, 260=>611, 261=>500, 262=>667, 263=>444, 264=>667, 265=>444, 266=>667, 267=>444, 268=>667, 269=>444, 270=>722, 271=>500, 272=>722, 273=>500, 274=>611,
- 275=>444, 276=>611, 277=>444, 278=>611, 279=>444, 280=>611, 281=>444, 282=>611, 283=>444, 284=>722, 285=>500, 286=>722, 287=>500, 288=>722, 289=>500, 290=>722,
- 291=>500, 292=>722, 293=>500, 294=>722, 295=>500, 296=>333, 297=>278, 298=>333, 299=>278, 300=>333, 301=>278, 302=>333, 303=>278, 304=>333, 305=>278, 306=>707,
- 307=>553, 308=>444, 309=>278, 310=>667, 311=>444, 312=>491, 313=>556, 314=>278, 315=>556, 316=>278, 317=>556, 318=>278, 319=>556, 320=>528, 321=>556, 322=>278,
- 323=>667, 324=>500, 325=>667, 326=>500, 327=>667, 328=>500, 329=>500, 330=>667, 331=>500, 332=>722, 333=>500, 334=>722, 335=>500, 336=>722, 337=>500, 340=>611,
- 341=>389, 342=>611, 343=>389, 344=>611, 345=>389, 346=>500, 347=>389, 348=>500, 349=>389, 350=>500, 351=>389, 354=>556, 355=>278, 356=>556, 357=>278, 358=>556,
- 359=>278, 360=>722, 361=>500, 362=>722, 363=>500, 364=>722, 365=>500, 366=>722, 367=>500, 368=>722, 369=>500, 370=>722, 371=>500, 372=>833, 373=>667, 374=>556,
- 375=>444, 377=>556, 378=>389, 379=>556, 380=>389, 383=>278, 399=>1000, 439=>1000, 450=>600, 461=>611, 462=>500, 463=>339, 464=>278, 465=>722, 466=>500, 467=>722,
- 468=>500, 469=>722, 470=>500, 471=>722, 472=>500, 473=>722, 474=>500, 475=>722, 476=>500, 477=>444, 478=>611, 479=>500, 482=>889, 483=>667, 484=>722, 485=>500,
- 486=>722, 487=>500, 488=>652, 489=>444, 490=>722, 491=>500, 492=>722, 493=>500, 494=>615, 495=>389, 506=>611, 507=>500, 508=>889, 509=>667, 510=>722, 511=>500,
- 512=>611, 513=>500, 514=>611, 515=>500, 516=>604, 517=>444, 518=>604, 519=>444, 520=>339, 521=>278, 522=>339, 523=>278, 524=>722, 525=>500, 526=>722, 527=>500,
- 528=>616, 529=>389, 530=>616, 531=>389, 532=>722, 533=>500, 534=>722, 535=>500, 536=>500, 537=>389, 538=>556, 539=>278, 542=>722, 543=>500, 550=>611, 551=>500,
- 552=>604, 553=>444, 554=>722, 555=>500, 556=>722, 557=>500, 558=>722, 559=>500, 560=>722, 561=>500, 562=>556, 563=>444, 658=>389, 711=>333, 728=>333, 729=>333,
- 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0,
- 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0,
- 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0,
- 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0,
- 829=>0, 830=>0, 831=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>332, 894=>333, 900=>186, 901=>332, 902=>641, 903=>250, 904=>611, 905=>742, 906=>333,
- 908=>682, 910=>676, 911=>744, 912=>267, 913=>641, 914=>581, 915=>611, 916=>660, 917=>611, 918=>606, 919=>742, 920=>672, 921=>333, 922=>667, 923=>641, 924=>833,
- 925=>657, 926=>678, 927=>682, 928=>749, 929=>611, 931=>657, 932=>596, 933=>676, 934=>722, 935=>611, 936=>863, 937=>744, 938=>333, 939=>696, 940=>587, 941=>426,
- 942=>534, 943=>267, 944=>534, 945=>587, 946=>534, 947=>480, 948=>534, 949=>426, 950=>480, 951=>534, 952=>534, 953=>267, 954=>534, 955=>480, 956=>534, 957=>480,
- 958=>480, 959=>534, 960=>587, 961=>534, 962=>426, 963=>534, 964=>426, 965=>534, 966=>640, 967=>480, 968=>693, 969=>693, 970=>267, 971=>534, 972=>534, 973=>534,
- 974=>693, 976=>534, 977=>534, 978=>676, 979=>676, 980=>676, 981=>640, 982=>587, 983=>534, 986=>426, 987=>426, 988=>611, 989=>470, 1024=>611, 1025=>611, 1026=>556,
- 1028=>667, 1029=>500, 1030=>333, 1031=>333, 1032=>444, 1033=>722, 1034=>722, 1035=>556, 1037=>814, 1038=>730, 1040=>611, 1041=>682, 1042=>611, 1043=>640, 1044=>747, 1045=>611,
- 1046=>1073, 1047=>508, 1048=>814, 1049=>814, 1050=>729, 1051=>755, 1052=>833, 1053=>722, 1054=>722, 1055=>805, 1056=>611, 1057=>667, 1058=>556, 1059=>730, 1060=>801, 1061=>611,
- 1062=>807, 1063=>772, 1064=>1063, 1065=>1065, 1066=>731, 1067=>961, 1068=>645, 1069=>671, 1070=>1191, 1071=>746, 1072=>500, 1073=>500, 1074=>429, 1075=>354, 1076=>552, 1077=>444,
- 1078=>1058, 1079=>363, 1080=>500, 1081=>500, 1082=>491, 1083=>538, 1084=>731, 1085=>500, 1086=>500, 1087=>500, 1088=>500, 1089=>444, 1090=>722, 1091=>444, 1092=>771, 1093=>444,
- 1094=>500, 1095=>500, 1096=>750, 1097=>750, 1098=>492, 1099=>684, 1100=>420, 1101=>457, 1102=>700, 1103=>560, 1104=>444, 1105=>444, 1106=>484, 1108=>444, 1109=>389, 1110=>278,
- 1111=>278, 1112=>278, 1113=>538, 1114=>500, 1115=>500, 1117=>500, 1118=>444, 1119=>500, 1164=>645, 1165=>420, 1166=>611, 1167=>500, 1168=>556, 1169=>418, 1170=>556, 1171=>452,
- 1172=>556, 1173=>452, 1174=>1073, 1175=>1058, 1176=>575, 1177=>391, 1178=>743, 1179=>491, 1180=>743, 1181=>491, 1182=>743, 1183=>491, 1184=>743, 1185=>491, 1186=>722, 1187=>500,
- 1188=>722, 1189=>500, 1190=>814, 1191=>500, 1192=>667, 1193=>444, 1194=>667, 1195=>444, 1196=>556, 1197=>484, 1198=>556, 1199=>556, 1200=>556, 1201=>556, 1202=>611, 1203=>444,
- 1204=>807, 1205=>500, 1206=>772, 1207=>500, 1208=>772, 1209=>500, 1210=>772, 1211=>500, 1212=>722, 1213=>444, 1214=>722, 1215=>444, 1216=>333, 1217=>1073, 1218=>1058, 1219=>743,
- 1220=>491, 1223=>722, 1224=>500, 1227=>772, 1228=>500, 1232=>611, 1233=>500, 1234=>611, 1235=>500, 1236=>889, 1237=>667, 1238=>611, 1239=>444, 1240=>722, 1241=>444, 1242=>444,
- 1243=>444, 1244=>1073, 1245=>1058, 1246=>575, 1247=>391, 1248=>575, 1249=>391, 1250=>814, 1251=>500, 1252=>814, 1253=>500, 1254=>722, 1255=>500, 1256=>722, 1257=>500, 1258=>722,
- 1259=>500, 1260=>671, 1261=>457, 1262=>730, 1263=>444, 1264=>730, 1265=>444, 1266=>730, 1267=>444, 1268=>772, 1269=>500, 1272=>1021, 1273=>684, 1457=>0, 1458=>0, 1460=>0,
- 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1467=>0, 1472=>126, 1475=>418, 1488=>537, 1489=>537, 1490=>350, 1491=>537, 1492=>537, 1493=>350, 1494=>350, 1495=>537,
- 1496=>537, 1497=>350, 1498=>537, 1499=>537, 1500=>537, 1501=>537, 1502=>537, 1503=>350, 1504=>350, 1505=>537, 1506=>537, 1507=>537, 1508=>537, 1509=>537, 1510=>537, 1511=>537,
- 1512=>537, 1513=>537, 1514=>537, 1520=>537, 1521=>537, 1522=>537, 1523=>396, 1524=>396, 3585=>606, 3586=>550, 3587=>622, 3588=>604, 3589=>619, 3590=>674, 3591=>461, 3592=>499,
- 3593=>613, 3594=>550, 3595=>622, 3596=>817, 3597=>817, 3598=>656, 3599=>656, 3600=>463, 3601=>717, 3602=>820, 3603=>826, 3604=>604, 3605=>616, 3606=>602, 3607=>650, 3608=>514,
- 3609=>626, 3610=>626, 3611=>626, 3612=>647, 3613=>647, 3614=>676, 3615=>676, 3616=>643, 3617=>616, 3618=>574, 3619=>480, 3620=>602, 3621=>579, 3622=>643, 3623=>483, 3624=>606,
- 3625=>654, 3626=>579, 3627=>654, 3628=>676, 3629=>584, 3630=>584, 3631=>524, 3632=>444, 3633=>0, 3634=>408, 3635=>408, 3636=>0, 3637=>0, 3638=>0, 3639=>0, 3640=>0,
- 3641=>0, 3642=>0, 3647=>712, 3648=>320, 3649=>586, 3650=>321, 3651=>317, 3652=>321, 3653=>290, 3654=>599, 3655=>0, 3656=>0, 3657=>0, 3658=>0, 3659=>0, 3660=>0,
- 3661=>0, 3662=>0, 3663=>780, 3664=>672, 3665=>672, 3666=>672, 3667=>672, 3668=>672, 3669=>672, 3670=>672, 3671=>672, 3672=>672, 3673=>672, 3674=>694, 3675=>938, 7680=>611,
- 7681=>500, 7682=>611, 7683=>500, 7684=>611, 7685=>500, 7686=>611, 7687=>500, 7688=>667, 7689=>444, 7690=>722, 7691=>500, 7692=>722, 7693=>500, 7694=>722, 7695=>500, 7696=>722,
- 7697=>500, 7698=>722, 7699=>500, 7700=>611, 7701=>444, 7702=>611, 7703=>444, 7704=>604, 7705=>444, 7706=>604, 7707=>444, 7708=>604, 7709=>444, 7710=>611, 7711=>278, 7712=>722,
- 7713=>500, 7714=>722, 7715=>500, 7716=>722, 7717=>500, 7718=>722, 7719=>500, 7720=>722, 7721=>500, 7722=>722, 7723=>500, 7724=>339, 7725=>278, 7726=>333, 7727=>278, 7728=>652,
- 7729=>444, 7730=>652, 7731=>444, 7732=>652, 7733=>444, 7734=>556, 7735=>278, 7736=>556, 7737=>278, 7738=>556, 7739=>278, 7740=>556, 7741=>278, 7742=>828, 7743=>722, 7744=>828,
- 7745=>722, 7746=>828, 7747=>722, 7748=>657, 7749=>500, 7750=>657, 7751=>500, 7752=>657, 7753=>500, 7754=>657, 7755=>500, 7756=>722, 7757=>500, 7758=>722, 7759=>500, 7760=>722,
- 7761=>500, 7762=>722, 7763=>500, 7764=>603, 7765=>500, 7766=>603, 7767=>500, 7768=>616, 7769=>389, 7770=>616, 7771=>389, 7772=>616, 7773=>389, 7774=>616, 7775=>389, 7776=>500,
- 7777=>389, 7778=>500, 7779=>389, 7780=>500, 7781=>389, 7782=>500, 7783=>389, 7784=>500, 7785=>389, 7786=>556, 7787=>278, 7788=>556, 7789=>278, 7790=>556, 7791=>278, 7792=>556,
- 7793=>278, 7794=>722, 7795=>500, 7796=>722, 7797=>500, 7798=>722, 7799=>500, 7800=>722, 7801=>500, 7802=>722, 7803=>500, 7804=>611, 7805=>444, 7806=>611, 7807=>444, 7808=>833,
- 7809=>667, 7810=>833, 7811=>667, 7812=>833, 7813=>667, 7814=>833, 7815=>667, 7816=>833, 7817=>667, 7818=>611, 7819=>444, 7820=>611, 7821=>444, 7822=>556, 7823=>444, 7824=>556,
- 7825=>389, 7826=>556, 7827=>389, 7828=>556, 7829=>389, 7830=>500, 7831=>278, 7832=>667, 7833=>444, 7835=>278, 7840=>611, 7841=>500, 7842=>611, 7843=>500, 7844=>611, 7845=>500,
- 7846=>611, 7847=>500, 7848=>611, 7849=>500, 7850=>611, 7851=>500, 7852=>611, 7853=>500, 7854=>611, 7855=>500, 7856=>611, 7857=>500, 7858=>611, 7859=>500, 7860=>611, 7861=>500,
- 7862=>611, 7863=>500, 7864=>604, 7865=>444, 7866=>604, 7867=>444, 7868=>604, 7869=>444, 7870=>611, 7871=>444, 7872=>611, 7873=>444, 7874=>611, 7875=>444, 7876=>611, 7877=>444,
- 7878=>604, 7879=>444, 7880=>339, 7881=>278, 7882=>339, 7883=>278, 7884=>722, 7885=>500, 7886=>722, 7887=>500, 7888=>722, 7889=>500, 7890=>722, 7891=>500, 7892=>722, 7893=>500,
- 7894=>722, 7895=>500, 7896=>722, 7897=>500, 7908=>722, 7909=>500, 7910=>722, 7911=>500, 7922=>556, 7923=>444, 7924=>556, 7925=>444, 7926=>556, 7927=>444, 7928=>556, 7929=>444,
- 7936=>587, 7937=>587, 7938=>587, 7939=>587, 7940=>587, 7941=>587, 7942=>587, 7943=>587, 7944=>641, 7945=>641, 7946=>641, 7947=>641, 7948=>641, 7949=>641, 7950=>641, 7951=>641,
- 7952=>426, 7953=>426, 7954=>426, 7955=>426, 7956=>426, 7957=>426, 7960=>611, 7961=>611, 7962=>611, 7963=>611, 7964=>611, 7965=>611, 7968=>534, 7969=>534, 7970=>534, 7971=>534,
- 7972=>534, 7973=>534, 7974=>534, 7975=>534, 7976=>742, 7977=>742, 7978=>742, 7979=>742, 7980=>742, 7981=>742, 7982=>742, 7983=>742, 7984=>267, 7985=>267, 7986=>267, 7987=>267,
- 7988=>267, 7989=>267, 7990=>267, 7991=>267, 7992=>333, 7993=>333, 7994=>333, 7995=>333, 7996=>333, 7997=>333, 7998=>333, 7999=>333, 8000=>534, 8001=>534, 8002=>534, 8003=>534,
- 8004=>534, 8005=>534, 8008=>682, 8009=>682, 8010=>682, 8011=>682, 8012=>682, 8013=>682, 8016=>534, 8017=>534, 8018=>534, 8019=>534, 8020=>534, 8021=>534, 8022=>534, 8023=>534,
- 8025=>676, 8027=>676, 8029=>676, 8031=>676, 8032=>693, 8033=>693, 8034=>693, 8035=>693, 8036=>693, 8037=>693, 8038=>693, 8039=>693, 8040=>744, 8041=>744, 8042=>744, 8043=>744,
- 8044=>744, 8045=>744, 8046=>744, 8047=>744, 8048=>587, 8049=>587, 8050=>426, 8051=>426, 8052=>534, 8053=>534, 8054=>267, 8055=>267, 8056=>534, 8057=>534, 8058=>534, 8059=>534,
- 8060=>693, 8061=>693, 8064=>587, 8065=>587, 8066=>587, 8067=>587, 8068=>587, 8069=>587, 8070=>587, 8071=>587, 8072=>641, 8073=>641, 8074=>641, 8075=>641, 8076=>641, 8077=>641,
- 8078=>641, 8079=>641, 8080=>534, 8081=>534, 8082=>534, 8083=>534, 8084=>534, 8085=>534, 8086=>534, 8087=>534, 8088=>742, 8089=>742, 8090=>742, 8091=>742, 8092=>742, 8093=>742,
- 8094=>742, 8095=>742, 8096=>693, 8097=>693, 8098=>693, 8099=>693, 8100=>693, 8101=>693, 8102=>693, 8103=>693, 8104=>744, 8105=>744, 8106=>744, 8107=>744, 8108=>744, 8109=>744,
- 8110=>744, 8111=>744, 8112=>587, 8113=>587, 8114=>587, 8115=>587, 8116=>587, 8118=>587, 8119=>587, 8120=>641, 8121=>641, 8122=>641, 8123=>641, 8124=>641, 8125=>250, 8126=>332,
- 8127=>500, 8128=>500, 8129=>534, 8130=>534, 8131=>534, 8132=>534, 8134=>534, 8135=>534, 8136=>611, 8137=>611, 8138=>742, 8139=>742, 8140=>742, 8141=>500, 8142=>500, 8143=>500,
- 8144=>267, 8145=>267, 8146=>267, 8147=>267, 8150=>267, 8151=>267, 8152=>333, 8153=>333, 8154=>333, 8155=>333, 8157=>500, 8158=>500, 8159=>500, 8160=>534, 8161=>534, 8162=>534,
- 8163=>534, 8164=>534, 8165=>534, 8166=>534, 8167=>534, 8168=>676, 8169=>676, 8170=>676, 8171=>676, 8172=>611, 8173=>534, 8174=>534, 8175=>500, 8178=>693, 8179=>693, 8180=>693,
- 8182=>693, 8183=>693, 8184=>682, 8185=>682, 8186=>744, 8187=>744, 8188=>744, 8189=>500, 8190=>500, 8219=>333, 8223=>556, 8227=>350, 8228=>250, 8229=>500, 8241=>1601, 8248=>469,
- 8251=>629, 8252=>666, 8253=>500, 8255=>953, 8256=>953, 8257=>314, 8258=>931, 8259=>333, 8260=>167, 8261=>480, 8262=>480, 8263=>1000, 8264=>833, 8265=>833, 8304=>300, 8308=>300,
- 8309=>300, 8310=>300, 8311=>300, 8312=>300, 8313=>300, 8320=>300, 8321=>300, 8322=>300, 8323=>300, 8324=>300, 8325=>300, 8326=>300, 8327=>300, 8328=>300, 8329=>300, 8352=>698,
- 8353=>667, 8354=>667, 8355=>611, 8356=>500, 8357=>722, 8358=>667, 8359=>611, 8361=>833, 8470=>1023, 8471=>760, 8479=>610, 8483=>611, 8494=>533, 8498=>611, 8543=>750, 8706=>494,
- 8710=>612, 8721=>713, 8722=>675, 8725=>750, 8730=>549, 8734=>677, 8800=>564, 8804=>675, 8805=>675, 9674=>494, 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500, 63038=>500,
- 63039=>500, 63040=>500, 63041=>500, 63171=>333, 63196=>500, 64256=>526, 64257=>500, 64258=>500, 64259=>747, 64260=>748, 64262=>665);
+ 32=>250, 33=>333, 34=>420, 35=>500, 36=>500, 37=>833, 38=>778, 39=>214, 40=>333, 41=>333, 42=>500, 43=>675, 44=>250, 45=>333, 46=>250, 47=>278,
+ 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>333, 59=>333, 60=>675, 61=>675, 62=>675, 63=>500,
+ 64=>920, 65=>611, 66=>611, 67=>667, 68=>722, 69=>604, 70=>611, 71=>722, 72=>722, 73=>339, 74=>444, 75=>652, 76=>556, 77=>828, 78=>657, 79=>722,
+ 80=>603, 81=>722, 82=>616, 83=>500, 84=>556, 85=>722, 86=>611, 87=>833, 88=>611, 89=>556, 90=>556, 91=>389, 92=>278, 93=>389, 94=>422, 95=>500,
+ 96=>333, 97=>500, 98=>500, 99=>444, 100=>500, 101=>444, 102=>278, 103=>500, 104=>500, 105=>278, 106=>278, 107=>444, 108=>278, 109=>722, 110=>500, 111=>500,
+ 112=>500, 113=>500, 114=>389, 115=>389, 116=>278, 117=>500, 118=>444, 119=>667, 120=>444, 121=>444, 122=>389, 123=>400, 124=>275, 125=>400, 126=>541, 8364=>500,
+ 1027=>556, 8218=>333, 402=>278, 8222=>556, 8230=>889, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>500, 8249=>333, 338=>944, 1036=>743, 381=>556, 1039=>814, 8216=>333,
+ 8217=>333, 8220=>556, 8221=>556, 8226=>350, 8211=>500, 8212=>889, 732=>333, 8482=>980, 353=>389, 8250=>333, 339=>667, 1116=>491, 382=>389, 376=>556, 160=>250, 161=>389,
+ 162=>500, 163=>500, 164=>500, 165=>500, 166=>275, 167=>500, 168=>333, 169=>760, 170=>276, 171=>500, 172=>675, 173=>333, 174=>760, 175=>333, 176=>400, 177=>675,
+ 178=>300, 179=>300, 180=>333, 181=>500, 182=>523, 183=>250, 184=>333, 185=>300, 186=>310, 187=>500, 188=>750, 189=>750, 190=>750, 191=>500, 192=>611, 193=>611,
+ 194=>611, 195=>611, 196=>611, 197=>611, 198=>889, 199=>667, 200=>611, 201=>611, 202=>611, 203=>611, 204=>333, 205=>333, 206=>333, 207=>333, 208=>722, 209=>667,
+ 210=>722, 211=>722, 212=>722, 213=>722, 214=>722, 215=>675, 216=>722, 217=>722, 218=>722, 219=>722, 220=>722, 221=>556, 222=>611, 223=>500, 224=>500, 225=>500,
+ 226=>500, 227=>500, 228=>500, 229=>500, 230=>667, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>500,
+ 242=>500, 243=>500, 244=>500, 245=>500, 246=>500, 247=>675, 248=>500, 249=>500, 250=>500, 251=>500, 252=>500, 253=>444, 254=>500, 255=>444, 256=>611, 257=>500,
+ 258=>611, 259=>500, 260=>611, 261=>500, 262=>667, 263=>444, 264=>667, 265=>444, 266=>667, 267=>444, 268=>667, 269=>444, 270=>722, 271=>500, 272=>722, 273=>500,
+ 274=>611, 275=>444, 276=>611, 277=>444, 278=>611, 279=>444, 280=>611, 281=>444, 282=>611, 283=>444, 284=>722, 285=>500, 286=>722, 287=>500, 288=>722, 289=>500,
+ 290=>722, 291=>500, 292=>722, 293=>500, 294=>722, 295=>500, 296=>333, 297=>278, 298=>333, 299=>278, 300=>333, 301=>278, 302=>333, 303=>278, 304=>333, 305=>278,
+ 306=>707, 307=>553, 308=>444, 309=>278, 310=>667, 311=>444, 312=>444, 313=>556, 314=>278, 315=>556, 316=>278, 317=>556, 318=>278, 319=>556, 320=>528, 321=>556,
+ 322=>278, 323=>667, 324=>500, 325=>667, 326=>500, 327=>667, 328=>500, 329=>500, 330=>667, 331=>500, 332=>722, 333=>500, 334=>722, 335=>500, 336=>722, 337=>500,
+ 340=>611, 341=>389, 342=>611, 343=>389, 344=>611, 345=>389, 346=>500, 347=>389, 348=>500, 349=>389, 350=>500, 351=>389, 354=>556, 355=>278, 356=>556, 357=>278,
+ 358=>556, 359=>278, 360=>722, 361=>500, 362=>722, 363=>500, 364=>722, 365=>500, 366=>722, 367=>500, 368=>722, 369=>500, 370=>722, 371=>500, 372=>833, 373=>667,
+ 374=>556, 375=>444, 377=>556, 378=>389, 379=>556, 380=>389, 383=>278, 384=>500, 385=>781, 386=>682, 387=>500, 388=>611, 389=>500, 390=>667, 391=>866, 392=>703,
+ 393=>722, 394=>892, 395=>682, 396=>500, 397=>534, 398=>611, 399=>722, 400=>518, 401=>611, 403=>863, 404=>611, 405=>728, 406=>278, 407=>333, 408=>792, 409=>444,
+ 410=>278, 411=>480, 412=>900, 413=>779, 414=>500, 415=>722, 416=>932, 417=>500, 418=>908, 419=>722, 420=>772, 421=>500, 422=>611, 423=>500, 424=>389, 425=>657,
+ 426=>428, 427=>278, 428=>556, 429=>278, 430=>556, 431=>948, 432=>721, 433=>747, 434=>755, 435=>636, 436=>549, 437=>556, 438=>389, 439=>556, 440=>556, 441=>389,
+ 442=>389, 443=>500, 444=>615, 445=>439, 446=>389, 447=>500, 448=>275, 449=>500, 450=>600, 451=>333, 452=>1278, 453=>1111, 454=>889, 455=>1000, 456=>834, 457=>556,
+ 458=>1101, 459=>935, 460=>778, 461=>611, 462=>500, 463=>339, 464=>278, 465=>722, 466=>500, 467=>722, 468=>500, 469=>722, 470=>500, 471=>722, 472=>500, 473=>722,
+ 474=>500, 475=>722, 476=>500, 477=>444, 478=>611, 479=>500, 480=>611, 481=>500, 482=>889, 483=>667, 484=>722, 485=>500, 486=>722, 487=>500, 488=>652, 489=>444,
+ 490=>722, 491=>500, 492=>722, 493=>500, 494=>556, 495=>389, 496=>278, 497=>1278, 498=>1111, 499=>889, 500=>817, 501=>595, 504=>657, 505=>500, 506=>611, 507=>500,
+ 508=>889, 509=>667, 510=>722, 511=>500, 512=>611, 513=>500, 514=>611, 515=>500, 516=>604, 517=>444, 518=>604, 519=>444, 520=>339, 521=>278, 522=>339, 523=>278,
+ 524=>722, 525=>500, 526=>722, 527=>500, 528=>616, 529=>389, 530=>616, 531=>389, 532=>722, 533=>500, 534=>722, 535=>500, 536=>500, 537=>389, 538=>556, 539=>278,
+ 542=>722, 543=>500, 550=>611, 551=>500, 552=>604, 553=>444, 554=>722, 555=>500, 556=>722, 557=>500, 558=>722, 559=>500, 560=>722, 561=>500, 562=>556, 563=>444,
+ 592=>500, 593=>587, 594=>587, 595=>500, 596=>444, 599=>697, 600=>444, 601=>444, 603=>426, 604=>426, 608=>640, 609=>500, 613=>500, 616=>278, 618=>278, 623=>722,
+ 629=>500, 633=>389, 643=>278, 647=>278, 648=>278, 649=>500, 650=>517, 651=>500, 652=>444, 653=>667, 654=>444, 658=>389, 670=>444, 711=>333, 728=>333, 729=>333,
+ 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0,
+ 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0,
+ 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0,
+ 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0,
+ 829=>0, 830=>0, 831=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>332, 894=>333, 900=>267, 901=>333, 902=>641, 903=>250, 904=>611, 905=>742, 906=>333,
+ 908=>682, 910=>676, 911=>744, 912=>267, 913=>641, 914=>581, 915=>611, 916=>660, 917=>611, 918=>606, 919=>742, 920=>672, 921=>333, 922=>667, 923=>641, 924=>833,
+ 925=>657, 926=>678, 927=>682, 928=>749, 929=>611, 931=>657, 932=>596, 933=>676, 934=>722, 935=>611, 936=>863, 937=>744, 938=>333, 939=>696, 940=>587, 941=>426,
+ 942=>534, 943=>267, 944=>534, 945=>587, 946=>534, 947=>480, 948=>534, 949=>426, 950=>480, 951=>534, 952=>534, 953=>267, 954=>527, 955=>480, 956=>534, 957=>480,
+ 958=>480, 959=>534, 960=>587, 961=>534, 962=>426, 963=>534, 964=>426, 965=>534, 966=>640, 967=>480, 968=>693, 969=>693, 970=>267, 971=>534, 972=>534, 973=>534,
+ 974=>693, 976=>534, 977=>587, 978=>620, 979=>620, 980=>620, 981=>640, 982=>684, 983=>534, 985=>534, 986=>426, 987=>426, 988=>611, 989=>445, 991=>480, 993=>616,
+ 1008=>534, 1009=>534, 1010=>485, 1024=>611, 1025=>611, 1026=>669, 1028=>667, 1029=>500, 1030=>333, 1031=>333, 1032=>444, 1033=>896, 1034=>922, 1035=>758, 1037=>814, 1038=>730,
+ 1040=>611, 1041=>682, 1042=>611, 1043=>640, 1044=>747, 1045=>611, 1046=>1073, 1047=>508, 1048=>814, 1049=>814, 1050=>729, 1051=>755, 1052=>833, 1053=>722, 1054=>722, 1055=>805,
+ 1056=>611, 1057=>667, 1058=>556, 1059=>730, 1060=>801, 1061=>611, 1062=>807, 1063=>772, 1064=>1063, 1065=>1065, 1066=>731, 1067=>961, 1068=>645, 1069=>671, 1070=>1191, 1071=>746,
+ 1072=>500, 1073=>500, 1074=>429, 1075=>354, 1076=>552, 1077=>444, 1078=>1058, 1079=>363, 1080=>500, 1081=>500, 1082=>491, 1083=>538, 1084=>731, 1085=>500, 1086=>500, 1087=>500,
+ 1088=>500, 1089=>444, 1090=>722, 1091=>444, 1092=>771, 1093=>444, 1094=>500, 1095=>500, 1096=>750, 1097=>750, 1098=>492, 1099=>684, 1100=>420, 1101=>457, 1102=>700, 1103=>560,
+ 1104=>444, 1105=>444, 1106=>500, 1107=>454, 1108=>444, 1109=>389, 1110=>278, 1111=>278, 1112=>278, 1113=>694, 1114=>646, 1115=>500, 1117=>500, 1118=>444, 1119=>500, 1164=>645,
+ 1165=>420, 1166=>611, 1167=>500, 1168=>556, 1169=>418, 1170=>556, 1171=>354, 1172=>598, 1173=>452, 1174=>1073, 1175=>1058, 1176=>575, 1177=>391, 1178=>743, 1179=>491, 1180=>743,
+ 1181=>491, 1182=>743, 1183=>491, 1184=>743, 1185=>491, 1186=>722, 1187=>500, 1188=>722, 1189=>500, 1190=>1000, 1191=>500, 1192=>667, 1193=>444, 1194=>667, 1195=>444, 1196=>556,
+ 1197=>484, 1198=>556, 1199=>556, 1200=>556, 1201=>556, 1202=>611, 1203=>444, 1204=>807, 1205=>500, 1206=>772, 1207=>500, 1208=>772, 1209=>500, 1210=>722, 1211=>500, 1212=>722,
+ 1213=>444, 1214=>722, 1215=>444, 1216=>333, 1217=>1073, 1218=>1058, 1219=>743, 1220=>491, 1223=>722, 1224=>500, 1227=>772, 1228=>500, 1232=>611, 1233=>500, 1234=>611, 1235=>500,
+ 1236=>889, 1237=>667, 1238=>611, 1239=>444, 1240=>722, 1241=>444, 1242=>444, 1243=>444, 1244=>1073, 1245=>1058, 1246=>575, 1247=>391, 1248=>575, 1249=>391, 1250=>814, 1251=>500,
+ 1252=>814, 1253=>500, 1254=>722, 1255=>500, 1256=>722, 1257=>500, 1258=>722, 1259=>500, 1260=>671, 1261=>457, 1262=>730, 1263=>444, 1264=>730, 1265=>444, 1266=>730, 1267=>444,
+ 1268=>772, 1269=>500, 1272=>1021, 1273=>684, 1457=>0, 1458=>0, 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1467=>0, 1472=>126, 1475=>418, 1488=>537,
+ 1489=>537, 1490=>350, 1491=>537, 1492=>537, 1493=>350, 1494=>350, 1495=>537, 1496=>537, 1497=>350, 1498=>537, 1499=>537, 1500=>537, 1501=>537, 1502=>537, 1503=>350, 1504=>350,
+ 1505=>537, 1506=>537, 1507=>537, 1508=>537, 1509=>537, 1510=>537, 1511=>537, 1512=>537, 1513=>537, 1514=>537, 1520=>537, 1521=>537, 1522=>537, 1523=>396, 1524=>396, 2404=>318,
+ 2405=>446, 2433=>0, 2434=>300, 2435=>312, 2437=>594, 2438=>776, 2439=>469, 2440=>513, 2441=>535, 2442=>561, 2443=>604, 2444=>481, 2447=>580, 2448=>604, 2451=>540, 2452=>620,
+ 2453=>570, 2454=>485, 2455=>484, 2456=>471, 2457=>457, 2458=>408, 2459=>452, 2460=>591, 2461=>551, 2462=>771, 2463=>414, 2464=>404, 2465=>522, 2466=>415, 2467=>450, 2468=>551,
+ 2469=>477, 2470=>478, 2471=>449, 2472=>448, 2474=>535, 2475=>611, 2476=>443, 2477=>534, 2478=>492, 2479=>474, 2480=>442, 2482=>542, 2486=>507, 2487=>467, 2488=>523, 2489=>419,
+ 2492=>0, 2493=>419, 2494=>202, 2495=>189, 2496=>202, 2497=>0, 2498=>0, 2499=>0, 2500=>0, 2503=>294, 2504=>289, 2507=>774, 2508=>825, 2509=>0, 2510=>356, 2519=>219,
+ 2524=>523, 2525=>420, 2527=>469, 2528=>604, 2529=>481, 2530=>0, 2531=>0, 2534=>500, 2535=>437, 2536=>479, 2537=>507, 2538=>497, 2539=>500, 2540=>482, 2541=>503, 2542=>517,
+ 2543=>481, 2544=>443, 2545=>443, 2546=>429, 2547=>383, 2548=>432, 2549=>478, 2550=>539, 2551=>158, 2552=>365, 2553=>280, 2554=>357, 3585=>606, 3586=>550, 3587=>622, 3588=>604,
+ 3589=>619, 3590=>674, 3591=>461, 3592=>499, 3593=>613, 3594=>550, 3595=>622, 3596=>817, 3597=>817, 3598=>656, 3599=>656, 3600=>463, 3601=>717, 3602=>820, 3603=>826, 3604=>604,
+ 3605=>616, 3606=>602, 3607=>650, 3608=>514, 3609=>626, 3610=>626, 3611=>626, 3612=>647, 3613=>647, 3614=>676, 3615=>676, 3616=>643, 3617=>616, 3618=>574, 3619=>480, 3620=>602,
+ 3621=>579, 3622=>643, 3623=>483, 3624=>606, 3625=>654, 3626=>579, 3627=>654, 3628=>676, 3629=>584, 3630=>584, 3631=>524, 3632=>444, 3633=>0, 3634=>408, 3635=>408, 3636=>0,
+ 3637=>0, 3638=>0, 3639=>0, 3640=>0, 3641=>0, 3642=>0, 3647=>712, 3648=>320, 3649=>586, 3650=>321, 3651=>317, 3652=>321, 3653=>290, 3654=>599, 3655=>0, 3656=>0,
+ 3657=>0, 3658=>0, 3659=>0, 3660=>0, 3661=>0, 3662=>0, 3663=>780, 3664=>672, 3665=>672, 3666=>672, 3667=>672, 3668=>672, 3669=>672, 3670=>672, 3671=>672, 3672=>672,
+ 3673=>672, 3674=>694, 3675=>938, 7680=>611, 7681=>500, 7682=>611, 7683=>500, 7684=>611, 7685=>500, 7686=>611, 7687=>500, 7688=>667, 7689=>444, 7690=>722, 7691=>500, 7692=>722,
+ 7693=>500, 7694=>722, 7695=>500, 7696=>722, 7697=>500, 7698=>722, 7699=>500, 7700=>611, 7701=>444, 7702=>611, 7703=>444, 7704=>604, 7705=>444, 7706=>604, 7707=>444, 7708=>604,
+ 7709=>444, 7710=>611, 7711=>278, 7712=>722, 7713=>500, 7714=>722, 7715=>500, 7716=>722, 7717=>500, 7718=>722, 7719=>500, 7720=>722, 7721=>500, 7722=>722, 7723=>500, 7724=>339,
+ 7725=>278, 7726=>333, 7727=>278, 7728=>652, 7729=>444, 7730=>652, 7731=>444, 7732=>652, 7733=>444, 7734=>556, 7735=>278, 7736=>556, 7737=>278, 7738=>556, 7739=>278, 7740=>556,
+ 7741=>278, 7742=>828, 7743=>722, 7744=>828, 7745=>722, 7746=>828, 7747=>722, 7748=>657, 7749=>500, 7750=>657, 7751=>500, 7752=>657, 7753=>500, 7754=>657, 7755=>500, 7756=>722,
+ 7757=>500, 7758=>722, 7759=>500, 7760=>722, 7761=>500, 7762=>722, 7763=>500, 7764=>603, 7765=>500, 7766=>603, 7767=>500, 7768=>616, 7769=>389, 7770=>616, 7771=>389, 7772=>616,
+ 7773=>389, 7774=>616, 7775=>389, 7776=>500, 7777=>389, 7778=>500, 7779=>389, 7780=>500, 7781=>389, 7782=>500, 7783=>389, 7784=>500, 7785=>389, 7786=>556, 7787=>278, 7788=>556,
+ 7789=>278, 7790=>556, 7791=>278, 7792=>556, 7793=>278, 7794=>722, 7795=>500, 7796=>722, 7797=>500, 7798=>722, 7799=>500, 7800=>722, 7801=>500, 7802=>722, 7803=>500, 7804=>611,
+ 7805=>444, 7806=>611, 7807=>444, 7808=>833, 7809=>667, 7810=>833, 7811=>667, 7812=>833, 7813=>667, 7814=>833, 7815=>667, 7816=>833, 7817=>667, 7818=>611, 7819=>444, 7820=>611,
+ 7821=>444, 7822=>556, 7823=>444, 7824=>556, 7825=>389, 7826=>556, 7827=>389, 7828=>556, 7829=>389, 7830=>500, 7831=>278, 7832=>667, 7833=>444, 7835=>278, 7840=>611, 7841=>500,
+ 7842=>611, 7843=>500, 7844=>611, 7845=>500, 7846=>611, 7847=>500, 7848=>611, 7849=>500, 7850=>611, 7851=>500, 7852=>611, 7853=>500, 7854=>611, 7855=>500, 7856=>611, 7857=>500,
+ 7858=>611, 7859=>500, 7860=>611, 7861=>500, 7862=>611, 7863=>500, 7864=>604, 7865=>444, 7866=>604, 7867=>444, 7868=>604, 7869=>444, 7870=>611, 7871=>444, 7872=>611, 7873=>444,
+ 7874=>611, 7875=>444, 7876=>611, 7877=>444, 7878=>604, 7879=>444, 7880=>339, 7881=>278, 7882=>339, 7883=>278, 7884=>722, 7885=>500, 7886=>722, 7887=>500, 7888=>722, 7889=>500,
+ 7890=>722, 7891=>500, 7892=>722, 7893=>500, 7894=>722, 7895=>500, 7896=>722, 7897=>500, 7908=>722, 7909=>500, 7910=>722, 7911=>500, 7922=>556, 7923=>444, 7924=>556, 7925=>444,
+ 7926=>556, 7927=>444, 7928=>556, 7929=>444, 7936=>587, 7937=>587, 7938=>587, 7939=>587, 7940=>587, 7941=>587, 7942=>587, 7943=>587, 7944=>641, 7945=>641, 7946=>641, 7947=>641,
+ 7948=>641, 7949=>641, 7950=>641, 7951=>641, 7952=>426, 7953=>426, 7954=>426, 7955=>426, 7956=>426, 7957=>426, 7960=>611, 7961=>611, 7962=>611, 7963=>611, 7964=>611, 7965=>611,
+ 7968=>534, 7969=>534, 7970=>534, 7971=>534, 7972=>534, 7973=>534, 7974=>534, 7975=>534, 7976=>742, 7977=>742, 7978=>742, 7979=>742, 7980=>742, 7981=>742, 7982=>742, 7983=>742,
+ 7984=>267, 7985=>267, 7986=>267, 7987=>267, 7988=>267, 7989=>267, 7990=>267, 7991=>267, 7992=>333, 7993=>333, 7994=>333, 7995=>333, 7996=>333, 7997=>333, 7998=>333, 7999=>333,
+ 8000=>534, 8001=>534, 8002=>534, 8003=>534, 8004=>534, 8005=>534, 8008=>682, 8009=>682, 8010=>682, 8011=>682, 8012=>682, 8013=>682, 8016=>534, 8017=>534, 8018=>534, 8019=>534,
+ 8020=>534, 8021=>534, 8022=>534, 8023=>534, 8025=>620, 8027=>620, 8029=>620, 8031=>620, 8032=>693, 8033=>693, 8034=>693, 8035=>693, 8036=>693, 8037=>693, 8038=>693, 8039=>693,
+ 8040=>744, 8041=>744, 8042=>744, 8043=>744, 8044=>744, 8045=>744, 8046=>744, 8047=>744, 8048=>587, 8049=>587, 8050=>426, 8051=>426, 8052=>534, 8053=>534, 8054=>267, 8055=>267,
+ 8056=>534, 8057=>534, 8058=>534, 8059=>534, 8060=>693, 8061=>693, 8064=>587, 8065=>587, 8066=>587, 8067=>587, 8068=>587, 8069=>587, 8070=>587, 8071=>587, 8072=>641, 8073=>641,
+ 8074=>641, 8075=>641, 8076=>641, 8077=>641, 8078=>641, 8079=>641, 8080=>534, 8081=>534, 8082=>534, 8083=>534, 8084=>534, 8085=>534, 8086=>534, 8087=>534, 8088=>742, 8089=>742,
+ 8090=>742, 8091=>742, 8092=>742, 8093=>742, 8094=>742, 8095=>742, 8096=>693, 8097=>693, 8098=>693, 8099=>693, 8100=>693, 8101=>693, 8102=>693, 8103=>693, 8104=>744, 8105=>744,
+ 8106=>744, 8107=>744, 8108=>744, 8109=>744, 8110=>744, 8111=>744, 8112=>587, 8113=>587, 8114=>587, 8115=>587, 8116=>587, 8118=>587, 8119=>587, 8120=>641, 8121=>641, 8122=>641,
+ 8123=>641, 8124=>641, 8125=>250, 8126=>332, 8127=>500, 8128=>500, 8129=>534, 8130=>534, 8131=>534, 8132=>534, 8134=>534, 8135=>534, 8136=>611, 8137=>611, 8138=>742, 8139=>742,
+ 8140=>742, 8141=>500, 8142=>500, 8143=>500, 8144=>267, 8145=>267, 8146=>267, 8147=>267, 8150=>267, 8151=>267, 8152=>333, 8153=>333, 8154=>333, 8155=>333, 8157=>500, 8158=>500,
+ 8159=>500, 8160=>534, 8161=>534, 8162=>534, 8163=>534, 8164=>534, 8165=>534, 8166=>534, 8167=>534, 8168=>676, 8169=>676, 8170=>676, 8171=>676, 8172=>611, 8173=>534, 8174=>534,
+ 8175=>500, 8178=>693, 8179=>693, 8180=>693, 8182=>693, 8183=>693, 8184=>682, 8185=>682, 8186=>744, 8187=>744, 8188=>744, 8189=>500, 8190=>500, 8204=>0, 8205=>0, 8208=>333,
+ 8209=>333, 8210=>500, 8213=>889, 8219=>333, 8223=>556, 8227=>350, 8228=>250, 8229=>500, 8241=>1601, 8248=>469, 8251=>629, 8252=>666, 8253=>500, 8255=>953, 8256=>953, 8257=>314,
+ 8258=>931, 8259=>333, 8260=>167, 8261=>480, 8262=>480, 8263=>1000, 8264=>833, 8265=>833, 8304=>300, 8308=>300, 8309=>300, 8310=>300, 8311=>300, 8312=>300, 8313=>300, 8320=>300,
+ 8321=>300, 8322=>300, 8323=>300, 8324=>300, 8325=>300, 8326=>300, 8327=>300, 8328=>300, 8329=>300, 8352=>698, 8353=>667, 8354=>667, 8355=>611, 8356=>500, 8357=>722, 8358=>667,
+ 8359=>611, 8361=>833, 8373=>611, 8462=>500, 8470=>1023, 8471=>760, 8479=>610, 8483=>611, 8486=>744, 8487=>744, 8494=>533, 8498=>611, 8531=>750, 8532=>750, 8533=>750, 8534=>750,
+ 8535=>750, 8536=>750, 8537=>750, 8538=>750, 8539=>750, 8540=>750, 8541=>750, 8542=>750, 8543=>750, 8544=>339, 8545=>678, 8546=>1017, 8547=>950, 8548=>611, 8549=>950, 8550=>1289,
+ 8551=>1628, 8552=>950, 8553=>611, 8554=>950, 8555=>1289, 8556=>556, 8557=>667, 8558=>722, 8559=>828, 8560=>278, 8561=>556, 8562=>834, 8563=>722, 8564=>444, 8565=>722, 8566=>1000,
+ 8567=>1278, 8568=>722, 8569=>444, 8570=>722, 8571=>1000, 8572=>278, 8573=>444, 8574=>500, 8575=>722, 8592=>964, 8593=>499, 8594=>964, 8595=>499, 8706=>494, 8710=>612, 8721=>713,
+ 8722=>675, 8723=>675, 8725=>750, 8730=>549, 8734=>677, 8747=>416, 8748=>750, 8749=>1083, 8750=>722, 8751=>750, 8800=>564, 8804=>675, 8805=>675, 8992=>686, 8993=>686, 9674=>494,
+ 9833=>333, 9834=>555, 9835=>722, 9836=>722, 9837=>415, 9838=>377, 9839=>402, 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500, 63038=>500, 63039=>500, 63040=>500, 63041=>500,
+ 63166=>278, 63171=>333, 63196=>500, 64256=>526, 64257=>500, 64258=>500, 64259=>747, 64260=>748, 64262=>665, 65533=>788);
$enc='';
$diff='';
-$file='FreeSerifItalic.z';
-$ctg='FreeSerifItalic.ctg.z';
-$originalsize=154900;
+$file='freeserifi.z';
+$ctg='freeserifi.ctg.z';
+$originalsize=362584;
?>
diff --git a/lib/tcpdf/fonts/freeserifi.z b/lib/tcpdf/fonts/freeserifi.z
new file mode 100644
index 0000000000..d6cf16af33
Binary files /dev/null and b/lib/tcpdf/fonts/freeserifi.z differ
diff --git a/lib/tcpdf/fonts/helvetica.php b/lib/tcpdf/fonts/helvetica.php
new file mode 100644
index 0000000000..23bc9b004f
--- /dev/null
+++ b/lib/tcpdf/fonts/helvetica.php
@@ -0,0 +1,5 @@
+278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278,10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278,20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278,30=>278,31=>278,32=>278,33=>278,34=>355,35=>556,36=>556,37=>889,38=>667,39=>191,40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556,50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>278,59=>278,60=>584,61=>584,62=>584,63=>556,64=>1015,65=>667,66=>667,67=>722,68=>722,69=>667,70=>611,71=>778,72=>722,73=>278,74=>500,75=>667,76=>556,77=>833,78=>722,79=>778,80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667,90=>611,91=>278,92=>278,93=>278,94=>469,95=>556,96=>333,97=>556,98=>556,99=>500,100=>556,101=>556,102=>278,103=>556,104=>556,105=>222,106=>222,107=>500,108=>222,109=>833,110=>556,111=>556,112=>556,113=>556,114=>333,115=>500,116=>278,117=>556,118=>500,119=>722,120=>500,121=>500,122=>500,123=>334,124=>260,125=>334,126=>584,127=>350,128=>556,129=>350,130=>222,131=>556,132=>333,133=>1000,134=>556,135=>556,136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350,145=>222,146=>222,147=>333,148=>333,149=>350,150=>556,151=>1000,152=>333,153=>1000,154=>500,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556,163=>556,164=>556,165=>556,166=>260,167=>556,168=>333,169=>737,170=>370,171=>556,172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333,181=>556,182=>537,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834,190=>834,191=>611,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>1000,199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278,208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778,217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556,226=>556,227=>556,228=>556,229=>556,230=>889,231=>500,232=>556,233=>556,234=>556,235=>556,236=>278,237=>278,238=>278,239=>278,240=>556,241=>556,242=>556,243=>556,244=>556,245=>556,246=>556,247=>584,248=>611,249=>556,250=>556,251=>556,252=>556,253=>500,254=>556,255=>500);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/helveticab.php b/lib/tcpdf/fonts/helveticab.php
new file mode 100644
index 0000000000..6a08a76373
--- /dev/null
+++ b/lib/tcpdf/fonts/helveticab.php
@@ -0,0 +1,5 @@
+278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278,10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278,20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278,30=>278,31=>278,32=>278,33=>333,34=>474,35=>556,36=>556,37=>889,38=>722,39=>238,40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556,50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>333,59=>333,60=>584,61=>584,62=>584,63=>611,64=>975,65=>722,66=>722,67=>722,68=>722,69=>667,70=>611,71=>778,72=>722,73=>278,74=>556,75=>722,76=>611,77=>833,78=>722,79=>778,80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667,90=>611,91=>333,92=>278,93=>333,94=>584,95=>556,96=>333,97=>556,98=>611,99=>556,100=>611,101=>556,102=>333,103=>611,104=>611,105=>278,106=>278,107=>556,108=>278,109=>889,110=>611,111=>611,112=>611,113=>611,114=>389,115=>556,116=>333,117=>611,118=>556,119=>778,120=>556,121=>556,122=>500,123=>389,124=>280,125=>389,126=>584,127=>350,128=>556,129=>350,130=>278,131=>556,132=>500,133=>1000,134=>556,135=>556,136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350,145=>278,146=>278,147=>500,148=>500,149=>350,150=>556,151=>1000,152=>333,153=>1000,154=>556,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556,163=>556,164=>556,165=>556,166=>280,167=>556,168=>333,169=>737,170=>370,171=>556,172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333,181=>611,182=>556,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834,190=>834,191=>611,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000,199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278,208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778,217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556,226=>556,227=>556,228=>556,229=>556,230=>889,231=>556,232=>556,233=>556,234=>556,235=>556,236=>278,237=>278,238=>278,239=>278,240=>611,241=>611,242=>611,243=>611,244=>611,245=>611,246=>611,247=>584,248=>611,249=>611,250=>611,251=>611,252=>611,253=>556,254=>611,255=>556);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/helveticabi.php b/lib/tcpdf/fonts/helveticabi.php
new file mode 100644
index 0000000000..6a08a76373
--- /dev/null
+++ b/lib/tcpdf/fonts/helveticabi.php
@@ -0,0 +1,5 @@
+278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278,10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278,20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278,30=>278,31=>278,32=>278,33=>333,34=>474,35=>556,36=>556,37=>889,38=>722,39=>238,40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556,50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>333,59=>333,60=>584,61=>584,62=>584,63=>611,64=>975,65=>722,66=>722,67=>722,68=>722,69=>667,70=>611,71=>778,72=>722,73=>278,74=>556,75=>722,76=>611,77=>833,78=>722,79=>778,80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667,90=>611,91=>333,92=>278,93=>333,94=>584,95=>556,96=>333,97=>556,98=>611,99=>556,100=>611,101=>556,102=>333,103=>611,104=>611,105=>278,106=>278,107=>556,108=>278,109=>889,110=>611,111=>611,112=>611,113=>611,114=>389,115=>556,116=>333,117=>611,118=>556,119=>778,120=>556,121=>556,122=>500,123=>389,124=>280,125=>389,126=>584,127=>350,128=>556,129=>350,130=>278,131=>556,132=>500,133=>1000,134=>556,135=>556,136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350,145=>278,146=>278,147=>500,148=>500,149=>350,150=>556,151=>1000,152=>333,153=>1000,154=>556,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556,163=>556,164=>556,165=>556,166=>280,167=>556,168=>333,169=>737,170=>370,171=>556,172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333,181=>611,182=>556,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834,190=>834,191=>611,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000,199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278,208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778,217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556,226=>556,227=>556,228=>556,229=>556,230=>889,231=>556,232=>556,233=>556,234=>556,235=>556,236=>278,237=>278,238=>278,239=>278,240=>611,241=>611,242=>611,243=>611,244=>611,245=>611,246=>611,247=>584,248=>611,249=>611,250=>611,251=>611,252=>611,253=>556,254=>611,255=>556);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/helveticai.php b/lib/tcpdf/fonts/helveticai.php
new file mode 100644
index 0000000000..23bc9b004f
--- /dev/null
+++ b/lib/tcpdf/fonts/helveticai.php
@@ -0,0 +1,5 @@
+278,1=>278,2=>278,3=>278,4=>278,5=>278,6=>278,7=>278,8=>278,9=>278,10=>278,11=>278,12=>278,13=>278,14=>278,15=>278,16=>278,17=>278,18=>278,19=>278,20=>278,21=>278,22=>278,23=>278,24=>278,25=>278,26=>278,27=>278,28=>278,29=>278,30=>278,31=>278,32=>278,33=>278,34=>355,35=>556,36=>556,37=>889,38=>667,39=>191,40=>333,41=>333,42=>389,43=>584,44=>278,45=>333,46=>278,47=>278,48=>556,49=>556,50=>556,51=>556,52=>556,53=>556,54=>556,55=>556,56=>556,57=>556,58=>278,59=>278,60=>584,61=>584,62=>584,63=>556,64=>1015,65=>667,66=>667,67=>722,68=>722,69=>667,70=>611,71=>778,72=>722,73=>278,74=>500,75=>667,76=>556,77=>833,78=>722,79=>778,80=>667,81=>778,82=>722,83=>667,84=>611,85=>722,86=>667,87=>944,88=>667,89=>667,90=>611,91=>278,92=>278,93=>278,94=>469,95=>556,96=>333,97=>556,98=>556,99=>500,100=>556,101=>556,102=>278,103=>556,104=>556,105=>222,106=>222,107=>500,108=>222,109=>833,110=>556,111=>556,112=>556,113=>556,114=>333,115=>500,116=>278,117=>556,118=>500,119=>722,120=>500,121=>500,122=>500,123=>334,124=>260,125=>334,126=>584,127=>350,128=>556,129=>350,130=>222,131=>556,132=>333,133=>1000,134=>556,135=>556,136=>333,137=>1000,138=>667,139=>333,140=>1000,141=>350,142=>611,143=>350,144=>350,145=>222,146=>222,147=>333,148=>333,149=>350,150=>556,151=>1000,152=>333,153=>1000,154=>500,155=>333,156=>944,157=>350,158=>500,159=>667,160=>278,161=>333,162=>556,163=>556,164=>556,165=>556,166=>260,167=>556,168=>333,169=>737,170=>370,171=>556,172=>584,173=>333,174=>737,175=>333,176=>400,177=>584,178=>333,179=>333,180=>333,181=>556,182=>537,183=>278,184=>333,185=>333,186=>365,187=>556,188=>834,189=>834,190=>834,191=>611,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>1000,199=>722,200=>667,201=>667,202=>667,203=>667,204=>278,205=>278,206=>278,207=>278,208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>584,216=>778,217=>722,218=>722,219=>722,220=>722,221=>667,222=>667,223=>611,224=>556,225=>556,226=>556,227=>556,228=>556,229=>556,230=>889,231=>500,232=>556,233=>556,234=>556,235=>556,236=>278,237=>278,238=>278,239=>278,240=>556,241=>556,242=>556,243=>556,244=>556,245=>556,246=>556,247=>584,248=>611,249=>556,250=>556,251=>556,252=>556,253=>500,254=>556,255=>500);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/hysmyeongjostdmedium.php b/lib/tcpdf/fonts/hysmyeongjostdmedium.php
new file mode 100644
index 0000000000..81fdd4e818
--- /dev/null
+++ b/lib/tcpdf/fonts/hysmyeongjostdmedium.php
@@ -0,0 +1,45 @@
+ 880,
+ 'Descent' => -120,
+ 'CapHeight' => 720,
+ 'Flags' => 6,
+ 'FontBBox' => '[-28 -148 1001 880]',
+ 'ItalicAngle' => 0,
+ 'StemV' => 60,
+ 'Style' => '<< /Panose <000000000600000000000000> >>',
+);
+$cidinfo = array(
+ 'Registry' => 'Adobe',
+ 'Ordering' => 'Korea1',
+ 'Supplement' => '1',
+);
+$enc = 'UniKS-UCS2-H';
+
+// underline position, needs checking:
+$up = -130;
+$ut = 40;
+
+$dw = 1000;
+$cw = array(
+ 32 => 333, 33 => 416, 34 => 416, 35 => 833, 36 => 625, 37 => 916, 38 => 833, 39 => 250, 40 => 500, 41 => 500,
+ 42 => 500, 43 => 833, 44 => 291, 45 => 450, 46 => 291, 47 => 375, 48 => 625, 49 => 625, 50 => 625, 51 => 625,
+ 52 => 625, 53 => 625, 54 => 625, 55 => 625, 56 => 625, 57 => 625, 58 => 333, 59 => 333, 60 => 833, 61 => 833,
+ 62 => 916, 63 => 500, 64 => 1000, 65 => 791, 66 => 708, 67 => 708, 68 => 750, 69 => 708, 70 => 666, 71 => 750,
+ 72 => 791, 73 => 375, 74 => 500, 75 => 791, 76 => 666, 77 => 916, 78 => 791, 79 => 750, 80 => 666, 81 => 750,
+ 82 => 708, 83 => 666, 84 => 791, 85 => 791, 86 => 750, 87 => 1000, 88 => 708, 89 => 708, 90 => 666, 91 => 500,
+ 92 => 375, 93 => 500, 94 => 500, 95 => 500, 96 => 333, 97 => 541, 98 => 583, 99 => 541, 100 => 583, 101 => 583,
+ 102 => 375, 103 => 583, 104 => 583, 105 => 291, 106 => 333, 107 => 583, 108 => 291, 109 => 875, 110 => 583, 111 => 583,
+ 112 => 583, 113 => 583, 114 => 458, 115 => 541, 116 => 375, 117 => 583, 118 => 583, 119 => 833, 120 => 625, 121 => 625,
+ 122 => 500, 123 => 583, 124 => 583, 125 => 583, 126 => 750,
+);
+$_cr = array(
+ //array(97, 97, 500),
+ array(8094, 8190, 500),
+);
+foreach($_cr as $_r)
+ for($i = $_r[0]; $i <= $_r[1]; $i++)
+ $cw[$i+31] = $_r[2];
diff --git a/lib/tcpdf/fonts/kozgopromedium.php b/lib/tcpdf/fonts/kozgopromedium.php
new file mode 100644
index 0000000000..5bf1f12644
--- /dev/null
+++ b/lib/tcpdf/fonts/kozgopromedium.php
@@ -0,0 +1,62 @@
+ 880,
+ 'Descent' => -120,
+ 'CapHeight' => 763,
+ 'Flags' => 4,
+ 'FontBBox' => '[-149 -374 1254 1008]',
+ 'ItalicAngle' => 0,
+ 'StemV' => 99,
+ 'Style' => '<< /Panose <0000020b0700000000000000> >>',
+ 'XHeight' => 549,
+);
+$cidinfo = array(
+ 'Registry' => 'Adobe',
+ 'Ordering' => 'Japan1',
+ 'Supplement' => '4',
+);
+$enc = 'UniJIS-UCS2-H';
+
+// underline position, needs checking:
+$up = -75;
+$ut = 50;
+
+$dw = 1000;
+$cw = array(
+ 32 => 224, 33 => 266, 34 => 392, 35 => 551, 36 => 562, 37 => 883, 38 => 677, 39 => 213, 40 => 322, 41 => 322,
+ 42 => 470, 43 => 677, 44 => 247, 45 => 343, 46 => 245, 47 => 370, 48 => 562, 49 => 562, 50 => 562, 51 => 562,
+ 52 => 562, 53 => 562, 54 => 562, 55 => 562, 56 => 562, 57 => 562, 58 => 245, 59 => 247, 60 => 677, 61 => 677,
+ 62 => 677, 63 => 447, 64 => 808, 65 => 661, 66 => 602, 67 => 610, 68 => 708, 69 => 535, 70 => 528, 71 => 689,
+ 72 => 703, 73 => 275, 74 => 404, 75 => 602, 76 => 514, 77 => 871, 78 => 708, 79 => 727, 80 => 585, 81 => 727,
+ 82 => 595, 83 => 539, 84 => 541, 85 => 696, 86 => 619, 87 => 922, 88 => 612, 89 => 591, 90 => 584, 91 => 322,
+ 92 => 562, 93 => 322, 94 => 677, 95 => 568, 96 => 340, 97 => 532, 98 => 612, 99 => 475, 100 => 608, 101 => 543,
+ 102 => 332, 103 => 603, 104 => 601, 105 => 265, 106 => 276, 107 => 524, 108 => 264, 109 => 901, 110 => 601, 111 => 590,
+ 112 => 612, 113 => 607, 114 => 367, 115 => 433, 116 => 369, 117 => 597, 118 => 527, 119 => 800, 120 => 511, 121 => 518,
+ 122 => 468, 123 => 321, 124 => 273, 125 => 321, 126 => 341, 127 => 241, 128 => 362, 129 => 241, 130 => 273, 131 => 677,
+ 132 => 266, 133 => 562, 134 => 562, 135 => 456, 136 => 562, 137 => 571, 138 => 562, 139 => 416, 140 => 472, 141 => 283,
+ 142 => 283, 143 => 587, 144 => 588, 145 => 568, 146 => 545, 147 => 545, 148 => 247, 149 => 561, 150 => 330, 151 => 239,
+ 152 => 418, 153 => 416, 154 => 472, 155 => 1136, 156 => 1288, 157 => 447, 158 => 340, 159 => 340, 160 => 340, 161 => 340,
+ 162 => 340, 163 => 340, 164 => 455, 165 => 340, 166 => 340, 167 => 340, 168 => 340, 169 => 1136, 170 => 857, 171 => 384,
+ 172 => 519, 173 => 727, 174 => 952, 175 => 398, 176 => 834, 177 => 264, 178 => 275, 179 => 590, 180 => 918, 181 => 605,
+ 182 => 677, 183 => 769, 184 => 677, 185 => 473, 186 => 361, 187 => 677, 188 => 347, 189 => 340, 190 => 599, 191 => 284,
+ 192 => 845, 193 => 845, 194 => 845, 195 => 661, 196 => 661, 197 => 661, 198 => 661, 199 => 661, 200 => 661, 201 => 610,
+ 202 => 535, 203 => 535, 204 => 535, 205 => 535, 206 => 275, 207 => 275, 208 => 275, 209 => 275, 210 => 715, 211 => 708,
+ 212 => 727, 213 => 727, 214 => 727, 215 => 727, 216 => 727, 217 => 677, 218 => 696, 219 => 696, 220 => 696, 221 => 696,
+ 222 => 591, 223 => 584, 224 => 532, 225 => 532, 226 => 532, 227 => 532, 228 => 532, 229 => 532, 230 => 475, 231 => 543,
+ 232 => 543, 233 => 543, 234 => 543, 235 => 264, 236 => 264, 237 => 264, 238 => 264, 239 => 584, 240 => 601, 241 => 590,
+ 242 => 590, 243 => 590, 244 => 590, 245 => 590, 246 => 677, 247 => 597, 248 => 597, 249 => 597, 250 => 597, 251 => 518,
+ 252 => 612, 253 => 518, 254 => 539, 255 => 591, 256 => 584, 257 => 446, 258 => 433, 259 => 683, 260 => 468, 261 => 562,
+);
+$_cr = array(
+ array(231, 632, 500), // half-width
+ array(8718, 8718, 500),
+ array(9738, 9757, 250), // quarter-width
+ array(9758, 9778, 333), // third-width
+ array(12063, 12087, 500),
+);
+foreach($_cr as $_r)
+ for($i = $_r[0]; $i <= $_r[1]; $i++)
+ $cw[$i+31] = $_r[2];
diff --git a/lib/tcpdf/fonts/kozminproregular.php b/lib/tcpdf/fonts/kozminproregular.php
new file mode 100644
index 0000000000..af8a57a628
--- /dev/null
+++ b/lib/tcpdf/fonts/kozminproregular.php
@@ -0,0 +1,60 @@
+ 880,
+ 'Descent' => -120,
+ 'CapHeight' => 740,
+ 'Flags' => 6,
+ 'FontBBox' => '[-195 -272 1110 1075]',
+ 'ItalicAngle' => 0,
+ 'StemV' => 86,
+ 'XHeight' => 502,
+);
+$cidinfo = array(
+ 'Registry' => 'Adobe',
+ 'Ordering' => 'Japan1',
+ 'Supplement' => '4',
+);
+$enc = 'UniJIS-UCS2-H';
+
+$up = -75;
+$ut = 50;
+
+$dw = 1000;
+$cw = array(
+ 32 => 278, 33 => 299, 34 => 353, 35 => 614, 36 => 614, 37 => 721, 38 => 735, 39 => 216, 40 => 323, 41 => 323,
+ 42 => 449, 43 => 529, 44 => 219, 45 => 306, 46 => 219, 47 => 453, 48 => 614, 49 => 614, 50 => 614, 51 => 614,
+ 52 => 614, 53 => 614, 54 => 614, 55 => 614, 56 => 614, 57 => 614, 58 => 219, 59 => 219, 60 => 529, 61 => 529,
+ 62 => 529, 63 => 486, 64 => 744, 65 => 646, 66 => 604, 67 => 617, 68 => 681, 69 => 567, 70 => 537, 71 => 647,
+ 72 => 738, 73 => 320, 74 => 433, 75 => 637, 76 => 566, 77 => 904, 78 => 710, 79 => 716, 80 => 605, 81 => 716,
+ 82 => 623, 83 => 517, 84 => 601, 85 => 690, 86 => 668, 87 => 990, 88 => 681, 89 => 634, 90 => 578, 91 => 316,
+ 92 => 614, 93 => 316, 94 => 529, 95 => 500, 96 => 387, 97 => 509, 98 => 566, 99 => 478, 100 => 565, 101 => 503,
+ 102 => 337, 103 => 549, 104 => 580, 105 => 275, 106 => 266, 107 => 544, 108 => 276, 109 => 854, 110 => 579, 111 => 550,
+ 112 => 578, 113 => 566, 114 => 410, 115 => 444, 116 => 340, 117 => 575, 118 => 512, 119 => 760, 120 => 503, 121 => 529,
+ 122 => 453, 123 => 326, 124 => 380, 125 => 326, 126 => 387, 127 => 216, 128 => 453, 129 => 216, 130 => 380, 131 => 529,
+ 132 => 299, 133 => 614, 134 => 614, 135 => 265, 136 => 614, 137 => 475, 138 => 614, 139 => 353, 140 => 451, 141 => 291,
+ 142 => 291, 143 => 588, 144 => 589, 145 => 500, 146 => 476, 147 => 476, 148 => 219, 149 => 494, 150 => 452, 151 => 216,
+ 152 => 353, 153 => 353, 154 => 451, 156 => 1075, 157 => 486, 158 => 387, 159 => 387, 160 => 387, 161 => 387,
+ 162 => 387, 163 => 387, 164 => 387, 165 => 387, 166 => 387, 167 => 387, 168 => 387, 170 => 880, 171 => 448,
+ 172 => 566, 173 => 716, 174 => 903, 175 => 460, 176 => 805, 177 => 275, 178 => 276, 179 => 550, 180 => 886, 181 => 582,
+ 182 => 529, 183 => 738, 184 => 529, 185 => 738, 186 => 357, 187 => 529, 188 => 406, 189 => 406, 190 => 575, 191 => 406,
+ 192 => 934, 193 => 934, 194 => 934, 195 => 646, 196 => 646, 197 => 646, 198 => 646, 199 => 646, 200 => 646, 201 => 617,
+ 202 => 567, 203 => 567, 204 => 567, 205 => 567, 206 => 320, 207 => 320, 208 => 320, 209 => 320, 210 => 681, 211 => 710,
+ 212 => 716, 213 => 716, 214 => 716, 215 => 716, 216 => 716, 217 => 529, 218 => 690, 219 => 690, 220 => 690, 221 => 690,
+ 222 => 634, 223 => 605, 224 => 509, 225 => 509, 226 => 509, 227 => 509, 228 => 509, 229 => 509, 230 => 478, 231 => 503,
+ 232 => 503, 233 => 503, 234 => 503, 235 => 275, 236 => 275, 237 => 275, 238 => 275, 239 => 550, 240 => 579, 241 => 550,
+ 242 => 550, 243 => 550, 244 => 550, 245 => 550, 246 => 529, 247 => 575, 248 => 575, 249 => 575, 250 => 575, 251 => 529,
+ 252 => 578, 253 => 529, 254 => 517, 255 => 634, 256 => 578, 257 => 445, 258 => 444, 259 => 842, 260 => 453, 261 => 614,
+);
+$_cr = array(
+ array(231, 632, 500), // half-width
+ array(8718, 8718, 500),
+ array(9738, 9757, 250), // quarter-width
+ array(9758, 9778, 333), // third-width
+ array(12063, 12087, 500),
+);
+foreach($_cr as $_r)
+ for($i = $_r[0]; $i <= $_r[1]; $i++)
+ $cw[$i+31] = $_r[2];
diff --git a/lib/tcpdf/fonts/msungstdlight.php b/lib/tcpdf/fonts/msungstdlight.php
new file mode 100644
index 0000000000..d8f2742e49
--- /dev/null
+++ b/lib/tcpdf/fonts/msungstdlight.php
@@ -0,0 +1,37 @@
+ 880,
+ 'Descent' => -120,
+ 'CapHeight' => 880,
+ 'Flags' => 6,
+ 'FontBBox' => '[-160 -249 1015 1071]',
+ 'ItalicAngle' => 0,
+ 'StemV' => 93,
+);
+$cidinfo = array(
+ 'Registry' => 'Adobe',
+ 'Ordering' => 'CNS1',
+ 'Supplement' => '3',
+);
+$enc = 'UniCNS-UCS2-H';
+
+$up = -130;
+$ut = 40;
+
+$dw = 1000;
+$cw = array(
+ 32 => 250, 33 => 250, 34 => 408, 35 => 668, 36 => 490, 37 => 875, 38 => 698, 39 => 250, 40 => 240, 41 => 240,
+ 42 => 417, 43 => 667, 44 => 250, 45 => 313, 46 => 250, 47 => 520, 48 => 500, 49 => 500, 50 => 500, 51 => 500,
+ 52 => 500, 53 => 500, 54 => 500, 55 => 500, 56 => 500, 57 => 500, 58 => 250, 59 => 250, 60 => 667, 61 => 667,
+ 62 => 667, 63 => 396, 64 => 921, 65 => 677, 66 => 615, 67 => 719, 68 => 760, 69 => 625, 70 => 552, 71 => 771,
+ 72 => 802, 73 => 354, 74 => 354, 75 => 781, 76 => 604, 77 => 927, 78 => 750, 79 => 823, 80 => 563, 81 => 823,
+ 82 => 729, 83 => 542, 84 => 698, 85 => 771, 86 => 729, 87 => 948, 88 => 771, 89 => 677, 90 => 635, 91 => 344,
+ 92 => 520, 93 => 344, 94 => 469, 95 => 500, 96 => 250, 97 => 469, 98 => 521, 99 => 427, 100 => 521, 101 => 438,
+ 102 => 271, 103 => 469, 104 => 531, 105 => 250, 106 => 250, 107 => 458, 108 => 240, 109 => 802, 110 => 531, 111 => 500,
+ 112 => 521, 113 => 521, 114 => 365, 115 => 333, 116 => 292, 117 => 521, 118 => 458, 119 => 677, 120 => 479, 121 => 458,
+ 122 => 427, 123 => 480, 124 => 496, 125 => 480, 126 => 667,
+ 17601 => 500,
+);
diff --git a/lib/tcpdf/fonts/stsongstdlight.php b/lib/tcpdf/fonts/stsongstdlight.php
new file mode 100644
index 0000000000..d7d60d7408
--- /dev/null
+++ b/lib/tcpdf/fonts/stsongstdlight.php
@@ -0,0 +1,38 @@
+ 752,
+ 'Descent' => -271,
+ 'CapHeight' => 737,
+ 'Flags' => 6,
+ 'FontBBox' => '[-25 -254 1000 880]',
+ 'ItalicAngle' => 0,
+ 'StemV' => 58,
+ 'Style' => '<< /Panose <000000000400000000000000> >>',
+);
+$cidinfo = array(
+ 'Registry' => 'Adobe',
+ 'Ordering' => 'GB1',
+ 'Supplement' => '2',
+);
+$enc = 'UniGB-UCS2-H';
+
+// underline position, needs checking:
+$up = -130;
+$ut = 40;
+
+$dw = 1000;
+$cw = array(
+ 32 => 207, 33 => 270, 34 => 342, 35 => 467, 36 => 462, 37 => 797, 38 => 710, 39 => 239, 40 => 374, 41 => 374,
+ 42 => 423, 43 => 605, 44 => 238, 45 => 375, 46 => 238, 47 => 334, 48 => 462, 49 => 462, 50 => 462, 51 => 462,
+ 52 => 462, 53 => 462, 54 => 462, 55 => 462, 56 => 462, 57 => 462, 58 => 238, 59 => 238, 60 => 605, 61 => 605,
+ 62 => 605, 63 => 344, 64 => 748, 65 => 684, 66 => 560, 67 => 695, 68 => 739, 69 => 563, 70 => 511, 71 => 729,
+ 72 => 793, 73 => 318, 74 => 312, 75 => 666, 76 => 526, 77 => 896, 78 => 758, 79 => 772, 80 => 544, 81 => 772,
+ 82 => 628, 83 => 465, 84 => 607, 85 => 753, 86 => 711, 87 => 972, 88 => 647, 89 => 620, 90 => 607, 91 => 374,
+ 92 => 333, 93 => 374, 94 => 606, 95 => 500, 96 => 239, 97 => 417, 98 => 503, 99 => 427, 100 => 529, 101 => 415,
+ 102 => 264, 103 => 444, 104 => 518, 105 => 241, 106 => 230, 107 => 495, 108 => 228, 109 => 793, 110 => 527, 111 => 524,
+ 112 => 524, 113 => 504, 114 => 338, 115 => 336, 116 => 277, 117 => 517, 118 => 450, 119 => 652, 120 => 466, 121 => 452,
+ 122 => 407, 123 => 370, 124 => 258, 125 => 370, 126 => 605,
+);
diff --git a/lib/tcpdf/fonts/symbol.php b/lib/tcpdf/fonts/symbol.php
new file mode 100644
index 0000000000..713c72a893
--- /dev/null
+++ b/lib/tcpdf/fonts/symbol.php
@@ -0,0 +1,5 @@
+250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250,10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250,20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250,30=>250,31=>250,32=>250,33=>333,34=>713,35=>500,36=>549,37=>833,38=>778,39=>439,40=>333,41=>333,42=>500,43=>549,44=>250,45=>549,46=>250,47=>278,48=>500,49=>500,50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>278,59=>278,60=>549,61=>549,62=>549,63=>444,64=>549,65=>722,66=>667,67=>722,68=>612,69=>611,70=>763,71=>603,72=>722,73=>333,74=>631,75=>722,76=>686,77=>889,78=>722,79=>722,80=>768,81=>741,82=>556,83=>592,84=>611,85=>690,86=>439,87=>768,88=>645,89=>795,90=>611,91=>333,92=>863,93=>333,94=>658,95=>500,96=>500,97=>631,98=>549,99=>549,100=>494,101=>439,102=>521,103=>411,104=>603,105=>329,106=>603,107=>549,108=>549,109=>576,110=>521,111=>549,112=>549,113=>521,114=>549,115=>603,116=>439,117=>576,118=>713,119=>686,120=>493,121=>686,122=>494,123=>480,124=>200,125=>480,126=>549, 127=>0,128=>0,129=>0,130=>0,131=>0,132=>0,133=>0,134=>0,135=>0,136=>0,137=>0,138=>0,139=>0,140=>0,141=>0,142=>0,143=>0,144=>0,145=>0,146=>0,147=>0,148=>0,149=>0,150=>0,151=>0,152=>0,153=>0,154=>0,155=>0,156=>0,157=>0,158=>0,159=>0,160=>750,161=>620,162=>247,163=>549,164=>167,165=>713,166=>500,167=>753,168=>753,169=>753,170=>753,171=>1042,172=>987,173=>603,174=>987,175=>603,176=>400,177=>549,178=>411,179=>549,180=>549,181=>713,182=>494,183=>460,184=>549,185=>549,186=>549,187=>549,188=>1000,189=>603,190=>1000,191=>658,192=>823,193=>686,194=>795,195=>987,196=>768,197=>768,198=>823,199=>768,200=>768,201=>713,202=>713,203=>713,204=>713,205=>713,206=>713,207=>713,208=>768,209=>713,210=>790,211=>790,212=>890,213=>823,214=>549,215=>250,216=>713,217=>603,218=>603,219=>1042,220=>987,221=>603,222=>987,223=>603,224=>494,225=>329,226=>790,227=>790,228=>786,229=>713,230=>384,231=>384,232=>384,233=>384,234=>384,235=>384,236=>494,237=>494,238=>494,239=>494,240=>0,241=>329,242=>274,243=>686,244=>686,245=>686,246=>384,247=>384,248=>384,249=>384,250=>384,251=>384,252=>494,253=>494,254=>494,255=>0);
+?>
diff --git a/lib/tcpdf/fonts/times.php b/lib/tcpdf/fonts/times.php
new file mode 100644
index 0000000000..e8c65f783b
--- /dev/null
+++ b/lib/tcpdf/fonts/times.php
@@ -0,0 +1,5 @@
+250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250,10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250,20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250,30=>250,31=>250,32=>250,33=>333,34=>408,35=>500,36=>500,37=>833,38=>778,39=>180,40=>333,41=>333,42=>500,43=>564,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500,50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>278,59=>278,60=>564,61=>564,62=>564,63=>444,64=>921,65=>722,66=>667,67=>667,68=>722,69=>611,70=>556,71=>722,72=>722,73=>333,74=>389,75=>722,76=>611,77=>889,78=>722,79=>722,80=>556,81=>722,82=>667,83=>556,84=>611,85=>722,86=>722,87=>944,88=>722,89=>722,90=>611,91=>333,92=>278,93=>333,94=>469,95=>500,96=>333,97=>444,98=>500,99=>444,100=>500,101=>444,102=>333,103=>500,104=>500,105=>278,106=>278,107=>500,108=>278,109=>778,110=>500,111=>500,112=>500,113=>500,114=>333,115=>389,116=>278,117=>500,118=>500,119=>722,120=>500,121=>500,122=>444,123=>480,124=>200,125=>480,126=>541,127=>350,128=>500,129=>350,130=>333,131=>500,132=>444,133=>1000,134=>500,135=>500,136=>333,137=>1000,138=>556,139=>333,140=>889,141=>350,142=>611,143=>350,144=>350,145=>333,146=>333,147=>444,148=>444,149=>350,150=>500,151=>1000,152=>333,153=>980,154=>389,155=>333,156=>722,157=>350,158=>444,159=>722,160=>250,161=>333,162=>500,163=>500,164=>500,165=>500,166=>200,167=>500,168=>333,169=>760,170=>276,171=>500,172=>564,173=>333,174=>760,175=>333,176=>400,177=>564,178=>300,179=>300,180=>333,181=>500,182=>453,183=>250,184=>333,185=>300,186=>310,187=>500,188=>750,189=>750,190=>750,191=>444,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>889,199=>667,200=>611,201=>611,202=>611,203=>611,204=>333,205=>333,206=>333,207=>333,208=>722,209=>722,210=>722,211=>722,212=>722,213=>722,214=>722,215=>564,216=>722,217=>722,218=>722,219=>722,220=>722,221=>722,222=>556,223=>500,224=>444,225=>444,226=>444,227=>444,228=>444,229=>444,230=>667,231=>444,232=>444,233=>444,234=>444,235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>500,242=>500,243=>500,244=>500,245=>500,246=>500,247=>564,248=>500,249=>500,250=>500,251=>500,252=>500,253=>500,254=>500,255=>500);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/timesb.php b/lib/tcpdf/fonts/timesb.php
new file mode 100644
index 0000000000..3d8462c2fb
--- /dev/null
+++ b/lib/tcpdf/fonts/timesb.php
@@ -0,0 +1,5 @@
+250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250,10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250,20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250,30=>250,31=>250,32=>250,33=>333,34=>555,35=>500,36=>500,37=>1000,38=>833,39=>278,40=>333,41=>333,42=>500,43=>570,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500,50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333,60=>570,61=>570,62=>570,63=>500,64=>930,65=>722,66=>667,67=>722,68=>722,69=>667,70=>611,71=>778,72=>778,73=>389,74=>500,75=>778,76=>667,77=>944,78=>722,79=>778,80=>611,81=>778,82=>722,83=>556,84=>667,85=>722,86=>722,87=>1000,88=>722,89=>722,90=>667,91=>333,92=>278,93=>333,94=>581,95=>500,96=>333,97=>500,98=>556,99=>444,100=>556,101=>444,102=>333,103=>500,104=>556,105=>278,106=>333,107=>556,108=>278,109=>833,110=>556,111=>500,112=>556,113=>556,114=>444,115=>389,116=>333,117=>556,118=>500,119=>722,120=>500,121=>500,122=>444,123=>394,124=>220,125=>394,126=>520,127=>350,128=>500,129=>350,130=>333,131=>500,132=>500,133=>1000,134=>500,135=>500,136=>333,137=>1000,138=>556,139=>333,140=>1000,141=>350,142=>667,143=>350,144=>350,145=>333,146=>333,147=>500,148=>500,149=>350,150=>500,151=>1000,152=>333,153=>1000,154=>389,155=>333,156=>722,157=>350,158=>444,159=>722,160=>250,161=>333,162=>500,163=>500,164=>500,165=>500,166=>220,167=>500,168=>333,169=>747,170=>300,171=>500,172=>570,173=>333,174=>747,175=>333,176=>400,177=>570,178=>300,179=>300,180=>333,181=>556,182=>540,183=>250,184=>333,185=>300,186=>330,187=>500,188=>750,189=>750,190=>750,191=>500,192=>722,193=>722,194=>722,195=>722,196=>722,197=>722,198=>1000,199=>722,200=>667,201=>667,202=>667,203=>667,204=>389,205=>389,206=>389,207=>389,208=>722,209=>722,210=>778,211=>778,212=>778,213=>778,214=>778,215=>570,216=>778,217=>722,218=>722,219=>722,220=>722,221=>722,222=>611,223=>556,224=>500,225=>500,226=>500,227=>500,228=>500,229=>500,230=>722,231=>444,232=>444,233=>444,234=>444,235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>556,242=>500,243=>500,244=>500,245=>500,246=>500,247=>570,248=>500,249=>556,250=>556,251=>556,252=>556,253=>500,254=>556,255=>500);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/timesbi.php b/lib/tcpdf/fonts/timesbi.php
new file mode 100644
index 0000000000..35966fe662
--- /dev/null
+++ b/lib/tcpdf/fonts/timesbi.php
@@ -0,0 +1,5 @@
+250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250,10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250,20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250,30=>250,31=>250,32=>250,33=>389,34=>555,35=>500,36=>500,37=>833,38=>778,39=>278,40=>333,41=>333,42=>500,43=>570,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500,50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333,60=>570,61=>570,62=>570,63=>500,64=>832,65=>667,66=>667,67=>667,68=>722,69=>667,70=>667,71=>722,72=>778,73=>389,74=>500,75=>667,76=>611,77=>889,78=>722,79=>722,80=>611,81=>722,82=>667,83=>556,84=>611,85=>722,86=>667,87=>889,88=>667,89=>611,90=>611,91=>333,92=>278,93=>333,94=>570,95=>500,96=>333,97=>500,98=>500,99=>444,100=>500,101=>444,102=>333,103=>500,104=>556,105=>278,106=>278,107=>500,108=>278,109=>778,110=>556,111=>500,112=>500,113=>500,114=>389,115=>389,116=>278,117=>556,118=>444,119=>667,120=>500,121=>444,122=>389,123=>348,124=>220,125=>348,126=>570,127=>350,128=>500,129=>350,130=>333,131=>500,132=>500,133=>1000,134=>500,135=>500,136=>333,137=>1000,138=>556,139=>333,140=>944,141=>350,142=>611,143=>350,144=>350,145=>333,146=>333,147=>500,148=>500,149=>350,150=>500,151=>1000,152=>333,153=>1000,154=>389,155=>333,156=>722,157=>350,158=>389,159=>611,160=>250,161=>389,162=>500,163=>500,164=>500,165=>500,166=>220,167=>500,168=>333,169=>747,170=>266,171=>500,172=>606,173=>333,174=>747,175=>333,176=>400,177=>570,178=>300,179=>300,180=>333,181=>576,182=>500,183=>250,184=>333,185=>300,186=>300,187=>500,188=>750,189=>750,190=>750,191=>500,192=>667,193=>667,194=>667,195=>667,196=>667,197=>667,198=>944,199=>667,200=>667,201=>667,202=>667,203=>667,204=>389,205=>389,206=>389,207=>389,208=>722,209=>722,210=>722,211=>722,212=>722,213=>722,214=>722,215=>570,216=>722,217=>722,218=>722,219=>722,220=>722,221=>611,222=>611,223=>500,224=>500,225=>500,226=>500,227=>500,228=>500,229=>500,230=>722,231=>444,232=>444,233=>444,234=>444,235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>556,242=>500,243=>500,244=>500,245=>500,246=>500,247=>570,248=>500,249=>556,250=>556,251=>556,252=>556,253=>444,254=>500,255=>444);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/timesi.php b/lib/tcpdf/fonts/timesi.php
new file mode 100644
index 0000000000..07d08f6141
--- /dev/null
+++ b/lib/tcpdf/fonts/timesi.php
@@ -0,0 +1,5 @@
+250,1=>250,2=>250,3=>250,4=>250,5=>250,6=>250,7=>250,8=>250,9=>250,10=>250,11=>250,12=>250,13=>250,14=>250,15=>250,16=>250,17=>250,18=>250,19=>250,20=>250,21=>250,22=>250,23=>250,24=>250,25=>250,26=>250,27=>250,28=>250,29=>250,30=>250,31=>250,32=>250,33=>333,34=>420,35=>500,36=>500,37=>833,38=>778,39=>214,40=>333,41=>333,42=>500,43=>675,44=>250,45=>333,46=>250,47=>278,48=>500,49=>500,50=>500,51=>500,52=>500,53=>500,54=>500,55=>500,56=>500,57=>500,58=>333,59=>333,60=>675,61=>675,62=>675,63=>500,64=>920,65=>611,66=>611,67=>667,68=>722,69=>611,70=>611,71=>722,72=>722,73=>333,74=>444,75=>667,76=>556,77=>833,78=>667,79=>722,80=>611,81=>722,82=>611,83=>500,84=>556,85=>722,86=>611,87=>833,88=>611,89=>556,90=>556,91=>389,92=>278,93=>389,94=>422,95=>500,96=>333,97=>500,98=>500,99=>444,100=>500,101=>444,102=>278,103=>500,104=>500,105=>278,106=>278,107=>444,108=>278,109=>722,110=>500,111=>500,112=>500,113=>500,114=>389,115=>389,116=>278,117=>500,118=>444,119=>667,120=>444,121=>444,122=>389,123=>400,124=>275,125=>400,126=>541,127=>350,128=>500,129=>350,130=>333,131=>500,132=>556,133=>889,134=>500,135=>500,136=>333,137=>1000,138=>500,139=>333,140=>944,141=>350,142=>556,143=>350,144=>350,145=>333,146=>333,147=>556,148=>556,149=>350,150=>500,151=>889,152=>333,153=>980,154=>389,155=>333,156=>667,157=>350,158=>389,159=>556,160=>250,161=>389,162=>500,163=>500,164=>500,165=>500,166=>275,167=>500,168=>333,169=>760,170=>276,171=>500,172=>675,173=>333,174=>760,175=>333,176=>400,177=>675,178=>300,179=>300,180=>333,181=>500,182=>523,183=>250,184=>333,185=>300,186=>310,187=>500,188=>750,189=>750,190=>750,191=>500,192=>611,193=>611,194=>611,195=>611,196=>611,197=>611,198=>889,199=>667,200=>611,201=>611,202=>611,203=>611,204=>333,205=>333,206=>333,207=>333,208=>722,209=>667,210=>722,211=>722,212=>722,213=>722,214=>722,215=>675,216=>722,217=>722,218=>722,219=>722,220=>722,221=>556,222=>611,223=>500,224=>500,225=>500,226=>500,227=>500,228=>500,229=>500,230=>667,231=>444,232=>444,233=>444,234=>444,235=>444,236=>278,237=>278,238=>278,239=>278,240=>500,241=>500,242=>500,243=>500,244=>500,245=>500,246=>500,247=>675,248=>500,249=>500,250=>500,251=>500,252=>500,253=>444,254=>500,255=>444);
+?>
\ No newline at end of file
diff --git a/lib/tcpdf/fonts/utils/README.TXT b/lib/tcpdf/fonts/utils/README.TXT
new file mode 100644
index 0000000000..5595350c3d
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/README.TXT
@@ -0,0 +1,80 @@
+TCPDF supports TrueTypeUnicode (UTF-8 Unicode), TrueType, Type1, CID-0 and Core (standard) fonts.
+All TCPDF fonts must be embedded on the PDF document, unless you are using standard fonts whith Unicode mode disabled.
+
+The PDF Core (standard) fonts are:
+
+ * courier : Courier
+ * courierb : Courier Bold
+ * courierbi : Courier Bold Italic
+ * courieri : Courier Italic
+ * helvetica : Helvetica
+ * helveticab : Helvetica Bold
+ * helveticabi : Helvetica Bold Italic
+ * helveticai : Helvetica Italic
+ * symbol : Symbol
+ * times : Times New Roman
+ * timesb : Times New Roman Bold
+ * timesbi : Times New Roman Bold Italic
+ * timesi : Times New Roman Italic
+ * zapfdingbats : Zapf Dingbats
+
+Setting up a font for usage with TCPDF requires the following steps:
+
+ 1. Generate the font's metrics file.
+ * For Type1 font files this first step is not necessary because the AFM file is usually shipped with the font. In case you have only a metric file in PFM format, use the pfm2afm utility (fonts/utils/pfm2afm.exe) to get the AFM file. If you own a Type1 font in ASCII format (.pfa), you can convert it to binary format with Type 1 utilities.
+ * For TrueTypeUnicode or TrueType font files, use the the provided ttf2ufm utility (fonts/utils/ttf2ufm.exe):
+
+ $ ttf2ufm -a -F myfont.ttf
+
+ 2. Run makefont.php script.
+ * For TrueTypeUnicode:
+
+ $ php -q makefont.php myfont.ttf myfont.ufm
+
+ * For TrueType:
+
+ $ php -q makefont.php myfont.ttf myfont.afm
+
+ * For Type1:
+
+ $ php -q makefont.php myfont.pfb myfont.afm
+
+ You may also specify additional parameters:
+
+ MakeFont(string $fontfile, string $fmfile [, boolean $embedded [, $enc="cp1252" [, $patch=array()]]])
+
+ * $fontfile : Path to the .ttf or .pfb file.
+ * $fmfile : Path to the .afm file for Type1 and TrueType or .ufm for TrueTypeUnicode.
+ * $embedded : Set to false to not embed the font, true otherwise (default).
+ * $enc : Name of the encoding table to use. Default value: cp1252. Omit this parameter for TrueType Unicode, OpenType Unicode and symbolic fonts like Symbol or ZapfDingBats. The encoding defines the association between a code (from 0 to 255) and a character. The first 128 are fixed and correspond to ASCII. The encodings are stored in .map files. Those available are:
+ o cp1250 (Central Europe)
+ o cp1251 (Cyrillic)
+ o cp1252 (Western Europe)
+ o cp1253 (Greek)
+ o cp1254 (Turkish)
+ o cp1255 (Hebrew)
+ o cp1257 (Baltic)
+ o cp1258 (Vietnamese)
+ o cp874 (Thai)
+ o iso-8859-1 (Western Europe)
+ o iso-8859-2 (Central Europe)
+ o iso-8859-4 (Baltic)
+ o iso-8859-5 (Cyrillic)
+ o iso-8859-7 (Greek)
+ o iso-8859-9 (Turkish)
+ o iso-8859-11 (Thai)
+ o iso-8859-15 (Western Europe)
+ o iso-8859-16 (Central Europe)
+ o koi8-r (Russian)
+ o koi8-u (Ukrainian)
+ Of course, the font must contain the characters corresponding to the chosen encoding. The encodings which begin with cp are those used by Windows; Linux systems usually use ISO.
+ * $patch : Optional modification of the encoding. Empty by default. This parameter gives the possibility to alter the encoding. Sometimes you may want to add some characters. For instance, ISO-8859-1 does not contain the euro symbol. To add it at position 164, pass array(164=>'Euro').
+
+ 3. Copy the resulting .php, .z and .ctg.z (if available) files to the TCPDF fonts directory.
+
+ 4. Rename php font files variations for bold and italic using the following schema:
+ * [basic-font-name]b.php for bold variation
+ * [basic-font-name]i.php for oblique variation
+ * [basic-font-name]bi.php for bold oblique variation
+
+ 5. Convert all fonts filenames to lowercase.
diff --git a/lib/tcpdf/fonts/utils/enc/cp1250.map b/lib/tcpdf/fonts/utils/enc/cp1250.map
new file mode 100644
index 0000000000..ec110af061
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/cp1250.map
@@ -0,0 +1,251 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+20AC Euro
+!82 U+201A quotesinglbase
+!84 U+201E quotedblbase
+!85 U+2026 ellipsis
+!86 U+2020 dagger
+!87 U+2021 daggerdbl
+!89 U+2030 perthousand
+!8A U+0160 Scaron
+!8B U+2039 guilsinglleft
+!8C U+015A Sacute
+!8D U+0164 Tcaron
+!8E U+017D Zcaron
+!8F U+0179 Zacute
+!91 U+2018 quoteleft
+!92 U+2019 quoteright
+!93 U+201C quotedblleft
+!94 U+201D quotedblright
+!95 U+2022 bullet
+!96 U+2013 endash
+!97 U+2014 emdash
+!99 U+2122 trademark
+!9A U+0161 scaron
+!9B U+203A guilsinglright
+!9C U+015B sacute
+!9D U+0165 tcaron
+!9E U+017E zcaron
+!9F U+017A zacute
+!A0 U+00A0 space
+!A1 U+02C7 caron
+!A2 U+02D8 breve
+!A3 U+0141 Lslash
+!A4 U+00A4 currency
+!A5 U+0104 Aogonek
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+00A9 copyright
+!AA U+015E Scedilla
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AE U+00AE registered
+!AF U+017B Zdotaccent
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+02DB ogonek
+!B3 U+0142 lslash
+!B4 U+00B4 acute
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+00B8 cedilla
+!B9 U+0105 aogonek
+!BA U+015F scedilla
+!BB U+00BB guillemotright
+!BC U+013D Lcaron
+!BD U+02DD hungarumlaut
+!BE U+013E lcaron
+!BF U+017C zdotaccent
+!C0 U+0154 Racute
+!C1 U+00C1 Aacute
+!C2 U+00C2 Acircumflex
+!C3 U+0102 Abreve
+!C4 U+00C4 Adieresis
+!C5 U+0139 Lacute
+!C6 U+0106 Cacute
+!C7 U+00C7 Ccedilla
+!C8 U+010C Ccaron
+!C9 U+00C9 Eacute
+!CA U+0118 Eogonek
+!CB U+00CB Edieresis
+!CC U+011A Ecaron
+!CD U+00CD Iacute
+!CE U+00CE Icircumflex
+!CF U+010E Dcaron
+!D0 U+0110 Dcroat
+!D1 U+0143 Nacute
+!D2 U+0147 Ncaron
+!D3 U+00D3 Oacute
+!D4 U+00D4 Ocircumflex
+!D5 U+0150 Ohungarumlaut
+!D6 U+00D6 Odieresis
+!D7 U+00D7 multiply
+!D8 U+0158 Rcaron
+!D9 U+016E Uring
+!DA U+00DA Uacute
+!DB U+0170 Uhungarumlaut
+!DC U+00DC Udieresis
+!DD U+00DD Yacute
+!DE U+0162 Tcommaaccent
+!DF U+00DF germandbls
+!E0 U+0155 racute
+!E1 U+00E1 aacute
+!E2 U+00E2 acircumflex
+!E3 U+0103 abreve
+!E4 U+00E4 adieresis
+!E5 U+013A lacute
+!E6 U+0107 cacute
+!E7 U+00E7 ccedilla
+!E8 U+010D ccaron
+!E9 U+00E9 eacute
+!EA U+0119 eogonek
+!EB U+00EB edieresis
+!EC U+011B ecaron
+!ED U+00ED iacute
+!EE U+00EE icircumflex
+!EF U+010F dcaron
+!F0 U+0111 dcroat
+!F1 U+0144 nacute
+!F2 U+0148 ncaron
+!F3 U+00F3 oacute
+!F4 U+00F4 ocircumflex
+!F5 U+0151 ohungarumlaut
+!F6 U+00F6 odieresis
+!F7 U+00F7 divide
+!F8 U+0159 rcaron
+!F9 U+016F uring
+!FA U+00FA uacute
+!FB U+0171 uhungarumlaut
+!FC U+00FC udieresis
+!FD U+00FD yacute
+!FE U+0163 tcommaaccent
+!FF U+02D9 dotaccent
diff --git a/lib/tcpdf/fonts/utils/enc/cp1251.map b/lib/tcpdf/fonts/utils/enc/cp1251.map
new file mode 100644
index 0000000000..de6a198d99
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/cp1251.map
@@ -0,0 +1,255 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+0402 afii10051
+!81 U+0403 afii10052
+!82 U+201A quotesinglbase
+!83 U+0453 afii10100
+!84 U+201E quotedblbase
+!85 U+2026 ellipsis
+!86 U+2020 dagger
+!87 U+2021 daggerdbl
+!88 U+20AC Euro
+!89 U+2030 perthousand
+!8A U+0409 afii10058
+!8B U+2039 guilsinglleft
+!8C U+040A afii10059
+!8D U+040C afii10061
+!8E U+040B afii10060
+!8F U+040F afii10145
+!90 U+0452 afii10099
+!91 U+2018 quoteleft
+!92 U+2019 quoteright
+!93 U+201C quotedblleft
+!94 U+201D quotedblright
+!95 U+2022 bullet
+!96 U+2013 endash
+!97 U+2014 emdash
+!99 U+2122 trademark
+!9A U+0459 afii10106
+!9B U+203A guilsinglright
+!9C U+045A afii10107
+!9D U+045C afii10109
+!9E U+045B afii10108
+!9F U+045F afii10193
+!A0 U+00A0 space
+!A1 U+040E afii10062
+!A2 U+045E afii10110
+!A3 U+0408 afii10057
+!A4 U+00A4 currency
+!A5 U+0490 afii10050
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+0401 afii10023
+!A9 U+00A9 copyright
+!AA U+0404 afii10053
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AE U+00AE registered
+!AF U+0407 afii10056
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+0406 afii10055
+!B3 U+0456 afii10103
+!B4 U+0491 afii10098
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+0451 afii10071
+!B9 U+2116 afii61352
+!BA U+0454 afii10101
+!BB U+00BB guillemotright
+!BC U+0458 afii10105
+!BD U+0405 afii10054
+!BE U+0455 afii10102
+!BF U+0457 afii10104
+!C0 U+0410 afii10017
+!C1 U+0411 afii10018
+!C2 U+0412 afii10019
+!C3 U+0413 afii10020
+!C4 U+0414 afii10021
+!C5 U+0415 afii10022
+!C6 U+0416 afii10024
+!C7 U+0417 afii10025
+!C8 U+0418 afii10026
+!C9 U+0419 afii10027
+!CA U+041A afii10028
+!CB U+041B afii10029
+!CC U+041C afii10030
+!CD U+041D afii10031
+!CE U+041E afii10032
+!CF U+041F afii10033
+!D0 U+0420 afii10034
+!D1 U+0421 afii10035
+!D2 U+0422 afii10036
+!D3 U+0423 afii10037
+!D4 U+0424 afii10038
+!D5 U+0425 afii10039
+!D6 U+0426 afii10040
+!D7 U+0427 afii10041
+!D8 U+0428 afii10042
+!D9 U+0429 afii10043
+!DA U+042A afii10044
+!DB U+042B afii10045
+!DC U+042C afii10046
+!DD U+042D afii10047
+!DE U+042E afii10048
+!DF U+042F afii10049
+!E0 U+0430 afii10065
+!E1 U+0431 afii10066
+!E2 U+0432 afii10067
+!E3 U+0433 afii10068
+!E4 U+0434 afii10069
+!E5 U+0435 afii10070
+!E6 U+0436 afii10072
+!E7 U+0437 afii10073
+!E8 U+0438 afii10074
+!E9 U+0439 afii10075
+!EA U+043A afii10076
+!EB U+043B afii10077
+!EC U+043C afii10078
+!ED U+043D afii10079
+!EE U+043E afii10080
+!EF U+043F afii10081
+!F0 U+0440 afii10082
+!F1 U+0441 afii10083
+!F2 U+0442 afii10084
+!F3 U+0443 afii10085
+!F4 U+0444 afii10086
+!F5 U+0445 afii10087
+!F6 U+0446 afii10088
+!F7 U+0447 afii10089
+!F8 U+0448 afii10090
+!F9 U+0449 afii10091
+!FA U+044A afii10092
+!FB U+044B afii10093
+!FC U+044C afii10094
+!FD U+044D afii10095
+!FE U+044E afii10096
+!FF U+044F afii10097
diff --git a/lib/tcpdf/fonts/utils/enc/cp1252.map b/lib/tcpdf/fonts/utils/enc/cp1252.map
new file mode 100644
index 0000000000..dd490e5961
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/cp1252.map
@@ -0,0 +1,251 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+20AC Euro
+!82 U+201A quotesinglbase
+!83 U+0192 florin
+!84 U+201E quotedblbase
+!85 U+2026 ellipsis
+!86 U+2020 dagger
+!87 U+2021 daggerdbl
+!88 U+02C6 circumflex
+!89 U+2030 perthousand
+!8A U+0160 Scaron
+!8B U+2039 guilsinglleft
+!8C U+0152 OE
+!8E U+017D Zcaron
+!91 U+2018 quoteleft
+!92 U+2019 quoteright
+!93 U+201C quotedblleft
+!94 U+201D quotedblright
+!95 U+2022 bullet
+!96 U+2013 endash
+!97 U+2014 emdash
+!98 U+02DC tilde
+!99 U+2122 trademark
+!9A U+0161 scaron
+!9B U+203A guilsinglright
+!9C U+0153 oe
+!9E U+017E zcaron
+!9F U+0178 Ydieresis
+!A0 U+00A0 space
+!A1 U+00A1 exclamdown
+!A2 U+00A2 cent
+!A3 U+00A3 sterling
+!A4 U+00A4 currency
+!A5 U+00A5 yen
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+00A9 copyright
+!AA U+00AA ordfeminine
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AE U+00AE registered
+!AF U+00AF macron
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+00B2 twosuperior
+!B3 U+00B3 threesuperior
+!B4 U+00B4 acute
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+00B8 cedilla
+!B9 U+00B9 onesuperior
+!BA U+00BA ordmasculine
+!BB U+00BB guillemotright
+!BC U+00BC onequarter
+!BD U+00BD onehalf
+!BE U+00BE threequarters
+!BF U+00BF questiondown
+!C0 U+00C0 Agrave
+!C1 U+00C1 Aacute
+!C2 U+00C2 Acircumflex
+!C3 U+00C3 Atilde
+!C4 U+00C4 Adieresis
+!C5 U+00C5 Aring
+!C6 U+00C6 AE
+!C7 U+00C7 Ccedilla
+!C8 U+00C8 Egrave
+!C9 U+00C9 Eacute
+!CA U+00CA Ecircumflex
+!CB U+00CB Edieresis
+!CC U+00CC Igrave
+!CD U+00CD Iacute
+!CE U+00CE Icircumflex
+!CF U+00CF Idieresis
+!D0 U+00D0 Eth
+!D1 U+00D1 Ntilde
+!D2 U+00D2 Ograve
+!D3 U+00D3 Oacute
+!D4 U+00D4 Ocircumflex
+!D5 U+00D5 Otilde
+!D6 U+00D6 Odieresis
+!D7 U+00D7 multiply
+!D8 U+00D8 Oslash
+!D9 U+00D9 Ugrave
+!DA U+00DA Uacute
+!DB U+00DB Ucircumflex
+!DC U+00DC Udieresis
+!DD U+00DD Yacute
+!DE U+00DE Thorn
+!DF U+00DF germandbls
+!E0 U+00E0 agrave
+!E1 U+00E1 aacute
+!E2 U+00E2 acircumflex
+!E3 U+00E3 atilde
+!E4 U+00E4 adieresis
+!E5 U+00E5 aring
+!E6 U+00E6 ae
+!E7 U+00E7 ccedilla
+!E8 U+00E8 egrave
+!E9 U+00E9 eacute
+!EA U+00EA ecircumflex
+!EB U+00EB edieresis
+!EC U+00EC igrave
+!ED U+00ED iacute
+!EE U+00EE icircumflex
+!EF U+00EF idieresis
+!F0 U+00F0 eth
+!F1 U+00F1 ntilde
+!F2 U+00F2 ograve
+!F3 U+00F3 oacute
+!F4 U+00F4 ocircumflex
+!F5 U+00F5 otilde
+!F6 U+00F6 odieresis
+!F7 U+00F7 divide
+!F8 U+00F8 oslash
+!F9 U+00F9 ugrave
+!FA U+00FA uacute
+!FB U+00FB ucircumflex
+!FC U+00FC udieresis
+!FD U+00FD yacute
+!FE U+00FE thorn
+!FF U+00FF ydieresis
diff --git a/lib/tcpdf/fonts/utils/enc/cp1253.map b/lib/tcpdf/fonts/utils/enc/cp1253.map
new file mode 100644
index 0000000000..4bd826fb26
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/cp1253.map
@@ -0,0 +1,239 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+20AC Euro
+!82 U+201A quotesinglbase
+!83 U+0192 florin
+!84 U+201E quotedblbase
+!85 U+2026 ellipsis
+!86 U+2020 dagger
+!87 U+2021 daggerdbl
+!89 U+2030 perthousand
+!8B U+2039 guilsinglleft
+!91 U+2018 quoteleft
+!92 U+2019 quoteright
+!93 U+201C quotedblleft
+!94 U+201D quotedblright
+!95 U+2022 bullet
+!96 U+2013 endash
+!97 U+2014 emdash
+!99 U+2122 trademark
+!9B U+203A guilsinglright
+!A0 U+00A0 space
+!A1 U+0385 dieresistonos
+!A2 U+0386 Alphatonos
+!A3 U+00A3 sterling
+!A4 U+00A4 currency
+!A5 U+00A5 yen
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+00A9 copyright
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AE U+00AE registered
+!AF U+2015 afii00208
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+00B2 twosuperior
+!B3 U+00B3 threesuperior
+!B4 U+0384 tonos
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+0388 Epsilontonos
+!B9 U+0389 Etatonos
+!BA U+038A Iotatonos
+!BB U+00BB guillemotright
+!BC U+038C Omicrontonos
+!BD U+00BD onehalf
+!BE U+038E Upsilontonos
+!BF U+038F Omegatonos
+!C0 U+0390 iotadieresistonos
+!C1 U+0391 Alpha
+!C2 U+0392 Beta
+!C3 U+0393 Gamma
+!C4 U+0394 Delta
+!C5 U+0395 Epsilon
+!C6 U+0396 Zeta
+!C7 U+0397 Eta
+!C8 U+0398 Theta
+!C9 U+0399 Iota
+!CA U+039A Kappa
+!CB U+039B Lambda
+!CC U+039C Mu
+!CD U+039D Nu
+!CE U+039E Xi
+!CF U+039F Omicron
+!D0 U+03A0 Pi
+!D1 U+03A1 Rho
+!D3 U+03A3 Sigma
+!D4 U+03A4 Tau
+!D5 U+03A5 Upsilon
+!D6 U+03A6 Phi
+!D7 U+03A7 Chi
+!D8 U+03A8 Psi
+!D9 U+03A9 Omega
+!DA U+03AA Iotadieresis
+!DB U+03AB Upsilondieresis
+!DC U+03AC alphatonos
+!DD U+03AD epsilontonos
+!DE U+03AE etatonos
+!DF U+03AF iotatonos
+!E0 U+03B0 upsilondieresistonos
+!E1 U+03B1 alpha
+!E2 U+03B2 beta
+!E3 U+03B3 gamma
+!E4 U+03B4 delta
+!E5 U+03B5 epsilon
+!E6 U+03B6 zeta
+!E7 U+03B7 eta
+!E8 U+03B8 theta
+!E9 U+03B9 iota
+!EA U+03BA kappa
+!EB U+03BB lambda
+!EC U+03BC mu
+!ED U+03BD nu
+!EE U+03BE xi
+!EF U+03BF omicron
+!F0 U+03C0 pi
+!F1 U+03C1 rho
+!F2 U+03C2 sigma1
+!F3 U+03C3 sigma
+!F4 U+03C4 tau
+!F5 U+03C5 upsilon
+!F6 U+03C6 phi
+!F7 U+03C7 chi
+!F8 U+03C8 psi
+!F9 U+03C9 omega
+!FA U+03CA iotadieresis
+!FB U+03CB upsilondieresis
+!FC U+03CC omicrontonos
+!FD U+03CD upsilontonos
+!FE U+03CE omegatonos
diff --git a/lib/tcpdf/fonts/utils/enc/cp1254.map b/lib/tcpdf/fonts/utils/enc/cp1254.map
new file mode 100644
index 0000000000..829473b28c
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/cp1254.map
@@ -0,0 +1,249 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+20AC Euro
+!82 U+201A quotesinglbase
+!83 U+0192 florin
+!84 U+201E quotedblbase
+!85 U+2026 ellipsis
+!86 U+2020 dagger
+!87 U+2021 daggerdbl
+!88 U+02C6 circumflex
+!89 U+2030 perthousand
+!8A U+0160 Scaron
+!8B U+2039 guilsinglleft
+!8C U+0152 OE
+!91 U+2018 quoteleft
+!92 U+2019 quoteright
+!93 U+201C quotedblleft
+!94 U+201D quotedblright
+!95 U+2022 bullet
+!96 U+2013 endash
+!97 U+2014 emdash
+!98 U+02DC tilde
+!99 U+2122 trademark
+!9A U+0161 scaron
+!9B U+203A guilsinglright
+!9C U+0153 oe
+!9F U+0178 Ydieresis
+!A0 U+00A0 space
+!A1 U+00A1 exclamdown
+!A2 U+00A2 cent
+!A3 U+00A3 sterling
+!A4 U+00A4 currency
+!A5 U+00A5 yen
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+00A9 copyright
+!AA U+00AA ordfeminine
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AE U+00AE registered
+!AF U+00AF macron
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+00B2 twosuperior
+!B3 U+00B3 threesuperior
+!B4 U+00B4 acute
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+00B8 cedilla
+!B9 U+00B9 onesuperior
+!BA U+00BA ordmasculine
+!BB U+00BB guillemotright
+!BC U+00BC onequarter
+!BD U+00BD onehalf
+!BE U+00BE threequarters
+!BF U+00BF questiondown
+!C0 U+00C0 Agrave
+!C1 U+00C1 Aacute
+!C2 U+00C2 Acircumflex
+!C3 U+00C3 Atilde
+!C4 U+00C4 Adieresis
+!C5 U+00C5 Aring
+!C6 U+00C6 AE
+!C7 U+00C7 Ccedilla
+!C8 U+00C8 Egrave
+!C9 U+00C9 Eacute
+!CA U+00CA Ecircumflex
+!CB U+00CB Edieresis
+!CC U+00CC Igrave
+!CD U+00CD Iacute
+!CE U+00CE Icircumflex
+!CF U+00CF Idieresis
+!D0 U+011E Gbreve
+!D1 U+00D1 Ntilde
+!D2 U+00D2 Ograve
+!D3 U+00D3 Oacute
+!D4 U+00D4 Ocircumflex
+!D5 U+00D5 Otilde
+!D6 U+00D6 Odieresis
+!D7 U+00D7 multiply
+!D8 U+00D8 Oslash
+!D9 U+00D9 Ugrave
+!DA U+00DA Uacute
+!DB U+00DB Ucircumflex
+!DC U+00DC Udieresis
+!DD U+0130 Idotaccent
+!DE U+015E Scedilla
+!DF U+00DF germandbls
+!E0 U+00E0 agrave
+!E1 U+00E1 aacute
+!E2 U+00E2 acircumflex
+!E3 U+00E3 atilde
+!E4 U+00E4 adieresis
+!E5 U+00E5 aring
+!E6 U+00E6 ae
+!E7 U+00E7 ccedilla
+!E8 U+00E8 egrave
+!E9 U+00E9 eacute
+!EA U+00EA ecircumflex
+!EB U+00EB edieresis
+!EC U+00EC igrave
+!ED U+00ED iacute
+!EE U+00EE icircumflex
+!EF U+00EF idieresis
+!F0 U+011F gbreve
+!F1 U+00F1 ntilde
+!F2 U+00F2 ograve
+!F3 U+00F3 oacute
+!F4 U+00F4 ocircumflex
+!F5 U+00F5 otilde
+!F6 U+00F6 odieresis
+!F7 U+00F7 divide
+!F8 U+00F8 oslash
+!F9 U+00F9 ugrave
+!FA U+00FA uacute
+!FB U+00FB ucircumflex
+!FC U+00FC udieresis
+!FD U+0131 dotlessi
+!FE U+015F scedilla
+!FF U+00FF ydieresis
diff --git a/lib/tcpdf/fonts/utils/enc/cp1255.map b/lib/tcpdf/fonts/utils/enc/cp1255.map
new file mode 100644
index 0000000000..079e10c61c
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/cp1255.map
@@ -0,0 +1,233 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+20AC Euro
+!82 U+201A quotesinglbase
+!83 U+0192 florin
+!84 U+201E quotedblbase
+!85 U+2026 ellipsis
+!86 U+2020 dagger
+!87 U+2021 daggerdbl
+!88 U+02C6 circumflex
+!89 U+2030 perthousand
+!8B U+2039 guilsinglleft
+!91 U+2018 quoteleft
+!92 U+2019 quoteright
+!93 U+201C quotedblleft
+!94 U+201D quotedblright
+!95 U+2022 bullet
+!96 U+2013 endash
+!97 U+2014 emdash
+!98 U+02DC tilde
+!99 U+2122 trademark
+!9B U+203A guilsinglright
+!A0 U+00A0 space
+!A1 U+00A1 exclamdown
+!A2 U+00A2 cent
+!A3 U+00A3 sterling
+!A4 U+20AA afii57636
+!A5 U+00A5 yen
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+00A9 copyright
+!AA U+00D7 multiply
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD sfthyphen
+!AE U+00AE registered
+!AF U+00AF macron
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+00B2 twosuperior
+!B3 U+00B3 threesuperior
+!B4 U+00B4 acute
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 middot
+!B8 U+00B8 cedilla
+!B9 U+00B9 onesuperior
+!BA U+00F7 divide
+!BB U+00BB guillemotright
+!BC U+00BC onequarter
+!BD U+00BD onehalf
+!BE U+00BE threequarters
+!BF U+00BF questiondown
+!C0 U+05B0 afii57799
+!C1 U+05B1 afii57801
+!C2 U+05B2 afii57800
+!C3 U+05B3 afii57802
+!C4 U+05B4 afii57793
+!C5 U+05B5 afii57794
+!C6 U+05B6 afii57795
+!C7 U+05B7 afii57798
+!C8 U+05B8 afii57797
+!C9 U+05B9 afii57806
+!CB U+05BB afii57796
+!CC U+05BC afii57807
+!CD U+05BD afii57839
+!CE U+05BE afii57645
+!CF U+05BF afii57841
+!D0 U+05C0 afii57842
+!D1 U+05C1 afii57804
+!D2 U+05C2 afii57803
+!D3 U+05C3 afii57658
+!D4 U+05F0 afii57716
+!D5 U+05F1 afii57717
+!D6 U+05F2 afii57718
+!D7 U+05F3 gereshhebrew
+!D8 U+05F4 gershayimhebrew
+!E0 U+05D0 afii57664
+!E1 U+05D1 afii57665
+!E2 U+05D2 afii57666
+!E3 U+05D3 afii57667
+!E4 U+05D4 afii57668
+!E5 U+05D5 afii57669
+!E6 U+05D6 afii57670
+!E7 U+05D7 afii57671
+!E8 U+05D8 afii57672
+!E9 U+05D9 afii57673
+!EA U+05DA afii57674
+!EB U+05DB afii57675
+!EC U+05DC afii57676
+!ED U+05DD afii57677
+!EE U+05DE afii57678
+!EF U+05DF afii57679
+!F0 U+05E0 afii57680
+!F1 U+05E1 afii57681
+!F2 U+05E2 afii57682
+!F3 U+05E3 afii57683
+!F4 U+05E4 afii57684
+!F5 U+05E5 afii57685
+!F6 U+05E6 afii57686
+!F7 U+05E7 afii57687
+!F8 U+05E8 afii57688
+!F9 U+05E9 afii57689
+!FA U+05EA afii57690
+!FD U+200E afii299
+!FE U+200F afii300
diff --git a/lib/tcpdf/fonts/utils/enc/cp1257.map b/lib/tcpdf/fonts/utils/enc/cp1257.map
new file mode 100644
index 0000000000..2f2ecfa21d
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/cp1257.map
@@ -0,0 +1,244 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+20AC Euro
+!82 U+201A quotesinglbase
+!84 U+201E quotedblbase
+!85 U+2026 ellipsis
+!86 U+2020 dagger
+!87 U+2021 daggerdbl
+!89 U+2030 perthousand
+!8B U+2039 guilsinglleft
+!8D U+00A8 dieresis
+!8E U+02C7 caron
+!8F U+00B8 cedilla
+!91 U+2018 quoteleft
+!92 U+2019 quoteright
+!93 U+201C quotedblleft
+!94 U+201D quotedblright
+!95 U+2022 bullet
+!96 U+2013 endash
+!97 U+2014 emdash
+!99 U+2122 trademark
+!9B U+203A guilsinglright
+!9D U+00AF macron
+!9E U+02DB ogonek
+!A0 U+00A0 space
+!A2 U+00A2 cent
+!A3 U+00A3 sterling
+!A4 U+00A4 currency
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+00D8 Oslash
+!A9 U+00A9 copyright
+!AA U+0156 Rcommaaccent
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AE U+00AE registered
+!AF U+00C6 AE
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+00B2 twosuperior
+!B3 U+00B3 threesuperior
+!B4 U+00B4 acute
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+00F8 oslash
+!B9 U+00B9 onesuperior
+!BA U+0157 rcommaaccent
+!BB U+00BB guillemotright
+!BC U+00BC onequarter
+!BD U+00BD onehalf
+!BE U+00BE threequarters
+!BF U+00E6 ae
+!C0 U+0104 Aogonek
+!C1 U+012E Iogonek
+!C2 U+0100 Amacron
+!C3 U+0106 Cacute
+!C4 U+00C4 Adieresis
+!C5 U+00C5 Aring
+!C6 U+0118 Eogonek
+!C7 U+0112 Emacron
+!C8 U+010C Ccaron
+!C9 U+00C9 Eacute
+!CA U+0179 Zacute
+!CB U+0116 Edotaccent
+!CC U+0122 Gcommaaccent
+!CD U+0136 Kcommaaccent
+!CE U+012A Imacron
+!CF U+013B Lcommaaccent
+!D0 U+0160 Scaron
+!D1 U+0143 Nacute
+!D2 U+0145 Ncommaaccent
+!D3 U+00D3 Oacute
+!D4 U+014C Omacron
+!D5 U+00D5 Otilde
+!D6 U+00D6 Odieresis
+!D7 U+00D7 multiply
+!D8 U+0172 Uogonek
+!D9 U+0141 Lslash
+!DA U+015A Sacute
+!DB U+016A Umacron
+!DC U+00DC Udieresis
+!DD U+017B Zdotaccent
+!DE U+017D Zcaron
+!DF U+00DF germandbls
+!E0 U+0105 aogonek
+!E1 U+012F iogonek
+!E2 U+0101 amacron
+!E3 U+0107 cacute
+!E4 U+00E4 adieresis
+!E5 U+00E5 aring
+!E6 U+0119 eogonek
+!E7 U+0113 emacron
+!E8 U+010D ccaron
+!E9 U+00E9 eacute
+!EA U+017A zacute
+!EB U+0117 edotaccent
+!EC U+0123 gcommaaccent
+!ED U+0137 kcommaaccent
+!EE U+012B imacron
+!EF U+013C lcommaaccent
+!F0 U+0161 scaron
+!F1 U+0144 nacute
+!F2 U+0146 ncommaaccent
+!F3 U+00F3 oacute
+!F4 U+014D omacron
+!F5 U+00F5 otilde
+!F6 U+00F6 odieresis
+!F7 U+00F7 divide
+!F8 U+0173 uogonek
+!F9 U+0142 lslash
+!FA U+015B sacute
+!FB U+016B umacron
+!FC U+00FC udieresis
+!FD U+017C zdotaccent
+!FE U+017E zcaron
+!FF U+02D9 dotaccent
diff --git a/lib/tcpdf/fonts/utils/enc/cp1258.map b/lib/tcpdf/fonts/utils/enc/cp1258.map
new file mode 100644
index 0000000000..fed915f715
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/cp1258.map
@@ -0,0 +1,247 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+20AC Euro
+!82 U+201A quotesinglbase
+!83 U+0192 florin
+!84 U+201E quotedblbase
+!85 U+2026 ellipsis
+!86 U+2020 dagger
+!87 U+2021 daggerdbl
+!88 U+02C6 circumflex
+!89 U+2030 perthousand
+!8B U+2039 guilsinglleft
+!8C U+0152 OE
+!91 U+2018 quoteleft
+!92 U+2019 quoteright
+!93 U+201C quotedblleft
+!94 U+201D quotedblright
+!95 U+2022 bullet
+!96 U+2013 endash
+!97 U+2014 emdash
+!98 U+02DC tilde
+!99 U+2122 trademark
+!9B U+203A guilsinglright
+!9C U+0153 oe
+!9F U+0178 Ydieresis
+!A0 U+00A0 space
+!A1 U+00A1 exclamdown
+!A2 U+00A2 cent
+!A3 U+00A3 sterling
+!A4 U+00A4 currency
+!A5 U+00A5 yen
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+00A9 copyright
+!AA U+00AA ordfeminine
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AE U+00AE registered
+!AF U+00AF macron
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+00B2 twosuperior
+!B3 U+00B3 threesuperior
+!B4 U+00B4 acute
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+00B8 cedilla
+!B9 U+00B9 onesuperior
+!BA U+00BA ordmasculine
+!BB U+00BB guillemotright
+!BC U+00BC onequarter
+!BD U+00BD onehalf
+!BE U+00BE threequarters
+!BF U+00BF questiondown
+!C0 U+00C0 Agrave
+!C1 U+00C1 Aacute
+!C2 U+00C2 Acircumflex
+!C3 U+0102 Abreve
+!C4 U+00C4 Adieresis
+!C5 U+00C5 Aring
+!C6 U+00C6 AE
+!C7 U+00C7 Ccedilla
+!C8 U+00C8 Egrave
+!C9 U+00C9 Eacute
+!CA U+00CA Ecircumflex
+!CB U+00CB Edieresis
+!CC U+0300 gravecomb
+!CD U+00CD Iacute
+!CE U+00CE Icircumflex
+!CF U+00CF Idieresis
+!D0 U+0110 Dcroat
+!D1 U+00D1 Ntilde
+!D2 U+0309 hookabovecomb
+!D3 U+00D3 Oacute
+!D4 U+00D4 Ocircumflex
+!D5 U+01A0 Ohorn
+!D6 U+00D6 Odieresis
+!D7 U+00D7 multiply
+!D8 U+00D8 Oslash
+!D9 U+00D9 Ugrave
+!DA U+00DA Uacute
+!DB U+00DB Ucircumflex
+!DC U+00DC Udieresis
+!DD U+01AF Uhorn
+!DE U+0303 tildecomb
+!DF U+00DF germandbls
+!E0 U+00E0 agrave
+!E1 U+00E1 aacute
+!E2 U+00E2 acircumflex
+!E3 U+0103 abreve
+!E4 U+00E4 adieresis
+!E5 U+00E5 aring
+!E6 U+00E6 ae
+!E7 U+00E7 ccedilla
+!E8 U+00E8 egrave
+!E9 U+00E9 eacute
+!EA U+00EA ecircumflex
+!EB U+00EB edieresis
+!EC U+0301 acutecomb
+!ED U+00ED iacute
+!EE U+00EE icircumflex
+!EF U+00EF idieresis
+!F0 U+0111 dcroat
+!F1 U+00F1 ntilde
+!F2 U+0323 dotbelowcomb
+!F3 U+00F3 oacute
+!F4 U+00F4 ocircumflex
+!F5 U+01A1 ohorn
+!F6 U+00F6 odieresis
+!F7 U+00F7 divide
+!F8 U+00F8 oslash
+!F9 U+00F9 ugrave
+!FA U+00FA uacute
+!FB U+00FB ucircumflex
+!FC U+00FC udieresis
+!FD U+01B0 uhorn
+!FE U+20AB dong
+!FF U+00FF ydieresis
diff --git a/lib/tcpdf/fonts/utils/enc/cp874.map b/lib/tcpdf/fonts/utils/enc/cp874.map
new file mode 100644
index 0000000000..1006e6b17f
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/cp874.map
@@ -0,0 +1,225 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+20AC Euro
+!85 U+2026 ellipsis
+!91 U+2018 quoteleft
+!92 U+2019 quoteright
+!93 U+201C quotedblleft
+!94 U+201D quotedblright
+!95 U+2022 bullet
+!96 U+2013 endash
+!97 U+2014 emdash
+!A0 U+00A0 space
+!A1 U+0E01 kokaithai
+!A2 U+0E02 khokhaithai
+!A3 U+0E03 khokhuatthai
+!A4 U+0E04 khokhwaithai
+!A5 U+0E05 khokhonthai
+!A6 U+0E06 khorakhangthai
+!A7 U+0E07 ngonguthai
+!A8 U+0E08 chochanthai
+!A9 U+0E09 chochingthai
+!AA U+0E0A chochangthai
+!AB U+0E0B sosothai
+!AC U+0E0C chochoethai
+!AD U+0E0D yoyingthai
+!AE U+0E0E dochadathai
+!AF U+0E0F topatakthai
+!B0 U+0E10 thothanthai
+!B1 U+0E11 thonangmonthothai
+!B2 U+0E12 thophuthaothai
+!B3 U+0E13 nonenthai
+!B4 U+0E14 dodekthai
+!B5 U+0E15 totaothai
+!B6 U+0E16 thothungthai
+!B7 U+0E17 thothahanthai
+!B8 U+0E18 thothongthai
+!B9 U+0E19 nonuthai
+!BA U+0E1A bobaimaithai
+!BB U+0E1B poplathai
+!BC U+0E1C phophungthai
+!BD U+0E1D fofathai
+!BE U+0E1E phophanthai
+!BF U+0E1F fofanthai
+!C0 U+0E20 phosamphaothai
+!C1 U+0E21 momathai
+!C2 U+0E22 yoyakthai
+!C3 U+0E23 roruathai
+!C4 U+0E24 ruthai
+!C5 U+0E25 lolingthai
+!C6 U+0E26 luthai
+!C7 U+0E27 wowaenthai
+!C8 U+0E28 sosalathai
+!C9 U+0E29 sorusithai
+!CA U+0E2A sosuathai
+!CB U+0E2B hohipthai
+!CC U+0E2C lochulathai
+!CD U+0E2D oangthai
+!CE U+0E2E honokhukthai
+!CF U+0E2F paiyannoithai
+!D0 U+0E30 saraathai
+!D1 U+0E31 maihanakatthai
+!D2 U+0E32 saraaathai
+!D3 U+0E33 saraamthai
+!D4 U+0E34 saraithai
+!D5 U+0E35 saraiithai
+!D6 U+0E36 sarauethai
+!D7 U+0E37 saraueethai
+!D8 U+0E38 sarauthai
+!D9 U+0E39 sarauuthai
+!DA U+0E3A phinthuthai
+!DF U+0E3F bahtthai
+!E0 U+0E40 saraethai
+!E1 U+0E41 saraaethai
+!E2 U+0E42 saraothai
+!E3 U+0E43 saraaimaimuanthai
+!E4 U+0E44 saraaimaimalaithai
+!E5 U+0E45 lakkhangyaothai
+!E6 U+0E46 maiyamokthai
+!E7 U+0E47 maitaikhuthai
+!E8 U+0E48 maiekthai
+!E9 U+0E49 maithothai
+!EA U+0E4A maitrithai
+!EB U+0E4B maichattawathai
+!EC U+0E4C thanthakhatthai
+!ED U+0E4D nikhahitthai
+!EE U+0E4E yamakkanthai
+!EF U+0E4F fongmanthai
+!F0 U+0E50 zerothai
+!F1 U+0E51 onethai
+!F2 U+0E52 twothai
+!F3 U+0E53 threethai
+!F4 U+0E54 fourthai
+!F5 U+0E55 fivethai
+!F6 U+0E56 sixthai
+!F7 U+0E57 seventhai
+!F8 U+0E58 eightthai
+!F9 U+0E59 ninethai
+!FA U+0E5A angkhankhuthai
+!FB U+0E5B khomutthai
diff --git a/lib/tcpdf/fonts/utils/enc/iso-8859-1.map b/lib/tcpdf/fonts/utils/enc/iso-8859-1.map
new file mode 100644
index 0000000000..61740a38fa
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/iso-8859-1.map
@@ -0,0 +1,256 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+0080 .notdef
+!81 U+0081 .notdef
+!82 U+0082 .notdef
+!83 U+0083 .notdef
+!84 U+0084 .notdef
+!85 U+0085 .notdef
+!86 U+0086 .notdef
+!87 U+0087 .notdef
+!88 U+0088 .notdef
+!89 U+0089 .notdef
+!8A U+008A .notdef
+!8B U+008B .notdef
+!8C U+008C .notdef
+!8D U+008D .notdef
+!8E U+008E .notdef
+!8F U+008F .notdef
+!90 U+0090 .notdef
+!91 U+0091 .notdef
+!92 U+0092 .notdef
+!93 U+0093 .notdef
+!94 U+0094 .notdef
+!95 U+0095 .notdef
+!96 U+0096 .notdef
+!97 U+0097 .notdef
+!98 U+0098 .notdef
+!99 U+0099 .notdef
+!9A U+009A .notdef
+!9B U+009B .notdef
+!9C U+009C .notdef
+!9D U+009D .notdef
+!9E U+009E .notdef
+!9F U+009F .notdef
+!A0 U+00A0 space
+!A1 U+00A1 exclamdown
+!A2 U+00A2 cent
+!A3 U+00A3 sterling
+!A4 U+00A4 currency
+!A5 U+00A5 yen
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+00A9 copyright
+!AA U+00AA ordfeminine
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AE U+00AE registered
+!AF U+00AF macron
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+00B2 twosuperior
+!B3 U+00B3 threesuperior
+!B4 U+00B4 acute
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+00B8 cedilla
+!B9 U+00B9 onesuperior
+!BA U+00BA ordmasculine
+!BB U+00BB guillemotright
+!BC U+00BC onequarter
+!BD U+00BD onehalf
+!BE U+00BE threequarters
+!BF U+00BF questiondown
+!C0 U+00C0 Agrave
+!C1 U+00C1 Aacute
+!C2 U+00C2 Acircumflex
+!C3 U+00C3 Atilde
+!C4 U+00C4 Adieresis
+!C5 U+00C5 Aring
+!C6 U+00C6 AE
+!C7 U+00C7 Ccedilla
+!C8 U+00C8 Egrave
+!C9 U+00C9 Eacute
+!CA U+00CA Ecircumflex
+!CB U+00CB Edieresis
+!CC U+00CC Igrave
+!CD U+00CD Iacute
+!CE U+00CE Icircumflex
+!CF U+00CF Idieresis
+!D0 U+00D0 Eth
+!D1 U+00D1 Ntilde
+!D2 U+00D2 Ograve
+!D3 U+00D3 Oacute
+!D4 U+00D4 Ocircumflex
+!D5 U+00D5 Otilde
+!D6 U+00D6 Odieresis
+!D7 U+00D7 multiply
+!D8 U+00D8 Oslash
+!D9 U+00D9 Ugrave
+!DA U+00DA Uacute
+!DB U+00DB Ucircumflex
+!DC U+00DC Udieresis
+!DD U+00DD Yacute
+!DE U+00DE Thorn
+!DF U+00DF germandbls
+!E0 U+00E0 agrave
+!E1 U+00E1 aacute
+!E2 U+00E2 acircumflex
+!E3 U+00E3 atilde
+!E4 U+00E4 adieresis
+!E5 U+00E5 aring
+!E6 U+00E6 ae
+!E7 U+00E7 ccedilla
+!E8 U+00E8 egrave
+!E9 U+00E9 eacute
+!EA U+00EA ecircumflex
+!EB U+00EB edieresis
+!EC U+00EC igrave
+!ED U+00ED iacute
+!EE U+00EE icircumflex
+!EF U+00EF idieresis
+!F0 U+00F0 eth
+!F1 U+00F1 ntilde
+!F2 U+00F2 ograve
+!F3 U+00F3 oacute
+!F4 U+00F4 ocircumflex
+!F5 U+00F5 otilde
+!F6 U+00F6 odieresis
+!F7 U+00F7 divide
+!F8 U+00F8 oslash
+!F9 U+00F9 ugrave
+!FA U+00FA uacute
+!FB U+00FB ucircumflex
+!FC U+00FC udieresis
+!FD U+00FD yacute
+!FE U+00FE thorn
+!FF U+00FF ydieresis
diff --git a/lib/tcpdf/fonts/utils/enc/iso-8859-11.map b/lib/tcpdf/fonts/utils/enc/iso-8859-11.map
new file mode 100644
index 0000000000..9168812066
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/iso-8859-11.map
@@ -0,0 +1,248 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+0080 .notdef
+!81 U+0081 .notdef
+!82 U+0082 .notdef
+!83 U+0083 .notdef
+!84 U+0084 .notdef
+!85 U+0085 .notdef
+!86 U+0086 .notdef
+!87 U+0087 .notdef
+!88 U+0088 .notdef
+!89 U+0089 .notdef
+!8A U+008A .notdef
+!8B U+008B .notdef
+!8C U+008C .notdef
+!8D U+008D .notdef
+!8E U+008E .notdef
+!8F U+008F .notdef
+!90 U+0090 .notdef
+!91 U+0091 .notdef
+!92 U+0092 .notdef
+!93 U+0093 .notdef
+!94 U+0094 .notdef
+!95 U+0095 .notdef
+!96 U+0096 .notdef
+!97 U+0097 .notdef
+!98 U+0098 .notdef
+!99 U+0099 .notdef
+!9A U+009A .notdef
+!9B U+009B .notdef
+!9C U+009C .notdef
+!9D U+009D .notdef
+!9E U+009E .notdef
+!9F U+009F .notdef
+!A0 U+00A0 space
+!A1 U+0E01 kokaithai
+!A2 U+0E02 khokhaithai
+!A3 U+0E03 khokhuatthai
+!A4 U+0E04 khokhwaithai
+!A5 U+0E05 khokhonthai
+!A6 U+0E06 khorakhangthai
+!A7 U+0E07 ngonguthai
+!A8 U+0E08 chochanthai
+!A9 U+0E09 chochingthai
+!AA U+0E0A chochangthai
+!AB U+0E0B sosothai
+!AC U+0E0C chochoethai
+!AD U+0E0D yoyingthai
+!AE U+0E0E dochadathai
+!AF U+0E0F topatakthai
+!B0 U+0E10 thothanthai
+!B1 U+0E11 thonangmonthothai
+!B2 U+0E12 thophuthaothai
+!B3 U+0E13 nonenthai
+!B4 U+0E14 dodekthai
+!B5 U+0E15 totaothai
+!B6 U+0E16 thothungthai
+!B7 U+0E17 thothahanthai
+!B8 U+0E18 thothongthai
+!B9 U+0E19 nonuthai
+!BA U+0E1A bobaimaithai
+!BB U+0E1B poplathai
+!BC U+0E1C phophungthai
+!BD U+0E1D fofathai
+!BE U+0E1E phophanthai
+!BF U+0E1F fofanthai
+!C0 U+0E20 phosamphaothai
+!C1 U+0E21 momathai
+!C2 U+0E22 yoyakthai
+!C3 U+0E23 roruathai
+!C4 U+0E24 ruthai
+!C5 U+0E25 lolingthai
+!C6 U+0E26 luthai
+!C7 U+0E27 wowaenthai
+!C8 U+0E28 sosalathai
+!C9 U+0E29 sorusithai
+!CA U+0E2A sosuathai
+!CB U+0E2B hohipthai
+!CC U+0E2C lochulathai
+!CD U+0E2D oangthai
+!CE U+0E2E honokhukthai
+!CF U+0E2F paiyannoithai
+!D0 U+0E30 saraathai
+!D1 U+0E31 maihanakatthai
+!D2 U+0E32 saraaathai
+!D3 U+0E33 saraamthai
+!D4 U+0E34 saraithai
+!D5 U+0E35 saraiithai
+!D6 U+0E36 sarauethai
+!D7 U+0E37 saraueethai
+!D8 U+0E38 sarauthai
+!D9 U+0E39 sarauuthai
+!DA U+0E3A phinthuthai
+!DF U+0E3F bahtthai
+!E0 U+0E40 saraethai
+!E1 U+0E41 saraaethai
+!E2 U+0E42 saraothai
+!E3 U+0E43 saraaimaimuanthai
+!E4 U+0E44 saraaimaimalaithai
+!E5 U+0E45 lakkhangyaothai
+!E6 U+0E46 maiyamokthai
+!E7 U+0E47 maitaikhuthai
+!E8 U+0E48 maiekthai
+!E9 U+0E49 maithothai
+!EA U+0E4A maitrithai
+!EB U+0E4B maichattawathai
+!EC U+0E4C thanthakhatthai
+!ED U+0E4D nikhahitthai
+!EE U+0E4E yamakkanthai
+!EF U+0E4F fongmanthai
+!F0 U+0E50 zerothai
+!F1 U+0E51 onethai
+!F2 U+0E52 twothai
+!F3 U+0E53 threethai
+!F4 U+0E54 fourthai
+!F5 U+0E55 fivethai
+!F6 U+0E56 sixthai
+!F7 U+0E57 seventhai
+!F8 U+0E58 eightthai
+!F9 U+0E59 ninethai
+!FA U+0E5A angkhankhuthai
+!FB U+0E5B khomutthai
diff --git a/lib/tcpdf/fonts/utils/enc/iso-8859-15.map b/lib/tcpdf/fonts/utils/enc/iso-8859-15.map
new file mode 100644
index 0000000000..6c2b571279
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/iso-8859-15.map
@@ -0,0 +1,256 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+0080 .notdef
+!81 U+0081 .notdef
+!82 U+0082 .notdef
+!83 U+0083 .notdef
+!84 U+0084 .notdef
+!85 U+0085 .notdef
+!86 U+0086 .notdef
+!87 U+0087 .notdef
+!88 U+0088 .notdef
+!89 U+0089 .notdef
+!8A U+008A .notdef
+!8B U+008B .notdef
+!8C U+008C .notdef
+!8D U+008D .notdef
+!8E U+008E .notdef
+!8F U+008F .notdef
+!90 U+0090 .notdef
+!91 U+0091 .notdef
+!92 U+0092 .notdef
+!93 U+0093 .notdef
+!94 U+0094 .notdef
+!95 U+0095 .notdef
+!96 U+0096 .notdef
+!97 U+0097 .notdef
+!98 U+0098 .notdef
+!99 U+0099 .notdef
+!9A U+009A .notdef
+!9B U+009B .notdef
+!9C U+009C .notdef
+!9D U+009D .notdef
+!9E U+009E .notdef
+!9F U+009F .notdef
+!A0 U+00A0 space
+!A1 U+00A1 exclamdown
+!A2 U+00A2 cent
+!A3 U+00A3 sterling
+!A4 U+20AC Euro
+!A5 U+00A5 yen
+!A6 U+0160 Scaron
+!A7 U+00A7 section
+!A8 U+0161 scaron
+!A9 U+00A9 copyright
+!AA U+00AA ordfeminine
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AE U+00AE registered
+!AF U+00AF macron
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+00B2 twosuperior
+!B3 U+00B3 threesuperior
+!B4 U+017D Zcaron
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+017E zcaron
+!B9 U+00B9 onesuperior
+!BA U+00BA ordmasculine
+!BB U+00BB guillemotright
+!BC U+0152 OE
+!BD U+0153 oe
+!BE U+0178 Ydieresis
+!BF U+00BF questiondown
+!C0 U+00C0 Agrave
+!C1 U+00C1 Aacute
+!C2 U+00C2 Acircumflex
+!C3 U+00C3 Atilde
+!C4 U+00C4 Adieresis
+!C5 U+00C5 Aring
+!C6 U+00C6 AE
+!C7 U+00C7 Ccedilla
+!C8 U+00C8 Egrave
+!C9 U+00C9 Eacute
+!CA U+00CA Ecircumflex
+!CB U+00CB Edieresis
+!CC U+00CC Igrave
+!CD U+00CD Iacute
+!CE U+00CE Icircumflex
+!CF U+00CF Idieresis
+!D0 U+00D0 Eth
+!D1 U+00D1 Ntilde
+!D2 U+00D2 Ograve
+!D3 U+00D3 Oacute
+!D4 U+00D4 Ocircumflex
+!D5 U+00D5 Otilde
+!D6 U+00D6 Odieresis
+!D7 U+00D7 multiply
+!D8 U+00D8 Oslash
+!D9 U+00D9 Ugrave
+!DA U+00DA Uacute
+!DB U+00DB Ucircumflex
+!DC U+00DC Udieresis
+!DD U+00DD Yacute
+!DE U+00DE Thorn
+!DF U+00DF germandbls
+!E0 U+00E0 agrave
+!E1 U+00E1 aacute
+!E2 U+00E2 acircumflex
+!E3 U+00E3 atilde
+!E4 U+00E4 adieresis
+!E5 U+00E5 aring
+!E6 U+00E6 ae
+!E7 U+00E7 ccedilla
+!E8 U+00E8 egrave
+!E9 U+00E9 eacute
+!EA U+00EA ecircumflex
+!EB U+00EB edieresis
+!EC U+00EC igrave
+!ED U+00ED iacute
+!EE U+00EE icircumflex
+!EF U+00EF idieresis
+!F0 U+00F0 eth
+!F1 U+00F1 ntilde
+!F2 U+00F2 ograve
+!F3 U+00F3 oacute
+!F4 U+00F4 ocircumflex
+!F5 U+00F5 otilde
+!F6 U+00F6 odieresis
+!F7 U+00F7 divide
+!F8 U+00F8 oslash
+!F9 U+00F9 ugrave
+!FA U+00FA uacute
+!FB U+00FB ucircumflex
+!FC U+00FC udieresis
+!FD U+00FD yacute
+!FE U+00FE thorn
+!FF U+00FF ydieresis
diff --git a/lib/tcpdf/fonts/utils/enc/iso-8859-16.map b/lib/tcpdf/fonts/utils/enc/iso-8859-16.map
new file mode 100644
index 0000000000..202c8fe594
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/iso-8859-16.map
@@ -0,0 +1,256 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+0080 .notdef
+!81 U+0081 .notdef
+!82 U+0082 .notdef
+!83 U+0083 .notdef
+!84 U+0084 .notdef
+!85 U+0085 .notdef
+!86 U+0086 .notdef
+!87 U+0087 .notdef
+!88 U+0088 .notdef
+!89 U+0089 .notdef
+!8A U+008A .notdef
+!8B U+008B .notdef
+!8C U+008C .notdef
+!8D U+008D .notdef
+!8E U+008E .notdef
+!8F U+008F .notdef
+!90 U+0090 .notdef
+!91 U+0091 .notdef
+!92 U+0092 .notdef
+!93 U+0093 .notdef
+!94 U+0094 .notdef
+!95 U+0095 .notdef
+!96 U+0096 .notdef
+!97 U+0097 .notdef
+!98 U+0098 .notdef
+!99 U+0099 .notdef
+!9A U+009A .notdef
+!9B U+009B .notdef
+!9C U+009C .notdef
+!9D U+009D .notdef
+!9E U+009E .notdef
+!9F U+009F .notdef
+!A0 U+00A0 space
+!A1 U+0104 Aogonek
+!A2 U+0105 aogonek
+!A3 U+0141 Lslash
+!A4 U+20AC Euro
+!A5 U+201E quotedblbase
+!A6 U+0160 Scaron
+!A7 U+00A7 section
+!A8 U+0161 scaron
+!A9 U+00A9 copyright
+!AA U+0218 Scommaaccent
+!AB U+00AB guillemotleft
+!AC U+0179 Zacute
+!AD U+00AD hyphen
+!AE U+017A zacute
+!AF U+017B Zdotaccent
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+010C Ccaron
+!B3 U+0142 lslash
+!B4 U+017D Zcaron
+!B5 U+201D quotedblright
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+017E zcaron
+!B9 U+010D ccaron
+!BA U+0219 scommaaccent
+!BB U+00BB guillemotright
+!BC U+0152 OE
+!BD U+0153 oe
+!BE U+0178 Ydieresis
+!BF U+017C zdotaccent
+!C0 U+00C0 Agrave
+!C1 U+00C1 Aacute
+!C2 U+00C2 Acircumflex
+!C3 U+0102 Abreve
+!C4 U+00C4 Adieresis
+!C5 U+0106 Cacute
+!C6 U+00C6 AE
+!C7 U+00C7 Ccedilla
+!C8 U+00C8 Egrave
+!C9 U+00C9 Eacute
+!CA U+00CA Ecircumflex
+!CB U+00CB Edieresis
+!CC U+00CC Igrave
+!CD U+00CD Iacute
+!CE U+00CE Icircumflex
+!CF U+00CF Idieresis
+!D0 U+0110 Dcroat
+!D1 U+0143 Nacute
+!D2 U+00D2 Ograve
+!D3 U+00D3 Oacute
+!D4 U+00D4 Ocircumflex
+!D5 U+0150 Ohungarumlaut
+!D6 U+00D6 Odieresis
+!D7 U+015A Sacute
+!D8 U+0170 Uhungarumlaut
+!D9 U+00D9 Ugrave
+!DA U+00DA Uacute
+!DB U+00DB Ucircumflex
+!DC U+00DC Udieresis
+!DD U+0118 Eogonek
+!DE U+021A Tcommaaccent
+!DF U+00DF germandbls
+!E0 U+00E0 agrave
+!E1 U+00E1 aacute
+!E2 U+00E2 acircumflex
+!E3 U+0103 abreve
+!E4 U+00E4 adieresis
+!E5 U+0107 cacute
+!E6 U+00E6 ae
+!E7 U+00E7 ccedilla
+!E8 U+00E8 egrave
+!E9 U+00E9 eacute
+!EA U+00EA ecircumflex
+!EB U+00EB edieresis
+!EC U+00EC igrave
+!ED U+00ED iacute
+!EE U+00EE icircumflex
+!EF U+00EF idieresis
+!F0 U+0111 dcroat
+!F1 U+0144 nacute
+!F2 U+00F2 ograve
+!F3 U+00F3 oacute
+!F4 U+00F4 ocircumflex
+!F5 U+0151 ohungarumlaut
+!F6 U+00F6 odieresis
+!F7 U+015B sacute
+!F8 U+0171 uhungarumlaut
+!F9 U+00F9 ugrave
+!FA U+00FA uacute
+!FB U+00FB ucircumflex
+!FC U+00FC udieresis
+!FD U+0119 eogonek
+!FE U+021B tcommaaccent
+!FF U+00FF ydieresis
diff --git a/lib/tcpdf/fonts/utils/enc/iso-8859-2.map b/lib/tcpdf/fonts/utils/enc/iso-8859-2.map
new file mode 100644
index 0000000000..65ae09f958
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/iso-8859-2.map
@@ -0,0 +1,256 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+0080 .notdef
+!81 U+0081 .notdef
+!82 U+0082 .notdef
+!83 U+0083 .notdef
+!84 U+0084 .notdef
+!85 U+0085 .notdef
+!86 U+0086 .notdef
+!87 U+0087 .notdef
+!88 U+0088 .notdef
+!89 U+0089 .notdef
+!8A U+008A .notdef
+!8B U+008B .notdef
+!8C U+008C .notdef
+!8D U+008D .notdef
+!8E U+008E .notdef
+!8F U+008F .notdef
+!90 U+0090 .notdef
+!91 U+0091 .notdef
+!92 U+0092 .notdef
+!93 U+0093 .notdef
+!94 U+0094 .notdef
+!95 U+0095 .notdef
+!96 U+0096 .notdef
+!97 U+0097 .notdef
+!98 U+0098 .notdef
+!99 U+0099 .notdef
+!9A U+009A .notdef
+!9B U+009B .notdef
+!9C U+009C .notdef
+!9D U+009D .notdef
+!9E U+009E .notdef
+!9F U+009F .notdef
+!A0 U+00A0 space
+!A1 U+0104 Aogonek
+!A2 U+02D8 breve
+!A3 U+0141 Lslash
+!A4 U+00A4 currency
+!A5 U+013D Lcaron
+!A6 U+015A Sacute
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+0160 Scaron
+!AA U+015E Scedilla
+!AB U+0164 Tcaron
+!AC U+0179 Zacute
+!AD U+00AD hyphen
+!AE U+017D Zcaron
+!AF U+017B Zdotaccent
+!B0 U+00B0 degree
+!B1 U+0105 aogonek
+!B2 U+02DB ogonek
+!B3 U+0142 lslash
+!B4 U+00B4 acute
+!B5 U+013E lcaron
+!B6 U+015B sacute
+!B7 U+02C7 caron
+!B8 U+00B8 cedilla
+!B9 U+0161 scaron
+!BA U+015F scedilla
+!BB U+0165 tcaron
+!BC U+017A zacute
+!BD U+02DD hungarumlaut
+!BE U+017E zcaron
+!BF U+017C zdotaccent
+!C0 U+0154 Racute
+!C1 U+00C1 Aacute
+!C2 U+00C2 Acircumflex
+!C3 U+0102 Abreve
+!C4 U+00C4 Adieresis
+!C5 U+0139 Lacute
+!C6 U+0106 Cacute
+!C7 U+00C7 Ccedilla
+!C8 U+010C Ccaron
+!C9 U+00C9 Eacute
+!CA U+0118 Eogonek
+!CB U+00CB Edieresis
+!CC U+011A Ecaron
+!CD U+00CD Iacute
+!CE U+00CE Icircumflex
+!CF U+010E Dcaron
+!D0 U+0110 Dcroat
+!D1 U+0143 Nacute
+!D2 U+0147 Ncaron
+!D3 U+00D3 Oacute
+!D4 U+00D4 Ocircumflex
+!D5 U+0150 Ohungarumlaut
+!D6 U+00D6 Odieresis
+!D7 U+00D7 multiply
+!D8 U+0158 Rcaron
+!D9 U+016E Uring
+!DA U+00DA Uacute
+!DB U+0170 Uhungarumlaut
+!DC U+00DC Udieresis
+!DD U+00DD Yacute
+!DE U+0162 Tcommaaccent
+!DF U+00DF germandbls
+!E0 U+0155 racute
+!E1 U+00E1 aacute
+!E2 U+00E2 acircumflex
+!E3 U+0103 abreve
+!E4 U+00E4 adieresis
+!E5 U+013A lacute
+!E6 U+0107 cacute
+!E7 U+00E7 ccedilla
+!E8 U+010D ccaron
+!E9 U+00E9 eacute
+!EA U+0119 eogonek
+!EB U+00EB edieresis
+!EC U+011B ecaron
+!ED U+00ED iacute
+!EE U+00EE icircumflex
+!EF U+010F dcaron
+!F0 U+0111 dcroat
+!F1 U+0144 nacute
+!F2 U+0148 ncaron
+!F3 U+00F3 oacute
+!F4 U+00F4 ocircumflex
+!F5 U+0151 ohungarumlaut
+!F6 U+00F6 odieresis
+!F7 U+00F7 divide
+!F8 U+0159 rcaron
+!F9 U+016F uring
+!FA U+00FA uacute
+!FB U+0171 uhungarumlaut
+!FC U+00FC udieresis
+!FD U+00FD yacute
+!FE U+0163 tcommaaccent
+!FF U+02D9 dotaccent
diff --git a/lib/tcpdf/fonts/utils/enc/iso-8859-4.map b/lib/tcpdf/fonts/utils/enc/iso-8859-4.map
new file mode 100644
index 0000000000..a7d87bf3ef
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/iso-8859-4.map
@@ -0,0 +1,256 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+0080 .notdef
+!81 U+0081 .notdef
+!82 U+0082 .notdef
+!83 U+0083 .notdef
+!84 U+0084 .notdef
+!85 U+0085 .notdef
+!86 U+0086 .notdef
+!87 U+0087 .notdef
+!88 U+0088 .notdef
+!89 U+0089 .notdef
+!8A U+008A .notdef
+!8B U+008B .notdef
+!8C U+008C .notdef
+!8D U+008D .notdef
+!8E U+008E .notdef
+!8F U+008F .notdef
+!90 U+0090 .notdef
+!91 U+0091 .notdef
+!92 U+0092 .notdef
+!93 U+0093 .notdef
+!94 U+0094 .notdef
+!95 U+0095 .notdef
+!96 U+0096 .notdef
+!97 U+0097 .notdef
+!98 U+0098 .notdef
+!99 U+0099 .notdef
+!9A U+009A .notdef
+!9B U+009B .notdef
+!9C U+009C .notdef
+!9D U+009D .notdef
+!9E U+009E .notdef
+!9F U+009F .notdef
+!A0 U+00A0 space
+!A1 U+0104 Aogonek
+!A2 U+0138 kgreenlandic
+!A3 U+0156 Rcommaaccent
+!A4 U+00A4 currency
+!A5 U+0128 Itilde
+!A6 U+013B Lcommaaccent
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+0160 Scaron
+!AA U+0112 Emacron
+!AB U+0122 Gcommaaccent
+!AC U+0166 Tbar
+!AD U+00AD hyphen
+!AE U+017D Zcaron
+!AF U+00AF macron
+!B0 U+00B0 degree
+!B1 U+0105 aogonek
+!B2 U+02DB ogonek
+!B3 U+0157 rcommaaccent
+!B4 U+00B4 acute
+!B5 U+0129 itilde
+!B6 U+013C lcommaaccent
+!B7 U+02C7 caron
+!B8 U+00B8 cedilla
+!B9 U+0161 scaron
+!BA U+0113 emacron
+!BB U+0123 gcommaaccent
+!BC U+0167 tbar
+!BD U+014A Eng
+!BE U+017E zcaron
+!BF U+014B eng
+!C0 U+0100 Amacron
+!C1 U+00C1 Aacute
+!C2 U+00C2 Acircumflex
+!C3 U+00C3 Atilde
+!C4 U+00C4 Adieresis
+!C5 U+00C5 Aring
+!C6 U+00C6 AE
+!C7 U+012E Iogonek
+!C8 U+010C Ccaron
+!C9 U+00C9 Eacute
+!CA U+0118 Eogonek
+!CB U+00CB Edieresis
+!CC U+0116 Edotaccent
+!CD U+00CD Iacute
+!CE U+00CE Icircumflex
+!CF U+012A Imacron
+!D0 U+0110 Dcroat
+!D1 U+0145 Ncommaaccent
+!D2 U+014C Omacron
+!D3 U+0136 Kcommaaccent
+!D4 U+00D4 Ocircumflex
+!D5 U+00D5 Otilde
+!D6 U+00D6 Odieresis
+!D7 U+00D7 multiply
+!D8 U+00D8 Oslash
+!D9 U+0172 Uogonek
+!DA U+00DA Uacute
+!DB U+00DB Ucircumflex
+!DC U+00DC Udieresis
+!DD U+0168 Utilde
+!DE U+016A Umacron
+!DF U+00DF germandbls
+!E0 U+0101 amacron
+!E1 U+00E1 aacute
+!E2 U+00E2 acircumflex
+!E3 U+00E3 atilde
+!E4 U+00E4 adieresis
+!E5 U+00E5 aring
+!E6 U+00E6 ae
+!E7 U+012F iogonek
+!E8 U+010D ccaron
+!E9 U+00E9 eacute
+!EA U+0119 eogonek
+!EB U+00EB edieresis
+!EC U+0117 edotaccent
+!ED U+00ED iacute
+!EE U+00EE icircumflex
+!EF U+012B imacron
+!F0 U+0111 dcroat
+!F1 U+0146 ncommaaccent
+!F2 U+014D omacron
+!F3 U+0137 kcommaaccent
+!F4 U+00F4 ocircumflex
+!F5 U+00F5 otilde
+!F6 U+00F6 odieresis
+!F7 U+00F7 divide
+!F8 U+00F8 oslash
+!F9 U+0173 uogonek
+!FA U+00FA uacute
+!FB U+00FB ucircumflex
+!FC U+00FC udieresis
+!FD U+0169 utilde
+!FE U+016B umacron
+!FF U+02D9 dotaccent
diff --git a/lib/tcpdf/fonts/utils/enc/iso-8859-5.map b/lib/tcpdf/fonts/utils/enc/iso-8859-5.map
new file mode 100644
index 0000000000..f9cd4edcf8
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/iso-8859-5.map
@@ -0,0 +1,256 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+0080 .notdef
+!81 U+0081 .notdef
+!82 U+0082 .notdef
+!83 U+0083 .notdef
+!84 U+0084 .notdef
+!85 U+0085 .notdef
+!86 U+0086 .notdef
+!87 U+0087 .notdef
+!88 U+0088 .notdef
+!89 U+0089 .notdef
+!8A U+008A .notdef
+!8B U+008B .notdef
+!8C U+008C .notdef
+!8D U+008D .notdef
+!8E U+008E .notdef
+!8F U+008F .notdef
+!90 U+0090 .notdef
+!91 U+0091 .notdef
+!92 U+0092 .notdef
+!93 U+0093 .notdef
+!94 U+0094 .notdef
+!95 U+0095 .notdef
+!96 U+0096 .notdef
+!97 U+0097 .notdef
+!98 U+0098 .notdef
+!99 U+0099 .notdef
+!9A U+009A .notdef
+!9B U+009B .notdef
+!9C U+009C .notdef
+!9D U+009D .notdef
+!9E U+009E .notdef
+!9F U+009F .notdef
+!A0 U+00A0 space
+!A1 U+0401 afii10023
+!A2 U+0402 afii10051
+!A3 U+0403 afii10052
+!A4 U+0404 afii10053
+!A5 U+0405 afii10054
+!A6 U+0406 afii10055
+!A7 U+0407 afii10056
+!A8 U+0408 afii10057
+!A9 U+0409 afii10058
+!AA U+040A afii10059
+!AB U+040B afii10060
+!AC U+040C afii10061
+!AD U+00AD hyphen
+!AE U+040E afii10062
+!AF U+040F afii10145
+!B0 U+0410 afii10017
+!B1 U+0411 afii10018
+!B2 U+0412 afii10019
+!B3 U+0413 afii10020
+!B4 U+0414 afii10021
+!B5 U+0415 afii10022
+!B6 U+0416 afii10024
+!B7 U+0417 afii10025
+!B8 U+0418 afii10026
+!B9 U+0419 afii10027
+!BA U+041A afii10028
+!BB U+041B afii10029
+!BC U+041C afii10030
+!BD U+041D afii10031
+!BE U+041E afii10032
+!BF U+041F afii10033
+!C0 U+0420 afii10034
+!C1 U+0421 afii10035
+!C2 U+0422 afii10036
+!C3 U+0423 afii10037
+!C4 U+0424 afii10038
+!C5 U+0425 afii10039
+!C6 U+0426 afii10040
+!C7 U+0427 afii10041
+!C8 U+0428 afii10042
+!C9 U+0429 afii10043
+!CA U+042A afii10044
+!CB U+042B afii10045
+!CC U+042C afii10046
+!CD U+042D afii10047
+!CE U+042E afii10048
+!CF U+042F afii10049
+!D0 U+0430 afii10065
+!D1 U+0431 afii10066
+!D2 U+0432 afii10067
+!D3 U+0433 afii10068
+!D4 U+0434 afii10069
+!D5 U+0435 afii10070
+!D6 U+0436 afii10072
+!D7 U+0437 afii10073
+!D8 U+0438 afii10074
+!D9 U+0439 afii10075
+!DA U+043A afii10076
+!DB U+043B afii10077
+!DC U+043C afii10078
+!DD U+043D afii10079
+!DE U+043E afii10080
+!DF U+043F afii10081
+!E0 U+0440 afii10082
+!E1 U+0441 afii10083
+!E2 U+0442 afii10084
+!E3 U+0443 afii10085
+!E4 U+0444 afii10086
+!E5 U+0445 afii10087
+!E6 U+0446 afii10088
+!E7 U+0447 afii10089
+!E8 U+0448 afii10090
+!E9 U+0449 afii10091
+!EA U+044A afii10092
+!EB U+044B afii10093
+!EC U+044C afii10094
+!ED U+044D afii10095
+!EE U+044E afii10096
+!EF U+044F afii10097
+!F0 U+2116 afii61352
+!F1 U+0451 afii10071
+!F2 U+0452 afii10099
+!F3 U+0453 afii10100
+!F4 U+0454 afii10101
+!F5 U+0455 afii10102
+!F6 U+0456 afii10103
+!F7 U+0457 afii10104
+!F8 U+0458 afii10105
+!F9 U+0459 afii10106
+!FA U+045A afii10107
+!FB U+045B afii10108
+!FC U+045C afii10109
+!FD U+00A7 section
+!FE U+045E afii10110
+!FF U+045F afii10193
diff --git a/lib/tcpdf/fonts/utils/enc/iso-8859-7.map b/lib/tcpdf/fonts/utils/enc/iso-8859-7.map
new file mode 100644
index 0000000000..e163796b1c
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/iso-8859-7.map
@@ -0,0 +1,250 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+0080 .notdef
+!81 U+0081 .notdef
+!82 U+0082 .notdef
+!83 U+0083 .notdef
+!84 U+0084 .notdef
+!85 U+0085 .notdef
+!86 U+0086 .notdef
+!87 U+0087 .notdef
+!88 U+0088 .notdef
+!89 U+0089 .notdef
+!8A U+008A .notdef
+!8B U+008B .notdef
+!8C U+008C .notdef
+!8D U+008D .notdef
+!8E U+008E .notdef
+!8F U+008F .notdef
+!90 U+0090 .notdef
+!91 U+0091 .notdef
+!92 U+0092 .notdef
+!93 U+0093 .notdef
+!94 U+0094 .notdef
+!95 U+0095 .notdef
+!96 U+0096 .notdef
+!97 U+0097 .notdef
+!98 U+0098 .notdef
+!99 U+0099 .notdef
+!9A U+009A .notdef
+!9B U+009B .notdef
+!9C U+009C .notdef
+!9D U+009D .notdef
+!9E U+009E .notdef
+!9F U+009F .notdef
+!A0 U+00A0 space
+!A1 U+2018 quoteleft
+!A2 U+2019 quoteright
+!A3 U+00A3 sterling
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+00A9 copyright
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AF U+2015 afii00208
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+00B2 twosuperior
+!B3 U+00B3 threesuperior
+!B4 U+0384 tonos
+!B5 U+0385 dieresistonos
+!B6 U+0386 Alphatonos
+!B7 U+00B7 periodcentered
+!B8 U+0388 Epsilontonos
+!B9 U+0389 Etatonos
+!BA U+038A Iotatonos
+!BB U+00BB guillemotright
+!BC U+038C Omicrontonos
+!BD U+00BD onehalf
+!BE U+038E Upsilontonos
+!BF U+038F Omegatonos
+!C0 U+0390 iotadieresistonos
+!C1 U+0391 Alpha
+!C2 U+0392 Beta
+!C3 U+0393 Gamma
+!C4 U+0394 Delta
+!C5 U+0395 Epsilon
+!C6 U+0396 Zeta
+!C7 U+0397 Eta
+!C8 U+0398 Theta
+!C9 U+0399 Iota
+!CA U+039A Kappa
+!CB U+039B Lambda
+!CC U+039C Mu
+!CD U+039D Nu
+!CE U+039E Xi
+!CF U+039F Omicron
+!D0 U+03A0 Pi
+!D1 U+03A1 Rho
+!D3 U+03A3 Sigma
+!D4 U+03A4 Tau
+!D5 U+03A5 Upsilon
+!D6 U+03A6 Phi
+!D7 U+03A7 Chi
+!D8 U+03A8 Psi
+!D9 U+03A9 Omega
+!DA U+03AA Iotadieresis
+!DB U+03AB Upsilondieresis
+!DC U+03AC alphatonos
+!DD U+03AD epsilontonos
+!DE U+03AE etatonos
+!DF U+03AF iotatonos
+!E0 U+03B0 upsilondieresistonos
+!E1 U+03B1 alpha
+!E2 U+03B2 beta
+!E3 U+03B3 gamma
+!E4 U+03B4 delta
+!E5 U+03B5 epsilon
+!E6 U+03B6 zeta
+!E7 U+03B7 eta
+!E8 U+03B8 theta
+!E9 U+03B9 iota
+!EA U+03BA kappa
+!EB U+03BB lambda
+!EC U+03BC mu
+!ED U+03BD nu
+!EE U+03BE xi
+!EF U+03BF omicron
+!F0 U+03C0 pi
+!F1 U+03C1 rho
+!F2 U+03C2 sigma1
+!F3 U+03C3 sigma
+!F4 U+03C4 tau
+!F5 U+03C5 upsilon
+!F6 U+03C6 phi
+!F7 U+03C7 chi
+!F8 U+03C8 psi
+!F9 U+03C9 omega
+!FA U+03CA iotadieresis
+!FB U+03CB upsilondieresis
+!FC U+03CC omicrontonos
+!FD U+03CD upsilontonos
+!FE U+03CE omegatonos
diff --git a/lib/tcpdf/fonts/utils/enc/iso-8859-9.map b/lib/tcpdf/fonts/utils/enc/iso-8859-9.map
new file mode 100644
index 0000000000..48c123ae6f
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/iso-8859-9.map
@@ -0,0 +1,256 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+0080 .notdef
+!81 U+0081 .notdef
+!82 U+0082 .notdef
+!83 U+0083 .notdef
+!84 U+0084 .notdef
+!85 U+0085 .notdef
+!86 U+0086 .notdef
+!87 U+0087 .notdef
+!88 U+0088 .notdef
+!89 U+0089 .notdef
+!8A U+008A .notdef
+!8B U+008B .notdef
+!8C U+008C .notdef
+!8D U+008D .notdef
+!8E U+008E .notdef
+!8F U+008F .notdef
+!90 U+0090 .notdef
+!91 U+0091 .notdef
+!92 U+0092 .notdef
+!93 U+0093 .notdef
+!94 U+0094 .notdef
+!95 U+0095 .notdef
+!96 U+0096 .notdef
+!97 U+0097 .notdef
+!98 U+0098 .notdef
+!99 U+0099 .notdef
+!9A U+009A .notdef
+!9B U+009B .notdef
+!9C U+009C .notdef
+!9D U+009D .notdef
+!9E U+009E .notdef
+!9F U+009F .notdef
+!A0 U+00A0 space
+!A1 U+00A1 exclamdown
+!A2 U+00A2 cent
+!A3 U+00A3 sterling
+!A4 U+00A4 currency
+!A5 U+00A5 yen
+!A6 U+00A6 brokenbar
+!A7 U+00A7 section
+!A8 U+00A8 dieresis
+!A9 U+00A9 copyright
+!AA U+00AA ordfeminine
+!AB U+00AB guillemotleft
+!AC U+00AC logicalnot
+!AD U+00AD hyphen
+!AE U+00AE registered
+!AF U+00AF macron
+!B0 U+00B0 degree
+!B1 U+00B1 plusminus
+!B2 U+00B2 twosuperior
+!B3 U+00B3 threesuperior
+!B4 U+00B4 acute
+!B5 U+00B5 mu
+!B6 U+00B6 paragraph
+!B7 U+00B7 periodcentered
+!B8 U+00B8 cedilla
+!B9 U+00B9 onesuperior
+!BA U+00BA ordmasculine
+!BB U+00BB guillemotright
+!BC U+00BC onequarter
+!BD U+00BD onehalf
+!BE U+00BE threequarters
+!BF U+00BF questiondown
+!C0 U+00C0 Agrave
+!C1 U+00C1 Aacute
+!C2 U+00C2 Acircumflex
+!C3 U+00C3 Atilde
+!C4 U+00C4 Adieresis
+!C5 U+00C5 Aring
+!C6 U+00C6 AE
+!C7 U+00C7 Ccedilla
+!C8 U+00C8 Egrave
+!C9 U+00C9 Eacute
+!CA U+00CA Ecircumflex
+!CB U+00CB Edieresis
+!CC U+00CC Igrave
+!CD U+00CD Iacute
+!CE U+00CE Icircumflex
+!CF U+00CF Idieresis
+!D0 U+011E Gbreve
+!D1 U+00D1 Ntilde
+!D2 U+00D2 Ograve
+!D3 U+00D3 Oacute
+!D4 U+00D4 Ocircumflex
+!D5 U+00D5 Otilde
+!D6 U+00D6 Odieresis
+!D7 U+00D7 multiply
+!D8 U+00D8 Oslash
+!D9 U+00D9 Ugrave
+!DA U+00DA Uacute
+!DB U+00DB Ucircumflex
+!DC U+00DC Udieresis
+!DD U+0130 Idotaccent
+!DE U+015E Scedilla
+!DF U+00DF germandbls
+!E0 U+00E0 agrave
+!E1 U+00E1 aacute
+!E2 U+00E2 acircumflex
+!E3 U+00E3 atilde
+!E4 U+00E4 adieresis
+!E5 U+00E5 aring
+!E6 U+00E6 ae
+!E7 U+00E7 ccedilla
+!E8 U+00E8 egrave
+!E9 U+00E9 eacute
+!EA U+00EA ecircumflex
+!EB U+00EB edieresis
+!EC U+00EC igrave
+!ED U+00ED iacute
+!EE U+00EE icircumflex
+!EF U+00EF idieresis
+!F0 U+011F gbreve
+!F1 U+00F1 ntilde
+!F2 U+00F2 ograve
+!F3 U+00F3 oacute
+!F4 U+00F4 ocircumflex
+!F5 U+00F5 otilde
+!F6 U+00F6 odieresis
+!F7 U+00F7 divide
+!F8 U+00F8 oslash
+!F9 U+00F9 ugrave
+!FA U+00FA uacute
+!FB U+00FB ucircumflex
+!FC U+00FC udieresis
+!FD U+0131 dotlessi
+!FE U+015F scedilla
+!FF U+00FF ydieresis
diff --git a/lib/tcpdf/fonts/utils/enc/koi8-r.map b/lib/tcpdf/fonts/utils/enc/koi8-r.map
new file mode 100644
index 0000000000..6ad5d05d0d
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/koi8-r.map
@@ -0,0 +1,256 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+2500 SF100000
+!81 U+2502 SF110000
+!82 U+250C SF010000
+!83 U+2510 SF030000
+!84 U+2514 SF020000
+!85 U+2518 SF040000
+!86 U+251C SF080000
+!87 U+2524 SF090000
+!88 U+252C SF060000
+!89 U+2534 SF070000
+!8A U+253C SF050000
+!8B U+2580 upblock
+!8C U+2584 dnblock
+!8D U+2588 block
+!8E U+258C lfblock
+!8F U+2590 rtblock
+!90 U+2591 ltshade
+!91 U+2592 shade
+!92 U+2593 dkshade
+!93 U+2320 integraltp
+!94 U+25A0 filledbox
+!95 U+2219 periodcentered
+!96 U+221A radical
+!97 U+2248 approxequal
+!98 U+2264 lessequal
+!99 U+2265 greaterequal
+!9A U+00A0 space
+!9B U+2321 integralbt
+!9C U+00B0 degree
+!9D U+00B2 twosuperior
+!9E U+00B7 periodcentered
+!9F U+00F7 divide
+!A0 U+2550 SF430000
+!A1 U+2551 SF240000
+!A2 U+2552 SF510000
+!A3 U+0451 afii10071
+!A4 U+2553 SF520000
+!A5 U+2554 SF390000
+!A6 U+2555 SF220000
+!A7 U+2556 SF210000
+!A8 U+2557 SF250000
+!A9 U+2558 SF500000
+!AA U+2559 SF490000
+!AB U+255A SF380000
+!AC U+255B SF280000
+!AD U+255C SF270000
+!AE U+255D SF260000
+!AF U+255E SF360000
+!B0 U+255F SF370000
+!B1 U+2560 SF420000
+!B2 U+2561 SF190000
+!B3 U+0401 afii10023
+!B4 U+2562 SF200000
+!B5 U+2563 SF230000
+!B6 U+2564 SF470000
+!B7 U+2565 SF480000
+!B8 U+2566 SF410000
+!B9 U+2567 SF450000
+!BA U+2568 SF460000
+!BB U+2569 SF400000
+!BC U+256A SF540000
+!BD U+256B SF530000
+!BE U+256C SF440000
+!BF U+00A9 copyright
+!C0 U+044E afii10096
+!C1 U+0430 afii10065
+!C2 U+0431 afii10066
+!C3 U+0446 afii10088
+!C4 U+0434 afii10069
+!C5 U+0435 afii10070
+!C6 U+0444 afii10086
+!C7 U+0433 afii10068
+!C8 U+0445 afii10087
+!C9 U+0438 afii10074
+!CA U+0439 afii10075
+!CB U+043A afii10076
+!CC U+043B afii10077
+!CD U+043C afii10078
+!CE U+043D afii10079
+!CF U+043E afii10080
+!D0 U+043F afii10081
+!D1 U+044F afii10097
+!D2 U+0440 afii10082
+!D3 U+0441 afii10083
+!D4 U+0442 afii10084
+!D5 U+0443 afii10085
+!D6 U+0436 afii10072
+!D7 U+0432 afii10067
+!D8 U+044C afii10094
+!D9 U+044B afii10093
+!DA U+0437 afii10073
+!DB U+0448 afii10090
+!DC U+044D afii10095
+!DD U+0449 afii10091
+!DE U+0447 afii10089
+!DF U+044A afii10092
+!E0 U+042E afii10048
+!E1 U+0410 afii10017
+!E2 U+0411 afii10018
+!E3 U+0426 afii10040
+!E4 U+0414 afii10021
+!E5 U+0415 afii10022
+!E6 U+0424 afii10038
+!E7 U+0413 afii10020
+!E8 U+0425 afii10039
+!E9 U+0418 afii10026
+!EA U+0419 afii10027
+!EB U+041A afii10028
+!EC U+041B afii10029
+!ED U+041C afii10030
+!EE U+041D afii10031
+!EF U+041E afii10032
+!F0 U+041F afii10033
+!F1 U+042F afii10049
+!F2 U+0420 afii10034
+!F3 U+0421 afii10035
+!F4 U+0422 afii10036
+!F5 U+0423 afii10037
+!F6 U+0416 afii10024
+!F7 U+0412 afii10019
+!F8 U+042C afii10046
+!F9 U+042B afii10045
+!FA U+0417 afii10025
+!FB U+0428 afii10042
+!FC U+042D afii10047
+!FD U+0429 afii10043
+!FE U+0427 afii10041
+!FF U+042A afii10044
diff --git a/lib/tcpdf/fonts/utils/enc/koi8-u.map b/lib/tcpdf/fonts/utils/enc/koi8-u.map
new file mode 100644
index 0000000000..40a7e4fd7e
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/enc/koi8-u.map
@@ -0,0 +1,256 @@
+!00 U+0000 .notdef
+!01 U+0001 .notdef
+!02 U+0002 .notdef
+!03 U+0003 .notdef
+!04 U+0004 .notdef
+!05 U+0005 .notdef
+!06 U+0006 .notdef
+!07 U+0007 .notdef
+!08 U+0008 .notdef
+!09 U+0009 .notdef
+!0A U+000A .notdef
+!0B U+000B .notdef
+!0C U+000C .notdef
+!0D U+000D .notdef
+!0E U+000E .notdef
+!0F U+000F .notdef
+!10 U+0010 .notdef
+!11 U+0011 .notdef
+!12 U+0012 .notdef
+!13 U+0013 .notdef
+!14 U+0014 .notdef
+!15 U+0015 .notdef
+!16 U+0016 .notdef
+!17 U+0017 .notdef
+!18 U+0018 .notdef
+!19 U+0019 .notdef
+!1A U+001A .notdef
+!1B U+001B .notdef
+!1C U+001C .notdef
+!1D U+001D .notdef
+!1E U+001E .notdef
+!1F U+001F .notdef
+!20 U+0020 space
+!21 U+0021 exclam
+!22 U+0022 quotedbl
+!23 U+0023 numbersign
+!24 U+0024 dollar
+!25 U+0025 percent
+!26 U+0026 ampersand
+!27 U+0027 quotesingle
+!28 U+0028 parenleft
+!29 U+0029 parenright
+!2A U+002A asterisk
+!2B U+002B plus
+!2C U+002C comma
+!2D U+002D hyphen
+!2E U+002E period
+!2F U+002F slash
+!30 U+0030 zero
+!31 U+0031 one
+!32 U+0032 two
+!33 U+0033 three
+!34 U+0034 four
+!35 U+0035 five
+!36 U+0036 six
+!37 U+0037 seven
+!38 U+0038 eight
+!39 U+0039 nine
+!3A U+003A colon
+!3B U+003B semicolon
+!3C U+003C less
+!3D U+003D equal
+!3E U+003E greater
+!3F U+003F question
+!40 U+0040 at
+!41 U+0041 A
+!42 U+0042 B
+!43 U+0043 C
+!44 U+0044 D
+!45 U+0045 E
+!46 U+0046 F
+!47 U+0047 G
+!48 U+0048 H
+!49 U+0049 I
+!4A U+004A J
+!4B U+004B K
+!4C U+004C L
+!4D U+004D M
+!4E U+004E N
+!4F U+004F O
+!50 U+0050 P
+!51 U+0051 Q
+!52 U+0052 R
+!53 U+0053 S
+!54 U+0054 T
+!55 U+0055 U
+!56 U+0056 V
+!57 U+0057 W
+!58 U+0058 X
+!59 U+0059 Y
+!5A U+005A Z
+!5B U+005B bracketleft
+!5C U+005C backslash
+!5D U+005D bracketright
+!5E U+005E asciicircum
+!5F U+005F underscore
+!60 U+0060 grave
+!61 U+0061 a
+!62 U+0062 b
+!63 U+0063 c
+!64 U+0064 d
+!65 U+0065 e
+!66 U+0066 f
+!67 U+0067 g
+!68 U+0068 h
+!69 U+0069 i
+!6A U+006A j
+!6B U+006B k
+!6C U+006C l
+!6D U+006D m
+!6E U+006E n
+!6F U+006F o
+!70 U+0070 p
+!71 U+0071 q
+!72 U+0072 r
+!73 U+0073 s
+!74 U+0074 t
+!75 U+0075 u
+!76 U+0076 v
+!77 U+0077 w
+!78 U+0078 x
+!79 U+0079 y
+!7A U+007A z
+!7B U+007B braceleft
+!7C U+007C bar
+!7D U+007D braceright
+!7E U+007E asciitilde
+!7F U+007F .notdef
+!80 U+2500 SF100000
+!81 U+2502 SF110000
+!82 U+250C SF010000
+!83 U+2510 SF030000
+!84 U+2514 SF020000
+!85 U+2518 SF040000
+!86 U+251C SF080000
+!87 U+2524 SF090000
+!88 U+252C SF060000
+!89 U+2534 SF070000
+!8A U+253C SF050000
+!8B U+2580 upblock
+!8C U+2584 dnblock
+!8D U+2588 block
+!8E U+258C lfblock
+!8F U+2590 rtblock
+!90 U+2591 ltshade
+!91 U+2592 shade
+!92 U+2593 dkshade
+!93 U+2320 integraltp
+!94 U+25A0 filledbox
+!95 U+2022 bullet
+!96 U+221A radical
+!97 U+2248 approxequal
+!98 U+2264 lessequal
+!99 U+2265 greaterequal
+!9A U+00A0 space
+!9B U+2321 integralbt
+!9C U+00B0 degree
+!9D U+00B2 twosuperior
+!9E U+00B7 periodcentered
+!9F U+00F7 divide
+!A0 U+2550 SF430000
+!A1 U+2551 SF240000
+!A2 U+2552 SF510000
+!A3 U+0451 afii10071
+!A4 U+0454 afii10101
+!A5 U+2554 SF390000
+!A6 U+0456 afii10103
+!A7 U+0457 afii10104
+!A8 U+2557 SF250000
+!A9 U+2558 SF500000
+!AA U+2559 SF490000
+!AB U+255A SF380000
+!AC U+255B SF280000
+!AD U+0491 afii10098
+!AE U+255D SF260000
+!AF U+255E SF360000
+!B0 U+255F SF370000
+!B1 U+2560 SF420000
+!B2 U+2561 SF190000
+!B3 U+0401 afii10023
+!B4 U+0404 afii10053
+!B5 U+2563 SF230000
+!B6 U+0406 afii10055
+!B7 U+0407 afii10056
+!B8 U+2566 SF410000
+!B9 U+2567 SF450000
+!BA U+2568 SF460000
+!BB U+2569 SF400000
+!BC U+256A SF540000
+!BD U+0490 afii10050
+!BE U+256C SF440000
+!BF U+00A9 copyright
+!C0 U+044E afii10096
+!C1 U+0430 afii10065
+!C2 U+0431 afii10066
+!C3 U+0446 afii10088
+!C4 U+0434 afii10069
+!C5 U+0435 afii10070
+!C6 U+0444 afii10086
+!C7 U+0433 afii10068
+!C8 U+0445 afii10087
+!C9 U+0438 afii10074
+!CA U+0439 afii10075
+!CB U+043A afii10076
+!CC U+043B afii10077
+!CD U+043C afii10078
+!CE U+043D afii10079
+!CF U+043E afii10080
+!D0 U+043F afii10081
+!D1 U+044F afii10097
+!D2 U+0440 afii10082
+!D3 U+0441 afii10083
+!D4 U+0442 afii10084
+!D5 U+0443 afii10085
+!D6 U+0436 afii10072
+!D7 U+0432 afii10067
+!D8 U+044C afii10094
+!D9 U+044B afii10093
+!DA U+0437 afii10073
+!DB U+0448 afii10090
+!DC U+044D afii10095
+!DD U+0449 afii10091
+!DE U+0447 afii10089
+!DF U+044A afii10092
+!E0 U+042E afii10048
+!E1 U+0410 afii10017
+!E2 U+0411 afii10018
+!E3 U+0426 afii10040
+!E4 U+0414 afii10021
+!E5 U+0415 afii10022
+!E6 U+0424 afii10038
+!E7 U+0413 afii10020
+!E8 U+0425 afii10039
+!E9 U+0418 afii10026
+!EA U+0419 afii10027
+!EB U+041A afii10028
+!EC U+041B afii10029
+!ED U+041C afii10030
+!EE U+041D afii10031
+!EF U+041E afii10032
+!F0 U+041F afii10033
+!F1 U+042F afii10049
+!F2 U+0420 afii10034
+!F3 U+0421 afii10035
+!F4 U+0422 afii10036
+!F5 U+0423 afii10037
+!F6 U+0416 afii10024
+!F7 U+0412 afii10019
+!F8 U+042C afii10046
+!F9 U+042B afii10045
+!FA U+0417 afii10025
+!FB U+0428 afii10042
+!FC U+042D afii10047
+!FD U+0429 afii10043
+!FE U+0427 afii10041
+!FF U+042A afii10044
diff --git a/lib/tcpdf/fonts/utils/makefont.php b/lib/tcpdf/fonts/utils/makefont.php
new file mode 100644
index 0000000000..55af4a3454
--- /dev/null
+++ b/lib/tcpdf/fonts/utils/makefont.php
@@ -0,0 +1,564 @@
+.
+//
+// See LICENSE.TXT file for more information.
+// ----------------------------------------------------------------------------
+//
+// Description : Utility to generate font definition files fot TCPDF
+//
+// Author: Nicola Asuni, Olivier Plathey, Steven Wittens
+//
+// (c) Copyright:
+// Nicola Asuni
+// Tecnick.com S.r.l.
+// Via della Pace, 11
+// 09044 Quartucciu (CA)
+// ITALY
+// www.tecnick.com
+// info@tecnick.com
+//============================================================+
+
+/**
+ * Utility to generate font definition files fot TCPDF.
+ * @author Nicola Asuni, Olivier Plathey, Steven Wittens
+ * @copyright 2004-2008 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
+ * @package com.tecnick.tcpdf
+ * @link http://www.tcpdf.org
+ * @license http://www.gnu.org/copyleft/lesser.html LGPL
+*/
+
+/**
+ *
+ * @param string $fontfile path to font file (TTF or PFB).
+ * @param string $fmfile font metrics file (UFM or AFM).
+ * @param boolean $embedded Set to false to not embed the font, true otherwise (default).
+ * @param string $enc Name of the encoding table to use. Omit this parameter for TrueType Unicode, OpenType Unicode and symbolic fonts like Symbol or ZapfDingBats.
+ * @param array $patch Optional modification of the encoding
+ */
+function MakeFont($fontfile, $fmfile, $embedded=true, $enc="cp1252", $patch=array()) {
+ //Generate a font definition file
+ set_magic_quotes_runtime(0);
+ ini_set('auto_detect_line_endings','1');
+ if (!file_exists($fontfile)) {
+ die('Error: file not found: '.$fontfile);
+ }
+ if (!file_exists($fmfile)) {
+ die('Error: file not found: '.$fmfile);
+ }
+ $cidtogidmap = '';
+ $map = array();
+ $diff='';
+ $ffext = strtolower(substr($fontfile,-3));
+ $fmext = strtolower(substr($fmfile,-3));
+ if ($fmext == 'afm') {
+ if ($ffext == 'ttf') {
+ $type = 'TrueType';
+ } elseif ($ffext == 'pfb') {
+ $type = 'Type1';
+ } else {
+ die('Error: unrecognized font file extension: '.$ext);
+ }
+ if ($enc) {
+ $map = ReadMap($enc);
+ foreach ($patch as $cc => $gn) {
+ $map[$cc] = $gn;
+ }
+ }
+ $fm = ReadAFM($fmfile, $map);
+ if ($enc) {
+ $diff = MakeFontEncoding($map);
+ }
+ $fd = MakeFontDescriptor($fm, empty($map));
+ } elseif ($fmext == 'ufm') {
+ $enc = "";
+ if ($ffext == 'ttf') {
+ $type = 'TrueTypeUnicode';
+ } else {
+ die('Error: not a TrueType font: '.$ffext);
+ }
+ $fm = ReadUFM($fmfile, $cidtogidmap);
+ $fd = MakeFontDescriptor($fm, false);
+ }
+
+ //Start generation
+ $s = '";
+ SaveToFile($basename.'.php',$s);
+ print "Font definition file generated (".$basename.".php)\n";
+}
+
+/**
+ * Read the specified encoding map.
+ * @param string $enc map name (see /enc/ folder for valid names).
+ */
+function ReadMap($enc) {
+ //Read a map file
+ $file = dirname(__FILE__).'/enc/'.strtolower($enc).'.map';
+ $a = file($file);
+ if (empty($a)) {
+ die('Error: encoding not found: '.$enc);
+ }
+ $cc2gn = array();
+ foreach ($a as $l) {
+ if ($l{0} == '!') {
+ $e = preg_split('/[ \\t]+/',rtrim($l));
+ $cc = hexdec(substr($e[0],1));
+ $gn = $e[2];
+ $cc2gn[$cc] = $gn;
+ }
+ }
+ for($i=0; $i <= 255; $i++) {
+ if(!isset($cc2gn[$i])) {
+ $cc2gn[$i] = '.notdef';
+ }
+ }
+ return $cc2gn;
+}
+
+/**
+ * Read UFM file
+ */
+function ReadUFM($file, &$cidtogidmap) {
+ //Prepare empty CIDToGIDMap
+ $cidtogidmap = str_pad('', 256*256*2, "\x00");
+ //Read a font metric file
+ $a = file($file);
+ if (empty($a)) {
+ die('File not found');
+ }
+ $widths = array();
+ $fm = array();
+ foreach($a as $l) {
+ $e = explode(' ',chop($l));
+ if(count($e) < 2) {
+ continue;
+ }
+ $code = $e[0];
+ $param = $e[1];
+ if($code == 'U') {
+ // U 827 ; WX 0 ; N squaresubnosp ; G 675 ;
+ //Character metrics
+ $cc = (int)$e[1];
+ if ($cc != -1) {
+ $gn = $e[7];
+ $w = $e[4];
+ $glyph = $e[10];
+ $widths[$cc] = $w;
+ if($cc == ord('X')) {
+ $fm['CapXHeight'] = $e[13];
+ }
+ // Set GID
+ if ($cc >= 0 && $cc < 0xFFFF && $glyph) {
+ $cidtogidmap{$cc*2} = chr($glyph >> 8);
+ $cidtogidmap{$cc*2 + 1} = chr($glyph & 0xFF);
+ }
+ }
+ if(($gn == '.notdef') AND (!isset($fm['MissingWidth']))) {
+ $fm['MissingWidth'] = $w;
+ }
+ } elseif($code=='FontName') {
+ $fm['FontName']=$param;
+ } elseif($code=='Weight') {
+ $fm['Weight']=$param;
+ } elseif($code=='ItalicAngle') {
+ $fm['ItalicAngle']=(double)$param;
+ } elseif($code=='Ascender') {
+ $fm['Ascender']=(int)$param;
+ } elseif($code=='Descender') {
+ $fm['Descender']=(int)$param;
+ } elseif($code=='UnderlineThickness') {
+ $fm['UnderlineThickness']=(int)$param;
+ } elseif($code=='UnderlinePosition') {
+ $fm['UnderlinePosition']=(int)$param;
+ } elseif($code=='IsFixedPitch') {
+ $fm['IsFixedPitch']=($param=='true');
+ } elseif($code=='FontBBox') {
+ $fm['FontBBox']=array($e[1],$e[2],$e[3],$e[4]);
+ } elseif($code=='CapHeight') {
+ $fm['CapHeight']=(int)$param;
+ } elseif($code=='StdVW') {
+ $fm['StdVW']=(int)$param;
+ }
+ }
+ if(!isset($fm['MissingWidth'])) {
+ $fm['MissingWidth'] = 600;
+ }
+ if(!isset($fm['FontName'])) {
+ die('FontName not found');
+ }
+ $fm['Widths'] = $widths;
+ return $fm;
+}
+
+/**
+ * Read AFM file
+ */
+function ReadAFM($file,&$map) {
+ //Read a font metric file
+ $a = file($file);
+ if(empty($a)) {
+ die('File not found');
+ }
+ $widths = array();
+ $fm = array();
+ $fix = array('Edot'=>'Edotaccent','edot'=>'edotaccent','Idot'=>'Idotaccent','Zdot'=>'Zdotaccent','zdot'=>'zdotaccent',
+ 'Odblacute'=>'Ohungarumlaut','odblacute'=>'ohungarumlaut','Udblacute'=>'Uhungarumlaut','udblacute'=>'uhungarumlaut',
+ 'Gcedilla'=>'Gcommaaccent','gcedilla'=>'gcommaaccent','Kcedilla'=>'Kcommaaccent','kcedilla'=>'kcommaaccent',
+ 'Lcedilla'=>'Lcommaaccent','lcedilla'=>'lcommaaccent','Ncedilla'=>'Ncommaaccent','ncedilla'=>'ncommaaccent',
+ 'Rcedilla'=>'Rcommaaccent','rcedilla'=>'rcommaaccent','Scedilla'=>'Scommaaccent','scedilla'=>'scommaaccent',
+ 'Tcedilla'=>'Tcommaaccent','tcedilla'=>'tcommaaccent','Dslash'=>'Dcroat','dslash'=>'dcroat','Dmacron'=>'Dcroat','dmacron'=>'dcroat',
+ 'combininggraveaccent'=>'gravecomb','combininghookabove'=>'hookabovecomb','combiningtildeaccent'=>'tildecomb',
+ 'combiningacuteaccent'=>'acutecomb','combiningdotbelow'=>'dotbelowcomb','dongsign'=>'dong');
+ foreach($a as $l) {
+ $e = explode(' ',rtrim($l));
+ if (count($e) < 2) {
+ continue;
+ }
+ $code = $e[0];
+ $param = $e[1];
+ if ($code == 'C') {
+ //Character metrics
+ $cc = (int)$e[1];
+ $w = $e[4];
+ $gn = $e[7];
+ if(substr($gn,-4) == '20AC') {
+ $gn = 'Euro';
+ }
+ if (isset($fix[$gn])) {
+ //Fix incorrect glyph name
+ foreach ($map as $c => $n) {
+ if ($n == $fix[$gn]) {
+ $map[$c] = $gn;
+ }
+ }
+ }
+ if (empty($map)) {
+ //Symbolic font: use built-in encoding
+ $widths[$cc] = $w;
+ } else {
+ $widths[$gn] = $w;
+ if($gn == 'X') {
+ $fm['CapXHeight'] = $e[13];
+ }
+ }
+ if($gn == '.notdef') {
+ $fm['MissingWidth'] = $w;
+ }
+ } elseif($code=='FontName') {
+ $fm['FontName']=$param;
+ } elseif($code=='Weight') {
+ $fm['Weight']=$param;
+ } elseif($code=='ItalicAngle') {
+ $fm['ItalicAngle']=(double)$param;
+ } elseif($code=='Ascender') {
+ $fm['Ascender']=(int)$param;
+ } elseif($code=='Descender') {
+ $fm['Descender']=(int)$param;
+ } elseif($code=='UnderlineThickness') {
+ $fm['UnderlineThickness']=(int)$param;
+ } elseif($code=='UnderlinePosition') {
+ $fm['UnderlinePosition']=(int)$param;
+ } elseif($code=='IsFixedPitch') {
+ $fm['IsFixedPitch']=($param=='true');
+ } elseif($code=='FontBBox') {
+ $fm['FontBBox']=array($e[1],$e[2],$e[3],$e[4]);
+ } elseif($code=='CapHeight') {
+ $fm['CapHeight']=(int)$param;
+ } elseif($code=='StdVW') {
+ $fm['StdVW']=(int)$param;
+ }
+ }
+ if (!isset($fm['FontName'])) {
+ die('FontName not found');
+ }
+ if (!empty($map)) {
+ if (!isset($widths['.notdef'])) {
+ $widths['.notdef'] = 600;
+ }
+ if (!isset($widths['Delta']) AND isset($widths['increment'])) {
+ $widths['Delta']=$widths['increment'];
+ }
+ //Order widths according to map
+ for ($i=0; $i <= 255; $i++) {
+ if (!isset($widths[$map[$i]])) {
+ print "Warning: character ".$map[$i]." is missing\n";
+ $widths[$i] = $widths['.notdef'];
+ } else {
+ $widths[$i] = $widths[$map[$i]];
+ }
+ }
+ }
+ $fm['Widths'] = $widths;
+ return $fm;
+}
+
+function MakeFontDescriptor($fm, $symbolic = false) {
+ //Ascent
+ $asc = (isset($fm['Ascender']) ? $fm['Ascender'] : 1000);
+ $fd = "array('Ascent'=>".$asc;
+ //Descent
+ $desc = (isset($fm['Descender']) ? $fm['Descender'] : -200);
+ $fd .= ",'Descent'=>".$desc;
+ //CapHeight
+ if (isset($fm['CapHeight'])) {
+ $ch=$fm['CapHeight'];
+ } elseif (isset($fm['CapXHeight'])) {
+ $ch=$fm['CapXHeight'];
+ } else {
+ $ch = $asc;
+ }
+ $fd .= ",'CapHeight'=>".$ch;
+ //Flags
+ $flags = 0;
+ if (isset($fm['IsFixedPitch']) AND $fm['IsFixedPitch']) {
+ $flags += 1<<0;
+ }
+ if ($symbolic) {
+ $flags += 1<<2;
+ } else {
+ $flags += 1<<5;
+ }
+ if (isset($fm['ItalicAngle']) AND ($fm['ItalicAngle'] != 0)) {
+ $flags += 1<<6;
+ }
+ $fd .= ",'Flags'=>".$flags;
+ //FontBBox
+ if (isset($fm['FontBBox'])) {
+ $fbb = $fm['FontBBox'];
+ } else {
+ $fbb = array(0, $des-100, 1000, $asc+100);
+ }
+ $fd .= ",'FontBBox'=>'[".$fbb[0].' '.$fbb[1].' '.$fbb[2].' '.$fbb[3]."]'";
+ //ItalicAngle
+ $ia = (isset($fm['ItalicAngle']) ? $fm['ItalicAngle'] : 0);
+ $fd .= ",'ItalicAngle'=>".$ia;
+ //StemV
+ if (isset($fm['StdVW'])) {
+ $stemv = $fm['StdVW'];
+ } elseif (isset($fm['Weight']) and eregi('(bold|black)',$fm['Weight'])) {
+ $stemv=120;
+ } else {
+ $stemv = 70;
+ }
+ $fd .= ",'StemV'=>".$stemv;
+ //MissingWidth
+ if(isset($fm['MissingWidth'])) {
+ $fd .= ",'MissingWidth'=>".$fm['MissingWidth'];
+ }
+ $fd .= ')';
+ return $fd;
+}
+
+function MakeWidthArray($fm) {
+ //Make character width array
+ $s = "array(";
+ $cw = $fm['Widths'];
+ $els = array();
+ $c = 0;
+ foreach ($cw as $i => $w) {
+ if (is_numeric($i)) {
+ $els[] = $i.'=>'.$w;
+ }
+ }
+ $s .= implode(',', $els);
+ $s .= ')';
+ return $s;
+}
+
+function MakeFontEncoding($map) {
+ //Build differences from reference encoding
+ $ref = ReadMap('cp1252');
+ $s = '';
+ $last = 0;
+ for ($i=32; $i <= 255; $i++) {
+ if ($map[$i] != $ref[$i]) {
+ if ($i != $last+1) {
+ $s .= $i.' ';
+ }
+ $last = $i;
+ $s .= '/'.$map[$i].' ';
+ }
+ }
+ return rtrim($s);
+}
+
+function SaveToFile($file, $s, $mode='t') {
+ $f = fopen($file, 'w'.$mode);
+ if(!$f) {
+ die('Can\'t write to file '.$file);
+ }
+ fwrite($f, $s, strlen($s));
+ fclose($f);
+}
+
+function ReadShort($f) {
+ $a = unpack('n1n',fread($f,2));
+ return $a['n'];
+}
+
+function ReadLong($f) {
+ $a = unpack('N1N',fread($f,4));
+ return $a['N'];
+}
+
+function CheckTTF($file) {
+ //Check if font license allows embedding
+ $f = fopen($file,'rb');
+ if(!$f) {
+ die('Error: unable to open '.$file);
+ }
+ //Extract number of tables
+ fseek($f, 4, SEEK_CUR);
+ $nb = ReadShort($f);
+ fseek($f, 6, SEEK_CUR);
+ //Seek OS/2 table
+ $found = false;
+ for ($i=0; $i < $nb; $i++) {
+ if (fread($f,4)=='OS/2') {
+ $found = true;
+ break;
+ }
+ fseek($f, 12, SEEK_CUR);
+ }
+ if(!$found) {
+ fclose($f);
+ return;
+ }
+ fseek($f, 4, SEEK_CUR);
+ $offset = ReadLong($f);
+ fseek($f, $offset, SEEK_SET);
+ //Extract fsType flags
+ fseek($f, 8, SEEK_CUR);
+ $fsType = ReadShort($f);
+ $rl = ($fsType & 0x02)!=0;
+ $pp = ($fsType & 0x04)!=0;
+ $e = ($fsType & 0x08)!=0;
+ fclose($f);
+ if($rl AND (!$pp) AND (!$e)) {
+ print "Warning: font license does not allow embedding\n";
+ }
+}
+
+$arg = $GLOBALS['argv'];
+if (count($arg) >= 3) {
+ ob_start();
+ array_shift($arg);
+ if (!isset($arg[2])) {
+ $arg[2] = true;
+ }
+ if (!isset($arg[3])) {
+ $arg[3] = 'cp1252';
+ }
+ if (!isset($arg[4])) {
+ $arg[4] = array();
+ }
+ MakeFont($arg[0], $arg[1], $arg[2], $arg[3], $arg[4]);
+ $t = ob_get_clean();
+ print preg_replace('!
!i', "\n", $t);
+} else {
+ print "Usage: makefont.php