diff --git a/.settings/org.eclipse.php.core.prefs b/.settings/org.eclipse.php.core.prefs new file mode 100644 index 00000000000..ef75a787755 --- /dev/null +++ b/.settings/org.eclipse.php.core.prefs @@ -0,0 +1,3 @@ +#Wed Dec 01 20:46:32 CET 2010 +eclipse.preferences.version=1 +include_path= diff --git a/dev/test/example.pdf b/dev/test/example.pdf new file mode 100644 index 00000000000..1b8a56c7158 Binary files /dev/null and b/dev/test/example.pdf differ diff --git a/htdocs/includes/login/functions_myopenid.php b/htdocs/includes/login/functions_myopenid.php new file mode 100644 index 00000000000..17baa87a7a1 --- /dev/null +++ b/htdocs/includes/login/functions_myopenid.php @@ -0,0 +1,371 @@ + + * Copyright (C) 2007-2009 Regis Houssin + * + * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +/** + * \file htdocs/includes/login/functions_dolibarr.php + * \ingroup core + * \brief Authentication functions for Dolibarr mode + * \version $Id$ + */ + + +/** + * \brief Check user and password + * \param usertotest Login + * \param passwordtotest Password + * \return string Login if ok, '' if ko. + */ +function check_user_password_myopenid($usertotest,$passwordtotest) +{ + global $_POST,$db,$conf,$langs; + + dol_syslog("functions_dolibarr::check_user_password_myopenid usertotest=".$usertotest); + + $login=''; + + // Get identity from user and redirect browser to OpenID Server + if (isset($_POST['username'])){ + $openid = new SimpleOpenID; + $openid->SetIdentity($_POST['username']); + $protocol = ($conf->file->main_force_https ? 'https://' : 'http://'); + $openid->SetTrustRoot($protocol . $_SERVER["HTTP_HOST"]); + $openid->SetRequiredFields(array('email','fullname')); + $_SESSION['dol_entity'] = $_POST["entity"]; + // $openid->SetOptionalFields(array('dob','gender','postcode','country','language','timezone')); + if ($openid->GetOpenIDServer()){ + $openid->SetApprovedURL($protocol . $_SERVER["HTTP_HOST"] . $_SERVER["SCRIPT_NAME"]); // Send Response from OpenID server to this script + $openid->Redirect(); // This will redirect user to OpenID Server + }else{ + $error = $openid->GetError(); + return false; + } + return false; + } + // Perform HTTP Request to OpenID server to validate key + elseif($_GET['openid_mode'] == 'id_res') + { + $openid = new SimpleOpenID; + $openid->SetIdentity($_GET['openid_identity']); + $openid_validation_result = $openid->ValidateWithServer(); + if ($openid_validation_result == true) + { + // OK HERE KEY IS VALID + + $sql ="SELECT login"; + $sql.=" FROM ".MAIN_DB_PREFIX."user"; + $sql.=" WHERE openid = '".addslashes($_GET['openid_identity'])."'"; + $sql.=" AND entity IN (0," . ($_SESSION["dol_entity"] ? $_SESSION["dol_entity"] : 1) . ")"; + + dol_syslog("functions_dolibarr::check_user_password_myopenid sql=".$sql); + $resql=$db->query($sql); + if ($resql) + { + $obj=$db->fetch_object($resql); + if ($obj) + { + $login=$obj->login; + } + } + } + else if($openid->IsError() == true) + { + // ON THE WAY, WE GOT SOME ERROR + $error = $openid->GetError(); + return false; + } + else + { + // Signature Verification Failed + //echo "INVALID AUTHORIZATION"; + return false; + } + }else if ($_GET['openid_mode'] == 'cancel'){ + // User Canceled your Request + //echo "USER CANCELED REQUEST"; + return false; + } + + return $login; +} + + +class SimpleOpenID +{ + var $openid_url_identity; + var $URLs = array(); + var $error = array(); + var $fields = array( + 'required' => array(), + 'optional' => array(), + ); + + function SimpleOpenID(){ + if (!function_exists('curl_exec')) { + die('Error: Class SimpleOpenID requires curl extension to work'); + } + } + function SetOpenIDServer($a){ + $this->URLs['openid_server'] = $a; + } + function SetTrustRoot($a){ + $this->URLs['trust_root'] = $a; + } + function SetCancelURL($a){ + $this->URLs['cancel'] = $a; + } + function SetApprovedURL($a){ + $this->URLs['approved'] = $a; + } + function SetRequiredFields($a){ + if (is_array($a)){ + $this->fields['required'] = $a; + }else{ + $this->fields['required'][] = $a; + } + } + function SetOptionalFields($a){ + if (is_array($a)){ + $this->fields['optional'] = $a; + }else{ + $this->fields['optional'][] = $a; + } + } + function SetIdentity($a){ // Set Identity URL + if ((stripos($a, 'http://') === false) + && (stripos($a, 'https://') === false)){ + $a = 'http://'.$a; + } +/* + $u = parse_url(trim($a)); + if (!isset($u['path'])){ + $u['path'] = '/'; + }else if(substr($u['path'],-1,1) == '/'){ + $u['path'] = substr($u['path'], 0, strlen($u['path'])-1); + } + if (isset($u['query'])){ // If there is a query string, then use identity as is + $identity = $a; + }else{ + $identity = $u['scheme'] . '://' . $u['host'] . $u['path']; + } +//*/ + $this->openid_url_identity = $a; + } + function GetIdentity(){ // Get Identity + return $this->openid_url_identity; + } + function GetError(){ + $e = $this->error; + return array('code'=>$e[0],'description'=>$e[1]); + } + + function ErrorStore($code, $desc = null){ + $errs['OPENID_NOSERVERSFOUND'] = 'Cannot find OpenID Server TAG on Identity page.'; + if ($desc == null){ + $desc = $errs[$code]; + } + $this->error = array($code,$desc); + } + + function IsError(){ + if (count($this->error) > 0){ + return true; + }else{ + return false; + } + } + + function splitResponse($response) { + $r = array(); + $response = explode("\n", $response); + foreach($response as $line) { + $line = trim($line); + if ($line != "") { + list($key, $value) = explode(":", $line, 2); + $r[trim($key)] = trim($value); + } + } + return $r; + } + + function OpenID_Standarize($openid_identity = null){ + if ($openid_identity === null) + $openid_identity = $this->openid_url_identity; + + $u = parse_url(strtolower(trim($openid_identity))); + + if (!isset($u['path']) || ($u['path'] == '/')) { + $u['path'] = ''; + } + if(substr($u['path'],-1,1) == '/'){ + $u['path'] = substr($u['path'], 0, strlen($u['path'])-1); + } + if (isset($u['query'])){ // If there is a query string, then use identity as is + return $u['host'] . $u['path'] . '?' . $u['query']; + }else{ + return $u['host'] . $u['path']; + } + } + + function array2url($arr){ // converts associated array to URL Query String + if (!is_array($arr)){ + return false; + } + $query = ''; + foreach($arr as $key => $value){ + $query .= $key . "=" . $value . "&"; + } + return $query; + } + function FSOCK_Request($url, $method="GET", $params = ""){ + $fp = fsockopen("ssl://www.myopenid.com", 443, $errno, $errstr, 3); // Connection timeout is 3 seconds + if (!$fp) { + $this->ErrorStore('OPENID_SOCKETERROR', $errstr); + return false; + } else { + $request = $method . " /server HTTP/1.0\r\n"; + $request .= "User-Agent: Simple OpenID PHP Class (http://www.phpclasses.org/simple_openid)\r\n"; + $request .= "Connection: close\r\n\r\n"; + fwrite($fp, $request); + stream_set_timeout($fp, 4); // Connection response timeout is 4 seconds + $res = fread($fp, 2000); + $info = stream_get_meta_data($fp); + fclose($fp); + + if ($info['timed_out']) { + $this->ErrorStore('OPENID_SOCKETTIMEOUT'); + } else { + return $res; + } + } + } + function CURL_Request($url, $method="GET", $params = "") { // Remember, SSL MUST BE SUPPORTED + if (is_array($params)) $params = $this->array2url($params); + + $curl = curl_init($url . ($method == "GET" && $params != "" ? "?" . $params : "")); + @curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); + curl_setopt($curl, CURLOPT_HEADER, false); + curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); + curl_setopt($curl, CURLOPT_HTTPGET, ($method == "GET")); + curl_setopt($curl, CURLOPT_POST, ($method == "POST")); + if ($method == "POST") curl_setopt($curl, CURLOPT_POSTFIELDS, $params); + curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); + $response = curl_exec($curl); + + if (curl_errno($curl) == 0){ + $response; + }else{ + $this->ErrorStore('OPENID_CURL', curl_error($curl)); + } + return $response; + } + + function HTML2OpenIDServer($content) { + $get = array(); + + // Get details of their OpenID server and (optional) delegate + preg_match_all('/]*rel=[\'"]openid.server[\'"][^>]*href=[\'"]([^\'"]+)[\'"][^>]*\/?>/i', $content, $matches1); + preg_match_all('/]*href=\'"([^\'"]+)[\'"][^>]*rel=[\'"]openid.server[\'"][^>]*\/?>/i', $content, $matches2); + $servers = array_merge($matches1[1], $matches2[1]); + + preg_match_all('/]*rel=[\'"]openid.delegate[\'"][^>]*href=[\'"]([^\'"]+)[\'"][^>]*\/?>/i', $content, $matches1); + + preg_match_all('/]*href=[\'"]([^\'"]+)[\'"][^>]*rel=[\'"]openid.delegate[\'"][^>]*\/?>/i', $content, $matches2); + + $delegates = array_merge($matches1[1], $matches2[1]); + + $ret = array($servers, $delegates); + return $ret; + } + + function GetOpenIDServer(){ + $response = $this->CURL_Request($this->openid_url_identity); + list($servers, $delegates) = $this->HTML2OpenIDServer($response); + if (count($servers) == 0){ + $this->ErrorStore('OPENID_NOSERVERSFOUND'); + return false; + } + if (isset($delegates[0]) + && ($delegates[0] != "")){ + $this->SetIdentity($delegates[0]); + } + $this->SetOpenIDServer($servers[0]); + return $servers[0]; + } + + function GetRedirectURL(){ + $params = array(); + $params['openid.return_to'] = urlencode($this->URLs['approved']); + $params['openid.mode'] = 'checkid_setup'; + $params['openid.identity'] = urlencode($this->openid_url_identity); + $params['openid.trust_root'] = urlencode($this->URLs['trust_root']); + + if (isset($this->fields['required']) + && (count($this->fields['required']) > 0)) { + $params['openid.sreg.required'] = implode(',',$this->fields['required']); + } + if (isset($this->fields['optional']) + && (count($this->fields['optional']) > 0)) { + $params['openid.sreg.optional'] = implode(',',$this->fields['optional']); + } + return $this->URLs['openid_server'] . "?". $this->array2url($params); + } + + function Redirect(){ + $redirect_to = $this->GetRedirectURL(); + if (headers_sent()){ // Use JavaScript to redirect if content has been previously sent (not recommended, but safe) + echo ''; + }else{ // Default Header Redirect + header('Location: ' . $redirect_to); + } + } + + function ValidateWithServer(){ + $params = array( + 'openid.assoc_handle' => urlencode($_GET['openid_assoc_handle']), + 'openid.signed' => urlencode($_GET['openid_signed']), + 'openid.sig' => urlencode($_GET['openid_sig']) + ); + // Send only required parameters to confirm validity + $arr_signed = explode(",",str_replace('sreg.','sreg_',$_GET['openid_signed'])); + for ($i=0; $iGetOpenIDServer(); + if ($openid_server == false){ + return false; + } + $response = $this->CURL_Request($openid_server,'POST',$params); + $data = $this->splitResponse($response); + if ($data['is_valid'] == "true") { + return true; + }else{ + return false; + } + } +} + +?> \ No newline at end of file diff --git a/htdocs/includes/tcpdf/cache/chapter_demo_1.txt b/htdocs/includes/tcpdf/cache/chapter_demo_1.txt new file mode 100644 index 00000000000..4025de9303f --- /dev/null +++ b/htdocs/includes/tcpdf/cache/chapter_demo_1.txt @@ -0,0 +1,19 @@ +Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed imperdiet lectus. Phasellus quis velit velit, non condimentum quam. Sed neque urna, ultrices ac volutpat vel, laoreet vitae augue. Sed vel velit erat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras eget velit nulla, eu sagittis elit. Nunc ac arcu est, in lobortis tellus. Praesent condimentum rhoncus sodales. In hac habitasse platea dictumst. Proin porta eros pharetra enim tincidunt dignissim nec vel dolor. Cras sapien elit, ornare ac dignissim eu, ultricies ac eros. Maecenas augue magna, ultrices a congue in, mollis eu nulla. Nunc venenatis massa at est eleifend faucibus. Vivamus sed risus lectus, nec interdum nunc. + +Fusce et felis vitae diam lobortis sollicitudin. Aenean tincidunt accumsan nisi, id vehicula quam laoreet elementum. Phasellus egestas interdum erat, et viverra ipsum ultricies ac. Praesent sagittis augue at augue volutpat eleifend. Cras nec orci neque. Mauris bibendum posuere blandit. Donec feugiat mollis dui sit amet pellentesque. Sed a enim justo. Donec tincidunt, nisl eget elementum aliquam, odio ipsum ultrices quam, eu porttitor ligula urna at lorem. Donec varius, eros et convallis laoreet, ligula tellus consequat felis, ut ornare metus tellus sodales velit. Duis sed diam ante. Ut rutrum malesuada massa, vitae consectetur ipsum rhoncus sed. Suspendisse potenti. Pellentesque a congue massa. + +Integer non sem eget neque mattis accumsan. Maecenas eu nisl mauris, sit amet interdum ipsum. In pharetra erat vel lectus venenatis elementum. Nulla non elit ligula, sit amet mollis urna. Morbi ut gravida est. Mauris tincidunt sem et turpis molestie malesuada. Curabitur vel nulla risus, sed mollis erat. Suspendisse vehicula accumsan purus nec varius. Donec fermentum lorem id felis sodales dictum. Quisque et dolor ipsum. Nam luctus consectetur dui vitae fermentum. Curabitur sodales consequat augue, id ultricies augue tempor ac. Aliquam ac magna id ipsum vehicula bibendum. Sed elementum congue tristique. Phasellus vel lorem eu lectus porta sodales. Etiam neque tortor, sagittis id pharetra quis, laoreet vel arcu. + +Cras quam mi, ornare laoreet laoreet vel, vehicula at lacus. Maecenas a lacus accumsan augue convallis sagittis sed quis odio. Morbi sit amet turpis diam, dictum convallis urna. Cras eget interdum augue. Cras eu nisi sit amet dolor faucibus porttitor. Suspendisse potenti. Nunc vitae dolor risus, at cursus libero. Suspendisse bibendum tellus non nibh hendrerit tristique. Mauris eget orci elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam porta libero non ante laoreet semper. Proin volutpat sodales mi, ac fermentum erat sagittis in. Vivamus at viverra felis. Ut pretium facilisis ante et pharetra. + +Nulla facilisi. Cras varius quam eget libero aliquam vitae tincidunt leo rutrum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Pellentesque a nisl massa, quis pretium urna. Proin vel porttitor tortor. Cras rhoncus congue velit in bibendum. Donec pharetra semper augue id lacinia. Quisque magna quam, hendrerit eu aliquam et, pellentesque ut tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Maecenas nulla quam, rutrum eu feugiat at, elementum eu libero. Maecenas ullamcorper leo et turpis rutrum ac laoreet eros faucibus. Phasellus condimentum lorem quis neque imperdiet quis molestie enim iaculis. Phasellus risus est, vestibulum ut convallis ultrices, dignissim nec erat. Etiam congue lobortis laoreet. Nulla ut neque sed velit dapibus semper. Quisque nec dolor id nibh eleifend iaculis. Vivamus vitae fermentum odio. Etiam malesuada quam in nulla aliquam sed convallis dui feugiat. + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed imperdiet lectus. Phasellus quis velit velit, non condimentum quam. Sed neque urna, ultrices ac volutpat vel, laoreet vitae augue. Sed vel velit erat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras eget velit nulla, eu sagittis elit. Nunc ac arcu est, in lobortis tellus. Praesent condimentum rhoncus sodales. In hac habitasse platea dictumst. Proin porta eros pharetra enim tincidunt dignissim nec vel dolor. Cras sapien elit, ornare ac dignissim eu, ultricies ac eros. Maecenas augue magna, ultrices a congue in, mollis eu nulla. Nunc venenatis massa at est eleifend faucibus. Vivamus sed risus lectus, nec interdum nunc. + +Fusce et felis vitae diam lobortis sollicitudin. Aenean tincidunt accumsan nisi, id vehicula quam laoreet elementum. Phasellus egestas interdum erat, et viverra ipsum ultricies ac. Praesent sagittis augue at augue volutpat eleifend. Cras nec orci neque. Mauris bibendum posuere blandit. Donec feugiat mollis dui sit amet pellentesque. Sed a enim justo. Donec tincidunt, nisl eget elementum aliquam, odio ipsum ultrices quam, eu porttitor ligula urna at lorem. Donec varius, eros et convallis laoreet, ligula tellus consequat felis, ut ornare metus tellus sodales velit. Duis sed diam ante. Ut rutrum malesuada massa, vitae consectetur ipsum rhoncus sed. Suspendisse potenti. Pellentesque a congue massa. + +Integer non sem eget neque mattis accumsan. Maecenas eu nisl mauris, sit amet interdum ipsum. In pharetra erat vel lectus venenatis elementum. Nulla non elit ligula, sit amet mollis urna. Morbi ut gravida est. Mauris tincidunt sem et turpis molestie malesuada. Curabitur vel nulla risus, sed mollis erat. Suspendisse vehicula accumsan purus nec varius. Donec fermentum lorem id felis sodales dictum. Quisque et dolor ipsum. Nam luctus consectetur dui vitae fermentum. Curabitur sodales consequat augue, id ultricies augue tempor ac. Aliquam ac magna id ipsum vehicula bibendum. Sed elementum congue tristique. Phasellus vel lorem eu lectus porta sodales. Etiam neque tortor, sagittis id pharetra quis, laoreet vel arcu. + +Cras quam mi, ornare laoreet laoreet vel, vehicula at lacus. Maecenas a lacus accumsan augue convallis sagittis sed quis odio. Morbi sit amet turpis diam, dictum convallis urna. Cras eget interdum augue. Cras eu nisi sit amet dolor faucibus porttitor. Suspendisse potenti. Nunc vitae dolor risus, at cursus libero. Suspendisse bibendum tellus non nibh hendrerit tristique. Mauris eget orci elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam porta libero non ante laoreet semper. Proin volutpat sodales mi, ac fermentum erat sagittis in. Vivamus at viverra felis. Ut pretium facilisis ante et pharetra. + +Nulla facilisi. Cras varius quam eget libero aliquam vitae tincidunt leo rutrum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Pellentesque a nisl massa, quis pretium urna. Proin vel porttitor tortor. Cras rhoncus congue velit in bibendum. Donec pharetra semper augue id lacinia. Quisque magna quam, hendrerit eu aliquam et, pellentesque ut tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Maecenas nulla quam, rutrum eu feugiat at, elementum eu libero. Maecenas ullamcorper leo et turpis rutrum ac laoreet eros faucibus. Phasellus condimentum lorem quis neque imperdiet quis molestie enim iaculis. Phasellus risus est, vestibulum ut convallis ultrices, dignissim nec erat. Etiam congue lobortis laoreet. Nulla ut neque sed velit dapibus semper. Quisque nec dolor id nibh eleifend iaculis. Vivamus vitae fermentum odio. Etiam malesuada quam in nulla aliquam sed convallis dui feugiat. diff --git a/htdocs/includes/tcpdf/cache/chapter_demo_2.txt b/htdocs/includes/tcpdf/cache/chapter_demo_2.txt new file mode 100644 index 00000000000..cd7bfe68c3f --- /dev/null +++ b/htdocs/includes/tcpdf/cache/chapter_demo_2.txt @@ -0,0 +1,23 @@ +

Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed imperdiet lectus. Phasellus quis velit velit, non condimentum quam. Sed neque urna, ultrices ac volutpat vel, laoreet vitae augue. Sed vel velit erat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras eget velit nulla, eu sagittis elit. Nunc ac arcu est, in lobortis tellus. Praesent condimentum rhoncus sodales. In hac habitasse platea dictumst. Proin porta eros pharetra enim tincidunt dignissim nec vel dolor. Cras sapien elit, ornare ac dignissim eu, ultricies ac eros. Maecenas augue magna, ultrices a congue in, mollis eu nulla. Nunc venenatis massa at est eleifend faucibus. Vivamus sed risus lectus, nec interdum nunc.

+ + + +

Fusce et felis vitae diam lobortis sollicitudin. Aenean tincidunt accumsan nisi, id vehicula quam laoreet elementum. Phasellus egestas interdum erat, et viverra ipsum ultricies ac. Praesent sagittis augue at augue volutpat eleifend. Cras nec orci neque. Mauris bibendum posuere blandit. Donec feugiat mollis dui sit amet pellentesque. Sed a enim justo. Donec tincidunt, nisl eget elementum aliquam, odio ipsum ultrices quam, eu porttitor ligula urna at lorem. Donec varius, eros et convallis laoreet, ligula tellus consequat felis, ut ornare metus tellus sodales velit. Duis sed diam ante. Ut rutrum malesuada massa, vitae consectetur ipsum rhoncus sed. Suspendisse potenti. Pellentesque a congue massa.

+ +

Integer non sem eget neque mattis accumsan. Maecenas eu nisl mauris, sit amet interdum ipsum. In pharetra erat vel lectus venenatis elementum. Nulla non elit ligula, sit amet mollis urna. Morbi ut gravida est. Mauris tincidunt sem et turpis molestie malesuada. Curabitur vel nulla risus, sed mollis erat. Suspendisse vehicula accumsan purus nec varius. Donec fermentum lorem id felis sodales dictum. Quisque et dolor ipsum. Nam luctus consectetur dui vitae fermentum. Curabitur sodales consequat augue, id ultricies augue tempor ac. Aliquam ac magna id ipsum vehicula bibendum. Sed elementum congue tristique. Phasellus vel lorem eu lectus porta sodales. Etiam neque tortor, sagittis id pharetra quis, laoreet vel arcu.

+ +

Cras quam mi, ornare laoreet laoreet vel, vehicula at lacus. Maecenas a lacus accumsan augue convallis sagittis sed quis odio. Morbi sit amet turpis diam, dictum convallis urna. Cras eget interdum augue. Cras eu nisi sit amet dolor faucibus porttitor. Suspendisse potenti. Nunc vitae dolor risus, at cursus libero. Suspendisse bibendum tellus non nibh hendrerit tristique. Mauris eget orci elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam porta libero non ante laoreet semper. Proin volutpat sodales mi, ac fermentum erat sagittis in. Vivamus at viverra felis. Ut pretium facilisis ante et pharetra.

+ +

Nulla facilisi. Cras varius quam eget libero aliquam vitae tincidunt leo rutrum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Pellentesque a nisl massa, quis pretium urna. Proin vel porttitor tortor. Cras rhoncus congue velit in bibendum. Donec pharetra semper augue id lacinia. Quisque magna quam, hendrerit eu aliquam et, pellentesque ut tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Maecenas nulla quam, rutrum eu feugiat at, elementum eu libero. Maecenas ullamcorper leo et turpis rutrum ac laoreet eros faucibus. Phasellus condimentum lorem quis neque imperdiet quis molestie enim iaculis. Phasellus risus est, vestibulum ut convallis ultrices, dignissim nec erat. Etiam congue lobortis laoreet. Nulla ut neque sed velit dapibus semper. Quisque nec dolor id nibh eleifend iaculis. Vivamus vitae fermentum odio. Etiam malesuada quam in nulla aliquam sed convallis dui feugiat.

+ +

Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed imperdiet lectus. Phasellus quis velit velit, non condimentum quam. Sed neque urna, ultrices ac volutpat vel, laoreet vitae augue. Sed vel velit erat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras eget velit nulla, eu sagittis elit. Nunc ac arcu est, in lobortis tellus. Praesent condimentum rhoncus sodales. In hac habitasse platea dictumst. Proin porta eros pharetra enim tincidunt dignissim nec vel dolor. Cras sapien elit, ornare ac dignissim eu, ultricies ac eros. Maecenas augue magna, ultrices a congue in, mollis eu nulla. Nunc venenatis massa at est eleifend faucibus. Vivamus sed risus lectus, nec interdum nunc.

+ + + +

Fusce et felis vitae diam lobortis sollicitudin. Aenean tincidunt accumsan nisi, id vehicula quam laoreet elementum. Phasellus egestas interdum erat, et viverra ipsum ultricies ac. Praesent sagittis augue at augue volutpat eleifend. Cras nec orci neque. Mauris bibendum posuere blandit. Donec feugiat mollis dui sit amet pellentesque. Sed a enim justo. Donec tincidunt, nisl eget elementum aliquam, odio ipsum ultrices quam, eu porttitor ligula urna at lorem. Donec varius, eros et convallis laoreet, ligula tellus consequat felis, ut ornare metus tellus sodales velit. Duis sed diam ante. Ut rutrum malesuada massa, vitae consectetur ipsum rhoncus sed. Suspendisse potenti. Pellentesque a congue massa.

+ +

Integer non sem eget neque mattis accumsan. Maecenas eu nisl mauris, sit amet interdum ipsum. In pharetra erat vel lectus venenatis elementum. Nulla non elit ligula, sit amet mollis urna. Morbi ut gravida est. Mauris tincidunt sem et turpis molestie malesuada. Curabitur vel nulla risus, sed mollis erat. Suspendisse vehicula accumsan purus nec varius. Donec fermentum lorem id felis sodales dictum. Quisque et dolor ipsum. Nam luctus consectetur dui vitae fermentum. Curabitur sodales consequat augue, id ultricies augue tempor ac. Aliquam ac magna id ipsum vehicula bibendum. Sed elementum congue tristique. Phasellus vel lorem eu lectus porta sodales. Etiam neque tortor, sagittis id pharetra quis, laoreet vel arcu.

+ +

Cras quam mi, ornare laoreet laoreet vel, vehicula at lacus. Maecenas a lacus accumsan augue convallis sagittis sed quis odio. Morbi sit amet turpis diam, dictum convallis urna. Cras eget interdum augue. Cras eu nisi sit amet dolor faucibus porttitor. Suspendisse potenti. Nunc vitae dolor risus, at cursus libero. Suspendisse bibendum tellus non nibh hendrerit tristique. Mauris eget orci elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam porta libero non ante laoreet semper. Proin volutpat sodales mi, ac fermentum erat sagittis in. Vivamus at viverra felis. Ut pretium facilisis ante et pharetra.

+ +

Nulla facilisi. Cras varius quam eget libero aliquam vitae tincidunt leo rutrum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Pellentesque a nisl massa, quis pretium urna. Proin vel porttitor tortor. Cras rhoncus congue velit in bibendum. Donec pharetra semper augue id lacinia. Quisque magna quam, hendrerit eu aliquam et, pellentesque ut tellus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Maecenas nulla quam, rutrum eu feugiat at, elementum eu libero. Maecenas ullamcorper leo et turpis rutrum ac laoreet eros faucibus. Phasellus condimentum lorem quis neque imperdiet quis molestie enim iaculis. Phasellus risus est, vestibulum ut convallis ultrices, dignissim nec erat. Etiam congue lobortis laoreet. Nulla ut neque sed velit dapibus semper. Quisque nec dolor id nibh eleifend iaculis. Vivamus vitae fermentum odio. Etiam malesuada quam in nulla aliquam sed convallis dui feugiat.

diff --git a/htdocs/includes/tcpdf/cache/table_data_demo.txt b/htdocs/includes/tcpdf/cache/table_data_demo.txt new file mode 100644 index 00000000000..5a48a42e77b --- /dev/null +++ b/htdocs/includes/tcpdf/cache/table_data_demo.txt @@ -0,0 +1,15 @@ +Austria;Vienna;83859;8075 +Belgium;Brussels;30518;10192 +Denmark;Copenhagen;43094;5295 +Finland;Helsinki;304529;5147 +France;Paris;543965;58728 +Germany;Berlin;357022;82057 +Greece;Athens;131625;10511 +Ireland;Dublin;70723;3694 +Italy;Roma;301316;57563 +Luxembourg;Luxembourg;2586;424 +Netherlands;Amsterdam;41526;15654 +Portugal;Lisbon;91906;9957 +Spain;Madrid;504790;39348 +Sweden;Stockholm;410934;8839 +United Kingdom;London;243820;58862 diff --git a/htdocs/includes/tcpdf/cache/utf8test.txt b/htdocs/includes/tcpdf/cache/utf8test.txt new file mode 100644 index 00000000000..723a37d84b0 --- /dev/null +++ b/htdocs/includes/tcpdf/cache/utf8test.txt @@ -0,0 +1,122 @@ +Sentences that contain all letters commonly used in a language +-------------------------------------------------------------- + +Markus Kuhn -- 2001-09-02 + +This file is UTF-8 encoded. + + +Danish (da) +--------- + + Quizdeltagerne spiste jordbær med fløde, mens cirkusklovnen + Wolther spillede på xylofon. + (= Quiz contestants were eating strawbery with cream while Wolther + the circus clown played on xylophone.) + +German (de) +----------- + + Falsches Üben von Xylophonmusik quält jeden größeren Zwerg + (= Wrongful practicing of xylophone music tortures every larger dwarf) + + Zwölf Boxkämpfer jagten Eva quer über den Sylter Deich + (= Twelve boxing fighters hunted Eva across the dike of Sylt) + + Heizölrückstoßabdämpfung + (= fuel oil recoil absorber) + (jqvwxy missing, but all non-ASCII letters in one word) + +English (en) +------------ + + The quick brown fox jumps over the lazy dog + +Spanish (es) +------------ + + El pingüino Wenceslao hizo kilómetros bajo exhaustiva lluvia y + frío, añoraba a su querido cachorro. + (Contains every letter and every accent, but not every combination + of vowel + acute.) + +French (fr) +----------- + + Portez ce vieux whisky au juge blond qui fume sur son île intérieure, à + côté de l'alcôve ovoïde, où les bûches se consument dans l'âtre, ce + qui lui permet de penser à la cænogenèse de l'être dont il est question + dans la cause ambiguë entendue à Moÿ, dans un capharnaüm qui, + pense-t-il, diminue çà et là la qualité de son œuvre. + + l'île exiguë + Où l'obèse jury mûr + Fête l'haï volapük, + Âne ex aéquo au whist, + Ôtez ce vœu déçu. + + Le cœur déçu mais l'âme plutôt naïve, Louÿs rêva de crapaüter en + canoë au delà des îles, près du mälström où brûlent les novæ. + +Irish Gaelic (ga) +----------------- + + D'fhuascail Íosa, Úrmhac na hÓighe Beannaithe, pór Éava agus Ádhaimh + +Hungarian (hu) +-------------- + + Árvíztűrő tükörfúrógép + (= flood-proof mirror-drilling machine, only all non-ASCII letters) + +Icelandic (is) +-------------- + + Kæmi ný öxi hér ykist þjófum nú bæði víl og ádrepa + + Sævör grét áðan því úlpan var ónýt + (some ASCII letters missing) + +Greek (el) +------------- + + Γαζέες καὶ μυρτιὲς δὲν θὰ βρῶ πιὰ στὸ χρυσαφὶ ξέφωτο + (= No more shall I see acacias or myrtles in the golden clearing) + + Ξεσκεπάζω τὴν ψυχοφθόρα βδελυγμία + (= I uncover the soul-destroying abhorrence) + +Hebrew (iw) +----------- + + ? דג סקרן שט בים מאוכזב ולפתע מצא לו חברה איך הקליטה + +Polish (pl) +----------- + + Pchnąć w tę łódź jeża lub osiem skrzyń fig + (= To push a hedgehog or eight bins of figs in this boat) + + Zażółć gęślą jaźń + +Russian (ru) +------------ + + В чащах юга жил бы цитрус? Да, но фальшивый экземпляр! + (= Would a citrus live in the bushes of south? Yes, but only a fake one!) + +Thai (th) +--------- + + [--------------------------|------------------------] + ๏ เป็นมนุษย์สุดประเสริฐเลิศคุณค่า กว่าบรรดาฝูงสัตว์เดรัจฉาน + จงฝ่าฟันพัฒนาวิชาการ อย่าล้างผลาญฤๅเข่นฆ่าบีฑาใคร + ไม่ถือโทษโกรธแช่งซัดฮึดฮัดด่า หัดอภัยเหมือนกีฬาอัชฌาสัย + ปฏิบัติประพฤติกฎกำหนดใจ พูดจาให้จ๊ะๆ จ๋าๆ น่าฟังเอย ฯ + + [The copyright for the Thai example is owned by The Computer + Association of Thailand under the Royal Patronage of His Majesty the + King.] + +Please let me know if you find others! Special thanks to the people +from all over the world who contributed these sentences. diff --git a/htdocs/includes/tcpdf/config/lang/afr.php b/htdocs/includes/tcpdf/config/lang/afr.php new file mode 100755 index 00000000000..45b6c337ea9 --- /dev/null +++ b/htdocs/includes/tcpdf/config/lang/afr.php @@ -0,0 +1,50 @@ + + +Class Trees for Package com-tecnick-tcpdf + + + + + + + + + + + + + +
com-tecnick-tcpdf
+ + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
+ + + + + + +
+
+ +

Class Trees for Package com-tecnick-tcpdf

+
+
Root class PDF417

+ + +
+
Root class QRcode

+ + +
+
Root class TCPDF

+ + +
+
Root class TCPDF2DBarcode

+ + +
+
Root class TCPDFBarcode

+ + +
+
Root class TCPDF_UNICODE_DATA

+ + +
+
+ Documentation generated on Thu, 25 Nov 2010 09:23:16 +0100 by phpDocumentor 1.4.3 +
+
+
+ + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/PDF417.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/PDF417.html new file mode 100644 index 00000000000..34ea28126a0 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/PDF417.html @@ -0,0 +1,1015 @@ + + +Docs For Class PDF417 + + + + + + + + + + + + + +
com-tecnick-tcpdf
+ + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
+ + + + + + +
+
+ +

Class: PDF417

+Source Location: /pdf417.php

+ + + + + + + + + + +
+ +

Class Overview

+

+
Class to create PDF417 barcode arrays for TCPDF class.


+

Author(s):

+
    +
  • Nicola Asuni
  • +
+ + + + + + + +

Version:

+
    +
  • 1.0.003
  • +
+ +

Copyright:

+
    +
  • 2010-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
  • +
+ +
+

Variables

+ +
+

Methods

+ +
+
+ + + + + + + + +
+
+ + +

Class Details

+
+[line 104]
+Class to create PDF417 barcode arrays for TCPDF class.

PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991.




+

Tags:

+
+ + + + + + + + + + + + + + + + + + + + + + +
author:  Nicola Asuni
version:  1.0.003
copyright:  2010-2010 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
abstract:  Class to create PDF417 barcode arrays for TCPDF class.
name:  PDF417
license:  LGPL
+
+


+
[ Top ]

+ +
+ +

Class Variables

+
+ +

+

$barcode_array = array()

+

[line 110]

+

+

Tags:

+
+ + + + + + + +
var:  array to be returned which is readable by TCPDF
access:  protected
+
+ +
+
+ + + + + +
Type:  barcode
+


+
[ Top ]

+ +

+

$clusters = array(
+         array( // cluster 0 -----------------------------------------------------------------------
+            0x1d5c0,0x1eaf0,0x1f57c,0x1d4e0,0x1ea78,0x1f53e,0x1a8c0,0x1d470,0x1a860,0x15040, //  10
+            0x1a830,0x15020,0x1adc0,0x1d6f0,0x1eb7c,0x1ace0,0x1d678,0x1eb3e,0x158c0,0x1ac70, //  20
+            0x15860,0x15dc0,0x1aef0,0x1d77c,0x15ce0,0x1ae78,0x1d73e,0x15c70,0x1ae3c,0x15ef0, //  30
+            0x1af7c,0x15e78,0x1af3e,0x15f7c,0x1f5fa,0x1d2e0,0x1e978,0x1f4be,0x1a4c0,0x1d270, //  40
+            0x1e93c,0x1a460,0x1d238,0x14840,0x1a430,0x1d21c,0x14820,0x1a418,0x14810,0x1a6e0, //  50
+            0x1d378,0x1e9be,0x14cc0,0x1a670,0x1d33c,0x14c60,0x1a638,0x1d31e,0x14c30,0x1a61c, //  60
+            0x14ee0,0x1a778,0x1d3be,0x14e70,0x1a73c,0x14e38,0x1a71e,0x14f78,0x1a7be,0x14f3c, //  70
+            0x14f1e,0x1a2c0,0x1d170,0x1e8bc,0x1a260,0x1d138,0x1e89e,0x14440,0x1a230,0x1d11c, //  80
+            0x14420,0x1a218,0x14410,0x14408,0x146c0,0x1a370,0x1d1bc,0x14660,0x1a338,0x1d19e, //  90
+            0x14630,0x1a31c,0x14618,0x1460c,0x14770,0x1a3bc,0x14738,0x1a39e,0x1471c,0x147bc, // 100
+            0x1a160,0x1d0b8,0x1e85e,0x14240,0x1a130,0x1d09c,0x14220,0x1a118,0x1d08e,0x14210, // 110
+            0x1a10c,0x14208,0x1a106,0x14360,0x1a1b8,0x1d0de,0x14330,0x1a19c,0x14318,0x1a18e, // 120
+            0x1430c,0x14306,0x1a1de,0x1438e,0x14140,0x1a0b0,0x1d05c,0x14120,0x1a098,0x1d04e, // 130
+            0x14110,0x1a08c,0x14108,0x1a086,0x14104,0x141b0,0x14198,0x1418c,0x140a0,0x1d02e, // 140
+            0x1a04c,0x1a046,0x14082,0x1cae0,0x1e578,0x1f2be,0x194c0,0x1ca70,0x1e53c,0x19460, // 150
+            0x1ca38,0x1e51e,0x12840,0x19430,0x12820,0x196e0,0x1cb78,0x1e5be,0x12cc0,0x19670, // 160
+            0x1cb3c,0x12c60,0x19638,0x12c30,0x12c18,0x12ee0,0x19778,0x1cbbe,0x12e70,0x1973c, // 170
+            0x12e38,0x12e1c,0x12f78,0x197be,0x12f3c,0x12fbe,0x1dac0,0x1ed70,0x1f6bc,0x1da60, // 180
+            0x1ed38,0x1f69e,0x1b440,0x1da30,0x1ed1c,0x1b420,0x1da18,0x1ed0e,0x1b410,0x1da0c, // 190
+            0x192c0,0x1c970,0x1e4bc,0x1b6c0,0x19260,0x1c938,0x1e49e,0x1b660,0x1db38,0x1ed9e, // 200
+            0x16c40,0x12420,0x19218,0x1c90e,0x16c20,0x1b618,0x16c10,0x126c0,0x19370,0x1c9bc, // 210
+            0x16ec0,0x12660,0x19338,0x1c99e,0x16e60,0x1b738,0x1db9e,0x16e30,0x12618,0x16e18, // 220
+            0x12770,0x193bc,0x16f70,0x12738,0x1939e,0x16f38,0x1b79e,0x16f1c,0x127bc,0x16fbc, // 230
+            0x1279e,0x16f9e,0x1d960,0x1ecb8,0x1f65e,0x1b240,0x1d930,0x1ec9c,0x1b220,0x1d918, // 240
+            0x1ec8e,0x1b210,0x1d90c,0x1b208,0x1b204,0x19160,0x1c8b8,0x1e45e,0x1b360,0x19130, // 250
+            0x1c89c,0x16640,0x12220,0x1d99c,0x1c88e,0x16620,0x12210,0x1910c,0x16610,0x1b30c, // 260
+            0x19106,0x12204,0x12360,0x191b8,0x1c8de,0x16760,0x12330,0x1919c,0x16730,0x1b39c, // 270
+            0x1918e,0x16718,0x1230c,0x12306,0x123b8,0x191de,0x167b8,0x1239c,0x1679c,0x1238e, // 280
+            0x1678e,0x167de,0x1b140,0x1d8b0,0x1ec5c,0x1b120,0x1d898,0x1ec4e,0x1b110,0x1d88c, // 290
+            0x1b108,0x1d886,0x1b104,0x1b102,0x12140,0x190b0,0x1c85c,0x16340,0x12120,0x19098, // 300
+            0x1c84e,0x16320,0x1b198,0x1d8ce,0x16310,0x12108,0x19086,0x16308,0x1b186,0x16304, // 310
+            0x121b0,0x190dc,0x163b0,0x12198,0x190ce,0x16398,0x1b1ce,0x1638c,0x12186,0x16386, // 320
+            0x163dc,0x163ce,0x1b0a0,0x1d858,0x1ec2e,0x1b090,0x1d84c,0x1b088,0x1d846,0x1b084, // 330
+            0x1b082,0x120a0,0x19058,0x1c82e,0x161a0,0x12090,0x1904c,0x16190,0x1b0cc,0x19046, // 340
+            0x16188,0x12084,0x16184,0x12082,0x120d8,0x161d8,0x161cc,0x161c6,0x1d82c,0x1d826, // 350
+            0x1b042,0x1902c,0x12048,0x160c8,0x160c4,0x160c2,0x18ac0,0x1c570,0x1e2bc,0x18a60, // 360
+            0x1c538,0x11440,0x18a30,0x1c51c,0x11420,0x18a18,0x11410,0x11408,0x116c0,0x18b70, // 370
+            0x1c5bc,0x11660,0x18b38,0x1c59e,0x11630,0x18b1c,0x11618,0x1160c,0x11770,0x18bbc, // 380
+            0x11738,0x18b9e,0x1171c,0x117bc,0x1179e,0x1cd60,0x1e6b8,0x1f35e,0x19a40,0x1cd30, // 390
+            0x1e69c,0x19a20,0x1cd18,0x1e68e,0x19a10,0x1cd0c,0x19a08,0x1cd06,0x18960,0x1c4b8, // 400
+            0x1e25e,0x19b60,0x18930,0x1c49c,0x13640,0x11220,0x1cd9c,0x1c48e,0x13620,0x19b18, // 410
+            0x1890c,0x13610,0x11208,0x13608,0x11360,0x189b8,0x1c4de,0x13760,0x11330,0x1cdde, // 420
+            0x13730,0x19b9c,0x1898e,0x13718,0x1130c,0x1370c,0x113b8,0x189de,0x137b8,0x1139c, // 430
+            0x1379c,0x1138e,0x113de,0x137de,0x1dd40,0x1eeb0,0x1f75c,0x1dd20,0x1ee98,0x1f74e, // 440
+            0x1dd10,0x1ee8c,0x1dd08,0x1ee86,0x1dd04,0x19940,0x1ccb0,0x1e65c,0x1bb40,0x19920, // 450
+            0x1eedc,0x1e64e,0x1bb20,0x1dd98,0x1eece,0x1bb10,0x19908,0x1cc86,0x1bb08,0x1dd86, // 460
+            0x19902,0x11140,0x188b0,0x1c45c,0x13340,0x11120,0x18898,0x1c44e,0x17740,0x13320, // 470
+            0x19998,0x1ccce,0x17720,0x1bb98,0x1ddce,0x18886,0x17710,0x13308,0x19986,0x17708, // 480
+            0x11102,0x111b0,0x188dc,0x133b0,0x11198,0x188ce,0x177b0,0x13398,0x199ce,0x17798, // 490
+            0x1bbce,0x11186,0x13386,0x111dc,0x133dc,0x111ce,0x177dc,0x133ce,0x1dca0,0x1ee58, // 500
+            0x1f72e,0x1dc90,0x1ee4c,0x1dc88,0x1ee46,0x1dc84,0x1dc82,0x198a0,0x1cc58,0x1e62e, // 510
+            0x1b9a0,0x19890,0x1ee6e,0x1b990,0x1dccc,0x1cc46,0x1b988,0x19884,0x1b984,0x19882, // 520
+            0x1b982,0x110a0,0x18858,0x1c42e,0x131a0,0x11090,0x1884c,0x173a0,0x13190,0x198cc, // 530
+            0x18846,0x17390,0x1b9cc,0x11084,0x17388,0x13184,0x11082,0x13182,0x110d8,0x1886e, // 540
+            0x131d8,0x110cc,0x173d8,0x131cc,0x110c6,0x173cc,0x131c6,0x110ee,0x173ee,0x1dc50, // 550
+            0x1ee2c,0x1dc48,0x1ee26,0x1dc44,0x1dc42,0x19850,0x1cc2c,0x1b8d0,0x19848,0x1cc26, // 560
+            0x1b8c8,0x1dc66,0x1b8c4,0x19842,0x1b8c2,0x11050,0x1882c,0x130d0,0x11048,0x18826, // 570
+            0x171d0,0x130c8,0x19866,0x171c8,0x1b8e6,0x11042,0x171c4,0x130c2,0x171c2,0x130ec, // 580
+            0x171ec,0x171e6,0x1ee16,0x1dc22,0x1cc16,0x19824,0x19822,0x11028,0x13068,0x170e8, // 590
+            0x11022,0x13062,0x18560,0x10a40,0x18530,0x10a20,0x18518,0x1c28e,0x10a10,0x1850c, // 600
+            0x10a08,0x18506,0x10b60,0x185b8,0x1c2de,0x10b30,0x1859c,0x10b18,0x1858e,0x10b0c, // 610
+            0x10b06,0x10bb8,0x185de,0x10b9c,0x10b8e,0x10bde,0x18d40,0x1c6b0,0x1e35c,0x18d20, // 620
+            0x1c698,0x18d10,0x1c68c,0x18d08,0x1c686,0x18d04,0x10940,0x184b0,0x1c25c,0x11b40, // 630
+            0x10920,0x1c6dc,0x1c24e,0x11b20,0x18d98,0x1c6ce,0x11b10,0x10908,0x18486,0x11b08, // 640
+            0x18d86,0x10902,0x109b0,0x184dc,0x11bb0,0x10998,0x184ce,0x11b98,0x18dce,0x11b8c, // 650
+            0x10986,0x109dc,0x11bdc,0x109ce,0x11bce,0x1cea0,0x1e758,0x1f3ae,0x1ce90,0x1e74c, // 660
+            0x1ce88,0x1e746,0x1ce84,0x1ce82,0x18ca0,0x1c658,0x19da0,0x18c90,0x1c64c,0x19d90, // 670
+            0x1cecc,0x1c646,0x19d88,0x18c84,0x19d84,0x18c82,0x19d82,0x108a0,0x18458,0x119a0, // 680
+            0x10890,0x1c66e,0x13ba0,0x11990,0x18ccc,0x18446,0x13b90,0x19dcc,0x10884,0x13b88, // 690
+            0x11984,0x10882,0x11982,0x108d8,0x1846e,0x119d8,0x108cc,0x13bd8,0x119cc,0x108c6, // 700
+            0x13bcc,0x119c6,0x108ee,0x119ee,0x13bee,0x1ef50,0x1f7ac,0x1ef48,0x1f7a6,0x1ef44, // 710
+            0x1ef42,0x1ce50,0x1e72c,0x1ded0,0x1ef6c,0x1e726,0x1dec8,0x1ef66,0x1dec4,0x1ce42, // 720
+            0x1dec2,0x18c50,0x1c62c,0x19cd0,0x18c48,0x1c626,0x1bdd0,0x19cc8,0x1ce66,0x1bdc8, // 730
+            0x1dee6,0x18c42,0x1bdc4,0x19cc2,0x1bdc2,0x10850,0x1842c,0x118d0,0x10848,0x18426, // 740
+            0x139d0,0x118c8,0x18c66,0x17bd0,0x139c8,0x19ce6,0x10842,0x17bc8,0x1bde6,0x118c2, // 750
+            0x17bc4,0x1086c,0x118ec,0x10866,0x139ec,0x118e6,0x17bec,0x139e6,0x17be6,0x1ef28, // 760
+            0x1f796,0x1ef24,0x1ef22,0x1ce28,0x1e716,0x1de68,0x1ef36,0x1de64,0x1ce22,0x1de62, // 770
+            0x18c28,0x1c616,0x19c68,0x18c24,0x1bce8,0x19c64,0x18c22,0x1bce4,0x19c62,0x1bce2, // 780
+            0x10828,0x18416,0x11868,0x18c36,0x138e8,0x11864,0x10822,0x179e8,0x138e4,0x11862, // 790
+            0x179e4,0x138e2,0x179e2,0x11876,0x179f6,0x1ef12,0x1de34,0x1de32,0x19c34,0x1bc74, // 800
+            0x1bc72,0x11834,0x13874,0x178f4,0x178f2,0x10540,0x10520,0x18298,0x10510,0x10508, // 810
+            0x10504,0x105b0,0x10598,0x1058c,0x10586,0x105dc,0x105ce,0x186a0,0x18690,0x1c34c, // 820
+            0x18688,0x1c346,0x18684,0x18682,0x104a0,0x18258,0x10da0,0x186d8,0x1824c,0x10d90, // 830
+            0x186cc,0x10d88,0x186c6,0x10d84,0x10482,0x10d82,0x104d8,0x1826e,0x10dd8,0x186ee, // 840
+            0x10dcc,0x104c6,0x10dc6,0x104ee,0x10dee,0x1c750,0x1c748,0x1c744,0x1c742,0x18650, // 850
+            0x18ed0,0x1c76c,0x1c326,0x18ec8,0x1c766,0x18ec4,0x18642,0x18ec2,0x10450,0x10cd0, // 860
+            0x10448,0x18226,0x11dd0,0x10cc8,0x10444,0x11dc8,0x10cc4,0x10442,0x11dc4,0x10cc2, // 870
+            0x1046c,0x10cec,0x10466,0x11dec,0x10ce6,0x11de6,0x1e7a8,0x1e7a4,0x1e7a2,0x1c728, // 880
+            0x1cf68,0x1e7b6,0x1cf64,0x1c722,0x1cf62,0x18628,0x1c316,0x18e68,0x1c736,0x19ee8, // 890
+            0x18e64,0x18622,0x19ee4,0x18e62,0x19ee2,0x10428,0x18216,0x10c68,0x18636,0x11ce8, // 900
+            0x10c64,0x10422,0x13de8,0x11ce4,0x10c62,0x13de4,0x11ce2,0x10436,0x10c76,0x11cf6, // 910
+            0x13df6,0x1f7d4,0x1f7d2,0x1e794,0x1efb4,0x1e792,0x1efb2,0x1c714,0x1cf34,0x1c712, // 920
+            0x1df74,0x1cf32,0x1df72,0x18614,0x18e34,0x18612,0x19e74,0x18e32,0x1bef4),// 929
+array(// cluster 3 -----------------------------------------------------------------------
+0x1f560,0x1fab8,0x1ea40,0x1f530,0x1fa9c,0x1ea20,0x1f518,0x1fa8e,0x1ea10,0x1f50c,//  10
+0x1ea08,0x1f506,0x1ea04,0x1eb60,0x1f5b8,0x1fade,0x1d640,0x1eb30,0x1f59c,0x1d620,//  20
+0x1eb18,0x1f58e,0x1d610,0x1eb0c,0x1d608,0x1eb06,0x1d604,0x1d760,0x1ebb8,0x1f5de,//  30
+0x1ae40,0x1d730,0x1eb9c,0x1ae20,0x1d718,0x1eb8e,0x1ae10,0x1d70c,0x1ae08,0x1d706,//  40
+0x1ae04,0x1af60,0x1d7b8,0x1ebde,0x15e40,0x1af30,0x1d79c,0x15e20,0x1af18,0x1d78e,//  50
+0x15e10,0x1af0c,0x15e08,0x1af06,0x15f60,0x1afb8,0x1d7de,0x15f30,0x1af9c,0x15f18,//  60
+0x1af8e,0x15f0c,0x15fb8,0x1afde,0x15f9c,0x15f8e,0x1e940,0x1f4b0,0x1fa5c,0x1e920,//  70
+0x1f498,0x1fa4e,0x1e910,0x1f48c,0x1e908,0x1f486,0x1e904,0x1e902,0x1d340,0x1e9b0,//  80
+0x1f4dc,0x1d320,0x1e998,0x1f4ce,0x1d310,0x1e98c,0x1d308,0x1e986,0x1d304,0x1d302,//  90
+0x1a740,0x1d3b0,0x1e9dc,0x1a720,0x1d398,0x1e9ce,0x1a710,0x1d38c,0x1a708,0x1d386,// 100
+0x1a704,0x1a702,0x14f40,0x1a7b0,0x1d3dc,0x14f20,0x1a798,0x1d3ce,0x14f10,0x1a78c,// 110
+0x14f08,0x1a786,0x14f04,0x14fb0,0x1a7dc,0x14f98,0x1a7ce,0x14f8c,0x14f86,0x14fdc,// 120
+0x14fce,0x1e8a0,0x1f458,0x1fa2e,0x1e890,0x1f44c,0x1e888,0x1f446,0x1e884,0x1e882,// 130
+0x1d1a0,0x1e8d8,0x1f46e,0x1d190,0x1e8cc,0x1d188,0x1e8c6,0x1d184,0x1d182,0x1a3a0,// 140
+0x1d1d8,0x1e8ee,0x1a390,0x1d1cc,0x1a388,0x1d1c6,0x1a384,0x1a382,0x147a0,0x1a3d8,// 150
+0x1d1ee,0x14790,0x1a3cc,0x14788,0x1a3c6,0x14784,0x14782,0x147d8,0x1a3ee,0x147cc,// 160
+0x147c6,0x147ee,0x1e850,0x1f42c,0x1e848,0x1f426,0x1e844,0x1e842,0x1d0d0,0x1e86c,// 170
+0x1d0c8,0x1e866,0x1d0c4,0x1d0c2,0x1a1d0,0x1d0ec,0x1a1c8,0x1d0e6,0x1a1c4,0x1a1c2,// 180
+0x143d0,0x1a1ec,0x143c8,0x1a1e6,0x143c4,0x143c2,0x143ec,0x143e6,0x1e828,0x1f416,// 190
+0x1e824,0x1e822,0x1d068,0x1e836,0x1d064,0x1d062,0x1a0e8,0x1d076,0x1a0e4,0x1a0e2,// 200
+0x141e8,0x1a0f6,0x141e4,0x141e2,0x1e814,0x1e812,0x1d034,0x1d032,0x1a074,0x1a072,// 210
+0x1e540,0x1f2b0,0x1f95c,0x1e520,0x1f298,0x1f94e,0x1e510,0x1f28c,0x1e508,0x1f286,// 220
+0x1e504,0x1e502,0x1cb40,0x1e5b0,0x1f2dc,0x1cb20,0x1e598,0x1f2ce,0x1cb10,0x1e58c,// 230
+0x1cb08,0x1e586,0x1cb04,0x1cb02,0x19740,0x1cbb0,0x1e5dc,0x19720,0x1cb98,0x1e5ce,// 240
+0x19710,0x1cb8c,0x19708,0x1cb86,0x19704,0x19702,0x12f40,0x197b0,0x1cbdc,0x12f20,// 250
+0x19798,0x1cbce,0x12f10,0x1978c,0x12f08,0x19786,0x12f04,0x12fb0,0x197dc,0x12f98,// 260
+0x197ce,0x12f8c,0x12f86,0x12fdc,0x12fce,0x1f6a0,0x1fb58,0x16bf0,0x1f690,0x1fb4c,// 270
+0x169f8,0x1f688,0x1fb46,0x168fc,0x1f684,0x1f682,0x1e4a0,0x1f258,0x1f92e,0x1eda0,// 280
+0x1e490,0x1fb6e,0x1ed90,0x1f6cc,0x1f246,0x1ed88,0x1e484,0x1ed84,0x1e482,0x1ed82,// 290
+0x1c9a0,0x1e4d8,0x1f26e,0x1dba0,0x1c990,0x1e4cc,0x1db90,0x1edcc,0x1e4c6,0x1db88,// 300
+0x1c984,0x1db84,0x1c982,0x1db82,0x193a0,0x1c9d8,0x1e4ee,0x1b7a0,0x19390,0x1c9cc,// 310
+0x1b790,0x1dbcc,0x1c9c6,0x1b788,0x19384,0x1b784,0x19382,0x1b782,0x127a0,0x193d8,// 320
+0x1c9ee,0x16fa0,0x12790,0x193cc,0x16f90,0x1b7cc,0x193c6,0x16f88,0x12784,0x16f84,// 330
+0x12782,0x127d8,0x193ee,0x16fd8,0x127cc,0x16fcc,0x127c6,0x16fc6,0x127ee,0x1f650,// 340
+0x1fb2c,0x165f8,0x1f648,0x1fb26,0x164fc,0x1f644,0x1647e,0x1f642,0x1e450,0x1f22c,// 350
+0x1ecd0,0x1e448,0x1f226,0x1ecc8,0x1f666,0x1ecc4,0x1e442,0x1ecc2,0x1c8d0,0x1e46c,// 360
+0x1d9d0,0x1c8c8,0x1e466,0x1d9c8,0x1ece6,0x1d9c4,0x1c8c2,0x1d9c2,0x191d0,0x1c8ec,// 370
+0x1b3d0,0x191c8,0x1c8e6,0x1b3c8,0x1d9e6,0x1b3c4,0x191c2,0x1b3c2,0x123d0,0x191ec,// 380
+0x167d0,0x123c8,0x191e6,0x167c8,0x1b3e6,0x167c4,0x123c2,0x167c2,0x123ec,0x167ec,// 390
+0x123e6,0x167e6,0x1f628,0x1fb16,0x162fc,0x1f624,0x1627e,0x1f622,0x1e428,0x1f216,// 400
+0x1ec68,0x1f636,0x1ec64,0x1e422,0x1ec62,0x1c868,0x1e436,0x1d8e8,0x1c864,0x1d8e4,// 410
+0x1c862,0x1d8e2,0x190e8,0x1c876,0x1b1e8,0x1d8f6,0x1b1e4,0x190e2,0x1b1e2,0x121e8,// 420
+0x190f6,0x163e8,0x121e4,0x163e4,0x121e2,0x163e2,0x121f6,0x163f6,0x1f614,0x1617e,// 430
+0x1f612,0x1e414,0x1ec34,0x1e412,0x1ec32,0x1c834,0x1d874,0x1c832,0x1d872,0x19074,// 440
+0x1b0f4,0x19072,0x1b0f2,0x120f4,0x161f4,0x120f2,0x161f2,0x1f60a,0x1e40a,0x1ec1a,// 450
+0x1c81a,0x1d83a,0x1903a,0x1b07a,0x1e2a0,0x1f158,0x1f8ae,0x1e290,0x1f14c,0x1e288,// 460
+0x1f146,0x1e284,0x1e282,0x1c5a0,0x1e2d8,0x1f16e,0x1c590,0x1e2cc,0x1c588,0x1e2c6,// 470
+0x1c584,0x1c582,0x18ba0,0x1c5d8,0x1e2ee,0x18b90,0x1c5cc,0x18b88,0x1c5c6,0x18b84,// 480
+0x18b82,0x117a0,0x18bd8,0x1c5ee,0x11790,0x18bcc,0x11788,0x18bc6,0x11784,0x11782,// 490
+0x117d8,0x18bee,0x117cc,0x117c6,0x117ee,0x1f350,0x1f9ac,0x135f8,0x1f348,0x1f9a6,// 500
+0x134fc,0x1f344,0x1347e,0x1f342,0x1e250,0x1f12c,0x1e6d0,0x1e248,0x1f126,0x1e6c8,// 510
+0x1f366,0x1e6c4,0x1e242,0x1e6c2,0x1c4d0,0x1e26c,0x1cdd0,0x1c4c8,0x1e266,0x1cdc8,// 520
+0x1e6e6,0x1cdc4,0x1c4c2,0x1cdc2,0x189d0,0x1c4ec,0x19bd0,0x189c8,0x1c4e6,0x19bc8,// 530
+0x1cde6,0x19bc4,0x189c2,0x19bc2,0x113d0,0x189ec,0x137d0,0x113c8,0x189e6,0x137c8,// 540
+0x19be6,0x137c4,0x113c2,0x137c2,0x113ec,0x137ec,0x113e6,0x137e6,0x1fba8,0x175f0,// 550
+0x1bafc,0x1fba4,0x174f8,0x1ba7e,0x1fba2,0x1747c,0x1743e,0x1f328,0x1f996,0x132fc,// 560
+0x1f768,0x1fbb6,0x176fc,0x1327e,0x1f764,0x1f322,0x1767e,0x1f762,0x1e228,0x1f116,// 570
+0x1e668,0x1e224,0x1eee8,0x1f776,0x1e222,0x1eee4,0x1e662,0x1eee2,0x1c468,0x1e236,// 580
+0x1cce8,0x1c464,0x1dde8,0x1cce4,0x1c462,0x1dde4,0x1cce2,0x1dde2,0x188e8,0x1c476,// 590
+0x199e8,0x188e4,0x1bbe8,0x199e4,0x188e2,0x1bbe4,0x199e2,0x1bbe2,0x111e8,0x188f6,// 600
+0x133e8,0x111e4,0x177e8,0x133e4,0x111e2,0x177e4,0x133e2,0x177e2,0x111f6,0x133f6,// 610
+0x1fb94,0x172f8,0x1b97e,0x1fb92,0x1727c,0x1723e,0x1f314,0x1317e,0x1f734,0x1f312,// 620
+0x1737e,0x1f732,0x1e214,0x1e634,0x1e212,0x1ee74,0x1e632,0x1ee72,0x1c434,0x1cc74,// 630
+0x1c432,0x1dcf4,0x1cc72,0x1dcf2,0x18874,0x198f4,0x18872,0x1b9f4,0x198f2,0x1b9f2,// 640
+0x110f4,0x131f4,0x110f2,0x173f4,0x131f2,0x173f2,0x1fb8a,0x1717c,0x1713e,0x1f30a,// 650
+0x1f71a,0x1e20a,0x1e61a,0x1ee3a,0x1c41a,0x1cc3a,0x1dc7a,0x1883a,0x1987a,0x1b8fa,// 660
+0x1107a,0x130fa,0x171fa,0x170be,0x1e150,0x1f0ac,0x1e148,0x1f0a6,0x1e144,0x1e142,// 670
+0x1c2d0,0x1e16c,0x1c2c8,0x1e166,0x1c2c4,0x1c2c2,0x185d0,0x1c2ec,0x185c8,0x1c2e6,// 680
+0x185c4,0x185c2,0x10bd0,0x185ec,0x10bc8,0x185e6,0x10bc4,0x10bc2,0x10bec,0x10be6,// 690
+0x1f1a8,0x1f8d6,0x11afc,0x1f1a4,0x11a7e,0x1f1a2,0x1e128,0x1f096,0x1e368,0x1e124,// 700
+0x1e364,0x1e122,0x1e362,0x1c268,0x1e136,0x1c6e8,0x1c264,0x1c6e4,0x1c262,0x1c6e2,// 710
+0x184e8,0x1c276,0x18de8,0x184e4,0x18de4,0x184e2,0x18de2,0x109e8,0x184f6,0x11be8,// 720
+0x109e4,0x11be4,0x109e2,0x11be2,0x109f6,0x11bf6,0x1f9d4,0x13af8,0x19d7e,0x1f9d2,// 730
+0x13a7c,0x13a3e,0x1f194,0x1197e,0x1f3b4,0x1f192,0x13b7e,0x1f3b2,0x1e114,0x1e334,// 740
+0x1e112,0x1e774,0x1e332,0x1e772,0x1c234,0x1c674,0x1c232,0x1cef4,0x1c672,0x1cef2,// 750
+0x18474,0x18cf4,0x18472,0x19df4,0x18cf2,0x19df2,0x108f4,0x119f4,0x108f2,0x13bf4,// 760
+0x119f2,0x13bf2,0x17af0,0x1bd7c,0x17a78,0x1bd3e,0x17a3c,0x17a1e,0x1f9ca,0x1397c,// 770
+0x1fbda,0x17b7c,0x1393e,0x17b3e,0x1f18a,0x1f39a,0x1f7ba,0x1e10a,0x1e31a,0x1e73a,// 780
+0x1ef7a,0x1c21a,0x1c63a,0x1ce7a,0x1defa,0x1843a,0x18c7a,0x19cfa,0x1bdfa,0x1087a,// 790
+0x118fa,0x139fa,0x17978,0x1bcbe,0x1793c,0x1791e,0x138be,0x179be,0x178bc,0x1789e,// 800
+0x1785e,0x1e0a8,0x1e0a4,0x1e0a2,0x1c168,0x1e0b6,0x1c164,0x1c162,0x182e8,0x1c176,// 810
+0x182e4,0x182e2,0x105e8,0x182f6,0x105e4,0x105e2,0x105f6,0x1f0d4,0x10d7e,0x1f0d2,// 820
+0x1e094,0x1e1b4,0x1e092,0x1e1b2,0x1c134,0x1c374,0x1c132,0x1c372,0x18274,0x186f4,// 830
+0x18272,0x186f2,0x104f4,0x10df4,0x104f2,0x10df2,0x1f8ea,0x11d7c,0x11d3e,0x1f0ca,// 840
+0x1f1da,0x1e08a,0x1e19a,0x1e3ba,0x1c11a,0x1c33a,0x1c77a,0x1823a,0x1867a,0x18efa,// 850
+0x1047a,0x10cfa,0x11dfa,0x13d78,0x19ebe,0x13d3c,0x13d1e,0x11cbe,0x13dbe,0x17d70,// 860
+0x1bebc,0x17d38,0x1be9e,0x17d1c,0x17d0e,0x13cbc,0x17dbc,0x13c9e,0x17d9e,0x17cb8,// 870
+0x1be5e,0x17c9c,0x17c8e,0x13c5e,0x17cde,0x17c5c,0x17c4e,0x17c2e,0x1c0b4,0x1c0b2,// 880
+0x18174,0x18172,0x102f4,0x102f2,0x1e0da,0x1c09a,0x1c1ba,0x1813a,0x1837a,0x1027a,// 890
+0x106fa,0x10ebe,0x11ebc,0x11e9e,0x13eb8,0x19f5e,0x13e9c,0x13e8e,0x11e5e,0x13ede,// 900
+0x17eb0,0x1bf5c,0x17e98,0x1bf4e,0x17e8c,0x17e86,0x13e5c,0x17edc,0x13e4e,0x17ece,// 910
+0x17e58,0x1bf2e,0x17e4c,0x17e46,0x13e2e,0x17e6e,0x17e2c,0x17e26,0x10f5e,0x11f5c,// 920
+0x11f4e,0x13f58,0x19fae,0x13f4c,0x13f46,0x11f2e,0x13f6e,0x13f2c,0x13f26),// 929
+array(// cluster 6 -----------------------------------------------------------------------
+0x1abe0,0x1d5f8,0x153c0,0x1a9f0,0x1d4fc,0x151e0,0x1a8f8,0x1d47e,0x150f0,0x1a87c,//  10
+0x15078,0x1fad0,0x15be0,0x1adf8,0x1fac8,0x159f0,0x1acfc,0x1fac4,0x158f8,0x1ac7e,//  20
+0x1fac2,0x1587c,0x1f5d0,0x1faec,0x15df8,0x1f5c8,0x1fae6,0x15cfc,0x1f5c4,0x15c7e,//  30
+0x1f5c2,0x1ebd0,0x1f5ec,0x1ebc8,0x1f5e6,0x1ebc4,0x1ebc2,0x1d7d0,0x1ebec,0x1d7c8,//  40
+0x1ebe6,0x1d7c4,0x1d7c2,0x1afd0,0x1d7ec,0x1afc8,0x1d7e6,0x1afc4,0x14bc0,0x1a5f0,//  50
+0x1d2fc,0x149e0,0x1a4f8,0x1d27e,0x148f0,0x1a47c,0x14878,0x1a43e,0x1483c,0x1fa68,//  60
+0x14df0,0x1a6fc,0x1fa64,0x14cf8,0x1a67e,0x1fa62,0x14c7c,0x14c3e,0x1f4e8,0x1fa76,//  70
+0x14efc,0x1f4e4,0x14e7e,0x1f4e2,0x1e9e8,0x1f4f6,0x1e9e4,0x1e9e2,0x1d3e8,0x1e9f6,//  80
+0x1d3e4,0x1d3e2,0x1a7e8,0x1d3f6,0x1a7e4,0x1a7e2,0x145e0,0x1a2f8,0x1d17e,0x144f0,//  90
+0x1a27c,0x14478,0x1a23e,0x1443c,0x1441e,0x1fa34,0x146f8,0x1a37e,0x1fa32,0x1467c,// 100
+0x1463e,0x1f474,0x1477e,0x1f472,0x1e8f4,0x1e8f2,0x1d1f4,0x1d1f2,0x1a3f4,0x1a3f2,// 110
+0x142f0,0x1a17c,0x14278,0x1a13e,0x1423c,0x1421e,0x1fa1a,0x1437c,0x1433e,0x1f43a,// 120
+0x1e87a,0x1d0fa,0x14178,0x1a0be,0x1413c,0x1411e,0x141be,0x140bc,0x1409e,0x12bc0,// 130
+0x195f0,0x1cafc,0x129e0,0x194f8,0x1ca7e,0x128f0,0x1947c,0x12878,0x1943e,0x1283c,// 140
+0x1f968,0x12df0,0x196fc,0x1f964,0x12cf8,0x1967e,0x1f962,0x12c7c,0x12c3e,0x1f2e8,// 150
+0x1f976,0x12efc,0x1f2e4,0x12e7e,0x1f2e2,0x1e5e8,0x1f2f6,0x1e5e4,0x1e5e2,0x1cbe8,// 160
+0x1e5f6,0x1cbe4,0x1cbe2,0x197e8,0x1cbf6,0x197e4,0x197e2,0x1b5e0,0x1daf8,0x1ed7e,// 170
+0x169c0,0x1b4f0,0x1da7c,0x168e0,0x1b478,0x1da3e,0x16870,0x1b43c,0x16838,0x1b41e,// 180
+0x1681c,0x125e0,0x192f8,0x1c97e,0x16de0,0x124f0,0x1927c,0x16cf0,0x1b67c,0x1923e,// 190
+0x16c78,0x1243c,0x16c3c,0x1241e,0x16c1e,0x1f934,0x126f8,0x1937e,0x1fb74,0x1f932,// 200
+0x16ef8,0x1267c,0x1fb72,0x16e7c,0x1263e,0x16e3e,0x1f274,0x1277e,0x1f6f4,0x1f272,// 210
+0x16f7e,0x1f6f2,0x1e4f4,0x1edf4,0x1e4f2,0x1edf2,0x1c9f4,0x1dbf4,0x1c9f2,0x1dbf2,// 220
+0x193f4,0x193f2,0x165c0,0x1b2f0,0x1d97c,0x164e0,0x1b278,0x1d93e,0x16470,0x1b23c,// 230
+0x16438,0x1b21e,0x1641c,0x1640e,0x122f0,0x1917c,0x166f0,0x12278,0x1913e,0x16678,// 240
+0x1b33e,0x1663c,0x1221e,0x1661e,0x1f91a,0x1237c,0x1fb3a,0x1677c,0x1233e,0x1673e,// 250
+0x1f23a,0x1f67a,0x1e47a,0x1ecfa,0x1c8fa,0x1d9fa,0x191fa,0x162e0,0x1b178,0x1d8be,// 260
+0x16270,0x1b13c,0x16238,0x1b11e,0x1621c,0x1620e,0x12178,0x190be,0x16378,0x1213c,// 270
+0x1633c,0x1211e,0x1631e,0x121be,0x163be,0x16170,0x1b0bc,0x16138,0x1b09e,0x1611c,// 280
+0x1610e,0x120bc,0x161bc,0x1209e,0x1619e,0x160b8,0x1b05e,0x1609c,0x1608e,0x1205e,// 290
+0x160de,0x1605c,0x1604e,0x115e0,0x18af8,0x1c57e,0x114f0,0x18a7c,0x11478,0x18a3e,// 300
+0x1143c,0x1141e,0x1f8b4,0x116f8,0x18b7e,0x1f8b2,0x1167c,0x1163e,0x1f174,0x1177e,// 310
+0x1f172,0x1e2f4,0x1e2f2,0x1c5f4,0x1c5f2,0x18bf4,0x18bf2,0x135c0,0x19af0,0x1cd7c,// 320
+0x134e0,0x19a78,0x1cd3e,0x13470,0x19a3c,0x13438,0x19a1e,0x1341c,0x1340e,0x112f0,// 330
+0x1897c,0x136f0,0x11278,0x1893e,0x13678,0x19b3e,0x1363c,0x1121e,0x1361e,0x1f89a,// 340
+0x1137c,0x1f9ba,0x1377c,0x1133e,0x1373e,0x1f13a,0x1f37a,0x1e27a,0x1e6fa,0x1c4fa,// 350
+0x1cdfa,0x189fa,0x1bae0,0x1dd78,0x1eebe,0x174c0,0x1ba70,0x1dd3c,0x17460,0x1ba38,// 360
+0x1dd1e,0x17430,0x1ba1c,0x17418,0x1ba0e,0x1740c,0x132e0,0x19978,0x1ccbe,0x176e0,// 370
+0x13270,0x1993c,0x17670,0x1bb3c,0x1991e,0x17638,0x1321c,0x1761c,0x1320e,0x1760e,// 380
+0x11178,0x188be,0x13378,0x1113c,0x17778,0x1333c,0x1111e,0x1773c,0x1331e,0x1771e,// 390
+0x111be,0x133be,0x177be,0x172c0,0x1b970,0x1dcbc,0x17260,0x1b938,0x1dc9e,0x17230,// 400
+0x1b91c,0x17218,0x1b90e,0x1720c,0x17206,0x13170,0x198bc,0x17370,0x13138,0x1989e,// 410
+0x17338,0x1b99e,0x1731c,0x1310e,0x1730e,0x110bc,0x131bc,0x1109e,0x173bc,0x1319e,// 420
+0x1739e,0x17160,0x1b8b8,0x1dc5e,0x17130,0x1b89c,0x17118,0x1b88e,0x1710c,0x17106,// 430
+0x130b8,0x1985e,0x171b8,0x1309c,0x1719c,0x1308e,0x1718e,0x1105e,0x130de,0x171de,// 440
+0x170b0,0x1b85c,0x17098,0x1b84e,0x1708c,0x17086,0x1305c,0x170dc,0x1304e,0x170ce,// 450
+0x17058,0x1b82e,0x1704c,0x17046,0x1302e,0x1706e,0x1702c,0x17026,0x10af0,0x1857c,// 460
+0x10a78,0x1853e,0x10a3c,0x10a1e,0x10b7c,0x10b3e,0x1f0ba,0x1e17a,0x1c2fa,0x185fa,// 470
+0x11ae0,0x18d78,0x1c6be,0x11a70,0x18d3c,0x11a38,0x18d1e,0x11a1c,0x11a0e,0x10978,// 480
+0x184be,0x11b78,0x1093c,0x11b3c,0x1091e,0x11b1e,0x109be,0x11bbe,0x13ac0,0x19d70,// 490
+0x1cebc,0x13a60,0x19d38,0x1ce9e,0x13a30,0x19d1c,0x13a18,0x19d0e,0x13a0c,0x13a06,// 500
+0x11970,0x18cbc,0x13b70,0x11938,0x18c9e,0x13b38,0x1191c,0x13b1c,0x1190e,0x13b0e,// 510
+0x108bc,0x119bc,0x1089e,0x13bbc,0x1199e,0x13b9e,0x1bd60,0x1deb8,0x1ef5e,0x17a40,// 520
+0x1bd30,0x1de9c,0x17a20,0x1bd18,0x1de8e,0x17a10,0x1bd0c,0x17a08,0x1bd06,0x17a04,// 530
+0x13960,0x19cb8,0x1ce5e,0x17b60,0x13930,0x19c9c,0x17b30,0x1bd9c,0x19c8e,0x17b18,// 540
+0x1390c,0x17b0c,0x13906,0x17b06,0x118b8,0x18c5e,0x139b8,0x1189c,0x17bb8,0x1399c,// 550
+0x1188e,0x17b9c,0x1398e,0x17b8e,0x1085e,0x118de,0x139de,0x17bde,0x17940,0x1bcb0,// 560
+0x1de5c,0x17920,0x1bc98,0x1de4e,0x17910,0x1bc8c,0x17908,0x1bc86,0x17904,0x17902,// 570
+0x138b0,0x19c5c,0x179b0,0x13898,0x19c4e,0x17998,0x1bcce,0x1798c,0x13886,0x17986,// 580
+0x1185c,0x138dc,0x1184e,0x179dc,0x138ce,0x179ce,0x178a0,0x1bc58,0x1de2e,0x17890,// 590
+0x1bc4c,0x17888,0x1bc46,0x17884,0x17882,0x13858,0x19c2e,0x178d8,0x1384c,0x178cc,// 600
+0x13846,0x178c6,0x1182e,0x1386e,0x178ee,0x17850,0x1bc2c,0x17848,0x1bc26,0x17844,// 610
+0x17842,0x1382c,0x1786c,0x13826,0x17866,0x17828,0x1bc16,0x17824,0x17822,0x13816,// 620
+0x17836,0x10578,0x182be,0x1053c,0x1051e,0x105be,0x10d70,0x186bc,0x10d38,0x1869e,// 630
+0x10d1c,0x10d0e,0x104bc,0x10dbc,0x1049e,0x10d9e,0x11d60,0x18eb8,0x1c75e,0x11d30,// 640
+0x18e9c,0x11d18,0x18e8e,0x11d0c,0x11d06,0x10cb8,0x1865e,0x11db8,0x10c9c,0x11d9c,// 650
+0x10c8e,0x11d8e,0x1045e,0x10cde,0x11dde,0x13d40,0x19eb0,0x1cf5c,0x13d20,0x19e98,// 660
+0x1cf4e,0x13d10,0x19e8c,0x13d08,0x19e86,0x13d04,0x13d02,0x11cb0,0x18e5c,0x13db0,// 670
+0x11c98,0x18e4e,0x13d98,0x19ece,0x13d8c,0x11c86,0x13d86,0x10c5c,0x11cdc,0x10c4e,// 680
+0x13ddc,0x11cce,0x13dce,0x1bea0,0x1df58,0x1efae,0x1be90,0x1df4c,0x1be88,0x1df46,// 690
+0x1be84,0x1be82,0x13ca0,0x19e58,0x1cf2e,0x17da0,0x13c90,0x19e4c,0x17d90,0x1becc,// 700
+0x19e46,0x17d88,0x13c84,0x17d84,0x13c82,0x17d82,0x11c58,0x18e2e,0x13cd8,0x11c4c,// 710
+0x17dd8,0x13ccc,0x11c46,0x17dcc,0x13cc6,0x17dc6,0x10c2e,0x11c6e,0x13cee,0x17dee,// 720
+0x1be50,0x1df2c,0x1be48,0x1df26,0x1be44,0x1be42,0x13c50,0x19e2c,0x17cd0,0x13c48,// 730
+0x19e26,0x17cc8,0x1be66,0x17cc4,0x13c42,0x17cc2,0x11c2c,0x13c6c,0x11c26,0x17cec,// 740
+0x13c66,0x17ce6,0x1be28,0x1df16,0x1be24,0x1be22,0x13c28,0x19e16,0x17c68,0x13c24,// 750
+0x17c64,0x13c22,0x17c62,0x11c16,0x13c36,0x17c76,0x1be14,0x1be12,0x13c14,0x17c34,// 760
+0x13c12,0x17c32,0x102bc,0x1029e,0x106b8,0x1835e,0x1069c,0x1068e,0x1025e,0x106de,// 770
+0x10eb0,0x1875c,0x10e98,0x1874e,0x10e8c,0x10e86,0x1065c,0x10edc,0x1064e,0x10ece,// 780
+0x11ea0,0x18f58,0x1c7ae,0x11e90,0x18f4c,0x11e88,0x18f46,0x11e84,0x11e82,0x10e58,// 790
+0x1872e,0x11ed8,0x18f6e,0x11ecc,0x10e46,0x11ec6,0x1062e,0x10e6e,0x11eee,0x19f50,// 800
+0x1cfac,0x19f48,0x1cfa6,0x19f44,0x19f42,0x11e50,0x18f2c,0x13ed0,0x19f6c,0x18f26,// 810
+0x13ec8,0x11e44,0x13ec4,0x11e42,0x13ec2,0x10e2c,0x11e6c,0x10e26,0x13eec,0x11e66,// 820
+0x13ee6,0x1dfa8,0x1efd6,0x1dfa4,0x1dfa2,0x19f28,0x1cf96,0x1bf68,0x19f24,0x1bf64,// 830
+0x19f22,0x1bf62,0x11e28,0x18f16,0x13e68,0x11e24,0x17ee8,0x13e64,0x11e22,0x17ee4,// 840
+0x13e62,0x17ee2,0x10e16,0x11e36,0x13e76,0x17ef6,0x1df94,0x1df92,0x19f14,0x1bf34,// 850
+0x19f12,0x1bf32,0x11e14,0x13e34,0x11e12,0x17e74,0x13e32,0x17e72,0x1df8a,0x19f0a,// 860
+0x1bf1a,0x11e0a,0x13e1a,0x17e3a,0x1035c,0x1034e,0x10758,0x183ae,0x1074c,0x10746,// 870
+0x1032e,0x1076e,0x10f50,0x187ac,0x10f48,0x187a6,0x10f44,0x10f42,0x1072c,0x10f6c,// 880
+0x10726,0x10f66,0x18fa8,0x1c7d6,0x18fa4,0x18fa2,0x10f28,0x18796,0x11f68,0x18fb6,// 890
+0x11f64,0x10f22,0x11f62,0x10716,0x10f36,0x11f76,0x1cfd4,0x1cfd2,0x18f94,0x19fb4,// 900
+0x18f92,0x19fb2,0x10f14,0x11f34,0x10f12,0x13f74,0x11f32,0x13f72,0x1cfca,0x18f8a,// 910
+0x19f9a,0x10f0a,0x11f1a,0x13f3a,0x103ac,0x103a6,0x107a8,0x183d6,0x107a4,0x107a2,// 920
+0x10396,0x107b6,0x187d4,0x187d2,0x10794,0x10fb4,0x10792,0x10fb2,0x1c7ea)// 929
+)

+

[line 167]

+

+

Tags:

+
+ + + + + + + +
var:  of codewords (0, 3, 6)
Values are hex equivalents of binary representation of bars (1 = bar, 0 = space).
The codewords numbered from 900 to 928 have special meaning, some enable to switch between modes in order to optimise the code:
  • 900 : Switch to "Text" mode
  • 901 : Switch to "Byte" mode
  • 902 : Switch to "Numeric" mode
  • 903 - 912 : Reserved
  • 913 : Switch to "Octet" only for the next codeword
  • 914 - 920 : Reserved
  • 921 : Initialization
  • 922 : Terminator codeword for Macro PDF control block
  • 923 : Sequence tag to identify the beginning of optional fields in the Macro PDF control block
  • 924 : Switch to "Byte" mode (If the total number of byte is multiple of 6)
  • 925 : Identifier for a user defined Extended Channel Interpretation (ECI)
  • 926 : Identifier for a general purpose ECI format
  • 927 : Identifier for an ECI of a character set or code page
  • 928 : Macro marker codeword to indicate the beginning of a Macro PDF Control Block
access:  protected
+
+ +
+
+ + + + + +
Type:  clusters
+


+
[ Top ]

+ +

+

$rsfactors = array(
+         array( // ECL 0 (2 factors) -------------------------------------------------------------------------------
+            0x01b,0x395),//   2
+array(// ECL 1 (4 factors) -------------------------------------------------------------------------------
+0x20a,0x238,0x2d3,0x329),//   4
+array(// ECL 2 (8 factors) -------------------------------------------------------------------------------
+0x0ed,0x134,0x1b4,0x11c,0x286,0x28d,0x1ac,0x17b),//   8
+array(// ECL 3 (16 factors) ------------------------------------------------------------------------------
+0x112,0x232,0x0e8,0x2f3,0x257,0x20c,0x321,0x084,0x127,0x074,0x1ba,0x1ac,0x127,0x02a,0x0b0,0x041),//  16
+array(// ECL 4 (32 factors) ------------------------------------------------------------------------------
+0x169,0x23f,0x39a,0x20d,0x0b0,0x24a,0x280,0x141,0x218,0x2e6,0x2a5,0x2e6,0x2af,0x11c,0x0c1,0x205,//  16
+0x111,0x1ee,0x107,0x093,0x251,0x320,0x23b,0x140,0x323,0x085,0x0e7,0x186,0x2ad,0x14a,0x03f,0x19a),//  32
+array(// ECL 5 (64 factors) ------------------------------------------------------------------------------
+0x21b,0x1a6,0x006,0x05d,0x35e,0x303,0x1c5,0x06a,0x262,0x11f,0x06b,0x1f9,0x2dd,0x36d,0x17d,0x264,//  16
+0x2d3,0x1dc,0x1ce,0x0ac,0x1ae,0x261,0x35a,0x336,0x21f,0x178,0x1ff,0x190,0x2a0,0x2fa,0x11b,0x0b8,//  32
+0x1b8,0x023,0x207,0x01f,0x1cc,0x252,0x0e1,0x217,0x205,0x160,0x25d,0x09e,0x28b,0x0c9,0x1e8,0x1f6,//  48
+0x288,0x2dd,0x2cd,0x053,0x194,0x061,0x118,0x303,0x348,0x275,0x004,0x17d,0x34b,0x26f,0x108,0x21f),//  64
+array(// ECL 6 (128 factors) -----------------------------------------------------------------------------
+0x209,0x136,0x360,0x223,0x35a,0x244,0x128,0x17b,0x035,0x30b,0x381,0x1bc,0x190,0x39d,0x2ed,0x19f,//  16
+0x336,0x05d,0x0d9,0x0d0,0x3a0,0x0f4,0x247,0x26c,0x0f6,0x094,0x1bf,0x277,0x124,0x38c,0x1ea,0x2c0,//  32
+0x204,0x102,0x1c9,0x38b,0x252,0x2d3,0x2a2,0x124,0x110,0x060,0x2ac,0x1b0,0x2ae,0x25e,0x35c,0x239,//  48
+0x0c1,0x0db,0x081,0x0ba,0x0ec,0x11f,0x0c0,0x307,0x116,0x0ad,0x028,0x17b,0x2c8,0x1cf,0x286,0x308,//  64
+0x0ab,0x1eb,0x129,0x2fb,0x09c,0x2dc,0x05f,0x10e,0x1bf,0x05a,0x1fb,0x030,0x0e4,0x335,0x328,0x382,//  80
+0x310,0x297,0x273,0x17a,0x17e,0x106,0x17c,0x25a,0x2f2,0x150,0x059,0x266,0x057,0x1b0,0x29e,0x268,//  96
+0x09d,0x176,0x0f2,0x2d6,0x258,0x10d,0x177,0x382,0x34d,0x1c6,0x162,0x082,0x32e,0x24b,0x324,0x022,// 112
+0x0d3,0x14a,0x21b,0x129,0x33b,0x361,0x025,0x205,0x342,0x13b,0x226,0x056,0x321,0x004,0x06c,0x21b),// 128
+array(// ECL 7 (256 factors) -----------------------------------------------------------------------------
+0x20c,0x37e,0x04b,0x2fe,0x372,0x359,0x04a,0x0cc,0x052,0x24a,0x2c4,0x0fa,0x389,0x312,0x08a,0x2d0,//  16
+0x35a,0x0c2,0x137,0x391,0x113,0x0be,0x177,0x352,0x1b6,0x2dd,0x0c2,0x118,0x0c9,0x118,0x33c,0x2f5,//  32
+0x2c6,0x32e,0x397,0x059,0x044,0x239,0x00b,0x0cc,0x31c,0x25d,0x21c,0x391,0x321,0x2bc,0x31f,0x089,//  48
+0x1b7,0x1a2,0x250,0x29c,0x161,0x35b,0x172,0x2b6,0x145,0x0f0,0x0d8,0x101,0x11c,0x225,0x0d1,0x374,//  64
+0x13b,0x046,0x149,0x319,0x1ea,0x112,0x36d,0x0a2,0x2ed,0x32c,0x2ac,0x1cd,0x14e,0x178,0x351,0x209,//  80
+0x133,0x123,0x323,0x2c8,0x013,0x166,0x18f,0x38c,0x067,0x1ff,0x033,0x008,0x205,0x0e1,0x121,0x1d6,//  96
+0x27d,0x2db,0x042,0x0ff,0x395,0x10d,0x1cf,0x33e,0x2da,0x1b1,0x350,0x249,0x088,0x21a,0x38a,0x05a,// 112
+0x002,0x122,0x2e7,0x0c7,0x28f,0x387,0x149,0x031,0x322,0x244,0x163,0x24c,0x0bc,0x1ce,0x00a,0x086,// 128
+0x274,0x140,0x1df,0x082,0x2e3,0x047,0x107,0x13e,0x176,0x259,0x0c0,0x25d,0x08e,0x2a1,0x2af,0x0ea,// 144
+0x2d2,0x180,0x0b1,0x2f0,0x25f,0x280,0x1c7,0x0c1,0x2b1,0x2c3,0x325,0x281,0x030,0x03c,0x2dc,0x26d,// 160
+0x37f,0x220,0x105,0x354,0x28f,0x135,0x2b9,0x2f3,0x2f4,0x03c,0x0e7,0x305,0x1b2,0x1a5,0x2d6,0x210,// 176
+0x1f7,0x076,0x031,0x31b,0x020,0x090,0x1f4,0x0ee,0x344,0x18a,0x118,0x236,0x13f,0x009,0x287,0x226,// 192
+0x049,0x392,0x156,0x07e,0x020,0x2a9,0x14b,0x318,0x26c,0x03c,0x261,0x1b9,0x0b4,0x317,0x37d,0x2f2,// 208
+0x25d,0x17f,0x0e4,0x2ed,0x2f8,0x0d5,0x036,0x129,0x086,0x036,0x342,0x12b,0x39a,0x0bf,0x38e,0x214,// 224
+0x261,0x33d,0x0bd,0x014,0x0a7,0x01d,0x368,0x1c1,0x053,0x192,0x029,0x290,0x1f9,0x243,0x1e1,0x0ad,// 240
+0x194,0x0fb,0x2b0,0x05f,0x1f1,0x22b,0x282,0x21f,0x133,0x09f,0x39c,0x22e,0x288,0x037,0x1f1,0x00a),// 256
+array(// ECL 8 (512 factors) -----------------------------------------------------------------------------
+0x160,0x04d,0x175,0x1f8,0x023,0x257,0x1ac,0x0cf,0x199,0x23e,0x076,0x1f2,0x11d,0x17c,0x15e,0x1ec,//  16
+0x0c5,0x109,0x398,0x09b,0x392,0x12b,0x0e5,0x283,0x126,0x367,0x132,0x058,0x057,0x0c1,0x160,0x30d,//  32
+0x34e,0x04b,0x147,0x208,0x1b3,0x21f,0x0cb,0x29a,0x0f9,0x15a,0x30d,0x26d,0x280,0x10c,0x31a,0x216,//  48
+0x21b,0x30d,0x198,0x186,0x284,0x066,0x1dc,0x1f3,0x122,0x278,0x221,0x025,0x35a,0x394,0x228,0x029,//  64
+0x21e,0x121,0x07a,0x110,0x17f,0x320,0x1e5,0x062,0x2f0,0x1d8,0x2f9,0x06b,0x310,0x35c,0x292,0x2e5,//  80
+0x122,0x0cc,0x2a9,0x197,0x357,0x055,0x063,0x03e,0x1e2,0x0b4,0x014,0x129,0x1c3,0x251,0x391,0x08e,//  96
+0x328,0x2ac,0x11f,0x218,0x231,0x04c,0x28d,0x383,0x2d9,0x237,0x2e8,0x186,0x201,0x0c0,0x204,0x102,// 112
+0x0f0,0x206,0x31a,0x18b,0x300,0x350,0x033,0x262,0x180,0x0a8,0x0be,0x33a,0x148,0x254,0x312,0x12f,// 128
+0x23a,0x17d,0x19f,0x281,0x09c,0x0ed,0x097,0x1ad,0x213,0x0cf,0x2a4,0x2c6,0x059,0x0a8,0x130,0x192,// 144
+0x028,0x2c4,0x23f,0x0a2,0x360,0x0e5,0x041,0x35d,0x349,0x200,0x0a4,0x1dd,0x0dd,0x05c,0x166,0x311,// 160
+0x120,0x165,0x352,0x344,0x33b,0x2e0,0x2c3,0x05e,0x008,0x1ee,0x072,0x209,0x002,0x1f3,0x353,0x21f,// 176
+0x098,0x2d9,0x303,0x05f,0x0f8,0x169,0x242,0x143,0x358,0x31d,0x121,0x033,0x2ac,0x1d2,0x215,0x334,// 192
+0x29d,0x02d,0x386,0x1c4,0x0a7,0x156,0x0f4,0x0ad,0x023,0x1cf,0x28b,0x033,0x2bb,0x24f,0x1c4,0x242,// 208
+0x025,0x07c,0x12a,0x14c,0x228,0x02b,0x1ab,0x077,0x296,0x309,0x1db,0x352,0x2fc,0x16c,0x242,0x38f,// 224
+0x11b,0x2c7,0x1d8,0x1a4,0x0f5,0x120,0x252,0x18a,0x1ff,0x147,0x24d,0x309,0x2bb,0x2b0,0x02b,0x198,// 240
+0x34a,0x17f,0x2d1,0x209,0x230,0x284,0x2ca,0x22f,0x03e,0x091,0x369,0x297,0x2c9,0x09f,0x2a0,0x2d9,// 256
+0x270,0x03b,0x0c1,0x1a1,0x09e,0x0d1,0x233,0x234,0x157,0x2b5,0x06d,0x260,0x233,0x16d,0x0b5,0x304,// 272
+0x2a5,0x136,0x0f8,0x161,0x2c4,0x19a,0x243,0x366,0x269,0x349,0x278,0x35c,0x121,0x218,0x023,0x309,// 288
+0x26a,0x24a,0x1a8,0x341,0x04d,0x255,0x15a,0x10d,0x2f5,0x278,0x2b7,0x2ef,0x14b,0x0f7,0x0b8,0x02d,// 304
+0x313,0x2a8,0x012,0x042,0x197,0x171,0x036,0x1ec,0x0e4,0x265,0x33e,0x39a,0x1b5,0x207,0x284,0x389,// 320
+0x315,0x1a4,0x131,0x1b9,0x0cf,0x12c,0x37c,0x33b,0x08d,0x219,0x17d,0x296,0x201,0x038,0x0fc,0x155,// 336
+0x0f2,0x31d,0x346,0x345,0x2d0,0x0e0,0x133,0x277,0x03d,0x057,0x230,0x136,0x2f4,0x299,0x18d,0x328,// 352
+0x353,0x135,0x1d9,0x31b,0x17a,0x01f,0x287,0x393,0x1cb,0x326,0x24e,0x2db,0x1a9,0x0d8,0x224,0x0f9,// 368
+0x141,0x371,0x2bb,0x217,0x2a1,0x30e,0x0d2,0x32f,0x389,0x12f,0x34b,0x39a,0x119,0x049,0x1d5,0x317,// 384
+0x294,0x0a2,0x1f2,0x134,0x09b,0x1a6,0x38b,0x331,0x0bb,0x03e,0x010,0x1a9,0x217,0x150,0x11e,0x1b5,// 400
+0x177,0x111,0x262,0x128,0x0b7,0x39b,0x074,0x29b,0x2ef,0x161,0x03e,0x16e,0x2b3,0x17b,0x2af,0x34a,// 416
+0x025,0x165,0x2d0,0x2e6,0x14a,0x005,0x027,0x39b,0x137,0x1a8,0x0f2,0x2ed,0x141,0x036,0x29d,0x13c,// 432
+0x156,0x12b,0x216,0x069,0x29b,0x1e8,0x280,0x2a0,0x240,0x21c,0x13c,0x1e6,0x2d1,0x262,0x02e,0x290,// 448
+0x1bf,0x0ab,0x268,0x1d0,0x0be,0x213,0x129,0x141,0x2fa,0x2f0,0x215,0x0af,0x086,0x00e,0x17d,0x1b1,// 464
+0x2cd,0x02d,0x06f,0x014,0x254,0x11c,0x2e0,0x08a,0x286,0x19b,0x36d,0x29d,0x08d,0x397,0x02d,0x30c,// 480
+0x197,0x0a4,0x14c,0x383,0x0a5,0x2d6,0x258,0x145,0x1f2,0x28f,0x165,0x2f0,0x300,0x0df,0x351,0x287,// 496
+0x03f,0x136,0x35f,0x0fb,0x16e,0x130,0x11a,0x2e2,0x2a3,0x19a,0x185,0x0f4,0x01f,0x079,0x12f,0x107)// 512
+)

+

[line 456]

+

+

Tags:

+
+ + + + + + + +
var:  of the Reed-Solomon polynomial equations used for error correction; one sub array for each correction level (0-8)
access:  protected
+
+ +
+
+ + + + + +
Type:  Factors
+


+
[ Top ]

+ +

+

$start_pattern =  '11111111010101000'

+

[line 116]

+

+

Tags:

+
+ + + + + + + +
var:  pattern
access:  protected
+
+ +
+
+ + + + + +
Type:  start
+


+
[ Top ]

+ +

+

$stop_pattern =  '111111101000101001'

+

[line 122]

+

+

Tags:

+
+ + + + + + + +
var:  pattern
access:  protected
+
+ +
+
+ + + + + +
Type:  start
+


+
[ Top ]

+ +

+

$textlatch = array(
+         '01' => array(27),'02'=>array(28),'03'=>array(28,25),//
+'10'=>array(28,28),'12'=>array(28),'13'=>array(28,25),//
+'20'=>array(28),'21'=>array(27),'23'=>array(25),//
+'30'=>array(29),'31'=>array(29,27),'32'=>array(29,28)//
+)

+

[line 139]

+

+

Tags:

+
+ + + + + + + +
var:  codes for Text Compaction Sub-Modes
access:  protected
+
+ +
+
+ + + + + +
Type:  Switching
+


+
[ Top ]

+ +

+

$textsubmodes = array(
+         array(0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x20,0xFD,0xFE,0xFF),// Alpha
+array(0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x20,0xFD,0xFE,0xFF),// Lower
+array(0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x26,0x0d,0x09,0x2c,0x3a,0x23,0x2d,0x2e,0x24,0x2f,0x2b,0x25,0x2a,0x3d,0x5e,0xFB,0x20,0xFD,0xFE,0xFF),// Mixed
+array(0x3b,0x3c,0x3e,0x40,0x5b,0x5c,0x5d,0x5f,0x60,0x7e,0x21,0x0d,0x09,0x2c,0x3a,0x0a,0x2d,0x2e,0x24,0x2f,0x22,0x7c,0x2a,0x28,0x29,0x3f,0x7b,0x7d,0x27,0xFF)// Puntuaction
+)

+

[line 128]

+

+

Tags:

+
+ + + + + + + +
var:  Compaction Sub-Modes (values 0xFB - 0xFF are used for submode changers)
access:  protected
+
+ +
+
+ + + + + +
Type:  Text
+


+
[ Top ]

+

+ +
+ +

Class Methods

+
+ +
+ +

constructor __construct [line 543]

+
+
+
+ PDF417 __construct( +string +$code, [int +$ecl = -1], [float +$aspectratio = 2], [ +$macro = array()]) +
+

+ + This is the class constructor.

Creates a PDF417 object




+

Tags:

+
+ + + + +
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
string  $code  code to represent using PDF417
int  $ecl  error correction level (0-8); default -1 = automatic correction level
float  $aspectratio  the width to height of the symbol (excluding quiet zones) òparam array $macro information for macro block
  $macro  
+

+
[ Top ]
+
+
+ +

method getBarcodeArray [line 742]

+
+
+
+ array getBarcodeArray( +) +
+

+ + Returns a barcode array which is readable by TCPDF



+

Tags:

+
+ + + + + + + +
return:  barcode array readable by TCPDF;
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getCompaction [line 884]

+
+
+
+ array getCompaction( +int +$mode, string +$code, [boolean +$addmode = true]) +
+

+ + Compact data by mode.



+

Tags:

+
+ + + + + + + +
return:  of codewords
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
int  $mode  compaction mode number
string  $code  data to compact
boolean  $addmode  if true add the mode codeword at first position
+

+
[ Top ]
+
+
+ +

method getErrorCorrection [line 791]

+
+
+
+ array getErrorCorrection( +array +$cw, int +$ecl) +
+

+ + Returns the error correction codewords



+

Tags:

+
+ + + + + + + +
return:  of error correction codewords
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $cw  array of codewords including Symbol Lenght Descriptor and pad
int  $ecl  error correction level 0-8
+

+
[ Top ]
+
+
+ +

method getErrorCorrectionLevel [line 753]

+
+
+
+ int getErrorCorrectionLevel( +int +$ecl, int +$numcw) +
+

+ + Returns the error correction level (0-8) to be used



+

Tags:

+
+ + + + + + + +
return:  error correction level
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $ecl  error correction level
int  $numcw  number of data codewords
+

+
[ Top ]
+
+
+ +

method getInputSequences [line 827]

+
+
+
+ bidimensional getInputSequences( +string +$code) +
+

+ + Create array of sequences from input



+

Tags:

+
+ + + + + + + +
return:  array containing characters and classification
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $code  code
+

+
[ Top ]
+
+

+ + +
+
+ Documentation generated on Thu, 25 Nov 2010 09:23:17 +0100 by phpDocumentor 1.4.3 +
+
+
+ + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/QRcode.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/QRcode.html new file mode 100644 index 00000000000..379d3e70e9c --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/QRcode.html @@ -0,0 +1,5563 @@ + + +Docs For Class QRcode + + + + + + + + + + + + + +
com-tecnick-tcpdf
+ + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
+ + + + + + +
+
+ +

Class: QRcode

+Source Location: /qrcode.php

+ + + + + + + + + + +
+ +

Class Overview

+

+
Class to create QR-code arrays for TCPDF class.


+

Author(s):

+
    +
  • Nicola Asuni
  • +
+ + + + + + + +

Version:

+
    +
  • 1.0.006
  • +
+ +

Copyright:

+
    +
  • 2010-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
  • +
+ +
+

Variables

+ +
+

Methods

+ +
+
+ + + + + + + + +
+
+ + +

Class Details

+
+[line 300]
+Class to create QR-code arrays for TCPDF class.

QR Code symbol is a 2D barcode that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness. This class supports QR Code model 2, described in JIS (Japanese Industrial Standards) X0510:2004 or ISO/IEC 18004. Currently the following features are not supported: ECI and FNC1 mode, Micro QR Code, QR Code model 1, Structured mode.

This class is derived from "PHP QR Code encoder" by Dominik Dzienia (http://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (http://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (http://www.denso-wave.com/qrcode/index-e.html). Please read comments on this class source file for full copyright and license information.




+

Tags:

+
+ + + + + + + + + + + + + + + + + + + + + + +
author:  Nicola Asuni
version:  1.0.006
copyright:  2010-2010 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
abstract:  Class for generating QR-code array for TCPDF.
name:  QRcode
license:  LGPL
+
+


+
[ Top ]

+ +
+ +

Class Variables

+
+ +

+

$alignmentPattern = array(
+         array( 0,  0),array(0,0),array(18,0),array(22,0),array(26,0),array(30,0),//  1- 5
+array(34,0),array(22,38),array(24,42),array(26,46),array(28,50),//  6-10
+array(30,54),array(32,58),array(34,62),array(26,46),array(26,48),// 11-15
+array(26,50),array(30,54),array(30,56),array(30,58),array(34,62),// 16-20
+array(28,50),array(26,50),array(30,54),array(28,54),array(32,58),// 21-25
+array(30,58),array(34,62),array(26,50),array(30,54),array(26,52),// 26-30
+array(30,56),array(34,60),array(30,58),array(34,62),array(30,54),// 31-35
+array(24,50),array(28,54),array(32,58),array(26,54),array(30,58)// 35-40
+)

+

[line 598]

+

+

Tags:

+
+ + + + + + + +
var:  Positions of alignment patterns. This array includes only the second and the third position of the alignment patterns. Rest of them can be calculated from the distance between them. See Table 1 in Appendix E (pp.71) of JIS X0510:2004.
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$anTable = array(
+         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, //
+         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, //
+         36, -1, -1, -1, 37, 38, -1, -1, -1, -1, 39, 40, -1, 41, 42, 43, //
+          0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 44, -1, -1, -1, -1, -1, //
+         -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, //
+         25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1, //
+         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, //
+         -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1  //
+         )

+

[line 472]

+

+

Tags:

+
+ + + + + + + +
var:  convesion table
access:  protected
+
+ +
+
+ + + + + +
Type:  alphabet-numeric
+


+
[ Top ]

+ +

+

$b1 =

+

[line 430]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  b1
+


+
[ Top ]

+ +

+

$barcode_array = array()

+

[line 306]

+

+

Tags:

+
+ + + + + + + +
var:  array to be returned which is readable by TCPDF
access:  protected
+
+ +
+
+ + + + + +
Type:  barcode
+


+
[ Top ]

+ +

+

$bit =

+

[line 380]

+

+

Tags:

+
+ + + + + + + +
var:  bit
access:  protected
+
+ +
+
+ + + + + +
Type:  single
+


+
[ Top ]

+ +

+

$blocks =

+

[line 400]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  blocks
+


+
[ Top ]

+ +

+

$capacity = array(
+         array(  0,    0, 0, array(   0,    0,    0,    0)),//
+array(21,26,0,array(7,10,13,17)),//  1
+array(25,44,7,array(10,16,22,28)),//
+array(29,70,7,array(15,26,36,44)),//
+array(33,100,7,array(20,36,52,64)),//
+array(37,134,7,array(26,48,72,88)),//  5
+array(41,172,7,array(36,64,96,112)),//
+array(45,196,0,array(40,72,108,130)),//
+array(49,242,0,array(48,88,132,156)),//
+array(53,292,0,array(60,110,160,192)),//
+array(57,346,0,array(72,130,192,224)),// 10
+array(61,404,0,array(80,150,224,264)),//
+array(65,466,0,array(96,176,260,308)),//
+array(69,532,0,array(104,198,288,352)),//
+array(73,581,3,array(120,216,320,384)),//
+array(77,655,3,array(132,240,360,432)),// 15
+array(81,733,3,array(144,280,408,480)),//
+array(85,815,3,array(168,308,448,532)),//
+array(89,901,3,array(180,338,504,588)),//
+array(93,991,3,array(196,364,546,650)),//
+array(97,1085,3,array(224,416,600,700)),// 20
+array(101,1156,4,array(224,442,644,750)),//
+array(105,1258,4,array(252,476,690,816)),//
+array(109,1364,4,array(270,504,750,900)),//
+array(113,1474,4,array(300,560,810,960)),//
+array(117,1588,4,array(312,588,870,1050)),// 25
+array(121,1706,4,array(336,644,952,1110)),//
+array(125,1828,4,array(360,700,1020,1200)),//
+array(129,1921,3,array(390,728,1050,1260)),//
+array(133,2051,3,array(420,784,1140,1350)),//
+array(137,2185,3,array(450,812,1200,1440)),// 30
+array(141,2323,3,array(480,868,1290,1530)),//
+array(145,2465,3,array(510,924,1350,1620)),//
+array(149,2611,3,array(540,980,1440,1710)),//
+array(153,2761,3,array(570,1036,1530,1800)),//
+array(157,2876,0,array(570,1064,1590,1890)),// 35
+array(161,3034,0,array(600,1120,1680,1980)),//
+array(165,3196,0,array(630,1204,1770,2100)),//
+array(169,3362,0,array(660,1260,1860,2220)),//
+array(173,3532,0,array(720,1316,1950,2310)),//
+array(177,3706,0,array(750,1372,2040,2430))// 40
+)

+

[line 488]

+

+

Tags:

+
+ + + + + + + +
var:  Table of the capacity of symbols See Table 1 (pp.13) and Table 12-16 (pp.30-36), JIS X0510:2004.
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$casesensitive =  true

+

[line 330]

+

+

Tags:

+
+ + + + + + + +
var:  true the input string will be converted to uppercase
access:  protected
+
+ +
+
+ + + + + +
Type:  if
+


+
[ Top ]

+ +

+

$count =

+

[line 412]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  counter
+


+
[ Top ]

+ +

+

$data =

+

[line 342]

+

+

Tags:

+
+ + + + + + + +
var:  data
access:  protected
+
+ +
+
+ + + + + +
Type:  mask
+


+
[ Top ]

+ +

+

$datacode = array()

+

[line 388]

+

+

Tags:

+
+ + + + + + + +
var:  code
access:  protected
+
+ +
+
+ + + + + +
Type:  data
+


+
[ Top ]

+ +

+

$dataLength =

+

[line 418]

+

+

Tags:

+
+ + + + + + + +
var:  length
access:  protected
+
+ +
+
+ + + + + +
Type:  data
+


+
[ Top ]

+ +

+

$dataStr =  ''

+

[line 446]

+

+

Tags:

+
+ + + + + + + +
var:  data string
access:  protected
+
+ +
+
+ + + + + +
Type:  input
+


+
[ Top ]

+ +

+

$dir =

+

[line 374]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  direction
+


+
[ Top ]

+ +

+

$ecccode = array()

+

[line 394]

+

+

Tags:

+
+ + + + + + + +
var:  correction code
access:  protected
+
+ +
+
+ + + + + +
Type:  error
+


+
[ Top ]

+ +

+

$eccLength =

+

[line 424]

+

+

Tags:

+
+ + + + + + + +
var:  correction length
access:  protected
+
+ +
+
+ + + + + +
Type:  error
+


+
[ Top ]

+ +

+

$eccTable = array(
+         array(array( 0,  0),array(0,0),array(0,0),array(0,0)),//
+array(array(1,0),array(1,0),array(1,0),array(1,0)),//  1
+array(array(1,0),array(1,0),array(1,0),array(1,0)),//
+array(array(1,0),array(1,0),array(2,0),array(2,0)),//
+array(array(1,0),array(2,0),array(2,0),array(4,0)),//
+array(array(1,0),array(2,0),array(2,2),array(2,2)),//  5
+array(array(2,0),array(4,0),array(4,0),array(4,0)),//
+array(array(2,0),array(4,0),array(2,4),array(4,1)),//
+array(array(2,0),array(2,2),array(4,2),array(4,2)),//
+array(array(2,0),array(3,2),array(4,4),array(4,4)),//
+array(array(2,2),array(4,1),array(6,2),array(6,2)),// 10
+array(array(4,0),array(1,4),array(4,4),array(3,8)),//
+array(array(2,2),array(6,2),array(4,6),array(7,4)),//
+array(array(4,0),array(8,1),array(8,4),array(12,4)),//
+array(array(3,1),array(4,5),array(11,5),array(11,5)),//
+array(array(5,1),array(5,5),array(5,7),array(11,7)),// 15
+array(array(5,1),array(7,3),array(15,2),array(3,13)),//
+array(array(1,5),array(10,1),array(1,15),array(2,17)),//
+array(array(5,1),array(9,4),array(17,1),array(2,19)),//
+array(array(3,4),array(3,11),array(17,4),array(9,16)),//
+array(array(3,5),array(3,13),array(15,5),array(15,10)),// 20
+array(array(4,4),array(17,0),array(17,6),array(19,6)),//
+array(array(2,7),array(17,0),array(7,16),array(34,0)),//
+array(array(4,5),array(4,14),array(11,14),array(16,14)),//
+array(array(6,4),array(6,14),array(11,16),array(30,2)),//
+array(array(8,4),array(8,13),array(7,22),array(22,13)),// 25
+array(array(10,2),array(19,4),array(28,6),array(33,4)),//
+array(array(8,4),array(22,3),array(8,26),array(12,28)),//
+array(array(3,10),array(3,23),array(4,31),array(11,31)),//
+array(array(7,7),array(21,7),array(1,37),array(19,26)),//
+array(array(5,10),array(19,10),array(15,25),array(23,25)),// 30
+array(array(13,3),array(2,29),array(42,1),array(23,28)),//
+array(array(17,0),array(10,23),array(10,35),array(19,35)),//
+array(array(17,1),array(14,21),array(29,19),array(11,46)),//
+array(array(13,6),array(14,23),array(44,7),array(59,1)),//
+array(array(12,7),array(12,26),array(39,14),array(22,41)),// 35
+array(array(6,14),array(6,34),array(46,10),array(2,64)),//
+array(array(17,4),array(29,14),array(49,10),array(24,46)),//
+array(array(4,18),array(13,32),array(48,14),array(42,32)),//
+array(array(20,4),array(40,7),array(43,22),array(10,67)),//
+array(array(19,6),array(18,31),array(34,34),array(20,61))// 40
+)

+

[line 548]

+

+

Tags:

+
+ + + + + + + +
var:  Table of the error correction code (Reed-Solomon block) See Table 12-16 (pp.30-36), JIS X0510:2004.
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$formatInfo = array(
+         array(0x77c4, 0x72f3, 0x7daa, 0x789d, 0x662f, 0x6318, 0x6c41, 0x6976),//
+array(0x5412,0x5125,0x5e7c,0x5b4b,0x45f9,0x40ce,0x4f97,0x4aa0),//
+array(0x355f,0x3068,0x3f31,0x3a06,0x24b4,0x2183,0x2eda,0x2bed),//
+array(0x1689,0x13be,0x1ce7,0x19d0,0x0762,0x0255,0x0d0c,0x083b)//
+)

+

[line 628]

+

+

Tags:

+
+ + + + + + + +
var:  Format information
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$frame =

+

[line 356]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  frame
+


+
[ Top ]

+ +

+

$frames = array()

+

[line 466]

+

+

Tags:

+
+ + + + + + + +
var:  of frames
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$hint =  QR_MODE_8B

+

[line 324]

+

+

Tags:

+
+ + + + + + + +
var:  mode
access:  protected
+
+ +
+
+ + + + + +
Type:  Encoding
+


+
[ Top ]

+ +

+

$items =

+

[line 452]

+

+

Tags:

+
+ + + + + + + +
var:  items
access:  protected
+
+ +
+
+ + + + + +
Type:  input
+


+
[ Top ]

+ +

+

$lengthTableBits = array(
+         array(10, 12, 14),array(9,11,13),array(8,16,16),array(8,10,12))

+

[line 536]

+

+

Tags:

+
+ + + + + + + +
var:  Length indicator
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$level =  QR_ECLEVEL_L

+

[line 318]

+

+

Tags:

+
+ + + + + + + +
var:  of error correction. See definitions for possible values.
access:  protected
+
+ +
+
+ + + + + +
Type:  Levels
+


+
[ Top ]

+ +

+

$rsblocks = array()

+

[line 406]

+

+

Tags:

+
+ + + + + + + +
var:  blocks
access:  protected
+
+ +
+
+ + + + + +
Type:  Reed-Solomon
+


+
[ Top ]

+ +

+

$rsitems = array()

+

[line 460]

+

+

Tags:

+
+ + + + + + + +
var:  items
access:  protected
+
+ +
+
+ + + + + +
Type:  Reed-Solomon
+


+
[ Top ]

+ +

+

$runLength = array()

+

[line 438]

+

+

Tags:

+
+ + + + + + + +
var:  length
access:  protected
+
+ +
+
+ + + + + +
Type:  run
+


+
[ Top ]

+ +

+

$structured =  0

+

[line 336]

+

+

Tags:

+
+ + + + + + + +
var:  QR code (not supported yet)
access:  protected
+
+ +
+
+ + + + + +
Type:  structured
+


+
[ Top ]

+ +

+

$version =  0

+

[line 312]

+

+

Tags:

+
+ + + + + + + +
var:  code version. Size of QRcode is defined as version. Version is from 1 to 40. Version 1 is 21*21 matrix. And 4 modules increases whenever 1 version increases. So version 40 is 177*177 matrix.
access:  protected
+
+ +
+
+ + + + + +
Type:  QR
+


+
[ Top ]

+ +

+

$versionPattern = array(
+         0x07c94, 0x085bc, 0x09a99, 0x0a4d3, 0x0bbf6, 0x0c762, 0x0d847, 0x0e60d, //
+         0x0f928, 0x10b78, 0x1145d, 0x12a17, 0x13532, 0x149a6, 0x15683, 0x168c9, //
+         0x177ec, 0x18ec4, 0x191e1, 0x1afab, 0x1b08e, 0x1cc1a, 0x1d33f, 0x1ed75, //
+         0x1f250, 0x209d5, 0x216f0, 0x228ba, 0x2379f, 0x24b0b, 0x2542e, 0x26a64, //
+         0x27541, 0x28c69
+      )

+

[line 616]

+

+

Tags:

+
+ + + + + + + +
var:  Version information pattern (BCH coded). See Table 1 in Appendix D (pp.68) of JIS X0510:2004. size: [QRSPEC_VERSION_MAX - 6]
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$width =

+

[line 350]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  width
+


+
[ Top ]

+ +

+

$x =

+

[line 362]

+

+

Tags:

+
+ + + + + + + +
var:  position of bit
access:  protected
+
+ +
+
+ + + + + +
Type:  X
+


+
[ Top ]

+ +

+

$y =

+

[line 368]

+

+

Tags:

+
+ + + + + + + +
var:  position of bit
access:  protected
+
+ +
+
+ + + + + +
Type:  Y
+


+
[ Top ]

+

+ +
+ +

Class Methods

+
+ +
+ +

constructor __construct [line 648]

+
+
+
+ QRcode __construct( +string +$code, [string +$eclevel = 'L']) +
+

+ + This is the class constructor.

Creates a QRcode object




+

Tags:

+
+ + + + + + + +
since:  1.0.000
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
string  $code  code to represent using QRcode
string  $eclevel  error level:
  • L : About 7% or less errors can be corrected.
  • M : About 15% or less errors can be corrected.
  • Q : About 25% or less errors can be corrected.
  • H : About 30% or less errors can be corrected.
+

+
[ Top ]
+
+
+ +

method allocate [line 2138]

+
+
+
+ array allocate( +int +$setLength) +
+

+ + Return an array with zeros



+

Tags:

+
+ + + + +
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $setLength  array size
+

+
[ Top ]
+
+
+ +

method appendBitstream [line 2192]

+
+
+
+ array appendBitstream( +array +$bitstream, array +$append) +
+

+ + Append one bitstream to another



+

Tags:

+
+ + + + + + + +
return:  bitstream
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $bitstream  original bitstream
array  $append  bitstream to append
+

+
[ Top ]
+
+
+ +

method appendBytes [line 2224]

+
+
+
+ array appendBytes( +array +$bitstream, int +$size, array +$data) +
+

+ + Append one bitstream created from bytes to another



+

Tags:

+
+ + + + + + + +
return:  bitstream
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
array  $bitstream  original bitstream
int  $size  size
array  $data  bytes
+

+
[ Top ]
+
+
+ +

method appendNewInputItem [line 1705]

+
+
+
+ items appendNewInputItem( +array +$items, int +$mode, int +$size, array +$data) +
+

+ + Append data to an input object.

The data is copied and appended to the input object.




+

Tags:

+
+ + + + +
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
int  $mode  encoding mode.
int  $size  size of data (byte).
array  $data  array of input data.
array  $items  items input items
+

+
[ Top ]
+
+
+ +

method appendNum [line 2209]

+
+
+
+ array appendNum( +array +$bitstream, int +$bits, int +$num) +
+

+ + Append one bitstream created from number to another



+

Tags:

+
+ + + + + + + +
return:  bitstream
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
array  $bitstream  original bitstream
int  $bits  number of bits
int  $num  number
+

+
[ Top ]
+
+
+ +

method appendPaddingBit [line 2064]

+
+
+
+ array appendPaddingBit( +array +$bstream) +
+

+ + Append Padding Bit to bitstream



+

Tags:

+
+ + + + + + + +
return:  bitstream
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $bstream  
+

+
[ Top ]
+
+
+ +

method binarize [line 698]

+
+
+
+ array binarize( +array +$frame) +
+

+ + Convert the frame in binary form



+

Tags:

+
+ + + + + + + +
return:  frame in binary form
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $frame  array to binarize
+

+
[ Top ]
+
+
+ +

method bitstreamToByte [line 2237]

+
+
+
+ array bitstreamToByte( + +$bstream, array +$bitstream) +
+

+ + Convert bitstream to bytes



+

Tags:

+
+ + + + + + + +
return:  of bytes
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $bitstream  original bitstream
  $bstream  
+

+
[ Top ]
+
+
+ +

method calcN1N3 [line 1135]

+
+
+
+ int calcN1N3( +int +$length) +
+

+ + calcN1N3



+

Tags:

+
+ + + + + + + +
return:  demerit
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $length  
+

+
[ Top ]
+
+
+ +

method calcParity [line 1739]

+
+
+
+ int calcParity( +array +$items) +
+

+ + calcParity



+

Tags:

+
+ + + + + + + +
return:  parity
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $items  
+

+
[ Top ]
+
+
+ +

method check [line 1868]

+
+
+
+ boolean check( +int +$mode, int +$size, array +$data) +
+

+ + Validate the input data.



+

Tags:

+
+ + + + + + + +
return:  true in case of valid data, false otherwise
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
int  $mode  encoding mode.
int  $size  size of data (byte).
array  $data  data data to validate
+

+
[ Top ]
+
+
+ +

method checkModeAn [line 1781]

+
+
+
+ boolean checkModeAn( +int +$size, array +$data) +
+

+ + checkModeAn



+

Tags:

+
+ + + + + + + +
return:  true or false
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $size  
array  $data  
+

+
[ Top ]
+
+
+ +

method checkModeKanji [line 1848]

+
+
+
+ boolean checkModeKanji( +int +$size, array +$data) +
+

+ + checkModeKanji



+

Tags:

+
+ + + + + + + +
return:  true or false
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $size  
array  $data  
+

+
[ Top ]
+
+
+ +

method checkModeNum [line 1757]

+
+
+
+ boolean checkModeNum( +int +$size, array +$data) +
+

+ + checkModeNum



+

Tags:

+
+ + + + + + + +
return:  true or false
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $size  
array  $data  
+

+
[ Top ]
+
+
+ +

method convertData [line 2035]

+
+
+
+ array convertData( +array +$items) +
+

+ + convertData



+

Tags:

+
+ + + + + + + +
return:  items
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $items  
+

+
[ Top ]
+
+
+ +

method createBitStream [line 2020]

+
+
+
+ array createBitStream( +array +$items) +
+

+ + createBitStream



+

Tags:

+
+ + + + + + + +
return:  of items and total bits
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $items  
+

+
[ Top ]
+
+
+ +

method createFrame [line 2540]

+
+
+
+ Array createFrame( +int +$version) +
+

+ + Return a copy of initialized frame.



+

Tags:

+
+ + + + + + + +
return:  of unsigned char.
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $version  version
+

+
[ Top ]
+
+
+ +

method eat8 [line 1404]

+
+
+
+ int eat8( +) +
+

+ + eat8



+

Tags:

+
+ + + + + + + +
return:  run
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method eatAn [line 1352]

+
+
+
+ int eatAn( +) +
+

+ + eatAn



+

Tags:

+
+ + + + + + + +
return:  run
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method eatKanji [line 1391]

+
+
+
+ int eatKanji( +) +
+

+ + eatKanji



+

Tags:

+
+ + + + + + + +
return:  run
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method eatNum [line 1320]

+
+
+
+ int eatNum( +) +
+

+ + eatNum



+

Tags:

+
+ + + + + + + +
return:  run
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method encodeBitStream [line 1650]

+
+
+
+ array encodeBitStream( +array +$inputitem, int +$version) +
+

+ + encodeBitStream



+

Tags:

+
+ + + + + + + +
return:  input item
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $inputitem  
int  $version  
+

+
[ Top ]
+
+
+ +

method encodeMask [line 729]

+
+
+
+ void encodeMask( +int +$mask) +
+

+ + Encode mask



+

Tags:

+
+ + + + +
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $mask  masking mode
+

+
[ Top ]
+
+
+ +

method encodeMode8 [line 1596]

+
+
+
+ array encodeMode8( +array +$inputitem, int +$version) +
+

+ + encodeMode8



+

Tags:

+
+ + + + + + + +
return:  input item
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $inputitem  
int  $version  
+

+
[ Top ]
+
+
+ +

method encodeModeAn [line 1573]

+
+
+
+ array encodeModeAn( +array +$inputitem, int +$version) +
+

+ + encodeModeAn



+

Tags:

+
+ + + + + + + +
return:  input item
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $inputitem  
int  $version  
+

+
[ Top ]
+
+
+ +

method encodeModeKanji [line 1612]

+
+
+
+ array encodeModeKanji( +array +$inputitem, int +$version) +
+

+ + encodeModeKanji



+

Tags:

+
+ + + + + + + +
return:  input item
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $inputitem  
int  $version  
+

+
[ Top ]
+
+
+ +

method encodeModeNum [line 1544]

+
+
+
+ array encodeModeNum( +array +$inputitem, int +$version) +
+

+ + encodeModeNum



+

Tags:

+
+ + + + + + + +
return:  input item
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $inputitem  
int  $version  
+

+
[ Top ]
+
+
+ +

method encodeModeStructure [line 1635]

+
+
+
+ array encodeModeStructure( +array +$inputitem) +
+

+ + encodeModeStructure



+

Tags:

+
+ + + + + + + +
return:  input item
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $inputitem  
+

+
[ Top ]
+
+
+ +

method encodeString [line 713]

+
+
+
+ void encodeString( +string +$string) +
+

+ + Encode the input string to QR code



+

Tags:

+
+ + + + +
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $string  input string to encode
+

+
[ Top ]
+
+
+ +

method encode_rs_char [line 2838]

+
+
+
+ parity encode_rs_char( +array +$rs, array +$data, array +$parity) +
+

+ + Encode a Reed-Solomon codec and returns the parity array



+

Tags:

+
+ + + + + + + +
return:  array
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
array  $rs  RS values
array  $data  data
array  $parity  parity
+

+
[ Top ]
+
+
+ +

method estimateBitsMode8 [line 1829]

+
+
+
+ int estimateBitsMode8( +int +$size) +
+

+ + estimateBitsMode8



+

Tags:

+
+ + + + + + + +
return:  number of bits
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $size  
+

+
[ Top ]
+
+
+ +

method estimateBitsModeAn [line 1816]

+
+
+
+ int estimateBitsModeAn( +int +$size) +
+

+ + estimateBitsModeAn



+

Tags:

+
+ + + + + + + +
return:  number of bits
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $size  
+

+
[ Top ]
+
+
+ +

method estimateBitsModeKanji [line 1838]

+
+
+
+ int estimateBitsModeKanji( +int +$size) +
+

+ + estimateBitsModeKanji



+

Tags:

+
+ + + + + + + +
return:  number of bits
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $size  
+

+
[ Top ]
+
+
+ +

method estimateBitsModeNum [line 1795]

+
+
+
+ int estimateBitsModeNum( +int +$size) +
+

+ + estimateBitsModeNum



+

Tags:

+
+ + + + + + + +
return:  number of bits
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $size  
+

+
[ Top ]
+
+
+ +

method estimateBitStreamSize [line 1901]

+
+
+
+ int estimateBitStreamSize( +array +$items, int +$version) +
+

+ + estimateBitStreamSize



+

Tags:

+
+ + + + + + + +
return:  bits
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $items  
int  $version  
+

+
[ Top ]
+
+
+ +

method estimateVersion [line 1944]

+
+
+
+ int estimateVersion( +array +$items) +
+

+ + estimateVersion



+

Tags:

+
+ + + + + + + +
return:  version
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $items  
+

+
[ Top ]
+
+
+ +

method evaluateSymbol [line 1166]

+
+
+
+ int evaluateSymbol( +int +$width, array +$frame) +
+

+ + evaluateSymbol



+

Tags:

+
+ + + + + + + +
return:  demerit
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $width  
array  $frame  
+

+
[ Top ]
+
+
+ +

method generateMaskNo [line 1072]

+
+
+
+ array generateMaskNo( +int +$maskNo, int +$width, array +$frame) +
+

+ + Return bitmask



+

Tags:

+
+ + + + + + + +
return:  bitmask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
int  $maskNo  mask number
int  $width  width
array  $frame  frame
+

+
[ Top ]
+
+
+ +

method getBarcodeArray [line 689]

+
+
+
+ array getBarcodeArray( +) +
+

+ + Returns a barcode array which is readable by TCPDF



+

Tags:

+
+ + + + + + + +
return:  barcode array readable by TCPDF;
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getBitStream [line 2114]

+
+
+
+ array getBitStream( +int +$items) +
+

+ + Returns a stream of bits.



+

Tags:

+
+ + + + + + + +
return:  padded merged byte stream
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $items  
+

+
[ Top ]
+
+
+ +

method getByteStream [line 2124]

+
+
+
+ array getByteStream( +int +$items) +
+

+ + Pack all bit streams padding bits into a byte array.



+

Tags:

+
+ + + + + + + +
return:  padded merged byte stream
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $items  
+

+
[ Top ]
+
+
+ +

method getCode [line 918]

+
+
+
+ array getCode( +) +
+

+ + Return Reed-Solomon block code.



+

Tags:

+
+ + + + + + + +
return:  rsblocks
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method getDataLength [line 2293]

+
+
+
+ int getDataLength( +int +$version, int +$level) +
+

+ + Return maximum data code length (bytes) for the version.



+

Tags:

+
+ + + + + + + +
return:  maximum size (bytes)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $version  version
int  $level  error correction level
+

+
[ Top ]
+
+
+ +

method getECCLength [line 2303]

+
+
+
+ int getECCLength( +int +$version, int +$level) +
+

+ + Return maximum error correction code length (bytes) for the version.



+

Tags:

+
+ + + + + + + +
return:  ECC size (bytes)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $version  version
int  $level  error correction level
+

+
[ Top ]
+
+
+ +

method getEccSpec [line 2393]

+
+
+
+ array getEccSpec( +int +$version, int +$level, array +$spec) +
+

+ + Return an array of ECC specification.



+

Tags:

+
+ + + + + + + +
return:  spec
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
int  $version  version
int  $level  error correction level
array  $spec  an array of ECC specification contains as following: {# of type1 blocks, # of data code, # of ecc code, # of type2 blocks, # of data code}
+

+
[ Top ]
+
+
+ +

method getFormatInfo [line 2501]

+
+
+
+ BCH getFormatInfo( +array +$mask, int +$level) +
+

+ + Return BCH encoded format information pattern.



+

Tags:

+
+ + + + + + + +
return:  encoded format information pattern
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $mask  
int  $level  error correction level
+

+
[ Top ]
+
+
+ +

method getFrameAt [line 803]

+
+
+
+ value getFrameAt( +array +$at) +
+

+ + Get frame value at specified position



+

Tags:

+
+ + + + + + + +
return:  at specified position
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $at  x,y position
+

+
[ Top ]
+
+
+ +

method getMinimumVersion [line 2331]

+
+
+
+ int getMinimumVersion( +int +$size, int +$level) +
+

+ + Return a version number that satisfies the input code length.



+

Tags:

+
+ + + + + + + +
return:  version number
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $size  input code length (byte)
int  $level  error correction level
+

+
[ Top ]
+
+
+ +

method getNextPosition [line 811]

+
+
+
+ array getNextPosition( +) +
+

+ + Return the next frame position



+

Tags:

+
+ + + + + + + +
return:  of x,y coordinates
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method getRemainder [line 2321]

+
+
+
+ int getRemainder( +int +$version) +
+

+ + Return the numer of remainder bits.



+

Tags:

+
+ + + + + + + +
return:  number of remainder bits
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $version  version
+

+
[ Top ]
+
+
+ +

method getVersionPattern [line 2488]

+
+
+
+ BCH getVersionPattern( +int +$version) +
+

+ + Return BCH encoded version information pattern that is used for the symbol of version 7 or greater. Use lower 18 bits.



+

Tags:

+
+ + + + + + + +
return:  encoded version information pattern
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $version  version
+

+
[ Top ]
+
+
+ +

method getWidth [line 2312]

+
+
+
+ int getWidth( +int +$version) +
+

+ + Return the width of the symbol for the version.



+

Tags:

+
+ + + + + + + +
return:  width
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $version  version
+

+
[ Top ]
+
+
+ +

method identifyMode [line 1295]

+
+
+
+ int identifyMode( +int +$pos) +
+

+ + identifyMode



+

Tags:

+
+ + + + + + + +
return:  mode
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $pos  
+

+
[ Top ]
+
+
+ +

method init [line 867]

+
+
+
+ 0 init( +array +$spec) +
+

+ + Initialize code.



+

Tags:

+
+ + + + + + + +
return:  in case of success, -1 in case of error
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $spec  array of ECC specification
+

+
[ Top ]
+
+
+ +

method init_rs [line 2713]

+
+
+
+ array init_rs( +int +$symsize, int +$gfpoly, int +$fcr, int +$prim, int +$nroots, int +$pad) +
+

+ + Initialize a Reed-Solomon codec and add it to existing rsitems



+

Tags:

+
+ + + + + + + +
return:  Array of RS values:
  • mm = Bits per symbol;
  • nn = Symbols per block;
  • alpha_to = log lookup table array;
  • index_of = Antilog lookup table array;
  • genpoly = Generator polynomial array;
  • nroots = Number of generator;
  • roots = number of parity symbols;
  • fcr = First consecutive root, index form;
  • prim = Primitive element, index form;
  • iprim = prim-th root of 1, index form;
  • pad = Padding bytes in shortened block;
  • gfpoly
.
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
int  $symsize  symbol size, bits
int  $gfpoly  Field generator polynomial coefficients
int  $fcr  first root of RS code generator polynomial, index form
int  $prim  primitive element to generate polynomial roots
int  $nroots  RS code generator polynomial degree (number of roots)
int  $pad  padding bytes at front of shortened block
+

+
[ Top ]
+
+
+ +

method init_rs_char [line 2754]

+
+
+
+ array init_rs_char( +int +$symsize, int +$gfpoly, int +$fcr, int +$prim, int +$nroots, int +$pad) +
+

+ + Initialize a Reed-Solomon codec and returns an array of values.



+

Tags:

+
+ + + + + + + +
return:  Array of RS values:
  • mm = Bits per symbol;
  • nn = Symbols per block;
  • alpha_to = log lookup table array;
  • index_of = Antilog lookup table array;
  • genpoly = Generator polynomial array;
  • nroots = Number of generator;
  • roots = number of parity symbols;
  • fcr = First consecutive root, index form;
  • prim = Primitive element, index form;
  • iprim = prim-th root of 1, index form;
  • pad = Padding bytes in shortened block;
  • gfpoly
.
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
int  $symsize  symbol size, bits
int  $gfpoly  Field generator polynomial coefficients
int  $fcr  first root of RS code generator polynomial, index form
int  $prim  primitive element to generate polynomial roots
int  $nroots  RS code generator polynomial degree (number of roots)
int  $pad  padding bytes at front of shortened block
+

+
[ Top ]
+
+
+ +

method insertStructuredAppendHeader [line 1721]

+
+
+
+ array insertStructuredAppendHeader( +array +$items, int +$size, int +$index, int +$parity) +
+

+ + insertStructuredAppendHeader



+

Tags:

+
+ + + + + + + +
return:  items
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
array  $items  
int  $size  
int  $index  
int  $parity  
+

+
[ Top ]
+
+
+ +

method isalnumat [line 1283]

+
+
+
+ boolean isalnumat( +string +$str, int +$pos) +
+

+ + Return true if the character at specified position is an alphanumeric character



+

Tags:

+
+ + + + + + + +
return:  true of false
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
string  $str  string
int  $pos  characted position
+

+
[ Top ]
+
+
+ +

method isdigitat [line 1270]

+
+
+
+ boolean isdigitat( +string +$str, int +$pos) +
+

+ + Return true if the character at specified position is a number



+

Tags:

+
+ + + + + + + +
return:  true of false
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
string  $str  string
int  $pos  characted position
+

+
[ Top ]
+
+
+ +

method lengthIndicator [line 2347]

+
+
+
+ int lengthIndicator( +int +$mode, int +$version) +
+

+ + Return the size of length indicator for the mode and version.



+

Tags:

+
+ + + + + + + +
return:  the size of the appropriate length indicator (bits).
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $mode  encoding mode
int  $version  version
+

+
[ Top ]
+
+
+ +

method lengthOfCode [line 1965]

+
+
+
+ int lengthOfCode( +int +$mode, int +$version, int +$bits) +
+

+ + lengthOfCode



+

Tags:

+
+ + + + + + + +
return:  size
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
int  $mode  
int  $version  
int  $bits  
+

+
[ Top ]
+
+
+ +

method lookAnTable [line 1771]

+
+
+
+ value lookAnTable( +int +$c) +
+

+ + Look up the alphabet-numeric convesion table (see JIS X0510:2004, pp.19).



+

Tags:

+
+ + + + +
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $c  character value
+

+
[ Top ]
+
+
+ +

method makeMask [line 1123]

+
+
+
+ array makeMask( +int +$width, array +$frame, int +$maskNo, int +$level) +
+

+ + makeMask



+

Tags:

+
+ + + + + + + +
return:  mask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
int  $width  
array  $frame  
int  $maskNo  
int  $level  
+

+
[ Top ]
+
+
+ +

method makeMaskNo [line 1096]

+
+
+
+ int makeMaskNo( +int +$maskNo, int +$width, int +$s, +&$d, [boolean +$maskGenOnly = false], int +$d) +
+

+ + makeMaskNo



+

Tags:

+
+ + + + + + + +
return:  b
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
int  $maskNo  
int  $width  
int  $s  
int  $d  
boolean  $maskGenOnly  
  &$d  
+

+
[ Top ]
+
+
+ +

method mask [line 1228]

+
+
+
+ array mask( +int +$width, array +$frame, int +$level) +
+

+ + mask



+

Tags:

+
+ + + + + + + +
return:  best mask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
int  $width  
array  $frame  
int  $level  
+

+
[ Top ]
+
+
+ +

method mask0 [line 991]

+
+
+
+ int mask0( +int +$x, int +$y) +
+

+ + mask0



+

Tags:

+
+ + + + + + + +
return:  mask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $x  X position
int  $y  Y position
+

+
[ Top ]
+
+
+ +

method mask1 [line 1001]

+
+
+
+ int mask1( +int +$x, int +$y) +
+

+ + mask1



+

Tags:

+
+ + + + + + + +
return:  mask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $x  X position
int  $y  Y position
+

+
[ Top ]
+
+
+ +

method mask2 [line 1011]

+
+
+
+ int mask2( +int +$x, int +$y) +
+

+ + mask2



+

Tags:

+
+ + + + + + + +
return:  mask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $x  X position
int  $y  Y position
+

+
[ Top ]
+
+
+ +

method mask3 [line 1021]

+
+
+
+ int mask3( +int +$x, int +$y) +
+

+ + mask3



+

Tags:

+
+ + + + + + + +
return:  mask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $x  X position
int  $y  Y position
+

+
[ Top ]
+
+
+ +

method mask4 [line 1031]

+
+
+
+ int mask4( +int +$x, int +$y) +
+

+ + mask4



+

Tags:

+
+ + + + + + + +
return:  mask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $x  X position
int  $y  Y position
+

+
[ Top ]
+
+
+ +

method mask5 [line 1041]

+
+
+
+ int mask5( +int +$x, int +$y) +
+

+ + mask5



+

Tags:

+
+ + + + + + + +
return:  mask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $x  X position
int  $y  Y position
+

+
[ Top ]
+
+
+ +

method mask6 [line 1051]

+
+
+
+ int mask6( +int +$x, int +$y) +
+

+ + mask6



+

Tags:

+
+ + + + + + + +
return:  mask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $x  X position
int  $y  Y position
+

+
[ Top ]
+
+
+ +

method mask7 [line 1061]

+
+
+
+ int mask7( +int +$x, int +$y) +
+

+ + mask7



+

Tags:

+
+ + + + + + + +
return:  mask
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $x  X position
int  $y  Y position
+

+
[ Top ]
+
+
+ +

method maximumWords [line 2367]

+
+
+
+ int maximumWords( +int +$mode, int +$version) +
+

+ + Return the maximum length for the mode and version.



+

Tags:

+
+ + + + + + + +
return:  the maximum length (bytes)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $mode  encoding mode
int  $version  version
+

+
[ Top ]
+
+
+ +

method mergeBitStream [line 2097]

+
+
+
+ array mergeBitStream( + +$items, array +$bstream) +
+

+ + mergeBitStream



+

Tags:

+
+ + + + + + + +
return:  bitstream
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $bstream  
  $items  
+

+
[ Top ]
+
+
+ +

method modnn [line 2736]

+
+
+
+ int modnn( +array +$rs, int +$x) +
+

+ + modnn



+

Tags:

+
+ + + + + + + +
return:  X osition
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $x  X position
array  $rs  RS values
+

+
[ Top ]
+
+
+ +

method newFrame [line 2605]

+
+
+
+ Array newFrame( +int +$version) +
+

+ + Set new frame for the specified version.



+

Tags:

+
+ + + + + + + +
return:  of unsigned char.
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $version  version
+

+
[ Top ]
+
+
+ +

method newFromBytes [line 2168]

+
+
+
+ array newFromBytes( +int +$size, array +$data) +
+

+ + Return new bitstream from bytes



+

Tags:

+
+ + + + + + + +
return:  bitstream
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $size  size
array  $data  bytes
+

+
[ Top ]
+
+
+ +

method newFromNum [line 2148]

+
+
+
+ array newFromNum( +int +$bits, int +$num) +
+

+ + Return new bitstream from number



+

Tags:

+
+ + + + + + + +
return:  bitstream
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $bits  number of bits
int  $num  number
+

+
[ Top ]
+
+
+ +

method newInputItem [line 1522]

+
+
+
+ array newInputItem( +int +$mode, int +$size, array +$data, [array +$bstream = null]) +
+

+ + newInputItem



+

Tags:

+
+ + + + + + + +
return:  input item
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
int  $mode  
int  $size  
array  $data  
array  $bstream  
+

+
[ Top ]
+
+
+ +

method putAlignmentMarker [line 2425]

+
+
+
+ array putAlignmentMarker( +array +$frame, int +$ox, int +$oy, int +$width) +
+

+ + Put an alignment marker.



+

Tags:

+
+ + + + + + + +
return:  frame
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
array  $frame  frame
int  $width  width
int  $ox  X center coordinate of the pattern
int  $oy  Y center coordinate of the pattern
+

+
[ Top ]
+
+
+ +

method putAlignmentPattern [line 2448]

+
+
+
+ array putAlignmentPattern( +int +$version, +$frame, int +$width, array +$fram) +
+

+ + Put an alignment pattern.



+

Tags:

+
+ + + + + + + +
return:  frame
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
int  $version  version
array  $fram  frame
int  $width  width
  $frame  
+

+
[ Top ]
+
+
+ +

method putFinderPattern [line 2519]

+
+
+
+ array putFinderPattern( +array +$frame, int +$ox, int +$oy, int +$width) +
+

+ + Put a finder pattern.



+

Tags:

+
+ + + + + + + +
return:  frame
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
array  $frame  frame
int  $width  width
int  $ox  X center coordinate of the pattern
int  $oy  Y center coordinate of the pattern
+

+
[ Top ]
+
+
+ +

method qrstrset [line 2282]

+
+
+
+ array qrstrset( +array +$srctab, int +$x, int +$y, string +$repl, [int +$replLen = false]) +
+

+ + Replace a value on the array at the specified position



+

Tags:

+
+ + + + + + + +
return:  srctab
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
array  $srctab  
int  $x  X position
int  $y  Y position
string  $repl  value to replace
int  $replLen  length of the repl string
+

+
[ Top ]
+
+
+ +

method rsBlockNum [line 2623]

+
+
+
+ int rsBlockNum( +array +$spec) +
+

+ + Return block number 0



+

Tags:

+
+ + + + + + + +
return:  value
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $spec  
+

+
[ Top ]
+
+
+ +

method rsBlockNum1 [line 2632]

+
+
+
+ int rsBlockNum1( +array +$spec) +
+

+ + Return block number 1



+

Tags:

+
+ + + + + + + +
return:  value
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $spec  
+

+
[ Top ]
+
+
+ +

method rsBlockNum2 [line 2659]

+
+
+
+ int rsBlockNum2( +array +$spec) +
+

+ + Return block number 2



+

Tags:

+
+ + + + + + + +
return:  value
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $spec  
+

+
[ Top ]
+
+
+ +

method rsDataCodes1 [line 2641]

+
+
+
+ int rsDataCodes1( +array +$spec) +
+

+ + Return data codes 1



+

Tags:

+
+ + + + + + + +
return:  value
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $spec  
+

+
[ Top ]
+
+
+ +

method rsDataCodes2 [line 2668]

+
+
+
+ int rsDataCodes2( +array +$spec) +
+

+ + Return data codes 2



+

Tags:

+
+ + + + + + + +
return:  value
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $spec  
+

+
[ Top ]
+
+
+ +

method rsDataLength [line 2686]

+
+
+
+ int rsDataLength( +array +$spec) +
+

+ + Return data length



+

Tags:

+
+ + + + + + + +
return:  value
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $spec  
+

+
[ Top ]
+
+
+ +

method rsEccCodes1 [line 2650]

+
+
+
+ int rsEccCodes1( +array +$spec) +
+

+ + Return ecc codes 1



+

Tags:

+
+ + + + + + + +
return:  value
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $spec  
+

+
[ Top ]
+
+
+ +

method rsEccCodes2 [line 2677]

+
+
+
+ int rsEccCodes2( +array +$spec) +
+

+ + Return ecc codes 2



+

Tags:

+
+ + + + + + + +
return:  value
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $spec  
+

+
[ Top ]
+
+
+ +

method rsEccLength [line 2695]

+
+
+
+ int rsEccLength( +array +$spec) +
+

+ + Return ecc length



+

Tags:

+
+ + + + + + + +
return:  value
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $spec  
+

+
[ Top ]
+
+
+ +

method setFrameAt [line 794]

+
+
+
+ void setFrameAt( +array +$at, int +$val) +
+

+ + Set frame value at specified position



+

Tags:

+
+ + + + +
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $at  x,y position
int  $val  value of the character to set
+

+
[ Top ]
+
+
+ +

method splitString [line 1452]

+
+
+
+ void splitString( +) +
+

+ + splitString



+

Tags:

+
+ + + + +
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method toUpper [line 1493]

+
+
+
+ void toUpper( +) +
+

+ + toUpper



+

Tags:

+
+ + + + +
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method writeFormatInformation [line 949]

+
+
+
+ int writeFormatInformation( +int +$width, +&$frame, array +$mask, int +$level, array +$frame) +
+

+ + Write Format Information on frame and returns the number of black bits



+

Tags:

+
+ + + + + + + +
return:  blacks
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
int  $width  frame width
array  $frame  frame
array  $mask  masking mode
int  $level  error correction level
  &$frame  
+

+
[ Top ]
+
+

+ + +
+
+ Documentation generated on Thu, 25 Nov 2010 09:23:17 +0100 by phpDocumentor 1.4.3 +
+
+
+ + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDF.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDF.html new file mode 100644 index 00000000000..8b9f8eadee4 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDF.html @@ -0,0 +1,28480 @@ + + +Docs For Class TCPDF + + + + + + + + + + + + + +
com-tecnick-tcpdf
+ + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
+ + + + + + +
+
+ +

Class: TCPDF

+Source Location: /tcpdf.php

+ + + + + + + + + + +
+ +

Class Overview

+

+
This is a PHP class for generating PDF documents without requiring external extensions.


+

Author(s):

+
    +
  • Nicola Asuni - info@tecnick.com
  • +
+ + + + + + +

Version:

+
    +
  • 5.9.023
  • +
+ + +
+

Variables

+ +
+

Methods

+ +
+
+ + + + + + + + +
+
+ + +

Class Details

+
+[line 159]
+This is a PHP class for generating PDF documents without requiring external extensions.


TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.




+

Tags:

+
+ + + + + + + + + + + + + + + + +
author:  Nicola Asuni - info@tecnick.com
version:  5.9.023
link:  http://www.tcpdf.org
name:  TCPDF
license:  GNU-LGPLv3 + YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS.
+
+


+
[ Top ]

+ +
+ +

Class Variables

+
+ +

+

$AliasNbPages =  '{nb}'

+

[line 515]

+

+

Tags:

+
+ + + + + + + +
var:  for total number of pages
access:  protected
+
+ +
+
+ + + + + +
Type:  alias
+


+
[ Top ]

+ +

+

$AliasNumPage =  '{pnb}'

+

[line 521]

+

+

Tags:

+
+ + + + + + + +
var:  for page number
access:  protected
+
+ +
+
+ + + + + +
Type:  alias
+


+
[ Top ]

+ +

+

$annotation_fonts = array()

+

[line 1390]

+ List of fonts used on form fields (fontname => fontkey).



+

Tags:

+
+ + + + + + + +
since:  4.8.001 (2009-09-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$author =  ''

+

[line 497]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  author
+


+
[ Top ]

+ +

+

$AutoPageBreak =

+

[line 455]

+

+

Tags:

+
+ + + + + + + +
var:  page breaking
access:  protected
+
+ +
+
+ + + + + +
Type:  automatic
+


+
[ Top ]

+ +

+

$barcode =  false

+

[line 618]

+

+

Tags:

+
+ + + + + + + +
var:  to print on page footer (only if set).
access:  protected
+
+ +
+
+ + + + + +
Type:  Barcode
+


+
[ Top ]

+ +

+

$bgcolor =

+

[line 716]

+

+

Tags:

+
+ + + + + + + +
var:  background color
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$bMargin =

+

[line 289]

+

+

Tags:

+
+ + + + + + + +
var:  break margin
access:  protected
+
+ +
+
+ + + + + +
Type:  page
+


+
[ Top ]

+ +

+

$booklet =  false

+

[line 1080]

+ Booklet mode for double-sided pages



+

Tags:

+
+ + + + + + + +
since:  4.2.000 (2008-10-29)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$bordermrk = array()

+

[line 952]

+ Array used to store positions inside the pages buffer.

keys are the page numbers




+

Tags:

+
+ + + + + + + +
since:  5.7.000 (2010-08-03)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$buffer =

+

[line 193]

+

+

Tags:

+
+ + + + + + + +
var:  holding in-memory PDF
access:  protected
+
+ +
+
+ + + + + +
Type:  buffer
+


+
[ Top ]

+ +

+

$bufferlen =  0

+

[line 1180]

+ Length of the buffer in bytes.



+

Tags:

+
+ + + + + + + +
since:  4.5.000 (2008-12-31)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$byterange_string =  '/ByteRange[0 ********** ********** **********]'

+

[line 1327]

+ ByteRange placemark used during signature process.



+

Tags:

+
+ + + + + + + +
since:  4.6.028 (2009-08-25)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$cache_file_length = array()

+

[line 1236]

+ Array used to store the lengths of cache files



+

Tags:

+
+ + + + + + + +
since:  4.5.029 (2009-03-19)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$cache_maxsize_UTF8StringToArray =  8

+

[line 1264]

+ Maximum size of cache array used for UTF8StringToArray() method.



+

Tags:

+
+ + + + + + + +
since:  4.5.037 (2009-04-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$cache_size_UTF8StringToArray =  0

+

[line 1271]

+ Current size of cache array used for UTF8StringToArray() method.



+

Tags:

+
+ + + + + + + +
since:  4.5.037 (2009-04-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$cache_UTF8StringToArray = array()

+

[line 1257]

+ Cache array for UTF8StringToArray() method.



+

Tags:

+
+ + + + + + + +
since:  4.5.037 (2009-04-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$cell_height_ratio =  K_CELL_HEIGHT_RATIO

+

[line 915]

+ Default cell height ratio.



+

Tags:

+
+ + + + + + + +
since:  3.0.014 (2008-05-23)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$cell_margin = array('T' => 0, 'R' => 0, 'B' => 0, 'L' => 0)

+

[line 303]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of cell margins ('T' => top, 'R' => right, 'B' => bottom, 'L' => left)
since:  5.9.000 (2010-10-04)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$cell_padding = array('T' => 0, 'R' => 0, 'B' => 0, 'L' => 0)

+

[line 296]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of cell internal paddings ('T' => top, 'R' => right, 'B' => bottom, 'L' => left)
since:  5.9.000 (2010-10-03)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$cntmrk = array()

+

[line 968]

+ Array used to store content positions inside the pages buffer.

keys are the page numbers




+

Tags:

+
+ + + + + + + +
since:  4.6.021 (2009-07-20)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$ColorFlag =

+

[line 449]

+

+

Tags:

+
+ + + + + + + +
var:  whether fill and text colors are different
access:  protected
+
+ +
+
+ + + + + +
Type:  indicates
+


+
[ Top ]

+ +

+

$columns = array()

+

[line 1439]

+ Array of column measures (width, space, starting Y position)



+

Tags:

+
+ + + + + + + +
since:  4.9.001 (2010-03-28)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$column_start_page =  0

+

[line 1460]

+ Starting page for columns



+

Tags:

+
+ + + + + + + +
since:  4.9.001 (2010-03-28)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$colxshift = array('x' => 0, 's' => array('H' => 0, 'V' => 0),'p'=>array('L'=>0,'T'=>0,'R'=>0,'B'=>0))

+

[line 1474]

+ Array of: X difference between table cell x start and starting page margin, cellspacing, cellpadding



+

Tags:

+
+ + + + + + + +
since:  5.8.000 (2010-08-11)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$compress =

+

[line 211]

+

+

Tags:

+
+ + + + + + + +
var:  flag
access:  protected
+
+ +
+
+ + + + + +
Type:  compression
+


+
[ Top ]

+ +

+

$CoreFonts =

+

[line 333]

+

+

Tags:

+
+ + + + + + + +
var:  of standard font names
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$creator =  ''

+

[line 509]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  creator
+


+
[ Top ]

+ +

+

$CurOrientation =

+

[line 217]

+

+

Tags:

+
+ + + + + + + +
var:  page orientation (P = Portrait, L = Landscape)
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$CurrentFont =

+

[line 413]

+

+

Tags:

+
+ + + + + + + +
var:  font info
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$current_column =  0

+

[line 1453]

+ Current column number



+

Tags:

+
+ + + + + + + +
since:  4.9.001 (2010-03-28)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$currpagegroup =

+

[line 873]

+ Contains the alias of the current page group



+

Tags:

+
+ + + + + + + +
since:  3.0.000 (2008-03-27)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$customlistindent =  -1

+

[line 1102]

+

+

Tags:

+
+ + + + + + + + + + +
var:  PARSER: custom indent amount for lists. Negative value means disabled.
since:  4.2.007 (2008-11-12)
access:  protected
+
+ +
+
+ + + + + +
Type:  HTML
+


+
[ Top ]

+ +

+

$default_form_prop = array('lineWidth'=>1, 'borderStyle'=>'solid', 'fillColor'=>array(255, 255, 255),'strokeColor'=>array(128,128,128))

+

[line 1355]

+ Deafult Javascript field properties. Possible values are described on official Javascript for Acrobat API reference. Annotation options can be directly specified using the 'aopt' entry.



+

Tags:

+
+ + + + + + + +
since:  4.8.000 (2009-09-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$default_graphic_vars = array()

+

[line 1529]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of default graphic settings
since:  5.5.008 (2010-07-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  Array
+


+
[ Top ]

+ +

+

$default_monospaced_font =  'courier'

+

[line 1222]

+ Default monospaced font



+

Tags:

+
+ + + + + + + +
since:  4.5.025 (2009-03-10)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$default_table_columns =  4

+

[line 660]

+

+

Tags:

+
+ + + + + + + +
var:  number of columns for html table.
access:  protected
+
+ +
+
+ + + + + +
Type:  Default
+


+
[ Top ]

+ +

+

$diffs = array()

+

[line 351]

+

+

Tags:

+
+ + + + + + + +
var:  of encoding differences
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$diskcache =  false

+

[line 1187]

+ If true enables disk caching.



+

Tags:

+
+ + + + + + + +
since:  4.5.000 (2008-12-31)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$dpi =  72

+

[line 852]

+ Dot Per Inch Document Resolution (do not change)



+

Tags:

+
+ + + + + + + +
since:  3.0.000 (2008-03-27)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$DrawColor =

+

[line 431]

+

+

Tags:

+
+ + + + + + + +
var:  for drawing color
access:  protected
+
+ +
+
+ + + + + +
Type:  commands
+


+
[ Top ]

+ +

+

$embeddedfiles = array()

+

[line 1116]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of files to embedd
since:  4.4.000 (2008-12-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$emptypagemrk = array()

+

[line 960]

+ Array used to store page positions to track empty pages.

keys are the page numbers




+

Tags:

+
+ + + + + + + +
since:  5.8.007 (2010-08-18)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$encoding =  'UTF-8'

+

[line 735]

+

+

Tags:

+
+ + + + + + + + + + +
var:  encoding
since:  1.53.0.TC010
access:  protected
+
+ +
+
+ + + + + +
Type:  default
+


+
[ Top ]

+ +

+

$encryptdata = array()

+

[line 772]

+ Array containing encryption settings



+

Tags:

+
+ + + + + + + +
since:  5.0.005 (2010-05-11)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$encrypted =

+

[line 765]

+ Indicates whether document is protected



+

Tags:

+
+ + + + + + + +
since:  2.0.000 (2008-01-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$enc_padding =  "\x28\xBF\x4E\x5E\x4E\x75\x8A\x41\x64\x00\x4E\x56\xFF\xFA\x01\x08\x2E\x2E\x00\xB6\xD0\x68\x3E\x80\x2F\x0C\xA9\xFE\x64\x53\x69\x7A"

+

[line 792]

+ Encryption padding



+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$endlinex =  0

+

[line 996]

+ End position of the latest inserted line



+

Tags:

+
+ + + + + + + +
since:  3.2.000 (2008-07-01)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$epsmarker =  'x#!#EPS#!#x'

+

[line 1059]

+ String used to mark the beginning and end of EPS image blocks



+

Tags:

+
+ + + + + + + +
since:  4.1.000 (2008-10-18)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$extgstates =

+

[line 901]

+ Array of transparency objects and parameters.



+

Tags:

+
+ + + + + + + +
since:  3.0.000 (2008-03-27)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$feps =  0.005

+

[line 1087]

+ Epsilon value used for float calculations



+

Tags:

+
+ + + + + + + +
since:  4.2.000 (2008-10-29)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$fgcolor =

+

[line 680]

+

+

Tags:

+
+ + + + + + + +
var:  foreground color
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$fhPt =

+

[line 241]

+

+

Tags:

+
+ + + + + + + +
var:  of page format in points
access:  protected
+
+ +
+
+ + + + + +
Type:  height
+


+
[ Top ]

+ +

+

$file_id =

+

[line 799]

+ File ID (used on trailer)



+

Tags:

+
+ + + + + + + +
since:  5.0.005 (2010-05-12)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$FillColor =

+

[line 437]

+

+

Tags:

+
+ + + + + + + +
var:  for filling color
access:  protected
+
+ +
+
+ + + + + +
Type:  commands
+


+
[ Top ]

+ +

+

$FontAscent =

+

[line 388]

+

+

Tags:

+
+ + + + + + + + + + +
var:  font ascent (distance between font top and baseline)
since:  2.8.000 (2007-03-29)
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$FontDescent =

+

[line 395]

+

+

Tags:

+
+ + + + + + + + + + +
var:  font descent (distance between font bottom and baseline)
since:  2.8.000 (2007-03-29)
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$FontFamily =

+

[line 375]

+

+

Tags:

+
+ + + + + + + +
var:  font family
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$FontFiles = array()

+

[line 345]

+

+

Tags:

+
+ + + + + + + +
var:  of font files
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$fontkeys = array()

+

[line 1201]

+ Store the font keys.



+

Tags:

+
+ + + + + + + +
since:  4.5.000 (2009-01-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$fontlist = array()

+

[line 674]

+

+

Tags:

+
+ + + + + + + +
var:  a list of available fonts on filesystem.
access:  protected
+
+ +
+
+ + + + + +
Type:  store
+


+
[ Top ]

+ +

+

$fonts = array()

+

[line 339]

+

+

Tags:

+
+ + + + + + + +
var:  of used fonts
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$FontSize =

+

[line 425]

+

+

Tags:

+
+ + + + + + + +
var:  font size in user unit
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$FontSizePt =

+

[line 419]

+

+

Tags:

+
+ + + + + + + +
var:  font size in points
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$FontStyle =

+

[line 381]

+

+

Tags:

+
+ + + + + + + +
var:  font style
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$font_obj_ids = array()

+

[line 1208]

+ Store the font object IDs.



+

Tags:

+
+ + + + + + + +
since:  4.8.001 (2009-09-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$font_spacing =  0

+

[line 1564]

+

+

Tags:

+
+ + + + + + + + + + +
var:  or decreases the space between characters in a text by the specified amount (tracking/kerning).
since:  5.9.000 (2010-09-29)
access:  protected
+
+ +
+
+ + + + + +
Type:  increases
+


+
[ Top ]

+ +

+

$font_stretching =  100

+

[line 1557]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of character stretching
since:  5.9.000 (2010-09-29)
access:  protected
+
+ +
+
+ + + + + +
Type:  percentage
+


+
[ Top ]

+ +

+

$font_subsetting =  true

+

[line 1522]

+

+

Tags:

+
+ + + + + + + + + + +
var:  true enables font subsetting by default
since:  5.3.002 (2010-06-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  If
+


+
[ Top ]

+ +

+

$footerlen = array()

+

[line 982]

+ Array used to store footer length of each page.



+

Tags:

+
+ + + + + + + +
since:  4.0.014 (2008-07-29)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$footerpos = array()

+

[line 975]

+ Array used to store footer positions of each page.



+

Tags:

+
+ + + + + + + +
since:  3.2.000 (2008-07-01)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$footer_font =

+

[line 606]

+

+

Tags:

+
+ + + + + + + +
var:  font.
access:  protected
+
+ +
+
+ + + + + +
Type:  Footer
+


+
[ Top ]

+ +

+

$footer_margin =

+

[line 580]

+

+

Tags:

+
+ + + + + + + +
var:  distance between footer and bottom page margin.
access:  protected
+
+ +
+
+ + + + + +
Type:  Minimum
+


+
[ Top ]

+ +

+

$form_action =  ''

+

[line 1369]

+ Current form action (used during XHTML rendering)



+

Tags:

+
+ + + + + + + +
since:  4.8.000 (2009-09-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$form_enctype =  'application/x-www-form-urlencoded'

+

[line 1376]

+ Current form encryption type (used during XHTML rendering)



+

Tags:

+
+ + + + + + + +
since:  4.8.000 (2009-09-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$form_mode =  'post'

+

[line 1383]

+ Current method to submit forms.



+

Tags:

+
+ + + + + + + +
since:  4.8.000 (2009-09-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$form_obj_id = array()

+

[line 1348]

+ List of form annotations IDs



+

Tags:

+
+ + + + + + + +
since:  4.8.000 (2009-09-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$fwPt =

+

[line 235]

+

+

Tags:

+
+ + + + + + + +
var:  of page format in points
access:  protected
+
+ +
+
+ + + + + +
Type:  width
+


+
[ Top ]

+ +

+

$gradients = array()

+

[line 936]

+ Array for storing gradient information.



+

Tags:

+
+ + + + + + + +
since:  3.1.000 (2008-06-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$h =

+

[line 265]

+

+

Tags:

+
+ + + + + + + +
var:  height of page in user unit
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$header_font =

+

[line 600]

+

+

Tags:

+
+ + + + + + + +
var:  font.
access:  protected
+
+ +
+
+ + + + + +
Type:  Header
+


+
[ Top ]

+ +

+

$header_logo =  ''

+

[line 636]

+

+

Tags:

+
+ + + + + + + +
var:  image logo.
access:  protected
+
+ +
+
+ + + + + +
Type:  Header
+


+
[ Top ]

+ +

+

$header_logo_width =  30

+

[line 642]

+

+

Tags:

+
+ + + + + + + +
var:  image logo width in mm.
access:  protected
+
+ +
+
+ + + + + +
Type:  Header
+


+
[ Top ]

+ +

+

$header_margin =

+

[line 574]

+

+

Tags:

+
+ + + + + + + +
var:  distance between header and top page margin.
access:  protected
+
+ +
+
+ + + + + +
Type:  Minimum
+


+
[ Top ]

+ +

+

$header_string =  ''

+

[line 654]

+

+

Tags:

+
+ + + + + + + +
var:  to print on document header.
access:  protected
+
+ +
+
+ + + + + +
Type:  String
+


+
[ Top ]

+ +

+

$header_title =  ''

+

[line 648]

+

+

Tags:

+
+ + + + + + + +
var:  to print as title on document header.
access:  protected
+
+ +
+
+ + + + + +
Type:  String
+


+
[ Top ]

+ +

+

$hPt =

+

[line 253]

+

+

Tags:

+
+ + + + + + + +
var:  height of page in points
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$HREF = array()

+

[line 668]

+

+

Tags:

+
+ + + + + + + +
var:  PARSER: array to store current link and rendering styles.
access:  protected
+
+ +
+
+ + + + + +
Type:  HTML
+


+
[ Top ]

+ +

+

$htmlLinkColorArray = array(0, 0, 255)

+

[line 1138]

+ Default color for html links



+

Tags:

+
+ + + + + + + +
since:  4.4.003 (2008-12-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$htmlLinkFontStyle =  'U'

+

[line 1145]

+ Default font style to add to html links



+

Tags:

+
+ + + + + + + +
since:  4.4.003 (2008-12-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$htmlvspace =  0

+

[line 1038]

+ Count the latest inserted vertical spaces on HTML



+

Tags:

+
+ + + + + + + +
since:  4.0.021 (2008-08-24)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$imagekeys = array()

+

[line 1173]

+ Store the image keys.



+

Tags:

+
+ + + + + + + +
since:  4.5.000 (2008-12-31)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$images = array()

+

[line 357]

+

+

Tags:

+
+ + + + + + + +
var:  of used images
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$imgscale =  1

+

[line 545]

+

+

Tags:

+
+ + + + + + + + + + + + + +
var:  factor to convert pixels to user units.
author:  Nicola Asuni
since:  2004-06-14
access:  protected
+
+ +
+
+ + + + + +
Type:  adjusting
+


+
[ Top ]

+ +

+

$img_rb_x =

+

[line 529]

+

+

Tags:

+
+ + + + + + + + + + + + + +
var:  corner X coordinate of inserted image
author:  Nicola Asuni
since:  2002-07-31
access:  protected
+
+ +
+
+ + + + + +
Type:  right-bottom
+


+
[ Top ]

+ +

+

$img_rb_y =

+

[line 537]

+

+

Tags:

+
+ + + + + + + + + + + + + +
var:  corner Y coordinate of inserted image
author:  Nicola Asuni
since:  2002-07-31
access:  protected
+
+ +
+
+ + + + + +
Type:  right-bottom
+


+
[ Top ]

+ +

+

$InFooter =  false

+

[line 467]

+

+

Tags:

+
+ + + + + + + +
var:  set when processing footer
access:  protected
+
+ +
+
+ + + + + +
Type:  flag
+


+
[ Top ]

+ +

+

$internal_encoding =

+

[line 742]

+

+

Tags:

+
+ + + + + + + + + + +
var:  internal encoding
since:  1.53.0.TC016
access:  protected
+
+ +
+
+ + + + + +
Type:  PHP
+


+
[ Top ]

+ +

+

$inthead =  false

+

[line 1432]

+ True when we are printing the thead section on a new page



+

Tags:

+
+ + + + + + + +
since:  4.8.027 (2010-01-25)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$intmrk = array()

+

[line 944]

+ Array used to store positions inside the pages buffer.

keys are the page numbers




+

Tags:

+
+ + + + + + + +
since:  3.2.000 (2008-06-26)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$inxobj =  false

+

[line 1543]

+

+

Tags:

+
+ + + + + + + + + + +
var:  true when we are inside an XObject
since:  5.8.017 (2010-08-24)
access:  protected
+
+ +
+
+ + + + + +
Type:  boolean
+


+
[ Top ]

+ +

+

$isunicode =  false

+

[line 553]

+

+

Tags:

+
+ + + + + + + + + + + + + +
var:  set to true when the input text is unicode (require unicode fonts)
author:  Nicola Asuni
since:  2005-01-02
access:  protected
+
+ +
+
+ + + + + +
Type:  boolean
+


+
[ Top ]

+ +

+

$javascript =  ''

+

[line 824]

+ javascript code



+

Tags:

+
+ + + + + + + +
since:  2.1.002 (2008-02-12)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$jpeg_quality =

+

[line 908]

+ Set the default JPEG compression quality (1-100)



+

Tags:

+
+ + + + + + + +
since:  3.0.000 (2008-03-27)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$js_objects = array()

+

[line 1362]

+ Javascript objects array



+

Tags:

+
+ + + + + + + +
since:  4.8.000 (2009-09-07)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$k =

+

[line 229]

+

+

Tags:

+
+ + + + + + + +
var:  factor (number of points in user unit)
access:  protected
+
+ +
+
+ + + + + +
Type:  scale
+


+
[ Top ]

+ +

+

$keywords =  ''

+

[line 503]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  keywords
+


+
[ Top ]

+ +

+

$l =

+

[line 612]

+

+

Tags:

+
+ + + + + + + +
var:  templates.
access:  protected
+
+ +
+
+ + + + + +
Type:  Language
+


+
[ Top ]

+ +

+

$lasth =

+

[line 321]

+

+

Tags:

+
+ + + + + + + +
var:  of last cell printed
access:  protected
+
+ +
+
+ + + + + +
Type:  height
+


+
[ Top ]

+ +

+

$last_enc_key =

+

[line 779]

+ last RC4 key encrypted (cached for optimisation)



+

Tags:

+
+ + + + + + + +
since:  2.0.000 (2008-01-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$last_enc_key_c =

+

[line 786]

+ last RC4 computed key



+

Tags:

+
+ + + + + + + +
since:  2.0.000 (2008-01-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$LayoutMode =

+

[line 479]

+

+

Tags:

+
+ + + + + + + +
var:  display mode
access:  protected
+
+ +
+
+ + + + + +
Type:  layout
+


+
[ Top ]

+ +

+

$linestyleCap =  '0 J'

+

[line 1010]

+ PDF string for last line width



+

Tags:

+
+ + + + + + + +
since:  4.0.006 (2008-07-16)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$linestyleDash =  '[] 0 d'

+

[line 1024]

+ PDF string for last line width



+

Tags:

+
+ + + + + + + +
since:  4.0.006 (2008-07-16)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$linestyleJoin =  '0 j'

+

[line 1017]

+ PDF string for last line width



+

Tags:

+
+ + + + + + + +
since:  4.0.006 (2008-07-16)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$linestyleWidth =  ''

+

[line 1003]

+ PDF string for last line width



+

Tags:

+
+ + + + + + + +
since:  4.0.006 (2008-07-16)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$linethrough =

+

[line 838]

+ line trough state



+

Tags:

+
+ + + + + + + +
since:  2.8.000 (2008-03-19)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$LineWidth =

+

[line 327]

+

+

Tags:

+
+ + + + + + + +
var:  width in user unit
access:  protected
+
+ +
+
+ + + + + +
Type:  line
+


+
[ Top ]

+ +

+

$links = array()

+

[line 369]

+

+

Tags:

+
+ + + + + + + +
var:  of internal links
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$lispacer =  ''

+

[line 728]

+

+

Tags:

+
+ + + + + + + +
var:  for LI tags.
access:  protected
+
+ +
+
+ + + + + +
Type:  spacer
+


+
[ Top ]

+ +

+

$listcount = array()

+

[line 692]

+

+

Tags:

+
+ + + + + + + +
var:  PARSER: array count list items on nested lists.
access:  protected
+
+ +
+
+ + + + + +
Type:  HTML
+


+
[ Top ]

+ +

+

$listindent =  0

+

[line 704]

+

+

Tags:

+
+ + + + + + + +
var:  PARSER: indent amount for lists.
access:  protected
+
+ +
+
+ + + + + +
Type:  HTML
+


+
[ Top ]

+ +

+

$listindentlevel =  0

+

[line 710]

+

+

Tags:

+
+ + + + + + + +
var:  PARSER: current list indententation level.
access:  protected
+
+ +
+
+ + + + + +
Type:  HTML
+


+
[ Top ]

+ +

+

$listnum =  0

+

[line 698]

+

+

Tags:

+
+ + + + + + + +
var:  PARSER: current list nesting level.
access:  protected
+
+ +
+
+ + + + + +
Type:  HTML
+


+
[ Top ]

+ +

+

$listordered = array()

+

[line 686]

+

+

Tags:

+
+ + + + + + + +
var:  PARSER: array of boolean values, true in case of ordered list (OL), false otherwise.
access:  protected
+
+ +
+
+ + + + + +
Type:  HTML
+


+
[ Top ]

+ +

+

$lisymbol =  ''

+

[line 1052]

+ Symbol used for HTML unordered list items



+

Tags:

+
+ + + + + + + +
since:  4.0.028 (2008-09-26)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$lMargin =

+

[line 271]

+

+

Tags:

+
+ + + + + + + +
var:  margin
access:  protected
+
+ +
+
+ + + + + +
Type:  left
+


+
[ Top ]

+ +

+

$maxselcol = array('page' => 0, 'column' => 0)

+

[line 1467]

+ Maximum page and column selected



+

Tags:

+
+ + + + + + + +
since:  5.8.000 (2010-08-11)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$n =

+

[line 181]

+

+

Tags:

+
+ + + + + + + +
var:  object number
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$newline =  true

+

[line 989]

+ True if a newline is created.



+

Tags:

+
+ + + + + + + +
since:  3.2.000 (2008-07-01)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$newpagegroup = array()

+

[line 859]

+ Array of page numbers were a new page group was started



+

Tags:

+
+ + + + + + + +
since:  3.0.000 (2008-03-27)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$numfonts =  0

+

[line 1194]

+ Counts the number of fonts.



+

Tags:

+
+ + + + + + + +
since:  4.5.000 (2009-01-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$numimages =  0

+

[line 1166]

+ Counts the number of pages.



+

Tags:

+
+ + + + + + + +
since:  4.5.000 (2008-12-31)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$numpages =  0

+

[line 1152]

+ Counts the number of pages.



+

Tags:

+
+ + + + + + + +
since:  4.5.000 (2008-12-31)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$num_columns =  1

+

[line 1446]

+ Number of colums



+

Tags:

+
+ + + + + + + +
since:  4.9.001 (2010-03-28)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$n_js =

+

[line 831]

+ javascript counter



+

Tags:

+
+ + + + + + + +
since:  2.1.002 (2008-02-12)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$n_ocg_print =

+

[line 887]

+ Print visibility.



+

Tags:

+
+ + + + + + + +
since:  3.0.000 (2008-03-27)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$n_ocg_view =

+

[line 894]

+ View visibility.



+

Tags:

+
+ + + + + + + +
since:  3.0.000 (2008-03-27)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$objcopy =

+

[line 1229]

+ Used to store a cloned copy of the current class object



+

Tags:

+
+ + + + + + + +
since:  4.5.029 (2009-03-19)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$offsets =

+

[line 187]

+

+

Tags:

+
+ + + + + + + +
var:  of object offsets
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$opencell =  true

+

[line 1109]

+

+

Tags:

+
+ + + + + + + + + + +
var:  true keeps the border open for the cell sides that cross the page.
since:  4.2.010 (2008-11-14)
access:  protected
+
+ +
+
+ + + + + +
Type:  if
+


+
[ Top ]

+ +

+

$openMarkedContent =  false

+

[line 1031]

+ True if marked-content sequence is open



+

Tags:

+
+ + + + + + + +
since:  4.0.013 (2008-07-28)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$original_lMargin =

+

[line 587]

+

+

Tags:

+
+ + + + + + + + + + +
var:  left margin value
since:  1.53.0.TC013
access:  protected
+
+ +
+
+ + + + + +
Type:  original
+


+
[ Top ]

+ +

+

$original_rMargin =

+

[line 594]

+

+

Tags:

+
+ + + + + + + + + + +
var:  right margin value
since:  1.53.0.TC013
access:  protected
+
+ +
+
+ + + + + +
Type:  original
+


+
[ Top ]

+ +

+

$OutlineRoot =

+

[line 815]

+ Outline root for bookmark



+

Tags:

+
+ + + + + + + +
since:  2.1.002 (2008-02-12)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$outlines = array()

+

[line 808]

+ Outlines for bookmark



+

Tags:

+
+ + + + + + + +
since:  2.1.002 (2008-02-12)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$overline =

+

[line 407]

+

+

Tags:

+
+ + + + + + + +
var:  flag
access:  protected
+
+ +
+
+ + + + + +
Type:  overlining
+


+
[ Top ]

+ +

+

$page =

+

[line 175]

+

+

Tags:

+
+ + + + + + + +
var:  page number
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$PageAnnots = array()

+

[line 363]

+

+

Tags:

+
+ + + + + + + +
var:  of Annotations in pages
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$PageBreakTrigger =

+

[line 461]

+

+

Tags:

+
+ + + + + + + +
var:  used to trigger page breaks
access:  protected
+
+ +
+
+ + + + + +
Type:  threshold
+


+
[ Top ]

+ +

+

$pagedim = array()

+

[line 223]

+

+

Tags:

+
+ + + + + + + +
var:  dimensions
access:  protected
+
+ +
+
+ + + + + +
Type:  Page
+


+
[ Top ]

+ +

+

$pagegroups =

+

[line 866]

+ Contains the number of pages of the groups



+

Tags:

+
+ + + + + + + +
since:  3.0.000 (2008-03-27)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$pagelen = array()

+

[line 1159]

+ Array containing page lengths in bytes.



+

Tags:

+
+ + + + + + + +
since:  4.5.000 (2008-12-31)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$PageMode =

+

[line 929]

+ A name object specifying how the document should be displayed when opened.



+

Tags:

+
+ + + + + + + +
since:  3.1.000 (2008-06-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$pageopen = array()

+

[line 1215]

+ Store the fage status (true when opened, false when closed).



+

Tags:

+
+ + + + + + + +
since:  4.5.000 (2009-01-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$pages = array()

+

[line 199]

+

+

Tags:

+
+ + + + + + + +
var:  containing pages
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$page_obj_id = array()

+

[line 1341]

+ ID of page objects



+

Tags:

+
+ + + + + + + +
since:  4.7.000 (2009-08-29)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$page_regions = array()

+

[line 1572]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of no-write regions ('page' => page number or empy for current page, 'xt' => X top, 'yt' => Y top, 'xb' => X bottom, 'yb' => Y bottom, 'side' => page side 'L' = left or 'R' = right)
since:  5.9.003 (2010-10-14)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$pdfunit =  'mm'

+

[line 1502]

+

+

Tags:

+
+ + + + + + + + + + +
var:  unit of measure for document
since:  5.0.000 (2010-04-22)
access:  protected
+
+ +
+
+ + + + + +
Type:  default
+


+
[ Top ]

+ +

+

$PDFVersion =  '1.7'

+

[line 568]

+

+

Tags:

+
+ + + + + + + + + + +
var:  version
since:  1.5.3
access:  protected
+
+ +
+
+ + + + + +
Type:  PDF
+


+
[ Top ]

+ +

+

$premode =  false

+

[line 1123]

+

+

Tags:

+
+ + + + + + + + + + +
var:  true when inside html pre tag
since:  4.4.001 (2008-12-08)
access:  protected
+
+ +
+
+ + + + + +
Type:  boolean
+


+
[ Top ]

+ +

+

$print_footer =  true

+

[line 630]

+

+

Tags:

+
+ + + + + + + +
var:  true prints footer.
access:  protected
+
+ +
+
+ + + + + +
Type:  If
+


+
[ Top ]

+ +

+

$print_header =  true

+

[line 624]

+

+

Tags:

+
+ + + + + + + +
var:  true prints header
access:  protected
+
+ +
+
+ + + + + +
Type:  If
+


+
[ Top ]

+ +

+

$radiobutton_groups = array()

+

[line 1397]

+ List of radio buttons parent objects.



+

Tags:

+
+ + + + + + + +
since:  4.8.001 (2009-09-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$radio_groups = array()

+

[line 1404]

+ List of radio group objects IDs



+

Tags:

+
+ + + + + + + +
since:  4.8.001 (2009-09-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$rasterize_vector_images =  false

+

[line 1515]

+

+

Tags:

+
+ + + + + + + + + + +
var:  true convert vector images (SVG, EPS) to raster image using GD or ImageMagick library.
since:  5.0.000 (2010-04-26)
access:  protected
+
+ +
+
+ + + + + +
Type:  If
+


+
[ Top ]

+ +

+

$re_space = array('p' => '[^\S\xa0]', 'm' => '')

+

[line 1313]

+ Array of parts $re_spaces



+

Tags:

+
+ + + + + + + +
since:  5.5.011 (2010-07-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$re_spaces =  '/[^\S\xa0]/'

+

[line 1306]

+ Regular expression used to find blank characters used for word-wrapping.



+

Tags:

+
+ + + + + + + +
since:  4.6.006 (2009-04-28)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$rMargin =

+

[line 283]

+

+

Tags:

+
+ + + + + + + +
var:  margin
access:  protected
+
+ +
+
+ + + + + +
Type:  right
+


+
[ Top ]

+ +

+

$rtl =  false

+

[line 749]

+

+

Tags:

+
+ + + + + + + + + + +
var:  if the document language is Right-To-Left
since:  2.0.000
access:  protected
+
+ +
+
+ + + + + +
Type:  indicates
+


+
[ Top ]

+ +

+

$sign =  false

+

[line 1278]

+ If true enables document signing



+

Tags:

+
+ + + + + + + +
since:  4.6.005 (2009-04-24)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$signature_appearance = array('page' => 1, 'rect' => '0 0 0 0')

+

[line 1299]

+ data for signature appearance



+

Tags:

+
+ + + + + + + +
since:  5.3.011 (2010-06-16)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$signature_data = array()

+

[line 1285]

+ Signature data



+

Tags:

+
+ + + + + + + +
since:  4.6.005 (2009-04-24)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$signature_max_length =  11742

+

[line 1292]

+ Signature max length



+

Tags:

+
+ + + + + + + +
since:  4.6.005 (2009-04-24)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$sig_annot_ref =  '***SIGANNREF*** 0 R'

+

[line 1334]

+ Placemark used during signature process.



+

Tags:

+
+ + + + + + + +
since:  4.6.028 (2009-08-25)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$sig_obj_id =  0

+

[line 1320]

+ Signature object ID



+

Tags:

+
+ + + + + + + +
since:  4.6.022 (2009-06-23)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$spotcolor = array()

+

[line 1586]

+

+

Tags:

+
+ + + + + + + + + + +
var:  containing spot color names and values
since:  5.9.012 (2010-11-11)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$spot_colors = array()

+

[line 1045]

+ Array of Spot colors



+

Tags:

+
+ + + + + + + +
since:  4.0.024 (2008-09-12)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$start_transaction_page =  0

+

[line 1418]

+ Store page number when startTransaction() is called.



+

Tags:

+
+ + + + + + + +
since:  4.8.006 (2009-09-23)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$start_transaction_y =  0

+

[line 1425]

+ Store Y position when startTransaction() is called.



+

Tags:

+
+ + + + + + + +
since:  4.9.001 (2010-03-28)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$state =

+

[line 205]

+

+

Tags:

+
+ + + + + + + +
var:  document state
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$strokecolor =

+

[line 1495]

+

+

Tags:

+
+ + + + + + + + + + +
var:  stroke color
since:  4.9.008 (2010-04-03)
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$subject =  ''

+

[line 491]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  subject
+


+
[ Top ]

+ +

+

$svgclipid =  0

+

[line 1656]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of last SVG clipPath
since:  5.0.000 (2010-05-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  ID
+


+
[ Top ]

+ +

+

$svgclipmode =  false

+

[line 1635]

+

+

Tags:

+
+ + + + + + + + + + +
var:  when in SVG clipPath tag
since:  5.0.000 (2010-04-26)
access:  protected
+
+ +
+
+ + + + + +
Type:  true
+


+
[ Top ]

+ +

+

$svgclippaths = array()

+

[line 1642]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of SVG clipPath commands
since:  5.0.000 (2010-05-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$svgcliptm = array()

+

[line 1649]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of SVG clipPath tranformation matrix
since:  5.8.022 (2010-08-31)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$svgdefs = array()

+

[line 1628]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of SVG defs
since:  5.0.000 (2010-05-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$svgdefsmode =  false

+

[line 1621]

+

+

Tags:

+
+ + + + + + + + + + +
var:  when in SVG defs group
since:  5.0.000 (2010-05-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  true
+


+
[ Top ]

+ +

+

$svgdir =  ''

+

[line 1593]

+

+

Tags:

+
+ + + + + + + + + + +
var:  used for the last SVG image
since:  5.0.000 (2010-05-05)
access:  protected
+
+ +
+
+ + + + + +
Type:  directory
+


+
[ Top ]

+ +

+

$svggradientid =  0

+

[line 1614]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of last SVG gradient
since:  5.0.000 (2010-05-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  ID
+


+
[ Top ]

+ +

+

$svggradients = array()

+

[line 1607]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of SVG gradients
since:  5.0.000 (2010-05-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$svginheritprop = array('clip-rule', 'color', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'cursor', 'direction', 'fill', 'fill-opacity', 'fill-rule', 'font', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'glyph-orientation-horizontal', 'glyph-orientation-vertical', 'image-rendering', 'kerning', 'letter-spacing', 'marker', 'marker-end', 'marker-mid', 'marker-start', 'pointer-events', 'shape-rendering', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'text-anchor', 'text-rendering', 'visibility', 'word-spacing', 'writing-mode')

+

[line 1677]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of hinheritable SVG properties
since:  5.0.000 (2010-05-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$svgstyles = array(array(
+      'alignment-baseline' => 'auto',
+      'baseline-shift' => 'baseline',
+      'clip' => 'auto',
+      'clip-path' => 'none',
+      'clip-rule' => 'nonzero',
+      'color' => 'black',
+      'color-interpolation' => 'sRGB',
+      'color-interpolation-filters' => 'linearRGB',
+      'color-profile' => 'auto',
+      'color-rendering' => 'auto',
+      'cursor' => 'auto',
+      'direction' => 'ltr',
+      'display' => 'inline',
+      'dominant-baseline' => 'auto',
+      'enable-background' => 'accumulate',
+      'fill' => 'black',
+      'fill-opacity' => 1,
+      'fill-rule' => 'nonzero',
+      'filter' => 'none',
+      'flood-color' => 'black',
+      'flood-opacity' => 1,
+      'font' => '',
+      'font-family' => 'helvetica',
+      'font-size' => 'medium',
+      'font-size-adjust' => 'none',
+      'font-stretch' => 'normal',
+      'font-style' => 'normal',
+      'font-variant' => 'normal',
+      'font-weight' => 'normal',
+      'glyph-orientation-horizontal' => '0deg',
+      'glyph-orientation-vertical' => 'auto',
+      'image-rendering' => 'auto',
+      'kerning' => 'auto',
+      'letter-spacing' => 'normal',
+      'lighting-color' => 'white',
+      'marker' => '',
+      'marker-end' => 'none',
+      'marker-mid' => 'none',
+      'marker-start' => 'none',
+      'mask' => 'none',
+      'opacity' => 1,
+      'overflow' => 'auto',
+      'pointer-events' => 'visiblePainted',
+      'shape-rendering' => 'auto',
+      'stop-color' => 'black',
+      'stop-opacity' => 1,
+      'stroke' => 'none',
+      'stroke-dasharray' => 'none',
+      'stroke-dashoffset' => 0,
+      'stroke-linecap' => 'butt',
+      'stroke-linejoin' => 'miter',
+      'stroke-miterlimit' => 4,
+      'stroke-opacity' => 1,
+      'stroke-width' => 1,
+      'text-anchor' => 'start',
+      'text-decoration' => 'none',
+      'text-rendering' => 'auto',
+      'unicode-bidi' => 'normal',
+      'visibility' => 'visible',
+      'word-spacing' => 'normal',
+      'writing-mode' => 'lr-tb',
+      'text-color' => 'black',
+      'transfmatrix' => array(1, 0, 0, 1, 0, 0)))

+

[line 1684]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of SVG properties
since:  5.0.000 (2010-05-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$svgtext =  ''

+

[line 1663]

+

+

Tags:

+
+ + + + + + + + + + +
var:  text
since:  5.0.000 (2010-05-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  svg
+


+
[ Top ]

+ +

+

$svgtextmode = array()

+

[line 1670]

+

+

Tags:

+
+ + + + + + + + + + +
var:  text properties
since:  5.8.013 (2010-08-23)
access:  protected
+
+ +
+
+ + + + + +
Type:  svg
+


+
[ Top ]

+ +

+

$svgunit =  'px'

+

[line 1600]

+

+

Tags:

+
+ + + + + + + + + + +
var:  unit of measure for SVG
since:  5.0.000 (2010-05-02)
access:  protected
+
+ +
+
+ + + + + +
Type:  Deafult
+


+
[ Top ]

+ +

+

$tagvspaces = array()

+

[line 1094]

+ Array used for custom vertical spaces for HTML tags



+

Tags:

+
+ + + + + + + +
since:  4.2.001 (2008-10-30)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$tcpdf_version =  '5.9.023'

+

[line 167]

+

+

Tags:

+
+ + + + + + + +
var:  TCPDF version
access:  private
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$tempfontsize =  10

+

[line 722]

+

+

Tags:

+
+ + + + + + + +
var:  temporary font size in points.
access:  protected
+
+ +
+
+ + + + + +
Type:  Store
+


+
[ Top ]

+ +

+

$TextColor =

+

[line 443]

+

+

Tags:

+
+ + + + + + + +
var:  for text color
access:  protected
+
+ +
+
+ + + + + +
Type:  commands
+


+
[ Top ]

+ +

+

$textindent =  0

+

[line 1411]

+ Text indentation value (used for text-indent CSS attribute)



+

Tags:

+
+ + + + + + + +
since:  4.8.006 (2009-09-23)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$textrendermode =  0

+

[line 1481]

+ Text rendering mode: 0 = Fill text; 1 = Stroke text; 2 = Fill, then stroke text; 3 = Neither fill nor stroke text (invisible); 4 = Fill text and add to path for clipping; 5 = Stroke text and add to path for clipping; 6 = Fill, then stroke text and add to path for clipping; 7 = Add text to path for clipping.



+

Tags:

+
+ + + + + + + +
since:  4.9.008 (2010-04-03)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$textstrokewidth =  0

+

[line 1488]

+ Text stroke width in doc units



+

Tags:

+
+ + + + + + + +
since:  4.9.008 (2010-04-03)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$thead =  ''

+

[line 1243]

+ Table header content to be repeated on each new page



+

Tags:

+
+ + + + + + + +
since:  4.5.030 (2009-03-20)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$theadMargins = array()

+

[line 1250]

+ Margins used for table header.



+

Tags:

+
+ + + + + + + +
since:  4.5.030 (2009-03-20)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$title =  ''

+

[line 485]

+

+

Tags:

+
+ + + + +
access:  protected
+
+ +
+
+ + + + + +
Type:  title
+


+
[ Top ]

+ +

+

$tMargin =

+

[line 277]

+

+

Tags:

+
+ + + + + + + +
var:  margin
access:  protected
+
+ +
+
+ + + + + +
Type:  top
+


+
[ Top ]

+ +

+

$tmprtl =  false

+

[line 756]

+

+

Tags:

+
+ + + + + + + + + + +
var:  to force RTL or LTR string inversion
since:  2.0.000
access:  protected
+
+ +
+
+ + + + + +
Type:  used
+


+
[ Top ]

+ +

+

$tocpage =  false

+

[line 1508]

+

+

Tags:

+
+ + + + + + + +
var:  when we are on TOC (Table Of Content) page
access:  protected
+
+ +
+
+ + + + + +
Type:  true
+


+
[ Top ]

+ +

+

$transfmatrix = array()

+

[line 1066]

+ Array of transformation matrix



+

Tags:

+
+ + + + + + + +
since:  4.2.000 (2008-10-29)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$transfmatrix_key =  0

+

[line 1073]

+ Current key for transformation matrix



+

Tags:

+
+ + + + + + + +
since:  4.8.005 (2009-09-17)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$transfmrk = array()

+

[line 1131]

+ Array used to store positions of graphics transformation blocks inside the page buffer.

keys are the page numbers




+

Tags:

+
+ + + + + + + +
since:  4.4.002 (2008-12-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$underline =

+

[line 401]

+

+

Tags:

+
+ + + + + + + +
var:  flag
access:  protected
+
+ +
+
+ + + + + +
Type:  underlining
+


+
[ Top ]

+ +

+

$unicode =

+

[line 561]

+

+

Tags:

+
+ + + + + + + + + + + + + +
var:  unicode data
author:  Nicola Asuni
since:  5.9.004 (2010-10-18)
access:  protected
+
+ +
+
+ + + + + +
Type:  object containing
+


+
[ Top ]

+ +

+

$ur = array()

+

[line 845]

+ Array with additional document-wide usage rights for the document.



+

Tags:

+
+ + + + + + + +
since:  5.8.014 (2010-08-23)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$viewer_preferences =

+

[line 922]

+ PDF viewer preferences.



+

Tags:

+
+ + + + + + + +
since:  3.1.000 (2008-06-09)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$visibility =  'all'

+

[line 880]

+ Restrict the rendering of some elements to screen or printout.



+

Tags:

+
+ + + + + + + +
since:  3.0.000 (2008-03-27)
access:  protected
+
+ +
+
+ + + + + +
Type:  mixed
+


+
[ Top ]

+ +

+

$w =

+

[line 259]

+

+

Tags:

+
+ + + + + + + +
var:  width of page in user unit
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$webcolor = array()

+

[line 1579]

+

+

Tags:

+
+ + + + + + + + + + +
var:  containing HTML color names and values
since:  5.9.004 (2010-10-18)
access:  protected
+
+ +
+
+ + + + + +
Type:  array
+


+
[ Top ]

+ +

+

$wPt =

+

[line 247]

+

+

Tags:

+
+ + + + + + + +
var:  width of page in points
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$x =

+

[line 309]

+

+

Tags:

+
+ + + + + + + +
var:  horizontal position in user unit for cell positioning
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$xobjects = array()

+

[line 1536]

+

+

Tags:

+
+ + + + + + + + + + +
var:  of XObjects
since:  5.8.014 (2010-08-23)
access:  protected
+
+ +
+
+ + + + + +
Type:  Array
+


+
[ Top ]

+ +

+

$xobjid =  ''

+

[line 1550]

+

+

Tags:

+
+ + + + + + + + + + +
var:  XObject ID
since:  5.8.017 (2010-08-24)
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$y =

+

[line 315]

+

+

Tags:

+
+ + + + + + + +
var:  vertical position in user unit for cell positioning
access:  protected
+
+ +
+
+ + + + + +
Type:  current
+


+
[ Top ]

+ +

+

$ZoomMode =

+

[line 473]

+

+

Tags:

+
+ + + + + + + +
var:  display mode
access:  protected
+
+ +
+
+ + + + + +
Type:  zoom
+


+
[ Top ]

+

+ +
+ +

Class Methods

+
+ +
+ +

constructor __construct [line 1766]

+
+
+
+ TCPDF __construct( +[string +$orientation = 'P'], [string +$unit = 'mm'], [mixed +$format = 'A4'], [boolean +$unicode = true], [String +$encoding = 'UTF-8'], [boolean +$diskcache = false]) +
+

+ + This is the class constructor.

It allows to set up the page format, the orientation and the measure unit used in all the methods (except for the font sizes).




+

Tags:

+
+ + + + + + + +
see:  TCPDF::getPageSizeFromFormat(), TCPDF::setPageFormat()
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
string  $orientation  page orientation. Possible values are (case insensitive):
  • P or Portrait (default)
  • L or Landscape
  • '' (empty string) for automatic orientation
string  $unit  User measure unit. Possible values are:
  • pt: point
  • mm: millimeter (default)
  • cm: centimeter
  • in: inch

A point equals 1/72 of inch, that is to say about 0.35 mm (an inch being 2.54 cm). This is a very common unit in typography; font sizes are expressed in that unit.
mixed  $format  The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
boolean  $unicode  TRUE means that the input text is unicode (default = true)
boolean  $diskcache  if TRUE reduce the RAM memory usage by caching temporary data on filesystem (slower).
String  $encoding  charset encoding; default is UTF-8
+

+
[ Top ]
+
+
+ +

destructor __destruct [line 1914]

+
+
+
+ void __destruct( +) +
+

+ + Default destructor.



+

Tags:

+
+ + + + + + + +
since:  1.53.0.TC016
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method AcceptPageBreak [line 5247]

+
+
+
+ boolean AcceptPageBreak( +) +
+

+ + Whenever a page break condition is met, the method is called, and the break is issued or not depending on the returned value.

The default implementation returns a value according to the mode selected by SetAutoPageBreak().
This method is called automatically and should not be called directly by the application.




+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::SetAutoPageBreak()
since:  1.4
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method addExtGState [line 15613]

+
+
+
+ the addExtGState( + +$parms, array +$params) +
+

+ + Add transparency parameters to the current extgstate



+

Tags:

+
+ + + + + + + + + + +
return:  number of extgstates
since:  3.0.000 (2008-03-27)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $params  parameters
  $parms  
+

+
[ Top ]
+
+
+ +

method AddFont [line 4689]

+
+
+
+ array AddFont( +string +$family, [string +$style = ''], [string +$fontfile = ''], [mixed +$subset = 'default']) +
+

+ + Imports a TrueType, Type1, core, or CID0 font and makes it available.

It is necessary to generate a font definition file first (read /fonts/utils/README.TXT). The definition file (and the font file itself when embedding) must be present either in the current directory or in the one indicated by K_PATH_FONTS if the constant is defined. If it could not be found, the error "Could not include font definition file" is generated.




+

Tags:

+
+ + + + + + + + + + + + + +
return:  containing the font data, or false in case of error.
see:  TCPDF::SetFont(), TCPDF::setFontSubsetting()
since:  1.5
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
string  $family  Font family. The name can be chosen arbitrarily. If it is a standard family name, it will override the corresponding font.
string  $style  Font style. Possible values are (case insensitive):
  • empty string: regular (default)
  • B: bold
  • I: italic
  • BI or IB: bold italic
string  $fontfile  The font definition file. By default, the name is built from the family and style, in lower case with no spaces.
mixed  $subset  if true embedd only a subset of the font (stores only the information related to the used characters); if false embedd full font; if 'default' uses the default value set using setFontSubsetting(). This option is valid only for TrueTypeUnicode fonts. If you want to enable users to change the document, set this parameter to false. If you subset the font, the person who receives your PDF would need to have your same font in order to make changes to your PDF. The file size of the PDF would also be smaller because you are embedding only part of a font.
+

+
[ Top ]
+
+
+ +

method addHtmlLink [line 11387]

+
+
+
+ the addHtmlLink( +string +$url, string +$name, [boolean +$fill = false], [boolean +$firstline = false], [array +$color = ''], [string +$style = -1], [boolean +$firstblock = false]) +
+

+ + Output anchor link.



+

Tags:

+
+ + + + + + + +
return:  number of cells used or the remaining text if $firstline = true;
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
string  $url  link URL or internal link (i.e.: <a href="#23,4.5">link to page 23 at 4.5 Y position</a>)
string  $name  link name
boolean  $fill  Indicates if the cell background must be painted (true) or transparent (false).
boolean  $firstline  if true prints only the first line and return the remaining string.
array  $color  array of RGB text color
string  $style  font style (U, D, B, I)
boolean  $firstblock  if true the string is the starting of a line.
+

+
[ Top ]
+
+
+ +

method addHTMLTOC [line 23190]

+
+
+
+ void addHTMLTOC( +[int +$page = ''], [string +$toc_name = 'TOC'], [array +$templates = array()], [boolean +$correct_align = true]) +
+

+ + Output a Table Of Content Index (TOC) using HTML templates.

Before calling this method you have to open the page using the addTOCPage() method. After calling this method you have to call endTOCPage() to close the TOC page.




+

Tags:

+
+ + + + + + + + + + + + + +
author:  Nicola Asuni
see:  TCPDF::addTOCPage(), TCPDF::endTOCPage(), TCPDF::addTOC()
since:  5.0.001 (2010-05-06)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
int  $page  page number where this TOC should be inserted (leave empty for current page).
string  $toc_name  name to use for TOC bookmark.
array  $templates  array of html templates. Use: #TOC_DESCRIPTION# for bookmark title, #TOC_PAGE_NUMBER# for page number.
boolean  $correct_align  if true correct the number alignment (numbers must be in monospaced font like courier and right aligned on LTR, or left aligned on RTL)
+

+
[ Top ]
+
+
+ +

method addHTMLVertSpace [line 21576]

+
+
+
+ void addHTMLVertSpace( +[string +$hbz = 0], [string +$hb = 0], [boolean +$cell = false], [boolean +$firsttag = false], [boolean +$lasttag = false]) +
+

+ + Add vertical spaces if needed.



+

Tags:

+
+ + + + +
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
string  $hbz  Distance between current y and line bottom.
string  $hb  The height of the break.
boolean  $cell  if true add the default left (or right if RTL) padding to each new line (default false).
boolean  $firsttag  set to true when the tag is the first.
boolean  $lasttag  set to true when the tag is the last.
+

+
[ Top ]
+
+
+ +

method addJavascriptObject [line 14197]

+
+
+
+ int addJavascriptObject( +string +$script, [boolean +$onload = false]) +
+

+ + Adds a javascript object and return object ID



+

Tags:

+
+ + + + + + + + + + + + + +
return:  internal object ID
author:  Nicola Asuni
since:  4.8.000 (2009-09-07)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
string  $script  Javascript code
boolean  $onload  if true executes this object when opening the document
+

+
[ Top ]
+
+
+ +

method AddLink [line 5042]

+
+
+
+ void AddLink( +) +
+

+ + Creates a new internal link and returns its identifier. An internal link is a clickable area which directs to another place within the document.
The identifier can then be passed to Cell(), Write(), Image() or Link(). The destination is defined with SetLink().



+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::Cell(), TCPDF::Write(), TCPDF::Image(), TCPDF::Link(), TCPDF::SetLink()
since:  1.5
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method AddPage [line 3767]

+
+
+
+ void AddPage( +[string +$orientation = ''], [mixed +$format = ''], [boolean +$keepmargins = false], [boolean +$tocpage = false]) +
+

+ + Adds a new page to the document. If a page is already present, the Footer() method is called first to output the footer (if enabled). Then the page is added, the current position set to the top-left corner according to the left and top margins (or top-right if in RTL mode), and Header() is called to display the header (if enabled).

The origin of the coordinate system is at the top-left corner (or top-right for RTL) and increasing ordinates go downwards.




+

Tags:

+ +

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
string  $orientation  page orientation. Possible values are (case insensitive):
  • P or PORTRAIT (default)
  • L or LANDSCAPE
mixed  $format  The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
boolean  $keepmargins  if true overwrites the default page margins with the current margins
boolean  $tocpage  if true set the tocpage state to true (the added page will be used to display Table Of Content).
+

+
[ Top ]
+
+
+ +

method addPageRegion [line 24283]

+
+
+
+ void addPageRegion( +array +$region) +
+

+ + Add a single no-write region on selected page.

A no-write region is a portion of the page with a rectangular or trapezium shape that will not be covered when writing text or html code. A region is always aligned on the left or right side of the page ad is defined using a vertical segment. You can set multiple regions for the same page.




+

Tags:

+
+ + + + + + + + + + + + + +
author:  Nicola Asuni
see:  TCPDF::setPageRegions(), TCPDF::getPageRegions()
since:  5.9.003 (2010-10-13)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $region  array of a single no-write region array: ('page' => page number or empy for current page, 'xt' => X top, 'yt' => Y top, 'xb' => X bottom, 'yb' => Y bottom, 'side' => page side 'L' = left or 'R' = right).
+

+
[ Top ]
+
+
+ +

method AddSpotColor [line 4245]

+
+
+
+ void AddSpotColor( + +$name, int +$c, int +$m, int +$y, int +$k) +
+

+ + Defines a new spot color.

It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.




+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::SetDrawSpotColor(), TCPDF::SetFillSpotColor(), TCPDF::SetTextSpotColor()
since:  4.0.024 (2008-09-12)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
int  $c  Cyan color for CMYK. Value between 0 and 100
int  $m  Magenta color for CMYK. Value between 0 and 100
int  $y  Yellow color for CMYK. Value between 0 and 100
int  $k  Key (Black) color for CMYK. Value between 0 and 100
  $name  
+

+
[ Top ]
+
+
+ +

method addTOC [line 23018]

+
+
+
+ void addTOC( +[int +$page = ''], [string +$numbersfont = ''], [string +$filler = '.'], [string +$toc_name = 'TOC']) +
+

+ + Output a Table of Content Index (TOC).

Before calling this method you have to open the page using the addTOCPage() method. After calling this method you have to call endTOCPage() to close the TOC page. You can override this method to achieve different styles.




+

Tags:

+
+ + + + + + + + + + + + + +
author:  Nicola Asuni
see:  TCPDF::addTOCPage(), TCPDF::endTOCPage(), TCPDF::addHTMLTOC()
since:  4.5.000 (2009-01-02)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
int  $page  page number where this TOC should be inserted (leave empty for current page).
string  $numbersfont  set the font for page numbers (please use monospaced font for better alignment).
string  $filler  string used to fill the space between text and page number.
string  $toc_name  name to use for TOC bookmark.
+

+
[ Top ]
+
+
+ +

method addTOCPage [line 3742]

+
+
+
+ void addTOCPage( +[string +$orientation = ''], [ +$format = ''], [boolean +$keepmargins = false]) +
+

+ + Adds a new TOC (Table Of Content) page to the document.



+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::AddPage(), TCPDF::startPage(), TCPDF::endPage(), TCPDF::endTOCPage()
since:  5.0.001 (2010-05-06)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
string  $orientation  page orientation.
boolean  $keepmargins  if true overwrites the default page margins with the current margins
  $format  
+

+
[ Top ]
+
+
+ +

method adjustCellPadding [line 3349]

+
+
+
+ array adjustCellPadding( +[mixed +$brd = 0]) +
+

+ + Adjust the internal Cell padding array to take account of the line width.



+

Tags:

+
+ + + + + + + + + + +
return:  of adjustments
since:  5.9.000 (2010-10-03)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
mixed  $brd  Indicates if borders must be drawn around the cell. The value can be a number:
  • 0: no border (default)
  • 1: frame
or a string containing some or all of the following characters (in any order):
  • L: left
  • T: top
  • R: right
  • B: bottom
or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
+

+
[ Top ]
+
+
+ +

method AliasNbPages [line 15427]

+
+
+
+ void AliasNbPages( +[string +$alias = '{nb}']) +
+

+ + Defines an alias for the total number of pages.

It will be substituted as the document is closed.




+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::getAliasNbPages(), TCPDF::PageNo(), TCPDF::Footer()
since:  1.4
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $alias  The alias.
+

+
[ Top ]
+
+
+ +

method AliasNumPage [line 15454]

+
+
+
+ void AliasNumPage( +[string +$alias = '{pnb}']) +
+

+ + Defines an alias for the page number.

It will be substituted as the document is closed.




+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::getAliasNbPages(), TCPDF::PageNo(), TCPDF::Footer()
since:  4.5.000 (2009-01-02)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $alias  The alias.
+

+
[ Top ]
+
+
+ +

method Annotation [line 5098]

+
+
+
+ void Annotation( +float +$x, float +$y, float +$w, float +$h, string +$text, [array +$opt = array('Subtype'=>'Text')], [int +$spaces = 0]) +
+

+ + Puts a markup annotation on a rectangular area of the page.

!!!!THE ANNOTATION SUPPORT IS NOT YET FULLY IMPLEMENTED !!!!




+

Tags:

+
+ + + + + + + +
since:  4.0.018 (2008-08-06)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $x  Abscissa of the upper-left corner of the rectangle
float  $y  Ordinate of the upper-left corner of the rectangle
float  $w  Width of the rectangle
float  $h  Height of the rectangle
string  $text  annotation text or alternate content
array  $opt  array of options (see section 8.4 of PDF reference 1.7).
int  $spaces  number of spaces on the text to link
+

+
[ Top ]
+
+
+ +

method Arrow [line 13402]

+
+
+
+ void Arrow( +float +$x0, float +$y0, +$x1, float +$y1, [int +$head_style = 0], [float +$arm_size = 5], [int +$arm_angle = 15]) +
+

+ + Draws a grahic arrow.



+

Tags:

+
+ + + + + + + + + + +
author:  Piotr Galecki, Nicola Asuni, Andy Meier
since:  4.6.018 (2009-07-10)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $x0  Abscissa of second point.
float  $y0  Ordinate of first point.
float  $y1  Ordinate of second point.
int  $head_style  (0 = draw only arrowhead arms, 1 = draw closed arrowhead, but no fill, 2 = closed and filled arrowhead, 3 = filled arrowhead)
float  $arm_size  length of arrowhead arms
int  $arm_angle  angle between an arm and the shaft
  $x1  
+

+
[ Top ]
+
+
+ +

method arrUTF8ToUTF16BE [line 11282]

+
+
+
+ string arrUTF8ToUTF16BE( +array +$unicode, [boolean +$setbom = true]) +
+

+ + Converts array of UTF-8 characters to UTF16-BE string.


Based on: http://www.faqs.org/rfcs/rfc2781.html

   Encoding UTF-16:
+
+   Encoding of a single character from an ISO 10646 character value to
+    UTF-16 proceeds as follows. Let U be the character number, no greater
+    than 0x10FFFF.
+
+    1) If U < 0x10000, encode U as a 16-bit unsigned integer and
+       terminate.
+
+    2) Let U' = U - 0x10000. Because U is less than or equal to 0x10FFFF,
+       U' must be less than or equal to 0xFFFFF. That is, U' can be
+       represented in 20 bits.
+
+    3) Initialize two 16-bit unsigned integers, W1 and W2, to 0xD800 and
+       0xDC00, respectively. These integers each have 10 bits free to
+       encode the character value, for a total of 20 bits.
+
+    4) Assign the 10 high-order bits of the 20-bit U' to the 10 low-order
+       bits of W1 and the 10 low-order bits of U' to the 10 low-order
+       bits of W2. Terminate.
+
+    Graphically, steps 2 through 4 look like:
+    U' = yyyyyyyyyyxxxxxxxxxx
+    W1 = 110110yyyyyyyyyy
+    W2 = 110111xxxxxxxxxx




+

Tags:

+
+ + + + + + + + + + + + + +
author:  Nicola Asuni
see:  TCPDF::UTF8ToUTF16BE()
since:  2.1.000 (2008-01-08)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $unicode  array containing UTF-8 unicode values
boolean  $setbom  if true set the Byte Order Mark (BOM = 0xFEFF)
+

+
[ Top ]
+
+
+ +

method Bookmark [line 14069]

+
+
+
+ void Bookmark( +string +$txt, [int +$level = 0], [float +$y = -1], [int +$page = '']) +
+

+ + Adds a bookmark.



+

Tags:

+
+ + + + + + + + + + +
author:  Olivier Plathey, Nicola Asuni
since:  2.1.002 (2008-02-12)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
string  $txt  bookmark description.
int  $level  bookmark level (minimum value is 0).
float  $y  Y position in user units of the bookmark on the selected page (default = -1 = current position; 0 = page start;).
int  $page  target page number (leave empty for current page).
+

+
[ Top ]
+
+
+ +

method Button [line 15083]

+
+
+
+ void Button( +string +$name, int +$w, int +$h, string +$caption, mixed +$action, [array +$prop = array()], [array +$opt = array()], [float +$x = ''], [float +$y = ''], [boolean +$js = false]) +
+

+ + Creates a button field



+

Tags:

+
+ + + + + + + + + + +
author:  Nicola Asuni
since:  4.8.000 (2009-09-07)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
string  $name  field name
int  $w  width
int  $h  height
string  $caption  caption.
mixed  $action  action triggered by pressing the button. Use a string to specify a javascript action. Use an array to specify a form action options as on section 12.7.5 of PDF32000_2008.
array  $prop  javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
array  $opt  annotation parameters. Possible values are described on official PDF32000_2008 reference.
float  $x  Abscissa of the upper-left corner of the rectangle
float  $y  Ordinate of the upper-left corner of the rectangle
boolean  $js  if true put the field using JavaScript (requires Acrobat Writer to be rendered).
+

+
[ Top ]
+
+
+ +

method Cell [line 5352]

+
+
+
+ void Cell( +float +$w, [float +$h = 0], [string +$txt = ''], [mixed +$border = 0], [int +$ln = 0], [string +$align = ''], [boolean +$fill = false], [mixed +$link = ''], [int +$stretch = 0], [boolean +$ignore_min_height = false], [string +$calign = 'T'], [string +$valign = 'M']) +
+

+ + Prints a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.
If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.



+

Tags:

+ +

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $w  Cell width. If 0, the cell extends up to the right margin.
float  $h  Cell height. Default value: 0.
string  $txt  String to print. Default value: empty string.
mixed  $border  Indicates if borders must be drawn around the cell. The value can be a number:
  • 0: no border (default)
  • 1: frame
or a string containing some or all of the following characters (in any order):
  • L: left
  • T: top
  • R: right
  • B: bottom
or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
int  $ln  Indicates where the current position should go after the call. Possible values are:
  • 0: to the right (or left for RTL languages)
  • 1: to the beginning of the next line
  • 2: below
Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
string  $align  Allows to center or align the text. Possible values are:
  • L or empty string: left align (default value)
  • C: center
  • R: right align
  • J: justify
boolean  $fill  Indicates if the cell background must be painted (true) or transparent (false).
mixed  $link  URL or identifier returned by AddLink().
int  $stretch  font stretch mode:
  • 0 = disabled
  • 1 = horizontal scaling only if text is larger than cell width
  • 2 = forced horizontal scaling to fit cell width
  • 3 = character spacing only if text is larger than cell width
  • 4 = forced character spacing to fit cell width
General font stretching and scaling values will be preserved when possible.
boolean  $ignore_min_height  if true ignore automatic minimum height value.
string  $calign  cell vertical alignment relative to the specified Y value. Possible values are:
  • T : cell top
  • C : center
  • B : cell bottom
  • A : font top
  • L : font baseline
  • D : font bottom
string  $valign  text vertical alignment inside the cell. Possible values are:
  • T : top
  • C : center
  • B : bottom
+

+
[ Top ]
+
+
+ +

method CheckBox [line 15013]

+
+
+
+ void CheckBox( +string +$name, int +$w, [boolean +$checked = false], [array +$prop = array()], [array +$opt = array()], [string +$onvalue = 'Yes'], [float +$x = ''], [float +$y = ''], [boolean +$js = false]) +
+

+ + Creates a CheckBox field



+

Tags:

+
+ + + + + + + + + + +
author:  Nicola Asuni
since:  4.8.000 (2009-09-07)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
string  $name  field name
int  $w  width
boolean  $checked  define the initial state.
array  $prop  javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
array  $opt  annotation parameters. Possible values are described on official PDF32000_2008 reference.
string  $onvalue  value to be returned if selected.
float  $x  Abscissa of the upper-left corner of the rectangle
float  $y  Ordinate of the upper-left corner of the rectangle
boolean  $js  if true put the field using JavaScript (requires Acrobat Writer to be rendered).
+

+
[ Top ]
+
+
+ +

method checkPageBreak [line 5274]

+
+
+
+ boolean checkPageBreak( +[float +$h = 0], [mixed +$y = ''], [boolean +$addpage = true]) +
+

+ + Add page if needed.



+

Tags:

+
+ + + + + + + + + + +
return:  true in case of page break, false otherwise.
since:  3.2.000 (2008-07-01)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
float  $h  Cell height. Default value: 0.
mixed  $y  starting y position, leave empty for current position.
boolean  $addpage  if true add a page, otherwise only return the true/false state
+

+
[ Top ]
+
+
+ +

method checkPageRegions [line 24319]

+
+
+
+ void checkPageRegions( +float +$h, +&$x, +&$y, float +$x, float +$y) +
+

+ + Check page for no-write regions and adapt current coordinates and page margins if necessary.

A no-write region is a portion of the page with a rectangular or trapezium shape that will not be covered when writing text or html code. A region is always aligned on the left or right side of the page ad is defined using a vertical segment.




+

Tags:

+
+ + + + + + + + + + +
author:  Nicola Asuni
since:  5.9.003 (2010-10-13)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $h  height of the text/image/object to print in user units
float  $x  current X coordinate in user units
float  $y  current Y coordinate in user units
  &$x  
  &$y  
+

+
[ Top ]
+
+
+ +

method Circle [line 13090]

+
+
+
+ void Circle( +float +$x0, float +$y0, float +$r, [ +$angstr = 0], [ +$angend = 360], [string +$style = ''], [array +$line_style = array()], [array +$fill_color = array()], [integer +$nc = 2], float +$angstr:, float +$angend:) +
+

+ + Draws a circle.

A circle is formed from n Bezier curves.




+

Tags:

+
+ + + + + + + +
since:  2.1.000 (2008-01-08)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $x0  Abscissa of center point.
float  $y0  Ordinate of center point.
float  $r  Radius.
float  $angstr:  Angle start of draw line. Default value: 0.
float  $angend:  Angle finish of draw line. Default value: 360.
string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
array  $line_style  Line style of circle. Array like for SetLineStyle. Default value: default line style (empty array).
array  $fill_color  Fill color. Format: array(red, green, blue). Default value: default color (empty array).
integer  $nc  Number of curves used to draw a 90 degrees portion of circle.
  $angstr  
  $angend  
+

+
[ Top ]
+
+
+ +

method Clip [line 16074]

+
+
+
+ void Clip( +float +$x, float +$y, float +$w, float +$h) +
+

+ + Set a rectangular clipping area.



+

Tags:

+
+ + + + + + + + + + +
author:  Andreas Wrmser, Nicola Asuni
since:  3.1.000 (2008-06-09)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
float  $x  abscissa of the top left corner of the rectangle (or top right corner for RTL mode).
float  $y  ordinate of the top left corner of the rectangle.
float  $w  width of the rectangle.
float  $h  height of the rectangle.
+

+
[ Top ]
+
+
+ +

method Close [line 3621]

+
+
+
+ void Close( +) +
+

+ + Terminates the PDF document.

It is not necessary to call this method explicitly because Output() does it automatically. If the document contains no page, AddPage() is called to prevent from getting an invalid document.




+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::Open(), TCPDF::Output()
since:  1.0
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method closeHTMLTagHandler [line 21061]

+
+
+
+ void closeHTMLTagHandler( + +&$dom, int +$key, boolean +$cell, [int +$maxbottomliney = 0], array +$dom) +
+

+ + Process closing tags.



+

Tags:

+
+ + + + +
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
array  $dom  html dom array
int  $key  current element id
boolean  $cell  if true add the default left (or right if RTL) padding to each new line (default false).
int  $maxbottomliney  maximum y value of current line
  &$dom  
+

+
[ Top ]
+
+
+ +

method colorRegistrationBar [line 15749]

+
+
+
+ void colorRegistrationBar( +float +$x, float +$y, float +$w, float +$h, [boolean +$transition = true], [boolean +$vertical = false], [string +$colors = 'A,R,G,B,C,M,Y,K']) +
+

+ + Paints color transition registration bars



+

Tags:

+
+ + + + + + + + + + +
author:  Nicola Asuni
since:  4.9.000 (2010-03-26)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $x  abscissa of the top left corner of the rectangle.
float  $y  ordinate of the top left corner of the rectangle.
float  $w  width of the rectangle.
float  $h  height of the rectangle.
boolean  $transition  if true prints tcolor transitions to white.
boolean  $vertical  if true prints bar vertically.
string  $colors  colors to print, one letter per color separated by comma (for example 'A,W,R,G,B,C,M,Y,K'): A=black, W=white, R=red, G=green, B=blue, C=cyan, M=magenta, Y=yellow, K=black.
+

+
[ Top ]
+
+
+ +

method ComboBox [line 14954]

+
+
+
+ void ComboBox( +string +$name, int +$w, int +$h, array +$values, [array +$prop = array()], [array +$opt = array()], [float +$x = ''], [float +$y = ''], [boolean +$js = false]) +
+

+ + Creates a Combo-box field



+

Tags:

+
+ + + + + + + + + + +
author:  Nicola Asuni
since:  4.8.000 (2009-09-07)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
string  $name  field name
int  $w  width
int  $h  height
array  $values  array containing the list of values.
array  $prop  javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
array  $opt  annotation parameters. Possible values are described on official PDF32000_2008 reference.
float  $x  Abscissa of the upper-left corner of the rectangle
float  $y  Ordinate of the upper-left corner of the rectangle
boolean  $js  if true put the field using JavaScript (requires Acrobat Writer to be rendered).
+

+
[ Top ]
+
+
+ +

method commitTransaction [line 23314]

+
+
+
+ void commitTransaction( +) +
+

+ + Delete the copy of the current TCPDF object used for undo operation.



+

Tags:

+
+ + + + + + + +
since:  4.5.029 (2009-03-19)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method convertHexStringToString [line 12206]

+
+
+
+ String convertHexStringToString( +string +$bs) +
+

+ + Convert hexadecimal string to string



+

Tags:

+
+ + + + + + + + + + +
author:  Nicola Asuni
since:  5.0.005 (2010-05-12)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $bs  byte-string to convert
+

+
[ Top ]
+
+
+ +

method convertHTMLColorToDec [line 11431]

+
+
+
+ array convertHTMLColorToDec( +[string +$hcolor = '#FFFFFF']) +
+

+ + Returns an array (RGB or CMYK) from an html color name or a six-digit (i.e. #3FE5AA) or three-digit (i.e. #7FF) hexadecimal color representation.



+

Tags:

+
+ + + + + + + +
return:  RGB or CMYK color, or false in case of error.
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $hcolor  html color
+

+
[ Top ]
+
+
+ +

method convertStringToHexString [line 12228]

+
+
+
+ byte convertStringToHexString( +string +$s) +
+

+ + Convert string to hexadecimal string (byte string)



+

Tags:

+
+ + + + + + + + + + + + + +
return:  string
author:  Nicola Asuni
since:  5.0.010 (2010-05-17)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $s  string to convert
+

+
[ Top ]
+
+
+ +

method convertSVGtMatrix [line 24821]

+
+
+
+ array convertSVGtMatrix( +array +$tm) +
+

+ + Convert SVG transformation matrix to PDF.



+

Tags:

+
+ + + + + + + + + + +
return:  transformation matrix
since:  5.0.000 (2010-05-02)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $tm  original SVG transformation matrix
+

+
[ Top ]
+
+
+ +

method CoonsPatchMesh [line 15989]

+
+
+
+ void CoonsPatchMesh( +float +$x, float +$y, float +$w, float +$h, [array +$col1 = array()], [array +$col2 = array()], [array +$col3 = array()], [array +$col4 = array()], [array +$coords = array(0.00,0.0,0.33,0.00,0.67,0.00,1.00,0.00,1.00,0.33,1.00,0.67,1.00,1.00,0.67,1.00,0.33,1.00,0.00,1.00,0.00,0.67,0.00,0.33)], [array +$coords_min = 0], [array +$coords_max = 1], [boolean +$antialias = false]) +
+

+ + Paints a coons patch mesh.



+

Tags:

+
+ + + + + + + + + + +
author:  Andreas Wrmser, Nicola Asuni
since:  3.1.000 (2008-06-09)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $x  abscissa of the top left corner of the rectangle.
float  $y  ordinate of the top left corner of the rectangle.
float  $w  width of the rectangle.
float  $h  height of the rectangle.
array  $col1  first color (lower left corner) (RGB components).
array  $col2  second color (lower right corner) (RGB components).
array  $col3  third color (upper right corner) (RGB components).
array  $col4  fourth color (upper left corner) (RGB components).
array  $coords  
  • for one patch mesh: array(float x1, float y1, .... float x12, float y12): 12 pairs of coordinates (normally from 0 to 1) which specify the Bezier control points that define the patch. First pair is the lower left edge point, next is its right control point (control point 2). Then the other points are defined in the order: control point 1, edge point, control point 2 going counter-clockwise around the patch. Last (x12, y12) is the first edge point's left control point (control point 1).
  • for two or more patch meshes: array[number of patches]: arrays with the following keys for each patch: f: where to put that patch (0 = first patch, 1, 2, 3 = right, top and left of precedent patch - I didn't figure this out completely - just try and error ;-) points: 12 pairs of coordinates of the Bezier control points as above for the first patch, 8 pairs of coordinates for the following patches, ignoring the coordinates already defined by the precedent patch (I also didn't figure out the order of these - also: try and see what's happening) colors: must be 4 colors for the first patch, 2 colors for the following patches
array  $coords_min  minimum value used by the coordinates. If a coordinate's value is smaller than this it will be cut to coords_min. default: 0
array  $coords_max  maximum value used by the coordinates. If a coordinate's value is greater than this it will be cut to coords_max. default: 1
boolean  $antialias  A flag indicating whether to filter the shading function to prevent aliasing artifacts.
+

+
[ Top ]
+
+
+ +

method copyPage [line 22948]

+
+
+
+ true copyPage( +[int +$page = 0]) +
+

+ + Clone the specified page to a new page.



+

Tags:

+
+ + + + + + + + + + +
return:  in case of success, false in case of error.
since:  4.9.015 (2010-04-20)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $page  number of page to copy (0 = current page)
+

+
[ Top ]
+
+
+ +

method cropMark [line 15847]

+
+
+
+ void cropMark( +float +$x, float +$y, float +$w, float +$h, [string +$type = 'A,B,C,D'], [array +$color = array(0,0,0)]) +
+

+ + Paints crop mark



+

Tags:

+
+ + + + + + + + + + +
author:  Nicola Asuni
since:  4.9.000 (2010-03-26)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $x  abscissa of the crop mark center.
float  $y  ordinate of the crop mark center.
float  $w  width of the crop mark.
float  $h  height of the crop mark.
string  $type  type of crop mark, one sybol per type separated by comma: A = top left, B = top right, C = bottom left, D = bottom right.
array  $color  crop mark color (default black).
+

+
[ Top ]
+
+
+ +

method Curve [line 12867]

+
+
+
+ void Curve( +float +$x0, float +$y0, float +$x1, float +$y1, float +$x2, float +$y2, float +$x3, float +$y3, [string +$style = ''], [array +$line_style = array()], [array +$fill_color = array()]) +
+

+ + Draws a Bezier curve.

The Bezier curve is a tangent to the line between the control points at either end of the curve.




+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::SetLineStyle()
since:  2.1.000 (2008-01-08)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $x0  Abscissa of start point.
float  $y0  Ordinate of start point.
float  $x1  Abscissa of control point 1.
float  $y1  Ordinate of control point 1.
float  $x2  Abscissa of control point 2.
float  $y2  Ordinate of control point 2.
float  $x3  Abscissa of end point.
float  $y3  Ordinate of end point.
string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
array  $line_style  Line style of curve. Array like for SetLineStyle. Default value: default line style (empty array).
array  $fill_color  Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
+

+
[ Top ]
+
+
+ +

method deletePage [line 22805]

+
+
+
+ true deletePage( +int +$page) +
+

+ + Remove the specified page.



+

Tags:

+
+ + + + + + + + + + +
return:  in case of success, false in case of error.
since:  4.6.004 (2009-04-23)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $page  page to remove
+

+
[ Top ]
+
+
+ +

method drawHTMLTagBorder [line 21618]

+
+
+
+ void drawHTMLTagBorder( +array +$tag, int +$xmax) +
+

+ + Draw an HTML block border and fill



+

Tags:

+
+ + + + + + + +
since:  5.7.000 (2010-08-03)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
array  $tag  array of tag properties.
int  $xmax  end X coordinate for border.
+

+
[ Top ]
+
+
+ +

method Ellipse [line 12931]

+
+
+
+ void Ellipse( +float +$x0, float +$y0, float +$rx, [float +$ry = ''], [ +$angle = 0], [ +$astart = 0], [ +$afinish = 360], [string +$style = ''], [array +$line_style = array()], [array +$fill_color = array()], [integer +$nc = 2], float +$angle:, float +$astart:, float +$afinish:) +
+

+ + Draws an ellipse.

An ellipse is formed from n Bezier curves.




+

Tags:

+
+ + + + + + + + + + +
author:  Nicola Asuni
since:  2.1.000 (2008-01-08)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $x0  Abscissa of center point.
float  $y0  Ordinate of center point.
float  $rx  Horizontal radius.
float  $ry  Vertical radius (if ry = 0 then is a circle, see Circle). Default value: 0.
float  $angle:  Angle oriented (anti-clockwise). Default value: 0.
float  $astart:  Angle start of draw line. Default value: 0.
float  $afinish:  Angle finish of draw line. Default value: 360.
string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
array  $line_style  Line style of ellipse. Array like for SetLineStyle. Default value: default line style (empty array).
array  $fill_color  Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
integer  $nc  Number of curves used to draw a 90 degrees portion of ellipse.
  $angle  
  $astart  
  $afinish  
+

+
[ Top ]
+
+
+ +

method empty_string [line 23368]

+
+
+
+ boolean empty_string( +string +$str) +
+

+ + Determine whether a string is empty.



+

Tags:

+
+ + + + + + + + + + +
return:  true if string is empty
since:  4.5.044 (2009-04-16)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $str  string to be checked
+

+
[ Top ]
+
+
+ +

method endPage [line 3791]

+
+
+
+ void endPage( +[boolean +$tocpage = false]) +
+

+ + Terminate the current page



+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::AddPage(), TCPDF::startPage(), TCPDF::addTOCPage(), TCPDF::endTOCPage()
since:  4.2.010 (2008-11-14)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
boolean  $tocpage  if true set the tocpage state to false (end the page used to display Table Of Content).
+

+
[ Top ]
+
+
+ +

method endSVGElementHandler [line 25949]

+
+
+
+ void endSVGElementHandler( +resource +$parser, string +$name) +
+

+ + Sets the closing SVG element handler function for the XML parser.



+

Tags:

+
+ + + + + + + + + + +
author:  Nicola Asuni
since:  5.0.000 (2010-05-02)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
resource  $parser  The first parameter, parser, is a reference to the XML parser calling the handler.
string  $name  The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
+

+
[ Top ]
+
+
+ +

method endTemplate [line 24050]

+
+
+
+ int endTemplate( +) +
+

+ + End the current XObject Template started with startTemplate() and restore the previous graphic state.

An XObject Template is a PDF block that is a self-contained description of any sequence of graphics objects (including path objects, text objects, and sampled images). An XObject Template may be painted multiple times, either on several pages or at several locations on the same page and produces the same results each time, subject only to the graphics state at the time it is invoked.




+

Tags:

+
+ + + + + + + + + + + + + + + + +
return:  the XObject Template ID in case of success or false in case of error.
author:  Nicola Asuni
see:  TCPDF::startTemplate(), TCPDF::printTemplate()
since:  5.8.017 (2010-08-24)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method endTOCPage [line 3752]

+
+
+
+ void endTOCPage( +) +
+

+ + Terminate the current TOC (Table Of Content) page



+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::AddPage(), TCPDF::startPage(), TCPDF::endPage(), TCPDF::addTOCPage()
since:  5.0.001 (2010-05-06)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method Error [line 3593]

+
+
+
+ void Error( +string +$msg) +
+

+ + This method is automatically called in case of fatal error; it simply outputs the message and halts the execution. An inherited class may override it to customize the error handling but should always halt the script, or the resulting document would probably be invalid.

2004-06-11 :: Nicola Asuni : changed bold tag with strong




+

Tags:

+
+ + + + + + + +
since:  1.0
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $msg  The error message
+

+
[ Top ]
+
+
+ +

method extractCSSproperties [line 17549]

+
+
+
+ An extractCSSproperties( +string +$cssdata) +
+

+ + Extracts the CSS properties from a CSS string.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  array where the keys are the CSS selectors and the values are the CSS properties.
author:  Nicola Asuni
since:  5.1.000 (2010-05-25)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $cssdata  string containing CSS definitions.
+

+
[ Top ]
+
+
+ +

method fitBlock [line 7028]

+
+
+
+ void fitBlock( + +&$w, +&$h, +&$x, +&$y, [boolean +$fitonpage = false], float +$w, float +$h, float +$x, float +$y) +
+

+ + Set the block dimensions accounting for page breaks and page/column fitting



+

Tags:

+
+ + + + + + + +
since:  5.5.009 (2010-07-05)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $w  width
float  $h  height
float  $x  X coordinate
float  $y  Y coodiante
boolean  $fitonpage  if true the block is resized to not exceed page dimensions.
  &$w  
  &$h  
  &$x  
  &$y  
+

+
[ Top ]
+
+
+ +

method fixHTMLCode [line 17488]

+
+
+
+ string fixHTMLCode( +string +$html, [string +$default_css = ''], [array +$tagvs = ''], [array +$tidy_options = '']) +
+

+ + Cleanup HTML code (requires HTML Tidy library).



+

Tags:

+
+ + + + + + + + + + + + + + + + +
return:  XHTML code cleaned up
author:  Nicola Asuni
see:  TCPDF::setHtmlVSpace()
since:  5.9.017 (2010-11-16)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + +
string  $html  htmlcode to fix
string  $default_css  CSS commands to add
array  $tagvs  parameters for setHtmlVSpace method
array  $tidy_options  options for tidy_parse_string function
+

+
[ Top ]
+
+
+ +

method Footer [line 4048]

+
+
+
+ void Footer( +) +
+

+ + This method is used to render the page footer.

It is automatically called by AddPage() and could be overwritten in your own inherited class.




+

Tags:

+
+ + + + +
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method formatPageNumber [line 15531]

+
+
+
+ void formatPageNumber( +int +$num) +
+

+ + Format the page numbers.

This method can be overriden for custom formats.




+

Tags:

+
+ + + + + + + +
since:  4.2.005 (2008-11-06)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $num  page number
+

+
[ Top ]
+
+
+ +

method formatTOCPageNumber [line 15543]

+
+
+
+ void formatTOCPageNumber( +int +$num) +
+

+ + Format the page numbers on the Table Of Content.

This method can be overriden for custom formats.




+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::addTOC(), TCPDF::addHTMLTOC()
since:  4.5.001 (2009-01-04)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $num  page number
+

+
[ Top ]
+
+
+ +

method GetAbsX [line 7817]

+
+
+
+ float GetAbsX( +) +
+

+ + Returns the absolute X value of current position.



+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::SetX(), TCPDF::GetY(), TCPDF::SetY()
since:  1.2
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getAliasNbPages [line 15439]

+
+
+
+ string getAliasNbPages( +) +
+

+ + Returns the string alias used for the total number of pages.

If the current font is unicode type, the returned string is surrounded by additional curly braces.




+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::AliasNbPages(), TCPDF::PageNo(), TCPDF::Footer()
since:  4.0.018 (2008-08-08)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getAliasNumPage [line 15467]

+
+
+
+ string getAliasNumPage( +) +
+

+ + Returns the string alias used for the page number.

If the current font is unicode type, the returned string is surrounded by additional curly braces.




+

Tags:

+
+ + + + + + + + + + +
see:  TCPDF::AliasNbPages(), TCPDF::PageNo(), TCPDF::Footer()
since:  4.5.000 (2009-01-02)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getAnnotOptFromJSProp [line 14322]

+
+
+
+ array getAnnotOptFromJSProp( +array +$prop) +
+

+ + Convert JavaScript form fields properties array to Annotation Properties array.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  of annotation properties
author:  Nicola Asuni
since:  4.8.000 (2009-09-06)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
array  $prop  javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
+

+
[ Top ]
+
+
+ +

method GetArrStringWidth [line 4568]

+
+
+
+ mixed GetArrStringWidth( +string +$sa, [string +$fontname = ''], [string +$fontstyle = ''], [float +$fontsize = 0], [boolean +$getarray = false]) +
+

+ + Returns the string length of an array of chars in user unit or an array of characters widths. A font must be selected.




+

Tags:

+
+ + + + + + + + + + + + + +
return:  int total string length or array of characted widths
author:  Nicola Asuni
since:  2.4.000 (2008-03-06)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
string  $sa  The array of chars whose total length is to be computed
string  $fontname  Family font. It can be either a name defined by AddFont() or one of the standard families. It is also possible to pass an empty string, in that case, the current family is retained.
string  $fontstyle  Font style. Possible values are (case insensitive):
  • empty string: regular
  • B: bold
  • I: italic
  • U: underline
  • D: line trough
  • O: overline
or any combination. The default value is regular.
float  $fontsize  Font size in points. The default value is the current size.
boolean  $getarray  if true returns an array of characters widths, if false returns the total length.
+

+
[ Top ]
+
+
+ +

method getBarcode [line 16773]

+
+
+
+ string getBarcode( +) +
+

+ + Get current barcode.



+

Tags:

+
+ + + + + + + +
since:  4.0.012 (2008-07-24)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getBorderMode [line 6315]

+
+
+
+ border getBorderMode( +mixed +$brd, [string +$position = 'start']) +
+

+ + Get the border mode accounting for multicell position (opens bottom side of multicell crossing pages)



+

Tags:

+
+ + + + + + + + + + +
return:  mode array
since:  4.4.002 (2008-12-09)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
mixed  $brd  Indicates if borders must be drawn around the cell block. The value can be a number:
  • 0: no border (default)
  • 1: frame
or a string containing some or all of the following characters (in any order):
  • L: left
  • T: top
  • R: right
  • B: bottom
or an array of line styles for each border group: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
string  $position  multicell position: 'start', 'middle', 'end'
+

+
[ Top ]
+
+
+ +

method getBorderStartPosition [line 21602]

+
+
+
+ array getBorderStartPosition( +) +
+

+ + Return the starting coordinates to draw an html border



+

Tags:

+
+ + + + + + + + + + +
return:  containing top-left border coordinates
since:  5.7.000 (2010-08-03)
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method getBreakMargin [line 3167]

+
+
+
+ int getBreakMargin( +[int +$pagenum = '']) +
+

+ + Returns the page break margin.



+

Tags:

+
+ + + + + + + + + + + + + + + + +
return:  page break margin.
author:  Nicola Asuni
see:  TCPDF::getPageDimensions()
since:  1.5.2
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
int  $pagenum  page number (empty = current page)
+

+
[ Top ]
+
+
+ +

method getBuffer [line 22481]

+
+
+
+ string getBuffer( +) +
+

+ + Get buffer content.



+

Tags:

+
+ + + + + + + + + + +
return:  buffer content
since:  4.5.000 (2009-01-02)
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method getCellBorder [line 5796]

+
+
+
+ string getCellBorder( +float +$x, float +$y, float +$w, float +$h, mixed +$brd, string +$mode) +
+

+ + Returns the code to draw the cell border



+

Tags:

+
+ + + + + + + + + + + + + +
return:  containing cell border code
see:  TCPDF::SetLineStyle()
since:  5.7.000 (2010-08-02)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $x  X coordinate.
float  $y  Y coordinate.
float  $w  Cell width.
float  $h  Cell height.
mixed  $brd  Indicates if borders must be drawn around the cell. The value can be a number:
  • 0: no border (default)
  • 1: frame
or a string containing some or all of the following characters (in any order):
  • L: left
  • T: top
  • R: right
  • B: bottom
or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
string  $mode  border position respect the square edge: normal: centered; ext: external; int: internal;
+

+
[ Top ]
+
+
+ +

method getCellCode [line 5388]

+
+
+
+ string getCellCode( +float +$w, [float +$h = 0], [string +$txt = ''], [mixed +$border = 0], [int +$ln = 0], [string +$align = ''], [boolean +$fill = false], [mixed +$link = ''], [int +$stretch = 0], [boolean +$ignore_min_height = false], [string +$calign = 'T'], [string +$valign = 'M']) +
+

+ + Returns the PDF string code to print a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.
If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  containing cell code
see:  TCPDF::Cell()
since:  1.0
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
float  $w  Cell width. If 0, the cell extends up to the right margin.
float  $h  Cell height. Default value: 0.
string  $txt  String to print. Default value: empty string.
mixed  $border  Indicates if borders must be drawn around the cell. The value can be a number:
  • 0: no border (default)
  • 1: frame
or a string containing some or all of the following characters (in any order):
  • L: left
  • T: top
  • R: right
  • B: bottom
or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
int  $ln  Indicates where the current position should go after the call. Possible values are:
  • 0: to the right (or left for RTL languages)
  • 1: to the beginning of the next line
  • 2: below
Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
string  $align  Allows to center or align the text. Possible values are:
  • L or empty string: left align (default value)
  • C: center
  • R: right align
  • J: justify
boolean  $fill  Indicates if the cell background must be painted (true) or transparent (false).
mixed  $link  URL or identifier returned by AddLink().
int  $stretch  font stretch mode:
  • 0 = disabled
  • 1 = horizontal scaling only if text is larger than cell width
  • 2 = forced horizontal scaling to fit cell width
  • 3 = character spacing only if text is larger than cell width
  • 4 = forced character spacing to fit cell width
General font stretching and scaling values will be preserved when possible.
boolean  $ignore_min_height  if true ignore automatic minimum height value.
string  $calign  cell vertical alignment relative to the specified Y value. Possible values are:
  • T : cell top
  • C : center
  • B : cell bottom
  • A : font top
  • L : font baseline
  • D : font bottom
string  $valign  text vertical alignment inside the cell. Possible values are:
  • T : top
  • M : middle
  • B : bottom
+

+
[ Top ]
+
+
+ +

method getCellHeightRatio [line 15709]

+
+
+
+ void getCellHeightRatio( +) +
+

+ + return the height of cell repect font height.



+

Tags:

+
+ + + + + + + +
since:  4.0.012 (2008-07-24)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getCellMargins [line 3338]

+
+
+
+ array getCellMargins( +) +
+

+ + Get the internal Cell margin array.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  of margin values
see:  TCPDF::setCellMargins()
since:  5.9.000 (2010-10-03)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getCellPaddings [line 3302]

+
+
+
+ array getCellPaddings( +) +
+

+ + Get the internal Cell padding array.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  of padding values
see:  TCPDF::setCellPaddings(), TCPDF::SetCellPadding()
since:  5.9.000 (2010-10-03)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method GetCharWidth [line 4605]

+
+
+
+ float GetCharWidth( +int +$char, [boolean +$notlast = true]) +
+

+ + Returns the length of the char in user unit for the current font considering current stretching and spacing (tracking/kerning).



+

Tags:

+
+ + + + + + + + + + + + + +
return:  char width
author:  Nicola Asuni
since:  2.4.000 (2008-03-06)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
int  $char  The char code whose length is to be returned
boolean  $notlast  set to false for the latest character on string, true otherwise (default)
+

+
[ Top ]
+
+
+ +

method getColumn [line 23519]

+
+
+
+ int getColumn( +) +
+

+ + Return the current column number



+

Tags:

+
+ + + + + + + + + + +
return:  current column number
since:  5.5.011 (2010-07-08)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getCSSBorderDashStyle [line 17849]

+
+
+
+ int getCSSBorderDashStyle( +string +$style) +
+

+ + Returns the border dash style from CSS property



+

Tags:

+
+ + + + + + + + + + +
return:  sash style (return -1 in case of none or hidden border)
since:  5.7.000 (2010-08-02)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $style  border style to convert
+

+
[ Top ]
+
+
+ +

method getCSSBorderMargin [line 18044]

+
+
+
+ array getCSSBorderMargin( +string +$cssbspace, [float +$width = 0]) +
+

+ + Get the border-spacing from CSS attribute.



+

Tags:

+
+ + + + + + + + + + +
return:  of border spacings
since:  5.9.010 (2010-10-27)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
string  $cssbspace  border-spacing CSS properties
float  $width  width of the containing element
+

+
[ Top ]
+
+
+ +

method getCSSBorderStyle [line 17885]

+
+
+
+ array getCSSBorderStyle( +string +$cssborder) +
+

+ + Returns the border style array from CSS border properties



+

Tags:

+
+ + + + + + + + + + +
return:  containing border properties
since:  5.7.000 (2010-08-02)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $cssborder  border properties
+

+
[ Top ]
+
+
+ +

method getCSSBorderWidth [line 17829]

+
+
+
+ int getCSSBorderWidth( +string +$width) +
+

+ + Returns the border width from CSS property



+

Tags:

+
+ + + + + + + + + + +
return:  with in user units
since:  5.7.000 (2010-08-02)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $width  border width
+

+
[ Top ]
+
+
+ +

method getCSSFontSpacing [line 18078]

+
+
+
+ float getCSSFontSpacing( +string +$spacing, [float +$parent = 0]) +
+

+ + Returns the letter-spacing value from CSS value



+

Tags:

+
+ + + + + + + + + + +
return:  quantity to increases or decreases the space between characters in a text.
since:  5.9.000 (2010-10-02)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
string  $spacing  letter-spacing value
float  $parent  font spacing (tracking/kerning) value of the parent element
+

+
[ Top ]
+
+
+ +

method getCSSFontStretching [line 18109]

+
+
+
+ float getCSSFontStretching( +string +$stretch, [float +$parent = 100]) +
+

+ + Returns the percentage of font stretching from CSS value



+

Tags:

+
+ + + + + + + + + + +
return:  font stretching percentage
since:  5.9.000 (2010-10-02)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
string  $stretch  stretch mode
float  $parent  stretch value of the parent element
+

+
[ Top ]
+
+
+ +

method getCSSMargin [line 17990]

+
+
+
+ array getCSSMargin( +string +$cssmargin, [float +$width = 0]) +
+

+ + Get the internal Cell margin from CSS attribute.



+

Tags:

+
+ + + + + + + + + + +
return:  of cell margins
since:  5.9.000 (2010-10-04)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
string  $cssmargin  margin properties
float  $width  width of the containing element
+

+
[ Top ]
+
+
+ +

method getCSSPadding [line 17936]

+
+
+
+ array getCSSPadding( +string +$csspadding, [float +$width = 0]) +
+

+ + Get the internal Cell padding from CSS attribute.



+

Tags:

+
+ + + + + + + + + + +
return:  of cell paddings
since:  5.9.000 (2010-10-04)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
string  $csspadding  padding properties
float  $width  width of the containing element
+

+
[ Top ]
+
+
+ +

method getEncPermissionsString [line 12245]

+
+
+
+ String getEncPermissionsString( +string +$protection) +
+

+ + Convert encryption P value to a string of bytes, low-order byte first.



+

Tags:

+
+ + + + + + + + + + +
author:  Nicola Asuni
since:  5.0.005 (2010-05-12)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $protection  32bit encryption permission value (P value)
+

+
[ Top ]
+
+
+ +

method getFontAscent [line 5014]

+
+
+
+ int getFontAscent( +string +$font, [string +$style = ''], [float +$size = 0]) +
+

+ + Return the font ascent value



+

Tags:

+
+ + + + + + + + + + + + + +
return:  font ascent
author:  Nicola Asuni
since:  4.9.003 (2010-03-30)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
string  $font  font name
string  $style  font style
float  $size  The size (in points)
+

+
[ Top ]
+
+
+ +

method getFontBuffer [line 22645]

+
+
+
+ string getFontBuffer( +string +$font) +
+

+ + Get font buffer content.



+

Tags:

+
+ + + + + + + + + + +
return:  font buffer content or false in case of error
since:  4.5.000 (2009-01-02)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $font  font key
+

+
[ Top ]
+
+
+ +

method getFontDescent [line 4993]

+
+
+
+ int getFontDescent( +string +$font, [string +$style = ''], [float +$size = 0]) +
+

+ + Return the font descent value



+

Tags:

+
+ + + + + + + + + + + + + +
return:  font descent
author:  Nicola Asuni
since:  4.9.003 (2010-03-30)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + +
string  $font  font name
string  $style  font style
float  $size  The size (in points)
+

+
[ Top ]
+
+
+ +

method getFontFamily [line 17462]

+
+
+
+ string getFontFamily( +) +
+

+ + Returns the current font family name.



+

Tags:

+
+ + + + + + + + + + +
return:  current font family name
since:  4.3.008 (2008-12-05)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getFontFamilyName [line 23948]

+
+
+
+ string getFontFamilyName( +string +$fontfamily) +
+

+ + Return normalized font name



+

Tags:

+
+ + + + + + + + + + + + + +
return:  normalized font name
author:  Nicola Asuni
since:  5.8.004 (2010-08-17)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $fontfamily  property string containing font family names
+

+
[ Top ]
+
+
+ +

method getFontSize [line 17442]

+
+
+
+ current getFontSize( +) +
+

+ + Returns the current font size.



+

Tags:

+
+ + + + + + + + + + +
return:  font size
since:  3.2.000 (2008-06-23)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getFontSizePt [line 17452]

+
+
+
+ current getFontSizePt( +) +
+

+ + Returns the current font size in points unit.



+

Tags:

+
+ + + + + + + + + + +
return:  font size in points unit
since:  3.2.000 (2008-06-23)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getFontsList [line 4666]

+
+
+
+ void getFontsList( +) +
+

+ + Fill the list of available fonts ($this->fontlist).



+

Tags:

+
+ + + + + + + +
since:  4.0.013 (2008-07-28)
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method getFontSpacing [line 24236]

+
+
+
+ int getFontSpacing( +) +
+

+ + Get the amount to increase or decrease the space between characters in a text.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  font spacing (tracking/kerning) value
author:  Nicola Asuni
since:  5.9.000 (2010-09-29)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getFontStretching [line 24214]

+
+
+
+ float getFontStretching( +) +
+

+ + Get the percentage of character stretching.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  stretching value
author:  Nicola Asuni
since:  5.9.000 (2010-09-29)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getFontStyle [line 17472]

+
+
+
+ string getFontStyle( +) +
+

+ + Returns the current font style.



+

Tags:

+
+ + + + + + + + + + +
return:  current font style
since:  4.3.008 (2008-12-05)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getFontSubsetting [line 23884]

+
+
+
+ boolean getFontSubsetting( +) +
+

+ + Return the default option for font subsetting.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  default font subsetting state.
author:  Nicola Asuni
since:  5.3.002 (2010-06-07)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getFooterFont [line 11345]

+
+
+
+ array() getFooterFont( +) +
+

+ + Get Footer font.



+

Tags:

+
+ + + + + + + +
since:  4.0.012 (2008-07-24)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getFooterMargin [line 3955]

+
+
+
+ float getFooterMargin( +) +
+

+ + Returns footer margin in user units.



+

Tags:

+
+ + + + + + + +
since:  4.0.012 (2008-07-24)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getFormDefaultProp [line 14697]

+
+
+
+ array getFormDefaultProp( +) +
+

+ + Return the default properties for form fields.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
author:  Nicola Asuni
since:  4.8.000 (2009-09-06)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getGDgamma [line 7753]

+
+
+
+ void getGDgamma( +float +$v) +
+

+ + Correct the gamma value to be used with GD library



+

Tags:

+
+ + + + + + + +
since:  4.3.007 (2008-12-04)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
float  $v  the gamma value to be corrected
+

+
[ Top ]
+
+
+ +

method getGraphicVars [line 22272]

+
+
+
+ array getGraphicVars( +) +
+

+ + Returns current graphic variables as array.



+

Tags:

+
+ + + + + + + + + + +
return:  of graphic variables
since:  4.2.010 (2008-11-14)
access:  protected
+
+

+ + +
[ Top ]
+
+
+ +

method getGroupPageNo [line 15480]

+
+
+
+ current getGroupPageNo( +) +
+

+ + Return the current page in the group.



+

Tags:

+
+ + + + + + + + + + +
return:  page in the group
since:  3.0.000 (2008-03-27)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getGroupPageNoFormatted [line 15490]

+
+
+
+ void getGroupPageNoFormatted( +) +
+

+ + Returns the current group page number formatted as a string.



+

Tags:

+
+ + + + + + + + + + +
see:  PaneNo(), TCPDF::formatPageNumber()
since:  4.3.003 (2008-11-18)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getHeaderData [line 3910]

+
+
+
+ array() getHeaderData( +) +
+

+ + Returns header data:

  • $ret['logo'] = logo image
  • $ret['logo_width'] = width of the image logo in user units
  • $ret['title'] = header title
  • $ret['string'] = header description string




+

Tags:

+
+ + + + + + + +
since:  4.0.012 (2008-07-24)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getHeaderFont [line 11325]

+
+
+
+ array() getHeaderFont( +) +
+

+ + Get header font.



+

Tags:

+
+ + + + + + + +
since:  4.0.012 (2008-07-24)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getHeaderMargin [line 3935]

+
+
+
+ float getHeaderMargin( +) +
+

+ + Returns header margin in user units.



+

Tags:

+
+ + + + + + + +
since:  4.0.012 (2008-07-24)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getHtmlDomArray [line 18179]

+
+
+
+ array getHtmlDomArray( +string +$html) +
+

+ + Returns the HTML DOM array.



+

Tags:

+
+ + + + + + + +
since:  3.2.000 (2008-06-20)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $html  html code
+

+
[ Top ]
+
+
+ +

method getHTMLUnitToUnits [line 21945]

+
+
+
+ float getHTMLUnitToUnits( +string +$htmlval, [string +$refsize = 1], [string +$defaultunit = 'px'], [ +$points = false], boolean +$point) +
+

+ + Convert HTML string containing value and unit of measure to user's units or points.



+

Tags:

+
+ + + + + + + + + + +
return:  value in user's unit or point if $points=true
since:  4.4.004 (2008-12-10)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
string  $htmlval  string containing values and unit
string  $refsize  reference value in points
string  $defaultunit  default unit (can be one of the following: %, em, ex, px, in, mm, pc, pt).
boolean  $point  if true returns points, otherwise returns value in user's units
  $points  
+

+
[ Top ]
+
+
+ +

method getHyphenPatternsFromTEX [line 23685]

+
+
+
+ array getHyphenPatternsFromTEX( +string +$file) +
+

+ + Returns an array of hyphenation patterns.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  of hyphenation patterns
author:  Nicola Asuni
since:  4.9.012 (2010-04-12)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $file  TEX file containing hypenation patterns. TEX pattrns can be downloaded from http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
+

+
[ Top ]
+
+
+ +

method getImageBuffer [line 22583]

+
+
+
+ string getImageBuffer( +string +$image) +
+

+ + Get image buffer content.



+

Tags:

+
+ + + + + + + + + + +
return:  image buffer content or false in case of error
since:  4.5.000 (2008-12-31)
access:  protected
+
+

+ + +

Parameters:

+
+ + + + + + +
string  $image  image key
+

+
[ Top ]
+
+
+ +

method getImageFileType [line 6998]

+
+
+
+ string getImageFileType( +string +$imgfile, [array +$iminfo = array()]) +
+

+ + Return the image type given the file name or array returned by getimagesize() function.



+

Tags:

+
+ + + + + + + + + + +
return:  image type
since:  4.8.017 (2009-11-27)
access:  public
+
+

+ + +

Parameters:

+
+ + + + + + + + + + + +
string  $imgfile  image file name
array  $iminfo  array of image information returned by getimagesize() function.
+

+
[ Top ]
+
+
+ +

method getImageRBX [line 3981]

+
+
+
+ float getImageRBX( +) +
+

+ + Return the right-bottom (or left-bottom for RTL) corner X coordinate of last inserted image



+

Tags:

+
+ + + + +
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getImageRBY [line 3990]

+
+
+
+ float getImageRBY( +) +
+

+ + Return the right-bottom (or left-bottom for RTL) corner Y coordinate of last inserted image



+

Tags:

+
+ + + + +
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getImageScale [line 3106]

+
+
+
+ float getImageScale( +) +
+

+ + Returns the adjusting factor to convert pixels to user units.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  adjusting factor to convert pixels to user units.
author:  Nicola Asuni
since:  1.5.2
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getLastH [line 3084]

+
+
+
+ last getLastH( +) +
+

+ + Get the last cell height.



+

Tags:

+
+ + + + + + + + + + +
return:  cell height
since:  4.0.017 (2008-08-05)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method GetLineWidth [line 12607]

+
+
+
+ int GetLineWidth( +) +
+

+ + Returns the current the line width.



+

Tags:

+
+ + + + + + + + + + + + + +
return:  Line width
see:  TCPDF::Line(), TCPDF::SetLineWidth()
since:  2.1.000 (2008-01-07)
access:  public
+
+

+ + +
[ Top ]
+
+
+ +

method getMargins [line 17401]

+
+
+
+ array getMargins( +) +
+

+ + Returns an array containing current margins:




    +

    Tags:

    +
    + + + + + + + + + + +
    return:  containing all margins measures
    since:  3.2.000 (2008-06-23)
    access:  public
    +
    +

    + + +
    [ Top ]
    +
    +
    + +

    method getNumberOfColumns [line 23529]

    +
    +
    +
    + int getNumberOfColumns( +) +
    +

    + + Return the current number of columns.



    +

    Tags:

    +
    + + + + + + + + + + +
    return:  number of columns
    since:  5.8.018 (2010-08-25)
    access:  public
    +
    +

    + + +
    [ Top ]
    +
    +
    + +

    method GetNumChars [line 4654]

    +
    +
    +
    + int GetNumChars( +string +$s) +
    +

    + + Returns the numbero of characters in a string.



    +

    Tags:

    +
    + + + + + + + + + + +
    return:  number of characters
    since:  2.0.0001 (2008-01-07)
    access:  public
    +
    +

    + + +

    Parameters:

    +
    + + + + + + +
    string  $s  The input string.
    +

    +
    [ Top ]
    +
    +
    + +

    method getNumLines [line 6393]

    +
    +
    +
    + float getNumLines( +string +$txt, [float +$w = 0], [boolean +$reseth = false], [boolean +$autopadding = true], [float +$cellpadding = ''], [mixed +$border = 0]) +
    +

    + + This method return the estimated number of lines for print a simple text string using Multicell() method.



    +

    Tags:

    +
    + + + + + + + + + + + + + +
    return:  Return the minimal height needed for multicell method for printing the $txt param.
    author:  Alexander Escalona Fernndez, Nicola Asuni
    since:  4.5.011
    access:  public
    +
    +

    + + +

    Parameters:

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    string  $txt  String for calculating his height
    float  $w  Width of cells. If 0, they extend up to the right margin of the page.
    boolean  $reseth  if true reset the last cell height (default false).
    boolean  $autopadding  if true, uses internal padding and automatically adjust it to account for line width (default true).
    float  $cellpadding  Internal cell padding, if empty uses default cell padding.
    mixed  $border  Indicates if borders must be drawn around the cell. The value can be a number:
    • 0: no border (default)
    • 1: frame
    or a string containing some or all of the following characters (in any order):
    • L: left
    • T: top
    • R: right
    • B: bottom
    or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
    +

    +
    [ Top ]
    +
    +
    + +

    method getNumPages [line 3730]

    +
    +
    +
    + int getNumPages( +) +
    +

    + + Get the total number of insered pages.



    +

    Tags:

    +
    + + + + + + + + + + + + + +
    return:  number of pages
    see:  TCPDF::setPage(), TCPDF::getPage(), lastpage()
    since:  2.1.000 (2008-01-07)
    access:  public
    +
    +

    + + +
    [ Top ]
    +
    +
    + +

    method getObjFilename [line 22395]

    +
    +
    +
    + void getObjFilename( + +$name, string +$prefix) +
    +

    + + Returns a temporary filename for caching object on filesystem.



    +

    Tags:

    +
    + + + + + + + +
    since:  4.5.000 (2008-12-31)
    access:  protected
    +
    +

    + + +

    Parameters:

    +
    + + + + + + + + + + + +
    string  $prefix  prefix to add to filename return string filename.
      $name  
    +

    +
    [ Top ]
    +
    +
    + +

    method getOriginalMargins [line 17428]

    +
    +
    +
    + array getOriginalMargins( +) +
    +

    + + Returns an array containing original margins:




      +

      Tags:

      +
      + + + + + + + + + + +
      return:  containing all margins measures
      since:  4.0.012 (2008-07-24)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getPage [line 3719]

      +
      +
      +
      + int getPage( +) +
      +

      + + Get current document page number.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  page number
      see:  TCPDF::setPage(), lastpage(), TCPDF::getNumPages()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getPageBuffer [line 22524]

      +
      +
      +
      + string getPageBuffer( +int +$page) +
      +

      + + Get page buffer content.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  page buffer content or false in case of error
      since:  4.5.000 (2008-12-31)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $page  page number
      +

      +
      [ Top ]
      +
      +
      + +

      method getPageDimensions [line 3119]

      +
      +
      +
      + array getPageDimensions( +[int +$pagenum = '']) +
      +

      + + Returns an array of page dimensions:

      • $this->pagedim[$this->page]['w'] = page width in points
      • $this->pagedim[$this->page]['h'] = height in points
      • $this->pagedim[$this->page]['wk'] = page width in user units
      • $this->pagedim[$this->page]['hk'] = page height in user units
      • $this->pagedim[$this->page]['tm'] = top margin
      • $this->pagedim[$this->page]['bm'] = bottom margin
      • $this->pagedim[$this->page]['lm'] = left margin
      • $this->pagedim[$this->page]['rm'] = right margin
      • $this->pagedim[$this->page]['pb'] = auto page break
      • $this->pagedim[$this->page]['or'] = page orientation
      • $this->pagedim[$this->page]['olm'] = original left margin
      • $this->pagedim[$this->page]['orm'] = original right margin
      • $this->pagedim[$this->page]['Rotate'] = The number of degrees by which the page shall be rotated clockwise when displayed or printed. The value shall be a multiple of 90.
      • $this->pagedim[$this->page]['PZ'] = The page's preferred zoom (magnification) factor.
      • $this->pagedim[$this->page]['trans'] : the style and duration of the visual transition to use when moving from another page to the given page during a presentation
        • $this->pagedim[$this->page]['trans']['Dur'] = The page's display duration (also called its advance timing): the maximum length of time, in seconds, that the page shall be displayed during presentations before the viewer application shall automatically advance to the next page.
        • $this->pagedim[$this->page]['trans']['S'] = transition style : Split, Blinds, Box, Wipe, Dissolve, Glitter, R, Fly, Push, Cover, Uncover, Fade
        • $this->pagedim[$this->page]['trans']['D'] = The duration of the transition effect, in seconds.
        • $this->pagedim[$this->page]['trans']['Dm'] = (Split and Blinds transition styles only) The dimension in which the specified transition effect shall occur: H = Horizontal, V = Vertical. Default value: H.
        • $this->pagedim[$this->page]['trans']['M'] = (Split, Box and Fly transition styles only) The direction of motion for the specified transition effect: I = Inward from the edges of the page, O = Outward from the center of the pageDefault value: I.
        • $this->pagedim[$this->page]['trans']['Di'] = (Wipe, Glitter, Fly, Cover, Uncover and Push transition styles only) The direction in which the specified transition effect shall moves, expressed in degrees counterclockwise starting from a left-to-right direction. If the value is a number, it shall be one of: 0 = Left to right, 90 = Bottom to top (Wipe only), 180 = Right to left (Wipe only), 270 = Top to bottom, 315 = Top-left to bottom-right (Glitter only). If the value is a name, it shall be None, which is relevant only for the Fly transition when the value of SS is not 1.0. Default value: 0.
        • $this->pagedim[$this->page]['trans']['SS'] = (Fly transition style only) The starting or ending scale at which the changes shall be drawn. If M specifies an inward transition, the scale of the changes drawn shall progress from SS to 1.0 over the course of the transition. If M specifies an outward transition, the scale of the changes drawn shall progress from 1.0 to SS over the course of the transition. Default: 1.0.
        • $this->pagedim[$this->page]['trans']['B'] = (Fly transition style only) If true, the area that shall be flown in is rectangular and opaque. Default: false.
      • $this->pagedim[$this->page]['MediaBox'] : the boundaries of the physical medium on which the page shall be displayed or printed
        • $this->pagedim[$this->page]['MediaBox']['llx'] = lower-left x coordinate in points
        • $this->pagedim[$this->page]['MediaBox']['lly'] = lower-left y coordinate in points
        • $this->pagedim[$this->page]['MediaBox']['urx'] = upper-right x coordinate in points
        • $this->pagedim[$this->page]['MediaBox']['ury'] = upper-right y coordinate in points
      • $this->pagedim[$this->page]['CropBox'] : the visible region of default user space
        • $this->pagedim[$this->page]['CropBox']['llx'] = lower-left x coordinate in points
        • $this->pagedim[$this->page]['CropBox']['lly'] = lower-left y coordinate in points
        • $this->pagedim[$this->page]['CropBox']['urx'] = upper-right x coordinate in points
        • $this->pagedim[$this->page]['CropBox']['ury'] = upper-right y coordinate in points
      • $this->pagedim[$this->page]['BleedBox'] : the region to which the contents of the page shall be clipped when output in a production environment
        • $this->pagedim[$this->page]['BleedBox']['llx'] = lower-left x coordinate in points
        • $this->pagedim[$this->page]['BleedBox']['lly'] = lower-left y coordinate in points
        • $this->pagedim[$this->page]['BleedBox']['urx'] = upper-right x coordinate in points
        • $this->pagedim[$this->page]['BleedBox']['ury'] = upper-right y coordinate in points
      • $this->pagedim[$this->page]['TrimBox'] : the intended dimensions of the finished page after trimming
        • $this->pagedim[$this->page]['TrimBox']['llx'] = lower-left x coordinate in points
        • $this->pagedim[$this->page]['TrimBox']['lly'] = lower-left y coordinate in points
        • $this->pagedim[$this->page]['TrimBox']['urx'] = upper-right x coordinate in points
        • $this->pagedim[$this->page]['TrimBox']['ury'] = upper-right y coordinate in points
      • $this->pagedim[$this->page]['ArtBox'] : the extent of the page's meaningful content
        • $this->pagedim[$this->page]['ArtBox']['llx'] = lower-left x coordinate in points
        • $this->pagedim[$this->page]['ArtBox']['lly'] = lower-left y coordinate in points
        • $this->pagedim[$this->page]['ArtBox']['urx'] = upper-right x coordinate in points
        • $this->pagedim[$this->page]['ArtBox']['ury'] = upper-right y coordinate in points




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  of page dimensions.
      author:  Nicola Asuni
      since:  4.5.027 (2009-03-16)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $pagenum  page number (empty = current page)
      +

      +
      [ Top ]
      +
      +
      + +

      method getPageGroupAlias [line 15502]

      +
      +
      +
      + alias getPageGroupAlias( +) +
      +

      + + Return the alias of the current page group If the current font is unicode type, the returned string is surrounded by additional curly braces.

      (will be replaced by the total number of pages in this group).




      +

      Tags:

      +
      + + + + + + + + + + +
      return:  of the current page group
      since:  3.0.000 (2008-03-27)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getPageHeight [line 3151]

      +
      +
      +
      + int getPageHeight( +[int +$pagenum = '']) +
      +

      + + Returns the page height in units.



      +

      Tags:

      +
      + + + + + + + + + + + + + + + + +
      return:  page height.
      author:  Nicola Asuni
      see:  TCPDF::getPageDimensions()
      since:  1.5.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $pagenum  page number (empty = current page)
      +

      +
      [ Top ]
      +
      +
      + +

      method getPageNumGroupAlias [line 15517]

      +
      +
      +
      + alias getPageNumGroupAlias( +) +
      +

      + + Return the alias for the page number on the current page group If the current font is unicode type, the returned string is surrounded by additional curly braces.

      (will be replaced by the total number of pages in this group).




      +

      Tags:

      +
      + + + + + + + + + + +
      return:  of the current page group
      since:  4.5.000 (2009-01-02)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getPageRegions [line 24248]

      +
      +
      +
      + array getPageRegions( +) +
      +

      + + Return an array of no-write page regions



      +

      Tags:

      +
      + + + + + + + + + + + + + + + + +
      return:  of no-write page regions
      author:  Nicola Asuni
      see:  TCPDF::setPageRegions(), TCPDF::addPageRegion()
      since:  5.9.003 (2010-10-13)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getPageSizeFromFormat [line 2290]

      +
      +
      +
      + array getPageSizeFromFormat( +mixed +$format) +
      +

      + + Get page dimensions from format name.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  containing page width and height in points
      since:  5.0.010 (2010-05-17)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      mixed  $format  The format name. It can be:
      • ISO 216 A Series + 2 SIS 014711 extensions
      • A0 (841x1189 mm ; 33.11x46.81 in)
      • A1 (594x841 mm ; 23.39x33.11 in)
      • A2 (420x594 mm ; 16.54x23.39 in)
      • A3 (297x420 mm ; 11.69x16.54 in)
      • A4 (210x297 mm ; 8.27x11.69 in)
      • A5 (148x210 mm ; 5.83x8.27 in)
      • A6 (105x148 mm ; 4.13x5.83 in)
      • A7 (74x105 mm ; 2.91x4.13 in)
      • A8 (52x74 mm ; 2.05x2.91 in)
      • A9 (37x52 mm ; 1.46x2.05 in)
      • A10 (26x37 mm ; 1.02x1.46 in)
      • A11 (18x26 mm ; 0.71x1.02 in)
      • A12 (13x18 mm ; 0.51x0.71 in)
      • ISO 216 B Series + 2 SIS 014711 extensions
      • B0 (1000x1414 mm ; 39.37x55.67 in)
      • B1 (707x1000 mm ; 27.83x39.37 in)
      • B2 (500x707 mm ; 19.69x27.83 in)
      • B3 (353x500 mm ; 13.90x19.69 in)
      • B4 (250x353 mm ; 9.84x13.90 in)
      • B5 (176x250 mm ; 6.93x9.84 in)
      • B6 (125x176 mm ; 4.92x6.93 in)
      • B7 (88x125 mm ; 3.46x4.92 in)
      • B8 (62x88 mm ; 2.44x3.46 in)
      • B9 (44x62 mm ; 1.73x2.44 in)
      • B10 (31x44 mm ; 1.22x1.73 in)
      • B11 (22x31 mm ; 0.87x1.22 in)
      • B12 (15x22 mm ; 0.59x0.87 in)
      • ISO 216 C Series + 2 SIS 014711 extensions + 2 EXTENSION
      • C0 (917x1297 mm ; 36.10x51.06 in)
      • C1 (648x917 mm ; 25.51x36.10 in)
      • C2 (458x648 mm ; 18.03x25.51 in)
      • C3 (324x458 mm ; 12.76x18.03 in)
      • C4 (229x324 mm ; 9.02x12.76 in)
      • C5 (162x229 mm ; 6.38x9.02 in)
      • C6 (114x162 mm ; 4.49x6.38 in)
      • C7 (81x114 mm ; 3.19x4.49 in)
      • C8 (57x81 mm ; 2.24x3.19 in)
      • C9 (40x57 mm ; 1.57x2.24 in)
      • C10 (28x40 mm ; 1.10x1.57 in)
      • C11 (20x28 mm ; 0.79x1.10 in)
      • C12 (14x20 mm ; 0.55x0.79 in)
      • C76 (81x162 mm ; 3.19x6.38 in)
      • DL (110x220 mm ; 4.33x8.66 in)
      • SIS 014711 E Series
      • E0 (879x1241 mm ; 34.61x48.86 in)
      • E1 (620x879 mm ; 24.41x34.61 in)
      • E2 (440x620 mm ; 17.32x24.41 in)
      • E3 (310x440 mm ; 12.20x17.32 in)
      • E4 (220x310 mm ; 8.66x12.20 in)
      • E5 (155x220 mm ; 6.10x8.66 in)
      • E6 (110x155 mm ; 4.33x6.10 in)
      • E7 (78x110 mm ; 3.07x4.33 in)
      • E8 (55x78 mm ; 2.17x3.07 in)
      • E9 (39x55 mm ; 1.54x2.17 in)
      • E10 (27x39 mm ; 1.06x1.54 in)
      • E11 (19x27 mm ; 0.75x1.06 in)
      • E12 (13x19 mm ; 0.51x0.75 in)
      • SIS 014711 G Series
      • G0 (958x1354 mm ; 37.72x53.31 in)
      • G1 (677x958 mm ; 26.65x37.72 in)
      • G2 (479x677 mm ; 18.86x26.65 in)
      • G3 (338x479 mm ; 13.31x18.86 in)
      • G4 (239x338 mm ; 9.41x13.31 in)
      • G5 (169x239 mm ; 6.65x9.41 in)
      • G6 (119x169 mm ; 4.69x6.65 in)
      • G7 (84x119 mm ; 3.31x4.69 in)
      • G8 (59x84 mm ; 2.32x3.31 in)
      • G9 (42x59 mm ; 1.65x2.32 in)
      • G10 (29x42 mm ; 1.14x1.65 in)
      • G11 (21x29 mm ; 0.83x1.14 in)
      • G12 (14x21 mm ; 0.55x0.83 in)
      • ISO Press
      • RA0 (860x1220 mm ; 33.86x48.03 in)
      • RA1 (610x860 mm ; 24.02x33.86 in)
      • RA2 (430x610 mm ; 16.93x24.02 in)
      • RA3 (305x430 mm ; 12.01x16.93 in)
      • RA4 (215x305 mm ; 8.46x12.01 in)
      • SRA0 (900x1280 mm ; 35.43x50.39 in)
      • SRA1 (640x900 mm ; 25.20x35.43 in)
      • SRA2 (450x640 mm ; 17.72x25.20 in)
      • SRA3 (320x450 mm ; 12.60x17.72 in)
      • SRA4 (225x320 mm ; 8.86x12.60 in)
      • German DIN 476
      • 4A0 (1682x2378 mm ; 66.22x93.62 in)
      • 2A0 (1189x1682 mm ; 46.81x66.22 in)
      • Variations on the ISO Standard
      • A2_EXTRA (445x619 mm ; 17.52x24.37 in)
      • A3+ (329x483 mm ; 12.95x19.02 in)
      • A3_EXTRA (322x445 mm ; 12.68x17.52 in)
      • A3_SUPER (305x508 mm ; 12.01x20.00 in)
      • SUPER_A3 (305x487 mm ; 12.01x19.17 in)
      • A4_EXTRA (235x322 mm ; 9.25x12.68 in)
      • A4_SUPER (229x322 mm ; 9.02x12.68 in)
      • SUPER_A4 (227x356 mm ; 8.94x14.02 in)
      • A4_LONG (210x348 mm ; 8.27x13.70 in)
      • F4 (210x330 mm ; 8.27x12.99 in)
      • SO_B5_EXTRA (202x276 mm ; 7.95x10.87 in)
      • A5_EXTRA (173x235 mm ; 6.81x9.25 in)
      • ANSI Series
      • ANSI_E (864x1118 mm ; 34.00x44.00 in)
      • ANSI_D (559x864 mm ; 22.00x34.00 in)
      • ANSI_C (432x559 mm ; 17.00x22.00 in)
      • ANSI_B (279x432 mm ; 11.00x17.00 in)
      • ANSI_A (216x279 mm ; 8.50x11.00 in)
      • Traditional 'Loose' North American Paper Sizes
      • LEDGER, USLEDGER (432x279 mm ; 17.00x11.00 in)
      • TABLOID, USTABLOID, BIBLE, ORGANIZERK (279x432 mm ; 11.00x17.00 in)
      • LETTER, USLETTER, ORGANIZERM (216x279 mm ; 8.50x11.00 in)
      • LEGAL, USLEGAL (216x356 mm ; 8.50x14.00 in)
      • GLETTER, GOVERNMENTLETTER (203x267 mm ; 8.00x10.50 in)
      • JLEGAL, JUNIORLEGAL (203x127 mm ; 8.00x5.00 in)
      • Other North American Paper Sizes
      • QUADDEMY (889x1143 mm ; 35.00x45.00 in)
      • SUPER_B (330x483 mm ; 13.00x19.00 in)
      • QUARTO (229x279 mm ; 9.00x11.00 in)
      • FOLIO, GOVERNMENTLEGAL (216x330 mm ; 8.50x13.00 in)
      • EXECUTIVE, MONARCH (184x267 mm ; 7.25x10.50 in)
      • MEMO, STATEMENT, ORGANIZERL (140x216 mm ; 5.50x8.50 in)
      • FOOLSCAP (210x330 mm ; 8.27x13.00 in)
      • COMPACT (108x171 mm ; 4.25x6.75 in)
      • ORGANIZERJ (70x127 mm ; 2.75x5.00 in)
      • Canadian standard CAN 2-9.60M
      • P1 (560x860 mm ; 22.05x33.86 in)
      • P2 (430x560 mm ; 16.93x22.05 in)
      • P3 (280x430 mm ; 11.02x16.93 in)
      • P4 (215x280 mm ; 8.46x11.02 in)
      • P5 (140x215 mm ; 5.51x8.46 in)
      • P6 (107x140 mm ; 4.21x5.51 in)
      • North American Architectural Sizes
      • ARCH_E (914x1219 mm ; 36.00x48.00 in)
      • ARCH_E1 (762x1067 mm ; 30.00x42.00 in)
      • ARCH_D (610x914 mm ; 24.00x36.00 in)
      • ARCH_C, BROADSHEET (457x610 mm ; 18.00x24.00 in)
      • ARCH_B (305x457 mm ; 12.00x18.00 in)
      • ARCH_A (229x305 mm ; 9.00x12.00 in)
      • Announcement Envelopes
      • ANNENV_A2 (111x146 mm ; 4.37x5.75 in)
      • ANNENV_A6 (121x165 mm ; 4.75x6.50 in)
      • ANNENV_A7 (133x184 mm ; 5.25x7.25 in)
      • ANNENV_A8 (140x206 mm ; 5.50x8.12 in)
      • ANNENV_A10 (159x244 mm ; 6.25x9.62 in)
      • ANNENV_SLIM (98x225 mm ; 3.87x8.87 in)
      • Commercial Envelopes
      • COMMENV_N6_1/4 (89x152 mm ; 3.50x6.00 in)
      • COMMENV_N6_3/4 (92x165 mm ; 3.62x6.50 in)
      • COMMENV_N8 (98x191 mm ; 3.87x7.50 in)
      • COMMENV_N9 (98x225 mm ; 3.87x8.87 in)
      • COMMENV_N10 (105x241 mm ; 4.12x9.50 in)
      • COMMENV_N11 (114x263 mm ; 4.50x10.37 in)
      • COMMENV_N12 (121x279 mm ; 4.75x11.00 in)
      • COMMENV_N14 (127x292 mm ; 5.00x11.50 in)
      • Catalogue Envelopes
      • CATENV_N1 (152x229 mm ; 6.00x9.00 in)
      • CATENV_N1_3/4 (165x241 mm ; 6.50x9.50 in)
      • CATENV_N2 (165x254 mm ; 6.50x10.00 in)
      • CATENV_N3 (178x254 mm ; 7.00x10.00 in)
      • CATENV_N6 (191x267 mm ; 7.50x10.50 in)
      • CATENV_N7 (203x279 mm ; 8.00x11.00 in)
      • CATENV_N8 (210x286 mm ; 8.25x11.25 in)
      • CATENV_N9_1/2 (216x267 mm ; 8.50x10.50 in)
      • CATENV_N9_3/4 (222x286 mm ; 8.75x11.25 in)
      • CATENV_N10_1/2 (229x305 mm ; 9.00x12.00 in)
      • CATENV_N12_1/2 (241x318 mm ; 9.50x12.50 in)
      • CATENV_N13_1/2 (254x330 mm ; 10.00x13.00 in)
      • CATENV_N14_1/4 (286x311 mm ; 11.25x12.25 in)
      • CATENV_N14_1/2 (292x368 mm ; 11.50x14.50 in)
      • Japanese (JIS P 0138-61) Standard B-Series
      • JIS_B0 (1030x1456 mm ; 40.55x57.32 in)
      • JIS_B1 (728x1030 mm ; 28.66x40.55 in)
      • JIS_B2 (515x728 mm ; 20.28x28.66 in)
      • JIS_B3 (364x515 mm ; 14.33x20.28 in)
      • JIS_B4 (257x364 mm ; 10.12x14.33 in)
      • JIS_B5 (182x257 mm ; 7.17x10.12 in)
      • JIS_B6 (128x182 mm ; 5.04x7.17 in)
      • JIS_B7 (91x128 mm ; 3.58x5.04 in)
      • JIS_B8 (64x91 mm ; 2.52x3.58 in)
      • JIS_B9 (45x64 mm ; 1.77x2.52 in)
      • JIS_B10 (32x45 mm ; 1.26x1.77 in)
      • JIS_B11 (22x32 mm ; 0.87x1.26 in)
      • JIS_B12 (16x22 mm ; 0.63x0.87 in)
      • PA Series
      • PA0 (840x1120 mm ; 33.07x44.09 in)
      • PA1 (560x840 mm ; 22.05x33.07 in)
      • PA2 (420x560 mm ; 16.54x22.05 in)
      • PA3 (280x420 mm ; 11.02x16.54 in)
      • PA4 (210x280 mm ; 8.27x11.02 in)
      • PA5 (140x210 mm ; 5.51x8.27 in)
      • PA6 (105x140 mm ; 4.13x5.51 in)
      • PA7 (70x105 mm ; 2.76x4.13 in)
      • PA8 (52x70 mm ; 2.05x2.76 in)
      • PA9 (35x52 mm ; 1.38x2.05 in)
      • PA10 (26x35 mm ; 1.02x1.38 in)
      • Standard Photographic Print Sizes
      • PASSPORT_PHOTO (35x45 mm ; 1.38x1.77 in)
      • E (82x120 mm ; 3.25x4.72 in)
      • 3R, L (89x127 mm ; 3.50x5.00 in)
      • 4R, KG (102x152 mm ; 4.02x5.98 in)
      • 4D (120x152 mm ; 4.72x5.98 in)
      • 5R, 2L (127x178 mm ; 5.00x7.01 in)
      • 6R, 8P (152x203 mm ; 5.98x7.99 in)
      • 8R, 6P (203x254 mm ; 7.99x10.00 in)
      • S8R, 6PW (203x305 mm ; 7.99x12.01 in)
      • 10R, 4P (254x305 mm ; 10.00x12.01 in)
      • S10R, 4PW (254x381 mm ; 10.00x15.00 in)
      • 11R (279x356 mm ; 10.98x14.02 in)
      • S11R (279x432 mm ; 10.98x17.01 in)
      • 12R (305x381 mm ; 12.01x15.00 in)
      • S12R (305x456 mm ; 12.01x17.95 in)
      • Common Newspaper Sizes
      • NEWSPAPER_BROADSHEET (750x600 mm ; 29.53x23.62 in)
      • NEWSPAPER_BERLINER (470x315 mm ; 18.50x12.40 in)
      • NEWSPAPER_COMPACT, NEWSPAPER_TABLOID (430x280 mm ; 16.93x11.02 in)
      • Business Cards
      • CREDIT_CARD, BUSINESS_CARD, BUSINESS_CARD_ISO7810 (54x86 mm ; 2.13x3.37 in)
      • BUSINESS_CARD_ISO216 (52x74 mm ; 2.05x2.91 in)
      • BUSINESS_CARD_IT, BUSINESS_CARD_UK, BUSINESS_CARD_FR, BUSINESS_CARD_DE, BUSINESS_CARD_ES (55x85 mm ; 2.17x3.35 in)
      • BUSINESS_CARD_US, BUSINESS_CARD_CA (51x89 mm ; 2.01x3.50 in)
      • BUSINESS_CARD_JP (55x91 mm ; 2.17x3.58 in)
      • BUSINESS_CARD_HK (54x90 mm ; 2.13x3.54 in)
      • BUSINESS_CARD_AU, BUSINESS_CARD_DK, BUSINESS_CARD_SE (55x90 mm ; 2.17x3.54 in)
      • BUSINESS_CARD_RU, BUSINESS_CARD_CZ, BUSINESS_CARD_FI, BUSINESS_CARD_HU, BUSINESS_CARD_IL (50x90 mm ; 1.97x3.54 in)
      • Billboards
      • 4SHEET (1016x1524 mm ; 40.00x60.00 in)
      • 6SHEET (1200x1800 mm ; 47.24x70.87 in)
      • 12SHEET (3048x1524 mm ; 120.00x60.00 in)
      • 16SHEET (2032x3048 mm ; 80.00x120.00 in)
      • 32SHEET (4064x3048 mm ; 160.00x120.00 in)
      • 48SHEET (6096x3048 mm ; 240.00x120.00 in)
      • 64SHEET (8128x3048 mm ; 320.00x120.00 in)
      • 96SHEET (12192x3048 mm ; 480.00x120.00 in)
      • Old Imperial English (some are still used in USA)
      • EN_EMPEROR (1219x1829 mm ; 48.00x72.00 in)
      • EN_ANTIQUARIAN (787x1346 mm ; 31.00x53.00 in)
      • EN_GRAND_EAGLE (730x1067 mm ; 28.75x42.00 in)
      • EN_DOUBLE_ELEPHANT (679x1016 mm ; 26.75x40.00 in)
      • EN_ATLAS (660x864 mm ; 26.00x34.00 in)
      • EN_COLOMBIER (597x876 mm ; 23.50x34.50 in)
      • EN_ELEPHANT (584x711 mm ; 23.00x28.00 in)
      • EN_DOUBLE_DEMY (572x902 mm ; 22.50x35.50 in)
      • EN_IMPERIAL (559x762 mm ; 22.00x30.00 in)
      • EN_PRINCESS (546x711 mm ; 21.50x28.00 in)
      • EN_CARTRIDGE (533x660 mm ; 21.00x26.00 in)
      • EN_DOUBLE_LARGE_POST (533x838 mm ; 21.00x33.00 in)
      • EN_ROYAL (508x635 mm ; 20.00x25.00 in)
      • EN_SHEET, EN_HALF_POST (495x597 mm ; 19.50x23.50 in)
      • EN_SUPER_ROYAL (483x686 mm ; 19.00x27.00 in)
      • EN_DOUBLE_POST (483x775 mm ; 19.00x30.50 in)
      • EN_MEDIUM (445x584 mm ; 17.50x23.00 in)
      • EN_DEMY (445x572 mm ; 17.50x22.50 in)
      • EN_LARGE_POST (419x533 mm ; 16.50x21.00 in)
      • EN_COPY_DRAUGHT (406x508 mm ; 16.00x20.00 in)
      • EN_POST (394x489 mm ; 15.50x19.25 in)
      • EN_CROWN (381x508 mm ; 15.00x20.00 in)
      • EN_PINCHED_POST (375x470 mm ; 14.75x18.50 in)
      • EN_BRIEF (343x406 mm ; 13.50x16.00 in)
      • EN_FOOLSCAP (343x432 mm ; 13.50x17.00 in)
      • EN_SMALL_FOOLSCAP (337x419 mm ; 13.25x16.50 in)
      • EN_POTT (318x381 mm ; 12.50x15.00 in)
      • Old Imperial Belgian
      • BE_GRAND_AIGLE (700x1040 mm ; 27.56x40.94 in)
      • BE_COLOMBIER (620x850 mm ; 24.41x33.46 in)
      • BE_DOUBLE_CARRE (620x920 mm ; 24.41x36.22 in)
      • BE_ELEPHANT (616x770 mm ; 24.25x30.31 in)
      • BE_PETIT_AIGLE (600x840 mm ; 23.62x33.07 in)
      • BE_GRAND_JESUS (550x730 mm ; 21.65x28.74 in)
      • BE_JESUS (540x730 mm ; 21.26x28.74 in)
      • BE_RAISIN (500x650 mm ; 19.69x25.59 in)
      • BE_GRAND_MEDIAN (460x605 mm ; 18.11x23.82 in)
      • BE_DOUBLE_POSTE (435x565 mm ; 17.13x22.24 in)
      • BE_COQUILLE (430x560 mm ; 16.93x22.05 in)
      • BE_PETIT_MEDIAN (415x530 mm ; 16.34x20.87 in)
      • BE_RUCHE (360x460 mm ; 14.17x18.11 in)
      • BE_PROPATRIA (345x430 mm ; 13.58x16.93 in)
      • BE_LYS (317x397 mm ; 12.48x15.63 in)
      • BE_POT (307x384 mm ; 12.09x15.12 in)
      • BE_ROSETTE (270x347 mm ; 10.63x13.66 in)
      • Old Imperial French
      • FR_UNIVERS (1000x1300 mm ; 39.37x51.18 in)
      • FR_DOUBLE_COLOMBIER (900x1260 mm ; 35.43x49.61 in)
      • FR_GRANDE_MONDE (900x1260 mm ; 35.43x49.61 in)
      • FR_DOUBLE_SOLEIL (800x1200 mm ; 31.50x47.24 in)
      • FR_DOUBLE_JESUS (760x1120 mm ; 29.92x44.09 in)
      • FR_GRAND_AIGLE (750x1060 mm ; 29.53x41.73 in)
      • FR_PETIT_AIGLE (700x940 mm ; 27.56x37.01 in)
      • FR_DOUBLE_RAISIN (650x1000 mm ; 25.59x39.37 in)
      • FR_JOURNAL (650x940 mm ; 25.59x37.01 in)
      • FR_COLOMBIER_AFFICHE (630x900 mm ; 24.80x35.43 in)
      • FR_DOUBLE_CAVALIER (620x920 mm ; 24.41x36.22 in)
      • FR_CLOCHE (600x800 mm ; 23.62x31.50 in)
      • FR_SOLEIL (600x800 mm ; 23.62x31.50 in)
      • FR_DOUBLE_CARRE (560x900 mm ; 22.05x35.43 in)
      • FR_DOUBLE_COQUILLE (560x880 mm ; 22.05x34.65 in)
      • FR_JESUS (560x760 mm ; 22.05x29.92 in)
      • FR_RAISIN (500x650 mm ; 19.69x25.59 in)
      • FR_CAVALIER (460x620 mm ; 18.11x24.41 in)
      • FR_DOUBLE_COURONNE (460x720 mm ; 18.11x28.35 in)
      • FR_CARRE (450x560 mm ; 17.72x22.05 in)
      • FR_COQUILLE (440x560 mm ; 17.32x22.05 in)
      • FR_DOUBLE_TELLIERE (440x680 mm ; 17.32x26.77 in)
      • FR_DOUBLE_CLOCHE (400x600 mm ; 15.75x23.62 in)
      • FR_DOUBLE_POT (400x620 mm ; 15.75x24.41 in)
      • FR_ECU (400x520 mm ; 15.75x20.47 in)
      • FR_COURONNE (360x460 mm ; 14.17x18.11 in)
      • FR_TELLIERE (340x440 mm ; 13.39x17.32 in)
      • FR_POT (310x400 mm ; 12.20x15.75 in)
      +

      +
      [ Top ]
      +
      +
      + +

      method getPageWidth [line 3135]

      +
      +
      +
      + int getPageWidth( +[int +$pagenum = '']) +
      +

      + + Returns the page width in units.



      +

      Tags:

      +
      + + + + + + + + + + + + + + + + +
      return:  page width.
      author:  Nicola Asuni
      see:  TCPDF::getPageDimensions()
      since:  1.5.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $pagenum  page number (empty = current page)
      +

      +
      [ Top ]
      +
      +
      + +

      method getPathPaintOperator [line 23796]

      +
      +
      +
      + void getPathPaintOperator( +string +$style, [string +$default = 'S'], boolean +$mode) +
      +

      + + Get the Path-Painting Operators.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.0.000 (2010-04-30)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      string  $style  Style of rendering. Possible values are:
      • S or D: Stroke the path.
      • s or d: Close and stroke the path.
      • f or F: Fill the path, using the nonzero winding number rule to determine the region to fill.
      • f* or F*: Fill the path, using the even-odd rule to determine the region to fill.
      • B or FD or DF: Fill and then stroke the path, using the nonzero winding number rule to determine the region to fill.
      • B* or F*D or DF*: Fill and then stroke the path, using the even-odd rule to determine the region to fill.
      • b or fd or df: Close, fill, and then stroke the path, using the nonzero winding number rule to determine the region to fill.
      • b or f*d or df*: Close, fill, and then stroke the path, using the even-odd rule to determine the region to fill.
      • CNZ: Clipping mode using the even-odd rule to determine which regions lie inside the clipping path.
      • CEO: Clipping mode using the nonzero winding number rule to determine which regions lie inside the clipping path
      • n: End the path object without filling or stroking it.
      string  $default  default style
      boolean  $mode  if true enable rasterization, false otherwise.
      +

      +
      [ Top ]
      +
      +
      + +

      method getPDFData [line 11368]

      +
      +
      +
      + void getPDFData( +) +
      +

      + + Returns the PDF data.



      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getRandomSeed [line 11551]

      +
      +
      +
      + string getRandomSeed( +[string +$seed = '']) +
      +

      + + Returns a string containing random data to be used as a seed for encryption methods.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  containing random data
      author:  Nicola Asuni
      since:  5.9.006 (2010-10-19)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $seed  starting seed value
      +

      +
      [ Top ]
      +
      +
      + +

      method getRawCharWidth [line 4627]

      +
      +
      +
      + float getRawCharWidth( +int +$char) +
      +

      + + Returns the length of the char in user unit for the current font.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  char width
      author:  Nicola Asuni
      since:  5.9.000 (2010-09-28)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $char  The char code whose length is to be returned
      +

      +
      [ Top ]
      +
      +
      + +

      method getRemainingWidth [line 6898]

      +
      +
      +
      + int getRemainingWidth( +) +
      +

      + + Returns the remaining width between the current position and margins.



      +

      Tags:

      +
      + + + + + + + +
      return:  Return the remaining width
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getRTL [line 3012]

      +
      +
      +
      + boolean getRTL( +) +
      +

      + + Return the RTL status



      +

      Tags:

      +
      + + + + + + + +
      since:  4.0.012 (2008-07-24)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getScaleFactor [line 3181]

      +
      +
      +
      + int getScaleFactor( +) +
      +

      + + Returns the scale factor (number of points in user unit).



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  scale factor.
      author:  Nicola Asuni
      since:  1.5.2
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getSpaceString [line 18941]

      +
      +
      +
      + string getSpaceString( +) +
      +

      + + Returns the string used to find spaces



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.8.024 (2010-01-15)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getStringHeight [line 6496]

      +
      +
      +
      + float getStringHeight( +float +$w, string +$txt, [boolean +$reseth = false], [boolean +$autopadding = true], [float +$cellpadding = ''], [mixed +$border = 0]) +
      +

      + + This method return the estimated needed height for print a simple text string in Multicell() method.

      Generally, if you want to know the exact height for a block of content you can use the following alternative technique:

        // store current object
      +  $pdf->startTransaction();
      +  // store starting values
      +  $start_y = $pdf->GetY();
      +  $start_page = $pdf->getPage();
      +  // call your printing functions with your parameters
      +  // - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      +  $pdf->MultiCell($w=0, $h=0, $txt, $border=1, $align='L', $fill=false, $ln=1, $x='', $y='', $reseth=true, $stretch=0, $ishtml=false, $autopadding=true, $maxh=0);
      +  // - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      +  // get the new Y
      +  $end_y = $pdf->GetY();
      +  $end_page = $pdf->getPage();
      +  // calculate height
      +  $height = 0;
      +  if ($end_page == $start_page) {
      +  	$height = $end_y - $start_y;
      +  } else {
      +  	for ($page=$start_page; $page <= $end_page; ++$page) {
      +  		$this->setPage($page);
      +  		if ($page == $start_page) {
      +  			// first page
      +  			$height = $this->h - $start_y - $this->bMargin;
      +  		} elseif ($page == $end_page) {
      +  			// last page
      +  			$height = $end_y - $this->tMargin;
      +  		} else {
      +  			$height = $this->h - $this->tMargin - $this->bMargin;
      +  		}
      +  	}
      +  }
      +  // restore previous object
      +  $pdf = $pdf->rollbackTransaction();




      +

      Tags:

      +
      + + + + + + + + + + +
      return:  Return the minimal height needed for multicell method for printing the $txt param.
      author:  Nicola Asuni, Alexander Escalona Fernndez
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $w  Width of cells. If 0, they extend up to the right margin of the page.
      string  $txt  String for calculating his height
      boolean  $reseth  if true reset the last cell height (default false).
      boolean  $autopadding  if true, uses internal padding and automatically adjust it to account for line width (default true).
      float  $cellpadding  Internal cell padding, if empty uses default cell padding.
      mixed  $border  Indicates if borders must be drawn around the cell. The value can be a number:
      • 0: no border (default)
      • 1: frame
      or a string containing some or all of the following characters (in any order):
      • L: left
      • T: top
      • R: right
      • B: bottom
      or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
      +

      +
      [ Top ]
      +
      +
      + +

      method GetStringWidth [line 4552]

      +
      +
      +
      + mixed GetStringWidth( +string +$s, [string +$fontname = ''], [string +$fontstyle = ''], [float +$fontsize = 0], [boolean +$getarray = false]) +
      +

      + + Returns the length of a string in user unit. A font must be selected.




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  int total string length or array of characted widths
      author:  Nicola Asuni
      since:  1.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $s  The string whose length is to be computed
      string  $fontname  Family font. It can be either a name defined by AddFont() or one of the standard families. It is also possible to pass an empty string, in that case, the current family is retained.
      string  $fontstyle  Font style. Possible values are (case insensitive):
      • empty string: regular
      • B: bold
      • I: italic
      • U: underline
      • D: line-trough
      • O: overline
      or any combination. The default value is regular.
      float  $fontsize  Font size in points. The default value is the current size.
      boolean  $getarray  if true returns an array of characters widths, if false returns the total length.
      +

      +
      [ Top ]
      +
      +
      + +

      method getSVGTransformMatrix [line 24707]

      +
      +
      +
      + array getSVGTransformMatrix( +string +$attribute) +
      +

      + + Get the tranformation matrix from SVG transform attribute



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  of transformations
      author:  Nicola Asuni
      since:  5.0.000 (2010-05-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $attribute  transformation
      +

      +
      [ Top ]
      +
      +
      + +

      method getTagStyleFromCSS [line 17801]

      +
      +
      +
      + string getTagStyleFromCSS( +array +$dom, int +$key, array +$css) +
      +

      + + Returns the styles that apply for the selected HTML tag.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  containing CSS properties
      since:  5.1.000 (2010-05-25)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      array  $dom  array of HTML tags and properties
      int  $key  key of the current HTML tag
      array  $css  array of CSS properties
      +

      +
      [ Top ]
      +
      +
      + +

      method getTCPDFVersion [line 1929]

      +
      +
      +
      + TCPDF getTCPDFVersion( +) +
      +

      + + Return the current TCPDF version.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  version string
      since:  5.9.012 (2010-11-10)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method getTransformationMatrixProduct [line 24803]

      +
      +
      +
      + transformation getTransformationMatrixProduct( +array +$ta, array +$tb) +
      +

      + + Get the product of two SVG tranformation matrices



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  array
      author:  Nicola Asuni
      since:  5.0.000 (2010-05-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      array  $ta  first SVG tranformation matrix
      array  $tb  second SVG tranformation matrix
      +

      +
      [ Top ]
      +
      +
      + +

      method getUserPermissionCode [line 12067]

      +
      +
      +
      + void getUserPermissionCode( +Array +$permissions, [int +$mode = 0]) +
      +

      + + Return the premission code used on encryption (P value).



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.0.005 (2010-05-12)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      Array  $permissions  the set of permissions (specify the ones you want to block).
      int  $mode  encryption strength: 0 = RC4 40 bit; 1 = RC4 128 bit; 2 = AES 128 bit; 3 = AES 256 bit.
      +

      +
      [ Top ]
      +
      +
      + +

      method getVectorsAngle [line 25464]

      +
      +
      +
      + void getVectorsAngle( +int +$x1, int +$y1, int +$x2, int +$y2) +
      +

      + + Returns the angle in radiants between two vectors



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.0.000 (2010-05-04)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      int  $x1  X coordiante of first vector point
      int  $y1  Y coordiante of first vector point
      int  $x2  X coordiante of second vector point
      int  $y2  Y coordiante of second vector point
      +

      +
      [ Top ]
      +
      +
      + +

      method GetX [line 7801]

      +
      +
      +
      + float GetX( +) +
      +

      + + Returns the relative X value of current position.

      The value is relative to the left border for LTR languages and to the right border for RTL languages.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetX(), TCPDF::GetY(), TCPDF::SetY()
      since:  1.2
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method GetY [line 7828]

      +
      +
      +
      + float GetY( +) +
      +

      + + Returns the ordinate of the current position.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetY(), TCPDF::GetX(), TCPDF::SetX()
      since:  1.0
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method get_mqr [line 7446]

      +
      +
      +
      + Returns get_mqr( +) +
      +

      + + Gets the current active configuration setting of magic_quotes_runtime (if the get_magic_quotes_runtime function exist)



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  0 if magic quotes runtime is off or get_magic_quotes_runtime doesn't exist, 1 otherwise.
      since:  4.6.025 (2009-08-17)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method Gradient [line 16098]

      +
      +
      +
      + void Gradient( +int +$type, array +$coords, array +$stops, [array +$background = array()], [boolean +$antialias = false]) +
      +

      + + Output gradient.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  3.1.000 (2008-06-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      int  $type  type of gradient (1 Function-based shading; 2 Axial shading; 3 Radial shading; 4 Free-form Gouraud-shaded triangle mesh; 5 Lattice-form Gouraud-shaded triangle mesh; 6 Coons patch mesh; 7 Tensor-product patch mesh). (Not all types are currently supported)
      array  $coords  array of coordinates.
      array  $stops  array gradient color components: color = array of GRAY, RGB or CMYK color components; offset = (0 to 1) represents a location along the gradient vector; exponent = exponent of the exponential interpolation function (default = 1).
      array  $background  An array of colour components appropriate to the colour space, specifying a single background colour value.
      boolean  $antialias  A flag indicating whether to filter the shading function to prevent aliasing artifacts.
      +

      +
      [ Top ]
      +
      +
      + +

      method Header [line 3999]

      +
      +
      +
      + void Header( +) +
      +

      + + This method is used to render the page header.

      It is automatically called by AddPage() and could be overwritten in your own inherited class.




      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method hyphenateText [line 23724]

      +
      +
      +
      + array hyphenateText( +string +$text, mixed +$patterns, [array +$dictionary = array()], [int +$leftmin = 1], [int +$rightmin = 2], [int +$charmin = 1], [int +$charmax = 8]) +
      +

      + + Returns text with soft hyphens.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  text with soft hyphens
      author:  Nicola Asuni
      since:  4.9.012 (2010-04-12)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $text  text to process
      mixed  $patterns  Array of hypenation patterns or a TEX file containing hypenation patterns. TEX patterns can be downloaded from http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
      array  $dictionary  Array of words to be returned without applying the hyphenation algoritm.
      int  $leftmin  Minimum number of character to leave on the left of the word without applying the hyphens.
      int  $rightmin  Minimum number of character to leave on the right of the word without applying the hyphens.
      int  $charmin  Minimum word lenght to apply the hyphenation algoritm.
      int  $charmax  Maximum lenght of broken piece of word.
      +

      +
      [ Top ]
      +
      +
      + +

      method hyphenateWord [line 23615]

      +
      +
      +
      + array hyphenateWord( +array +$word, array +$patterns, [array +$dictionary = array()], [int +$leftmin = 1], [int +$rightmin = 2], [int +$charmin = 1], [int +$charmax = 8]) +
      +

      + + Returns an array of chars containing soft hyphens.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  text with soft hyphens
      author:  Nicola Asuni
      since:  4.9.012 (2010-04-12)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      array  $word  array of chars
      array  $patterns  Array of hypenation patterns.
      array  $dictionary  Array of words to be returned without applying the hyphenation algoritm.
      int  $leftmin  Minimum number of character to leave on the left of the word without applying the hyphens.
      int  $rightmin  Minimum number of character to leave on the right of the word without applying the hyphens.
      int  $charmin  Minimum word lenght to apply the hyphenation algoritm.
      int  $charmax  Maximum lenght of broken piece of word.
      +

      +
      [ Top ]
      +
      +
      + +

      method Image [line 7113]

      +
      +
      +
      + image Image( +string +$file, [float +$x = ''], [float +$y = ''], [float +$w = 0], [float +$h = 0], [string +$type = ''], [mixed +$link = ''], [string +$align = ''], [mixed +$resize = false], [int +$dpi = 300], [string +$palign = ''], [boolean +$ismask = false], [mixed +$imgmask = false], [mixed +$border = 0], [boolean +$fitbox = false], [boolean +$hidden = false], [boolean +$fitonpage = false]) +
      +

      + + Puts an image in the page.

      The upper-left corner must be given. The dimensions can be specified in different ways:

      • explicit width and height (expressed in user unit)
      • one explicit dimension, the other being calculated automatically in order to keep the original proportions
      • no explicit dimension, in which case the image is put at 72 dpi
      Supported formats are JPEG and PNG images whitout GD library and all images supported by GD: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM; The format can be specified explicitly or inferred from the file extension.
      It is possible to put a link on the image.
      Remark: if an image is used several times, only one copy will be embedded in the file.




      +

      Tags:

      +
      + + + + + + + + + + +
      return:  information
      since:  1.1
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $file  Name of the file containing the image or a '@' character followed by the image data string.
      float  $x  Abscissa of the upper-left corner (LTR) or upper-right corner (RTL).
      float  $y  Ordinate of the upper-left corner (LTR) or upper-right corner (RTL).
      float  $w  Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
      float  $h  Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
      string  $type  Image format. Possible values are (case insensitive): JPEG and PNG (whitout GD library) and all images supported by GD: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM;. If not specified, the type is inferred from the file extension.
      mixed  $link  URL or identifier returned by AddLink().
      string  $align  Indicates the alignment of the pointer next to image insertion 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
      mixed  $resize  If true resize (reduce) the image to fit $w and $h (requires GD or ImageMagick library); if false do not resize; if 2 force resize in all cases (upscaling and downscaling).
      int  $dpi  dot-per-inch resolution used on resize
      string  $palign  Allows to center or align the image on the current line. Possible values are:
      • L : left align
      • C : center
      • R : right align
      • '' : empty string : left for LTR or right for RTL
      boolean  $ismask  true if this image is a mask, false otherwise
      mixed  $imgmask  image object returned by this function or false
      mixed  $border  Indicates if borders must be drawn around the cell. The value can be a number:
      • 0: no border (default)
      • 1: frame
      or a string containing some or all of the following characters (in any order):
      • L: left
      • T: top
      • R: right
      • B: bottom
      or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
      boolean  $fitbox  If true scale image dimensions proportionally to fit within the ($w, $h) box.
      boolean  $hidden  if true do not display the image.
      boolean  $fitonpage  if true the image is resized to not exceed page dimensions.
      +

      +
      [ Top ]
      +
      +
      + +

      method ImageEps [line 16447]

      +
      +
      +
      + void ImageEps( +string +$file, [float +$x = ''], [float +$y = ''], [float +$w = 0], [float +$h = 0], [mixed +$link = ''], [boolean +$useBoundingBox = true], [string +$align = ''], [string +$palign = ''], [mixed +$border = 0], [boolean +$fitonpage = false], [boolean +$fixoutvals = false]) +
      +

      + + Embed vector-based Adobe Illustrator (AI) or AI-compatible EPS files.

      NOTE: EPS is not yet fully implemented, use the setRasterizeVectorImages() method to enable/disable rasterization of vector images using ImageMagick library. Only vector drawing is supported, not text or bitmap. Although the script was successfully tested with various AI format versions, best results are probably achieved with files that were exported in the AI3 format (tested with Illustrator CS2, Freehand MX and Photoshop CS2).




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Valentin Schmidt, Nicola Asuni
      since:  3.1.000 (2008-06-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $file  Name of the file containing the image or a '@' character followed by the EPS/AI data string.
      float  $x  Abscissa of the upper-left corner.
      float  $y  Ordinate of the upper-left corner.
      float  $w  Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
      float  $h  Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
      mixed  $link  URL or identifier returned by AddLink().
      string  $align  Indicates the alignment of the pointer next to image insertion 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
      string  $palign  Allows to center or align the image on the current line. Possible values are:
      • L : left align
      • C : center
      • R : right align
      • '' : empty string : left for LTR or right for RTL
      mixed  $border  Indicates if borders must be drawn around the cell. The value can be a number:
      • 0: no border (default)
      • 1: frame
      or a string containing some or all of the following characters (in any order):
      • L: left
      • T: top
      • R: right
      • B: bottom
      or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
      boolean  $fitonpage  if true the image is resized to not exceed page dimensions.
      boolean  $fixoutvals  if true remove values outside the bounding box.
      boolean  $useBoundingBox  useBoundingBox specifies whether to position the bounding box (true) or the complete canvas (false) at location (x,y). Default value is true.
      +

      +
      [ Top ]
      +
      +
      + +

      method ImagePngAlpha [line 7692]

      +
      +
      +
      + void ImagePngAlpha( +string +$file, float +$x, float +$y, float +$wpx, float +$hpx, float +$w, float +$h, string +$type, mixed +$link, string +$align, boolean +$resize, int +$dpi, string +$palign) +
      +

      + + Extract info from a PNG image with alpha channel using the GD library.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      author:  Nicola Asuni
      see:  TCPDF::Image()
      since:  4.3.007 (2008-12-04)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $file  Name of the file containing the image.
      float  $x  Abscissa of the upper-left corner.
      float  $y  Ordinate of the upper-left corner.
      float  $wpx  Original width of the image in pixels.
      float  $hpx  original height of the image in pixels.
      float  $w  Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
      float  $h  Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
      string  $type  Image format. Possible values are (case insensitive): JPEG and PNG (whitout GD library) and all images supported by GD: GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM;. If not specified, the type is inferred from the file extension.
      mixed  $link  URL or identifier returned by AddLink().
      string  $align  Indicates the alignment of the pointer next to image insertion 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
      boolean  $resize  If true resize (reduce) the image to fit $w and $h (requires GD library).
      int  $dpi  dot-per-inch resolution used on resize
      string  $palign  Allows to center or align the image on the current line. Possible values are:
      • L : left align
      • C : center
      • R : right align
      • '' : empty string : left for LTR or right for RTL
      +

      +
      [ Top ]
      +
      +
      + +

      method ImageSVG [line 24405]

      +
      +
      +
      + void ImageSVG( +string +$file, [float +$x = ''], [float +$y = ''], [float +$w = 0], [float +$h = 0], [mixed +$link = ''], [string +$align = ''], [string +$palign = ''], [mixed +$border = 0], [boolean +$fitonpage = false]) +
      +

      + + Embedd a Scalable Vector Graphics (SVG) image.

      NOTE: SVG standard is not yet fully implemented, use the setRasterizeVectorImages() method to enable/disable rasterization of vector images using ImageMagick library.




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.0.000 (2010-05-02)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $file  Name of the SVG file or a '@' character followed by the SVG data string.
      float  $x  Abscissa of the upper-left corner.
      float  $y  Ordinate of the upper-left corner.
      float  $w  Width of the image in the page. If not specified or equal to zero, it is automatically calculated.
      float  $h  Height of the image in the page. If not specified or equal to zero, it is automatically calculated.
      mixed  $link  URL or identifier returned by AddLink().
      string  $align  Indicates the alignment of the pointer next to image insertion 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
      If the alignment is an empty string, then the pointer will be restored on the starting SVG position.
      string  $palign  Allows to center or align the image on the current line. Possible values are:
      • L : left align
      • C : center
      • R : right align
      • '' : empty string : left for LTR or right for RTL
      mixed  $border  Indicates if borders must be drawn around the cell. The value can be a number:
      • 0: no border (default)
      • 1: frame
      or a string containing some or all of the following characters (in any order):
      • L: left
      • T: top
      • R: right
      • B: bottom
      or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
      boolean  $fitonpage  if true the image is resized to not exceed page dimensions.
      +

      +
      [ Top ]
      +
      +
      + +

      method IncludeJS [line 14184]

      +
      +
      +
      + void IncludeJS( +string +$script) +
      +

      + + Adds a javascript



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Johannes Gntert, Nicola Asuni
      since:  2.1.002 (2008-02-12)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $script  Javascript code
      +

      +
      [ Top ]
      +
      +
      + +

      method intToRoman [line 22024]

      +
      +
      +
      + string intToRoman( +int +$number) +
      +

      + + Returns the Roman representation of an integer number



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  roman representation of the specified number
      since:  4.4.004 (2008-12-10)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $number  number to convert
      +

      +
      [ Top ]
      +
      +
      + +

      method isRTLTextDir [line 3054]

      +
      +
      +
      + boolean isRTLTextDir( +) +
      +

      + + Return the current temporary RTL status



      +

      Tags:

      +
      + + + + + + + +
      since:  4.8.014 (2009-11-04)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method isUnicodeFont [line 23936]

      +
      +
      +
      + true isUnicodeFont( +) +
      +

      + + Return true if the current font is unicode type.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  for unicode font, false otherwise.
      author:  Nicola Asuni
      since:  5.8.002 (2010-08-14)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method isValidCSSSelectorForTag [line 17641]

      +
      +
      +
      + true isValidCSSSelectorForTag( +array +$dom, int +$key, string +$selector) +
      +

      + + Returns true if the CSS selector is valid for the selected HTML tag



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  if the selector is valid, false otherwise
      since:  5.1.000 (2010-05-25)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      array  $dom  array of HTML tags and properties
      int  $key  key of the current HTML tag
      string  $selector  CSS selector string
      +

      +
      [ Top ]
      +
      +
      + +

      method lastPage [line 3708]

      +
      +
      +
      + void lastPage( +[boolean +$resetmargins = false]) +
      +

      + + Reset pointer to the last document page.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::setPage(), TCPDF::getPage(), TCPDF::getNumPages()
      since:  2.0.000 (2008-01-04)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      boolean  $resetmargins  if true reset left, right, top margins and Y position.
      +

      +
      [ Top ]
      +
      +
      + +

      method Line [line 12784]

      +
      +
      +
      + void Line( +float +$x1, float +$y1, float +$x2, float +$y2, [array +$style = array()]) +
      +

      + + Draws a line between two points.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetLineWidth(), TCPDF::SetDrawColor(), TCPDF::SetLineStyle()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x1  Abscissa of first point.
      float  $y1  Ordinate of first point.
      float  $x2  Abscissa of second point.
      float  $y2  Ordinate of second point.
      array  $style  Line style. Array like for SetLineStyle. Default value: default line style (empty array).
      +

      +
      [ Top ]
      +
      +
      + +

      method LinearGradient [line 15948]

      +
      +
      +
      + void LinearGradient( +float +$x, float +$y, float +$w, float +$h, [array +$col1 = array()], [array +$col2 = array()], [array +$coords = array(0,0,1,0)]) +
      +

      + + Paints a linear colour gradient.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Andreas Wrmser, Nicola Asuni
      since:  3.1.000 (2008-06-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x  abscissa of the top left corner of the rectangle.
      float  $y  ordinate of the top left corner of the rectangle.
      float  $w  width of the rectangle.
      float  $h  height of the rectangle.
      array  $col1  first color (Grayscale, RGB or CMYK components).
      array  $col2  second color (Grayscale, RGB or CMYK components).
      array  $coords  array of the form (x1, y1, x2, y2) which defines the gradient vector (see linear_gradient_coords.jpg). The default value is from left to right (x1=0, y1=0, x2=1, y2=0).
      +

      +
      [ Top ]
      +
      +
      + +

      method Link [line 5081]

      +
      +
      +
      + void Link( +float +$x, float +$y, float +$w, float +$h, mixed +$link, [int +$spaces = 0]) +
      +

      + + Puts a link on a rectangular area of the page.

      Text or image links are generally put via Cell(), Write() or Image(), but this method can be useful for instance to define a clickable area inside an image.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::AddLink(), TCPDF::Annotation(), TCPDF::Cell(), TCPDF::Write(), TCPDF::Image()
      since:  1.5
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x  Abscissa of the upper-left corner of the rectangle
      float  $y  Ordinate of the upper-left corner of the rectangle
      float  $w  Width of the rectangle
      float  $h  Height of the rectangle
      mixed  $link  URL or identifier returned by AddLink()
      int  $spaces  number of spaces on the text to link
      +

      +
      [ Top ]
      +
      +
      + +

      method ListBox [line 14896]

      +
      +
      +
      + void ListBox( +string +$name, int +$w, int +$h, array +$values, [array +$prop = array()], [array +$opt = array()], [float +$x = ''], [float +$y = ''], [boolean +$js = false]) +
      +

      + + Creates a List-box field



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.8.000 (2009-09-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $name  field name
      int  $w  width
      int  $h  height
      array  $values  array containing the list of values.
      array  $prop  javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
      array  $opt  annotation parameters. Possible values are described on official PDF32000_2008 reference.
      float  $x  Abscissa of the upper-left corner of the rectangle
      float  $y  Ordinate of the upper-left corner of the rectangle
      boolean  $js  if true put the field using JavaScript (requires Acrobat Writer to be rendered).
      +

      +
      [ Top ]
      +
      +
      + +

      method Ln [line 7766]

      +
      +
      +
      + void Ln( +[float +$h = ''], [boolean +$cell = false]) +
      +

      + + Performs a line break.

      The current abscissa goes back to the left margin and the ordinate increases by the amount passed in parameter.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::Cell()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      float  $h  The height of the break. By default, the value equals the height of the last printed cell.
      boolean  $cell  if true add the current left (or right o for RTL) padding to the X coordinate
      +

      +
      [ Top ]
      +
      +
      + +

      method MirrorH [line 12381]

      +
      +
      +
      + void MirrorH( +[int +$x = '']) +
      +

      + + Horizontal Mirroring.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $x  abscissa of the point. Default is current x position
      +

      +
      [ Top ]
      +
      +
      + +

      method MirrorL [line 12417]

      +
      +
      +
      + void MirrorL( +[float +$angle = 0], [int +$x = ''], [int +$y = '']) +
      +

      + + Reflection against a straight line through point (x, y) with the gradient angle (angle).



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      float  $angle  gradient angle of the straight line. Default is 0 (horizontal line).
      int  $x  abscissa of the point. Default is current x position
      int  $y  ordinate of the point. Default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method MirrorP [line 12404]

      +
      +
      +
      + void MirrorP( +[int +$x = ''], [int +$y = '']) +
      +

      + + Point reflection mirroring.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      int  $x  abscissa of the point. Default is current x position
      int  $y  ordinate of the point. Default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method MirrorV [line 12392]

      +
      +
      +
      + void MirrorV( +[int +$y = '']) +
      +

      + + Verical Mirroring.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $y  ordinate of the point. Default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method movePage [line 22662]

      +
      +
      +
      + true movePage( +int +$frompage, int +$topage) +
      +

      + + Move a page to a previous position.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  in case of success, false in case of error.
      since:  4.5.000 (2009-01-02)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      int  $frompage  number of the source page
      int  $topage  number of the destination page (must be less than $frompage)
      +

      +
      [ Top ]
      +
      +
      + +

      method MultiCell [line 5999]

      +
      +
      +
      + int MultiCell( +float +$w, float +$h, string +$txt, [mixed +$border = 0], [string +$align = 'J'], [boolean +$fill = false], [int +$ln = 1], [float +$x = ''], [float +$y = ''], [boolean +$reseth = true], [int +$stretch = 0], [boolean +$ishtml = false], [boolean +$autopadding = true], [float +$maxh = 0], [string +$valign = 'T'], [boolean +$fitcell = false]) +
      +

      + + This method allows printing text with line breaks.

      They can be automatic (as soon as the text reaches the right border of the cell) or explicit (via the \n character). As many cells as necessary are output, one below the other.
      Text can be aligned, centered or justified. The cell block can be framed and the background painted.




      +

      Tags:

      +
      + + + + + + + + + + + + + + + + +
      return:  Return the number of cells or 1 for html mode.
      see:  TCPDF::SetFont(), TCPDF::SetDrawColor(), TCPDF::SetFillColor(), TCPDF::SetTextColor(), TCPDF::SetLineWidth(), TCPDF::Cell(), TCPDF::Write(), TCPDF::SetAutoPageBreak()
      since:  1.3
      access:  public
      usedby:  TCPDF::writeHTMLCell()
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $w  Width of cells. If 0, they extend up to the right margin of the page.
      float  $h  Cell minimum height. The cell extends automatically if needed.
      string  $txt  String to print
      mixed  $border  Indicates if borders must be drawn around the cell. The value can be a number:
      • 0: no border (default)
      • 1: frame
      or a string containing some or all of the following characters (in any order):
      • L: left
      • T: top
      • R: right
      • B: bottom
      or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
      string  $align  Allows to center or align the text. Possible values are:
      • L or empty string: left align
      • C: center
      • R: right align
      • J: justification (default value when $ishtml=false)
      boolean  $fill  Indicates if the cell background must be painted (true) or transparent (false).
      int  $ln  Indicates where the current position should go after the call. Possible values are:
      • 0: to the right
      • 1: to the beginning of the next line [DEFAULT]
      • 2: below
      float  $x  x position in user units
      float  $y  y position in user units
      boolean  $reseth  if true reset the last cell height (default true).
      int  $stretch  font stretch mode:
      • 0 = disabled
      • 1 = horizontal scaling only if text is larger than cell width
      • 2 = forced horizontal scaling to fit cell width
      • 3 = character spacing only if text is larger than cell width
      • 4 = forced character spacing to fit cell width
      General font stretching and scaling values will be preserved when possible.
      boolean  $ishtml  set to true if $txt is HTML content (default = false).
      boolean  $autopadding  if true, uses internal padding and automatically adjust it to account for line width.
      float  $maxh  maximum height. It should be >= $h and less then remaining space to the bottom of the page, or 0 for disable this feature. This feature works only when $ishtml=false.
      string  $valign  Vertical alignment of text (requires $maxh = $h > 0). Possible values are:
      • T: TOP
      • M: middle
      • B: bottom
      . This feature works only when $ishtml=false.
      boolean  $fitcell  if true attempt to fit all the text within the cell by reducing the font size.
      +

      +
      [ Top ]
      +
      +
      + +

      method objclone [line 23357]

      +
      +
      +
      + cloned objclone( +object +$object) +
      +

      + + Creates a copy of a class object



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  object
      since:  4.5.029 (2009-03-19)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      object  $object  class object to be cloned
      +

      +
      [ Top ]
      +
      +
      + +

      method Open [line 3608]

      +
      +
      +
      + void Open( +) +
      +

      + + This method begins the generation of the PDF document.

      It is not necessary to call it explicitly because AddPage() does it automatically. Note: no page is created by this method




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::AddPage(), TCPDF::Close()
      since:  1.0
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method openHTMLTagHandler [line 20444]

      +
      +
      +
      + void openHTMLTagHandler( + +&$dom, int +$key, boolean +$cell, array +$dom) +
      +

      + + Process opening tags.



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      array  $dom  html dom array
      int  $key  current element id
      boolean  $cell  if true add the default left (or right if RTL) padding to each new line (default false).
        &$dom  
      +

      +
      [ Top ]
      +
      +
      + +

      method Output [line 7920]

      +
      +
      +
      + void Output( +[string +$name = 'doc.pdf'], [string +$dest = 'I']) +
      +

      + + Send the document to a given destination: string, local file or browser.

      In the last case, the plug-in may be used (if present) or a download ("Save as" dialog box) may be forced.
      The method first calls Close() if necessary to terminate the document.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::Close()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $name  The name of the file when saved. Note that special characters are removed and blanks characters are replaced with the underscore character.
      string  $dest  Destination where to send the document. It can take one of the following values:
      • I: send the file inline to the browser (default). The plug-in is used if available. The name given by name is used when one selects the "Save as" option on the link generating the PDF.
      • D: send to the browser and force a file download with the name given by name.
      • F: save to a local server file with the name given by name.
      • S: return the document as a string (name is ignored).
      • FI: equivalent to F + I option
      • FD: equivalent to F + D option
      • E: return the document as base64 mime multi-part email attachment (RFC 2045)
      +

      +
      [ Top ]
      +
      +
      + +

      method PageNo [line 4229]

      +
      +
      +
      + int PageNo( +) +
      +

      + + Returns the current page number.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  page number
      see:  TCPDF::AliasNbPages(), TCPDF::getAliasNbPages()
      since:  1.0
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method PageNoFormatted [line 15553]

      +
      +
      +
      + void PageNoFormatted( +) +
      +

      + + Returns the current page number formatted as a string.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  PaneNo(), TCPDF::formatPageNumber()
      since:  4.2.005 (2008-11-06)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method PieSector [line 16385]

      +
      +
      +
      + void PieSector( +float +$xc, float +$yc, float +$r, float +$a, float +$b, [string +$style = 'FD'], [ +$cw = true], [ +$o = 90], float +$cw:, float +$o:) +
      +

      + + Draw the sector of a circle.

      It can be used for instance to render pie charts.




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Maxime Delorme, Nicola Asuni
      since:  3.1.000 (2008-06-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $xc  abscissa of the center.
      float  $yc  ordinate of the center.
      float  $r  radius.
      float  $a  start angle (in degrees).
      float  $b  end angle (in degrees).
      string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
      float  $cw:  indicates whether to go clockwise (default: true).
      float  $o:  origin of angles (0 for 3 o'clock, 90 for noon, 180 for 9 o'clock, 270 for 6 o'clock). Default: 90.
        $cw  
        $o  
      +

      +
      [ Top ]
      +
      +
      + +

      method PieSectorXY [line 16406]

      +
      +
      +
      + void PieSectorXY( +float +$xc, float +$yc, float +$rx, float +$ry, float +$a, float +$b, [string +$style = 'FD'], [ +$cw = false], [ +$o = 0], [integer +$nc = 2], float +$cw:, float +$o:) +
      +

      + + Draw the sector of an ellipse.

      It can be used for instance to render pie charts.




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Maxime Delorme, Nicola Asuni
      since:  3.1.000 (2008-06-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $xc  abscissa of the center.
      float  $yc  ordinate of the center.
      float  $rx  the x-axis radius.
      float  $ry  the y-axis radius.
      float  $a  start angle (in degrees).
      float  $b  end angle (in degrees).
      string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
      float  $cw:  indicates whether to go clockwise.
      float  $o:  origin of angles (0 for 3 o'clock, 90 for noon, 180 for 9 o'clock, 270 for 6 o'clock).
      integer  $nc  Number of curves used to draw a 90 degrees portion of arc.
        $cw  
        $o  
      +

      +
      [ Top ]
      +
      +
      + +

      method pixelsToUnits [line 11526]

      +
      +
      +
      + float pixelsToUnits( +int +$px) +
      +

      + + Converts pixels to User's Units.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  value in user's unit
      see:  TCPDF::setImageScale(), TCPDF::getImageScale()
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $px  pixels
      +

      +
      [ Top ]
      +
      +
      + +

      method Polycurve [line 12894]

      +
      +
      +
      + void Polycurve( +float +$x0, float +$y0, float +$segments, [string +$style = ''], [array +$line_style = array()], [array +$fill_color = array()]) +
      +

      + + Draws a poly-Bezier curve.

      Each Bezier curve segment is a tangent to the line between the control points at either end of the curve.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetLineStyle()
      since:  3.0008 (2008-05-12)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x0  Abscissa of start point.
      float  $y0  Ordinate of start point.
      float  $segments  An array of bezier descriptions. Format: array(x1, y1, x2, y2, x3, y3).
      string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
      array  $line_style  Line style of curve. Array like for SetLineStyle. Default value: default line style (empty array).
      array  $fill_color  Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
      +

      +
      [ Top ]
      +
      +
      + +

      method Polygon [line 13128]

      +
      +
      +
      + void Polygon( +array +$p, [string +$style = ''], [array +$line_style = array()], [array +$fill_color = array()], [boolean +$closed = true]) +
      +

      + + Draws a polygon.



      +

      Tags:

      +
      + + + + + + + +
      since:  2.1.000 (2008-01-08)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      array  $p  Points 0 to ($np - 1). Array with values (x0, y0, x1, y1,..., x(np-1), y(np - 1))
      string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
      array  $line_style  Line style of polygon. Array with keys among the following:
      • all: Line style of all lines. Array like for SetLineStyle.
      • 0 to ($np - 1): Line style of each line. Array like for SetLineStyle.
      If a key is not present or is null, not draws the line. Default value is default line style (empty array).
      array  $fill_color  Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
      boolean  $closed  if true the polygon is closes, otherwise will remain open
      +

      +
      [ Top ]
      +
      +
      + +

      method PolyLine [line 13109]

      +
      +
      +
      + void PolyLine( +array +$p, [string +$style = ''], [array +$line_style = array()], [array +$fill_color = array()], boolean +$closed) +
      +

      + + Draws a polygonal line



      +

      Tags:

      +
      + + + + + + + +
      since:  4.8.003 (2009-09-15)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      array  $p  Points 0 to ($np - 1). Array with values (x0, y0, x1, y1,..., x(np-1), y(np - 1))
      string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
      array  $line_style  Line style of polygon. Array with keys among the following:
      • all: Line style of all lines. Array like for SetLineStyle.
      • 0 to ($np - 1): Line style of each line. Array like for SetLineStyle.
      If a key is not present or is null, not draws the line. Default value is default line style (empty array).
      array  $fill_color  Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
      boolean  $closed  if true the polygon is closes, otherwise will remain open
      +

      +
      [ Top ]
      +
      +
      + +

      method printTemplate [line 24079]

      +
      +
      +
      + void printTemplate( +string +$id, [int +$x = ''], [int +$y = ''], [int +$w = 0], [int +$h = 0], [string +$align = ''], [string +$palign = ''], [boolean +$fitonpage = false]) +
      +

      + + Print an XObject Template.

      You can print an XObject Template inside the currently opened Template. An XObject Template is a PDF block that is a self-contained description of any sequence of graphics objects (including path objects, text objects, and sampled images). An XObject Template may be painted multiple times, either on several pages or at several locations on the same page and produces the same results each time, subject only to the graphics state at the time it is invoked.




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      author:  Nicola Asuni
      see:  TCPDF::startTemplate(), TCPDF::endTemplate()
      since:  5.8.017 (2010-08-24)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $id  The ID of XObject Template to print.
      int  $x  X position in user units (empty string = current x position)
      int  $y  Y position in user units (empty string = current y position)
      int  $w  Width in user units (zero = remaining page width)
      int  $h  Height in user units (zero = remaining page height)
      string  $align  Indicates the alignment of the pointer next to template insertion relative to template 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
      string  $palign  Allows to center or align the template on the current line. Possible values are:
      • L : left align
      • C : center
      • R : right align
      • '' : empty string : left for LTR or right for RTL
      boolean  $fitonpage  if true the template is resized to not exceed page dimensions.
      +

      +
      [ Top ]
      +
      +
      + +

      method putHtmlListBullet [line 22089]

      +
      +
      +
      + void putHtmlListBullet( +int +$listdepth, [string +$listtype = ''], [float +$size = 10]) +
      +

      + + Output an HTML list bullet or ordered item symbol



      +

      Tags:

      +
      + + + + + + + +
      since:  4.4.004 (2008-12-10)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $listdepth  list nesting level
      string  $listtype  type of list
      float  $size  current font size
      +

      +
      [ Top ]
      +
      +
      + +

      method RadialGradient [line 15966]

      +
      +
      +
      + void RadialGradient( +float +$x, float +$y, float +$w, float +$h, [array +$col1 = array()], [array +$col2 = array()], [array +$coords = array(0.5,0.5,0.5,0.5,1)]) +
      +

      + + Paints a radial colour gradient.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Andreas Wrmser, Nicola Asuni
      since:  3.1.000 (2008-06-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x  abscissa of the top left corner of the rectangle.
      float  $y  ordinate of the top left corner of the rectangle.
      float  $w  width of the rectangle.
      float  $h  height of the rectangle.
      array  $col1  first color (Grayscale, RGB or CMYK components).
      array  $col2  second color (Grayscale, RGB or CMYK components).
      array  $coords  array of the form (fx, fy, cx, cy, r) where (fx, fy) is the starting point of the gradient with color1, (cx, cy) is the center of the circle with color2, and r is the radius of the circle (see radial_gradient_coords.jpg). (fx, fy) should be inside the circle, otherwise some areas will not be defined.
      +

      +
      [ Top ]
      +
      +
      + +

      method RadioButton [line 14804]

      +
      +
      +
      + void RadioButton( +string +$name, int +$w, [array +$prop = array()], [array +$opt = array()], [string +$onvalue = 'On'], [boolean +$checked = false], [float +$x = ''], [float +$y = ''], [boolean +$js = false]) +
      +

      + + Creates a RadioButton field



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.8.000 (2009-09-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $name  field name
      int  $w  width
      array  $prop  javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
      array  $opt  annotation parameters. Possible values are described on official PDF32000_2008 reference.
      string  $onvalue  value to be returned if selected.
      boolean  $checked  define the initial state.
      float  $x  Abscissa of the upper-left corner of the rectangle
      float  $y  Ordinate of the upper-left corner of the rectangle
      boolean  $js  if true put the field using JavaScript (requires Acrobat Writer to be rendered).
      +

      +
      [ Top ]
      +
      +
      + +

      method readDiskCache [line 22435]

      +
      +
      +
      + mixed readDiskCache( + +$filename, string +$file) +
      +

      + + Read data from a temporary file on filesystem.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  retrieved data
      since:  4.5.000 (2008-12-31)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $file  file name
        $filename  
      +

      +
      [ Top ]
      +
      +
      + +

      method Rect [line 12812]

      +
      +
      +
      + void Rect( +float +$x, float +$y, float +$w, float +$h, [string +$style = ''], [array +$border_style = array()], [array +$fill_color = array()]) +
      +

      + + Draws a rectangle.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetLineStyle()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x  Abscissa of upper-left corner (or upper-right corner for RTL language).
      float  $y  Ordinate of upper-left corner (or upper-right corner for RTL language).
      float  $w  Width.
      float  $h  Height.
      string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
      array  $border_style  Border style of rectangle. Array like for SetLineStyle. Default value: default line style (empty array).
      array  $fill_color  Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
      +

      +
      [ Top ]
      +
      +
      + +

      method registrationMark [line 15917]

      +
      +
      +
      + void registrationMark( +float +$x, float +$y, float +$r, [boolean +$double = false], [array +$cola = array(0,0,0)], [array +$colb = array(255,255,255)]) +
      +

      + + Paints a registration mark



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.9.000 (2010-03-26)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x  abscissa of the registration mark center.
      float  $y  ordinate of the registration mark center.
      float  $r  radius of the crop mark.
      boolean  $double  if true print two concentric crop marks.
      array  $cola  crop mark color (default black).
      array  $colb  second crop mark color.
      +

      +
      [ Top ]
      +
      +
      + +

      method RegularPolygon [line 13226]

      +
      +
      +
      + void RegularPolygon( +float +$x0, float +$y0, +$r, integer +$ns, [float +$angle = 0], [boolean +$draw_circle = false], [string +$style = ''], [array +$line_style = array()], [array +$fill_color = array()], [string +$circle_style = ''], [array +$circle_outLine_style = array()], [array +$circle_fill_color = array()], float +$r:) +
      +

      + + Draws a regular polygon.



      +

      Tags:

      +
      + + + + + + + +
      since:  2.1.000 (2008-01-08)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x0  Abscissa of center point.
      float  $y0  Ordinate of center point.
      float  $r:  Radius of inscribed circle.
      integer  $ns  Number of sides.
      float  $angle  Angle oriented (anti-clockwise). Default value: 0.
      boolean  $draw_circle  Draw inscribed circle or not. Default value: false.
      string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
      array  $line_style  Line style of polygon sides. Array with keys among the following:
      • all: Line style of all sides. Array like for SetLineStyle.
      • 0 to ($ns - 1): Line style of each side. Array like for SetLineStyle.
      If a key is not present or is null, not draws the side. Default value is default line style (empty array).
      array  $fill_color  Fill color. Format: array(red, green, blue). Default value: default color (empty array).
      string  $circle_style  Style of rendering of inscribed circle (if draws). Possible values are:
      • D or empty string: Draw (default).
      • F: Fill.
      • DF or FD: Draw and fill.
      • CNZ: Clipping mode (using the even-odd rule to determine which regions lie inside the clipping path).
      • CEO: Clipping mode (using the nonzero winding number rule to determine which regions lie inside the clipping path).
      array  $circle_outLine_style  Line style of inscribed circle (if draws). Array like for SetLineStyle. Default value: default line style (empty array).
      array  $circle_fill_color  Fill color of inscribed circle (if draws). Format: array(red, green, blue). Default value: default color (empty array).
        $r  
      +

      +
      [ Top ]
      +
      +
      + +

      method removePageRegion [line 24302]

      +
      +
      +
      + void removePageRegion( +int +$key) +
      +

      + + Remove a single no-write region.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      author:  Nicola Asuni
      see:  TCPDF::setPageRegions(), TCPDF::getPageRegions()
      since:  5.9.003 (2010-10-13)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $key  region key
      +

      +
      [ Top ]
      +
      +
      + +

      method removeSHY [line 5325]

      +
      +
      +
      + string removeSHY( +[string +$txt = '']) +
      +

      + + Removes SHY characters from text.

      Unicode Data:

      • Name : SOFT HYPHEN, commonly abbreviated as SHY
      • HTML Entity (decimal): &amp;#173;
      • HTML Entity (hex): &amp;#xad;
      • HTML Entity (named): &amp;shy;
      • How to type in Microsoft Windows: [Alt +00AD] or [Alt 0173]
      • UTF-8 (hex): 0xC2 0xAD (c2ad)
      • UTF-8 character: chr(194).chr(173)




      +

      Tags:

      +
      + + + + + + + + + + +
      return:  without SHY characters.
      since:  (4.5.019) 2009-02-28
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $txt  input string
      +

      +
      [ Top ]
      +
      +
      + +

      method replaceBuffer [line 22463]

      +
      +
      +
      + void replaceBuffer( +string +$data) +
      +

      + + Replace the buffer content



      +

      Tags:

      +
      + + + + + + + +
      since:  5.5.000 (2010-06-22)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $data  data
      +

      +
      [ Top ]
      +
      +
      + +

      method resetLastH [line 3074]

      +
      +
      +
      + void resetLastH( +) +
      +

      + + Reset the last cell height.



      +

      Tags:

      +
      + + + + + + + +
      since:  5.9.000 (2010-10-03)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method revstrpos [line 23381]

      +
      +
      +
      + Returns revstrpos( +string +$haystack, string +$needle, [int +$offset = 0]) +
      +

      + + Find position of last occurrence of a substring in a string



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  the position where the needle exists. Returns FALSE if the needle was not found.
      since:  4.8.038 (2010-03-13)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      string  $haystack  The string to search in.
      string  $needle  substring to search.
      int  $offset  May be specified to begin searching an arbitrary number of characters into the string.
      +

      +
      [ Top ]
      +
      +
      + +

      method rfread [line 7660]

      +
      +
      +
      + Returns rfread( +resource +$handle, int +$length) +
      +

      + + Binary-safe and URL-safe file read.

      Reads up to length bytes from the file pointer referenced by handle. Reading stops as soon as one of the following conditions is met: length bytes have been read; EOF (end of file) is reached.




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  the read string or FALSE in case of error.
      author:  Nicola Asuni
      since:  4.5.027 (2009-03-16)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      resource  $handle  
      int  $length  
      +

      +
      [ Top ]
      +
      +
      + +

      method rollbackTransaction [line 23328]

      +
      +
      +
      + TCPDF rollbackTransaction( +[boolean +$self = false]) +
      +

      + + This method allows to undo the latest transaction by returning the latest saved TCPDF object with startTransaction().



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  object.
      since:  4.5.029 (2009-03-19)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      boolean  $self  if true restores current class object to previous state without the need of reassignment via the returned value.
      +

      +
      [ Top ]
      +
      +
      + +

      method Rotate [line 12474]

      +
      +
      +
      + void Rotate( +float +$angle, [int +$x = ''], [int +$y = '']) +
      +

      + + Rotate object.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      float  $angle  angle in degrees for counter-clockwise rotation
      int  $x  abscissa of the rotation center. Default is current x position
      int  $y  ordinate of the rotation center. Default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method RoundedRect [line 13316]

      +
      +
      +
      + void RoundedRect( +float +$x, float +$y, float +$w, float +$h, float +$r, [string +$round_corner = '1111'], [string +$style = ''], [array +$border_style = array()], [array +$fill_color = array()]) +
      +

      + + Draws a rounded rectangle.



      +

      Tags:

      +
      + + + + + + + +
      since:  2.1.000 (2008-01-08)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x  Abscissa of upper-left corner.
      float  $y  Ordinate of upper-left corner.
      float  $w  Width.
      float  $h  Height.
      float  $r  the radius of the circle used to round off the corners of the rectangle.
      string  $round_corner  Draws rounded corner or not. String with a 0 (not rounded i-corner) or 1 (rounded i-corner) in i-position. Positions are, in order and begin to 0: top left, top right, bottom right and bottom left. Default value: all rounded corner ("1111").
      string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
      array  $border_style  Border style of rectangle. Array like for SetLineStyle. Default value: default line style (empty array).
      array  $fill_color  Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
      +

      +
      [ Top ]
      +
      +
      + +

      method RoundedRectXY [line 13335]

      +
      +
      +
      + void RoundedRectXY( +float +$x, float +$y, float +$w, float +$h, float +$rx, float +$ry, [string +$round_corner = '1111'], [string +$style = ''], [array +$border_style = array()], [array +$fill_color = array()]) +
      +

      + + Draws a rounded rectangle.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.019 (2010-04-22)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x  Abscissa of upper-left corner.
      float  $y  Ordinate of upper-left corner.
      float  $w  Width.
      float  $h  Height.
      float  $rx  the x-axis radius of the ellipse used to round off the corners of the rectangle.
      float  $ry  the y-axis radius of the ellipse used to round off the corners of the rectangle.
      string  $round_corner  Draws rounded corner or not. String with a 0 (not rounded i-corner) or 1 (rounded i-corner) in i-position. Positions are, in order and begin to 0: top left, top right, bottom right and bottom left. Default value: all rounded corner ("1111").
      string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
      array  $border_style  Border style of rectangle. Array like for SetLineStyle. Default value: default line style (empty array).
      array  $fill_color  Fill color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K). Default value: default color (empty array).
      +

      +
      [ Top ]
      +
      +
      + +

      method Scale [line 12348]

      +
      +
      +
      + void Scale( +float +$s_x, float +$s_y, [int +$x = ''], [int +$y = '']) +
      +

      + + Vertical and horizontal non-proportional Scaling.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      float  $s_x  scaling factor for width as percent. 0 is not allowed.
      float  $s_y  scaling factor for height as percent. 0 is not allowed.
      int  $x  abscissa of the scaling center. Default is current x position
      int  $y  ordinate of the scaling center. Default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method ScaleX [line 12308]

      +
      +
      +
      + void ScaleX( +float +$s_x, [int +$x = ''], [int +$y = '']) +
      +

      + + Horizontal Scaling.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      float  $s_x  scaling factor for width as percent. 0 is not allowed.
      int  $x  abscissa of the scaling center. Default is current x position
      int  $y  ordinate of the scaling center. Default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method ScaleXY [line 12334]

      +
      +
      +
      + void ScaleXY( +float +$s, [int +$x = ''], [int +$y = '']) +
      +

      + + Vertical and horizontal proportional Scaling.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      float  $s  scaling factor for width and height as percent. 0 is not allowed.
      int  $x  abscissa of the scaling center. Default is current x position
      int  $y  ordinate of the scaling center. Default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method ScaleY [line 12321]

      +
      +
      +
      + void ScaleY( +float +$s_y, [int +$x = ''], [int +$y = '']) +
      +

      + + Vertical Scaling.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      float  $s_y  scaling factor for height as percent. 0 is not allowed.
      int  $x  abscissa of the scaling center. Default is current x position
      int  $y  ordinate of the scaling center. Default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method segSVGContentHandler [line 26018]

      +
      +
      +
      + void segSVGContentHandler( +resource +$parser, string +$data) +
      +

      + + Sets the character data handler function for the XML parser.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.0.000 (2010-05-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      resource  $parser  The first parameter, parser, is a reference to the XML parser calling the handler.
      string  $data  The second parameter, data, contains the character data as a string.
      +

      +
      [ Top ]
      +
      +
      + +

      method selectColumn [line 23444]

      +
      +
      +
      + void selectColumn( +[int +$col = '']) +
      +

      + + Set position at a given column



      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.001 (2010-03-28)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $col  column number (from 0 to getNumberOfColumns()-1); empty string = current column.
      +

      +
      [ Top ]
      +
      +
      + +

      method serializeTCPDFtagParameters [line 23540]

      +
      +
      +
      + sting serializeTCPDFtagParameters( +array +$pararray) +
      +

      + + Serialize an array of parameters to be used with TCPDF tag in HTML code.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  containing serialized data
      since:  4.9.006 (2010-04-02)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $pararray  parameters array
      +

      +
      [ Top ]
      +
      +
      + +

      method setAlpha [line 15666]

      +
      +
      +
      + void setAlpha( +float +$alpha, [string +$bm = 'Normal']) +
      +

      + + Set alpha for stroking (CA) and non-stroking (ca) operations.



      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.000 (2008-03-27)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      float  $alpha  real value from 0 (transparent) to 1 (opaque)
      string  $bm  blend mode, one of the following: Normal, Multiply, Screen, Overlay, Darken, Lighten, ColorDodge, ColorBurn, HardLight, SoftLight, Difference, Exclusion, Hue, Saturation, Color, Luminosity
      +

      +
      [ Top ]
      +
      +
      + +

      method SetAuthor [line 3557]

      +
      +
      +
      + void SetAuthor( +string +$author) +
      +

      + + Defines the author of the document.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetCreator(), TCPDF::SetKeywords(), TCPDF::SetSubject(), TCPDF::SetTitle()
      since:  1.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $author  The name of the author.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetAutoPageBreak [line 3424]

      +
      +
      +
      + void SetAutoPageBreak( +boolean +$auto, [float +$margin = 0]) +
      +

      + + Enables or disables the automatic page breaking mode. When enabling, the second parameter is the distance from the bottom of the page that defines the triggering limit. By default, the mode is on and the margin is 2 cm.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::Cell(), TCPDF::MultiCell(), TCPDF::AcceptPageBreak()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      boolean  $auto  Boolean indicating if mode should be on or off.
      float  $margin  Distance from the bottom of the page.
      +

      +
      [ Top ]
      +
      +
      + +

      method setBarcode [line 16763]

      +
      +
      +
      + void setBarcode( +[string +$bc = '']) +
      +

      + + Set document barcode.



      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $bc  barcode
      +

      +
      [ Top ]
      +
      +
      + +

      method SetBooklet [line 21859]

      +
      +
      +
      + void SetBooklet( +[boolean +$booklet = true], [float +$inner = -1], [float +$outer = -1]) +
      +

      + + Set the booklet mode for double-sided pages.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.2.000 (2008-10-29)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      boolean  $booklet  true set the booklet mode on, false otherwise.
      float  $inner  Inner page margin.
      float  $outer  Outer page margin.
      +

      +
      [ Top ]
      +
      +
      + +

      method setBuffer [line 22445]

      +
      +
      +
      + void setBuffer( +string +$data) +
      +

      + + Set buffer content (always append data).



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.000 (2009-01-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $data  data
      +

      +
      [ Top ]
      +
      +
      + +

      method setCellHeightRatio [line 15700]

      +
      +
      +
      + void setCellHeightRatio( +int +$h) +
      +

      + + Set the height of the cell (line height) respect the font height.



      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.014 (2008-06-04)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $h  cell proportion respect font height (typical value = 1.25).
      +

      +
      [ Top ]
      +
      +
      + +

      method setCellMargins [line 3316]

      +
      +
      +
      + void setCellMargins( +[float +$left = ''], [float +$top = ''], [float +$right = ''], [float +$bottom = '']) +
      +

      + + Set the internal Cell margins.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::getCellMargins()
      since:  5.9.000 (2010-10-03)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      float  $left  left margin
      float  $top  top margin
      float  $right  right margin
      float  $bottom  bottom margin
      +

      +
      [ Top ]
      +
      +
      + +

      method SetCellPadding [line 3261]

      +
      +
      +
      + void SetCellPadding( +float +$pad) +
      +

      + + Set the same internal Cell padding for top, right, bottom, left-



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::getCellPaddings(), TCPDF::setCellPaddings()
      since:  2.1.000 (2008-01-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      float  $pad  internal padding.
      +

      +
      [ Top ]
      +
      +
      + +

      method setCellPaddings [line 3280]

      +
      +
      +
      + void setCellPaddings( +[float +$left = ''], [float +$top = ''], [float +$right = ''], [float +$bottom = '']) +
      +

      + + Set the internal Cell paddings.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::getCellPaddings(), TCPDF::SetCellPadding()
      since:  5.9.000 (2010-10-03)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      float  $left  left padding
      float  $top  top padding
      float  $right  right padding
      float  $bottom  bottom padding
      +

      +
      [ Top ]
      +
      +
      + +

      method setColumnsArray [line 23431]

      +
      +
      +
      + void setColumnsArray( +array +$columns) +
      +

      + + Set columns array.

      Each column is represented by an array of arrays with the following keys: (w = width, s = space between columns, y = column top position).




      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.001 (2010-03-28)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $columns  
      +

      +
      [ Top ]
      +
      +
      + +

      method SetCompression [line 3517]

      +
      +
      +
      + void SetCompression( +boolean +$compress) +
      +

      + + Activates or deactivates page compression. When activated, the internal representation of each page is compressed, which leads to a compression ratio of about 2 for the resulting document. Compression is on by default.

      Note: the Zlib extension is required for this feature. If not present, compression will be turned off.




      +

      Tags:

      +
      + + + + + + + +
      since:  1.4
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      boolean  $compress  Boolean indicating if compression must be enabled.
      +

      +
      [ Top ]
      +
      +
      + +

      method setContentMark [line 3877]

      +
      +
      +
      + void setContentMark( +[int +$page = 0]) +
      +

      + + Set start-writing mark on selected page.

      Borders and fills are always created after content and inserted on the position marked by this method.




      +

      Tags:

      +
      + + + + + + + +
      since:  4.6.021 (2009-07-20)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $page  page number (default is the current page)
      +

      +
      [ Top ]
      +
      +
      + +

      method SetCreator [line 3581]

      +
      +
      +
      + void SetCreator( +string +$creator) +
      +

      + + Defines the creator of the document. This is typically the name of the application that generates the PDF.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetAuthor(), TCPDF::SetKeywords(), TCPDF::SetSubject(), TCPDF::SetTitle()
      since:  1.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $creator  The name of the creator.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetDefaultMonospacedFont [line 5031]

      +
      +
      +
      + void SetDefaultMonospacedFont( +string +$font) +
      +

      + + Defines the default monospaced font.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.025
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $font  Font name.
      +

      +
      [ Top ]
      +
      +
      + +

      method setDefaultTableColumns [line 15690]

      +
      +
      +
      + void setDefaultTableColumns( +[int +$cols = 4]) +
      +

      + + Set the default number of columns in a row for HTML tables.



      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.014 (2008-06-04)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $cols  number of columns
      +

      +
      [ Top ]
      +
      +
      + +

      method SetDisplayMode [line 3439]

      +
      +
      +
      + void SetDisplayMode( +mixed +$zoom, [string +$layout = 'SinglePage'], [string +$mode = 'UseNone']) +
      +

      + + Defines the way the document is to be displayed by the viewer.



      +

      Tags:

      +
      + + + + + + + +
      since:  1.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      mixed  $zoom  The zoom to use. It can be one of the following string values or a number indicating the zooming factor to use.
      • fullpage: displays the entire page on screen
      • fullwidth: uses maximum width of window
      • real: uses real size (equivalent to 100% zoom)
      • default: uses viewer default mode
      string  $layout  The page layout. Possible values are:
      • SinglePage Display one page at a time
      • OneColumn Display the pages in one column
      • TwoColumnLeft Display the pages in two columns, with odd-numbered pages on the left
      • TwoColumnRight Display the pages in two columns, with odd-numbered pages on the right
      • TwoPageLeft (PDF 1.5) Display the pages two at a time, with odd-numbered pages on the left
      • TwoPageRight (PDF 1.5) Display the pages two at a time, with odd-numbered pages on the right
      string  $mode  A name object specifying how the document should be displayed when opened:
      • UseNone Neither document outline nor thumbnail images visible
      • UseOutlines Document outline visible
      • UseThumbs Thumbnail images visible
      • FullScreen Full-screen mode, with no menu bar, window controls, or any other window visible
      • UseOC (PDF 1.5) Optional content group panel visible
      • UseAttachments (PDF 1.6) Attachments panel visible
      +

      +
      [ Top ]
      +
      +
      + +

      method SetDrawColor [line 4291]

      +
      +
      +
      + string SetDrawColor( +[int +$col1 = 0], [int +$col2 = -1], [int +$col3 = -1], [int +$col4 = -1], [boolean +$ret = false], [string +$name = '']) +
      +

      + + Defines the color used for all drawing operations (lines, rectangles and cell borders). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  the PDF command
      see:  TCPDF::SetDrawColorArray(), TCPDF::SetFillColor(), TCPDF::SetTextColor(), TCPDF::Line(), TCPDF::Rect(), TCPDF::Cell(), TCPDF::MultiCell()
      since:  1.3
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      int  $col1  GRAY level for single color, or Red color for RGB (0-255), or CYAN color for CMYK (0-100).
      int  $col2  GREEN color for RGB (0-255), or MAGENTA color for CMYK (0-100).
      int  $col3  BLUE color for RGB (0-255), or YELLOW color for CMYK (0-100).
      int  $col4  KEY (BLACK) color for CMYK (0-100).
      boolean  $ret  if true do not send the command.
      string  $name  spot color name (if any)
      +

      +
      [ Top ]
      +
      +
      + +

      method SetDrawColorArray [line 4263]

      +
      +
      +
      + string SetDrawColorArray( +array +$color, [boolean +$ret = false]) +
      +

      + + Defines the color used for all drawing operations (lines, rectangles and cell borders).

      It can be expressed in RGB, CMYK or GRAY SCALE components. The method can be called before the first page is created and the value is retained from page to page.




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  the PDF command
      see:  TCPDF::SetDrawColor()
      since:  3.1.000 (2008-06-11)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      array  $color  array of colors
      boolean  $ret  if true do not send the PDF command.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetDrawSpotColor [line 4341]

      +
      +
      +
      + void SetDrawSpotColor( +string +$name, [int +$tint = 100]) +
      +

      + + Defines the spot color used for all drawing operations (lines, rectangles and cell borders).



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::AddSpotColor(), TCPDF::SetFillSpotColor(), TCPDF::SetTextSpotColor()
      since:  4.0.024 (2008-09-12)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $name  name of the spot color
      int  $tint  the intensity of the color (from 0 to 100 ; 100 = full intensity by default).
      +

      +
      [ Top ]
      +
      +
      + +

      method setEqualColumns [line 23398]

      +
      +
      +
      + void setEqualColumns( +[int +$numcols = 0], [int +$width = 0], [int +$y = '']) +
      +

      + + Set multiple columns of the same size



      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.001 (2010-03-28)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $numcols  number of columns (set to zero to disable columns mode)
      int  $width  column width
      int  $y  column starting Y position (leave empty for current Y position)
      +

      +
      [ Top ]
      +
      +
      + +

      method setExtGState [line 15632]

      +
      +
      +
      + void setExtGState( +array +$gs) +
      +

      + + Add an extgstate



      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.000 (2008-03-27)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $gs  extgstate
      +

      +
      [ Top ]
      +
      +
      + +

      method SetFillColor [line 4388]

      +
      +
      +
      + string SetFillColor( +[int +$col1 = 0], [int +$col2 = -1], [int +$col3 = -1], [int +$col4 = -1], [boolean +$ret = false], [string +$name = '']) +
      +

      + + Defines the color used for all filling operations (filled rectangles and cell backgrounds). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  the PDF command
      see:  TCPDF::SetFillColorArray(), TCPDF::SetDrawColor(), TCPDF::SetTextColor(), TCPDF::Rect(), TCPDF::Cell(), TCPDF::MultiCell()
      since:  1.3
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      int  $col1  GRAY level for single color, or Red color for RGB (0-255), or CYAN color for CMYK (0-100).
      int  $col2  GREEN color for RGB (0-255), or MAGENTA color for CMYK (0-100).
      int  $col3  BLUE color for RGB (0-255), or YELLOW color for CMYK (0-100).
      int  $col4  KEY (BLACK) color for CMYK (0-100).
      boolean  $ret  if true do not send the command.
      string  $name  spot color name (if any)
      +

      +
      [ Top ]
      +
      +
      + +

      method SetFillColorArray [line 4361]

      +
      +
      +
      + void SetFillColorArray( +array +$color, [boolean +$ret = false]) +
      +

      + + Defines the color used for all filling operations (filled rectangles and cell backgrounds).

      It can be expressed in RGB, CMYK or GRAY SCALE components. The method can be called before the first page is created and the value is retained from page to page.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetFillColor()
      since:  3.1.000 (2008-6-11)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      array  $color  array of colors
      boolean  $ret  if true do not send the PDF command.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetFillSpotColor [line 4439]

      +
      +
      +
      + void SetFillSpotColor( +string +$name, [int +$tint = 100]) +
      +

      + + Defines the spot color used for all filling operations (filled rectangles and cell backgrounds).



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::AddSpotColor(), TCPDF::SetDrawSpotColor(), TCPDF::SetTextSpotColor()
      since:  4.0.024 (2008-09-12)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $name  name of the spot color
      int  $tint  the intensity of the color (from 0 to 100 ; 100 = full intensity by default).
      +

      +
      [ Top ]
      +
      +
      + +

      method SetFont [line 4928]

      +
      +
      +
      + void SetFont( +string +$family, [string +$style = ''], [float +$size = 0], [string +$fontfile = ''], [mixed +$subset = 'default']) +
      +

      + + Sets the font used to print character strings.

      The font can be either a standard one or a font added via the AddFont() method. Standard fonts use Windows encoding cp1252 (Western Europe). The method can be called before the first page is created and the font is retained from page to page. If you just wish to change the current font size, it is simpler to call SetFontSize(). Note: for the standard fonts, the font metric files must be accessible. There are three possibilities for this:

      • They are in the current directory (the one where the running script lies)
      • They are in one of the directories defined by the include_path parameter
      • They are in the directory defined by the K_PATH_FONTS constant




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      author:  Nicola Asuni
      see:  TCPDF::AddFont(), TCPDF::SetFontSize()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $family  Family font. It can be either a name defined by AddFont() or one of the standard Type1 families (case insensitive):
      • times (Times-Roman)
      • timesb (Times-Bold)
      • timesi (Times-Italic)
      • timesbi (Times-BoldItalic)
      • helvetica (Helvetica)
      • helveticab (Helvetica-Bold)
      • helveticai (Helvetica-Oblique)
      • helveticabi (Helvetica-BoldOblique)
      • courier (Courier)
      • courierb (Courier-Bold)
      • courieri (Courier-Oblique)
      • courierbi (Courier-BoldOblique)
      • symbol (Symbol)
      • zapfdingbats (ZapfDingbats)
      It is also possible to pass an empty string. In that case, the current family is retained.
      string  $style  Font style. Possible values are (case insensitive):
      • empty string: regular
      • B: bold
      • I: italic
      • U: underline
      • D: line trough
      • O: overline
      or any combination. The default value is regular. Bold and italic styles do not apply to Symbol and ZapfDingbats basic fonts or other fonts when not defined.
      float  $size  Font size in points. The default value is the current size. If no size has been specified since the beginning of the document, the value taken is 12
      string  $fontfile  The font definition file. By default, the name is built from the family and style, in lower case with no spaces.
      mixed  $subset  if true embedd only a subset of the font (stores only the information related to the used characters); if false embedd full font; if 'default' uses the default value set using setFontSubsetting(). This option is valid only for TrueTypeUnicode fonts. If you want to enable users to change the document, set this parameter to false. If you subset the font, the person who receives your PDF would need to have your same font in order to make changes to your PDF. The file size of the PDF would also be smaller because you are embedding only part of a font.
      +

      +
      [ Top ]
      +
      +
      + +

      method setFontBuffer [line 22599]

      +
      +
      +
      + void setFontBuffer( +string +$font, array +$data) +
      +

      + + Set font buffer content.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.000 (2009-01-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $font  font key
      array  $data  font data
      +

      +
      [ Top ]
      +
      +
      + +

      method SetFontSize [line 4949]

      +
      +
      +
      + void SetFontSize( +float +$size, [boolean +$out = true]) +
      +

      + + Defines the size of the current font.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetFont()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      float  $size  The size (in points)
      boolean  $out  if true output the font size command, otherwise only set the font properties.
      +

      +
      [ Top ]
      +
      +
      + +

      method setFontSpacing [line 24225]

      +
      +
      +
      + void setFontSpacing( +[float +$spacing = 0]) +
      +

      + + Set the amount to increase or decrease the space between characters in a text.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.9.000 (2010-09-29)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      float  $spacing  amount to increase or decrease the space between characters in a text (0 = default spacing)
      +

      +
      [ Top ]
      +
      +
      + +

      method setFontStretching [line 24203]

      +
      +
      +
      + void setFontStretching( +[int +$perc = 100]) +
      +

      + + Set the percentage of character stretching.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.9.000 (2010-09-29)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $perc  percentage of stretching (100 = no stretching)
      +

      +
      [ Top ]
      +
      +
      + +

      method setFontSubBuffer [line 22625]

      +
      +
      +
      + void setFontSubBuffer( +string +$font, string +$key, array +$data) +
      +

      + + Set font buffer content.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.000 (2009-01-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      string  $font  font key
      string  $key  font sub-key
      array  $data  font data
      +

      +
      [ Top ]
      +
      +
      + +

      method setFontSubsetting [line 23873]

      +
      +
      +
      + void setFontSubsetting( +[boolean +$enable = true]) +
      +

      + + Enable or disable default option for font subsetting.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.3.002 (2010-06-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      boolean  $enable  if true enable font subsetting by default.
      +

      +
      [ Top ]
      +
      +
      + +

      method setFooter [line 4132]

      +
      +
      +
      + void setFooter( +) +
      +

      + + This method is used to render the page footer.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.0.012 (2008-07-24)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method setFooterFont [line 11335]

      +
      +
      +
      + void setFooterFont( +array +$font) +
      +

      + + Set footer font.



      +

      Tags:

      +
      + + + + + + + +
      since:  1.1
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $font  font
      +

      +
      [ Top ]
      +
      +
      + +

      method setFooterMargin [line 3945]

      +
      +
      +
      + void setFooterMargin( +[int +$fm = 10]) +
      +

      + + Set footer margin.

      (minimum distance between footer and bottom page margin)




      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $fm  distance in user units
      +

      +
      [ Top ]
      +
      +
      + +

      method setFormDefaultProp [line 14686]

      +
      +
      +
      + void setFormDefaultProp( +[array +$prop = array()]) +
      +

      + + Set default properties for form fields.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.8.000 (2009-09-06)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $prop  javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
      +

      +
      [ Top ]
      +
      +
      + +

      method setGraphicVars [line 22332]

      +
      +
      +
      + void setGraphicVars( +array +$gvars, [boolean +$extended = false]) +
      +

      + + Set graphic variables.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.2.010 (2008-11-14)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      array  $gvars  array of graphic variablesto restore
      boolean  $extended  if true restore extended graphic variables
      +

      +
      [ Top ]
      +
      +
      + +

      method setHeader [line 4095]

      +
      +
      +
      + void setHeader( +) +
      +

      + + This method is used to render the page header.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.0.012 (2008-07-24)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method setHeaderData [line 3896]

      +
      +
      +
      + void setHeaderData( +[string +$ln = ''], [string +$lw = 0], [string +$ht = ''], [string +$hs = '']) +
      +

      + + Set header data.



      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      string  $ln  header image logo
      string  $lw  header image logo width in mm
      string  $ht  string to print as title on document header
      string  $hs  string to print on document header
      +

      +
      [ Top ]
      +
      +
      + +

      method setHeaderFont [line 11315]

      +
      +
      +
      + void setHeaderFont( +array +$font) +
      +

      + + Set header font.



      +

      Tags:

      +
      + + + + + + + +
      since:  1.1
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $font  font
      +

      +
      [ Top ]
      +
      +
      + +

      method setHeaderMargin [line 3925]

      +
      +
      +
      + void setHeaderMargin( +[int +$hm = 10]) +
      +

      + + Set header margin.

      (minimum distance between header and top page margin)




      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $hm  distance in user units
      +

      +
      [ Top ]
      +
      +
      + +

      method setHtmlLinksStyle [line 21930]

      +
      +
      +
      + void setHtmlLinksStyle( +[array +$color = array(0,0,255)], [string +$fontstyle = 'U']) +
      +

      + + Set the color and font style for HTML links.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.4.003 (2008-12-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      array  $color  RGB array of colors
      string  $fontstyle  additional font styles to add
      +

      +
      [ Top ]
      +
      +
      + +

      method setHtmlVSpace [line 21899]

      +
      +
      +
      + void setHtmlVSpace( +array +$tagvs) +
      +

      + + Set the vertical spaces for HTML tags.

      The array must have the following structure (example): $tagvs = array('h1' => array(0 => array('h' => '', 'n' => 2), 1 => array('h' => 1.3, 'n' => 1))); The first array level contains the tag names, the second level contains 0 for opening tags or 1 for closing tags, the third level contains the vertical space unit (h) and the number spaces to add (n). If the h parameter is not specified, default values are used.




      +

      Tags:

      +
      + + + + + + + +
      since:  4.2.001 (2008-10-30)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $tagvs  array of tags and relative vertical spaces.
      +

      +
      [ Top ]
      +
      +
      + +

      method setImageBuffer [line 22540]

      +
      +
      +
      + void setImageBuffer( +string +$image, array +$data) +
      +

      + + Set image buffer content.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.000 (2008-12-31)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $image  image key
      array  $data  image data
      +

      +
      [ Top ]
      +
      +
      + +

      method setImageScale [line 3095]

      +
      +
      +
      + void setImageScale( +float +$scale) +
      +

      + + Set the adjusting factor to convert pixels to user units.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  1.5.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      float  $scale  adjusting factor to convert pixels to user units.
      +

      +
      [ Top ]
      +
      +
      + +

      method setImageSubBuffer [line 22563]

      +
      +
      +
      + void setImageSubBuffer( +string +$image, string +$key, array +$data) +
      +

      + + Set image buffer content for a specified sub-key.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.000 (2008-12-31)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      string  $image  image key
      string  $key  image sub-key
      array  $data  image data
      +

      +
      [ Top ]
      +
      +
      + +

      method setJPEGQuality [line 15677]

      +
      +
      +
      + void setJPEGQuality( +int +$quality) +
      +

      + + Set the default JPEG compression quality (1-100)



      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.000 (2008-03-27)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $quality  JPEG quality, integer between 1 and 100
      +

      +
      [ Top ]
      +
      +
      + +

      method SetKeywords [line 3569]

      +
      +
      +
      + void SetKeywords( +string +$keywords) +
      +

      + + Associates keywords with the document, generally in the form 'keyword1 keyword2 ...'.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetAuthor(), TCPDF::SetCreator(), TCPDF::SetSubject(), TCPDF::SetTitle()
      since:  1.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $keywords  The list of keywords.
      +

      +
      [ Top ]
      +
      +
      + +

      method setLanguageArray [line 11355]

      +
      +
      +
      + void setLanguageArray( +array +$language) +
      +

      + + Set language array.



      +

      Tags:

      +
      + + + + + + + +
      since:  1.1
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $language  
      +

      +
      [ Top ]
      +
      +
      + +

      method setLastH [line 3065]

      +
      +
      +
      + void setLastH( +float +$h) +
      +

      + + Set the last cell height.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  1.53.0.TC034
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      float  $h  cell height.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetLeftMargin [line 3217]

      +
      +
      +
      + void SetLeftMargin( +float +$margin) +
      +

      + + Defines the left margin. The method can be called before creating the first page. If the current abscissa gets out of page, it is brought back to the margin.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetTopMargin(), TCPDF::SetRightMargin(), TCPDF::SetAutoPageBreak(), TCPDF::SetMargins()
      since:  1.4
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      float  $margin  The margin.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetLineStyle [line 12634]

      +
      +
      +
      + string SetLineStyle( +array +$style, [boolean +$ret = false]) +
      +

      + + Set line style.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  the PDF command
      since:  2.1.000 (2008-01-08)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      array  $style  Line style. Array with keys among the following:
      • width (float): Width of the line in user units.
      • cap (string): Type of cap to put on the line. Possible values are: + butt, round, square. The difference between "square" and "butt" is that + "square" projects a flat end past the end of the line.
      • join (string): Type of join. Possible values are: miter, round, + bevel.
      • dash (mixed): Dash pattern. Is 0 (without dash) or string with + series of length values, which are the lengths of the on and off dashes. + For example: "2" represents 2 on, 2 off, 2 on, 2 off, ...; "2,1" is 2 on, + 1 off, 2 on, 1 off, ...
      • phase (integer): Modifier on the dash pattern which is used to shift + the point at which the pattern starts.
      • color (array): Draw color. Format: array(GREY) or array(R,G,B) or array(C,M,Y,K).
      boolean  $ret  if true do not send the command.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetLineWidth [line 12591]

      +
      +
      +
      + void SetLineWidth( +float +$width) +
      +

      + + Defines the line width. By default, the value equals 0.2 mm. The method can be called before the first page is created and the value is retained from page to page.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::Line(), TCPDF::Rect(), TCPDF::Cell(), TCPDF::MultiCell()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      float  $width  The width.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetLink [line 5058]

      +
      +
      +
      + void SetLink( +int +$link, [float +$y = 0], [int +$page = -1]) +
      +

      + + Defines the page and position a link points to.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::AddLink()
      since:  1.5
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $link  The link identifier returned by AddLink()
      float  $y  Ordinate of target position; -1 indicates the current position. The default value is 0 (top of page)
      int  $page  Number of target page; -1 indicates the current page. This is the default value
      +

      +
      [ Top ]
      +
      +
      + +

      method setListIndentWidth [line 21909]

      +
      +
      +
      + void setListIndentWidth( +float +$width) +
      +

      + + Set custom width for list indentation.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.2.007 (2008-11-12)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      float  $width  width of the indentation. Use negative value to disable it.
      +

      +
      [ Top ]
      +
      +
      + +

      method setLIsymbol [line 21815]

      +
      +
      +
      + void setLIsymbol( +[string +$symbol = '!']) +
      +

      + + Set the default bullet to be used as LI bullet symbol



      +

      Tags:

      +
      + + + + + + + +
      since:  4.0.028 (2008-09-26)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $symbol  character or string to be used (legal values are: '' = automatic, '!' = auto bullet, '#' = auto numbering, 'disc', 'disc', 'circle', 'square', '1', 'decimal', 'decimal-leading-zero', 'i', 'lower-roman', 'I', 'upper-roman', 'a', 'lower-alpha', 'lower-latin', 'A', 'upper-alpha', 'upper-latin', 'lower-greek', 'img|type|width|height|image.ext')
      +

      +
      [ Top ]
      +
      +
      + +

      method SetMargins [line 3195]

      +
      +
      +
      + void SetMargins( +float +$left, float +$top, [float +$right = -1], [boolean +$keepmargins = false]) +
      +

      + + Defines the left, top and right margins.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetLeftMargin(), TCPDF::SetTopMargin(), TCPDF::SetRightMargin(), TCPDF::SetAutoPageBreak()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      float  $left  Left margin.
      float  $top  Top margin.
      float  $right  Right margin. Default value is the left one.
      boolean  $keepmargins  if true overwrites the default page margins
      +

      +
      [ Top ]
      +
      +
      + +

      method setOpenCell [line 21919]

      +
      +
      +
      + void setOpenCell( +boolean +$isopen) +
      +

      + + Set the top/bottom cell sides to be open or closed when the cell cross the page.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.2.010 (2008-11-14)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      boolean  $isopen  if true keeps the top/bottom border open for the cell sides that cross the page.
      +

      +
      [ Top ]
      +
      +
      + +

      method setPage [line 3661]

      +
      +
      +
      + void setPage( +int +$pnum, [boolean +$resetmargins = false]) +
      +

      + + Move pointer at the specified document page and update page dimensions.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::getPage(), lastpage(), TCPDF::getNumPages()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      int  $pnum  page number (1 ... numpages)
      boolean  $resetmargins  if true reset left, right, top margins and Y position.
      +

      +
      [ Top ]
      +
      +
      + +

      method setPageBoxes [line 2817]

      +
      +
      +
      + void setPageBoxes( +int +$page, string +$type, float +$llx, float +$lly, float +$urx, float +$ury, [boolean +$points = false]) +
      +

      + + Set page boundaries.



      +

      Tags:

      +
      + + + + + + + +
      since:  5.0.010 (2010-05-17)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      int  $page  page number
      string  $type  valid values are:
      • 'MediaBox' : the boundaries of the physical medium on which the page shall be displayed or printed;
      • 'CropBox' : the visible region of default user space;
      • 'BleedBox' : the region to which the contents of the page shall be clipped when output in a production environment;
      • 'TrimBox' : the intended dimensions of the finished page after trimming;
      • 'ArtBox' : the page's meaningful content (including potential white space).
      float  $llx  lower-left x coordinate in user units
      float  $lly  lower-left y coordinate in user units
      float  $urx  upper-right x coordinate in user units
      float  $ury  upper-right y coordinate in user units
      boolean  $points  if true uses user units as unit of measure, otherwise uses PDF points
      +

      +
      [ Top ]
      +
      +
      + +

      method setPageBuffer [line 22497]

      +
      +
      +
      + void setPageBuffer( +int +$page, string +$data, [boolean +$append = false]) +
      +

      + + Set page buffer content.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.000 (2008-12-31)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $page  page number
      string  $data  page data
      boolean  $append  if true append data, false replace.
      +

      +
      [ Top ]
      +
      +
      + +

      method setPageFormat [line 2699]

      +
      +
      +
      + void setPageFormat( +mixed +$format, [string +$orientation = 'P']) +
      +

      + + Change the format of the current page



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::getPageSizeFromFormat()
      since:  3.0.015 (2008-06-06)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      mixed  $format  The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() documentation or an array of two numners (width, height) or an array containing the following measures and options:
      • ['format'] = page format name (one of the above);
      • ['Rotate'] : The number of degrees by which the page shall be rotated clockwise when displayed or printed. The value shall be a multiple of 90.
      • ['PZ'] : The page's preferred zoom (magnification) factor.
      • ['MediaBox'] : the boundaries of the physical medium on which the page shall be displayed or printed:
      • ['MediaBox']['llx'] : lower-left x coordinate in points
      • ['MediaBox']['lly'] : lower-left y coordinate in points
      • ['MediaBox']['urx'] : upper-right x coordinate in points
      • ['MediaBox']['ury'] : upper-right y coordinate in points
      • ['CropBox'] : the visible region of default user space:
      • ['CropBox']['llx'] : lower-left x coordinate in points
      • ['CropBox']['lly'] : lower-left y coordinate in points
      • ['CropBox']['urx'] : upper-right x coordinate in points
      • ['CropBox']['ury'] : upper-right y coordinate in points
      • ['BleedBox'] : the region to which the contents of the page shall be clipped when output in a production environment:
      • ['BleedBox']['llx'] : lower-left x coordinate in points
      • ['BleedBox']['lly'] : lower-left y coordinate in points
      • ['BleedBox']['urx'] : upper-right x coordinate in points
      • ['BleedBox']['ury'] : upper-right y coordinate in points
      • ['TrimBox'] : the intended dimensions of the finished page after trimming:
      • ['TrimBox']['llx'] : lower-left x coordinate in points
      • ['TrimBox']['lly'] : lower-left y coordinate in points
      • ['TrimBox']['urx'] : upper-right x coordinate in points
      • ['TrimBox']['ury'] : upper-right y coordinate in points
      • ['ArtBox'] : the extent of the page's meaningful content:
      • ['ArtBox']['llx'] : lower-left x coordinate in points
      • ['ArtBox']['lly'] : lower-left y coordinate in points
      • ['ArtBox']['urx'] : upper-right x coordinate in points
      • ['ArtBox']['ury'] : upper-right y coordinate in points
      • ['BoxColorInfo'] :specify the colours and other visual characteristics that should be used in displaying guidelines on the screen for each of the possible page boundaries other than the MediaBox:
      • ['BoxColorInfo'][BOXTYPE]['C'] : an array of three numbers in the range 0-255, representing the components in the DeviceRGB colour space.
      • ['BoxColorInfo'][BOXTYPE]['W'] : the guideline width in default user units
      • ['BoxColorInfo'][BOXTYPE]['S'] : the guideline style: S = Solid; D = Dashed
      • ['BoxColorInfo'][BOXTYPE]['D'] : dash array defining a pattern of dashes and gaps to be used in drawing dashed guidelines
      • ['trans'] : the style and duration of the visual transition to use when moving from another page to the given page during a presentation
      • ['trans']['Dur'] : The page's display duration (also called its advance timing): the maximum length of time, in seconds, that the page shall be displayed during presentations before the viewer application shall automatically advance to the next page.
      • ['trans']['S'] : transition style : Split, Blinds, Box, Wipe, Dissolve, Glitter, R, Fly, Push, Cover, Uncover, Fade
      • ['trans']['D'] : The duration of the transition effect, in seconds.
      • ['trans']['Dm'] : (Split and Blinds transition styles only) The dimension in which the specified transition effect shall occur: H = Horizontal, V = Vertical. Default value: H.
      • ['trans']['M'] : (Split, Box and Fly transition styles only) The direction of motion for the specified transition effect: I = Inward from the edges of the page, O = Outward from the center of the pageDefault value: I.
      • ['trans']['Di'] : (Wipe, Glitter, Fly, Cover, Uncover and Push transition styles only) The direction in which the specified transition effect shall moves, expressed in degrees counterclockwise starting from a left-to-right direction. If the value is a number, it shall be one of: 0 = Left to right, 90 = Bottom to top (Wipe only), 180 = Right to left (Wipe only), 270 = Top to bottom, 315 = Top-left to bottom-right (Glitter only). If the value is a name, it shall be None, which is relevant only for the Fly transition when the value of SS is not 1.0. Default value: 0.
      • ['trans']['SS'] : (Fly transition style only) The starting or ending scale at which the changes shall be drawn. If M specifies an inward transition, the scale of the changes drawn shall progress from SS to 1.0 over the course of the transition. If M specifies an outward transition, the scale of the changes drawn shall progress from 1.0 to SS over the course of the transition. Default: 1.0.
      • ['trans']['B'] : (Fly transition style only) If true, the area that shall be flown in is rectangular and opaque. Default: false.
      string  $orientation  page orientation. Possible values are (case insensitive):
      • P or Portrait (default)
      • L or Landscape
      • '' (empty string) for automatic orientation
      +

      +
      [ Top ]
      +
      +
      + +

      method setPageMark [line 3864]

      +
      +
      +
      + void setPageMark( +) +
      +

      + + Set start-writing mark on current page stream used to put borders and fills.

      Borders and fills are always created after content and inserted on the position marked by this method. This function must be called after calling Image() function for a background image. Background images must be always inserted before calling Multicell() or WriteHTMLCell() or WriteHTML() functions.




      +

      Tags:

      +
      + + + + + + + +
      since:  4.0.016 (2008-07-30)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method setPageOrientation [line 2866]

      +
      +
      +
      + void setPageOrientation( +string +$orientation, [boolean +$autopagebreak = ''], [float +$bottommargin = '']) +
      +

      + + Set page orientation.



      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.015 (2008-06-06)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      string  $orientation  page orientation. Possible values are (case insensitive):
      • P or Portrait (default)
      • L or Landscape
      • '' (empty string) for automatic orientation
      boolean  $autopagebreak  Boolean indicating if auto-page-break mode should be on or off.
      float  $bottommargin  bottom margin of the page.
      +

      +
      [ Top ]
      +
      +
      + +

      method setPageRegions [line 24263]

      +
      +
      +
      + void setPageRegions( +[array +$regions = array()]) +
      +

      + + Set no-write regions on page.

      A no-write region is a portion of the page with a rectangular or trapezium shape that will not be covered when writing text or html code. A region is always aligned on the left or right side of the page ad is defined using a vertical segment. You can set multiple regions for the same page.




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      author:  Nicola Asuni
      see:  TCPDF::addPageRegion(), TCPDF::getPageRegions()
      since:  5.9.003 (2010-10-13)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $regions  array of no-write regions. For each region you can define an array as follow: ('page' => page number or empy for current page, 'xt' => X top, 'yt' => Y top, 'xb' => X bottom, 'yb' => Y bottom, 'side' => page side 'L' = left or 'R' = right). Omit this parameter to remove all regions.
      +

      +
      [ Top ]
      +
      +
      + +

      method setPageUnit [line 1939]

      +
      +
      +
      + void setPageUnit( +string +$unit) +
      +

      + + Set the units of measure for the document.



      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.015 (2008-06-06)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $unit  User measure unit. Possible values are:
      • pt: point
      • mm: millimeter (default)
      • cm: centimeter
      • in: inch

      A point equals 1/72 of inch, that is to say about 0.35 mm (an inch being 2.54 cm). This is a very common unit in typography; font sizes are expressed in that unit.
      +

      +
      [ Top ]
      +
      +
      + +

      method setPDFVersion [line 15719]

      +
      +
      +
      + void setPDFVersion( +[ +$version = '1.7']) +
      +

      + + Set the PDF version (check PDF reference for valid values).

      Default value is 1.t




      +

      Tags:

      +
      + + + + + + + +
      since:  3.1.000 (2008-06-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
        $version  
      +

      +
      [ Top ]
      +
      +
      + +

      method setPrintFooter [line 3972]

      +
      +
      +
      + void setPrintFooter( +[ +$val = true], boolean +$value) +
      +

      + + Set a flag to print page footer.



      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      boolean  $value  set to true to print the page footer (default), false otherwise.
        $val  
      +

      +
      [ Top ]
      +
      +
      + +

      method setPrintHeader [line 3963]

      +
      +
      +
      + void setPrintHeader( +[boolean +$val = true]) +
      +

      + + Set a flag to print page header.



      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      boolean  $val  set to true to print the page header (default), false otherwise.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetProtection [line 12111]

      +
      +
      +
      + void SetProtection( +[Array +$permissions = array('print', 'modify', 'copy', 'annot-forms', 'fill-forms', 'extract', 'assemble', 'print-high')], [String +$user_pass = ''], [String +$owner_pass = null], [int +$mode = 0], [String +$pubkeys = null]) +
      +

      + + Set document protection Remark: the protection against modification is for people who have the full Acrobat product.

      If you don't set any password, the document will open as usual. If you set a user password, the PDF viewer will ask for it before displaying the document. The master password, if different from the user one, can be used to get full access. Note: protecting a document requires to encrypt it, which increases the processing time a lot. This can cause a PHP time-out in some cases, especially if the document contains images or fonts.




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  2.0.000 (2008-01-02)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Array  $permissions  the set of permissions (specify the ones you want to block):
      • print : Print the document;
      • modify : Modify the contents of the document by operations other than those controlled by 'fill-forms', 'extract' and 'assemble';
      • copy : Copy or otherwise extract text and graphics from the document;
      • annot-forms : Add or modify text annotations, fill in interactive form fields, and, if 'modify' is also set, create or modify interactive form fields (including signature fields);
      • fill-forms : Fill in existing interactive form fields (including signature fields), even if 'annot-forms' is not specified;
      • extract : Extract text and graphics (in support of accessibility to users with disabilities or for other purposes);
      • assemble : Assemble the document (insert, rotate, or delete pages and create bookmarks or thumbnail images), even if 'modify' is not set;
      • print-high : Print the document to a representation from which a faithful digital copy of the PDF content could be generated. When this is not set, printing is limited to a low-level representation of the appearance, possibly of degraded quality.
      • owner : (inverted logic - only for public-key) when set permits change of encryption and enables all other permissions.
      String  $user_pass  user password. Empty by default.
      String  $owner_pass  owner password. If not specified, a random value is used.
      int  $mode  encryption strength: 0 = RC4 40 bit; 1 = RC4 128 bit; 2 = AES 128 bit; 3 = AES 256 bit.
      String  $pubkeys  array of recipients containing public-key certificates ('c') and permissions ('p'). For example: array(array('c' => 'file://../tcpdf.crt', 'p' => array('print')))
      +

      +
      [ Top ]
      +
      +
      + +

      method setRasterizeVectorImages [line 23770]

      +
      +
      +
      + void setRasterizeVectorImages( +boolean +$mode) +
      +

      + + Enable/disable rasterization of vector images using ImageMagick library.



      +

      Tags:

      +
      + + + + + + + +
      since:  5.0.000 (2010-04-27)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      boolean  $mode  if true enable rasterization, false otherwise.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetRightMargin [line 3247]

      +
      +
      +
      + void SetRightMargin( +float +$margin) +
      +

      + + Defines the right margin. The method can be called before creating the first page.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetLeftMargin(), TCPDF::SetTopMargin(), TCPDF::SetAutoPageBreak(), TCPDF::SetMargins()
      since:  1.5
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      float  $margin  The margin.
      +

      +
      [ Top ]
      +
      +
      + +

      method setRTL [line 2996]

      +
      +
      +
      + void setRTL( +Boolean +$enable, [Boolean +$resetx = true]) +
      +

      + + Enable or disable Right-To-Left language mode



      +

      Tags:

      +
      + + + + + + + +
      since:  2.0.000 (2008-01-03)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      Boolean  $enable  if true enable Right-To-Left language mode.
      Boolean  $resetx  if true reset the X position on direction change.
      +

      +
      [ Top ]
      +
      +
      + +

      method setSignature [line 15356]

      +
      +
      +
      + void setSignature( +[mixed +$signing_cert = ''], [mixed +$private_key = ''], [string +$private_key_password = ''], [string +$extracerts = ''], [int +$cert_type = 2], [array +$info = array()]) +
      +

      + + Enable document signature (requires the OpenSSL Library).

      The digital signature improve document authenticity and integrity and allows o enable extra features on Acrobat Reader. To create self-signed signature: openssl req -x509 -nodes -days 365000 -newkey rsa:1024 -keyout tcpdf.crt -out tcpdf.crt To export crt to p12: openssl pkcs12 -export -in tcpdf.crt -out tcpdf.p12 To convert pfx certificate to pem: openssl pkcs12 -in tcpdf.pfx -out tcpdf.crt -nodes




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.6.005 (2009-04-24)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      mixed  $signing_cert  signing certificate (string or filename prefixed with 'file://')
      mixed  $private_key  private key (string or filename prefixed with 'file://')
      string  $private_key_password  password
      string  $extracerts  specifies the name of a file containing a bunch of extra certificates to include in the signature which can for example be used to help the recipient to verify the certificate that you used.
      int  $cert_type  The access permissions granted for this document. Valid values shall be: 1 = No changes to the document shall be permitted; any change to the document shall invalidate the signature; 2 = Permitted changes shall be filling in forms, instantiating page templates, and signing; other changes shall invalidate the signature; 3 = Permitted changes shall be the same as for 2, as well as annotation creation, deletion, and modification; other changes shall invalidate the signature.
      array  $info  array of option information: Name, Location, Reason, ContactInfo.
      +

      +
      [ Top ]
      +
      +
      + +

      method setSignatureAppearance [line 15392]

      +
      +
      +
      + void setSignatureAppearance( +[float +$x = 0], [float +$y = 0], [float +$w = 0], [float +$h = 0], [int +$page = -1]) +
      +

      + + Set the digital signature appearance (a cliccable rectangle area to get signature properties)



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.3.011 (2010-06-17)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x  Abscissa of the upper-left corner.
      float  $y  Ordinate of the upper-left corner.
      float  $w  Width of the signature area.
      float  $h  Height of the signature area.
      int  $page  option page number (if < 0 the current page is used).
      +

      +
      [ Top ]
      +
      +
      + +

      method setSpacesRE [line 2971]

      +
      +
      +
      + void setSpacesRE( +[string +$re = '/[^\S\xa0]/']) +
      +

      + + Set regular expression to detect withespaces or word separators.

      The pattern delimiter must be the forward-slash character '/'. Some example patterns are:

       Non-Unicode or missing PCRE unicode support: '/[^\S\xa0]/'
      + Unicode and PCRE unicode support: '/[^\S\P{Z}\xa0]/u'
      + Unicode and PCRE unicode support in Chinese mode: '/[^\S\P{Z}\P{Lo}\xa0]/u'
      + if PCRE unicode support is turned ON (\P is the negate class of \p):
      + \p{Z} or \p{Separator}: any kind of Unicode whitespace or invisible separator.
      + \p{Lo} or \p{Other_Letter}: a Unicode letter or ideograph that does not have lowercase and uppercase variants.
      + \p{Lo} is needed for Chinese characters because are packed next to each other without spaces in between.




      +

      Tags:

      +
      + + + + + + + +
      since:  4.6.016 (2009-06-15)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $re  regular expression (leave empty for default).
      +

      +
      [ Top ]
      +
      +
      + +

      method SetSubject [line 3545]

      +
      +
      +
      + void SetSubject( +string +$subject) +
      +

      + + Defines the subject of the document.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetAuthor(), TCPDF::SetCreator(), TCPDF::SetKeywords(), TCPDF::SetTitle()
      since:  1.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $subject  The subject.
      +

      +
      [ Top ]
      +
      +
      + +

      method setSVGStyles [line 24860]

      +
      +
      +
      + object style setSVGStyles( +array +$svgstyle, array +$prevsvgstyle, [int +$x = 0], [int +$y = 0], [int +$w = 1], [int +$h = 1], [string +$clip_function = ''], [array +$clip_params = array()]) +
      +

      + + Apply the requested SVG styles (*** TO BE COMPLETED ***)



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.0.000 (2010-05-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      array  $svgstyle  array of SVG styles to apply
      array  $prevsvgstyle  array of previous SVG style
      int  $x  X origin of the bounding box
      int  $y  Y origin of the bounding box
      int  $w  width of the bounding box
      int  $h  height of the bounding box
      string  $clip_function  clip function
      array  $clip_params  array of parameters for clipping function
      +

      +
      [ Top ]
      +
      +
      + +

      method setTableHeader [line 4183]

      +
      +
      +
      + void setTableHeader( +) +
      +

      + + This method is used to render the table header on new page (if any).



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.030 (2009-03-25)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method setTempRTL [line 3022]

      +
      +
      +
      + void setTempRTL( +mixed +$mode) +
      +

      + + Force temporary RTL language direction



      +

      Tags:

      +
      + + + + + + + +
      since:  2.1.000 (2008-01-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      mixed  $mode  can be false, 'L' for LTR or 'R' for RTL
      +

      +
      [ Top ]
      +
      +
      + +

      method SetTextColor [line 4485]

      +
      +
      +
      + void SetTextColor( +[int +$col1 = 0], [int +$col2 = -1], [int +$col3 = -1], [int +$col4 = -1], [boolean +$ret = false], [string +$name = '']) +
      +

      + + Defines the color used for text. It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.



      +

      Tags:

      + +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      int  $col1  GRAY level for single color, or Red color for RGB (0-255), or CYAN color for CMYK (0-100).
      int  $col2  GREEN color for RGB (0-255), or MAGENTA color for CMYK (0-100).
      int  $col3  BLUE color for RGB (0-255), or YELLOW color for CMYK (0-100).
      int  $col4  KEY (BLACK) color for CMYK (0-100).
      boolean  $ret  if true do not send the command.
      string  $name  spot color name (if any)
      +

      +
      [ Top ]
      +
      +
      + +

      method SetTextColorArray [line 4459]

      +
      +
      +
      + void SetTextColorArray( +array +$color, [boolean +$ret = false]) +
      +

      + + Defines the color used for text. It can be expressed in RGB components or gray scale.

      The method can be called before the first page is created and the value is retained from page to page.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetFillColor()
      since:  3.1.000 (2008-6-11)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      array  $color  array of colors
      boolean  $ret  if true do not send the PDF command.
      +

      +
      [ Top ]
      +
      +
      + +

      method setTextRenderingMode [line 23552]

      +
      +
      +
      + void setTextRenderingMode( +[int +$stroke = 0], [boolean +$fill = true], [boolean +$clip = false]) +
      +

      + + Set Text rendering mode.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.008 (2009-04-02)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $stroke  outline size in user units (0 = disable).
      boolean  $fill  if true fills the text (default).
      boolean  $clip  if true activate clipping mode
      +

      +
      [ Top ]
      +
      +
      + +

      method SetTextSpotColor [line 4529]

      +
      +
      +
      + void SetTextSpotColor( +string +$name, [int +$tint = 100]) +
      +

      + + Defines the spot color used for text.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::AddSpotColor(), TCPDF::SetDrawSpotColor(), TCPDF::SetFillSpotColor()
      since:  4.0.024 (2008-09-12)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $name  name of the spot color
      int  $tint  the intensity of the color (from 0 to 100 ; 100 = full intensity by default).
      +

      +
      [ Top ]
      +
      +
      + +

      method SetTitle [line 3533]

      +
      +
      +
      + void SetTitle( +string +$title) +
      +

      + + Defines the title of the document.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetAuthor(), TCPDF::SetCreator(), TCPDF::SetKeywords(), TCPDF::SetSubject()
      since:  1.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $title  The title.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetTopMargin [line 3232]

      +
      +
      +
      + void SetTopMargin( +float +$margin) +
      +

      + + Defines the top margin. The method can be called before creating the first page.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetLeftMargin(), TCPDF::SetRightMargin(), TCPDF::SetAutoPageBreak(), TCPDF::SetMargins()
      since:  1.5
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      float  $margin  The margin.
      +

      +
      [ Top ]
      +
      +
      + +

      method setUserRights [line 15320]

      +
      +
      +
      + void setUserRights( +[boolean +$enable = true], [string +$document = '/FullSave'], [string +$annots = '/Create/Delete/Modify/Copy/Import/Export'], [string +$form = '/Add/Delete/FillIn/Import/Export/SubmitStandalone/SpawnTemplate'], [string +$signature = '/Modify'], [string +$ef = '/Create/Delete/Modify/Import'], [string +$formex = '']) +
      +

      + + Set User's Rights for PDF Reader WARNING: This is experimental and currently do not work.

      Check the PDF Reference 8.7.1 Transform Methods, Table 8.105 Entries in the UR transform parameters dictionary




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  2.9.000 (2008-03-26)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      boolean  $enable  if true enable user's rights on PDF reader
      string  $document  Names specifying additional document-wide usage rights for the document. The only defined value is "/FullSave", which permits a user to save the document along with modified form and/or annotation data.
      string  $annots  Names specifying additional annotation-related usage rights for the document. Valid names in PDF 1.5 and later are /Create/Delete/Modify/Copy/Import/Export, which permit the user to perform the named operation on annotations.
      string  $form  Names specifying additional form-field-related usage rights for the document. Valid names are: /Add/Delete/FillIn/Import/Export/SubmitStandalone/SpawnTemplate
      string  $signature  Names specifying additional signature-related usage rights for the document. The only defined value is /Modify, which permits a user to apply a digital signature to an existing signature form field or clear a signed signature form field.
      string  $ef  Names specifying additional usage rights for named embedded files in the document. Valid names are /Create/Delete/Modify/Import, which permit the user to perform the named operation on named embedded files
      string  $formex  Names specifying additional form-field-related usage rights. The only valid name is BarcodePlaintext, which permits text form field data to be encoded as a plaintext two-dimensional barcode.
      +

      +
      [ Top ]
      +
      +
      + +

      method setViewerPreferences [line 15732]

      +
      +
      +
      + void setViewerPreferences( +array +$preferences) +
      +

      + + Set the viewer preferences dictionary controlling the way the document is to be presented on the screen or in print.

      (see Section 8.1 of PDF reference, "Viewer Preferences").

      • HideToolbar boolean (Optional) A flag specifying whether to hide the viewer application's tool bars when the document is active. Default value: false.
      • HideMenubar boolean (Optional) A flag specifying whether to hide the viewer application's menu bar when the document is active. Default value: false.
      • HideWindowUI boolean (Optional) A flag specifying whether to hide user interface elements in the document's window (such as scroll bars and navigation controls), leaving only the document's contents displayed. Default value: false.
      • FitWindow boolean (Optional) A flag specifying whether to resize the document's window to fit the size of the first displayed page. Default value: false.
      • CenterWindow boolean (Optional) A flag specifying whether to position the document's window in the center of the screen. Default value: false.
      • DisplayDocTitle boolean (Optional; PDF 1.4) A flag specifying whether the window's title bar should display the document title taken from the Title entry of the document information dictionary (see Section 10.2.1, "Document Information Dictionary"). If false, the title bar should instead display the name of the PDF file containing the document. Default value: false.
      • NonFullScreenPageMode name (Optional) The document's page mode, specifying how to display the document on exiting full-screen mode:
        • UseNone Neither document outline nor thumbnail images visible
        • UseOutlines Document outline visible
        • UseThumbs Thumbnail images visible
        • UseOC Optional content group panel visible
        This entry is meaningful only if the value of the PageMode entry in the catalog dictionary (see Section 3.6.1, "Document Catalog") is FullScreen; it is ignored otherwise. Default value: UseNone.
      • ViewArea name (Optional; PDF 1.4) The name of the page boundary representing the area of a page to be displayed when viewing the document on the screen. Valid values are (see Section 10.10.1, "Page Boundaries").:
        • MediaBox
        • CropBox (default)
        • BleedBox
        • TrimBox
        • ArtBox
      • ViewClip name (Optional; PDF 1.4) The name of the page boundary to which the contents of a page are to be clipped when viewing the document on the screen. Valid values are (see Section 10.10.1, "Page Boundaries").:
        • MediaBox
        • CropBox (default)
        • BleedBox
        • TrimBox
        • ArtBox
      • PrintArea name (Optional; PDF 1.4) The name of the page boundary representing the area of a page to be rendered when printing the document. Valid values are (see Section 10.10.1, "Page Boundaries").:
        • MediaBox
        • CropBox (default)
        • BleedBox
        • TrimBox
        • ArtBox
      • PrintClip name (Optional; PDF 1.4) The name of the page boundary to which the contents of a page are to be clipped when printing the document. Valid values are (see Section 10.10.1, "Page Boundaries").:
        • MediaBox
        • CropBox (default)
        • BleedBox
        • TrimBox
        • ArtBox
      • PrintScaling name (Optional; PDF 1.6) The page scaling option to be selected when a print dialog is displayed for this document. Valid values are:
        • None, which indicates that the print dialog should reflect no page scaling
        • AppDefault (default), which indicates that applications should use the current print scaling
      • Duplex name (Optional; PDF 1.7) The paper handling option to use when printing the file from the print dialog. The following values are valid:
        • Simplex - Print single-sided
        • DuplexFlipShortEdge - Duplex and flip on the short edge of the sheet
        • DuplexFlipLongEdge - Duplex and flip on the long edge of the sheet
        Default value: none
      • PickTrayByPDFSize boolean (Optional; PDF 1.7) A flag specifying whether the PDF page size is used to select the input paper tray. This setting influences only the preset values used to populate the print dialog presented by a PDF viewer application. If PickTrayByPDFSize is true, the check box in the print dialog associated with input paper tray is checked. Note: This setting has no effect on Mac OS systems, which do not provide the ability to pick the input tray by size.
      • PrintPageRange array (Optional; PDF 1.7) The page numbers used to initialize the print dialog box when the file is printed. The first page of the PDF file is denoted by 1. Each pair consists of the first and last pages in the sub-range. An odd number of integers causes this entry to be ignored. Negative numbers cause the entire array to be ignored. Default value: as defined by PDF viewer application
      • NumCopies integer (Optional; PDF 1.7) The number of copies to be printed when the print dialog is opened for this file. Supported values are the integers 2 through 5. Values outside this range are ignored. Default value: as defined by PDF viewer application, but typically 1




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  3.1.000 (2008-06-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $preferences  array of options.
      +

      +
      [ Top ]
      +
      +
      + +

      method setVisibility [line 15577]

      +
      +
      +
      + void setVisibility( +string +$v) +
      +

      + + Set the visibility of the successive elements.

      This can be useful, for instance, to put a background image or color that will show on screen but won't print.




      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.000 (2008-03-27)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $v  visibility mode. Legal values are: all, print, screen.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetX [line 7841]

      +
      +
      +
      + void SetX( +float +$x, [boolean +$rtloff = false]) +
      +

      + + Defines the abscissa of the current position.

      If the passed value is negative, it is relative to the right of the page (or left if language is RTL).




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::GetX(), TCPDF::GetY(), TCPDF::SetY(), TCPDF::SetXY()
      since:  1.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      float  $x  The value of the abscissa.
      boolean  $rtloff  if true always uses the page top-left corner as origin of axis.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetXY [line 7905]

      +
      +
      +
      + void SetXY( +float +$x, float +$y, [boolean +$rtloff = false]) +
      +

      + + Defines the abscissa and ordinate of the current position.

      If the passed values are negative, they are relative respectively to the right and bottom of the page.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::SetX(), TCPDF::SetY()
      since:  1.2
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      float  $x  The value of the abscissa.
      float  $y  The value of the ordinate.
      boolean  $rtloff  if true always uses the page top-left corner as origin of axis.
      +

      +
      [ Top ]
      +
      +
      + +

      method SetY [line 7873]

      +
      +
      +
      + void SetY( +float +$y, [bool +$resetx = true], [boolean +$rtloff = false]) +
      +

      + + Moves the current abscissa back to the left margin and sets the ordinate.

      If the passed value is negative, it is relative to the bottom of the page.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::GetX(), TCPDF::GetY(), TCPDF::SetY(), TCPDF::SetXY()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      float  $y  The value of the ordinate.
      bool  $resetx  if true (default) reset the X position.
      boolean  $rtloff  if true always uses the page top-left corner as origin of axis.
      +

      +
      [ Top ]
      +
      +
      + +

      method set_mqr [line 7431]

      +
      +
      +
      + void set_mqr( +boolean +$mqr) +
      +

      + + Sets the current active configuration setting of magic_quotes_runtime (if the set_magic_quotes_runtime function exist)



      +

      Tags:

      +
      + + + + + + + +
      since:  4.6.025 (2009-08-17)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      boolean  $mqr  FALSE for off, TRUE for on.
      +

      +
      [ Top ]
      +
      +
      + +

      method Skew [line 12531]

      +
      +
      +
      + void Skew( +float +$angle_x, float +$angle_y, [int +$x = ''], [int +$y = '']) +
      +

      + + Skew.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      float  $angle_x  angle in degrees between -90 (skew to the left) and 90 (skew to the right)
      float  $angle_y  angle in degrees between -90 (skew to the bottom) and 90 (skew to the top)
      int  $x  abscissa of the skewing center. default is current x position
      int  $y  ordinate of the skewing center. default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method SkewX [line 12504]

      +
      +
      +
      + void SkewX( +float +$angle_x, [int +$x = ''], [int +$y = '']) +
      +

      + + Skew horizontally.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      float  $angle_x  angle in degrees between -90 (skew to the left) and 90 (skew to the right)
      int  $x  abscissa of the skewing center. default is current x position
      int  $y  ordinate of the skewing center. default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method SkewY [line 12517]

      +
      +
      +
      + void SkewY( +float +$angle_y, [int +$x = ''], [int +$y = '']) +
      +

      + + Skew vertically.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      float  $angle_y  angle in degrees between -90 (skew to the bottom) and 90 (skew to the top)
      int  $x  abscissa of the skewing center. default is current x position
      int  $y  ordinate of the skewing center. default is current y position
      +

      +
      [ Top ]
      +
      +
      + +

      method StarPolygon [line 13274]

      +
      +
      +
      + void StarPolygon( +float +$x0, float +$y0, float +$r, integer +$nv, integer +$ng, [ +$angle = 0], [ +$draw_circle = false], [string +$style = ''], [array +$line_style = array()], [array +$fill_color = array()], [string +$circle_style = ''], [array +$circle_outLine_style = array()], [array +$circle_fill_color = array()], float +$angle:, boolean +$draw_circle:) +
      +

      + + Draws a star polygon



      +

      Tags:

      +
      + + + + + + + +
      since:  2.1.000 (2008-01-08)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x0  Abscissa of center point.
      float  $y0  Ordinate of center point.
      float  $r  Radius of inscribed circle.
      integer  $nv  Number of vertices.
      integer  $ng  Number of gap (if ($ng % $nv = 1) then is a regular polygon).
      float  $angle:  Angle oriented (anti-clockwise). Default value: 0.
      boolean  $draw_circle:  Draw inscribed circle or not. Default value is false.
      string  $style  Style of rendering. See the getPathPaintOperator() function for more information.
      array  $line_style  Line style of polygon sides. Array with keys among the following:
      • all: Line style of all sides. Array like for + SetLineStyle.
      • 0 to (n - 1): Line style of each side. Array like for SetLineStyle.
      If a key is not present or is null, not draws the side. Default value is default line style (empty array).
      array  $fill_color  Fill color. Format: array(red, green, blue). Default value: default color (empty array).
      string  $circle_style  Style of rendering of inscribed circle (if draws). Possible values are:
      • D or empty string: Draw (default).
      • F: Fill.
      • DF or FD: Draw and fill.
      • CNZ: Clipping mode (using the even-odd rule to determine which regions lie inside the clipping path).
      • CEO: Clipping mode (using the nonzero winding number rule to determine which regions lie inside the clipping path).
      array  $circle_outLine_style  Line style of inscribed circle (if draws). Array like for SetLineStyle. Default value: default line style (empty array).
      array  $circle_fill_color  Fill color of inscribed circle (if draws). Format: array(red, green, blue). Default value: default color (empty array).
        $angle  
        $draw_circle  
      +

      +
      [ Top ]
      +
      +
      + +

      method startPage [line 3818]

      +
      +
      +
      + void startPage( +[string +$orientation = ''], [mixed +$format = ''], [ +$tocpage = false]) +
      +

      + + Starts a new page to the document. The page must be closed using the endPage() function.

      The origin of the coordinate system is at the top-left corner and increasing ordinates go downwards.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::AddPage(), TCPDF::endPage(), TCPDF::addTOCPage(), TCPDF::endTOCPage(), TCPDF::getPageSizeFromFormat(), TCPDF::setPageFormat()
      since:  4.2.010 (2008-11-14)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      string  $orientation  page orientation. Possible values are (case insensitive):
      • P or PORTRAIT (default)
      • L or LANDSCAPE
      mixed  $format  The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
        $tocpage  
      +

      +
      [ Top ]
      +
      +
      + +

      method startPageGroup [line 15412]

      +
      +
      +
      + void startPageGroup( +[int +$page = '']) +
      +

      + + Create a new page group.

      NOTE: call this function before calling AddPage()




      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.000 (2008-03-27)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $page  starting group page (leave empty for next page).
      +

      +
      [ Top ]
      +
      +
      + +

      method startSVGElementHandler [line 25488]

      +
      +
      +
      + void startSVGElementHandler( +resource +$parser, string +$name, array +$attribs, [array +$ctm = array()]) +
      +

      + + Sets the opening SVG element handler function for the XML parser. (*** TO BE COMPLETED ***)



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.0.000 (2010-05-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      resource  $parser  The first parameter, parser, is a reference to the XML parser calling the handler.
      string  $name  The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
      array  $attribs  The third parameter, attribs, contains an associative array with the element's attributes (if any). The keys of this array are the attribute names, the values are the attribute values. Attribute names are case-folded on the same criteria as element names. Attribute values are not case-folded. The original order of the attributes can be retrieved by walking through attribs the normal way, using each(). The first key in the array was the first attribute, and so on.
      array  $ctm  tranformation matrix for clipping mode (starting transformation matrix).
      +

      +
      [ Top ]
      +
      +
      + +

      method startTemplate [line 23990]

      +
      +
      +
      + int startTemplate( +[int +$w = 0], [int +$h = 0]) +
      +

      + + Start a new XObject Template.

      An XObject Template is a PDF block that is a self-contained description of any sequence of graphics objects (including path objects, text objects, and sampled images). An XObject Template may be painted multiple times, either on several pages or at several locations on the same page and produces the same results each time, subject only to the graphics state at the time it is invoked. Note: X,Y coordinates will be reset to 0,0.




      +

      Tags:

      +
      + + + + + + + + + + + + + + + + +
      return:  the XObject Template ID in case of success or false in case of error.
      author:  Nicola Asuni
      see:  TCPDF::endTemplate(), TCPDF::printTemplate()
      since:  5.8.017 (2010-08-24)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      int  $w  Template width in user units (empty string or zero = page width less margins)
      int  $h  Template height in user units (empty string or zero = page height less margins)
      +

      +
      [ Top ]
      +
      +
      + +

      method startTransaction [line 23297]

      +
      +
      +
      + void startTransaction( +) +
      +

      + + Stores a copy of the current TCPDF object used for undo operation.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.029 (2009-03-19)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method StartTransform [line 12266]

      +
      +
      +
      + void StartTransform( +) +
      +

      + + Starts a 2D tranformation saving current graphic state.

      This function must be called before scaling, mirroring, translation, rotation and skewing. Use StartTransform() before, and StopTransform() after the transformations to restore the normal behavior.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method StopTransform [line 12286]

      +
      +
      +
      + void StopTransform( +) +
      +

      + + Stops a 2D tranformation restoring previous graphic state.

      This function must be called after scaling, mirroring, translation, rotation and skewing. Use StartTransform() before, and StopTransform() after the transformations to restore the normal behavior.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method stringLeftTrim [line 23897]

      +
      +
      +
      + left stringLeftTrim( +string +$str, [string +$replace = '']) +
      +

      + + Left trim the input string



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  trimmed string
      author:  Nicola Asuni
      since:  5.8.000 (2010-08-11)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $str  string to trim
      string  $replace  string that replace spaces.
      +

      +
      [ Top ]
      +
      +
      + +

      method stringRightTrim [line 23910]

      +
      +
      +
      + right stringRightTrim( +string +$str, [string +$replace = '']) +
      +

      + + Right trim the input string



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  trimmed string
      author:  Nicola Asuni
      since:  5.8.000 (2010-08-11)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $str  string to trim
      string  $replace  string that replace spaces.
      +

      +
      [ Top ]
      +
      +
      + +

      method stringTrim [line 23923]

      +
      +
      +
      + trimmed stringTrim( +string +$str, [string +$replace = '']) +
      +

      + + Trim the input string



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  string
      author:  Nicola Asuni
      since:  5.8.000 (2010-08-11)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $str  string to trim
      string  $replace  string that replace spaces.
      +

      +
      [ Top ]
      +
      +
      + +

      method SVGPath [line 25140]

      +
      +
      +
      + array SVGPath( +string +$d, [string +$style = '']) +
      +

      + + Draws an SVG path



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  of container box measures (x, y, w, h)
      author:  Nicola Asuni
      since:  5.0.000 (2010-05-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $d  attribute d of the path SVG element
      string  $style  Style of rendering. Possible values are:
      • D or empty string: Draw (default).
      • F: Fill.
      • F*: Fill using the even-odd rule to determine which regions lie inside the clipping path.
      • DF or FD: Draw and fill.
      • DF* or FD*: Draw and fill using the even-odd rule to determine which regions lie inside the clipping path.
      • CNZ: Clipping mode (using the even-odd rule to determine which regions lie inside the clipping path).
      • CEO: Clipping mode (using the nonzero winding number rule to determine which regions lie inside the clipping path).
      +

      +
      [ Top ]
      +
      +
      + +

      method SVGTransform [line 24841]

      +
      +
      +
      + void SVGTransform( +array +$tm) +
      +

      + + Apply SVG graphic transformation matrix.



      +

      Tags:

      +
      + + + + + + + +
      since:  5.0.000 (2010-05-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $tm  original SVG transformation matrix
      +

      +
      [ Top ]
      +
      +
      + +

      method swapMargins [line 21875]

      +
      +
      +
      + void swapMargins( +[boolean +$reverse = true]) +
      +

      + + Swap the left and right margins.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.2.000 (2008-10-29)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      boolean  $reverse  if true swap left and right margins.
      +

      +
      [ Top ]
      +
      +
      + +

      method swapPageBoxCoordinates [line 2843]

      +
      +
      +
      + void swapPageBoxCoordinates( +int +$page) +
      +

      + + Swap X and Y coordinates of page boxes (change page boxes orientation).



      +

      Tags:

      +
      + + + + + + + +
      since:  5.0.010 (2010-05-17)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $page  page number
      +

      +
      [ Top ]
      +
      +
      + +

      method Text [line 5227]

      +
      +
      +
      + void Text( +float +$x, float +$y, string +$txt, [int +$fstroke = false], [boolean +$fclip = false], [boolean +$ffill = true], [mixed +$border = 0], [int +$ln = 0], [string +$align = ''], [boolean +$fill = false], [mixed +$link = ''], [int +$stretch = 0], [boolean +$ignore_min_height = false], [string +$calign = 'T'], [string +$valign = 'M'], [boolean +$rtloff = false]) +
      +

      + + Prints a text cell at the specified position.

      This method allows to place a string precisely on the page.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::Cell(), TCPDF::Write(), TCPDF::MultiCell(), WriteHTML(), WriteHTMLCell()
      since:  1.0
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x  Abscissa of the cell origin
      float  $y  Ordinate of the cell origin
      string  $txt  String to print
      int  $fstroke  outline size in user units (false = disable)
      boolean  $fclip  if true activate clipping mode (you must call StartTransform() before this function and StopTransform() to stop the clipping tranformation).
      boolean  $ffill  if true fills the text
      mixed  $border  Indicates if borders must be drawn around the cell. The value can be a number:
      • 0: no border (default)
      • 1: frame
      or a string containing some or all of the following characters (in any order):
      • L: left
      • T: top
      • R: right
      • B: bottom
      or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
      int  $ln  Indicates where the current position should go after the call. Possible values are:
      • 0: to the right (or left for RTL languages)
      • 1: to the beginning of the next line
      • 2: below
      Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
      string  $align  Allows to center or align the text. Possible values are:
      • L or empty string: left align (default value)
      • C: center
      • R: right align
      • J: justify
      boolean  $fill  Indicates if the cell background must be painted (true) or transparent (false).
      mixed  $link  URL or identifier returned by AddLink().
      int  $stretch  font stretch mode:
      • 0 = disabled
      • 1 = horizontal scaling only if text is larger than cell width
      • 2 = forced horizontal scaling to fit cell width
      • 3 = character spacing only if text is larger than cell width
      • 4 = forced character spacing to fit cell width
      General font stretching and scaling values will be preserved when possible.
      boolean  $ignore_min_height  if true ignore automatic minimum height value.
      string  $calign  cell vertical alignment relative to the specified Y value. Possible values are:
      • T : cell top
      • A : font top
      • L : font baseline
      • D : font bottom
      • B : cell bottom
      string  $valign  text vertical alignment inside the cell. Possible values are:
      • T : top
      • C : center
      • B : bottom
      boolean  $rtloff  if true uses the page top-left corner as origin of axis for $x and $y initial position.
      +

      +
      [ Top ]
      +
      +
      + +

      method TextField [line 14715]

      +
      +
      +
      + void TextField( +string +$name, float +$w, float +$h, [array +$prop = array()], [array +$opt = array()], [float +$x = ''], [float +$y = ''], [boolean +$js = false]) +
      +

      + + Creates a text field



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.8.000 (2009-09-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $name  field name
      float  $w  Width of the rectangle
      float  $h  Height of the rectangle
      array  $prop  javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
      array  $opt  annotation parameters. Possible values are described on official PDF32000_2008 reference.
      float  $x  Abscissa of the upper-left corner of the rectangle
      float  $y  Ordinate of the upper-left corner of the rectangle
      boolean  $js  if true put the field using JavaScript (requires Acrobat Writer to be rendered).
      +

      +
      [ Top ]
      +
      +
      + +

      method Transform [line 12562]

      +
      +
      +
      + void Transform( +array +$tm) +
      +

      + + Apply graphic transformations.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $tm  transformation matrix
      +

      +
      [ Top ]
      +
      +
      + +

      method Translate [line 12452]

      +
      +
      +
      + void Translate( +int +$t_x, int +$t_y) +
      +

      + + Translate graphic object horizontally and vertically.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      int  $t_x  movement to the right
      int  $t_y  movement to the bottom
      +

      +
      [ Top ]
      +
      +
      + +

      method TranslateX [line 12429]

      +
      +
      +
      + void TranslateX( +int +$t_x) +
      +

      + + Translate graphic object horizontally.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $t_x  movement to the right (or left for RTL)
      +

      +
      [ Top ]
      +
      +
      + +

      method TranslateY [line 12440]

      +
      +
      +
      + void TranslateY( +int +$t_y) +
      +

      + + Translate graphic object vertically.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::StartTransform(), TCPDF::StopTransform()
      since:  2.1.000 (2008-01-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $t_y  movement to the bottom
      +

      +
      [ Top ]
      +
      +
      + +

      method unhtmlentities [line 11537]

      +
      +
      +
      + string unhtmlentities( +string +$text_to_convert) +
      +

      + + Reverse function for htmlentities.

      Convert entities in UTF-8.




      +

      Tags:

      +
      + + + + + + + +
      return:  converted text string
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $text_to_convert  Text to convert.
      +

      +
      [ Top ]
      +
      +
      + +

      method UniArrSubString [line 6938]

      +
      +
      +
      + Return UniArrSubString( +string +$uniarr, [int +$start = ''], [int +$end = '']) +
      +

      + + Extract a slice of the $uniarr array and return it as string.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  part of a string
      since:  4.5.037 (2009-04-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      string  $uniarr  The input array of characters.
      int  $start  the starting element of $strarr.
      int  $end  first element that will not be returned.
      +

      +
      [ Top ]
      +
      +
      + +

      method unichr [line 6971]

      +
      +
      +
      + Returns unichr( +int +$c) +
      +

      + + Returns the unicode caracter specified by UTF-8 value



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  the specified character.
      author:  Miguel Perez, Nicola Asuni
      since:  2.3.000 (2008-03-05)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $c  UTF-8 value
      +

      +
      [ Top ]
      +
      +
      + +

      method UTF8ArrayToUniArray [line 6959]

      +
      +
      +
      + Return UTF8ArrayToUniArray( +string +$ta) +
      +

      + + Convert an array of UTF8 values to array of unicode characters



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  array of unicode characters
      since:  4.5.037 (2009-04-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $ta  The input array of UTF8 values.
      +

      +
      [ Top ]
      +
      +
      + +

      method UTF8ArrSubString [line 6915]

      +
      +
      +
      + Return UTF8ArrSubString( +string +$strarr, [int +$start = ''], [int +$end = '']) +
      +

      + + Extract a slice of the $strarr array and return it as string.



      +

      Tags:

      +
      + + + + + + + +
      return:  part of a string
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      string  $strarr  The input array of characters.
      int  $start  the starting element of $strarr.
      int  $end  first element that will not be returned.
      +

      +
      [ Top ]
      +
      +
      + +

      method UTF8ArrToLatin1 [line 11224]

      +
      +
      +
      + array UTF8ArrToLatin1( +array +$unicode) +
      +

      + + Converts UTF-8 characters array to array of Latin1 characters




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.8.023 (2010-01-15)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $unicode  array containing UTF-8 unicode values
      +

      +
      [ Top ]
      +
      +
      + +

      method utf8Bidi [line 13496]

      +
      +
      +
      + array utf8Bidi( +array +$ta, [string +$str = ''], [bool +$forcertl = false]) +
      +

      + + Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  of unicode chars
      author:  Nicola Asuni
      since:  2.4.000 (2008-03-06)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      array  $ta  array of characters composing the string.
      string  $str  string to process
      bool  $forcertl  if 'R' forces RTL, if 'L' forces LTR
      +

      +
      [ Top ]
      +
      +
      + +

      method utf8StrArrRev [line 13482]

      +
      +
      +
      + string utf8StrArrRev( +array +$arr, [string +$str = ''], [bool +$setbom = false], [bool +$forcertl = false]) +
      +

      + + Reverse the RLT substrings array using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.9.000 (2010-03-27)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      array  $arr  array of unicode values.
      string  $str  string to manipulate (or empty value).
      bool  $setbom  if true set the Byte Order Mark (BOM = 0xFEFF)
      bool  $forcertl  if true forces RTL text direction
      +

      +
      [ Top ]
      +
      +
      + +

      method UTF8StringToArray [line 11060]

      +
      +
      +
      + array UTF8StringToArray( +string +$str) +
      +

      + + Converts UTF-8 strings to codepoints array.


      Invalid byte sequences will be replaced with 0xFFFD (replacement character)
      Based on: http://www.faqs.org/rfcs/rfc3629.html

          Char. number range  |        UTF-8 octet sequence
      +       (hexadecimal)    |              (binary)
      +    --------------------+-----------------------------------------------
      +    0000 0000-0000 007F | 0xxxxxxx
      +    0000 0080-0000 07FF | 110xxxxx 10xxxxxx
      +    0000 0800-0000 FFFF | 1110xxxx 10xxxxxx 10xxxxxx
      +    0001 0000-0010 FFFF | 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
      +    ---------------------------------------------------------------------
      +
      +   ABFN notation:
      +   ---------------------------------------------------------------------
      +   UTF8-octets = *( UTF8-char )
      +   UTF8-char   = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4
      +   UTF8-1      = %x00-7F
      +   UTF8-2      = %xC2-DF UTF8-tail
      +
      +   UTF8-3      = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) /
      +                 %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail )
      +   UTF8-4      = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) /
      +                 %xF4 %x80-8F 2( UTF8-tail )
      +   UTF8-tail   = %x80-BF
      +   ---------------------------------------------------------------------




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  containing codepoints (UTF-8 characters values)
      author:  Nicola Asuni
      since:  1.53.0.TC005 (2005-01-05)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $str  string to process.
      +

      +
      [ Top ]
      +
      +
      + +

      method utf8StrRev [line 13467]

      +
      +
      +
      + string utf8StrRev( +string +$str, [bool +$setbom = false], [bool +$forcertl = false]) +
      +

      + + Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  2.1.000 (2008-01-08)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      string  $str  string to manipulate.
      bool  $setbom  if true set the Byte Order Mark (BOM = 0xFEFF)
      bool  $forcertl  if true forces RTL text direction
      +

      +
      [ Top ]
      +
      +
      + +

      method UTF8ToLatin1 [line 11195]

      +
      +
      +
      + string UTF8ToLatin1( +string +$str) +
      +

      + + Converts UTF-8 strings to Latin1 when using the standard 14 core fonts.




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Andrew Whitehead, Nicola Asuni
      since:  3.2.000 (2008-06-23)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $str  string to process.
      +

      +
      [ Top ]
      +
      +
      + +

      method UTF8ToUTF16BE [line 11179]

      +
      +
      +
      + string UTF8ToUTF16BE( +string +$str, [boolean +$setbom = true]) +
      +

      + + Converts UTF-8 strings to UTF16-BE.




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      author:  Nicola Asuni
      since:  1.53.0.TC005 (2005-01-05)
      access:  protected
      uses:  TCPDF::UTF8StringToArray(), - arrUTF8ToUTF16BE()
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $str  string to process.
      boolean  $setbom  if true set the Byte Order Mark (BOM = 0xFEFF)
      +

      +
      [ Top ]
      +
      +
      + +

      method Write [line 6533]

      +
      +
      +
      + mixed Write( +float +$h, string +$txt, [mixed +$link = ''], [boolean +$fill = false], [string +$align = ''], [boolean +$ln = false], [int +$stretch = 0], [boolean +$firstline = false], [boolean +$firstblock = false], [float +$maxh = 0], [float +$wadj = 0], [array +$margin = '']) +
      +

      + + This method prints text from the current position.




      +

      Tags:

      +
      + + + + + + + + + + +
      return:  Return the number of cells or the remaining string if $firstline = true.
      since:  1.5
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $h  Line height
      string  $txt  String to print
      mixed  $link  URL or identifier returned by AddLink()
      boolean  $fill  Indicates if the cell background must be painted (true) or transparent (false).
      string  $align  Allows to center or align the text. Possible values are:
      • L or empty string: left align (default value)
      • C: center
      • R: right align
      • J: justify
      boolean  $ln  if true set cursor at the bottom of the line, otherwise set cursor at the top of the line.
      int  $stretch  font stretch mode:
      • 0 = disabled
      • 1 = horizontal scaling only if text is larger than cell width
      • 2 = forced horizontal scaling to fit cell width
      • 3 = character spacing only if text is larger than cell width
      • 4 = forced character spacing to fit cell width
      General font stretching and scaling values will be preserved when possible.
      boolean  $firstline  if true prints only the first line and return the remaining string.
      boolean  $firstblock  if true the string is the starting of a line.
      float  $maxh  maximum height. The remaining unprinted text will be returned. It should be >= $h and less then remaining space to the bottom of the page, or 0 for disable this feature.
      float  $wadj  first line width will be reduced by this amount (used in HTML mode).
      array  $margin  margin array of the parent container
      +

      +
      [ Top ]
      +
      +
      + +

      method write1DBarcode [line 16807]

      +
      +
      +
      + void write1DBarcode( +string +$code, string +$type, [int +$x = ''], [int +$y = ''], [int +$w = ''], [int +$h = ''], [float +$xres = ''], [array +$style = ''], [string +$align = '']) +
      +

      + + Print a Linear Barcode.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  3.1.000 (2008-06-09)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $code  code to print
      string  $type  type of barcode (see barcodes.php for supported formats).
      int  $x  x position in user units (empty string = current x position)
      int  $y  y position in user units (empty string = current y position)
      int  $w  width in user units (empty string = remaining page width)
      int  $h  height in user units (empty string = remaining page height)
      float  $xres  width of the smallest bar in user units (empty string = default value = 0.4mm)
      array  $style  array of options:
      • boolean $style['border'] if true prints a border
      • int $style['padding'] padding to leave around the barcode in user units (set to 'auto' for automatic padding)
      • int $style['hpadding'] horizontal padding in user units (set to 'auto' for automatic padding)
      • int $style['vpadding'] vertical padding in user units (set to 'auto' for automatic padding)
      • array $style['fgcolor'] color array for bars and text
      • mixed $style['bgcolor'] color array for background (set to false for transparent)
      • boolean $style['text'] if true prints text below the barcode
      • string $style['label'] override default label
      • string $style['font'] font name for text
      • int $style['fontsize'] font size for text
      • int $style['stretchtext']: 0 = disabled; 1 = horizontal scaling only if necessary; 2 = forced horizontal scaling; 3 = character spacing only if necessary; 4 = forced character spacing.
      • string $style['position'] horizontal position of the containing barcode cell on the page: L = left margin; C = center; R = right margin.
      • string $style['align'] horizontal position of the barcode on the containing rectangle: L = left; C = center; R = right.
      • string $style['stretch'] if true stretch the barcode to best fit the available width, otherwise uses $xres resolution for a single bar.
      • string $style['fitwidth'] if true reduce the width to fit the barcode width + padding. When this option is enabled the 'stretch' option is automatically disabled.
      • string $style['cellfitalign'] this option works only when 'fitwidth' is true and 'position' is unset or empty. Set the horizontal position of the containing barcode cell inside the specified rectangle: L = left; C = center; R = right.
      string  $align  Indicates the alignment of the pointer next to barcode insertion relative to barcode 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
      +

      +
      [ Top ]
      +
      +
      + +

      method write2DBarcode [line 17178]

      +
      +
      +
      + void write2DBarcode( +string +$code, string +$type, [int +$x = ''], [int +$y = ''], [int +$w = ''], [int +$h = ''], [array +$style = ''], [string +$align = ''], [boolean +$distort = false]) +
      +

      + + Print 2D Barcode.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.5.037 (2009-04-07)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $code  code to print
      string  $type  type of barcode (see 2dbarcodes.php for supported formats).
      int  $x  x position in user units
      int  $y  y position in user units
      int  $w  width in user units
      int  $h  height in user units
      array  $style  array of options:
      • boolean $style['border'] if true prints a border around the barcode
      • int $style['padding'] padding to leave around the barcode in barcode units (set to 'auto' for automatic padding)
      • int $style['hpadding'] horizontal padding in barcode units (set to 'auto' for automatic padding)
      • int $style['vpadding'] vertical padding in barcode units (set to 'auto' for automatic padding)
      • int $style['module_width'] width of a single module in points
      • int $style['module_height'] height of a single module in points
      • array $style['fgcolor'] color array for bars and text
      • mixed $style['bgcolor'] color array for background or false for transparent
      • string $style['position'] barcode position on the page: L = left margin; C = center; R = right margin; S = stretch
      • $style['module_width'] width of a single module in points
      • $style['module_height'] height of a single module in points
      string  $align  Indicates the alignment of the pointer next to barcode insertion relative to barcode 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
      boolean  $distort  if true distort the barcode to fit width and height, otherwise preserve aspect ratio
      +

      +
      [ Top ]
      +
      +
      + +

      method writeBarcode [line 17113]

      +
      +
      +
      + void writeBarcode( +int +$x, int +$y, int +$w, int +$h, string +$type, string +$style, string +$font, int +$xres, string +$code) +
      +

      + + This function is DEPRECATED, please use the new write1DBarcode() function.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::write1DBarcode()
      deprecated:  deprecated since version 3.1.000 (2008-06-10)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      int  $x  x position in user units
      int  $y  y position in user units
      int  $w  width in user units
      int  $h  height position in user units
      string  $type  type of barcode
      string  $style  barcode style
      string  $font  font for text
      int  $xres  x resolution
      string  $code  code to print
      +

      +
      [ Top ]
      +
      +
      + +

      method writeDiskCache [line 22407]

      +
      +
      +
      + void writeDiskCache( + +$filename, mixed +$data, [boolean +$append = false], string +$file) +
      +

      + + Writes data to a temporary file on filesystem.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.000 (2008-12-31)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      string  $file  file name
      mixed  $data  data to write on file
      boolean  $append  if true append data, false replace.
        $filename  
      +

      +
      [ Top ]
      +
      +
      + +

      method writeHTML [line 18985]

      +
      +
      +
      + void writeHTML( +string +$html, [boolean +$ln = true], [boolean +$fill = false], [boolean +$reseth = false], [boolean +$cell = false], [string +$align = '']) +
      +

      + + Allows to preserve some HTML formatting (limited support).
      IMPORTANT: The HTML must be well formatted - try to clean-up it using an application like HTML-Tidy before submitting.

      Supported tags are: a, b, blockquote, br, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, img, li, ol, p, pre, small, span, strong, sub, sup, table, tcpdf, td, th, thead, tr, tt, u, ul




      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $html  text to display
      boolean  $ln  if true add a new line after text (default = true)
      boolean  $fill  Indicates if the background must be painted (true) or transparent (false).
      boolean  $reseth  if true reset the last cell height (default false).
      boolean  $cell  if true add the current left (or right for RTL) padding to each Write (default false).
      string  $align  Allows to center or align the text. Possible values are:
      • L : left align
      • C : center
      • R : right align
      • '' : empty string : left for LTR or right for RTL
      +

      +
      [ Top ]
      +
      +
      + +

      method writeHTMLCell [line 18969]

      +
      +
      +
      + void writeHTMLCell( +float +$w, float +$h, float +$x, float +$y, [string +$html = ''], [mixed +$border = 0], [int +$ln = 0], [boolean +$fill = false], [boolean +$reseth = true], [string +$align = ''], [boolean +$autopadding = true]) +
      +

      + + Prints a cell (rectangular area) with optional borders, background color and html text string.

      The upper-left corner of the cell corresponds to the current position. After the call, the current position moves to the right or to the next line.
      If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.




      +

      Tags:

      +
      + + + + + + + + + + +
      see:  Multicell(), TCPDF::writeHTML()
      access:  public
      uses:  TCPDF::MultiCell()
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $w  Cell width. If 0, the cell extends up to the right margin.
      float  $h  Cell minimum height. The cell extends automatically if needed.
      float  $x  upper-left corner X coordinate
      float  $y  upper-left corner Y coordinate
      string  $html  html text to print. Default value: empty string.
      mixed  $border  Indicates if borders must be drawn around the cell. The value can be a number:
      • 0: no border (default)
      • 1: frame
      or a string containing some or all of the following characters (in any order):
      • L: left
      • T: top
      • R: right
      • B: bottom
      or an array of line styles for each border group - for example: array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)))
      int  $ln  Indicates where the current position should go after the call. Possible values are:
      • 0: to the right (or left for RTL language)
      • 1: to the beginning of the next line
      • 2: below
      boolean  $fill  Indicates if the cell background must be painted (true) or transparent (false).
      boolean  $reseth  if true reset the last cell height (default true).
      string  $align  Allows to center or align the text. Possible values are:
      • L : left align
      • C : center
      • R : right align
      • '' : empty string : left for LTR or right for RTL
      boolean  $autopadding  if true, uses internal padding and automatically adjust it to account for line width.
      +

      +
      [ Top ]
      +
      +
      + +

      method _addfield [line 14287]

      +
      +
      +
      + void _addfield( +string +$type, string +$name, int +$x, int +$y, int +$w, int +$h, array +$prop) +
      +

      + + Adds a javascript form field.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Denis Van Nuffelen, Nicola Asuni
      since:  2.1.002 (2008-02-12)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      string  $type  field type
      string  $name  field name
      int  $x  horizontal position
      int  $y  vertical position
      int  $w  width
      int  $h  height
      array  $prop  javascript field properties. Possible values are described on official Javascript for Acrobat API reference.
      +

      +
      [ Top ]
      +
      +
      + +

      method _AES [line 11811]

      +
      +
      +
      + String _AES( +string +$key, String +$text) +
      +

      + + Returns the input text exrypted using AES algorithm and the specified key.

      This method requires mcrypt.




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  encrypted text
      author:  Nicola Asuni
      since:  5.0.005 (2010-05-11)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $key  encryption key
      String  $text  input text to be encrypted
      +

      +
      [ Top ]
      +
      +
      + +

      method _beginpage [line 10726]

      +
      +
      +
      + void _beginpage( +[string +$orientation = ''], [mixed +$format = '']) +
      +

      + + Initialize a new page.



      +

      Tags:

      +
      + + + + + + + +
      see:  TCPDF::getPageSizeFromFormat(), TCPDF::setPageFormat()
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $orientation  page orientation. Possible values are (case insensitive):
      • P or PORTRAIT (default)
      • L or LANDSCAPE
      mixed  $format  The format used for pages. It can be either: one of the string values specified at getPageSizeFromFormat() or an array of parameters specified at setPageFormat().
      +

      +
      [ Top ]
      +
      +
      + +

      method _datastring [line 10907]

      +
      +
      +
      + string _datastring( +string +$s, [int +$n = 0]) +
      +

      + + Format a data string for meta information



      +

      Tags:

      +
      + + + + + + + +
      return:  escaped string.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $s  data string to escape.
      int  $n  object ID
      +

      +
      [ Top ]
      +
      +
      + +

      method _datestring [line 10922]

      +
      +
      +
      + string _datestring( +[int +$n = 0]) +
      +

      + + Returns a formatted date for meta information



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  escaped date string.
      since:  4.6.028 (2009-08-25)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $n  object ID
      +

      +
      [ Top ]
      +
      +
      + +

      method _destroy [line 8124]

      +
      +
      +
      + void _destroy( +[boolean +$destroyall = false], [boolean +$preserve_objcopy = false]) +
      +

      + + Unset all class variables except the following critical variables: internal_encoding, state, bufferlen, buffer and diskcache.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.5.016 (2009-02-24)
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      boolean  $destroyall  if true destroys all class variables, otherwise preserves critical variables.
      boolean  $preserve_objcopy  if true preserves the objcopy variable
      +

      +
      [ Top ]
      +
      +
      + +

      method _dochecks [line 8152]

      +
      +
      +
      + void _dochecks( +) +
      +

      + + Check for locale-related bug



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _dolinethrough [line 10833]

      +
      +
      +
      + void _dolinethrough( +int +$x, int +$y, string +$txt) +
      +

      + + Line through text.



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $x  X coordinate
      int  $y  Y coordinate
      string  $txt  text to linethrough
      +

      +
      [ Top ]
      +
      +
      + +

      method _dolinethroughw [line 10846]

      +
      +
      +
      + void _dolinethroughw( +int +$x, int +$y, +$w, string +$txt) +
      +

      + + Line through for rectangular text area.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.008 (2009-09-29)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      int  $x  X coordinate
      int  $y  Y coordinate
      string  $txt  text to linethrough
        $w  
      +

      +
      [ Top ]
      +
      +
      + +

      method _dooverline [line 10859]

      +
      +
      +
      + void _dooverline( +int +$x, int +$y, string +$txt) +
      +

      + + Overline text.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.015 (2010-04-19)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $x  X coordinate
      int  $y  Y coordinate
      string  $txt  text to overline
      +

      +
      [ Top ]
      +
      +
      + +

      method _dooverlinew [line 10872]

      +
      +
      +
      + void _dooverlinew( +int +$x, int +$y, int +$w) +
      +

      + + Overline for rectangular text area.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.015 (2010-04-19)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $x  X coordinate
      int  $y  Y coordinate
      int  $w  width to overline
      +

      +
      [ Top ]
      +
      +
      + +

      method _dounderline [line 10808]

      +
      +
      +
      + void _dounderline( +int +$x, int +$y, string +$txt) +
      +

      + + Underline text.



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $x  X coordinate
      int  $y  Y coordinate
      string  $txt  text to underline
      +

      +
      [ Top ]
      +
      +
      + +

      method _dounderlinew [line 10821]

      +
      +
      +
      + void _dounderlinew( +int +$x, int +$y, int +$w) +
      +

      + + Underline for rectangular text area.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.8.008 (2009-09-29)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $x  X coordinate
      int  $y  Y coordinate
      int  $w  width to underline
      +

      +
      [ Top ]
      +
      +
      + +

      method _encrypt_data [line 11614]

      +
      +
      +
      + encrypted _encrypt_data( +int +$n, string +$s) +
      +

      + + Encrypt the input string.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  string
      author:  Nicola Asuni
      since:  5.0.005 (2010-05-11)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      int  $n  object number
      string  $s  data string to encrypt
      +

      +
      [ Top ]
      +
      +
      + +

      method _enddoc [line 10654]

      +
      +
      +
      + void _enddoc( +) +
      +

      + + Output end of document (EOF).



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _endpage [line 10770]

      +
      +
      +
      + void _endpage( +) +
      +

      + + Mark end of page.



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _escape [line 10895]

      +
      +
      +
      + string _escape( +string +$s) +
      +

      + + Add "\" before "\", "(" and ")"



      +

      Tags:

      +
      + + + + + + + +
      return:  escaped string.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $s  string to escape.
      +

      +
      [ Top ]
      +
      +
      + +

      method _escapetext [line 10950]

      +
      +
      +
      + string _escapetext( +string +$s) +
      +

      + + THIS METHOD IS DEPRECATED

      Format a text string




      +

      Tags:

      +
      + + + + + + + + + + +
      return:  escaped string.
      deprecated:  
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $s  string to escape.
      +

      +
      [ Top ]
      +
      +
      + +

      method _fixAES256Password [line 11937]

      +
      +
      +
      + string _fixAES256Password( + +$password) +
      +

      + + Convert password for AES-256 encryption mode



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  password
      author:  Nicola Asuni
      since:  5.9.006 (2010-10-19)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
        $password  
      +

      +
      [ Top ]
      +
      +
      + +

      method _freadint [line 10884]

      +
      +
      +
      + 4-byte _freadint( +string +$f) +
      +

      + + Read a 4-byte (32 bit) integer from file.



      +

      Tags:

      +
      + + + + + + + +
      return:  integer
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $f  file name.
      +

      +
      [ Top ]
      +
      +
      + +

      method _generateencryptionkey [line 11952]

      +
      +
      +
      + void _generateencryptionkey( +) +
      +

      + + Compute encryption key



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  2.0.000 (2008-01-02)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _getannotsrefs [line 8400]

      +
      +
      +
      + string _getannotsrefs( +int +$n) +
      +

      + + Get references to page annotations.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.0.010 (2010-05-17)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $n  page number
      +

      +
      [ Top ]
      +
      +
      + +

      method _getBYTE [line 9134]

      +
      +
      +
      + int _getBYTE( + +&$str, +&$offset, string +$str, int +$offset) +
      +

      + + Get BYTE from string (8-bit unsigned integer).



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  8 bit value
      author:  Nicola Asuni
      since:  5.2.000 (2010-06-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      string  $str  string from where to extract value
      int  $offset  point from where to read the data
        &$str  
        &$offset  
      +

      +
      [ Top ]
      +
      +
      + +

      method _getfontpath [line 8168]

      +
      +
      +
      + string _getfontpath( +) +
      +

      + + Return fonts path



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _getobj [line 10792]

      +
      +
      +
      + string _getobj( +[int +$objid = '']) +
      +

      + + Return the starting object string for the selected object ID.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  the starting object string
      since:  5.8.009 (2010-08-20)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $objid  Object ID (leave empty to get a new ID).
      +

      +
      [ Top ]
      +
      +
      + +

      method _getrawstream [line 10970]

      +
      +
      +
      + void _getrawstream( +string +$s, [int +$n = 0]) +
      +

      + + get raw output stream.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  5.5.000 (2010-06-22)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $s  string to output.
      int  $n  object reference for encryption mode
      +

      +
      [ Top ]
      +
      +
      + +

      method _getSHORT [line 9119]

      +
      +
      +
      + int _getSHORT( + +&$str, +&$offset, string +$str, int +$offset) +
      +

      + + Get SHORT from string (Big Endian 16-bit signed integer).



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  16 bit value
      author:  Nicola Asuni
      since:  5.2.000 (2010-06-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      string  $str  string from where to extract value
      int  $offset  point from where to read the data
        &$str  
        &$offset  
      +

      +
      [ Top ]
      +
      +
      + +

      method _getstream [line 10985]

      +
      +
      +
      + void _getstream( +string +$s, [int +$n = 0]) +
      +

      + + Format output stream (DEPRECATED).



      +

      Tags:

      +
      + + + + + + + +
      deprecated:  
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $s  string to output.
      int  $n  object reference for encryption mode
      +

      +
      [ Top ]
      +
      +
      + +

      method _getTrueTypeFontSubset [line 9149]

      +
      +
      +
      + string _getTrueTypeFontSubset( +string +$font, array +$subsetchars) +
      +

      + + Returns a subset of the TrueType font data without the unused glyphs.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  a subset of TrueType font data without the unused glyphs
      author:  Nicola Asuni
      since:  5.2.000 (2010-06-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $font  TrueType font data
      array  $subsetchars  array of used characters (the glyphs to keep)
      +

      +
      [ Top ]
      +
      +
      + +

      method _getTTFtableChecksum [line 9480]

      +
      +
      +
      + int _getTTFtableChecksum( +string +$table, int +$length) +
      +

      + + Returs the checksum of a TTF table.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  checksum
      author:  Nicola Asuni
      since:  5.2.000 (2010-06-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $table  table to check
      int  $length  lenght of table in bytes
      +

      +
      [ Top ]
      +
      +
      + +

      method _getULONG [line 9089]

      +
      +
      +
      + int _getULONG( + +&$str, +&$offset, string +$str, int +$offset) +
      +

      + + Get ULONG from string (Big Endian 32-bit unsigned integer).



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  32 bit value
      author:  Nicola Asuni
      since:  5.2.000 (2010-06-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      string  $str  string from where to extract value
      int  $offset  point from where to read the data
        &$str  
        &$offset  
      +

      +
      [ Top ]
      +
      +
      + +

      method _getUSHORT [line 9104]

      +
      +
      +
      + int _getUSHORT( + +&$str, +&$offset, string +$str, int +$offset) +
      +

      + + Get USHORT from string (Big Endian 16-bit unsigned integer).



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  16 bit value
      author:  Nicola Asuni
      since:  5.2.000 (2010-06-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      string  $str  string from where to extract value
      int  $offset  point from where to read the data
        &$str  
        &$offset  
      +

      +
      [ Top ]
      +
      +
      + +

      method _getxobjectdict [line 10345]

      +
      +
      +
      + string _getxobjectdict( +) +
      +

      + + Return XObjects Dictionary.



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  XObjects dictionary
      since:  5.8.014 (2010-08-23)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _JScolor [line 14263]

      +
      +
      +
      + void _JScolor( +string +$color) +
      +

      + + Convert color to javascript color.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Denis Van Nuffelen, Nicola Asuni
      since:  2.1.002 (2008-02-12)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $color  color name or #RRGGBB
      +

      +
      [ Top ]
      +
      +
      + +

      method _md5_16 [line 11829]

      +
      +
      +
      + String _md5_16( +string +$str) +
      +

      + + Encrypts a string using MD5 and returns it's value as a binary string.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  MD5 encrypted binary string
      author:  Klemen Vodopivec
      since:  2.0.000 (2008-01-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $str  input string
      +

      +
      [ Top ]
      +
      +
      + +

      method _newobj [line 10780]

      +
      +
      +
      + int _newobj( +) +
      +

      + + Begin a new object and return the object number.



      +

      Tags:

      +
      + + + + + + + +
      return:  object number
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _objectkey [line 11594]

      +
      +
      +
      + int _objectkey( +int +$n) +
      +

      + + Compute encryption key depending on object number where the encrypted data is stored.

      This is used for all strings and streams without crypt filter specifier.




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  object key
      author:  Nicola Asuni
      since:  2.0.000 (2008-01-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $n  object number
      +

      +
      [ Top ]
      +
      +
      + +

      method _OEvalue [line 11924]

      +
      +
      +
      + string _OEvalue( +) +
      +

      + + Compute OE value (used for encryption)



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  OE value
      author:  Nicola Asuni
      since:  5.9.006 (2010-10-19)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _out [line 11005]

      +
      +
      +
      + void _out( +string +$s) +
      +

      + + Output a string to the document.



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $s  string to output.
      +

      +
      [ Top ]
      +
      +
      + +

      method _outCurve [line 12739]

      +
      +
      +
      + void _outCurve( +float +$x1, float +$y1, float +$x2, float +$y2, float +$x3, float +$y3) +
      +

      + + Append a cubic Bzier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x2, y2) as the Bzier control points.

      The new current point shall be (x3, y3).




      +

      Tags:

      +
      + + + + + + + +
      since:  2.1.000 (2008-01-08)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x1  Abscissa of control point 1.
      float  $y1  Ordinate of control point 1.
      float  $x2  Abscissa of control point 2.
      float  $y2  Ordinate of control point 2.
      float  $x3  Abscissa of end point.
      float  $y3  Ordinate of end point.
      +

      +
      [ Top ]
      +
      +
      + +

      method _outCurveV [line 12753]

      +
      +
      +
      + void _outCurveV( +float +$x2, float +$y2, float +$x3, float +$y3) +
      +

      + + Append a cubic Bzier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using the current point and (x2, y2) as the Bzier control points.

      The new current point shall be (x3, y3).




      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.019 (2010-04-26)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + +
      float  $x2  Abscissa of control point 2.
      float  $y2  Ordinate of control point 2.
      float  $x3  Abscissa of end point.
      float  $y3  Ordinate of end point.
      +

      +
      [ Top ]
      +
      +
      + +

      method _outCurveY [line 12769]

      +
      +
      +
      + void _outCurveY( +float +$x1, float +$y1, float +$x3, float +$y3, float +$x2, float +$y2) +
      +

      + + Append a cubic Bzier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x3, y3) as the Bzier control points.

      The new current point shall be (x3, y3).




      +

      Tags:

      +
      + + + + + + + +
      since:  2.1.000 (2008-01-08)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x1  Abscissa of control point 1.
      float  $y1  Ordinate of control point 1.
      float  $x2  Abscissa of control point 2.
      float  $y2  Ordinate of control point 2.
      float  $x3  Abscissa of end point.
      float  $y3  Ordinate of end point.
      +

      +
      [ Top ]
      +
      +
      + +

      method _outellipticalarc [line 12968]

      +
      +
      +
      + array _outellipticalarc( +float +$xc, float +$yc, float +$rx, float +$ry, [ +$xang = 0], [ +$angs = 0], [ +$angf = 360], [boolean +$pie = false], [integer +$nc = 2], [boolean +$startpoint = true], [boolean +$ccw = true], float +$xang:, float +$angs:, float +$angf:) +
      +

      + + Append an elliptical arc to the current path.

      An ellipse is formed from n Bezier curves.




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  bounding box coordinates (x min, y min, x max, y max)
      author:  Nicola Asuni
      since:  4.9.019 (2010-04-26)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $xc  Abscissa of center point.
      float  $yc  Ordinate of center point.
      float  $rx  Horizontal radius.
      float  $ry  Vertical radius (if ry = 0 then is a circle, see Circle). Default value: 0.
      float  $xang:  Angle between the X-axis and the major axis of the ellipse. Default value: 0.
      float  $angs:  Angle start of draw line. Default value: 0.
      float  $angf:  Angle finish of draw line. Default value: 360.
      boolean  $pie  if true do not mark the border point (used to draw pie sectors).
      integer  $nc  Number of curves used to draw a 90 degrees portion of ellipse.
      boolean  $startpoint  if true output a starting point
      boolean  $ccw  if true draws in counter-clockwise
        $xang  
        $angs  
        $angf  
      +

      +
      [ Top ]
      +
      +
      + +

      method _outLine [line 12709]

      +
      +
      +
      + void _outLine( +float +$x, float +$y) +
      +

      + + Append a straight line segment from the current point to the point (x, y).

      The new current point shall be (x, y).




      +

      Tags:

      +
      + + + + + + + +
      since:  2.1.000 (2008-01-08)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      float  $x  Abscissa of end point.
      float  $y  Ordinate of end point.
      +

      +
      [ Top ]
      +
      +
      + +

      method _outPoint [line 12697]

      +
      +
      +
      + void _outPoint( +float +$x, float +$y) +
      +

      + + Begin a new subpath by moving the current point to coordinates (x, y), omitting any connecting line segment.



      +

      Tags:

      +
      + + + + + + + +
      since:  2.1.000 (2008-01-08)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      float  $x  Abscissa of point.
      float  $y  Ordinate of point.
      +

      +
      [ Top ]
      +
      +
      + +

      method _outRect [line 12723]

      +
      +
      +
      + void _outRect( +float +$x, float +$y, float +$w, float +$h, string +$op) +
      +

      + + Append a rectangle to the current path as a complete subpath, with lower-left corner (x, y) and dimensions widthand height in user space.



      +

      Tags:

      +
      + + + + + + + +
      since:  2.1.000 (2008-01-08)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      float  $x  Abscissa of upper-left corner (or upper-right corner for RTL language).
      float  $y  Ordinate of upper-left corner (or upper-right corner for RTL language).
      float  $w  Width.
      float  $h  Height.
      string  $op  options
      +

      +
      [ Top ]
      +
      +
      + +

      method _Ovalue [line 11886]

      +
      +
      +
      + string _Ovalue( +) +
      +

      + + Compute O value (used for encryption)



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  O value
      author:  Nicola Asuni
      since:  2.0.000 (2008-01-02)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _parsejpeg [line 7529]

      +
      +
      +
      + array _parsejpeg( +string +$file) +
      +

      + + Extract info from a JPEG file without using the GD library.



      +

      Tags:

      +
      + + + + + + + +
      return:  structure containing the image data
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $file  image file to parse
      +

      +
      [ Top ]
      +
      +
      + +

      method _parsepng [line 7555]

      +
      +
      +
      + array _parsepng( +string +$file) +
      +

      + + Extract info from a PNG file without using the GD library.



      +

      Tags:

      +
      + + + + + + + +
      return:  structure containing the image data
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $file  image file to parse
      +

      +
      [ Top ]
      +
      +
      + +

      method _putannotsobjs [line 8436]

      +
      +
      +
      + void _putannotsobjs( +) +
      +

      + + Output annotations objects for all pages.

      !!! THIS METHOD IS NOT YET COMPLETED !!! See section 12.5 of PDF 32000_2008 reference.




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.0.018 (2008-08-06)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putannotsrefs [line 8388]

      +
      +
      +
      + void _putannotsrefs( +int +$n) +
      +

      + + Output references to page annotations



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      author:  Nicola Asuni
      deprecated:  
      since:  4.7.000 (2008-08-29)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $n  page number
      +

      +
      [ Top ]
      +
      +
      + +

      method _putAPXObject [line 9048]

      +
      +
      +
      + int _putAPXObject( +[int +$w = 0], [int +$h = 0], [string +$stream = '']) +
      +

      + + Put appearance streams XObject used to define annotation's appearance states



      +

      Tags:

      +
      + + + + + + + + + + +
      return:  object ID
      since:  4.8.001 (2009-09-09)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      int  $w  annotation width
      int  $h  annotation height
      string  $stream  appearance stream
      +

      +
      [ Top ]
      +
      +
      + +

      method _putbookmarks [line 14100]

      +
      +
      +
      + void _putbookmarks( +) +
      +

      + + Create a bookmark PDF string.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Olivier Plathey, Nicola Asuni
      since:  2.1.002 (2008-02-12)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putcatalog [line 10479]

      +
      +
      +
      + int _putcatalog( +) +
      +

      + + Output Catalog.



      +

      Tags:

      +
      + + + + + + + +
      return:  object id
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putcidfont0 [line 10144]

      +
      +
      +
      + void _putcidfont0( +array +$font) +
      +

      + + Output CID-0 fonts.

      A Type 0 CIDFont contains glyph descriptions based on the Adobe Type 1 font format




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Andrew Whitehead, Nicola Asuni, Yukihiro Nakadaira
      since:  3.2.000 (2008-06-23)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $font  font data
      +

      +
      [ Top ]
      +
      +
      + +

      method _putEmbeddedFiles [line 5186]

      +
      +
      +
      + void _putEmbeddedFiles( +) +
      +

      + + Embedd the attached files.



      +

      Tags:

      +
      + + + + + + + + + + +
      see:  TCPDF::Annotation()
      since:  4.4.000 (2008-12-07)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putencryption [line 11642]

      +
      +
      +
      + void _putencryption( +) +
      +

      + + Put encryption on PDF document.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  2.0.000 (2008-01-02)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putextgstates [line 15642]

      +
      +
      +
      + void _putextgstates( +array +$gs) +
      +

      + + Put extgstates for object transparency



      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.000 (2008-03-27)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $gs  extgstate
      +

      +
      [ Top ]
      +
      +
      + +

      method _putfonts [line 9601]

      +
      +
      +
      + void _putfonts( +) +
      +

      + + Output fonts.



      +

      Tags:

      +
      + + + + + + + +
      author:  Nicola Asuni
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putfontwidths [line 9502]

      +
      +
      +
      + PDF _putfontwidths( +array +$font, [int +$cidoffset = 0]) +
      +

      + + Outputs font widths



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  command string for font widths
      author:  Nicola Asuni
      since:  4.4.000 (2008-12-07)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      array  $font  font data
      int  $cidoffset  offset for CID values
      +

      +
      [ Top ]
      +
      +
      + +

      method _putheader [line 10646]

      +
      +
      +
      + void _putheader( +) +
      +

      + + Output PDF header.



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putimages [line 10214]

      +
      +
      +
      + void _putimages( +) +
      +

      + + Output images.



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putinfo [line 10437]

      +
      +
      +
      + int _putinfo( +) +
      +

      + + Adds some Metadata information (Document Information Dictionary)

      (see Chapter 14.3.3 Document Information Dictionary of PDF32000_2008.pdf Reference)




      +

      Tags:

      +
      + + + + + + + +
      return:  object id
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putjavascript [line 14209]

      +
      +
      +
      + void _putjavascript( +) +
      +

      + + Create a javascript PDF string.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Johannes Gntert, Nicola Asuni
      since:  2.1.002 (2008-02-12)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putocg [line 15562]

      +
      +
      +
      + void _putocg( +) +
      +

      + + Put visibility settings.



      +

      Tags:

      +
      + + + + + + + +
      since:  3.0.000 (2008-03-27)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putpages [line 8179]

      +
      +
      +
      + void _putpages( +) +
      +

      + + Output pages.



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putresourcedict [line 10357]

      +
      +
      +
      + void _putresourcedict( +) +
      +

      + + Output Resources Dictionary.



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putresources [line 10415]

      +
      +
      +
      + void _putresources( +) +
      +

      + + Output Resources.



      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putshaders [line 16196]

      +
      +
      +
      + void _putshaders( +) +
      +

      + + Output gradient shaders.



      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  3.1.000 (2008-06-09)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putsignature [line 15235]

      +
      +
      +
      + void _putsignature( +) +
      +

      + + Add certification signature (DocMDP or UR3)

      You can set only one signature type




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  4.6.008 (2009-05-07)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putspotcolors [line 10325]

      +
      +
      +
      + void _putspotcolors( +) +
      +

      + + Output Spot Colors Resources.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.0.024 (2008-09-12)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putstream [line 10996]

      +
      +
      +
      + void _putstream( +string +$s, [int +$n = 0]) +
      +

      + + Output a stream (DEPRECATED).



      +

      Tags:

      +
      + + + + + + + +
      deprecated:  
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $s  string to output.
      int  $n  object reference for encryption mode
      +

      +
      [ Top ]
      +
      +
      + +

      method _puttruetypeunicode [line 9757]

      +
      +
      +
      + void _puttruetypeunicode( +array +$font) +
      +

      + + Adds unicode fonts.


      Based on PDF Reference 1.3 (section 5)




      +

      Tags:

      +
      + + + + + + + + + + +
      author:  Nicola Asuni
      since:  1.52.0.TC005 (2005-01-05)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      array  $font  font data
      +

      +
      [ Top ]
      +
      +
      + +

      method _putviewerpreferences [line 10575]

      +
      +
      +
      + string _putviewerpreferences( +) +
      +

      + + Output viewer preferences.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  for viewer preferences
      author:  Nicola asuni
      since:  3.1.000 (2008-06-09)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _putxobjects [line 10273]

      +
      +
      +
      + void _putxobjects( +) +
      +

      + + Output Form XObjects Templates.



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      author:  Nicola Asuni
      see:  TCPDF::startTemplate(), TCPDF::endTemplate(), TCPDF::printTemplate()
      since:  5.8.017 (2010-08-24)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _RC4 [line 11765]

      +
      +
      +
      + String _RC4( +string +$key, String +$text) +
      +

      + + Returns the input text encrypted using RC4 algorithm and the specified key.

      RC4 is the standard encryption algorithm used in PDF format




      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  encrypted text
      author:  Klemen Vodopivec, Nicola Asuni
      since:  2.0.000 (2008-01-02)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $key  encryption key
      String  $text  input text to be encrypted
      +

      +
      [ Top ]
      +
      +
      + +

      method _setGDImageTransparency [line 7508]

      +
      +
      +
      + void _setGDImageTransparency( +image +$new_image, image +$image) +
      +

      + + Set the transparency for the given GD image.



      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.016 (2010-04-20)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      image  $new_image  GD image object
      image  $image  GD image object. return GD image object.
      +

      +
      [ Top ]
      +
      +
      + +

      method _textstring [line 10934]

      +
      +
      +
      + string _textstring( +string +$s, [int +$n = 0]) +
      +

      + + Format a text string for meta information



      +

      Tags:

      +
      + + + + + + + +
      return:  escaped string.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $s  string to escape.
      int  $n  object ID
      +

      +
      [ Top ]
      +
      +
      + +

      method _toJPEG [line 7465]

      +
      +
      +
      + void _toJPEG( +image +$image, string +$file) +
      +

      + + Convert the loaded image to a JPEG and then return a structure for the PDF creator.

      This function requires GD library and write access to the directory defined on K_PATH_CACHE constant.




      +

      Tags:

      +
      + + + + +
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $file  Image file name.
      image  $image  Image object. return image JPEG image object.
      +

      +
      [ Top ]
      +
      +
      + +

      method _toPNG [line 7484]

      +
      +
      +
      + void _toPNG( +image +$image, string +$file) +
      +

      + + Convert the loaded image to a PNG and then return a structure for the PDF creator.

      This function requires GD library and write access to the directory defined on K_PATH_CACHE constant.




      +

      Tags:

      +
      + + + + + + + +
      since:  4.9.016 (2010-04-20)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $file  Image file name.
      image  $image  Image object. return image PNG image object.
      +

      +
      [ Top ]
      +
      +
      + +

      method _UEvalue [line 11873]

      +
      +
      +
      + string _UEvalue( +) +
      +

      + + Compute UE value (used for encryption)



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  UE value
      author:  Nicola Asuni
      since:  5.9.006 (2010-10-19)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method _Uvalue [line 11840]

      +
      +
      +
      + string _Uvalue( +) +
      +

      + + Compute U value (used for encryption)



      +

      Tags:

      +
      + + + + + + + + + + + + + +
      return:  U value
      author:  Nicola Asuni
      since:  2.0.000 (2008-01-02)
      access:  protected
      +
      +

      + + +
      [ Top ]
      +
      +

      + + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:18 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDF2DBarcode.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDF2DBarcode.html new file mode 100644 index 00000000000..c4c40fe4f51 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDF2DBarcode.html @@ -0,0 +1,311 @@ + + +Docs For Class TCPDF2DBarcode + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Class: TCPDF2DBarcode

      +Source Location: /2dbarcodes.php

      + + + + + + + + + + +
      + +

      Class Overview

      +

      +
      PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).


      +

      Author(s):

      +
        +
      • Nicola Asuni
      • +
      + + + + + + +

      Version:

      +
        +
      • 1.0.007
      • +
      + + +
      +

      Variables

      + +
      +

      Methods

      + +
      +
      + + + + + + + + +
      +
      + + +

      Class Details

      +
      +[line 55]
      +PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).




      +

      Tags:

      +
      + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni
      version:  1.0.007
      link:  http://www.tcpdf.org
      name:  TCPDFBarcode
      license:  LGPL
      +
      +


      +
      [ Top ]

      + +
      + +

      Class Variables

      +
      + +

      +

      $barcode_array =  false

      +

      [line 61]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  representation of barcode.
      access:  protected
      +
      + +
      +
      + + + + + +
      Type:  array
      +


      +
      [ Top ]

      +

      + +
      + +

      Class Methods

      +
      + +
      + +

      constructor __construct [line 73]

      +
      +
      +
      + TCPDF2DBarcode __construct( +string +$code, string +$type) +
      +

      + + This is the class constructor.

      Return an array representations for 2D barcodes:

      • $arrcode['code'] code to be printed on text label
      • $arrcode['num_rows'] required number of rows
      • $arrcode['num_cols'] required number of columns
      • $arrcode['bcode'][$r][$c] value of the cell is $r row and $c column (0 = transparent, 1 = black)




      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to print
      string  $type  type of barcode:
      • RAW: raw mode - comma-separad list of array rows
      • RAW2: raw mode - array rows are surrounded by square parenthesis.
      • QRCODE : QR-CODE Low error correction
      • QRCODE,L : QR-CODE Low error correction
      • QRCODE,M : QR-CODE Medium error correction
      • QRCODE,Q : QR-CODE Better error correction
      • QRCODE,H : QR-CODE Best error correction
      • PDF417 : PDF417 (ISO/IEC 15438:2006)
      • PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".
      +

      +
      [ Top ]
      +
      +
      + +

      method getBarcodeArray [line 81]

      +
      +
      +
      + array getBarcodeArray( +) +
      +

      + + Return an array representations of barcode.



      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method setBarcode [line 91]

      +
      +
      +
      + array setBarcode( +string +$code, string +$type) +
      +

      + + Set the barcode.



      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to print
      string  $type  type of barcode:
      • RAW: raw mode - comma-separad list of array rows
      • RAW2: raw mode - array rows are surrounded by square parenthesis.
      • QRCODE : QR-CODE Low error correction
      • QRCODE,L : QR-CODE Low error correction
      • QRCODE,M : QR-CODE Medium error correction
      • QRCODE,Q : QR-CODE Better error correction
      • QRCODE,H : QR-CODE Best error correction
      • PDF417 : PDF417 (ISO/IEC 15438:2006)
      • PDF417,a,e,t,s,f,o0,o1,o2,o3,o4,o5,o6 : PDF417 with parameters: a = aspect ratio (width/height); e = error correction level (0-8); t = total number of macro segments; s = macro segment index (0-99998); f = file ID; o0 = File Name (text); o1 = Segment Count (numeric); o2 = Time Stamp (numeric); o3 = Sender (text); o4 = Addressee (text); o5 = File Size (numeric); o6 = Checksum (numeric). NOTES: Parameters t, s and f are required for a Macro Control Block, all other parametrs are optional. To use a comma character ',' on text options, replace it with the character 255: "\xff".
      +

      +
      [ Top ]
      +
      +

      + + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:16 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDFBarcode.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDFBarcode.html new file mode 100644 index 00000000000..3284303fb59 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDFBarcode.html @@ -0,0 +1,1389 @@ + + +Docs For Class TCPDFBarcode + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Class: TCPDFBarcode

      +Source Location: /barcodes.php

      + + + + + + + + + + +
      + +

      Class Overview

      +

      +
      PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).


      +

      Author(s):

      +
        +
      • Nicola Asuni
      • +
      + + + + + + +

      Version:

      +
        +
      • 1.0.011
      • +
      + + +
      +

      Variables

      + +
      +

      Methods

      + +
      +
      + + + + + + + + +
      +
      + + +

      Class Details

      +
      +[line 55]
      +PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).




      +

      Tags:

      +
      + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni
      version:  1.0.011
      link:  http://www.tcpdf.org
      name:  TCPDFBarcode
      license:  LGPL
      +
      +


      +
      [ Top ]

      + +
      + +

      Class Variables

      +
      + +

      +

      $barcode_array =

      +

      [line 61]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  representation of barcode.
      access:  protected
      +
      + +
      +
      + + + + + +
      Type:  array
      +


      +
      [ Top ]

      +

      + +
      + +

      Class Methods

      +
      + +
      + +

      constructor __construct [line 77]

      +
      +
      +
      + TCPDFBarcode __construct( +string +$code, string +$type) +
      +

      + + 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)




      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to print
      string  $type  type of barcode:
      • C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.
      • C39+ : CODE 39 with checksum
      • C39E : CODE 39 EXTENDED
      • C39E+ : CODE 39 EXTENDED + CHECKSUM
      • C93 : CODE 93 - USS-93
      • S25 : Standard 2 of 5
      • S25+ : Standard 2 of 5 + CHECKSUM
      • I25 : Interleaved 2 of 5
      • I25+ : Interleaved 2 of 5 + CHECKSUM
      • C128A : CODE 128 A
      • C128B : CODE 128 B
      • C128C : CODE 128 C
      • EAN2 : 2-Digits UPC-Based Extention
      • EAN5 : 5-Digits UPC-Based Extention
      • EAN8 : EAN 8
      • EAN13 : EAN 13
      • UPCA : UPC-A
      • UPCE : UPC-E
      • MSI : MSI (Variation of Plessey code)
      • MSI+ : MSI + CHECKSUM (modulo 11)
      • POSTNET : POSTNET
      • PLANET : PLANET
      • RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)
      • KIX : KIX (Klant index - Customer index)
      • IMB: Intelligent Mail Barcode - Onecode - USPS-B-3200
      • CODABAR : CODABAR
      • CODE11 : CODE 11
      • PHARMA : PHARMACODE
      • PHARMA2T : PHARMACODE TWO-TRACKS
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_c128 [line 792]

      +
      +
      +
      + array barcode_c128( +string +$code, [string +$type = 'B']) +
      +

      + + C128 barcodes.

      Very capable code, excellent density, high reliability; in very wide use world-wide




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to represent.
      string  $type  barcode type: A, B or C
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_codabar [line 1480]

      +
      +
      +
      + array barcode_codabar( +string +$code) +
      +

      + + CODABAR barcodes.

      Older code often used in library systems, sometimes in blood banks




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $code  code to represent.
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_code11 [line 1536]

      +
      +
      +
      + array barcode_code11( +string +$code) +
      +

      + + CODE11 barcodes.

      Used primarily for labeling telecommunications equipment




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $code  code to represent.
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_code39 [line 230]

      +
      +
      +
      + array barcode_code39( +string +$code, [ +$extended = false], [boolean +$checksum = false]) +
      +

      + + CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.

      General-purpose code in very wide use world-wide




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + + + + + + +
      string  $code  code to represent.
      boolean  $checksum  if true add a checksum to the code
        $extended  
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_code93 [line 399]

      +
      +
      +
      + array barcode_code93( +string +$code, boolean +$checksum) +
      +

      + + CODE 93 - USS-93

      Compact code similar to Code 39




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to represent.
      boolean  $checksum  if true add a checksum to the code
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_eanext [line 1181]

      +
      +
      +
      + array barcode_eanext( +string +$code, [string +$len = 5]) +
      +

      + + UPC-Based Extentions

      2-Digit Ext.: Used to indicate magazines and newspaper issue numbers 5-Digit Ext.: Used to mark suggested retail price of books




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to represent.
      string  $len  barcode type: 2 = 2-Digit, 5 = 5-Digit
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_eanupc [line 988]

      +
      +
      +
      + array barcode_eanupc( +string +$code, [string +$len = 13]) +
      +

      + + EAN13 and UPC-A barcodes.

      EAN13: European Article Numbering international retail product code UPC-A: Universal product code seen on almost all retail products in the USA and Canada UPC-E: Short version of UPC symbol




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to represent.
      string  $len  barcode type: 6 = UPC-E, 8 = EAN8, 13 = EAN13, 12 = UPC-A
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_i25 [line 728]

      +
      +
      +
      + array barcode_i25( +string +$code, [boolean +$checksum = false]) +
      +

      + + Interleaved 2 of 5 barcodes.

      Compact numeric code, widely used in industry, air cargo Contains digits (0 to 9) and encodes the data in the width of both bars and spaces.




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to represent.
      boolean  $checksum  if true add a checksum to the code
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_imb [line 1717]

      +
      +
      +
      + array barcode_imb( +string +$code) +
      +

      + + IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200 (requires PHP bcmath extension) Intelligent Mail barcode is a 65-bar code for use on mail in the United States.

      The fields are described as follows:

      • The Barcode Identifier shall be assigned by USPS to encode the presort identification that is currently printed in human readable form on the optional endorsement line (OEL) as well as for future USPS use. This shall be two digits, with the second digit in the range of 0–4. The allowable encoding ranges shall be 00–04, 10–14, 20–24, 30–34, 40–44, 50–54, 60–64, 70–74, 80–84, and 90–94.
      • The Service Type Identifier shall be assigned by USPS for any combination of services requested on the mailpiece. The allowable encoding range shall be 000http://it2.php.net/manual/en/function.dechex.php–999. Each 3-digit value shall correspond to a particular mail class with a particular combination of service(s). Each service program, such as OneCode Confirm and OneCode ACS, shall provide the list of Service Type Identifier values.
      • The Mailer or Customer Identifier shall be assigned by USPS as a unique, 6 or 9 digit number that identifies a business entity. The allowable encoding range for the 6 digit Mailer ID shall be 000000- 899999, while the allowable encoding range for the 9 digit Mailer ID shall be 900000000-999999999.
      • The Serial or Sequence Number shall be assigned by the mailer for uniquely identifying and tracking mailpieces. The allowable encoding range shall be 000000000–999999999 when used with a 6 digit Mailer ID and 000000-999999 when used with a 9 digit Mailer ID. e. The Delivery Point ZIP Code shall be assigned by the mailer for routing the mailpiece. This shall replace POSTNET for routing the mailpiece to its final delivery point. The length may be 0, 5, 9, or 11 digits. The allowable encoding ranges shall be no ZIP Code, 00000–99999, 000000000–999999999, and 00000000000–99999999999.




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $code  code to print, separate the ZIP (routing code) from the rest using a minus char '-' (BarcodeID_ServiceTypeID_MailerID_SerialNumber-RoutingCode)
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_msi [line 598]

      +
      +
      +
      + array barcode_msi( +string +$code, [boolean +$checksum = false]) +
      +

      + + MSI.

      Variation of Plessey code, with similar applications Contains digits (0 to 9) and encodes the data only in the width of bars.




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to represent.
      boolean  $checksum  if true add a checksum to the code (modulo 11)
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_pharmacode [line 1628]

      +
      +
      +
      + array barcode_pharmacode( +string +$code) +
      +

      + + Pharmacode

      Contains digits (0 to 9)




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $code  code to represent.
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_pharmacode2t [line 1654]

      +
      +
      +
      + array barcode_pharmacode2t( +string +$code) +
      +

      + + Pharmacode two-track

      Contains digits (0 to 9)




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $code  code to represent.
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_postnet [line 1256]

      +
      +
      +
      + array barcode_postnet( +string +$code, [boolean +$planet = false]) +
      +

      + + POSTNET and PLANET barcodes.

      Used by U.S. Postal Service for automated mail sorting




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  zip code to represent. Must be a string containing a zip code of the form DDDDD or DDDDD-DDDD.
      boolean  $planet  if true print the PLANET barcode, otherwise print POSTNET
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_rms4cc [line 1329]

      +
      +
      +
      + array barcode_rms4cc( +string +$code, [boolean +$kix = false]) +
      +

      + + RMS4CC - CBC - KIX RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code) - KIX (Klant index - Customer index) RM4SCC is the name of the barcode symbology used by the Royal Mail for its Cleanmail service.



      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to print
      boolean  $kix  if true prints the KIX variation (doesn't use the start and end symbols, and the checksum) - in this case the house number must be sufficed with an X and placed at the end of the code.
      +

      +
      [ Top ]
      +
      +
      + +

      method barcode_s25 [line 657]

      +
      +
      +
      + array barcode_s25( +string +$code, [boolean +$checksum = false]) +
      +

      + + Standard 2 of 5 barcodes.

      Used in airline ticket marking, photofinishing Contains digits (0 to 9) and encodes the data only in the width of bars.




      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to represent.
      boolean  $checksum  if true add a checksum to the code
      +

      +
      [ Top ]
      +
      +
      + +

      method binseq_to_array [line 698]

      +
      +
      +
      + array binseq_to_array( +string +$seq, +$bararray) +
      +

      + + Convert binary barcode sequence to TCPDF barcode array



      +

      Tags:

      +
      + + + + + + + +
      return:  barcode representation.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $seq  barcode as binary sequence òparam array $bararray TCPDF barcode array to fill up
        $bararray  
      +

      +
      [ Top ]
      +
      +
      + +

      method checksum_code39 [line 375]

      +
      +
      +
      + char checksum_code39( +string +$code) +
      +

      + + Calculate CODE 39 checksum (modulo 43).



      +

      Tags:

      +
      + + + + + + + +
      return:  checksum.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $code  code to represent.
      +

      +
      [ Top ]
      +
      +
      + +

      method checksum_code93 [line 527]

      +
      +
      +
      + string checksum_code93( +string +$code) +
      +

      + + Calculate CODE 93 checksum (modulo 47).



      +

      Tags:

      +
      + + + + + + + +
      return:  checksum code.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $code  code to represent.
      +

      +
      [ Top ]
      +
      +
      + +

      method checksum_s25 [line 572]

      +
      +
      +
      + int checksum_s25( +string +$code) +
      +

      + + Checksum for standard 2 of 5 barcodes.



      +

      Tags:

      +
      + + + + + + + +
      return:  checksum.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $code  code to process.
      +

      +
      [ Top ]
      +
      +
      + +

      method dec_to_hex [line 1841]

      +
      +
      +
      + string dec_to_hex( +string +$number) +
      +

      + + Convert large integer number to hexadecimal representation.

      (requires PHP bcmath extension)




      +

      Tags:

      +
      + + + + + + + +
      return:  hexadecimal representation
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $number  number to convert specified as a string
      +

      +
      [ Top ]
      +
      +
      + +

      method encode_code39_ext [line 324]

      +
      +
      +
      + encoded encode_code39_ext( +string +$code) +
      +

      + + Encode a string to be used for CODE 39 Extended mode.



      +

      Tags:

      +
      + + + + + + + +
      return:  string.
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $code  code to represent.
      +

      +
      [ Top ]
      +
      +
      + +

      method getBarcodeArray [line 85]

      +
      +
      +
      + array getBarcodeArray( +) +
      +

      + + Return an array representations of barcode.



      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +
      [ Top ]
      +
      +
      + +

      method hex_to_dec [line 1865]

      +
      +
      +
      + string hex_to_dec( +string +$hex) +
      +

      + + Convert large hexadecimal number to decimal representation (string).

      (requires PHP bcmath extension)




      +

      Tags:

      +
      + + + + + + + +
      return:  hexadecimal representation
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $hex  hexadecimal number to convert specified as a string
      +

      +
      [ Top ]
      +
      +
      + +

      method imb_crc11fcs [line 1882]

      +
      +
      +
      + int imb_crc11fcs( +string +$code_arr) +
      +

      + + Intelligent Mail Barcode calculation of Frame Check Sequence



      +

      Tags:

      +
      + + + + + + + +
      return:  11 bit Frame Check Sequence as integer (decimal base)
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      string  $code_arr  array of hexadecimal values (13 bytes holding 102 bits right justified).
      +

      +
      [ Top ]
      +
      +
      + +

      method imb_reverse_us [line 1918]

      +
      +
      +
      + int imb_reverse_us( +int +$num) +
      +

      + + Reverse unsigned short value



      +

      Tags:

      +
      + + + + + + + +
      return:  reversed value
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + +
      int  $num  value to reversr
      +

      +
      [ Top ]
      +
      +
      + +

      method imb_tables [line 1935]

      +
      +
      +
      + array imb_tables( +int +$n, int +$size) +
      +

      + + generate Nof13 tables used for Intelligent Mail Barcode



      +

      Tags:

      +
      + + + + + + + +
      return:  requested table
      access:  protected
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      int  $n  is the type of table: 2 for 2of13 table, 5 for 5of13table
      int  $size  size of table (78 for n=2 and 1287 for n=5)
      +

      +
      [ Top ]
      +
      +
      + +

      method setBarcode [line 95]

      +
      +
      +
      + array setBarcode( +string +$code, string +$type) +
      +

      + + Set the barcode.



      +

      Tags:

      +
      + + + + +
      access:  public
      +
      +

      + + +

      Parameters:

      +
      + + + + + + + + + + + +
      string  $code  code to print
      string  $type  type of barcode:
      • C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.
      • C39+ : CODE 39 with checksum
      • C39E : CODE 39 EXTENDED
      • C39E+ : CODE 39 EXTENDED + CHECKSUM
      • C93 : CODE 93 - USS-93
      • S25 : Standard 2 of 5
      • S25+ : Standard 2 of 5 + CHECKSUM
      • I25 : Interleaved 2 of 5
      • I25+ : Interleaved 2 of 5 + CHECKSUM
      • C128A : CODE 128 A
      • C128B : CODE 128 B
      • C128C : CODE 128 C
      • EAN2 : 2-Digits UPC-Based Extention
      • EAN5 : 5-Digits UPC-Based Extention
      • EAN8 : EAN 8
      • EAN13 : EAN 13
      • UPCA : UPC-A
      • UPCE : UPC-E
      • MSI : MSI (Variation of Plessey code)
      • MSI+ : MSI + CHECKSUM (modulo 11)
      • POSTNET : POSTNET
      • PLANET : PLANET
      • RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)
      • KIX : KIX (Klant index - Customer index)
      • IMB: Intelligent Mail Barcode - Onecode - USPS-B-3200
      • CODABAR : CODABAR
      • CODE11 : CODE 11
      • PHARMA : PHARMACODE
      • PHARMA2T : PHARMACODE TWO-TRACKS
      +

      +
      [ Top ]
      +
      +

      + + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:16 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html new file mode 100644 index 00000000000..03dd46c9e32 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/TCPDF_UNICODE_DATA.html @@ -0,0 +1,18715 @@ + + +Docs For Class TCPDF_UNICODE_DATA + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Class: TCPDF_UNICODE_DATA

      +Source Location: /unicode_data.php

      + + + + + + + + + +
      + +

      Class Overview

      +

      +
      This is a PHP class containing Unicde data for TCPDF library


      +

      Author(s):

      +
        +
      • Nicola Asuni - info@tecnick.com
      • +
      + + + + + + +

      Version:

      +
        +
      • 1.0.006
      • +
      + + +
      +

      Variables

      + +
      +
      + + + + + + + + +
      +
      + + +

      Class Details

      +
      +[line 56]
      +This is a PHP class containing Unicde data for TCPDF library



      +

      Tags:

      +
      + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni - info@tecnick.com
      version:  1.0.006
      link:  http://www.tcpdf.org
      name:  TCPDF_UNICODE_DATA
      license:  LGPL
      +
      +


      +
      [ Top ]

      + +
      + +

      Class Variables

      +
      + +

      +

      $uni_arabicsubst = array(
      +1569=>array(65152),1570=>array(65153,65154,65153,65154),1571=>array(65155,65156,65155,65156),1572=>array(65157,65158),1573=>array(65159,65160,65159,65160),1574=>array(65161,65162,65163,65164),1575=>array(65165,65166,65165,65166),1576=>array(65167,65168,65169,65170),1577=>array(65171,65172),1578=>array(65173,65174,65175,65176),1579=>array(65177,65178,65179,65180),1580=>array(65181,65182,65183,65184),1581=>array(65185,65186,65187,65188),1582=>array(65189,65190,65191,65192),1583=>array(65193,65194,65193,65194),1584=>array(65195,65196,65195,65196),1585=>array(65197,65198,65197,65198),1586=>array(65199,65200,65199,65200),1587=>array(65201,65202,65203,65204),1588=>array(65205,65206,65207,65208),1589=>array(65209,65210,65211,65212),1590=>array(65213,65214,65215,65216),1591=>array(65217,65218,65219,65220),1592=>array(65221,65222,65223,65224),1593=>array(65225,65226,65227,65228),1594=>array(65229,65230,65231,65232),1601=>array(65233,65234,65235,65236),1602=>array(65237,65238,65239,65240),1603=>array(65241,65242,65243,65244),1604=>array(65245,65246,65247,65248),1605=>array(65249,65250,65251,65252),1606=>array(65253,65254,65255,65256),1607=>array(65257,65258,65259,65260),1608=>array(65261,65262,65261,65262),1609=>array(65263,65264,64488,64489),1610=>array(65265,65266,65267,65268),1649=>array(64336,64337),1655=>array(64477),1657=>array(64358,64359,64360,64361),1658=>array(64350,64351,64352,64353),1659=>array(64338,64339,64340,64341),1662=>array(64342,64343,64344,64345),1663=>array(64354,64355,64356,64357),1664=>array(64346,64347,64348,64349),1667=>array(64374,64375,64376,64377),1668=>array(64370,64371,64372,64373),1670=>array(64378,64379,64380,64381),1671=>array(64382,64383,64384,64385),1672=>array(64392,64393),1676=>array(64388,64389),1677=>array(64386,64387),1678=>array(64390,64391),1681=>array(64396,64397),1688=>array(64394,64395,64394,64395),1700=>array(64362,64363,64364,64365),1702=>array(64366,64367,64368,64369),1705=>array(64398,64399,64400,64401),1709=>array(64467,64468,64469,64470),1711=>array(64402,64403,64404,64405),1713=>array(64410,64411,64412,64413),1715=>array(64406,64407,64408,64409),1722=>array(64414,64415),1723=>array(64416,64417,64418,64419),1726=>array(64426,64427,64428,64429),1728=>array(64420,64421),1729=>array(64422,64423,64424,64425),1733=>array(64480,64481),1734=>array(64473,64474),1735=>array(64471,64472),1736=>array(64475,64476),1737=>array(64482,64483),1739=>array(64478,64479),1740=>array(64508,64509,64510,64511),1744=>array(64484,64485,64486,64487),1746=>array(64430,64431),1747=>array(64432,64433))

      +

      [line 18236]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  shape substitutions: char code => (isolated, final, initial, medial)
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Arabic
      +


      +
      [ Top ]

      + +

      +

      $uni_diacritics = array (
      +1612=>64606, # Shadda + Dammatan
      +1613=>64607, # Shadda + Kasratan
      +1614=>64608, # Shadda + Fatha
      +1615=>64609, # Shadda + Damma
      +1616=>64610  # Shadda + Kasra
      +)

      +

      [line 18332]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  of character substitutions for sequences of two diacritics symbols. Putting the combining mark and character in the same glyph allows us to avoid the two marks overlapping each other in an illegible manner. second NSM char code => substitution char
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Array
      +


      +
      [ Top ]

      + +

      +

      $uni_laa_array = array (
      +1570 =>array(65269, 65270, 65269, 65270),1571=>array(65271,65272,65271,65272),1573=>array(65273,65274,65273,65274),1575=>array(65275,65276,65275,65276))

      +

      [line 18319]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  laa letter: char code => isolated, final, initial, medial
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Arabic
      +


      +
      [ Top ]

      + +

      +

      $uni_LRE =  8234

      +

      [line 74]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  code for Left-to-Right Embedding
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Unicode
      +


      +
      [ Top ]

      + +

      +

      $uni_LRM =  8206

      +

      [line 62]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  code for Left-to-Right Mark
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Unicode
      +


      +
      [ Top ]

      + +

      +

      $uni_LRO =  8237

      +

      [line 92]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  code for Left-to-Right Override
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Unicode
      +


      +
      [ Top ]

      + +

      +

      $uni_mirror = array (
      +0x0028=>0x0029,
      +0x0029=>0x0028,
      +0x003C=>0x003E,
      +0x003E=>0x003C,
      +0x005B=>0x005D,
      +0x005D=>0x005B,
      +0x007B=>0x007D,
      +0x007D=>0x007B,
      +0x00AB=>0x00BB,
      +0x00BB=>0x00AB,
      +0x0F3A=>0x0F3B,
      +0x0F3B=>0x0F3A,
      +0x0F3C=>0x0F3D,
      +0x0F3D=>0x0F3C,
      +0x169B=>0x169C,
      +0x169C=>0x169B,
      +0x2018=>0x2019,
      +0x2019=>0x2018,
      +0x201C=>0x201D,
      +0x201D=>0x201C,
      +0x2039=>0x203A,
      +0x203A=>0x2039,
      +0x2045=>0x2046,
      +0x2046=>0x2045,
      +0x207D=>0x207E,
      +0x207E=>0x207D,
      +0x208D=>0x208E,
      +0x208E=>0x208D,
      +0x2208=>0x220B,
      +0x2209=>0x220C,
      +0x220A=>0x220D,
      +0x220B=>0x2208,
      +0x220C=>0x2209,
      +0x220D=>0x220A,
      +0x2215=>0x29F5,
      +0x223C=>0x223D,
      +0x223D=>0x223C,
      +0x2243=>0x22CD,
      +0x2252=>0x2253,
      +0x2253=>0x2252,
      +0x2254=>0x2255,
      +0x2255=>0x2254,
      +0x2264=>0x2265,
      +0x2265=>0x2264,
      +0x2266=>0x2267,
      +0x2267=>0x2266,
      +0x2268=>0x2269,
      +0x2269=>0x2268,
      +0x226A=>0x226B,
      +0x226B=>0x226A,
      +0x226E=>0x226F,
      +0x226F=>0x226E,
      +0x2270=>0x2271,
      +0x2271=>0x2270,
      +0x2272=>0x2273,
      +0x2273=>0x2272,
      +0x2274=>0x2275,
      +0x2275=>0x2274,
      +0x2276=>0x2277,
      +0x2277=>0x2276,
      +0x2278=>0x2279,
      +0x2279=>0x2278,
      +0x227A=>0x227B,
      +0x227B=>0x227A,
      +0x227C=>0x227D,
      +0x227D=>0x227C,
      +0x227E=>0x227F,
      +0x227F=>0x227E,
      +0x2280=>0x2281,
      +0x2281=>0x2280,
      +0x2282=>0x2283,
      +0x2283=>0x2282,
      +0x2284=>0x2285,
      +0x2285=>0x2284,
      +0x2286=>0x2287,
      +0x2287=>0x2286,
      +0x2288=>0x2289,
      +0x2289=>0x2288,
      +0x228A=>0x228B,
      +0x228B=>0x228A,
      +0x228F=>0x2290,
      +0x2290=>0x228F,
      +0x2291=>0x2292,
      +0x2292=>0x2291,
      +0x2298=>0x29B8,
      +0x22A2=>0x22A3,
      +0x22A3=>0x22A2,
      +0x22A6=>0x2ADE,
      +0x22A8=>0x2AE4,
      +0x22A9=>0x2AE3,
      +0x22AB=>0x2AE5,
      +0x22B0=>0x22B1,
      +0x22B1=>0x22B0,
      +0x22B2=>0x22B3,
      +0x22B3=>0x22B2,
      +0x22B4=>0x22B5,
      +0x22B5=>0x22B4,
      +0x22B6=>0x22B7,
      +0x22B7=>0x22B6,
      +0x22C9=>0x22CA,
      +0x22CA=>0x22C9,
      +0x22CB=>0x22CC,
      +0x22CC=>0x22CB,
      +0x22CD=>0x2243,
      +0x22D0=>0x22D1,
      +0x22D1=>0x22D0,
      +0x22D6=>0x22D7,
      +0x22D7=>0x22D6,
      +0x22D8=>0x22D9,
      +0x22D9=>0x22D8,
      +0x22DA=>0x22DB,
      +0x22DB=>0x22DA,
      +0x22DC=>0x22DD,
      +0x22DD=>0x22DC,
      +0x22DE=>0x22DF,
      +0x22DF=>0x22DE,
      +0x22E0=>0x22E1,
      +0x22E1=>0x22E0,
      +0x22E2=>0x22E3,
      +0x22E3=>0x22E2,
      +0x22E4=>0x22E5,
      +0x22E5=>0x22E4,
      +0x22E6=>0x22E7,
      +0x22E7=>0x22E6,
      +0x22E8=>0x22E9,
      +0x22E9=>0x22E8,
      +0x22EA=>0x22EB,
      +0x22EB=>0x22EA,
      +0x22EC=>0x22ED,
      +0x22ED=>0x22EC,
      +0x22F0=>0x22F1,
      +0x22F1=>0x22F0,
      +0x22F2=>0x22FA,
      +0x22F3=>0x22FB,
      +0x22F4=>0x22FC,
      +0x22F6=>0x22FD,
      +0x22F7=>0x22FE,
      +0x22FA=>0x22F2,
      +0x22FB=>0x22F3,
      +0x22FC=>0x22F4,
      +0x22FD=>0x22F6,
      +0x22FE=>0x22F7,
      +0x2308=>0x2309,
      +0x2309=>0x2308,
      +0x230A=>0x230B,
      +0x230B=>0x230A,
      +0x2329=>0x232A,
      +0x232A=>0x2329,
      +0x2768=>0x2769,
      +0x2769=>0x2768,
      +0x276A=>0x276B,
      +0x276B=>0x276A,
      +0x276C=>0x276D,
      +0x276D=>0x276C,
      +0x276E=>0x276F,
      +0x276F=>0x276E,
      +0x2770=>0x2771,
      +0x2771=>0x2770,
      +0x2772=>0x2773,
      +0x2773=>0x2772,
      +0x2774=>0x2775,
      +0x2775=>0x2774,
      +0x27C3=>0x27C4,
      +0x27C4=>0x27C3,
      +0x27C5=>0x27C6,
      +0x27C6=>0x27C5,
      +0x27D5=>0x27D6,
      +0x27D6=>0x27D5,
      +0x27DD=>0x27DE,
      +0x27DE=>0x27DD,
      +0x27E2=>0x27E3,
      +0x27E3=>0x27E2,
      +0x27E4=>0x27E5,
      +0x27E5=>0x27E4,
      +0x27E6=>0x27E7,
      +0x27E7=>0x27E6,
      +0x27E8=>0x27E9,
      +0x27E9=>0x27E8,
      +0x27EA=>0x27EB,
      +0x27EB=>0x27EA,
      +0x2983=>0x2984,
      +0x2984=>0x2983,
      +0x2985=>0x2986,
      +0x2986=>0x2985,
      +0x2987=>0x2988,
      +0x2988=>0x2987,
      +0x2989=>0x298A,
      +0x298A=>0x2989,
      +0x298B=>0x298C,
      +0x298C=>0x298B,
      +0x298D=>0x2990,
      +0x298E=>0x298F,
      +0x298F=>0x298E,
      +0x2990=>0x298D,
      +0x2991=>0x2992,
      +0x2992=>0x2991,
      +0x2993=>0x2994,
      +0x2994=>0x2993,
      +0x2995=>0x2996,
      +0x2996=>0x2995,
      +0x2997=>0x2998,
      +0x2998=>0x2997,
      +0x29B8=>0x2298,
      +0x29C0=>0x29C1,
      +0x29C1=>0x29C0,
      +0x29C4=>0x29C5,
      +0x29C5=>0x29C4,
      +0x29CF=>0x29D0,
      +0x29D0=>0x29CF,
      +0x29D1=>0x29D2,
      +0x29D2=>0x29D1,
      +0x29D4=>0x29D5,
      +0x29D5=>0x29D4,
      +0x29D8=>0x29D9,
      +0x29D9=>0x29D8,
      +0x29DA=>0x29DB,
      +0x29DB=>0x29DA,
      +0x29F5=>0x2215,
      +0x29F8=>0x29F9,
      +0x29F9=>0x29F8,
      +0x29FC=>0x29FD,
      +0x29FD=>0x29FC,
      +0x2A2B=>0x2A2C,
      +0x2A2C=>0x2A2B,
      +0x2A2D=>0x2A2E,
      +0x2A2E=>0x2A2D,
      +0x2A34=>0x2A35,
      +0x2A35=>0x2A34,
      +0x2A3C=>0x2A3D,
      +0x2A3D=>0x2A3C,
      +0x2A64=>0x2A65,
      +0x2A65=>0x2A64,
      +0x2A79=>0x2A7A,
      +0x2A7A=>0x2A79,
      +0x2A7D=>0x2A7E,
      +0x2A7E=>0x2A7D,
      +0x2A7F=>0x2A80,
      +0x2A80=>0x2A7F,
      +0x2A81=>0x2A82,
      +0x2A82=>0x2A81,
      +0x2A83=>0x2A84,
      +0x2A84=>0x2A83,
      +0x2A8B=>0x2A8C,
      +0x2A8C=>0x2A8B,
      +0x2A91=>0x2A92,
      +0x2A92=>0x2A91,
      +0x2A93=>0x2A94,
      +0x2A94=>0x2A93,
      +0x2A95=>0x2A96,
      +0x2A96=>0x2A95,
      +0x2A97=>0x2A98,
      +0x2A98=>0x2A97,
      +0x2A99=>0x2A9A,
      +0x2A9A=>0x2A99,
      +0x2A9B=>0x2A9C,
      +0x2A9C=>0x2A9B,
      +0x2AA1=>0x2AA2,
      +0x2AA2=>0x2AA1,
      +0x2AA6=>0x2AA7,
      +0x2AA7=>0x2AA6,
      +0x2AA8=>0x2AA9,
      +0x2AA9=>0x2AA8,
      +0x2AAA=>0x2AAB,
      +0x2AAB=>0x2AAA,
      +0x2AAC=>0x2AAD,
      +0x2AAD=>0x2AAC,
      +0x2AAF=>0x2AB0,
      +0x2AB0=>0x2AAF,
      +0x2AB3=>0x2AB4,
      +0x2AB4=>0x2AB3,
      +0x2ABB=>0x2ABC,
      +0x2ABC=>0x2ABB,
      +0x2ABD=>0x2ABE,
      +0x2ABE=>0x2ABD,
      +0x2ABF=>0x2AC0,
      +0x2AC0=>0x2ABF,
      +0x2AC1=>0x2AC2,
      +0x2AC2=>0x2AC1,
      +0x2AC3=>0x2AC4,
      +0x2AC4=>0x2AC3,
      +0x2AC5=>0x2AC6,
      +0x2AC6=>0x2AC5,
      +0x2ACD=>0x2ACE,
      +0x2ACE=>0x2ACD,
      +0x2ACF=>0x2AD0,
      +0x2AD0=>0x2ACF,
      +0x2AD1=>0x2AD2,
      +0x2AD2=>0x2AD1,
      +0x2AD3=>0x2AD4,
      +0x2AD4=>0x2AD3,
      +0x2AD5=>0x2AD6,
      +0x2AD6=>0x2AD5,
      +0x2ADE=>0x22A6,
      +0x2AE3=>0x22A9,
      +0x2AE4=>0x22A8,
      +0x2AE5=>0x22AB,
      +0x2AEC=>0x2AED,
      +0x2AED=>0x2AEC,
      +0x2AF7=>0x2AF8,
      +0x2AF8=>0x2AF7,
      +0x2AF9=>0x2AFA,
      +0x2AFA=>0x2AF9,
      +0x2E02=>0x2E03,
      +0x2E03=>0x2E02,
      +0x2E04=>0x2E05,
      +0x2E05=>0x2E04,
      +0x2E09=>0x2E0A,
      +0x2E0A=>0x2E09,
      +0x2E0C=>0x2E0D,
      +0x2E0D=>0x2E0C,
      +0x2E1C=>0x2E1D,
      +0x2E1D=>0x2E1C,
      +0x3008=>0x3009,
      +0x3009=>0x3008,
      +0x300A=>0x300B,
      +0x300B=>0x300A,
      +0x300C=>0x300D,
      +0x300D=>0x300C,
      +0x300E=>0x300F,
      +0x300F=>0x300E,
      +0x3010=>0x3011,
      +0x3011=>0x3010,
      +0x3014=>0x3015,
      +0x3015=>0x3014,
      +0x3016=>0x3017,
      +0x3017=>0x3016,
      +0x3018=>0x3019,
      +0x3019=>0x3018,
      +0x301A=>0x301B,
      +0x301B=>0x301A,
      +0x301D=>0x301E,
      +0x301E=>0x301D,
      +0xFE59=>0xFE5A,
      +0xFE5A=>0xFE59,
      +0xFE5B=>0xFE5C,
      +0xFE5C=>0xFE5B,
      +0xFE5D=>0xFE5E,
      +0xFE5E=>0xFE5D,
      +0xFE64=>0xFE65,
      +0xFE65=>0xFE64,
      +0xFF08=>0xFF09,
      +0xFF09=>0xFF08,
      +0xFF1C=>0xFF1E,
      +0xFF1E=>0xFF1C,
      +0xFF3B=>0xFF3D,
      +0xFF3D=>0xFF3B,
      +0xFF5B=>0xFF5D,
      +0xFF5D=>0xFF5B,
      +0xFF5F=>0xFF60,
      +0xFF60=>0xFF5F,
      +0xFF62=>0xFF63,
      +0xFF63=>0xFF62)

      +

      [line 17878]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  unicode characters. For information on bidi mirroring, see UAX #9: Bidirectional Algorithm, at http://www.unicode.org/unicode/reports/tr9/
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Mirror
      +


      +
      [ Top ]

      + +

      +

      $uni_PDF =  8236

      +

      [line 86]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  code for Pop Directional Format
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Unicode
      +


      +
      [ Top ]

      + +

      +

      $uni_RE_PATTERN_ARABIC =  "/(
      +        \xD8[\x80-\x83\x8B\x8D\x9B\x9E\x9F\xA1-\xBA]  # AL
      +      | \xD9[\x80-\x8A\xAD-\xAF\xB1-\xBF]             # AL
      +      | \xDA[\x80-\xBF]                               # AL
      +      | \xDB[\x80-\x95\x9D\xA5\xA6\xAE\xAF\xBA-\xBF]  # AL
      +      | \xDC[\x80-\x8D\x90\x92-\xAF]                  # AL
      +      | \xDD[\x8D-\xAD]                               # AL
      +      | \xDE[\x80-\xA5\xB1]                           # AL
      +      | \xEF\xAD[\x90-\xBF]                           # AL
      +      | \xEF\xAE[\x80-\xB1]                           # AL
      +      | \xEF\xAF[\x93-\xBF]                           # AL
      +      | \xEF[\xB0-\xB3][\x80-\xBF]                    # AL
      +      | \xEF\xB4[\x80-\xBD]                           # AL
      +      | \xEF\xB5[\x90-\xBF]                           # AL
      +      | \xEF\xB6[\x80-\x8F\x92-\xBF]                  # AL
      +      | \xEF\xB7[\x80-\x87\xB0-\xBC]                  # AL
      +      | \xEF\xB9[\xB0-\xB4\xB6-\xBF]                  # AL
      +      | \xEF\xBA[\x80-\xBF]                           # AL
      +      | \xEF\xBB[\x80-\xBC]                           # AL
      +      | \xD9[\xA0-\xA9\xAB\xAC]                       # AN
      +      )/x"

      +

      [line 123]

      +

      +

      Tags:

      +
      + + + + +
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  mixed
      +


      +
      [ Top ]

      + +

      +

      $uni_RE_PATTERN_RTL =  "/(
      +     \xD6\xBE                                             # R
      +   | \xD7[\x80\x83\x86\x90-\xAA\xB0-\xB4]                 # R
      +   | \xDF[\x80-\xAA\xB4\xB5\xBA]                          # R
      +   | \xE2\x80\x8F                                         # R
      +   | \xEF\xAC[\x9D\x9F\xA0-\xA8\xAA-\xB6\xB8-\xBC\xBE]    # R
      +   | \xEF\xAD[\x80\x81\x83\x84\x86-\x8F]                  # R
      +   | \xF0\x90\xA0[\x80-\x85\x88\x8A-\xB5\xB7\xB8\xBC\xBF] # R
      +   | \xF0\x90\xA4[\x80-\x99]                              # R
      +   | \xF0\x90\xA8[\x80\x90-\x93\x95-\x97\x99-\xB3]        # R
      +   | \xF0\x90\xA9[\x80-\x87\x90-\x98]                     # R
      +   | \xE2\x80[\xAB\xAE]                                   # RLE & RLO
      +   )/x"

      +

      [line 104]

      +

      +

      Tags:

      +
      + + + + +
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  mixed
      +


      +
      [ Top ]

      + +

      +

      $uni_RLE =  8235

      +

      [line 80]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  code for Right-to-Left Embedding
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Unicode
      +


      +
      [ Top ]

      + +

      +

      $uni_RLM =  8207

      +

      [line 68]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  code for Right-to-Left Mark
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Unicode
      +


      +
      [ Top ]

      + +

      +

      $uni_RLO =  8238

      +

      [line 98]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  code for Right-to-Left Override
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Unicode
      +


      +
      [ Top ]

      + +

      +

      $uni_type = array(
      +0=>'BN',
      +1=>'BN',
      +2=>'BN',
      +3=>'BN',
      +4=>'BN',
      +5=>'BN',
      +6=>'BN',
      +7=>'BN',
      +8=>'BN',
      +9=>'S',
      +10=>'B',
      +11=>'S',
      +12=>'WS',
      +13=>'B',
      +14=>'BN',
      +15=>'BN',
      +16=>'BN',
      +17=>'BN',
      +18=>'BN',
      +19=>'BN',
      +20=>'BN',
      +21=>'BN',
      +22=>'BN',
      +23=>'BN',
      +24=>'BN',
      +25=>'BN',
      +26=>'BN',
      +27=>'BN',
      +28=>'B',
      +29=>'B',
      +30=>'B',
      +31=>'S',
      +32=>'WS',
      +33=>'ON',
      +34=>'ON',
      +35=>'ET',
      +36=>'ET',
      +37=>'ET',
      +38=>'ON',
      +39=>'ON',
      +40=>'ON',
      +41=>'ON',
      +42=>'ON',
      +43=>'ES',
      +44=>'CS',
      +45=>'ES',
      +46=>'CS',
      +47=>'CS',
      +48=>'EN',
      +49=>'EN',
      +50=>'EN',
      +51=>'EN',
      +52=>'EN',
      +53=>'EN',
      +54=>'EN',
      +55=>'EN',
      +56=>'EN',
      +57=>'EN',
      +58=>'CS',
      +59=>'ON',
      +60=>'ON',
      +61=>'ON',
      +62=>'ON',
      +63=>'ON',
      +64=>'ON',
      +65=>'L',
      +66=>'L',
      +67=>'L',
      +68=>'L',
      +69=>'L',
      +70=>'L',
      +71=>'L',
      +72=>'L',
      +73=>'L',
      +74=>'L',
      +75=>'L',
      +76=>'L',
      +77=>'L',
      +78=>'L',
      +79=>'L',
      +80=>'L',
      +81=>'L',
      +82=>'L',
      +83=>'L',
      +84=>'L',
      +85=>'L',
      +86=>'L',
      +87=>'L',
      +88=>'L',
      +89=>'L',
      +90=>'L',
      +91=>'ON',
      +92=>'ON',
      +93=>'ON',
      +94=>'ON',
      +95=>'ON',
      +96=>'ON',
      +97=>'L',
      +98=>'L',
      +99=>'L',
      +100=>'L',
      +101=>'L',
      +102=>'L',
      +103=>'L',
      +104=>'L',
      +105=>'L',
      +106=>'L',
      +107=>'L',
      +108=>'L',
      +109=>'L',
      +110=>'L',
      +111=>'L',
      +112=>'L',
      +113=>'L',
      +114=>'L',
      +115=>'L',
      +116=>'L',
      +117=>'L',
      +118=>'L',
      +119=>'L',
      +120=>'L',
      +121=>'L',
      +122=>'L',
      +123=>'ON',
      +124=>'ON',
      +125=>'ON',
      +126=>'ON',
      +127=>'BN',
      +128=>'BN',
      +129=>'BN',
      +130=>'BN',
      +131=>'BN',
      +132=>'BN',
      +133=>'B',
      +134=>'BN',
      +135=>'BN',
      +136=>'BN',
      +137=>'BN',
      +138=>'BN',
      +139=>'BN',
      +140=>'BN',
      +141=>'BN',
      +142=>'BN',
      +143=>'BN',
      +144=>'BN',
      +145=>'BN',
      +146=>'BN',
      +147=>'BN',
      +148=>'BN',
      +149=>'BN',
      +150=>'BN',
      +151=>'BN',
      +152=>'BN',
      +153=>'BN',
      +154=>'BN',
      +155=>'BN',
      +156=>'BN',
      +157=>'BN',
      +158=>'BN',
      +159=>'BN',
      +160=>'CS',
      +161=>'ON',
      +162=>'ET',
      +163=>'ET',
      +164=>'ET',
      +165=>'ET',
      +166=>'ON',
      +167=>'ON',
      +168=>'ON',
      +169=>'ON',
      +170=>'L',
      +171=>'ON',
      +172=>'ON',
      +173=>'BN',
      +174=>'ON',
      +175=>'ON',
      +176=>'ET',
      +177=>'ET',
      +178=>'EN',
      +179=>'EN',
      +180=>'ON',
      +181=>'L',
      +182=>'ON',
      +183=>'ON',
      +184=>'ON',
      +185=>'EN',
      +186=>'L',
      +187=>'ON',
      +188=>'ON',
      +189=>'ON',
      +190=>'ON',
      +191=>'ON',
      +192=>'L',
      +193=>'L',
      +194=>'L',
      +195=>'L',
      +196=>'L',
      +197=>'L',
      +198=>'L',
      +199=>'L',
      +200=>'L',
      +201=>'L',
      +202=>'L',
      +203=>'L',
      +204=>'L',
      +205=>'L',
      +206=>'L',
      +207=>'L',
      +208=>'L',
      +209=>'L',
      +210=>'L',
      +211=>'L',
      +212=>'L',
      +213=>'L',
      +214=>'L',
      +215=>'ON',
      +216=>'L',
      +217=>'L',
      +218=>'L',
      +219=>'L',
      +220=>'L',
      +221=>'L',
      +222=>'L',
      +223=>'L',
      +224=>'L',
      +225=>'L',
      +226=>'L',
      +227=>'L',
      +228=>'L',
      +229=>'L',
      +230=>'L',
      +231=>'L',
      +232=>'L',
      +233=>'L',
      +234=>'L',
      +235=>'L',
      +236=>'L',
      +237=>'L',
      +238=>'L',
      +239=>'L',
      +240=>'L',
      +241=>'L',
      +242=>'L',
      +243=>'L',
      +244=>'L',
      +245=>'L',
      +246=>'L',
      +247=>'ON',
      +248=>'L',
      +249=>'L',
      +250=>'L',
      +251=>'L',
      +252=>'L',
      +253=>'L',
      +254=>'L',
      +255=>'L',
      +256=>'L',
      +257=>'L',
      +258=>'L',
      +259=>'L',
      +260=>'L',
      +261=>'L',
      +262=>'L',
      +263=>'L',
      +264=>'L',
      +265=>'L',
      +266=>'L',
      +267=>'L',
      +268=>'L',
      +269=>'L',
      +270=>'L',
      +271=>'L',
      +272=>'L',
      +273=>'L',
      +274=>'L',
      +275=>'L',
      +276=>'L',
      +277=>'L',
      +278=>'L',
      +279=>'L',
      +280=>'L',
      +281=>'L',
      +282=>'L',
      +283=>'L',
      +284=>'L',
      +285=>'L',
      +286=>'L',
      +287=>'L',
      +288=>'L',
      +289=>'L',
      +290=>'L',
      +291=>'L',
      +292=>'L',
      +293=>'L',
      +294=>'L',
      +295=>'L',
      +296=>'L',
      +297=>'L',
      +298=>'L',
      +299=>'L',
      +300=>'L',
      +301=>'L',
      +302=>'L',
      +303=>'L',
      +304=>'L',
      +305=>'L',
      +306=>'L',
      +307=>'L',
      +308=>'L',
      +309=>'L',
      +310=>'L',
      +311=>'L',
      +312=>'L',
      +313=>'L',
      +314=>'L',
      +315=>'L',
      +316=>'L',
      +317=>'L',
      +318=>'L',
      +319=>'L',
      +320=>'L',
      +321=>'L',
      +322=>'L',
      +323=>'L',
      +324=>'L',
      +325=>'L',
      +326=>'L',
      +327=>'L',
      +328=>'L',
      +329=>'L',
      +330=>'L',
      +331=>'L',
      +332=>'L',
      +333=>'L',
      +334=>'L',
      +335=>'L',
      +336=>'L',
      +337=>'L',
      +338=>'L',
      +339=>'L',
      +340=>'L',
      +341=>'L',
      +342=>'L',
      +343=>'L',
      +344=>'L',
      +345=>'L',
      +346=>'L',
      +347=>'L',
      +348=>'L',
      +349=>'L',
      +350=>'L',
      +351=>'L',
      +352=>'L',
      +353=>'L',
      +354=>'L',
      +355=>'L',
      +356=>'L',
      +357=>'L',
      +358=>'L',
      +359=>'L',
      +360=>'L',
      +361=>'L',
      +362=>'L',
      +363=>'L',
      +364=>'L',
      +365=>'L',
      +366=>'L',
      +367=>'L',
      +368=>'L',
      +369=>'L',
      +370=>'L',
      +371=>'L',
      +372=>'L',
      +373=>'L',
      +374=>'L',
      +375=>'L',
      +376=>'L',
      +377=>'L',
      +378=>'L',
      +379=>'L',
      +380=>'L',
      +381=>'L',
      +382=>'L',
      +383=>'L',
      +384=>'L',
      +385=>'L',
      +386=>'L',
      +387=>'L',
      +388=>'L',
      +389=>'L',
      +390=>'L',
      +391=>'L',
      +392=>'L',
      +393=>'L',
      +394=>'L',
      +395=>'L',
      +396=>'L',
      +397=>'L',
      +398=>'L',
      +399=>'L',
      +400=>'L',
      +401=>'L',
      +402=>'L',
      +403=>'L',
      +404=>'L',
      +405=>'L',
      +406=>'L',
      +407=>'L',
      +408=>'L',
      +409=>'L',
      +410=>'L',
      +411=>'L',
      +412=>'L',
      +413=>'L',
      +414=>'L',
      +415=>'L',
      +416=>'L',
      +417=>'L',
      +418=>'L',
      +419=>'L',
      +420=>'L',
      +421=>'L',
      +422=>'L',
      +423=>'L',
      +424=>'L',
      +425=>'L',
      +426=>'L',
      +427=>'L',
      +428=>'L',
      +429=>'L',
      +430=>'L',
      +431=>'L',
      +432=>'L',
      +433=>'L',
      +434=>'L',
      +435=>'L',
      +436=>'L',
      +437=>'L',
      +438=>'L',
      +439=>'L',
      +440=>'L',
      +441=>'L',
      +442=>'L',
      +443=>'L',
      +444=>'L',
      +445=>'L',
      +446=>'L',
      +447=>'L',
      +448=>'L',
      +449=>'L',
      +450=>'L',
      +451=>'L',
      +452=>'L',
      +453=>'L',
      +454=>'L',
      +455=>'L',
      +456=>'L',
      +457=>'L',
      +458=>'L',
      +459=>'L',
      +460=>'L',
      +461=>'L',
      +462=>'L',
      +463=>'L',
      +464=>'L',
      +465=>'L',
      +466=>'L',
      +467=>'L',
      +468=>'L',
      +469=>'L',
      +470=>'L',
      +471=>'L',
      +472=>'L',
      +473=>'L',
      +474=>'L',
      +475=>'L',
      +476=>'L',
      +477=>'L',
      +478=>'L',
      +479=>'L',
      +480=>'L',
      +481=>'L',
      +482=>'L',
      +483=>'L',
      +484=>'L',
      +485=>'L',
      +486=>'L',
      +487=>'L',
      +488=>'L',
      +489=>'L',
      +490=>'L',
      +491=>'L',
      +492=>'L',
      +493=>'L',
      +494=>'L',
      +495=>'L',
      +496=>'L',
      +497=>'L',
      +498=>'L',
      +499=>'L',
      +500=>'L',
      +501=>'L',
      +502=>'L',
      +503=>'L',
      +504=>'L',
      +505=>'L',
      +506=>'L',
      +507=>'L',
      +508=>'L',
      +509=>'L',
      +510=>'L',
      +511=>'L',
      +512=>'L',
      +513=>'L',
      +514=>'L',
      +515=>'L',
      +516=>'L',
      +517=>'L',
      +518=>'L',
      +519=>'L',
      +520=>'L',
      +521=>'L',
      +522=>'L',
      +523=>'L',
      +524=>'L',
      +525=>'L',
      +526=>'L',
      +527=>'L',
      +528=>'L',
      +529=>'L',
      +530=>'L',
      +531=>'L',
      +532=>'L',
      +533=>'L',
      +534=>'L',
      +535=>'L',
      +536=>'L',
      +537=>'L',
      +538=>'L',
      +539=>'L',
      +540=>'L',
      +541=>'L',
      +542=>'L',
      +543=>'L',
      +544=>'L',
      +545=>'L',
      +546=>'L',
      +547=>'L',
      +548=>'L',
      +549=>'L',
      +550=>'L',
      +551=>'L',
      +552=>'L',
      +553=>'L',
      +554=>'L',
      +555=>'L',
      +556=>'L',
      +557=>'L',
      +558=>'L',
      +559=>'L',
      +560=>'L',
      +561=>'L',
      +562=>'L',
      +563=>'L',
      +564=>'L',
      +565=>'L',
      +566=>'L',
      +567=>'L',
      +568=>'L',
      +569=>'L',
      +570=>'L',
      +571=>'L',
      +572=>'L',
      +573=>'L',
      +574=>'L',
      +575=>'L',
      +576=>'L',
      +577=>'L',
      +578=>'L',
      +579=>'L',
      +580=>'L',
      +581=>'L',
      +582=>'L',
      +583=>'L',
      +584=>'L',
      +585=>'L',
      +586=>'L',
      +587=>'L',
      +588=>'L',
      +589=>'L',
      +590=>'L',
      +591=>'L',
      +592=>'L',
      +593=>'L',
      +594=>'L',
      +595=>'L',
      +596=>'L',
      +597=>'L',
      +598=>'L',
      +599=>'L',
      +600=>'L',
      +601=>'L',
      +602=>'L',
      +603=>'L',
      +604=>'L',
      +605=>'L',
      +606=>'L',
      +607=>'L',
      +608=>'L',
      +609=>'L',
      +610=>'L',
      +611=>'L',
      +612=>'L',
      +613=>'L',
      +614=>'L',
      +615=>'L',
      +616=>'L',
      +617=>'L',
      +618=>'L',
      +619=>'L',
      +620=>'L',
      +621=>'L',
      +622=>'L',
      +623=>'L',
      +624=>'L',
      +625=>'L',
      +626=>'L',
      +627=>'L',
      +628=>'L',
      +629=>'L',
      +630=>'L',
      +631=>'L',
      +632=>'L',
      +633=>'L',
      +634=>'L',
      +635=>'L',
      +636=>'L',
      +637=>'L',
      +638=>'L',
      +639=>'L',
      +640=>'L',
      +641=>'L',
      +642=>'L',
      +643=>'L',
      +644=>'L',
      +645=>'L',
      +646=>'L',
      +647=>'L',
      +648=>'L',
      +649=>'L',
      +650=>'L',
      +651=>'L',
      +652=>'L',
      +653=>'L',
      +654=>'L',
      +655=>'L',
      +656=>'L',
      +657=>'L',
      +658=>'L',
      +659=>'L',
      +660=>'L',
      +661=>'L',
      +662=>'L',
      +663=>'L',
      +664=>'L',
      +665=>'L',
      +666=>'L',
      +667=>'L',
      +668=>'L',
      +669=>'L',
      +670=>'L',
      +671=>'L',
      +672=>'L',
      +673=>'L',
      +674=>'L',
      +675=>'L',
      +676=>'L',
      +677=>'L',
      +678=>'L',
      +679=>'L',
      +680=>'L',
      +681=>'L',
      +682=>'L',
      +683=>'L',
      +684=>'L',
      +685=>'L',
      +686=>'L',
      +687=>'L',
      +688=>'L',
      +689=>'L',
      +690=>'L',
      +691=>'L',
      +692=>'L',
      +693=>'L',
      +694=>'L',
      +695=>'L',
      +696=>'L',
      +697=>'ON',
      +698=>'ON',
      +699=>'L',
      +700=>'L',
      +701=>'L',
      +702=>'L',
      +703=>'L',
      +704=>'L',
      +705=>'L',
      +706=>'ON',
      +707=>'ON',
      +708=>'ON',
      +709=>'ON',
      +710=>'ON',
      +711=>'ON',
      +712=>'ON',
      +713=>'ON',
      +714=>'ON',
      +715=>'ON',
      +716=>'ON',
      +717=>'ON',
      +718=>'ON',
      +719=>'ON',
      +720=>'L',
      +721=>'L',
      +722=>'ON',
      +723=>'ON',
      +724=>'ON',
      +725=>'ON',
      +726=>'ON',
      +727=>'ON',
      +728=>'ON',
      +729=>'ON',
      +730=>'ON',
      +731=>'ON',
      +732=>'ON',
      +733=>'ON',
      +734=>'ON',
      +735=>'ON',
      +736=>'L',
      +737=>'L',
      +738=>'L',
      +739=>'L',
      +740=>'L',
      +741=>'ON',
      +742=>'ON',
      +743=>'ON',
      +744=>'ON',
      +745=>'ON',
      +746=>'ON',
      +747=>'ON',
      +748=>'ON',
      +749=>'ON',
      +750=>'L',
      +751=>'ON',
      +752=>'ON',
      +753=>'ON',
      +754=>'ON',
      +755=>'ON',
      +756=>'ON',
      +757=>'ON',
      +758=>'ON',
      +759=>'ON',
      +760=>'ON',
      +761=>'ON',
      +762=>'ON',
      +763=>'ON',
      +764=>'ON',
      +765=>'ON',
      +766=>'ON',
      +767=>'ON',
      +768=>'NSM',
      +769=>'NSM',
      +770=>'NSM',
      +771=>'NSM',
      +772=>'NSM',
      +773=>'NSM',
      +774=>'NSM',
      +775=>'NSM',
      +776=>'NSM',
      +777=>'NSM',
      +778=>'NSM',
      +779=>'NSM',
      +780=>'NSM',
      +781=>'NSM',
      +782=>'NSM',
      +783=>'NSM',
      +784=>'NSM',
      +785=>'NSM',
      +786=>'NSM',
      +787=>'NSM',
      +788=>'NSM',
      +789=>'NSM',
      +790=>'NSM',
      +791=>'NSM',
      +792=>'NSM',
      +793=>'NSM',
      +794=>'NSM',
      +795=>'NSM',
      +796=>'NSM',
      +797=>'NSM',
      +798=>'NSM',
      +799=>'NSM',
      +800=>'NSM',
      +801=>'NSM',
      +802=>'NSM',
      +803=>'NSM',
      +804=>'NSM',
      +805=>'NSM',
      +806=>'NSM',
      +807=>'NSM',
      +808=>'NSM',
      +809=>'NSM',
      +810=>'NSM',
      +811=>'NSM',
      +812=>'NSM',
      +813=>'NSM',
      +814=>'NSM',
      +815=>'NSM',
      +816=>'NSM',
      +817=>'NSM',
      +818=>'NSM',
      +819=>'NSM',
      +820=>'NSM',
      +821=>'NSM',
      +822=>'NSM',
      +823=>'NSM',
      +824=>'NSM',
      +825=>'NSM',
      +826=>'NSM',
      +827=>'NSM',
      +828=>'NSM',
      +829=>'NSM',
      +830=>'NSM',
      +831=>'NSM',
      +832=>'NSM',
      +833=>'NSM',
      +834=>'NSM',
      +835=>'NSM',
      +836=>'NSM',
      +837=>'NSM',
      +838=>'NSM',
      +839=>'NSM',
      +840=>'NSM',
      +841=>'NSM',
      +842=>'NSM',
      +843=>'NSM',
      +844=>'NSM',
      +845=>'NSM',
      +846=>'NSM',
      +847=>'NSM',
      +848=>'NSM',
      +849=>'NSM',
      +850=>'NSM',
      +851=>'NSM',
      +852=>'NSM',
      +853=>'NSM',
      +854=>'NSM',
      +855=>'NSM',
      +856=>'NSM',
      +857=>'NSM',
      +858=>'NSM',
      +859=>'NSM',
      +860=>'NSM',
      +861=>'NSM',
      +862=>'NSM',
      +863=>'NSM',
      +864=>'NSM',
      +865=>'NSM',
      +866=>'NSM',
      +867=>'NSM',
      +868=>'NSM',
      +869=>'NSM',
      +870=>'NSM',
      +871=>'NSM',
      +872=>'NSM',
      +873=>'NSM',
      +874=>'NSM',
      +875=>'NSM',
      +876=>'NSM',
      +877=>'NSM',
      +878=>'NSM',
      +879=>'NSM',
      +884=>'ON',
      +885=>'ON',
      +890=>'L',
      +891=>'L',
      +892=>'L',
      +893=>'L',
      +894=>'ON',
      +900=>'ON',
      +901=>'ON',
      +902=>'L',
      +903=>'ON',
      +904=>'L',
      +905=>'L',
      +906=>'L',
      +908=>'L',
      +910=>'L',
      +911=>'L',
      +912=>'L',
      +913=>'L',
      +914=>'L',
      +915=>'L',
      +916=>'L',
      +917=>'L',
      +918=>'L',
      +919=>'L',
      +920=>'L',
      +921=>'L',
      +922=>'L',
      +923=>'L',
      +924=>'L',
      +925=>'L',
      +926=>'L',
      +927=>'L',
      +928=>'L',
      +929=>'L',
      +931=>'L',
      +932=>'L',
      +933=>'L',
      +934=>'L',
      +935=>'L',
      +936=>'L',
      +937=>'L',
      +938=>'L',
      +939=>'L',
      +940=>'L',
      +941=>'L',
      +942=>'L',
      +943=>'L',
      +944=>'L',
      +945=>'L',
      +946=>'L',
      +947=>'L',
      +948=>'L',
      +949=>'L',
      +950=>'L',
      +951=>'L',
      +952=>'L',
      +953=>'L',
      +954=>'L',
      +955=>'L',
      +956=>'L',
      +957=>'L',
      +958=>'L',
      +959=>'L',
      +960=>'L',
      +961=>'L',
      +962=>'L',
      +963=>'L',
      +964=>'L',
      +965=>'L',
      +966=>'L',
      +967=>'L',
      +968=>'L',
      +969=>'L',
      +970=>'L',
      +971=>'L',
      +972=>'L',
      +973=>'L',
      +974=>'L',
      +976=>'L',
      +977=>'L',
      +978=>'L',
      +979=>'L',
      +980=>'L',
      +981=>'L',
      +982=>'L',
      +983=>'L',
      +984=>'L',
      +985=>'L',
      +986=>'L',
      +987=>'L',
      +988=>'L',
      +989=>'L',
      +990=>'L',
      +991=>'L',
      +992=>'L',
      +993=>'L',
      +994=>'L',
      +995=>'L',
      +996=>'L',
      +997=>'L',
      +998=>'L',
      +999=>'L',
      +1000=>'L',
      +1001=>'L',
      +1002=>'L',
      +1003=>'L',
      +1004=>'L',
      +1005=>'L',
      +1006=>'L',
      +1007=>'L',
      +1008=>'L',
      +1009=>'L',
      +1010=>'L',
      +1011=>'L',
      +1012=>'L',
      +1013=>'L',
      +1014=>'ON',
      +1015=>'L',
      +1016=>'L',
      +1017=>'L',
      +1018=>'L',
      +1019=>'L',
      +1020=>'L',
      +1021=>'L',
      +1022=>'L',
      +1023=>'L',
      +1024=>'L',
      +1025=>'L',
      +1026=>'L',
      +1027=>'L',
      +1028=>'L',
      +1029=>'L',
      +1030=>'L',
      +1031=>'L',
      +1032=>'L',
      +1033=>'L',
      +1034=>'L',
      +1035=>'L',
      +1036=>'L',
      +1037=>'L',
      +1038=>'L',
      +1039=>'L',
      +1040=>'L',
      +1041=>'L',
      +1042=>'L',
      +1043=>'L',
      +1044=>'L',
      +1045=>'L',
      +1046=>'L',
      +1047=>'L',
      +1048=>'L',
      +1049=>'L',
      +1050=>'L',
      +1051=>'L',
      +1052=>'L',
      +1053=>'L',
      +1054=>'L',
      +1055=>'L',
      +1056=>'L',
      +1057=>'L',
      +1058=>'L',
      +1059=>'L',
      +1060=>'L',
      +1061=>'L',
      +1062=>'L',
      +1063=>'L',
      +1064=>'L',
      +1065=>'L',
      +1066=>'L',
      +1067=>'L',
      +1068=>'L',
      +1069=>'L',
      +1070=>'L',
      +1071=>'L',
      +1072=>'L',
      +1073=>'L',
      +1074=>'L',
      +1075=>'L',
      +1076=>'L',
      +1077=>'L',
      +1078=>'L',
      +1079=>'L',
      +1080=>'L',
      +1081=>'L',
      +1082=>'L',
      +1083=>'L',
      +1084=>'L',
      +1085=>'L',
      +1086=>'L',
      +1087=>'L',
      +1088=>'L',
      +1089=>'L',
      +1090=>'L',
      +1091=>'L',
      +1092=>'L',
      +1093=>'L',
      +1094=>'L',
      +1095=>'L',
      +1096=>'L',
      +1097=>'L',
      +1098=>'L',
      +1099=>'L',
      +1100=>'L',
      +1101=>'L',
      +1102=>'L',
      +1103=>'L',
      +1104=>'L',
      +1105=>'L',
      +1106=>'L',
      +1107=>'L',
      +1108=>'L',
      +1109=>'L',
      +1110=>'L',
      +1111=>'L',
      +1112=>'L',
      +1113=>'L',
      +1114=>'L',
      +1115=>'L',
      +1116=>'L',
      +1117=>'L',
      +1118=>'L',
      +1119=>'L',
      +1120=>'L',
      +1121=>'L',
      +1122=>'L',
      +1123=>'L',
      +1124=>'L',
      +1125=>'L',
      +1126=>'L',
      +1127=>'L',
      +1128=>'L',
      +1129=>'L',
      +1130=>'L',
      +1131=>'L',
      +1132=>'L',
      +1133=>'L',
      +1134=>'L',
      +1135=>'L',
      +1136=>'L',
      +1137=>'L',
      +1138=>'L',
      +1139=>'L',
      +1140=>'L',
      +1141=>'L',
      +1142=>'L',
      +1143=>'L',
      +1144=>'L',
      +1145=>'L',
      +1146=>'L',
      +1147=>'L',
      +1148=>'L',
      +1149=>'L',
      +1150=>'L',
      +1151=>'L',
      +1152=>'L',
      +1153=>'L',
      +1154=>'L',
      +1155=>'NSM',
      +1156=>'NSM',
      +1157=>'NSM',
      +1158=>'NSM',
      +1160=>'NSM',
      +1161=>'NSM',
      +1162=>'L',
      +1163=>'L',
      +1164=>'L',
      +1165=>'L',
      +1166=>'L',
      +1167=>'L',
      +1168=>'L',
      +1169=>'L',
      +1170=>'L',
      +1171=>'L',
      +1172=>'L',
      +1173=>'L',
      +1174=>'L',
      +1175=>'L',
      +1176=>'L',
      +1177=>'L',
      +1178=>'L',
      +1179=>'L',
      +1180=>'L',
      +1181=>'L',
      +1182=>'L',
      +1183=>'L',
      +1184=>'L',
      +1185=>'L',
      +1186=>'L',
      +1187=>'L',
      +1188=>'L',
      +1189=>'L',
      +1190=>'L',
      +1191=>'L',
      +1192=>'L',
      +1193=>'L',
      +1194=>'L',
      +1195=>'L',
      +1196=>'L',
      +1197=>'L',
      +1198=>'L',
      +1199=>'L',
      +1200=>'L',
      +1201=>'L',
      +1202=>'L',
      +1203=>'L',
      +1204=>'L',
      +1205=>'L',
      +1206=>'L',
      +1207=>'L',
      +1208=>'L',
      +1209=>'L',
      +1210=>'L',
      +1211=>'L',
      +1212=>'L',
      +1213=>'L',
      +1214=>'L',
      +1215=>'L',
      +1216=>'L',
      +1217=>'L',
      +1218=>'L',
      +1219=>'L',
      +1220=>'L',
      +1221=>'L',
      +1222=>'L',
      +1223=>'L',
      +1224=>'L',
      +1225=>'L',
      +1226=>'L',
      +1227=>'L',
      +1228=>'L',
      +1229=>'L',
      +1230=>'L',
      +1231=>'L',
      +1232=>'L',
      +1233=>'L',
      +1234=>'L',
      +1235=>'L',
      +1236=>'L',
      +1237=>'L',
      +1238=>'L',
      +1239=>'L',
      +1240=>'L',
      +1241=>'L',
      +1242=>'L',
      +1243=>'L',
      +1244=>'L',
      +1245=>'L',
      +1246=>'L',
      +1247=>'L',
      +1248=>'L',
      +1249=>'L',
      +1250=>'L',
      +1251=>'L',
      +1252=>'L',
      +1253=>'L',
      +1254=>'L',
      +1255=>'L',
      +1256=>'L',
      +1257=>'L',
      +1258=>'L',
      +1259=>'L',
      +1260=>'L',
      +1261=>'L',
      +1262=>'L',
      +1263=>'L',
      +1264=>'L',
      +1265=>'L',
      +1266=>'L',
      +1267=>'L',
      +1268=>'L',
      +1269=>'L',
      +1270=>'L',
      +1271=>'L',
      +1272=>'L',
      +1273=>'L',
      +1274=>'L',
      +1275=>'L',
      +1276=>'L',
      +1277=>'L',
      +1278=>'L',
      +1279=>'L',
      +1280=>'L',
      +1281=>'L',
      +1282=>'L',
      +1283=>'L',
      +1284=>'L',
      +1285=>'L',
      +1286=>'L',
      +1287=>'L',
      +1288=>'L',
      +1289=>'L',
      +1290=>'L',
      +1291=>'L',
      +1292=>'L',
      +1293=>'L',
      +1294=>'L',
      +1295=>'L',
      +1296=>'L',
      +1297=>'L',
      +1298=>'L',
      +1299=>'L',
      +1329=>'L',
      +1330=>'L',
      +1331=>'L',
      +1332=>'L',
      +1333=>'L',
      +1334=>'L',
      +1335=>'L',
      +1336=>'L',
      +1337=>'L',
      +1338=>'L',
      +1339=>'L',
      +1340=>'L',
      +1341=>'L',
      +1342=>'L',
      +1343=>'L',
      +1344=>'L',
      +1345=>'L',
      +1346=>'L',
      +1347=>'L',
      +1348=>'L',
      +1349=>'L',
      +1350=>'L',
      +1351=>'L',
      +1352=>'L',
      +1353=>'L',
      +1354=>'L',
      +1355=>'L',
      +1356=>'L',
      +1357=>'L',
      +1358=>'L',
      +1359=>'L',
      +1360=>'L',
      +1361=>'L',
      +1362=>'L',
      +1363=>'L',
      +1364=>'L',
      +1365=>'L',
      +1366=>'L',
      +1369=>'L',
      +1370=>'L',
      +1371=>'L',
      +1372=>'L',
      +1373=>'L',
      +1374=>'L',
      +1375=>'L',
      +1377=>'L',
      +1378=>'L',
      +1379=>'L',
      +1380=>'L',
      +1381=>'L',
      +1382=>'L',
      +1383=>'L',
      +1384=>'L',
      +1385=>'L',
      +1386=>'L',
      +1387=>'L',
      +1388=>'L',
      +1389=>'L',
      +1390=>'L',
      +1391=>'L',
      +1392=>'L',
      +1393=>'L',
      +1394=>'L',
      +1395=>'L',
      +1396=>'L',
      +1397=>'L',
      +1398=>'L',
      +1399=>'L',
      +1400=>'L',
      +1401=>'L',
      +1402=>'L',
      +1403=>'L',
      +1404=>'L',
      +1405=>'L',
      +1406=>'L',
      +1407=>'L',
      +1408=>'L',
      +1409=>'L',
      +1410=>'L',
      +1411=>'L',
      +1412=>'L',
      +1413=>'L',
      +1414=>'L',
      +1415=>'L',
      +1417=>'L',
      +1418=>'ON',
      +1425=>'NSM',
      +1426=>'NSM',
      +1427=>'NSM',
      +1428=>'NSM',
      +1429=>'NSM',
      +1430=>'NSM',
      +1431=>'NSM',
      +1432=>'NSM',
      +1433=>'NSM',
      +1434=>'NSM',
      +1435=>'NSM',
      +1436=>'NSM',
      +1437=>'NSM',
      +1438=>'NSM',
      +1439=>'NSM',
      +1440=>'NSM',
      +1441=>'NSM',
      +1442=>'NSM',
      +1443=>'NSM',
      +1444=>'NSM',
      +1445=>'NSM',
      +1446=>'NSM',
      +1447=>'NSM',
      +1448=>'NSM',
      +1449=>'NSM',
      +1450=>'NSM',
      +1451=>'NSM',
      +1452=>'NSM',
      +1453=>'NSM',
      +1454=>'NSM',
      +1455=>'NSM',
      +1456=>'NSM',
      +1457=>'NSM',
      +1458=>'NSM',
      +1459=>'NSM',
      +1460=>'NSM',
      +1461=>'NSM',
      +1462=>'NSM',
      +1463=>'NSM',
      +1464=>'NSM',
      +1465=>'NSM',
      +1466=>'NSM',
      +1467=>'NSM',
      +1468=>'NSM',
      +1469=>'NSM',
      +1470=>'R',
      +1471=>'NSM',
      +1472=>'R',
      +1473=>'NSM',
      +1474=>'NSM',
      +1475=>'R',
      +1476=>'NSM',
      +1477=>'NSM',
      +1478=>'R',
      +1479=>'NSM',
      +1488=>'R',
      +1489=>'R',
      +1490=>'R',
      +1491=>'R',
      +1492=>'R',
      +1493=>'R',
      +1494=>'R',
      +1495=>'R',
      +1496=>'R',
      +1497=>'R',
      +1498=>'R',
      +1499=>'R',
      +1500=>'R',
      +1501=>'R',
      +1502=>'R',
      +1503=>'R',
      +1504=>'R',
      +1505=>'R',
      +1506=>'R',
      +1507=>'R',
      +1508=>'R',
      +1509=>'R',
      +1510=>'R',
      +1511=>'R',
      +1512=>'R',
      +1513=>'R',
      +1514=>'R',
      +1520=>'R',
      +1521=>'R',
      +1522=>'R',
      +1523=>'R',
      +1524=>'R',
      +1536=>'AL',
      +1537=>'AL',
      +1538=>'AL',
      +1539=>'AL',
      +1547=>'AL',
      +1548=>'CS',
      +1549=>'AL',
      +1550=>'ON',
      +1551=>'ON',
      +1552=>'NSM',
      +1553=>'NSM',
      +1554=>'NSM',
      +1555=>'NSM',
      +1556=>'NSM',
      +1557=>'NSM',
      +1563=>'AL',
      +1566=>'AL',
      +1567=>'AL',
      +1569=>'AL',
      +1570=>'AL',
      +1571=>'AL',
      +1572=>'AL',
      +1573=>'AL',
      +1574=>'AL',
      +1575=>'AL',
      +1576=>'AL',
      +1577=>'AL',
      +1578=>'AL',
      +1579=>'AL',
      +1580=>'AL',
      +1581=>'AL',
      +1582=>'AL',
      +1583=>'AL',
      +1584=>'AL',
      +1585=>'AL',
      +1586=>'AL',
      +1587=>'AL',
      +1588=>'AL',
      +1589=>'AL',
      +1590=>'AL',
      +1591=>'AL',
      +1592=>'AL',
      +1593=>'AL',
      +1594=>'AL',
      +1600=>'AL',
      +1601=>'AL',
      +1602=>'AL',
      +1603=>'AL',
      +1604=>'AL',
      +1605=>'AL',
      +1606=>'AL',
      +1607=>'AL',
      +1608=>'AL',
      +1609=>'AL',
      +1610=>'AL',
      +1611=>'NSM',
      +1612=>'NSM',
      +1613=>'NSM',
      +1614=>'NSM',
      +1615=>'NSM',
      +1616=>'NSM',
      +1617=>'NSM',
      +1618=>'NSM',
      +1619=>'NSM',
      +1620=>'NSM',
      +1621=>'NSM',
      +1622=>'NSM',
      +1623=>'NSM',
      +1624=>'NSM',
      +1625=>'NSM',
      +1626=>'NSM',
      +1627=>'NSM',
      +1628=>'NSM',
      +1629=>'NSM',
      +1630=>'NSM',
      +1632=>'AN',
      +1633=>'AN',
      +1634=>'AN',
      +1635=>'AN',
      +1636=>'AN',
      +1637=>'AN',
      +1638=>'AN',
      +1639=>'AN',
      +1640=>'AN',
      +1641=>'AN',
      +1642=>'ET',
      +1643=>'AN',
      +1644=>'AN',
      +1645=>'AL',
      +1646=>'AL',
      +1647=>'AL',
      +1648=>'NSM',
      +1649=>'AL',
      +1650=>'AL',
      +1651=>'AL',
      +1652=>'AL',
      +1653=>'AL',
      +1654=>'AL',
      +1655=>'AL',
      +1656=>'AL',
      +1657=>'AL',
      +1658=>'AL',
      +1659=>'AL',
      +1660=>'AL',
      +1661=>'AL',
      +1662=>'AL',
      +1663=>'AL',
      +1664=>'AL',
      +1665=>'AL',
      +1666=>'AL',
      +1667=>'AL',
      +1668=>'AL',
      +1669=>'AL',
      +1670=>'AL',
      +1671=>'AL',
      +1672=>'AL',
      +1673=>'AL',
      +1674=>'AL',
      +1675=>'AL',
      +1676=>'AL',
      +1677=>'AL',
      +1678=>'AL',
      +1679=>'AL',
      +1680=>'AL',
      +1681=>'AL',
      +1682=>'AL',
      +1683=>'AL',
      +1684=>'AL',
      +1685=>'AL',
      +1686=>'AL',
      +1687=>'AL',
      +1688=>'AL',
      +1689=>'AL',
      +1690=>'AL',
      +1691=>'AL',
      +1692=>'AL',
      +1693=>'AL',
      +1694=>'AL',
      +1695=>'AL',
      +1696=>'AL',
      +1697=>'AL',
      +1698=>'AL',
      +1699=>'AL',
      +1700=>'AL',
      +1701=>'AL',
      +1702=>'AL',
      +1703=>'AL',
      +1704=>'AL',
      +1705=>'AL',
      +1706=>'AL',
      +1707=>'AL',
      +1708=>'AL',
      +1709=>'AL',
      +1710=>'AL',
      +1711=>'AL',
      +1712=>'AL',
      +1713=>'AL',
      +1714=>'AL',
      +1715=>'AL',
      +1716=>'AL',
      +1717=>'AL',
      +1718=>'AL',
      +1719=>'AL',
      +1720=>'AL',
      +1721=>'AL',
      +1722=>'AL',
      +1723=>'AL',
      +1724=>'AL',
      +1725=>'AL',
      +1726=>'AL',
      +1727=>'AL',
      +1728=>'AL',
      +1729=>'AL',
      +1730=>'AL',
      +1731=>'AL',
      +1732=>'AL',
      +1733=>'AL',
      +1734=>'AL',
      +1735=>'AL',
      +1736=>'AL',
      +1737=>'AL',
      +1738=>'AL',
      +1739=>'AL',
      +1740=>'AL',
      +1741=>'AL',
      +1742=>'AL',
      +1743=>'AL',
      +1744=>'AL',
      +1745=>'AL',
      +1746=>'AL',
      +1747=>'AL',
      +1748=>'AL',
      +1749=>'AL',
      +1750=>'NSM',
      +1751=>'NSM',
      +1752=>'NSM',
      +1753=>'NSM',
      +1754=>'NSM',
      +1755=>'NSM',
      +1756=>'NSM',
      +1757=>'AL',
      +1758=>'NSM',
      +1759=>'NSM',
      +1760=>'NSM',
      +1761=>'NSM',
      +1762=>'NSM',
      +1763=>'NSM',
      +1764=>'NSM',
      +1765=>'AL',
      +1766=>'AL',
      +1767=>'NSM',
      +1768=>'NSM',
      +1769=>'ON',
      +1770=>'NSM',
      +1771=>'NSM',
      +1772=>'NSM',
      +1773=>'NSM',
      +1774=>'AL',
      +1775=>'AL',
      +1776=>'EN',
      +1777=>'EN',
      +1778=>'EN',
      +1779=>'EN',
      +1780=>'EN',
      +1781=>'EN',
      +1782=>'EN',
      +1783=>'EN',
      +1784=>'EN',
      +1785=>'EN',
      +1786=>'AL',
      +1787=>'AL',
      +1788=>'AL',
      +1789=>'AL',
      +1790=>'AL',
      +1791=>'AL',
      +1792=>'AL',
      +1793=>'AL',
      +1794=>'AL',
      +1795=>'AL',
      +1796=>'AL',
      +1797=>'AL',
      +1798=>'AL',
      +1799=>'AL',
      +1800=>'AL',
      +1801=>'AL',
      +1802=>'AL',
      +1803=>'AL',
      +1804=>'AL',
      +1805=>'AL',
      +1807=>'BN',
      +1808=>'AL',
      +1809=>'NSM',
      +1810=>'AL',
      +1811=>'AL',
      +1812=>'AL',
      +1813=>'AL',
      +1814=>'AL',
      +1815=>'AL',
      +1816=>'AL',
      +1817=>'AL',
      +1818=>'AL',
      +1819=>'AL',
      +1820=>'AL',
      +1821=>'AL',
      +1822=>'AL',
      +1823=>'AL',
      +1824=>'AL',
      +1825=>'AL',
      +1826=>'AL',
      +1827=>'AL',
      +1828=>'AL',
      +1829=>'AL',
      +1830=>'AL',
      +1831=>'AL',
      +1832=>'AL',
      +1833=>'AL',
      +1834=>'AL',
      +1835=>'AL',
      +1836=>'AL',
      +1837=>'AL',
      +1838=>'AL',
      +1839=>'AL',
      +1840=>'NSM',
      +1841=>'NSM',
      +1842=>'NSM',
      +1843=>'NSM',
      +1844=>'NSM',
      +1845=>'NSM',
      +1846=>'NSM',
      +1847=>'NSM',
      +1848=>'NSM',
      +1849=>'NSM',
      +1850=>'NSM',
      +1851=>'NSM',
      +1852=>'NSM',
      +1853=>'NSM',
      +1854=>'NSM',
      +1855=>'NSM',
      +1856=>'NSM',
      +1857=>'NSM',
      +1858=>'NSM',
      +1859=>'NSM',
      +1860=>'NSM',
      +1861=>'NSM',
      +1862=>'NSM',
      +1863=>'NSM',
      +1864=>'NSM',
      +1865=>'NSM',
      +1866=>'NSM',
      +1869=>'AL',
      +1870=>'AL',
      +1871=>'AL',
      +1872=>'AL',
      +1873=>'AL',
      +1874=>'AL',
      +1875=>'AL',
      +1876=>'AL',
      +1877=>'AL',
      +1878=>'AL',
      +1879=>'AL',
      +1880=>'AL',
      +1881=>'AL',
      +1882=>'AL',
      +1883=>'AL',
      +1884=>'AL',
      +1885=>'AL',
      +1886=>'AL',
      +1887=>'AL',
      +1888=>'AL',
      +1889=>'AL',
      +1890=>'AL',
      +1891=>'AL',
      +1892=>'AL',
      +1893=>'AL',
      +1894=>'AL',
      +1895=>'AL',
      +1896=>'AL',
      +1897=>'AL',
      +1898=>'AL',
      +1899=>'AL',
      +1900=>'AL',
      +1901=>'AL',
      +1920=>'AL',
      +1921=>'AL',
      +1922=>'AL',
      +1923=>'AL',
      +1924=>'AL',
      +1925=>'AL',
      +1926=>'AL',
      +1927=>'AL',
      +1928=>'AL',
      +1929=>'AL',
      +1930=>'AL',
      +1931=>'AL',
      +1932=>'AL',
      +1933=>'AL',
      +1934=>'AL',
      +1935=>'AL',
      +1936=>'AL',
      +1937=>'AL',
      +1938=>'AL',
      +1939=>'AL',
      +1940=>'AL',
      +1941=>'AL',
      +1942=>'AL',
      +1943=>'AL',
      +1944=>'AL',
      +1945=>'AL',
      +1946=>'AL',
      +1947=>'AL',
      +1948=>'AL',
      +1949=>'AL',
      +1950=>'AL',
      +1951=>'AL',
      +1952=>'AL',
      +1953=>'AL',
      +1954=>'AL',
      +1955=>'AL',
      +1956=>'AL',
      +1957=>'AL',
      +1958=>'NSM',
      +1959=>'NSM',
      +1960=>'NSM',
      +1961=>'NSM',
      +1962=>'NSM',
      +1963=>'NSM',
      +1964=>'NSM',
      +1965=>'NSM',
      +1966=>'NSM',
      +1967=>'NSM',
      +1968=>'NSM',
      +1969=>'AL',
      +1984=>'R',
      +1985=>'R',
      +1986=>'R',
      +1987=>'R',
      +1988=>'R',
      +1989=>'R',
      +1990=>'R',
      +1991=>'R',
      +1992=>'R',
      +1993=>'R',
      +1994=>'R',
      +1995=>'R',
      +1996=>'R',
      +1997=>'R',
      +1998=>'R',
      +1999=>'R',
      +2000=>'R',
      +2001=>'R',
      +2002=>'R',
      +2003=>'R',
      +2004=>'R',
      +2005=>'R',
      +2006=>'R',
      +2007=>'R',
      +2008=>'R',
      +2009=>'R',
      +2010=>'R',
      +2011=>'R',
      +2012=>'R',
      +2013=>'R',
      +2014=>'R',
      +2015=>'R',
      +2016=>'R',
      +2017=>'R',
      +2018=>'R',
      +2019=>'R',
      +2020=>'R',
      +2021=>'R',
      +2022=>'R',
      +2023=>'R',
      +2024=>'R',
      +2025=>'R',
      +2026=>'R',
      +2027=>'NSM',
      +2028=>'NSM',
      +2029=>'NSM',
      +2030=>'NSM',
      +2031=>'NSM',
      +2032=>'NSM',
      +2033=>'NSM',
      +2034=>'NSM',
      +2035=>'NSM',
      +2036=>'R',
      +2037=>'R',
      +2038=>'ON',
      +2039=>'ON',
      +2040=>'ON',
      +2041=>'ON',
      +2042=>'R',
      +2305=>'NSM',
      +2306=>'NSM',
      +2307=>'L',
      +2308=>'L',
      +2309=>'L',
      +2310=>'L',
      +2311=>'L',
      +2312=>'L',
      +2313=>'L',
      +2314=>'L',
      +2315=>'L',
      +2316=>'L',
      +2317=>'L',
      +2318=>'L',
      +2319=>'L',
      +2320=>'L',
      +2321=>'L',
      +2322=>'L',
      +2323=>'L',
      +2324=>'L',
      +2325=>'L',
      +2326=>'L',
      +2327=>'L',
      +2328=>'L',
      +2329=>'L',
      +2330=>'L',
      +2331=>'L',
      +2332=>'L',
      +2333=>'L',
      +2334=>'L',
      +2335=>'L',
      +2336=>'L',
      +2337=>'L',
      +2338=>'L',
      +2339=>'L',
      +2340=>'L',
      +2341=>'L',
      +2342=>'L',
      +2343=>'L',
      +2344=>'L',
      +2345=>'L',
      +2346=>'L',
      +2347=>'L',
      +2348=>'L',
      +2349=>'L',
      +2350=>'L',
      +2351=>'L',
      +2352=>'L',
      +2353=>'L',
      +2354=>'L',
      +2355=>'L',
      +2356=>'L',
      +2357=>'L',
      +2358=>'L',
      +2359=>'L',
      +2360=>'L',
      +2361=>'L',
      +2364=>'NSM',
      +2365=>'L',
      +2366=>'L',
      +2367=>'L',
      +2368=>'L',
      +2369=>'NSM',
      +2370=>'NSM',
      +2371=>'NSM',
      +2372=>'NSM',
      +2373=>'NSM',
      +2374=>'NSM',
      +2375=>'NSM',
      +2376=>'NSM',
      +2377=>'L',
      +2378=>'L',
      +2379=>'L',
      +2380=>'L',
      +2381=>'NSM',
      +2384=>'L',
      +2385=>'NSM',
      +2386=>'NSM',
      +2387=>'NSM',
      +2388=>'NSM',
      +2392=>'L',
      +2393=>'L',
      +2394=>'L',
      +2395=>'L',
      +2396=>'L',
      +2397=>'L',
      +2398=>'L',
      +2399=>'L',
      +2400=>'L',
      +2401=>'L',
      +2402=>'NSM',
      +2403=>'NSM',
      +2404=>'L',
      +2405=>'L',
      +2406=>'L',
      +2407=>'L',
      +2408=>'L',
      +2409=>'L',
      +2410=>'L',
      +2411=>'L',
      +2412=>'L',
      +2413=>'L',
      +2414=>'L',
      +2415=>'L',
      +2416=>'L',
      +2427=>'L',
      +2428=>'L',
      +2429=>'L',
      +2430=>'L',
      +2431=>'L',
      +2433=>'NSM',
      +2434=>'L',
      +2435=>'L',
      +2437=>'L',
      +2438=>'L',
      +2439=>'L',
      +2440=>'L',
      +2441=>'L',
      +2442=>'L',
      +2443=>'L',
      +2444=>'L',
      +2447=>'L',
      +2448=>'L',
      +2451=>'L',
      +2452=>'L',
      +2453=>'L',
      +2454=>'L',
      +2455=>'L',
      +2456=>'L',
      +2457=>'L',
      +2458=>'L',
      +2459=>'L',
      +2460=>'L',
      +2461=>'L',
      +2462=>'L',
      +2463=>'L',
      +2464=>'L',
      +2465=>'L',
      +2466=>'L',
      +2467=>'L',
      +2468=>'L',
      +2469=>'L',
      +2470=>'L',
      +2471=>'L',
      +2472=>'L',
      +2474=>'L',
      +2475=>'L',
      +2476=>'L',
      +2477=>'L',
      +2478=>'L',
      +2479=>'L',
      +2480=>'L',
      +2482=>'L',
      +2486=>'L',
      +2487=>'L',
      +2488=>'L',
      +2489=>'L',
      +2492=>'NSM',
      +2493=>'L',
      +2494=>'L',
      +2495=>'L',
      +2496=>'L',
      +2497=>'NSM',
      +2498=>'NSM',
      +2499=>'NSM',
      +2500=>'NSM',
      +2503=>'L',
      +2504=>'L',
      +2507=>'L',
      +2508=>'L',
      +2509=>'NSM',
      +2510=>'L',
      +2519=>'L',
      +2524=>'L',
      +2525=>'L',
      +2527=>'L',
      +2528=>'L',
      +2529=>'L',
      +2530=>'NSM',
      +2531=>'NSM',
      +2534=>'L',
      +2535=>'L',
      +2536=>'L',
      +2537=>'L',
      +2538=>'L',
      +2539=>'L',
      +2540=>'L',
      +2541=>'L',
      +2542=>'L',
      +2543=>'L',
      +2544=>'L',
      +2545=>'L',
      +2546=>'ET',
      +2547=>'ET',
      +2548=>'L',
      +2549=>'L',
      +2550=>'L',
      +2551=>'L',
      +2552=>'L',
      +2553=>'L',
      +2554=>'L',
      +2561=>'NSM',
      +2562=>'NSM',
      +2563=>'L',
      +2565=>'L',
      +2566=>'L',
      +2567=>'L',
      +2568=>'L',
      +2569=>'L',
      +2570=>'L',
      +2575=>'L',
      +2576=>'L',
      +2579=>'L',
      +2580=>'L',
      +2581=>'L',
      +2582=>'L',
      +2583=>'L',
      +2584=>'L',
      +2585=>'L',
      +2586=>'L',
      +2587=>'L',
      +2588=>'L',
      +2589=>'L',
      +2590=>'L',
      +2591=>'L',
      +2592=>'L',
      +2593=>'L',
      +2594=>'L',
      +2595=>'L',
      +2596=>'L',
      +2597=>'L',
      +2598=>'L',
      +2599=>'L',
      +2600=>'L',
      +2602=>'L',
      +2603=>'L',
      +2604=>'L',
      +2605=>'L',
      +2606=>'L',
      +2607=>'L',
      +2608=>'L',
      +2610=>'L',
      +2611=>'L',
      +2613=>'L',
      +2614=>'L',
      +2616=>'L',
      +2617=>'L',
      +2620=>'NSM',
      +2622=>'L',
      +2623=>'L',
      +2624=>'L',
      +2625=>'NSM',
      +2626=>'NSM',
      +2631=>'NSM',
      +2632=>'NSM',
      +2635=>'NSM',
      +2636=>'NSM',
      +2637=>'NSM',
      +2649=>'L',
      +2650=>'L',
      +2651=>'L',
      +2652=>'L',
      +2654=>'L',
      +2662=>'L',
      +2663=>'L',
      +2664=>'L',
      +2665=>'L',
      +2666=>'L',
      +2667=>'L',
      +2668=>'L',
      +2669=>'L',
      +2670=>'L',
      +2671=>'L',
      +2672=>'NSM',
      +2673=>'NSM',
      +2674=>'L',
      +2675=>'L',
      +2676=>'L',
      +2689=>'NSM',
      +2690=>'NSM',
      +2691=>'L',
      +2693=>'L',
      +2694=>'L',
      +2695=>'L',
      +2696=>'L',
      +2697=>'L',
      +2698=>'L',
      +2699=>'L',
      +2700=>'L',
      +2701=>'L',
      +2703=>'L',
      +2704=>'L',
      +2705=>'L',
      +2707=>'L',
      +2708=>'L',
      +2709=>'L',
      +2710=>'L',
      +2711=>'L',
      +2712=>'L',
      +2713=>'L',
      +2714=>'L',
      +2715=>'L',
      +2716=>'L',
      +2717=>'L',
      +2718=>'L',
      +2719=>'L',
      +2720=>'L',
      +2721=>'L',
      +2722=>'L',
      +2723=>'L',
      +2724=>'L',
      +2725=>'L',
      +2726=>'L',
      +2727=>'L',
      +2728=>'L',
      +2730=>'L',
      +2731=>'L',
      +2732=>'L',
      +2733=>'L',
      +2734=>'L',
      +2735=>'L',
      +2736=>'L',
      +2738=>'L',
      +2739=>'L',
      +2741=>'L',
      +2742=>'L',
      +2743=>'L',
      +2744=>'L',
      +2745=>'L',
      +2748=>'NSM',
      +2749=>'L',
      +2750=>'L',
      +2751=>'L',
      +2752=>'L',
      +2753=>'NSM',
      +2754=>'NSM',
      +2755=>'NSM',
      +2756=>'NSM',
      +2757=>'NSM',
      +2759=>'NSM',
      +2760=>'NSM',
      +2761=>'L',
      +2763=>'L',
      +2764=>'L',
      +2765=>'NSM',
      +2768=>'L',
      +2784=>'L',
      +2785=>'L',
      +2786=>'NSM',
      +2787=>'NSM',
      +2790=>'L',
      +2791=>'L',
      +2792=>'L',
      +2793=>'L',
      +2794=>'L',
      +2795=>'L',
      +2796=>'L',
      +2797=>'L',
      +2798=>'L',
      +2799=>'L',
      +2801=>'ET',
      +2817=>'NSM',
      +2818=>'L',
      +2819=>'L',
      +2821=>'L',
      +2822=>'L',
      +2823=>'L',
      +2824=>'L',
      +2825=>'L',
      +2826=>'L',
      +2827=>'L',
      +2828=>'L',
      +2831=>'L',
      +2832=>'L',
      +2835=>'L',
      +2836=>'L',
      +2837=>'L',
      +2838=>'L',
      +2839=>'L',
      +2840=>'L',
      +2841=>'L',
      +2842=>'L',
      +2843=>'L',
      +2844=>'L',
      +2845=>'L',
      +2846=>'L',
      +2847=>'L',
      +2848=>'L',
      +2849=>'L',
      +2850=>'L',
      +2851=>'L',
      +2852=>'L',
      +2853=>'L',
      +2854=>'L',
      +2855=>'L',
      +2856=>'L',
      +2858=>'L',
      +2859=>'L',
      +2860=>'L',
      +2861=>'L',
      +2862=>'L',
      +2863=>'L',
      +2864=>'L',
      +2866=>'L',
      +2867=>'L',
      +2869=>'L',
      +2870=>'L',
      +2871=>'L',
      +2872=>'L',
      +2873=>'L',
      +2876=>'NSM',
      +2877=>'L',
      +2878=>'L',
      +2879=>'NSM',
      +2880=>'L',
      +2881=>'NSM',
      +2882=>'NSM',
      +2883=>'NSM',
      +2887=>'L',
      +2888=>'L',
      +2891=>'L',
      +2892=>'L',
      +2893=>'NSM',
      +2902=>'NSM',
      +2903=>'L',
      +2908=>'L',
      +2909=>'L',
      +2911=>'L',
      +2912=>'L',
      +2913=>'L',
      +2918=>'L',
      +2919=>'L',
      +2920=>'L',
      +2921=>'L',
      +2922=>'L',
      +2923=>'L',
      +2924=>'L',
      +2925=>'L',
      +2926=>'L',
      +2927=>'L',
      +2928=>'L',
      +2929=>'L',
      +2946=>'NSM',
      +2947=>'L',
      +2949=>'L',
      +2950=>'L',
      +2951=>'L',
      +2952=>'L',
      +2953=>'L',
      +2954=>'L',
      +2958=>'L',
      +2959=>'L',
      +2960=>'L',
      +2962=>'L',
      +2963=>'L',
      +2964=>'L',
      +2965=>'L',
      +2969=>'L',
      +2970=>'L',
      +2972=>'L',
      +2974=>'L',
      +2975=>'L',
      +2979=>'L',
      +2980=>'L',
      +2984=>'L',
      +2985=>'L',
      +2986=>'L',
      +2990=>'L',
      +2991=>'L',
      +2992=>'L',
      +2993=>'L',
      +2994=>'L',
      +2995=>'L',
      +2996=>'L',
      +2997=>'L',
      +2998=>'L',
      +2999=>'L',
      +3000=>'L',
      +3001=>'L',
      +3006=>'L',
      +3007=>'L',
      +3008=>'NSM',
      +3009=>'L',
      +3010=>'L',
      +3014=>'L',
      +3015=>'L',
      +3016=>'L',
      +3018=>'L',
      +3019=>'L',
      +3020=>'L',
      +3021=>'NSM',
      +3031=>'L',
      +3046=>'L',
      +3047=>'L',
      +3048=>'L',
      +3049=>'L',
      +3050=>'L',
      +3051=>'L',
      +3052=>'L',
      +3053=>'L',
      +3054=>'L',
      +3055=>'L',
      +3056=>'L',
      +3057=>'L',
      +3058=>'L',
      +3059=>'ON',
      +3060=>'ON',
      +3061=>'ON',
      +3062=>'ON',
      +3063=>'ON',
      +3064=>'ON',
      +3065=>'ET',
      +3066=>'ON',
      +3073=>'L',
      +3074=>'L',
      +3075=>'L',
      +3077=>'L',
      +3078=>'L',
      +3079=>'L',
      +3080=>'L',
      +3081=>'L',
      +3082=>'L',
      +3083=>'L',
      +3084=>'L',
      +3086=>'L',
      +3087=>'L',
      +3088=>'L',
      +3090=>'L',
      +3091=>'L',
      +3092=>'L',
      +3093=>'L',
      +3094=>'L',
      +3095=>'L',
      +3096=>'L',
      +3097=>'L',
      +3098=>'L',
      +3099=>'L',
      +3100=>'L',
      +3101=>'L',
      +3102=>'L',
      +3103=>'L',
      +3104=>'L',
      +3105=>'L',
      +3106=>'L',
      +3107=>'L',
      +3108=>'L',
      +3109=>'L',
      +3110=>'L',
      +3111=>'L',
      +3112=>'L',
      +3114=>'L',
      +3115=>'L',
      +3116=>'L',
      +3117=>'L',
      +3118=>'L',
      +3119=>'L',
      +3120=>'L',
      +3121=>'L',
      +3122=>'L',
      +3123=>'L',
      +3125=>'L',
      +3126=>'L',
      +3127=>'L',
      +3128=>'L',
      +3129=>'L',
      +3134=>'NSM',
      +3135=>'NSM',
      +3136=>'NSM',
      +3137=>'L',
      +3138=>'L',
      +3139=>'L',
      +3140=>'L',
      +3142=>'NSM',
      +3143=>'NSM',
      +3144=>'NSM',
      +3146=>'NSM',
      +3147=>'NSM',
      +3148=>'NSM',
      +3149=>'NSM',
      +3157=>'NSM',
      +3158=>'NSM',
      +3168=>'L',
      +3169=>'L',
      +3174=>'L',
      +3175=>'L',
      +3176=>'L',
      +3177=>'L',
      +3178=>'L',
      +3179=>'L',
      +3180=>'L',
      +3181=>'L',
      +3182=>'L',
      +3183=>'L',
      +3202=>'L',
      +3203=>'L',
      +3205=>'L',
      +3206=>'L',
      +3207=>'L',
      +3208=>'L',
      +3209=>'L',
      +3210=>'L',
      +3211=>'L',
      +3212=>'L',
      +3214=>'L',
      +3215=>'L',
      +3216=>'L',
      +3218=>'L',
      +3219=>'L',
      +3220=>'L',
      +3221=>'L',
      +3222=>'L',
      +3223=>'L',
      +3224=>'L',
      +3225=>'L',
      +3226=>'L',
      +3227=>'L',
      +3228=>'L',
      +3229=>'L',
      +3230=>'L',
      +3231=>'L',
      +3232=>'L',
      +3233=>'L',
      +3234=>'L',
      +3235=>'L',
      +3236=>'L',
      +3237=>'L',
      +3238=>'L',
      +3239=>'L',
      +3240=>'L',
      +3242=>'L',
      +3243=>'L',
      +3244=>'L',
      +3245=>'L',
      +3246=>'L',
      +3247=>'L',
      +3248=>'L',
      +3249=>'L',
      +3250=>'L',
      +3251=>'L',
      +3253=>'L',
      +3254=>'L',
      +3255=>'L',
      +3256=>'L',
      +3257=>'L',
      +3260=>'NSM',
      +3261=>'L',
      +3262=>'L',
      +3263=>'L',
      +3264=>'L',
      +3265=>'L',
      +3266=>'L',
      +3267=>'L',
      +3268=>'L',
      +3270=>'L',
      +3271=>'L',
      +3272=>'L',
      +3274=>'L',
      +3275=>'L',
      +3276=>'NSM',
      +3277=>'NSM',
      +3285=>'L',
      +3286=>'L',
      +3294=>'L',
      +3296=>'L',
      +3297=>'L',
      +3298=>'NSM',
      +3299=>'NSM',
      +3302=>'L',
      +3303=>'L',
      +3304=>'L',
      +3305=>'L',
      +3306=>'L',
      +3307=>'L',
      +3308=>'L',
      +3309=>'L',
      +3310=>'L',
      +3311=>'L',
      +3313=>'ON',
      +3314=>'ON',
      +3330=>'L',
      +3331=>'L',
      +3333=>'L',
      +3334=>'L',
      +3335=>'L',
      +3336=>'L',
      +3337=>'L',
      +3338=>'L',
      +3339=>'L',
      +3340=>'L',
      +3342=>'L',
      +3343=>'L',
      +3344=>'L',
      +3346=>'L',
      +3347=>'L',
      +3348=>'L',
      +3349=>'L',
      +3350=>'L',
      +3351=>'L',
      +3352=>'L',
      +3353=>'L',
      +3354=>'L',
      +3355=>'L',
      +3356=>'L',
      +3357=>'L',
      +3358=>'L',
      +3359=>'L',
      +3360=>'L',
      +3361=>'L',
      +3362=>'L',
      +3363=>'L',
      +3364=>'L',
      +3365=>'L',
      +3366=>'L',
      +3367=>'L',
      +3368=>'L',
      +3370=>'L',
      +3371=>'L',
      +3372=>'L',
      +3373=>'L',
      +3374=>'L',
      +3375=>'L',
      +3376=>'L',
      +3377=>'L',
      +3378=>'L',
      +3379=>'L',
      +3380=>'L',
      +3381=>'L',
      +3382=>'L',
      +3383=>'L',
      +3384=>'L',
      +3385=>'L',
      +3390=>'L',
      +3391=>'L',
      +3392=>'L',
      +3393=>'NSM',
      +3394=>'NSM',
      +3395=>'NSM',
      +3398=>'L',
      +3399=>'L',
      +3400=>'L',
      +3402=>'L',
      +3403=>'L',
      +3404=>'L',
      +3405=>'NSM',
      +3415=>'L',
      +3424=>'L',
      +3425=>'L',
      +3430=>'L',
      +3431=>'L',
      +3432=>'L',
      +3433=>'L',
      +3434=>'L',
      +3435=>'L',
      +3436=>'L',
      +3437=>'L',
      +3438=>'L',
      +3439=>'L',
      +3458=>'L',
      +3459=>'L',
      +3461=>'L',
      +3462=>'L',
      +3463=>'L',
      +3464=>'L',
      +3465=>'L',
      +3466=>'L',
      +3467=>'L',
      +3468=>'L',
      +3469=>'L',
      +3470=>'L',
      +3471=>'L',
      +3472=>'L',
      +3473=>'L',
      +3474=>'L',
      +3475=>'L',
      +3476=>'L',
      +3477=>'L',
      +3478=>'L',
      +3482=>'L',
      +3483=>'L',
      +3484=>'L',
      +3485=>'L',
      +3486=>'L',
      +3487=>'L',
      +3488=>'L',
      +3489=>'L',
      +3490=>'L',
      +3491=>'L',
      +3492=>'L',
      +3493=>'L',
      +3494=>'L',
      +3495=>'L',
      +3496=>'L',
      +3497=>'L',
      +3498=>'L',
      +3499=>'L',
      +3500=>'L',
      +3501=>'L',
      +3502=>'L',
      +3503=>'L',
      +3504=>'L',
      +3505=>'L',
      +3507=>'L',
      +3508=>'L',
      +3509=>'L',
      +3510=>'L',
      +3511=>'L',
      +3512=>'L',
      +3513=>'L',
      +3514=>'L',
      +3515=>'L',
      +3517=>'L',
      +3520=>'L',
      +3521=>'L',
      +3522=>'L',
      +3523=>'L',
      +3524=>'L',
      +3525=>'L',
      +3526=>'L',
      +3530=>'NSM',
      +3535=>'L',
      +3536=>'L',
      +3537=>'L',
      +3538=>'NSM',
      +3539=>'NSM',
      +3540=>'NSM',
      +3542=>'NSM',
      +3544=>'L',
      +3545=>'L',
      +3546=>'L',
      +3547=>'L',
      +3548=>'L',
      +3549=>'L',
      +3550=>'L',
      +3551=>'L',
      +3570=>'L',
      +3571=>'L',
      +3572=>'L',
      +3585=>'L',
      +3586=>'L',
      +3587=>'L',
      +3588=>'L',
      +3589=>'L',
      +3590=>'L',
      +3591=>'L',
      +3592=>'L',
      +3593=>'L',
      +3594=>'L',
      +3595=>'L',
      +3596=>'L',
      +3597=>'L',
      +3598=>'L',
      +3599=>'L',
      +3600=>'L',
      +3601=>'L',
      +3602=>'L',
      +3603=>'L',
      +3604=>'L',
      +3605=>'L',
      +3606=>'L',
      +3607=>'L',
      +3608=>'L',
      +3609=>'L',
      +3610=>'L',
      +3611=>'L',
      +3612=>'L',
      +3613=>'L',
      +3614=>'L',
      +3615=>'L',
      +3616=>'L',
      +3617=>'L',
      +3618=>'L',
      +3619=>'L',
      +3620=>'L',
      +3621=>'L',
      +3622=>'L',
      +3623=>'L',
      +3624=>'L',
      +3625=>'L',
      +3626=>'L',
      +3627=>'L',
      +3628=>'L',
      +3629=>'L',
      +3630=>'L',
      +3631=>'L',
      +3632=>'L',
      +3633=>'NSM',
      +3634=>'L',
      +3635=>'L',
      +3636=>'NSM',
      +3637=>'NSM',
      +3638=>'NSM',
      +3639=>'NSM',
      +3640=>'NSM',
      +3641=>'NSM',
      +3642=>'NSM',
      +3647=>'ET',
      +3648=>'L',
      +3649=>'L',
      +3650=>'L',
      +3651=>'L',
      +3652=>'L',
      +3653=>'L',
      +3654=>'L',
      +3655=>'NSM',
      +3656=>'NSM',
      +3657=>'NSM',
      +3658=>'NSM',
      +3659=>'NSM',
      +3660=>'NSM',
      +3661=>'NSM',
      +3662=>'NSM',
      +3663=>'L',
      +3664=>'L',
      +3665=>'L',
      +3666=>'L',
      +3667=>'L',
      +3668=>'L',
      +3669=>'L',
      +3670=>'L',
      +3671=>'L',
      +3672=>'L',
      +3673=>'L',
      +3674=>'L',
      +3675=>'L',
      +3713=>'L',
      +3714=>'L',
      +3716=>'L',
      +3719=>'L',
      +3720=>'L',
      +3722=>'L',
      +3725=>'L',
      +3732=>'L',
      +3733=>'L',
      +3734=>'L',
      +3735=>'L',
      +3737=>'L',
      +3738=>'L',
      +3739=>'L',
      +3740=>'L',
      +3741=>'L',
      +3742=>'L',
      +3743=>'L',
      +3745=>'L',
      +3746=>'L',
      +3747=>'L',
      +3749=>'L',
      +3751=>'L',
      +3754=>'L',
      +3755=>'L',
      +3757=>'L',
      +3758=>'L',
      +3759=>'L',
      +3760=>'L',
      +3761=>'NSM',
      +3762=>'L',
      +3763=>'L',
      +3764=>'NSM',
      +3765=>'NSM',
      +3766=>'NSM',
      +3767=>'NSM',
      +3768=>'NSM',
      +3769=>'NSM',
      +3771=>'NSM',
      +3772=>'NSM',
      +3773=>'L',
      +3776=>'L',
      +3777=>'L',
      +3778=>'L',
      +3779=>'L',
      +3780=>'L',
      +3782=>'L',
      +3784=>'NSM',
      +3785=>'NSM',
      +3786=>'NSM',
      +3787=>'NSM',
      +3788=>'NSM',
      +3789=>'NSM',
      +3792=>'L',
      +3793=>'L',
      +3794=>'L',
      +3795=>'L',
      +3796=>'L',
      +3797=>'L',
      +3798=>'L',
      +3799=>'L',
      +3800=>'L',
      +3801=>'L',
      +3804=>'L',
      +3805=>'L',
      +3840=>'L',
      +3841=>'L',
      +3842=>'L',
      +3843=>'L',
      +3844=>'L',
      +3845=>'L',
      +3846=>'L',
      +3847=>'L',
      +3848=>'L',
      +3849=>'L',
      +3850=>'L',
      +3851=>'L',
      +3852=>'L',
      +3853=>'L',
      +3854=>'L',
      +3855=>'L',
      +3856=>'L',
      +3857=>'L',
      +3858=>'L',
      +3859=>'L',
      +3860=>'L',
      +3861=>'L',
      +3862=>'L',
      +3863=>'L',
      +3864=>'NSM',
      +3865=>'NSM',
      +3866=>'L',
      +3867=>'L',
      +3868=>'L',
      +3869=>'L',
      +3870=>'L',
      +3871=>'L',
      +3872=>'L',
      +3873=>'L',
      +3874=>'L',
      +3875=>'L',
      +3876=>'L',
      +3877=>'L',
      +3878=>'L',
      +3879=>'L',
      +3880=>'L',
      +3881=>'L',
      +3882=>'L',
      +3883=>'L',
      +3884=>'L',
      +3885=>'L',
      +3886=>'L',
      +3887=>'L',
      +3888=>'L',
      +3889=>'L',
      +3890=>'L',
      +3891=>'L',
      +3892=>'L',
      +3893=>'NSM',
      +3894=>'L',
      +3895=>'NSM',
      +3896=>'L',
      +3897=>'NSM',
      +3898=>'ON',
      +3899=>'ON',
      +3900=>'ON',
      +3901=>'ON',
      +3902=>'L',
      +3903=>'L',
      +3904=>'L',
      +3905=>'L',
      +3906=>'L',
      +3907=>'L',
      +3908=>'L',
      +3909=>'L',
      +3910=>'L',
      +3911=>'L',
      +3913=>'L',
      +3914=>'L',
      +3915=>'L',
      +3916=>'L',
      +3917=>'L',
      +3918=>'L',
      +3919=>'L',
      +3920=>'L',
      +3921=>'L',
      +3922=>'L',
      +3923=>'L',
      +3924=>'L',
      +3925=>'L',
      +3926=>'L',
      +3927=>'L',
      +3928=>'L',
      +3929=>'L',
      +3930=>'L',
      +3931=>'L',
      +3932=>'L',
      +3933=>'L',
      +3934=>'L',
      +3935=>'L',
      +3936=>'L',
      +3937=>'L',
      +3938=>'L',
      +3939=>'L',
      +3940=>'L',
      +3941=>'L',
      +3942=>'L',
      +3943=>'L',
      +3944=>'L',
      +3945=>'L',
      +3946=>'L',
      +3953=>'NSM',
      +3954=>'NSM',
      +3955=>'NSM',
      +3956=>'NSM',
      +3957=>'NSM',
      +3958=>'NSM',
      +3959=>'NSM',
      +3960=>'NSM',
      +3961=>'NSM',
      +3962=>'NSM',
      +3963=>'NSM',
      +3964=>'NSM',
      +3965=>'NSM',
      +3966=>'NSM',
      +3967=>'L',
      +3968=>'NSM',
      +3969=>'NSM',
      +3970=>'NSM',
      +3971=>'NSM',
      +3972=>'NSM',
      +3973=>'L',
      +3974=>'NSM',
      +3975=>'NSM',
      +3976=>'L',
      +3977=>'L',
      +3978=>'L',
      +3979=>'L',
      +3984=>'NSM',
      +3985=>'NSM',
      +3986=>'NSM',
      +3987=>'NSM',
      +3988=>'NSM',
      +3989=>'NSM',
      +3990=>'NSM',
      +3991=>'NSM',
      +3993=>'NSM',
      +3994=>'NSM',
      +3995=>'NSM',
      +3996=>'NSM',
      +3997=>'NSM',
      +3998=>'NSM',
      +3999=>'NSM',
      +4000=>'NSM',
      +4001=>'NSM',
      +4002=>'NSM',
      +4003=>'NSM',
      +4004=>'NSM',
      +4005=>'NSM',
      +4006=>'NSM',
      +4007=>'NSM',
      +4008=>'NSM',
      +4009=>'NSM',
      +4010=>'NSM',
      +4011=>'NSM',
      +4012=>'NSM',
      +4013=>'NSM',
      +4014=>'NSM',
      +4015=>'NSM',
      +4016=>'NSM',
      +4017=>'NSM',
      +4018=>'NSM',
      +4019=>'NSM',
      +4020=>'NSM',
      +4021=>'NSM',
      +4022=>'NSM',
      +4023=>'NSM',
      +4024=>'NSM',
      +4025=>'NSM',
      +4026=>'NSM',
      +4027=>'NSM',
      +4028=>'NSM',
      +4030=>'L',
      +4031=>'L',
      +4032=>'L',
      +4033=>'L',
      +4034=>'L',
      +4035=>'L',
      +4036=>'L',
      +4037=>'L',
      +4038=>'NSM',
      +4039=>'L',
      +4040=>'L',
      +4041=>'L',
      +4042=>'L',
      +4043=>'L',
      +4044=>'L',
      +4047=>'L',
      +4048=>'L',
      +4049=>'L',
      +4096=>'L',
      +4097=>'L',
      +4098=>'L',
      +4099=>'L',
      +4100=>'L',
      +4101=>'L',
      +4102=>'L',
      +4103=>'L',
      +4104=>'L',
      +4105=>'L',
      +4106=>'L',
      +4107=>'L',
      +4108=>'L',
      +4109=>'L',
      +4110=>'L',
      +4111=>'L',
      +4112=>'L',
      +4113=>'L',
      +4114=>'L',
      +4115=>'L',
      +4116=>'L',
      +4117=>'L',
      +4118=>'L',
      +4119=>'L',
      +4120=>'L',
      +4121=>'L',
      +4122=>'L',
      +4123=>'L',
      +4124=>'L',
      +4125=>'L',
      +4126=>'L',
      +4127=>'L',
      +4128=>'L',
      +4129=>'L',
      +4131=>'L',
      +4132=>'L',
      +4133=>'L',
      +4134=>'L',
      +4135=>'L',
      +4137=>'L',
      +4138=>'L',
      +4140=>'L',
      +4141=>'NSM',
      +4142=>'NSM',
      +4143=>'NSM',
      +4144=>'NSM',
      +4145=>'L',
      +4146=>'NSM',
      +4150=>'NSM',
      +4151=>'NSM',
      +4152=>'L',
      +4153=>'NSM',
      +4160=>'L',
      +4161=>'L',
      +4162=>'L',
      +4163=>'L',
      +4164=>'L',
      +4165=>'L',
      +4166=>'L',
      +4167=>'L',
      +4168=>'L',
      +4169=>'L',
      +4170=>'L',
      +4171=>'L',
      +4172=>'L',
      +4173=>'L',
      +4174=>'L',
      +4175=>'L',
      +4176=>'L',
      +4177=>'L',
      +4178=>'L',
      +4179=>'L',
      +4180=>'L',
      +4181=>'L',
      +4182=>'L',
      +4183=>'L',
      +4184=>'NSM',
      +4185=>'NSM',
      +4256=>'L',
      +4257=>'L',
      +4258=>'L',
      +4259=>'L',
      +4260=>'L',
      +4261=>'L',
      +4262=>'L',
      +4263=>'L',
      +4264=>'L',
      +4265=>'L',
      +4266=>'L',
      +4267=>'L',
      +4268=>'L',
      +4269=>'L',
      +4270=>'L',
      +4271=>'L',
      +4272=>'L',
      +4273=>'L',
      +4274=>'L',
      +4275=>'L',
      +4276=>'L',
      +4277=>'L',
      +4278=>'L',
      +4279=>'L',
      +4280=>'L',
      +4281=>'L',
      +4282=>'L',
      +4283=>'L',
      +4284=>'L',
      +4285=>'L',
      +4286=>'L',
      +4287=>'L',
      +4288=>'L',
      +4289=>'L',
      +4290=>'L',
      +4291=>'L',
      +4292=>'L',
      +4293=>'L',
      +4304=>'L',
      +4305=>'L',
      +4306=>'L',
      +4307=>'L',
      +4308=>'L',
      +4309=>'L',
      +4310=>'L',
      +4311=>'L',
      +4312=>'L',
      +4313=>'L',
      +4314=>'L',
      +4315=>'L',
      +4316=>'L',
      +4317=>'L',
      +4318=>'L',
      +4319=>'L',
      +4320=>'L',
      +4321=>'L',
      +4322=>'L',
      +4323=>'L',
      +4324=>'L',
      +4325=>'L',
      +4326=>'L',
      +4327=>'L',
      +4328=>'L',
      +4329=>'L',
      +4330=>'L',
      +4331=>'L',
      +4332=>'L',
      +4333=>'L',
      +4334=>'L',
      +4335=>'L',
      +4336=>'L',
      +4337=>'L',
      +4338=>'L',
      +4339=>'L',
      +4340=>'L',
      +4341=>'L',
      +4342=>'L',
      +4343=>'L',
      +4344=>'L',
      +4345=>'L',
      +4346=>'L',
      +4347=>'L',
      +4348=>'L',
      +4352=>'L',
      +4353=>'L',
      +4354=>'L',
      +4355=>'L',
      +4356=>'L',
      +4357=>'L',
      +4358=>'L',
      +4359=>'L',
      +4360=>'L',
      +4361=>'L',
      +4362=>'L',
      +4363=>'L',
      +4364=>'L',
      +4365=>'L',
      +4366=>'L',
      +4367=>'L',
      +4368=>'L',
      +4369=>'L',
      +4370=>'L',
      +4371=>'L',
      +4372=>'L',
      +4373=>'L',
      +4374=>'L',
      +4375=>'L',
      +4376=>'L',
      +4377=>'L',
      +4378=>'L',
      +4379=>'L',
      +4380=>'L',
      +4381=>'L',
      +4382=>'L',
      +4383=>'L',
      +4384=>'L',
      +4385=>'L',
      +4386=>'L',
      +4387=>'L',
      +4388=>'L',
      +4389=>'L',
      +4390=>'L',
      +4391=>'L',
      +4392=>'L',
      +4393=>'L',
      +4394=>'L',
      +4395=>'L',
      +4396=>'L',
      +4397=>'L',
      +4398=>'L',
      +4399=>'L',
      +4400=>'L',
      +4401=>'L',
      +4402=>'L',
      +4403=>'L',
      +4404=>'L',
      +4405=>'L',
      +4406=>'L',
      +4407=>'L',
      +4408=>'L',
      +4409=>'L',
      +4410=>'L',
      +4411=>'L',
      +4412=>'L',
      +4413=>'L',
      +4414=>'L',
      +4415=>'L',
      +4416=>'L',
      +4417=>'L',
      +4418=>'L',
      +4419=>'L',
      +4420=>'L',
      +4421=>'L',
      +4422=>'L',
      +4423=>'L',
      +4424=>'L',
      +4425=>'L',
      +4426=>'L',
      +4427=>'L',
      +4428=>'L',
      +4429=>'L',
      +4430=>'L',
      +4431=>'L',
      +4432=>'L',
      +4433=>'L',
      +4434=>'L',
      +4435=>'L',
      +4436=>'L',
      +4437=>'L',
      +4438=>'L',
      +4439=>'L',
      +4440=>'L',
      +4441=>'L',
      +4447=>'L',
      +4448=>'L',
      +4449=>'L',
      +4450=>'L',
      +4451=>'L',
      +4452=>'L',
      +4453=>'L',
      +4454=>'L',
      +4455=>'L',
      +4456=>'L',
      +4457=>'L',
      +4458=>'L',
      +4459=>'L',
      +4460=>'L',
      +4461=>'L',
      +4462=>'L',
      +4463=>'L',
      +4464=>'L',
      +4465=>'L',
      +4466=>'L',
      +4467=>'L',
      +4468=>'L',
      +4469=>'L',
      +4470=>'L',
      +4471=>'L',
      +4472=>'L',
      +4473=>'L',
      +4474=>'L',
      +4475=>'L',
      +4476=>'L',
      +4477=>'L',
      +4478=>'L',
      +4479=>'L',
      +4480=>'L',
      +4481=>'L',
      +4482=>'L',
      +4483=>'L',
      +4484=>'L',
      +4485=>'L',
      +4486=>'L',
      +4487=>'L',
      +4488=>'L',
      +4489=>'L',
      +4490=>'L',
      +4491=>'L',
      +4492=>'L',
      +4493=>'L',
      +4494=>'L',
      +4495=>'L',
      +4496=>'L',
      +4497=>'L',
      +4498=>'L',
      +4499=>'L',
      +4500=>'L',
      +4501=>'L',
      +4502=>'L',
      +4503=>'L',
      +4504=>'L',
      +4505=>'L',
      +4506=>'L',
      +4507=>'L',
      +4508=>'L',
      +4509=>'L',
      +4510=>'L',
      +4511=>'L',
      +4512=>'L',
      +4513=>'L',
      +4514=>'L',
      +4520=>'L',
      +4521=>'L',
      +4522=>'L',
      +4523=>'L',
      +4524=>'L',
      +4525=>'L',
      +4526=>'L',
      +4527=>'L',
      +4528=>'L',
      +4529=>'L',
      +4530=>'L',
      +4531=>'L',
      +4532=>'L',
      +4533=>'L',
      +4534=>'L',
      +4535=>'L',
      +4536=>'L',
      +4537=>'L',
      +4538=>'L',
      +4539=>'L',
      +4540=>'L',
      +4541=>'L',
      +4542=>'L',
      +4543=>'L',
      +4544=>'L',
      +4545=>'L',
      +4546=>'L',
      +4547=>'L',
      +4548=>'L',
      +4549=>'L',
      +4550=>'L',
      +4551=>'L',
      +4552=>'L',
      +4553=>'L',
      +4554=>'L',
      +4555=>'L',
      +4556=>'L',
      +4557=>'L',
      +4558=>'L',
      +4559=>'L',
      +4560=>'L',
      +4561=>'L',
      +4562=>'L',
      +4563=>'L',
      +4564=>'L',
      +4565=>'L',
      +4566=>'L',
      +4567=>'L',
      +4568=>'L',
      +4569=>'L',
      +4570=>'L',
      +4571=>'L',
      +4572=>'L',
      +4573=>'L',
      +4574=>'L',
      +4575=>'L',
      +4576=>'L',
      +4577=>'L',
      +4578=>'L',
      +4579=>'L',
      +4580=>'L',
      +4581=>'L',
      +4582=>'L',
      +4583=>'L',
      +4584=>'L',
      +4585=>'L',
      +4586=>'L',
      +4587=>'L',
      +4588=>'L',
      +4589=>'L',
      +4590=>'L',
      +4591=>'L',
      +4592=>'L',
      +4593=>'L',
      +4594=>'L',
      +4595=>'L',
      +4596=>'L',
      +4597=>'L',
      +4598=>'L',
      +4599=>'L',
      +4600=>'L',
      +4601=>'L',
      +4608=>'L',
      +4609=>'L',
      +4610=>'L',
      +4611=>'L',
      +4612=>'L',
      +4613=>'L',
      +4614=>'L',
      +4615=>'L',
      +4616=>'L',
      +4617=>'L',
      +4618=>'L',
      +4619=>'L',
      +4620=>'L',
      +4621=>'L',
      +4622=>'L',
      +4623=>'L',
      +4624=>'L',
      +4625=>'L',
      +4626=>'L',
      +4627=>'L',
      +4628=>'L',
      +4629=>'L',
      +4630=>'L',
      +4631=>'L',
      +4632=>'L',
      +4633=>'L',
      +4634=>'L',
      +4635=>'L',
      +4636=>'L',
      +4637=>'L',
      +4638=>'L',
      +4639=>'L',
      +4640=>'L',
      +4641=>'L',
      +4642=>'L',
      +4643=>'L',
      +4644=>'L',
      +4645=>'L',
      +4646=>'L',
      +4647=>'L',
      +4648=>'L',
      +4649=>'L',
      +4650=>'L',
      +4651=>'L',
      +4652=>'L',
      +4653=>'L',
      +4654=>'L',
      +4655=>'L',
      +4656=>'L',
      +4657=>'L',
      +4658=>'L',
      +4659=>'L',
      +4660=>'L',
      +4661=>'L',
      +4662=>'L',
      +4663=>'L',
      +4664=>'L',
      +4665=>'L',
      +4666=>'L',
      +4667=>'L',
      +4668=>'L',
      +4669=>'L',
      +4670=>'L',
      +4671=>'L',
      +4672=>'L',
      +4673=>'L',
      +4674=>'L',
      +4675=>'L',
      +4676=>'L',
      +4677=>'L',
      +4678=>'L',
      +4679=>'L',
      +4680=>'L',
      +4682=>'L',
      +4683=>'L',
      +4684=>'L',
      +4685=>'L',
      +4688=>'L',
      +4689=>'L',
      +4690=>'L',
      +4691=>'L',
      +4692=>'L',
      +4693=>'L',
      +4694=>'L',
      +4696=>'L',
      +4698=>'L',
      +4699=>'L',
      +4700=>'L',
      +4701=>'L',
      +4704=>'L',
      +4705=>'L',
      +4706=>'L',
      +4707=>'L',
      +4708=>'L',
      +4709=>'L',
      +4710=>'L',
      +4711=>'L',
      +4712=>'L',
      +4713=>'L',
      +4714=>'L',
      +4715=>'L',
      +4716=>'L',
      +4717=>'L',
      +4718=>'L',
      +4719=>'L',
      +4720=>'L',
      +4721=>'L',
      +4722=>'L',
      +4723=>'L',
      +4724=>'L',
      +4725=>'L',
      +4726=>'L',
      +4727=>'L',
      +4728=>'L',
      +4729=>'L',
      +4730=>'L',
      +4731=>'L',
      +4732=>'L',
      +4733=>'L',
      +4734=>'L',
      +4735=>'L',
      +4736=>'L',
      +4737=>'L',
      +4738=>'L',
      +4739=>'L',
      +4740=>'L',
      +4741=>'L',
      +4742=>'L',
      +4743=>'L',
      +4744=>'L',
      +4746=>'L',
      +4747=>'L',
      +4748=>'L',
      +4749=>'L',
      +4752=>'L',
      +4753=>'L',
      +4754=>'L',
      +4755=>'L',
      +4756=>'L',
      +4757=>'L',
      +4758=>'L',
      +4759=>'L',
      +4760=>'L',
      +4761=>'L',
      +4762=>'L',
      +4763=>'L',
      +4764=>'L',
      +4765=>'L',
      +4766=>'L',
      +4767=>'L',
      +4768=>'L',
      +4769=>'L',
      +4770=>'L',
      +4771=>'L',
      +4772=>'L',
      +4773=>'L',
      +4774=>'L',
      +4775=>'L',
      +4776=>'L',
      +4777=>'L',
      +4778=>'L',
      +4779=>'L',
      +4780=>'L',
      +4781=>'L',
      +4782=>'L',
      +4783=>'L',
      +4784=>'L',
      +4786=>'L',
      +4787=>'L',
      +4788=>'L',
      +4789=>'L',
      +4792=>'L',
      +4793=>'L',
      +4794=>'L',
      +4795=>'L',
      +4796=>'L',
      +4797=>'L',
      +4798=>'L',
      +4800=>'L',
      +4802=>'L',
      +4803=>'L',
      +4804=>'L',
      +4805=>'L',
      +4808=>'L',
      +4809=>'L',
      +4810=>'L',
      +4811=>'L',
      +4812=>'L',
      +4813=>'L',
      +4814=>'L',
      +4815=>'L',
      +4816=>'L',
      +4817=>'L',
      +4818=>'L',
      +4819=>'L',
      +4820=>'L',
      +4821=>'L',
      +4822=>'L',
      +4824=>'L',
      +4825=>'L',
      +4826=>'L',
      +4827=>'L',
      +4828=>'L',
      +4829=>'L',
      +4830=>'L',
      +4831=>'L',
      +4832=>'L',
      +4833=>'L',
      +4834=>'L',
      +4835=>'L',
      +4836=>'L',
      +4837=>'L',
      +4838=>'L',
      +4839=>'L',
      +4840=>'L',
      +4841=>'L',
      +4842=>'L',
      +4843=>'L',
      +4844=>'L',
      +4845=>'L',
      +4846=>'L',
      +4847=>'L',
      +4848=>'L',
      +4849=>'L',
      +4850=>'L',
      +4851=>'L',
      +4852=>'L',
      +4853=>'L',
      +4854=>'L',
      +4855=>'L',
      +4856=>'L',
      +4857=>'L',
      +4858=>'L',
      +4859=>'L',
      +4860=>'L',
      +4861=>'L',
      +4862=>'L',
      +4863=>'L',
      +4864=>'L',
      +4865=>'L',
      +4866=>'L',
      +4867=>'L',
      +4868=>'L',
      +4869=>'L',
      +4870=>'L',
      +4871=>'L',
      +4872=>'L',
      +4873=>'L',
      +4874=>'L',
      +4875=>'L',
      +4876=>'L',
      +4877=>'L',
      +4878=>'L',
      +4879=>'L',
      +4880=>'L',
      +4882=>'L',
      +4883=>'L',
      +4884=>'L',
      +4885=>'L',
      +4888=>'L',
      +4889=>'L',
      +4890=>'L',
      +4891=>'L',
      +4892=>'L',
      +4893=>'L',
      +4894=>'L',
      +4895=>'L',
      +4896=>'L',
      +4897=>'L',
      +4898=>'L',
      +4899=>'L',
      +4900=>'L',
      +4901=>'L',
      +4902=>'L',
      +4903=>'L',
      +4904=>'L',
      +4905=>'L',
      +4906=>'L',
      +4907=>'L',
      +4908=>'L',
      +4909=>'L',
      +4910=>'L',
      +4911=>'L',
      +4912=>'L',
      +4913=>'L',
      +4914=>'L',
      +4915=>'L',
      +4916=>'L',
      +4917=>'L',
      +4918=>'L',
      +4919=>'L',
      +4920=>'L',
      +4921=>'L',
      +4922=>'L',
      +4923=>'L',
      +4924=>'L',
      +4925=>'L',
      +4926=>'L',
      +4927=>'L',
      +4928=>'L',
      +4929=>'L',
      +4930=>'L',
      +4931=>'L',
      +4932=>'L',
      +4933=>'L',
      +4934=>'L',
      +4935=>'L',
      +4936=>'L',
      +4937=>'L',
      +4938=>'L',
      +4939=>'L',
      +4940=>'L',
      +4941=>'L',
      +4942=>'L',
      +4943=>'L',
      +4944=>'L',
      +4945=>'L',
      +4946=>'L',
      +4947=>'L',
      +4948=>'L',
      +4949=>'L',
      +4950=>'L',
      +4951=>'L',
      +4952=>'L',
      +4953=>'L',
      +4954=>'L',
      +4959=>'NSM',
      +4960=>'L',
      +4961=>'L',
      +4962=>'L',
      +4963=>'L',
      +4964=>'L',
      +4965=>'L',
      +4966=>'L',
      +4967=>'L',
      +4968=>'L',
      +4969=>'L',
      +4970=>'L',
      +4971=>'L',
      +4972=>'L',
      +4973=>'L',
      +4974=>'L',
      +4975=>'L',
      +4976=>'L',
      +4977=>'L',
      +4978=>'L',
      +4979=>'L',
      +4980=>'L',
      +4981=>'L',
      +4982=>'L',
      +4983=>'L',
      +4984=>'L',
      +4985=>'L',
      +4986=>'L',
      +4987=>'L',
      +4988=>'L',
      +4992=>'L',
      +4993=>'L',
      +4994=>'L',
      +4995=>'L',
      +4996=>'L',
      +4997=>'L',
      +4998=>'L',
      +4999=>'L',
      +5000=>'L',
      +5001=>'L',
      +5002=>'L',
      +5003=>'L',
      +5004=>'L',
      +5005=>'L',
      +5006=>'L',
      +5007=>'L',
      +5008=>'ON',
      +5009=>'ON',
      +5010=>'ON',
      +5011=>'ON',
      +5012=>'ON',
      +5013=>'ON',
      +5014=>'ON',
      +5015=>'ON',
      +5016=>'ON',
      +5017=>'ON',
      +5024=>'L',
      +5025=>'L',
      +5026=>'L',
      +5027=>'L',
      +5028=>'L',
      +5029=>'L',
      +5030=>'L',
      +5031=>'L',
      +5032=>'L',
      +5033=>'L',
      +5034=>'L',
      +5035=>'L',
      +5036=>'L',
      +5037=>'L',
      +5038=>'L',
      +5039=>'L',
      +5040=>'L',
      +5041=>'L',
      +5042=>'L',
      +5043=>'L',
      +5044=>'L',
      +5045=>'L',
      +5046=>'L',
      +5047=>'L',
      +5048=>'L',
      +5049=>'L',
      +5050=>'L',
      +5051=>'L',
      +5052=>'L',
      +5053=>'L',
      +5054=>'L',
      +5055=>'L',
      +5056=>'L',
      +5057=>'L',
      +5058=>'L',
      +5059=>'L',
      +5060=>'L',
      +5061=>'L',
      +5062=>'L',
      +5063=>'L',
      +5064=>'L',
      +5065=>'L',
      +5066=>'L',
      +5067=>'L',
      +5068=>'L',
      +5069=>'L',
      +5070=>'L',
      +5071=>'L',
      +5072=>'L',
      +5073=>'L',
      +5074=>'L',
      +5075=>'L',
      +5076=>'L',
      +5077=>'L',
      +5078=>'L',
      +5079=>'L',
      +5080=>'L',
      +5081=>'L',
      +5082=>'L',
      +5083=>'L',
      +5084=>'L',
      +5085=>'L',
      +5086=>'L',
      +5087=>'L',
      +5088=>'L',
      +5089=>'L',
      +5090=>'L',
      +5091=>'L',
      +5092=>'L',
      +5093=>'L',
      +5094=>'L',
      +5095=>'L',
      +5096=>'L',
      +5097=>'L',
      +5098=>'L',
      +5099=>'L',
      +5100=>'L',
      +5101=>'L',
      +5102=>'L',
      +5103=>'L',
      +5104=>'L',
      +5105=>'L',
      +5106=>'L',
      +5107=>'L',
      +5108=>'L',
      +5121=>'L',
      +5122=>'L',
      +5123=>'L',
      +5124=>'L',
      +5125=>'L',
      +5126=>'L',
      +5127=>'L',
      +5128=>'L',
      +5129=>'L',
      +5130=>'L',
      +5131=>'L',
      +5132=>'L',
      +5133=>'L',
      +5134=>'L',
      +5135=>'L',
      +5136=>'L',
      +5137=>'L',
      +5138=>'L',
      +5139=>'L',
      +5140=>'L',
      +5141=>'L',
      +5142=>'L',
      +5143=>'L',
      +5144=>'L',
      +5145=>'L',
      +5146=>'L',
      +5147=>'L',
      +5148=>'L',
      +5149=>'L',
      +5150=>'L',
      +5151=>'L',
      +5152=>'L',
      +5153=>'L',
      +5154=>'L',
      +5155=>'L',
      +5156=>'L',
      +5157=>'L',
      +5158=>'L',
      +5159=>'L',
      +5160=>'L',
      +5161=>'L',
      +5162=>'L',
      +5163=>'L',
      +5164=>'L',
      +5165=>'L',
      +5166=>'L',
      +5167=>'L',
      +5168=>'L',
      +5169=>'L',
      +5170=>'L',
      +5171=>'L',
      +5172=>'L',
      +5173=>'L',
      +5174=>'L',
      +5175=>'L',
      +5176=>'L',
      +5177=>'L',
      +5178=>'L',
      +5179=>'L',
      +5180=>'L',
      +5181=>'L',
      +5182=>'L',
      +5183=>'L',
      +5184=>'L',
      +5185=>'L',
      +5186=>'L',
      +5187=>'L',
      +5188=>'L',
      +5189=>'L',
      +5190=>'L',
      +5191=>'L',
      +5192=>'L',
      +5193=>'L',
      +5194=>'L',
      +5195=>'L',
      +5196=>'L',
      +5197=>'L',
      +5198=>'L',
      +5199=>'L',
      +5200=>'L',
      +5201=>'L',
      +5202=>'L',
      +5203=>'L',
      +5204=>'L',
      +5205=>'L',
      +5206=>'L',
      +5207=>'L',
      +5208=>'L',
      +5209=>'L',
      +5210=>'L',
      +5211=>'L',
      +5212=>'L',
      +5213=>'L',
      +5214=>'L',
      +5215=>'L',
      +5216=>'L',
      +5217=>'L',
      +5218=>'L',
      +5219=>'L',
      +5220=>'L',
      +5221=>'L',
      +5222=>'L',
      +5223=>'L',
      +5224=>'L',
      +5225=>'L',
      +5226=>'L',
      +5227=>'L',
      +5228=>'L',
      +5229=>'L',
      +5230=>'L',
      +5231=>'L',
      +5232=>'L',
      +5233=>'L',
      +5234=>'L',
      +5235=>'L',
      +5236=>'L',
      +5237=>'L',
      +5238=>'L',
      +5239=>'L',
      +5240=>'L',
      +5241=>'L',
      +5242=>'L',
      +5243=>'L',
      +5244=>'L',
      +5245=>'L',
      +5246=>'L',
      +5247=>'L',
      +5248=>'L',
      +5249=>'L',
      +5250=>'L',
      +5251=>'L',
      +5252=>'L',
      +5253=>'L',
      +5254=>'L',
      +5255=>'L',
      +5256=>'L',
      +5257=>'L',
      +5258=>'L',
      +5259=>'L',
      +5260=>'L',
      +5261=>'L',
      +5262=>'L',
      +5263=>'L',
      +5264=>'L',
      +5265=>'L',
      +5266=>'L',
      +5267=>'L',
      +5268=>'L',
      +5269=>'L',
      +5270=>'L',
      +5271=>'L',
      +5272=>'L',
      +5273=>'L',
      +5274=>'L',
      +5275=>'L',
      +5276=>'L',
      +5277=>'L',
      +5278=>'L',
      +5279=>'L',
      +5280=>'L',
      +5281=>'L',
      +5282=>'L',
      +5283=>'L',
      +5284=>'L',
      +5285=>'L',
      +5286=>'L',
      +5287=>'L',
      +5288=>'L',
      +5289=>'L',
      +5290=>'L',
      +5291=>'L',
      +5292=>'L',
      +5293=>'L',
      +5294=>'L',
      +5295=>'L',
      +5296=>'L',
      +5297=>'L',
      +5298=>'L',
      +5299=>'L',
      +5300=>'L',
      +5301=>'L',
      +5302=>'L',
      +5303=>'L',
      +5304=>'L',
      +5305=>'L',
      +5306=>'L',
      +5307=>'L',
      +5308=>'L',
      +5309=>'L',
      +5310=>'L',
      +5311=>'L',
      +5312=>'L',
      +5313=>'L',
      +5314=>'L',
      +5315=>'L',
      +5316=>'L',
      +5317=>'L',
      +5318=>'L',
      +5319=>'L',
      +5320=>'L',
      +5321=>'L',
      +5322=>'L',
      +5323=>'L',
      +5324=>'L',
      +5325=>'L',
      +5326=>'L',
      +5327=>'L',
      +5328=>'L',
      +5329=>'L',
      +5330=>'L',
      +5331=>'L',
      +5332=>'L',
      +5333=>'L',
      +5334=>'L',
      +5335=>'L',
      +5336=>'L',
      +5337=>'L',
      +5338=>'L',
      +5339=>'L',
      +5340=>'L',
      +5341=>'L',
      +5342=>'L',
      +5343=>'L',
      +5344=>'L',
      +5345=>'L',
      +5346=>'L',
      +5347=>'L',
      +5348=>'L',
      +5349=>'L',
      +5350=>'L',
      +5351=>'L',
      +5352=>'L',
      +5353=>'L',
      +5354=>'L',
      +5355=>'L',
      +5356=>'L',
      +5357=>'L',
      +5358=>'L',
      +5359=>'L',
      +5360=>'L',
      +5361=>'L',
      +5362=>'L',
      +5363=>'L',
      +5364=>'L',
      +5365=>'L',
      +5366=>'L',
      +5367=>'L',
      +5368=>'L',
      +5369=>'L',
      +5370=>'L',
      +5371=>'L',
      +5372=>'L',
      +5373=>'L',
      +5374=>'L',
      +5375=>'L',
      +5376=>'L',
      +5377=>'L',
      +5378=>'L',
      +5379=>'L',
      +5380=>'L',
      +5381=>'L',
      +5382=>'L',
      +5383=>'L',
      +5384=>'L',
      +5385=>'L',
      +5386=>'L',
      +5387=>'L',
      +5388=>'L',
      +5389=>'L',
      +5390=>'L',
      +5391=>'L',
      +5392=>'L',
      +5393=>'L',
      +5394=>'L',
      +5395=>'L',
      +5396=>'L',
      +5397=>'L',
      +5398=>'L',
      +5399=>'L',
      +5400=>'L',
      +5401=>'L',
      +5402=>'L',
      +5403=>'L',
      +5404=>'L',
      +5405=>'L',
      +5406=>'L',
      +5407=>'L',
      +5408=>'L',
      +5409=>'L',
      +5410=>'L',
      +5411=>'L',
      +5412=>'L',
      +5413=>'L',
      +5414=>'L',
      +5415=>'L',
      +5416=>'L',
      +5417=>'L',
      +5418=>'L',
      +5419=>'L',
      +5420=>'L',
      +5421=>'L',
      +5422=>'L',
      +5423=>'L',
      +5424=>'L',
      +5425=>'L',
      +5426=>'L',
      +5427=>'L',
      +5428=>'L',
      +5429=>'L',
      +5430=>'L',
      +5431=>'L',
      +5432=>'L',
      +5433=>'L',
      +5434=>'L',
      +5435=>'L',
      +5436=>'L',
      +5437=>'L',
      +5438=>'L',
      +5439=>'L',
      +5440=>'L',
      +5441=>'L',
      +5442=>'L',
      +5443=>'L',
      +5444=>'L',
      +5445=>'L',
      +5446=>'L',
      +5447=>'L',
      +5448=>'L',
      +5449=>'L',
      +5450=>'L',
      +5451=>'L',
      +5452=>'L',
      +5453=>'L',
      +5454=>'L',
      +5455=>'L',
      +5456=>'L',
      +5457=>'L',
      +5458=>'L',
      +5459=>'L',
      +5460=>'L',
      +5461=>'L',
      +5462=>'L',
      +5463=>'L',
      +5464=>'L',
      +5465=>'L',
      +5466=>'L',
      +5467=>'L',
      +5468=>'L',
      +5469=>'L',
      +5470=>'L',
      +5471=>'L',
      +5472=>'L',
      +5473=>'L',
      +5474=>'L',
      +5475=>'L',
      +5476=>'L',
      +5477=>'L',
      +5478=>'L',
      +5479=>'L',
      +5480=>'L',
      +5481=>'L',
      +5482=>'L',
      +5483=>'L',
      +5484=>'L',
      +5485=>'L',
      +5486=>'L',
      +5487=>'L',
      +5488=>'L',
      +5489=>'L',
      +5490=>'L',
      +5491=>'L',
      +5492=>'L',
      +5493=>'L',
      +5494=>'L',
      +5495=>'L',
      +5496=>'L',
      +5497=>'L',
      +5498=>'L',
      +5499=>'L',
      +5500=>'L',
      +5501=>'L',
      +5502=>'L',
      +5503=>'L',
      +5504=>'L',
      +5505=>'L',
      +5506=>'L',
      +5507=>'L',
      +5508=>'L',
      +5509=>'L',
      +5510=>'L',
      +5511=>'L',
      +5512=>'L',
      +5513=>'L',
      +5514=>'L',
      +5515=>'L',
      +5516=>'L',
      +5517=>'L',
      +5518=>'L',
      +5519=>'L',
      +5520=>'L',
      +5521=>'L',
      +5522=>'L',
      +5523=>'L',
      +5524=>'L',
      +5525=>'L',
      +5526=>'L',
      +5527=>'L',
      +5528=>'L',
      +5529=>'L',
      +5530=>'L',
      +5531=>'L',
      +5532=>'L',
      +5533=>'L',
      +5534=>'L',
      +5535=>'L',
      +5536=>'L',
      +5537=>'L',
      +5538=>'L',
      +5539=>'L',
      +5540=>'L',
      +5541=>'L',
      +5542=>'L',
      +5543=>'L',
      +5544=>'L',
      +5545=>'L',
      +5546=>'L',
      +5547=>'L',
      +5548=>'L',
      +5549=>'L',
      +5550=>'L',
      +5551=>'L',
      +5552=>'L',
      +5553=>'L',
      +5554=>'L',
      +5555=>'L',
      +5556=>'L',
      +5557=>'L',
      +5558=>'L',
      +5559=>'L',
      +5560=>'L',
      +5561=>'L',
      +5562=>'L',
      +5563=>'L',
      +5564=>'L',
      +5565=>'L',
      +5566=>'L',
      +5567=>'L',
      +5568=>'L',
      +5569=>'L',
      +5570=>'L',
      +5571=>'L',
      +5572=>'L',
      +5573=>'L',
      +5574=>'L',
      +5575=>'L',
      +5576=>'L',
      +5577=>'L',
      +5578=>'L',
      +5579=>'L',
      +5580=>'L',
      +5581=>'L',
      +5582=>'L',
      +5583=>'L',
      +5584=>'L',
      +5585=>'L',
      +5586=>'L',
      +5587=>'L',
      +5588=>'L',
      +5589=>'L',
      +5590=>'L',
      +5591=>'L',
      +5592=>'L',
      +5593=>'L',
      +5594=>'L',
      +5595=>'L',
      +5596=>'L',
      +5597=>'L',
      +5598=>'L',
      +5599=>'L',
      +5600=>'L',
      +5601=>'L',
      +5602=>'L',
      +5603=>'L',
      +5604=>'L',
      +5605=>'L',
      +5606=>'L',
      +5607=>'L',
      +5608=>'L',
      +5609=>'L',
      +5610=>'L',
      +5611=>'L',
      +5612=>'L',
      +5613=>'L',
      +5614=>'L',
      +5615=>'L',
      +5616=>'L',
      +5617=>'L',
      +5618=>'L',
      +5619=>'L',
      +5620=>'L',
      +5621=>'L',
      +5622=>'L',
      +5623=>'L',
      +5624=>'L',
      +5625=>'L',
      +5626=>'L',
      +5627=>'L',
      +5628=>'L',
      +5629=>'L',
      +5630=>'L',
      +5631=>'L',
      +5632=>'L',
      +5633=>'L',
      +5634=>'L',
      +5635=>'L',
      +5636=>'L',
      +5637=>'L',
      +5638=>'L',
      +5639=>'L',
      +5640=>'L',
      +5641=>'L',
      +5642=>'L',
      +5643=>'L',
      +5644=>'L',
      +5645=>'L',
      +5646=>'L',
      +5647=>'L',
      +5648=>'L',
      +5649=>'L',
      +5650=>'L',
      +5651=>'L',
      +5652=>'L',
      +5653=>'L',
      +5654=>'L',
      +5655=>'L',
      +5656=>'L',
      +5657=>'L',
      +5658=>'L',
      +5659=>'L',
      +5660=>'L',
      +5661=>'L',
      +5662=>'L',
      +5663=>'L',
      +5664=>'L',
      +5665=>'L',
      +5666=>'L',
      +5667=>'L',
      +5668=>'L',
      +5669=>'L',
      +5670=>'L',
      +5671=>'L',
      +5672=>'L',
      +5673=>'L',
      +5674=>'L',
      +5675=>'L',
      +5676=>'L',
      +5677=>'L',
      +5678=>'L',
      +5679=>'L',
      +5680=>'L',
      +5681=>'L',
      +5682=>'L',
      +5683=>'L',
      +5684=>'L',
      +5685=>'L',
      +5686=>'L',
      +5687=>'L',
      +5688=>'L',
      +5689=>'L',
      +5690=>'L',
      +5691=>'L',
      +5692=>'L',
      +5693=>'L',
      +5694=>'L',
      +5695=>'L',
      +5696=>'L',
      +5697=>'L',
      +5698=>'L',
      +5699=>'L',
      +5700=>'L',
      +5701=>'L',
      +5702=>'L',
      +5703=>'L',
      +5704=>'L',
      +5705=>'L',
      +5706=>'L',
      +5707=>'L',
      +5708=>'L',
      +5709=>'L',
      +5710=>'L',
      +5711=>'L',
      +5712=>'L',
      +5713=>'L',
      +5714=>'L',
      +5715=>'L',
      +5716=>'L',
      +5717=>'L',
      +5718=>'L',
      +5719=>'L',
      +5720=>'L',
      +5721=>'L',
      +5722=>'L',
      +5723=>'L',
      +5724=>'L',
      +5725=>'L',
      +5726=>'L',
      +5727=>'L',
      +5728=>'L',
      +5729=>'L',
      +5730=>'L',
      +5731=>'L',
      +5732=>'L',
      +5733=>'L',
      +5734=>'L',
      +5735=>'L',
      +5736=>'L',
      +5737=>'L',
      +5738=>'L',
      +5739=>'L',
      +5740=>'L',
      +5741=>'L',
      +5742=>'L',
      +5743=>'L',
      +5744=>'L',
      +5745=>'L',
      +5746=>'L',
      +5747=>'L',
      +5748=>'L',
      +5749=>'L',
      +5750=>'L',
      +5760=>'WS',
      +5761=>'L',
      +5762=>'L',
      +5763=>'L',
      +5764=>'L',
      +5765=>'L',
      +5766=>'L',
      +5767=>'L',
      +5768=>'L',
      +5769=>'L',
      +5770=>'L',
      +5771=>'L',
      +5772=>'L',
      +5773=>'L',
      +5774=>'L',
      +5775=>'L',
      +5776=>'L',
      +5777=>'L',
      +5778=>'L',
      +5779=>'L',
      +5780=>'L',
      +5781=>'L',
      +5782=>'L',
      +5783=>'L',
      +5784=>'L',
      +5785=>'L',
      +5786=>'L',
      +5787=>'ON',
      +5788=>'ON',
      +5792=>'L',
      +5793=>'L',
      +5794=>'L',
      +5795=>'L',
      +5796=>'L',
      +5797=>'L',
      +5798=>'L',
      +5799=>'L',
      +5800=>'L',
      +5801=>'L',
      +5802=>'L',
      +5803=>'L',
      +5804=>'L',
      +5805=>'L',
      +5806=>'L',
      +5807=>'L',
      +5808=>'L',
      +5809=>'L',
      +5810=>'L',
      +5811=>'L',
      +5812=>'L',
      +5813=>'L',
      +5814=>'L',
      +5815=>'L',
      +5816=>'L',
      +5817=>'L',
      +5818=>'L',
      +5819=>'L',
      +5820=>'L',
      +5821=>'L',
      +5822=>'L',
      +5823=>'L',
      +5824=>'L',
      +5825=>'L',
      +5826=>'L',
      +5827=>'L',
      +5828=>'L',
      +5829=>'L',
      +5830=>'L',
      +5831=>'L',
      +5832=>'L',
      +5833=>'L',
      +5834=>'L',
      +5835=>'L',
      +5836=>'L',
      +5837=>'L',
      +5838=>'L',
      +5839=>'L',
      +5840=>'L',
      +5841=>'L',
      +5842=>'L',
      +5843=>'L',
      +5844=>'L',
      +5845=>'L',
      +5846=>'L',
      +5847=>'L',
      +5848=>'L',
      +5849=>'L',
      +5850=>'L',
      +5851=>'L',
      +5852=>'L',
      +5853=>'L',
      +5854=>'L',
      +5855=>'L',
      +5856=>'L',
      +5857=>'L',
      +5858=>'L',
      +5859=>'L',
      +5860=>'L',
      +5861=>'L',
      +5862=>'L',
      +5863=>'L',
      +5864=>'L',
      +5865=>'L',
      +5866=>'L',
      +5867=>'L',
      +5868=>'L',
      +5869=>'L',
      +5870=>'L',
      +5871=>'L',
      +5872=>'L',
      +5888=>'L',
      +5889=>'L',
      +5890=>'L',
      +5891=>'L',
      +5892=>'L',
      +5893=>'L',
      +5894=>'L',
      +5895=>'L',
      +5896=>'L',
      +5897=>'L',
      +5898=>'L',
      +5899=>'L',
      +5900=>'L',
      +5902=>'L',
      +5903=>'L',
      +5904=>'L',
      +5905=>'L',
      +5906=>'NSM',
      +5907=>'NSM',
      +5908=>'NSM',
      +5920=>'L',
      +5921=>'L',
      +5922=>'L',
      +5923=>'L',
      +5924=>'L',
      +5925=>'L',
      +5926=>'L',
      +5927=>'L',
      +5928=>'L',
      +5929=>'L',
      +5930=>'L',
      +5931=>'L',
      +5932=>'L',
      +5933=>'L',
      +5934=>'L',
      +5935=>'L',
      +5936=>'L',
      +5937=>'L',
      +5938=>'NSM',
      +5939=>'NSM',
      +5940=>'NSM',
      +5941=>'L',
      +5942=>'L',
      +5952=>'L',
      +5953=>'L',
      +5954=>'L',
      +5955=>'L',
      +5956=>'L',
      +5957=>'L',
      +5958=>'L',
      +5959=>'L',
      +5960=>'L',
      +5961=>'L',
      +5962=>'L',
      +5963=>'L',
      +5964=>'L',
      +5965=>'L',
      +5966=>'L',
      +5967=>'L',
      +5968=>'L',
      +5969=>'L',
      +5970=>'NSM',
      +5971=>'NSM',
      +5984=>'L',
      +5985=>'L',
      +5986=>'L',
      +5987=>'L',
      +5988=>'L',
      +5989=>'L',
      +5990=>'L',
      +5991=>'L',
      +5992=>'L',
      +5993=>'L',
      +5994=>'L',
      +5995=>'L',
      +5996=>'L',
      +5998=>'L',
      +5999=>'L',
      +6000=>'L',
      +6002=>'NSM',
      +6003=>'NSM',
      +6016=>'L',
      +6017=>'L',
      +6018=>'L',
      +6019=>'L',
      +6020=>'L',
      +6021=>'L',
      +6022=>'L',
      +6023=>'L',
      +6024=>'L',
      +6025=>'L',
      +6026=>'L',
      +6027=>'L',
      +6028=>'L',
      +6029=>'L',
      +6030=>'L',
      +6031=>'L',
      +6032=>'L',
      +6033=>'L',
      +6034=>'L',
      +6035=>'L',
      +6036=>'L',
      +6037=>'L',
      +6038=>'L',
      +6039=>'L',
      +6040=>'L',
      +6041=>'L',
      +6042=>'L',
      +6043=>'L',
      +6044=>'L',
      +6045=>'L',
      +6046=>'L',
      +6047=>'L',
      +6048=>'L',
      +6049=>'L',
      +6050=>'L',
      +6051=>'L',
      +6052=>'L',
      +6053=>'L',
      +6054=>'L',
      +6055=>'L',
      +6056=>'L',
      +6057=>'L',
      +6058=>'L',
      +6059=>'L',
      +6060=>'L',
      +6061=>'L',
      +6062=>'L',
      +6063=>'L',
      +6064=>'L',
      +6065=>'L',
      +6066=>'L',
      +6067=>'L',
      +6068=>'L',
      +6069=>'L',
      +6070=>'L',
      +6071=>'NSM',
      +6072=>'NSM',
      +6073=>'NSM',
      +6074=>'NSM',
      +6075=>'NSM',
      +6076=>'NSM',
      +6077=>'NSM',
      +6078=>'L',
      +6079=>'L',
      +6080=>'L',
      +6081=>'L',
      +6082=>'L',
      +6083=>'L',
      +6084=>'L',
      +6085=>'L',
      +6086=>'NSM',
      +6087=>'L',
      +6088=>'L',
      +6089=>'NSM',
      +6090=>'NSM',
      +6091=>'NSM',
      +6092=>'NSM',
      +6093=>'NSM',
      +6094=>'NSM',
      +6095=>'NSM',
      +6096=>'NSM',
      +6097=>'NSM',
      +6098=>'NSM',
      +6099=>'NSM',
      +6100=>'L',
      +6101=>'L',
      +6102=>'L',
      +6103=>'L',
      +6104=>'L',
      +6105=>'L',
      +6106=>'L',
      +6107=>'ET',
      +6108=>'L',
      +6109=>'NSM',
      +6112=>'L',
      +6113=>'L',
      +6114=>'L',
      +6115=>'L',
      +6116=>'L',
      +6117=>'L',
      +6118=>'L',
      +6119=>'L',
      +6120=>'L',
      +6121=>'L',
      +6128=>'ON',
      +6129=>'ON',
      +6130=>'ON',
      +6131=>'ON',
      +6132=>'ON',
      +6133=>'ON',
      +6134=>'ON',
      +6135=>'ON',
      +6136=>'ON',
      +6137=>'ON',
      +6144=>'ON',
      +6145=>'ON',
      +6146=>'ON',
      +6147=>'ON',
      +6148=>'ON',
      +6149=>'ON',
      +6150=>'ON',
      +6151=>'ON',
      +6152=>'ON',
      +6153=>'ON',
      +6154=>'ON',
      +6155=>'NSM',
      +6156=>'NSM',
      +6157=>'NSM',
      +6158=>'WS',
      +6160=>'L',
      +6161=>'L',
      +6162=>'L',
      +6163=>'L',
      +6164=>'L',
      +6165=>'L',
      +6166=>'L',
      +6167=>'L',
      +6168=>'L',
      +6169=>'L',
      +6176=>'L',
      +6177=>'L',
      +6178=>'L',
      +6179=>'L',
      +6180=>'L',
      +6181=>'L',
      +6182=>'L',
      +6183=>'L',
      +6184=>'L',
      +6185=>'L',
      +6186=>'L',
      +6187=>'L',
      +6188=>'L',
      +6189=>'L',
      +6190=>'L',
      +6191=>'L',
      +6192=>'L',
      +6193=>'L',
      +6194=>'L',
      +6195=>'L',
      +6196=>'L',
      +6197=>'L',
      +6198=>'L',
      +6199=>'L',
      +6200=>'L',
      +6201=>'L',
      +6202=>'L',
      +6203=>'L',
      +6204=>'L',
      +6205=>'L',
      +6206=>'L',
      +6207=>'L',
      +6208=>'L',
      +6209=>'L',
      +6210=>'L',
      +6211=>'L',
      +6212=>'L',
      +6213=>'L',
      +6214=>'L',
      +6215=>'L',
      +6216=>'L',
      +6217=>'L',
      +6218=>'L',
      +6219=>'L',
      +6220=>'L',
      +6221=>'L',
      +6222=>'L',
      +6223=>'L',
      +6224=>'L',
      +6225=>'L',
      +6226=>'L',
      +6227=>'L',
      +6228=>'L',
      +6229=>'L',
      +6230=>'L',
      +6231=>'L',
      +6232=>'L',
      +6233=>'L',
      +6234=>'L',
      +6235=>'L',
      +6236=>'L',
      +6237=>'L',
      +6238=>'L',
      +6239=>'L',
      +6240=>'L',
      +6241=>'L',
      +6242=>'L',
      +6243=>'L',
      +6244=>'L',
      +6245=>'L',
      +6246=>'L',
      +6247=>'L',
      +6248=>'L',
      +6249=>'L',
      +6250=>'L',
      +6251=>'L',
      +6252=>'L',
      +6253=>'L',
      +6254=>'L',
      +6255=>'L',
      +6256=>'L',
      +6257=>'L',
      +6258=>'L',
      +6259=>'L',
      +6260=>'L',
      +6261=>'L',
      +6262=>'L',
      +6263=>'L',
      +6272=>'L',
      +6273=>'L',
      +6274=>'L',
      +6275=>'L',
      +6276=>'L',
      +6277=>'L',
      +6278=>'L',
      +6279=>'L',
      +6280=>'L',
      +6281=>'L',
      +6282=>'L',
      +6283=>'L',
      +6284=>'L',
      +6285=>'L',
      +6286=>'L',
      +6287=>'L',
      +6288=>'L',
      +6289=>'L',
      +6290=>'L',
      +6291=>'L',
      +6292=>'L',
      +6293=>'L',
      +6294=>'L',
      +6295=>'L',
      +6296=>'L',
      +6297=>'L',
      +6298=>'L',
      +6299=>'L',
      +6300=>'L',
      +6301=>'L',
      +6302=>'L',
      +6303=>'L',
      +6304=>'L',
      +6305=>'L',
      +6306=>'L',
      +6307=>'L',
      +6308=>'L',
      +6309=>'L',
      +6310=>'L',
      +6311=>'L',
      +6312=>'L',
      +6313=>'NSM',
      +6400=>'L',
      +6401=>'L',
      +6402=>'L',
      +6403=>'L',
      +6404=>'L',
      +6405=>'L',
      +6406=>'L',
      +6407=>'L',
      +6408=>'L',
      +6409=>'L',
      +6410=>'L',
      +6411=>'L',
      +6412=>'L',
      +6413=>'L',
      +6414=>'L',
      +6415=>'L',
      +6416=>'L',
      +6417=>'L',
      +6418=>'L',
      +6419=>'L',
      +6420=>'L',
      +6421=>'L',
      +6422=>'L',
      +6423=>'L',
      +6424=>'L',
      +6425=>'L',
      +6426=>'L',
      +6427=>'L',
      +6428=>'L',
      +6432=>'NSM',
      +6433=>'NSM',
      +6434=>'NSM',
      +6435=>'L',
      +6436=>'L',
      +6437=>'L',
      +6438=>'L',
      +6439=>'NSM',
      +6440=>'NSM',
      +6441=>'NSM',
      +6442=>'NSM',
      +6443=>'NSM',
      +6448=>'L',
      +6449=>'L',
      +6450=>'NSM',
      +6451=>'L',
      +6452=>'L',
      +6453=>'L',
      +6454=>'L',
      +6455=>'L',
      +6456=>'L',
      +6457=>'NSM',
      +6458=>'NSM',
      +6459=>'NSM',
      +6464=>'ON',
      +6468=>'ON',
      +6469=>'ON',
      +6470=>'L',
      +6471=>'L',
      +6472=>'L',
      +6473=>'L',
      +6474=>'L',
      +6475=>'L',
      +6476=>'L',
      +6477=>'L',
      +6478=>'L',
      +6479=>'L',
      +6480=>'L',
      +6481=>'L',
      +6482=>'L',
      +6483=>'L',
      +6484=>'L',
      +6485=>'L',
      +6486=>'L',
      +6487=>'L',
      +6488=>'L',
      +6489=>'L',
      +6490=>'L',
      +6491=>'L',
      +6492=>'L',
      +6493=>'L',
      +6494=>'L',
      +6495=>'L',
      +6496=>'L',
      +6497=>'L',
      +6498=>'L',
      +6499=>'L',
      +6500=>'L',
      +6501=>'L',
      +6502=>'L',
      +6503=>'L',
      +6504=>'L',
      +6505=>'L',
      +6506=>'L',
      +6507=>'L',
      +6508=>'L',
      +6509=>'L',
      +6512=>'L',
      +6513=>'L',
      +6514=>'L',
      +6515=>'L',
      +6516=>'L',
      +6528=>'L',
      +6529=>'L',
      +6530=>'L',
      +6531=>'L',
      +6532=>'L',
      +6533=>'L',
      +6534=>'L',
      +6535=>'L',
      +6536=>'L',
      +6537=>'L',
      +6538=>'L',
      +6539=>'L',
      +6540=>'L',
      +6541=>'L',
      +6542=>'L',
      +6543=>'L',
      +6544=>'L',
      +6545=>'L',
      +6546=>'L',
      +6547=>'L',
      +6548=>'L',
      +6549=>'L',
      +6550=>'L',
      +6551=>'L',
      +6552=>'L',
      +6553=>'L',
      +6554=>'L',
      +6555=>'L',
      +6556=>'L',
      +6557=>'L',
      +6558=>'L',
      +6559=>'L',
      +6560=>'L',
      +6561=>'L',
      +6562=>'L',
      +6563=>'L',
      +6564=>'L',
      +6565=>'L',
      +6566=>'L',
      +6567=>'L',
      +6568=>'L',
      +6569=>'L',
      +6576=>'L',
      +6577=>'L',
      +6578=>'L',
      +6579=>'L',
      +6580=>'L',
      +6581=>'L',
      +6582=>'L',
      +6583=>'L',
      +6584=>'L',
      +6585=>'L',
      +6586=>'L',
      +6587=>'L',
      +6588=>'L',
      +6589=>'L',
      +6590=>'L',
      +6591=>'L',
      +6592=>'L',
      +6593=>'L',
      +6594=>'L',
      +6595=>'L',
      +6596=>'L',
      +6597=>'L',
      +6598=>'L',
      +6599=>'L',
      +6600=>'L',
      +6601=>'L',
      +6608=>'L',
      +6609=>'L',
      +6610=>'L',
      +6611=>'L',
      +6612=>'L',
      +6613=>'L',
      +6614=>'L',
      +6615=>'L',
      +6616=>'L',
      +6617=>'L',
      +6622=>'ON',
      +6623=>'ON',
      +6624=>'ON',
      +6625=>'ON',
      +6626=>'ON',
      +6627=>'ON',
      +6628=>'ON',
      +6629=>'ON',
      +6630=>'ON',
      +6631=>'ON',
      +6632=>'ON',
      +6633=>'ON',
      +6634=>'ON',
      +6635=>'ON',
      +6636=>'ON',
      +6637=>'ON',
      +6638=>'ON',
      +6639=>'ON',
      +6640=>'ON',
      +6641=>'ON',
      +6642=>'ON',
      +6643=>'ON',
      +6644=>'ON',
      +6645=>'ON',
      +6646=>'ON',
      +6647=>'ON',
      +6648=>'ON',
      +6649=>'ON',
      +6650=>'ON',
      +6651=>'ON',
      +6652=>'ON',
      +6653=>'ON',
      +6654=>'ON',
      +6655=>'ON',
      +6656=>'L',
      +6657=>'L',
      +6658=>'L',
      +6659=>'L',
      +6660=>'L',
      +6661=>'L',
      +6662=>'L',
      +6663=>'L',
      +6664=>'L',
      +6665=>'L',
      +6666=>'L',
      +6667=>'L',
      +6668=>'L',
      +6669=>'L',
      +6670=>'L',
      +6671=>'L',
      +6672=>'L',
      +6673=>'L',
      +6674=>'L',
      +6675=>'L',
      +6676=>'L',
      +6677=>'L',
      +6678=>'L',
      +6679=>'NSM',
      +6680=>'NSM',
      +6681=>'L',
      +6682=>'L',
      +6683=>'L',
      +6686=>'L',
      +6687=>'L',
      +6912=>'NSM',
      +6913=>'NSM',
      +6914=>'NSM',
      +6915=>'NSM',
      +6916=>'L',
      +6917=>'L',
      +6918=>'L',
      +6919=>'L',
      +6920=>'L',
      +6921=>'L',
      +6922=>'L',
      +6923=>'L',
      +6924=>'L',
      +6925=>'L',
      +6926=>'L',
      +6927=>'L',
      +6928=>'L',
      +6929=>'L',
      +6930=>'L',
      +6931=>'L',
      +6932=>'L',
      +6933=>'L',
      +6934=>'L',
      +6935=>'L',
      +6936=>'L',
      +6937=>'L',
      +6938=>'L',
      +6939=>'L',
      +6940=>'L',
      +6941=>'L',
      +6942=>'L',
      +6943=>'L',
      +6944=>'L',
      +6945=>'L',
      +6946=>'L',
      +6947=>'L',
      +6948=>'L',
      +6949=>'L',
      +6950=>'L',
      +6951=>'L',
      +6952=>'L',
      +6953=>'L',
      +6954=>'L',
      +6955=>'L',
      +6956=>'L',
      +6957=>'L',
      +6958=>'L',
      +6959=>'L',
      +6960=>'L',
      +6961=>'L',
      +6962=>'L',
      +6963=>'L',
      +6964=>'NSM',
      +6965=>'L',
      +6966=>'NSM',
      +6967=>'NSM',
      +6968=>'NSM',
      +6969=>'NSM',
      +6970=>'NSM',
      +6971=>'L',
      +6972=>'NSM',
      +6973=>'L',
      +6974=>'L',
      +6975=>'L',
      +6976=>'L',
      +6977=>'L',
      +6978=>'NSM',
      +6979=>'L',
      +6980=>'L',
      +6981=>'L',
      +6982=>'L',
      +6983=>'L',
      +6984=>'L',
      +6985=>'L',
      +6986=>'L',
      +6987=>'L',
      +6992=>'L',
      +6993=>'L',
      +6994=>'L',
      +6995=>'L',
      +6996=>'L',
      +6997=>'L',
      +6998=>'L',
      +6999=>'L',
      +7000=>'L',
      +7001=>'L',
      +7002=>'L',
      +7003=>'L',
      +7004=>'L',
      +7005=>'L',
      +7006=>'L',
      +7007=>'L',
      +7008=>'L',
      +7009=>'L',
      +7010=>'L',
      +7011=>'L',
      +7012=>'L',
      +7013=>'L',
      +7014=>'L',
      +7015=>'L',
      +7016=>'L',
      +7017=>'L',
      +7018=>'L',
      +7019=>'NSM',
      +7020=>'NSM',
      +7021=>'NSM',
      +7022=>'NSM',
      +7023=>'NSM',
      +7024=>'NSM',
      +7025=>'NSM',
      +7026=>'NSM',
      +7027=>'NSM',
      +7028=>'L',
      +7029=>'L',
      +7030=>'L',
      +7031=>'L',
      +7032=>'L',
      +7033=>'L',
      +7034=>'L',
      +7035=>'L',
      +7036=>'L',
      +7424=>'L',
      +7425=>'L',
      +7426=>'L',
      +7427=>'L',
      +7428=>'L',
      +7429=>'L',
      +7430=>'L',
      +7431=>'L',
      +7432=>'L',
      +7433=>'L',
      +7434=>'L',
      +7435=>'L',
      +7436=>'L',
      +7437=>'L',
      +7438=>'L',
      +7439=>'L',
      +7440=>'L',
      +7441=>'L',
      +7442=>'L',
      +7443=>'L',
      +7444=>'L',
      +7445=>'L',
      +7446=>'L',
      +7447=>'L',
      +7448=>'L',
      +7449=>'L',
      +7450=>'L',
      +7451=>'L',
      +7452=>'L',
      +7453=>'L',
      +7454=>'L',
      +7455=>'L',
      +7456=>'L',
      +7457=>'L',
      +7458=>'L',
      +7459=>'L',
      +7460=>'L',
      +7461=>'L',
      +7462=>'L',
      +7463=>'L',
      +7464=>'L',
      +7465=>'L',
      +7466=>'L',
      +7467=>'L',
      +7468=>'L',
      +7469=>'L',
      +7470=>'L',
      +7471=>'L',
      +7472=>'L',
      +7473=>'L',
      +7474=>'L',
      +7475=>'L',
      +7476=>'L',
      +7477=>'L',
      +7478=>'L',
      +7479=>'L',
      +7480=>'L',
      +7481=>'L',
      +7482=>'L',
      +7483=>'L',
      +7484=>'L',
      +7485=>'L',
      +7486=>'L',
      +7487=>'L',
      +7488=>'L',
      +7489=>'L',
      +7490=>'L',
      +7491=>'L',
      +7492=>'L',
      +7493=>'L',
      +7494=>'L',
      +7495=>'L',
      +7496=>'L',
      +7497=>'L',
      +7498=>'L',
      +7499=>'L',
      +7500=>'L',
      +7501=>'L',
      +7502=>'L',
      +7503=>'L',
      +7504=>'L',
      +7505=>'L',
      +7506=>'L',
      +7507=>'L',
      +7508=>'L',
      +7509=>'L',
      +7510=>'L',
      +7511=>'L',
      +7512=>'L',
      +7513=>'L',
      +7514=>'L',
      +7515=>'L',
      +7516=>'L',
      +7517=>'L',
      +7518=>'L',
      +7519=>'L',
      +7520=>'L',
      +7521=>'L',
      +7522=>'L',
      +7523=>'L',
      +7524=>'L',
      +7525=>'L',
      +7526=>'L',
      +7527=>'L',
      +7528=>'L',
      +7529=>'L',
      +7530=>'L',
      +7531=>'L',
      +7532=>'L',
      +7533=>'L',
      +7534=>'L',
      +7535=>'L',
      +7536=>'L',
      +7537=>'L',
      +7538=>'L',
      +7539=>'L',
      +7540=>'L',
      +7541=>'L',
      +7542=>'L',
      +7543=>'L',
      +7544=>'L',
      +7545=>'L',
      +7546=>'L',
      +7547=>'L',
      +7548=>'L',
      +7549=>'L',
      +7550=>'L',
      +7551=>'L',
      +7552=>'L',
      +7553=>'L',
      +7554=>'L',
      +7555=>'L',
      +7556=>'L',
      +7557=>'L',
      +7558=>'L',
      +7559=>'L',
      +7560=>'L',
      +7561=>'L',
      +7562=>'L',
      +7563=>'L',
      +7564=>'L',
      +7565=>'L',
      +7566=>'L',
      +7567=>'L',
      +7568=>'L',
      +7569=>'L',
      +7570=>'L',
      +7571=>'L',
      +7572=>'L',
      +7573=>'L',
      +7574=>'L',
      +7575=>'L',
      +7576=>'L',
      +7577=>'L',
      +7578=>'L',
      +7579=>'L',
      +7580=>'L',
      +7581=>'L',
      +7582=>'L',
      +7583=>'L',
      +7584=>'L',
      +7585=>'L',
      +7586=>'L',
      +7587=>'L',
      +7588=>'L',
      +7589=>'L',
      +7590=>'L',
      +7591=>'L',
      +7592=>'L',
      +7593=>'L',
      +7594=>'L',
      +7595=>'L',
      +7596=>'L',
      +7597=>'L',
      +7598=>'L',
      +7599=>'L',
      +7600=>'L',
      +7601=>'L',
      +7602=>'L',
      +7603=>'L',
      +7604=>'L',
      +7605=>'L',
      +7606=>'L',
      +7607=>'L',
      +7608=>'L',
      +7609=>'L',
      +7610=>'L',
      +7611=>'L',
      +7612=>'L',
      +7613=>'L',
      +7614=>'L',
      +7615=>'L',
      +7616=>'NSM',
      +7617=>'NSM',
      +7618=>'NSM',
      +7619=>'NSM',
      +7620=>'NSM',
      +7621=>'NSM',
      +7622=>'NSM',
      +7623=>'NSM',
      +7624=>'NSM',
      +7625=>'NSM',
      +7626=>'NSM',
      +7678=>'NSM',
      +7679=>'NSM',
      +7680=>'L',
      +7681=>'L',
      +7682=>'L',
      +7683=>'L',
      +7684=>'L',
      +7685=>'L',
      +7686=>'L',
      +7687=>'L',
      +7688=>'L',
      +7689=>'L',
      +7690=>'L',
      +7691=>'L',
      +7692=>'L',
      +7693=>'L',
      +7694=>'L',
      +7695=>'L',
      +7696=>'L',
      +7697=>'L',
      +7698=>'L',
      +7699=>'L',
      +7700=>'L',
      +7701=>'L',
      +7702=>'L',
      +7703=>'L',
      +7704=>'L',
      +7705=>'L',
      +7706=>'L',
      +7707=>'L',
      +7708=>'L',
      +7709=>'L',
      +7710=>'L',
      +7711=>'L',
      +7712=>'L',
      +7713=>'L',
      +7714=>'L',
      +7715=>'L',
      +7716=>'L',
      +7717=>'L',
      +7718=>'L',
      +7719=>'L',
      +7720=>'L',
      +7721=>'L',
      +7722=>'L',
      +7723=>'L',
      +7724=>'L',
      +7725=>'L',
      +7726=>'L',
      +7727=>'L',
      +7728=>'L',
      +7729=>'L',
      +7730=>'L',
      +7731=>'L',
      +7732=>'L',
      +7733=>'L',
      +7734=>'L',
      +7735=>'L',
      +7736=>'L',
      +7737=>'L',
      +7738=>'L',
      +7739=>'L',
      +7740=>'L',
      +7741=>'L',
      +7742=>'L',
      +7743=>'L',
      +7744=>'L',
      +7745=>'L',
      +7746=>'L',
      +7747=>'L',
      +7748=>'L',
      +7749=>'L',
      +7750=>'L',
      +7751=>'L',
      +7752=>'L',
      +7753=>'L',
      +7754=>'L',
      +7755=>'L',
      +7756=>'L',
      +7757=>'L',
      +7758=>'L',
      +7759=>'L',
      +7760=>'L',
      +7761=>'L',
      +7762=>'L',
      +7763=>'L',
      +7764=>'L',
      +7765=>'L',
      +7766=>'L',
      +7767=>'L',
      +7768=>'L',
      +7769=>'L',
      +7770=>'L',
      +7771=>'L',
      +7772=>'L',
      +7773=>'L',
      +7774=>'L',
      +7775=>'L',
      +7776=>'L',
      +7777=>'L',
      +7778=>'L',
      +7779=>'L',
      +7780=>'L',
      +7781=>'L',
      +7782=>'L',
      +7783=>'L',
      +7784=>'L',
      +7785=>'L',
      +7786=>'L',
      +7787=>'L',
      +7788=>'L',
      +7789=>'L',
      +7790=>'L',
      +7791=>'L',
      +7792=>'L',
      +7793=>'L',
      +7794=>'L',
      +7795=>'L',
      +7796=>'L',
      +7797=>'L',
      +7798=>'L',
      +7799=>'L',
      +7800=>'L',
      +7801=>'L',
      +7802=>'L',
      +7803=>'L',
      +7804=>'L',
      +7805=>'L',
      +7806=>'L',
      +7807=>'L',
      +7808=>'L',
      +7809=>'L',
      +7810=>'L',
      +7811=>'L',
      +7812=>'L',
      +7813=>'L',
      +7814=>'L',
      +7815=>'L',
      +7816=>'L',
      +7817=>'L',
      +7818=>'L',
      +7819=>'L',
      +7820=>'L',
      +7821=>'L',
      +7822=>'L',
      +7823=>'L',
      +7824=>'L',
      +7825=>'L',
      +7826=>'L',
      +7827=>'L',
      +7828=>'L',
      +7829=>'L',
      +7830=>'L',
      +7831=>'L',
      +7832=>'L',
      +7833=>'L',
      +7834=>'L',
      +7835=>'L',
      +7840=>'L',
      +7841=>'L',
      +7842=>'L',
      +7843=>'L',
      +7844=>'L',
      +7845=>'L',
      +7846=>'L',
      +7847=>'L',
      +7848=>'L',
      +7849=>'L',
      +7850=>'L',
      +7851=>'L',
      +7852=>'L',
      +7853=>'L',
      +7854=>'L',
      +7855=>'L',
      +7856=>'L',
      +7857=>'L',
      +7858=>'L',
      +7859=>'L',
      +7860=>'L',
      +7861=>'L',
      +7862=>'L',
      +7863=>'L',
      +7864=>'L',
      +7865=>'L',
      +7866=>'L',
      +7867=>'L',
      +7868=>'L',
      +7869=>'L',
      +7870=>'L',
      +7871=>'L',
      +7872=>'L',
      +7873=>'L',
      +7874=>'L',
      +7875=>'L',
      +7876=>'L',
      +7877=>'L',
      +7878=>'L',
      +7879=>'L',
      +7880=>'L',
      +7881=>'L',
      +7882=>'L',
      +7883=>'L',
      +7884=>'L',
      +7885=>'L',
      +7886=>'L',
      +7887=>'L',
      +7888=>'L',
      +7889=>'L',
      +7890=>'L',
      +7891=>'L',
      +7892=>'L',
      +7893=>'L',
      +7894=>'L',
      +7895=>'L',
      +7896=>'L',
      +7897=>'L',
      +7898=>'L',
      +7899=>'L',
      +7900=>'L',
      +7901=>'L',
      +7902=>'L',
      +7903=>'L',
      +7904=>'L',
      +7905=>'L',
      +7906=>'L',
      +7907=>'L',
      +7908=>'L',
      +7909=>'L',
      +7910=>'L',
      +7911=>'L',
      +7912=>'L',
      +7913=>'L',
      +7914=>'L',
      +7915=>'L',
      +7916=>'L',
      +7917=>'L',
      +7918=>'L',
      +7919=>'L',
      +7920=>'L',
      +7921=>'L',
      +7922=>'L',
      +7923=>'L',
      +7924=>'L',
      +7925=>'L',
      +7926=>'L',
      +7927=>'L',
      +7928=>'L',
      +7929=>'L',
      +7936=>'L',
      +7937=>'L',
      +7938=>'L',
      +7939=>'L',
      +7940=>'L',
      +7941=>'L',
      +7942=>'L',
      +7943=>'L',
      +7944=>'L',
      +7945=>'L',
      +7946=>'L',
      +7947=>'L',
      +7948=>'L',
      +7949=>'L',
      +7950=>'L',
      +7951=>'L',
      +7952=>'L',
      +7953=>'L',
      +7954=>'L',
      +7955=>'L',
      +7956=>'L',
      +7957=>'L',
      +7960=>'L',
      +7961=>'L',
      +7962=>'L',
      +7963=>'L',
      +7964=>'L',
      +7965=>'L',
      +7968=>'L',
      +7969=>'L',
      +7970=>'L',
      +7971=>'L',
      +7972=>'L',
      +7973=>'L',
      +7974=>'L',
      +7975=>'L',
      +7976=>'L',
      +7977=>'L',
      +7978=>'L',
      +7979=>'L',
      +7980=>'L',
      +7981=>'L',
      +7982=>'L',
      +7983=>'L',
      +7984=>'L',
      +7985=>'L',
      +7986=>'L',
      +7987=>'L',
      +7988=>'L',
      +7989=>'L',
      +7990=>'L',
      +7991=>'L',
      +7992=>'L',
      +7993=>'L',
      +7994=>'L',
      +7995=>'L',
      +7996=>'L',
      +7997=>'L',
      +7998=>'L',
      +7999=>'L',
      +8000=>'L',
      +8001=>'L',
      +8002=>'L',
      +8003=>'L',
      +8004=>'L',
      +8005=>'L',
      +8008=>'L',
      +8009=>'L',
      +8010=>'L',
      +8011=>'L',
      +8012=>'L',
      +8013=>'L',
      +8016=>'L',
      +8017=>'L',
      +8018=>'L',
      +8019=>'L',
      +8020=>'L',
      +8021=>'L',
      +8022=>'L',
      +8023=>'L',
      +8025=>'L',
      +8027=>'L',
      +8029=>'L',
      +8031=>'L',
      +8032=>'L',
      +8033=>'L',
      +8034=>'L',
      +8035=>'L',
      +8036=>'L',
      +8037=>'L',
      +8038=>'L',
      +8039=>'L',
      +8040=>'L',
      +8041=>'L',
      +8042=>'L',
      +8043=>'L',
      +8044=>'L',
      +8045=>'L',
      +8046=>'L',
      +8047=>'L',
      +8048=>'L',
      +8049=>'L',
      +8050=>'L',
      +8051=>'L',
      +8052=>'L',
      +8053=>'L',
      +8054=>'L',
      +8055=>'L',
      +8056=>'L',
      +8057=>'L',
      +8058=>'L',
      +8059=>'L',
      +8060=>'L',
      +8061=>'L',
      +8064=>'L',
      +8065=>'L',
      +8066=>'L',
      +8067=>'L',
      +8068=>'L',
      +8069=>'L',
      +8070=>'L',
      +8071=>'L',
      +8072=>'L',
      +8073=>'L',
      +8074=>'L',
      +8075=>'L',
      +8076=>'L',
      +8077=>'L',
      +8078=>'L',
      +8079=>'L',
      +8080=>'L',
      +8081=>'L',
      +8082=>'L',
      +8083=>'L',
      +8084=>'L',
      +8085=>'L',
      +8086=>'L',
      +8087=>'L',
      +8088=>'L',
      +8089=>'L',
      +8090=>'L',
      +8091=>'L',
      +8092=>'L',
      +8093=>'L',
      +8094=>'L',
      +8095=>'L',
      +8096=>'L',
      +8097=>'L',
      +8098=>'L',
      +8099=>'L',
      +8100=>'L',
      +8101=>'L',
      +8102=>'L',
      +8103=>'L',
      +8104=>'L',
      +8105=>'L',
      +8106=>'L',
      +8107=>'L',
      +8108=>'L',
      +8109=>'L',
      +8110=>'L',
      +8111=>'L',
      +8112=>'L',
      +8113=>'L',
      +8114=>'L',
      +8115=>'L',
      +8116=>'L',
      +8118=>'L',
      +8119=>'L',
      +8120=>'L',
      +8121=>'L',
      +8122=>'L',
      +8123=>'L',
      +8124=>'L',
      +8125=>'ON',
      +8126=>'L',
      +8127=>'ON',
      +8128=>'ON',
      +8129=>'ON',
      +8130=>'L',
      +8131=>'L',
      +8132=>'L',
      +8134=>'L',
      +8135=>'L',
      +8136=>'L',
      +8137=>'L',
      +8138=>'L',
      +8139=>'L',
      +8140=>'L',
      +8141=>'ON',
      +8142=>'ON',
      +8143=>'ON',
      +8144=>'L',
      +8145=>'L',
      +8146=>'L',
      +8147=>'L',
      +8150=>'L',
      +8151=>'L',
      +8152=>'L',
      +8153=>'L',
      +8154=>'L',
      +8155=>'L',
      +8157=>'ON',
      +8158=>'ON',
      +8159=>'ON',
      +8160=>'L',
      +8161=>'L',
      +8162=>'L',
      +8163=>'L',
      +8164=>'L',
      +8165=>'L',
      +8166=>'L',
      +8167=>'L',
      +8168=>'L',
      +8169=>'L',
      +8170=>'L',
      +8171=>'L',
      +8172=>'L',
      +8173=>'ON',
      +8174=>'ON',
      +8175=>'ON',
      +8178=>'L',
      +8179=>'L',
      +8180=>'L',
      +8182=>'L',
      +8183=>'L',
      +8184=>'L',
      +8185=>'L',
      +8186=>'L',
      +8187=>'L',
      +8188=>'L',
      +8189=>'ON',
      +8190=>'ON',
      +8192=>'WS',
      +8193=>'WS',
      +8194=>'WS',
      +8195=>'WS',
      +8196=>'WS',
      +8197=>'WS',
      +8198=>'WS',
      +8199=>'WS',
      +8200=>'WS',
      +8201=>'WS',
      +8202=>'WS',
      +8203=>'BN',
      +8204=>'BN',
      +8205=>'BN',
      +8206=>'L',
      +8207=>'R',
      +8208=>'ON',
      +8209=>'ON',
      +8210=>'ON',
      +8211=>'ON',
      +8212=>'ON',
      +8213=>'ON',
      +8214=>'ON',
      +8215=>'ON',
      +8216=>'ON',
      +8217=>'ON',
      +8218=>'ON',
      +8219=>'ON',
      +8220=>'ON',
      +8221=>'ON',
      +8222=>'ON',
      +8223=>'ON',
      +8224=>'ON',
      +8225=>'ON',
      +8226=>'ON',
      +8227=>'ON',
      +8228=>'ON',
      +8229=>'ON',
      +8230=>'ON',
      +8231=>'ON',
      +8232=>'WS',
      +8233=>'B',
      +8234=>'LRE',
      +8235=>'RLE',
      +8236=>'PDF',
      +8237=>'LRO',
      +8238=>'RLO',
      +8239=>'CS',
      +8240=>'ET',
      +8241=>'ET',
      +8242=>'ET',
      +8243=>'ET',
      +8244=>'ET',
      +8245=>'ON',
      +8246=>'ON',
      +8247=>'ON',
      +8248=>'ON',
      +8249=>'ON',
      +8250=>'ON',
      +8251=>'ON',
      +8252=>'ON',
      +8253=>'ON',
      +8254=>'ON',
      +8255=>'ON',
      +8256=>'ON',
      +8257=>'ON',
      +8258=>'ON',
      +8259=>'ON',
      +8260=>'CS',
      +8261=>'ON',
      +8262=>'ON',
      +8263=>'ON',
      +8264=>'ON',
      +8265=>'ON',
      +8266=>'ON',
      +8267=>'ON',
      +8268=>'ON',
      +8269=>'ON',
      +8270=>'ON',
      +8271=>'ON',
      +8272=>'ON',
      +8273=>'ON',
      +8274=>'ON',
      +8275=>'ON',
      +8276=>'ON',
      +8277=>'ON',
      +8278=>'ON',
      +8279=>'ON',
      +8280=>'ON',
      +8281=>'ON',
      +8282=>'ON',
      +8283=>'ON',
      +8284=>'ON',
      +8285=>'ON',
      +8286=>'ON',
      +8287=>'WS',
      +8288=>'BN',
      +8289=>'BN',
      +8290=>'BN',
      +8291=>'BN',
      +8298=>'BN',
      +8299=>'BN',
      +8300=>'BN',
      +8301=>'BN',
      +8302=>'BN',
      +8303=>'BN',
      +8304=>'EN',
      +8305=>'L',
      +8308=>'EN',
      +8309=>'EN',
      +8310=>'EN',
      +8311=>'EN',
      +8312=>'EN',
      +8313=>'EN',
      +8314=>'ES',
      +8315=>'ES',
      +8316=>'ON',
      +8317=>'ON',
      +8318=>'ON',
      +8319=>'L',
      +8320=>'EN',
      +8321=>'EN',
      +8322=>'EN',
      +8323=>'EN',
      +8324=>'EN',
      +8325=>'EN',
      +8326=>'EN',
      +8327=>'EN',
      +8328=>'EN',
      +8329=>'EN',
      +8330=>'ES',
      +8331=>'ES',
      +8332=>'ON',
      +8333=>'ON',
      +8334=>'ON',
      +8336=>'L',
      +8337=>'L',
      +8338=>'L',
      +8339=>'L',
      +8340=>'L',
      +8352=>'ET',
      +8353=>'ET',
      +8354=>'ET',
      +8355=>'ET',
      +8356=>'ET',
      +8357=>'ET',
      +8358=>'ET',
      +8359=>'ET',
      +8360=>'ET',
      +8361=>'ET',
      +8362=>'ET',
      +8363=>'ET',
      +8364=>'ET',
      +8365=>'ET',
      +8366=>'ET',
      +8367=>'ET',
      +8368=>'ET',
      +8369=>'ET',
      +8370=>'ET',
      +8371=>'ET',
      +8372=>'ET',
      +8373=>'ET',
      +8400=>'NSM',
      +8401=>'NSM',
      +8402=>'NSM',
      +8403=>'NSM',
      +8404=>'NSM',
      +8405=>'NSM',
      +8406=>'NSM',
      +8407=>'NSM',
      +8408=>'NSM',
      +8409=>'NSM',
      +8410=>'NSM',
      +8411=>'NSM',
      +8412=>'NSM',
      +8413=>'NSM',
      +8414=>'NSM',
      +8415=>'NSM',
      +8416=>'NSM',
      +8417=>'NSM',
      +8418=>'NSM',
      +8419=>'NSM',
      +8420=>'NSM',
      +8421=>'NSM',
      +8422=>'NSM',
      +8423=>'NSM',
      +8424=>'NSM',
      +8425=>'NSM',
      +8426=>'NSM',
      +8427=>'NSM',
      +8428=>'NSM',
      +8429=>'NSM',
      +8430=>'NSM',
      +8431=>'NSM',
      +8448=>'ON',
      +8449=>'ON',
      +8450=>'L',
      +8451=>'ON',
      +8452=>'ON',
      +8453=>'ON',
      +8454=>'ON',
      +8455=>'L',
      +8456=>'ON',
      +8457=>'ON',
      +8458=>'L',
      +8459=>'L',
      +8460=>'L',
      +8461=>'L',
      +8462=>'L',
      +8463=>'L',
      +8464=>'L',
      +8465=>'L',
      +8466=>'L',
      +8467=>'L',
      +8468=>'ON',
      +8469=>'L',
      +8470=>'ON',
      +8471=>'ON',
      +8472=>'ON',
      +8473=>'L',
      +8474=>'L',
      +8475=>'L',
      +8476=>'L',
      +8477=>'L',
      +8478=>'ON',
      +8479=>'ON',
      +8480=>'ON',
      +8481=>'ON',
      +8482=>'ON',
      +8483=>'ON',
      +8484=>'L',
      +8485=>'ON',
      +8486=>'L',
      +8487=>'ON',
      +8488=>'L',
      +8489=>'ON',
      +8490=>'L',
      +8491=>'L',
      +8492=>'L',
      +8493=>'L',
      +8494=>'ET',
      +8495=>'L',
      +8496=>'L',
      +8497=>'L',
      +8498=>'L',
      +8499=>'L',
      +8500=>'L',
      +8501=>'L',
      +8502=>'L',
      +8503=>'L',
      +8504=>'L',
      +8505=>'L',
      +8506=>'ON',
      +8507=>'ON',
      +8508=>'L',
      +8509=>'L',
      +8510=>'L',
      +8511=>'L',
      +8512=>'ON',
      +8513=>'ON',
      +8514=>'ON',
      +8515=>'ON',
      +8516=>'ON',
      +8517=>'L',
      +8518=>'L',
      +8519=>'L',
      +8520=>'L',
      +8521=>'L',
      +8522=>'ON',
      +8523=>'ON',
      +8524=>'ON',
      +8525=>'ON',
      +8526=>'L',
      +8531=>'ON',
      +8532=>'ON',
      +8533=>'ON',
      +8534=>'ON',
      +8535=>'ON',
      +8536=>'ON',
      +8537=>'ON',
      +8538=>'ON',
      +8539=>'ON',
      +8540=>'ON',
      +8541=>'ON',
      +8542=>'ON',
      +8543=>'ON',
      +8544=>'L',
      +8545=>'L',
      +8546=>'L',
      +8547=>'L',
      +8548=>'L',
      +8549=>'L',
      +8550=>'L',
      +8551=>'L',
      +8552=>'L',
      +8553=>'L',
      +8554=>'L',
      +8555=>'L',
      +8556=>'L',
      +8557=>'L',
      +8558=>'L',
      +8559=>'L',
      +8560=>'L',
      +8561=>'L',
      +8562=>'L',
      +8563=>'L',
      +8564=>'L',
      +8565=>'L',
      +8566=>'L',
      +8567=>'L',
      +8568=>'L',
      +8569=>'L',
      +8570=>'L',
      +8571=>'L',
      +8572=>'L',
      +8573=>'L',
      +8574=>'L',
      +8575=>'L',
      +8576=>'L',
      +8577=>'L',
      +8578=>'L',
      +8579=>'L',
      +8580=>'L',
      +8592=>'ON',
      +8593=>'ON',
      +8594=>'ON',
      +8595=>'ON',
      +8596=>'ON',
      +8597=>'ON',
      +8598=>'ON',
      +8599=>'ON',
      +8600=>'ON',
      +8601=>'ON',
      +8602=>'ON',
      +8603=>'ON',
      +8604=>'ON',
      +8605=>'ON',
      +8606=>'ON',
      +8607=>'ON',
      +8608=>'ON',
      +8609=>'ON',
      +8610=>'ON',
      +8611=>'ON',
      +8612=>'ON',
      +8613=>'ON',
      +8614=>'ON',
      +8615=>'ON',
      +8616=>'ON',
      +8617=>'ON',
      +8618=>'ON',
      +8619=>'ON',
      +8620=>'ON',
      +8621=>'ON',
      +8622=>'ON',
      +8623=>'ON',
      +8624=>'ON',
      +8625=>'ON',
      +8626=>'ON',
      +8627=>'ON',
      +8628=>'ON',
      +8629=>'ON',
      +8630=>'ON',
      +8631=>'ON',
      +8632=>'ON',
      +8633=>'ON',
      +8634=>'ON',
      +8635=>'ON',
      +8636=>'ON',
      +8637=>'ON',
      +8638=>'ON',
      +8639=>'ON',
      +8640=>'ON',
      +8641=>'ON',
      +8642=>'ON',
      +8643=>'ON',
      +8644=>'ON',
      +8645=>'ON',
      +8646=>'ON',
      +8647=>'ON',
      +8648=>'ON',
      +8649=>'ON',
      +8650=>'ON',
      +8651=>'ON',
      +8652=>'ON',
      +8653=>'ON',
      +8654=>'ON',
      +8655=>'ON',
      +8656=>'ON',
      +8657=>'ON',
      +8658=>'ON',
      +8659=>'ON',
      +8660=>'ON',
      +8661=>'ON',
      +8662=>'ON',
      +8663=>'ON',
      +8664=>'ON',
      +8665=>'ON',
      +8666=>'ON',
      +8667=>'ON',
      +8668=>'ON',
      +8669=>'ON',
      +8670=>'ON',
      +8671=>'ON',
      +8672=>'ON',
      +8673=>'ON',
      +8674=>'ON',
      +8675=>'ON',
      +8676=>'ON',
      +8677=>'ON',
      +8678=>'ON',
      +8679=>'ON',
      +8680=>'ON',
      +8681=>'ON',
      +8682=>'ON',
      +8683=>'ON',
      +8684=>'ON',
      +8685=>'ON',
      +8686=>'ON',
      +8687=>'ON',
      +8688=>'ON',
      +8689=>'ON',
      +8690=>'ON',
      +8691=>'ON',
      +8692=>'ON',
      +8693=>'ON',
      +8694=>'ON',
      +8695=>'ON',
      +8696=>'ON',
      +8697=>'ON',
      +8698=>'ON',
      +8699=>'ON',
      +8700=>'ON',
      +8701=>'ON',
      +8702=>'ON',
      +8703=>'ON',
      +8704=>'ON',
      +8705=>'ON',
      +8706=>'ON',
      +8707=>'ON',
      +8708=>'ON',
      +8709=>'ON',
      +8710=>'ON',
      +8711=>'ON',
      +8712=>'ON',
      +8713=>'ON',
      +8714=>'ON',
      +8715=>'ON',
      +8716=>'ON',
      +8717=>'ON',
      +8718=>'ON',
      +8719=>'ON',
      +8720=>'ON',
      +8721=>'ON',
      +8722=>'ES',
      +8723=>'ET',
      +8724=>'ON',
      +8725=>'ON',
      +8726=>'ON',
      +8727=>'ON',
      +8728=>'ON',
      +8729=>'ON',
      +8730=>'ON',
      +8731=>'ON',
      +8732=>'ON',
      +8733=>'ON',
      +8734=>'ON',
      +8735=>'ON',
      +8736=>'ON',
      +8737=>'ON',
      +8738=>'ON',
      +8739=>'ON',
      +8740=>'ON',
      +8741=>'ON',
      +8742=>'ON',
      +8743=>'ON',
      +8744=>'ON',
      +8745=>'ON',
      +8746=>'ON',
      +8747=>'ON',
      +8748=>'ON',
      +8749=>'ON',
      +8750=>'ON',
      +8751=>'ON',
      +8752=>'ON',
      +8753=>'ON',
      +8754=>'ON',
      +8755=>'ON',
      +8756=>'ON',
      +8757=>'ON',
      +8758=>'ON',
      +8759=>'ON',
      +8760=>'ON',
      +8761=>'ON',
      +8762=>'ON',
      +8763=>'ON',
      +8764=>'ON',
      +8765=>'ON',
      +8766=>'ON',
      +8767=>'ON',
      +8768=>'ON',
      +8769=>'ON',
      +8770=>'ON',
      +8771=>'ON',
      +8772=>'ON',
      +8773=>'ON',
      +8774=>'ON',
      +8775=>'ON',
      +8776=>'ON',
      +8777=>'ON',
      +8778=>'ON',
      +8779=>'ON',
      +8780=>'ON',
      +8781=>'ON',
      +8782=>'ON',
      +8783=>'ON',
      +8784=>'ON',
      +8785=>'ON',
      +8786=>'ON',
      +8787=>'ON',
      +8788=>'ON',
      +8789=>'ON',
      +8790=>'ON',
      +8791=>'ON',
      +8792=>'ON',
      +8793=>'ON',
      +8794=>'ON',
      +8795=>'ON',
      +8796=>'ON',
      +8797=>'ON',
      +8798=>'ON',
      +8799=>'ON',
      +8800=>'ON',
      +8801=>'ON',
      +8802=>'ON',
      +8803=>'ON',
      +8804=>'ON',
      +8805=>'ON',
      +8806=>'ON',
      +8807=>'ON',
      +8808=>'ON',
      +8809=>'ON',
      +8810=>'ON',
      +8811=>'ON',
      +8812=>'ON',
      +8813=>'ON',
      +8814=>'ON',
      +8815=>'ON',
      +8816=>'ON',
      +8817=>'ON',
      +8818=>'ON',
      +8819=>'ON',
      +8820=>'ON',
      +8821=>'ON',
      +8822=>'ON',
      +8823=>'ON',
      +8824=>'ON',
      +8825=>'ON',
      +8826=>'ON',
      +8827=>'ON',
      +8828=>'ON',
      +8829=>'ON',
      +8830=>'ON',
      +8831=>'ON',
      +8832=>'ON',
      +8833=>'ON',
      +8834=>'ON',
      +8835=>'ON',
      +8836=>'ON',
      +8837=>'ON',
      +8838=>'ON',
      +8839=>'ON',
      +8840=>'ON',
      +8841=>'ON',
      +8842=>'ON',
      +8843=>'ON',
      +8844=>'ON',
      +8845=>'ON',
      +8846=>'ON',
      +8847=>'ON',
      +8848=>'ON',
      +8849=>'ON',
      +8850=>'ON',
      +8851=>'ON',
      +8852=>'ON',
      +8853=>'ON',
      +8854=>'ON',
      +8855=>'ON',
      +8856=>'ON',
      +8857=>'ON',
      +8858=>'ON',
      +8859=>'ON',
      +8860=>'ON',
      +8861=>'ON',
      +8862=>'ON',
      +8863=>'ON',
      +8864=>'ON',
      +8865=>'ON',
      +8866=>'ON',
      +8867=>'ON',
      +8868=>'ON',
      +8869=>'ON',
      +8870=>'ON',
      +8871=>'ON',
      +8872=>'ON',
      +8873=>'ON',
      +8874=>'ON',
      +8875=>'ON',
      +8876=>'ON',
      +8877=>'ON',
      +8878=>'ON',
      +8879=>'ON',
      +8880=>'ON',
      +8881=>'ON',
      +8882=>'ON',
      +8883=>'ON',
      +8884=>'ON',
      +8885=>'ON',
      +8886=>'ON',
      +8887=>'ON',
      +8888=>'ON',
      +8889=>'ON',
      +8890=>'ON',
      +8891=>'ON',
      +8892=>'ON',
      +8893=>'ON',
      +8894=>'ON',
      +8895=>'ON',
      +8896=>'ON',
      +8897=>'ON',
      +8898=>'ON',
      +8899=>'ON',
      +8900=>'ON',
      +8901=>'ON',
      +8902=>'ON',
      +8903=>'ON',
      +8904=>'ON',
      +8905=>'ON',
      +8906=>'ON',
      +8907=>'ON',
      +8908=>'ON',
      +8909=>'ON',
      +8910=>'ON',
      +8911=>'ON',
      +8912=>'ON',
      +8913=>'ON',
      +8914=>'ON',
      +8915=>'ON',
      +8916=>'ON',
      +8917=>'ON',
      +8918=>'ON',
      +8919=>'ON',
      +8920=>'ON',
      +8921=>'ON',
      +8922=>'ON',
      +8923=>'ON',
      +8924=>'ON',
      +8925=>'ON',
      +8926=>'ON',
      +8927=>'ON',
      +8928=>'ON',
      +8929=>'ON',
      +8930=>'ON',
      +8931=>'ON',
      +8932=>'ON',
      +8933=>'ON',
      +8934=>'ON',
      +8935=>'ON',
      +8936=>'ON',
      +8937=>'ON',
      +8938=>'ON',
      +8939=>'ON',
      +8940=>'ON',
      +8941=>'ON',
      +8942=>'ON',
      +8943=>'ON',
      +8944=>'ON',
      +8945=>'ON',
      +8946=>'ON',
      +8947=>'ON',
      +8948=>'ON',
      +8949=>'ON',
      +8950=>'ON',
      +8951=>'ON',
      +8952=>'ON',
      +8953=>'ON',
      +8954=>'ON',
      +8955=>'ON',
      +8956=>'ON',
      +8957=>'ON',
      +8958=>'ON',
      +8959=>'ON',
      +8960=>'ON',
      +8961=>'ON',
      +8962=>'ON',
      +8963=>'ON',
      +8964=>'ON',
      +8965=>'ON',
      +8966=>'ON',
      +8967=>'ON',
      +8968=>'ON',
      +8969=>'ON',
      +8970=>'ON',
      +8971=>'ON',
      +8972=>'ON',
      +8973=>'ON',
      +8974=>'ON',
      +8975=>'ON',
      +8976=>'ON',
      +8977=>'ON',
      +8978=>'ON',
      +8979=>'ON',
      +8980=>'ON',
      +8981=>'ON',
      +8982=>'ON',
      +8983=>'ON',
      +8984=>'ON',
      +8985=>'ON',
      +8986=>'ON',
      +8987=>'ON',
      +8988=>'ON',
      +8989=>'ON',
      +8990=>'ON',
      +8991=>'ON',
      +8992=>'ON',
      +8993=>'ON',
      +8994=>'ON',
      +8995=>'ON',
      +8996=>'ON',
      +8997=>'ON',
      +8998=>'ON',
      +8999=>'ON',
      +9000=>'ON',
      +9001=>'ON',
      +9002=>'ON',
      +9003=>'ON',
      +9004=>'ON',
      +9005=>'ON',
      +9006=>'ON',
      +9007=>'ON',
      +9008=>'ON',
      +9009=>'ON',
      +9010=>'ON',
      +9011=>'ON',
      +9012=>'ON',
      +9013=>'ON',
      +9014=>'L',
      +9015=>'L',
      +9016=>'L',
      +9017=>'L',
      +9018=>'L',
      +9019=>'L',
      +9020=>'L',
      +9021=>'L',
      +9022=>'L',
      +9023=>'L',
      +9024=>'L',
      +9025=>'L',
      +9026=>'L',
      +9027=>'L',
      +9028=>'L',
      +9029=>'L',
      +9030=>'L',
      +9031=>'L',
      +9032=>'L',
      +9033=>'L',
      +9034=>'L',
      +9035=>'L',
      +9036=>'L',
      +9037=>'L',
      +9038=>'L',
      +9039=>'L',
      +9040=>'L',
      +9041=>'L',
      +9042=>'L',
      +9043=>'L',
      +9044=>'L',
      +9045=>'L',
      +9046=>'L',
      +9047=>'L',
      +9048=>'L',
      +9049=>'L',
      +9050=>'L',
      +9051=>'L',
      +9052=>'L',
      +9053=>'L',
      +9054=>'L',
      +9055=>'L',
      +9056=>'L',
      +9057=>'L',
      +9058=>'L',
      +9059=>'L',
      +9060=>'L',
      +9061=>'L',
      +9062=>'L',
      +9063=>'L',
      +9064=>'L',
      +9065=>'L',
      +9066=>'L',
      +9067=>'L',
      +9068=>'L',
      +9069=>'L',
      +9070=>'L',
      +9071=>'L',
      +9072=>'L',
      +9073=>'L',
      +9074=>'L',
      +9075=>'L',
      +9076=>'L',
      +9077=>'L',
      +9078=>'L',
      +9079=>'L',
      +9080=>'L',
      +9081=>'L',
      +9082=>'L',
      +9083=>'ON',
      +9084=>'ON',
      +9085=>'ON',
      +9086=>'ON',
      +9087=>'ON',
      +9088=>'ON',
      +9089=>'ON',
      +9090=>'ON',
      +9091=>'ON',
      +9092=>'ON',
      +9093=>'ON',
      +9094=>'ON',
      +9095=>'ON',
      +9096=>'ON',
      +9097=>'ON',
      +9098=>'ON',
      +9099=>'ON',
      +9100=>'ON',
      +9101=>'ON',
      +9102=>'ON',
      +9103=>'ON',
      +9104=>'ON',
      +9105=>'ON',
      +9106=>'ON',
      +9107=>'ON',
      +9108=>'ON',
      +9109=>'L',
      +9110=>'ON',
      +9111=>'ON',
      +9112=>'ON',
      +9113=>'ON',
      +9114=>'ON',
      +9115=>'ON',
      +9116=>'ON',
      +9117=>'ON',
      +9118=>'ON',
      +9119=>'ON',
      +9120=>'ON',
      +9121=>'ON',
      +9122=>'ON',
      +9123=>'ON',
      +9124=>'ON',
      +9125=>'ON',
      +9126=>'ON',
      +9127=>'ON',
      +9128=>'ON',
      +9129=>'ON',
      +9130=>'ON',
      +9131=>'ON',
      +9132=>'ON',
      +9133=>'ON',
      +9134=>'ON',
      +9135=>'ON',
      +9136=>'ON',
      +9137=>'ON',
      +9138=>'ON',
      +9139=>'ON',
      +9140=>'ON',
      +9141=>'ON',
      +9142=>'ON',
      +9143=>'ON',
      +9144=>'ON',
      +9145=>'ON',
      +9146=>'ON',
      +9147=>'ON',
      +9148=>'ON',
      +9149=>'ON',
      +9150=>'ON',
      +9151=>'ON',
      +9152=>'ON',
      +9153=>'ON',
      +9154=>'ON',
      +9155=>'ON',
      +9156=>'ON',
      +9157=>'ON',
      +9158=>'ON',
      +9159=>'ON',
      +9160=>'ON',
      +9161=>'ON',
      +9162=>'ON',
      +9163=>'ON',
      +9164=>'ON',
      +9165=>'ON',
      +9166=>'ON',
      +9167=>'ON',
      +9168=>'ON',
      +9169=>'ON',
      +9170=>'ON',
      +9171=>'ON',
      +9172=>'ON',
      +9173=>'ON',
      +9174=>'ON',
      +9175=>'ON',
      +9176=>'ON',
      +9177=>'ON',
      +9178=>'ON',
      +9179=>'ON',
      +9180=>'ON',
      +9181=>'ON',
      +9182=>'ON',
      +9183=>'ON',
      +9184=>'ON',
      +9185=>'ON',
      +9186=>'ON',
      +9187=>'ON',
      +9188=>'ON',
      +9189=>'ON',
      +9190=>'ON',
      +9191=>'ON',
      +9216=>'ON',
      +9217=>'ON',
      +9218=>'ON',
      +9219=>'ON',
      +9220=>'ON',
      +9221=>'ON',
      +9222=>'ON',
      +9223=>'ON',
      +9224=>'ON',
      +9225=>'ON',
      +9226=>'ON',
      +9227=>'ON',
      +9228=>'ON',
      +9229=>'ON',
      +9230=>'ON',
      +9231=>'ON',
      +9232=>'ON',
      +9233=>'ON',
      +9234=>'ON',
      +9235=>'ON',
      +9236=>'ON',
      +9237=>'ON',
      +9238=>'ON',
      +9239=>'ON',
      +9240=>'ON',
      +9241=>'ON',
      +9242=>'ON',
      +9243=>'ON',
      +9244=>'ON',
      +9245=>'ON',
      +9246=>'ON',
      +9247=>'ON',
      +9248=>'ON',
      +9249=>'ON',
      +9250=>'ON',
      +9251=>'ON',
      +9252=>'ON',
      +9253=>'ON',
      +9254=>'ON',
      +9280=>'ON',
      +9281=>'ON',
      +9282=>'ON',
      +9283=>'ON',
      +9284=>'ON',
      +9285=>'ON',
      +9286=>'ON',
      +9287=>'ON',
      +9288=>'ON',
      +9289=>'ON',
      +9290=>'ON',
      +9312=>'ON',
      +9313=>'ON',
      +9314=>'ON',
      +9315=>'ON',
      +9316=>'ON',
      +9317=>'ON',
      +9318=>'ON',
      +9319=>'ON',
      +9320=>'ON',
      +9321=>'ON',
      +9322=>'ON',
      +9323=>'ON',
      +9324=>'ON',
      +9325=>'ON',
      +9326=>'ON',
      +9327=>'ON',
      +9328=>'ON',
      +9329=>'ON',
      +9330=>'ON',
      +9331=>'ON',
      +9332=>'ON',
      +9333=>'ON',
      +9334=>'ON',
      +9335=>'ON',
      +9336=>'ON',
      +9337=>'ON',
      +9338=>'ON',
      +9339=>'ON',
      +9340=>'ON',
      +9341=>'ON',
      +9342=>'ON',
      +9343=>'ON',
      +9344=>'ON',
      +9345=>'ON',
      +9346=>'ON',
      +9347=>'ON',
      +9348=>'ON',
      +9349=>'ON',
      +9350=>'ON',
      +9351=>'ON',
      +9352=>'EN',
      +9353=>'EN',
      +9354=>'EN',
      +9355=>'EN',
      +9356=>'EN',
      +9357=>'EN',
      +9358=>'EN',
      +9359=>'EN',
      +9360=>'EN',
      +9361=>'EN',
      +9362=>'EN',
      +9363=>'EN',
      +9364=>'EN',
      +9365=>'EN',
      +9366=>'EN',
      +9367=>'EN',
      +9368=>'EN',
      +9369=>'EN',
      +9370=>'EN',
      +9371=>'EN',
      +9372=>'L',
      +9373=>'L',
      +9374=>'L',
      +9375=>'L',
      +9376=>'L',
      +9377=>'L',
      +9378=>'L',
      +9379=>'L',
      +9380=>'L',
      +9381=>'L',
      +9382=>'L',
      +9383=>'L',
      +9384=>'L',
      +9385=>'L',
      +9386=>'L',
      +9387=>'L',
      +9388=>'L',
      +9389=>'L',
      +9390=>'L',
      +9391=>'L',
      +9392=>'L',
      +9393=>'L',
      +9394=>'L',
      +9395=>'L',
      +9396=>'L',
      +9397=>'L',
      +9398=>'L',
      +9399=>'L',
      +9400=>'L',
      +9401=>'L',
      +9402=>'L',
      +9403=>'L',
      +9404=>'L',
      +9405=>'L',
      +9406=>'L',
      +9407=>'L',
      +9408=>'L',
      +9409=>'L',
      +9410=>'L',
      +9411=>'L',
      +9412=>'L',
      +9413=>'L',
      +9414=>'L',
      +9415=>'L',
      +9416=>'L',
      +9417=>'L',
      +9418=>'L',
      +9419=>'L',
      +9420=>'L',
      +9421=>'L',
      +9422=>'L',
      +9423=>'L',
      +9424=>'L',
      +9425=>'L',
      +9426=>'L',
      +9427=>'L',
      +9428=>'L',
      +9429=>'L',
      +9430=>'L',
      +9431=>'L',
      +9432=>'L',
      +9433=>'L',
      +9434=>'L',
      +9435=>'L',
      +9436=>'L',
      +9437=>'L',
      +9438=>'L',
      +9439=>'L',
      +9440=>'L',
      +9441=>'L',
      +9442=>'L',
      +9443=>'L',
      +9444=>'L',
      +9445=>'L',
      +9446=>'L',
      +9447=>'L',
      +9448=>'L',
      +9449=>'L',
      +9450=>'ON',
      +9451=>'ON',
      +9452=>'ON',
      +9453=>'ON',
      +9454=>'ON',
      +9455=>'ON',
      +9456=>'ON',
      +9457=>'ON',
      +9458=>'ON',
      +9459=>'ON',
      +9460=>'ON',
      +9461=>'ON',
      +9462=>'ON',
      +9463=>'ON',
      +9464=>'ON',
      +9465=>'ON',
      +9466=>'ON',
      +9467=>'ON',
      +9468=>'ON',
      +9469=>'ON',
      +9470=>'ON',
      +9471=>'ON',
      +9472=>'ON',
      +9473=>'ON',
      +9474=>'ON',
      +9475=>'ON',
      +9476=>'ON',
      +9477=>'ON',
      +9478=>'ON',
      +9479=>'ON',
      +9480=>'ON',
      +9481=>'ON',
      +9482=>'ON',
      +9483=>'ON',
      +9484=>'ON',
      +9485=>'ON',
      +9486=>'ON',
      +9487=>'ON',
      +9488=>'ON',
      +9489=>'ON',
      +9490=>'ON',
      +9491=>'ON',
      +9492=>'ON',
      +9493=>'ON',
      +9494=>'ON',
      +9495=>'ON',
      +9496=>'ON',
      +9497=>'ON',
      +9498=>'ON',
      +9499=>'ON',
      +9500=>'ON',
      +9501=>'ON',
      +9502=>'ON',
      +9503=>'ON',
      +9504=>'ON',
      +9505=>'ON',
      +9506=>'ON',
      +9507=>'ON',
      +9508=>'ON',
      +9509=>'ON',
      +9510=>'ON',
      +9511=>'ON',
      +9512=>'ON',
      +9513=>'ON',
      +9514=>'ON',
      +9515=>'ON',
      +9516=>'ON',
      +9517=>'ON',
      +9518=>'ON',
      +9519=>'ON',
      +9520=>'ON',
      +9521=>'ON',
      +9522=>'ON',
      +9523=>'ON',
      +9524=>'ON',
      +9525=>'ON',
      +9526=>'ON',
      +9527=>'ON',
      +9528=>'ON',
      +9529=>'ON',
      +9530=>'ON',
      +9531=>'ON',
      +9532=>'ON',
      +9533=>'ON',
      +9534=>'ON',
      +9535=>'ON',
      +9536=>'ON',
      +9537=>'ON',
      +9538=>'ON',
      +9539=>'ON',
      +9540=>'ON',
      +9541=>'ON',
      +9542=>'ON',
      +9543=>'ON',
      +9544=>'ON',
      +9545=>'ON',
      +9546=>'ON',
      +9547=>'ON',
      +9548=>'ON',
      +9549=>'ON',
      +9550=>'ON',
      +9551=>'ON',
      +9552=>'ON',
      +9553=>'ON',
      +9554=>'ON',
      +9555=>'ON',
      +9556=>'ON',
      +9557=>'ON',
      +9558=>'ON',
      +9559=>'ON',
      +9560=>'ON',
      +9561=>'ON',
      +9562=>'ON',
      +9563=>'ON',
      +9564=>'ON',
      +9565=>'ON',
      +9566=>'ON',
      +9567=>'ON',
      +9568=>'ON',
      +9569=>'ON',
      +9570=>'ON',
      +9571=>'ON',
      +9572=>'ON',
      +9573=>'ON',
      +9574=>'ON',
      +9575=>'ON',
      +9576=>'ON',
      +9577=>'ON',
      +9578=>'ON',
      +9579=>'ON',
      +9580=>'ON',
      +9581=>'ON',
      +9582=>'ON',
      +9583=>'ON',
      +9584=>'ON',
      +9585=>'ON',
      +9586=>'ON',
      +9587=>'ON',
      +9588=>'ON',
      +9589=>'ON',
      +9590=>'ON',
      +9591=>'ON',
      +9592=>'ON',
      +9593=>'ON',
      +9594=>'ON',
      +9595=>'ON',
      +9596=>'ON',
      +9597=>'ON',
      +9598=>'ON',
      +9599=>'ON',
      +9600=>'ON',
      +9601=>'ON',
      +9602=>'ON',
      +9603=>'ON',
      +9604=>'ON',
      +9605=>'ON',
      +9606=>'ON',
      +9607=>'ON',
      +9608=>'ON',
      +9609=>'ON',
      +9610=>'ON',
      +9611=>'ON',
      +9612=>'ON',
      +9613=>'ON',
      +9614=>'ON',
      +9615=>'ON',
      +9616=>'ON',
      +9617=>'ON',
      +9618=>'ON',
      +9619=>'ON',
      +9620=>'ON',
      +9621=>'ON',
      +9622=>'ON',
      +9623=>'ON',
      +9624=>'ON',
      +9625=>'ON',
      +9626=>'ON',
      +9627=>'ON',
      +9628=>'ON',
      +9629=>'ON',
      +9630=>'ON',
      +9631=>'ON',
      +9632=>'ON',
      +9633=>'ON',
      +9634=>'ON',
      +9635=>'ON',
      +9636=>'ON',
      +9637=>'ON',
      +9638=>'ON',
      +9639=>'ON',
      +9640=>'ON',
      +9641=>'ON',
      +9642=>'ON',
      +9643=>'ON',
      +9644=>'ON',
      +9645=>'ON',
      +9646=>'ON',
      +9647=>'ON',
      +9648=>'ON',
      +9649=>'ON',
      +9650=>'ON',
      +9651=>'ON',
      +9652=>'ON',
      +9653=>'ON',
      +9654=>'ON',
      +9655=>'ON',
      +9656=>'ON',
      +9657=>'ON',
      +9658=>'ON',
      +9659=>'ON',
      +9660=>'ON',
      +9661=>'ON',
      +9662=>'ON',
      +9663=>'ON',
      +9664=>'ON',
      +9665=>'ON',
      +9666=>'ON',
      +9667=>'ON',
      +9668=>'ON',
      +9669=>'ON',
      +9670=>'ON',
      +9671=>'ON',
      +9672=>'ON',
      +9673=>'ON',
      +9674=>'ON',
      +9675=>'ON',
      +9676=>'ON',
      +9677=>'ON',
      +9678=>'ON',
      +9679=>'ON',
      +9680=>'ON',
      +9681=>'ON',
      +9682=>'ON',
      +9683=>'ON',
      +9684=>'ON',
      +9685=>'ON',
      +9686=>'ON',
      +9687=>'ON',
      +9688=>'ON',
      +9689=>'ON',
      +9690=>'ON',
      +9691=>'ON',
      +9692=>'ON',
      +9693=>'ON',
      +9694=>'ON',
      +9695=>'ON',
      +9696=>'ON',
      +9697=>'ON',
      +9698=>'ON',
      +9699=>'ON',
      +9700=>'ON',
      +9701=>'ON',
      +9702=>'ON',
      +9703=>'ON',
      +9704=>'ON',
      +9705=>'ON',
      +9706=>'ON',
      +9707=>'ON',
      +9708=>'ON',
      +9709=>'ON',
      +9710=>'ON',
      +9711=>'ON',
      +9712=>'ON',
      +9713=>'ON',
      +9714=>'ON',
      +9715=>'ON',
      +9716=>'ON',
      +9717=>'ON',
      +9718=>'ON',
      +9719=>'ON',
      +9720=>'ON',
      +9721=>'ON',
      +9722=>'ON',
      +9723=>'ON',
      +9724=>'ON',
      +9725=>'ON',
      +9726=>'ON',
      +9727=>'ON',
      +9728=>'ON',
      +9729=>'ON',
      +9730=>'ON',
      +9731=>'ON',
      +9732=>'ON',
      +9733=>'ON',
      +9734=>'ON',
      +9735=>'ON',
      +9736=>'ON',
      +9737=>'ON',
      +9738=>'ON',
      +9739=>'ON',
      +9740=>'ON',
      +9741=>'ON',
      +9742=>'ON',
      +9743=>'ON',
      +9744=>'ON',
      +9745=>'ON',
      +9746=>'ON',
      +9747=>'ON',
      +9748=>'ON',
      +9749=>'ON',
      +9750=>'ON',
      +9751=>'ON',
      +9752=>'ON',
      +9753=>'ON',
      +9754=>'ON',
      +9755=>'ON',
      +9756=>'ON',
      +9757=>'ON',
      +9758=>'ON',
      +9759=>'ON',
      +9760=>'ON',
      +9761=>'ON',
      +9762=>'ON',
      +9763=>'ON',
      +9764=>'ON',
      +9765=>'ON',
      +9766=>'ON',
      +9767=>'ON',
      +9768=>'ON',
      +9769=>'ON',
      +9770=>'ON',
      +9771=>'ON',
      +9772=>'ON',
      +9773=>'ON',
      +9774=>'ON',
      +9775=>'ON',
      +9776=>'ON',
      +9777=>'ON',
      +9778=>'ON',
      +9779=>'ON',
      +9780=>'ON',
      +9781=>'ON',
      +9782=>'ON',
      +9783=>'ON',
      +9784=>'ON',
      +9785=>'ON',
      +9786=>'ON',
      +9787=>'ON',
      +9788=>'ON',
      +9789=>'ON',
      +9790=>'ON',
      +9791=>'ON',
      +9792=>'ON',
      +9793=>'ON',
      +9794=>'ON',
      +9795=>'ON',
      +9796=>'ON',
      +9797=>'ON',
      +9798=>'ON',
      +9799=>'ON',
      +9800=>'ON',
      +9801=>'ON',
      +9802=>'ON',
      +9803=>'ON',
      +9804=>'ON',
      +9805=>'ON',
      +9806=>'ON',
      +9807=>'ON',
      +9808=>'ON',
      +9809=>'ON',
      +9810=>'ON',
      +9811=>'ON',
      +9812=>'ON',
      +9813=>'ON',
      +9814=>'ON',
      +9815=>'ON',
      +9816=>'ON',
      +9817=>'ON',
      +9818=>'ON',
      +9819=>'ON',
      +9820=>'ON',
      +9821=>'ON',
      +9822=>'ON',
      +9823=>'ON',
      +9824=>'ON',
      +9825=>'ON',
      +9826=>'ON',
      +9827=>'ON',
      +9828=>'ON',
      +9829=>'ON',
      +9830=>'ON',
      +9831=>'ON',
      +9832=>'ON',
      +9833=>'ON',
      +9834=>'ON',
      +9835=>'ON',
      +9836=>'ON',
      +9837=>'ON',
      +9838=>'ON',
      +9839=>'ON',
      +9840=>'ON',
      +9841=>'ON',
      +9842=>'ON',
      +9843=>'ON',
      +9844=>'ON',
      +9845=>'ON',
      +9846=>'ON',
      +9847=>'ON',
      +9848=>'ON',
      +9849=>'ON',
      +9850=>'ON',
      +9851=>'ON',
      +9852=>'ON',
      +9853=>'ON',
      +9854=>'ON',
      +9855=>'ON',
      +9856=>'ON',
      +9857=>'ON',
      +9858=>'ON',
      +9859=>'ON',
      +9860=>'ON',
      +9861=>'ON',
      +9862=>'ON',
      +9863=>'ON',
      +9864=>'ON',
      +9865=>'ON',
      +9866=>'ON',
      +9867=>'ON',
      +9868=>'ON',
      +9869=>'ON',
      +9870=>'ON',
      +9871=>'ON',
      +9872=>'ON',
      +9873=>'ON',
      +9874=>'ON',
      +9875=>'ON',
      +9876=>'ON',
      +9877=>'ON',
      +9878=>'ON',
      +9879=>'ON',
      +9880=>'ON',
      +9881=>'ON',
      +9882=>'ON',
      +9883=>'ON',
      +9884=>'ON',
      +9888=>'ON',
      +9889=>'ON',
      +9890=>'ON',
      +9891=>'ON',
      +9892=>'ON',
      +9893=>'ON',
      +9894=>'ON',
      +9895=>'ON',
      +9896=>'ON',
      +9897=>'ON',
      +9898=>'ON',
      +9899=>'ON',
      +9900=>'L',
      +9901=>'ON',
      +9902=>'ON',
      +9903=>'ON',
      +9904=>'ON',
      +9905=>'ON',
      +9906=>'ON',
      +9985=>'ON',
      +9986=>'ON',
      +9987=>'ON',
      +9988=>'ON',
      +9990=>'ON',
      +9991=>'ON',
      +9992=>'ON',
      +9993=>'ON',
      +9996=>'ON',
      +9997=>'ON',
      +9998=>'ON',
      +9999=>'ON',
      +10000=>'ON',
      +10001=>'ON',
      +10002=>'ON',
      +10003=>'ON',
      +10004=>'ON',
      +10005=>'ON',
      +10006=>'ON',
      +10007=>'ON',
      +10008=>'ON',
      +10009=>'ON',
      +10010=>'ON',
      +10011=>'ON',
      +10012=>'ON',
      +10013=>'ON',
      +10014=>'ON',
      +10015=>'ON',
      +10016=>'ON',
      +10017=>'ON',
      +10018=>'ON',
      +10019=>'ON',
      +10020=>'ON',
      +10021=>'ON',
      +10022=>'ON',
      +10023=>'ON',
      +10025=>'ON',
      +10026=>'ON',
      +10027=>'ON',
      +10028=>'ON',
      +10029=>'ON',
      +10030=>'ON',
      +10031=>'ON',
      +10032=>'ON',
      +10033=>'ON',
      +10034=>'ON',
      +10035=>'ON',
      +10036=>'ON',
      +10037=>'ON',
      +10038=>'ON',
      +10039=>'ON',
      +10040=>'ON',
      +10041=>'ON',
      +10042=>'ON',
      +10043=>'ON',
      +10044=>'ON',
      +10045=>'ON',
      +10046=>'ON',
      +10047=>'ON',
      +10048=>'ON',
      +10049=>'ON',
      +10050=>'ON',
      +10051=>'ON',
      +10052=>'ON',
      +10053=>'ON',
      +10054=>'ON',
      +10055=>'ON',
      +10056=>'ON',
      +10057=>'ON',
      +10058=>'ON',
      +10059=>'ON',
      +10061=>'ON',
      +10063=>'ON',
      +10064=>'ON',
      +10065=>'ON',
      +10066=>'ON',
      +10070=>'ON',
      +10072=>'ON',
      +10073=>'ON',
      +10074=>'ON',
      +10075=>'ON',
      +10076=>'ON',
      +10077=>'ON',
      +10078=>'ON',
      +10081=>'ON',
      +10082=>'ON',
      +10083=>'ON',
      +10084=>'ON',
      +10085=>'ON',
      +10086=>'ON',
      +10087=>'ON',
      +10088=>'ON',
      +10089=>'ON',
      +10090=>'ON',
      +10091=>'ON',
      +10092=>'ON',
      +10093=>'ON',
      +10094=>'ON',
      +10095=>'ON',
      +10096=>'ON',
      +10097=>'ON',
      +10098=>'ON',
      +10099=>'ON',
      +10100=>'ON',
      +10101=>'ON',
      +10102=>'ON',
      +10103=>'ON',
      +10104=>'ON',
      +10105=>'ON',
      +10106=>'ON',
      +10107=>'ON',
      +10108=>'ON',
      +10109=>'ON',
      +10110=>'ON',
      +10111=>'ON',
      +10112=>'ON',
      +10113=>'ON',
      +10114=>'ON',
      +10115=>'ON',
      +10116=>'ON',
      +10117=>'ON',
      +10118=>'ON',
      +10119=>'ON',
      +10120=>'ON',
      +10121=>'ON',
      +10122=>'ON',
      +10123=>'ON',
      +10124=>'ON',
      +10125=>'ON',
      +10126=>'ON',
      +10127=>'ON',
      +10128=>'ON',
      +10129=>'ON',
      +10130=>'ON',
      +10131=>'ON',
      +10132=>'ON',
      +10136=>'ON',
      +10137=>'ON',
      +10138=>'ON',
      +10139=>'ON',
      +10140=>'ON',
      +10141=>'ON',
      +10142=>'ON',
      +10143=>'ON',
      +10144=>'ON',
      +10145=>'ON',
      +10146=>'ON',
      +10147=>'ON',
      +10148=>'ON',
      +10149=>'ON',
      +10150=>'ON',
      +10151=>'ON',
      +10152=>'ON',
      +10153=>'ON',
      +10154=>'ON',
      +10155=>'ON',
      +10156=>'ON',
      +10157=>'ON',
      +10158=>'ON',
      +10159=>'ON',
      +10161=>'ON',
      +10162=>'ON',
      +10163=>'ON',
      +10164=>'ON',
      +10165=>'ON',
      +10166=>'ON',
      +10167=>'ON',
      +10168=>'ON',
      +10169=>'ON',
      +10170=>'ON',
      +10171=>'ON',
      +10172=>'ON',
      +10173=>'ON',
      +10174=>'ON',
      +10176=>'ON',
      +10177=>'ON',
      +10178=>'ON',
      +10179=>'ON',
      +10180=>'ON',
      +10181=>'ON',
      +10182=>'ON',
      +10183=>'ON',
      +10184=>'ON',
      +10185=>'ON',
      +10186=>'ON',
      +10192=>'ON',
      +10193=>'ON',
      +10194=>'ON',
      +10195=>'ON',
      +10196=>'ON',
      +10197=>'ON',
      +10198=>'ON',
      +10199=>'ON',
      +10200=>'ON',
      +10201=>'ON',
      +10202=>'ON',
      +10203=>'ON',
      +10204=>'ON',
      +10205=>'ON',
      +10206=>'ON',
      +10207=>'ON',
      +10208=>'ON',
      +10209=>'ON',
      +10210=>'ON',
      +10211=>'ON',
      +10212=>'ON',
      +10213=>'ON',
      +10214=>'ON',
      +10215=>'ON',
      +10216=>'ON',
      +10217=>'ON',
      +10218=>'ON',
      +10219=>'ON',
      +10224=>'ON',
      +10225=>'ON',
      +10226=>'ON',
      +10227=>'ON',
      +10228=>'ON',
      +10229=>'ON',
      +10230=>'ON',
      +10231=>'ON',
      +10232=>'ON',
      +10233=>'ON',
      +10234=>'ON',
      +10235=>'ON',
      +10236=>'ON',
      +10237=>'ON',
      +10238=>'ON',
      +10239=>'ON',
      +10240=>'L',
      +10241=>'L',
      +10242=>'L',
      +10243=>'L',
      +10244=>'L',
      +10245=>'L',
      +10246=>'L',
      +10247=>'L',
      +10248=>'L',
      +10249=>'L',
      +10250=>'L',
      +10251=>'L',
      +10252=>'L',
      +10253=>'L',
      +10254=>'L',
      +10255=>'L',
      +10256=>'L',
      +10257=>'L',
      +10258=>'L',
      +10259=>'L',
      +10260=>'L',
      +10261=>'L',
      +10262=>'L',
      +10263=>'L',
      +10264=>'L',
      +10265=>'L',
      +10266=>'L',
      +10267=>'L',
      +10268=>'L',
      +10269=>'L',
      +10270=>'L',
      +10271=>'L',
      +10272=>'L',
      +10273=>'L',
      +10274=>'L',
      +10275=>'L',
      +10276=>'L',
      +10277=>'L',
      +10278=>'L',
      +10279=>'L',
      +10280=>'L',
      +10281=>'L',
      +10282=>'L',
      +10283=>'L',
      +10284=>'L',
      +10285=>'L',
      +10286=>'L',
      +10287=>'L',
      +10288=>'L',
      +10289=>'L',
      +10290=>'L',
      +10291=>'L',
      +10292=>'L',
      +10293=>'L',
      +10294=>'L',
      +10295=>'L',
      +10296=>'L',
      +10297=>'L',
      +10298=>'L',
      +10299=>'L',
      +10300=>'L',
      +10301=>'L',
      +10302=>'L',
      +10303=>'L',
      +10304=>'L',
      +10305=>'L',
      +10306=>'L',
      +10307=>'L',
      +10308=>'L',
      +10309=>'L',
      +10310=>'L',
      +10311=>'L',
      +10312=>'L',
      +10313=>'L',
      +10314=>'L',
      +10315=>'L',
      +10316=>'L',
      +10317=>'L',
      +10318=>'L',
      +10319=>'L',
      +10320=>'L',
      +10321=>'L',
      +10322=>'L',
      +10323=>'L',
      +10324=>'L',
      +10325=>'L',
      +10326=>'L',
      +10327=>'L',
      +10328=>'L',
      +10329=>'L',
      +10330=>'L',
      +10331=>'L',
      +10332=>'L',
      +10333=>'L',
      +10334=>'L',
      +10335=>'L',
      +10336=>'L',
      +10337=>'L',
      +10338=>'L',
      +10339=>'L',
      +10340=>'L',
      +10341=>'L',
      +10342=>'L',
      +10343=>'L',
      +10344=>'L',
      +10345=>'L',
      +10346=>'L',
      +10347=>'L',
      +10348=>'L',
      +10349=>'L',
      +10350=>'L',
      +10351=>'L',
      +10352=>'L',
      +10353=>'L',
      +10354=>'L',
      +10355=>'L',
      +10356=>'L',
      +10357=>'L',
      +10358=>'L',
      +10359=>'L',
      +10360=>'L',
      +10361=>'L',
      +10362=>'L',
      +10363=>'L',
      +10364=>'L',
      +10365=>'L',
      +10366=>'L',
      +10367=>'L',
      +10368=>'L',
      +10369=>'L',
      +10370=>'L',
      +10371=>'L',
      +10372=>'L',
      +10373=>'L',
      +10374=>'L',
      +10375=>'L',
      +10376=>'L',
      +10377=>'L',
      +10378=>'L',
      +10379=>'L',
      +10380=>'L',
      +10381=>'L',
      +10382=>'L',
      +10383=>'L',
      +10384=>'L',
      +10385=>'L',
      +10386=>'L',
      +10387=>'L',
      +10388=>'L',
      +10389=>'L',
      +10390=>'L',
      +10391=>'L',
      +10392=>'L',
      +10393=>'L',
      +10394=>'L',
      +10395=>'L',
      +10396=>'L',
      +10397=>'L',
      +10398=>'L',
      +10399=>'L',
      +10400=>'L',
      +10401=>'L',
      +10402=>'L',
      +10403=>'L',
      +10404=>'L',
      +10405=>'L',
      +10406=>'L',
      +10407=>'L',
      +10408=>'L',
      +10409=>'L',
      +10410=>'L',
      +10411=>'L',
      +10412=>'L',
      +10413=>'L',
      +10414=>'L',
      +10415=>'L',
      +10416=>'L',
      +10417=>'L',
      +10418=>'L',
      +10419=>'L',
      +10420=>'L',
      +10421=>'L',
      +10422=>'L',
      +10423=>'L',
      +10424=>'L',
      +10425=>'L',
      +10426=>'L',
      +10427=>'L',
      +10428=>'L',
      +10429=>'L',
      +10430=>'L',
      +10431=>'L',
      +10432=>'L',
      +10433=>'L',
      +10434=>'L',
      +10435=>'L',
      +10436=>'L',
      +10437=>'L',
      +10438=>'L',
      +10439=>'L',
      +10440=>'L',
      +10441=>'L',
      +10442=>'L',
      +10443=>'L',
      +10444=>'L',
      +10445=>'L',
      +10446=>'L',
      +10447=>'L',
      +10448=>'L',
      +10449=>'L',
      +10450=>'L',
      +10451=>'L',
      +10452=>'L',
      +10453=>'L',
      +10454=>'L',
      +10455=>'L',
      +10456=>'L',
      +10457=>'L',
      +10458=>'L',
      +10459=>'L',
      +10460=>'L',
      +10461=>'L',
      +10462=>'L',
      +10463=>'L',
      +10464=>'L',
      +10465=>'L',
      +10466=>'L',
      +10467=>'L',
      +10468=>'L',
      +10469=>'L',
      +10470=>'L',
      +10471=>'L',
      +10472=>'L',
      +10473=>'L',
      +10474=>'L',
      +10475=>'L',
      +10476=>'L',
      +10477=>'L',
      +10478=>'L',
      +10479=>'L',
      +10480=>'L',
      +10481=>'L',
      +10482=>'L',
      +10483=>'L',
      +10484=>'L',
      +10485=>'L',
      +10486=>'L',
      +10487=>'L',
      +10488=>'L',
      +10489=>'L',
      +10490=>'L',
      +10491=>'L',
      +10492=>'L',
      +10493=>'L',
      +10494=>'L',
      +10495=>'L',
      +10496=>'ON',
      +10497=>'ON',
      +10498=>'ON',
      +10499=>'ON',
      +10500=>'ON',
      +10501=>'ON',
      +10502=>'ON',
      +10503=>'ON',
      +10504=>'ON',
      +10505=>'ON',
      +10506=>'ON',
      +10507=>'ON',
      +10508=>'ON',
      +10509=>'ON',
      +10510=>'ON',
      +10511=>'ON',
      +10512=>'ON',
      +10513=>'ON',
      +10514=>'ON',
      +10515=>'ON',
      +10516=>'ON',
      +10517=>'ON',
      +10518=>'ON',
      +10519=>'ON',
      +10520=>'ON',
      +10521=>'ON',
      +10522=>'ON',
      +10523=>'ON',
      +10524=>'ON',
      +10525=>'ON',
      +10526=>'ON',
      +10527=>'ON',
      +10528=>'ON',
      +10529=>'ON',
      +10530=>'ON',
      +10531=>'ON',
      +10532=>'ON',
      +10533=>'ON',
      +10534=>'ON',
      +10535=>'ON',
      +10536=>'ON',
      +10537=>'ON',
      +10538=>'ON',
      +10539=>'ON',
      +10540=>'ON',
      +10541=>'ON',
      +10542=>'ON',
      +10543=>'ON',
      +10544=>'ON',
      +10545=>'ON',
      +10546=>'ON',
      +10547=>'ON',
      +10548=>'ON',
      +10549=>'ON',
      +10550=>'ON',
      +10551=>'ON',
      +10552=>'ON',
      +10553=>'ON',
      +10554=>'ON',
      +10555=>'ON',
      +10556=>'ON',
      +10557=>'ON',
      +10558=>'ON',
      +10559=>'ON',
      +10560=>'ON',
      +10561=>'ON',
      +10562=>'ON',
      +10563=>'ON',
      +10564=>'ON',
      +10565=>'ON',
      +10566=>'ON',
      +10567=>'ON',
      +10568=>'ON',
      +10569=>'ON',
      +10570=>'ON',
      +10571=>'ON',
      +10572=>'ON',
      +10573=>'ON',
      +10574=>'ON',
      +10575=>'ON',
      +10576=>'ON',
      +10577=>'ON',
      +10578=>'ON',
      +10579=>'ON',
      +10580=>'ON',
      +10581=>'ON',
      +10582=>'ON',
      +10583=>'ON',
      +10584=>'ON',
      +10585=>'ON',
      +10586=>'ON',
      +10587=>'ON',
      +10588=>'ON',
      +10589=>'ON',
      +10590=>'ON',
      +10591=>'ON',
      +10592=>'ON',
      +10593=>'ON',
      +10594=>'ON',
      +10595=>'ON',
      +10596=>'ON',
      +10597=>'ON',
      +10598=>'ON',
      +10599=>'ON',
      +10600=>'ON',
      +10601=>'ON',
      +10602=>'ON',
      +10603=>'ON',
      +10604=>'ON',
      +10605=>'ON',
      +10606=>'ON',
      +10607=>'ON',
      +10608=>'ON',
      +10609=>'ON',
      +10610=>'ON',
      +10611=>'ON',
      +10612=>'ON',
      +10613=>'ON',
      +10614=>'ON',
      +10615=>'ON',
      +10616=>'ON',
      +10617=>'ON',
      +10618=>'ON',
      +10619=>'ON',
      +10620=>'ON',
      +10621=>'ON',
      +10622=>'ON',
      +10623=>'ON',
      +10624=>'ON',
      +10625=>'ON',
      +10626=>'ON',
      +10627=>'ON',
      +10628=>'ON',
      +10629=>'ON',
      +10630=>'ON',
      +10631=>'ON',
      +10632=>'ON',
      +10633=>'ON',
      +10634=>'ON',
      +10635=>'ON',
      +10636=>'ON',
      +10637=>'ON',
      +10638=>'ON',
      +10639=>'ON',
      +10640=>'ON',
      +10641=>'ON',
      +10642=>'ON',
      +10643=>'ON',
      +10644=>'ON',
      +10645=>'ON',
      +10646=>'ON',
      +10647=>'ON',
      +10648=>'ON',
      +10649=>'ON',
      +10650=>'ON',
      +10651=>'ON',
      +10652=>'ON',
      +10653=>'ON',
      +10654=>'ON',
      +10655=>'ON',
      +10656=>'ON',
      +10657=>'ON',
      +10658=>'ON',
      +10659=>'ON',
      +10660=>'ON',
      +10661=>'ON',
      +10662=>'ON',
      +10663=>'ON',
      +10664=>'ON',
      +10665=>'ON',
      +10666=>'ON',
      +10667=>'ON',
      +10668=>'ON',
      +10669=>'ON',
      +10670=>'ON',
      +10671=>'ON',
      +10672=>'ON',
      +10673=>'ON',
      +10674=>'ON',
      +10675=>'ON',
      +10676=>'ON',
      +10677=>'ON',
      +10678=>'ON',
      +10679=>'ON',
      +10680=>'ON',
      +10681=>'ON',
      +10682=>'ON',
      +10683=>'ON',
      +10684=>'ON',
      +10685=>'ON',
      +10686=>'ON',
      +10687=>'ON',
      +10688=>'ON',
      +10689=>'ON',
      +10690=>'ON',
      +10691=>'ON',
      +10692=>'ON',
      +10693=>'ON',
      +10694=>'ON',
      +10695=>'ON',
      +10696=>'ON',
      +10697=>'ON',
      +10698=>'ON',
      +10699=>'ON',
      +10700=>'ON',
      +10701=>'ON',
      +10702=>'ON',
      +10703=>'ON',
      +10704=>'ON',
      +10705=>'ON',
      +10706=>'ON',
      +10707=>'ON',
      +10708=>'ON',
      +10709=>'ON',
      +10710=>'ON',
      +10711=>'ON',
      +10712=>'ON',
      +10713=>'ON',
      +10714=>'ON',
      +10715=>'ON',
      +10716=>'ON',
      +10717=>'ON',
      +10718=>'ON',
      +10719=>'ON',
      +10720=>'ON',
      +10721=>'ON',
      +10722=>'ON',
      +10723=>'ON',
      +10724=>'ON',
      +10725=>'ON',
      +10726=>'ON',
      +10727=>'ON',
      +10728=>'ON',
      +10729=>'ON',
      +10730=>'ON',
      +10731=>'ON',
      +10732=>'ON',
      +10733=>'ON',
      +10734=>'ON',
      +10735=>'ON',
      +10736=>'ON',
      +10737=>'ON',
      +10738=>'ON',
      +10739=>'ON',
      +10740=>'ON',
      +10741=>'ON',
      +10742=>'ON',
      +10743=>'ON',
      +10744=>'ON',
      +10745=>'ON',
      +10746=>'ON',
      +10747=>'ON',
      +10748=>'ON',
      +10749=>'ON',
      +10750=>'ON',
      +10751=>'ON',
      +10752=>'ON',
      +10753=>'ON',
      +10754=>'ON',
      +10755=>'ON',
      +10756=>'ON',
      +10757=>'ON',
      +10758=>'ON',
      +10759=>'ON',
      +10760=>'ON',
      +10761=>'ON',
      +10762=>'ON',
      +10763=>'ON',
      +10764=>'ON',
      +10765=>'ON',
      +10766=>'ON',
      +10767=>'ON',
      +10768=>'ON',
      +10769=>'ON',
      +10770=>'ON',
      +10771=>'ON',
      +10772=>'ON',
      +10773=>'ON',
      +10774=>'ON',
      +10775=>'ON',
      +10776=>'ON',
      +10777=>'ON',
      +10778=>'ON',
      +10779=>'ON',
      +10780=>'ON',
      +10781=>'ON',
      +10782=>'ON',
      +10783=>'ON',
      +10784=>'ON',
      +10785=>'ON',
      +10786=>'ON',
      +10787=>'ON',
      +10788=>'ON',
      +10789=>'ON',
      +10790=>'ON',
      +10791=>'ON',
      +10792=>'ON',
      +10793=>'ON',
      +10794=>'ON',
      +10795=>'ON',
      +10796=>'ON',
      +10797=>'ON',
      +10798=>'ON',
      +10799=>'ON',
      +10800=>'ON',
      +10801=>'ON',
      +10802=>'ON',
      +10803=>'ON',
      +10804=>'ON',
      +10805=>'ON',
      +10806=>'ON',
      +10807=>'ON',
      +10808=>'ON',
      +10809=>'ON',
      +10810=>'ON',
      +10811=>'ON',
      +10812=>'ON',
      +10813=>'ON',
      +10814=>'ON',
      +10815=>'ON',
      +10816=>'ON',
      +10817=>'ON',
      +10818=>'ON',
      +10819=>'ON',
      +10820=>'ON',
      +10821=>'ON',
      +10822=>'ON',
      +10823=>'ON',
      +10824=>'ON',
      +10825=>'ON',
      +10826=>'ON',
      +10827=>'ON',
      +10828=>'ON',
      +10829=>'ON',
      +10830=>'ON',
      +10831=>'ON',
      +10832=>'ON',
      +10833=>'ON',
      +10834=>'ON',
      +10835=>'ON',
      +10836=>'ON',
      +10837=>'ON',
      +10838=>'ON',
      +10839=>'ON',
      +10840=>'ON',
      +10841=>'ON',
      +10842=>'ON',
      +10843=>'ON',
      +10844=>'ON',
      +10845=>'ON',
      +10846=>'ON',
      +10847=>'ON',
      +10848=>'ON',
      +10849=>'ON',
      +10850=>'ON',
      +10851=>'ON',
      +10852=>'ON',
      +10853=>'ON',
      +10854=>'ON',
      +10855=>'ON',
      +10856=>'ON',
      +10857=>'ON',
      +10858=>'ON',
      +10859=>'ON',
      +10860=>'ON',
      +10861=>'ON',
      +10862=>'ON',
      +10863=>'ON',
      +10864=>'ON',
      +10865=>'ON',
      +10866=>'ON',
      +10867=>'ON',
      +10868=>'ON',
      +10869=>'ON',
      +10870=>'ON',
      +10871=>'ON',
      +10872=>'ON',
      +10873=>'ON',
      +10874=>'ON',
      +10875=>'ON',
      +10876=>'ON',
      +10877=>'ON',
      +10878=>'ON',
      +10879=>'ON',
      +10880=>'ON',
      +10881=>'ON',
      +10882=>'ON',
      +10883=>'ON',
      +10884=>'ON',
      +10885=>'ON',
      +10886=>'ON',
      +10887=>'ON',
      +10888=>'ON',
      +10889=>'ON',
      +10890=>'ON',
      +10891=>'ON',
      +10892=>'ON',
      +10893=>'ON',
      +10894=>'ON',
      +10895=>'ON',
      +10896=>'ON',
      +10897=>'ON',
      +10898=>'ON',
      +10899=>'ON',
      +10900=>'ON',
      +10901=>'ON',
      +10902=>'ON',
      +10903=>'ON',
      +10904=>'ON',
      +10905=>'ON',
      +10906=>'ON',
      +10907=>'ON',
      +10908=>'ON',
      +10909=>'ON',
      +10910=>'ON',
      +10911=>'ON',
      +10912=>'ON',
      +10913=>'ON',
      +10914=>'ON',
      +10915=>'ON',
      +10916=>'ON',
      +10917=>'ON',
      +10918=>'ON',
      +10919=>'ON',
      +10920=>'ON',
      +10921=>'ON',
      +10922=>'ON',
      +10923=>'ON',
      +10924=>'ON',
      +10925=>'ON',
      +10926=>'ON',
      +10927=>'ON',
      +10928=>'ON',
      +10929=>'ON',
      +10930=>'ON',
      +10931=>'ON',
      +10932=>'ON',
      +10933=>'ON',
      +10934=>'ON',
      +10935=>'ON',
      +10936=>'ON',
      +10937=>'ON',
      +10938=>'ON',
      +10939=>'ON',
      +10940=>'ON',
      +10941=>'ON',
      +10942=>'ON',
      +10943=>'ON',
      +10944=>'ON',
      +10945=>'ON',
      +10946=>'ON',
      +10947=>'ON',
      +10948=>'ON',
      +10949=>'ON',
      +10950=>'ON',
      +10951=>'ON',
      +10952=>'ON',
      +10953=>'ON',
      +10954=>'ON',
      +10955=>'ON',
      +10956=>'ON',
      +10957=>'ON',
      +10958=>'ON',
      +10959=>'ON',
      +10960=>'ON',
      +10961=>'ON',
      +10962=>'ON',
      +10963=>'ON',
      +10964=>'ON',
      +10965=>'ON',
      +10966=>'ON',
      +10967=>'ON',
      +10968=>'ON',
      +10969=>'ON',
      +10970=>'ON',
      +10971=>'ON',
      +10972=>'ON',
      +10973=>'ON',
      +10974=>'ON',
      +10975=>'ON',
      +10976=>'ON',
      +10977=>'ON',
      +10978=>'ON',
      +10979=>'ON',
      +10980=>'ON',
      +10981=>'ON',
      +10982=>'ON',
      +10983=>'ON',
      +10984=>'ON',
      +10985=>'ON',
      +10986=>'ON',
      +10987=>'ON',
      +10988=>'ON',
      +10989=>'ON',
      +10990=>'ON',
      +10991=>'ON',
      +10992=>'ON',
      +10993=>'ON',
      +10994=>'ON',
      +10995=>'ON',
      +10996=>'ON',
      +10997=>'ON',
      +10998=>'ON',
      +10999=>'ON',
      +11000=>'ON',
      +11001=>'ON',
      +11002=>'ON',
      +11003=>'ON',
      +11004=>'ON',
      +11005=>'ON',
      +11006=>'ON',
      +11007=>'ON',
      +11008=>'ON',
      +11009=>'ON',
      +11010=>'ON',
      +11011=>'ON',
      +11012=>'ON',
      +11013=>'ON',
      +11014=>'ON',
      +11015=>'ON',
      +11016=>'ON',
      +11017=>'ON',
      +11018=>'ON',
      +11019=>'ON',
      +11020=>'ON',
      +11021=>'ON',
      +11022=>'ON',
      +11023=>'ON',
      +11024=>'ON',
      +11025=>'ON',
      +11026=>'ON',
      +11027=>'ON',
      +11028=>'ON',
      +11029=>'ON',
      +11030=>'ON',
      +11031=>'ON',
      +11032=>'ON',
      +11033=>'ON',
      +11034=>'ON',
      +11040=>'ON',
      +11041=>'ON',
      +11042=>'ON',
      +11043=>'ON',
      +11264=>'L',
      +11265=>'L',
      +11266=>'L',
      +11267=>'L',
      +11268=>'L',
      +11269=>'L',
      +11270=>'L',
      +11271=>'L',
      +11272=>'L',
      +11273=>'L',
      +11274=>'L',
      +11275=>'L',
      +11276=>'L',
      +11277=>'L',
      +11278=>'L',
      +11279=>'L',
      +11280=>'L',
      +11281=>'L',
      +11282=>'L',
      +11283=>'L',
      +11284=>'L',
      +11285=>'L',
      +11286=>'L',
      +11287=>'L',
      +11288=>'L',
      +11289=>'L',
      +11290=>'L',
      +11291=>'L',
      +11292=>'L',
      +11293=>'L',
      +11294=>'L',
      +11295=>'L',
      +11296=>'L',
      +11297=>'L',
      +11298=>'L',
      +11299=>'L',
      +11300=>'L',
      +11301=>'L',
      +11302=>'L',
      +11303=>'L',
      +11304=>'L',
      +11305=>'L',
      +11306=>'L',
      +11307=>'L',
      +11308=>'L',
      +11309=>'L',
      +11310=>'L',
      +11312=>'L',
      +11313=>'L',
      +11314=>'L',
      +11315=>'L',
      +11316=>'L',
      +11317=>'L',
      +11318=>'L',
      +11319=>'L',
      +11320=>'L',
      +11321=>'L',
      +11322=>'L',
      +11323=>'L',
      +11324=>'L',
      +11325=>'L',
      +11326=>'L',
      +11327=>'L',
      +11328=>'L',
      +11329=>'L',
      +11330=>'L',
      +11331=>'L',
      +11332=>'L',
      +11333=>'L',
      +11334=>'L',
      +11335=>'L',
      +11336=>'L',
      +11337=>'L',
      +11338=>'L',
      +11339=>'L',
      +11340=>'L',
      +11341=>'L',
      +11342=>'L',
      +11343=>'L',
      +11344=>'L',
      +11345=>'L',
      +11346=>'L',
      +11347=>'L',
      +11348=>'L',
      +11349=>'L',
      +11350=>'L',
      +11351=>'L',
      +11352=>'L',
      +11353=>'L',
      +11354=>'L',
      +11355=>'L',
      +11356=>'L',
      +11357=>'L',
      +11358=>'L',
      +11360=>'L',
      +11361=>'L',
      +11362=>'L',
      +11363=>'L',
      +11364=>'L',
      +11365=>'L',
      +11366=>'L',
      +11367=>'L',
      +11368=>'L',
      +11369=>'L',
      +11370=>'L',
      +11371=>'L',
      +11372=>'L',
      +11380=>'L',
      +11381=>'L',
      +11382=>'L',
      +11383=>'L',
      +11392=>'L',
      +11393=>'L',
      +11394=>'L',
      +11395=>'L',
      +11396=>'L',
      +11397=>'L',
      +11398=>'L',
      +11399=>'L',
      +11400=>'L',
      +11401=>'L',
      +11402=>'L',
      +11403=>'L',
      +11404=>'L',
      +11405=>'L',
      +11406=>'L',
      +11407=>'L',
      +11408=>'L',
      +11409=>'L',
      +11410=>'L',
      +11411=>'L',
      +11412=>'L',
      +11413=>'L',
      +11414=>'L',
      +11415=>'L',
      +11416=>'L',
      +11417=>'L',
      +11418=>'L',
      +11419=>'L',
      +11420=>'L',
      +11421=>'L',
      +11422=>'L',
      +11423=>'L',
      +11424=>'L',
      +11425=>'L',
      +11426=>'L',
      +11427=>'L',
      +11428=>'L',
      +11429=>'L',
      +11430=>'L',
      +11431=>'L',
      +11432=>'L',
      +11433=>'L',
      +11434=>'L',
      +11435=>'L',
      +11436=>'L',
      +11437=>'L',
      +11438=>'L',
      +11439=>'L',
      +11440=>'L',
      +11441=>'L',
      +11442=>'L',
      +11443=>'L',
      +11444=>'L',
      +11445=>'L',
      +11446=>'L',
      +11447=>'L',
      +11448=>'L',
      +11449=>'L',
      +11450=>'L',
      +11451=>'L',
      +11452=>'L',
      +11453=>'L',
      +11454=>'L',
      +11455=>'L',
      +11456=>'L',
      +11457=>'L',
      +11458=>'L',
      +11459=>'L',
      +11460=>'L',
      +11461=>'L',
      +11462=>'L',
      +11463=>'L',
      +11464=>'L',
      +11465=>'L',
      +11466=>'L',
      +11467=>'L',
      +11468=>'L',
      +11469=>'L',
      +11470=>'L',
      +11471=>'L',
      +11472=>'L',
      +11473=>'L',
      +11474=>'L',
      +11475=>'L',
      +11476=>'L',
      +11477=>'L',
      +11478=>'L',
      +11479=>'L',
      +11480=>'L',
      +11481=>'L',
      +11482=>'L',
      +11483=>'L',
      +11484=>'L',
      +11485=>'L',
      +11486=>'L',
      +11487=>'L',
      +11488=>'L',
      +11489=>'L',
      +11490=>'L',
      +11491=>'L',
      +11492=>'L',
      +11493=>'ON',
      +11494=>'ON',
      +11495=>'ON',
      +11496=>'ON',
      +11497=>'ON',
      +11498=>'ON',
      +11513=>'ON',
      +11514=>'ON',
      +11515=>'ON',
      +11516=>'ON',
      +11517=>'ON',
      +11518=>'ON',
      +11519=>'ON',
      +11520=>'L',
      +11521=>'L',
      +11522=>'L',
      +11523=>'L',
      +11524=>'L',
      +11525=>'L',
      +11526=>'L',
      +11527=>'L',
      +11528=>'L',
      +11529=>'L',
      +11530=>'L',
      +11531=>'L',
      +11532=>'L',
      +11533=>'L',
      +11534=>'L',
      +11535=>'L',
      +11536=>'L',
      +11537=>'L',
      +11538=>'L',
      +11539=>'L',
      +11540=>'L',
      +11541=>'L',
      +11542=>'L',
      +11543=>'L',
      +11544=>'L',
      +11545=>'L',
      +11546=>'L',
      +11547=>'L',
      +11548=>'L',
      +11549=>'L',
      +11550=>'L',
      +11551=>'L',
      +11552=>'L',
      +11553=>'L',
      +11554=>'L',
      +11555=>'L',
      +11556=>'L',
      +11557=>'L',
      +11568=>'L',
      +11569=>'L',
      +11570=>'L',
      +11571=>'L',
      +11572=>'L',
      +11573=>'L',
      +11574=>'L',
      +11575=>'L',
      +11576=>'L',
      +11577=>'L',
      +11578=>'L',
      +11579=>'L',
      +11580=>'L',
      +11581=>'L',
      +11582=>'L',
      +11583=>'L',
      +11584=>'L',
      +11585=>'L',
      +11586=>'L',
      +11587=>'L',
      +11588=>'L',
      +11589=>'L',
      +11590=>'L',
      +11591=>'L',
      +11592=>'L',
      +11593=>'L',
      +11594=>'L',
      +11595=>'L',
      +11596=>'L',
      +11597=>'L',
      +11598=>'L',
      +11599=>'L',
      +11600=>'L',
      +11601=>'L',
      +11602=>'L',
      +11603=>'L',
      +11604=>'L',
      +11605=>'L',
      +11606=>'L',
      +11607=>'L',
      +11608=>'L',
      +11609=>'L',
      +11610=>'L',
      +11611=>'L',
      +11612=>'L',
      +11613=>'L',
      +11614=>'L',
      +11615=>'L',
      +11616=>'L',
      +11617=>'L',
      +11618=>'L',
      +11619=>'L',
      +11620=>'L',
      +11621=>'L',
      +11631=>'L',
      +11648=>'L',
      +11649=>'L',
      +11650=>'L',
      +11651=>'L',
      +11652=>'L',
      +11653=>'L',
      +11654=>'L',
      +11655=>'L',
      +11656=>'L',
      +11657=>'L',
      +11658=>'L',
      +11659=>'L',
      +11660=>'L',
      +11661=>'L',
      +11662=>'L',
      +11663=>'L',
      +11664=>'L',
      +11665=>'L',
      +11666=>'L',
      +11667=>'L',
      +11668=>'L',
      +11669=>'L',
      +11670=>'L',
      +11680=>'L',
      +11681=>'L',
      +11682=>'L',
      +11683=>'L',
      +11684=>'L',
      +11685=>'L',
      +11686=>'L',
      +11688=>'L',
      +11689=>'L',
      +11690=>'L',
      +11691=>'L',
      +11692=>'L',
      +11693=>'L',
      +11694=>'L',
      +11696=>'L',
      +11697=>'L',
      +11698=>'L',
      +11699=>'L',
      +11700=>'L',
      +11701=>'L',
      +11702=>'L',
      +11704=>'L',
      +11705=>'L',
      +11706=>'L',
      +11707=>'L',
      +11708=>'L',
      +11709=>'L',
      +11710=>'L',
      +11712=>'L',
      +11713=>'L',
      +11714=>'L',
      +11715=>'L',
      +11716=>'L',
      +11717=>'L',
      +11718=>'L',
      +11720=>'L',
      +11721=>'L',
      +11722=>'L',
      +11723=>'L',
      +11724=>'L',
      +11725=>'L',
      +11726=>'L',
      +11728=>'L',
      +11729=>'L',
      +11730=>'L',
      +11731=>'L',
      +11732=>'L',
      +11733=>'L',
      +11734=>'L',
      +11736=>'L',
      +11737=>'L',
      +11738=>'L',
      +11739=>'L',
      +11740=>'L',
      +11741=>'L',
      +11742=>'L',
      +11776=>'ON',
      +11777=>'ON',
      +11778=>'ON',
      +11779=>'ON',
      +11780=>'ON',
      +11781=>'ON',
      +11782=>'ON',
      +11783=>'ON',
      +11784=>'ON',
      +11785=>'ON',
      +11786=>'ON',
      +11787=>'ON',
      +11788=>'ON',
      +11789=>'ON',
      +11790=>'ON',
      +11791=>'ON',
      +11792=>'ON',
      +11793=>'ON',
      +11794=>'ON',
      +11795=>'ON',
      +11796=>'ON',
      +11797=>'ON',
      +11798=>'ON',
      +11799=>'ON',
      +11804=>'ON',
      +11805=>'ON',
      +11904=>'ON',
      +11905=>'ON',
      +11906=>'ON',
      +11907=>'ON',
      +11908=>'ON',
      +11909=>'ON',
      +11910=>'ON',
      +11911=>'ON',
      +11912=>'ON',
      +11913=>'ON',
      +11914=>'ON',
      +11915=>'ON',
      +11916=>'ON',
      +11917=>'ON',
      +11918=>'ON',
      +11919=>'ON',
      +11920=>'ON',
      +11921=>'ON',
      +11922=>'ON',
      +11923=>'ON',
      +11924=>'ON',
      +11925=>'ON',
      +11926=>'ON',
      +11927=>'ON',
      +11928=>'ON',
      +11929=>'ON',
      +11931=>'ON',
      +11932=>'ON',
      +11933=>'ON',
      +11934=>'ON',
      +11935=>'ON',
      +11936=>'ON',
      +11937=>'ON',
      +11938=>'ON',
      +11939=>'ON',
      +11940=>'ON',
      +11941=>'ON',
      +11942=>'ON',
      +11943=>'ON',
      +11944=>'ON',
      +11945=>'ON',
      +11946=>'ON',
      +11947=>'ON',
      +11948=>'ON',
      +11949=>'ON',
      +11950=>'ON',
      +11951=>'ON',
      +11952=>'ON',
      +11953=>'ON',
      +11954=>'ON',
      +11955=>'ON',
      +11956=>'ON',
      +11957=>'ON',
      +11958=>'ON',
      +11959=>'ON',
      +11960=>'ON',
      +11961=>'ON',
      +11962=>'ON',
      +11963=>'ON',
      +11964=>'ON',
      +11965=>'ON',
      +11966=>'ON',
      +11967=>'ON',
      +11968=>'ON',
      +11969=>'ON',
      +11970=>'ON',
      +11971=>'ON',
      +11972=>'ON',
      +11973=>'ON',
      +11974=>'ON',
      +11975=>'ON',
      +11976=>'ON',
      +11977=>'ON',
      +11978=>'ON',
      +11979=>'ON',
      +11980=>'ON',
      +11981=>'ON',
      +11982=>'ON',
      +11983=>'ON',
      +11984=>'ON',
      +11985=>'ON',
      +11986=>'ON',
      +11987=>'ON',
      +11988=>'ON',
      +11989=>'ON',
      +11990=>'ON',
      +11991=>'ON',
      +11992=>'ON',
      +11993=>'ON',
      +11994=>'ON',
      +11995=>'ON',
      +11996=>'ON',
      +11997=>'ON',
      +11998=>'ON',
      +11999=>'ON',
      +12000=>'ON',
      +12001=>'ON',
      +12002=>'ON',
      +12003=>'ON',
      +12004=>'ON',
      +12005=>'ON',
      +12006=>'ON',
      +12007=>'ON',
      +12008=>'ON',
      +12009=>'ON',
      +12010=>'ON',
      +12011=>'ON',
      +12012=>'ON',
      +12013=>'ON',
      +12014=>'ON',
      +12015=>'ON',
      +12016=>'ON',
      +12017=>'ON',
      +12018=>'ON',
      +12019=>'ON',
      +12032=>'ON',
      +12033=>'ON',
      +12034=>'ON',
      +12035=>'ON',
      +12036=>'ON',
      +12037=>'ON',
      +12038=>'ON',
      +12039=>'ON',
      +12040=>'ON',
      +12041=>'ON',
      +12042=>'ON',
      +12043=>'ON',
      +12044=>'ON',
      +12045=>'ON',
      +12046=>'ON',
      +12047=>'ON',
      +12048=>'ON',
      +12049=>'ON',
      +12050=>'ON',
      +12051=>'ON',
      +12052=>'ON',
      +12053=>'ON',
      +12054=>'ON',
      +12055=>'ON',
      +12056=>'ON',
      +12057=>'ON',
      +12058=>'ON',
      +12059=>'ON',
      +12060=>'ON',
      +12061=>'ON',
      +12062=>'ON',
      +12063=>'ON',
      +12064=>'ON',
      +12065=>'ON',
      +12066=>'ON',
      +12067=>'ON',
      +12068=>'ON',
      +12069=>'ON',
      +12070=>'ON',
      +12071=>'ON',
      +12072=>'ON',
      +12073=>'ON',
      +12074=>'ON',
      +12075=>'ON',
      +12076=>'ON',
      +12077=>'ON',
      +12078=>'ON',
      +12079=>'ON',
      +12080=>'ON',
      +12081=>'ON',
      +12082=>'ON',
      +12083=>'ON',
      +12084=>'ON',
      +12085=>'ON',
      +12086=>'ON',
      +12087=>'ON',
      +12088=>'ON',
      +12089=>'ON',
      +12090=>'ON',
      +12091=>'ON',
      +12092=>'ON',
      +12093=>'ON',
      +12094=>'ON',
      +12095=>'ON',
      +12096=>'ON',
      +12097=>'ON',
      +12098=>'ON',
      +12099=>'ON',
      +12100=>'ON',
      +12101=>'ON',
      +12102=>'ON',
      +12103=>'ON',
      +12104=>'ON',
      +12105=>'ON',
      +12106=>'ON',
      +12107=>'ON',
      +12108=>'ON',
      +12109=>'ON',
      +12110=>'ON',
      +12111=>'ON',
      +12112=>'ON',
      +12113=>'ON',
      +12114=>'ON',
      +12115=>'ON',
      +12116=>'ON',
      +12117=>'ON',
      +12118=>'ON',
      +12119=>'ON',
      +12120=>'ON',
      +12121=>'ON',
      +12122=>'ON',
      +12123=>'ON',
      +12124=>'ON',
      +12125=>'ON',
      +12126=>'ON',
      +12127=>'ON',
      +12128=>'ON',
      +12129=>'ON',
      +12130=>'ON',
      +12131=>'ON',
      +12132=>'ON',
      +12133=>'ON',
      +12134=>'ON',
      +12135=>'ON',
      +12136=>'ON',
      +12137=>'ON',
      +12138=>'ON',
      +12139=>'ON',
      +12140=>'ON',
      +12141=>'ON',
      +12142=>'ON',
      +12143=>'ON',
      +12144=>'ON',
      +12145=>'ON',
      +12146=>'ON',
      +12147=>'ON',
      +12148=>'ON',
      +12149=>'ON',
      +12150=>'ON',
      +12151=>'ON',
      +12152=>'ON',
      +12153=>'ON',
      +12154=>'ON',
      +12155=>'ON',
      +12156=>'ON',
      +12157=>'ON',
      +12158=>'ON',
      +12159=>'ON',
      +12160=>'ON',
      +12161=>'ON',
      +12162=>'ON',
      +12163=>'ON',
      +12164=>'ON',
      +12165=>'ON',
      +12166=>'ON',
      +12167=>'ON',
      +12168=>'ON',
      +12169=>'ON',
      +12170=>'ON',
      +12171=>'ON',
      +12172=>'ON',
      +12173=>'ON',
      +12174=>'ON',
      +12175=>'ON',
      +12176=>'ON',
      +12177=>'ON',
      +12178=>'ON',
      +12179=>'ON',
      +12180=>'ON',
      +12181=>'ON',
      +12182=>'ON',
      +12183=>'ON',
      +12184=>'ON',
      +12185=>'ON',
      +12186=>'ON',
      +12187=>'ON',
      +12188=>'ON',
      +12189=>'ON',
      +12190=>'ON',
      +12191=>'ON',
      +12192=>'ON',
      +12193=>'ON',
      +12194=>'ON',
      +12195=>'ON',
      +12196=>'ON',
      +12197=>'ON',
      +12198=>'ON',
      +12199=>'ON',
      +12200=>'ON',
      +12201=>'ON',
      +12202=>'ON',
      +12203=>'ON',
      +12204=>'ON',
      +12205=>'ON',
      +12206=>'ON',
      +12207=>'ON',
      +12208=>'ON',
      +12209=>'ON',
      +12210=>'ON',
      +12211=>'ON',
      +12212=>'ON',
      +12213=>'ON',
      +12214=>'ON',
      +12215=>'ON',
      +12216=>'ON',
      +12217=>'ON',
      +12218=>'ON',
      +12219=>'ON',
      +12220=>'ON',
      +12221=>'ON',
      +12222=>'ON',
      +12223=>'ON',
      +12224=>'ON',
      +12225=>'ON',
      +12226=>'ON',
      +12227=>'ON',
      +12228=>'ON',
      +12229=>'ON',
      +12230=>'ON',
      +12231=>'ON',
      +12232=>'ON',
      +12233=>'ON',
      +12234=>'ON',
      +12235=>'ON',
      +12236=>'ON',
      +12237=>'ON',
      +12238=>'ON',
      +12239=>'ON',
      +12240=>'ON',
      +12241=>'ON',
      +12242=>'ON',
      +12243=>'ON',
      +12244=>'ON',
      +12245=>'ON',
      +12272=>'ON',
      +12273=>'ON',
      +12274=>'ON',
      +12275=>'ON',
      +12276=>'ON',
      +12277=>'ON',
      +12278=>'ON',
      +12279=>'ON',
      +12280=>'ON',
      +12281=>'ON',
      +12282=>'ON',
      +12283=>'ON',
      +12288=>'WS',
      +12289=>'ON',
      +12290=>'ON',
      +12291=>'ON',
      +12292=>'ON',
      +12293=>'L',
      +12294=>'L',
      +12295=>'L',
      +12296=>'ON',
      +12297=>'ON',
      +12298=>'ON',
      +12299=>'ON',
      +12300=>'ON',
      +12301=>'ON',
      +12302=>'ON',
      +12303=>'ON',
      +12304=>'ON',
      +12305=>'ON',
      +12306=>'ON',
      +12307=>'ON',
      +12308=>'ON',
      +12309=>'ON',
      +12310=>'ON',
      +12311=>'ON',
      +12312=>'ON',
      +12313=>'ON',
      +12314=>'ON',
      +12315=>'ON',
      +12316=>'ON',
      +12317=>'ON',
      +12318=>'ON',
      +12319=>'ON',
      +12320=>'ON',
      +12321=>'L',
      +12322=>'L',
      +12323=>'L',
      +12324=>'L',
      +12325=>'L',
      +12326=>'L',
      +12327=>'L',
      +12328=>'L',
      +12329=>'L',
      +12330=>'NSM',
      +12331=>'NSM',
      +12332=>'NSM',
      +12333=>'NSM',
      +12334=>'NSM',
      +12335=>'NSM',
      +12336=>'ON',
      +12337=>'L',
      +12338=>'L',
      +12339=>'L',
      +12340=>'L',
      +12341=>'L',
      +12342=>'ON',
      +12343=>'ON',
      +12344=>'L',
      +12345=>'L',
      +12346=>'L',
      +12347=>'L',
      +12348=>'L',
      +12349=>'ON',
      +12350=>'ON',
      +12351=>'ON',
      +12353=>'L',
      +12354=>'L',
      +12355=>'L',
      +12356=>'L',
      +12357=>'L',
      +12358=>'L',
      +12359=>'L',
      +12360=>'L',
      +12361=>'L',
      +12362=>'L',
      +12363=>'L',
      +12364=>'L',
      +12365=>'L',
      +12366=>'L',
      +12367=>'L',
      +12368=>'L',
      +12369=>'L',
      +12370=>'L',
      +12371=>'L',
      +12372=>'L',
      +12373=>'L',
      +12374=>'L',
      +12375=>'L',
      +12376=>'L',
      +12377=>'L',
      +12378=>'L',
      +12379=>'L',
      +12380=>'L',
      +12381=>'L',
      +12382=>'L',
      +12383=>'L',
      +12384=>'L',
      +12385=>'L',
      +12386=>'L',
      +12387=>'L',
      +12388=>'L',
      +12389=>'L',
      +12390=>'L',
      +12391=>'L',
      +12392=>'L',
      +12393=>'L',
      +12394=>'L',
      +12395=>'L',
      +12396=>'L',
      +12397=>'L',
      +12398=>'L',
      +12399=>'L',
      +12400=>'L',
      +12401=>'L',
      +12402=>'L',
      +12403=>'L',
      +12404=>'L',
      +12405=>'L',
      +12406=>'L',
      +12407=>'L',
      +12408=>'L',
      +12409=>'L',
      +12410=>'L',
      +12411=>'L',
      +12412=>'L',
      +12413=>'L',
      +12414=>'L',
      +12415=>'L',
      +12416=>'L',
      +12417=>'L',
      +12418=>'L',
      +12419=>'L',
      +12420=>'L',
      +12421=>'L',
      +12422=>'L',
      +12423=>'L',
      +12424=>'L',
      +12425=>'L',
      +12426=>'L',
      +12427=>'L',
      +12428=>'L',
      +12429=>'L',
      +12430=>'L',
      +12431=>'L',
      +12432=>'L',
      +12433=>'L',
      +12434=>'L',
      +12435=>'L',
      +12436=>'L',
      +12437=>'L',
      +12438=>'L',
      +12441=>'NSM',
      +12442=>'NSM',
      +12443=>'ON',
      +12444=>'ON',
      +12445=>'L',
      +12446=>'L',
      +12447=>'L',
      +12448=>'ON',
      +12449=>'L',
      +12450=>'L',
      +12451=>'L',
      +12452=>'L',
      +12453=>'L',
      +12454=>'L',
      +12455=>'L',
      +12456=>'L',
      +12457=>'L',
      +12458=>'L',
      +12459=>'L',
      +12460=>'L',
      +12461=>'L',
      +12462=>'L',
      +12463=>'L',
      +12464=>'L',
      +12465=>'L',
      +12466=>'L',
      +12467=>'L',
      +12468=>'L',
      +12469=>'L',
      +12470=>'L',
      +12471=>'L',
      +12472=>'L',
      +12473=>'L',
      +12474=>'L',
      +12475=>'L',
      +12476=>'L',
      +12477=>'L',
      +12478=>'L',
      +12479=>'L',
      +12480=>'L',
      +12481=>'L',
      +12482=>'L',
      +12483=>'L',
      +12484=>'L',
      +12485=>'L',
      +12486=>'L',
      +12487=>'L',
      +12488=>'L',
      +12489=>'L',
      +12490=>'L',
      +12491=>'L',
      +12492=>'L',
      +12493=>'L',
      +12494=>'L',
      +12495=>'L',
      +12496=>'L',
      +12497=>'L',
      +12498=>'L',
      +12499=>'L',
      +12500=>'L',
      +12501=>'L',
      +12502=>'L',
      +12503=>'L',
      +12504=>'L',
      +12505=>'L',
      +12506=>'L',
      +12507=>'L',
      +12508=>'L',
      +12509=>'L',
      +12510=>'L',
      +12511=>'L',
      +12512=>'L',
      +12513=>'L',
      +12514=>'L',
      +12515=>'L',
      +12516=>'L',
      +12517=>'L',
      +12518=>'L',
      +12519=>'L',
      +12520=>'L',
      +12521=>'L',
      +12522=>'L',
      +12523=>'L',
      +12524=>'L',
      +12525=>'L',
      +12526=>'L',
      +12527=>'L',
      +12528=>'L',
      +12529=>'L',
      +12530=>'L',
      +12531=>'L',
      +12532=>'L',
      +12533=>'L',
      +12534=>'L',
      +12535=>'L',
      +12536=>'L',
      +12537=>'L',
      +12538=>'L',
      +12539=>'ON',
      +12540=>'L',
      +12541=>'L',
      +12542=>'L',
      +12543=>'L',
      +12549=>'L',
      +12550=>'L',
      +12551=>'L',
      +12552=>'L',
      +12553=>'L',
      +12554=>'L',
      +12555=>'L',
      +12556=>'L',
      +12557=>'L',
      +12558=>'L',
      +12559=>'L',
      +12560=>'L',
      +12561=>'L',
      +12562=>'L',
      +12563=>'L',
      +12564=>'L',
      +12565=>'L',
      +12566=>'L',
      +12567=>'L',
      +12568=>'L',
      +12569=>'L',
      +12570=>'L',
      +12571=>'L',
      +12572=>'L',
      +12573=>'L',
      +12574=>'L',
      +12575=>'L',
      +12576=>'L',
      +12577=>'L',
      +12578=>'L',
      +12579=>'L',
      +12580=>'L',
      +12581=>'L',
      +12582=>'L',
      +12583=>'L',
      +12584=>'L',
      +12585=>'L',
      +12586=>'L',
      +12587=>'L',
      +12588=>'L',
      +12593=>'L',
      +12594=>'L',
      +12595=>'L',
      +12596=>'L',
      +12597=>'L',
      +12598=>'L',
      +12599=>'L',
      +12600=>'L',
      +12601=>'L',
      +12602=>'L',
      +12603=>'L',
      +12604=>'L',
      +12605=>'L',
      +12606=>'L',
      +12607=>'L',
      +12608=>'L',
      +12609=>'L',
      +12610=>'L',
      +12611=>'L',
      +12612=>'L',
      +12613=>'L',
      +12614=>'L',
      +12615=>'L',
      +12616=>'L',
      +12617=>'L',
      +12618=>'L',
      +12619=>'L',
      +12620=>'L',
      +12621=>'L',
      +12622=>'L',
      +12623=>'L',
      +12624=>'L',
      +12625=>'L',
      +12626=>'L',
      +12627=>'L',
      +12628=>'L',
      +12629=>'L',
      +12630=>'L',
      +12631=>'L',
      +12632=>'L',
      +12633=>'L',
      +12634=>'L',
      +12635=>'L',
      +12636=>'L',
      +12637=>'L',
      +12638=>'L',
      +12639=>'L',
      +12640=>'L',
      +12641=>'L',
      +12642=>'L',
      +12643=>'L',
      +12644=>'L',
      +12645=>'L',
      +12646=>'L',
      +12647=>'L',
      +12648=>'L',
      +12649=>'L',
      +12650=>'L',
      +12651=>'L',
      +12652=>'L',
      +12653=>'L',
      +12654=>'L',
      +12655=>'L',
      +12656=>'L',
      +12657=>'L',
      +12658=>'L',
      +12659=>'L',
      +12660=>'L',
      +12661=>'L',
      +12662=>'L',
      +12663=>'L',
      +12664=>'L',
      +12665=>'L',
      +12666=>'L',
      +12667=>'L',
      +12668=>'L',
      +12669=>'L',
      +12670=>'L',
      +12671=>'L',
      +12672=>'L',
      +12673=>'L',
      +12674=>'L',
      +12675=>'L',
      +12676=>'L',
      +12677=>'L',
      +12678=>'L',
      +12679=>'L',
      +12680=>'L',
      +12681=>'L',
      +12682=>'L',
      +12683=>'L',
      +12684=>'L',
      +12685=>'L',
      +12686=>'L',
      +12688=>'L',
      +12689=>'L',
      +12690=>'L',
      +12691=>'L',
      +12692=>'L',
      +12693=>'L',
      +12694=>'L',
      +12695=>'L',
      +12696=>'L',
      +12697=>'L',
      +12698=>'L',
      +12699=>'L',
      +12700=>'L',
      +12701=>'L',
      +12702=>'L',
      +12703=>'L',
      +12704=>'L',
      +12705=>'L',
      +12706=>'L',
      +12707=>'L',
      +12708=>'L',
      +12709=>'L',
      +12710=>'L',
      +12711=>'L',
      +12712=>'L',
      +12713=>'L',
      +12714=>'L',
      +12715=>'L',
      +12716=>'L',
      +12717=>'L',
      +12718=>'L',
      +12719=>'L',
      +12720=>'L',
      +12721=>'L',
      +12722=>'L',
      +12723=>'L',
      +12724=>'L',
      +12725=>'L',
      +12726=>'L',
      +12727=>'L',
      +12736=>'ON',
      +12737=>'ON',
      +12738=>'ON',
      +12739=>'ON',
      +12740=>'ON',
      +12741=>'ON',
      +12742=>'ON',
      +12743=>'ON',
      +12744=>'ON',
      +12745=>'ON',
      +12746=>'ON',
      +12747=>'ON',
      +12748=>'ON',
      +12749=>'ON',
      +12750=>'ON',
      +12751=>'ON',
      +12784=>'L',
      +12785=>'L',
      +12786=>'L',
      +12787=>'L',
      +12788=>'L',
      +12789=>'L',
      +12790=>'L',
      +12791=>'L',
      +12792=>'L',
      +12793=>'L',
      +12794=>'L',
      +12795=>'L',
      +12796=>'L',
      +12797=>'L',
      +12798=>'L',
      +12799=>'L',
      +12800=>'L',
      +12801=>'L',
      +12802=>'L',
      +12803=>'L',
      +12804=>'L',
      +12805=>'L',
      +12806=>'L',
      +12807=>'L',
      +12808=>'L',
      +12809=>'L',
      +12810=>'L',
      +12811=>'L',
      +12812=>'L',
      +12813=>'L',
      +12814=>'L',
      +12815=>'L',
      +12816=>'L',
      +12817=>'L',
      +12818=>'L',
      +12819=>'L',
      +12820=>'L',
      +12821=>'L',
      +12822=>'L',
      +12823=>'L',
      +12824=>'L',
      +12825=>'L',
      +12826=>'L',
      +12827=>'L',
      +12828=>'L',
      +12829=>'ON',
      +12830=>'ON',
      +12832=>'L',
      +12833=>'L',
      +12834=>'L',
      +12835=>'L',
      +12836=>'L',
      +12837=>'L',
      +12838=>'L',
      +12839=>'L',
      +12840=>'L',
      +12841=>'L',
      +12842=>'L',
      +12843=>'L',
      +12844=>'L',
      +12845=>'L',
      +12846=>'L',
      +12847=>'L',
      +12848=>'L',
      +12849=>'L',
      +12850=>'L',
      +12851=>'L',
      +12852=>'L',
      +12853=>'L',
      +12854=>'L',
      +12855=>'L',
      +12856=>'L',
      +12857=>'L',
      +12858=>'L',
      +12859=>'L',
      +12860=>'L',
      +12861=>'L',
      +12862=>'L',
      +12863=>'L',
      +12864=>'L',
      +12865=>'L',
      +12866=>'L',
      +12867=>'L',
      +12880=>'ON',
      +12881=>'ON',
      +12882=>'ON',
      +12883=>'ON',
      +12884=>'ON',
      +12885=>'ON',
      +12886=>'ON',
      +12887=>'ON',
      +12888=>'ON',
      +12889=>'ON',
      +12890=>'ON',
      +12891=>'ON',
      +12892=>'ON',
      +12893=>'ON',
      +12894=>'ON',
      +12895=>'ON',
      +12896=>'L',
      +12897=>'L',
      +12898=>'L',
      +12899=>'L',
      +12900=>'L',
      +12901=>'L',
      +12902=>'L',
      +12903=>'L',
      +12904=>'L',
      +12905=>'L',
      +12906=>'L',
      +12907=>'L',
      +12908=>'L',
      +12909=>'L',
      +12910=>'L',
      +12911=>'L',
      +12912=>'L',
      +12913=>'L',
      +12914=>'L',
      +12915=>'L',
      +12916=>'L',
      +12917=>'L',
      +12918=>'L',
      +12919=>'L',
      +12920=>'L',
      +12921=>'L',
      +12922=>'L',
      +12923=>'L',
      +12924=>'ON',
      +12925=>'ON',
      +12926=>'ON',
      +12927=>'L',
      +12928=>'L',
      +12929=>'L',
      +12930=>'L',
      +12931=>'L',
      +12932=>'L',
      +12933=>'L',
      +12934=>'L',
      +12935=>'L',
      +12936=>'L',
      +12937=>'L',
      +12938=>'L',
      +12939=>'L',
      +12940=>'L',
      +12941=>'L',
      +12942=>'L',
      +12943=>'L',
      +12944=>'L',
      +12945=>'L',
      +12946=>'L',
      +12947=>'L',
      +12948=>'L',
      +12949=>'L',
      +12950=>'L',
      +12951=>'L',
      +12952=>'L',
      +12953=>'L',
      +12954=>'L',
      +12955=>'L',
      +12956=>'L',
      +12957=>'L',
      +12958=>'L',
      +12959=>'L',
      +12960=>'L',
      +12961=>'L',
      +12962=>'L',
      +12963=>'L',
      +12964=>'L',
      +12965=>'L',
      +12966=>'L',
      +12967=>'L',
      +12968=>'L',
      +12969=>'L',
      +12970=>'L',
      +12971=>'L',
      +12972=>'L',
      +12973=>'L',
      +12974=>'L',
      +12975=>'L',
      +12976=>'L',
      +12977=>'ON',
      +12978=>'ON',
      +12979=>'ON',
      +12980=>'ON',
      +12981=>'ON',
      +12982=>'ON',
      +12983=>'ON',
      +12984=>'ON',
      +12985=>'ON',
      +12986=>'ON',
      +12987=>'ON',
      +12988=>'ON',
      +12989=>'ON',
      +12990=>'ON',
      +12991=>'ON',
      +12992=>'L',
      +12993=>'L',
      +12994=>'L',
      +12995=>'L',
      +12996=>'L',
      +12997=>'L',
      +12998=>'L',
      +12999=>'L',
      +13000=>'L',
      +13001=>'L',
      +13002=>'L',
      +13003=>'L',
      +13004=>'ON',
      +13005=>'ON',
      +13006=>'ON',
      +13007=>'ON',
      +13008=>'L',
      +13009=>'L',
      +13010=>'L',
      +13011=>'L',
      +13012=>'L',
      +13013=>'L',
      +13014=>'L',
      +13015=>'L',
      +13016=>'L',
      +13017=>'L',
      +13018=>'L',
      +13019=>'L',
      +13020=>'L',
      +13021=>'L',
      +13022=>'L',
      +13023=>'L',
      +13024=>'L',
      +13025=>'L',
      +13026=>'L',
      +13027=>'L',
      +13028=>'L',
      +13029=>'L',
      +13030=>'L',
      +13031=>'L',
      +13032=>'L',
      +13033=>'L',
      +13034=>'L',
      +13035=>'L',
      +13036=>'L',
      +13037=>'L',
      +13038=>'L',
      +13039=>'L',
      +13040=>'L',
      +13041=>'L',
      +13042=>'L',
      +13043=>'L',
      +13044=>'L',
      +13045=>'L',
      +13046=>'L',
      +13047=>'L',
      +13048=>'L',
      +13049=>'L',
      +13050=>'L',
      +13051=>'L',
      +13052=>'L',
      +13053=>'L',
      +13054=>'L',
      +13056=>'L',
      +13057=>'L',
      +13058=>'L',
      +13059=>'L',
      +13060=>'L',
      +13061=>'L',
      +13062=>'L',
      +13063=>'L',
      +13064=>'L',
      +13065=>'L',
      +13066=>'L',
      +13067=>'L',
      +13068=>'L',
      +13069=>'L',
      +13070=>'L',
      +13071=>'L',
      +13072=>'L',
      +13073=>'L',
      +13074=>'L',
      +13075=>'L',
      +13076=>'L',
      +13077=>'L',
      +13078=>'L',
      +13079=>'L',
      +13080=>'L',
      +13081=>'L',
      +13082=>'L',
      +13083=>'L',
      +13084=>'L',
      +13085=>'L',
      +13086=>'L',
      +13087=>'L',
      +13088=>'L',
      +13089=>'L',
      +13090=>'L',
      +13091=>'L',
      +13092=>'L',
      +13093=>'L',
      +13094=>'L',
      +13095=>'L',
      +13096=>'L',
      +13097=>'L',
      +13098=>'L',
      +13099=>'L',
      +13100=>'L',
      +13101=>'L',
      +13102=>'L',
      +13103=>'L',
      +13104=>'L',
      +13105=>'L',
      +13106=>'L',
      +13107=>'L',
      +13108=>'L',
      +13109=>'L',
      +13110=>'L',
      +13111=>'L',
      +13112=>'L',
      +13113=>'L',
      +13114=>'L',
      +13115=>'L',
      +13116=>'L',
      +13117=>'L',
      +13118=>'L',
      +13119=>'L',
      +13120=>'L',
      +13121=>'L',
      +13122=>'L',
      +13123=>'L',
      +13124=>'L',
      +13125=>'L',
      +13126=>'L',
      +13127=>'L',
      +13128=>'L',
      +13129=>'L',
      +13130=>'L',
      +13131=>'L',
      +13132=>'L',
      +13133=>'L',
      +13134=>'L',
      +13135=>'L',
      +13136=>'L',
      +13137=>'L',
      +13138=>'L',
      +13139=>'L',
      +13140=>'L',
      +13141=>'L',
      +13142=>'L',
      +13143=>'L',
      +13144=>'L',
      +13145=>'L',
      +13146=>'L',
      +13147=>'L',
      +13148=>'L',
      +13149=>'L',
      +13150=>'L',
      +13151=>'L',
      +13152=>'L',
      +13153=>'L',
      +13154=>'L',
      +13155=>'L',
      +13156=>'L',
      +13157=>'L',
      +13158=>'L',
      +13159=>'L',
      +13160=>'L',
      +13161=>'L',
      +13162=>'L',
      +13163=>'L',
      +13164=>'L',
      +13165=>'L',
      +13166=>'L',
      +13167=>'L',
      +13168=>'L',
      +13169=>'L',
      +13170=>'L',
      +13171=>'L',
      +13172=>'L',
      +13173=>'L',
      +13174=>'L',
      +13175=>'ON',
      +13176=>'ON',
      +13177=>'ON',
      +13178=>'ON',
      +13179=>'L',
      +13180=>'L',
      +13181=>'L',
      +13182=>'L',
      +13183=>'L',
      +13184=>'L',
      +13185=>'L',
      +13186=>'L',
      +13187=>'L',
      +13188=>'L',
      +13189=>'L',
      +13190=>'L',
      +13191=>'L',
      +13192=>'L',
      +13193=>'L',
      +13194=>'L',
      +13195=>'L',
      +13196=>'L',
      +13197=>'L',
      +13198=>'L',
      +13199=>'L',
      +13200=>'L',
      +13201=>'L',
      +13202=>'L',
      +13203=>'L',
      +13204=>'L',
      +13205=>'L',
      +13206=>'L',
      +13207=>'L',
      +13208=>'L',
      +13209=>'L',
      +13210=>'L',
      +13211=>'L',
      +13212=>'L',
      +13213=>'L',
      +13214=>'L',
      +13215=>'L',
      +13216=>'L',
      +13217=>'L',
      +13218=>'L',
      +13219=>'L',
      +13220=>'L',
      +13221=>'L',
      +13222=>'L',
      +13223=>'L',
      +13224=>'L',
      +13225=>'L',
      +13226=>'L',
      +13227=>'L',
      +13228=>'L',
      +13229=>'L',
      +13230=>'L',
      +13231=>'L',
      +13232=>'L',
      +13233=>'L',
      +13234=>'L',
      +13235=>'L',
      +13236=>'L',
      +13237=>'L',
      +13238=>'L',
      +13239=>'L',
      +13240=>'L',
      +13241=>'L',
      +13242=>'L',
      +13243=>'L',
      +13244=>'L',
      +13245=>'L',
      +13246=>'L',
      +13247=>'L',
      +13248=>'L',
      +13249=>'L',
      +13250=>'L',
      +13251=>'L',
      +13252=>'L',
      +13253=>'L',
      +13254=>'L',
      +13255=>'L',
      +13256=>'L',
      +13257=>'L',
      +13258=>'L',
      +13259=>'L',
      +13260=>'L',
      +13261=>'L',
      +13262=>'L',
      +13263=>'L',
      +13264=>'L',
      +13265=>'L',
      +13266=>'L',
      +13267=>'L',
      +13268=>'L',
      +13269=>'L',
      +13270=>'L',
      +13271=>'L',
      +13272=>'L',
      +13273=>'L',
      +13274=>'L',
      +13275=>'L',
      +13276=>'L',
      +13277=>'L',
      +13278=>'ON',
      +13279=>'ON',
      +13280=>'L',
      +13281=>'L',
      +13282=>'L',
      +13283=>'L',
      +13284=>'L',
      +13285=>'L',
      +13286=>'L',
      +13287=>'L',
      +13288=>'L',
      +13289=>'L',
      +13290=>'L',
      +13291=>'L',
      +13292=>'L',
      +13293=>'L',
      +13294=>'L',
      +13295=>'L',
      +13296=>'L',
      +13297=>'L',
      +13298=>'L',
      +13299=>'L',
      +13300=>'L',
      +13301=>'L',
      +13302=>'L',
      +13303=>'L',
      +13304=>'L',
      +13305=>'L',
      +13306=>'L',
      +13307=>'L',
      +13308=>'L',
      +13309=>'L',
      +13310=>'L',
      +13311=>'ON',
      +13312=>'L',
      +19893=>'L',
      +19904=>'ON',
      +19905=>'ON',
      +19906=>'ON',
      +19907=>'ON',
      +19908=>'ON',
      +19909=>'ON',
      +19910=>'ON',
      +19911=>'ON',
      +19912=>'ON',
      +19913=>'ON',
      +19914=>'ON',
      +19915=>'ON',
      +19916=>'ON',
      +19917=>'ON',
      +19918=>'ON',
      +19919=>'ON',
      +19920=>'ON',
      +19921=>'ON',
      +19922=>'ON',
      +19923=>'ON',
      +19924=>'ON',
      +19925=>'ON',
      +19926=>'ON',
      +19927=>'ON',
      +19928=>'ON',
      +19929=>'ON',
      +19930=>'ON',
      +19931=>'ON',
      +19932=>'ON',
      +19933=>'ON',
      +19934=>'ON',
      +19935=>'ON',
      +19936=>'ON',
      +19937=>'ON',
      +19938=>'ON',
      +19939=>'ON',
      +19940=>'ON',
      +19941=>'ON',
      +19942=>'ON',
      +19943=>'ON',
      +19944=>'ON',
      +19945=>'ON',
      +19946=>'ON',
      +19947=>'ON',
      +19948=>'ON',
      +19949=>'ON',
      +19950=>'ON',
      +19951=>'ON',
      +19952=>'ON',
      +19953=>'ON',
      +19954=>'ON',
      +19955=>'ON',
      +19956=>'ON',
      +19957=>'ON',
      +19958=>'ON',
      +19959=>'ON',
      +19960=>'ON',
      +19961=>'ON',
      +19962=>'ON',
      +19963=>'ON',
      +19964=>'ON',
      +19965=>'ON',
      +19966=>'ON',
      +19967=>'ON',
      +19968=>'L',
      +40891=>'L',
      +40960=>'L',
      +40961=>'L',
      +40962=>'L',
      +40963=>'L',
      +40964=>'L',
      +40965=>'L',
      +40966=>'L',
      +40967=>'L',
      +40968=>'L',
      +40969=>'L',
      +40970=>'L',
      +40971=>'L',
      +40972=>'L',
      +40973=>'L',
      +40974=>'L',
      +40975=>'L',
      +40976=>'L',
      +40977=>'L',
      +40978=>'L',
      +40979=>'L',
      +40980=>'L',
      +40981=>'L',
      +40982=>'L',
      +40983=>'L',
      +40984=>'L',
      +40985=>'L',
      +40986=>'L',
      +40987=>'L',
      +40988=>'L',
      +40989=>'L',
      +40990=>'L',
      +40991=>'L',
      +40992=>'L',
      +40993=>'L',
      +40994=>'L',
      +40995=>'L',
      +40996=>'L',
      +40997=>'L',
      +40998=>'L',
      +40999=>'L',
      +41000=>'L',
      +41001=>'L',
      +41002=>'L',
      +41003=>'L',
      +41004=>'L',
      +41005=>'L',
      +41006=>'L',
      +41007=>'L',
      +41008=>'L',
      +41009=>'L',
      +41010=>'L',
      +41011=>'L',
      +41012=>'L',
      +41013=>'L',
      +41014=>'L',
      +41015=>'L',
      +41016=>'L',
      +41017=>'L',
      +41018=>'L',
      +41019=>'L',
      +41020=>'L',
      +41021=>'L',
      +41022=>'L',
      +41023=>'L',
      +41024=>'L',
      +41025=>'L',
      +41026=>'L',
      +41027=>'L',
      +41028=>'L',
      +41029=>'L',
      +41030=>'L',
      +41031=>'L',
      +41032=>'L',
      +41033=>'L',
      +41034=>'L',
      +41035=>'L',
      +41036=>'L',
      +41037=>'L',
      +41038=>'L',
      +41039=>'L',
      +41040=>'L',
      +41041=>'L',
      +41042=>'L',
      +41043=>'L',
      +41044=>'L',
      +41045=>'L',
      +41046=>'L',
      +41047=>'L',
      +41048=>'L',
      +41049=>'L',
      +41050=>'L',
      +41051=>'L',
      +41052=>'L',
      +41053=>'L',
      +41054=>'L',
      +41055=>'L',
      +41056=>'L',
      +41057=>'L',
      +41058=>'L',
      +41059=>'L',
      +41060=>'L',
      +41061=>'L',
      +41062=>'L',
      +41063=>'L',
      +41064=>'L',
      +41065=>'L',
      +41066=>'L',
      +41067=>'L',
      +41068=>'L',
      +41069=>'L',
      +41070=>'L',
      +41071=>'L',
      +41072=>'L',
      +41073=>'L',
      +41074=>'L',
      +41075=>'L',
      +41076=>'L',
      +41077=>'L',
      +41078=>'L',
      +41079=>'L',
      +41080=>'L',
      +41081=>'L',
      +41082=>'L',
      +41083=>'L',
      +41084=>'L',
      +41085=>'L',
      +41086=>'L',
      +41087=>'L',
      +41088=>'L',
      +41089=>'L',
      +41090=>'L',
      +41091=>'L',
      +41092=>'L',
      +41093=>'L',
      +41094=>'L',
      +41095=>'L',
      +41096=>'L',
      +41097=>'L',
      +41098=>'L',
      +41099=>'L',
      +41100=>'L',
      +41101=>'L',
      +41102=>'L',
      +41103=>'L',
      +41104=>'L',
      +41105=>'L',
      +41106=>'L',
      +41107=>'L',
      +41108=>'L',
      +41109=>'L',
      +41110=>'L',
      +41111=>'L',
      +41112=>'L',
      +41113=>'L',
      +41114=>'L',
      +41115=>'L',
      +41116=>'L',
      +41117=>'L',
      +41118=>'L',
      +41119=>'L',
      +41120=>'L',
      +41121=>'L',
      +41122=>'L',
      +41123=>'L',
      +41124=>'L',
      +41125=>'L',
      +41126=>'L',
      +41127=>'L',
      +41128=>'L',
      +41129=>'L',
      +41130=>'L',
      +41131=>'L',
      +41132=>'L',
      +41133=>'L',
      +41134=>'L',
      +41135=>'L',
      +41136=>'L',
      +41137=>'L',
      +41138=>'L',
      +41139=>'L',
      +41140=>'L',
      +41141=>'L',
      +41142=>'L',
      +41143=>'L',
      +41144=>'L',
      +41145=>'L',
      +41146=>'L',
      +41147=>'L',
      +41148=>'L',
      +41149=>'L',
      +41150=>'L',
      +41151=>'L',
      +41152=>'L',
      +41153=>'L',
      +41154=>'L',
      +41155=>'L',
      +41156=>'L',
      +41157=>'L',
      +41158=>'L',
      +41159=>'L',
      +41160=>'L',
      +41161=>'L',
      +41162=>'L',
      +41163=>'L',
      +41164=>'L',
      +41165=>'L',
      +41166=>'L',
      +41167=>'L',
      +41168=>'L',
      +41169=>'L',
      +41170=>'L',
      +41171=>'L',
      +41172=>'L',
      +41173=>'L',
      +41174=>'L',
      +41175=>'L',
      +41176=>'L',
      +41177=>'L',
      +41178=>'L',
      +41179=>'L',
      +41180=>'L',
      +41181=>'L',
      +41182=>'L',
      +41183=>'L',
      +41184=>'L',
      +41185=>'L',
      +41186=>'L',
      +41187=>'L',
      +41188=>'L',
      +41189=>'L',
      +41190=>'L',
      +41191=>'L',
      +41192=>'L',
      +41193=>'L',
      +41194=>'L',
      +41195=>'L',
      +41196=>'L',
      +41197=>'L',
      +41198=>'L',
      +41199=>'L',
      +41200=>'L',
      +41201=>'L',
      +41202=>'L',
      +41203=>'L',
      +41204=>'L',
      +41205=>'L',
      +41206=>'L',
      +41207=>'L',
      +41208=>'L',
      +41209=>'L',
      +41210=>'L',
      +41211=>'L',
      +41212=>'L',
      +41213=>'L',
      +41214=>'L',
      +41215=>'L',
      +41216=>'L',
      +41217=>'L',
      +41218=>'L',
      +41219=>'L',
      +41220=>'L',
      +41221=>'L',
      +41222=>'L',
      +41223=>'L',
      +41224=>'L',
      +41225=>'L',
      +41226=>'L',
      +41227=>'L',
      +41228=>'L',
      +41229=>'L',
      +41230=>'L',
      +41231=>'L',
      +41232=>'L',
      +41233=>'L',
      +41234=>'L',
      +41235=>'L',
      +41236=>'L',
      +41237=>'L',
      +41238=>'L',
      +41239=>'L',
      +41240=>'L',
      +41241=>'L',
      +41242=>'L',
      +41243=>'L',
      +41244=>'L',
      +41245=>'L',
      +41246=>'L',
      +41247=>'L',
      +41248=>'L',
      +41249=>'L',
      +41250=>'L',
      +41251=>'L',
      +41252=>'L',
      +41253=>'L',
      +41254=>'L',
      +41255=>'L',
      +41256=>'L',
      +41257=>'L',
      +41258=>'L',
      +41259=>'L',
      +41260=>'L',
      +41261=>'L',
      +41262=>'L',
      +41263=>'L',
      +41264=>'L',
      +41265=>'L',
      +41266=>'L',
      +41267=>'L',
      +41268=>'L',
      +41269=>'L',
      +41270=>'L',
      +41271=>'L',
      +41272=>'L',
      +41273=>'L',
      +41274=>'L',
      +41275=>'L',
      +41276=>'L',
      +41277=>'L',
      +41278=>'L',
      +41279=>'L',
      +41280=>'L',
      +41281=>'L',
      +41282=>'L',
      +41283=>'L',
      +41284=>'L',
      +41285=>'L',
      +41286=>'L',
      +41287=>'L',
      +41288=>'L',
      +41289=>'L',
      +41290=>'L',
      +41291=>'L',
      +41292=>'L',
      +41293=>'L',
      +41294=>'L',
      +41295=>'L',
      +41296=>'L',
      +41297=>'L',
      +41298=>'L',
      +41299=>'L',
      +41300=>'L',
      +41301=>'L',
      +41302=>'L',
      +41303=>'L',
      +41304=>'L',
      +41305=>'L',
      +41306=>'L',
      +41307=>'L',
      +41308=>'L',
      +41309=>'L',
      +41310=>'L',
      +41311=>'L',
      +41312=>'L',
      +41313=>'L',
      +41314=>'L',
      +41315=>'L',
      +41316=>'L',
      +41317=>'L',
      +41318=>'L',
      +41319=>'L',
      +41320=>'L',
      +41321=>'L',
      +41322=>'L',
      +41323=>'L',
      +41324=>'L',
      +41325=>'L',
      +41326=>'L',
      +41327=>'L',
      +41328=>'L',
      +41329=>'L',
      +41330=>'L',
      +41331=>'L',
      +41332=>'L',
      +41333=>'L',
      +41334=>'L',
      +41335=>'L',
      +41336=>'L',
      +41337=>'L',
      +41338=>'L',
      +41339=>'L',
      +41340=>'L',
      +41341=>'L',
      +41342=>'L',
      +41343=>'L',
      +41344=>'L',
      +41345=>'L',
      +41346=>'L',
      +41347=>'L',
      +41348=>'L',
      +41349=>'L',
      +41350=>'L',
      +41351=>'L',
      +41352=>'L',
      +41353=>'L',
      +41354=>'L',
      +41355=>'L',
      +41356=>'L',
      +41357=>'L',
      +41358=>'L',
      +41359=>'L',
      +41360=>'L',
      +41361=>'L',
      +41362=>'L',
      +41363=>'L',
      +41364=>'L',
      +41365=>'L',
      +41366=>'L',
      +41367=>'L',
      +41368=>'L',
      +41369=>'L',
      +41370=>'L',
      +41371=>'L',
      +41372=>'L',
      +41373=>'L',
      +41374=>'L',
      +41375=>'L',
      +41376=>'L',
      +41377=>'L',
      +41378=>'L',
      +41379=>'L',
      +41380=>'L',
      +41381=>'L',
      +41382=>'L',
      +41383=>'L',
      +41384=>'L',
      +41385=>'L',
      +41386=>'L',
      +41387=>'L',
      +41388=>'L',
      +41389=>'L',
      +41390=>'L',
      +41391=>'L',
      +41392=>'L',
      +41393=>'L',
      +41394=>'L',
      +41395=>'L',
      +41396=>'L',
      +41397=>'L',
      +41398=>'L',
      +41399=>'L',
      +41400=>'L',
      +41401=>'L',
      +41402=>'L',
      +41403=>'L',
      +41404=>'L',
      +41405=>'L',
      +41406=>'L',
      +41407=>'L',
      +41408=>'L',
      +41409=>'L',
      +41410=>'L',
      +41411=>'L',
      +41412=>'L',
      +41413=>'L',
      +41414=>'L',
      +41415=>'L',
      +41416=>'L',
      +41417=>'L',
      +41418=>'L',
      +41419=>'L',
      +41420=>'L',
      +41421=>'L',
      +41422=>'L',
      +41423=>'L',
      +41424=>'L',
      +41425=>'L',
      +41426=>'L',
      +41427=>'L',
      +41428=>'L',
      +41429=>'L',
      +41430=>'L',
      +41431=>'L',
      +41432=>'L',
      +41433=>'L',
      +41434=>'L',
      +41435=>'L',
      +41436=>'L',
      +41437=>'L',
      +41438=>'L',
      +41439=>'L',
      +41440=>'L',
      +41441=>'L',
      +41442=>'L',
      +41443=>'L',
      +41444=>'L',
      +41445=>'L',
      +41446=>'L',
      +41447=>'L',
      +41448=>'L',
      +41449=>'L',
      +41450=>'L',
      +41451=>'L',
      +41452=>'L',
      +41453=>'L',
      +41454=>'L',
      +41455=>'L',
      +41456=>'L',
      +41457=>'L',
      +41458=>'L',
      +41459=>'L',
      +41460=>'L',
      +41461=>'L',
      +41462=>'L',
      +41463=>'L',
      +41464=>'L',
      +41465=>'L',
      +41466=>'L',
      +41467=>'L',
      +41468=>'L',
      +41469=>'L',
      +41470=>'L',
      +41471=>'L',
      +41472=>'L',
      +41473=>'L',
      +41474=>'L',
      +41475=>'L',
      +41476=>'L',
      +41477=>'L',
      +41478=>'L',
      +41479=>'L',
      +41480=>'L',
      +41481=>'L',
      +41482=>'L',
      +41483=>'L',
      +41484=>'L',
      +41485=>'L',
      +41486=>'L',
      +41487=>'L',
      +41488=>'L',
      +41489=>'L',
      +41490=>'L',
      +41491=>'L',
      +41492=>'L',
      +41493=>'L',
      +41494=>'L',
      +41495=>'L',
      +41496=>'L',
      +41497=>'L',
      +41498=>'L',
      +41499=>'L',
      +41500=>'L',
      +41501=>'L',
      +41502=>'L',
      +41503=>'L',
      +41504=>'L',
      +41505=>'L',
      +41506=>'L',
      +41507=>'L',
      +41508=>'L',
      +41509=>'L',
      +41510=>'L',
      +41511=>'L',
      +41512=>'L',
      +41513=>'L',
      +41514=>'L',
      +41515=>'L',
      +41516=>'L',
      +41517=>'L',
      +41518=>'L',
      +41519=>'L',
      +41520=>'L',
      +41521=>'L',
      +41522=>'L',
      +41523=>'L',
      +41524=>'L',
      +41525=>'L',
      +41526=>'L',
      +41527=>'L',
      +41528=>'L',
      +41529=>'L',
      +41530=>'L',
      +41531=>'L',
      +41532=>'L',
      +41533=>'L',
      +41534=>'L',
      +41535=>'L',
      +41536=>'L',
      +41537=>'L',
      +41538=>'L',
      +41539=>'L',
      +41540=>'L',
      +41541=>'L',
      +41542=>'L',
      +41543=>'L',
      +41544=>'L',
      +41545=>'L',
      +41546=>'L',
      +41547=>'L',
      +41548=>'L',
      +41549=>'L',
      +41550=>'L',
      +41551=>'L',
      +41552=>'L',
      +41553=>'L',
      +41554=>'L',
      +41555=>'L',
      +41556=>'L',
      +41557=>'L',
      +41558=>'L',
      +41559=>'L',
      +41560=>'L',
      +41561=>'L',
      +41562=>'L',
      +41563=>'L',
      +41564=>'L',
      +41565=>'L',
      +41566=>'L',
      +41567=>'L',
      +41568=>'L',
      +41569=>'L',
      +41570=>'L',
      +41571=>'L',
      +41572=>'L',
      +41573=>'L',
      +41574=>'L',
      +41575=>'L',
      +41576=>'L',
      +41577=>'L',
      +41578=>'L',
      +41579=>'L',
      +41580=>'L',
      +41581=>'L',
      +41582=>'L',
      +41583=>'L',
      +41584=>'L',
      +41585=>'L',
      +41586=>'L',
      +41587=>'L',
      +41588=>'L',
      +41589=>'L',
      +41590=>'L',
      +41591=>'L',
      +41592=>'L',
      +41593=>'L',
      +41594=>'L',
      +41595=>'L',
      +41596=>'L',
      +41597=>'L',
      +41598=>'L',
      +41599=>'L',
      +41600=>'L',
      +41601=>'L',
      +41602=>'L',
      +41603=>'L',
      +41604=>'L',
      +41605=>'L',
      +41606=>'L',
      +41607=>'L',
      +41608=>'L',
      +41609=>'L',
      +41610=>'L',
      +41611=>'L',
      +41612=>'L',
      +41613=>'L',
      +41614=>'L',
      +41615=>'L',
      +41616=>'L',
      +41617=>'L',
      +41618=>'L',
      +41619=>'L',
      +41620=>'L',
      +41621=>'L',
      +41622=>'L',
      +41623=>'L',
      +41624=>'L',
      +41625=>'L',
      +41626=>'L',
      +41627=>'L',
      +41628=>'L',
      +41629=>'L',
      +41630=>'L',
      +41631=>'L',
      +41632=>'L',
      +41633=>'L',
      +41634=>'L',
      +41635=>'L',
      +41636=>'L',
      +41637=>'L',
      +41638=>'L',
      +41639=>'L',
      +41640=>'L',
      +41641=>'L',
      +41642=>'L',
      +41643=>'L',
      +41644=>'L',
      +41645=>'L',
      +41646=>'L',
      +41647=>'L',
      +41648=>'L',
      +41649=>'L',
      +41650=>'L',
      +41651=>'L',
      +41652=>'L',
      +41653=>'L',
      +41654=>'L',
      +41655=>'L',
      +41656=>'L',
      +41657=>'L',
      +41658=>'L',
      +41659=>'L',
      +41660=>'L',
      +41661=>'L',
      +41662=>'L',
      +41663=>'L',
      +41664=>'L',
      +41665=>'L',
      +41666=>'L',
      +41667=>'L',
      +41668=>'L',
      +41669=>'L',
      +41670=>'L',
      +41671=>'L',
      +41672=>'L',
      +41673=>'L',
      +41674=>'L',
      +41675=>'L',
      +41676=>'L',
      +41677=>'L',
      +41678=>'L',
      +41679=>'L',
      +41680=>'L',
      +41681=>'L',
      +41682=>'L',
      +41683=>'L',
      +41684=>'L',
      +41685=>'L',
      +41686=>'L',
      +41687=>'L',
      +41688=>'L',
      +41689=>'L',
      +41690=>'L',
      +41691=>'L',
      +41692=>'L',
      +41693=>'L',
      +41694=>'L',
      +41695=>'L',
      +41696=>'L',
      +41697=>'L',
      +41698=>'L',
      +41699=>'L',
      +41700=>'L',
      +41701=>'L',
      +41702=>'L',
      +41703=>'L',
      +41704=>'L',
      +41705=>'L',
      +41706=>'L',
      +41707=>'L',
      +41708=>'L',
      +41709=>'L',
      +41710=>'L',
      +41711=>'L',
      +41712=>'L',
      +41713=>'L',
      +41714=>'L',
      +41715=>'L',
      +41716=>'L',
      +41717=>'L',
      +41718=>'L',
      +41719=>'L',
      +41720=>'L',
      +41721=>'L',
      +41722=>'L',
      +41723=>'L',
      +41724=>'L',
      +41725=>'L',
      +41726=>'L',
      +41727=>'L',
      +41728=>'L',
      +41729=>'L',
      +41730=>'L',
      +41731=>'L',
      +41732=>'L',
      +41733=>'L',
      +41734=>'L',
      +41735=>'L',
      +41736=>'L',
      +41737=>'L',
      +41738=>'L',
      +41739=>'L',
      +41740=>'L',
      +41741=>'L',
      +41742=>'L',
      +41743=>'L',
      +41744=>'L',
      +41745=>'L',
      +41746=>'L',
      +41747=>'L',
      +41748=>'L',
      +41749=>'L',
      +41750=>'L',
      +41751=>'L',
      +41752=>'L',
      +41753=>'L',
      +41754=>'L',
      +41755=>'L',
      +41756=>'L',
      +41757=>'L',
      +41758=>'L',
      +41759=>'L',
      +41760=>'L',
      +41761=>'L',
      +41762=>'L',
      +41763=>'L',
      +41764=>'L',
      +41765=>'L',
      +41766=>'L',
      +41767=>'L',
      +41768=>'L',
      +41769=>'L',
      +41770=>'L',
      +41771=>'L',
      +41772=>'L',
      +41773=>'L',
      +41774=>'L',
      +41775=>'L',
      +41776=>'L',
      +41777=>'L',
      +41778=>'L',
      +41779=>'L',
      +41780=>'L',
      +41781=>'L',
      +41782=>'L',
      +41783=>'L',
      +41784=>'L',
      +41785=>'L',
      +41786=>'L',
      +41787=>'L',
      +41788=>'L',
      +41789=>'L',
      +41790=>'L',
      +41791=>'L',
      +41792=>'L',
      +41793=>'L',
      +41794=>'L',
      +41795=>'L',
      +41796=>'L',
      +41797=>'L',
      +41798=>'L',
      +41799=>'L',
      +41800=>'L',
      +41801=>'L',
      +41802=>'L',
      +41803=>'L',
      +41804=>'L',
      +41805=>'L',
      +41806=>'L',
      +41807=>'L',
      +41808=>'L',
      +41809=>'L',
      +41810=>'L',
      +41811=>'L',
      +41812=>'L',
      +41813=>'L',
      +41814=>'L',
      +41815=>'L',
      +41816=>'L',
      +41817=>'L',
      +41818=>'L',
      +41819=>'L',
      +41820=>'L',
      +41821=>'L',
      +41822=>'L',
      +41823=>'L',
      +41824=>'L',
      +41825=>'L',
      +41826=>'L',
      +41827=>'L',
      +41828=>'L',
      +41829=>'L',
      +41830=>'L',
      +41831=>'L',
      +41832=>'L',
      +41833=>'L',
      +41834=>'L',
      +41835=>'L',
      +41836=>'L',
      +41837=>'L',
      +41838=>'L',
      +41839=>'L',
      +41840=>'L',
      +41841=>'L',
      +41842=>'L',
      +41843=>'L',
      +41844=>'L',
      +41845=>'L',
      +41846=>'L',
      +41847=>'L',
      +41848=>'L',
      +41849=>'L',
      +41850=>'L',
      +41851=>'L',
      +41852=>'L',
      +41853=>'L',
      +41854=>'L',
      +41855=>'L',
      +41856=>'L',
      +41857=>'L',
      +41858=>'L',
      +41859=>'L',
      +41860=>'L',
      +41861=>'L',
      +41862=>'L',
      +41863=>'L',
      +41864=>'L',
      +41865=>'L',
      +41866=>'L',
      +41867=>'L',
      +41868=>'L',
      +41869=>'L',
      +41870=>'L',
      +41871=>'L',
      +41872=>'L',
      +41873=>'L',
      +41874=>'L',
      +41875=>'L',
      +41876=>'L',
      +41877=>'L',
      +41878=>'L',
      +41879=>'L',
      +41880=>'L',
      +41881=>'L',
      +41882=>'L',
      +41883=>'L',
      +41884=>'L',
      +41885=>'L',
      +41886=>'L',
      +41887=>'L',
      +41888=>'L',
      +41889=>'L',
      +41890=>'L',
      +41891=>'L',
      +41892=>'L',
      +41893=>'L',
      +41894=>'L',
      +41895=>'L',
      +41896=>'L',
      +41897=>'L',
      +41898=>'L',
      +41899=>'L',
      +41900=>'L',
      +41901=>'L',
      +41902=>'L',
      +41903=>'L',
      +41904=>'L',
      +41905=>'L',
      +41906=>'L',
      +41907=>'L',
      +41908=>'L',
      +41909=>'L',
      +41910=>'L',
      +41911=>'L',
      +41912=>'L',
      +41913=>'L',
      +41914=>'L',
      +41915=>'L',
      +41916=>'L',
      +41917=>'L',
      +41918=>'L',
      +41919=>'L',
      +41920=>'L',
      +41921=>'L',
      +41922=>'L',
      +41923=>'L',
      +41924=>'L',
      +41925=>'L',
      +41926=>'L',
      +41927=>'L',
      +41928=>'L',
      +41929=>'L',
      +41930=>'L',
      +41931=>'L',
      +41932=>'L',
      +41933=>'L',
      +41934=>'L',
      +41935=>'L',
      +41936=>'L',
      +41937=>'L',
      +41938=>'L',
      +41939=>'L',
      +41940=>'L',
      +41941=>'L',
      +41942=>'L',
      +41943=>'L',
      +41944=>'L',
      +41945=>'L',
      +41946=>'L',
      +41947=>'L',
      +41948=>'L',
      +41949=>'L',
      +41950=>'L',
      +41951=>'L',
      +41952=>'L',
      +41953=>'L',
      +41954=>'L',
      +41955=>'L',
      +41956=>'L',
      +41957=>'L',
      +41958=>'L',
      +41959=>'L',
      +41960=>'L',
      +41961=>'L',
      +41962=>'L',
      +41963=>'L',
      +41964=>'L',
      +41965=>'L',
      +41966=>'L',
      +41967=>'L',
      +41968=>'L',
      +41969=>'L',
      +41970=>'L',
      +41971=>'L',
      +41972=>'L',
      +41973=>'L',
      +41974=>'L',
      +41975=>'L',
      +41976=>'L',
      +41977=>'L',
      +41978=>'L',
      +41979=>'L',
      +41980=>'L',
      +41981=>'L',
      +41982=>'L',
      +41983=>'L',
      +41984=>'L',
      +41985=>'L',
      +41986=>'L',
      +41987=>'L',
      +41988=>'L',
      +41989=>'L',
      +41990=>'L',
      +41991=>'L',
      +41992=>'L',
      +41993=>'L',
      +41994=>'L',
      +41995=>'L',
      +41996=>'L',
      +41997=>'L',
      +41998=>'L',
      +41999=>'L',
      +42000=>'L',
      +42001=>'L',
      +42002=>'L',
      +42003=>'L',
      +42004=>'L',
      +42005=>'L',
      +42006=>'L',
      +42007=>'L',
      +42008=>'L',
      +42009=>'L',
      +42010=>'L',
      +42011=>'L',
      +42012=>'L',
      +42013=>'L',
      +42014=>'L',
      +42015=>'L',
      +42016=>'L',
      +42017=>'L',
      +42018=>'L',
      +42019=>'L',
      +42020=>'L',
      +42021=>'L',
      +42022=>'L',
      +42023=>'L',
      +42024=>'L',
      +42025=>'L',
      +42026=>'L',
      +42027=>'L',
      +42028=>'L',
      +42029=>'L',
      +42030=>'L',
      +42031=>'L',
      +42032=>'L',
      +42033=>'L',
      +42034=>'L',
      +42035=>'L',
      +42036=>'L',
      +42037=>'L',
      +42038=>'L',
      +42039=>'L',
      +42040=>'L',
      +42041=>'L',
      +42042=>'L',
      +42043=>'L',
      +42044=>'L',
      +42045=>'L',
      +42046=>'L',
      +42047=>'L',
      +42048=>'L',
      +42049=>'L',
      +42050=>'L',
      +42051=>'L',
      +42052=>'L',
      +42053=>'L',
      +42054=>'L',
      +42055=>'L',
      +42056=>'L',
      +42057=>'L',
      +42058=>'L',
      +42059=>'L',
      +42060=>'L',
      +42061=>'L',
      +42062=>'L',
      +42063=>'L',
      +42064=>'L',
      +42065=>'L',
      +42066=>'L',
      +42067=>'L',
      +42068=>'L',
      +42069=>'L',
      +42070=>'L',
      +42071=>'L',
      +42072=>'L',
      +42073=>'L',
      +42074=>'L',
      +42075=>'L',
      +42076=>'L',
      +42077=>'L',
      +42078=>'L',
      +42079=>'L',
      +42080=>'L',
      +42081=>'L',
      +42082=>'L',
      +42083=>'L',
      +42084=>'L',
      +42085=>'L',
      +42086=>'L',
      +42087=>'L',
      +42088=>'L',
      +42089=>'L',
      +42090=>'L',
      +42091=>'L',
      +42092=>'L',
      +42093=>'L',
      +42094=>'L',
      +42095=>'L',
      +42096=>'L',
      +42097=>'L',
      +42098=>'L',
      +42099=>'L',
      +42100=>'L',
      +42101=>'L',
      +42102=>'L',
      +42103=>'L',
      +42104=>'L',
      +42105=>'L',
      +42106=>'L',
      +42107=>'L',
      +42108=>'L',
      +42109=>'L',
      +42110=>'L',
      +42111=>'L',
      +42112=>'L',
      +42113=>'L',
      +42114=>'L',
      +42115=>'L',
      +42116=>'L',
      +42117=>'L',
      +42118=>'L',
      +42119=>'L',
      +42120=>'L',
      +42121=>'L',
      +42122=>'L',
      +42123=>'L',
      +42124=>'L',
      +42128=>'ON',
      +42129=>'ON',
      +42130=>'ON',
      +42131=>'ON',
      +42132=>'ON',
      +42133=>'ON',
      +42134=>'ON',
      +42135=>'ON',
      +42136=>'ON',
      +42137=>'ON',
      +42138=>'ON',
      +42139=>'ON',
      +42140=>'ON',
      +42141=>'ON',
      +42142=>'ON',
      +42143=>'ON',
      +42144=>'ON',
      +42145=>'ON',
      +42146=>'ON',
      +42147=>'ON',
      +42148=>'ON',
      +42149=>'ON',
      +42150=>'ON',
      +42151=>'ON',
      +42152=>'ON',
      +42153=>'ON',
      +42154=>'ON',
      +42155=>'ON',
      +42156=>'ON',
      +42157=>'ON',
      +42158=>'ON',
      +42159=>'ON',
      +42160=>'ON',
      +42161=>'ON',
      +42162=>'ON',
      +42163=>'ON',
      +42164=>'ON',
      +42165=>'ON',
      +42166=>'ON',
      +42167=>'ON',
      +42168=>'ON',
      +42169=>'ON',
      +42170=>'ON',
      +42171=>'ON',
      +42172=>'ON',
      +42173=>'ON',
      +42174=>'ON',
      +42175=>'ON',
      +42176=>'ON',
      +42177=>'ON',
      +42178=>'ON',
      +42179=>'ON',
      +42180=>'ON',
      +42181=>'ON',
      +42182=>'ON',
      +42752=>'ON',
      +42753=>'ON',
      +42754=>'ON',
      +42755=>'ON',
      +42756=>'ON',
      +42757=>'ON',
      +42758=>'ON',
      +42759=>'ON',
      +42760=>'ON',
      +42761=>'ON',
      +42762=>'ON',
      +42763=>'ON',
      +42764=>'ON',
      +42765=>'ON',
      +42766=>'ON',
      +42767=>'ON',
      +42768=>'ON',
      +42769=>'ON',
      +42770=>'ON',
      +42771=>'ON',
      +42772=>'ON',
      +42773=>'ON',
      +42774=>'ON',
      +42775=>'ON',
      +42776=>'ON',
      +42777=>'ON',
      +42778=>'ON',
      +42784=>'ON',
      +42785=>'ON',
      +43008=>'L',
      +43009=>'L',
      +43010=>'NSM',
      +43011=>'L',
      +43012=>'L',
      +43013=>'L',
      +43014=>'NSM',
      +43015=>'L',
      +43016=>'L',
      +43017=>'L',
      +43018=>'L',
      +43019=>'NSM',
      +43020=>'L',
      +43021=>'L',
      +43022=>'L',
      +43023=>'L',
      +43024=>'L',
      +43025=>'L',
      +43026=>'L',
      +43027=>'L',
      +43028=>'L',
      +43029=>'L',
      +43030=>'L',
      +43031=>'L',
      +43032=>'L',
      +43033=>'L',
      +43034=>'L',
      +43035=>'L',
      +43036=>'L',
      +43037=>'L',
      +43038=>'L',
      +43039=>'L',
      +43040=>'L',
      +43041=>'L',
      +43042=>'L',
      +43043=>'L',
      +43044=>'L',
      +43045=>'NSM',
      +43046=>'NSM',
      +43047=>'L',
      +43048=>'ON',
      +43049=>'ON',
      +43050=>'ON',
      +43051=>'ON',
      +43072=>'L',
      +43073=>'L',
      +43074=>'L',
      +43075=>'L',
      +43076=>'L',
      +43077=>'L',
      +43078=>'L',
      +43079=>'L',
      +43080=>'L',
      +43081=>'L',
      +43082=>'L',
      +43083=>'L',
      +43084=>'L',
      +43085=>'L',
      +43086=>'L',
      +43087=>'L',
      +43088=>'L',
      +43089=>'L',
      +43090=>'L',
      +43091=>'L',
      +43092=>'L',
      +43093=>'L',
      +43094=>'L',
      +43095=>'L',
      +43096=>'L',
      +43097=>'L',
      +43098=>'L',
      +43099=>'L',
      +43100=>'L',
      +43101=>'L',
      +43102=>'L',
      +43103=>'L',
      +43104=>'L',
      +43105=>'L',
      +43106=>'L',
      +43107=>'L',
      +43108=>'L',
      +43109=>'L',
      +43110=>'L',
      +43111=>'L',
      +43112=>'L',
      +43113=>'L',
      +43114=>'L',
      +43115=>'L',
      +43116=>'L',
      +43117=>'L',
      +43118=>'L',
      +43119=>'L',
      +43120=>'L',
      +43121=>'L',
      +43122=>'L',
      +43123=>'L',
      +43124=>'ON',
      +43125=>'ON',
      +43126=>'ON',
      +43127=>'ON',
      +44032=>'L',
      +55203=>'L',
      +55296=>'L',
      +56191=>'L',
      +56192=>'L',
      +56319=>'L',
      +56320=>'L',
      +57343=>'L',
      +57344=>'L',
      +63743=>'L',
      +63744=>'L',
      +63745=>'L',
      +63746=>'L',
      +63747=>'L',
      +63748=>'L',
      +63749=>'L',
      +63750=>'L',
      +63751=>'L',
      +63752=>'L',
      +63753=>'L',
      +63754=>'L',
      +63755=>'L',
      +63756=>'L',
      +63757=>'L',
      +63758=>'L',
      +63759=>'L',
      +63760=>'L',
      +63761=>'L',
      +63762=>'L',
      +63763=>'L',
      +63764=>'L',
      +63765=>'L',
      +63766=>'L',
      +63767=>'L',
      +63768=>'L',
      +63769=>'L',
      +63770=>'L',
      +63771=>'L',
      +63772=>'L',
      +63773=>'L',
      +63774=>'L',
      +63775=>'L',
      +63776=>'L',
      +63777=>'L',
      +63778=>'L',
      +63779=>'L',
      +63780=>'L',
      +63781=>'L',
      +63782=>'L',
      +63783=>'L',
      +63784=>'L',
      +63785=>'L',
      +63786=>'L',
      +63787=>'L',
      +63788=>'L',
      +63789=>'L',
      +63790=>'L',
      +63791=>'L',
      +63792=>'L',
      +63793=>'L',
      +63794=>'L',
      +63795=>'L',
      +63796=>'L',
      +63797=>'L',
      +63798=>'L',
      +63799=>'L',
      +63800=>'L',
      +63801=>'L',
      +63802=>'L',
      +63803=>'L',
      +63804=>'L',
      +63805=>'L',
      +63806=>'L',
      +63807=>'L',
      +63808=>'L',
      +63809=>'L',
      +63810=>'L',
      +63811=>'L',
      +63812=>'L',
      +63813=>'L',
      +63814=>'L',
      +63815=>'L',
      +63816=>'L',
      +63817=>'L',
      +63818=>'L',
      +63819=>'L',
      +63820=>'L',
      +63821=>'L',
      +63822=>'L',
      +63823=>'L',
      +63824=>'L',
      +63825=>'L',
      +63826=>'L',
      +63827=>'L',
      +63828=>'L',
      +63829=>'L',
      +63830=>'L',
      +63831=>'L',
      +63832=>'L',
      +63833=>'L',
      +63834=>'L',
      +63835=>'L',
      +63836=>'L',
      +63837=>'L',
      +63838=>'L',
      +63839=>'L',
      +63840=>'L',
      +63841=>'L',
      +63842=>'L',
      +63843=>'L',
      +63844=>'L',
      +63845=>'L',
      +63846=>'L',
      +63847=>'L',
      +63848=>'L',
      +63849=>'L',
      +63850=>'L',
      +63851=>'L',
      +63852=>'L',
      +63853=>'L',
      +63854=>'L',
      +63855=>'L',
      +63856=>'L',
      +63857=>'L',
      +63858=>'L',
      +63859=>'L',
      +63860=>'L',
      +63861=>'L',
      +63862=>'L',
      +63863=>'L',
      +63864=>'L',
      +63865=>'L',
      +63866=>'L',
      +63867=>'L',
      +63868=>'L',
      +63869=>'L',
      +63870=>'L',
      +63871=>'L',
      +63872=>'L',
      +63873=>'L',
      +63874=>'L',
      +63875=>'L',
      +63876=>'L',
      +63877=>'L',
      +63878=>'L',
      +63879=>'L',
      +63880=>'L',
      +63881=>'L',
      +63882=>'L',
      +63883=>'L',
      +63884=>'L',
      +63885=>'L',
      +63886=>'L',
      +63887=>'L',
      +63888=>'L',
      +63889=>'L',
      +63890=>'L',
      +63891=>'L',
      +63892=>'L',
      +63893=>'L',
      +63894=>'L',
      +63895=>'L',
      +63896=>'L',
      +63897=>'L',
      +63898=>'L',
      +63899=>'L',
      +63900=>'L',
      +63901=>'L',
      +63902=>'L',
      +63903=>'L',
      +63904=>'L',
      +63905=>'L',
      +63906=>'L',
      +63907=>'L',
      +63908=>'L',
      +63909=>'L',
      +63910=>'L',
      +63911=>'L',
      +63912=>'L',
      +63913=>'L',
      +63914=>'L',
      +63915=>'L',
      +63916=>'L',
      +63917=>'L',
      +63918=>'L',
      +63919=>'L',
      +63920=>'L',
      +63921=>'L',
      +63922=>'L',
      +63923=>'L',
      +63924=>'L',
      +63925=>'L',
      +63926=>'L',
      +63927=>'L',
      +63928=>'L',
      +63929=>'L',
      +63930=>'L',
      +63931=>'L',
      +63932=>'L',
      +63933=>'L',
      +63934=>'L',
      +63935=>'L',
      +63936=>'L',
      +63937=>'L',
      +63938=>'L',
      +63939=>'L',
      +63940=>'L',
      +63941=>'L',
      +63942=>'L',
      +63943=>'L',
      +63944=>'L',
      +63945=>'L',
      +63946=>'L',
      +63947=>'L',
      +63948=>'L',
      +63949=>'L',
      +63950=>'L',
      +63951=>'L',
      +63952=>'L',
      +63953=>'L',
      +63954=>'L',
      +63955=>'L',
      +63956=>'L',
      +63957=>'L',
      +63958=>'L',
      +63959=>'L',
      +63960=>'L',
      +63961=>'L',
      +63962=>'L',
      +63963=>'L',
      +63964=>'L',
      +63965=>'L',
      +63966=>'L',
      +63967=>'L',
      +63968=>'L',
      +63969=>'L',
      +63970=>'L',
      +63971=>'L',
      +63972=>'L',
      +63973=>'L',
      +63974=>'L',
      +63975=>'L',
      +63976=>'L',
      +63977=>'L',
      +63978=>'L',
      +63979=>'L',
      +63980=>'L',
      +63981=>'L',
      +63982=>'L',
      +63983=>'L',
      +63984=>'L',
      +63985=>'L',
      +63986=>'L',
      +63987=>'L',
      +63988=>'L',
      +63989=>'L',
      +63990=>'L',
      +63991=>'L',
      +63992=>'L',
      +63993=>'L',
      +63994=>'L',
      +63995=>'L',
      +63996=>'L',
      +63997=>'L',
      +63998=>'L',
      +63999=>'L',
      +64000=>'L',
      +64001=>'L',
      +64002=>'L',
      +64003=>'L',
      +64004=>'L',
      +64005=>'L',
      +64006=>'L',
      +64007=>'L',
      +64008=>'L',
      +64009=>'L',
      +64010=>'L',
      +64011=>'L',
      +64012=>'L',
      +64013=>'L',
      +64014=>'L',
      +64015=>'L',
      +64016=>'L',
      +64017=>'L',
      +64018=>'L',
      +64019=>'L',
      +64020=>'L',
      +64021=>'L',
      +64022=>'L',
      +64023=>'L',
      +64024=>'L',
      +64025=>'L',
      +64026=>'L',
      +64027=>'L',
      +64028=>'L',
      +64029=>'L',
      +64030=>'L',
      +64031=>'L',
      +64032=>'L',
      +64033=>'L',
      +64034=>'L',
      +64035=>'L',
      +64036=>'L',
      +64037=>'L',
      +64038=>'L',
      +64039=>'L',
      +64040=>'L',
      +64041=>'L',
      +64042=>'L',
      +64043=>'L',
      +64044=>'L',
      +64045=>'L',
      +64048=>'L',
      +64049=>'L',
      +64050=>'L',
      +64051=>'L',
      +64052=>'L',
      +64053=>'L',
      +64054=>'L',
      +64055=>'L',
      +64056=>'L',
      +64057=>'L',
      +64058=>'L',
      +64059=>'L',
      +64060=>'L',
      +64061=>'L',
      +64062=>'L',
      +64063=>'L',
      +64064=>'L',
      +64065=>'L',
      +64066=>'L',
      +64067=>'L',
      +64068=>'L',
      +64069=>'L',
      +64070=>'L',
      +64071=>'L',
      +64072=>'L',
      +64073=>'L',
      +64074=>'L',
      +64075=>'L',
      +64076=>'L',
      +64077=>'L',
      +64078=>'L',
      +64079=>'L',
      +64080=>'L',
      +64081=>'L',
      +64082=>'L',
      +64083=>'L',
      +64084=>'L',
      +64085=>'L',
      +64086=>'L',
      +64087=>'L',
      +64088=>'L',
      +64089=>'L',
      +64090=>'L',
      +64091=>'L',
      +64092=>'L',
      +64093=>'L',
      +64094=>'L',
      +64095=>'L',
      +64096=>'L',
      +64097=>'L',
      +64098=>'L',
      +64099=>'L',
      +64100=>'L',
      +64101=>'L',
      +64102=>'L',
      +64103=>'L',
      +64104=>'L',
      +64105=>'L',
      +64106=>'L',
      +64112=>'L',
      +64113=>'L',
      +64114=>'L',
      +64115=>'L',
      +64116=>'L',
      +64117=>'L',
      +64118=>'L',
      +64119=>'L',
      +64120=>'L',
      +64121=>'L',
      +64122=>'L',
      +64123=>'L',
      +64124=>'L',
      +64125=>'L',
      +64126=>'L',
      +64127=>'L',
      +64128=>'L',
      +64129=>'L',
      +64130=>'L',
      +64131=>'L',
      +64132=>'L',
      +64133=>'L',
      +64134=>'L',
      +64135=>'L',
      +64136=>'L',
      +64137=>'L',
      +64138=>'L',
      +64139=>'L',
      +64140=>'L',
      +64141=>'L',
      +64142=>'L',
      +64143=>'L',
      +64144=>'L',
      +64145=>'L',
      +64146=>'L',
      +64147=>'L',
      +64148=>'L',
      +64149=>'L',
      +64150=>'L',
      +64151=>'L',
      +64152=>'L',
      +64153=>'L',
      +64154=>'L',
      +64155=>'L',
      +64156=>'L',
      +64157=>'L',
      +64158=>'L',
      +64159=>'L',
      +64160=>'L',
      +64161=>'L',
      +64162=>'L',
      +64163=>'L',
      +64164=>'L',
      +64165=>'L',
      +64166=>'L',
      +64167=>'L',
      +64168=>'L',
      +64169=>'L',
      +64170=>'L',
      +64171=>'L',
      +64172=>'L',
      +64173=>'L',
      +64174=>'L',
      +64175=>'L',
      +64176=>'L',
      +64177=>'L',
      +64178=>'L',
      +64179=>'L',
      +64180=>'L',
      +64181=>'L',
      +64182=>'L',
      +64183=>'L',
      +64184=>'L',
      +64185=>'L',
      +64186=>'L',
      +64187=>'L',
      +64188=>'L',
      +64189=>'L',
      +64190=>'L',
      +64191=>'L',
      +64192=>'L',
      +64193=>'L',
      +64194=>'L',
      +64195=>'L',
      +64196=>'L',
      +64197=>'L',
      +64198=>'L',
      +64199=>'L',
      +64200=>'L',
      +64201=>'L',
      +64202=>'L',
      +64203=>'L',
      +64204=>'L',
      +64205=>'L',
      +64206=>'L',
      +64207=>'L',
      +64208=>'L',
      +64209=>'L',
      +64210=>'L',
      +64211=>'L',
      +64212=>'L',
      +64213=>'L',
      +64214=>'L',
      +64215=>'L',
      +64216=>'L',
      +64217=>'L',
      +64256=>'L',
      +64257=>'L',
      +64258=>'L',
      +64259=>'L',
      +64260=>'L',
      +64261=>'L',
      +64262=>'L',
      +64275=>'L',
      +64276=>'L',
      +64277=>'L',
      +64278=>'L',
      +64279=>'L',
      +64285=>'R',
      +64286=>'NSM',
      +64287=>'R',
      +64288=>'R',
      +64289=>'R',
      +64290=>'R',
      +64291=>'R',
      +64292=>'R',
      +64293=>'R',
      +64294=>'R',
      +64295=>'R',
      +64296=>'R',
      +64297=>'ES',
      +64298=>'R',
      +64299=>'R',
      +64300=>'R',
      +64301=>'R',
      +64302=>'R',
      +64303=>'R',
      +64304=>'R',
      +64305=>'R',
      +64306=>'R',
      +64307=>'R',
      +64308=>'R',
      +64309=>'R',
      +64310=>'R',
      +64312=>'R',
      +64313=>'R',
      +64314=>'R',
      +64315=>'R',
      +64316=>'R',
      +64318=>'R',
      +64320=>'R',
      +64321=>'R',
      +64323=>'R',
      +64324=>'R',
      +64326=>'R',
      +64327=>'R',
      +64328=>'R',
      +64329=>'R',
      +64330=>'R',
      +64331=>'R',
      +64332=>'R',
      +64333=>'R',
      +64334=>'R',
      +64335=>'R',
      +64336=>'AL',
      +64337=>'AL',
      +64338=>'AL',
      +64339=>'AL',
      +64340=>'AL',
      +64341=>'AL',
      +64342=>'AL',
      +64343=>'AL',
      +64344=>'AL',
      +64345=>'AL',
      +64346=>'AL',
      +64347=>'AL',
      +64348=>'AL',
      +64349=>'AL',
      +64350=>'AL',
      +64351=>'AL',
      +64352=>'AL',
      +64353=>'AL',
      +64354=>'AL',
      +64355=>'AL',
      +64356=>'AL',
      +64357=>'AL',
      +64358=>'AL',
      +64359=>'AL',
      +64360=>'AL',
      +64361=>'AL',
      +64362=>'AL',
      +64363=>'AL',
      +64364=>'AL',
      +64365=>'AL',
      +64366=>'AL',
      +64367=>'AL',
      +64368=>'AL',
      +64369=>'AL',
      +64370=>'AL',
      +64371=>'AL',
      +64372=>'AL',
      +64373=>'AL',
      +64374=>'AL',
      +64375=>'AL',
      +64376=>'AL',
      +64377=>'AL',
      +64378=>'AL',
      +64379=>'AL',
      +64380=>'AL',
      +64381=>'AL',
      +64382=>'AL',
      +64383=>'AL',
      +64384=>'AL',
      +64385=>'AL',
      +64386=>'AL',
      +64387=>'AL',
      +64388=>'AL',
      +64389=>'AL',
      +64390=>'AL',
      +64391=>'AL',
      +64392=>'AL',
      +64393=>'AL',
      +64394=>'AL',
      +64395=>'AL',
      +64396=>'AL',
      +64397=>'AL',
      +64398=>'AL',
      +64399=>'AL',
      +64400=>'AL',
      +64401=>'AL',
      +64402=>'AL',
      +64403=>'AL',
      +64404=>'AL',
      +64405=>'AL',
      +64406=>'AL',
      +64407=>'AL',
      +64408=>'AL',
      +64409=>'AL',
      +64410=>'AL',
      +64411=>'AL',
      +64412=>'AL',
      +64413=>'AL',
      +64414=>'AL',
      +64415=>'AL',
      +64416=>'AL',
      +64417=>'AL',
      +64418=>'AL',
      +64419=>'AL',
      +64420=>'AL',
      +64421=>'AL',
      +64422=>'AL',
      +64423=>'AL',
      +64424=>'AL',
      +64425=>'AL',
      +64426=>'AL',
      +64427=>'AL',
      +64428=>'AL',
      +64429=>'AL',
      +64430=>'AL',
      +64431=>'AL',
      +64432=>'AL',
      +64433=>'AL',
      +64467=>'AL',
      +64468=>'AL',
      +64469=>'AL',
      +64470=>'AL',
      +64471=>'AL',
      +64472=>'AL',
      +64473=>'AL',
      +64474=>'AL',
      +64475=>'AL',
      +64476=>'AL',
      +64477=>'AL',
      +64478=>'AL',
      +64479=>'AL',
      +64480=>'AL',
      +64481=>'AL',
      +64482=>'AL',
      +64483=>'AL',
      +64484=>'AL',
      +64485=>'AL',
      +64486=>'AL',
      +64487=>'AL',
      +64488=>'AL',
      +64489=>'AL',
      +64490=>'AL',
      +64491=>'AL',
      +64492=>'AL',
      +64493=>'AL',
      +64494=>'AL',
      +64495=>'AL',
      +64496=>'AL',
      +64497=>'AL',
      +64498=>'AL',
      +64499=>'AL',
      +64500=>'AL',
      +64501=>'AL',
      +64502=>'AL',
      +64503=>'AL',
      +64504=>'AL',
      +64505=>'AL',
      +64506=>'AL',
      +64507=>'AL',
      +64508=>'AL',
      +64509=>'AL',
      +64510=>'AL',
      +64511=>'AL',
      +64512=>'AL',
      +64513=>'AL',
      +64514=>'AL',
      +64515=>'AL',
      +64516=>'AL',
      +64517=>'AL',
      +64518=>'AL',
      +64519=>'AL',
      +64520=>'AL',
      +64521=>'AL',
      +64522=>'AL',
      +64523=>'AL',
      +64524=>'AL',
      +64525=>'AL',
      +64526=>'AL',
      +64527=>'AL',
      +64528=>'AL',
      +64529=>'AL',
      +64530=>'AL',
      +64531=>'AL',
      +64532=>'AL',
      +64533=>'AL',
      +64534=>'AL',
      +64535=>'AL',
      +64536=>'AL',
      +64537=>'AL',
      +64538=>'AL',
      +64539=>'AL',
      +64540=>'AL',
      +64541=>'AL',
      +64542=>'AL',
      +64543=>'AL',
      +64544=>'AL',
      +64545=>'AL',
      +64546=>'AL',
      +64547=>'AL',
      +64548=>'AL',
      +64549=>'AL',
      +64550=>'AL',
      +64551=>'AL',
      +64552=>'AL',
      +64553=>'AL',
      +64554=>'AL',
      +64555=>'AL',
      +64556=>'AL',
      +64557=>'AL',
      +64558=>'AL',
      +64559=>'AL',
      +64560=>'AL',
      +64561=>'AL',
      +64562=>'AL',
      +64563=>'AL',
      +64564=>'AL',
      +64565=>'AL',
      +64566=>'AL',
      +64567=>'AL',
      +64568=>'AL',
      +64569=>'AL',
      +64570=>'AL',
      +64571=>'AL',
      +64572=>'AL',
      +64573=>'AL',
      +64574=>'AL',
      +64575=>'AL',
      +64576=>'AL',
      +64577=>'AL',
      +64578=>'AL',
      +64579=>'AL',
      +64580=>'AL',
      +64581=>'AL',
      +64582=>'AL',
      +64583=>'AL',
      +64584=>'AL',
      +64585=>'AL',
      +64586=>'AL',
      +64587=>'AL',
      +64588=>'AL',
      +64589=>'AL',
      +64590=>'AL',
      +64591=>'AL',
      +64592=>'AL',
      +64593=>'AL',
      +64594=>'AL',
      +64595=>'AL',
      +64596=>'AL',
      +64597=>'AL',
      +64598=>'AL',
      +64599=>'AL',
      +64600=>'AL',
      +64601=>'AL',
      +64602=>'AL',
      +64603=>'AL',
      +64604=>'AL',
      +64605=>'AL',
      +64606=>'AL',
      +64607=>'AL',
      +64608=>'AL',
      +64609=>'AL',
      +64610=>'AL',
      +64611=>'AL',
      +64612=>'AL',
      +64613=>'AL',
      +64614=>'AL',
      +64615=>'AL',
      +64616=>'AL',
      +64617=>'AL',
      +64618=>'AL',
      +64619=>'AL',
      +64620=>'AL',
      +64621=>'AL',
      +64622=>'AL',
      +64623=>'AL',
      +64624=>'AL',
      +64625=>'AL',
      +64626=>'AL',
      +64627=>'AL',
      +64628=>'AL',
      +64629=>'AL',
      +64630=>'AL',
      +64631=>'AL',
      +64632=>'AL',
      +64633=>'AL',
      +64634=>'AL',
      +64635=>'AL',
      +64636=>'AL',
      +64637=>'AL',
      +64638=>'AL',
      +64639=>'AL',
      +64640=>'AL',
      +64641=>'AL',
      +64642=>'AL',
      +64643=>'AL',
      +64644=>'AL',
      +64645=>'AL',
      +64646=>'AL',
      +64647=>'AL',
      +64648=>'AL',
      +64649=>'AL',
      +64650=>'AL',
      +64651=>'AL',
      +64652=>'AL',
      +64653=>'AL',
      +64654=>'AL',
      +64655=>'AL',
      +64656=>'AL',
      +64657=>'AL',
      +64658=>'AL',
      +64659=>'AL',
      +64660=>'AL',
      +64661=>'AL',
      +64662=>'AL',
      +64663=>'AL',
      +64664=>'AL',
      +64665=>'AL',
      +64666=>'AL',
      +64667=>'AL',
      +64668=>'AL',
      +64669=>'AL',
      +64670=>'AL',
      +64671=>'AL',
      +64672=>'AL',
      +64673=>'AL',
      +64674=>'AL',
      +64675=>'AL',
      +64676=>'AL',
      +64677=>'AL',
      +64678=>'AL',
      +64679=>'AL',
      +64680=>'AL',
      +64681=>'AL',
      +64682=>'AL',
      +64683=>'AL',
      +64684=>'AL',
      +64685=>'AL',
      +64686=>'AL',
      +64687=>'AL',
      +64688=>'AL',
      +64689=>'AL',
      +64690=>'AL',
      +64691=>'AL',
      +64692=>'AL',
      +64693=>'AL',
      +64694=>'AL',
      +64695=>'AL',
      +64696=>'AL',
      +64697=>'AL',
      +64698=>'AL',
      +64699=>'AL',
      +64700=>'AL',
      +64701=>'AL',
      +64702=>'AL',
      +64703=>'AL',
      +64704=>'AL',
      +64705=>'AL',
      +64706=>'AL',
      +64707=>'AL',
      +64708=>'AL',
      +64709=>'AL',
      +64710=>'AL',
      +64711=>'AL',
      +64712=>'AL',
      +64713=>'AL',
      +64714=>'AL',
      +64715=>'AL',
      +64716=>'AL',
      +64717=>'AL',
      +64718=>'AL',
      +64719=>'AL',
      +64720=>'AL',
      +64721=>'AL',
      +64722=>'AL',
      +64723=>'AL',
      +64724=>'AL',
      +64725=>'AL',
      +64726=>'AL',
      +64727=>'AL',
      +64728=>'AL',
      +64729=>'AL',
      +64730=>'AL',
      +64731=>'AL',
      +64732=>'AL',
      +64733=>'AL',
      +64734=>'AL',
      +64735=>'AL',
      +64736=>'AL',
      +64737=>'AL',
      +64738=>'AL',
      +64739=>'AL',
      +64740=>'AL',
      +64741=>'AL',
      +64742=>'AL',
      +64743=>'AL',
      +64744=>'AL',
      +64745=>'AL',
      +64746=>'AL',
      +64747=>'AL',
      +64748=>'AL',
      +64749=>'AL',
      +64750=>'AL',
      +64751=>'AL',
      +64752=>'AL',
      +64753=>'AL',
      +64754=>'AL',
      +64755=>'AL',
      +64756=>'AL',
      +64757=>'AL',
      +64758=>'AL',
      +64759=>'AL',
      +64760=>'AL',
      +64761=>'AL',
      +64762=>'AL',
      +64763=>'AL',
      +64764=>'AL',
      +64765=>'AL',
      +64766=>'AL',
      +64767=>'AL',
      +64768=>'AL',
      +64769=>'AL',
      +64770=>'AL',
      +64771=>'AL',
      +64772=>'AL',
      +64773=>'AL',
      +64774=>'AL',
      +64775=>'AL',
      +64776=>'AL',
      +64777=>'AL',
      +64778=>'AL',
      +64779=>'AL',
      +64780=>'AL',
      +64781=>'AL',
      +64782=>'AL',
      +64783=>'AL',
      +64784=>'AL',
      +64785=>'AL',
      +64786=>'AL',
      +64787=>'AL',
      +64788=>'AL',
      +64789=>'AL',
      +64790=>'AL',
      +64791=>'AL',
      +64792=>'AL',
      +64793=>'AL',
      +64794=>'AL',
      +64795=>'AL',
      +64796=>'AL',
      +64797=>'AL',
      +64798=>'AL',
      +64799=>'AL',
      +64800=>'AL',
      +64801=>'AL',
      +64802=>'AL',
      +64803=>'AL',
      +64804=>'AL',
      +64805=>'AL',
      +64806=>'AL',
      +64807=>'AL',
      +64808=>'AL',
      +64809=>'AL',
      +64810=>'AL',
      +64811=>'AL',
      +64812=>'AL',
      +64813=>'AL',
      +64814=>'AL',
      +64815=>'AL',
      +64816=>'AL',
      +64817=>'AL',
      +64818=>'AL',
      +64819=>'AL',
      +64820=>'AL',
      +64821=>'AL',
      +64822=>'AL',
      +64823=>'AL',
      +64824=>'AL',
      +64825=>'AL',
      +64826=>'AL',
      +64827=>'AL',
      +64828=>'AL',
      +64829=>'AL',
      +64830=>'ON',
      +64831=>'ON',
      +64848=>'AL',
      +64849=>'AL',
      +64850=>'AL',
      +64851=>'AL',
      +64852=>'AL',
      +64853=>'AL',
      +64854=>'AL',
      +64855=>'AL',
      +64856=>'AL',
      +64857=>'AL',
      +64858=>'AL',
      +64859=>'AL',
      +64860=>'AL',
      +64861=>'AL',
      +64862=>'AL',
      +64863=>'AL',
      +64864=>'AL',
      +64865=>'AL',
      +64866=>'AL',
      +64867=>'AL',
      +64868=>'AL',
      +64869=>'AL',
      +64870=>'AL',
      +64871=>'AL',
      +64872=>'AL',
      +64873=>'AL',
      +64874=>'AL',
      +64875=>'AL',
      +64876=>'AL',
      +64877=>'AL',
      +64878=>'AL',
      +64879=>'AL',
      +64880=>'AL',
      +64881=>'AL',
      +64882=>'AL',
      +64883=>'AL',
      +64884=>'AL',
      +64885=>'AL',
      +64886=>'AL',
      +64887=>'AL',
      +64888=>'AL',
      +64889=>'AL',
      +64890=>'AL',
      +64891=>'AL',
      +64892=>'AL',
      +64893=>'AL',
      +64894=>'AL',
      +64895=>'AL',
      +64896=>'AL',
      +64897=>'AL',
      +64898=>'AL',
      +64899=>'AL',
      +64900=>'AL',
      +64901=>'AL',
      +64902=>'AL',
      +64903=>'AL',
      +64904=>'AL',
      +64905=>'AL',
      +64906=>'AL',
      +64907=>'AL',
      +64908=>'AL',
      +64909=>'AL',
      +64910=>'AL',
      +64911=>'AL',
      +64914=>'AL',
      +64915=>'AL',
      +64916=>'AL',
      +64917=>'AL',
      +64918=>'AL',
      +64919=>'AL',
      +64920=>'AL',
      +64921=>'AL',
      +64922=>'AL',
      +64923=>'AL',
      +64924=>'AL',
      +64925=>'AL',
      +64926=>'AL',
      +64927=>'AL',
      +64928=>'AL',
      +64929=>'AL',
      +64930=>'AL',
      +64931=>'AL',
      +64932=>'AL',
      +64933=>'AL',
      +64934=>'AL',
      +64935=>'AL',
      +64936=>'AL',
      +64937=>'AL',
      +64938=>'AL',
      +64939=>'AL',
      +64940=>'AL',
      +64941=>'AL',
      +64942=>'AL',
      +64943=>'AL',
      +64944=>'AL',
      +64945=>'AL',
      +64946=>'AL',
      +64947=>'AL',
      +64948=>'AL',
      +64949=>'AL',
      +64950=>'AL',
      +64951=>'AL',
      +64952=>'AL',
      +64953=>'AL',
      +64954=>'AL',
      +64955=>'AL',
      +64956=>'AL',
      +64957=>'AL',
      +64958=>'AL',
      +64959=>'AL',
      +64960=>'AL',
      +64961=>'AL',
      +64962=>'AL',
      +64963=>'AL',
      +64964=>'AL',
      +64965=>'AL',
      +64966=>'AL',
      +64967=>'AL',
      +65008=>'AL',
      +65009=>'AL',
      +65010=>'AL',
      +65011=>'AL',
      +65012=>'AL',
      +65013=>'AL',
      +65014=>'AL',
      +65015=>'AL',
      +65016=>'AL',
      +65017=>'AL',
      +65018=>'AL',
      +65019=>'AL',
      +65020=>'AL',
      +65021=>'ON',
      +65024=>'NSM',
      +65025=>'NSM',
      +65026=>'NSM',
      +65027=>'NSM',
      +65028=>'NSM',
      +65029=>'NSM',
      +65030=>'NSM',
      +65031=>'NSM',
      +65032=>'NSM',
      +65033=>'NSM',
      +65034=>'NSM',
      +65035=>'NSM',
      +65036=>'NSM',
      +65037=>'NSM',
      +65038=>'NSM',
      +65039=>'NSM',
      +65040=>'ON',
      +65041=>'ON',
      +65042=>'ON',
      +65043=>'ON',
      +65044=>'ON',
      +65045=>'ON',
      +65046=>'ON',
      +65047=>'ON',
      +65048=>'ON',
      +65049=>'ON',
      +65056=>'NSM',
      +65057=>'NSM',
      +65058=>'NSM',
      +65059=>'NSM',
      +65072=>'ON',
      +65073=>'ON',
      +65074=>'ON',
      +65075=>'ON',
      +65076=>'ON',
      +65077=>'ON',
      +65078=>'ON',
      +65079=>'ON',
      +65080=>'ON',
      +65081=>'ON',
      +65082=>'ON',
      +65083=>'ON',
      +65084=>'ON',
      +65085=>'ON',
      +65086=>'ON',
      +65087=>'ON',
      +65088=>'ON',
      +65089=>'ON',
      +65090=>'ON',
      +65091=>'ON',
      +65092=>'ON',
      +65093=>'ON',
      +65094=>'ON',
      +65095=>'ON',
      +65096=>'ON',
      +65097=>'ON',
      +65098=>'ON',
      +65099=>'ON',
      +65100=>'ON',
      +65101=>'ON',
      +65102=>'ON',
      +65103=>'ON',
      +65104=>'CS',
      +65105=>'ON',
      +65106=>'CS',
      +65108=>'ON',
      +65109=>'CS',
      +65110=>'ON',
      +65111=>'ON',
      +65112=>'ON',
      +65113=>'ON',
      +65114=>'ON',
      +65115=>'ON',
      +65116=>'ON',
      +65117=>'ON',
      +65118=>'ON',
      +65119=>'ET',
      +65120=>'ON',
      +65121=>'ON',
      +65122=>'ES',
      +65123=>'ES',
      +65124=>'ON',
      +65125=>'ON',
      +65126=>'ON',
      +65128=>'ON',
      +65129=>'ET',
      +65130=>'ET',
      +65131=>'ON',
      +65136=>'AL',
      +65137=>'AL',
      +65138=>'AL',
      +65139=>'AL',
      +65140=>'AL',
      +65142=>'AL',
      +65143=>'AL',
      +65144=>'AL',
      +65145=>'AL',
      +65146=>'AL',
      +65147=>'AL',
      +65148=>'AL',
      +65149=>'AL',
      +65150=>'AL',
      +65151=>'AL',
      +65152=>'AL',
      +65153=>'AL',
      +65154=>'AL',
      +65155=>'AL',
      +65156=>'AL',
      +65157=>'AL',
      +65158=>'AL',
      +65159=>'AL',
      +65160=>'AL',
      +65161=>'AL',
      +65162=>'AL',
      +65163=>'AL',
      +65164=>'AL',
      +65165=>'AL',
      +65166=>'AL',
      +65167=>'AL',
      +65168=>'AL',
      +65169=>'AL',
      +65170=>'AL',
      +65171=>'AL',
      +65172=>'AL',
      +65173=>'AL',
      +65174=>'AL',
      +65175=>'AL',
      +65176=>'AL',
      +65177=>'AL',
      +65178=>'AL',
      +65179=>'AL',
      +65180=>'AL',
      +65181=>'AL',
      +65182=>'AL',
      +65183=>'AL',
      +65184=>'AL',
      +65185=>'AL',
      +65186=>'AL',
      +65187=>'AL',
      +65188=>'AL',
      +65189=>'AL',
      +65190=>'AL',
      +65191=>'AL',
      +65192=>'AL',
      +65193=>'AL',
      +65194=>'AL',
      +65195=>'AL',
      +65196=>'AL',
      +65197=>'AL',
      +65198=>'AL',
      +65199=>'AL',
      +65200=>'AL',
      +65201=>'AL',
      +65202=>'AL',
      +65203=>'AL',
      +65204=>'AL',
      +65205=>'AL',
      +65206=>'AL',
      +65207=>'AL',
      +65208=>'AL',
      +65209=>'AL',
      +65210=>'AL',
      +65211=>'AL',
      +65212=>'AL',
      +65213=>'AL',
      +65214=>'AL',
      +65215=>'AL',
      +65216=>'AL',
      +65217=>'AL',
      +65218=>'AL',
      +65219=>'AL',
      +65220=>'AL',
      +65221=>'AL',
      +65222=>'AL',
      +65223=>'AL',
      +65224=>'AL',
      +65225=>'AL',
      +65226=>'AL',
      +65227=>'AL',
      +65228=>'AL',
      +65229=>'AL',
      +65230=>'AL',
      +65231=>'AL',
      +65232=>'AL',
      +65233=>'AL',
      +65234=>'AL',
      +65235=>'AL',
      +65236=>'AL',
      +65237=>'AL',
      +65238=>'AL',
      +65239=>'AL',
      +65240=>'AL',
      +65241=>'AL',
      +65242=>'AL',
      +65243=>'AL',
      +65244=>'AL',
      +65245=>'AL',
      +65246=>'AL',
      +65247=>'AL',
      +65248=>'AL',
      +65249=>'AL',
      +65250=>'AL',
      +65251=>'AL',
      +65252=>'AL',
      +65253=>'AL',
      +65254=>'AL',
      +65255=>'AL',
      +65256=>'AL',
      +65257=>'AL',
      +65258=>'AL',
      +65259=>'AL',
      +65260=>'AL',
      +65261=>'AL',
      +65262=>'AL',
      +65263=>'AL',
      +65264=>'AL',
      +65265=>'AL',
      +65266=>'AL',
      +65267=>'AL',
      +65268=>'AL',
      +65269=>'AL',
      +65270=>'AL',
      +65271=>'AL',
      +65272=>'AL',
      +65273=>'AL',
      +65274=>'AL',
      +65275=>'AL',
      +65276=>'AL',
      +65279=>'BN',
      +65281=>'ON',
      +65282=>'ON',
      +65283=>'ET',
      +65284=>'ET',
      +65285=>'ET',
      +65286=>'ON',
      +65287=>'ON',
      +65288=>'ON',
      +65289=>'ON',
      +65290=>'ON',
      +65291=>'ES',
      +65292=>'CS',
      +65293=>'ES',
      +65294=>'CS',
      +65295=>'CS',
      +65296=>'EN',
      +65297=>'EN',
      +65298=>'EN',
      +65299=>'EN',
      +65300=>'EN',
      +65301=>'EN',
      +65302=>'EN',
      +65303=>'EN',
      +65304=>'EN',
      +65305=>'EN',
      +65306=>'CS',
      +65307=>'ON',
      +65308=>'ON',
      +65309=>'ON',
      +65310=>'ON',
      +65311=>'ON',
      +65312=>'ON',
      +65313=>'L',
      +65314=>'L',
      +65315=>'L',
      +65316=>'L',
      +65317=>'L',
      +65318=>'L',
      +65319=>'L',
      +65320=>'L',
      +65321=>'L',
      +65322=>'L',
      +65323=>'L',
      +65324=>'L',
      +65325=>'L',
      +65326=>'L',
      +65327=>'L',
      +65328=>'L',
      +65329=>'L',
      +65330=>'L',
      +65331=>'L',
      +65332=>'L',
      +65333=>'L',
      +65334=>'L',
      +65335=>'L',
      +65336=>'L',
      +65337=>'L',
      +65338=>'L',
      +65339=>'ON',
      +65340=>'ON',
      +65341=>'ON',
      +65342=>'ON',
      +65343=>'ON',
      +65344=>'ON',
      +65345=>'L',
      +65346=>'L',
      +65347=>'L',
      +65348=>'L',
      +65349=>'L',
      +65350=>'L',
      +65351=>'L',
      +65352=>'L',
      +65353=>'L',
      +65354=>'L',
      +65355=>'L',
      +65356=>'L',
      +65357=>'L',
      +65358=>'L',
      +65359=>'L',
      +65360=>'L',
      +65361=>'L',
      +65362=>'L',
      +65363=>'L',
      +65364=>'L',
      +65365=>'L',
      +65366=>'L',
      +65367=>'L',
      +65368=>'L',
      +65369=>'L',
      +65370=>'L',
      +65371=>'ON',
      +65372=>'ON',
      +65373=>'ON',
      +65374=>'ON',
      +65375=>'ON',
      +65376=>'ON',
      +65377=>'ON',
      +65378=>'ON',
      +65379=>'ON',
      +65380=>'ON',
      +65381=>'ON',
      +65382=>'L',
      +65383=>'L',
      +65384=>'L',
      +65385=>'L',
      +65386=>'L',
      +65387=>'L',
      +65388=>'L',
      +65389=>'L',
      +65390=>'L',
      +65391=>'L',
      +65392=>'L',
      +65393=>'L',
      +65394=>'L',
      +65395=>'L',
      +65396=>'L',
      +65397=>'L',
      +65398=>'L',
      +65399=>'L',
      +65400=>'L',
      +65401=>'L',
      +65402=>'L',
      +65403=>'L',
      +65404=>'L',
      +65405=>'L',
      +65406=>'L',
      +65407=>'L',
      +65408=>'L',
      +65409=>'L',
      +65410=>'L',
      +65411=>'L',
      +65412=>'L',
      +65413=>'L',
      +65414=>'L',
      +65415=>'L',
      +65416=>'L',
      +65417=>'L',
      +65418=>'L',
      +65419=>'L',
      +65420=>'L',
      +65421=>'L',
      +65422=>'L',
      +65423=>'L',
      +65424=>'L',
      +65425=>'L',
      +65426=>'L',
      +65427=>'L',
      +65428=>'L',
      +65429=>'L',
      +65430=>'L',
      +65431=>'L',
      +65432=>'L',
      +65433=>'L',
      +65434=>'L',
      +65435=>'L',
      +65436=>'L',
      +65437=>'L',
      +65438=>'L',
      +65439=>'L',
      +65440=>'L',
      +65441=>'L',
      +65442=>'L',
      +65443=>'L',
      +65444=>'L',
      +65445=>'L',
      +65446=>'L',
      +65447=>'L',
      +65448=>'L',
      +65449=>'L',
      +65450=>'L',
      +65451=>'L',
      +65452=>'L',
      +65453=>'L',
      +65454=>'L',
      +65455=>'L',
      +65456=>'L',
      +65457=>'L',
      +65458=>'L',
      +65459=>'L',
      +65460=>'L',
      +65461=>'L',
      +65462=>'L',
      +65463=>'L',
      +65464=>'L',
      +65465=>'L',
      +65466=>'L',
      +65467=>'L',
      +65468=>'L',
      +65469=>'L',
      +65470=>'L',
      +65474=>'L',
      +65475=>'L',
      +65476=>'L',
      +65477=>'L',
      +65478=>'L',
      +65479=>'L',
      +65482=>'L',
      +65483=>'L',
      +65484=>'L',
      +65485=>'L',
      +65486=>'L',
      +65487=>'L',
      +65490=>'L',
      +65491=>'L',
      +65492=>'L',
      +65493=>'L',
      +65494=>'L',
      +65495=>'L',
      +65498=>'L',
      +65499=>'L',
      +65500=>'L',
      +65504=>'ET',
      +65505=>'ET',
      +65506=>'ON',
      +65507=>'ON',
      +65508=>'ON',
      +65509=>'ET',
      +65510=>'ET',
      +65512=>'ON',
      +65513=>'ON',
      +65514=>'ON',
      +65515=>'ON',
      +65516=>'ON',
      +65517=>'ON',
      +65518=>'ON',
      +65529=>'ON',
      +65530=>'ON',
      +65531=>'ON',
      +65532=>'ON',
      +65533=>'ON',
      +65536=>'L',
      +65537=>'L',
      +65538=>'L',
      +65539=>'L',
      +65540=>'L',
      +65541=>'L',
      +65542=>'L',
      +65543=>'L',
      +65544=>'L',
      +65545=>'L',
      +65546=>'L',
      +65547=>'L',
      +65549=>'L',
      +65550=>'L',
      +65551=>'L',
      +65552=>'L',
      +65553=>'L',
      +65554=>'L',
      +65555=>'L',
      +65556=>'L',
      +65557=>'L',
      +65558=>'L',
      +65559=>'L',
      +65560=>'L',
      +65561=>'L',
      +65562=>'L',
      +65563=>'L',
      +65564=>'L',
      +65565=>'L',
      +65566=>'L',
      +65567=>'L',
      +65568=>'L',
      +65569=>'L',
      +65570=>'L',
      +65571=>'L',
      +65572=>'L',
      +65573=>'L',
      +65574=>'L',
      +65576=>'L',
      +65577=>'L',
      +65578=>'L',
      +65579=>'L',
      +65580=>'L',
      +65581=>'L',
      +65582=>'L',
      +65583=>'L',
      +65584=>'L',
      +65585=>'L',
      +65586=>'L',
      +65587=>'L',
      +65588=>'L',
      +65589=>'L',
      +65590=>'L',
      +65591=>'L',
      +65592=>'L',
      +65593=>'L',
      +65594=>'L',
      +65596=>'L',
      +65597=>'L',
      +65599=>'L',
      +65600=>'L',
      +65601=>'L',
      +65602=>'L',
      +65603=>'L',
      +65604=>'L',
      +65605=>'L',
      +65606=>'L',
      +65607=>'L',
      +65608=>'L',
      +65609=>'L',
      +65610=>'L',
      +65611=>'L',
      +65612=>'L',
      +65613=>'L',
      +65616=>'L',
      +65617=>'L',
      +65618=>'L',
      +65619=>'L',
      +65620=>'L',
      +65621=>'L',
      +65622=>'L',
      +65623=>'L',
      +65624=>'L',
      +65625=>'L',
      +65626=>'L',
      +65627=>'L',
      +65628=>'L',
      +65629=>'L',
      +65664=>'L',
      +65665=>'L',
      +65666=>'L',
      +65667=>'L',
      +65668=>'L',
      +65669=>'L',
      +65670=>'L',
      +65671=>'L',
      +65672=>'L',
      +65673=>'L',
      +65674=>'L',
      +65675=>'L',
      +65676=>'L',
      +65677=>'L',
      +65678=>'L',
      +65679=>'L',
      +65680=>'L',
      +65681=>'L',
      +65682=>'L',
      +65683=>'L',
      +65684=>'L',
      +65685=>'L',
      +65686=>'L',
      +65687=>'L',
      +65688=>'L',
      +65689=>'L',
      +65690=>'L',
      +65691=>'L',
      +65692=>'L',
      +65693=>'L',
      +65694=>'L',
      +65695=>'L',
      +65696=>'L',
      +65697=>'L',
      +65698=>'L',
      +65699=>'L',
      +65700=>'L',
      +65701=>'L',
      +65702=>'L',
      +65703=>'L',
      +65704=>'L',
      +65705=>'L',
      +65706=>'L',
      +65707=>'L',
      +65708=>'L',
      +65709=>'L',
      +65710=>'L',
      +65711=>'L',
      +65712=>'L',
      +65713=>'L',
      +65714=>'L',
      +65715=>'L',
      +65716=>'L',
      +65717=>'L',
      +65718=>'L',
      +65719=>'L',
      +65720=>'L',
      +65721=>'L',
      +65722=>'L',
      +65723=>'L',
      +65724=>'L',
      +65725=>'L',
      +65726=>'L',
      +65727=>'L',
      +65728=>'L',
      +65729=>'L',
      +65730=>'L',
      +65731=>'L',
      +65732=>'L',
      +65733=>'L',
      +65734=>'L',
      +65735=>'L',
      +65736=>'L',
      +65737=>'L',
      +65738=>'L',
      +65739=>'L',
      +65740=>'L',
      +65741=>'L',
      +65742=>'L',
      +65743=>'L',
      +65744=>'L',
      +65745=>'L',
      +65746=>'L',
      +65747=>'L',
      +65748=>'L',
      +65749=>'L',
      +65750=>'L',
      +65751=>'L',
      +65752=>'L',
      +65753=>'L',
      +65754=>'L',
      +65755=>'L',
      +65756=>'L',
      +65757=>'L',
      +65758=>'L',
      +65759=>'L',
      +65760=>'L',
      +65761=>'L',
      +65762=>'L',
      +65763=>'L',
      +65764=>'L',
      +65765=>'L',
      +65766=>'L',
      +65767=>'L',
      +65768=>'L',
      +65769=>'L',
      +65770=>'L',
      +65771=>'L',
      +65772=>'L',
      +65773=>'L',
      +65774=>'L',
      +65775=>'L',
      +65776=>'L',
      +65777=>'L',
      +65778=>'L',
      +65779=>'L',
      +65780=>'L',
      +65781=>'L',
      +65782=>'L',
      +65783=>'L',
      +65784=>'L',
      +65785=>'L',
      +65786=>'L',
      +65792=>'L',
      +65793=>'ON',
      +65794=>'L',
      +65799=>'L',
      +65800=>'L',
      +65801=>'L',
      +65802=>'L',
      +65803=>'L',
      +65804=>'L',
      +65805=>'L',
      +65806=>'L',
      +65807=>'L',
      +65808=>'L',
      +65809=>'L',
      +65810=>'L',
      +65811=>'L',
      +65812=>'L',
      +65813=>'L',
      +65814=>'L',
      +65815=>'L',
      +65816=>'L',
      +65817=>'L',
      +65818=>'L',
      +65819=>'L',
      +65820=>'L',
      +65821=>'L',
      +65822=>'L',
      +65823=>'L',
      +65824=>'L',
      +65825=>'L',
      +65826=>'L',
      +65827=>'L',
      +65828=>'L',
      +65829=>'L',
      +65830=>'L',
      +65831=>'L',
      +65832=>'L',
      +65833=>'L',
      +65834=>'L',
      +65835=>'L',
      +65836=>'L',
      +65837=>'L',
      +65838=>'L',
      +65839=>'L',
      +65840=>'L',
      +65841=>'L',
      +65842=>'L',
      +65843=>'L',
      +65847=>'L',
      +65848=>'L',
      +65849=>'L',
      +65850=>'L',
      +65851=>'L',
      +65852=>'L',
      +65853=>'L',
      +65854=>'L',
      +65855=>'L',
      +65856=>'ON',
      +65857=>'ON',
      +65858=>'ON',
      +65859=>'ON',
      +65860=>'ON',
      +65861=>'ON',
      +65862=>'ON',
      +65863=>'ON',
      +65864=>'ON',
      +65865=>'ON',
      +65866=>'ON',
      +65867=>'ON',
      +65868=>'ON',
      +65869=>'ON',
      +65870=>'ON',
      +65871=>'ON',
      +65872=>'ON',
      +65873=>'ON',
      +65874=>'ON',
      +65875=>'ON',
      +65876=>'ON',
      +65877=>'ON',
      +65878=>'ON',
      +65879=>'ON',
      +65880=>'ON',
      +65881=>'ON',
      +65882=>'ON',
      +65883=>'ON',
      +65884=>'ON',
      +65885=>'ON',
      +65886=>'ON',
      +65887=>'ON',
      +65888=>'ON',
      +65889=>'ON',
      +65890=>'ON',
      +65891=>'ON',
      +65892=>'ON',
      +65893=>'ON',
      +65894=>'ON',
      +65895=>'ON',
      +65896=>'ON',
      +65897=>'ON',
      +65898=>'ON',
      +65899=>'ON',
      +65900=>'ON',
      +65901=>'ON',
      +65902=>'ON',
      +65903=>'ON',
      +65904=>'ON',
      +65905=>'ON',
      +65906=>'ON',
      +65907=>'ON',
      +65908=>'ON',
      +65909=>'ON',
      +65910=>'ON',
      +65911=>'ON',
      +65912=>'ON',
      +65913=>'ON',
      +65914=>'ON',
      +65915=>'ON',
      +65916=>'ON',
      +65917=>'ON',
      +65918=>'ON',
      +65919=>'ON',
      +65920=>'ON',
      +65921=>'ON',
      +65922=>'ON',
      +65923=>'ON',
      +65924=>'ON',
      +65925=>'ON',
      +65926=>'ON',
      +65927=>'ON',
      +65928=>'ON',
      +65929=>'ON',
      +65930=>'ON',
      +66304=>'L',
      +66305=>'L',
      +66306=>'L',
      +66307=>'L',
      +66308=>'L',
      +66309=>'L',
      +66310=>'L',
      +66311=>'L',
      +66312=>'L',
      +66313=>'L',
      +66314=>'L',
      +66315=>'L',
      +66316=>'L',
      +66317=>'L',
      +66318=>'L',
      +66319=>'L',
      +66320=>'L',
      +66321=>'L',
      +66322=>'L',
      +66323=>'L',
      +66324=>'L',
      +66325=>'L',
      +66326=>'L',
      +66327=>'L',
      +66328=>'L',
      +66329=>'L',
      +66330=>'L',
      +66331=>'L',
      +66332=>'L',
      +66333=>'L',
      +66334=>'L',
      +66336=>'L',
      +66337=>'L',
      +66338=>'L',
      +66339=>'L',
      +66352=>'L',
      +66353=>'L',
      +66354=>'L',
      +66355=>'L',
      +66356=>'L',
      +66357=>'L',
      +66358=>'L',
      +66359=>'L',
      +66360=>'L',
      +66361=>'L',
      +66362=>'L',
      +66363=>'L',
      +66364=>'L',
      +66365=>'L',
      +66366=>'L',
      +66367=>'L',
      +66368=>'L',
      +66369=>'L',
      +66370=>'L',
      +66371=>'L',
      +66372=>'L',
      +66373=>'L',
      +66374=>'L',
      +66375=>'L',
      +66376=>'L',
      +66377=>'L',
      +66378=>'L',
      +66432=>'L',
      +66433=>'L',
      +66434=>'L',
      +66435=>'L',
      +66436=>'L',
      +66437=>'L',
      +66438=>'L',
      +66439=>'L',
      +66440=>'L',
      +66441=>'L',
      +66442=>'L',
      +66443=>'L',
      +66444=>'L',
      +66445=>'L',
      +66446=>'L',
      +66447=>'L',
      +66448=>'L',
      +66449=>'L',
      +66450=>'L',
      +66451=>'L',
      +66452=>'L',
      +66453=>'L',
      +66454=>'L',
      +66455=>'L',
      +66456=>'L',
      +66457=>'L',
      +66458=>'L',
      +66459=>'L',
      +66460=>'L',
      +66461=>'L',
      +66463=>'L',
      +66464=>'L',
      +66465=>'L',
      +66466=>'L',
      +66467=>'L',
      +66468=>'L',
      +66469=>'L',
      +66470=>'L',
      +66471=>'L',
      +66472=>'L',
      +66473=>'L',
      +66474=>'L',
      +66475=>'L',
      +66476=>'L',
      +66477=>'L',
      +66478=>'L',
      +66479=>'L',
      +66480=>'L',
      +66481=>'L',
      +66482=>'L',
      +66483=>'L',
      +66484=>'L',
      +66485=>'L',
      +66486=>'L',
      +66487=>'L',
      +66488=>'L',
      +66489=>'L',
      +66490=>'L',
      +66491=>'L',
      +66492=>'L',
      +66493=>'L',
      +66494=>'L',
      +66495=>'L',
      +66496=>'L',
      +66497=>'L',
      +66498=>'L',
      +66499=>'L',
      +66504=>'L',
      +66505=>'L',
      +66506=>'L',
      +66507=>'L',
      +66508=>'L',
      +66509=>'L',
      +66510=>'L',
      +66511=>'L',
      +66512=>'L',
      +66513=>'L',
      +66514=>'L',
      +66515=>'L',
      +66516=>'L',
      +66517=>'L',
      +66560=>'L',
      +66561=>'L',
      +66562=>'L',
      +66563=>'L',
      +66564=>'L',
      +66565=>'L',
      +66566=>'L',
      +66567=>'L',
      +66568=>'L',
      +66569=>'L',
      +66570=>'L',
      +66571=>'L',
      +66572=>'L',
      +66573=>'L',
      +66574=>'L',
      +66575=>'L',
      +66576=>'L',
      +66577=>'L',
      +66578=>'L',
      +66579=>'L',
      +66580=>'L',
      +66581=>'L',
      +66582=>'L',
      +66583=>'L',
      +66584=>'L',
      +66585=>'L',
      +66586=>'L',
      +66587=>'L',
      +66588=>'L',
      +66589=>'L',
      +66590=>'L',
      +66591=>'L',
      +66592=>'L',
      +66593=>'L',
      +66594=>'L',
      +66595=>'L',
      +66596=>'L',
      +66597=>'L',
      +66598=>'L',
      +66599=>'L',
      +66600=>'L',
      +66601=>'L',
      +66602=>'L',
      +66603=>'L',
      +66604=>'L',
      +66605=>'L',
      +66606=>'L',
      +66607=>'L',
      +66608=>'L',
      +66609=>'L',
      +66610=>'L',
      +66611=>'L',
      +66612=>'L',
      +66613=>'L',
      +66614=>'L',
      +66615=>'L',
      +66616=>'L',
      +66617=>'L',
      +66618=>'L',
      +66619=>'L',
      +66620=>'L',
      +66621=>'L',
      +66622=>'L',
      +66623=>'L',
      +66624=>'L',
      +66625=>'L',
      +66626=>'L',
      +66627=>'L',
      +66628=>'L',
      +66629=>'L',
      +66630=>'L',
      +66631=>'L',
      +66632=>'L',
      +66633=>'L',
      +66634=>'L',
      +66635=>'L',
      +66636=>'L',
      +66637=>'L',
      +66638=>'L',
      +66639=>'L',
      +66640=>'L',
      +66641=>'L',
      +66642=>'L',
      +66643=>'L',
      +66644=>'L',
      +66645=>'L',
      +66646=>'L',
      +66647=>'L',
      +66648=>'L',
      +66649=>'L',
      +66650=>'L',
      +66651=>'L',
      +66652=>'L',
      +66653=>'L',
      +66654=>'L',
      +66655=>'L',
      +66656=>'L',
      +66657=>'L',
      +66658=>'L',
      +66659=>'L',
      +66660=>'L',
      +66661=>'L',
      +66662=>'L',
      +66663=>'L',
      +66664=>'L',
      +66665=>'L',
      +66666=>'L',
      +66667=>'L',
      +66668=>'L',
      +66669=>'L',
      +66670=>'L',
      +66671=>'L',
      +66672=>'L',
      +66673=>'L',
      +66674=>'L',
      +66675=>'L',
      +66676=>'L',
      +66677=>'L',
      +66678=>'L',
      +66679=>'L',
      +66680=>'L',
      +66681=>'L',
      +66682=>'L',
      +66683=>'L',
      +66684=>'L',
      +66685=>'L',
      +66686=>'L',
      +66687=>'L',
      +66688=>'L',
      +66689=>'L',
      +66690=>'L',
      +66691=>'L',
      +66692=>'L',
      +66693=>'L',
      +66694=>'L',
      +66695=>'L',
      +66696=>'L',
      +66697=>'L',
      +66698=>'L',
      +66699=>'L',
      +66700=>'L',
      +66701=>'L',
      +66702=>'L',
      +66703=>'L',
      +66704=>'L',
      +66705=>'L',
      +66706=>'L',
      +66707=>'L',
      +66708=>'L',
      +66709=>'L',
      +66710=>'L',
      +66711=>'L',
      +66712=>'L',
      +66713=>'L',
      +66714=>'L',
      +66715=>'L',
      +66716=>'L',
      +66717=>'L',
      +66720=>'L',
      +66721=>'L',
      +66722=>'L',
      +66723=>'L',
      +66724=>'L',
      +66725=>'L',
      +66726=>'L',
      +66727=>'L',
      +66728=>'L',
      +66729=>'L',
      +67584=>'R',
      +67585=>'R',
      +67586=>'R',
      +67587=>'R',
      +67588=>'R',
      +67589=>'R',
      +67592=>'R',
      +67594=>'R',
      +67595=>'R',
      +67596=>'R',
      +67597=>'R',
      +67598=>'R',
      +67599=>'R',
      +67600=>'R',
      +67601=>'R',
      +67602=>'R',
      +67603=>'R',
      +67604=>'R',
      +67605=>'R',
      +67606=>'R',
      +67607=>'R',
      +67608=>'R',
      +67609=>'R',
      +67610=>'R',
      +67611=>'R',
      +67612=>'R',
      +67613=>'R',
      +67614=>'R',
      +67615=>'R',
      +67616=>'R',
      +67617=>'R',
      +67618=>'R',
      +67619=>'R',
      +67620=>'R',
      +67621=>'R',
      +67622=>'R',
      +67623=>'R',
      +67624=>'R',
      +67625=>'R',
      +67626=>'R',
      +67627=>'R',
      +67628=>'R',
      +67629=>'R',
      +67630=>'R',
      +67631=>'R',
      +67632=>'R',
      +67633=>'R',
      +67634=>'R',
      +67635=>'R',
      +67636=>'R',
      +67637=>'R',
      +67639=>'R',
      +67640=>'R',
      +67644=>'R',
      +67647=>'R',
      +67840=>'R',
      +67841=>'R',
      +67842=>'R',
      +67843=>'R',
      +67844=>'R',
      +67845=>'R',
      +67846=>'R',
      +67847=>'R',
      +67848=>'R',
      +67849=>'R',
      +67850=>'R',
      +67851=>'R',
      +67852=>'R',
      +67853=>'R',
      +67854=>'R',
      +67855=>'R',
      +67856=>'R',
      +67857=>'R',
      +67858=>'R',
      +67859=>'R',
      +67860=>'R',
      +67861=>'R',
      +67862=>'R',
      +67863=>'R',
      +67864=>'R',
      +67865=>'R',
      +67871=>'ON',
      +68096=>'R',
      +68097=>'NSM',
      +68098=>'NSM',
      +68099=>'NSM',
      +68101=>'NSM',
      +68102=>'NSM',
      +68108=>'NSM',
      +68109=>'NSM',
      +68110=>'NSM',
      +68111=>'NSM',
      +68112=>'R',
      +68113=>'R',
      +68114=>'R',
      +68115=>'R',
      +68117=>'R',
      +68118=>'R',
      +68119=>'R',
      +68121=>'R',
      +68122=>'R',
      +68123=>'R',
      +68124=>'R',
      +68125=>'R',
      +68126=>'R',
      +68127=>'R',
      +68128=>'R',
      +68129=>'R',
      +68130=>'R',
      +68131=>'R',
      +68132=>'R',
      +68133=>'R',
      +68134=>'R',
      +68135=>'R',
      +68136=>'R',
      +68137=>'R',
      +68138=>'R',
      +68139=>'R',
      +68140=>'R',
      +68141=>'R',
      +68142=>'R',
      +68143=>'R',
      +68144=>'R',
      +68145=>'R',
      +68146=>'R',
      +68147=>'R',
      +68152=>'NSM',
      +68153=>'NSM',
      +68154=>'NSM',
      +68159=>'NSM',
      +68160=>'R',
      +68161=>'R',
      +68162=>'R',
      +68163=>'R',
      +68164=>'R',
      +68165=>'R',
      +68166=>'R',
      +68167=>'R',
      +68176=>'R',
      +68177=>'R',
      +68178=>'R',
      +68179=>'R',
      +68180=>'R',
      +68181=>'R',
      +68182=>'R',
      +68183=>'R',
      +68184=>'R',
      +73728=>'L',
      +73729=>'L',
      +73730=>'L',
      +73731=>'L',
      +73732=>'L',
      +73733=>'L',
      +73734=>'L',
      +73735=>'L',
      +73736=>'L',
      +73737=>'L',
      +73738=>'L',
      +73739=>'L',
      +73740=>'L',
      +73741=>'L',
      +73742=>'L',
      +73743=>'L',
      +73744=>'L',
      +73745=>'L',
      +73746=>'L',
      +73747=>'L',
      +73748=>'L',
      +73749=>'L',
      +73750=>'L',
      +73751=>'L',
      +73752=>'L',
      +73753=>'L',
      +73754=>'L',
      +73755=>'L',
      +73756=>'L',
      +73757=>'L',
      +73758=>'L',
      +73759=>'L',
      +73760=>'L',
      +73761=>'L',
      +73762=>'L',
      +73763=>'L',
      +73764=>'L',
      +73765=>'L',
      +73766=>'L',
      +73767=>'L',
      +73768=>'L',
      +73769=>'L',
      +73770=>'L',
      +73771=>'L',
      +73772=>'L',
      +73773=>'L',
      +73774=>'L',
      +73775=>'L',
      +73776=>'L',
      +73777=>'L',
      +73778=>'L',
      +73779=>'L',
      +73780=>'L',
      +73781=>'L',
      +73782=>'L',
      +73783=>'L',
      +73784=>'L',
      +73785=>'L',
      +73786=>'L',
      +73787=>'L',
      +73788=>'L',
      +73789=>'L',
      +73790=>'L',
      +73791=>'L',
      +73792=>'L',
      +73793=>'L',
      +73794=>'L',
      +73795=>'L',
      +73796=>'L',
      +73797=>'L',
      +73798=>'L',
      +73799=>'L',
      +73800=>'L',
      +73801=>'L',
      +73802=>'L',
      +73803=>'L',
      +73804=>'L',
      +73805=>'L',
      +73806=>'L',
      +73807=>'L',
      +73808=>'L',
      +73809=>'L',
      +73810=>'L',
      +73811=>'L',
      +73812=>'L',
      +73813=>'L',
      +73814=>'L',
      +73815=>'L',
      +73816=>'L',
      +73817=>'L',
      +73818=>'L',
      +73819=>'L',
      +73820=>'L',
      +73821=>'L',
      +73822=>'L',
      +73823=>'L',
      +73824=>'L',
      +73825=>'L',
      +73826=>'L',
      +73827=>'L',
      +73828=>'L',
      +73829=>'L',
      +73830=>'L',
      +73831=>'L',
      +73832=>'L',
      +73833=>'L',
      +73834=>'L',
      +73835=>'L',
      +73836=>'L',
      +73837=>'L',
      +73838=>'L',
      +73839=>'L',
      +73840=>'L',
      +73841=>'L',
      +73842=>'L',
      +73843=>'L',
      +73844=>'L',
      +73845=>'L',
      +73846=>'L',
      +73847=>'L',
      +73848=>'L',
      +73849=>'L',
      +73850=>'L',
      +73851=>'L',
      +73852=>'L',
      +73853=>'L',
      +73854=>'L',
      +73855=>'L',
      +73856=>'L',
      +73857=>'L',
      +73858=>'L',
      +73859=>'L',
      +73860=>'L',
      +73861=>'L',
      +73862=>'L',
      +73863=>'L',
      +73864=>'L',
      +73865=>'L',
      +73866=>'L',
      +73867=>'L',
      +73868=>'L',
      +73869=>'L',
      +73870=>'L',
      +73871=>'L',
      +73872=>'L',
      +73873=>'L',
      +73874=>'L',
      +73875=>'L',
      +73876=>'L',
      +73877=>'L',
      +73878=>'L',
      +73879=>'L',
      +73880=>'L',
      +73881=>'L',
      +73882=>'L',
      +73883=>'L',
      +73884=>'L',
      +73885=>'L',
      +73886=>'L',
      +73887=>'L',
      +73888=>'L',
      +73889=>'L',
      +73890=>'L',
      +73891=>'L',
      +73892=>'L',
      +73893=>'L',
      +73894=>'L',
      +73895=>'L',
      +73896=>'L',
      +73897=>'L',
      +73898=>'L',
      +73899=>'L',
      +73900=>'L',
      +73901=>'L',
      +73902=>'L',
      +73903=>'L',
      +73904=>'L',
      +73905=>'L',
      +73906=>'L',
      +73907=>'L',
      +73908=>'L',
      +73909=>'L',
      +73910=>'L',
      +73911=>'L',
      +73912=>'L',
      +73913=>'L',
      +73914=>'L',
      +73915=>'L',
      +73916=>'L',
      +73917=>'L',
      +73918=>'L',
      +73919=>'L',
      +73920=>'L',
      +73921=>'L',
      +73922=>'L',
      +73923=>'L',
      +73924=>'L',
      +73925=>'L',
      +73926=>'L',
      +73927=>'L',
      +73928=>'L',
      +73929=>'L',
      +73930=>'L',
      +73931=>'L',
      +73932=>'L',
      +73933=>'L',
      +73934=>'L',
      +73935=>'L',
      +73936=>'L',
      +73937=>'L',
      +73938=>'L',
      +73939=>'L',
      +73940=>'L',
      +73941=>'L',
      +73942=>'L',
      +73943=>'L',
      +73944=>'L',
      +73945=>'L',
      +73946=>'L',
      +73947=>'L',
      +73948=>'L',
      +73949=>'L',
      +73950=>'L',
      +73951=>'L',
      +73952=>'L',
      +73953=>'L',
      +73954=>'L',
      +73955=>'L',
      +73956=>'L',
      +73957=>'L',
      +73958=>'L',
      +73959=>'L',
      +73960=>'L',
      +73961=>'L',
      +73962=>'L',
      +73963=>'L',
      +73964=>'L',
      +73965=>'L',
      +73966=>'L',
      +73967=>'L',
      +73968=>'L',
      +73969=>'L',
      +73970=>'L',
      +73971=>'L',
      +73972=>'L',
      +73973=>'L',
      +73974=>'L',
      +73975=>'L',
      +73976=>'L',
      +73977=>'L',
      +73978=>'L',
      +73979=>'L',
      +73980=>'L',
      +73981=>'L',
      +73982=>'L',
      +73983=>'L',
      +73984=>'L',
      +73985=>'L',
      +73986=>'L',
      +73987=>'L',
      +73988=>'L',
      +73989=>'L',
      +73990=>'L',
      +73991=>'L',
      +73992=>'L',
      +73993=>'L',
      +73994=>'L',
      +73995=>'L',
      +73996=>'L',
      +73997=>'L',
      +73998=>'L',
      +73999=>'L',
      +74000=>'L',
      +74001=>'L',
      +74002=>'L',
      +74003=>'L',
      +74004=>'L',
      +74005=>'L',
      +74006=>'L',
      +74007=>'L',
      +74008=>'L',
      +74009=>'L',
      +74010=>'L',
      +74011=>'L',
      +74012=>'L',
      +74013=>'L',
      +74014=>'L',
      +74015=>'L',
      +74016=>'L',
      +74017=>'L',
      +74018=>'L',
      +74019=>'L',
      +74020=>'L',
      +74021=>'L',
      +74022=>'L',
      +74023=>'L',
      +74024=>'L',
      +74025=>'L',
      +74026=>'L',
      +74027=>'L',
      +74028=>'L',
      +74029=>'L',
      +74030=>'L',
      +74031=>'L',
      +74032=>'L',
      +74033=>'L',
      +74034=>'L',
      +74035=>'L',
      +74036=>'L',
      +74037=>'L',
      +74038=>'L',
      +74039=>'L',
      +74040=>'L',
      +74041=>'L',
      +74042=>'L',
      +74043=>'L',
      +74044=>'L',
      +74045=>'L',
      +74046=>'L',
      +74047=>'L',
      +74048=>'L',
      +74049=>'L',
      +74050=>'L',
      +74051=>'L',
      +74052=>'L',
      +74053=>'L',
      +74054=>'L',
      +74055=>'L',
      +74056=>'L',
      +74057=>'L',
      +74058=>'L',
      +74059=>'L',
      +74060=>'L',
      +74061=>'L',
      +74062=>'L',
      +74063=>'L',
      +74064=>'L',
      +74065=>'L',
      +74066=>'L',
      +74067=>'L',
      +74068=>'L',
      +74069=>'L',
      +74070=>'L',
      +74071=>'L',
      +74072=>'L',
      +74073=>'L',
      +74074=>'L',
      +74075=>'L',
      +74076=>'L',
      +74077=>'L',
      +74078=>'L',
      +74079=>'L',
      +74080=>'L',
      +74081=>'L',
      +74082=>'L',
      +74083=>'L',
      +74084=>'L',
      +74085=>'L',
      +74086=>'L',
      +74087=>'L',
      +74088=>'L',
      +74089=>'L',
      +74090=>'L',
      +74091=>'L',
      +74092=>'L',
      +74093=>'L',
      +74094=>'L',
      +74095=>'L',
      +74096=>'L',
      +74097=>'L',
      +74098=>'L',
      +74099=>'L',
      +74100=>'L',
      +74101=>'L',
      +74102=>'L',
      +74103=>'L',
      +74104=>'L',
      +74105=>'L',
      +74106=>'L',
      +74107=>'L',
      +74108=>'L',
      +74109=>'L',
      +74110=>'L',
      +74111=>'L',
      +74112=>'L',
      +74113=>'L',
      +74114=>'L',
      +74115=>'L',
      +74116=>'L',
      +74117=>'L',
      +74118=>'L',
      +74119=>'L',
      +74120=>'L',
      +74121=>'L',
      +74122=>'L',
      +74123=>'L',
      +74124=>'L',
      +74125=>'L',
      +74126=>'L',
      +74127=>'L',
      +74128=>'L',
      +74129=>'L',
      +74130=>'L',
      +74131=>'L',
      +74132=>'L',
      +74133=>'L',
      +74134=>'L',
      +74135=>'L',
      +74136=>'L',
      +74137=>'L',
      +74138=>'L',
      +74139=>'L',
      +74140=>'L',
      +74141=>'L',
      +74142=>'L',
      +74143=>'L',
      +74144=>'L',
      +74145=>'L',
      +74146=>'L',
      +74147=>'L',
      +74148=>'L',
      +74149=>'L',
      +74150=>'L',
      +74151=>'L',
      +74152=>'L',
      +74153=>'L',
      +74154=>'L',
      +74155=>'L',
      +74156=>'L',
      +74157=>'L',
      +74158=>'L',
      +74159=>'L',
      +74160=>'L',
      +74161=>'L',
      +74162=>'L',
      +74163=>'L',
      +74164=>'L',
      +74165=>'L',
      +74166=>'L',
      +74167=>'L',
      +74168=>'L',
      +74169=>'L',
      +74170=>'L',
      +74171=>'L',
      +74172=>'L',
      +74173=>'L',
      +74174=>'L',
      +74175=>'L',
      +74176=>'L',
      +74177=>'L',
      +74178=>'L',
      +74179=>'L',
      +74180=>'L',
      +74181=>'L',
      +74182=>'L',
      +74183=>'L',
      +74184=>'L',
      +74185=>'L',
      +74186=>'L',
      +74187=>'L',
      +74188=>'L',
      +74189=>'L',
      +74190=>'L',
      +74191=>'L',
      +74192=>'L',
      +74193=>'L',
      +74194=>'L',
      +74195=>'L',
      +74196=>'L',
      +74197=>'L',
      +74198=>'L',
      +74199=>'L',
      +74200=>'L',
      +74201=>'L',
      +74202=>'L',
      +74203=>'L',
      +74204=>'L',
      +74205=>'L',
      +74206=>'L',
      +74207=>'L',
      +74208=>'L',
      +74209=>'L',
      +74210=>'L',
      +74211=>'L',
      +74212=>'L',
      +74213=>'L',
      +74214=>'L',
      +74215=>'L',
      +74216=>'L',
      +74217=>'L',
      +74218=>'L',
      +74219=>'L',
      +74220=>'L',
      +74221=>'L',
      +74222=>'L',
      +74223=>'L',
      +74224=>'L',
      +74225=>'L',
      +74226=>'L',
      +74227=>'L',
      +74228=>'L',
      +74229=>'L',
      +74230=>'L',
      +74231=>'L',
      +74232=>'L',
      +74233=>'L',
      +74234=>'L',
      +74235=>'L',
      +74236=>'L',
      +74237=>'L',
      +74238=>'L',
      +74239=>'L',
      +74240=>'L',
      +74241=>'L',
      +74242=>'L',
      +74243=>'L',
      +74244=>'L',
      +74245=>'L',
      +74246=>'L',
      +74247=>'L',
      +74248=>'L',
      +74249=>'L',
      +74250=>'L',
      +74251=>'L',
      +74252=>'L',
      +74253=>'L',
      +74254=>'L',
      +74255=>'L',
      +74256=>'L',
      +74257=>'L',
      +74258=>'L',
      +74259=>'L',
      +74260=>'L',
      +74261=>'L',
      +74262=>'L',
      +74263=>'L',
      +74264=>'L',
      +74265=>'L',
      +74266=>'L',
      +74267=>'L',
      +74268=>'L',
      +74269=>'L',
      +74270=>'L',
      +74271=>'L',
      +74272=>'L',
      +74273=>'L',
      +74274=>'L',
      +74275=>'L',
      +74276=>'L',
      +74277=>'L',
      +74278=>'L',
      +74279=>'L',
      +74280=>'L',
      +74281=>'L',
      +74282=>'L',
      +74283=>'L',
      +74284=>'L',
      +74285=>'L',
      +74286=>'L',
      +74287=>'L',
      +74288=>'L',
      +74289=>'L',
      +74290=>'L',
      +74291=>'L',
      +74292=>'L',
      +74293=>'L',
      +74294=>'L',
      +74295=>'L',
      +74296=>'L',
      +74297=>'L',
      +74298=>'L',
      +74299=>'L',
      +74300=>'L',
      +74301=>'L',
      +74302=>'L',
      +74303=>'L',
      +74304=>'L',
      +74305=>'L',
      +74306=>'L',
      +74307=>'L',
      +74308=>'L',
      +74309=>'L',
      +74310=>'L',
      +74311=>'L',
      +74312=>'L',
      +74313=>'L',
      +74314=>'L',
      +74315=>'L',
      +74316=>'L',
      +74317=>'L',
      +74318=>'L',
      +74319=>'L',
      +74320=>'L',
      +74321=>'L',
      +74322=>'L',
      +74323=>'L',
      +74324=>'L',
      +74325=>'L',
      +74326=>'L',
      +74327=>'L',
      +74328=>'L',
      +74329=>'L',
      +74330=>'L',
      +74331=>'L',
      +74332=>'L',
      +74333=>'L',
      +74334=>'L',
      +74335=>'L',
      +74336=>'L',
      +74337=>'L',
      +74338=>'L',
      +74339=>'L',
      +74340=>'L',
      +74341=>'L',
      +74342=>'L',
      +74343=>'L',
      +74344=>'L',
      +74345=>'L',
      +74346=>'L',
      +74347=>'L',
      +74348=>'L',
      +74349=>'L',
      +74350=>'L',
      +74351=>'L',
      +74352=>'L',
      +74353=>'L',
      +74354=>'L',
      +74355=>'L',
      +74356=>'L',
      +74357=>'L',
      +74358=>'L',
      +74359=>'L',
      +74360=>'L',
      +74361=>'L',
      +74362=>'L',
      +74363=>'L',
      +74364=>'L',
      +74365=>'L',
      +74366=>'L',
      +74367=>'L',
      +74368=>'L',
      +74369=>'L',
      +74370=>'L',
      +74371=>'L',
      +74372=>'L',
      +74373=>'L',
      +74374=>'L',
      +74375=>'L',
      +74376=>'L',
      +74377=>'L',
      +74378=>'L',
      +74379=>'L',
      +74380=>'L',
      +74381=>'L',
      +74382=>'L',
      +74383=>'L',
      +74384=>'L',
      +74385=>'L',
      +74386=>'L',
      +74387=>'L',
      +74388=>'L',
      +74389=>'L',
      +74390=>'L',
      +74391=>'L',
      +74392=>'L',
      +74393=>'L',
      +74394=>'L',
      +74395=>'L',
      +74396=>'L',
      +74397=>'L',
      +74398=>'L',
      +74399=>'L',
      +74400=>'L',
      +74401=>'L',
      +74402=>'L',
      +74403=>'L',
      +74404=>'L',
      +74405=>'L',
      +74406=>'L',
      +74407=>'L',
      +74408=>'L',
      +74409=>'L',
      +74410=>'L',
      +74411=>'L',
      +74412=>'L',
      +74413=>'L',
      +74414=>'L',
      +74415=>'L',
      +74416=>'L',
      +74417=>'L',
      +74418=>'L',
      +74419=>'L',
      +74420=>'L',
      +74421=>'L',
      +74422=>'L',
      +74423=>'L',
      +74424=>'L',
      +74425=>'L',
      +74426=>'L',
      +74427=>'L',
      +74428=>'L',
      +74429=>'L',
      +74430=>'L',
      +74431=>'L',
      +74432=>'L',
      +74433=>'L',
      +74434=>'L',
      +74435=>'L',
      +74436=>'L',
      +74437=>'L',
      +74438=>'L',
      +74439=>'L',
      +74440=>'L',
      +74441=>'L',
      +74442=>'L',
      +74443=>'L',
      +74444=>'L',
      +74445=>'L',
      +74446=>'L',
      +74447=>'L',
      +74448=>'L',
      +74449=>'L',
      +74450=>'L',
      +74451=>'L',
      +74452=>'L',
      +74453=>'L',
      +74454=>'L',
      +74455=>'L',
      +74456=>'L',
      +74457=>'L',
      +74458=>'L',
      +74459=>'L',
      +74460=>'L',
      +74461=>'L',
      +74462=>'L',
      +74463=>'L',
      +74464=>'L',
      +74465=>'L',
      +74466=>'L',
      +74467=>'L',
      +74468=>'L',
      +74469=>'L',
      +74470=>'L',
      +74471=>'L',
      +74472=>'L',
      +74473=>'L',
      +74474=>'L',
      +74475=>'L',
      +74476=>'L',
      +74477=>'L',
      +74478=>'L',
      +74479=>'L',
      +74480=>'L',
      +74481=>'L',
      +74482=>'L',
      +74483=>'L',
      +74484=>'L',
      +74485=>'L',
      +74486=>'L',
      +74487=>'L',
      +74488=>'L',
      +74489=>'L',
      +74490=>'L',
      +74491=>'L',
      +74492=>'L',
      +74493=>'L',
      +74494=>'L',
      +74495=>'L',
      +74496=>'L',
      +74497=>'L',
      +74498=>'L',
      +74499=>'L',
      +74500=>'L',
      +74501=>'L',
      +74502=>'L',
      +74503=>'L',
      +74504=>'L',
      +74505=>'L',
      +74506=>'L',
      +74507=>'L',
      +74508=>'L',
      +74509=>'L',
      +74510=>'L',
      +74511=>'L',
      +74512=>'L',
      +74513=>'L',
      +74514=>'L',
      +74515=>'L',
      +74516=>'L',
      +74517=>'L',
      +74518=>'L',
      +74519=>'L',
      +74520=>'L',
      +74521=>'L',
      +74522=>'L',
      +74523=>'L',
      +74524=>'L',
      +74525=>'L',
      +74526=>'L',
      +74527=>'L',
      +74528=>'L',
      +74529=>'L',
      +74530=>'L',
      +74531=>'L',
      +74532=>'L',
      +74533=>'L',
      +74534=>'L',
      +74535=>'L',
      +74536=>'L',
      +74537=>'L',
      +74538=>'L',
      +74539=>'L',
      +74540=>'L',
      +74541=>'L',
      +74542=>'L',
      +74543=>'L',
      +74544=>'L',
      +74545=>'L',
      +74546=>'L',
      +74547=>'L',
      +74548=>'L',
      +74549=>'L',
      +74550=>'L',
      +74551=>'L',
      +74552=>'L',
      +74553=>'L',
      +74554=>'L',
      +74555=>'L',
      +74556=>'L',
      +74557=>'L',
      +74558=>'L',
      +74559=>'L',
      +74560=>'L',
      +74561=>'L',
      +74562=>'L',
      +74563=>'L',
      +74564=>'L',
      +74565=>'L',
      +74566=>'L',
      +74567=>'L',
      +74568=>'L',
      +74569=>'L',
      +74570=>'L',
      +74571=>'L',
      +74572=>'L',
      +74573=>'L',
      +74574=>'L',
      +74575=>'L',
      +74576=>'L',
      +74577=>'L',
      +74578=>'L',
      +74579=>'L',
      +74580=>'L',
      +74581=>'L',
      +74582=>'L',
      +74583=>'L',
      +74584=>'L',
      +74585=>'L',
      +74586=>'L',
      +74587=>'L',
      +74588=>'L',
      +74589=>'L',
      +74590=>'L',
      +74591=>'L',
      +74592=>'L',
      +74593=>'L',
      +74594=>'L',
      +74595=>'L',
      +74596=>'L',
      +74597=>'L',
      +74598=>'L',
      +74599=>'L',
      +74600=>'L',
      +74601=>'L',
      +74602=>'L',
      +74603=>'L',
      +74604=>'L',
      +74605=>'L',
      +74606=>'L',
      +74752=>'L',
      +74753=>'L',
      +74754=>'L',
      +74755=>'L',
      +74756=>'L',
      +74757=>'L',
      +74758=>'L',
      +74759=>'L',
      +74760=>'L',
      +74761=>'L',
      +74762=>'L',
      +74763=>'L',
      +74764=>'L',
      +74765=>'L',
      +74766=>'L',
      +74767=>'L',
      +74768=>'L',
      +74769=>'L',
      +74770=>'L',
      +74771=>'L',
      +74772=>'L',
      +74773=>'L',
      +74774=>'L',
      +74775=>'L',
      +74776=>'L',
      +74777=>'L',
      +74778=>'L',
      +74779=>'L',
      +74780=>'L',
      +74781=>'L',
      +74782=>'L',
      +74783=>'L',
      +74784=>'L',
      +74785=>'L',
      +74786=>'L',
      +74787=>'L',
      +74788=>'L',
      +74789=>'L',
      +74790=>'L',
      +74791=>'L',
      +74792=>'L',
      +74793=>'L',
      +74794=>'L',
      +74795=>'L',
      +74796=>'L',
      +74797=>'L',
      +74798=>'L',
      +74799=>'L',
      +74800=>'L',
      +74801=>'L',
      +74802=>'L',
      +74803=>'L',
      +74804=>'L',
      +74805=>'L',
      +74806=>'L',
      +74807=>'L',
      +74808=>'L',
      +74809=>'L',
      +74810=>'L',
      +74811=>'L',
      +74812=>'L',
      +74813=>'L',
      +74814=>'L',
      +74815=>'L',
      +74816=>'L',
      +74817=>'L',
      +74818=>'L',
      +74819=>'L',
      +74820=>'L',
      +74821=>'L',
      +74822=>'L',
      +74823=>'L',
      +74824=>'L',
      +74825=>'L',
      +74826=>'L',
      +74827=>'L',
      +74828=>'L',
      +74829=>'L',
      +74830=>'L',
      +74831=>'L',
      +74832=>'L',
      +74833=>'L',
      +74834=>'L',
      +74835=>'L',
      +74836=>'L',
      +74837=>'L',
      +74838=>'L',
      +74839=>'L',
      +74840=>'L',
      +74841=>'L',
      +74842=>'L',
      +74843=>'L',
      +74844=>'L',
      +74845=>'L',
      +74846=>'L',
      +74847=>'L',
      +74848=>'L',
      +74849=>'L',
      +74850=>'L',
      +74864=>'L',
      +74865=>'L',
      +74866=>'L',
      +74867=>'L',
      +118784=>'L',
      +118785=>'L',
      +118786=>'L',
      +118787=>'L',
      +118788=>'L',
      +118789=>'L',
      +118790=>'L',
      +118791=>'L',
      +118792=>'L',
      +118793=>'L',
      +118794=>'L',
      +118795=>'L',
      +118796=>'L',
      +118797=>'L',
      +118798=>'L',
      +118799=>'L',
      +118800=>'L',
      +118801=>'L',
      +118802=>'L',
      +118803=>'L',
      +118804=>'L',
      +118805=>'L',
      +118806=>'L',
      +118807=>'L',
      +118808=>'L',
      +118809=>'L',
      +118810=>'L',
      +118811=>'L',
      +118812=>'L',
      +118813=>'L',
      +118814=>'L',
      +118815=>'L',
      +118816=>'L',
      +118817=>'L',
      +118818=>'L',
      +118819=>'L',
      +118820=>'L',
      +118821=>'L',
      +118822=>'L',
      +118823=>'L',
      +118824=>'L',
      +118825=>'L',
      +118826=>'L',
      +118827=>'L',
      +118828=>'L',
      +118829=>'L',
      +118830=>'L',
      +118831=>'L',
      +118832=>'L',
      +118833=>'L',
      +118834=>'L',
      +118835=>'L',
      +118836=>'L',
      +118837=>'L',
      +118838=>'L',
      +118839=>'L',
      +118840=>'L',
      +118841=>'L',
      +118842=>'L',
      +118843=>'L',
      +118844=>'L',
      +118845=>'L',
      +118846=>'L',
      +118847=>'L',
      +118848=>'L',
      +118849=>'L',
      +118850=>'L',
      +118851=>'L',
      +118852=>'L',
      +118853=>'L',
      +118854=>'L',
      +118855=>'L',
      +118856=>'L',
      +118857=>'L',
      +118858=>'L',
      +118859=>'L',
      +118860=>'L',
      +118861=>'L',
      +118862=>'L',
      +118863=>'L',
      +118864=>'L',
      +118865=>'L',
      +118866=>'L',
      +118867=>'L',
      +118868=>'L',
      +118869=>'L',
      +118870=>'L',
      +118871=>'L',
      +118872=>'L',
      +118873=>'L',
      +118874=>'L',
      +118875=>'L',
      +118876=>'L',
      +118877=>'L',
      +118878=>'L',
      +118879=>'L',
      +118880=>'L',
      +118881=>'L',
      +118882=>'L',
      +118883=>'L',
      +118884=>'L',
      +118885=>'L',
      +118886=>'L',
      +118887=>'L',
      +118888=>'L',
      +118889=>'L',
      +118890=>'L',
      +118891=>'L',
      +118892=>'L',
      +118893=>'L',
      +118894=>'L',
      +118895=>'L',
      +118896=>'L',
      +118897=>'L',
      +118898=>'L',
      +118899=>'L',
      +118900=>'L',
      +118901=>'L',
      +118902=>'L',
      +118903=>'L',
      +118904=>'L',
      +118905=>'L',
      +118906=>'L',
      +118907=>'L',
      +118908=>'L',
      +118909=>'L',
      +118910=>'L',
      +118911=>'L',
      +118912=>'L',
      +118913=>'L',
      +118914=>'L',
      +118915=>'L',
      +118916=>'L',
      +118917=>'L',
      +118918=>'L',
      +118919=>'L',
      +118920=>'L',
      +118921=>'L',
      +118922=>'L',
      +118923=>'L',
      +118924=>'L',
      +118925=>'L',
      +118926=>'L',
      +118927=>'L',
      +118928=>'L',
      +118929=>'L',
      +118930=>'L',
      +118931=>'L',
      +118932=>'L',
      +118933=>'L',
      +118934=>'L',
      +118935=>'L',
      +118936=>'L',
      +118937=>'L',
      +118938=>'L',
      +118939=>'L',
      +118940=>'L',
      +118941=>'L',
      +118942=>'L',
      +118943=>'L',
      +118944=>'L',
      +118945=>'L',
      +118946=>'L',
      +118947=>'L',
      +118948=>'L',
      +118949=>'L',
      +118950=>'L',
      +118951=>'L',
      +118952=>'L',
      +118953=>'L',
      +118954=>'L',
      +118955=>'L',
      +118956=>'L',
      +118957=>'L',
      +118958=>'L',
      +118959=>'L',
      +118960=>'L',
      +118961=>'L',
      +118962=>'L',
      +118963=>'L',
      +118964=>'L',
      +118965=>'L',
      +118966=>'L',
      +118967=>'L',
      +118968=>'L',
      +118969=>'L',
      +118970=>'L',
      +118971=>'L',
      +118972=>'L',
      +118973=>'L',
      +118974=>'L',
      +118975=>'L',
      +118976=>'L',
      +118977=>'L',
      +118978=>'L',
      +118979=>'L',
      +118980=>'L',
      +118981=>'L',
      +118982=>'L',
      +118983=>'L',
      +118984=>'L',
      +118985=>'L',
      +118986=>'L',
      +118987=>'L',
      +118988=>'L',
      +118989=>'L',
      +118990=>'L',
      +118991=>'L',
      +118992=>'L',
      +118993=>'L',
      +118994=>'L',
      +118995=>'L',
      +118996=>'L',
      +118997=>'L',
      +118998=>'L',
      +118999=>'L',
      +119000=>'L',
      +119001=>'L',
      +119002=>'L',
      +119003=>'L',
      +119004=>'L',
      +119005=>'L',
      +119006=>'L',
      +119007=>'L',
      +119008=>'L',
      +119009=>'L',
      +119010=>'L',
      +119011=>'L',
      +119012=>'L',
      +119013=>'L',
      +119014=>'L',
      +119015=>'L',
      +119016=>'L',
      +119017=>'L',
      +119018=>'L',
      +119019=>'L',
      +119020=>'L',
      +119021=>'L',
      +119022=>'L',
      +119023=>'L',
      +119024=>'L',
      +119025=>'L',
      +119026=>'L',
      +119027=>'L',
      +119028=>'L',
      +119029=>'L',
      +119040=>'L',
      +119041=>'L',
      +119042=>'L',
      +119043=>'L',
      +119044=>'L',
      +119045=>'L',
      +119046=>'L',
      +119047=>'L',
      +119048=>'L',
      +119049=>'L',
      +119050=>'L',
      +119051=>'L',
      +119052=>'L',
      +119053=>'L',
      +119054=>'L',
      +119055=>'L',
      +119056=>'L',
      +119057=>'L',
      +119058=>'L',
      +119059=>'L',
      +119060=>'L',
      +119061=>'L',
      +119062=>'L',
      +119063=>'L',
      +119064=>'L',
      +119065=>'L',
      +119066=>'L',
      +119067=>'L',
      +119068=>'L',
      +119069=>'L',
      +119070=>'L',
      +119071=>'L',
      +119072=>'L',
      +119073=>'L',
      +119074=>'L',
      +119075=>'L',
      +119076=>'L',
      +119077=>'L',
      +119078=>'L',
      +119082=>'L',
      +119083=>'L',
      +119084=>'L',
      +119085=>'L',
      +119086=>'L',
      +119087=>'L',
      +119088=>'L',
      +119089=>'L',
      +119090=>'L',
      +119091=>'L',
      +119092=>'L',
      +119093=>'L',
      +119094=>'L',
      +119095=>'L',
      +119096=>'L',
      +119097=>'L',
      +119098=>'L',
      +119099=>'L',
      +119100=>'L',
      +119101=>'L',
      +119102=>'L',
      +119103=>'L',
      +119104=>'L',
      +119105=>'L',
      +119106=>'L',
      +119107=>'L',
      +119108=>'L',
      +119109=>'L',
      +119110=>'L',
      +119111=>'L',
      +119112=>'L',
      +119113=>'L',
      +119114=>'L',
      +119115=>'L',
      +119116=>'L',
      +119117=>'L',
      +119118=>'L',
      +119119=>'L',
      +119120=>'L',
      +119121=>'L',
      +119122=>'L',
      +119123=>'L',
      +119124=>'L',
      +119125=>'L',
      +119126=>'L',
      +119127=>'L',
      +119128=>'L',
      +119129=>'L',
      +119130=>'L',
      +119131=>'L',
      +119132=>'L',
      +119133=>'L',
      +119134=>'L',
      +119135=>'L',
      +119136=>'L',
      +119137=>'L',
      +119138=>'L',
      +119139=>'L',
      +119140=>'L',
      +119141=>'L',
      +119142=>'L',
      +119143=>'NSM',
      +119144=>'NSM',
      +119145=>'NSM',
      +119146=>'L',
      +119147=>'L',
      +119148=>'L',
      +119149=>'L',
      +119150=>'L',
      +119151=>'L',
      +119152=>'L',
      +119153=>'L',
      +119154=>'L',
      +119155=>'BN',
      +119156=>'BN',
      +119157=>'BN',
      +119158=>'BN',
      +119159=>'BN',
      +119160=>'BN',
      +119161=>'BN',
      +119162=>'BN',
      +119163=>'NSM',
      +119164=>'NSM',
      +119165=>'NSM',
      +119166=>'NSM',
      +119167=>'NSM',
      +119168=>'NSM',
      +119169=>'NSM',
      +119170=>'NSM',
      +119171=>'L',
      +119172=>'L',
      +119173=>'NSM',
      +119174=>'NSM',
      +119175=>'NSM',
      +119176=>'NSM',
      +119177=>'NSM',
      +119178=>'NSM',
      +119179=>'NSM',
      +119180=>'L',
      +119181=>'L',
      +119182=>'L',
      +119183=>'L',
      +119184=>'L',
      +119185=>'L',
      +119186=>'L',
      +119187=>'L',
      +119188=>'L',
      +119189=>'L',
      +119190=>'L',
      +119191=>'L',
      +119192=>'L',
      +119193=>'L',
      +119194=>'L',
      +119195=>'L',
      +119196=>'L',
      +119197=>'L',
      +119198=>'L',
      +119199=>'L',
      +119200=>'L',
      +119201=>'L',
      +119202=>'L',
      +119203=>'L',
      +119204=>'L',
      +119205=>'L',
      +119206=>'L',
      +119207=>'L',
      +119208=>'L',
      +119209=>'L',
      +119210=>'NSM',
      +119211=>'NSM',
      +119212=>'NSM',
      +119213=>'NSM',
      +119214=>'L',
      +119215=>'L',
      +119216=>'L',
      +119217=>'L',
      +119218=>'L',
      +119219=>'L',
      +119220=>'L',
      +119221=>'L',
      +119222=>'L',
      +119223=>'L',
      +119224=>'L',
      +119225=>'L',
      +119226=>'L',
      +119227=>'L',
      +119228=>'L',
      +119229=>'L',
      +119230=>'L',
      +119231=>'L',
      +119232=>'L',
      +119233=>'L',
      +119234=>'L',
      +119235=>'L',
      +119236=>'L',
      +119237=>'L',
      +119238=>'L',
      +119239=>'L',
      +119240=>'L',
      +119241=>'L',
      +119242=>'L',
      +119243=>'L',
      +119244=>'L',
      +119245=>'L',
      +119246=>'L',
      +119247=>'L',
      +119248=>'L',
      +119249=>'L',
      +119250=>'L',
      +119251=>'L',
      +119252=>'L',
      +119253=>'L',
      +119254=>'L',
      +119255=>'L',
      +119256=>'L',
      +119257=>'L',
      +119258=>'L',
      +119259=>'L',
      +119260=>'L',
      +119261=>'L',
      +119296=>'ON',
      +119297=>'ON',
      +119298=>'ON',
      +119299=>'ON',
      +119300=>'ON',
      +119301=>'ON',
      +119302=>'ON',
      +119303=>'ON',
      +119304=>'ON',
      +119305=>'ON',
      +119306=>'ON',
      +119307=>'ON',
      +119308=>'ON',
      +119309=>'ON',
      +119310=>'ON',
      +119311=>'ON',
      +119312=>'ON',
      +119313=>'ON',
      +119314=>'ON',
      +119315=>'ON',
      +119316=>'ON',
      +119317=>'ON',
      +119318=>'ON',
      +119319=>'ON',
      +119320=>'ON',
      +119321=>'ON',
      +119322=>'ON',
      +119323=>'ON',
      +119324=>'ON',
      +119325=>'ON',
      +119326=>'ON',
      +119327=>'ON',
      +119328=>'ON',
      +119329=>'ON',
      +119330=>'ON',
      +119331=>'ON',
      +119332=>'ON',
      +119333=>'ON',
      +119334=>'ON',
      +119335=>'ON',
      +119336=>'ON',
      +119337=>'ON',
      +119338=>'ON',
      +119339=>'ON',
      +119340=>'ON',
      +119341=>'ON',
      +119342=>'ON',
      +119343=>'ON',
      +119344=>'ON',
      +119345=>'ON',
      +119346=>'ON',
      +119347=>'ON',
      +119348=>'ON',
      +119349=>'ON',
      +119350=>'ON',
      +119351=>'ON',
      +119352=>'ON',
      +119353=>'ON',
      +119354=>'ON',
      +119355=>'ON',
      +119356=>'ON',
      +119357=>'ON',
      +119358=>'ON',
      +119359=>'ON',
      +119360=>'ON',
      +119361=>'ON',
      +119362=>'NSM',
      +119363=>'NSM',
      +119364=>'NSM',
      +119365=>'ON',
      +119552=>'ON',
      +119553=>'ON',
      +119554=>'ON',
      +119555=>'ON',
      +119556=>'ON',
      +119557=>'ON',
      +119558=>'ON',
      +119559=>'ON',
      +119560=>'ON',
      +119561=>'ON',
      +119562=>'ON',
      +119563=>'ON',
      +119564=>'ON',
      +119565=>'ON',
      +119566=>'ON',
      +119567=>'ON',
      +119568=>'ON',
      +119569=>'ON',
      +119570=>'ON',
      +119571=>'ON',
      +119572=>'ON',
      +119573=>'ON',
      +119574=>'ON',
      +119575=>'ON',
      +119576=>'ON',
      +119577=>'ON',
      +119578=>'ON',
      +119579=>'ON',
      +119580=>'ON',
      +119581=>'ON',
      +119582=>'ON',
      +119583=>'ON',
      +119584=>'ON',
      +119585=>'ON',
      +119586=>'ON',
      +119587=>'ON',
      +119588=>'ON',
      +119589=>'ON',
      +119590=>'ON',
      +119591=>'ON',
      +119592=>'ON',
      +119593=>'ON',
      +119594=>'ON',
      +119595=>'ON',
      +119596=>'ON',
      +119597=>'ON',
      +119598=>'ON',
      +119599=>'ON',
      +119600=>'ON',
      +119601=>'ON',
      +119602=>'ON',
      +119603=>'ON',
      +119604=>'ON',
      +119605=>'ON',
      +119606=>'ON',
      +119607=>'ON',
      +119608=>'ON',
      +119609=>'ON',
      +119610=>'ON',
      +119611=>'ON',
      +119612=>'ON',
      +119613=>'ON',
      +119614=>'ON',
      +119615=>'ON',
      +119616=>'ON',
      +119617=>'ON',
      +119618=>'ON',
      +119619=>'ON',
      +119620=>'ON',
      +119621=>'ON',
      +119622=>'ON',
      +119623=>'ON',
      +119624=>'ON',
      +119625=>'ON',
      +119626=>'ON',
      +119627=>'ON',
      +119628=>'ON',
      +119629=>'ON',
      +119630=>'ON',
      +119631=>'ON',
      +119632=>'ON',
      +119633=>'ON',
      +119634=>'ON',
      +119635=>'ON',
      +119636=>'ON',
      +119637=>'ON',
      +119638=>'ON',
      +119648=>'L',
      +119649=>'L',
      +119650=>'L',
      +119651=>'L',
      +119652=>'L',
      +119653=>'L',
      +119654=>'L',
      +119655=>'L',
      +119656=>'L',
      +119657=>'L',
      +119658=>'L',
      +119659=>'L',
      +119660=>'L',
      +119661=>'L',
      +119662=>'L',
      +119663=>'L',
      +119664=>'L',
      +119665=>'L',
      +119808=>'L',
      +119809=>'L',
      +119810=>'L',
      +119811=>'L',
      +119812=>'L',
      +119813=>'L',
      +119814=>'L',
      +119815=>'L',
      +119816=>'L',
      +119817=>'L',
      +119818=>'L',
      +119819=>'L',
      +119820=>'L',
      +119821=>'L',
      +119822=>'L',
      +119823=>'L',
      +119824=>'L',
      +119825=>'L',
      +119826=>'L',
      +119827=>'L',
      +119828=>'L',
      +119829=>'L',
      +119830=>'L',
      +119831=>'L',
      +119832=>'L',
      +119833=>'L',
      +119834=>'L',
      +119835=>'L',
      +119836=>'L',
      +119837=>'L',
      +119838=>'L',
      +119839=>'L',
      +119840=>'L',
      +119841=>'L',
      +119842=>'L',
      +119843=>'L',
      +119844=>'L',
      +119845=>'L',
      +119846=>'L',
      +119847=>'L',
      +119848=>'L',
      +119849=>'L',
      +119850=>'L',
      +119851=>'L',
      +119852=>'L',
      +119853=>'L',
      +119854=>'L',
      +119855=>'L',
      +119856=>'L',
      +119857=>'L',
      +119858=>'L',
      +119859=>'L',
      +119860=>'L',
      +119861=>'L',
      +119862=>'L',
      +119863=>'L',
      +119864=>'L',
      +119865=>'L',
      +119866=>'L',
      +119867=>'L',
      +119868=>'L',
      +119869=>'L',
      +119870=>'L',
      +119871=>'L',
      +119872=>'L',
      +119873=>'L',
      +119874=>'L',
      +119875=>'L',
      +119876=>'L',
      +119877=>'L',
      +119878=>'L',
      +119879=>'L',
      +119880=>'L',
      +119881=>'L',
      +119882=>'L',
      +119883=>'L',
      +119884=>'L',
      +119885=>'L',
      +119886=>'L',
      +119887=>'L',
      +119888=>'L',
      +119889=>'L',
      +119890=>'L',
      +119891=>'L',
      +119892=>'L',
      +119894=>'L',
      +119895=>'L',
      +119896=>'L',
      +119897=>'L',
      +119898=>'L',
      +119899=>'L',
      +119900=>'L',
      +119901=>'L',
      +119902=>'L',
      +119903=>'L',
      +119904=>'L',
      +119905=>'L',
      +119906=>'L',
      +119907=>'L',
      +119908=>'L',
      +119909=>'L',
      +119910=>'L',
      +119911=>'L',
      +119912=>'L',
      +119913=>'L',
      +119914=>'L',
      +119915=>'L',
      +119916=>'L',
      +119917=>'L',
      +119918=>'L',
      +119919=>'L',
      +119920=>'L',
      +119921=>'L',
      +119922=>'L',
      +119923=>'L',
      +119924=>'L',
      +119925=>'L',
      +119926=>'L',
      +119927=>'L',
      +119928=>'L',
      +119929=>'L',
      +119930=>'L',
      +119931=>'L',
      +119932=>'L',
      +119933=>'L',
      +119934=>'L',
      +119935=>'L',
      +119936=>'L',
      +119937=>'L',
      +119938=>'L',
      +119939=>'L',
      +119940=>'L',
      +119941=>'L',
      +119942=>'L',
      +119943=>'L',
      +119944=>'L',
      +119945=>'L',
      +119946=>'L',
      +119947=>'L',
      +119948=>'L',
      +119949=>'L',
      +119950=>'L',
      +119951=>'L',
      +119952=>'L',
      +119953=>'L',
      +119954=>'L',
      +119955=>'L',
      +119956=>'L',
      +119957=>'L',
      +119958=>'L',
      +119959=>'L',
      +119960=>'L',
      +119961=>'L',
      +119962=>'L',
      +119963=>'L',
      +119964=>'L',
      +119966=>'L',
      +119967=>'L',
      +119970=>'L',
      +119973=>'L',
      +119974=>'L',
      +119977=>'L',
      +119978=>'L',
      +119979=>'L',
      +119980=>'L',
      +119982=>'L',
      +119983=>'L',
      +119984=>'L',
      +119985=>'L',
      +119986=>'L',
      +119987=>'L',
      +119988=>'L',
      +119989=>'L',
      +119990=>'L',
      +119991=>'L',
      +119992=>'L',
      +119993=>'L',
      +119995=>'L',
      +119997=>'L',
      +119998=>'L',
      +119999=>'L',
      +120000=>'L',
      +120001=>'L',
      +120002=>'L',
      +120003=>'L',
      +120005=>'L',
      +120006=>'L',
      +120007=>'L',
      +120008=>'L',
      +120009=>'L',
      +120010=>'L',
      +120011=>'L',
      +120012=>'L',
      +120013=>'L',
      +120014=>'L',
      +120015=>'L',
      +120016=>'L',
      +120017=>'L',
      +120018=>'L',
      +120019=>'L',
      +120020=>'L',
      +120021=>'L',
      +120022=>'L',
      +120023=>'L',
      +120024=>'L',
      +120025=>'L',
      +120026=>'L',
      +120027=>'L',
      +120028=>'L',
      +120029=>'L',
      +120030=>'L',
      +120031=>'L',
      +120032=>'L',
      +120033=>'L',
      +120034=>'L',
      +120035=>'L',
      +120036=>'L',
      +120037=>'L',
      +120038=>'L',
      +120039=>'L',
      +120040=>'L',
      +120041=>'L',
      +120042=>'L',
      +120043=>'L',
      +120044=>'L',
      +120045=>'L',
      +120046=>'L',
      +120047=>'L',
      +120048=>'L',
      +120049=>'L',
      +120050=>'L',
      +120051=>'L',
      +120052=>'L',
      +120053=>'L',
      +120054=>'L',
      +120055=>'L',
      +120056=>'L',
      +120057=>'L',
      +120058=>'L',
      +120059=>'L',
      +120060=>'L',
      +120061=>'L',
      +120062=>'L',
      +120063=>'L',
      +120064=>'L',
      +120065=>'L',
      +120066=>'L',
      +120067=>'L',
      +120068=>'L',
      +120069=>'L',
      +120071=>'L',
      +120072=>'L',
      +120073=>'L',
      +120074=>'L',
      +120077=>'L',
      +120078=>'L',
      +120079=>'L',
      +120080=>'L',
      +120081=>'L',
      +120082=>'L',
      +120083=>'L',
      +120084=>'L',
      +120086=>'L',
      +120087=>'L',
      +120088=>'L',
      +120089=>'L',
      +120090=>'L',
      +120091=>'L',
      +120092=>'L',
      +120094=>'L',
      +120095=>'L',
      +120096=>'L',
      +120097=>'L',
      +120098=>'L',
      +120099=>'L',
      +120100=>'L',
      +120101=>'L',
      +120102=>'L',
      +120103=>'L',
      +120104=>'L',
      +120105=>'L',
      +120106=>'L',
      +120107=>'L',
      +120108=>'L',
      +120109=>'L',
      +120110=>'L',
      +120111=>'L',
      +120112=>'L',
      +120113=>'L',
      +120114=>'L',
      +120115=>'L',
      +120116=>'L',
      +120117=>'L',
      +120118=>'L',
      +120119=>'L',
      +120120=>'L',
      +120121=>'L',
      +120123=>'L',
      +120124=>'L',
      +120125=>'L',
      +120126=>'L',
      +120128=>'L',
      +120129=>'L',
      +120130=>'L',
      +120131=>'L',
      +120132=>'L',
      +120134=>'L',
      +120138=>'L',
      +120139=>'L',
      +120140=>'L',
      +120141=>'L',
      +120142=>'L',
      +120143=>'L',
      +120144=>'L',
      +120146=>'L',
      +120147=>'L',
      +120148=>'L',
      +120149=>'L',
      +120150=>'L',
      +120151=>'L',
      +120152=>'L',
      +120153=>'L',
      +120154=>'L',
      +120155=>'L',
      +120156=>'L',
      +120157=>'L',
      +120158=>'L',
      +120159=>'L',
      +120160=>'L',
      +120161=>'L',
      +120162=>'L',
      +120163=>'L',
      +120164=>'L',
      +120165=>'L',
      +120166=>'L',
      +120167=>'L',
      +120168=>'L',
      +120169=>'L',
      +120170=>'L',
      +120171=>'L',
      +120172=>'L',
      +120173=>'L',
      +120174=>'L',
      +120175=>'L',
      +120176=>'L',
      +120177=>'L',
      +120178=>'L',
      +120179=>'L',
      +120180=>'L',
      +120181=>'L',
      +120182=>'L',
      +120183=>'L',
      +120184=>'L',
      +120185=>'L',
      +120186=>'L',
      +120187=>'L',
      +120188=>'L',
      +120189=>'L',
      +120190=>'L',
      +120191=>'L',
      +120192=>'L',
      +120193=>'L',
      +120194=>'L',
      +120195=>'L',
      +120196=>'L',
      +120197=>'L',
      +120198=>'L',
      +120199=>'L',
      +120200=>'L',
      +120201=>'L',
      +120202=>'L',
      +120203=>'L',
      +120204=>'L',
      +120205=>'L',
      +120206=>'L',
      +120207=>'L',
      +120208=>'L',
      +120209=>'L',
      +120210=>'L',
      +120211=>'L',
      +120212=>'L',
      +120213=>'L',
      +120214=>'L',
      +120215=>'L',
      +120216=>'L',
      +120217=>'L',
      +120218=>'L',
      +120219=>'L',
      +120220=>'L',
      +120221=>'L',
      +120222=>'L',
      +120223=>'L',
      +120224=>'L',
      +120225=>'L',
      +120226=>'L',
      +120227=>'L',
      +120228=>'L',
      +120229=>'L',
      +120230=>'L',
      +120231=>'L',
      +120232=>'L',
      +120233=>'L',
      +120234=>'L',
      +120235=>'L',
      +120236=>'L',
      +120237=>'L',
      +120238=>'L',
      +120239=>'L',
      +120240=>'L',
      +120241=>'L',
      +120242=>'L',
      +120243=>'L',
      +120244=>'L',
      +120245=>'L',
      +120246=>'L',
      +120247=>'L',
      +120248=>'L',
      +120249=>'L',
      +120250=>'L',
      +120251=>'L',
      +120252=>'L',
      +120253=>'L',
      +120254=>'L',
      +120255=>'L',
      +120256=>'L',
      +120257=>'L',
      +120258=>'L',
      +120259=>'L',
      +120260=>'L',
      +120261=>'L',
      +120262=>'L',
      +120263=>'L',
      +120264=>'L',
      +120265=>'L',
      +120266=>'L',
      +120267=>'L',
      +120268=>'L',
      +120269=>'L',
      +120270=>'L',
      +120271=>'L',
      +120272=>'L',
      +120273=>'L',
      +120274=>'L',
      +120275=>'L',
      +120276=>'L',
      +120277=>'L',
      +120278=>'L',
      +120279=>'L',
      +120280=>'L',
      +120281=>'L',
      +120282=>'L',
      +120283=>'L',
      +120284=>'L',
      +120285=>'L',
      +120286=>'L',
      +120287=>'L',
      +120288=>'L',
      +120289=>'L',
      +120290=>'L',
      +120291=>'L',
      +120292=>'L',
      +120293=>'L',
      +120294=>'L',
      +120295=>'L',
      +120296=>'L',
      +120297=>'L',
      +120298=>'L',
      +120299=>'L',
      +120300=>'L',
      +120301=>'L',
      +120302=>'L',
      +120303=>'L',
      +120304=>'L',
      +120305=>'L',
      +120306=>'L',
      +120307=>'L',
      +120308=>'L',
      +120309=>'L',
      +120310=>'L',
      +120311=>'L',
      +120312=>'L',
      +120313=>'L',
      +120314=>'L',
      +120315=>'L',
      +120316=>'L',
      +120317=>'L',
      +120318=>'L',
      +120319=>'L',
      +120320=>'L',
      +120321=>'L',
      +120322=>'L',
      +120323=>'L',
      +120324=>'L',
      +120325=>'L',
      +120326=>'L',
      +120327=>'L',
      +120328=>'L',
      +120329=>'L',
      +120330=>'L',
      +120331=>'L',
      +120332=>'L',
      +120333=>'L',
      +120334=>'L',
      +120335=>'L',
      +120336=>'L',
      +120337=>'L',
      +120338=>'L',
      +120339=>'L',
      +120340=>'L',
      +120341=>'L',
      +120342=>'L',
      +120343=>'L',
      +120344=>'L',
      +120345=>'L',
      +120346=>'L',
      +120347=>'L',
      +120348=>'L',
      +120349=>'L',
      +120350=>'L',
      +120351=>'L',
      +120352=>'L',
      +120353=>'L',
      +120354=>'L',
      +120355=>'L',
      +120356=>'L',
      +120357=>'L',
      +120358=>'L',
      +120359=>'L',
      +120360=>'L',
      +120361=>'L',
      +120362=>'L',
      +120363=>'L',
      +120364=>'L',
      +120365=>'L',
      +120366=>'L',
      +120367=>'L',
      +120368=>'L',
      +120369=>'L',
      +120370=>'L',
      +120371=>'L',
      +120372=>'L',
      +120373=>'L',
      +120374=>'L',
      +120375=>'L',
      +120376=>'L',
      +120377=>'L',
      +120378=>'L',
      +120379=>'L',
      +120380=>'L',
      +120381=>'L',
      +120382=>'L',
      +120383=>'L',
      +120384=>'L',
      +120385=>'L',
      +120386=>'L',
      +120387=>'L',
      +120388=>'L',
      +120389=>'L',
      +120390=>'L',
      +120391=>'L',
      +120392=>'L',
      +120393=>'L',
      +120394=>'L',
      +120395=>'L',
      +120396=>'L',
      +120397=>'L',
      +120398=>'L',
      +120399=>'L',
      +120400=>'L',
      +120401=>'L',
      +120402=>'L',
      +120403=>'L',
      +120404=>'L',
      +120405=>'L',
      +120406=>'L',
      +120407=>'L',
      +120408=>'L',
      +120409=>'L',
      +120410=>'L',
      +120411=>'L',
      +120412=>'L',
      +120413=>'L',
      +120414=>'L',
      +120415=>'L',
      +120416=>'L',
      +120417=>'L',
      +120418=>'L',
      +120419=>'L',
      +120420=>'L',
      +120421=>'L',
      +120422=>'L',
      +120423=>'L',
      +120424=>'L',
      +120425=>'L',
      +120426=>'L',
      +120427=>'L',
      +120428=>'L',
      +120429=>'L',
      +120430=>'L',
      +120431=>'L',
      +120432=>'L',
      +120433=>'L',
      +120434=>'L',
      +120435=>'L',
      +120436=>'L',
      +120437=>'L',
      +120438=>'L',
      +120439=>'L',
      +120440=>'L',
      +120441=>'L',
      +120442=>'L',
      +120443=>'L',
      +120444=>'L',
      +120445=>'L',
      +120446=>'L',
      +120447=>'L',
      +120448=>'L',
      +120449=>'L',
      +120450=>'L',
      +120451=>'L',
      +120452=>'L',
      +120453=>'L',
      +120454=>'L',
      +120455=>'L',
      +120456=>'L',
      +120457=>'L',
      +120458=>'L',
      +120459=>'L',
      +120460=>'L',
      +120461=>'L',
      +120462=>'L',
      +120463=>'L',
      +120464=>'L',
      +120465=>'L',
      +120466=>'L',
      +120467=>'L',
      +120468=>'L',
      +120469=>'L',
      +120470=>'L',
      +120471=>'L',
      +120472=>'L',
      +120473=>'L',
      +120474=>'L',
      +120475=>'L',
      +120476=>'L',
      +120477=>'L',
      +120478=>'L',
      +120479=>'L',
      +120480=>'L',
      +120481=>'L',
      +120482=>'L',
      +120483=>'L',
      +120484=>'L',
      +120485=>'L',
      +120488=>'L',
      +120489=>'L',
      +120490=>'L',
      +120491=>'L',
      +120492=>'L',
      +120493=>'L',
      +120494=>'L',
      +120495=>'L',
      +120496=>'L',
      +120497=>'L',
      +120498=>'L',
      +120499=>'L',
      +120500=>'L',
      +120501=>'L',
      +120502=>'L',
      +120503=>'L',
      +120504=>'L',
      +120505=>'L',
      +120506=>'L',
      +120507=>'L',
      +120508=>'L',
      +120509=>'L',
      +120510=>'L',
      +120511=>'L',
      +120512=>'L',
      +120513=>'L',
      +120514=>'L',
      +120515=>'L',
      +120516=>'L',
      +120517=>'L',
      +120518=>'L',
      +120519=>'L',
      +120520=>'L',
      +120521=>'L',
      +120522=>'L',
      +120523=>'L',
      +120524=>'L',
      +120525=>'L',
      +120526=>'L',
      +120527=>'L',
      +120528=>'L',
      +120529=>'L',
      +120530=>'L',
      +120531=>'L',
      +120532=>'L',
      +120533=>'L',
      +120534=>'L',
      +120535=>'L',
      +120536=>'L',
      +120537=>'L',
      +120538=>'L',
      +120539=>'L',
      +120540=>'L',
      +120541=>'L',
      +120542=>'L',
      +120543=>'L',
      +120544=>'L',
      +120545=>'L',
      +120546=>'L',
      +120547=>'L',
      +120548=>'L',
      +120549=>'L',
      +120550=>'L',
      +120551=>'L',
      +120552=>'L',
      +120553=>'L',
      +120554=>'L',
      +120555=>'L',
      +120556=>'L',
      +120557=>'L',
      +120558=>'L',
      +120559=>'L',
      +120560=>'L',
      +120561=>'L',
      +120562=>'L',
      +120563=>'L',
      +120564=>'L',
      +120565=>'L',
      +120566=>'L',
      +120567=>'L',
      +120568=>'L',
      +120569=>'L',
      +120570=>'L',
      +120571=>'L',
      +120572=>'L',
      +120573=>'L',
      +120574=>'L',
      +120575=>'L',
      +120576=>'L',
      +120577=>'L',
      +120578=>'L',
      +120579=>'L',
      +120580=>'L',
      +120581=>'L',
      +120582=>'L',
      +120583=>'L',
      +120584=>'L',
      +120585=>'L',
      +120586=>'L',
      +120587=>'L',
      +120588=>'L',
      +120589=>'L',
      +120590=>'L',
      +120591=>'L',
      +120592=>'L',
      +120593=>'L',
      +120594=>'L',
      +120595=>'L',
      +120596=>'L',
      +120597=>'L',
      +120598=>'L',
      +120599=>'L',
      +120600=>'L',
      +120601=>'L',
      +120602=>'L',
      +120603=>'L',
      +120604=>'L',
      +120605=>'L',
      +120606=>'L',
      +120607=>'L',
      +120608=>'L',
      +120609=>'L',
      +120610=>'L',
      +120611=>'L',
      +120612=>'L',
      +120613=>'L',
      +120614=>'L',
      +120615=>'L',
      +120616=>'L',
      +120617=>'L',
      +120618=>'L',
      +120619=>'L',
      +120620=>'L',
      +120621=>'L',
      +120622=>'L',
      +120623=>'L',
      +120624=>'L',
      +120625=>'L',
      +120626=>'L',
      +120627=>'L',
      +120628=>'L',
      +120629=>'L',
      +120630=>'L',
      +120631=>'L',
      +120632=>'L',
      +120633=>'L',
      +120634=>'L',
      +120635=>'L',
      +120636=>'L',
      +120637=>'L',
      +120638=>'L',
      +120639=>'L',
      +120640=>'L',
      +120641=>'L',
      +120642=>'L',
      +120643=>'L',
      +120644=>'L',
      +120645=>'L',
      +120646=>'L',
      +120647=>'L',
      +120648=>'L',
      +120649=>'L',
      +120650=>'L',
      +120651=>'L',
      +120652=>'L',
      +120653=>'L',
      +120654=>'L',
      +120655=>'L',
      +120656=>'L',
      +120657=>'L',
      +120658=>'L',
      +120659=>'L',
      +120660=>'L',
      +120661=>'L',
      +120662=>'L',
      +120663=>'L',
      +120664=>'L',
      +120665=>'L',
      +120666=>'L',
      +120667=>'L',
      +120668=>'L',
      +120669=>'L',
      +120670=>'L',
      +120671=>'L',
      +120672=>'L',
      +120673=>'L',
      +120674=>'L',
      +120675=>'L',
      +120676=>'L',
      +120677=>'L',
      +120678=>'L',
      +120679=>'L',
      +120680=>'L',
      +120681=>'L',
      +120682=>'L',
      +120683=>'L',
      +120684=>'L',
      +120685=>'L',
      +120686=>'L',
      +120687=>'L',
      +120688=>'L',
      +120689=>'L',
      +120690=>'L',
      +120691=>'L',
      +120692=>'L',
      +120693=>'L',
      +120694=>'L',
      +120695=>'L',
      +120696=>'L',
      +120697=>'L',
      +120698=>'L',
      +120699=>'L',
      +120700=>'L',
      +120701=>'L',
      +120702=>'L',
      +120703=>'L',
      +120704=>'L',
      +120705=>'L',
      +120706=>'L',
      +120707=>'L',
      +120708=>'L',
      +120709=>'L',
      +120710=>'L',
      +120711=>'L',
      +120712=>'L',
      +120713=>'L',
      +120714=>'L',
      +120715=>'L',
      +120716=>'L',
      +120717=>'L',
      +120718=>'L',
      +120719=>'L',
      +120720=>'L',
      +120721=>'L',
      +120722=>'L',
      +120723=>'L',
      +120724=>'L',
      +120725=>'L',
      +120726=>'L',
      +120727=>'L',
      +120728=>'L',
      +120729=>'L',
      +120730=>'L',
      +120731=>'L',
      +120732=>'L',
      +120733=>'L',
      +120734=>'L',
      +120735=>'L',
      +120736=>'L',
      +120737=>'L',
      +120738=>'L',
      +120739=>'L',
      +120740=>'L',
      +120741=>'L',
      +120742=>'L',
      +120743=>'L',
      +120744=>'L',
      +120745=>'L',
      +120746=>'L',
      +120747=>'L',
      +120748=>'L',
      +120749=>'L',
      +120750=>'L',
      +120751=>'L',
      +120752=>'L',
      +120753=>'L',
      +120754=>'L',
      +120755=>'L',
      +120756=>'L',
      +120757=>'L',
      +120758=>'L',
      +120759=>'L',
      +120760=>'L',
      +120761=>'L',
      +120762=>'L',
      +120763=>'L',
      +120764=>'L',
      +120765=>'L',
      +120766=>'L',
      +120767=>'L',
      +120768=>'L',
      +120769=>'L',
      +120770=>'L',
      +120771=>'L',
      +120772=>'L',
      +120773=>'L',
      +120774=>'L',
      +120775=>'L',
      +120776=>'L',
      +120777=>'L',
      +120778=>'L',
      +120779=>'L',
      +120782=>'EN',
      +120783=>'EN',
      +120784=>'EN',
      +120785=>'EN',
      +120786=>'EN',
      +120787=>'EN',
      +120788=>'EN',
      +120789=>'EN',
      +120790=>'EN',
      +120791=>'EN',
      +120792=>'EN',
      +120793=>'EN',
      +120794=>'EN',
      +120795=>'EN',
      +120796=>'EN',
      +120797=>'EN',
      +120798=>'EN',
      +120799=>'EN',
      +120800=>'EN',
      +120801=>'EN',
      +120802=>'EN',
      +120803=>'EN',
      +120804=>'EN',
      +120805=>'EN',
      +120806=>'EN',
      +120807=>'EN',
      +120808=>'EN',
      +120809=>'EN',
      +120810=>'EN',
      +120811=>'EN',
      +120812=>'EN',
      +120813=>'EN',
      +120814=>'EN',
      +120815=>'EN',
      +120816=>'EN',
      +120817=>'EN',
      +120818=>'EN',
      +120819=>'EN',
      +120820=>'EN',
      +120821=>'EN',
      +120822=>'EN',
      +120823=>'EN',
      +120824=>'EN',
      +120825=>'EN',
      +120826=>'EN',
      +120827=>'EN',
      +120828=>'EN',
      +120829=>'EN',
      +120830=>'EN',
      +120831=>'EN',
      +131072=>'L',
      +173782=>'L',
      +194560=>'L',
      +194561=>'L',
      +194562=>'L',
      +194563=>'L',
      +194564=>'L',
      +194565=>'L',
      +194566=>'L',
      +194567=>'L',
      +194568=>'L',
      +194569=>'L',
      +194570=>'L',
      +194571=>'L',
      +194572=>'L',
      +194573=>'L',
      +194574=>'L',
      +194575=>'L',
      +194576=>'L',
      +194577=>'L',
      +194578=>'L',
      +194579=>'L',
      +194580=>'L',
      +194581=>'L',
      +194582=>'L',
      +194583=>'L',
      +194584=>'L',
      +194585=>'L',
      +194586=>'L',
      +194587=>'L',
      +194588=>'L',
      +194589=>'L',
      +194590=>'L',
      +194591=>'L',
      +194592=>'L',
      +194593=>'L',
      +194594=>'L',
      +194595=>'L',
      +194596=>'L',
      +194597=>'L',
      +194598=>'L',
      +194599=>'L',
      +194600=>'L',
      +194601=>'L',
      +194602=>'L',
      +194603=>'L',
      +194604=>'L',
      +194605=>'L',
      +194606=>'L',
      +194607=>'L',
      +194608=>'L',
      +194609=>'L',
      +194610=>'L',
      +194611=>'L',
      +194612=>'L',
      +194613=>'L',
      +194614=>'L',
      +194615=>'L',
      +194616=>'L',
      +194617=>'L',
      +194618=>'L',
      +194619=>'L',
      +194620=>'L',
      +194621=>'L',
      +194622=>'L',
      +194623=>'L',
      +194624=>'L',
      +194625=>'L',
      +194626=>'L',
      +194627=>'L',
      +194628=>'L',
      +194629=>'L',
      +194630=>'L',
      +194631=>'L',
      +194632=>'L',
      +194633=>'L',
      +194634=>'L',
      +194635=>'L',
      +194636=>'L',
      +194637=>'L',
      +194638=>'L',
      +194639=>'L',
      +194640=>'L',
      +194641=>'L',
      +194642=>'L',
      +194643=>'L',
      +194644=>'L',
      +194645=>'L',
      +194646=>'L',
      +194647=>'L',
      +194648=>'L',
      +194649=>'L',
      +194650=>'L',
      +194651=>'L',
      +194652=>'L',
      +194653=>'L',
      +194654=>'L',
      +194655=>'L',
      +194656=>'L',
      +194657=>'L',
      +194658=>'L',
      +194659=>'L',
      +194660=>'L',
      +194661=>'L',
      +194662=>'L',
      +194663=>'L',
      +194664=>'L',
      +194665=>'L',
      +194666=>'L',
      +194667=>'L',
      +194668=>'L',
      +194669=>'L',
      +194670=>'L',
      +194671=>'L',
      +194672=>'L',
      +194673=>'L',
      +194674=>'L',
      +194675=>'L',
      +194676=>'L',
      +194677=>'L',
      +194678=>'L',
      +194679=>'L',
      +194680=>'L',
      +194681=>'L',
      +194682=>'L',
      +194683=>'L',
      +194684=>'L',
      +194685=>'L',
      +194686=>'L',
      +194687=>'L',
      +194688=>'L',
      +194689=>'L',
      +194690=>'L',
      +194691=>'L',
      +194692=>'L',
      +194693=>'L',
      +194694=>'L',
      +194695=>'L',
      +194696=>'L',
      +194697=>'L',
      +194698=>'L',
      +194699=>'L',
      +194700=>'L',
      +194701=>'L',
      +194702=>'L',
      +194703=>'L',
      +194704=>'L',
      +194705=>'L',
      +194706=>'L',
      +194707=>'L',
      +194708=>'L',
      +194709=>'L',
      +194710=>'L',
      +194711=>'L',
      +194712=>'L',
      +194713=>'L',
      +194714=>'L',
      +194715=>'L',
      +194716=>'L',
      +194717=>'L',
      +194718=>'L',
      +194719=>'L',
      +194720=>'L',
      +194721=>'L',
      +194722=>'L',
      +194723=>'L',
      +194724=>'L',
      +194725=>'L',
      +194726=>'L',
      +194727=>'L',
      +194728=>'L',
      +194729=>'L',
      +194730=>'L',
      +194731=>'L',
      +194732=>'L',
      +194733=>'L',
      +194734=>'L',
      +194735=>'L',
      +194736=>'L',
      +194737=>'L',
      +194738=>'L',
      +194739=>'L',
      +194740=>'L',
      +194741=>'L',
      +194742=>'L',
      +194743=>'L',
      +194744=>'L',
      +194745=>'L',
      +194746=>'L',
      +194747=>'L',
      +194748=>'L',
      +194749=>'L',
      +194750=>'L',
      +194751=>'L',
      +194752=>'L',
      +194753=>'L',
      +194754=>'L',
      +194755=>'L',
      +194756=>'L',
      +194757=>'L',
      +194758=>'L',
      +194759=>'L',
      +194760=>'L',
      +194761=>'L',
      +194762=>'L',
      +194763=>'L',
      +194764=>'L',
      +194765=>'L',
      +194766=>'L',
      +194767=>'L',
      +194768=>'L',
      +194769=>'L',
      +194770=>'L',
      +194771=>'L',
      +194772=>'L',
      +194773=>'L',
      +194774=>'L',
      +194775=>'L',
      +194776=>'L',
      +194777=>'L',
      +194778=>'L',
      +194779=>'L',
      +194780=>'L',
      +194781=>'L',
      +194782=>'L',
      +194783=>'L',
      +194784=>'L',
      +194785=>'L',
      +194786=>'L',
      +194787=>'L',
      +194788=>'L',
      +194789=>'L',
      +194790=>'L',
      +194791=>'L',
      +194792=>'L',
      +194793=>'L',
      +194794=>'L',
      +194795=>'L',
      +194796=>'L',
      +194797=>'L',
      +194798=>'L',
      +194799=>'L',
      +194800=>'L',
      +194801=>'L',
      +194802=>'L',
      +194803=>'L',
      +194804=>'L',
      +194805=>'L',
      +194806=>'L',
      +194807=>'L',
      +194808=>'L',
      +194809=>'L',
      +194810=>'L',
      +194811=>'L',
      +194812=>'L',
      +194813=>'L',
      +194814=>'L',
      +194815=>'L',
      +194816=>'L',
      +194817=>'L',
      +194818=>'L',
      +194819=>'L',
      +194820=>'L',
      +194821=>'L',
      +194822=>'L',
      +194823=>'L',
      +194824=>'L',
      +194825=>'L',
      +194826=>'L',
      +194827=>'L',
      +194828=>'L',
      +194829=>'L',
      +194830=>'L',
      +194831=>'L',
      +194832=>'L',
      +194833=>'L',
      +194834=>'L',
      +194835=>'L',
      +194836=>'L',
      +194837=>'L',
      +194838=>'L',
      +194839=>'L',
      +194840=>'L',
      +194841=>'L',
      +194842=>'L',
      +194843=>'L',
      +194844=>'L',
      +194845=>'L',
      +194846=>'L',
      +194847=>'L',
      +194848=>'L',
      +194849=>'L',
      +194850=>'L',
      +194851=>'L',
      +194852=>'L',
      +194853=>'L',
      +194854=>'L',
      +194855=>'L',
      +194856=>'L',
      +194857=>'L',
      +194858=>'L',
      +194859=>'L',
      +194860=>'L',
      +194861=>'L',
      +194862=>'L',
      +194863=>'L',
      +194864=>'L',
      +194865=>'L',
      +194866=>'L',
      +194867=>'L',
      +194868=>'L',
      +194869=>'L',
      +194870=>'L',
      +194871=>'L',
      +194872=>'L',
      +194873=>'L',
      +194874=>'L',
      +194875=>'L',
      +194876=>'L',
      +194877=>'L',
      +194878=>'L',
      +194879=>'L',
      +194880=>'L',
      +194881=>'L',
      +194882=>'L',
      +194883=>'L',
      +194884=>'L',
      +194885=>'L',
      +194886=>'L',
      +194887=>'L',
      +194888=>'L',
      +194889=>'L',
      +194890=>'L',
      +194891=>'L',
      +194892=>'L',
      +194893=>'L',
      +194894=>'L',
      +194895=>'L',
      +194896=>'L',
      +194897=>'L',
      +194898=>'L',
      +194899=>'L',
      +194900=>'L',
      +194901=>'L',
      +194902=>'L',
      +194903=>'L',
      +194904=>'L',
      +194905=>'L',
      +194906=>'L',
      +194907=>'L',
      +194908=>'L',
      +194909=>'L',
      +194910=>'L',
      +194911=>'L',
      +194912=>'L',
      +194913=>'L',
      +194914=>'L',
      +194915=>'L',
      +194916=>'L',
      +194917=>'L',
      +194918=>'L',
      +194919=>'L',
      +194920=>'L',
      +194921=>'L',
      +194922=>'L',
      +194923=>'L',
      +194924=>'L',
      +194925=>'L',
      +194926=>'L',
      +194927=>'L',
      +194928=>'L',
      +194929=>'L',
      +194930=>'L',
      +194931=>'L',
      +194932=>'L',
      +194933=>'L',
      +194934=>'L',
      +194935=>'L',
      +194936=>'L',
      +194937=>'L',
      +194938=>'L',
      +194939=>'L',
      +194940=>'L',
      +194941=>'L',
      +194942=>'L',
      +194943=>'L',
      +194944=>'L',
      +194945=>'L',
      +194946=>'L',
      +194947=>'L',
      +194948=>'L',
      +194949=>'L',
      +194950=>'L',
      +194951=>'L',
      +194952=>'L',
      +194953=>'L',
      +194954=>'L',
      +194955=>'L',
      +194956=>'L',
      +194957=>'L',
      +194958=>'L',
      +194959=>'L',
      +194960=>'L',
      +194961=>'L',
      +194962=>'L',
      +194963=>'L',
      +194964=>'L',
      +194965=>'L',
      +194966=>'L',
      +194967=>'L',
      +194968=>'L',
      +194969=>'L',
      +194970=>'L',
      +194971=>'L',
      +194972=>'L',
      +194973=>'L',
      +194974=>'L',
      +194975=>'L',
      +194976=>'L',
      +194977=>'L',
      +194978=>'L',
      +194979=>'L',
      +194980=>'L',
      +194981=>'L',
      +194982=>'L',
      +194983=>'L',
      +194984=>'L',
      +194985=>'L',
      +194986=>'L',
      +194987=>'L',
      +194988=>'L',
      +194989=>'L',
      +194990=>'L',
      +194991=>'L',
      +194992=>'L',
      +194993=>'L',
      +194994=>'L',
      +194995=>'L',
      +194996=>'L',
      +194997=>'L',
      +194998=>'L',
      +194999=>'L',
      +195000=>'L',
      +195001=>'L',
      +195002=>'L',
      +195003=>'L',
      +195004=>'L',
      +195005=>'L',
      +195006=>'L',
      +195007=>'L',
      +195008=>'L',
      +195009=>'L',
      +195010=>'L',
      +195011=>'L',
      +195012=>'L',
      +195013=>'L',
      +195014=>'L',
      +195015=>'L',
      +195016=>'L',
      +195017=>'L',
      +195018=>'L',
      +195019=>'L',
      +195020=>'L',
      +195021=>'L',
      +195022=>'L',
      +195023=>'L',
      +195024=>'L',
      +195025=>'L',
      +195026=>'L',
      +195027=>'L',
      +195028=>'L',
      +195029=>'L',
      +195030=>'L',
      +195031=>'L',
      +195032=>'L',
      +195033=>'L',
      +195034=>'L',
      +195035=>'L',
      +195036=>'L',
      +195037=>'L',
      +195038=>'L',
      +195039=>'L',
      +195040=>'L',
      +195041=>'L',
      +195042=>'L',
      +195043=>'L',
      +195044=>'L',
      +195045=>'L',
      +195046=>'L',
      +195047=>'L',
      +195048=>'L',
      +195049=>'L',
      +195050=>'L',
      +195051=>'L',
      +195052=>'L',
      +195053=>'L',
      +195054=>'L',
      +195055=>'L',
      +195056=>'L',
      +195057=>'L',
      +195058=>'L',
      +195059=>'L',
      +195060=>'L',
      +195061=>'L',
      +195062=>'L',
      +195063=>'L',
      +195064=>'L',
      +195065=>'L',
      +195066=>'L',
      +195067=>'L',
      +195068=>'L',
      +195069=>'L',
      +195070=>'L',
      +195071=>'L',
      +195072=>'L',
      +195073=>'L',
      +195074=>'L',
      +195075=>'L',
      +195076=>'L',
      +195077=>'L',
      +195078=>'L',
      +195079=>'L',
      +195080=>'L',
      +195081=>'L',
      +195082=>'L',
      +195083=>'L',
      +195084=>'L',
      +195085=>'L',
      +195086=>'L',
      +195087=>'L',
      +195088=>'L',
      +195089=>'L',
      +195090=>'L',
      +195091=>'L',
      +195092=>'L',
      +195093=>'L',
      +195094=>'L',
      +195095=>'L',
      +195096=>'L',
      +195097=>'L',
      +195098=>'L',
      +195099=>'L',
      +195100=>'L',
      +195101=>'L',
      +917505=>'BN',
      +917536=>'BN',
      +917537=>'BN',
      +917538=>'BN',
      +917539=>'BN',
      +917540=>'BN',
      +917541=>'BN',
      +917542=>'BN',
      +917543=>'BN',
      +917544=>'BN',
      +917545=>'BN',
      +917546=>'BN',
      +917547=>'BN',
      +917548=>'BN',
      +917549=>'BN',
      +917550=>'BN',
      +917551=>'BN',
      +917552=>'BN',
      +917553=>'BN',
      +917554=>'BN',
      +917555=>'BN',
      +917556=>'BN',
      +917557=>'BN',
      +917558=>'BN',
      +917559=>'BN',
      +917560=>'BN',
      +917561=>'BN',
      +917562=>'BN',
      +917563=>'BN',
      +917564=>'BN',
      +917565=>'BN',
      +917566=>'BN',
      +917567=>'BN',
      +917568=>'BN',
      +917569=>'BN',
      +917570=>'BN',
      +917571=>'BN',
      +917572=>'BN',
      +917573=>'BN',
      +917574=>'BN',
      +917575=>'BN',
      +917576=>'BN',
      +917577=>'BN',
      +917578=>'BN',
      +917579=>'BN',
      +917580=>'BN',
      +917581=>'BN',
      +917582=>'BN',
      +917583=>'BN',
      +917584=>'BN',
      +917585=>'BN',
      +917586=>'BN',
      +917587=>'BN',
      +917588=>'BN',
      +917589=>'BN',
      +917590=>'BN',
      +917591=>'BN',
      +917592=>'BN',
      +917593=>'BN',
      +917594=>'BN',
      +917595=>'BN',
      +917596=>'BN',
      +917597=>'BN',
      +917598=>'BN',
      +917599=>'BN',
      +917600=>'BN',
      +917601=>'BN',
      +917602=>'BN',
      +917603=>'BN',
      +917604=>'BN',
      +917605=>'BN',
      +917606=>'BN',
      +917607=>'BN',
      +917608=>'BN',
      +917609=>'BN',
      +917610=>'BN',
      +917611=>'BN',
      +917612=>'BN',
      +917613=>'BN',
      +917614=>'BN',
      +917615=>'BN',
      +917616=>'BN',
      +917617=>'BN',
      +917618=>'BN',
      +917619=>'BN',
      +917620=>'BN',
      +917621=>'BN',
      +917622=>'BN',
      +917623=>'BN',
      +917624=>'BN',
      +917625=>'BN',
      +917626=>'BN',
      +917627=>'BN',
      +917628=>'BN',
      +917629=>'BN',
      +917630=>'BN',
      +917631=>'BN',
      +917760=>'NSM',
      +917761=>'NSM',
      +917762=>'NSM',
      +917763=>'NSM',
      +917764=>'NSM',
      +917765=>'NSM',
      +917766=>'NSM',
      +917767=>'NSM',
      +917768=>'NSM',
      +917769=>'NSM',
      +917770=>'NSM',
      +917771=>'NSM',
      +917772=>'NSM',
      +917773=>'NSM',
      +917774=>'NSM',
      +917775=>'NSM',
      +917776=>'NSM',
      +917777=>'NSM',
      +917778=>'NSM',
      +917779=>'NSM',
      +917780=>'NSM',
      +917781=>'NSM',
      +917782=>'NSM',
      +917783=>'NSM',
      +917784=>'NSM',
      +917785=>'NSM',
      +917786=>'NSM',
      +917787=>'NSM',
      +917788=>'NSM',
      +917789=>'NSM',
      +917790=>'NSM',
      +917791=>'NSM',
      +917792=>'NSM',
      +917793=>'NSM',
      +917794=>'NSM',
      +917795=>'NSM',
      +917796=>'NSM',
      +917797=>'NSM',
      +917798=>'NSM',
      +917799=>'NSM',
      +917800=>'NSM',
      +917801=>'NSM',
      +917802=>'NSM',
      +917803=>'NSM',
      +917804=>'NSM',
      +917805=>'NSM',
      +917806=>'NSM',
      +917807=>'NSM',
      +917808=>'NSM',
      +917809=>'NSM',
      +917810=>'NSM',
      +917811=>'NSM',
      +917812=>'NSM',
      +917813=>'NSM',
      +917814=>'NSM',
      +917815=>'NSM',
      +917816=>'NSM',
      +917817=>'NSM',
      +917818=>'NSM',
      +917819=>'NSM',
      +917820=>'NSM',
      +917821=>'NSM',
      +917822=>'NSM',
      +917823=>'NSM',
      +917824=>'NSM',
      +917825=>'NSM',
      +917826=>'NSM',
      +917827=>'NSM',
      +917828=>'NSM',
      +917829=>'NSM',
      +917830=>'NSM',
      +917831=>'NSM',
      +917832=>'NSM',
      +917833=>'NSM',
      +917834=>'NSM',
      +917835=>'NSM',
      +917836=>'NSM',
      +917837=>'NSM',
      +917838=>'NSM',
      +917839=>'NSM',
      +917840=>'NSM',
      +917841=>'NSM',
      +917842=>'NSM',
      +917843=>'NSM',
      +917844=>'NSM',
      +917845=>'NSM',
      +917846=>'NSM',
      +917847=>'NSM',
      +917848=>'NSM',
      +917849=>'NSM',
      +917850=>'NSM',
      +917851=>'NSM',
      +917852=>'NSM',
      +917853=>'NSM',
      +917854=>'NSM',
      +917855=>'NSM',
      +917856=>'NSM',
      +917857=>'NSM',
      +917858=>'NSM',
      +917859=>'NSM',
      +917860=>'NSM',
      +917861=>'NSM',
      +917862=>'NSM',
      +917863=>'NSM',
      +917864=>'NSM',
      +917865=>'NSM',
      +917866=>'NSM',
      +917867=>'NSM',
      +917868=>'NSM',
      +917869=>'NSM',
      +917870=>'NSM',
      +917871=>'NSM',
      +917872=>'NSM',
      +917873=>'NSM',
      +917874=>'NSM',
      +917875=>'NSM',
      +917876=>'NSM',
      +917877=>'NSM',
      +917878=>'NSM',
      +917879=>'NSM',
      +917880=>'NSM',
      +917881=>'NSM',
      +917882=>'NSM',
      +917883=>'NSM',
      +917884=>'NSM',
      +917885=>'NSM',
      +917886=>'NSM',
      +917887=>'NSM',
      +917888=>'NSM',
      +917889=>'NSM',
      +917890=>'NSM',
      +917891=>'NSM',
      +917892=>'NSM',
      +917893=>'NSM',
      +917894=>'NSM',
      +917895=>'NSM',
      +917896=>'NSM',
      +917897=>'NSM',
      +917898=>'NSM',
      +917899=>'NSM',
      +917900=>'NSM',
      +917901=>'NSM',
      +917902=>'NSM',
      +917903=>'NSM',
      +917904=>'NSM',
      +917905=>'NSM',
      +917906=>'NSM',
      +917907=>'NSM',
      +917908=>'NSM',
      +917909=>'NSM',
      +917910=>'NSM',
      +917911=>'NSM',
      +917912=>'NSM',
      +917913=>'NSM',
      +917914=>'NSM',
      +917915=>'NSM',
      +917916=>'NSM',
      +917917=>'NSM',
      +917918=>'NSM',
      +917919=>'NSM',
      +917920=>'NSM',
      +917921=>'NSM',
      +917922=>'NSM',
      +917923=>'NSM',
      +917924=>'NSM',
      +917925=>'NSM',
      +917926=>'NSM',
      +917927=>'NSM',
      +917928=>'NSM',
      +917929=>'NSM',
      +917930=>'NSM',
      +917931=>'NSM',
      +917932=>'NSM',
      +917933=>'NSM',
      +917934=>'NSM',
      +917935=>'NSM',
      +917936=>'NSM',
      +917937=>'NSM',
      +917938=>'NSM',
      +917939=>'NSM',
      +917940=>'NSM',
      +917941=>'NSM',
      +917942=>'NSM',
      +917943=>'NSM',
      +917944=>'NSM',
      +917945=>'NSM',
      +917946=>'NSM',
      +917947=>'NSM',
      +917948=>'NSM',
      +917949=>'NSM',
      +917950=>'NSM',
      +917951=>'NSM',
      +917952=>'NSM',
      +917953=>'NSM',
      +917954=>'NSM',
      +917955=>'NSM',
      +917956=>'NSM',
      +917957=>'NSM',
      +917958=>'NSM',
      +917959=>'NSM',
      +917960=>'NSM',
      +917961=>'NSM',
      +917962=>'NSM',
      +917963=>'NSM',
      +917964=>'NSM',
      +917965=>'NSM',
      +917966=>'NSM',
      +917967=>'NSM',
      +917968=>'NSM',
      +917969=>'NSM',
      +917970=>'NSM',
      +917971=>'NSM',
      +917972=>'NSM',
      +917973=>'NSM',
      +917974=>'NSM',
      +917975=>'NSM',
      +917976=>'NSM',
      +917977=>'NSM',
      +917978=>'NSM',
      +917979=>'NSM',
      +917980=>'NSM',
      +917981=>'NSM',
      +917982=>'NSM',
      +917983=>'NSM',
      +917984=>'NSM',
      +917985=>'NSM',
      +917986=>'NSM',
      +917987=>'NSM',
      +917988=>'NSM',
      +917989=>'NSM',
      +917990=>'NSM',
      +917991=>'NSM',
      +917992=>'NSM',
      +917993=>'NSM',
      +917994=>'NSM',
      +917995=>'NSM',
      +917996=>'NSM',
      +917997=>'NSM',
      +917998=>'NSM',
      +917999=>'NSM',
      +983040=>'L',
      +1048573=>'L',
      +1048576=>'L',
      +1114109=>'L'
      +)

      +

      [line 149]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  of Unicode types
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Array
      +


      +
      [ Top ]

      + +

      +

      $uni_utf8tolatin = array (
      +8364=>128, # Euro1
      +338=>140,  # OE
      +352=>138,  # Scaron
      +376=>159,  # Ydieresis
      +381=>142,  # Zcaron2
      +8226=>149, # bullet3
      +710=>136,  # circumflex
      +8224=>134, # dagger
      +8225=>135, # daggerdbl
      +8230=>133, # ellipsis
      +8212=>151, # emdash
      +8211=>150, # endash
      +402=>131,  # florin
      +8249=>139, # guilsinglleft
      +8250=>155, # guilsinglright
      +339=>156,  # oe
      +8240=>137, # perthousand
      +8222=>132, # quotedblbase
      +8220=>147, # quotedblleft
      +8221=>148, # quotedblright
      +8216=>145, # quoteleft
      +8217=>146, # quoteright
      +8218=>130, # quotesinglbase
      +353=>154,  # scaron
      +732=>152,  # tilde
      +8482=>153, # trademark
      +382=>158   # zcaron2
      +)

      +

      [line 18344]

      +

      +

      Tags:

      +
      + + + + + + + +
      var:  of character substitutions from UTF-8 Unicode to Latin1
      access:  public
      +
      + +
      +
      + + + + + +
      Type:  Array
      +


      +
      [ Top ]

      +

      + + + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:23 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_2dbarcodes.php.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_2dbarcodes.php.html new file mode 100644 index 00000000000..2f4ff1a7d72 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_2dbarcodes.php.html @@ -0,0 +1,117 @@ + + +Docs for page 2dbarcodes.php + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Procedural File: 2dbarcodes.php

      +Source Location: /2dbarcodes.php

      + +
      +
      + +
      +

      Classes:

      +
      TCPDF2DBarcode
      +
      PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).
      +


      + +

      Page Details:

      +PHP class to creates array representations for 2D barcodes to be used with TCPDF.



      +

      Tags:

      +
      + + + + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni
      version:  1.0.007
      copyright:  2009-2009 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
      abstract:  Functions for generating string representation of 2D barcodes.
      license:  LGPL
      +
      +

      +

      +

      +
      + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:16 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_barcodes.php.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_barcodes.php.html new file mode 100644 index 00000000000..51607e72be6 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_barcodes.php.html @@ -0,0 +1,117 @@ + + +Docs for page barcodes.php + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Procedural File: barcodes.php

      +Source Location: /barcodes.php

      + +
      +
      + +
      +

      Classes:

      +
      TCPDFBarcode
      +
      PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).
      +


      + +

      Page Details:

      +PHP class to creates array representations for common 1D barcodes to be used with TCPDF.



      +

      Tags:

      +
      + + + + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni
      version:  1.0.011
      copyright:  2008-2009 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
      abstract:  Functions for generating string representation of common 1D barcodes.
      license:  LGPL
      +
      +

      +

      +

      +
      + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:16 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_config---tcpdf_config.php.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_config---tcpdf_config.php.html new file mode 100644 index 00000000000..42839fe5343 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_config---tcpdf_config.php.html @@ -0,0 +1,554 @@ + + +Docs for page tcpdf_config.php + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Procedural File: tcpdf_config.php

      +Source Location: /config/tcpdf_config.php

      + +
      +
      + + +

      Page Details:

      +Configuration file for TCPDF.



      +

      Tags:

      +
      + + + + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni
      version:  4.9.005
      copyright:  2004-2010 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://tcpdf.sourceforge.net
      since:  2004-10-27
      license:  LGPL
      +
      +

      +

      +

      +
      + +

      HEAD_MAGNIFICATION [line 212]

      +
      +
      +
      + HEAD_MAGNIFICATION = 1.1 +
      +
      + + magnification factor for titles


      +
      +
      [ Top ]


      +
      + +

      K_BLANK_IMAGE [line 102]

      +
      +
      +
      + K_BLANK_IMAGE = K_PATH_IMAGES.'_blank.png' +
      +
      + + blank image


      +
      +
      [ Top ]


      +
      + +

      K_CELL_HEIGHT_RATIO [line 217]

      +
      +
      +
      + K_CELL_HEIGHT_RATIO = 1.25 +
      +
      + + height of cell repect font height


      +
      +
      [ Top ]


      +
      + +

      K_PATH_CACHE [line 87]

      +
      +
      +
      + K_PATH_CACHE = K_PATH_MAIN.'cache/' +
      +
      + + cache directory for temporary files (full path)


      +
      +
      [ Top ]


      +
      + +

      K_PATH_FONTS [line 82]

      +
      +
      +
      + K_PATH_FONTS = K_PATH_MAIN.'fonts/' +
      +
      + + path for PDF fonts

      use K_PATH_MAIN.'fonts/old/' for old non-UTF8 fonts



      +
      +
      [ Top ]


      +
      + +

      K_PATH_IMAGES [line 97]

      +
      +
      +
      + K_PATH_IMAGES = K_PATH_MAIN.'images/' +
      +
      + + images directory


      +
      +
      [ Top ]


      +
      + +

      K_PATH_MAIN [line 58]

      +
      +
      +
      + K_PATH_MAIN = $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.



      +
      +
      [ Top ]


      +
      + +

      K_PATH_URL [line 76]

      +
      +
      +
      + K_PATH_URL = $k_path_url +
      +
      + + 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.



      +
      +
      [ Top ]


      +
      + +

      K_PATH_URL_CACHE [line 92]

      +
      +
      +
      + K_PATH_URL_CACHE = K_PATH_URL.'cache/' +
      +
      + + cache directory for temporary files (url path)


      +
      +
      [ Top ]


      +
      + +

      K_SMALL_RATIO [line 227]

      +
      +
      +
      + K_SMALL_RATIO = 2/3 +
      +
      + + reduction factor for small font


      +
      +
      [ Top ]


      +
      + +

      K_TCPDF_CALLS_IN_HTML [line 238]

      +
      +
      +
      + K_TCPDF_CALLS_IN_HTML = true +
      +
      + + if true allows to call TCPDF methods using HTML syntax IMPORTANT: For security reason, disable this feature if you are printing user HTML content.


      +
      +
      [ Top ]


      +
      + +

      K_THAI_TOPCHARS [line 232]

      +
      +
      +
      + K_THAI_TOPCHARS = true +
      +
      + + set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language


      +
      +
      [ Top ]


      +
      + +

      K_TITLE_MAGNIFICATION [line 222]

      +
      +
      +
      + K_TITLE_MAGNIFICATION = 1.3 +
      +
      + + title magnification respect main font size


      +
      +
      [ Top ]


      +
      + +

      PDF_AUTHOR [line 122]

      +
      +
      +
      + PDF_AUTHOR = 'TCPDF' +
      +
      + + document author


      +
      +
      [ Top ]


      +
      + +

      PDF_CREATOR [line 117]

      +
      +
      +
      + PDF_CREATOR = 'TCPDF' +
      +
      + + document creator


      +
      +
      [ Top ]


      +
      + +

      PDF_FONT_MONOSPACED [line 202]

      +
      +
      +
      + PDF_FONT_MONOSPACED = 'courier' +
      +
      + + default monospaced font name


      +
      +
      [ Top ]


      +
      + +

      PDF_FONT_NAME_DATA [line 192]

      +
      +
      +
      + PDF_FONT_NAME_DATA = 'helvetica' +
      +
      + + default data font name


      +
      +
      [ Top ]


      +
      + +

      PDF_FONT_NAME_MAIN [line 182]

      +
      +
      +
      + PDF_FONT_NAME_MAIN = 'helvetica' +
      +
      + + default main font name


      +
      +
      [ Top ]


      +
      + +

      PDF_FONT_SIZE_DATA [line 197]

      +
      +
      +
      + PDF_FONT_SIZE_DATA = 8 +
      +
      + + default data font size


      +
      +
      [ Top ]


      +
      + +

      PDF_FONT_SIZE_MAIN [line 187]

      +
      +
      +
      + PDF_FONT_SIZE_MAIN = 10 +
      +
      + + default main font size


      +
      +
      [ Top ]


      +
      + +

      PDF_HEADER_LOGO [line 137]

      +
      +
      +
      + PDF_HEADER_LOGO = 'tcpdf_logo.jpg' +
      +
      + + image logo


      +
      +
      [ Top ]


      +
      + +

      PDF_HEADER_LOGO_WIDTH [line 142]

      +
      +
      +
      + PDF_HEADER_LOGO_WIDTH = 30 +
      +
      + + header logo image width [mm]


      +
      +
      [ Top ]


      +
      + +

      PDF_HEADER_STRING [line 132]

      +
      +
      +
      + PDF_HEADER_STRING = "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org" +
      +
      + + header description string


      +
      +
      [ Top ]


      +
      + +

      PDF_HEADER_TITLE [line 127]

      +
      +
      +
      + PDF_HEADER_TITLE = 'TCPDF Example' +
      +
      + + header title


      +
      +
      [ Top ]


      +
      + +

      PDF_IMAGE_SCALE_RATIO [line 207]

      +
      +
      +
      + PDF_IMAGE_SCALE_RATIO = 1.25 +
      +
      + + ratio used to adjust the conversion of pixels to user units


      +
      +
      [ Top ]


      +
      + +

      PDF_MARGIN_BOTTOM [line 167]

      +
      +
      +
      + PDF_MARGIN_BOTTOM = 25 +
      +
      + + bottom margin


      +
      +
      [ Top ]


      +
      + +

      PDF_MARGIN_FOOTER [line 157]

      +
      +
      +
      + PDF_MARGIN_FOOTER = 10 +
      +
      + + footer margin


      +
      +
      [ Top ]


      +
      + +

      PDF_MARGIN_HEADER [line 152]

      +
      +
      +
      + PDF_MARGIN_HEADER = 5 +
      +
      + + header margin


      +
      +
      [ Top ]


      +
      + +

      PDF_MARGIN_LEFT [line 172]

      +
      +
      +
      + PDF_MARGIN_LEFT = 15 +
      +
      + + left margin


      +
      +
      [ Top ]


      +
      + +

      PDF_MARGIN_RIGHT [line 177]

      +
      +
      +
      + PDF_MARGIN_RIGHT = 15 +
      +
      + + right margin


      +
      +
      [ Top ]


      +
      + +

      PDF_MARGIN_TOP [line 162]

      +
      +
      +
      + PDF_MARGIN_TOP = 27 +
      +
      + + top margin


      +
      +
      [ Top ]


      +
      + +

      PDF_PAGE_FORMAT [line 107]

      +
      +
      +
      + PDF_PAGE_FORMAT = 'A4' +
      +
      + + page format


      +
      +
      [ Top ]


      +
      + +

      PDF_PAGE_ORIENTATION [line 112]

      +
      +
      +
      + PDF_PAGE_ORIENTATION = 'P' +
      +
      + + page orientation (P=portrait, L=landscape)


      +
      +
      [ Top ]


      +
      + +

      PDF_UNIT [line 147]

      +
      +
      +
      + PDF_UNIT = 'mm' +
      +
      + + document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]


      +
      +
      [ Top ]


      +
      + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:23 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_htmlcolors.php.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_htmlcolors.php.html new file mode 100644 index 00000000000..2d9baba5802 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_htmlcolors.php.html @@ -0,0 +1,109 @@ + + +Docs for page htmlcolors.php + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Procedural File: htmlcolors.php

      +Source Location: /htmlcolors.php

      + +
      +
      + + +

      Page Details:

      +Array of WEB safe colors



      +

      Tags:

      +
      + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni
      copyright:  2002-2009 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
      since:  2.9.000 (2008-03-26)
      license:  LGPL
      +
      +

      +

      +

      +
      + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:17 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_pdf417.php.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_pdf417.php.html new file mode 100644 index 00000000000..82eeae3bae0 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_pdf417.php.html @@ -0,0 +1,169 @@ + + +Docs for page pdf417.php + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Procedural File: pdf417.php

      +Source Location: /pdf417.php

      + +
      +
      + +
      +

      Classes:

      +
      PDF417
      +
      Class to create PDF417 barcode arrays for TCPDF class.
      +


      + +

      Page Details:

      +Class to create PDF417 barcode arrays for TCPDF class.

      PDF417 (ISO/IEC 15438:2006) is a 2-dimensional stacked bar code created by Symbol Technologies in 1991. (requires PHP bcmath extension)




      +

      Tags:

      +
      + + + + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni
      version:  1.0.003
      copyright:  2010-2010 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
      abstract:  Class to create PDF417 barcode arrays for TCPDF class.
      license:  LGPL
      +
      +

      +

      +

      +
      + +

      PDF417DEFS [line 65]

      +
      +
      +
      + PDF417DEFS = true +
      +
      + + Indicate that definitions for this class are set


      +
      +
      [ Top ]


      +
      + +

      QUIETH [line 77]

      +
      +
      +
      + QUIETH = 2 +
      +
      + + Horizontal quiet zone in modules


      +
      +
      [ Top ]


      +
      + +

      QUIETV [line 82]

      +
      +
      +
      + QUIETV = 2 +
      +
      + + Vertical quiet zone in modules


      +
      +
      [ Top ]


      +
      + +

      ROWHEIGHT [line 72]

      +
      +
      +
      + ROWHEIGHT = 4 +
      +
      + + Row height respect X dimension of single module


      +
      +
      [ Top ]


      +
      + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:17 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_qrcode.php.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_qrcode.php.html new file mode 100644 index 00000000000..9d1bc08a117 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_qrcode.php.html @@ -0,0 +1,492 @@ + + +Docs for page qrcode.php + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Procedural File: qrcode.php

      +Source Location: /qrcode.php

      + +
      +
      + +
      +

      Classes:

      +
      QRcode
      +
      Class to create QR-code arrays for TCPDF class.
      +


      + +

      Page Details:

      +Class to create QR-code arrays for TCPDF class.

      QR Code symbol is a 2D barcode that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and has high robustness. This class supports QR Code model 2, described in JIS (Japanese Industrial Standards) X0510:2004 or ISO/IEC 18004. Currently the following features are not supported: ECI and FNC1 mode, Micro QR Code, QR Code model 1, Structured mode.

      This class is derived from "PHP QR Code encoder" by Dominik Dzienia (http://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (http://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (http://www.denso-wave.com/qrcode/index-e.html). Please read comments on this class source file for full copyright and license information.




      +

      Tags:

      +
      + + + + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni
      version:  1.0.008
      copyright:  2010-2010 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
      abstract:  Class for generating QR-code array for TCPDF.
      license:  LGPL
      +
      +

      +

      +

      +
      + +

      MAX_STRUCTURED_SYMBOLS [line 204]

      +
      +
      +
      + MAX_STRUCTURED_SYMBOLS = 16 +
      +
      + + Max number of symbols for structured mode


      +
      +
      [ Top ]


      +
      + +

      N1 [line 213]

      +
      +
      +
      + N1 = 3 +
      +
      + + Down point base value for case 1 mask pattern (concatenation of same color in a line or a column)


      +
      +
      [ Top ]


      +
      + +

      N2 [line 218]

      +
      +
      +
      + N2 = 3 +
      +
      + + Down point base value for case 2 mask pattern (module block of same color)


      +
      +
      [ Top ]


      +
      + +

      N3 [line 223]

      +
      +
      +
      + N3 = 40 +
      +
      + + Down point base value for case 3 mask pattern (1:1:3:1:1(dark:bright:dark:bright:dark)pattern in a line or a column)


      +
      +
      [ Top ]


      +
      + +

      N4 [line 228]

      +
      +
      +
      + N4 = 10 +
      +
      + + Down point base value for case 4 mask pattern (ration of dark modules in whole)


      +
      +
      [ Top ]


      +
      + +

      QRCAP_EC [line 190]

      +
      +
      +
      + QRCAP_EC = 3 +
      +
      + + Matrix index to get error correction level from $capacity array.


      +
      +
      [ Top ]


      +
      + +

      QRCAP_REMINDER [line 185]

      +
      +
      +
      + QRCAP_REMINDER = 2 +
      +
      + + Matrix index to get remainder from $capacity array.


      +
      +
      [ Top ]


      +
      + +

      QRCAP_WIDTH [line 175]

      +
      +
      +
      + QRCAP_WIDTH = 0 +
      +
      + + Matrix index to get width from $capacity array.


      +
      +
      [ Top ]


      +
      + +

      QRCAP_WORDS [line 180]

      +
      +
      +
      + QRCAP_WORDS = 1 +
      +
      + + Matrix index to get number of words from $capacity array.


      +
      +
      [ Top ]


      +
      + +

      QRCODEDEFS [line 91]

      +
      +
      +
      + QRCODEDEFS = true +
      +
      + + Indicate that definitions for this class are set


      +
      +
      [ Top ]


      +
      + +

      QRSPEC_VERSION_MAX [line 163]

      +
      +
      +
      + QRSPEC_VERSION_MAX = 40 +
      +
      + + Maximum QR Code version.


      +
      +
      [ Top ]


      +
      + +

      QRSPEC_WIDTH_MAX [line 168]

      +
      +
      +
      + QRSPEC_WIDTH_MAX = 177 +
      +
      + + Maximum matrix size for maximum version (version 40 is 177*177 matrix).


      +
      +
      [ Top ]


      +
      + +

      QR_DEFAULT_MASK [line 247]

      +
      +
      +
      + QR_DEFAULT_MASK = 2 +
      +
      + + when QR_FIND_BEST_MASK === false


      +
      +
      [ Top ]


      +
      + +

      QR_ECLEVEL_H [line 151]

      +
      +
      +
      + QR_ECLEVEL_H = 3 +
      +
      + + Error correction level H : About 30% or less errors can be corrected.


      +
      +
      [ Top ]


      +
      + +

      QR_ECLEVEL_L [line 136]

      +
      +
      +
      + QR_ECLEVEL_L = 0 +
      +
      + + Error correction level L : About 7% or less errors can be corrected.


      +
      +
      [ Top ]


      +
      + +

      QR_ECLEVEL_M [line 141]

      +
      +
      +
      + QR_ECLEVEL_M = 1 +
      +
      + + Error correction level M : About 15% or less errors can be corrected.


      +
      +
      [ Top ]


      +
      + +

      QR_ECLEVEL_Q [line 146]

      +
      +
      +
      + QR_ECLEVEL_Q = 2 +
      +
      + + Error correction level Q : About 25% or less errors can be corrected.


      +
      +
      [ Top ]


      +
      + +

      QR_FIND_BEST_MASK [line 237]

      +
      +
      +
      + QR_FIND_BEST_MASK = true +
      +
      + + if true, estimates best mask (spec. default, but extremally slow; set to false to significant performance boost but (propably) worst quality code


      +
      +
      [ Top ]


      +
      + +

      QR_FIND_FROM_RANDOM [line 242]

      +
      +
      +
      + QR_FIND_FROM_RANDOM = 2 +
      +
      + + if false, checks all masks available, otherwise value tells count of masks need to be checked, mask id are got randomly


      +
      +
      [ Top ]


      +
      + +

      QR_MODE_8B [line 115]

      +
      +
      +
      + QR_MODE_8B = 2 +
      +
      + + Encoding mode 8bit byte data. In theory, 2953 characters or less can be stored in a QRcode.


      +
      +
      [ Top ]


      +
      + +

      QR_MODE_AN [line 110]

      +
      +
      +
      + QR_MODE_AN = 1 +
      +
      + + Encoding mode alphanumeric (0-9A-Z $%*+-./:) 45characters. 2 characters are encoded to 11bit length. In theory, 4296 characters or less can be stored in a QRcode.


      +
      +
      [ Top ]


      +
      + +

      QR_MODE_KJ [line 120]

      +
      +
      +
      + QR_MODE_KJ = 3 +
      +
      + + Encoding mode KANJI. A KANJI character (multibyte character) is encoded to 13bit length. In theory, 1817 characters or less can be stored in a QRcode.


      +
      +
      [ Top ]


      +
      + +

      QR_MODE_NL [line 100]

      +
      +
      +
      + QR_MODE_NL = -1 +
      +
      + + Encoding mode


      +
      +
      [ Top ]


      +
      + +

      QR_MODE_NM [line 105]

      +
      +
      +
      + QR_MODE_NM = 0 +
      +
      + + Encoding mode numeric (0-9). 3 characters are encoded to 10bit length. In theory, 7089 characters or less can be stored in a QRcode.


      +
      +
      [ Top ]


      +
      + +

      QR_MODE_ST [line 125]

      +
      +
      +
      + QR_MODE_ST = 4 +
      +
      + + Encoding mode STRUCTURED (currently unsupported)


      +
      +
      [ Top ]


      +
      + +

      STRUCTURE_HEADER_BITS [line 199]

      +
      +
      +
      + STRUCTURE_HEADER_BITS = 20 +
      +
      + + Number of header bits for structured mode


      +
      +
      [ Top ]


      +
      +
      + +

      str_split [line 265]

      +
      +
      +
      + If str_split( +string $string, [int $split_length = 1]) +
      +

      + + Convert a string to an array (needed for PHP4 compatibility)



      +

      Tags:

      +
      + + + + +
      return:  the optional split_length parameter is specified, the returned array will be broken down into chunks with each being split_length in length, otherwise each chunk will be one character in length. FALSE is returned if split_length is less than 1. If the split_length length exceeds the length of string , the entire string is returned as the first (and only) array element.
      +
      +

      + +

      Parameters

      + + + + + + + + + + + +
      string  $string  The input string.
      int  $split_length  Maximum length of the chunk.
      +
      [ Top ]


      +
      + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:17 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_tcpdf.php.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_tcpdf.php.html new file mode 100644 index 00000000000..57bafc1a992 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_tcpdf.php.html @@ -0,0 +1,121 @@ + + +Docs for page tcpdf.php + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Procedural File: tcpdf.php

      +Source Location: /tcpdf.php

      + +
      +
      + +
      +

      Classes:

      +
      TCPDF
      +
      This is a PHP class for generating PDF documents without requiring external extensions.
      +


      + +

      Page Details:

      +This is a PHP class for generating PDF documents without requiring external extensions.


      TCPDF project (http://www.tcpdf.org) was originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.
      <h3>TCPDF main features are:</h3>

      • no external libraries are required for the basic functions;
      • all standard page formats, custom page formats, custom margins and units of measure;
      • UTF-8 Unicode and Right-To-Left languages;
      • TrueTypeUnicode, OpenTypeUnicode, TrueType, OpenType, Type1 and CID-0 fonts;
      • font subsetting;
      • methods to publish some XHTML + CSS code, Javascript and Forms;
      • images, graphic (geometric figures) and transformation methods;
      • supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (http://www.imagemagick.org/www/formats.html)
      • 1D and 2D barcodes: CODE 39, ANSI MH10.8M-1983, USD-3, 3 of 9, CODE 93, USS-93, Standard 2 of 5, Interleaved 2 of 5, CODE 128 A/B/C, 2 and 5 Digits UPC-Based Extention, EAN 8, EAN 13, UPC-A, UPC-E, MSI, POSTNET, PLANET, RMS4CC (Royal Mail 4-state Customer Code), CBC (Customer Bar Code), KIX (Klant index - Customer index), Intelligent Mail Barcode, Onecode, USPS-B-3200, CODABAR, CODE 11, PHARMACODE, PHARMACODE TWO-TRACKS, QR-Code, PDF417;
      • Grayscale, RGB, CMYK, Spot Colors and Transparencies;
      • automatic page header and footer management;
      • document encryption up to 256 bit and digital signature certifications;
      • transactions to UNDO commands;
      • PDF annotations, including links, text and file attachments;
      • text rendering modes (fill, stroke and clipping);
      • multiple columns mode;
      • no-write page regions;
      • bookmarks and table of content;
      • text hyphenation;
      • text stretching and spacing (tracking/kerning);
      • automatic page break, line break and text alignments including justification;
      • automatic page numbering and page groups;
      • move and delete pages;
      • page compression (requires php-zlib extension);
      • XOBject Templates;
      Tools to encode your unicode fonts are on fonts/utils directory.</p>




      +

      Tags:

      +
      + + + + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni
      version:  5.9.023
      copyright:  2002-2010 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
      abstract:  Class for generating PDF files on-the-fly without requiring external extensions.
      license:  GNU-LGPLv3 + YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS.
      +
      +

      +

      Includes:

      +
      +require_once(dirname(__FILE__).'/config/tcpdf_config.php') [line 147]
      +main configuration file

      (define the K_TCPDF_EXTERNAL_CONFIG constant to skip this file)


      +

      +

      +
      + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:18 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_unicode_data.php.html b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_unicode_data.php.html new file mode 100644 index 00000000000..6c821c10bb6 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/com-tecnick-tcpdf/_unicode_data.php.html @@ -0,0 +1,114 @@ + + +Docs for page unicode_data.php + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      Procedural File: unicode_data.php

      +Source Location: /unicode_data.php

      + +
      +
      + +
      +

      Classes:

      +
      TCPDF_UNICODE_DATA
      +
      This is a PHP class containing Unicde data for TCPDF library
      +


      + +

      Page Details:

      +Unicode data class for TCPDF library.



      +

      Tags:

      +
      + + + + + + + + + + + + + + + + +
      author:  Nicola Asuni
      copyright:  2008-2010 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
      since:  2.1.000 (2008-01-08)
      license:  LGPL
      +
      +

      +

      +

      +
      + +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:23 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/elementindex.html b/htdocs/includes/tcpdf/doc/elementindex.html new file mode 100644 index 00000000000..9176ca9f0d7 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/elementindex.html @@ -0,0 +1,2151 @@ + + +Element Index + + + + + + + + + + + + + +
      + + [ all elements ] +
      + + + + + + +
      +
      + + +

      Index of all elements

      + [ 2 ] + [ 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 ] + [ _ ] + +
      + +
      +

      2

      +
      +
      2dbarcodes.php
      +
      procedural page 2dbarcodes.php
      +
      +
      + top
      +
      + +
      +

      a

      +
      +
      $AliasNbPages
      +
      in file tcpdf.php, variable TCPDF::$AliasNbPages
      +
      $AliasNumPage
      +
      in file tcpdf.php, variable TCPDF::$AliasNumPage
      +
      $alignmentPattern
      +
      in file qrcode.php, variable QRcode::$alignmentPattern
      +
      $annotation_fonts
      +
      in file tcpdf.php, variable TCPDF::$annotation_fonts
          List of fonts used on form fields (fontname => fontkey).
      +
      $anTable
      +
      in file qrcode.php, variable QRcode::$anTable
      +
      $author
      +
      in file tcpdf.php, variable TCPDF::$author
      +
      $AutoPageBreak
      +
      in file tcpdf.php, variable TCPDF::$AutoPageBreak
      +
      AcceptPageBreak
      +
      in file tcpdf.php, method TCPDF::AcceptPageBreak()
          Whenever a page break condition is met, the method is called, and the break is issued or not depending on the returned value.
      +
      addExtGState
      +
      in file tcpdf.php, method TCPDF::addExtGState()
          Add transparency parameters to the current extgstate
      +
      AddFont
      +
      in file tcpdf.php, method TCPDF::AddFont()
          Imports a TrueType, Type1, core, or CID0 font and makes it available.
      +
      addHtmlLink
      +
      in file tcpdf.php, method TCPDF::addHtmlLink()
          Output anchor link.
      +
      addHTMLTOC
      +
      in file tcpdf.php, method TCPDF::addHTMLTOC()
          Output a Table Of Content Index (TOC) using HTML templates.
      +
      addHTMLVertSpace
      +
      in file tcpdf.php, method TCPDF::addHTMLVertSpace()
          Add vertical spaces if needed.
      +
      addJavascriptObject
      +
      in file tcpdf.php, method TCPDF::addJavascriptObject()
          Adds a javascript object and return object ID
      +
      AddLink
      +
      in file tcpdf.php, method TCPDF::AddLink()
          Creates a new internal link and returns its identifier. An internal link is a clickable area which directs to another place within the document.
      The identifier can then be passed to Cell(), Write(), Image() or Link(). The destination is defined with SetLink().
      +
      AddPage
      +
      in file tcpdf.php, method TCPDF::AddPage()
          Adds a new page to the document. If a page is already present, the Footer() method is called first to output the footer (if enabled). Then the page is added, the current position set to the top-left corner according to the left and top margins (or top-right if in RTL mode), and Header() is called to display the header (if enabled).
      +
      addPageRegion
      +
      in file tcpdf.php, method TCPDF::addPageRegion()
          Add a single no-write region on selected page.
      +
      AddSpotColor
      +
      in file tcpdf.php, method TCPDF::AddSpotColor()
          Defines a new spot color.
      +
      addTOC
      +
      in file tcpdf.php, method TCPDF::addTOC()
          Output a Table of Content Index (TOC).
      +
      addTOCPage
      +
      in file tcpdf.php, method TCPDF::addTOCPage()
          Adds a new TOC (Table Of Content) page to the document.
      +
      adjustCellPadding
      +
      in file tcpdf.php, method TCPDF::adjustCellPadding()
          Adjust the internal Cell padding array to take account of the line width.
      +
      AliasNbPages
      +
      in file tcpdf.php, method TCPDF::AliasNbPages()
          Defines an alias for the total number of pages.
      +
      AliasNumPage
      +
      in file tcpdf.php, method TCPDF::AliasNumPage()
          Defines an alias for the page number.
      +
      allocate
      +
      in file qrcode.php, method QRcode::allocate()
          Return an array with zeros
      +
      Annotation
      +
      in file tcpdf.php, method TCPDF::Annotation()
          Puts a markup annotation on a rectangular area of the page.
      +
      appendBitstream
      +
      in file qrcode.php, method QRcode::appendBitstream()
          Append one bitstream to another
      +
      appendBytes
      +
      in file qrcode.php, method QRcode::appendBytes()
          Append one bitstream created from bytes to another
      +
      appendNewInputItem
      +
      in file qrcode.php, method QRcode::appendNewInputItem()
          Append data to an input object.
      +
      appendNum
      +
      in file qrcode.php, method QRcode::appendNum()
          Append one bitstream created from number to another
      +
      appendPaddingBit
      +
      in file qrcode.php, method QRcode::appendPaddingBit()
          Append Padding Bit to bitstream
      +
      Arrow
      +
      in file tcpdf.php, method TCPDF::Arrow()
          Draws a grahic arrow.
      +
      arrUTF8ToUTF16BE
      +
      in file tcpdf.php, method TCPDF::arrUTF8ToUTF16BE()
          Converts array of UTF-8 characters to UTF16-BE string.
      +
      +
      + top
      +
      + +
      +

      b

      +
      +
      $b1
      +
      in file qrcode.php, variable QRcode::$b1
      +
      $barcode
      +
      in file tcpdf.php, variable TCPDF::$barcode
      +
      $barcode_array
      +
      in file 2dbarcodes.php, variable TCPDF2DBarcode::$barcode_array
      +
      $barcode_array
      +
      in file pdf417.php, variable PDF417::$barcode_array
      +
      $barcode_array
      +
      in file qrcode.php, variable QRcode::$barcode_array
      +
      $barcode_array
      +
      in file barcodes.php, variable TCPDFBarcode::$barcode_array
      +
      $bgcolor
      +
      in file tcpdf.php, variable TCPDF::$bgcolor
      +
      $bit
      +
      in file qrcode.php, variable QRcode::$bit
      +
      $blocks
      +
      in file qrcode.php, variable QRcode::$blocks
      +
      $bMargin
      +
      in file tcpdf.php, variable TCPDF::$bMargin
      +
      $booklet
      +
      in file tcpdf.php, variable TCPDF::$booklet
          Booklet mode for double-sided pages
      +
      $bordermrk
      +
      in file tcpdf.php, variable TCPDF::$bordermrk
          Array used to store positions inside the pages buffer.
      +
      $buffer
      +
      in file tcpdf.php, variable TCPDF::$buffer
      +
      $bufferlen
      +
      in file tcpdf.php, variable TCPDF::$bufferlen
          Length of the buffer in bytes.
      +
      $byterange_string
      +
      in file tcpdf.php, variable TCPDF::$byterange_string
          ByteRange placemark used during signature process.
      +
      barcodes.php
      +
      procedural page barcodes.php
      +
      barcode_c128
      +
      in file barcodes.php, method TCPDFBarcode::barcode_c128()
          C128 barcodes.
      +
      barcode_codabar
      +
      in file barcodes.php, method TCPDFBarcode::barcode_codabar()
          CODABAR barcodes.
      +
      barcode_code11
      +
      in file barcodes.php, method TCPDFBarcode::barcode_code11()
          CODE11 barcodes.
      +
      barcode_code39
      +
      in file barcodes.php, method TCPDFBarcode::barcode_code39()
          CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.
      +
      barcode_code93
      +
      in file barcodes.php, method TCPDFBarcode::barcode_code93()
          CODE 93 - USS-93
      +
      barcode_eanext
      +
      in file barcodes.php, method TCPDFBarcode::barcode_eanext()
          UPC-Based Extentions
      +
      barcode_eanupc
      +
      in file barcodes.php, method TCPDFBarcode::barcode_eanupc()
          EAN13 and UPC-A barcodes.
      +
      barcode_i25
      +
      in file barcodes.php, method TCPDFBarcode::barcode_i25()
          Interleaved 2 of 5 barcodes.
      +
      barcode_imb
      +
      in file barcodes.php, method TCPDFBarcode::barcode_imb()
          IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200 (requires PHP bcmath extension) Intelligent Mail barcode is a 65-bar code for use on mail in the United States.
      +
      barcode_msi
      +
      in file barcodes.php, method TCPDFBarcode::barcode_msi()
          MSI.
      +
      barcode_pharmacode
      +
      in file barcodes.php, method TCPDFBarcode::barcode_pharmacode()
          Pharmacode
      +
      barcode_pharmacode2t
      +
      in file barcodes.php, method TCPDFBarcode::barcode_pharmacode2t()
          Pharmacode two-track
      +
      barcode_postnet
      +
      in file barcodes.php, method TCPDFBarcode::barcode_postnet()
          POSTNET and PLANET barcodes.
      +
      barcode_rms4cc
      +
      in file barcodes.php, method TCPDFBarcode::barcode_rms4cc()
          RMS4CC - CBC - KIX RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code) - KIX (Klant index - Customer index) RM4SCC is the name of the barcode symbology used by the Royal Mail for its Cleanmail service.
      +
      barcode_s25
      +
      in file barcodes.php, method TCPDFBarcode::barcode_s25()
          Standard 2 of 5 barcodes.
      +
      binarize
      +
      in file qrcode.php, method QRcode::binarize()
          Convert the frame in binary form
      +
      binseq_to_array
      +
      in file barcodes.php, method TCPDFBarcode::binseq_to_array()
          Convert binary barcode sequence to TCPDF barcode array
      +
      bitstreamToByte
      +
      in file qrcode.php, method QRcode::bitstreamToByte()
          Convert bitstream to bytes
      +
      Bookmark
      +
      in file tcpdf.php, method TCPDF::Bookmark()
          Adds a bookmark.
      +
      Button
      +
      in file tcpdf.php, method TCPDF::Button()
          Creates a button field
      +
      +
      + top
      +
      + +
      +

      c

      +
      +
      $cache_file_length
      +
      in file tcpdf.php, variable TCPDF::$cache_file_length
          Array used to store the lengths of cache files
      +
      $cache_maxsize_UTF8StringToArray
      +
      in file tcpdf.php, variable TCPDF::$cache_maxsize_UTF8StringToArray
          Maximum size of cache array used for UTF8StringToArray() method.
      +
      $cache_size_UTF8StringToArray
      +
      in file tcpdf.php, variable TCPDF::$cache_size_UTF8StringToArray
          Current size of cache array used for UTF8StringToArray() method.
      +
      $cache_UTF8StringToArray
      +
      in file tcpdf.php, variable TCPDF::$cache_UTF8StringToArray
          Cache array for UTF8StringToArray() method.
      +
      $capacity
      +
      in file qrcode.php, variable QRcode::$capacity
      +
      $casesensitive
      +
      in file qrcode.php, variable QRcode::$casesensitive
      +
      $cell_height_ratio
      +
      in file tcpdf.php, variable TCPDF::$cell_height_ratio
          Default cell height ratio.
      +
      $cell_margin
      +
      in file tcpdf.php, variable TCPDF::$cell_margin
      +
      $cell_padding
      +
      in file tcpdf.php, variable TCPDF::$cell_padding
      +
      $clusters
      +
      in file pdf417.php, variable PDF417::$clusters
      +
      $cntmrk
      +
      in file tcpdf.php, variable TCPDF::$cntmrk
          Array used to store content positions inside the pages buffer.
      +
      $ColorFlag
      +
      in file tcpdf.php, variable TCPDF::$ColorFlag
      +
      $columns
      +
      in file tcpdf.php, variable TCPDF::$columns
          Array of column measures (width, space, starting Y position)
      +
      $column_start_page
      +
      in file tcpdf.php, variable TCPDF::$column_start_page
          Starting page for columns
      +
      $colxshift
      +
      in file tcpdf.php, variable TCPDF::$colxshift
          Array of: X difference between table cell x start and starting page margin, cellspacing, cellpadding
      +
      $compress
      +
      in file tcpdf.php, variable TCPDF::$compress
      +
      $CoreFonts
      +
      in file tcpdf.php, variable TCPDF::$CoreFonts
      +
      $count
      +
      in file qrcode.php, variable QRcode::$count
      +
      $creator
      +
      in file tcpdf.php, variable TCPDF::$creator
      +
      $CurOrientation
      +
      in file tcpdf.php, variable TCPDF::$CurOrientation
      +
      $CurrentFont
      +
      in file tcpdf.php, variable TCPDF::$CurrentFont
      +
      $current_column
      +
      in file tcpdf.php, variable TCPDF::$current_column
          Current column number
      +
      $currpagegroup
      +
      in file tcpdf.php, variable TCPDF::$currpagegroup
          Contains the alias of the current page group
      +
      $customlistindent
      +
      in file tcpdf.php, variable TCPDF::$customlistindent
      +
      calcN1N3
      +
      in file qrcode.php, method QRcode::calcN1N3()
          calcN1N3
      +
      calcParity
      +
      in file qrcode.php, method QRcode::calcParity()
          calcParity
      +
      Cell
      +
      in file tcpdf.php, method TCPDF::Cell()
          Prints a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.
      If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
      +
      check
      +
      in file qrcode.php, method QRcode::check()
          Validate the input data.
      +
      CheckBox
      +
      in file tcpdf.php, method TCPDF::CheckBox()
          Creates a CheckBox field
      +
      checkModeAn
      +
      in file qrcode.php, method QRcode::checkModeAn()
          checkModeAn
      +
      checkModeKanji
      +
      in file qrcode.php, method QRcode::checkModeKanji()
          checkModeKanji
      +
      checkModeNum
      +
      in file qrcode.php, method QRcode::checkModeNum()
          checkModeNum
      +
      checkPageBreak
      +
      in file tcpdf.php, method TCPDF::checkPageBreak()
          Add page if needed.
      +
      checkPageRegions
      +
      in file tcpdf.php, method TCPDF::checkPageRegions()
          Check page for no-write regions and adapt current coordinates and page margins if necessary.
      +
      checksum_code39
      +
      in file barcodes.php, method TCPDFBarcode::checksum_code39()
          Calculate CODE 39 checksum (modulo 43).
      +
      checksum_code93
      +
      in file barcodes.php, method TCPDFBarcode::checksum_code93()
          Calculate CODE 93 checksum (modulo 47).
      +
      checksum_s25
      +
      in file barcodes.php, method TCPDFBarcode::checksum_s25()
          Checksum for standard 2 of 5 barcodes.
      +
      Circle
      +
      in file tcpdf.php, method TCPDF::Circle()
          Draws a circle.
      +
      Clip
      +
      in file tcpdf.php, method TCPDF::Clip()
          Set a rectangular clipping area.
      +
      Close
      +
      in file tcpdf.php, method TCPDF::Close()
          Terminates the PDF document.
      +
      closeHTMLTagHandler
      +
      in file tcpdf.php, method TCPDF::closeHTMLTagHandler()
          Process closing tags.
      +
      colorRegistrationBar
      +
      in file tcpdf.php, method TCPDF::colorRegistrationBar()
          Paints color transition registration bars
      +
      ComboBox
      +
      in file tcpdf.php, method TCPDF::ComboBox()
          Creates a Combo-box field
      +
      commitTransaction
      +
      in file tcpdf.php, method TCPDF::commitTransaction()
          Delete the copy of the current TCPDF object used for undo operation.
      +
      convertData
      +
      in file qrcode.php, method QRcode::convertData()
          convertData
      +
      convertHexStringToString
      +
      in file tcpdf.php, method TCPDF::convertHexStringToString()
          Convert hexadecimal string to string
      +
      convertHTMLColorToDec
      +
      in file tcpdf.php, method TCPDF::convertHTMLColorToDec()
          Returns an array (RGB or CMYK) from an html color name or a six-digit (i.e. #3FE5AA) or three-digit (i.e. #7FF) hexadecimal color representation.
      +
      convertStringToHexString
      +
      in file tcpdf.php, method TCPDF::convertStringToHexString()
          Convert string to hexadecimal string (byte string)
      +
      convertSVGtMatrix
      +
      in file tcpdf.php, method TCPDF::convertSVGtMatrix()
          Convert SVG transformation matrix to PDF.
      +
      CoonsPatchMesh
      +
      in file tcpdf.php, method TCPDF::CoonsPatchMesh()
          Paints a coons patch mesh.
      +
      copyPage
      +
      in file tcpdf.php, method TCPDF::copyPage()
          Clone the specified page to a new page.
      +
      createBitStream
      +
      in file qrcode.php, method QRcode::createBitStream()
          createBitStream
      +
      createFrame
      +
      in file qrcode.php, method QRcode::createFrame()
          Return a copy of initialized frame.
      +
      cropMark
      +
      in file tcpdf.php, method TCPDF::cropMark()
          Paints crop mark
      +
      Curve
      +
      in file tcpdf.php, method TCPDF::Curve()
          Draws a Bezier curve.
      +
      +
      + top
      +
      + +
      +

      d

      +
      +
      $data
      +
      in file qrcode.php, variable QRcode::$data
      +
      $datacode
      +
      in file qrcode.php, variable QRcode::$datacode
      +
      $dataLength
      +
      in file qrcode.php, variable QRcode::$dataLength
      +
      $dataStr
      +
      in file qrcode.php, variable QRcode::$dataStr
      +
      $default_form_prop
      +
      in file tcpdf.php, variable TCPDF::$default_form_prop
          Deafult Javascript field properties. Possible values are described on official Javascript for Acrobat API reference. Annotation options can be directly specified using the 'aopt' entry.
      +
      $default_graphic_vars
      +
      in file tcpdf.php, variable TCPDF::$default_graphic_vars
      +
      $default_monospaced_font
      +
      in file tcpdf.php, variable TCPDF::$default_monospaced_font
          Default monospaced font
      +
      $default_table_columns
      +
      in file tcpdf.php, variable TCPDF::$default_table_columns
      +
      $diffs
      +
      in file tcpdf.php, variable TCPDF::$diffs
      +
      $dir
      +
      in file qrcode.php, variable QRcode::$dir
      +
      $diskcache
      +
      in file tcpdf.php, variable TCPDF::$diskcache
          If true enables disk caching.
      +
      $dpi
      +
      in file tcpdf.php, variable TCPDF::$dpi
          Dot Per Inch Document Resolution (do not change)
      +
      $DrawColor
      +
      in file tcpdf.php, variable TCPDF::$DrawColor
      +
      dec_to_hex
      +
      in file barcodes.php, method TCPDFBarcode::dec_to_hex()
          Convert large integer number to hexadecimal representation.
      +
      deletePage
      +
      in file tcpdf.php, method TCPDF::deletePage()
          Remove the specified page.
      +
      drawHTMLTagBorder
      +
      in file tcpdf.php, method TCPDF::drawHTMLTagBorder()
          Draw an HTML block border and fill
      +
      +
      + top
      +
      + +
      +

      e

      +
      +
      $ecccode
      +
      in file qrcode.php, variable QRcode::$ecccode
      +
      $eccLength
      +
      in file qrcode.php, variable QRcode::$eccLength
      +
      $eccTable
      +
      in file qrcode.php, variable QRcode::$eccTable
      +
      $embeddedfiles
      +
      in file tcpdf.php, variable TCPDF::$embeddedfiles
      +
      $emptypagemrk
      +
      in file tcpdf.php, variable TCPDF::$emptypagemrk
          Array used to store page positions to track empty pages.
      +
      $encoding
      +
      in file tcpdf.php, variable TCPDF::$encoding
      +
      $encryptdata
      +
      in file tcpdf.php, variable TCPDF::$encryptdata
          Array containing encryption settings
      +
      $encrypted
      +
      in file tcpdf.php, variable TCPDF::$encrypted
          Indicates whether document is protected
      +
      $enc_padding
      +
      in file tcpdf.php, variable TCPDF::$enc_padding
          Encryption padding
      +
      $endlinex
      +
      in file tcpdf.php, variable TCPDF::$endlinex
          End position of the latest inserted line
      +
      $epsmarker
      +
      in file tcpdf.php, variable TCPDF::$epsmarker
          String used to mark the beginning and end of EPS image blocks
      +
      $extgstates
      +
      in file tcpdf.php, variable TCPDF::$extgstates
          Array of transparency objects and parameters.
      +
      eat8
      +
      in file qrcode.php, method QRcode::eat8()
          eat8
      +
      eatAn
      +
      in file qrcode.php, method QRcode::eatAn()
          eatAn
      +
      eatKanji
      +
      in file qrcode.php, method QRcode::eatKanji()
          eatKanji
      +
      eatNum
      +
      in file qrcode.php, method QRcode::eatNum()
          eatNum
      +
      Ellipse
      +
      in file tcpdf.php, method TCPDF::Ellipse()
          Draws an ellipse.
      +
      empty_string
      +
      in file tcpdf.php, method TCPDF::empty_string()
          Determine whether a string is empty.
      +
      encodeBitStream
      +
      in file qrcode.php, method QRcode::encodeBitStream()
          encodeBitStream
      +
      encodeMask
      +
      in file qrcode.php, method QRcode::encodeMask()
          Encode mask
      +
      encodeMode8
      +
      in file qrcode.php, method QRcode::encodeMode8()
          encodeMode8
      +
      encodeModeAn
      +
      in file qrcode.php, method QRcode::encodeModeAn()
          encodeModeAn
      +
      encodeModeKanji
      +
      in file qrcode.php, method QRcode::encodeModeKanji()
          encodeModeKanji
      +
      encodeModeNum
      +
      in file qrcode.php, method QRcode::encodeModeNum()
          encodeModeNum
      +
      encodeModeStructure
      +
      in file qrcode.php, method QRcode::encodeModeStructure()
          encodeModeStructure
      +
      encodeString
      +
      in file qrcode.php, method QRcode::encodeString()
          Encode the input string to QR code
      +
      encode_code39_ext
      +
      in file barcodes.php, method TCPDFBarcode::encode_code39_ext()
          Encode a string to be used for CODE 39 Extended mode.
      +
      encode_rs_char
      +
      in file qrcode.php, method QRcode::encode_rs_char()
          Encode a Reed-Solomon codec and returns the parity array
      +
      endPage
      +
      in file tcpdf.php, method TCPDF::endPage()
          Terminate the current page
      +
      endSVGElementHandler
      +
      in file tcpdf.php, method TCPDF::endSVGElementHandler()
          Sets the closing SVG element handler function for the XML parser.
      +
      endTemplate
      +
      in file tcpdf.php, method TCPDF::endTemplate()
          End the current XObject Template started with startTemplate() and restore the previous graphic state.
      +
      endTOCPage
      +
      in file tcpdf.php, method TCPDF::endTOCPage()
          Terminate the current TOC (Table Of Content) page
      +
      Error
      +
      in file tcpdf.php, method TCPDF::Error()
          This method is automatically called in case of fatal error; it simply outputs the message and halts the execution. An inherited class may override it to customize the error handling but should always halt the script, or the resulting document would probably be invalid.
      +
      estimateBitsMode8
      +
      in file qrcode.php, method QRcode::estimateBitsMode8()
          estimateBitsMode8
      +
      estimateBitsModeAn
      +
      in file qrcode.php, method QRcode::estimateBitsModeAn()
          estimateBitsModeAn
      +
      estimateBitsModeKanji
      +
      in file qrcode.php, method QRcode::estimateBitsModeKanji()
          estimateBitsModeKanji
      +
      estimateBitsModeNum
      +
      in file qrcode.php, method QRcode::estimateBitsModeNum()
          estimateBitsModeNum
      +
      estimateBitStreamSize
      +
      in file qrcode.php, method QRcode::estimateBitStreamSize()
          estimateBitStreamSize
      +
      estimateVersion
      +
      in file qrcode.php, method QRcode::estimateVersion()
          estimateVersion
      +
      evaluateSymbol
      +
      in file qrcode.php, method QRcode::evaluateSymbol()
          evaluateSymbol
      +
      extractCSSproperties
      +
      in file tcpdf.php, method TCPDF::extractCSSproperties()
          Extracts the CSS properties from a CSS string.
      +
      +
      + top
      +
      + +
      +

      f

      +
      +
      $feps
      +
      in file tcpdf.php, variable TCPDF::$feps
          Epsilon value used for float calculations
      +
      $fgcolor
      +
      in file tcpdf.php, variable TCPDF::$fgcolor
      +
      $fhPt
      +
      in file tcpdf.php, variable TCPDF::$fhPt
      +
      $file_id
      +
      in file tcpdf.php, variable TCPDF::$file_id
          File ID (used on trailer)
      +
      $FillColor
      +
      in file tcpdf.php, variable TCPDF::$FillColor
      +
      $FontAscent
      +
      in file tcpdf.php, variable TCPDF::$FontAscent
      +
      $FontDescent
      +
      in file tcpdf.php, variable TCPDF::$FontDescent
      +
      $FontFamily
      +
      in file tcpdf.php, variable TCPDF::$FontFamily
      +
      $FontFiles
      +
      in file tcpdf.php, variable TCPDF::$FontFiles
      +
      $fontkeys
      +
      in file tcpdf.php, variable TCPDF::$fontkeys
          Store the font keys.
      +
      $fontlist
      +
      in file tcpdf.php, variable TCPDF::$fontlist
      +
      $fonts
      +
      in file tcpdf.php, variable TCPDF::$fonts
      +
      $FontSize
      +
      in file tcpdf.php, variable TCPDF::$FontSize
      +
      $FontSizePt
      +
      in file tcpdf.php, variable TCPDF::$FontSizePt
      +
      $FontStyle
      +
      in file tcpdf.php, variable TCPDF::$FontStyle
      +
      $font_obj_ids
      +
      in file tcpdf.php, variable TCPDF::$font_obj_ids
          Store the font object IDs.
      +
      $font_spacing
      +
      in file tcpdf.php, variable TCPDF::$font_spacing
      +
      $font_stretching
      +
      in file tcpdf.php, variable TCPDF::$font_stretching
      +
      $font_subsetting
      +
      in file tcpdf.php, variable TCPDF::$font_subsetting
      +
      $footerlen
      +
      in file tcpdf.php, variable TCPDF::$footerlen
          Array used to store footer length of each page.
      +
      $footerpos
      +
      in file tcpdf.php, variable TCPDF::$footerpos
          Array used to store footer positions of each page.
      +
      $footer_font
      +
      in file tcpdf.php, variable TCPDF::$footer_font
      +
      $footer_margin
      +
      in file tcpdf.php, variable TCPDF::$footer_margin
      +
      $formatInfo
      +
      in file qrcode.php, variable QRcode::$formatInfo
      +
      $form_action
      +
      in file tcpdf.php, variable TCPDF::$form_action
          Current form action (used during XHTML rendering)
      +
      $form_enctype
      +
      in file tcpdf.php, variable TCPDF::$form_enctype
          Current form encryption type (used during XHTML rendering)
      +
      $form_mode
      +
      in file tcpdf.php, variable TCPDF::$form_mode
          Current method to submit forms.
      +
      $form_obj_id
      +
      in file tcpdf.php, variable TCPDF::$form_obj_id
          List of form annotations IDs
      +
      $frame
      +
      in file qrcode.php, variable QRcode::$frame
      +
      $frames
      +
      in file qrcode.php, variable QRcode::$frames
      +
      $fwPt
      +
      in file tcpdf.php, variable TCPDF::$fwPt
      +
      fitBlock
      +
      in file tcpdf.php, method TCPDF::fitBlock()
          Set the block dimensions accounting for page breaks and page/column fitting
      +
      fixHTMLCode
      +
      in file tcpdf.php, method TCPDF::fixHTMLCode()
          Cleanup HTML code (requires HTML Tidy library).
      +
      Footer
      +
      in file tcpdf.php, method TCPDF::Footer()
          This method is used to render the page footer.
      +
      formatPageNumber
      +
      in file tcpdf.php, method TCPDF::formatPageNumber()
          Format the page numbers.
      +
      formatTOCPageNumber
      +
      in file tcpdf.php, method TCPDF::formatTOCPageNumber()
          Format the page numbers on the Table Of Content.
      +
      +
      + top
      +
      + +
      +

      g

      +
      +
      $gradients
      +
      in file tcpdf.php, variable TCPDF::$gradients
          Array for storing gradient information.
      +
      generateMaskNo
      +
      in file qrcode.php, method QRcode::generateMaskNo()
          Return bitmask
      +
      GetAbsX
      +
      in file tcpdf.php, method TCPDF::GetAbsX()
          Returns the absolute X value of current position.
      +
      getAliasNbPages
      +
      in file tcpdf.php, method TCPDF::getAliasNbPages()
          Returns the string alias used for the total number of pages.
      +
      getAliasNumPage
      +
      in file tcpdf.php, method TCPDF::getAliasNumPage()
          Returns the string alias used for the page number.
      +
      getAnnotOptFromJSProp
      +
      in file tcpdf.php, method TCPDF::getAnnotOptFromJSProp()
          Convert JavaScript form fields properties array to Annotation Properties array.
      +
      GetArrStringWidth
      +
      in file tcpdf.php, method TCPDF::GetArrStringWidth()
          Returns the string length of an array of chars in user unit or an array of characters widths. A font must be selected.
      +
      getBarcode
      +
      in file tcpdf.php, method TCPDF::getBarcode()
          Get current barcode.
      +
      getBarcodeArray
      +
      in file pdf417.php, method PDF417::getBarcodeArray()
          Returns a barcode array which is readable by TCPDF
      +
      getBarcodeArray
      +
      in file 2dbarcodes.php, method TCPDF2DBarcode::getBarcodeArray()
          Return an array representations of barcode.
      +
      getBarcodeArray
      +
      in file qrcode.php, method QRcode::getBarcodeArray()
          Returns a barcode array which is readable by TCPDF
      +
      getBarcodeArray
      +
      in file barcodes.php, method TCPDFBarcode::getBarcodeArray()
          Return an array representations of barcode.
      +
      getBitStream
      +
      in file qrcode.php, method QRcode::getBitStream()
          Returns a stream of bits.
      +
      getBorderMode
      +
      in file tcpdf.php, method TCPDF::getBorderMode()
          Get the border mode accounting for multicell position (opens bottom side of multicell crossing pages)
      +
      getBorderStartPosition
      +
      in file tcpdf.php, method TCPDF::getBorderStartPosition()
          Return the starting coordinates to draw an html border
      +
      getBreakMargin
      +
      in file tcpdf.php, method TCPDF::getBreakMargin()
          Returns the page break margin.
      +
      getBuffer
      +
      in file tcpdf.php, method TCPDF::getBuffer()
          Get buffer content.
      +
      getByteStream
      +
      in file qrcode.php, method QRcode::getByteStream()
          Pack all bit streams padding bits into a byte array.
      +
      getCellBorder
      +
      in file tcpdf.php, method TCPDF::getCellBorder()
          Returns the code to draw the cell border
      +
      getCellCode
      +
      in file tcpdf.php, method TCPDF::getCellCode()
          Returns the PDF string code to print a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.
      If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
      +
      getCellHeightRatio
      +
      in file tcpdf.php, method TCPDF::getCellHeightRatio()
          return the height of cell repect font height.
      +
      getCellMargins
      +
      in file tcpdf.php, method TCPDF::getCellMargins()
          Get the internal Cell margin array.
      +
      getCellPaddings
      +
      in file tcpdf.php, method TCPDF::getCellPaddings()
          Get the internal Cell padding array.
      +
      GetCharWidth
      +
      in file tcpdf.php, method TCPDF::GetCharWidth()
          Returns the length of the char in user unit for the current font considering current stretching and spacing (tracking/kerning).
      +
      getCode
      +
      in file qrcode.php, method QRcode::getCode()
          Return Reed-Solomon block code.
      +
      getColumn
      +
      in file tcpdf.php, method TCPDF::getColumn()
          Return the current column number
      +
      getCompaction
      +
      in file pdf417.php, method PDF417::getCompaction()
          Compact data by mode.
      +
      getCSSBorderDashStyle
      +
      in file tcpdf.php, method TCPDF::getCSSBorderDashStyle()
          Returns the border dash style from CSS property
      +
      getCSSBorderMargin
      +
      in file tcpdf.php, method TCPDF::getCSSBorderMargin()
          Get the border-spacing from CSS attribute.
      +
      getCSSBorderStyle
      +
      in file tcpdf.php, method TCPDF::getCSSBorderStyle()
          Returns the border style array from CSS border properties
      +
      getCSSBorderWidth
      +
      in file tcpdf.php, method TCPDF::getCSSBorderWidth()
          Returns the border width from CSS property
      +
      getCSSFontSpacing
      +
      in file tcpdf.php, method TCPDF::getCSSFontSpacing()
          Returns the letter-spacing value from CSS value
      +
      getCSSFontStretching
      +
      in file tcpdf.php, method TCPDF::getCSSFontStretching()
          Returns the percentage of font stretching from CSS value
      +
      getCSSMargin
      +
      in file tcpdf.php, method TCPDF::getCSSMargin()
          Get the internal Cell margin from CSS attribute.
      +
      getCSSPadding
      +
      in file tcpdf.php, method TCPDF::getCSSPadding()
          Get the internal Cell padding from CSS attribute.
      +
      getDataLength
      +
      in file qrcode.php, method QRcode::getDataLength()
          Return maximum data code length (bytes) for the version.
      +
      getECCLength
      +
      in file qrcode.php, method QRcode::getECCLength()
          Return maximum error correction code length (bytes) for the version.
      +
      getEccSpec
      +
      in file qrcode.php, method QRcode::getEccSpec()
          Return an array of ECC specification.
      +
      getEncPermissionsString
      +
      in file tcpdf.php, method TCPDF::getEncPermissionsString()
          Convert encryption P value to a string of bytes, low-order byte first.
      +
      getErrorCorrection
      +
      in file pdf417.php, method PDF417::getErrorCorrection()
          Returns the error correction codewords
      +
      getErrorCorrectionLevel
      +
      in file pdf417.php, method PDF417::getErrorCorrectionLevel()
          Returns the error correction level (0-8) to be used
      +
      getFontAscent
      +
      in file tcpdf.php, method TCPDF::getFontAscent()
          Return the font ascent value
      +
      getFontBuffer
      +
      in file tcpdf.php, method TCPDF::getFontBuffer()
          Get font buffer content.
      +
      getFontDescent
      +
      in file tcpdf.php, method TCPDF::getFontDescent()
          Return the font descent value
      +
      getFontFamily
      +
      in file tcpdf.php, method TCPDF::getFontFamily()
          Returns the current font family name.
      +
      getFontFamilyName
      +
      in file tcpdf.php, method TCPDF::getFontFamilyName()
          Return normalized font name
      +
      getFontSize
      +
      in file tcpdf.php, method TCPDF::getFontSize()
          Returns the current font size.
      +
      getFontSizePt
      +
      in file tcpdf.php, method TCPDF::getFontSizePt()
          Returns the current font size in points unit.
      +
      getFontsList
      +
      in file tcpdf.php, method TCPDF::getFontsList()
          Fill the list of available fonts ($this->fontlist).
      +
      getFontSpacing
      +
      in file tcpdf.php, method TCPDF::getFontSpacing()
          Get the amount to increase or decrease the space between characters in a text.
      +
      getFontStretching
      +
      in file tcpdf.php, method TCPDF::getFontStretching()
          Get the percentage of character stretching.
      +
      getFontStyle
      +
      in file tcpdf.php, method TCPDF::getFontStyle()
          Returns the current font style.
      +
      getFontSubsetting
      +
      in file tcpdf.php, method TCPDF::getFontSubsetting()
          Return the default option for font subsetting.
      +
      getFooterFont
      +
      in file tcpdf.php, method TCPDF::getFooterFont()
          Get Footer font.
      +
      getFooterMargin
      +
      in file tcpdf.php, method TCPDF::getFooterMargin()
          Returns footer margin in user units.
      +
      getFormatInfo
      +
      in file qrcode.php, method QRcode::getFormatInfo()
          Return BCH encoded format information pattern.
      +
      getFormDefaultProp
      +
      in file tcpdf.php, method TCPDF::getFormDefaultProp()
          Return the default properties for form fields.
      +
      getFrameAt
      +
      in file qrcode.php, method QRcode::getFrameAt()
          Get frame value at specified position
      +
      getGDgamma
      +
      in file tcpdf.php, method TCPDF::getGDgamma()
          Correct the gamma value to be used with GD library
      +
      getGraphicVars
      +
      in file tcpdf.php, method TCPDF::getGraphicVars()
          Returns current graphic variables as array.
      +
      getGroupPageNo
      +
      in file tcpdf.php, method TCPDF::getGroupPageNo()
          Return the current page in the group.
      +
      getGroupPageNoFormatted
      +
      in file tcpdf.php, method TCPDF::getGroupPageNoFormatted()
          Returns the current group page number formatted as a string.
      +
      getHeaderData
      +
      in file tcpdf.php, method TCPDF::getHeaderData()
          Returns header data:
      +
      getHeaderFont
      +
      in file tcpdf.php, method TCPDF::getHeaderFont()
          Get header font.
      +
      getHeaderMargin
      +
      in file tcpdf.php, method TCPDF::getHeaderMargin()
          Returns header margin in user units.
      +
      getHtmlDomArray
      +
      in file tcpdf.php, method TCPDF::getHtmlDomArray()
          Returns the HTML DOM array.
      +
      getHTMLUnitToUnits
      +
      in file tcpdf.php, method TCPDF::getHTMLUnitToUnits()
          Convert HTML string containing value and unit of measure to user's units or points.
      +
      getHyphenPatternsFromTEX
      +
      in file tcpdf.php, method TCPDF::getHyphenPatternsFromTEX()
          Returns an array of hyphenation patterns.
      +
      getImageBuffer
      +
      in file tcpdf.php, method TCPDF::getImageBuffer()
          Get image buffer content.
      +
      getImageFileType
      +
      in file tcpdf.php, method TCPDF::getImageFileType()
          Return the image type given the file name or array returned by getimagesize() function.
      +
      getImageRBX
      +
      in file tcpdf.php, method TCPDF::getImageRBX()
          Return the right-bottom (or left-bottom for RTL) corner X coordinate of last inserted image
      +
      getImageRBY
      +
      in file tcpdf.php, method TCPDF::getImageRBY()
          Return the right-bottom (or left-bottom for RTL) corner Y coordinate of last inserted image
      +
      getImageScale
      +
      in file tcpdf.php, method TCPDF::getImageScale()
          Returns the adjusting factor to convert pixels to user units.
      +
      getInputSequences
      +
      in file pdf417.php, method PDF417::getInputSequences()
          Create array of sequences from input
      +
      getLastH
      +
      in file tcpdf.php, method TCPDF::getLastH()
          Get the last cell height.
      +
      GetLineWidth
      +
      in file tcpdf.php, method TCPDF::GetLineWidth()
          Returns the current the line width.
      +
      getMargins
      +
      in file tcpdf.php, method TCPDF::getMargins()
          Returns an array containing current margins:
      +
      getMinimumVersion
      +
      in file qrcode.php, method QRcode::getMinimumVersion()
          Return a version number that satisfies the input code length.
      +
      getNextPosition
      +
      in file qrcode.php, method QRcode::getNextPosition()
          Return the next frame position
      +
      getNumberOfColumns
      +
      in file tcpdf.php, method TCPDF::getNumberOfColumns()
          Return the current number of columns.
      +
      GetNumChars
      +
      in file tcpdf.php, method TCPDF::GetNumChars()
          Returns the numbero of characters in a string.
      +
      getNumLines
      +
      in file tcpdf.php, method TCPDF::getNumLines()
          This method return the estimated number of lines for print a simple text string using Multicell() method.
      +
      getNumPages
      +
      in file tcpdf.php, method TCPDF::getNumPages()
          Get the total number of insered pages.
      +
      getObjFilename
      +
      in file tcpdf.php, method TCPDF::getObjFilename()
          Returns a temporary filename for caching object on filesystem.
      +
      getOriginalMargins
      +
      in file tcpdf.php, method TCPDF::getOriginalMargins()
          Returns an array containing original margins:
      +
      getPage
      +
      in file tcpdf.php, method TCPDF::getPage()
          Get current document page number.
      +
      getPageBuffer
      +
      in file tcpdf.php, method TCPDF::getPageBuffer()
          Get page buffer content.
      +
      getPageDimensions
      +
      in file tcpdf.php, method TCPDF::getPageDimensions()
          Returns an array of page dimensions:
      +
      getPageGroupAlias
      +
      in file tcpdf.php, method TCPDF::getPageGroupAlias()
          Return the alias of the current page group If the current font is unicode type, the returned string is surrounded by additional curly braces.
      +
      getPageHeight
      +
      in file tcpdf.php, method TCPDF::getPageHeight()
          Returns the page height in units.
      +
      getPageNumGroupAlias
      +
      in file tcpdf.php, method TCPDF::getPageNumGroupAlias()
          Return the alias for the page number on the current page group If the current font is unicode type, the returned string is surrounded by additional curly braces.
      +
      getPageRegions
      +
      in file tcpdf.php, method TCPDF::getPageRegions()
          Return an array of no-write page regions
      +
      getPageSizeFromFormat
      +
      in file tcpdf.php, method TCPDF::getPageSizeFromFormat()
          Get page dimensions from format name.
      +
      getPageWidth
      +
      in file tcpdf.php, method TCPDF::getPageWidth()
          Returns the page width in units.
      +
      getPathPaintOperator
      +
      in file tcpdf.php, method TCPDF::getPathPaintOperator()
          Get the Path-Painting Operators.
      +
      getPDFData
      +
      in file tcpdf.php, method TCPDF::getPDFData()
          Returns the PDF data.
      +
      getRandomSeed
      +
      in file tcpdf.php, method TCPDF::getRandomSeed()
          Returns a string containing random data to be used as a seed for encryption methods.
      +
      getRawCharWidth
      +
      in file tcpdf.php, method TCPDF::getRawCharWidth()
          Returns the length of the char in user unit for the current font.
      +
      getRemainder
      +
      in file qrcode.php, method QRcode::getRemainder()
          Return the numer of remainder bits.
      +
      getRemainingWidth
      +
      in file tcpdf.php, method TCPDF::getRemainingWidth()
          Returns the remaining width between the current position and margins.
      +
      getRTL
      +
      in file tcpdf.php, method TCPDF::getRTL()
          Return the RTL status
      +
      getScaleFactor
      +
      in file tcpdf.php, method TCPDF::getScaleFactor()
          Returns the scale factor (number of points in user unit).
      +
      getSpaceString
      +
      in file tcpdf.php, method TCPDF::getSpaceString()
          Returns the string used to find spaces
      +
      getStringHeight
      +
      in file tcpdf.php, method TCPDF::getStringHeight()
          This method return the estimated needed height for print a simple text string in Multicell() method.
      +
      GetStringWidth
      +
      in file tcpdf.php, method TCPDF::GetStringWidth()
          Returns the length of a string in user unit. A font must be selected.
      +
      getSVGTransformMatrix
      +
      in file tcpdf.php, method TCPDF::getSVGTransformMatrix()
          Get the tranformation matrix from SVG transform attribute
      +
      getTagStyleFromCSS
      +
      in file tcpdf.php, method TCPDF::getTagStyleFromCSS()
          Returns the styles that apply for the selected HTML tag.
      +
      getTCPDFVersion
      +
      in file tcpdf.php, method TCPDF::getTCPDFVersion()
          Return the current TCPDF version.
      +
      getTransformationMatrixProduct
      +
      in file tcpdf.php, method TCPDF::getTransformationMatrixProduct()
          Get the product of two SVG tranformation matrices
      +
      getUserPermissionCode
      +
      in file tcpdf.php, method TCPDF::getUserPermissionCode()
          Return the premission code used on encryption (P value).
      +
      getVectorsAngle
      +
      in file tcpdf.php, method TCPDF::getVectorsAngle()
          Returns the angle in radiants between two vectors
      +
      getVersionPattern
      +
      in file qrcode.php, method QRcode::getVersionPattern()
          Return BCH encoded version information pattern that is used for the symbol of version 7 or greater. Use lower 18 bits.
      +
      getWidth
      +
      in file qrcode.php, method QRcode::getWidth()
          Return the width of the symbol for the version.
      +
      GetX
      +
      in file tcpdf.php, method TCPDF::GetX()
          Returns the relative X value of current position.
      +
      GetY
      +
      in file tcpdf.php, method TCPDF::GetY()
          Returns the ordinate of the current position.
      +
      get_mqr
      +
      in file tcpdf.php, method TCPDF::get_mqr()
          Gets the current active configuration setting of magic_quotes_runtime (if the get_magic_quotes_runtime function exist)
      +
      Gradient
      +
      in file tcpdf.php, method TCPDF::Gradient()
          Output gradient.
      +
      +
      + top
      +
      + +
      +

      h

      +
      +
      $h
      +
      in file tcpdf.php, variable TCPDF::$h
      +
      $header_font
      +
      in file tcpdf.php, variable TCPDF::$header_font
      +
      $header_logo
      +
      in file tcpdf.php, variable TCPDF::$header_logo
      +
      $header_logo_width
      +
      in file tcpdf.php, variable TCPDF::$header_logo_width
      +
      $header_margin
      +
      in file tcpdf.php, variable TCPDF::$header_margin
      +
      $header_string
      +
      in file tcpdf.php, variable TCPDF::$header_string
      +
      $header_title
      +
      in file tcpdf.php, variable TCPDF::$header_title
      +
      $hint
      +
      in file qrcode.php, variable QRcode::$hint
      +
      $hPt
      +
      in file tcpdf.php, variable TCPDF::$hPt
      +
      $HREF
      +
      in file tcpdf.php, variable TCPDF::$HREF
      +
      $htmlLinkColorArray
      +
      in file tcpdf.php, variable TCPDF::$htmlLinkColorArray
          Default color for html links
      +
      $htmlLinkFontStyle
      +
      in file tcpdf.php, variable TCPDF::$htmlLinkFontStyle
          Default font style to add to html links
      +
      $htmlvspace
      +
      in file tcpdf.php, variable TCPDF::$htmlvspace
          Count the latest inserted vertical spaces on HTML
      +
      Header
      +
      in file tcpdf.php, method TCPDF::Header()
          This method is used to render the page header.
      +
      HEAD_MAGNIFICATION
      +
      in file tcpdf_config.php, constant HEAD_MAGNIFICATION
          magnification factor for titles
      +
      hex_to_dec
      +
      in file barcodes.php, method TCPDFBarcode::hex_to_dec()
          Convert large hexadecimal number to decimal representation (string).
      +
      htmlcolors.php
      +
      procedural page htmlcolors.php
      +
      hyphenateText
      +
      in file tcpdf.php, method TCPDF::hyphenateText()
          Returns text with soft hyphens.
      +
      hyphenateWord
      +
      in file tcpdf.php, method TCPDF::hyphenateWord()
          Returns an array of chars containing soft hyphens.
      +
      +
      + top
      +
      + +
      +

      i

      +
      +
      $imagekeys
      +
      in file tcpdf.php, variable TCPDF::$imagekeys
          Store the image keys.
      +
      $images
      +
      in file tcpdf.php, variable TCPDF::$images
      +
      $imgscale
      +
      in file tcpdf.php, variable TCPDF::$imgscale
      +
      $img_rb_x
      +
      in file tcpdf.php, variable TCPDF::$img_rb_x
      +
      $img_rb_y
      +
      in file tcpdf.php, variable TCPDF::$img_rb_y
      +
      $InFooter
      +
      in file tcpdf.php, variable TCPDF::$InFooter
      +
      $internal_encoding
      +
      in file tcpdf.php, variable TCPDF::$internal_encoding
      +
      $inthead
      +
      in file tcpdf.php, variable TCPDF::$inthead
          True when we are printing the thead section on a new page
      +
      $intmrk
      +
      in file tcpdf.php, variable TCPDF::$intmrk
          Array used to store positions inside the pages buffer.
      +
      $inxobj
      +
      in file tcpdf.php, variable TCPDF::$inxobj
      +
      $isunicode
      +
      in file tcpdf.php, variable TCPDF::$isunicode
      +
      $items
      +
      in file qrcode.php, variable QRcode::$items
      +
      identifyMode
      +
      in file qrcode.php, method QRcode::identifyMode()
          identifyMode
      +
      Image
      +
      in file tcpdf.php, method TCPDF::Image()
          Puts an image in the page.
      +
      ImageEps
      +
      in file tcpdf.php, method TCPDF::ImageEps()
          Embed vector-based Adobe Illustrator (AI) or AI-compatible EPS files.
      +
      ImagePngAlpha
      +
      in file tcpdf.php, method TCPDF::ImagePngAlpha()
          Extract info from a PNG image with alpha channel using the GD library.
      +
      ImageSVG
      +
      in file tcpdf.php, method TCPDF::ImageSVG()
          Embedd a Scalable Vector Graphics (SVG) image.
      +
      imb_crc11fcs
      +
      in file barcodes.php, method TCPDFBarcode::imb_crc11fcs()
          Intelligent Mail Barcode calculation of Frame Check Sequence
      +
      imb_reverse_us
      +
      in file barcodes.php, method TCPDFBarcode::imb_reverse_us()
          Reverse unsigned short value
      +
      imb_tables
      +
      in file barcodes.php, method TCPDFBarcode::imb_tables()
          generate Nof13 tables used for Intelligent Mail Barcode
      +
      IncludeJS
      +
      in file tcpdf.php, method TCPDF::IncludeJS()
          Adds a javascript
      +
      init
      +
      in file qrcode.php, method QRcode::init()
          Initialize code.
      +
      init_rs
      +
      in file qrcode.php, method QRcode::init_rs()
          Initialize a Reed-Solomon codec and add it to existing rsitems
      +
      init_rs_char
      +
      in file qrcode.php, method QRcode::init_rs_char()
          Initialize a Reed-Solomon codec and returns an array of values.
      +
      insertStructuredAppendHeader
      +
      in file qrcode.php, method QRcode::insertStructuredAppendHeader()
          insertStructuredAppendHeader
      +
      intToRoman
      +
      in file tcpdf.php, method TCPDF::intToRoman()
          Returns the Roman representation of an integer number
      +
      isalnumat
      +
      in file qrcode.php, method QRcode::isalnumat()
          Return true if the character at specified position is an alphanumeric character
      +
      isdigitat
      +
      in file qrcode.php, method QRcode::isdigitat()
          Return true if the character at specified position is a number
      +
      isRTLTextDir
      +
      in file tcpdf.php, method TCPDF::isRTLTextDir()
          Return the current temporary RTL status
      +
      isUnicodeFont
      +
      in file tcpdf.php, method TCPDF::isUnicodeFont()
          Return true if the current font is unicode type.
      +
      isValidCSSSelectorForTag
      +
      in file tcpdf.php, method TCPDF::isValidCSSSelectorForTag()
          Returns true if the CSS selector is valid for the selected HTML tag
      +
      +
      + top
      +
      + +
      +

      j

      +
      +
      $javascript
      +
      in file tcpdf.php, variable TCPDF::$javascript
          javascript code
      +
      $jpeg_quality
      +
      in file tcpdf.php, variable TCPDF::$jpeg_quality
          Set the default JPEG compression quality (1-100)
      +
      $js_objects
      +
      in file tcpdf.php, variable TCPDF::$js_objects
          Javascript objects array
      +
      +
      + top
      +
      + +
      +

      k

      +
      +
      $k
      +
      in file tcpdf.php, variable TCPDF::$k
      +
      $keywords
      +
      in file tcpdf.php, variable TCPDF::$keywords
      +
      K_BLANK_IMAGE
      +
      in file tcpdf_config.php, constant K_BLANK_IMAGE
          blank image
      +
      K_CELL_HEIGHT_RATIO
      +
      in file tcpdf_config.php, constant K_CELL_HEIGHT_RATIO
          height of cell repect font height
      +
      K_PATH_CACHE
      +
      in file tcpdf_config.php, constant K_PATH_CACHE
          cache directory for temporary files (full path)
      +
      K_PATH_FONTS
      +
      in file tcpdf_config.php, constant K_PATH_FONTS
          path for PDF fonts
      +
      K_PATH_IMAGES
      +
      in file tcpdf_config.php, constant K_PATH_IMAGES
          images directory
      +
      K_PATH_MAIN
      +
      in file tcpdf_config.php, constant K_PATH_MAIN
          Installation path (/var/www/tcpdf/).
      +
      K_PATH_URL
      +
      in file tcpdf_config.php, constant K_PATH_URL
          URL path to tcpdf installation folder (http://localhost/tcpdf/).
      +
      K_PATH_URL_CACHE
      +
      in file tcpdf_config.php, constant K_PATH_URL_CACHE
          cache directory for temporary files (url path)
      +
      K_SMALL_RATIO
      +
      in file tcpdf_config.php, constant K_SMALL_RATIO
          reduction factor for small font
      +
      K_TCPDF_CALLS_IN_HTML
      +
      in file tcpdf_config.php, constant K_TCPDF_CALLS_IN_HTML
          if true allows to call TCPDF methods using HTML syntax IMPORTANT: For security reason, disable this feature if you are printing user HTML content.
      +
      K_THAI_TOPCHARS
      +
      in file tcpdf_config.php, constant K_THAI_TOPCHARS
          set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language
      +
      K_TITLE_MAGNIFICATION
      +
      in file tcpdf_config.php, constant K_TITLE_MAGNIFICATION
          title magnification respect main font size
      +
      +
      + top
      +
      + +
      +

      l

      +
      +
      $l
      +
      in file tcpdf.php, variable TCPDF::$l
      +
      $lasth
      +
      in file tcpdf.php, variable TCPDF::$lasth
      +
      $last_enc_key
      +
      in file tcpdf.php, variable TCPDF::$last_enc_key
          last RC4 key encrypted (cached for optimisation)
      +
      $last_enc_key_c
      +
      in file tcpdf.php, variable TCPDF::$last_enc_key_c
          last RC4 computed key
      +
      $LayoutMode
      +
      in file tcpdf.php, variable TCPDF::$LayoutMode
      +
      $lengthTableBits
      +
      in file qrcode.php, variable QRcode::$lengthTableBits
      +
      $level
      +
      in file qrcode.php, variable QRcode::$level
      +
      $linestyleCap
      +
      in file tcpdf.php, variable TCPDF::$linestyleCap
          PDF string for last line width
      +
      $linestyleDash
      +
      in file tcpdf.php, variable TCPDF::$linestyleDash
          PDF string for last line width
      +
      $linestyleJoin
      +
      in file tcpdf.php, variable TCPDF::$linestyleJoin
          PDF string for last line width
      +
      $linestyleWidth
      +
      in file tcpdf.php, variable TCPDF::$linestyleWidth
          PDF string for last line width
      +
      $linethrough
      +
      in file tcpdf.php, variable TCPDF::$linethrough
          line trough state
      +
      $LineWidth
      +
      in file tcpdf.php, variable TCPDF::$LineWidth
      +
      $links
      +
      in file tcpdf.php, variable TCPDF::$links
      +
      $lispacer
      +
      in file tcpdf.php, variable TCPDF::$lispacer
      +
      $listcount
      +
      in file tcpdf.php, variable TCPDF::$listcount
      +
      $listindent
      +
      in file tcpdf.php, variable TCPDF::$listindent
      +
      $listindentlevel
      +
      in file tcpdf.php, variable TCPDF::$listindentlevel
      +
      $listnum
      +
      in file tcpdf.php, variable TCPDF::$listnum
      +
      $listordered
      +
      in file tcpdf.php, variable TCPDF::$listordered
      +
      $lisymbol
      +
      in file tcpdf.php, variable TCPDF::$lisymbol
          Symbol used for HTML unordered list items
      +
      $lMargin
      +
      in file tcpdf.php, variable TCPDF::$lMargin
      +
      lastPage
      +
      in file tcpdf.php, method TCPDF::lastPage()
          Reset pointer to the last document page.
      +
      lengthIndicator
      +
      in file qrcode.php, method QRcode::lengthIndicator()
          Return the size of length indicator for the mode and version.
      +
      lengthOfCode
      +
      in file qrcode.php, method QRcode::lengthOfCode()
          lengthOfCode
      +
      Line
      +
      in file tcpdf.php, method TCPDF::Line()
          Draws a line between two points.
      +
      LinearGradient
      +
      in file tcpdf.php, method TCPDF::LinearGradient()
          Paints a linear colour gradient.
      +
      Link
      +
      in file tcpdf.php, method TCPDF::Link()
          Puts a link on a rectangular area of the page.
      +
      ListBox
      +
      in file tcpdf.php, method TCPDF::ListBox()
          Creates a List-box field
      +
      Ln
      +
      in file tcpdf.php, method TCPDF::Ln()
          Performs a line break.
      +
      lookAnTable
      +
      in file qrcode.php, method QRcode::lookAnTable()
          Look up the alphabet-numeric convesion table (see JIS X0510:2004, pp.19).
      +
      +
      + top
      +
      + +
      +

      m

      +
      +
      $maxselcol
      +
      in file tcpdf.php, variable TCPDF::$maxselcol
          Maximum page and column selected
      +
      makeMask
      +
      in file qrcode.php, method QRcode::makeMask()
          makeMask
      +
      makeMaskNo
      +
      in file qrcode.php, method QRcode::makeMaskNo()
          makeMaskNo
      +
      mask
      +
      in file qrcode.php, method QRcode::mask()
          mask
      +
      mask0
      +
      in file qrcode.php, method QRcode::mask0()
          mask0
      +
      mask1
      +
      in file qrcode.php, method QRcode::mask1()
          mask1
      +
      mask2
      +
      in file qrcode.php, method QRcode::mask2()
          mask2
      +
      mask3
      +
      in file qrcode.php, method QRcode::mask3()
          mask3
      +
      mask4
      +
      in file qrcode.php, method QRcode::mask4()
          mask4
      +
      mask5
      +
      in file qrcode.php, method QRcode::mask5()
          mask5
      +
      mask6
      +
      in file qrcode.php, method QRcode::mask6()
          mask6
      +
      mask7
      +
      in file qrcode.php, method QRcode::mask7()
          mask7
      +
      maximumWords
      +
      in file qrcode.php, method QRcode::maximumWords()
          Return the maximum length for the mode and version.
      +
      MAX_STRUCTURED_SYMBOLS
      +
      in file qrcode.php, constant MAX_STRUCTURED_SYMBOLS
          Max number of symbols for structured mode
      +
      mergeBitStream
      +
      in file qrcode.php, method QRcode::mergeBitStream()
          mergeBitStream
      +
      MirrorH
      +
      in file tcpdf.php, method TCPDF::MirrorH()
          Horizontal Mirroring.
      +
      MirrorL
      +
      in file tcpdf.php, method TCPDF::MirrorL()
          Reflection against a straight line through point (x, y) with the gradient angle (angle).
      +
      MirrorP
      +
      in file tcpdf.php, method TCPDF::MirrorP()
          Point reflection mirroring.
      +
      MirrorV
      +
      in file tcpdf.php, method TCPDF::MirrorV()
          Verical Mirroring.
      +
      modnn
      +
      in file qrcode.php, method QRcode::modnn()
          modnn
      +
      movePage
      +
      in file tcpdf.php, method TCPDF::movePage()
          Move a page to a previous position.
      +
      MultiCell
      +
      in file tcpdf.php, method TCPDF::MultiCell()
          This method allows printing text with line breaks.
      +
      +
      + top
      +
      + +
      +

      n

      +
      +
      $n
      +
      in file tcpdf.php, variable TCPDF::$n
      +
      $newline
      +
      in file tcpdf.php, variable TCPDF::$newline
          True if a newline is created.
      +
      $newpagegroup
      +
      in file tcpdf.php, variable TCPDF::$newpagegroup
          Array of page numbers were a new page group was started
      +
      $numfonts
      +
      in file tcpdf.php, variable TCPDF::$numfonts
          Counts the number of fonts.
      +
      $numimages
      +
      in file tcpdf.php, variable TCPDF::$numimages
          Counts the number of pages.
      +
      $numpages
      +
      in file tcpdf.php, variable TCPDF::$numpages
          Counts the number of pages.
      +
      $num_columns
      +
      in file tcpdf.php, variable TCPDF::$num_columns
          Number of colums
      +
      $n_js
      +
      in file tcpdf.php, variable TCPDF::$n_js
          javascript counter
      +
      $n_ocg_print
      +
      in file tcpdf.php, variable TCPDF::$n_ocg_print
          Print visibility.
      +
      $n_ocg_view
      +
      in file tcpdf.php, variable TCPDF::$n_ocg_view
          View visibility.
      +
      N1
      +
      in file qrcode.php, constant N1
          Down point base value for case 1 mask pattern (concatenation of same color in a line or a column)
      +
      N2
      +
      in file qrcode.php, constant N2
          Down point base value for case 2 mask pattern (module block of same color)
      +
      N3
      +
      in file qrcode.php, constant N3
          Down point base value for case 3 mask pattern (1:1:3:1:1(dark:bright:dark:bright:dark)pattern in a line or a column)
      +
      N4
      +
      in file qrcode.php, constant N4
          Down point base value for case 4 mask pattern (ration of dark modules in whole)
      +
      newFrame
      +
      in file qrcode.php, method QRcode::newFrame()
          Set new frame for the specified version.
      +
      newFromBytes
      +
      in file qrcode.php, method QRcode::newFromBytes()
          Return new bitstream from bytes
      +
      newFromNum
      +
      in file qrcode.php, method QRcode::newFromNum()
          Return new bitstream from number
      +
      newInputItem
      +
      in file qrcode.php, method QRcode::newInputItem()
          newInputItem
      +
      +
      + top
      +
      + +
      +

      o

      +
      +
      $objcopy
      +
      in file tcpdf.php, variable TCPDF::$objcopy
          Used to store a cloned copy of the current class object
      +
      $offsets
      +
      in file tcpdf.php, variable TCPDF::$offsets
      +
      $opencell
      +
      in file tcpdf.php, variable TCPDF::$opencell
      +
      $openMarkedContent
      +
      in file tcpdf.php, variable TCPDF::$openMarkedContent
          True if marked-content sequence is open
      +
      $original_lMargin
      +
      in file tcpdf.php, variable TCPDF::$original_lMargin
      +
      $original_rMargin
      +
      in file tcpdf.php, variable TCPDF::$original_rMargin
      +
      $OutlineRoot
      +
      in file tcpdf.php, variable TCPDF::$OutlineRoot
          Outline root for bookmark
      +
      $outlines
      +
      in file tcpdf.php, variable TCPDF::$outlines
          Outlines for bookmark
      +
      $overline
      +
      in file tcpdf.php, variable TCPDF::$overline
      +
      objclone
      +
      in file tcpdf.php, method TCPDF::objclone()
          Creates a copy of a class object
      +
      Open
      +
      in file tcpdf.php, method TCPDF::Open()
          This method begins the generation of the PDF document.
      +
      openHTMLTagHandler
      +
      in file tcpdf.php, method TCPDF::openHTMLTagHandler()
          Process opening tags.
      +
      Output
      +
      in file tcpdf.php, method TCPDF::Output()
          Send the document to a given destination: string, local file or browser.
      +
      +
      + top
      +
      + +
      +

      p

      +
      +
      $page
      +
      in file tcpdf.php, variable TCPDF::$page
      +
      $PageAnnots
      +
      in file tcpdf.php, variable TCPDF::$PageAnnots
      +
      $PageBreakTrigger
      +
      in file tcpdf.php, variable TCPDF::$PageBreakTrigger
      +
      $pagedim
      +
      in file tcpdf.php, variable TCPDF::$pagedim
      +
      $pagegroups
      +
      in file tcpdf.php, variable TCPDF::$pagegroups
          Contains the number of pages of the groups
      +
      $pagelen
      +
      in file tcpdf.php, variable TCPDF::$pagelen
          Array containing page lengths in bytes.
      +
      $PageMode
      +
      in file tcpdf.php, variable TCPDF::$PageMode
          A name object specifying how the document should be displayed when opened.
      +
      $pageopen
      +
      in file tcpdf.php, variable TCPDF::$pageopen
          Store the fage status (true when opened, false when closed).
      +
      $pages
      +
      in file tcpdf.php, variable TCPDF::$pages
      +
      $page_obj_id
      +
      in file tcpdf.php, variable TCPDF::$page_obj_id
          ID of page objects
      +
      $page_regions
      +
      in file tcpdf.php, variable TCPDF::$page_regions
      +
      $pdfunit
      +
      in file tcpdf.php, variable TCPDF::$pdfunit
      +
      $PDFVersion
      +
      in file tcpdf.php, variable TCPDF::$PDFVersion
      +
      $premode
      +
      in file tcpdf.php, variable TCPDF::$premode
      +
      $print_footer
      +
      in file tcpdf.php, variable TCPDF::$print_footer
      +
      $print_header
      +
      in file tcpdf.php, variable TCPDF::$print_header
      +
      PageNo
      +
      in file tcpdf.php, method TCPDF::PageNo()
          Returns the current page number.
      +
      PageNoFormatted
      +
      in file tcpdf.php, method TCPDF::PageNoFormatted()
          Returns the current page number formatted as a string.
      +
      PDF417
      +
      in file pdf417.php, class PDF417
          Class to create PDF417 barcode arrays for TCPDF class.
      +
      pdf417.php
      +
      procedural page pdf417.php
      +
      PDF417DEFS
      +
      in file pdf417.php, constant PDF417DEFS
          Indicate that definitions for this class are set
      +
      PDF_AUTHOR
      +
      in file tcpdf_config.php, constant PDF_AUTHOR
          document author
      +
      PDF_CREATOR
      +
      in file tcpdf_config.php, constant PDF_CREATOR
          document creator
      +
      PDF_FONT_MONOSPACED
      +
      in file tcpdf_config.php, constant PDF_FONT_MONOSPACED
          default monospaced font name
      +
      PDF_FONT_NAME_DATA
      +
      in file tcpdf_config.php, constant PDF_FONT_NAME_DATA
          default data font name
      +
      PDF_FONT_NAME_MAIN
      +
      in file tcpdf_config.php, constant PDF_FONT_NAME_MAIN
          default main font name
      +
      PDF_FONT_SIZE_DATA
      +
      in file tcpdf_config.php, constant PDF_FONT_SIZE_DATA
          default data font size
      +
      PDF_FONT_SIZE_MAIN
      +
      in file tcpdf_config.php, constant PDF_FONT_SIZE_MAIN
          default main font size
      +
      PDF_HEADER_LOGO
      +
      in file tcpdf_config.php, constant PDF_HEADER_LOGO
          image logo
      +
      PDF_HEADER_LOGO_WIDTH
      +
      in file tcpdf_config.php, constant PDF_HEADER_LOGO_WIDTH
          header logo image width [mm]
      +
      PDF_HEADER_STRING
      +
      in file tcpdf_config.php, constant PDF_HEADER_STRING
          header description string
      +
      PDF_HEADER_TITLE
      +
      in file tcpdf_config.php, constant PDF_HEADER_TITLE
          header title
      +
      PDF_IMAGE_SCALE_RATIO
      +
      in file tcpdf_config.php, constant PDF_IMAGE_SCALE_RATIO
          ratio used to adjust the conversion of pixels to user units
      +
      PDF_MARGIN_BOTTOM
      +
      in file tcpdf_config.php, constant PDF_MARGIN_BOTTOM
          bottom margin
      +
      PDF_MARGIN_FOOTER
      +
      in file tcpdf_config.php, constant PDF_MARGIN_FOOTER
          footer margin
      +
      PDF_MARGIN_HEADER
      +
      in file tcpdf_config.php, constant PDF_MARGIN_HEADER
          header margin
      +
      PDF_MARGIN_LEFT
      +
      in file tcpdf_config.php, constant PDF_MARGIN_LEFT
          left margin
      +
      PDF_MARGIN_RIGHT
      +
      in file tcpdf_config.php, constant PDF_MARGIN_RIGHT
          right margin
      +
      PDF_MARGIN_TOP
      +
      in file tcpdf_config.php, constant PDF_MARGIN_TOP
          top margin
      +
      PDF_PAGE_FORMAT
      +
      in file tcpdf_config.php, constant PDF_PAGE_FORMAT
          page format
      +
      PDF_PAGE_ORIENTATION
      +
      in file tcpdf_config.php, constant PDF_PAGE_ORIENTATION
          page orientation (P=portrait, L=landscape)
      +
      PDF_UNIT
      +
      in file tcpdf_config.php, constant PDF_UNIT
          document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]
      +
      PieSector
      +
      in file tcpdf.php, method TCPDF::PieSector()
          Draw the sector of a circle.
      +
      PieSectorXY
      +
      in file tcpdf.php, method TCPDF::PieSectorXY()
          Draw the sector of an ellipse.
      +
      pixelsToUnits
      +
      in file tcpdf.php, method TCPDF::pixelsToUnits()
          Converts pixels to User's Units.
      +
      Polycurve
      +
      in file tcpdf.php, method TCPDF::Polycurve()
          Draws a poly-Bezier curve.
      +
      Polygon
      +
      in file tcpdf.php, method TCPDF::Polygon()
          Draws a polygon.
      +
      PolyLine
      +
      in file tcpdf.php, method TCPDF::PolyLine()
          Draws a polygonal line
      +
      printTemplate
      +
      in file tcpdf.php, method TCPDF::printTemplate()
          Print an XObject Template.
      +
      putAlignmentMarker
      +
      in file qrcode.php, method QRcode::putAlignmentMarker()
          Put an alignment marker.
      +
      putAlignmentPattern
      +
      in file qrcode.php, method QRcode::putAlignmentPattern()
          Put an alignment pattern.
      +
      putFinderPattern
      +
      in file qrcode.php, method QRcode::putFinderPattern()
          Put a finder pattern.
      +
      putHtmlListBullet
      +
      in file tcpdf.php, method TCPDF::putHtmlListBullet()
          Output an HTML list bullet or ordered item symbol
      +
      +
      + top
      +
      + +
      +

      q

      +
      +
      QRCAP_EC
      +
      in file qrcode.php, constant QRCAP_EC
          Matrix index to get error correction level from $capacity array.
      +
      QRCAP_REMINDER
      +
      in file qrcode.php, constant QRCAP_REMINDER
          Matrix index to get remainder from $capacity array.
      +
      QRCAP_WIDTH
      +
      in file qrcode.php, constant QRCAP_WIDTH
          Matrix index to get width from $capacity array.
      +
      QRCAP_WORDS
      +
      in file qrcode.php, constant QRCAP_WORDS
          Matrix index to get number of words from $capacity array.
      +
      QRcode
      +
      in file qrcode.php, class QRcode
          Class to create QR-code arrays for TCPDF class.
      +
      qrcode.php
      +
      procedural page qrcode.php
      +
      QRCODEDEFS
      +
      in file qrcode.php, constant QRCODEDEFS
          Indicate that definitions for this class are set
      +
      QRSPEC_VERSION_MAX
      +
      in file qrcode.php, constant QRSPEC_VERSION_MAX
          Maximum QR Code version.
      +
      QRSPEC_WIDTH_MAX
      +
      in file qrcode.php, constant QRSPEC_WIDTH_MAX
          Maximum matrix size for maximum version (version 40 is 177*177 matrix).
      +
      qrstrset
      +
      in file qrcode.php, method QRcode::qrstrset()
          Replace a value on the array at the specified position
      +
      QR_DEFAULT_MASK
      +
      in file qrcode.php, constant QR_DEFAULT_MASK
          when QR_FIND_BEST_MASK === false
      +
      QR_ECLEVEL_H
      +
      in file qrcode.php, constant QR_ECLEVEL_H
          Error correction level H : About 30% or less errors can be corrected.
      +
      QR_ECLEVEL_L
      +
      in file qrcode.php, constant QR_ECLEVEL_L
          Error correction level L : About 7% or less errors can be corrected.
      +
      QR_ECLEVEL_M
      +
      in file qrcode.php, constant QR_ECLEVEL_M
          Error correction level M : About 15% or less errors can be corrected.
      +
      QR_ECLEVEL_Q
      +
      in file qrcode.php, constant QR_ECLEVEL_Q
          Error correction level Q : About 25% or less errors can be corrected.
      +
      QR_FIND_BEST_MASK
      +
      in file qrcode.php, constant QR_FIND_BEST_MASK
          if true, estimates best mask (spec. default, but extremally slow; set to false to significant performance boost but (propably) worst quality code
      +
      QR_FIND_FROM_RANDOM
      +
      in file qrcode.php, constant QR_FIND_FROM_RANDOM
          if false, checks all masks available, otherwise value tells count of masks need to be checked, mask id are got randomly
      +
      QR_MODE_8B
      +
      in file qrcode.php, constant QR_MODE_8B
          Encoding mode 8bit byte data. In theory, 2953 characters or less can be stored in a QRcode.
      +
      QR_MODE_AN
      +
      in file qrcode.php, constant QR_MODE_AN
          Encoding mode alphanumeric (0-9A-Z $%*+-./:) 45characters. 2 characters are encoded to 11bit length. In theory, 4296 characters or less can be stored in a QRcode.
      +
      QR_MODE_KJ
      +
      in file qrcode.php, constant QR_MODE_KJ
          Encoding mode KANJI. A KANJI character (multibyte character) is encoded to 13bit length. In theory, 1817 characters or less can be stored in a QRcode.
      +
      QR_MODE_NL
      +
      in file qrcode.php, constant QR_MODE_NL
          Encoding mode
      +
      QR_MODE_NM
      +
      in file qrcode.php, constant QR_MODE_NM
          Encoding mode numeric (0-9). 3 characters are encoded to 10bit length. In theory, 7089 characters or less can be stored in a QRcode.
      +
      QR_MODE_ST
      +
      in file qrcode.php, constant QR_MODE_ST
          Encoding mode STRUCTURED (currently unsupported)
      +
      QUIETH
      +
      in file pdf417.php, constant QUIETH
          Horizontal quiet zone in modules
      +
      QUIETV
      +
      in file pdf417.php, constant QUIETV
          Vertical quiet zone in modules
      +
      +
      + top
      +
      + +
      +

      r

      +
      +
      $radiobutton_groups
      +
      in file tcpdf.php, variable TCPDF::$radiobutton_groups
          List of radio buttons parent objects.
      +
      $radio_groups
      +
      in file tcpdf.php, variable TCPDF::$radio_groups
          List of radio group objects IDs
      +
      $rasterize_vector_images
      +
      in file tcpdf.php, variable TCPDF::$rasterize_vector_images
      +
      $re_space
      +
      in file tcpdf.php, variable TCPDF::$re_space
          Array of parts $re_spaces
      +
      $re_spaces
      +
      in file tcpdf.php, variable TCPDF::$re_spaces
          Regular expression used to find blank characters used for word-wrapping.
      +
      $rMargin
      +
      in file tcpdf.php, variable TCPDF::$rMargin
      +
      $rsblocks
      +
      in file qrcode.php, variable QRcode::$rsblocks
      +
      $rsfactors
      +
      in file pdf417.php, variable PDF417::$rsfactors
      +
      $rsitems
      +
      in file qrcode.php, variable QRcode::$rsitems
      +
      $rtl
      +
      in file tcpdf.php, variable TCPDF::$rtl
      +
      $runLength
      +
      in file qrcode.php, variable QRcode::$runLength
      +
      RadialGradient
      +
      in file tcpdf.php, method TCPDF::RadialGradient()
          Paints a radial colour gradient.
      +
      RadioButton
      +
      in file tcpdf.php, method TCPDF::RadioButton()
          Creates a RadioButton field
      +
      readDiskCache
      +
      in file tcpdf.php, method TCPDF::readDiskCache()
          Read data from a temporary file on filesystem.
      +
      Rect
      +
      in file tcpdf.php, method TCPDF::Rect()
          Draws a rectangle.
      +
      registrationMark
      +
      in file tcpdf.php, method TCPDF::registrationMark()
          Paints a registration mark
      +
      RegularPolygon
      +
      in file tcpdf.php, method TCPDF::RegularPolygon()
          Draws a regular polygon.
      +
      removePageRegion
      +
      in file tcpdf.php, method TCPDF::removePageRegion()
          Remove a single no-write region.
      +
      removeSHY
      +
      in file tcpdf.php, method TCPDF::removeSHY()
          Removes SHY characters from text.
      +
      replaceBuffer
      +
      in file tcpdf.php, method TCPDF::replaceBuffer()
          Replace the buffer content
      +
      resetLastH
      +
      in file tcpdf.php, method TCPDF::resetLastH()
          Reset the last cell height.
      +
      revstrpos
      +
      in file tcpdf.php, method TCPDF::revstrpos()
          Find position of last occurrence of a substring in a string
      +
      rfread
      +
      in file tcpdf.php, method TCPDF::rfread()
          Binary-safe and URL-safe file read.
      +
      rollbackTransaction
      +
      in file tcpdf.php, method TCPDF::rollbackTransaction()
          This method allows to undo the latest transaction by returning the latest saved TCPDF object with startTransaction().
      +
      Rotate
      +
      in file tcpdf.php, method TCPDF::Rotate()
          Rotate object.
      +
      RoundedRect
      +
      in file tcpdf.php, method TCPDF::RoundedRect()
          Draws a rounded rectangle.
      +
      RoundedRectXY
      +
      in file tcpdf.php, method TCPDF::RoundedRectXY()
          Draws a rounded rectangle.
      +
      ROWHEIGHT
      +
      in file pdf417.php, constant ROWHEIGHT
          Row height respect X dimension of single module
      +
      rsBlockNum
      +
      in file qrcode.php, method QRcode::rsBlockNum()
          Return block number 0
      +
      rsBlockNum1
      +
      in file qrcode.php, method QRcode::rsBlockNum1()
          Return block number 1
      +
      rsBlockNum2
      +
      in file qrcode.php, method QRcode::rsBlockNum2()
          Return block number 2
      +
      rsDataCodes1
      +
      in file qrcode.php, method QRcode::rsDataCodes1()
          Return data codes 1
      +
      rsDataCodes2
      +
      in file qrcode.php, method QRcode::rsDataCodes2()
          Return data codes 2
      +
      rsDataLength
      +
      in file qrcode.php, method QRcode::rsDataLength()
          Return data length
      +
      rsEccCodes1
      +
      in file qrcode.php, method QRcode::rsEccCodes1()
          Return ecc codes 1
      +
      rsEccCodes2
      +
      in file qrcode.php, method QRcode::rsEccCodes2()
          Return ecc codes 2
      +
      rsEccLength
      +
      in file qrcode.php, method QRcode::rsEccLength()
          Return ecc length
      +
      +
      + top
      +
      + +
      +

      s

      +
      +
      $sign
      +
      in file tcpdf.php, variable TCPDF::$sign
          If true enables document signing
      +
      $signature_appearance
      +
      in file tcpdf.php, variable TCPDF::$signature_appearance
          data for signature appearance
      +
      $signature_data
      +
      in file tcpdf.php, variable TCPDF::$signature_data
          Signature data
      +
      $signature_max_length
      +
      in file tcpdf.php, variable TCPDF::$signature_max_length
          Signature max length
      +
      $sig_annot_ref
      +
      in file tcpdf.php, variable TCPDF::$sig_annot_ref
          Placemark used during signature process.
      +
      $sig_obj_id
      +
      in file tcpdf.php, variable TCPDF::$sig_obj_id
          Signature object ID
      +
      $spotcolor
      +
      in file tcpdf.php, variable TCPDF::$spotcolor
      +
      $spot_colors
      +
      in file tcpdf.php, variable TCPDF::$spot_colors
          Array of Spot colors
      +
      $start_pattern
      +
      in file pdf417.php, variable PDF417::$start_pattern
      +
      $start_transaction_page
      +
      in file tcpdf.php, variable TCPDF::$start_transaction_page
          Store page number when startTransaction() is called.
      +
      $start_transaction_y
      +
      in file tcpdf.php, variable TCPDF::$start_transaction_y
          Store Y position when startTransaction() is called.
      +
      $state
      +
      in file tcpdf.php, variable TCPDF::$state
      +
      $stop_pattern
      +
      in file pdf417.php, variable PDF417::$stop_pattern
      +
      $strokecolor
      +
      in file tcpdf.php, variable TCPDF::$strokecolor
      +
      $structured
      +
      in file qrcode.php, variable QRcode::$structured
      +
      $subject
      +
      in file tcpdf.php, variable TCPDF::$subject
      +
      $svgclipid
      +
      in file tcpdf.php, variable TCPDF::$svgclipid
      +
      $svgclipmode
      +
      in file tcpdf.php, variable TCPDF::$svgclipmode
      +
      $svgclippaths
      +
      in file tcpdf.php, variable TCPDF::$svgclippaths
      +
      $svgcliptm
      +
      in file tcpdf.php, variable TCPDF::$svgcliptm
      +
      $svgdefs
      +
      in file tcpdf.php, variable TCPDF::$svgdefs
      +
      $svgdefsmode
      +
      in file tcpdf.php, variable TCPDF::$svgdefsmode
      +
      $svgdir
      +
      in file tcpdf.php, variable TCPDF::$svgdir
      +
      $svggradientid
      +
      in file tcpdf.php, variable TCPDF::$svggradientid
      +
      $svggradients
      +
      in file tcpdf.php, variable TCPDF::$svggradients
      +
      $svginheritprop
      +
      in file tcpdf.php, variable TCPDF::$svginheritprop
      +
      $svgstyles
      +
      in file tcpdf.php, variable TCPDF::$svgstyles
      +
      $svgtext
      +
      in file tcpdf.php, variable TCPDF::$svgtext
      +
      $svgtextmode
      +
      in file tcpdf.php, variable TCPDF::$svgtextmode
      +
      $svgunit
      +
      in file tcpdf.php, variable TCPDF::$svgunit
      +
      Scale
      +
      in file tcpdf.php, method TCPDF::Scale()
          Vertical and horizontal non-proportional Scaling.
      +
      ScaleX
      +
      in file tcpdf.php, method TCPDF::ScaleX()
          Horizontal Scaling.
      +
      ScaleXY
      +
      in file tcpdf.php, method TCPDF::ScaleXY()
          Vertical and horizontal proportional Scaling.
      +
      ScaleY
      +
      in file tcpdf.php, method TCPDF::ScaleY()
          Vertical Scaling.
      +
      segSVGContentHandler
      +
      in file tcpdf.php, method TCPDF::segSVGContentHandler()
          Sets the character data handler function for the XML parser.
      +
      selectColumn
      +
      in file tcpdf.php, method TCPDF::selectColumn()
          Set position at a given column
      +
      serializeTCPDFtagParameters
      +
      in file tcpdf.php, method TCPDF::serializeTCPDFtagParameters()
          Serialize an array of parameters to be used with TCPDF tag in HTML code.
      +
      setAlpha
      +
      in file tcpdf.php, method TCPDF::setAlpha()
          Set alpha for stroking (CA) and non-stroking (ca) operations.
      +
      SetAuthor
      +
      in file tcpdf.php, method TCPDF::SetAuthor()
          Defines the author of the document.
      +
      SetAutoPageBreak
      +
      in file tcpdf.php, method TCPDF::SetAutoPageBreak()
          Enables or disables the automatic page breaking mode. When enabling, the second parameter is the distance from the bottom of the page that defines the triggering limit. By default, the mode is on and the margin is 2 cm.
      +
      setBarcode
      +
      in file 2dbarcodes.php, method TCPDF2DBarcode::setBarcode()
          Set the barcode.
      +
      setBarcode
      +
      in file barcodes.php, method TCPDFBarcode::setBarcode()
          Set the barcode.
      +
      setBarcode
      +
      in file tcpdf.php, method TCPDF::setBarcode()
          Set document barcode.
      +
      SetBooklet
      +
      in file tcpdf.php, method TCPDF::SetBooklet()
          Set the booklet mode for double-sided pages.
      +
      setBuffer
      +
      in file tcpdf.php, method TCPDF::setBuffer()
          Set buffer content (always append data).
      +
      setCellHeightRatio
      +
      in file tcpdf.php, method TCPDF::setCellHeightRatio()
          Set the height of the cell (line height) respect the font height.
      +
      setCellMargins
      +
      in file tcpdf.php, method TCPDF::setCellMargins()
          Set the internal Cell margins.
      +
      SetCellPadding
      +
      in file tcpdf.php, method TCPDF::SetCellPadding()
          Set the same internal Cell padding for top, right, bottom, left-
      +
      setCellPaddings
      +
      in file tcpdf.php, method TCPDF::setCellPaddings()
          Set the internal Cell paddings.
      +
      setColumnsArray
      +
      in file tcpdf.php, method TCPDF::setColumnsArray()
          Set columns array.
      +
      SetCompression
      +
      in file tcpdf.php, method TCPDF::SetCompression()
          Activates or deactivates page compression. When activated, the internal representation of each page is compressed, which leads to a compression ratio of about 2 for the resulting document. Compression is on by default.
      +
      setContentMark
      +
      in file tcpdf.php, method TCPDF::setContentMark()
          Set start-writing mark on selected page.
      +
      SetCreator
      +
      in file tcpdf.php, method TCPDF::SetCreator()
          Defines the creator of the document. This is typically the name of the application that generates the PDF.
      +
      SetDefaultMonospacedFont
      +
      in file tcpdf.php, method TCPDF::SetDefaultMonospacedFont()
          Defines the default monospaced font.
      +
      setDefaultTableColumns
      +
      in file tcpdf.php, method TCPDF::setDefaultTableColumns()
          Set the default number of columns in a row for HTML tables.
      +
      SetDisplayMode
      +
      in file tcpdf.php, method TCPDF::SetDisplayMode()
          Defines the way the document is to be displayed by the viewer.
      +
      SetDrawColor
      +
      in file tcpdf.php, method TCPDF::SetDrawColor()
          Defines the color used for all drawing operations (lines, rectangles and cell borders). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
      +
      SetDrawColorArray
      +
      in file tcpdf.php, method TCPDF::SetDrawColorArray()
          Defines the color used for all drawing operations (lines, rectangles and cell borders).
      +
      SetDrawSpotColor
      +
      in file tcpdf.php, method TCPDF::SetDrawSpotColor()
          Defines the spot color used for all drawing operations (lines, rectangles and cell borders).
      +
      setEqualColumns
      +
      in file tcpdf.php, method TCPDF::setEqualColumns()
          Set multiple columns of the same size
      +
      setExtGState
      +
      in file tcpdf.php, method TCPDF::setExtGState()
          Add an extgstate
      +
      SetFillColor
      +
      in file tcpdf.php, method TCPDF::SetFillColor()
          Defines the color used for all filling operations (filled rectangles and cell backgrounds). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
      +
      SetFillColorArray
      +
      in file tcpdf.php, method TCPDF::SetFillColorArray()
          Defines the color used for all filling operations (filled rectangles and cell backgrounds).
      +
      SetFillSpotColor
      +
      in file tcpdf.php, method TCPDF::SetFillSpotColor()
          Defines the spot color used for all filling operations (filled rectangles and cell backgrounds).
      +
      SetFont
      +
      in file tcpdf.php, method TCPDF::SetFont()
          Sets the font used to print character strings.
      +
      setFontBuffer
      +
      in file tcpdf.php, method TCPDF::setFontBuffer()
          Set font buffer content.
      +
      SetFontSize
      +
      in file tcpdf.php, method TCPDF::SetFontSize()
          Defines the size of the current font.
      +
      setFontSpacing
      +
      in file tcpdf.php, method TCPDF::setFontSpacing()
          Set the amount to increase or decrease the space between characters in a text.
      +
      setFontStretching
      +
      in file tcpdf.php, method TCPDF::setFontStretching()
          Set the percentage of character stretching.
      +
      setFontSubBuffer
      +
      in file tcpdf.php, method TCPDF::setFontSubBuffer()
          Set font buffer content.
      +
      setFontSubsetting
      +
      in file tcpdf.php, method TCPDF::setFontSubsetting()
          Enable or disable default option for font subsetting.
      +
      setFooter
      +
      in file tcpdf.php, method TCPDF::setFooter()
          This method is used to render the page footer.
      +
      setFooterFont
      +
      in file tcpdf.php, method TCPDF::setFooterFont()
          Set footer font.
      +
      setFooterMargin
      +
      in file tcpdf.php, method TCPDF::setFooterMargin()
          Set footer margin.
      +
      setFormDefaultProp
      +
      in file tcpdf.php, method TCPDF::setFormDefaultProp()
          Set default properties for form fields.
      +
      setFrameAt
      +
      in file qrcode.php, method QRcode::setFrameAt()
          Set frame value at specified position
      +
      setGraphicVars
      +
      in file tcpdf.php, method TCPDF::setGraphicVars()
          Set graphic variables.
      +
      setHeader
      +
      in file tcpdf.php, method TCPDF::setHeader()
          This method is used to render the page header.
      +
      setHeaderData
      +
      in file tcpdf.php, method TCPDF::setHeaderData()
          Set header data.
      +
      setHeaderFont
      +
      in file tcpdf.php, method TCPDF::setHeaderFont()
          Set header font.
      +
      setHeaderMargin
      +
      in file tcpdf.php, method TCPDF::setHeaderMargin()
          Set header margin.
      +
      setHtmlLinksStyle
      +
      in file tcpdf.php, method TCPDF::setHtmlLinksStyle()
          Set the color and font style for HTML links.
      +
      setHtmlVSpace
      +
      in file tcpdf.php, method TCPDF::setHtmlVSpace()
          Set the vertical spaces for HTML tags.
      +
      setImageBuffer
      +
      in file tcpdf.php, method TCPDF::setImageBuffer()
          Set image buffer content.
      +
      setImageScale
      +
      in file tcpdf.php, method TCPDF::setImageScale()
          Set the adjusting factor to convert pixels to user units.
      +
      setImageSubBuffer
      +
      in file tcpdf.php, method TCPDF::setImageSubBuffer()
          Set image buffer content for a specified sub-key.
      +
      setJPEGQuality
      +
      in file tcpdf.php, method TCPDF::setJPEGQuality()
          Set the default JPEG compression quality (1-100)
      +
      SetKeywords
      +
      in file tcpdf.php, method TCPDF::SetKeywords()
          Associates keywords with the document, generally in the form 'keyword1 keyword2 ...'.
      +
      setLanguageArray
      +
      in file tcpdf.php, method TCPDF::setLanguageArray()
          Set language array.
      +
      setLastH
      +
      in file tcpdf.php, method TCPDF::setLastH()
          Set the last cell height.
      +
      SetLeftMargin
      +
      in file tcpdf.php, method TCPDF::SetLeftMargin()
          Defines the left margin. The method can be called before creating the first page. If the current abscissa gets out of page, it is brought back to the margin.
      +
      SetLineStyle
      +
      in file tcpdf.php, method TCPDF::SetLineStyle()
          Set line style.
      +
      SetLineWidth
      +
      in file tcpdf.php, method TCPDF::SetLineWidth()
          Defines the line width. By default, the value equals 0.2 mm. The method can be called before the first page is created and the value is retained from page to page.
      +
      SetLink
      +
      in file tcpdf.php, method TCPDF::SetLink()
          Defines the page and position a link points to.
      +
      setListIndentWidth
      +
      in file tcpdf.php, method TCPDF::setListIndentWidth()
          Set custom width for list indentation.
      +
      setLIsymbol
      +
      in file tcpdf.php, method TCPDF::setLIsymbol()
          Set the default bullet to be used as LI bullet symbol
      +
      SetMargins
      +
      in file tcpdf.php, method TCPDF::SetMargins()
          Defines the left, top and right margins.
      +
      setOpenCell
      +
      in file tcpdf.php, method TCPDF::setOpenCell()
          Set the top/bottom cell sides to be open or closed when the cell cross the page.
      +
      setPage
      +
      in file tcpdf.php, method TCPDF::setPage()
          Move pointer at the specified document page and update page dimensions.
      +
      setPageBoxes
      +
      in file tcpdf.php, method TCPDF::setPageBoxes()
          Set page boundaries.
      +
      setPageBuffer
      +
      in file tcpdf.php, method TCPDF::setPageBuffer()
          Set page buffer content.
      +
      setPageFormat
      +
      in file tcpdf.php, method TCPDF::setPageFormat()
          Change the format of the current page
      +
      setPageMark
      +
      in file tcpdf.php, method TCPDF::setPageMark()
          Set start-writing mark on current page stream used to put borders and fills.
      +
      setPageOrientation
      +
      in file tcpdf.php, method TCPDF::setPageOrientation()
          Set page orientation.
      +
      setPageRegions
      +
      in file tcpdf.php, method TCPDF::setPageRegions()
          Set no-write regions on page.
      +
      setPageUnit
      +
      in file tcpdf.php, method TCPDF::setPageUnit()
          Set the units of measure for the document.
      +
      setPDFVersion
      +
      in file tcpdf.php, method TCPDF::setPDFVersion()
          Set the PDF version (check PDF reference for valid values).
      +
      setPrintFooter
      +
      in file tcpdf.php, method TCPDF::setPrintFooter()
          Set a flag to print page footer.
      +
      setPrintHeader
      +
      in file tcpdf.php, method TCPDF::setPrintHeader()
          Set a flag to print page header.
      +
      SetProtection
      +
      in file tcpdf.php, method TCPDF::SetProtection()
          Set document protection Remark: the protection against modification is for people who have the full Acrobat product.
      +
      setRasterizeVectorImages
      +
      in file tcpdf.php, method TCPDF::setRasterizeVectorImages()
          Enable/disable rasterization of vector images using ImageMagick library.
      +
      SetRightMargin
      +
      in file tcpdf.php, method TCPDF::SetRightMargin()
          Defines the right margin. The method can be called before creating the first page.
      +
      setRTL
      +
      in file tcpdf.php, method TCPDF::setRTL()
          Enable or disable Right-To-Left language mode
      +
      setSignature
      +
      in file tcpdf.php, method TCPDF::setSignature()
          Enable document signature (requires the OpenSSL Library).
      +
      setSignatureAppearance
      +
      in file tcpdf.php, method TCPDF::setSignatureAppearance()
          Set the digital signature appearance (a cliccable rectangle area to get signature properties)
      +
      setSpacesRE
      +
      in file tcpdf.php, method TCPDF::setSpacesRE()
          Set regular expression to detect withespaces or word separators.
      +
      SetSubject
      +
      in file tcpdf.php, method TCPDF::SetSubject()
          Defines the subject of the document.
      +
      setSVGStyles
      +
      in file tcpdf.php, method TCPDF::setSVGStyles()
          Apply the requested SVG styles (*** TO BE COMPLETED ***)
      +
      setTableHeader
      +
      in file tcpdf.php, method TCPDF::setTableHeader()
          This method is used to render the table header on new page (if any).
      +
      setTempRTL
      +
      in file tcpdf.php, method TCPDF::setTempRTL()
          Force temporary RTL language direction
      +
      SetTextColor
      +
      in file tcpdf.php, method TCPDF::SetTextColor()
          Defines the color used for text. It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
      +
      SetTextColorArray
      +
      in file tcpdf.php, method TCPDF::SetTextColorArray()
          Defines the color used for text. It can be expressed in RGB components or gray scale.
      +
      setTextRenderingMode
      +
      in file tcpdf.php, method TCPDF::setTextRenderingMode()
          Set Text rendering mode.
      +
      SetTextSpotColor
      +
      in file tcpdf.php, method TCPDF::SetTextSpotColor()
          Defines the spot color used for text.
      +
      SetTitle
      +
      in file tcpdf.php, method TCPDF::SetTitle()
          Defines the title of the document.
      +
      SetTopMargin
      +
      in file tcpdf.php, method TCPDF::SetTopMargin()
          Defines the top margin. The method can be called before creating the first page.
      +
      setUserRights
      +
      in file tcpdf.php, method TCPDF::setUserRights()
          Set User's Rights for PDF Reader WARNING: This is experimental and currently do not work.
      +
      setViewerPreferences
      +
      in file tcpdf.php, method TCPDF::setViewerPreferences()
          Set the viewer preferences dictionary controlling the way the document is to be presented on the screen or in print.
      +
      setVisibility
      +
      in file tcpdf.php, method TCPDF::setVisibility()
          Set the visibility of the successive elements.
      +
      SetX
      +
      in file tcpdf.php, method TCPDF::SetX()
          Defines the abscissa of the current position.
      +
      SetXY
      +
      in file tcpdf.php, method TCPDF::SetXY()
          Defines the abscissa and ordinate of the current position.
      +
      SetY
      +
      in file tcpdf.php, method TCPDF::SetY()
          Moves the current abscissa back to the left margin and sets the ordinate.
      +
      set_mqr
      +
      in file tcpdf.php, method TCPDF::set_mqr()
          Sets the current active configuration setting of magic_quotes_runtime (if the set_magic_quotes_runtime function exist)
      +
      Skew
      +
      in file tcpdf.php, method TCPDF::Skew()
          Skew.
      +
      SkewX
      +
      in file tcpdf.php, method TCPDF::SkewX()
          Skew horizontally.
      +
      SkewY
      +
      in file tcpdf.php, method TCPDF::SkewY()
          Skew vertically.
      +
      splitString
      +
      in file qrcode.php, method QRcode::splitString()
          splitString
      +
      StarPolygon
      +
      in file tcpdf.php, method TCPDF::StarPolygon()
          Draws a star polygon
      +
      startPage
      +
      in file tcpdf.php, method TCPDF::startPage()
          Starts a new page to the document. The page must be closed using the endPage() function.
      +
      startPageGroup
      +
      in file tcpdf.php, method TCPDF::startPageGroup()
          Create a new page group.
      +
      startSVGElementHandler
      +
      in file tcpdf.php, method TCPDF::startSVGElementHandler()
          Sets the opening SVG element handler function for the XML parser. (*** TO BE COMPLETED ***)
      +
      startTemplate
      +
      in file tcpdf.php, method TCPDF::startTemplate()
          Start a new XObject Template.
      +
      startTransaction
      +
      in file tcpdf.php, method TCPDF::startTransaction()
          Stores a copy of the current TCPDF object used for undo operation.
      +
      StartTransform
      +
      in file tcpdf.php, method TCPDF::StartTransform()
          Starts a 2D tranformation saving current graphic state.
      +
      StopTransform
      +
      in file tcpdf.php, method TCPDF::StopTransform()
          Stops a 2D tranformation restoring previous graphic state.
      +
      stringLeftTrim
      +
      in file tcpdf.php, method TCPDF::stringLeftTrim()
          Left trim the input string
      +
      stringRightTrim
      +
      in file tcpdf.php, method TCPDF::stringRightTrim()
          Right trim the input string
      +
      stringTrim
      +
      in file tcpdf.php, method TCPDF::stringTrim()
          Trim the input string
      +
      STRUCTURE_HEADER_BITS
      +
      in file qrcode.php, constant STRUCTURE_HEADER_BITS
          Number of header bits for structured mode
      +
      str_split
      +
      in file qrcode.php, function str_split()
          Convert a string to an array (needed for PHP4 compatibility)
      +
      SVGPath
      +
      in file tcpdf.php, method TCPDF::SVGPath()
          Draws an SVG path
      +
      SVGTransform
      +
      in file tcpdf.php, method TCPDF::SVGTransform()
          Apply SVG graphic transformation matrix.
      +
      swapMargins
      +
      in file tcpdf.php, method TCPDF::swapMargins()
          Swap the left and right margins.
      +
      swapPageBoxCoordinates
      +
      in file tcpdf.php, method TCPDF::swapPageBoxCoordinates()
          Swap X and Y coordinates of page boxes (change page boxes orientation).
      +
      +
      + top
      +
      + +
      +

      t

      +
      +
      $tagvspaces
      +
      in file tcpdf.php, variable TCPDF::$tagvspaces
          Array used for custom vertical spaces for HTML tags
      +
      $tcpdf_version
      +
      in file tcpdf.php, variable TCPDF::$tcpdf_version
      +
      $tempfontsize
      +
      in file tcpdf.php, variable TCPDF::$tempfontsize
      +
      $TextColor
      +
      in file tcpdf.php, variable TCPDF::$TextColor
      +
      $textindent
      +
      in file tcpdf.php, variable TCPDF::$textindent
          Text indentation value (used for text-indent CSS attribute)
      +
      $textlatch
      +
      in file pdf417.php, variable PDF417::$textlatch
      +
      $textrendermode
      +
      in file tcpdf.php, variable TCPDF::$textrendermode
          Text rendering mode: 0 = Fill text; 1 = Stroke text; 2 = Fill, then stroke text; 3 = Neither fill nor stroke text (invisible); 4 = Fill text and add to path for clipping; 5 = Stroke text and add to path for clipping; 6 = Fill, then stroke text and add to path for clipping; 7 = Add text to path for clipping.
      +
      $textstrokewidth
      +
      in file tcpdf.php, variable TCPDF::$textstrokewidth
          Text stroke width in doc units
      +
      $textsubmodes
      +
      in file pdf417.php, variable PDF417::$textsubmodes
      +
      $thead
      +
      in file tcpdf.php, variable TCPDF::$thead
          Table header content to be repeated on each new page
      +
      $theadMargins
      +
      in file tcpdf.php, variable TCPDF::$theadMargins
          Margins used for table header.
      +
      $title
      +
      in file tcpdf.php, variable TCPDF::$title
      +
      $tMargin
      +
      in file tcpdf.php, variable TCPDF::$tMargin
      +
      $tmprtl
      +
      in file tcpdf.php, variable TCPDF::$tmprtl
      +
      $tocpage
      +
      in file tcpdf.php, variable TCPDF::$tocpage
      +
      $transfmatrix
      +
      in file tcpdf.php, variable TCPDF::$transfmatrix
          Array of transformation matrix
      +
      $transfmatrix_key
      +
      in file tcpdf.php, variable TCPDF::$transfmatrix_key
          Current key for transformation matrix
      +
      $transfmrk
      +
      in file tcpdf.php, variable TCPDF::$transfmrk
          Array used to store positions of graphics transformation blocks inside the page buffer.
      +
      tcpdf_config.php
      +
      procedural page tcpdf_config.php
      +
      TCPDF
      +
      in file tcpdf.php, class TCPDF
          This is a PHP class for generating PDF documents without requiring external extensions.
      +
      tcpdf.php
      +
      procedural page tcpdf.php
      +
      TCPDF2DBarcode
      +
      in file 2dbarcodes.php, class TCPDF2DBarcode
          PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).
      +
      TCPDFBarcode
      +
      in file barcodes.php, class TCPDFBarcode
          PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).
      +
      TCPDF_UNICODE_DATA
      +
      in file unicode_data.php, class TCPDF_UNICODE_DATA
          This is a PHP class containing Unicde data for TCPDF library
      +
      Text
      +
      in file tcpdf.php, method TCPDF::Text()
          Prints a text cell at the specified position.
      +
      TextField
      +
      in file tcpdf.php, method TCPDF::TextField()
          Creates a text field
      +
      toUpper
      +
      in file qrcode.php, method QRcode::toUpper()
          toUpper
      +
      Transform
      +
      in file tcpdf.php, method TCPDF::Transform()
          Apply graphic transformations.
      +
      Translate
      +
      in file tcpdf.php, method TCPDF::Translate()
          Translate graphic object horizontally and vertically.
      +
      TranslateX
      +
      in file tcpdf.php, method TCPDF::TranslateX()
          Translate graphic object horizontally.
      +
      TranslateY
      +
      in file tcpdf.php, method TCPDF::TranslateY()
          Translate graphic object vertically.
      +
      +
      + top
      +
      + +
      +

      u

      +
      +
      $underline
      +
      in file tcpdf.php, variable TCPDF::$underline
      +
      $unicode
      +
      in file tcpdf.php, variable TCPDF::$unicode
      +
      $uni_arabicsubst
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_arabicsubst
      +
      $uni_diacritics
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_diacritics
      +
      $uni_laa_array
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_laa_array
      +
      $uni_LRE
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_LRE
      +
      $uni_LRM
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_LRM
      +
      $uni_LRO
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_LRO
      +
      $uni_mirror
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_mirror
      +
      $uni_PDF
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_PDF
      +
      $uni_RE_PATTERN_ARABIC
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_RE_PATTERN_ARABIC
      +
      $uni_RE_PATTERN_RTL
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_RE_PATTERN_RTL
      +
      $uni_RLE
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_RLE
      +
      $uni_RLM
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_RLM
      +
      $uni_RLO
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_RLO
      +
      $uni_type
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_type
      +
      $uni_utf8tolatin
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_utf8tolatin
      +
      $ur
      +
      in file tcpdf.php, variable TCPDF::$ur
          Array with additional document-wide usage rights for the document.
      +
      unhtmlentities
      +
      in file tcpdf.php, method TCPDF::unhtmlentities()
          Reverse function for htmlentities.
      +
      UniArrSubString
      +
      in file tcpdf.php, method TCPDF::UniArrSubString()
          Extract a slice of the $uniarr array and return it as string.
      +
      unichr
      +
      in file tcpdf.php, method TCPDF::unichr()
          Returns the unicode caracter specified by UTF-8 value
      +
      unicode_data.php
      +
      procedural page unicode_data.php
      +
      UTF8ArrayToUniArray
      +
      in file tcpdf.php, method TCPDF::UTF8ArrayToUniArray()
          Convert an array of UTF8 values to array of unicode characters
      +
      UTF8ArrSubString
      +
      in file tcpdf.php, method TCPDF::UTF8ArrSubString()
          Extract a slice of the $strarr array and return it as string.
      +
      UTF8ArrToLatin1
      +
      in file tcpdf.php, method TCPDF::UTF8ArrToLatin1()
          Converts UTF-8 characters array to array of Latin1 characters
      +
      utf8Bidi
      +
      in file tcpdf.php, method TCPDF::utf8Bidi()
          Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
      +
      utf8StrArrRev
      +
      in file tcpdf.php, method TCPDF::utf8StrArrRev()
          Reverse the RLT substrings array using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
      +
      UTF8StringToArray
      +
      in file tcpdf.php, method TCPDF::UTF8StringToArray()
          Converts UTF-8 strings to codepoints array.
      +
      utf8StrRev
      +
      in file tcpdf.php, method TCPDF::utf8StrRev()
          Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
      +
      UTF8ToLatin1
      +
      in file tcpdf.php, method TCPDF::UTF8ToLatin1()
          Converts UTF-8 strings to Latin1 when using the standard 14 core fonts.
      +
      UTF8ToUTF16BE
      +
      in file tcpdf.php, method TCPDF::UTF8ToUTF16BE()
          Converts UTF-8 strings to UTF16-BE.
      +
      +
      + top
      +
      + +
      +

      v

      +
      +
      $version
      +
      in file qrcode.php, variable QRcode::$version
      +
      $versionPattern
      +
      in file qrcode.php, variable QRcode::$versionPattern
      +
      $viewer_preferences
      +
      in file tcpdf.php, variable TCPDF::$viewer_preferences
          PDF viewer preferences.
      +
      $visibility
      +
      in file tcpdf.php, variable TCPDF::$visibility
          Restrict the rendering of some elements to screen or printout.
      +
      +
      + top
      +
      + +
      +

      w

      +
      +
      $w
      +
      in file tcpdf.php, variable TCPDF::$w
      +
      $webcolor
      +
      in file tcpdf.php, variable TCPDF::$webcolor
      +
      $width
      +
      in file qrcode.php, variable QRcode::$width
      +
      $wPt
      +
      in file tcpdf.php, variable TCPDF::$wPt
      +
      Write
      +
      in file tcpdf.php, method TCPDF::Write()
          This method prints text from the current position.
      +
      write1DBarcode
      +
      in file tcpdf.php, method TCPDF::write1DBarcode()
          Print a Linear Barcode.
      +
      write2DBarcode
      +
      in file tcpdf.php, method TCPDF::write2DBarcode()
          Print 2D Barcode.
      +
      writeBarcode
      +
      in file tcpdf.php, method TCPDF::writeBarcode()
          This function is DEPRECATED, please use the new write1DBarcode() function.
      +
      writeDiskCache
      +
      in file tcpdf.php, method TCPDF::writeDiskCache()
          Writes data to a temporary file on filesystem.
      +
      writeFormatInformation
      +
      in file qrcode.php, method QRcode::writeFormatInformation()
          Write Format Information on frame and returns the number of black bits
      +
      writeHTML
      +
      in file tcpdf.php, method TCPDF::writeHTML()
          Allows to preserve some HTML formatting (limited support).
      IMPORTANT: The HTML must be well formatted - try to clean-up it using an application like HTML-Tidy before submitting.
      +
      writeHTMLCell
      +
      in file tcpdf.php, method TCPDF::writeHTMLCell()
          Prints a cell (rectangular area) with optional borders, background color and html text string.
      +
      +
      + top
      +
      + +
      +

      x

      +
      +
      $x
      +
      in file qrcode.php, variable QRcode::$x
      +
      $x
      +
      in file tcpdf.php, variable TCPDF::$x
      +
      $xobjects
      +
      in file tcpdf.php, variable TCPDF::$xobjects
      +
      $xobjid
      +
      in file tcpdf.php, variable TCPDF::$xobjid
      +
      +
      + top
      +
      + +
      +

      y

      +
      +
      $y
      +
      in file tcpdf.php, variable TCPDF::$y
      +
      $y
      +
      in file qrcode.php, variable QRcode::$y
      +
      +
      + top
      +
      + +
      +

      z

      +
      +
      $ZoomMode
      +
      in file tcpdf.php, variable TCPDF::$ZoomMode
      +
      +
      + top
      +
      + +
      +

      _

      +
      +
      _addfield
      +
      in file tcpdf.php, method TCPDF::_addfield()
          Adds a javascript form field.
      +
      _AES
      +
      in file tcpdf.php, method TCPDF::_AES()
          Returns the input text exrypted using AES algorithm and the specified key.
      +
      _beginpage
      +
      in file tcpdf.php, method TCPDF::_beginpage()
          Initialize a new page.
      +
      _datastring
      +
      in file tcpdf.php, method TCPDF::_datastring()
          Format a data string for meta information
      +
      _datestring
      +
      in file tcpdf.php, method TCPDF::_datestring()
          Returns a formatted date for meta information
      +
      _destroy
      +
      in file tcpdf.php, method TCPDF::_destroy()
          Unset all class variables except the following critical variables: internal_encoding, state, bufferlen, buffer and diskcache.
      +
      _dochecks
      +
      in file tcpdf.php, method TCPDF::_dochecks()
          Check for locale-related bug
      +
      _dolinethrough
      +
      in file tcpdf.php, method TCPDF::_dolinethrough()
          Line through text.
      +
      _dolinethroughw
      +
      in file tcpdf.php, method TCPDF::_dolinethroughw()
          Line through for rectangular text area.
      +
      _dooverline
      +
      in file tcpdf.php, method TCPDF::_dooverline()
          Overline text.
      +
      _dooverlinew
      +
      in file tcpdf.php, method TCPDF::_dooverlinew()
          Overline for rectangular text area.
      +
      _dounderline
      +
      in file tcpdf.php, method TCPDF::_dounderline()
          Underline text.
      +
      _dounderlinew
      +
      in file tcpdf.php, method TCPDF::_dounderlinew()
          Underline for rectangular text area.
      +
      _encrypt_data
      +
      in file tcpdf.php, method TCPDF::_encrypt_data()
          Encrypt the input string.
      +
      _enddoc
      +
      in file tcpdf.php, method TCPDF::_enddoc()
          Output end of document (EOF).
      +
      _endpage
      +
      in file tcpdf.php, method TCPDF::_endpage()
          Mark end of page.
      +
      _escape
      +
      in file tcpdf.php, method TCPDF::_escape()
          Add "\" before "\", "(" and ")"
      +
      _escapetext
      +
      in file tcpdf.php, method TCPDF::_escapetext()
          THIS METHOD IS DEPRECATED
      +
      _fixAES256Password
      +
      in file tcpdf.php, method TCPDF::_fixAES256Password()
          Convert password for AES-256 encryption mode
      +
      _freadint
      +
      in file tcpdf.php, method TCPDF::_freadint()
          Read a 4-byte (32 bit) integer from file.
      +
      _generateencryptionkey
      +
      in file tcpdf.php, method TCPDF::_generateencryptionkey()
          Compute encryption key
      +
      _getannotsrefs
      +
      in file tcpdf.php, method TCPDF::_getannotsrefs()
          Get references to page annotations.
      +
      _getBYTE
      +
      in file tcpdf.php, method TCPDF::_getBYTE()
          Get BYTE from string (8-bit unsigned integer).
      +
      _getfontpath
      +
      in file tcpdf.php, method TCPDF::_getfontpath()
          Return fonts path
      +
      _getobj
      +
      in file tcpdf.php, method TCPDF::_getobj()
          Return the starting object string for the selected object ID.
      +
      _getrawstream
      +
      in file tcpdf.php, method TCPDF::_getrawstream()
          get raw output stream.
      +
      _getSHORT
      +
      in file tcpdf.php, method TCPDF::_getSHORT()
          Get SHORT from string (Big Endian 16-bit signed integer).
      +
      _getstream
      +
      in file tcpdf.php, method TCPDF::_getstream()
          Format output stream (DEPRECATED).
      +
      _getTrueTypeFontSubset
      +
      in file tcpdf.php, method TCPDF::_getTrueTypeFontSubset()
          Returns a subset of the TrueType font data without the unused glyphs.
      +
      _getTTFtableChecksum
      +
      in file tcpdf.php, method TCPDF::_getTTFtableChecksum()
          Returs the checksum of a TTF table.
      +
      _getULONG
      +
      in file tcpdf.php, method TCPDF::_getULONG()
          Get ULONG from string (Big Endian 32-bit unsigned integer).
      +
      _getUSHORT
      +
      in file tcpdf.php, method TCPDF::_getUSHORT()
          Get USHORT from string (Big Endian 16-bit unsigned integer).
      +
      _getxobjectdict
      +
      in file tcpdf.php, method TCPDF::_getxobjectdict()
          Return XObjects Dictionary.
      +
      _JScolor
      +
      in file tcpdf.php, method TCPDF::_JScolor()
          Convert color to javascript color.
      +
      _md5_16
      +
      in file tcpdf.php, method TCPDF::_md5_16()
          Encrypts a string using MD5 and returns it's value as a binary string.
      +
      _newobj
      +
      in file tcpdf.php, method TCPDF::_newobj()
          Begin a new object and return the object number.
      +
      _objectkey
      +
      in file tcpdf.php, method TCPDF::_objectkey()
          Compute encryption key depending on object number where the encrypted data is stored.
      +
      _OEvalue
      +
      in file tcpdf.php, method TCPDF::_OEvalue()
          Compute OE value (used for encryption)
      +
      _out
      +
      in file tcpdf.php, method TCPDF::_out()
          Output a string to the document.
      +
      _outCurve
      +
      in file tcpdf.php, method TCPDF::_outCurve()
          Append a cubic Bzier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x2, y2) as the Bzier control points.
      +
      _outCurveV
      +
      in file tcpdf.php, method TCPDF::_outCurveV()
          Append a cubic Bzier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using the current point and (x2, y2) as the Bzier control points.
      +
      _outCurveY
      +
      in file tcpdf.php, method TCPDF::_outCurveY()
          Append a cubic Bzier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x3, y3) as the Bzier control points.
      +
      _outellipticalarc
      +
      in file tcpdf.php, method TCPDF::_outellipticalarc()
          Append an elliptical arc to the current path.
      +
      _outLine
      +
      in file tcpdf.php, method TCPDF::_outLine()
          Append a straight line segment from the current point to the point (x, y).
      +
      _outPoint
      +
      in file tcpdf.php, method TCPDF::_outPoint()
          Begin a new subpath by moving the current point to coordinates (x, y), omitting any connecting line segment.
      +
      _outRect
      +
      in file tcpdf.php, method TCPDF::_outRect()
          Append a rectangle to the current path as a complete subpath, with lower-left corner (x, y) and dimensions widthand height in user space.
      +
      _Ovalue
      +
      in file tcpdf.php, method TCPDF::_Ovalue()
          Compute O value (used for encryption)
      +
      _parsejpeg
      +
      in file tcpdf.php, method TCPDF::_parsejpeg()
          Extract info from a JPEG file without using the GD library.
      +
      _parsepng
      +
      in file tcpdf.php, method TCPDF::_parsepng()
          Extract info from a PNG file without using the GD library.
      +
      _putannotsobjs
      +
      in file tcpdf.php, method TCPDF::_putannotsobjs()
          Output annotations objects for all pages.
      +
      _putannotsrefs
      +
      in file tcpdf.php, method TCPDF::_putannotsrefs()
          Output references to page annotations
      +
      _putAPXObject
      +
      in file tcpdf.php, method TCPDF::_putAPXObject()
          Put appearance streams XObject used to define annotation's appearance states
      +
      _putbookmarks
      +
      in file tcpdf.php, method TCPDF::_putbookmarks()
          Create a bookmark PDF string.
      +
      _putcatalog
      +
      in file tcpdf.php, method TCPDF::_putcatalog()
          Output Catalog.
      +
      _putcidfont0
      +
      in file tcpdf.php, method TCPDF::_putcidfont0()
          Output CID-0 fonts.
      +
      _putEmbeddedFiles
      +
      in file tcpdf.php, method TCPDF::_putEmbeddedFiles()
          Embedd the attached files.
      +
      _putencryption
      +
      in file tcpdf.php, method TCPDF::_putencryption()
          Put encryption on PDF document.
      +
      _putextgstates
      +
      in file tcpdf.php, method TCPDF::_putextgstates()
          Put extgstates for object transparency
      +
      _putfonts
      +
      in file tcpdf.php, method TCPDF::_putfonts()
          Output fonts.
      +
      _putfontwidths
      +
      in file tcpdf.php, method TCPDF::_putfontwidths()
          Outputs font widths
      +
      _putheader
      +
      in file tcpdf.php, method TCPDF::_putheader()
          Output PDF header.
      +
      _putimages
      +
      in file tcpdf.php, method TCPDF::_putimages()
          Output images.
      +
      _putinfo
      +
      in file tcpdf.php, method TCPDF::_putinfo()
          Adds some Metadata information (Document Information Dictionary)
      +
      _putjavascript
      +
      in file tcpdf.php, method TCPDF::_putjavascript()
          Create a javascript PDF string.
      +
      _putocg
      +
      in file tcpdf.php, method TCPDF::_putocg()
          Put visibility settings.
      +
      _putpages
      +
      in file tcpdf.php, method TCPDF::_putpages()
          Output pages.
      +
      _putresourcedict
      +
      in file tcpdf.php, method TCPDF::_putresourcedict()
          Output Resources Dictionary.
      +
      _putresources
      +
      in file tcpdf.php, method TCPDF::_putresources()
          Output Resources.
      +
      _putshaders
      +
      in file tcpdf.php, method TCPDF::_putshaders()
          Output gradient shaders.
      +
      _putsignature
      +
      in file tcpdf.php, method TCPDF::_putsignature()
          Add certification signature (DocMDP or UR3)
      +
      _putspotcolors
      +
      in file tcpdf.php, method TCPDF::_putspotcolors()
          Output Spot Colors Resources.
      +
      _putstream
      +
      in file tcpdf.php, method TCPDF::_putstream()
          Output a stream (DEPRECATED).
      +
      _puttruetypeunicode
      +
      in file tcpdf.php, method TCPDF::_puttruetypeunicode()
          Adds unicode fonts.
      +
      _putviewerpreferences
      +
      in file tcpdf.php, method TCPDF::_putviewerpreferences()
          Output viewer preferences.
      +
      _putxobjects
      +
      in file tcpdf.php, method TCPDF::_putxobjects()
          Output Form XObjects Templates.
      +
      _RC4
      +
      in file tcpdf.php, method TCPDF::_RC4()
          Returns the input text encrypted using RC4 algorithm and the specified key.
      +
      _setGDImageTransparency
      +
      in file tcpdf.php, method TCPDF::_setGDImageTransparency()
          Set the transparency for the given GD image.
      +
      _textstring
      +
      in file tcpdf.php, method TCPDF::_textstring()
          Format a text string for meta information
      +
      _toJPEG
      +
      in file tcpdf.php, method TCPDF::_toJPEG()
          Convert the loaded image to a JPEG and then return a structure for the PDF creator.
      +
      _toPNG
      +
      in file tcpdf.php, method TCPDF::_toPNG()
          Convert the loaded image to a PNG and then return a structure for the PDF creator.
      +
      _UEvalue
      +
      in file tcpdf.php, method TCPDF::_UEvalue()
          Compute UE value (used for encryption)
      +
      _Uvalue
      +
      in file tcpdf.php, method TCPDF::_Uvalue()
          Compute U value (used for encryption)
      +
      __construct
      +
      in file qrcode.php, method QRcode::__construct()
          This is the class constructor.
      +
      __construct
      +
      in file barcodes.php, method TCPDFBarcode::__construct()
          This is the class constructor.
      +
      __construct
      +
      in file tcpdf.php, method TCPDF::__construct()
          This is the class constructor.
      +
      __construct
      +
      in file 2dbarcodes.php, method TCPDF2DBarcode::__construct()
          This is the class constructor.
      +
      __construct
      +
      in file pdf417.php, method PDF417::__construct()
          This is the class constructor.
      +
      __destruct
      +
      in file tcpdf.php, method TCPDF::__destruct()
          Default destructor.
      +
      +
      + top
      +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:16 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/elementindex_com-tecnick-tcpdf.html b/htdocs/includes/tcpdf/doc/elementindex_com-tecnick-tcpdf.html new file mode 100644 index 00000000000..f83d7fc0ac1 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/elementindex_com-tecnick-tcpdf.html @@ -0,0 +1,2184 @@ + + +Package com-tecnick-tcpdf Element Index + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + + +

      Element index for package com-tecnick-tcpdf

      + [ 2 ] + [ 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 ] + [ _ ] + +
      + +
      +

      _

      +
      +
      _addfield
      +
      in file tcpdf.php, method TCPDF::_addfield()
          Adds a javascript form field.
      +
      _AES
      +
      in file tcpdf.php, method TCPDF::_AES()
          Returns the input text exrypted using AES algorithm and the specified key.
      +
      _beginpage
      +
      in file tcpdf.php, method TCPDF::_beginpage()
          Initialize a new page.
      +
      _datastring
      +
      in file tcpdf.php, method TCPDF::_datastring()
          Format a data string for meta information
      +
      _datestring
      +
      in file tcpdf.php, method TCPDF::_datestring()
          Returns a formatted date for meta information
      +
      _destroy
      +
      in file tcpdf.php, method TCPDF::_destroy()
          Unset all class variables except the following critical variables: internal_encoding, state, bufferlen, buffer and diskcache.
      +
      _dochecks
      +
      in file tcpdf.php, method TCPDF::_dochecks()
          Check for locale-related bug
      +
      _dolinethrough
      +
      in file tcpdf.php, method TCPDF::_dolinethrough()
          Line through text.
      +
      _dolinethroughw
      +
      in file tcpdf.php, method TCPDF::_dolinethroughw()
          Line through for rectangular text area.
      +
      _dooverline
      +
      in file tcpdf.php, method TCPDF::_dooverline()
          Overline text.
      +
      _dooverlinew
      +
      in file tcpdf.php, method TCPDF::_dooverlinew()
          Overline for rectangular text area.
      +
      _dounderline
      +
      in file tcpdf.php, method TCPDF::_dounderline()
          Underline text.
      +
      _dounderlinew
      +
      in file tcpdf.php, method TCPDF::_dounderlinew()
          Underline for rectangular text area.
      +
      _encrypt_data
      +
      in file tcpdf.php, method TCPDF::_encrypt_data()
          Encrypt the input string.
      +
      _enddoc
      +
      in file tcpdf.php, method TCPDF::_enddoc()
          Output end of document (EOF).
      +
      _endpage
      +
      in file tcpdf.php, method TCPDF::_endpage()
          Mark end of page.
      +
      _escape
      +
      in file tcpdf.php, method TCPDF::_escape()
          Add "\" before "\", "(" and ")"
      +
      _escapetext
      +
      in file tcpdf.php, method TCPDF::_escapetext()
          THIS METHOD IS DEPRECATED
      +
      _fixAES256Password
      +
      in file tcpdf.php, method TCPDF::_fixAES256Password()
          Convert password for AES-256 encryption mode
      +
      _freadint
      +
      in file tcpdf.php, method TCPDF::_freadint()
          Read a 4-byte (32 bit) integer from file.
      +
      _generateencryptionkey
      +
      in file tcpdf.php, method TCPDF::_generateencryptionkey()
          Compute encryption key
      +
      _getannotsrefs
      +
      in file tcpdf.php, method TCPDF::_getannotsrefs()
          Get references to page annotations.
      +
      _getBYTE
      +
      in file tcpdf.php, method TCPDF::_getBYTE()
          Get BYTE from string (8-bit unsigned integer).
      +
      _getfontpath
      +
      in file tcpdf.php, method TCPDF::_getfontpath()
          Return fonts path
      +
      _getobj
      +
      in file tcpdf.php, method TCPDF::_getobj()
          Return the starting object string for the selected object ID.
      +
      _getrawstream
      +
      in file tcpdf.php, method TCPDF::_getrawstream()
          get raw output stream.
      +
      _getSHORT
      +
      in file tcpdf.php, method TCPDF::_getSHORT()
          Get SHORT from string (Big Endian 16-bit signed integer).
      +
      _getstream
      +
      in file tcpdf.php, method TCPDF::_getstream()
          Format output stream (DEPRECATED).
      +
      _getTrueTypeFontSubset
      +
      in file tcpdf.php, method TCPDF::_getTrueTypeFontSubset()
          Returns a subset of the TrueType font data without the unused glyphs.
      +
      _getTTFtableChecksum
      +
      in file tcpdf.php, method TCPDF::_getTTFtableChecksum()
          Returs the checksum of a TTF table.
      +
      _getULONG
      +
      in file tcpdf.php, method TCPDF::_getULONG()
          Get ULONG from string (Big Endian 32-bit unsigned integer).
      +
      _getUSHORT
      +
      in file tcpdf.php, method TCPDF::_getUSHORT()
          Get USHORT from string (Big Endian 16-bit unsigned integer).
      +
      _getxobjectdict
      +
      in file tcpdf.php, method TCPDF::_getxobjectdict()
          Return XObjects Dictionary.
      +
      _JScolor
      +
      in file tcpdf.php, method TCPDF::_JScolor()
          Convert color to javascript color.
      +
      _md5_16
      +
      in file tcpdf.php, method TCPDF::_md5_16()
          Encrypts a string using MD5 and returns it's value as a binary string.
      +
      _newobj
      +
      in file tcpdf.php, method TCPDF::_newobj()
          Begin a new object and return the object number.
      +
      _objectkey
      +
      in file tcpdf.php, method TCPDF::_objectkey()
          Compute encryption key depending on object number where the encrypted data is stored.
      +
      _OEvalue
      +
      in file tcpdf.php, method TCPDF::_OEvalue()
          Compute OE value (used for encryption)
      +
      _out
      +
      in file tcpdf.php, method TCPDF::_out()
          Output a string to the document.
      +
      _outCurve
      +
      in file tcpdf.php, method TCPDF::_outCurve()
          Append a cubic Bzier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x2, y2) as the Bzier control points.
      +
      _outCurveV
      +
      in file tcpdf.php, method TCPDF::_outCurveV()
          Append a cubic Bzier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using the current point and (x2, y2) as the Bzier control points.
      +
      _outCurveY
      +
      in file tcpdf.php, method TCPDF::_outCurveY()
          Append a cubic Bzier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1) and (x3, y3) as the Bzier control points.
      +
      _outellipticalarc
      +
      in file tcpdf.php, method TCPDF::_outellipticalarc()
          Append an elliptical arc to the current path.
      +
      _outLine
      +
      in file tcpdf.php, method TCPDF::_outLine()
          Append a straight line segment from the current point to the point (x, y).
      +
      _outPoint
      +
      in file tcpdf.php, method TCPDF::_outPoint()
          Begin a new subpath by moving the current point to coordinates (x, y), omitting any connecting line segment.
      +
      _outRect
      +
      in file tcpdf.php, method TCPDF::_outRect()
          Append a rectangle to the current path as a complete subpath, with lower-left corner (x, y) and dimensions widthand height in user space.
      +
      _Ovalue
      +
      in file tcpdf.php, method TCPDF::_Ovalue()
          Compute O value (used for encryption)
      +
      _parsejpeg
      +
      in file tcpdf.php, method TCPDF::_parsejpeg()
          Extract info from a JPEG file without using the GD library.
      +
      _parsepng
      +
      in file tcpdf.php, method TCPDF::_parsepng()
          Extract info from a PNG file without using the GD library.
      +
      _putannotsobjs
      +
      in file tcpdf.php, method TCPDF::_putannotsobjs()
          Output annotations objects for all pages.
      +
      _putannotsrefs
      +
      in file tcpdf.php, method TCPDF::_putannotsrefs()
          Output references to page annotations
      +
      _putAPXObject
      +
      in file tcpdf.php, method TCPDF::_putAPXObject()
          Put appearance streams XObject used to define annotation's appearance states
      +
      _putbookmarks
      +
      in file tcpdf.php, method TCPDF::_putbookmarks()
          Create a bookmark PDF string.
      +
      _putcatalog
      +
      in file tcpdf.php, method TCPDF::_putcatalog()
          Output Catalog.
      +
      _putcidfont0
      +
      in file tcpdf.php, method TCPDF::_putcidfont0()
          Output CID-0 fonts.
      +
      _putEmbeddedFiles
      +
      in file tcpdf.php, method TCPDF::_putEmbeddedFiles()
          Embedd the attached files.
      +
      _putencryption
      +
      in file tcpdf.php, method TCPDF::_putencryption()
          Put encryption on PDF document.
      +
      _putextgstates
      +
      in file tcpdf.php, method TCPDF::_putextgstates()
          Put extgstates for object transparency
      +
      _putfonts
      +
      in file tcpdf.php, method TCPDF::_putfonts()
          Output fonts.
      +
      _putfontwidths
      +
      in file tcpdf.php, method TCPDF::_putfontwidths()
          Outputs font widths
      +
      _putheader
      +
      in file tcpdf.php, method TCPDF::_putheader()
          Output PDF header.
      +
      _putimages
      +
      in file tcpdf.php, method TCPDF::_putimages()
          Output images.
      +
      _putinfo
      +
      in file tcpdf.php, method TCPDF::_putinfo()
          Adds some Metadata information (Document Information Dictionary)
      +
      _putjavascript
      +
      in file tcpdf.php, method TCPDF::_putjavascript()
          Create a javascript PDF string.
      +
      _putocg
      +
      in file tcpdf.php, method TCPDF::_putocg()
          Put visibility settings.
      +
      _putpages
      +
      in file tcpdf.php, method TCPDF::_putpages()
          Output pages.
      +
      _putresourcedict
      +
      in file tcpdf.php, method TCPDF::_putresourcedict()
          Output Resources Dictionary.
      +
      _putresources
      +
      in file tcpdf.php, method TCPDF::_putresources()
          Output Resources.
      +
      _putshaders
      +
      in file tcpdf.php, method TCPDF::_putshaders()
          Output gradient shaders.
      +
      _putsignature
      +
      in file tcpdf.php, method TCPDF::_putsignature()
          Add certification signature (DocMDP or UR3)
      +
      _putspotcolors
      +
      in file tcpdf.php, method TCPDF::_putspotcolors()
          Output Spot Colors Resources.
      +
      _putstream
      +
      in file tcpdf.php, method TCPDF::_putstream()
          Output a stream (DEPRECATED).
      +
      _puttruetypeunicode
      +
      in file tcpdf.php, method TCPDF::_puttruetypeunicode()
          Adds unicode fonts.
      +
      _putviewerpreferences
      +
      in file tcpdf.php, method TCPDF::_putviewerpreferences()
          Output viewer preferences.
      +
      _putxobjects
      +
      in file tcpdf.php, method TCPDF::_putxobjects()
          Output Form XObjects Templates.
      +
      _RC4
      +
      in file tcpdf.php, method TCPDF::_RC4()
          Returns the input text encrypted using RC4 algorithm and the specified key.
      +
      _setGDImageTransparency
      +
      in file tcpdf.php, method TCPDF::_setGDImageTransparency()
          Set the transparency for the given GD image.
      +
      _textstring
      +
      in file tcpdf.php, method TCPDF::_textstring()
          Format a text string for meta information
      +
      _toJPEG
      +
      in file tcpdf.php, method TCPDF::_toJPEG()
          Convert the loaded image to a JPEG and then return a structure for the PDF creator.
      +
      _toPNG
      +
      in file tcpdf.php, method TCPDF::_toPNG()
          Convert the loaded image to a PNG and then return a structure for the PDF creator.
      +
      _UEvalue
      +
      in file tcpdf.php, method TCPDF::_UEvalue()
          Compute UE value (used for encryption)
      +
      _Uvalue
      +
      in file tcpdf.php, method TCPDF::_Uvalue()
          Compute U value (used for encryption)
      +
      __construct
      +
      in file qrcode.php, method QRcode::__construct()
          This is the class constructor.
      +
      __construct
      +
      in file barcodes.php, method TCPDFBarcode::__construct()
          This is the class constructor.
      +
      __construct
      +
      in file tcpdf.php, method TCPDF::__construct()
          This is the class constructor.
      +
      __construct
      +
      in file 2dbarcodes.php, method TCPDF2DBarcode::__construct()
          This is the class constructor.
      +
      __construct
      +
      in file pdf417.php, method PDF417::__construct()
          This is the class constructor.
      +
      __destruct
      +
      in file tcpdf.php, method TCPDF::__destruct()
          Default destructor.
      +
      +
      + top
      +
      + +
      +

      a

      +
      +
      $AliasNbPages
      +
      in file tcpdf.php, variable TCPDF::$AliasNbPages
      +
      $AliasNumPage
      +
      in file tcpdf.php, variable TCPDF::$AliasNumPage
      +
      $alignmentPattern
      +
      in file qrcode.php, variable QRcode::$alignmentPattern
      +
      $annotation_fonts
      +
      in file tcpdf.php, variable TCPDF::$annotation_fonts
          List of fonts used on form fields (fontname => fontkey).
      +
      $anTable
      +
      in file qrcode.php, variable QRcode::$anTable
      +
      $author
      +
      in file tcpdf.php, variable TCPDF::$author
      +
      $AutoPageBreak
      +
      in file tcpdf.php, variable TCPDF::$AutoPageBreak
      +
      AcceptPageBreak
      +
      in file tcpdf.php, method TCPDF::AcceptPageBreak()
          Whenever a page break condition is met, the method is called, and the break is issued or not depending on the returned value.
      +
      addExtGState
      +
      in file tcpdf.php, method TCPDF::addExtGState()
          Add transparency parameters to the current extgstate
      +
      AddFont
      +
      in file tcpdf.php, method TCPDF::AddFont()
          Imports a TrueType, Type1, core, or CID0 font and makes it available.
      +
      addHtmlLink
      +
      in file tcpdf.php, method TCPDF::addHtmlLink()
          Output anchor link.
      +
      addHTMLTOC
      +
      in file tcpdf.php, method TCPDF::addHTMLTOC()
          Output a Table Of Content Index (TOC) using HTML templates.
      +
      addHTMLVertSpace
      +
      in file tcpdf.php, method TCPDF::addHTMLVertSpace()
          Add vertical spaces if needed.
      +
      addJavascriptObject
      +
      in file tcpdf.php, method TCPDF::addJavascriptObject()
          Adds a javascript object and return object ID
      +
      AddLink
      +
      in file tcpdf.php, method TCPDF::AddLink()
          Creates a new internal link and returns its identifier. An internal link is a clickable area which directs to another place within the document.
      The identifier can then be passed to Cell(), Write(), Image() or Link(). The destination is defined with SetLink().
      +
      AddPage
      +
      in file tcpdf.php, method TCPDF::AddPage()
          Adds a new page to the document. If a page is already present, the Footer() method is called first to output the footer (if enabled). Then the page is added, the current position set to the top-left corner according to the left and top margins (or top-right if in RTL mode), and Header() is called to display the header (if enabled).
      +
      addPageRegion
      +
      in file tcpdf.php, method TCPDF::addPageRegion()
          Add a single no-write region on selected page.
      +
      AddSpotColor
      +
      in file tcpdf.php, method TCPDF::AddSpotColor()
          Defines a new spot color.
      +
      addTOC
      +
      in file tcpdf.php, method TCPDF::addTOC()
          Output a Table of Content Index (TOC).
      +
      addTOCPage
      +
      in file tcpdf.php, method TCPDF::addTOCPage()
          Adds a new TOC (Table Of Content) page to the document.
      +
      adjustCellPadding
      +
      in file tcpdf.php, method TCPDF::adjustCellPadding()
          Adjust the internal Cell padding array to take account of the line width.
      +
      AliasNbPages
      +
      in file tcpdf.php, method TCPDF::AliasNbPages()
          Defines an alias for the total number of pages.
      +
      AliasNumPage
      +
      in file tcpdf.php, method TCPDF::AliasNumPage()
          Defines an alias for the page number.
      +
      allocate
      +
      in file qrcode.php, method QRcode::allocate()
          Return an array with zeros
      +
      Annotation
      +
      in file tcpdf.php, method TCPDF::Annotation()
          Puts a markup annotation on a rectangular area of the page.
      +
      appendBitstream
      +
      in file qrcode.php, method QRcode::appendBitstream()
          Append one bitstream to another
      +
      appendBytes
      +
      in file qrcode.php, method QRcode::appendBytes()
          Append one bitstream created from bytes to another
      +
      appendNewInputItem
      +
      in file qrcode.php, method QRcode::appendNewInputItem()
          Append data to an input object.
      +
      appendNum
      +
      in file qrcode.php, method QRcode::appendNum()
          Append one bitstream created from number to another
      +
      appendPaddingBit
      +
      in file qrcode.php, method QRcode::appendPaddingBit()
          Append Padding Bit to bitstream
      +
      Arrow
      +
      in file tcpdf.php, method TCPDF::Arrow()
          Draws a grahic arrow.
      +
      arrUTF8ToUTF16BE
      +
      in file tcpdf.php, method TCPDF::arrUTF8ToUTF16BE()
          Converts array of UTF-8 characters to UTF16-BE string.
      +
      +
      + top
      +
      + +
      +

      b

      +
      +
      $b1
      +
      in file qrcode.php, variable QRcode::$b1
      +
      $barcode
      +
      in file tcpdf.php, variable TCPDF::$barcode
      +
      $barcode_array
      +
      in file 2dbarcodes.php, variable TCPDF2DBarcode::$barcode_array
      +
      $barcode_array
      +
      in file pdf417.php, variable PDF417::$barcode_array
      +
      $barcode_array
      +
      in file qrcode.php, variable QRcode::$barcode_array
      +
      $barcode_array
      +
      in file barcodes.php, variable TCPDFBarcode::$barcode_array
      +
      $bgcolor
      +
      in file tcpdf.php, variable TCPDF::$bgcolor
      +
      $bit
      +
      in file qrcode.php, variable QRcode::$bit
      +
      $blocks
      +
      in file qrcode.php, variable QRcode::$blocks
      +
      $bMargin
      +
      in file tcpdf.php, variable TCPDF::$bMargin
      +
      $booklet
      +
      in file tcpdf.php, variable TCPDF::$booklet
          Booklet mode for double-sided pages
      +
      $bordermrk
      +
      in file tcpdf.php, variable TCPDF::$bordermrk
          Array used to store positions inside the pages buffer.
      +
      $buffer
      +
      in file tcpdf.php, variable TCPDF::$buffer
      +
      $bufferlen
      +
      in file tcpdf.php, variable TCPDF::$bufferlen
          Length of the buffer in bytes.
      +
      $byterange_string
      +
      in file tcpdf.php, variable TCPDF::$byterange_string
          ByteRange placemark used during signature process.
      +
      barcodes.php
      +
      procedural page barcodes.php
      +
      barcode_c128
      +
      in file barcodes.php, method TCPDFBarcode::barcode_c128()
          C128 barcodes.
      +
      barcode_codabar
      +
      in file barcodes.php, method TCPDFBarcode::barcode_codabar()
          CODABAR barcodes.
      +
      barcode_code11
      +
      in file barcodes.php, method TCPDFBarcode::barcode_code11()
          CODE11 barcodes.
      +
      barcode_code39
      +
      in file barcodes.php, method TCPDFBarcode::barcode_code39()
          CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.
      +
      barcode_code93
      +
      in file barcodes.php, method TCPDFBarcode::barcode_code93()
          CODE 93 - USS-93
      +
      barcode_eanext
      +
      in file barcodes.php, method TCPDFBarcode::barcode_eanext()
          UPC-Based Extentions
      +
      barcode_eanupc
      +
      in file barcodes.php, method TCPDFBarcode::barcode_eanupc()
          EAN13 and UPC-A barcodes.
      +
      barcode_i25
      +
      in file barcodes.php, method TCPDFBarcode::barcode_i25()
          Interleaved 2 of 5 barcodes.
      +
      barcode_imb
      +
      in file barcodes.php, method TCPDFBarcode::barcode_imb()
          IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200 (requires PHP bcmath extension) Intelligent Mail barcode is a 65-bar code for use on mail in the United States.
      +
      barcode_msi
      +
      in file barcodes.php, method TCPDFBarcode::barcode_msi()
          MSI.
      +
      barcode_pharmacode
      +
      in file barcodes.php, method TCPDFBarcode::barcode_pharmacode()
          Pharmacode
      +
      barcode_pharmacode2t
      +
      in file barcodes.php, method TCPDFBarcode::barcode_pharmacode2t()
          Pharmacode two-track
      +
      barcode_postnet
      +
      in file barcodes.php, method TCPDFBarcode::barcode_postnet()
          POSTNET and PLANET barcodes.
      +
      barcode_rms4cc
      +
      in file barcodes.php, method TCPDFBarcode::barcode_rms4cc()
          RMS4CC - CBC - KIX RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code) - KIX (Klant index - Customer index) RM4SCC is the name of the barcode symbology used by the Royal Mail for its Cleanmail service.
      +
      barcode_s25
      +
      in file barcodes.php, method TCPDFBarcode::barcode_s25()
          Standard 2 of 5 barcodes.
      +
      binarize
      +
      in file qrcode.php, method QRcode::binarize()
          Convert the frame in binary form
      +
      binseq_to_array
      +
      in file barcodes.php, method TCPDFBarcode::binseq_to_array()
          Convert binary barcode sequence to TCPDF barcode array
      +
      bitstreamToByte
      +
      in file qrcode.php, method QRcode::bitstreamToByte()
          Convert bitstream to bytes
      +
      Bookmark
      +
      in file tcpdf.php, method TCPDF::Bookmark()
          Adds a bookmark.
      +
      Button
      +
      in file tcpdf.php, method TCPDF::Button()
          Creates a button field
      +
      +
      + top
      +
      + +
      +

      c

      +
      +
      $cache_file_length
      +
      in file tcpdf.php, variable TCPDF::$cache_file_length
          Array used to store the lengths of cache files
      +
      $cache_maxsize_UTF8StringToArray
      +
      in file tcpdf.php, variable TCPDF::$cache_maxsize_UTF8StringToArray
          Maximum size of cache array used for UTF8StringToArray() method.
      +
      $cache_size_UTF8StringToArray
      +
      in file tcpdf.php, variable TCPDF::$cache_size_UTF8StringToArray
          Current size of cache array used for UTF8StringToArray() method.
      +
      $cache_UTF8StringToArray
      +
      in file tcpdf.php, variable TCPDF::$cache_UTF8StringToArray
          Cache array for UTF8StringToArray() method.
      +
      $capacity
      +
      in file qrcode.php, variable QRcode::$capacity
      +
      $casesensitive
      +
      in file qrcode.php, variable QRcode::$casesensitive
      +
      $cell_height_ratio
      +
      in file tcpdf.php, variable TCPDF::$cell_height_ratio
          Default cell height ratio.
      +
      $cell_margin
      +
      in file tcpdf.php, variable TCPDF::$cell_margin
      +
      $cell_padding
      +
      in file tcpdf.php, variable TCPDF::$cell_padding
      +
      $clusters
      +
      in file pdf417.php, variable PDF417::$clusters
      +
      $cntmrk
      +
      in file tcpdf.php, variable TCPDF::$cntmrk
          Array used to store content positions inside the pages buffer.
      +
      $ColorFlag
      +
      in file tcpdf.php, variable TCPDF::$ColorFlag
      +
      $columns
      +
      in file tcpdf.php, variable TCPDF::$columns
          Array of column measures (width, space, starting Y position)
      +
      $column_start_page
      +
      in file tcpdf.php, variable TCPDF::$column_start_page
          Starting page for columns
      +
      $colxshift
      +
      in file tcpdf.php, variable TCPDF::$colxshift
          Array of: X difference between table cell x start and starting page margin, cellspacing, cellpadding
      +
      $compress
      +
      in file tcpdf.php, variable TCPDF::$compress
      +
      $CoreFonts
      +
      in file tcpdf.php, variable TCPDF::$CoreFonts
      +
      $count
      +
      in file qrcode.php, variable QRcode::$count
      +
      $creator
      +
      in file tcpdf.php, variable TCPDF::$creator
      +
      $CurOrientation
      +
      in file tcpdf.php, variable TCPDF::$CurOrientation
      +
      $CurrentFont
      +
      in file tcpdf.php, variable TCPDF::$CurrentFont
      +
      $current_column
      +
      in file tcpdf.php, variable TCPDF::$current_column
          Current column number
      +
      $currpagegroup
      +
      in file tcpdf.php, variable TCPDF::$currpagegroup
          Contains the alias of the current page group
      +
      $customlistindent
      +
      in file tcpdf.php, variable TCPDF::$customlistindent
      +
      calcN1N3
      +
      in file qrcode.php, method QRcode::calcN1N3()
          calcN1N3
      +
      calcParity
      +
      in file qrcode.php, method QRcode::calcParity()
          calcParity
      +
      Cell
      +
      in file tcpdf.php, method TCPDF::Cell()
          Prints a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.
      If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
      +
      check
      +
      in file qrcode.php, method QRcode::check()
          Validate the input data.
      +
      CheckBox
      +
      in file tcpdf.php, method TCPDF::CheckBox()
          Creates a CheckBox field
      +
      checkModeAn
      +
      in file qrcode.php, method QRcode::checkModeAn()
          checkModeAn
      +
      checkModeKanji
      +
      in file qrcode.php, method QRcode::checkModeKanji()
          checkModeKanji
      +
      checkModeNum
      +
      in file qrcode.php, method QRcode::checkModeNum()
          checkModeNum
      +
      checkPageBreak
      +
      in file tcpdf.php, method TCPDF::checkPageBreak()
          Add page if needed.
      +
      checkPageRegions
      +
      in file tcpdf.php, method TCPDF::checkPageRegions()
          Check page for no-write regions and adapt current coordinates and page margins if necessary.
      +
      checksum_code39
      +
      in file barcodes.php, method TCPDFBarcode::checksum_code39()
          Calculate CODE 39 checksum (modulo 43).
      +
      checksum_code93
      +
      in file barcodes.php, method TCPDFBarcode::checksum_code93()
          Calculate CODE 93 checksum (modulo 47).
      +
      checksum_s25
      +
      in file barcodes.php, method TCPDFBarcode::checksum_s25()
          Checksum for standard 2 of 5 barcodes.
      +
      Circle
      +
      in file tcpdf.php, method TCPDF::Circle()
          Draws a circle.
      +
      Clip
      +
      in file tcpdf.php, method TCPDF::Clip()
          Set a rectangular clipping area.
      +
      Close
      +
      in file tcpdf.php, method TCPDF::Close()
          Terminates the PDF document.
      +
      closeHTMLTagHandler
      +
      in file tcpdf.php, method TCPDF::closeHTMLTagHandler()
          Process closing tags.
      +
      colorRegistrationBar
      +
      in file tcpdf.php, method TCPDF::colorRegistrationBar()
          Paints color transition registration bars
      +
      ComboBox
      +
      in file tcpdf.php, method TCPDF::ComboBox()
          Creates a Combo-box field
      +
      commitTransaction
      +
      in file tcpdf.php, method TCPDF::commitTransaction()
          Delete the copy of the current TCPDF object used for undo operation.
      +
      convertData
      +
      in file qrcode.php, method QRcode::convertData()
          convertData
      +
      convertHexStringToString
      +
      in file tcpdf.php, method TCPDF::convertHexStringToString()
          Convert hexadecimal string to string
      +
      convertHTMLColorToDec
      +
      in file tcpdf.php, method TCPDF::convertHTMLColorToDec()
          Returns an array (RGB or CMYK) from an html color name or a six-digit (i.e. #3FE5AA) or three-digit (i.e. #7FF) hexadecimal color representation.
      +
      convertStringToHexString
      +
      in file tcpdf.php, method TCPDF::convertStringToHexString()
          Convert string to hexadecimal string (byte string)
      +
      convertSVGtMatrix
      +
      in file tcpdf.php, method TCPDF::convertSVGtMatrix()
          Convert SVG transformation matrix to PDF.
      +
      CoonsPatchMesh
      +
      in file tcpdf.php, method TCPDF::CoonsPatchMesh()
          Paints a coons patch mesh.
      +
      copyPage
      +
      in file tcpdf.php, method TCPDF::copyPage()
          Clone the specified page to a new page.
      +
      createBitStream
      +
      in file qrcode.php, method QRcode::createBitStream()
          createBitStream
      +
      createFrame
      +
      in file qrcode.php, method QRcode::createFrame()
          Return a copy of initialized frame.
      +
      cropMark
      +
      in file tcpdf.php, method TCPDF::cropMark()
          Paints crop mark
      +
      Curve
      +
      in file tcpdf.php, method TCPDF::Curve()
          Draws a Bezier curve.
      +
      +
      + top
      +
      + +
      +

      d

      +
      +
      $data
      +
      in file qrcode.php, variable QRcode::$data
      +
      $datacode
      +
      in file qrcode.php, variable QRcode::$datacode
      +
      $dataLength
      +
      in file qrcode.php, variable QRcode::$dataLength
      +
      $dataStr
      +
      in file qrcode.php, variable QRcode::$dataStr
      +
      $default_form_prop
      +
      in file tcpdf.php, variable TCPDF::$default_form_prop
          Deafult Javascript field properties. Possible values are described on official Javascript for Acrobat API reference. Annotation options can be directly specified using the 'aopt' entry.
      +
      $default_graphic_vars
      +
      in file tcpdf.php, variable TCPDF::$default_graphic_vars
      +
      $default_monospaced_font
      +
      in file tcpdf.php, variable TCPDF::$default_monospaced_font
          Default monospaced font
      +
      $default_table_columns
      +
      in file tcpdf.php, variable TCPDF::$default_table_columns
      +
      $diffs
      +
      in file tcpdf.php, variable TCPDF::$diffs
      +
      $dir
      +
      in file qrcode.php, variable QRcode::$dir
      +
      $diskcache
      +
      in file tcpdf.php, variable TCPDF::$diskcache
          If true enables disk caching.
      +
      $dpi
      +
      in file tcpdf.php, variable TCPDF::$dpi
          Dot Per Inch Document Resolution (do not change)
      +
      $DrawColor
      +
      in file tcpdf.php, variable TCPDF::$DrawColor
      +
      dec_to_hex
      +
      in file barcodes.php, method TCPDFBarcode::dec_to_hex()
          Convert large integer number to hexadecimal representation.
      +
      deletePage
      +
      in file tcpdf.php, method TCPDF::deletePage()
          Remove the specified page.
      +
      drawHTMLTagBorder
      +
      in file tcpdf.php, method TCPDF::drawHTMLTagBorder()
          Draw an HTML block border and fill
      +
      +
      + top
      +
      + +
      +

      e

      +
      +
      $ecccode
      +
      in file qrcode.php, variable QRcode::$ecccode
      +
      $eccLength
      +
      in file qrcode.php, variable QRcode::$eccLength
      +
      $eccTable
      +
      in file qrcode.php, variable QRcode::$eccTable
      +
      $embeddedfiles
      +
      in file tcpdf.php, variable TCPDF::$embeddedfiles
      +
      $emptypagemrk
      +
      in file tcpdf.php, variable TCPDF::$emptypagemrk
          Array used to store page positions to track empty pages.
      +
      $encoding
      +
      in file tcpdf.php, variable TCPDF::$encoding
      +
      $encryptdata
      +
      in file tcpdf.php, variable TCPDF::$encryptdata
          Array containing encryption settings
      +
      $encrypted
      +
      in file tcpdf.php, variable TCPDF::$encrypted
          Indicates whether document is protected
      +
      $enc_padding
      +
      in file tcpdf.php, variable TCPDF::$enc_padding
          Encryption padding
      +
      $endlinex
      +
      in file tcpdf.php, variable TCPDF::$endlinex
          End position of the latest inserted line
      +
      $epsmarker
      +
      in file tcpdf.php, variable TCPDF::$epsmarker
          String used to mark the beginning and end of EPS image blocks
      +
      $extgstates
      +
      in file tcpdf.php, variable TCPDF::$extgstates
          Array of transparency objects and parameters.
      +
      eat8
      +
      in file qrcode.php, method QRcode::eat8()
          eat8
      +
      eatAn
      +
      in file qrcode.php, method QRcode::eatAn()
          eatAn
      +
      eatKanji
      +
      in file qrcode.php, method QRcode::eatKanji()
          eatKanji
      +
      eatNum
      +
      in file qrcode.php, method QRcode::eatNum()
          eatNum
      +
      Ellipse
      +
      in file tcpdf.php, method TCPDF::Ellipse()
          Draws an ellipse.
      +
      empty_string
      +
      in file tcpdf.php, method TCPDF::empty_string()
          Determine whether a string is empty.
      +
      encodeBitStream
      +
      in file qrcode.php, method QRcode::encodeBitStream()
          encodeBitStream
      +
      encodeMask
      +
      in file qrcode.php, method QRcode::encodeMask()
          Encode mask
      +
      encodeMode8
      +
      in file qrcode.php, method QRcode::encodeMode8()
          encodeMode8
      +
      encodeModeAn
      +
      in file qrcode.php, method QRcode::encodeModeAn()
          encodeModeAn
      +
      encodeModeKanji
      +
      in file qrcode.php, method QRcode::encodeModeKanji()
          encodeModeKanji
      +
      encodeModeNum
      +
      in file qrcode.php, method QRcode::encodeModeNum()
          encodeModeNum
      +
      encodeModeStructure
      +
      in file qrcode.php, method QRcode::encodeModeStructure()
          encodeModeStructure
      +
      encodeString
      +
      in file qrcode.php, method QRcode::encodeString()
          Encode the input string to QR code
      +
      encode_code39_ext
      +
      in file barcodes.php, method TCPDFBarcode::encode_code39_ext()
          Encode a string to be used for CODE 39 Extended mode.
      +
      encode_rs_char
      +
      in file qrcode.php, method QRcode::encode_rs_char()
          Encode a Reed-Solomon codec and returns the parity array
      +
      endPage
      +
      in file tcpdf.php, method TCPDF::endPage()
          Terminate the current page
      +
      endSVGElementHandler
      +
      in file tcpdf.php, method TCPDF::endSVGElementHandler()
          Sets the closing SVG element handler function for the XML parser.
      +
      endTemplate
      +
      in file tcpdf.php, method TCPDF::endTemplate()
          End the current XObject Template started with startTemplate() and restore the previous graphic state.
      +
      endTOCPage
      +
      in file tcpdf.php, method TCPDF::endTOCPage()
          Terminate the current TOC (Table Of Content) page
      +
      Error
      +
      in file tcpdf.php, method TCPDF::Error()
          This method is automatically called in case of fatal error; it simply outputs the message and halts the execution. An inherited class may override it to customize the error handling but should always halt the script, or the resulting document would probably be invalid.
      +
      estimateBitsMode8
      +
      in file qrcode.php, method QRcode::estimateBitsMode8()
          estimateBitsMode8
      +
      estimateBitsModeAn
      +
      in file qrcode.php, method QRcode::estimateBitsModeAn()
          estimateBitsModeAn
      +
      estimateBitsModeKanji
      +
      in file qrcode.php, method QRcode::estimateBitsModeKanji()
          estimateBitsModeKanji
      +
      estimateBitsModeNum
      +
      in file qrcode.php, method QRcode::estimateBitsModeNum()
          estimateBitsModeNum
      +
      estimateBitStreamSize
      +
      in file qrcode.php, method QRcode::estimateBitStreamSize()
          estimateBitStreamSize
      +
      estimateVersion
      +
      in file qrcode.php, method QRcode::estimateVersion()
          estimateVersion
      +
      evaluateSymbol
      +
      in file qrcode.php, method QRcode::evaluateSymbol()
          evaluateSymbol
      +
      extractCSSproperties
      +
      in file tcpdf.php, method TCPDF::extractCSSproperties()
          Extracts the CSS properties from a CSS string.
      +
      +
      + top
      +
      + +
      +

      f

      +
      +
      $feps
      +
      in file tcpdf.php, variable TCPDF::$feps
          Epsilon value used for float calculations
      +
      $fgcolor
      +
      in file tcpdf.php, variable TCPDF::$fgcolor
      +
      $fhPt
      +
      in file tcpdf.php, variable TCPDF::$fhPt
      +
      $file_id
      +
      in file tcpdf.php, variable TCPDF::$file_id
          File ID (used on trailer)
      +
      $FillColor
      +
      in file tcpdf.php, variable TCPDF::$FillColor
      +
      $FontAscent
      +
      in file tcpdf.php, variable TCPDF::$FontAscent
      +
      $FontDescent
      +
      in file tcpdf.php, variable TCPDF::$FontDescent
      +
      $FontFamily
      +
      in file tcpdf.php, variable TCPDF::$FontFamily
      +
      $FontFiles
      +
      in file tcpdf.php, variable TCPDF::$FontFiles
      +
      $fontkeys
      +
      in file tcpdf.php, variable TCPDF::$fontkeys
          Store the font keys.
      +
      $fontlist
      +
      in file tcpdf.php, variable TCPDF::$fontlist
      +
      $fonts
      +
      in file tcpdf.php, variable TCPDF::$fonts
      +
      $FontSize
      +
      in file tcpdf.php, variable TCPDF::$FontSize
      +
      $FontSizePt
      +
      in file tcpdf.php, variable TCPDF::$FontSizePt
      +
      $FontStyle
      +
      in file tcpdf.php, variable TCPDF::$FontStyle
      +
      $font_obj_ids
      +
      in file tcpdf.php, variable TCPDF::$font_obj_ids
          Store the font object IDs.
      +
      $font_spacing
      +
      in file tcpdf.php, variable TCPDF::$font_spacing
      +
      $font_stretching
      +
      in file tcpdf.php, variable TCPDF::$font_stretching
      +
      $font_subsetting
      +
      in file tcpdf.php, variable TCPDF::$font_subsetting
      +
      $footerlen
      +
      in file tcpdf.php, variable TCPDF::$footerlen
          Array used to store footer length of each page.
      +
      $footerpos
      +
      in file tcpdf.php, variable TCPDF::$footerpos
          Array used to store footer positions of each page.
      +
      $footer_font
      +
      in file tcpdf.php, variable TCPDF::$footer_font
      +
      $footer_margin
      +
      in file tcpdf.php, variable TCPDF::$footer_margin
      +
      $formatInfo
      +
      in file qrcode.php, variable QRcode::$formatInfo
      +
      $form_action
      +
      in file tcpdf.php, variable TCPDF::$form_action
          Current form action (used during XHTML rendering)
      +
      $form_enctype
      +
      in file tcpdf.php, variable TCPDF::$form_enctype
          Current form encryption type (used during XHTML rendering)
      +
      $form_mode
      +
      in file tcpdf.php, variable TCPDF::$form_mode
          Current method to submit forms.
      +
      $form_obj_id
      +
      in file tcpdf.php, variable TCPDF::$form_obj_id
          List of form annotations IDs
      +
      $frame
      +
      in file qrcode.php, variable QRcode::$frame
      +
      $frames
      +
      in file qrcode.php, variable QRcode::$frames
      +
      $fwPt
      +
      in file tcpdf.php, variable TCPDF::$fwPt
      +
      fitBlock
      +
      in file tcpdf.php, method TCPDF::fitBlock()
          Set the block dimensions accounting for page breaks and page/column fitting
      +
      fixHTMLCode
      +
      in file tcpdf.php, method TCPDF::fixHTMLCode()
          Cleanup HTML code (requires HTML Tidy library).
      +
      Footer
      +
      in file tcpdf.php, method TCPDF::Footer()
          This method is used to render the page footer.
      +
      formatPageNumber
      +
      in file tcpdf.php, method TCPDF::formatPageNumber()
          Format the page numbers.
      +
      formatTOCPageNumber
      +
      in file tcpdf.php, method TCPDF::formatTOCPageNumber()
          Format the page numbers on the Table Of Content.
      +
      +
      + top
      +
      + +
      +

      g

      +
      +
      $gradients
      +
      in file tcpdf.php, variable TCPDF::$gradients
          Array for storing gradient information.
      +
      generateMaskNo
      +
      in file qrcode.php, method QRcode::generateMaskNo()
          Return bitmask
      +
      GetAbsX
      +
      in file tcpdf.php, method TCPDF::GetAbsX()
          Returns the absolute X value of current position.
      +
      getAliasNbPages
      +
      in file tcpdf.php, method TCPDF::getAliasNbPages()
          Returns the string alias used for the total number of pages.
      +
      getAliasNumPage
      +
      in file tcpdf.php, method TCPDF::getAliasNumPage()
          Returns the string alias used for the page number.
      +
      getAnnotOptFromJSProp
      +
      in file tcpdf.php, method TCPDF::getAnnotOptFromJSProp()
          Convert JavaScript form fields properties array to Annotation Properties array.
      +
      GetArrStringWidth
      +
      in file tcpdf.php, method TCPDF::GetArrStringWidth()
          Returns the string length of an array of chars in user unit or an array of characters widths. A font must be selected.
      +
      getBarcode
      +
      in file tcpdf.php, method TCPDF::getBarcode()
          Get current barcode.
      +
      getBarcodeArray
      +
      in file pdf417.php, method PDF417::getBarcodeArray()
          Returns a barcode array which is readable by TCPDF
      +
      getBarcodeArray
      +
      in file 2dbarcodes.php, method TCPDF2DBarcode::getBarcodeArray()
          Return an array representations of barcode.
      +
      getBarcodeArray
      +
      in file qrcode.php, method QRcode::getBarcodeArray()
          Returns a barcode array which is readable by TCPDF
      +
      getBarcodeArray
      +
      in file barcodes.php, method TCPDFBarcode::getBarcodeArray()
          Return an array representations of barcode.
      +
      getBitStream
      +
      in file qrcode.php, method QRcode::getBitStream()
          Returns a stream of bits.
      +
      getBorderMode
      +
      in file tcpdf.php, method TCPDF::getBorderMode()
          Get the border mode accounting for multicell position (opens bottom side of multicell crossing pages)
      +
      getBorderStartPosition
      +
      in file tcpdf.php, method TCPDF::getBorderStartPosition()
          Return the starting coordinates to draw an html border
      +
      getBreakMargin
      +
      in file tcpdf.php, method TCPDF::getBreakMargin()
          Returns the page break margin.
      +
      getBuffer
      +
      in file tcpdf.php, method TCPDF::getBuffer()
          Get buffer content.
      +
      getByteStream
      +
      in file qrcode.php, method QRcode::getByteStream()
          Pack all bit streams padding bits into a byte array.
      +
      getCellBorder
      +
      in file tcpdf.php, method TCPDF::getCellBorder()
          Returns the code to draw the cell border
      +
      getCellCode
      +
      in file tcpdf.php, method TCPDF::getCellCode()
          Returns the PDF string code to print a cell (rectangular area) with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.
      If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
      +
      getCellHeightRatio
      +
      in file tcpdf.php, method TCPDF::getCellHeightRatio()
          return the height of cell repect font height.
      +
      getCellMargins
      +
      in file tcpdf.php, method TCPDF::getCellMargins()
          Get the internal Cell margin array.
      +
      getCellPaddings
      +
      in file tcpdf.php, method TCPDF::getCellPaddings()
          Get the internal Cell padding array.
      +
      GetCharWidth
      +
      in file tcpdf.php, method TCPDF::GetCharWidth()
          Returns the length of the char in user unit for the current font considering current stretching and spacing (tracking/kerning).
      +
      getCode
      +
      in file qrcode.php, method QRcode::getCode()
          Return Reed-Solomon block code.
      +
      getColumn
      +
      in file tcpdf.php, method TCPDF::getColumn()
          Return the current column number
      +
      getCompaction
      +
      in file pdf417.php, method PDF417::getCompaction()
          Compact data by mode.
      +
      getCSSBorderDashStyle
      +
      in file tcpdf.php, method TCPDF::getCSSBorderDashStyle()
          Returns the border dash style from CSS property
      +
      getCSSBorderMargin
      +
      in file tcpdf.php, method TCPDF::getCSSBorderMargin()
          Get the border-spacing from CSS attribute.
      +
      getCSSBorderStyle
      +
      in file tcpdf.php, method TCPDF::getCSSBorderStyle()
          Returns the border style array from CSS border properties
      +
      getCSSBorderWidth
      +
      in file tcpdf.php, method TCPDF::getCSSBorderWidth()
          Returns the border width from CSS property
      +
      getCSSFontSpacing
      +
      in file tcpdf.php, method TCPDF::getCSSFontSpacing()
          Returns the letter-spacing value from CSS value
      +
      getCSSFontStretching
      +
      in file tcpdf.php, method TCPDF::getCSSFontStretching()
          Returns the percentage of font stretching from CSS value
      +
      getCSSMargin
      +
      in file tcpdf.php, method TCPDF::getCSSMargin()
          Get the internal Cell margin from CSS attribute.
      +
      getCSSPadding
      +
      in file tcpdf.php, method TCPDF::getCSSPadding()
          Get the internal Cell padding from CSS attribute.
      +
      getDataLength
      +
      in file qrcode.php, method QRcode::getDataLength()
          Return maximum data code length (bytes) for the version.
      +
      getECCLength
      +
      in file qrcode.php, method QRcode::getECCLength()
          Return maximum error correction code length (bytes) for the version.
      +
      getEccSpec
      +
      in file qrcode.php, method QRcode::getEccSpec()
          Return an array of ECC specification.
      +
      getEncPermissionsString
      +
      in file tcpdf.php, method TCPDF::getEncPermissionsString()
          Convert encryption P value to a string of bytes, low-order byte first.
      +
      getErrorCorrection
      +
      in file pdf417.php, method PDF417::getErrorCorrection()
          Returns the error correction codewords
      +
      getErrorCorrectionLevel
      +
      in file pdf417.php, method PDF417::getErrorCorrectionLevel()
          Returns the error correction level (0-8) to be used
      +
      getFontAscent
      +
      in file tcpdf.php, method TCPDF::getFontAscent()
          Return the font ascent value
      +
      getFontBuffer
      +
      in file tcpdf.php, method TCPDF::getFontBuffer()
          Get font buffer content.
      +
      getFontDescent
      +
      in file tcpdf.php, method TCPDF::getFontDescent()
          Return the font descent value
      +
      getFontFamily
      +
      in file tcpdf.php, method TCPDF::getFontFamily()
          Returns the current font family name.
      +
      getFontFamilyName
      +
      in file tcpdf.php, method TCPDF::getFontFamilyName()
          Return normalized font name
      +
      getFontSize
      +
      in file tcpdf.php, method TCPDF::getFontSize()
          Returns the current font size.
      +
      getFontSizePt
      +
      in file tcpdf.php, method TCPDF::getFontSizePt()
          Returns the current font size in points unit.
      +
      getFontsList
      +
      in file tcpdf.php, method TCPDF::getFontsList()
          Fill the list of available fonts ($this->fontlist).
      +
      getFontSpacing
      +
      in file tcpdf.php, method TCPDF::getFontSpacing()
          Get the amount to increase or decrease the space between characters in a text.
      +
      getFontStretching
      +
      in file tcpdf.php, method TCPDF::getFontStretching()
          Get the percentage of character stretching.
      +
      getFontStyle
      +
      in file tcpdf.php, method TCPDF::getFontStyle()
          Returns the current font style.
      +
      getFontSubsetting
      +
      in file tcpdf.php, method TCPDF::getFontSubsetting()
          Return the default option for font subsetting.
      +
      getFooterFont
      +
      in file tcpdf.php, method TCPDF::getFooterFont()
          Get Footer font.
      +
      getFooterMargin
      +
      in file tcpdf.php, method TCPDF::getFooterMargin()
          Returns footer margin in user units.
      +
      getFormatInfo
      +
      in file qrcode.php, method QRcode::getFormatInfo()
          Return BCH encoded format information pattern.
      +
      getFormDefaultProp
      +
      in file tcpdf.php, method TCPDF::getFormDefaultProp()
          Return the default properties for form fields.
      +
      getFrameAt
      +
      in file qrcode.php, method QRcode::getFrameAt()
          Get frame value at specified position
      +
      getGDgamma
      +
      in file tcpdf.php, method TCPDF::getGDgamma()
          Correct the gamma value to be used with GD library
      +
      getGraphicVars
      +
      in file tcpdf.php, method TCPDF::getGraphicVars()
          Returns current graphic variables as array.
      +
      getGroupPageNo
      +
      in file tcpdf.php, method TCPDF::getGroupPageNo()
          Return the current page in the group.
      +
      getGroupPageNoFormatted
      +
      in file tcpdf.php, method TCPDF::getGroupPageNoFormatted()
          Returns the current group page number formatted as a string.
      +
      getHeaderData
      +
      in file tcpdf.php, method TCPDF::getHeaderData()
          Returns header data:
      +
      getHeaderFont
      +
      in file tcpdf.php, method TCPDF::getHeaderFont()
          Get header font.
      +
      getHeaderMargin
      +
      in file tcpdf.php, method TCPDF::getHeaderMargin()
          Returns header margin in user units.
      +
      getHtmlDomArray
      +
      in file tcpdf.php, method TCPDF::getHtmlDomArray()
          Returns the HTML DOM array.
      +
      getHTMLUnitToUnits
      +
      in file tcpdf.php, method TCPDF::getHTMLUnitToUnits()
          Convert HTML string containing value and unit of measure to user's units or points.
      +
      getHyphenPatternsFromTEX
      +
      in file tcpdf.php, method TCPDF::getHyphenPatternsFromTEX()
          Returns an array of hyphenation patterns.
      +
      getImageBuffer
      +
      in file tcpdf.php, method TCPDF::getImageBuffer()
          Get image buffer content.
      +
      getImageFileType
      +
      in file tcpdf.php, method TCPDF::getImageFileType()
          Return the image type given the file name or array returned by getimagesize() function.
      +
      getImageRBX
      +
      in file tcpdf.php, method TCPDF::getImageRBX()
          Return the right-bottom (or left-bottom for RTL) corner X coordinate of last inserted image
      +
      getImageRBY
      +
      in file tcpdf.php, method TCPDF::getImageRBY()
          Return the right-bottom (or left-bottom for RTL) corner Y coordinate of last inserted image
      +
      getImageScale
      +
      in file tcpdf.php, method TCPDF::getImageScale()
          Returns the adjusting factor to convert pixels to user units.
      +
      getInputSequences
      +
      in file pdf417.php, method PDF417::getInputSequences()
          Create array of sequences from input
      +
      getLastH
      +
      in file tcpdf.php, method TCPDF::getLastH()
          Get the last cell height.
      +
      GetLineWidth
      +
      in file tcpdf.php, method TCPDF::GetLineWidth()
          Returns the current the line width.
      +
      getMargins
      +
      in file tcpdf.php, method TCPDF::getMargins()
          Returns an array containing current margins:
      +
      getMinimumVersion
      +
      in file qrcode.php, method QRcode::getMinimumVersion()
          Return a version number that satisfies the input code length.
      +
      getNextPosition
      +
      in file qrcode.php, method QRcode::getNextPosition()
          Return the next frame position
      +
      getNumberOfColumns
      +
      in file tcpdf.php, method TCPDF::getNumberOfColumns()
          Return the current number of columns.
      +
      GetNumChars
      +
      in file tcpdf.php, method TCPDF::GetNumChars()
          Returns the numbero of characters in a string.
      +
      getNumLines
      +
      in file tcpdf.php, method TCPDF::getNumLines()
          This method return the estimated number of lines for print a simple text string using Multicell() method.
      +
      getNumPages
      +
      in file tcpdf.php, method TCPDF::getNumPages()
          Get the total number of insered pages.
      +
      getObjFilename
      +
      in file tcpdf.php, method TCPDF::getObjFilename()
          Returns a temporary filename for caching object on filesystem.
      +
      getOriginalMargins
      +
      in file tcpdf.php, method TCPDF::getOriginalMargins()
          Returns an array containing original margins:
      +
      getPage
      +
      in file tcpdf.php, method TCPDF::getPage()
          Get current document page number.
      +
      getPageBuffer
      +
      in file tcpdf.php, method TCPDF::getPageBuffer()
          Get page buffer content.
      +
      getPageDimensions
      +
      in file tcpdf.php, method TCPDF::getPageDimensions()
          Returns an array of page dimensions:
      +
      getPageGroupAlias
      +
      in file tcpdf.php, method TCPDF::getPageGroupAlias()
          Return the alias of the current page group If the current font is unicode type, the returned string is surrounded by additional curly braces.
      +
      getPageHeight
      +
      in file tcpdf.php, method TCPDF::getPageHeight()
          Returns the page height in units.
      +
      getPageNumGroupAlias
      +
      in file tcpdf.php, method TCPDF::getPageNumGroupAlias()
          Return the alias for the page number on the current page group If the current font is unicode type, the returned string is surrounded by additional curly braces.
      +
      getPageRegions
      +
      in file tcpdf.php, method TCPDF::getPageRegions()
          Return an array of no-write page regions
      +
      getPageSizeFromFormat
      +
      in file tcpdf.php, method TCPDF::getPageSizeFromFormat()
          Get page dimensions from format name.
      +
      getPageWidth
      +
      in file tcpdf.php, method TCPDF::getPageWidth()
          Returns the page width in units.
      +
      getPathPaintOperator
      +
      in file tcpdf.php, method TCPDF::getPathPaintOperator()
          Get the Path-Painting Operators.
      +
      getPDFData
      +
      in file tcpdf.php, method TCPDF::getPDFData()
          Returns the PDF data.
      +
      getRandomSeed
      +
      in file tcpdf.php, method TCPDF::getRandomSeed()
          Returns a string containing random data to be used as a seed for encryption methods.
      +
      getRawCharWidth
      +
      in file tcpdf.php, method TCPDF::getRawCharWidth()
          Returns the length of the char in user unit for the current font.
      +
      getRemainder
      +
      in file qrcode.php, method QRcode::getRemainder()
          Return the numer of remainder bits.
      +
      getRemainingWidth
      +
      in file tcpdf.php, method TCPDF::getRemainingWidth()
          Returns the remaining width between the current position and margins.
      +
      getRTL
      +
      in file tcpdf.php, method TCPDF::getRTL()
          Return the RTL status
      +
      getScaleFactor
      +
      in file tcpdf.php, method TCPDF::getScaleFactor()
          Returns the scale factor (number of points in user unit).
      +
      getSpaceString
      +
      in file tcpdf.php, method TCPDF::getSpaceString()
          Returns the string used to find spaces
      +
      getStringHeight
      +
      in file tcpdf.php, method TCPDF::getStringHeight()
          This method return the estimated needed height for print a simple text string in Multicell() method.
      +
      GetStringWidth
      +
      in file tcpdf.php, method TCPDF::GetStringWidth()
          Returns the length of a string in user unit. A font must be selected.
      +
      getSVGTransformMatrix
      +
      in file tcpdf.php, method TCPDF::getSVGTransformMatrix()
          Get the tranformation matrix from SVG transform attribute
      +
      getTagStyleFromCSS
      +
      in file tcpdf.php, method TCPDF::getTagStyleFromCSS()
          Returns the styles that apply for the selected HTML tag.
      +
      getTCPDFVersion
      +
      in file tcpdf.php, method TCPDF::getTCPDFVersion()
          Return the current TCPDF version.
      +
      getTransformationMatrixProduct
      +
      in file tcpdf.php, method TCPDF::getTransformationMatrixProduct()
          Get the product of two SVG tranformation matrices
      +
      getUserPermissionCode
      +
      in file tcpdf.php, method TCPDF::getUserPermissionCode()
          Return the premission code used on encryption (P value).
      +
      getVectorsAngle
      +
      in file tcpdf.php, method TCPDF::getVectorsAngle()
          Returns the angle in radiants between two vectors
      +
      getVersionPattern
      +
      in file qrcode.php, method QRcode::getVersionPattern()
          Return BCH encoded version information pattern that is used for the symbol of version 7 or greater. Use lower 18 bits.
      +
      getWidth
      +
      in file qrcode.php, method QRcode::getWidth()
          Return the width of the symbol for the version.
      +
      GetX
      +
      in file tcpdf.php, method TCPDF::GetX()
          Returns the relative X value of current position.
      +
      GetY
      +
      in file tcpdf.php, method TCPDF::GetY()
          Returns the ordinate of the current position.
      +
      get_mqr
      +
      in file tcpdf.php, method TCPDF::get_mqr()
          Gets the current active configuration setting of magic_quotes_runtime (if the get_magic_quotes_runtime function exist)
      +
      Gradient
      +
      in file tcpdf.php, method TCPDF::Gradient()
          Output gradient.
      +
      +
      + top
      +
      + +
      +

      h

      +
      +
      $h
      +
      in file tcpdf.php, variable TCPDF::$h
      +
      $header_font
      +
      in file tcpdf.php, variable TCPDF::$header_font
      +
      $header_logo
      +
      in file tcpdf.php, variable TCPDF::$header_logo
      +
      $header_logo_width
      +
      in file tcpdf.php, variable TCPDF::$header_logo_width
      +
      $header_margin
      +
      in file tcpdf.php, variable TCPDF::$header_margin
      +
      $header_string
      +
      in file tcpdf.php, variable TCPDF::$header_string
      +
      $header_title
      +
      in file tcpdf.php, variable TCPDF::$header_title
      +
      $hint
      +
      in file qrcode.php, variable QRcode::$hint
      +
      $hPt
      +
      in file tcpdf.php, variable TCPDF::$hPt
      +
      $HREF
      +
      in file tcpdf.php, variable TCPDF::$HREF
      +
      $htmlLinkColorArray
      +
      in file tcpdf.php, variable TCPDF::$htmlLinkColorArray
          Default color for html links
      +
      $htmlLinkFontStyle
      +
      in file tcpdf.php, variable TCPDF::$htmlLinkFontStyle
          Default font style to add to html links
      +
      $htmlvspace
      +
      in file tcpdf.php, variable TCPDF::$htmlvspace
          Count the latest inserted vertical spaces on HTML
      +
      Header
      +
      in file tcpdf.php, method TCPDF::Header()
          This method is used to render the page header.
      +
      HEAD_MAGNIFICATION
      +
      in file tcpdf_config.php, constant HEAD_MAGNIFICATION
          magnification factor for titles
      +
      hex_to_dec
      +
      in file barcodes.php, method TCPDFBarcode::hex_to_dec()
          Convert large hexadecimal number to decimal representation (string).
      +
      htmlcolors.php
      +
      procedural page htmlcolors.php
      +
      hyphenateText
      +
      in file tcpdf.php, method TCPDF::hyphenateText()
          Returns text with soft hyphens.
      +
      hyphenateWord
      +
      in file tcpdf.php, method TCPDF::hyphenateWord()
          Returns an array of chars containing soft hyphens.
      +
      +
      + top
      +
      + +
      +

      i

      +
      +
      $imagekeys
      +
      in file tcpdf.php, variable TCPDF::$imagekeys
          Store the image keys.
      +
      $images
      +
      in file tcpdf.php, variable TCPDF::$images
      +
      $imgscale
      +
      in file tcpdf.php, variable TCPDF::$imgscale
      +
      $img_rb_x
      +
      in file tcpdf.php, variable TCPDF::$img_rb_x
      +
      $img_rb_y
      +
      in file tcpdf.php, variable TCPDF::$img_rb_y
      +
      $InFooter
      +
      in file tcpdf.php, variable TCPDF::$InFooter
      +
      $internal_encoding
      +
      in file tcpdf.php, variable TCPDF::$internal_encoding
      +
      $inthead
      +
      in file tcpdf.php, variable TCPDF::$inthead
          True when we are printing the thead section on a new page
      +
      $intmrk
      +
      in file tcpdf.php, variable TCPDF::$intmrk
          Array used to store positions inside the pages buffer.
      +
      $inxobj
      +
      in file tcpdf.php, variable TCPDF::$inxobj
      +
      $isunicode
      +
      in file tcpdf.php, variable TCPDF::$isunicode
      +
      $items
      +
      in file qrcode.php, variable QRcode::$items
      +
      identifyMode
      +
      in file qrcode.php, method QRcode::identifyMode()
          identifyMode
      +
      Image
      +
      in file tcpdf.php, method TCPDF::Image()
          Puts an image in the page.
      +
      ImageEps
      +
      in file tcpdf.php, method TCPDF::ImageEps()
          Embed vector-based Adobe Illustrator (AI) or AI-compatible EPS files.
      +
      ImagePngAlpha
      +
      in file tcpdf.php, method TCPDF::ImagePngAlpha()
          Extract info from a PNG image with alpha channel using the GD library.
      +
      ImageSVG
      +
      in file tcpdf.php, method TCPDF::ImageSVG()
          Embedd a Scalable Vector Graphics (SVG) image.
      +
      imb_crc11fcs
      +
      in file barcodes.php, method TCPDFBarcode::imb_crc11fcs()
          Intelligent Mail Barcode calculation of Frame Check Sequence
      +
      imb_reverse_us
      +
      in file barcodes.php, method TCPDFBarcode::imb_reverse_us()
          Reverse unsigned short value
      +
      imb_tables
      +
      in file barcodes.php, method TCPDFBarcode::imb_tables()
          generate Nof13 tables used for Intelligent Mail Barcode
      +
      IncludeJS
      +
      in file tcpdf.php, method TCPDF::IncludeJS()
          Adds a javascript
      +
      init
      +
      in file qrcode.php, method QRcode::init()
          Initialize code.
      +
      init_rs
      +
      in file qrcode.php, method QRcode::init_rs()
          Initialize a Reed-Solomon codec and add it to existing rsitems
      +
      init_rs_char
      +
      in file qrcode.php, method QRcode::init_rs_char()
          Initialize a Reed-Solomon codec and returns an array of values.
      +
      insertStructuredAppendHeader
      +
      in file qrcode.php, method QRcode::insertStructuredAppendHeader()
          insertStructuredAppendHeader
      +
      intToRoman
      +
      in file tcpdf.php, method TCPDF::intToRoman()
          Returns the Roman representation of an integer number
      +
      isalnumat
      +
      in file qrcode.php, method QRcode::isalnumat()
          Return true if the character at specified position is an alphanumeric character
      +
      isdigitat
      +
      in file qrcode.php, method QRcode::isdigitat()
          Return true if the character at specified position is a number
      +
      isRTLTextDir
      +
      in file tcpdf.php, method TCPDF::isRTLTextDir()
          Return the current temporary RTL status
      +
      isUnicodeFont
      +
      in file tcpdf.php, method TCPDF::isUnicodeFont()
          Return true if the current font is unicode type.
      +
      isValidCSSSelectorForTag
      +
      in file tcpdf.php, method TCPDF::isValidCSSSelectorForTag()
          Returns true if the CSS selector is valid for the selected HTML tag
      +
      +
      + top
      +
      + +
      +

      j

      +
      +
      $javascript
      +
      in file tcpdf.php, variable TCPDF::$javascript
          javascript code
      +
      $jpeg_quality
      +
      in file tcpdf.php, variable TCPDF::$jpeg_quality
          Set the default JPEG compression quality (1-100)
      +
      $js_objects
      +
      in file tcpdf.php, variable TCPDF::$js_objects
          Javascript objects array
      +
      +
      + top
      +
      + +
      +

      k

      +
      +
      $k
      +
      in file tcpdf.php, variable TCPDF::$k
      +
      $keywords
      +
      in file tcpdf.php, variable TCPDF::$keywords
      +
      K_BLANK_IMAGE
      +
      in file tcpdf_config.php, constant K_BLANK_IMAGE
          blank image
      +
      K_CELL_HEIGHT_RATIO
      +
      in file tcpdf_config.php, constant K_CELL_HEIGHT_RATIO
          height of cell repect font height
      +
      K_PATH_CACHE
      +
      in file tcpdf_config.php, constant K_PATH_CACHE
          cache directory for temporary files (full path)
      +
      K_PATH_FONTS
      +
      in file tcpdf_config.php, constant K_PATH_FONTS
          path for PDF fonts
      +
      K_PATH_IMAGES
      +
      in file tcpdf_config.php, constant K_PATH_IMAGES
          images directory
      +
      K_PATH_MAIN
      +
      in file tcpdf_config.php, constant K_PATH_MAIN
          Installation path (/var/www/tcpdf/).
      +
      K_PATH_URL
      +
      in file tcpdf_config.php, constant K_PATH_URL
          URL path to tcpdf installation folder (http://localhost/tcpdf/).
      +
      K_PATH_URL_CACHE
      +
      in file tcpdf_config.php, constant K_PATH_URL_CACHE
          cache directory for temporary files (url path)
      +
      K_SMALL_RATIO
      +
      in file tcpdf_config.php, constant K_SMALL_RATIO
          reduction factor for small font
      +
      K_TCPDF_CALLS_IN_HTML
      +
      in file tcpdf_config.php, constant K_TCPDF_CALLS_IN_HTML
          if true allows to call TCPDF methods using HTML syntax IMPORTANT: For security reason, disable this feature if you are printing user HTML content.
      +
      K_THAI_TOPCHARS
      +
      in file tcpdf_config.php, constant K_THAI_TOPCHARS
          set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language
      +
      K_TITLE_MAGNIFICATION
      +
      in file tcpdf_config.php, constant K_TITLE_MAGNIFICATION
          title magnification respect main font size
      +
      +
      + top
      +
      + +
      +

      l

      +
      +
      $l
      +
      in file tcpdf.php, variable TCPDF::$l
      +
      $lasth
      +
      in file tcpdf.php, variable TCPDF::$lasth
      +
      $last_enc_key
      +
      in file tcpdf.php, variable TCPDF::$last_enc_key
          last RC4 key encrypted (cached for optimisation)
      +
      $last_enc_key_c
      +
      in file tcpdf.php, variable TCPDF::$last_enc_key_c
          last RC4 computed key
      +
      $LayoutMode
      +
      in file tcpdf.php, variable TCPDF::$LayoutMode
      +
      $lengthTableBits
      +
      in file qrcode.php, variable QRcode::$lengthTableBits
      +
      $level
      +
      in file qrcode.php, variable QRcode::$level
      +
      $linestyleCap
      +
      in file tcpdf.php, variable TCPDF::$linestyleCap
          PDF string for last line width
      +
      $linestyleDash
      +
      in file tcpdf.php, variable TCPDF::$linestyleDash
          PDF string for last line width
      +
      $linestyleJoin
      +
      in file tcpdf.php, variable TCPDF::$linestyleJoin
          PDF string for last line width
      +
      $linestyleWidth
      +
      in file tcpdf.php, variable TCPDF::$linestyleWidth
          PDF string for last line width
      +
      $linethrough
      +
      in file tcpdf.php, variable TCPDF::$linethrough
          line trough state
      +
      $LineWidth
      +
      in file tcpdf.php, variable TCPDF::$LineWidth
      +
      $links
      +
      in file tcpdf.php, variable TCPDF::$links
      +
      $lispacer
      +
      in file tcpdf.php, variable TCPDF::$lispacer
      +
      $listcount
      +
      in file tcpdf.php, variable TCPDF::$listcount
      +
      $listindent
      +
      in file tcpdf.php, variable TCPDF::$listindent
      +
      $listindentlevel
      +
      in file tcpdf.php, variable TCPDF::$listindentlevel
      +
      $listnum
      +
      in file tcpdf.php, variable TCPDF::$listnum
      +
      $listordered
      +
      in file tcpdf.php, variable TCPDF::$listordered
      +
      $lisymbol
      +
      in file tcpdf.php, variable TCPDF::$lisymbol
          Symbol used for HTML unordered list items
      +
      $lMargin
      +
      in file tcpdf.php, variable TCPDF::$lMargin
      +
      lastPage
      +
      in file tcpdf.php, method TCPDF::lastPage()
          Reset pointer to the last document page.
      +
      lengthIndicator
      +
      in file qrcode.php, method QRcode::lengthIndicator()
          Return the size of length indicator for the mode and version.
      +
      lengthOfCode
      +
      in file qrcode.php, method QRcode::lengthOfCode()
          lengthOfCode
      +
      Line
      +
      in file tcpdf.php, method TCPDF::Line()
          Draws a line between two points.
      +
      LinearGradient
      +
      in file tcpdf.php, method TCPDF::LinearGradient()
          Paints a linear colour gradient.
      +
      Link
      +
      in file tcpdf.php, method TCPDF::Link()
          Puts a link on a rectangular area of the page.
      +
      ListBox
      +
      in file tcpdf.php, method TCPDF::ListBox()
          Creates a List-box field
      +
      Ln
      +
      in file tcpdf.php, method TCPDF::Ln()
          Performs a line break.
      +
      lookAnTable
      +
      in file qrcode.php, method QRcode::lookAnTable()
          Look up the alphabet-numeric convesion table (see JIS X0510:2004, pp.19).
      +
      +
      + top
      +
      + +
      +

      m

      +
      +
      $maxselcol
      +
      in file tcpdf.php, variable TCPDF::$maxselcol
          Maximum page and column selected
      +
      makeMask
      +
      in file qrcode.php, method QRcode::makeMask()
          makeMask
      +
      makeMaskNo
      +
      in file qrcode.php, method QRcode::makeMaskNo()
          makeMaskNo
      +
      mask
      +
      in file qrcode.php, method QRcode::mask()
          mask
      +
      mask0
      +
      in file qrcode.php, method QRcode::mask0()
          mask0
      +
      mask1
      +
      in file qrcode.php, method QRcode::mask1()
          mask1
      +
      mask2
      +
      in file qrcode.php, method QRcode::mask2()
          mask2
      +
      mask3
      +
      in file qrcode.php, method QRcode::mask3()
          mask3
      +
      mask4
      +
      in file qrcode.php, method QRcode::mask4()
          mask4
      +
      mask5
      +
      in file qrcode.php, method QRcode::mask5()
          mask5
      +
      mask6
      +
      in file qrcode.php, method QRcode::mask6()
          mask6
      +
      mask7
      +
      in file qrcode.php, method QRcode::mask7()
          mask7
      +
      maximumWords
      +
      in file qrcode.php, method QRcode::maximumWords()
          Return the maximum length for the mode and version.
      +
      MAX_STRUCTURED_SYMBOLS
      +
      in file qrcode.php, constant MAX_STRUCTURED_SYMBOLS
          Max number of symbols for structured mode
      +
      mergeBitStream
      +
      in file qrcode.php, method QRcode::mergeBitStream()
          mergeBitStream
      +
      MirrorH
      +
      in file tcpdf.php, method TCPDF::MirrorH()
          Horizontal Mirroring.
      +
      MirrorL
      +
      in file tcpdf.php, method TCPDF::MirrorL()
          Reflection against a straight line through point (x, y) with the gradient angle (angle).
      +
      MirrorP
      +
      in file tcpdf.php, method TCPDF::MirrorP()
          Point reflection mirroring.
      +
      MirrorV
      +
      in file tcpdf.php, method TCPDF::MirrorV()
          Verical Mirroring.
      +
      modnn
      +
      in file qrcode.php, method QRcode::modnn()
          modnn
      +
      movePage
      +
      in file tcpdf.php, method TCPDF::movePage()
          Move a page to a previous position.
      +
      MultiCell
      +
      in file tcpdf.php, method TCPDF::MultiCell()
          This method allows printing text with line breaks.
      +
      +
      + top
      +
      + +
      +

      n

      +
      +
      $n
      +
      in file tcpdf.php, variable TCPDF::$n
      +
      $newline
      +
      in file tcpdf.php, variable TCPDF::$newline
          True if a newline is created.
      +
      $newpagegroup
      +
      in file tcpdf.php, variable TCPDF::$newpagegroup
          Array of page numbers were a new page group was started
      +
      $numfonts
      +
      in file tcpdf.php, variable TCPDF::$numfonts
          Counts the number of fonts.
      +
      $numimages
      +
      in file tcpdf.php, variable TCPDF::$numimages
          Counts the number of pages.
      +
      $numpages
      +
      in file tcpdf.php, variable TCPDF::$numpages
          Counts the number of pages.
      +
      $num_columns
      +
      in file tcpdf.php, variable TCPDF::$num_columns
          Number of colums
      +
      $n_js
      +
      in file tcpdf.php, variable TCPDF::$n_js
          javascript counter
      +
      $n_ocg_print
      +
      in file tcpdf.php, variable TCPDF::$n_ocg_print
          Print visibility.
      +
      $n_ocg_view
      +
      in file tcpdf.php, variable TCPDF::$n_ocg_view
          View visibility.
      +
      N1
      +
      in file qrcode.php, constant N1
          Down point base value for case 1 mask pattern (concatenation of same color in a line or a column)
      +
      N2
      +
      in file qrcode.php, constant N2
          Down point base value for case 2 mask pattern (module block of same color)
      +
      N3
      +
      in file qrcode.php, constant N3
          Down point base value for case 3 mask pattern (1:1:3:1:1(dark:bright:dark:bright:dark)pattern in a line or a column)
      +
      N4
      +
      in file qrcode.php, constant N4
          Down point base value for case 4 mask pattern (ration of dark modules in whole)
      +
      newFrame
      +
      in file qrcode.php, method QRcode::newFrame()
          Set new frame for the specified version.
      +
      newFromBytes
      +
      in file qrcode.php, method QRcode::newFromBytes()
          Return new bitstream from bytes
      +
      newFromNum
      +
      in file qrcode.php, method QRcode::newFromNum()
          Return new bitstream from number
      +
      newInputItem
      +
      in file qrcode.php, method QRcode::newInputItem()
          newInputItem
      +
      +
      + top
      +
      + +
      +

      o

      +
      +
      $objcopy
      +
      in file tcpdf.php, variable TCPDF::$objcopy
          Used to store a cloned copy of the current class object
      +
      $offsets
      +
      in file tcpdf.php, variable TCPDF::$offsets
      +
      $opencell
      +
      in file tcpdf.php, variable TCPDF::$opencell
      +
      $openMarkedContent
      +
      in file tcpdf.php, variable TCPDF::$openMarkedContent
          True if marked-content sequence is open
      +
      $original_lMargin
      +
      in file tcpdf.php, variable TCPDF::$original_lMargin
      +
      $original_rMargin
      +
      in file tcpdf.php, variable TCPDF::$original_rMargin
      +
      $OutlineRoot
      +
      in file tcpdf.php, variable TCPDF::$OutlineRoot
          Outline root for bookmark
      +
      $outlines
      +
      in file tcpdf.php, variable TCPDF::$outlines
          Outlines for bookmark
      +
      $overline
      +
      in file tcpdf.php, variable TCPDF::$overline
      +
      objclone
      +
      in file tcpdf.php, method TCPDF::objclone()
          Creates a copy of a class object
      +
      Open
      +
      in file tcpdf.php, method TCPDF::Open()
          This method begins the generation of the PDF document.
      +
      openHTMLTagHandler
      +
      in file tcpdf.php, method TCPDF::openHTMLTagHandler()
          Process opening tags.
      +
      Output
      +
      in file tcpdf.php, method TCPDF::Output()
          Send the document to a given destination: string, local file or browser.
      +
      +
      + top
      +
      + +
      +

      p

      +
      +
      $page
      +
      in file tcpdf.php, variable TCPDF::$page
      +
      $PageAnnots
      +
      in file tcpdf.php, variable TCPDF::$PageAnnots
      +
      $PageBreakTrigger
      +
      in file tcpdf.php, variable TCPDF::$PageBreakTrigger
      +
      $pagedim
      +
      in file tcpdf.php, variable TCPDF::$pagedim
      +
      $pagegroups
      +
      in file tcpdf.php, variable TCPDF::$pagegroups
          Contains the number of pages of the groups
      +
      $pagelen
      +
      in file tcpdf.php, variable TCPDF::$pagelen
          Array containing page lengths in bytes.
      +
      $PageMode
      +
      in file tcpdf.php, variable TCPDF::$PageMode
          A name object specifying how the document should be displayed when opened.
      +
      $pageopen
      +
      in file tcpdf.php, variable TCPDF::$pageopen
          Store the fage status (true when opened, false when closed).
      +
      $pages
      +
      in file tcpdf.php, variable TCPDF::$pages
      +
      $page_obj_id
      +
      in file tcpdf.php, variable TCPDF::$page_obj_id
          ID of page objects
      +
      $page_regions
      +
      in file tcpdf.php, variable TCPDF::$page_regions
      +
      $pdfunit
      +
      in file tcpdf.php, variable TCPDF::$pdfunit
      +
      $PDFVersion
      +
      in file tcpdf.php, variable TCPDF::$PDFVersion
      +
      $premode
      +
      in file tcpdf.php, variable TCPDF::$premode
      +
      $print_footer
      +
      in file tcpdf.php, variable TCPDF::$print_footer
      +
      $print_header
      +
      in file tcpdf.php, variable TCPDF::$print_header
      +
      PageNo
      +
      in file tcpdf.php, method TCPDF::PageNo()
          Returns the current page number.
      +
      PageNoFormatted
      +
      in file tcpdf.php, method TCPDF::PageNoFormatted()
          Returns the current page number formatted as a string.
      +
      PDF417
      +
      in file pdf417.php, class PDF417
          Class to create PDF417 barcode arrays for TCPDF class.
      +
      pdf417.php
      +
      procedural page pdf417.php
      +
      PDF417DEFS
      +
      in file pdf417.php, constant PDF417DEFS
          Indicate that definitions for this class are set
      +
      PDF_AUTHOR
      +
      in file tcpdf_config.php, constant PDF_AUTHOR
          document author
      +
      PDF_CREATOR
      +
      in file tcpdf_config.php, constant PDF_CREATOR
          document creator
      +
      PDF_FONT_MONOSPACED
      +
      in file tcpdf_config.php, constant PDF_FONT_MONOSPACED
          default monospaced font name
      +
      PDF_FONT_NAME_DATA
      +
      in file tcpdf_config.php, constant PDF_FONT_NAME_DATA
          default data font name
      +
      PDF_FONT_NAME_MAIN
      +
      in file tcpdf_config.php, constant PDF_FONT_NAME_MAIN
          default main font name
      +
      PDF_FONT_SIZE_DATA
      +
      in file tcpdf_config.php, constant PDF_FONT_SIZE_DATA
          default data font size
      +
      PDF_FONT_SIZE_MAIN
      +
      in file tcpdf_config.php, constant PDF_FONT_SIZE_MAIN
          default main font size
      +
      PDF_HEADER_LOGO
      +
      in file tcpdf_config.php, constant PDF_HEADER_LOGO
          image logo
      +
      PDF_HEADER_LOGO_WIDTH
      +
      in file tcpdf_config.php, constant PDF_HEADER_LOGO_WIDTH
          header logo image width [mm]
      +
      PDF_HEADER_STRING
      +
      in file tcpdf_config.php, constant PDF_HEADER_STRING
          header description string
      +
      PDF_HEADER_TITLE
      +
      in file tcpdf_config.php, constant PDF_HEADER_TITLE
          header title
      +
      PDF_IMAGE_SCALE_RATIO
      +
      in file tcpdf_config.php, constant PDF_IMAGE_SCALE_RATIO
          ratio used to adjust the conversion of pixels to user units
      +
      PDF_MARGIN_BOTTOM
      +
      in file tcpdf_config.php, constant PDF_MARGIN_BOTTOM
          bottom margin
      +
      PDF_MARGIN_FOOTER
      +
      in file tcpdf_config.php, constant PDF_MARGIN_FOOTER
          footer margin
      +
      PDF_MARGIN_HEADER
      +
      in file tcpdf_config.php, constant PDF_MARGIN_HEADER
          header margin
      +
      PDF_MARGIN_LEFT
      +
      in file tcpdf_config.php, constant PDF_MARGIN_LEFT
          left margin
      +
      PDF_MARGIN_RIGHT
      +
      in file tcpdf_config.php, constant PDF_MARGIN_RIGHT
          right margin
      +
      PDF_MARGIN_TOP
      +
      in file tcpdf_config.php, constant PDF_MARGIN_TOP
          top margin
      +
      PDF_PAGE_FORMAT
      +
      in file tcpdf_config.php, constant PDF_PAGE_FORMAT
          page format
      +
      PDF_PAGE_ORIENTATION
      +
      in file tcpdf_config.php, constant PDF_PAGE_ORIENTATION
          page orientation (P=portrait, L=landscape)
      +
      PDF_UNIT
      +
      in file tcpdf_config.php, constant PDF_UNIT
          document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]
      +
      PieSector
      +
      in file tcpdf.php, method TCPDF::PieSector()
          Draw the sector of a circle.
      +
      PieSectorXY
      +
      in file tcpdf.php, method TCPDF::PieSectorXY()
          Draw the sector of an ellipse.
      +
      pixelsToUnits
      +
      in file tcpdf.php, method TCPDF::pixelsToUnits()
          Converts pixels to User's Units.
      +
      Polycurve
      +
      in file tcpdf.php, method TCPDF::Polycurve()
          Draws a poly-Bezier curve.
      +
      Polygon
      +
      in file tcpdf.php, method TCPDF::Polygon()
          Draws a polygon.
      +
      PolyLine
      +
      in file tcpdf.php, method TCPDF::PolyLine()
          Draws a polygonal line
      +
      printTemplate
      +
      in file tcpdf.php, method TCPDF::printTemplate()
          Print an XObject Template.
      +
      putAlignmentMarker
      +
      in file qrcode.php, method QRcode::putAlignmentMarker()
          Put an alignment marker.
      +
      putAlignmentPattern
      +
      in file qrcode.php, method QRcode::putAlignmentPattern()
          Put an alignment pattern.
      +
      putFinderPattern
      +
      in file qrcode.php, method QRcode::putFinderPattern()
          Put a finder pattern.
      +
      putHtmlListBullet
      +
      in file tcpdf.php, method TCPDF::putHtmlListBullet()
          Output an HTML list bullet or ordered item symbol
      +
      +
      + top
      +
      + +
      +

      q

      +
      +
      QRCAP_EC
      +
      in file qrcode.php, constant QRCAP_EC
          Matrix index to get error correction level from $capacity array.
      +
      QRCAP_REMINDER
      +
      in file qrcode.php, constant QRCAP_REMINDER
          Matrix index to get remainder from $capacity array.
      +
      QRCAP_WIDTH
      +
      in file qrcode.php, constant QRCAP_WIDTH
          Matrix index to get width from $capacity array.
      +
      QRCAP_WORDS
      +
      in file qrcode.php, constant QRCAP_WORDS
          Matrix index to get number of words from $capacity array.
      +
      QRcode
      +
      in file qrcode.php, class QRcode
          Class to create QR-code arrays for TCPDF class.
      +
      qrcode.php
      +
      procedural page qrcode.php
      +
      QRCODEDEFS
      +
      in file qrcode.php, constant QRCODEDEFS
          Indicate that definitions for this class are set
      +
      QRSPEC_VERSION_MAX
      +
      in file qrcode.php, constant QRSPEC_VERSION_MAX
          Maximum QR Code version.
      +
      QRSPEC_WIDTH_MAX
      +
      in file qrcode.php, constant QRSPEC_WIDTH_MAX
          Maximum matrix size for maximum version (version 40 is 177*177 matrix).
      +
      qrstrset
      +
      in file qrcode.php, method QRcode::qrstrset()
          Replace a value on the array at the specified position
      +
      QR_DEFAULT_MASK
      +
      in file qrcode.php, constant QR_DEFAULT_MASK
          when QR_FIND_BEST_MASK === false
      +
      QR_ECLEVEL_H
      +
      in file qrcode.php, constant QR_ECLEVEL_H
          Error correction level H : About 30% or less errors can be corrected.
      +
      QR_ECLEVEL_L
      +
      in file qrcode.php, constant QR_ECLEVEL_L
          Error correction level L : About 7% or less errors can be corrected.
      +
      QR_ECLEVEL_M
      +
      in file qrcode.php, constant QR_ECLEVEL_M
          Error correction level M : About 15% or less errors can be corrected.
      +
      QR_ECLEVEL_Q
      +
      in file qrcode.php, constant QR_ECLEVEL_Q
          Error correction level Q : About 25% or less errors can be corrected.
      +
      QR_FIND_BEST_MASK
      +
      in file qrcode.php, constant QR_FIND_BEST_MASK
          if true, estimates best mask (spec. default, but extremally slow; set to false to significant performance boost but (propably) worst quality code
      +
      QR_FIND_FROM_RANDOM
      +
      in file qrcode.php, constant QR_FIND_FROM_RANDOM
          if false, checks all masks available, otherwise value tells count of masks need to be checked, mask id are got randomly
      +
      QR_MODE_8B
      +
      in file qrcode.php, constant QR_MODE_8B
          Encoding mode 8bit byte data. In theory, 2953 characters or less can be stored in a QRcode.
      +
      QR_MODE_AN
      +
      in file qrcode.php, constant QR_MODE_AN
          Encoding mode alphanumeric (0-9A-Z $%*+-./:) 45characters. 2 characters are encoded to 11bit length. In theory, 4296 characters or less can be stored in a QRcode.
      +
      QR_MODE_KJ
      +
      in file qrcode.php, constant QR_MODE_KJ
          Encoding mode KANJI. A KANJI character (multibyte character) is encoded to 13bit length. In theory, 1817 characters or less can be stored in a QRcode.
      +
      QR_MODE_NL
      +
      in file qrcode.php, constant QR_MODE_NL
          Encoding mode
      +
      QR_MODE_NM
      +
      in file qrcode.php, constant QR_MODE_NM
          Encoding mode numeric (0-9). 3 characters are encoded to 10bit length. In theory, 7089 characters or less can be stored in a QRcode.
      +
      QR_MODE_ST
      +
      in file qrcode.php, constant QR_MODE_ST
          Encoding mode STRUCTURED (currently unsupported)
      +
      QUIETH
      +
      in file pdf417.php, constant QUIETH
          Horizontal quiet zone in modules
      +
      QUIETV
      +
      in file pdf417.php, constant QUIETV
          Vertical quiet zone in modules
      +
      +
      + top
      +
      + +
      +

      r

      +
      +
      $radiobutton_groups
      +
      in file tcpdf.php, variable TCPDF::$radiobutton_groups
          List of radio buttons parent objects.
      +
      $radio_groups
      +
      in file tcpdf.php, variable TCPDF::$radio_groups
          List of radio group objects IDs
      +
      $rasterize_vector_images
      +
      in file tcpdf.php, variable TCPDF::$rasterize_vector_images
      +
      $re_space
      +
      in file tcpdf.php, variable TCPDF::$re_space
          Array of parts $re_spaces
      +
      $re_spaces
      +
      in file tcpdf.php, variable TCPDF::$re_spaces
          Regular expression used to find blank characters used for word-wrapping.
      +
      $rMargin
      +
      in file tcpdf.php, variable TCPDF::$rMargin
      +
      $rsblocks
      +
      in file qrcode.php, variable QRcode::$rsblocks
      +
      $rsfactors
      +
      in file pdf417.php, variable PDF417::$rsfactors
      +
      $rsitems
      +
      in file qrcode.php, variable QRcode::$rsitems
      +
      $rtl
      +
      in file tcpdf.php, variable TCPDF::$rtl
      +
      $runLength
      +
      in file qrcode.php, variable QRcode::$runLength
      +
      RadialGradient
      +
      in file tcpdf.php, method TCPDF::RadialGradient()
          Paints a radial colour gradient.
      +
      RadioButton
      +
      in file tcpdf.php, method TCPDF::RadioButton()
          Creates a RadioButton field
      +
      readDiskCache
      +
      in file tcpdf.php, method TCPDF::readDiskCache()
          Read data from a temporary file on filesystem.
      +
      Rect
      +
      in file tcpdf.php, method TCPDF::Rect()
          Draws a rectangle.
      +
      registrationMark
      +
      in file tcpdf.php, method TCPDF::registrationMark()
          Paints a registration mark
      +
      RegularPolygon
      +
      in file tcpdf.php, method TCPDF::RegularPolygon()
          Draws a regular polygon.
      +
      removePageRegion
      +
      in file tcpdf.php, method TCPDF::removePageRegion()
          Remove a single no-write region.
      +
      removeSHY
      +
      in file tcpdf.php, method TCPDF::removeSHY()
          Removes SHY characters from text.
      +
      replaceBuffer
      +
      in file tcpdf.php, method TCPDF::replaceBuffer()
          Replace the buffer content
      +
      resetLastH
      +
      in file tcpdf.php, method TCPDF::resetLastH()
          Reset the last cell height.
      +
      revstrpos
      +
      in file tcpdf.php, method TCPDF::revstrpos()
          Find position of last occurrence of a substring in a string
      +
      rfread
      +
      in file tcpdf.php, method TCPDF::rfread()
          Binary-safe and URL-safe file read.
      +
      rollbackTransaction
      +
      in file tcpdf.php, method TCPDF::rollbackTransaction()
          This method allows to undo the latest transaction by returning the latest saved TCPDF object with startTransaction().
      +
      Rotate
      +
      in file tcpdf.php, method TCPDF::Rotate()
          Rotate object.
      +
      RoundedRect
      +
      in file tcpdf.php, method TCPDF::RoundedRect()
          Draws a rounded rectangle.
      +
      RoundedRectXY
      +
      in file tcpdf.php, method TCPDF::RoundedRectXY()
          Draws a rounded rectangle.
      +
      ROWHEIGHT
      +
      in file pdf417.php, constant ROWHEIGHT
          Row height respect X dimension of single module
      +
      rsBlockNum
      +
      in file qrcode.php, method QRcode::rsBlockNum()
          Return block number 0
      +
      rsBlockNum1
      +
      in file qrcode.php, method QRcode::rsBlockNum1()
          Return block number 1
      +
      rsBlockNum2
      +
      in file qrcode.php, method QRcode::rsBlockNum2()
          Return block number 2
      +
      rsDataCodes1
      +
      in file qrcode.php, method QRcode::rsDataCodes1()
          Return data codes 1
      +
      rsDataCodes2
      +
      in file qrcode.php, method QRcode::rsDataCodes2()
          Return data codes 2
      +
      rsDataLength
      +
      in file qrcode.php, method QRcode::rsDataLength()
          Return data length
      +
      rsEccCodes1
      +
      in file qrcode.php, method QRcode::rsEccCodes1()
          Return ecc codes 1
      +
      rsEccCodes2
      +
      in file qrcode.php, method QRcode::rsEccCodes2()
          Return ecc codes 2
      +
      rsEccLength
      +
      in file qrcode.php, method QRcode::rsEccLength()
          Return ecc length
      +
      +
      + top
      +
      + +
      +

      s

      +
      +
      $sign
      +
      in file tcpdf.php, variable TCPDF::$sign
          If true enables document signing
      +
      $signature_appearance
      +
      in file tcpdf.php, variable TCPDF::$signature_appearance
          data for signature appearance
      +
      $signature_data
      +
      in file tcpdf.php, variable TCPDF::$signature_data
          Signature data
      +
      $signature_max_length
      +
      in file tcpdf.php, variable TCPDF::$signature_max_length
          Signature max length
      +
      $sig_annot_ref
      +
      in file tcpdf.php, variable TCPDF::$sig_annot_ref
          Placemark used during signature process.
      +
      $sig_obj_id
      +
      in file tcpdf.php, variable TCPDF::$sig_obj_id
          Signature object ID
      +
      $spotcolor
      +
      in file tcpdf.php, variable TCPDF::$spotcolor
      +
      $spot_colors
      +
      in file tcpdf.php, variable TCPDF::$spot_colors
          Array of Spot colors
      +
      $start_pattern
      +
      in file pdf417.php, variable PDF417::$start_pattern
      +
      $start_transaction_page
      +
      in file tcpdf.php, variable TCPDF::$start_transaction_page
          Store page number when startTransaction() is called.
      +
      $start_transaction_y
      +
      in file tcpdf.php, variable TCPDF::$start_transaction_y
          Store Y position when startTransaction() is called.
      +
      $state
      +
      in file tcpdf.php, variable TCPDF::$state
      +
      $stop_pattern
      +
      in file pdf417.php, variable PDF417::$stop_pattern
      +
      $strokecolor
      +
      in file tcpdf.php, variable TCPDF::$strokecolor
      +
      $structured
      +
      in file qrcode.php, variable QRcode::$structured
      +
      $subject
      +
      in file tcpdf.php, variable TCPDF::$subject
      +
      $svgclipid
      +
      in file tcpdf.php, variable TCPDF::$svgclipid
      +
      $svgclipmode
      +
      in file tcpdf.php, variable TCPDF::$svgclipmode
      +
      $svgclippaths
      +
      in file tcpdf.php, variable TCPDF::$svgclippaths
      +
      $svgcliptm
      +
      in file tcpdf.php, variable TCPDF::$svgcliptm
      +
      $svgdefs
      +
      in file tcpdf.php, variable TCPDF::$svgdefs
      +
      $svgdefsmode
      +
      in file tcpdf.php, variable TCPDF::$svgdefsmode
      +
      $svgdir
      +
      in file tcpdf.php, variable TCPDF::$svgdir
      +
      $svggradientid
      +
      in file tcpdf.php, variable TCPDF::$svggradientid
      +
      $svggradients
      +
      in file tcpdf.php, variable TCPDF::$svggradients
      +
      $svginheritprop
      +
      in file tcpdf.php, variable TCPDF::$svginheritprop
      +
      $svgstyles
      +
      in file tcpdf.php, variable TCPDF::$svgstyles
      +
      $svgtext
      +
      in file tcpdf.php, variable TCPDF::$svgtext
      +
      $svgtextmode
      +
      in file tcpdf.php, variable TCPDF::$svgtextmode
      +
      $svgunit
      +
      in file tcpdf.php, variable TCPDF::$svgunit
      +
      Scale
      +
      in file tcpdf.php, method TCPDF::Scale()
          Vertical and horizontal non-proportional Scaling.
      +
      ScaleX
      +
      in file tcpdf.php, method TCPDF::ScaleX()
          Horizontal Scaling.
      +
      ScaleXY
      +
      in file tcpdf.php, method TCPDF::ScaleXY()
          Vertical and horizontal proportional Scaling.
      +
      ScaleY
      +
      in file tcpdf.php, method TCPDF::ScaleY()
          Vertical Scaling.
      +
      segSVGContentHandler
      +
      in file tcpdf.php, method TCPDF::segSVGContentHandler()
          Sets the character data handler function for the XML parser.
      +
      selectColumn
      +
      in file tcpdf.php, method TCPDF::selectColumn()
          Set position at a given column
      +
      serializeTCPDFtagParameters
      +
      in file tcpdf.php, method TCPDF::serializeTCPDFtagParameters()
          Serialize an array of parameters to be used with TCPDF tag in HTML code.
      +
      setAlpha
      +
      in file tcpdf.php, method TCPDF::setAlpha()
          Set alpha for stroking (CA) and non-stroking (ca) operations.
      +
      SetAuthor
      +
      in file tcpdf.php, method TCPDF::SetAuthor()
          Defines the author of the document.
      +
      SetAutoPageBreak
      +
      in file tcpdf.php, method TCPDF::SetAutoPageBreak()
          Enables or disables the automatic page breaking mode. When enabling, the second parameter is the distance from the bottom of the page that defines the triggering limit. By default, the mode is on and the margin is 2 cm.
      +
      setBarcode
      +
      in file 2dbarcodes.php, method TCPDF2DBarcode::setBarcode()
          Set the barcode.
      +
      setBarcode
      +
      in file barcodes.php, method TCPDFBarcode::setBarcode()
          Set the barcode.
      +
      setBarcode
      +
      in file tcpdf.php, method TCPDF::setBarcode()
          Set document barcode.
      +
      SetBooklet
      +
      in file tcpdf.php, method TCPDF::SetBooklet()
          Set the booklet mode for double-sided pages.
      +
      setBuffer
      +
      in file tcpdf.php, method TCPDF::setBuffer()
          Set buffer content (always append data).
      +
      setCellHeightRatio
      +
      in file tcpdf.php, method TCPDF::setCellHeightRatio()
          Set the height of the cell (line height) respect the font height.
      +
      setCellMargins
      +
      in file tcpdf.php, method TCPDF::setCellMargins()
          Set the internal Cell margins.
      +
      SetCellPadding
      +
      in file tcpdf.php, method TCPDF::SetCellPadding()
          Set the same internal Cell padding for top, right, bottom, left-
      +
      setCellPaddings
      +
      in file tcpdf.php, method TCPDF::setCellPaddings()
          Set the internal Cell paddings.
      +
      setColumnsArray
      +
      in file tcpdf.php, method TCPDF::setColumnsArray()
          Set columns array.
      +
      SetCompression
      +
      in file tcpdf.php, method TCPDF::SetCompression()
          Activates or deactivates page compression. When activated, the internal representation of each page is compressed, which leads to a compression ratio of about 2 for the resulting document. Compression is on by default.
      +
      setContentMark
      +
      in file tcpdf.php, method TCPDF::setContentMark()
          Set start-writing mark on selected page.
      +
      SetCreator
      +
      in file tcpdf.php, method TCPDF::SetCreator()
          Defines the creator of the document. This is typically the name of the application that generates the PDF.
      +
      SetDefaultMonospacedFont
      +
      in file tcpdf.php, method TCPDF::SetDefaultMonospacedFont()
          Defines the default monospaced font.
      +
      setDefaultTableColumns
      +
      in file tcpdf.php, method TCPDF::setDefaultTableColumns()
          Set the default number of columns in a row for HTML tables.
      +
      SetDisplayMode
      +
      in file tcpdf.php, method TCPDF::SetDisplayMode()
          Defines the way the document is to be displayed by the viewer.
      +
      SetDrawColor
      +
      in file tcpdf.php, method TCPDF::SetDrawColor()
          Defines the color used for all drawing operations (lines, rectangles and cell borders). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
      +
      SetDrawColorArray
      +
      in file tcpdf.php, method TCPDF::SetDrawColorArray()
          Defines the color used for all drawing operations (lines, rectangles and cell borders).
      +
      SetDrawSpotColor
      +
      in file tcpdf.php, method TCPDF::SetDrawSpotColor()
          Defines the spot color used for all drawing operations (lines, rectangles and cell borders).
      +
      setEqualColumns
      +
      in file tcpdf.php, method TCPDF::setEqualColumns()
          Set multiple columns of the same size
      +
      setExtGState
      +
      in file tcpdf.php, method TCPDF::setExtGState()
          Add an extgstate
      +
      SetFillColor
      +
      in file tcpdf.php, method TCPDF::SetFillColor()
          Defines the color used for all filling operations (filled rectangles and cell backgrounds). It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
      +
      SetFillColorArray
      +
      in file tcpdf.php, method TCPDF::SetFillColorArray()
          Defines the color used for all filling operations (filled rectangles and cell backgrounds).
      +
      SetFillSpotColor
      +
      in file tcpdf.php, method TCPDF::SetFillSpotColor()
          Defines the spot color used for all filling operations (filled rectangles and cell backgrounds).
      +
      SetFont
      +
      in file tcpdf.php, method TCPDF::SetFont()
          Sets the font used to print character strings.
      +
      setFontBuffer
      +
      in file tcpdf.php, method TCPDF::setFontBuffer()
          Set font buffer content.
      +
      SetFontSize
      +
      in file tcpdf.php, method TCPDF::SetFontSize()
          Defines the size of the current font.
      +
      setFontSpacing
      +
      in file tcpdf.php, method TCPDF::setFontSpacing()
          Set the amount to increase or decrease the space between characters in a text.
      +
      setFontStretching
      +
      in file tcpdf.php, method TCPDF::setFontStretching()
          Set the percentage of character stretching.
      +
      setFontSubBuffer
      +
      in file tcpdf.php, method TCPDF::setFontSubBuffer()
          Set font buffer content.
      +
      setFontSubsetting
      +
      in file tcpdf.php, method TCPDF::setFontSubsetting()
          Enable or disable default option for font subsetting.
      +
      setFooter
      +
      in file tcpdf.php, method TCPDF::setFooter()
          This method is used to render the page footer.
      +
      setFooterFont
      +
      in file tcpdf.php, method TCPDF::setFooterFont()
          Set footer font.
      +
      setFooterMargin
      +
      in file tcpdf.php, method TCPDF::setFooterMargin()
          Set footer margin.
      +
      setFormDefaultProp
      +
      in file tcpdf.php, method TCPDF::setFormDefaultProp()
          Set default properties for form fields.
      +
      setFrameAt
      +
      in file qrcode.php, method QRcode::setFrameAt()
          Set frame value at specified position
      +
      setGraphicVars
      +
      in file tcpdf.php, method TCPDF::setGraphicVars()
          Set graphic variables.
      +
      setHeader
      +
      in file tcpdf.php, method TCPDF::setHeader()
          This method is used to render the page header.
      +
      setHeaderData
      +
      in file tcpdf.php, method TCPDF::setHeaderData()
          Set header data.
      +
      setHeaderFont
      +
      in file tcpdf.php, method TCPDF::setHeaderFont()
          Set header font.
      +
      setHeaderMargin
      +
      in file tcpdf.php, method TCPDF::setHeaderMargin()
          Set header margin.
      +
      setHtmlLinksStyle
      +
      in file tcpdf.php, method TCPDF::setHtmlLinksStyle()
          Set the color and font style for HTML links.
      +
      setHtmlVSpace
      +
      in file tcpdf.php, method TCPDF::setHtmlVSpace()
          Set the vertical spaces for HTML tags.
      +
      setImageBuffer
      +
      in file tcpdf.php, method TCPDF::setImageBuffer()
          Set image buffer content.
      +
      setImageScale
      +
      in file tcpdf.php, method TCPDF::setImageScale()
          Set the adjusting factor to convert pixels to user units.
      +
      setImageSubBuffer
      +
      in file tcpdf.php, method TCPDF::setImageSubBuffer()
          Set image buffer content for a specified sub-key.
      +
      setJPEGQuality
      +
      in file tcpdf.php, method TCPDF::setJPEGQuality()
          Set the default JPEG compression quality (1-100)
      +
      SetKeywords
      +
      in file tcpdf.php, method TCPDF::SetKeywords()
          Associates keywords with the document, generally in the form 'keyword1 keyword2 ...'.
      +
      setLanguageArray
      +
      in file tcpdf.php, method TCPDF::setLanguageArray()
          Set language array.
      +
      setLastH
      +
      in file tcpdf.php, method TCPDF::setLastH()
          Set the last cell height.
      +
      SetLeftMargin
      +
      in file tcpdf.php, method TCPDF::SetLeftMargin()
          Defines the left margin. The method can be called before creating the first page. If the current abscissa gets out of page, it is brought back to the margin.
      +
      SetLineStyle
      +
      in file tcpdf.php, method TCPDF::SetLineStyle()
          Set line style.
      +
      SetLineWidth
      +
      in file tcpdf.php, method TCPDF::SetLineWidth()
          Defines the line width. By default, the value equals 0.2 mm. The method can be called before the first page is created and the value is retained from page to page.
      +
      SetLink
      +
      in file tcpdf.php, method TCPDF::SetLink()
          Defines the page and position a link points to.
      +
      setListIndentWidth
      +
      in file tcpdf.php, method TCPDF::setListIndentWidth()
          Set custom width for list indentation.
      +
      setLIsymbol
      +
      in file tcpdf.php, method TCPDF::setLIsymbol()
          Set the default bullet to be used as LI bullet symbol
      +
      SetMargins
      +
      in file tcpdf.php, method TCPDF::SetMargins()
          Defines the left, top and right margins.
      +
      setOpenCell
      +
      in file tcpdf.php, method TCPDF::setOpenCell()
          Set the top/bottom cell sides to be open or closed when the cell cross the page.
      +
      setPage
      +
      in file tcpdf.php, method TCPDF::setPage()
          Move pointer at the specified document page and update page dimensions.
      +
      setPageBoxes
      +
      in file tcpdf.php, method TCPDF::setPageBoxes()
          Set page boundaries.
      +
      setPageBuffer
      +
      in file tcpdf.php, method TCPDF::setPageBuffer()
          Set page buffer content.
      +
      setPageFormat
      +
      in file tcpdf.php, method TCPDF::setPageFormat()
          Change the format of the current page
      +
      setPageMark
      +
      in file tcpdf.php, method TCPDF::setPageMark()
          Set start-writing mark on current page stream used to put borders and fills.
      +
      setPageOrientation
      +
      in file tcpdf.php, method TCPDF::setPageOrientation()
          Set page orientation.
      +
      setPageRegions
      +
      in file tcpdf.php, method TCPDF::setPageRegions()
          Set no-write regions on page.
      +
      setPageUnit
      +
      in file tcpdf.php, method TCPDF::setPageUnit()
          Set the units of measure for the document.
      +
      setPDFVersion
      +
      in file tcpdf.php, method TCPDF::setPDFVersion()
          Set the PDF version (check PDF reference for valid values).
      +
      setPrintFooter
      +
      in file tcpdf.php, method TCPDF::setPrintFooter()
          Set a flag to print page footer.
      +
      setPrintHeader
      +
      in file tcpdf.php, method TCPDF::setPrintHeader()
          Set a flag to print page header.
      +
      SetProtection
      +
      in file tcpdf.php, method TCPDF::SetProtection()
          Set document protection Remark: the protection against modification is for people who have the full Acrobat product.
      +
      setRasterizeVectorImages
      +
      in file tcpdf.php, method TCPDF::setRasterizeVectorImages()
          Enable/disable rasterization of vector images using ImageMagick library.
      +
      SetRightMargin
      +
      in file tcpdf.php, method TCPDF::SetRightMargin()
          Defines the right margin. The method can be called before creating the first page.
      +
      setRTL
      +
      in file tcpdf.php, method TCPDF::setRTL()
          Enable or disable Right-To-Left language mode
      +
      setSignature
      +
      in file tcpdf.php, method TCPDF::setSignature()
          Enable document signature (requires the OpenSSL Library).
      +
      setSignatureAppearance
      +
      in file tcpdf.php, method TCPDF::setSignatureAppearance()
          Set the digital signature appearance (a cliccable rectangle area to get signature properties)
      +
      setSpacesRE
      +
      in file tcpdf.php, method TCPDF::setSpacesRE()
          Set regular expression to detect withespaces or word separators.
      +
      SetSubject
      +
      in file tcpdf.php, method TCPDF::SetSubject()
          Defines the subject of the document.
      +
      setSVGStyles
      +
      in file tcpdf.php, method TCPDF::setSVGStyles()
          Apply the requested SVG styles (*** TO BE COMPLETED ***)
      +
      setTableHeader
      +
      in file tcpdf.php, method TCPDF::setTableHeader()
          This method is used to render the table header on new page (if any).
      +
      setTempRTL
      +
      in file tcpdf.php, method TCPDF::setTempRTL()
          Force temporary RTL language direction
      +
      SetTextColor
      +
      in file tcpdf.php, method TCPDF::SetTextColor()
          Defines the color used for text. It can be expressed in RGB components or gray scale. The method can be called before the first page is created and the value is retained from page to page.
      +
      SetTextColorArray
      +
      in file tcpdf.php, method TCPDF::SetTextColorArray()
          Defines the color used for text. It can be expressed in RGB components or gray scale.
      +
      setTextRenderingMode
      +
      in file tcpdf.php, method TCPDF::setTextRenderingMode()
          Set Text rendering mode.
      +
      SetTextSpotColor
      +
      in file tcpdf.php, method TCPDF::SetTextSpotColor()
          Defines the spot color used for text.
      +
      SetTitle
      +
      in file tcpdf.php, method TCPDF::SetTitle()
          Defines the title of the document.
      +
      SetTopMargin
      +
      in file tcpdf.php, method TCPDF::SetTopMargin()
          Defines the top margin. The method can be called before creating the first page.
      +
      setUserRights
      +
      in file tcpdf.php, method TCPDF::setUserRights()
          Set User's Rights for PDF Reader WARNING: This is experimental and currently do not work.
      +
      setViewerPreferences
      +
      in file tcpdf.php, method TCPDF::setViewerPreferences()
          Set the viewer preferences dictionary controlling the way the document is to be presented on the screen or in print.
      +
      setVisibility
      +
      in file tcpdf.php, method TCPDF::setVisibility()
          Set the visibility of the successive elements.
      +
      SetX
      +
      in file tcpdf.php, method TCPDF::SetX()
          Defines the abscissa of the current position.
      +
      SetXY
      +
      in file tcpdf.php, method TCPDF::SetXY()
          Defines the abscissa and ordinate of the current position.
      +
      SetY
      +
      in file tcpdf.php, method TCPDF::SetY()
          Moves the current abscissa back to the left margin and sets the ordinate.
      +
      set_mqr
      +
      in file tcpdf.php, method TCPDF::set_mqr()
          Sets the current active configuration setting of magic_quotes_runtime (if the set_magic_quotes_runtime function exist)
      +
      Skew
      +
      in file tcpdf.php, method TCPDF::Skew()
          Skew.
      +
      SkewX
      +
      in file tcpdf.php, method TCPDF::SkewX()
          Skew horizontally.
      +
      SkewY
      +
      in file tcpdf.php, method TCPDF::SkewY()
          Skew vertically.
      +
      splitString
      +
      in file qrcode.php, method QRcode::splitString()
          splitString
      +
      StarPolygon
      +
      in file tcpdf.php, method TCPDF::StarPolygon()
          Draws a star polygon
      +
      startPage
      +
      in file tcpdf.php, method TCPDF::startPage()
          Starts a new page to the document. The page must be closed using the endPage() function.
      +
      startPageGroup
      +
      in file tcpdf.php, method TCPDF::startPageGroup()
          Create a new page group.
      +
      startSVGElementHandler
      +
      in file tcpdf.php, method TCPDF::startSVGElementHandler()
          Sets the opening SVG element handler function for the XML parser. (*** TO BE COMPLETED ***)
      +
      startTemplate
      +
      in file tcpdf.php, method TCPDF::startTemplate()
          Start a new XObject Template.
      +
      startTransaction
      +
      in file tcpdf.php, method TCPDF::startTransaction()
          Stores a copy of the current TCPDF object used for undo operation.
      +
      StartTransform
      +
      in file tcpdf.php, method TCPDF::StartTransform()
          Starts a 2D tranformation saving current graphic state.
      +
      StopTransform
      +
      in file tcpdf.php, method TCPDF::StopTransform()
          Stops a 2D tranformation restoring previous graphic state.
      +
      stringLeftTrim
      +
      in file tcpdf.php, method TCPDF::stringLeftTrim()
          Left trim the input string
      +
      stringRightTrim
      +
      in file tcpdf.php, method TCPDF::stringRightTrim()
          Right trim the input string
      +
      stringTrim
      +
      in file tcpdf.php, method TCPDF::stringTrim()
          Trim the input string
      +
      STRUCTURE_HEADER_BITS
      +
      in file qrcode.php, constant STRUCTURE_HEADER_BITS
          Number of header bits for structured mode
      +
      str_split
      +
      in file qrcode.php, function str_split()
          Convert a string to an array (needed for PHP4 compatibility)
      +
      SVGPath
      +
      in file tcpdf.php, method TCPDF::SVGPath()
          Draws an SVG path
      +
      SVGTransform
      +
      in file tcpdf.php, method TCPDF::SVGTransform()
          Apply SVG graphic transformation matrix.
      +
      swapMargins
      +
      in file tcpdf.php, method TCPDF::swapMargins()
          Swap the left and right margins.
      +
      swapPageBoxCoordinates
      +
      in file tcpdf.php, method TCPDF::swapPageBoxCoordinates()
          Swap X and Y coordinates of page boxes (change page boxes orientation).
      +
      +
      + top
      +
      + +
      +

      t

      +
      +
      $tagvspaces
      +
      in file tcpdf.php, variable TCPDF::$tagvspaces
          Array used for custom vertical spaces for HTML tags
      +
      $tcpdf_version
      +
      in file tcpdf.php, variable TCPDF::$tcpdf_version
      +
      $tempfontsize
      +
      in file tcpdf.php, variable TCPDF::$tempfontsize
      +
      $TextColor
      +
      in file tcpdf.php, variable TCPDF::$TextColor
      +
      $textindent
      +
      in file tcpdf.php, variable TCPDF::$textindent
          Text indentation value (used for text-indent CSS attribute)
      +
      $textlatch
      +
      in file pdf417.php, variable PDF417::$textlatch
      +
      $textrendermode
      +
      in file tcpdf.php, variable TCPDF::$textrendermode
          Text rendering mode: 0 = Fill text; 1 = Stroke text; 2 = Fill, then stroke text; 3 = Neither fill nor stroke text (invisible); 4 = Fill text and add to path for clipping; 5 = Stroke text and add to path for clipping; 6 = Fill, then stroke text and add to path for clipping; 7 = Add text to path for clipping.
      +
      $textstrokewidth
      +
      in file tcpdf.php, variable TCPDF::$textstrokewidth
          Text stroke width in doc units
      +
      $textsubmodes
      +
      in file pdf417.php, variable PDF417::$textsubmodes
      +
      $thead
      +
      in file tcpdf.php, variable TCPDF::$thead
          Table header content to be repeated on each new page
      +
      $theadMargins
      +
      in file tcpdf.php, variable TCPDF::$theadMargins
          Margins used for table header.
      +
      $title
      +
      in file tcpdf.php, variable TCPDF::$title
      +
      $tMargin
      +
      in file tcpdf.php, variable TCPDF::$tMargin
      +
      $tmprtl
      +
      in file tcpdf.php, variable TCPDF::$tmprtl
      +
      $tocpage
      +
      in file tcpdf.php, variable TCPDF::$tocpage
      +
      $transfmatrix
      +
      in file tcpdf.php, variable TCPDF::$transfmatrix
          Array of transformation matrix
      +
      $transfmatrix_key
      +
      in file tcpdf.php, variable TCPDF::$transfmatrix_key
          Current key for transformation matrix
      +
      $transfmrk
      +
      in file tcpdf.php, variable TCPDF::$transfmrk
          Array used to store positions of graphics transformation blocks inside the page buffer.
      +
      tcpdf_config.php
      +
      procedural page tcpdf_config.php
      +
      TCPDF
      +
      in file tcpdf.php, class TCPDF
          This is a PHP class for generating PDF documents without requiring external extensions.
      +
      tcpdf.php
      +
      procedural page tcpdf.php
      +
      TCPDF2DBarcode
      +
      in file 2dbarcodes.php, class TCPDF2DBarcode
          PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).
      +
      TCPDFBarcode
      +
      in file barcodes.php, class TCPDFBarcode
          PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).
      +
      TCPDF_UNICODE_DATA
      +
      in file unicode_data.php, class TCPDF_UNICODE_DATA
          This is a PHP class containing Unicde data for TCPDF library
      +
      Text
      +
      in file tcpdf.php, method TCPDF::Text()
          Prints a text cell at the specified position.
      +
      TextField
      +
      in file tcpdf.php, method TCPDF::TextField()
          Creates a text field
      +
      toUpper
      +
      in file qrcode.php, method QRcode::toUpper()
          toUpper
      +
      Transform
      +
      in file tcpdf.php, method TCPDF::Transform()
          Apply graphic transformations.
      +
      Translate
      +
      in file tcpdf.php, method TCPDF::Translate()
          Translate graphic object horizontally and vertically.
      +
      TranslateX
      +
      in file tcpdf.php, method TCPDF::TranslateX()
          Translate graphic object horizontally.
      +
      TranslateY
      +
      in file tcpdf.php, method TCPDF::TranslateY()
          Translate graphic object vertically.
      +
      +
      + top
      +
      + +
      +

      u

      +
      +
      $underline
      +
      in file tcpdf.php, variable TCPDF::$underline
      +
      $unicode
      +
      in file tcpdf.php, variable TCPDF::$unicode
      +
      $uni_arabicsubst
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_arabicsubst
      +
      $uni_diacritics
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_diacritics
      +
      $uni_laa_array
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_laa_array
      +
      $uni_LRE
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_LRE
      +
      $uni_LRM
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_LRM
      +
      $uni_LRO
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_LRO
      +
      $uni_mirror
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_mirror
      +
      $uni_PDF
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_PDF
      +
      $uni_RE_PATTERN_ARABIC
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_RE_PATTERN_ARABIC
      +
      $uni_RE_PATTERN_RTL
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_RE_PATTERN_RTL
      +
      $uni_RLE
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_RLE
      +
      $uni_RLM
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_RLM
      +
      $uni_RLO
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_RLO
      +
      $uni_type
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_type
      +
      $uni_utf8tolatin
      +
      in file unicode_data.php, variable TCPDF_UNICODE_DATA::$uni_utf8tolatin
      +
      $ur
      +
      in file tcpdf.php, variable TCPDF::$ur
          Array with additional document-wide usage rights for the document.
      +
      unhtmlentities
      +
      in file tcpdf.php, method TCPDF::unhtmlentities()
          Reverse function for htmlentities.
      +
      UniArrSubString
      +
      in file tcpdf.php, method TCPDF::UniArrSubString()
          Extract a slice of the $uniarr array and return it as string.
      +
      unichr
      +
      in file tcpdf.php, method TCPDF::unichr()
          Returns the unicode caracter specified by UTF-8 value
      +
      unicode_data.php
      +
      procedural page unicode_data.php
      +
      UTF8ArrayToUniArray
      +
      in file tcpdf.php, method TCPDF::UTF8ArrayToUniArray()
          Convert an array of UTF8 values to array of unicode characters
      +
      UTF8ArrSubString
      +
      in file tcpdf.php, method TCPDF::UTF8ArrSubString()
          Extract a slice of the $strarr array and return it as string.
      +
      UTF8ArrToLatin1
      +
      in file tcpdf.php, method TCPDF::UTF8ArrToLatin1()
          Converts UTF-8 characters array to array of Latin1 characters
      +
      utf8Bidi
      +
      in file tcpdf.php, method TCPDF::utf8Bidi()
          Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
      +
      utf8StrArrRev
      +
      in file tcpdf.php, method TCPDF::utf8StrArrRev()
          Reverse the RLT substrings array using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
      +
      UTF8StringToArray
      +
      in file tcpdf.php, method TCPDF::UTF8StringToArray()
          Converts UTF-8 strings to codepoints array.
      +
      utf8StrRev
      +
      in file tcpdf.php, method TCPDF::utf8StrRev()
          Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
      +
      UTF8ToLatin1
      +
      in file tcpdf.php, method TCPDF::UTF8ToLatin1()
          Converts UTF-8 strings to Latin1 when using the standard 14 core fonts.
      +
      UTF8ToUTF16BE
      +
      in file tcpdf.php, method TCPDF::UTF8ToUTF16BE()
          Converts UTF-8 strings to UTF16-BE.
      +
      +
      + top
      +
      + +
      +

      v

      +
      +
      $version
      +
      in file qrcode.php, variable QRcode::$version
      +
      $versionPattern
      +
      in file qrcode.php, variable QRcode::$versionPattern
      +
      $viewer_preferences
      +
      in file tcpdf.php, variable TCPDF::$viewer_preferences
          PDF viewer preferences.
      +
      $visibility
      +
      in file tcpdf.php, variable TCPDF::$visibility
          Restrict the rendering of some elements to screen or printout.
      +
      +
      + top
      +
      + +
      +

      w

      +
      +
      $w
      +
      in file tcpdf.php, variable TCPDF::$w
      +
      $webcolor
      +
      in file tcpdf.php, variable TCPDF::$webcolor
      +
      $width
      +
      in file qrcode.php, variable QRcode::$width
      +
      $wPt
      +
      in file tcpdf.php, variable TCPDF::$wPt
      +
      Write
      +
      in file tcpdf.php, method TCPDF::Write()
          This method prints text from the current position.
      +
      write1DBarcode
      +
      in file tcpdf.php, method TCPDF::write1DBarcode()
          Print a Linear Barcode.
      +
      write2DBarcode
      +
      in file tcpdf.php, method TCPDF::write2DBarcode()
          Print 2D Barcode.
      +
      writeBarcode
      +
      in file tcpdf.php, method TCPDF::writeBarcode()
          This function is DEPRECATED, please use the new write1DBarcode() function.
      +
      writeDiskCache
      +
      in file tcpdf.php, method TCPDF::writeDiskCache()
          Writes data to a temporary file on filesystem.
      +
      writeFormatInformation
      +
      in file qrcode.php, method QRcode::writeFormatInformation()
          Write Format Information on frame and returns the number of black bits
      +
      writeHTML
      +
      in file tcpdf.php, method TCPDF::writeHTML()
          Allows to preserve some HTML formatting (limited support).
      IMPORTANT: The HTML must be well formatted - try to clean-up it using an application like HTML-Tidy before submitting.
      +
      writeHTMLCell
      +
      in file tcpdf.php, method TCPDF::writeHTMLCell()
          Prints a cell (rectangular area) with optional borders, background color and html text string.
      +
      +
      + top
      +
      + +
      +

      x

      +
      +
      $x
      +
      in file qrcode.php, variable QRcode::$x
      +
      $x
      +
      in file tcpdf.php, variable TCPDF::$x
      +
      $xobjects
      +
      in file tcpdf.php, variable TCPDF::$xobjects
      +
      $xobjid
      +
      in file tcpdf.php, variable TCPDF::$xobjid
      +
      +
      + top
      +
      + +
      +

      y

      +
      +
      $y
      +
      in file tcpdf.php, variable TCPDF::$y
      +
      $y
      +
      in file qrcode.php, variable QRcode::$y
      +
      +
      + top
      +
      + +
      +

      z

      +
      +
      $ZoomMode
      +
      in file tcpdf.php, variable TCPDF::$ZoomMode
      +
      +
      + top
      +
      + +
      +

      2

      +
      +
      2dbarcodes.php
      +
      procedural page 2dbarcodes.php
      +
      +
      + top
      +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:16 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/errors.html b/htdocs/includes/tcpdf/doc/errors.html new file mode 100644 index 00000000000..0ff8f313aa1 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/errors.html @@ -0,0 +1,46 @@ + + +phpDocumentor Parser Errors and Warnings + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +Post-parsing
      +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:23 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/index.html b/htdocs/includes/tcpdf/doc/index.html new file mode 100644 index 00000000000..138e6198a34 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/index.html @@ -0,0 +1,79 @@ + + +TCPDF Documentation + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      TCPDF Documentation

      +Welcome to com-tecnick-tcpdf!
      +
      +This documentation was generated by phpDocumentor v1.4.3
      +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:16 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/li_com-tecnick-tcpdf.html b/htdocs/includes/tcpdf/doc/li_com-tecnick-tcpdf.html new file mode 100644 index 00000000000..138e6198a34 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/li_com-tecnick-tcpdf.html @@ -0,0 +1,79 @@ + + +TCPDF Documentation + + + + + + + + + + + + + +
      com-tecnick-tcpdf
      + + + [ class tree: com-tecnick-tcpdf ] + [ index: com-tecnick-tcpdf ] + [ all elements ] +
      + + + + + + +
      +
      + +

      TCPDF Documentation

      +Welcome to com-tecnick-tcpdf!
      +
      +This documentation was generated by phpDocumentor v1.4.3
      +
      +
      + Documentation generated on Thu, 25 Nov 2010 09:23:16 +0100 by phpDocumentor 1.4.3 +
      +
      +
      + + + \ No newline at end of file diff --git a/htdocs/includes/tcpdf/doc/media/background.png b/htdocs/includes/tcpdf/doc/media/background.png new file mode 100644 index 00000000000..d6f36f6068d Binary files /dev/null and b/htdocs/includes/tcpdf/doc/media/background.png differ diff --git a/htdocs/includes/tcpdf/doc/media/empty.png b/htdocs/includes/tcpdf/doc/media/empty.png new file mode 100644 index 00000000000..a9f29bb161a Binary files /dev/null and b/htdocs/includes/tcpdf/doc/media/empty.png differ diff --git a/htdocs/includes/tcpdf/doc/media/style.css b/htdocs/includes/tcpdf/doc/media/style.css new file mode 100644 index 00000000000..bc65d896de9 --- /dev/null +++ b/htdocs/includes/tcpdf/doc/media/style.css @@ -0,0 +1,195 @@ +.php { + padding: 1em; +} +.php-src { font-family: 'Courier New', Courier, monospace; font-weight: normal; } + +body +{ + color: #000000; + background-color: #ffffff; + background-image: url("background.png"); + background-repeat: repeat-y; + font-family: tahoma, verdana, arial, sans-serif; + font-size: 10pt; + margin: 0; + padding: 0; +} + +a +{ + color: #000099; + background-color: transparent; + text-decoration: none; +} + +a:hover +{ + text-decoration: underline; +} + +a.menu +{ + color: #ffffff; + background-color: transparent; +} + +td +{ + font-size: 10pt; +} + +td.header_top +{ + color: #ffffff; + background-color: #9999cc; + font-size: 16pt; + font-weight: bold; + text-align: right; + padding: 10px; +} + +td.header_line +{ + color: #ffffff; + background-color: #333366; +} + +td.header_menu +{ + color: #ffffff; + background-color: #666699; + font-size: 8pt; + text-align: right; + padding: 2px; + padding-right: 5px; +} + +td.menu +{ + padding: 2px; + padding-left: 5px; +} + +td.code_border +{ + color: #000000; + background-color: #c0c0c0; +} + +td.code +{ + color: #000000; + background-color: #f0f0f0; +} + +td.type +{ + font-style: italic; +} + +div.credit +{ + font-size: 8pt; + text-align: center; +} + +div.package +{ + padding-left: 5px; +} + +div.tags +{ + padding-left: 15px; +} + +div.function +{ + padding-left: 15px; +} + +div.top +{ + font-size: 8pt; +} + +div.warning +{ + color: #ff0000; + background-color: transparent; +} + +div.description +{ + padding-left: 15px; +} + +hr +{ + height: 1px; + border-style: solid; + border-color: #c0c0c0; + margin-top: 10px; + margin-bottom: 10px; +} + +span.smalllinenumber +{ + font-size: 8pt; +} + +ul { + margin-left: 0px; + padding-left: 8px; +} +/* Syntax highlighting */ + +.src-code { background-color: #f5f5f5; border: 1px solid #ccc9a4; padding: 0 0 0 1em; margin : 0px; + font-family: 'Courier New', Courier, monospace; font-weight: normal; } +.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } + +.src-comm { color: green; } +.src-id { } +.src-inc { color: #0000FF; } +.src-key { color: #0000FF; } +.src-num { color: #CC0000; } +.src-str { color: #66cccc; } +.src-sym { font-weight: bold; } +.src-var { } + +.src-php { font-weight: bold; } + +.src-doc { color: #009999 } +.src-doc-close-template { color: #0000FF } +.src-doc-coretag { color: #0099FF; font-weight: bold } +.src-doc-inlinetag { color: #0099FF } +.src-doc-internal { color: #6699cc } +.src-doc-tag { color: #0080CC } +.src-doc-template { color: #0000FF } +.src-doc-type { font-style: italic } +.src-doc-var { font-style: italic } + +.tute-tag { color: #009999 } +.tute-attribute-name { color: #0000FF } +.tute-attribute-value { color: #0099FF } +.tute-entity { font-weight: bold; } +.tute-comment { font-style: italic } +.tute-inline-tag { color: #636311; font-weight: bold } + +/* tutorial */ + +.authors { } +.author { font-style: italic; font-weight: bold } +.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } +.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } +.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } +.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } +.ref-title-box { } +.ref-title { } +.ref-purpose { font-style: italic; color: #666666 } +.ref-synopsis { } +.title { font-weight: bold; margin: 1em 0em 0em 0em; padding: .25em; border: 2px solid #999999; background-color: #9999CC } +.cmd-synopsis { margin: 1em 0em } +.cmd-title { font-weight: bold } +.toc { margin-left: 2em; padding-left: 0em } + diff --git a/htdocs/includes/tcpdf/fonts/utils/README.TXT b/htdocs/includes/tcpdf/fonts/utils/README.TXT new file mode 100644 index 00000000000..96d39fb8929 --- /dev/null +++ b/htdocs/includes/tcpdf/fonts/utils/README.TXT @@ -0,0 +1,135 @@ +TCPDF Fonts + +TCPDF supports TrueTypeUnicode (UTF-8 Unicode), OpenTypeUnicode, TrueType, OpenType, Type1, CID-0 and Core (standard) fonts. + +There are two ways to use a new font: embedding it in the PDF (with or without subsetting) or not. When a font is not embedded, it is searched in the system. The advantage is that the PDF file is lighter; on the other hand, if it is not available, a substitution font is used. So it is preferable to ensure that the needed font is installed on the client systems. If the file is to be viewed by a large audience, it is recommended to embed. + +TCPDF support font subsetting to reduce the size of documents using large unicode font files. +If you embed the whole font in the PDF, the person on the other end can make changes to it even if he didn't have your font. +If you subset the font, file size of the PDF will be smaller but the person who receives your PDF would need to have your same font in order to make changes to your PDF. +The option for enabling/disabling the font subsetting are explained on the source code documentation for methods SetFont() and AddFont(). + +The fonts that could be not embedded are only the standard core fonts and CID-0 fonts. + +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. Convert all font filenames to lowercase and rename using the following schema: + * [basic-font-name-in-lowercase].ttf for regular font + * [basic-font-name-in-lowercase]b.ttf for bold variation + * [basic-font-name-in-lowercase]i.ttf for oblique variation + * [basic-font-name-in-lowercase]bi.ttf for bold oblique variation + + 2. 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) 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): + + $ ttf2ufm -a -F myfont.ttf + + * For OpenTypeUnicode or OpenType font files, use the the provided ttf2ufm utility (fonts/utils/ttf2ufm): + + $ ttf2ufm -a -F myfont.otf + + 3. Run makefont.php script. + * For TrueTypeUnicode: + + $ php -q makefont.php myfont.ttf myfont.ufm + + * For OpenTypeUnicode: + + $ php -q makefont.php myfont.otf myfont.ufm + + * For TrueType: + + $ php -q makefont.php myfont.ttf myfont.afm + + * For OpenType: + + $ php -q makefont.php myfont.otf 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'). + + 4. Edit and copy resulting files by case: + * For embedded fonts: copy the resulting .php, .z and .ctg.z (if available) files to the TCPDF fonts directory. + * For not-embedding the font, edit the .php file and comment the $file entry. + * For CID-0 fonts (not embeddeed) you have to edit the .php file: + o change the font type to: $type='cidfont0'; + o set the default font width by adding the line: $dw=1000; + o remove the $enc, $file and $ctg variables definitions + o add one of the following blocks of text at the end of the file (depends by the language you are using - see the arialunicid0.php file for a working example): + + // Chinese Simplified + $enc='UniCNS-UTF16-H'; + $cidinfo=array('Registry'=>'Adobe', 'Ordering'=>'CNS1','Supplement'=>0); + include(dirname(__FILE__).'/uni2cid_ac15.php'); + + + // Chinese Traditional + $enc='UniGB-UTF16-H'; + $cidinfo=array('Registry'=>'Adobe', 'Ordering'=>'GB1','Supplement'=>2); + include(dirname(__FILE__).'/uni2cid_ag15.php'); + + + // Korean + $enc='UniKS-UTF16-H'; + $cidinfo=array('Registry'=>'Adobe', 'Ordering'=>'Korea1','Supplement'=>0); + include(dirname(__FILE__).'/uni2cid_ak12.php'); + + + // Japanese + $enc='UniJIS-UTF16-H'; + $cidinfo=array('Registry'=>'Adobe', 'Ordering'=>'Japan1','Supplement'=>5); + include(dirname(__FILE__).'/uni2cid_aj16.php'); + + o copy the .php file to the TCPDF fonts directory. + 5. Rename php font files variations using the following schema: + * [basic-font-name-in-lowercase].php for regular font + * [basic-font-name-in-lowercase]b.php for bold variation + * [basic-font-name-in-lowercase]i.php for oblique variation + * [basic-font-name-in-lowercase]bi.php for bold oblique variation + diff --git a/htdocs/includes/tcpdf/fonts/utils/enc/cp1250.map b/htdocs/includes/tcpdf/fonts/utils/enc/cp1250.map new file mode 100644 index 00000000000..ec110af0610 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/cp1251.map b/htdocs/includes/tcpdf/fonts/utils/enc/cp1251.map new file mode 100644 index 00000000000..de6a198d99d --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/cp1252.map b/htdocs/includes/tcpdf/fonts/utils/enc/cp1252.map new file mode 100644 index 00000000000..dd490e59614 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/cp1253.map b/htdocs/includes/tcpdf/fonts/utils/enc/cp1253.map new file mode 100644 index 00000000000..4bd826fb265 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/cp1254.map b/htdocs/includes/tcpdf/fonts/utils/enc/cp1254.map new file mode 100644 index 00000000000..829473b28c5 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/cp1255.map b/htdocs/includes/tcpdf/fonts/utils/enc/cp1255.map new file mode 100644 index 00000000000..079e10c61cd --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/cp1257.map b/htdocs/includes/tcpdf/fonts/utils/enc/cp1257.map new file mode 100644 index 00000000000..2f2ecfa21da --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/cp1258.map b/htdocs/includes/tcpdf/fonts/utils/enc/cp1258.map new file mode 100644 index 00000000000..fed915f7152 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/cp874.map b/htdocs/includes/tcpdf/fonts/utils/enc/cp874.map new file mode 100644 index 00000000000..1006e6b17f2 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-1.map b/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-1.map new file mode 100644 index 00000000000..61740a38fa3 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-11.map b/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-11.map new file mode 100644 index 00000000000..91688120667 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-15.map b/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-15.map new file mode 100644 index 00000000000..6c2b5712793 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-16.map b/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-16.map new file mode 100644 index 00000000000..202c8fe5941 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-2.map b/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-2.map new file mode 100644 index 00000000000..65ae09f9581 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-4.map b/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-4.map new file mode 100644 index 00000000000..a7d87bf3ef2 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-5.map b/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-5.map new file mode 100644 index 00000000000..f9cd4edcf85 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-7.map b/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-7.map new file mode 100644 index 00000000000..e163796b1ca --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-9.map b/htdocs/includes/tcpdf/fonts/utils/enc/iso-8859-9.map new file mode 100644 index 00000000000..48c123ae6f6 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/koi8-r.map b/htdocs/includes/tcpdf/fonts/utils/enc/koi8-r.map new file mode 100644 index 00000000000..6ad5d05d0da --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/enc/koi8-u.map b/htdocs/includes/tcpdf/fonts/utils/enc/koi8-u.map new file mode 100644 index 00000000000..40a7e4fd7e5 --- /dev/null +++ b/htdocs/includes/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/htdocs/includes/tcpdf/fonts/utils/freetype6.dll b/htdocs/includes/tcpdf/fonts/utils/freetype6.dll new file mode 100644 index 00000000000..53878a03123 Binary files /dev/null and b/htdocs/includes/tcpdf/fonts/utils/freetype6.dll differ diff --git a/htdocs/includes/tcpdf/fonts/utils/makeallttffonts.php b/htdocs/includes/tcpdf/fonts/utils/makeallttffonts.php new file mode 100644 index 00000000000..e84164256b0 --- /dev/null +++ b/htdocs/includes/tcpdf/fonts/utils/makeallttffonts.php @@ -0,0 +1,69 @@ +. +// +// See LICENSE.TXT file for more information. +//============================================================+ + +/** + * Process all TTF files on current directory to build TCPDF compatible font files. + * @package com.tecnick.tcpdf + * @author Nicola Asuni + * @copyright Copyright © 2004-2009, Nicola Asuni - Tecnick.com S.r.l. - ITALY - www.tecnick.com - info@tecnick.com + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License + * @link www.tecnick.com + * @since 2008-12-07 + */ + +/** + */ + +// read directory for files (only graphics files). +$handle = opendir('.'); +while($file = readdir($handle)) { + $path_parts = pathinfo($file); + $file_ext = strtolower($path_parts['extension']); + if ($file_ext == 'ttf') { + exec('./ttf2ufm -a -F '.$path_parts['basename'].''); + exec('php -q makefont.php '.$path_parts['basename'].' '.$path_parts['filename'].'.ufm'); + } +} +closedir($handle); + +//============================================================+ +// END OF FILE +//============================================================+ diff --git a/htdocs/includes/tcpdf/fonts/utils/makefont.php b/htdocs/includes/tcpdf/fonts/utils/makefont.php new file mode 100644 index 00000000000..608ec04073d --- /dev/null +++ b/htdocs/includes/tcpdf/fonts/utils/makefont.php @@ -0,0 +1,615 @@ +. +// +// See LICENSE.TXT file for more information. +// ---------------------------------------------------------------------------- +// +// Description : Utility to generate font definition files fot TCPDF +// +// Authors: 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, OTF 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 = ''; + $dw = 0; // default width + $ffext = strtolower(substr($fontfile, -3)); + $fmext = strtolower(substr($fmfile, -3)); + if ($fmext == 'afm') { + if (($ffext == 'ttf') OR ($ffext == 'otf')) { + $type = 'TrueType'; + } elseif ($ffext == 'pfb') { + $type = 'Type1'; + } else { + die('Error: unrecognized font file extension: '.$ffext); + } + if ($enc) { + $map = ReadMap($enc); + foreach ($patch as $cc => $gn) { + $map[$cc] = $gn; + } + } + $fm = ReadAFM($fmfile, $map); + if (isset($widths['.notdef'])) { + $dw = $widths['.notdef']; + } + if ($enc) { + $diff = MakeFontEncoding($map); + } + $fd = MakeFontDescriptor($fm, empty($map)); + } elseif ($fmext == 'ufm') { + $enc = ''; + if (($ffext == 'ttf') OR ($ffext == 'otf')) { + $type = 'TrueTypeUnicode'; + } else { + die('Error: not a TrueType font: '.$ffext); + } + $fm = ReadUFM($fmfile, $cidtogidmap); + $dw = $fm['MissingWidth']; + $fd = MakeFontDescriptor($fm, false); + } + //Start generation + $s = ' 0)) { + // assign default space width + $dw = $fm['Widths'][32]; + } else { + $dw = 600; + } + } + $s .= '$dw='.$dw.";\n"; + $w = MakeWidthArray($fm); + $s .= '$cw='.$w.";\n"; + $s .= '$enc=\''.$enc."';\n"; + $s .= '$diff=\''.$diff."';\n"; + $basename = substr(basename($fmfile), 0, -4); + if ($embedded) { + //Embedded font + if (($type == 'TrueType') OR ($type == 'TrueTypeUnicode')) { + CheckTTF($fontfile); + } + $f = fopen($fontfile,'rb'); + if (!$f) { + die('Error: Unable to open '.$fontfile); + } + $file = fread($f, filesize($fontfile)); + fclose($f); + if ($type == 'Type1') { + //Find first two sections and discard third one + $header = (ord($file{0}) == 128); + if ($header) { + //Strip first binary header + $file = substr($file, 6); + } + $pos = strpos($file, 'eexec'); + if (!$pos) { + die('Error: font file does not seem to be valid Type1'); + } + $size1 = $pos + 6; + if ($header AND (ord($file{$size1}) == 128)) { + //Strip second binary header + $file = substr($file, 0, $size1).substr($file, $size1+6); + } + $pos = strpos($file, '00000000'); + if (!$pos) { + die('Error: font file does not seem to be valid Type1'); + } + $size2 = $pos - $size1; + $file = substr($file, 0, ($size1 + $size2)); + } + $basename = strtolower($basename); + if (function_exists('gzcompress')) { + $cmp = $basename.'.z'; + SaveToFile($cmp, gzcompress($file, 9), 'b'); + $s .= '$file=\''.$cmp."';\n"; + print "Font file compressed (".$cmp.")\n"; + if (!empty($cidtogidmap)) { + $cmp = $basename.'.ctg.z'; + SaveToFile($cmp, gzcompress($cidtogidmap, 9), 'b'); + print "CIDToGIDMap created and compressed (".$cmp.")\n"; + $s .= '$ctg=\''.$cmp."';\n"; + } + } else { + $s .= '$file=\''.basename($fontfile)."';\n"; + print "Notice: font file could not be compressed (zlib extension not available)\n"; + if (!empty($cidtogidmap)) { + $cmp = $basename.'.ctg'; + $f = fopen($cmp, 'wb'); + fwrite($f, $cidtogidmap); + fclose($f); + print "CIDToGIDMap created (".$cmp.")\n"; + $s .= '$ctg=\''.$cmp."';\n"; + } + } + if($type == 'Type1') { + $s .= '$size1='.$size1.";\n"; + $s .= '$size2='.$size2.";\n"; + } else { + $s.='$originalsize='.filesize($fontfile).";\n"; + } + } else { + //Not embedded font + $s .= '$file='."'';\n"; + } + $s .= '// --- EOF ---'; + 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) AND ($cc < 0xFFFF) AND $glyph) { + $cidtogidmap{($cc * 2)} = chr($glyph >> 8); + $cidtogidmap{(($cc * 2) + 1)} = chr($glyph & 0xFF); + } + } + if((isset($gn) AND ($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, ($desc - 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 preg_match('/(bold|black)/i', $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[] = (((($c++)%10) == 0) ? "\n" : '').$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 (sizeof($arg) == 3) { + $arg[3] = $arg[2]; + $arg[2] = true; + } else { + 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 \n"; +} + +//============================================================+ +// END OF FILE +//============================================================+ diff --git a/htdocs/includes/tcpdf/fonts/utils/pfm2afm b/htdocs/includes/tcpdf/fonts/utils/pfm2afm new file mode 100644 index 00000000000..c75b565c2f7 Binary files /dev/null and b/htdocs/includes/tcpdf/fonts/utils/pfm2afm differ diff --git a/htdocs/includes/tcpdf/fonts/utils/pfm2afm.exe b/htdocs/includes/tcpdf/fonts/utils/pfm2afm.exe new file mode 100644 index 00000000000..25c21fa1af1 Binary files /dev/null and b/htdocs/includes/tcpdf/fonts/utils/pfm2afm.exe differ diff --git a/htdocs/includes/tcpdf/fonts/utils/src/pfm2afm-src.tar.gz b/htdocs/includes/tcpdf/fonts/utils/src/pfm2afm-src.tar.gz new file mode 100644 index 00000000000..72abae50f99 Binary files /dev/null and b/htdocs/includes/tcpdf/fonts/utils/src/pfm2afm-src.tar.gz differ diff --git a/htdocs/includes/tcpdf/fonts/utils/src/readme.txt b/htdocs/includes/tcpdf/fonts/utils/src/readme.txt new file mode 100644 index 00000000000..6e5b40d98a1 --- /dev/null +++ b/htdocs/includes/tcpdf/fonts/utils/src/readme.txt @@ -0,0 +1,17 @@ +To embed TrueType and OpenType font files, you need to extract the +font metrics from the font files and build the required tables using +the utility TTF2UFM. + +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). That version has been further +modified by Ulrich Telle for use with the wxWidgets component +wxPdfDocument. + +Following changes where made: + +1) Generated AFM files contain the glyph number for each character. +2) Generated UFM files contain the bounding box for each character. +3) OpenType support has been activated for the Windows binary, + and the generated AFM/UFM files contain the associated + original Unicode codes for each character. diff --git a/htdocs/includes/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz b/htdocs/includes/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz new file mode 100644 index 00000000000..2aeca608219 Binary files /dev/null and b/htdocs/includes/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz differ diff --git a/htdocs/includes/tcpdf/fonts/utils/ttf2ufm b/htdocs/includes/tcpdf/fonts/utils/ttf2ufm new file mode 100644 index 00000000000..f81604fa0cf Binary files /dev/null and b/htdocs/includes/tcpdf/fonts/utils/ttf2ufm differ diff --git a/htdocs/includes/tcpdf/fonts/utils/ttf2ufm.exe b/htdocs/includes/tcpdf/fonts/utils/ttf2ufm.exe new file mode 100644 index 00000000000..07751055162 Binary files /dev/null and b/htdocs/includes/tcpdf/fonts/utils/ttf2ufm.exe differ diff --git a/htdocs/includes/tcpdf/fonts/utils/zlib1.dll b/htdocs/includes/tcpdf/fonts/utils/zlib1.dll new file mode 100644 index 00000000000..31996cd3e2e Binary files /dev/null and b/htdocs/includes/tcpdf/fonts/utils/zlib1.dll differ diff --git a/htdocs/includes/tcpdf/images/_blank.png b/htdocs/includes/tcpdf/images/_blank.png new file mode 100644 index 00000000000..38f7b2fa56a Binary files /dev/null and b/htdocs/includes/tcpdf/images/_blank.png differ diff --git a/htdocs/includes/tcpdf/images/alpha.png b/htdocs/includes/tcpdf/images/alpha.png new file mode 100644 index 00000000000..08daf2d44cd Binary files /dev/null and b/htdocs/includes/tcpdf/images/alpha.png differ diff --git a/htdocs/includes/tcpdf/images/bug.eps b/htdocs/includes/tcpdf/images/bug.eps new file mode 100644 index 00000000000..7df891e7d9f --- /dev/null +++ b/htdocs/includes/tcpdf/images/bug.eps @@ -0,0 +1,1809 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: Adobe Illustrator(TM) 3.2 +%%AI8_CreatorVersion: 12.0.0 +%%For: (fluxus) (x) +%%Title: (bug.eps) +%%CreationDate: 4/15/2006 11:11 PM +%%BoundingBox: -2 747 53 843 +% -2 747 53 843 +%%DocumentProcessColors: Cyan Magenta Yellow Black +%%DocumentSuppliedResources: procset Adobe_packedarray 2.0 0 +%%+ procset Adobe_cmykcolor 1.1 0 +%%+ procset Adobe_cshow 1.1 0 +%%+ procset Adobe_customcolor 1.0 0 +%%+ procset Adobe_pattern_AI3 1.0 0 +%%+ procset Adobe_Illustrator_AI3 1.0 1 +%AI3_ColorUsage: Color +%AI3_IncludePlacedImages +%%CMYKCustomColor: 1 1 1 1 ([Registration]) +%AI3_TemplateBox: 298.5 420.3896 298.5 420.3896 +%AI3_TileBox: 0.157715 0.044861 595.1177 841.9648 +%AI3_DocumentPreview: Header +%%PageOrigin:-32 11.8896 +%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments +%%BeginProlog +%%BeginResource: procset Adobe_packedarray 2.0 0 +%%Title: (Packed Array Operators) +%%Version: 2.0 0 +%%CreationDate: (8/2/90) () +%%Copyright: ((C) 1987-1996 Adobe Systems Incorporated All Rights Reserved) +userdict /Adobe_packedarray 5 dict dup begin put +/initialize +{ +/packedarray where + { + pop + } + { + Adobe_packedarray begin + Adobe_packedarray + { + dup xcheck + { + bind + } if + userdict 3 1 roll put + } forall + end + } ifelse +} def +/terminate +{ +} def +/packedarray +{ +array astore readonly +} def +/setpacking +{ +pop +} def +/currentpacking +{ +false +} def +currentdict readonly pop end +%%EndResource +Adobe_packedarray /initialize get exec +%%BeginResource: procset Adobe_cmykcolor 1.1 0 +%%Title: (CMYK Color Operators) +%%Version: 1.1 0 +%%CreationDate: (1/23/89) () +%%Copyright: ((C) 1987-1996 Adobe Systems Incorporated All Rights Reserved) +currentpacking true setpacking +userdict /Adobe_cmykcolor 4 dict dup begin put +/initialize +{ +/setcmykcolor where + { + pop + } + { + userdict /Adobe_cmykcolor_vars 2 dict dup begin put + /_setrgbcolor + /setrgbcolor load def + /_currentrgbcolor + /currentrgbcolor load def + Adobe_cmykcolor begin + Adobe_cmykcolor + { + dup xcheck + { + bind + } if + pop pop + } forall + end + end + Adobe_cmykcolor begin + } ifelse +} def +/terminate +{ +currentdict Adobe_cmykcolor eq + { + end + } if +} def +/setcmykcolor +{ +1 sub 4 1 roll +3 + { + 3 index add neg dup 0 lt + { + pop 0 + } if + 3 1 roll + } repeat +Adobe_cmykcolor_vars /_setrgbcolor get exec +pop +} def +/currentcmykcolor +{ +Adobe_cmykcolor_vars /_currentrgbcolor get exec +3 + { + 1 sub neg 3 1 roll + } repeat +0 +} def +currentdict readonly pop end +setpacking +%%EndResource +%%BeginResource: procset Adobe_cshow 1.1 0 +%%Title: (cshow Operator) +%%Version: 1.1 0 +%%CreationDate: (1/23/89) () +%%Copyright: ((C) 1987-1996 Adobe Systems Incorporated All Rights Reserved) +currentpacking true setpacking +userdict /Adobe_cshow 3 dict dup begin put +/initialize +{ +/cshow where + { + pop + } + { + userdict /Adobe_cshow_vars 1 dict dup begin put + /_cshow + {} def + Adobe_cshow begin + Adobe_cshow + { + dup xcheck + { + bind + } if + userdict 3 1 roll put + } forall + end + end + } ifelse +} def +/terminate +{ +} def +/cshow +{ +exch +Adobe_cshow_vars + exch /_cshow + exch put + { + 0 0 Adobe_cshow_vars /_cshow get exec + } forall +} def +currentdict readonly pop end +setpacking +%%EndResource +%%BeginResource: procset Adobe_customcolor 1.0 0 +%%Title: (Custom Color Operators) +%%Version: 1.0 0 +%%CreationDate: (5/9/88) () +%%Copyright: ((C) 1987-1996 Adobe Systems Incorporated All Rights Reserved) +currentpacking true setpacking +userdict /Adobe_customcolor 5 dict dup begin put +/initialize +{ +/setcustomcolor where + { + pop + } + { + Adobe_customcolor begin + Adobe_customcolor + { + dup xcheck + { + bind + } if + pop pop + } forall + end + Adobe_customcolor begin + } ifelse +} def +/terminate +{ +currentdict Adobe_customcolor eq + { + end + } if +} def +/findcmykcustomcolor +{ +5 packedarray +} def +/setcustomcolor +{ +exch +aload pop pop +4 + { + 4 index mul 4 1 roll + } repeat +5 -1 roll pop +setcmykcolor +} def +/setoverprint +{ +pop +} def +currentdict readonly pop end +setpacking +%%EndResource +%%BeginResource: procset Adobe_pattern_AI3 1.1 0 +%%Title: (Adobe Illustrator (R) Version 3.0 Pattern Operators) +%%Version: 1.1 0 +%%CreationDate: (7/21/89) () +%%Copyright: ((C) 1987-1996 Adobe Systems Incorporated All Rights Reserved) +currentpacking true setpacking +userdict /Adobe_pattern_AI3 16 dict dup begin put +/initialize +{ +/definepattern where + { + pop + } + { + Adobe_pattern_AI3 begin + Adobe_pattern_AI3 + { + dup xcheck + { + bind + } if + pop pop + } forall + mark + cachestatus 7 1 roll pop pop pop pop exch pop exch + { + { + 10000 add + dup 2 index gt + { + exit + } if + dup setcachelimit + } loop + } stopped + cleartomark + } ifelse +} def +/terminate +{ +currentdict Adobe_pattern_AI3 eq + { + end + } if +} def +errordict +/nocurrentpoint +{ +pop +stop +} put +errordict +/invalidaccess +{ +pop +stop +} put +/patternencoding +256 array def +0 1 255 +{ +patternencoding exch ( ) 2 copy exch 0 exch put cvn put +} for +/definepattern +{ +17 dict begin +/uniform exch def +/cache exch def +/key exch def +/procarray exch def +/mtx exch matrix invertmatrix def +/height exch def +/width exch def +/ctm matrix currentmatrix def +/ptm matrix def +/str 32 string def +/slice 9 dict def +slice /s 1 put +slice /q 256 procarray length div sqrt floor cvi put +slice /b 0 put +/FontBBox [0 0 0 0] def +/FontMatrix mtx matrix copy def +/Encoding patternencoding def +/FontType 3 def +/BuildChar + { + exch + begin + /setstrokeadjust where {pop true setstrokeadjust} if + slice begin + dup q dup mul mod s idiv /i exch def + dup q dup mul mod s mod /j exch def + q dup mul idiv procarray exch get + /xl j width s div mul def + /xg j 1 add width s div mul def + /yl i height s div mul def + /yg i 1 add height s div mul def + uniform + { + 1 1 + } + { + width 0 dtransform + dup mul exch dup mul add sqrt dup 1 add exch div + 0 height dtransform + dup mul exch dup mul add sqrt dup 1 add exch div + } ifelse + width 0 cache + { + xl 4 index mul yl 4 index mul xg 6 index mul yg 6 index mul + setcachedevice + } + { + setcharwidth + } ifelse + gsave + scale + newpath + xl yl moveto + xg yl lineto + xg yg lineto + xl yg lineto + closepath + clip + newpath + end + end + exec + grestore + } def +key currentdict definefont +end +} def +/patterncachesize +{ +gsave +newpath +0 0 moveto +width 0 lineto +width height lineto +0 height lineto +closepath +patternmatrix setmatrix +pathbbox +exch ceiling 4 -1 roll floor sub 3 1 roll +ceiling exch floor sub +mul 1 add +grestore +} def +/patterncachelimit +{ +cachestatus 7 1 roll 6 npop 8 mul +} def +/patternpath +{ +exch dup begin setfont +ctm setmatrix +concat +slice exch /b exch slice /q get dup mul mul put +FontMatrix concat +uniform + { + width 0 dtransform round width div exch round width div exch + 0 height dtransform round height div exch height div exch + 0 0 transform round exch round exch + ptm astore setmatrix + } + { + ptm currentmatrix pop + } ifelse +{currentpoint} stopped not + { + 2 npop + pathbbox + true + 4 index 3 index eq + 4 index 3 index eq + and + { + pop false + { + {2 npop} + {3 npop true} + {7 npop true} + {pop true} + pathforall + } stopped + { + 5 npop true + } if + } if + { + height div ceiling height mul 4 1 roll + width div ceiling width mul 4 1 roll + height div floor height mul 4 1 roll + width div floor width mul 4 1 roll + 2 index sub height div ceiling cvi exch + 3 index sub width div ceiling cvi exch + 4 2 roll moveto + FontMatrix mtx invertmatrix + dup dup 4 get exch 5 get rmoveto + ptm ptm concatmatrix pop + slice /s + patterncachesize patterncachelimit div ceiling sqrt ceiling cvi + dup slice /q get gt + { + pop slice /q get + } if + put + 0 1 slice /s get dup mul 1 sub + { + slice /b get add + gsave + 0 1 str length 1 sub + { + str exch 2 index put + } for + pop + dup + { + gsave + ptm setmatrix + 1 index str length idiv {str show} repeat + 1 index str length mod str exch 0 exch getinterval show + grestore + 0 height rmoveto + } repeat + grestore + } for + 2 npop + } + { + 4 npop + } ifelse + } if +end +} def +/patternclip +{ +clip +} def +/patternstrokepath +{ +strokepath +} def +/patternmatrix +matrix def +/patternfill +{ +dup type /dicttype eq + { + Adobe_pattern_AI3 /patternmatrix get + } if +gsave +patternclip +Adobe_pattern_AI3 /patternpath get exec +grestore +newpath +} def +/patternstroke +{ +dup type /dicttype eq + { + Adobe_pattern_AI3 /patternmatrix get + } if +gsave +patternstrokepath +true + { + { + { + newpath + moveto + } + { + lineto + } + { + curveto + } + { + closepath + 3 copy + Adobe_pattern_AI3 /patternfill get exec + } pathforall + 3 npop + } stopped + { + 5 npop + patternclip + Adobe_pattern_AI3 /patternfill get exec + } if + } + { + patternclip + Adobe_pattern_AI3 /patternfill get exec + } ifelse +grestore +newpath +} def +/patternashow +{ +3 index type /dicttype eq + { + Adobe_pattern_AI3 /patternmatrix get 4 1 roll + } if + { + 2 npop (0) exch + 2 copy 0 exch put pop + gsave + false charpath currentpoint + 6 index 6 index 6 index + Adobe_pattern_AI3 /patternfill get exec + grestore + newpath moveto + 2 copy rmoveto + } exch cshow +5 npop +} def +/patternawidthshow +{ +6 index type /dicttype eq + { + Adobe_pattern_AI3 /patternmatrix get 7 1 roll + } if + { + 2 npop (0) exch + 2 copy 0 exch put + gsave + _sp eq {5 index 5 index rmoveto} if + false charpath currentpoint + 9 index 9 index 9 index + Adobe_pattern_AI3 /patternfill get exec + grestore + newpath moveto + 2 copy rmoveto + } exch cshow +8 npop +} def +/patternashowstroke +{ +4 index type /dicttype eq + { + patternmatrix /patternmatrix get 5 1 roll + } if +4 1 roll + { + 2 npop (0) exch + 2 copy 0 exch put pop + gsave + false charpath + currentpoint + 4 index setmatrix + 7 index 7 index 7 index + Adobe_pattern_AI3 /patternstroke get exec + grestore + newpath moveto + 2 copy rmoveto + } exch cshow +6 npop +} def +/patternawidthshowstroke +{ +7 index type /dicttype eq + { + patternmatrix /patternmatrix get 8 1 roll + } if +7 1 roll + { + 2 npop (0) exch + 2 copy 0 exch put + gsave + _sp eq {5 index 5 index rmoveto} if + false charpath currentpoint + 7 index setmatrix + 10 index 10 index 10 index + Adobe_pattern_AI3 /patternstroke get exec + grestore + newpath moveto + 2 copy rmoveto + } exch cshow +9 npop +} def +currentdict readonly pop end +setpacking +%%EndResource +%%BeginResource: procset Adobe_Illustrator_AI3 1.1 0 +%%Title: (Adobe Illustrator (R) Version 3.0 Full Prolog) +%%Version: 1.1 0 +%%CreationDate: (3/7/1994) () +%%Copyright: ((C) 1987-1996 Adobe Systems Incorporated All Rights Reserved) +currentpacking true setpacking +userdict /Adobe_Illustrator_AI3 71 dict dup begin put +/initialize +{ +userdict /Adobe_Illustrator_AI3_vars 67 dict dup begin put +/_lp /none def +/_pf {} def +/_ps {} def +/_psf {} def +/_pss {} def +/_pjsf {} def +/_pjss {} def +/_pola 0 def +/_doClip 0 def +/cf currentflat def +/_tm matrix def +/_renderStart [/e0 /r0 /a0 /o0 /e1 /r1 /a1 /i0] def +/_renderEnd [null null null null /i1 /i1 /i1 /i1] def +/_render -1 def +/_rise 0 def +/_ax 0 def +/_ay 0 def +/_cx 0 def +/_cy 0 def +/_leading [0 0] def +/_ctm matrix def +/_mtx matrix def +/_sp 16#020 def +/_hyphen (-) def +/_fScl 0 def +/_cnt 0 def +/_hs 1 def +/_nativeEncoding 0 def +/_useNativeEncoding 0 def +/_tempEncode 0 def +/_pntr 0 def +/_tDict 2 dict def +/_wv 0 def +/Tx {} def +/Tj {} def +/CRender {} def +/_AI3_savepage {} def +/_gf null def +/_cf 4 array def +/_if null def +/_of false def +/_fc {} def +/_gs null def +/_cs 4 array def +/_is null def +/_os false def +/_sc {} def +/_pd 1 dict def +/_ed 15 dict def +/_pm matrix def +/_fm null def +/_fd null def +/_fdd null def +/_sm null def +/_sd null def +/_sdd null def +/_i null def +Adobe_Illustrator_AI3 begin +Adobe_Illustrator_AI3 dup /nc get begin + { + dup xcheck + { + bind + } if + pop pop + } forall +end +end +end +Adobe_Illustrator_AI3 begin +Adobe_Illustrator_AI3_vars begin +newpath +} def +/terminate +{ +end +end +} def +/_ +null def +/ddef +{ +Adobe_Illustrator_AI3_vars 3 1 roll put +} def +/xput +{ +dup load dup length exch maxlength eq + { + dup dup load dup + length 2 mul dict copy def + } if +load begin def end +} def +/npop +{ + { + pop + } repeat +} def +/sw +{ +dup length exch stringwidth +exch 5 -1 roll 3 index mul add +4 1 roll 3 1 roll mul add +} def +/swj +{ +dup 4 1 roll +dup length exch stringwidth +exch 5 -1 roll 3 index mul add +4 1 roll 3 1 roll mul add +6 2 roll /_cnt 0 ddef +{1 index eq {/_cnt _cnt 1 add ddef} if} forall pop +exch _cnt mul exch _cnt mul 2 index add 4 1 roll 2 index add 4 1 roll pop pop +} def +/ss +{ +4 1 roll + { + 2 npop + (0) exch 2 copy 0 exch put pop + gsave + false charpath currentpoint + 4 index setmatrix + stroke + grestore + moveto + 2 copy rmoveto + } exch cshow +3 npop +} def +/jss +{ +4 1 roll + { + 2 npop + (0) exch 2 copy 0 exch put + gsave + _sp eq + { + exch 6 index 6 index 6 index 5 -1 roll widthshow + currentpoint + } + { + false charpath currentpoint + 4 index setmatrix stroke + }ifelse + grestore + moveto + 2 copy rmoveto + } exch cshow +6 npop +} def +/sp +{ + { + 2 npop (0) exch + 2 copy 0 exch put pop + false charpath + 2 copy rmoveto + } exch cshow +2 npop +} def +/jsp +{ + { + 2 npop + (0) exch 2 copy 0 exch put + _sp eq + { + exch 5 index 5 index 5 index 5 -1 roll widthshow + } + { + false charpath + }ifelse + 2 copy rmoveto + } exch cshow +5 npop +} def +/pl +{ +transform +0.25 sub round 0.25 add exch +0.25 sub round 0.25 add exch +itransform +} def +/setstrokeadjust where + { + pop true setstrokeadjust + /c + { + curveto + } def + /C + /c load def + /v + { + currentpoint 6 2 roll curveto + } def + /V + /v load def + /y + { + 2 copy curveto + } def + /Y + /y load def + /l + { + lineto + } def + /L + /l load def + /m + { + moveto + } def + } + { + /c + { + pl curveto + } def + /C + /c load def + /v + { + currentpoint 6 2 roll pl curveto + } def + /V + /v load def + /y + { + pl 2 copy curveto + } def + /Y + /y load def + /l + { + pl lineto + } def + /L + /l load def + /m + { + pl moveto + } def + } ifelse +/d +{ +setdash +} def +/cf {} def +/i +{ +dup 0 eq + { + pop cf + } if +setflat +} def +/j +{ +setlinejoin +} def +/J +{ +setlinecap +} def +/M +{ +setmiterlimit +} def +/w +{ +setlinewidth +} def +/H +{} def +/h +{ +closepath +} def +/N +{ +_pola 0 eq + { + _doClip 1 eq {clip /_doClip 0 ddef} if + newpath + } + { + /CRender {N} ddef + }ifelse +} def +/n +{N} def +/F +{ +_pola 0 eq + { + _doClip 1 eq + { + gsave _pf grestore clip newpath /_lp /none ddef _fc + /_doClip 0 ddef + } + { + _pf + }ifelse + } + { + /CRender {F} ddef + }ifelse +} def +/f +{ +closepath +F +} def +/S +{ +_pola 0 eq + { + _doClip 1 eq + { + gsave _ps grestore clip newpath /_lp /none ddef _sc + /_doClip 0 ddef + } + { + _ps + }ifelse + } + { + /CRender {S} ddef + }ifelse +} def +/s +{ +closepath +S +} def +/B +{ +_pola 0 eq + { + _doClip 1 eq + gsave F grestore + { + gsave S grestore clip newpath /_lp /none ddef _sc + /_doClip 0 ddef + } + { + S + }ifelse + } + { + /CRender {B} ddef + }ifelse +} def +/b +{ +closepath +B +} def +/W +{ +/_doClip 1 ddef +} def +/* +{ +count 0 ne + { + dup type (stringtype) eq {pop} if + } if +_pola 0 eq {newpath} if +} def +/u +{} def +/U +{} def +/q +{ +_pola 0 eq {gsave} if +} def +/Q +{ +_pola 0 eq {grestore} if +} def +/*u +{ +_pola 1 add /_pola exch ddef +} def +/*U +{ +_pola 1 sub /_pola exch ddef +_pola 0 eq {CRender} if +} def +/D +{pop} def +/*w +{} def +/*W +{} def +/` +{ +/_i save ddef +6 1 roll 4 npop +concat pop +userdict begin +/showpage {} def +0 setgray +0 setlinecap +1 setlinewidth +0 setlinejoin +10 setmiterlimit +[] 0 setdash +/setstrokeadjust where {pop false setstrokeadjust} if +newpath +0 setgray +false setoverprint +} def +/~ +{ +end +_i restore +} def +/@ +{} def +/& +{} def +/O +{ +0 ne +/_of exch ddef +/_lp /none ddef +} def +/R +{ +0 ne +/_os exch ddef +/_lp /none ddef +} def +/g +{ +/_gf exch ddef +/_fc +{ +_lp /fill ne + { + _of setoverprint + _gf setgray + /_lp /fill ddef + } if +} ddef +/_pf +{ +_fc +fill +} ddef +/_psf +{ +_fc +ashow +} ddef +/_pjsf +{ +_fc +awidthshow +} ddef +/_lp /none ddef +} def +/G +{ +/_gs exch ddef +/_sc +{ +_lp /stroke ne + { + _os setoverprint + _gs setgray + /_lp /stroke ddef + } if +} ddef +/_ps +{ +_sc +stroke +} ddef +/_pss +{ +_sc +ss +} ddef +/_pjss +{ +_sc +jss +} ddef +/_lp /none ddef +} def +/k +{ +_cf astore pop +/_fc +{ +_lp /fill ne + { + _of setoverprint + _cf aload pop setcmykcolor + /_lp /fill ddef + } if +} ddef +/_pf +{ +_fc +fill +} ddef +/_psf +{ +_fc +ashow +} ddef +/_pjsf +{ +_fc +awidthshow +} ddef +/_lp /none ddef +} def +/K +{ +_cs astore pop +/_sc +{ +_lp /stroke ne + { + _os setoverprint + _cs aload pop setcmykcolor + /_lp /stroke ddef + } if +} ddef +/_ps +{ +_sc +stroke +} ddef +/_pss +{ +_sc +ss +} ddef +/_pjss +{ +_sc +jss +} ddef +/_lp /none ddef +} def +/x +{ +/_gf exch ddef +findcmykcustomcolor +/_if exch ddef +/_fc +{ +_lp /fill ne + { + _of setoverprint + _if _gf 1 exch sub setcustomcolor + /_lp /fill ddef + } if +} ddef +/_pf +{ +_fc +fill +} ddef +/_psf +{ +_fc +ashow +} ddef +/_pjsf +{ +_fc +awidthshow +} ddef +/_lp /none ddef +} def +/X +{ +/_gs exch ddef +findcmykcustomcolor +/_is exch ddef +/_sc +{ +_lp /stroke ne + { + _os setoverprint + _is _gs 1 exch sub setcustomcolor + /_lp /stroke ddef + } if +} ddef +/_ps +{ +_sc +stroke +} ddef +/_pss +{ +_sc +ss +} ddef +/_pjss +{ +_sc +jss +} ddef +/_lp /none ddef +} def +/dp +{ +dup null eq +{ +pop +_dp 0 ne + { + 0 1 _dp 1 sub _dl mod + { + _da exch get 3 get + } for + _dp 1 sub _dl mod 1 add packedarray + _da 0 get aload pop 8 -1 roll 5 -1 roll pop 4 1 roll + definepattern pop + } if +} +{ +_dp 0 ne _dp _dl mod 0 eq and + { + null dp + } if +7 packedarray _da exch _dp _dl mod exch put +_dp _dl mod _da 0 get 4 get 2 packedarray +/_dp _dp 1 add def +} ifelse +} def +/E +{ +_ed begin +dup 0 get type /arraytype ne + { + 0 + { + dup 1 add index type /arraytype eq + { + 1 add + } + { + exit + } ifelse + } loop + array astore + } if +/_dd exch def +/_ury exch def +/_urx exch def +/_lly exch def +/_llx exch def +/_n exch def +/_y 0 def +/_dl 4 def +/_dp 0 def +/_da _dl array def +0 1 _dd length 1 sub + { + /_d exch _dd exch get def + 0 2 _d length 2 sub + { + /_x exch def + /_c _d _x get _ ne def + /_r _d _x 1 add get cvlit def + _r _ ne + { + _urx _llx sub _ury _lly sub [1 0 0 1 0 0] + [ + /save cvx + _llx neg _lly neg /translate cvx + _c + { + nc /begin cvx + } if + _r dup type /stringtype eq + { + cvx + } + { + {exec} /forall cvx + } ifelse + _c + { + /end cvx + } if + /restore cvx + ] cvx + /_fn 12 _n length add string def + _y _fn cvs pop + /_y _y 1 add def + _fn 12 _n putinterval + _fn _c false dp + _d exch _x 1 add exch put + } if + } for + } for +null dp +_n _dd /_pd +end xput +} def +/fc +{ +_fm dup concatmatrix pop +} def +/p +{ +/_fm exch ddef +9 -2 roll _pm translate fc +7 -2 roll _pm scale fc +5 -1 roll _pm rotate fc +4 -2 roll exch 0 ne + { + dup _pm rotate fc + 1 -1 _pm scale fc + neg _pm rotate fc + } + { + pop + } ifelse +dup _pm rotate fc +exch dup sin exch cos div 1 0 0 1 0 6 2 roll +_pm astore fc +neg _pm rotate fc +_pd exch get /_fdd exch ddef +/_pf +{ +save +/_doClip 0 ddef +0 1 _fdd length 1 sub + { + /_fd exch _fdd exch get ddef + _fd + 0 2 _fd length 2 sub + { + gsave + 2 copy get dup _ ne + { + cvx exec _fc + } + { + pop + } ifelse + 2 copy 1 add get dup _ ne + { + aload pop findfont _fm + patternfill + } + { + pop + fill + } ifelse + grestore + pop + } for + pop + } for +restore +newpath +} ddef +/_psf +{ +save +/_doClip 0 ddef +0 1 _fdd length 1 sub + { + /_fd exch _fdd exch get ddef + _fd + 0 2 _fd length 2 sub + { + gsave + 2 copy get dup _ ne + { + cvx exec _fc + } + { + pop + } ifelse + 2 copy 1 add get dup _ ne + { + aload pop findfont _fm + 9 copy 6 npop patternashow + } + { + pop + 6 copy 3 npop ashow + } ifelse + grestore + pop + } for + pop + } for +restore +%3 npop newpath +sw rmoveto +} ddef +/_pjsf +{ +save +/_doClip 0 ddef +0 1 _fdd length 1 sub + { + /_fd exch _fdd exch get ddef + _fd + 0 2 _fd length 2 sub + { + gsave + 2 copy get dup _ ne + { + cvx exec _fc + } + { + pop + } ifelse + 2 copy 1 add get dup _ ne + { + aload pop findfont _fm + 12 copy 6 npop patternawidthshow + } + { + pop 9 copy 3 npop awidthshow + } ifelse + grestore + pop + } for + pop + } for +restore +swj rmoveto +} ddef +/_lp /none ddef +} def +/sc +{ +_sm dup concatmatrix pop +} def +/P +{ +/_sm exch ddef +9 -2 roll _pm translate sc +7 -2 roll _pm scale sc +5 -1 roll _pm rotate sc +4 -2 roll exch 0 ne + { + dup _pm rotate sc + 1 -1 _pm scale sc + neg _pm rotate sc + } + { + pop + } ifelse +dup _pm rotate sc +exch dup sin exch cos div 1 0 0 1 0 6 2 roll +_pm astore sc +neg _pm rotate sc +_pd exch get /_sdd exch ddef +/_ps +{ +save +/_doClip 0 ddef +0 1 _sdd length 1 sub + { + /_sd exch _sdd exch get ddef + _sd + 0 2 _sd length 2 sub + { + gsave + 2 copy get dup _ ne + { + cvx exec _sc + } + { + pop + } ifelse + 2 copy 1 add get dup _ ne + { + aload pop findfont _sm + patternstroke + } + { + pop stroke + } ifelse + grestore + pop + } for + pop + } for +restore +newpath +} ddef +/_pss +{ +save +/_doClip 0 ddef +0 1 _sdd length 1 sub + { + /_sd exch _sdd exch get ddef + _sd + 0 2 _sd length 2 sub + { + gsave + 2 copy get dup _ ne + { + cvx exec _sc + } + { + pop + } ifelse + 2 copy 1 add get dup _ ne + { + aload pop findfont _sm + 10 copy 6 npop patternashowstroke + } + { + pop 7 copy 3 npop ss + } ifelse + grestore + pop + } for + pop + } for +restore +pop sw rmoveto +} ddef +/_pjss +{ +save +/_doClip 0 ddef +0 1 _sdd length 1 sub + { + /_sd exch _sdd exch get ddef + _sd + 0 2 _sd length 2 sub + { + gsave + 2 copy get dup _ ne + { + cvx exec _sc + } + { + pop + } ifelse + 2 copy 1 add get dup _ ne + { + aload pop findfont _sm + 13 copy 6 npop patternawidthshowstroke + } + { + pop 10 copy 3 npop jss + } ifelse + grestore + pop + } for + pop + } for +restore +pop swj rmoveto +} ddef +/_lp /none ddef +} def +/A +{ +pop +} def +/nc 3 dict def +nc begin +/setgray +{ +pop +} bind def +/setcmykcolor +{ +4 npop +} bind def +/setcustomcolor +{ +2 npop +} bind def +currentdict readonly pop end +currentdict readonly pop end +setpacking +/annotatepage +{ +} def +%%EndResource +%%EndProlog +%%BeginSetup +Adobe_cmykcolor /initialize get exec +Adobe_cshow /initialize get exec +Adobe_customcolor /initialize get exec +Adobe_pattern_AI3 /initialize get exec +Adobe_Illustrator_AI3 /initialize get exec +%%EndSetup +0 A +0 O +0.25 1 1 0.25 k +0 R +0 0 0 1 K +0 J 0 j 0.2 w 4 M []0 d +9.19971 841.8735 m +10.3311 842.1226 8.4126 839.4165 8 839.2729 c +9.57471 839.1421 9.3999 839.0728 v +9 838.9233 8.8623 838.561 8.6001 838.2729 c +7.39355 836.9985 6.49365 836.7915 7.3999 834.8735 C +8.03125 834.9233 8.1626 835.1919 8.6001 834.8735 c +9.32471 834.3423 7.78125 832.979 10 832.0728 c +11.356 831.5229 14.1997 832.1792 15.7998 832.2729 C +15.1997 831.8481 12.5186 830.4546 12.3999 829.6733 c +12.1812 828.2612 12.9434 828.686 13.5996 828.4731 C +13.2998 827.2544 13.106 827.5854 14.1997 827.0737 C +13.9058 825.7485 14.3687 824.8296 15.3999 824.0737 C +15.1309 824.0229 15.0996 823.2983 15.1997 823.4731 C +16.7246 820.23 19.1123 818.5229 21.9995 816.6733 C +21.6309 816.3979 20.6558 815.2925 20.5996 815.2739 C +21.5811 815.061 22.6807 814.1675 23.1997 814.0737 c +25.1621 813.7358 24.1309 815.5171 25.7998 814.2739 C +26.6689 815.0239 26.7061 815.8735 25.9995 816.2729 C +28.0439 816.4048 32.4873 820.0112 33.7998 821.6733 c +34.6494 822.7612 35.0557 823.9985 34.999 825.4731 C +36.499 826.3667 36.6807 826.5669 35.999 828.0737 C +38.5498 828.7544 34.6494 830.9604 33.5996 831.6733 C +35.2559 831.6235 37.4619 830.6421 39.3994 831.0728 c +40.8428 831.4048 40.2432 832.3169 40.5996 833.2729 c +41.0186 834.4165 42.5557 833.5415 42.999 834.4731 c +43.1182 834.7417 42.999 836.0728 Y +42.3311 836.8979 41.6055 837.5981 40.7998 838.2729 c +40.0811 838.8794 42.4736 838.6919 41.999 838.8735 c +41.293 839.1479 40.9424 840.7671 40.5996 841.4731 C +42.5557 840.1978 45.3623 837.6665 44.5986 833.8735 c +44.124 831.5298 41.2871 829.8423 40.1992 827.8735 c +37.6934 823.3608 36.5117 817.7612 33.3994 813.8735 c +33.2178 813.6548 33.1182 813.3608 32.7998 813.2739 c +32.3496 813.1606 33.4121 812.8677 33.5996 812.8735 c +38.4121 813.0864 39.874 811.2544 40.7998 816.0737 C +40.8428 815.8169 40.4053 818.0737 42.1992 818.6733 C +42.5557 815.4302 40.749 813.4673 39.3994 811.2739 C +37.5996 811.7231 36.3115 812.2739 33.7998 812.2739 C +33.7998 810.0112 33.793 805.686 33.1992 804.4731 c +33.168 804.4233 32.6182 803.5981 32.7998 803.4731 c +33.9248 802.7231 34.6367 801.4048 34.1992 800.0737 c +33.9365 799.3052 32.999 797.7427 33.7998 797.2739 c +35.624 796.2114 37.168 797.3052 38.7998 796.8735 C +40.0742 800.6548 40.874 803.8608 42.1992 807.8735 C +42.624 807.6987 42.6924 807.5425 42.999 807.2739 C +44.7861 810.73 46.999 812.7485 47.999 817.0737 C +48.3994 815.8735 L +49.7373 815.98 49.999 816.0737 V +48.4678 814.7856 47.0674 812.6235 46.999 812.4731 c +44.9561 809.3237 44.4111 808.8481 43.999 807.2739 C +44.9932 807.2427 44.6494 807.5552 45.5986 806.6733 C +44.6436 805.8989 45.2686 805.9048 44.7998 805.0737 c +44.7617 805.0171 44.0742 805.0737 43.999 805.0737 C +43.624 803.2427 42.4307 802.436 41.999 801.0737 c +41.3994 799.2046 41.5557 798.2983 40.3994 796.4741 c +38.4561 793.4302 38.249 794.9546 34.5996 793.8745 c +33.7686 792.7495 33.5996 792.6733 v +32.6748 792.2983 31.1309 792.1987 30.1992 792.0737 C +30.9619 790.1802 31.7998 790.4741 34.3994 790.4741 C +35.0371 788.0308 35.1934 789.2681 37.1992 788.2739 c +38.0742 787.8433 38.793 786.0991 39.3994 785.2739 c +39.999 784.4614 41.499 783.8433 41.999 783.0737 c +42.1807 782.7866 41.668 782.5308 41.5996 782.4741 C +44.5049 779.7056 47.499 773.8804 51.1992 772.0737 c +51.3242 772.0181 51.7803 771.8862 51.7998 771.8745 c +52.1436 771.6929 52.2178 771.3745 52.3994 771.2749 C +50.8682 771.6245 51.3057 771.1558 50.999 771.2749 C +51.2178 769.8745 50.5986 769.8745 V +49.4561 774.1743 45.3369 775.1304 43.5986 778.8745 C +43.3555 778.4624 42.8369 778.3179 42.7998 778.2749 C +40.999 780.8931 38.7305 783.2056 37.3994 786.0737 C +36.4248 785.9429 35.9678 785.9429 34.999 786.0737 C +35.1553 784.6245 35.5244 783.0181 35.3994 781.2749 c +35.2432 779.2612 34.8623 776.6558 34.5996 774.6743 C +35.3623 774.3237 36.1309 773.9556 36.7998 773.4741 c +37.2559 773.1499 38.1992 772.437 38.3994 771.8745 c +39.1621 769.6929 38.1992 765.2183 38.5996 762.0747 c +38.6748 761.437 39.2871 760.2368 39.1992 759.4741 c +39.1494 759.0991 38.4619 758.9116 38.5996 758.0747 c +38.7686 757.0122 39.7549 755.5435 40.1992 754.6753 c +41.0811 752.9253 41.6924 751.1128 41.999 748.8745 C +40.3496 749.8628 41.7373 748.5815 40.1992 748.0747 c +39.7061 747.9185 40.1992 748.8745 Y +40.3115 751.7866 39.9424 753.1685 38.999 755.2749 c +38.9492 755.3804 38.0498 756.2866 37.999 756.4741 c +37.2178 759.269 36.6367 763.4556 36.999 767.4741 c +37.1992 769.7495 37.5303 770.1245 35.999 770.8745 c +35.3311 771.2056 34.8994 771.2437 33.999 771.4741 C +33.3057 768.7056 32.5557 766.3491 30.999 764.4741 c +27.2686 759.9995 20.481 761.3491 17.9995 766.0737 c +17.1621 767.6675 16.3745 769.3179 15.7998 771.2749 C +14.7061 770.8745 14.106 770.73 13 770.2749 C +13.5308 766.6675 12.6812 763.0366 12.7998 760.0747 C +12.5308 760.4312 12.0562 760.731 11.7998 761.0747 C +10.4248 756.4253 6.0376 755.6304 5 750.2749 C +4.7998 752.7437 4 751.8745 Y +3.20605 751.9312 3.625 752.4683 3.6001 752.4741 C +5.65625 753.9116 9.43115 757.1304 10.3999 759.4741 c +11.6875 762.606 10.7437 769.3433 12 771.8745 c +12.4497 772.7993 14.3062 773.5366 15.1997 774.0737 C +14.7124 777.6558 14.1436 781.7925 14.5996 785.8745 C +13.8184 785.8745 12.9746 785.8745 12.1997 785.8745 C +11.6997 783.9868 10.1812 779.5679 9.19971 778.0737 c +9.125 777.9683 8.5376 778.2368 8.3999 778.2749 C +8.10596 777.1675 8.2876 776.6616 7.7998 775.6743 c +7.79346 775.6675 7.2251 775.6743 7.19971 775.6743 C +6.08105 773.3062 2.625 770.9116 4.19971 767.8745 C +3.88721 768.0425 3.49365 768.4312 3.3999 768.4741 C +3.33105 768.4741 3.26855 768.4741 3.19971 768.4741 C +3 768.6675 3.08105 769.1304 3 769.4741 C +0.90625 769.6245 1.65625 769.6187 2.6001 770.4741 c +3.94971 771.7124 5.19385 773.7368 6.19971 775.2749 c +4.34375 772.1187 8.3125 778.4487 7 778.4741 C +7.51855 779.5181 8.44336 780.4995 9 781.4741 C +8.78125 781.5181 9.19971 782.2749 Y +8.9751 782.2241 8.8999 782.1812 8.6001 782.0737 C +10.2813 783.4116 10.3062 786.6304 12 787.8745 c +14.1748 789.48 14.7935 787.48 15.5996 790.6733 C +18.1558 790.6733 19.1245 790.0806 19.7998 792.0737 C +19.8496 792.0864 18.7998 792.0737 Y +18.0435 792.2983 16.062 792.2495 15.1997 792.6733 c +14.9434 792.8052 14.6685 793.7808 14.3999 793.8745 c +10.856 795.1489 10.5747 792.9116 8.6001 796.6733 c +6.70605 800.2739 6.4126 803.3481 4.19971 806.0737 C +4.76855 806.9175 4.86865 806.7544 5.3999 807.0737 C +3.6626 809.73 2.69385 813.2114 0 814.2739 C +0 814.3481 0.037598 815.0552 0 815.0737 C +1.2251 815.4106 1.44385 815.311 2.3999 815.8735 C +1.44385 813.9487 5.23096 809.1489 6.3999 806.6733 C +7.1748 807.186 7.13721 807.6177 7.7998 806.2739 C +7.70605 806.2173 7.5874 805.2612 7.6001 805.0737 c +7.75 802.3608 9.5625 799.7358 10.1997 796.6733 C +12.1748 797.1802 13.3999 796.6304 15.5996 797.2739 C +15.2061 799.3921 14.6309 800.1548 14.1997 802.2739 C +15.4873 802.5171 15.231 802.6548 16.1997 803.4731 c +16.437 803.6802 15.8184 804.23 15.7998 804.2739 c +15.2749 805.3735 15.1875 810.2046 15.3999 812.0737 C +13.7124 811.73 12.3311 810.6606 11.1997 810.4731 c +10.7749 810.4106 10.4248 810.4731 10 810.4731 C +9.2749 812.2671 6.80615 814.355 6.6001 815.4731 c +6.4375 816.3481 6.875 816.7856 7 817.2729 C +7.1499 817.1733 7.94336 817.0854 8 817.0737 C +8.44336 814.0796 9.2373 813.8921 10.5996 811.4731 C +12.6558 811.8794 14.0186 812.7231 16.3999 813.0737 C +13.4497 817.5854 12.0747 823.5542 9.3999 828.4731 c +8.1875 830.6978 5.5249 832.2856 5.19971 835.2729 c +5.16846 835.5103 5.38086 836.1919 5.3999 836.0728 C +5.79346 838.0298 6.21875 838.8296 7.19971 840.0728 c +7.50586 840.4731 7.81836 840.9673 8.19971 841.2729 c +8.3999 841.4419 8.9624 841.8228 9.19971 841.8735 c +b +%%PageTrailer +gsave annotatepage grestore showpage +%%Trailer +Adobe_Illustrator_AI3 /terminate get exec +Adobe_pattern_AI3 /terminate get exec +Adobe_customcolor /terminate get exec +Adobe_cshow /terminate get exec +Adobe_cmykcolor /terminate get exec +Adobe_packedarray /terminate get exec +%%EOF diff --git a/htdocs/includes/tcpdf/images/image_demo.jpg b/htdocs/includes/tcpdf/images/image_demo.jpg new file mode 100644 index 00000000000..262bce272c8 Binary files /dev/null and b/htdocs/includes/tcpdf/images/image_demo.jpg differ diff --git a/htdocs/includes/tcpdf/images/image_with_alpha.png b/htdocs/includes/tcpdf/images/image_with_alpha.png new file mode 100644 index 00000000000..27df6afcb23 Binary files /dev/null and b/htdocs/includes/tcpdf/images/image_with_alpha.png differ diff --git a/htdocs/includes/tcpdf/images/img.png b/htdocs/includes/tcpdf/images/img.png new file mode 100644 index 00000000000..1816e3f0a61 Binary files /dev/null and b/htdocs/includes/tcpdf/images/img.png differ diff --git a/htdocs/includes/tcpdf/images/logo_example.gif b/htdocs/includes/tcpdf/images/logo_example.gif new file mode 100644 index 00000000000..010b487d938 Binary files /dev/null and b/htdocs/includes/tcpdf/images/logo_example.gif differ diff --git a/htdocs/includes/tcpdf/images/logo_example.jpg b/htdocs/includes/tcpdf/images/logo_example.jpg new file mode 100644 index 00000000000..6d9b8fd8076 Binary files /dev/null and b/htdocs/includes/tcpdf/images/logo_example.jpg differ diff --git a/htdocs/includes/tcpdf/images/logo_example.png b/htdocs/includes/tcpdf/images/logo_example.png new file mode 100644 index 00000000000..13799452be3 Binary files /dev/null and b/htdocs/includes/tcpdf/images/logo_example.png differ diff --git a/htdocs/includes/tcpdf/images/pelican.ai b/htdocs/includes/tcpdf/images/pelican.ai new file mode 100644 index 00000000000..e4d461e9689 --- /dev/null +++ b/htdocs/includes/tcpdf/images/pelican.ai @@ -0,0 +1,147 @@ +%!PS-Adobe-3.0 +%%Creator: Adobe Illustrator(TM) 3.2 +%%AI8_CreatorVersion: 12.0.0 +%%For: (fluxus) (x) +%%Title: (pelican.ai) +%%CreationDate: 4/15/2006 11:28 PM +%%BoundingBox: 38 221 564 654 +%%DocumentProcessColors: Black +%%DocumentNeededResources: procset Adobe_packedarray 2.0 0 +%%+ procset Adobe_cshow 1.1 0 +%%+ procset Adobe_customcolor 1.0 0 +%%+ procset Adobe_pattern_AI3 1.0 0 +%%+ procset Adobe_Illustrator_AI3 1.0 1 +%AI3_ColorUsage: Color +%%CMYKCustomColor: 1 1 1 1 ([Registration]) +%AI3_TemplateBox: 298.5 420.3896 298.5 420.3896 +%AI3_TileBox: 0.157715 0.044861 595.1177 841.9648 +%AI3_DocumentPreview: None +%%PageOrigin:-32 11.8896 +%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments +%%BeginProlog +%%IncludeResource: procset Adobe_packedarray 2.0 0 +Adobe_packedarray /initialize get exec +%%IncludeResource: procset Adobe_cshow 1.1 0 +%%IncludeResource: procset Adobe_customcolor 1.0 0 +%%IncludeResource: procset Adobe_pattern_AI3 1.0 0 +%%IncludeResource: procset Adobe_Illustrator_AI3 1.0 1 +%%EndProlog +%%BeginSetup +Adobe_cshow /initialize get exec +Adobe_customcolor /initialize get exec +Adobe_pattern_AI3 /initialize get exec +Adobe_Illustrator_AI3 /initialize get exec +%%EndSetup +0 A +0 O +0.823529 g +0 J 0 j 1 w 4 M []0 d +406.3574 653.9336 m +464.8369 654.4839 476.1016 604.7227 506.8555 577.2656 c +518.2334 567.1074 538.876 556.4058 541.0449 537.8945 C +525.793 545.1372 515.3398 557.5967 502.1924 566.9033 c +492.1299 574.0298 478.9131 577.0991 467.4844 582.9634 c +454.5439 589.603 441.3213 599.4785 424.4873 589.1792 c +413.7012 582.5776 412.9746 565.8579 406.3574 554.9893 c +401.2715 546.6338 390.2637 539.4668 382.0098 534.269 c +370.5801 527.0684 326.3232 509.3872 322.4365 499.042 C +331.416 493.8628 340.3955 488.6816 349.375 483.5005 C +370.4541 474.8203 420.0293 453.8994 428.1152 435.3247 C +427.9424 435.3247 427.7695 435.3247 427.5967 435.3247 C +422.0781 438.2988 418.0566 441.834 411.0205 443.6128 C +411.0205 442.9214 411.0205 442.2324 411.0205 441.541 C +415.6807 438.0884 420.3457 434.6333 425.0059 431.1807 C +426.5615 431.6968 428.1152 432.2153 429.6689 432.7339 C +436.3252 429.1694 440.0146 421.5771 446.2451 417.1924 c +468.749 401.3643 540.2861 360.04 557.624 408.9043 C +559.6963 408.7314 561.7676 408.5586 563.8398 408.3857 C +564.2002 369.6592 525.0967 377.3896 496.4951 382.4844 c +485.8457 384.3838 476.0742 379.3203 465.4141 380.9307 c +458.0371 382.0459 454.999 385.5068 447.8008 386.1123 C +444.6514 384.4326 443.9072 382.2314 441.583 379.8955 C +441.7559 379.5498 441.9287 379.2041 442.1016 378.8584 C +453.1211 376.5439 474.8496 358.7158 485.6162 352.4404 c +499.0371 344.6182 513.7188 346.8398 528.6133 341.043 C +531.0205 346.2412 546.2559 365.248 551.9258 365.9072 C +552.0986 365.3896 552.2715 364.8721 552.4424 364.3545 C +553.4883 360.7607 550.0078 356.1338 548.2988 353.4756 c +539.4346 339.6855 527.2559 336.8584 503.748 337.415 C +507.8379 329.7158 516.5977 331.1191 522.3965 325.501 C +510.8311 324.9131 495.6875 323.7822 486.6533 327.5732 C +483.0273 329.6455 479.4004 331.7178 475.7744 333.79 C +468.749 335.082 467.1133 328.6885 461.7891 327.5732 c +451.8096 325.4854 442.6299 328.9424 433.8125 329.6455 C +427.6152 314.2881 411.4697 330.1348 399.1045 326.5381 C +395.1328 323.6025 391.1621 320.666 387.1904 317.7314 C +380.2559 315.4561 375.2725 320.9756 368.0234 319.2861 C +363.707 316.8682 359.3877 314.4502 355.0732 312.0322 C +346.0449 325.4189 337.3516 308.3584 325.0264 313.0693 c +319.249 315.2764 317.3877 322.9951 312.0762 324.9834 c +302.3477 328.626 290.0044 321.8848 280.4756 325.501 c +275.7075 327.3125 274.5767 334.043 270.1157 335.8623 C +266.6616 335.6885 263.208 335.5166 259.7544 335.3428 C +254.7881 336.4834 253.1904 341.9092 248.8755 343.6338 C +245.7686 343.8066 242.6592 343.9775 239.5513 344.1494 C +236.9614 347.4326 234.3711 350.7119 231.7803 353.9941 C +227.1187 356.2158 222.1738 353.7666 218.312 356.0654 C +217.707 358.9385 216.9556 361.4961 214.6855 362.8008 C +210.5415 362.9736 206.396 363.1465 202.2529 363.3174 C +200.6987 365.3896 199.145 367.4639 197.5903 369.5332 C +193.9648 370.2246 190.3384 370.916 186.7119 371.6074 C +183.0776 383.6631 179.9097 377.1084 172.7246 383.0029 C +172.0347 384.5557 171.3433 386.1123 170.6528 387.665 C +167.4033 390.2705 160.396 389.1025 157.1846 391.291 C +150.2778 399.2334 143.3691 407.1787 136.4629 415.1201 C +135.7725 415.1201 135.0811 415.1201 134.3906 415.1201 C +129.8872 408.9912 123.022 405.2783 118.332 399.5791 c +109.856 389.2803 103.8877 376.3271 98.6465 362.8008 c +91.7344 344.96 87.7056 323.8467 83.6235 304.2627 c +81.5273 294.2061 81.9316 284.2168 78.4434 275.7705 c +74.5234 266.2822 66.5 259.7139 60.8296 251.9404 c +54.7129 243.5557 51.2388 224.7588 40.627 221.3779 C +40.7998 221.7217 40.9727 222.0674 41.144 222.4131 C +39.79 227.2139 42.2383 230.333 43.2163 234.3291 C +41.1147 235.4502 39.3652 235.8232 38.5547 238.4736 C +40.1084 244.3438 41.6626 250.2139 43.2163 256.085 C +42.6357 258.7764 38.5103 262.4824 40.1084 267.4814 c +41.354 271.3818 44.9365 271.5908 45.2896 277.3262 C +43.8086 279.5244 41.9907 280.7529 40.1084 282.5049 C +40.1084 282.6777 40.1084 282.8506 40.1084 283.0234 C +52.8052 283.6553 57.1475 290.5166 61.3481 299.6006 C +53.7988 301.8721 41.7808 303.3838 38.5547 309.96 C +46.126 307.9092 59.4692 305.3623 67.0459 307.3721 C +69.4639 315.3115 71.8813 323.2568 74.2993 331.1992 C +77.9248 347.085 81.5513 362.9736 85.1777 378.8584 C +87.957 392.2158 84.7827 409.2002 90.3579 419.7832 C +92.7749 421.6826 95.1934 423.5815 97.6104 425.481 C +99.3364 431.1782 101.064 436.8784 102.7905 442.5757 C +107.7554 450.8428 114.814 456.6777 119.3677 465.8892 C +115.0508 468.8232 110.7329 471.7593 106.417 474.6938 C +106.7617 476.2495 107.1074 477.8027 107.4531 479.3564 C +93.3389 475.1343 85.5649 470.4336 75.8525 462.7798 C +65.6665 462.7798 55.4756 462.7798 45.2896 462.7798 C +45.4609 463.1255 45.6338 463.4712 45.8066 463.8169 C +74.2612 470.5581 82.3726 479.2275 102.7905 491.7886 C +114.7041 497.832 126.6211 503.8774 138.5347 509.9204 C +142.1606 513.2007 145.7881 516.4824 149.4136 519.7622 C +168.4629 531.9883 188.5562 540.2256 210.5415 549.8081 c +217.877 553.0059 224.0391 558.6489 232.2988 561.2056 c +245.8008 565.3853 266.6577 569.8081 284.1025 566.3867 C +292.7354 563.4507 301.3701 560.5142 310.0039 557.5801 C +324.5254 553.9165 346.2764 558.8447 355.0732 564.3149 c +369.0625 573.0098 372.4688 593.5171 375.793 613.0088 C +376.6572 620.606 377.5195 628.2046 378.3838 635.8013 C +383.2783 647.8481 394.3535 648.647 406.3574 653.9336 C +f +%%PageTrailer +gsave annotatepage grestore showpage +%%Trailer +Adobe_Illustrator_AI3 /terminate get exec +Adobe_pattern_AI3 /terminate get exec +Adobe_customcolor /terminate get exec +Adobe_cshow /terminate get exec +Adobe_packedarray /terminate get exec +%%EOF diff --git a/htdocs/includes/tcpdf/images/tcpdf_cell.png b/htdocs/includes/tcpdf/images/tcpdf_cell.png new file mode 100644 index 00000000000..98a1553a82e Binary files /dev/null and b/htdocs/includes/tcpdf/images/tcpdf_cell.png differ diff --git a/htdocs/includes/tcpdf/images/tcpdf_logo.jpg b/htdocs/includes/tcpdf/images/tcpdf_logo.jpg new file mode 100644 index 00000000000..257f8fb6d93 Binary files /dev/null and b/htdocs/includes/tcpdf/images/tcpdf_logo.jpg differ diff --git a/htdocs/includes/tcpdf/images/tcpdf_signature.png b/htdocs/includes/tcpdf/images/tcpdf_signature.png new file mode 100644 index 00000000000..a4f06372511 Binary files /dev/null and b/htdocs/includes/tcpdf/images/tcpdf_signature.png differ diff --git a/htdocs/includes/tcpdf/images/testsvg.svg b/htdocs/includes/tcpdf/images/testsvg.svg new file mode 100644 index 00000000000..fd8314e3484 --- /dev/null +++ b/htdocs/includes/tcpdf/images/testsvg.svg @@ -0,0 +1,328 @@ + + + + + TCPDF SVG EXAMPLE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + www.tcpdf.org + + + + + + + + SVG + diff --git a/htdocs/includes/tcpdf/images/tiger.ai b/htdocs/includes/tcpdf/images/tiger.ai new file mode 100644 index 00000000000..37c8b5b4848 --- /dev/null +++ b/htdocs/includes/tcpdf/images/tiger.ai @@ -0,0 +1,3599 @@ +%!PS-Adobe-3.0 +%%Creator: Adobe Illustrator(TM) 3.2 +%%AI8_CreatorVersion: 12.0.0 +%%For: (fluxus) (x) +%%Title: (tiger.ai) +%%CreationDate: 4/14/2006 11:35 PM +%%BoundingBox: 22 167 567 730 +%%DocumentProcessColors: Cyan Magenta Yellow Black +%%DocumentNeededResources: procset Adobe_packedarray 2.0 0 +%%+ procset Adobe_cmykcolor 1.1 0 +%%+ procset Adobe_cshow 1.1 0 +%%+ procset Adobe_customcolor 1.0 0 +%%+ procset Adobe_pattern_AI3 1.0 0 +%%+ procset Adobe_Illustrator_AI3 1.0 1 +%AI3_ColorUsage: Color +%%CMYKCustomColor: 0.74902 0.678431 0.670588 0.901961 ([Registration]) +%AI3_TemplateBox: 306.5 396.5 306.5 396.5 +%AI3_TileBox: 0 1 612 793 +%AI3_DocumentPreview: None +%%PageOrigin:0 0 +%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments +%%BeginProlog +%%IncludeResource: procset Adobe_packedarray 2.0 0 +Adobe_packedarray /initialize get exec +%%IncludeResource: procset Adobe_cmykcolor 1.1 0 +%%IncludeResource: procset Adobe_cshow 1.1 0 +%%IncludeResource: procset Adobe_customcolor 1.0 0 +%%IncludeResource: procset Adobe_pattern_AI3 1.0 0 +%%IncludeResource: procset Adobe_Illustrator_AI3 1.0 1 +%%EndProlog +0 A +u +0 O +1 g +0 J 0 j 1 w 4 M []0 d +90.5 477.5 m +90.5767 475.4434 89.7798 475.5801 v +88.7646 475.4863 70.6641 528.3682 48.02 525.9795 c +67.6445 533.9883 90.5 477.5 v +F +0 R +0 G +0.1892 w 10 M +90.5 477.5 m +90.5767 475.4434 89.7798 475.5801 v +88.7646 475.4863 70.6641 528.3682 48.02 525.9795 c +67.6445 533.9883 90.5 477.5 v +90.5 477.5 l +s +0 O +1 g +1 w 4 M +94.3398 480.8594 m +93.7446 478.8555 92.8999 479.1797 v +92.0552 479.5107 93.0249 535.3975 71.0601 540.8594 c +92.0981 541.709 94.3398 480.8594 v +F +0 R +0 G +0.1892 w 10 M +94.3398 480.8594 m +93.7446 478.8555 92.8999 479.1797 v +92.0552 479.5107 93.0249 535.3975 71.0601 540.8594 c +92.0981 541.709 94.3398 480.8594 v +94.3398 480.8594 l +s +0 O +1 g +1 w 4 M +124.5801 434.2998 m +126.3872 433.2363 125.7798 432.3799 v +125.3525 431.7461 71.2617 445.8291 60.98 425.6602 c +64.9063 446.4102 124.5801 434.2998 v +F +0 R +0 G +0.1892 w 10 M +124.5801 434.2998 m +126.3872 433.2363 125.7798 432.3799 v +125.3525 431.7461 71.2617 445.8291 60.98 425.6602 c +64.9063 446.4102 124.5801 434.2998 v +124.5801 434.2998 l +s +0 O +1 g +1 w 4 M +121.46 423.0195 m +123.5381 422.624 123.3799 421.8193 v +123.0249 420.8838 67.2534 417.207 63.8599 394.7002 c +61.04 415.7598 121.46 423.0195 v +F +0 R +0 G +0.1892 w 10 M +121.46 423.0195 m +123.5381 422.624 123.3799 421.8193 v +123.0249 420.8838 67.2534 417.207 63.8599 394.7002 c +61.04 415.7598 121.46 423.0195 v +121.46 423.0195 l +s +0 O +1 g +1 w 4 M +116.8999 429.0195 m +118.8223 428.4082 118.3398 427.5801 v +118.0615 426.7617 62.3481 431.2617 55.7002 409.5801 c +55.9902 430.7334 116.8999 429.0195 v +F +0 R +0 G +0.1892 w 10 M +116.8999 429.0195 m +118.8223 428.4082 118.3398 427.5801 v +118.0615 426.7617 62.3481 431.2617 55.7002 409.5801 c +55.9902 430.7334 116.8999 429.0195 v +116.8999 429.0195 l +s +0 O +1 g +1 w 4 M +105.1401 449.1797 m +106.5298 447.6514 105.8599 447.0195 v +105.123 446.5039 57.0054 474.9434 41.54 458.2998 c +51.0586 477.2549 105.1401 449.1797 v +F +0 R +0 G +0.1892 w 10 M +105.1401 449.1797 m +106.5298 447.6514 105.8599 447.0195 v +105.123 446.5039 57.0054 474.9434 41.54 458.2998 c +51.0586 477.2549 105.1401 449.1797 v +105.1401 449.1797 l +s +0 O +1 g +1 w 4 M +96.7402 444.6201 m +98.3936 443.2139 97.7002 442.46 v +97.1265 441.9131 46.0977 464.7266 32.4199 446.54 c +39.9297 466.3496 96.7402 444.6201 v +F +0 R +0 G +0.1892 w 10 M +96.7402 444.6201 m +98.3936 443.2139 97.7002 442.46 v +97.1265 441.9131 46.0977 464.7266 32.4199 446.54 c +39.9297 466.3496 96.7402 444.6201 v +96.7402 444.6201 l +s +0 O +1 g +1 w 4 M +93.8599 440.0596 m +95.6982 438.9629 95.0601 438.1396 v +94.6206 437.5059 40.9614 453.1494 30.02 433.3398 c +34.6279 453.917 93.8599 440.0596 v +F +0 R +0 G +0.1892 w 10 M +93.8599 440.0596 m +95.6982 438.9629 95.0601 438.1396 v +94.6206 437.5059 40.9614 453.1494 30.02 433.3398 c +34.6279 453.917 93.8599 440.0596 v +93.8599 440.0596 l +s +0 O +1 g +1 w 4 M +105.6201 439.3398 m +106.9736 437.7129 106.1001 437.1797 v +105.4302 436.7549 61.3545 471.1279 43.7002 456.6201 c +55.7529 474.1826 105.6201 439.3398 v +F +0 R +0 G +0.1892 w 10 M +105.6201 439.3398 m +106.9736 437.7129 106.1001 437.1797 v +105.4302 436.7549 61.3545 471.1279 43.7002 456.6201 c +55.7529 474.1826 105.6201 439.3398 v +105.6201 439.3398 l +s +0 O +1 g +1 w 4 M +84.02 471.2598 m +84.6416 469.2607 83.7798 469.0996 v +82.8799 468.8213 51.4209 515.0215 30.2598 506.7803 c +47.0215 519.6416 84.02 471.2598 v +F +0 R +0 G +0.1892 w 10 M +84.02 471.2598 m +84.6416 469.2607 83.7798 469.0996 v +82.8799 468.8213 51.4209 515.0215 30.2598 506.7803 c +47.0215 519.6416 84.02 471.2598 v +84.02 471.2598 l +s +0 O +1 g +1 w 4 M +84.7402 463.5801 m +85.8174 461.7725 84.98 461.4199 v +84.1929 460.9639 43.5078 499.292 24.7402 486.6201 c +38.2158 502.8535 84.7402 463.5801 v +F +0 R +0 G +0.1892 w 10 M +84.7402 463.5801 m +85.8174 461.7725 84.98 461.4199 v +84.1929 460.9639 43.5078 499.292 24.7402 486.6201 c +38.2158 502.8535 84.7402 463.5801 v +84.7402 463.5801 l +s +0 O +1 g +1 w 4 M +84.5 458.7803 m +85.8535 457.0732 84.98 456.6201 v +84.3105 456.1182 40.2344 490.4883 22.5801 476.0596 c +34.6328 493.541 84.5 458.7803 v +F +0 R +0 G +0.1892 w 10 M +84.5 458.7803 m +85.8535 457.0732 84.98 456.6201 v +84.3105 456.1182 40.2344 490.4883 22.5801 476.0596 c +34.6328 493.541 84.5 458.7803 v +84.5 458.7803 l +s +0 O +1 g +1 w 4 M +82.1001 456.8594 m +82.7407 450.2168 83.8281 442.9902 85.7002 439.5801 c +81.7808 425.9189 91.46 411.5 v +91.0205 403.4795 92.8999 399.9795 v +97.1816 390.7207 102.5 389.8994 v +106.7334 389.1299 116.3286 385.7529 127.2197 384.1396 c +146.0215 368.7197 142.5801 354.6201 v +142.0615 336.6006 138.02 334.9395 v +150.8599 347.1582 140.4199 328.7002 v +135.3799 308.0596 l +163.6206 331.7598 146.4199 311.4199 v +135.3799 282.8594 l +157.0205 303.1592 149.0601 293.8994 v +145.7002 284.2998 l +193.1001 314.1582 159.1401 281.6602 v +168.02 285.5596 172.8198 282.3799 v +180.3418 283.8008 179.54 282.1396 v +156.5815 270.6006 152.6602 250.46 v +161.8613 261.3584 158.4199 249.5 v +158.8999 236.7803 l +163.1816 260.4795 162.7402 219.0195 v +183.8599 238.9209 171.1401 216.1396 v +171.1401 197.6602 l +187.8198 215.5996 180.7402 201.5 v +191.7798 211.2002 187.46 194.54 v +186.5 183.0391 191.2998 195.2598 v +208.9399 229.0205 202.3398 200.2998 v +201.4614 179.0791 206.6602 195.2598 v +207.1807 183.9199 217.2197 176.0596 v +215.9814 231.8789 230.1802 192.3799 v +234.5 174.1396 l +237.541 184.3594 237.1401 189.9795 v +253.3809 208.1191 246.02 181.3398 v +262.6206 206.3594 259.2197 191.8994 v +250.7407 174.2402 252.5 168.8594 v +270.98 207.2402 272.4199 208.9395 v +270.1016 162.3584 282.02 201.9795 v +288.1401 188.7607 285.1401 183.9795 v +293.8613 192.7207 293.0601 196.2197 v +298.04 205.2607 301.2197 190.2197 v +303.1016 179.96 304.8198 183.5 v +309.2598 157.0781 310.5801 182.0596 v +312.3418 197.1201 304.3398 209.8994 v +305.2998 213.3994 302.1802 217.8193 v +317.1797 194.04 309.3799 225.7393 v +321.582 216.9199 322.8203 216.8594 v +307.9395 242.4385 317.54 237.2598 v +311.9004 248.5996 331.7002 235.3398 v +314.1006 252.999 333.3799 242.54 v +342.2617 235.3994 333.8594 246.3799 v +318.0605 264.001 342.2598 244.2197 v +355.0205 226.1602 355.9395 223.0996 v +344.9023 255.2002 340.0996 258.3799 v +349.3018 298.3203 394.5801 281.1797 v +402.1016 262.2393 407.0605 282.3799 v +421.0215 289.5195 433.46 259.0996 v +437.7422 274.1191 436.8203 277.0996 v +444.3418 275.8779 443.54 277.0996 v +457.9805 272.3594 459.3799 273.2598 v +466.7813 265.7598 467.2998 269.6602 v +477.3418 266.6406 475.2197 270.6201 v +484.8223 253.4404 485.2998 249.5 v +487.9395 264.8594 l +490.0996 261.7393 l +491.8613 270.1592 491.0605 271.5801 v +490.1025 272.7988 512.9814 264.001 518.1797 241.0996 c +520.5801 231.9795 l +527.0625 248.1602 525.3799 252.6201 v +531.0225 251.6787 531.3799 246.8594 v +535.8613 272.3594 530.6602 279.0195 v +535.4219 279.8408 536.6602 275.8994 v +536.6602 283.8193 l +544.6621 282.9199 544.5801 285.5 v +549.502 289.959 551.7793 284.7803 v +538.0615 323.4004 558.2598 302.2998 v +566.2207 290.4004 562.3398 311.1797 v +558.3008 331.7598 553.9014 333.5186 559.2207 333.9795 c +560.0625 337.9209 557.7793 339.7393 v +555.6602 341.4385 559.2207 339.7393 y +564.4609 335.2803 558.7402 359.4199 v +565.7813 357.7207 552.5 389.8994 v +555.6602 392.4795 551.2998 401.6602 v +560.0625 396.8789 563.0605 398.54 v +562.7021 400.3994 559.2207 404.7803 v +535.4219 465.0801 557.7793 440.7803 v +570.8965 425.9746 563.7793 451.0996 v +553.834 477.4658 554.6602 482.2998 v +82.1001 456.8594 l +F +0 R +0 G +1.1 w 10 M +82.1001 456.8594 m +82.7407 450.2168 83.8281 442.9902 85.7002 439.5801 c +81.7808 425.9189 91.46 411.5 v +91.0205 403.4795 92.8999 399.9795 v +97.1816 390.7207 102.5 389.8994 v +106.7334 389.1299 116.3286 385.7529 127.2197 384.1396 c +146.0215 368.7197 142.5801 354.6201 v +142.0615 336.6006 138.02 334.9395 v +150.8599 347.1582 140.4199 328.7002 v +135.3799 308.0596 l +163.6206 331.7598 146.4199 311.4199 v +135.3799 282.8594 l +157.0205 303.1592 149.0601 293.8994 v +145.7002 284.2998 l +193.1001 314.1582 159.1401 281.6602 v +168.02 285.5596 172.8198 282.3799 v +180.3418 283.8008 179.54 282.1396 v +156.5815 270.6006 152.6602 250.46 v +161.8613 261.3584 158.4199 249.5 v +158.8999 236.7803 l +163.1816 260.4795 162.7402 219.0195 v +183.8599 238.9209 171.1401 216.1396 v +171.1401 197.6602 l +187.8198 215.5996 180.7402 201.5 v +191.7798 211.2002 187.46 194.54 v +186.5 183.0391 191.2998 195.2598 v +208.9399 229.0205 202.3398 200.2998 v +201.4614 179.0791 206.6602 195.2598 v +207.1807 183.9199 217.2197 176.0596 v +215.9814 231.8789 230.1802 192.3799 v +234.5 174.1396 l +237.541 184.3594 237.1401 189.9795 v +253.3809 208.1191 246.02 181.3398 v +262.6206 206.3594 259.2197 191.8994 v +250.7407 174.2402 252.5 168.8594 v +270.98 207.2402 272.4199 208.9395 v +270.1016 162.3584 282.02 201.9795 v +288.1401 188.7607 285.1401 183.9795 v +293.8613 192.7207 293.0601 196.2197 v +298.04 205.2607 301.2197 190.2197 v +303.1016 179.96 304.8198 183.5 v +309.2598 157.0781 310.5801 182.0596 v +312.3418 197.1201 304.3398 209.8994 v +305.2998 213.3994 302.1802 217.8193 v +317.1797 194.04 309.3799 225.7393 v +321.582 216.9199 322.8203 216.8594 v +307.9395 242.4385 317.54 237.2598 v +311.9004 248.5996 331.7002 235.3398 v +314.1006 252.999 333.3799 242.54 v +342.2617 235.3994 333.8594 246.3799 v +318.0605 264.001 342.2598 244.2197 v +355.0205 226.1602 355.9395 223.0996 v +344.9023 255.2002 340.0996 258.3799 v +349.3018 298.3203 394.5801 281.1797 v +402.1016 262.2393 407.0605 282.3799 v +421.0215 289.5195 433.46 259.0996 v +437.7422 274.1191 436.8203 277.0996 v +444.3418 275.8779 443.54 277.0996 v +457.9805 272.3594 459.3799 273.2598 v +466.7813 265.7598 467.2998 269.6602 v +477.3418 266.6406 475.2197 270.6201 v +484.8223 253.4404 485.2998 249.5 v +487.9395 264.8594 l +490.0996 261.7393 l +491.8613 270.1592 491.0605 271.5801 v +490.1025 272.7988 512.9814 264.001 518.1797 241.0996 c +520.5801 231.9795 l +527.0625 248.1602 525.3799 252.6201 v +531.0225 251.6787 531.3799 246.8594 v +535.8613 272.3594 530.6602 279.0195 v +535.4219 279.8408 536.6602 275.8994 v +536.6602 283.8193 l +544.6621 282.9199 544.5801 285.5 v +549.502 289.959 551.7793 284.7803 v +538.0615 323.4004 558.2598 302.2998 v +566.2207 290.4004 562.3398 311.1797 v +558.3008 331.7598 553.9014 333.5186 559.2207 333.9795 c +560.0625 337.9209 557.7793 339.7393 v +555.6602 341.4385 559.2207 339.7393 y +564.4609 335.2803 558.7402 359.4199 v +565.7813 357.7207 552.5 389.8994 v +555.6602 392.4795 551.2998 401.6602 v +560.0625 396.8789 563.0605 398.54 v +562.7021 400.3994 559.2207 404.7803 v +535.4219 465.0801 557.7793 440.7803 v +570.8965 425.9746 563.7793 451.0996 v +553.834 477.4658 554.6602 482.2998 v +82.1001 456.8594 l +82.1001 456.8594 l +s +0 O +0.164706 0.627451 1 0.031373 k +1 w 4 M +554.6602 482.0596 m +555.3799 481.7715 557.8066 480.5361 559.2197 478.7002 c +566.6621 466.8418 560.9004 487.0996 v +550.8223 518.7607 560.4199 506.54 v +567.1016 498.5215 563.54 513.5 v +559.3301 531.5498 556.5801 538.46 y +569.3027 533.2803 539.7793 576.8594 v +549.6201 572.7793 l +527.9414 616.4404 504.2598 622.2197 v +495.3799 628.7002 l +537.623 670.5605 523.46 711.0195 v +516.0605 716.7607 505.46 706.7002 v +498.4609 701.3594 491.7793 703.0996 v +457.9805 701.8018 455.7793 701.8994 v +453.582 701.8018 415.3018 742.7217 343.2197 723.2598 c +337.4219 721.1602 332.6602 722.54 v +312.3418 740.0811 258.7397 715.0996 v +247.6616 712.8008 246.02 712.7002 v +244.1406 712.8008 241.0615 712.8008 232.3398 705.7393 c +223.46 698.7197 223.0205 697.8418 220.8198 696.1396 c +202.7817 683.7607 197.54 682.9395 v +184.7407 675.8408 180.02 664.9395 v +175.9399 663.5 l +174.1807 655.6016 173.7798 654.3799 v +168.4614 650.3213 167.54 644.0596 v +157.9014 637.5605 158.4199 632.7793 v +156.5815 627.001 155.7798 621.7393 v +147.7808 616.4404 148.5801 613.3398 v +140.2998 597.9609 141.6201 590.54 v +134.5806 590.9209 131.54 588.3799 v +130.6206 583.001 128.8999 582.6201 v +125.7798 581.2393 128.4199 576.8594 v +126.6606 573.7617 126.2598 572.0596 v +127.1001 568.9209 122.1797 562.7002 v +115.2197 542.0811 117.3799 536.2998 v +117.8599 531.0801 114.7397 529.3398 v +110.8208 529.7598 120.02 516.6201 v +120.9414 515.2393 117.3799 512.54 v +98.5015 508.6396 95.7798 490.7002 v +80.8999 474.3193 80.8999 468.6201 v +80.8999 466.0664 81.1973 462.6025 81.8599 457.5801 c +81.3418 448.3594 111.6201 447.5 v +142.0615 446.5996 554.6602 482.0596 y +F +0 R +0 G +1.1 w 10 M +554.6602 482.0596 m +555.3799 481.7715 557.8066 480.5361 559.2197 478.7002 c +566.6621 466.8418 560.9004 487.0996 v +550.8223 518.7607 560.4199 506.54 v +567.1016 498.5215 563.54 513.5 v +559.3301 531.5498 556.5801 538.46 y +569.3027 533.2803 539.7793 576.8594 v +549.6201 572.7793 l +527.9414 616.4404 504.2598 622.2197 v +495.3799 628.7002 l +537.623 670.5605 523.46 711.0195 v +516.0605 716.7607 505.46 706.7002 v +498.4609 701.3594 491.7793 703.0996 v +457.9805 701.8018 455.7793 701.8994 v +453.582 701.8018 415.3018 742.7217 343.2197 723.2598 c +337.4219 721.1602 332.6602 722.54 v +312.3418 740.0811 258.7397 715.0996 v +247.6616 712.8008 246.02 712.7002 v +244.1406 712.8008 241.0615 712.8008 232.3398 705.7393 c +223.46 698.7197 223.0205 697.8418 220.8198 696.1396 c +202.7817 683.7607 197.54 682.9395 v +184.7407 675.8408 180.02 664.9395 v +175.9399 663.5 l +174.1807 655.6016 173.7798 654.3799 v +168.4614 650.3213 167.54 644.0596 v +157.9014 637.5605 158.4199 632.7793 v +156.5815 627.001 155.7798 621.7393 v +147.7808 616.4404 148.5801 613.3398 v +140.2998 597.9609 141.6201 590.54 v +134.5806 590.9209 131.54 588.3799 v +130.6206 583.001 128.8999 582.6201 v +125.7798 581.2393 128.4199 576.8594 v +126.6606 573.7617 126.2598 572.0596 v +127.1001 568.9209 122.1797 562.7002 v +115.2197 542.0811 117.3799 536.2998 v +117.8599 531.0801 114.7397 529.3398 v +110.8208 529.7598 120.02 516.6201 v +120.9414 515.2393 117.3799 512.54 v +98.5015 508.6396 95.7798 490.7002 v +80.8999 474.3193 80.8999 468.6201 v +80.8999 466.0664 81.1973 462.6025 81.8599 457.5801 c +81.3418 448.3594 111.6201 447.5 v +142.0615 446.5996 554.6602 482.0596 y +554.6602 482.0596 l +s +0 O +0.164706 0.627451 1 0.031373 k +1 w 4 M +97.9399 457.3398 m +70.3398 500.7197 86.1802 438.6201 y +95.8613 400.8389 238.3398 442.2197 y +424.1025 475.6396 436.3398 480.1396 v +448.7402 484.4404 553.46 477.5 y +547.2207 495.9795 l +476.0215 546.9199 454.9014 521.4004 439.9395 525.7402 c +424.9805 530.2012 427.6211 519.6416 424.0996 518.7803 c +420.582 517.8799 377.4609 545.1602 370.3398 544.2197 c +363.3828 543.4014 335.5059 569.5273 351.8594 534.6201 c +369.541 497.2012 287.7007 491.4795 269.2998 503.8994 c +250.7407 516.1201 277.2197 483.5 y +297.3799 461.5615 259.46 480.1396 y +221.7007 494.1201 195.3008 465.9609 191.7798 465.0195 c +188.2617 464.2012 182.9814 460.6807 182.1802 467.6602 c +181.2197 474.7617 172.959 493.1309 138.02 464.2998 c +116.1006 445.9395 100.8198 470.0596 y +97.9399 457.3398 l +F +0.054902 0.607843 0.878431 0 k +371.7793 542.2998 m +364.8203 541.4814 336.918 567.5938 353.2998 532.7002 c +371.6406 493.9609 289.1406 489.5596 270.7402 501.9795 c +252.1807 514.2002 278.6602 481.5801 y +298.8198 459.6416 260.8999 478.2197 y +223.1406 492.2002 196.7407 464.04 193.2197 463.0996 c +189.7017 462.2813 184.4214 458.7607 183.6201 465.7393 c +182.6602 472.8418 174.543 491.0283 139.46 462.3799 c +116.1802 443.1992 101.2998 466.7002 y +97.9399 455.6602 l +70.3208 499.46 86.8999 435.2598 y +96.5815 397.4785 239.7798 440.2998 y +425.54 473.7197 437.7793 478.2197 v +450.1807 482.5205 553.9395 475.5801 y +547.9395 494.54 l +476.5801 545.6406 456.3418 519.4805 441.3799 523.8193 c +426.4209 528.2813 429.0605 517.7217 425.54 516.8594 c +422.0215 515.96 378.9004 543.2402 371.7793 542.2998 c +F +0.047059 0.537255 0.772549 0 k +373.2197 540.3799 m +366.2598 539.5615 339.0537 565.9922 354.7402 530.7793 c +372.6416 490.9395 290.5806 487.6396 272.1802 500.0596 c +253.6206 512.2783 280.1001 479.6602 y +300.2598 457.7188 262.3398 476.2998 y +224.5806 490.2793 198.1807 462.1182 194.6602 461.1797 c +191.1392 460.3594 185.8594 456.8379 185.0601 463.8193 c +184.1001 470.9189 176.127 488.9238 140.8999 460.46 c +116.2593 440.458 101.7798 463.3398 y +97.7002 453.9795 l +71.6216 496.8799 87.6201 431.8994 y +97.3018 394.1191 241.2197 438.3799 y +426.9805 471.7998 439.2197 476.2998 v +451.6211 480.5977 554.4199 473.6602 y +548.4199 493.3398 l +477.1406 544.3594 457.7813 517.5605 442.8203 521.8994 c +427.8613 526.3613 430.501 515.8018 426.9805 514.9395 c +423.4609 514.04 380.3408 541.3203 373.2197 540.3799 c +F +0.039216 0.462745 0.67451 0 k +374.6602 538.46 m +367.7002 537.6416 340.498 564.0752 356.1797 528.8594 c +374.7422 487.5293 291.4326 486.1113 273.6201 498.1396 c +255.0605 510.3604 281.54 477.7393 y +301.7002 455.8018 263.7798 474.3799 y +226.0205 488.3594 199.6206 460.2002 196.1001 459.2598 c +192.5815 458.4414 187.3018 454.9209 186.5 461.8994 c +185.54 469.001 177.7134 486.8164 142.3398 458.54 c +116.3408 437.7197 102.2598 460.2197 y +97.7002 452.2998 l +73.7983 492.7617 88.3398 428.54 y +98.0215 390.7588 242.6602 436.46 y +428.4199 469.8799 440.6602 474.3799 v +453.0625 478.6807 554.9004 471.9795 y +548.9004 492.1396 l +477.7012 543.0801 459.2217 515.6406 444.2598 519.9795 c +429.3008 524.4414 431.9414 513.8818 428.4199 513.0195 c +424.9014 512.1201 381.7813 539.4004 374.6602 538.46 c +F +0.035294 0.396078 0.572549 0 k +376.0996 536.54 m +369.1406 535.7188 342.4951 562.3994 357.6201 526.9395 c +376.1816 483.7998 293.4609 483.7998 275.0601 496.2197 c +256.501 508.4385 282.98 475.8193 y +303.1401 453.8789 265.2197 472.46 y +227.4609 486.4395 201.0605 458.2783 197.54 457.3398 c +194.0215 456.5186 188.7417 452.998 187.9399 459.9795 c +186.98 467.0791 179.2974 484.7139 143.7798 456.6201 c +116.4199 434.9785 102.5 456.8594 y +97.7002 450.6201 l +75.98 488.8613 89.0601 425.1797 y +98.7393 387.3994 244.1001 434.54 y +429.8623 467.96 442.0996 472.46 v +454.5039 476.7578 555.3799 470.0596 y +549.6201 490.7002 l +478.2637 541.8008 460.6621 513.7178 445.7002 518.0596 c +430.7432 522.5186 433.3828 511.959 429.8594 511.0996 c +426.3418 510.2002 383.2227 537.4785 376.0996 536.54 c +F +0.031373 0.333333 0.470588 0 k +377.54 534.6201 m +370.582 533.8018 342.0225 559.5967 359.0605 525.0195 c +380.2617 482.3213 294.9009 481.8799 276.5 494.2998 c +257.9409 506.5205 284.4199 473.8994 y +304.5801 451.959 266.6602 470.54 y +228.9009 484.5195 202.501 456.3604 198.98 455.4199 c +195.4614 454.6016 190.1816 451.0801 189.3799 458.0596 c +188.4199 465.1592 180.8818 482.6094 145.2197 454.7002 c +116.5015 432.2383 102.98 453.5 y +97.7002 448.9395 l +77.9409 485.4004 89.7798 421.8193 y +99.4614 384.0391 245.54 432.6201 y +431.3027 466.04 443.54 470.54 v +455.9434 474.8408 555.8594 468.1396 y +550.0996 489.5 l +478.8223 540.5186 462.1016 511.8008 447.1406 516.1396 c +432.1836 520.6016 434.8232 510.0391 431.2998 509.1797 c +427.7813 508.2793 384.6631 535.5605 377.54 534.6201 c +F +0.027451 0.278431 0.372549 0 k +378.9805 532.7002 m +372.0195 531.8818 343.0449 557.4678 360.5 523.0996 c +383.0215 479.0791 296.3408 479.96 277.9399 492.3799 c +259.3809 504.5977 285.8599 471.9795 y +306.02 450.0391 268.1001 468.6201 y +230.3408 482.5996 203.9409 454.4385 200.4199 453.5 c +196.9014 452.6787 191.6216 449.1582 190.8198 456.1396 c +189.8599 463.2393 182.4658 480.5049 146.6602 452.7793 c +116.5806 429.5 103.46 450.1396 y +97.7002 447.2598 l +80.1201 480.3994 90.5 418.46 y +100.1792 380.6787 246.98 430.7002 y +432.7422 464.1201 444.9805 468.6201 v +457.3828 472.918 556.3398 466.46 y +550.5801 488.2998 l +479.3818 539.2393 463.541 509.8779 448.5801 514.2197 c +433.623 518.6816 436.2637 508.1191 432.7402 507.2598 c +429.2217 506.3594 386.1035 533.6406 378.9805 532.7002 c +F +0.019608 0.215686 0.286275 0 k +380.4199 530.7793 m +373.4629 529.959 343.2754 554.9023 361.9395 521.1797 c +386.2227 477.6006 297.7808 478.04 279.3799 490.46 c +260.8208 502.6807 287.2998 470.0596 y +307.46 448.1191 269.54 466.7002 y +231.7808 480.6797 205.3809 452.5205 201.8599 451.5801 c +198.3418 450.7588 193.0615 447.2402 192.2598 454.2197 c +191.2998 461.3193 184.0498 478.3994 148.1001 450.8594 c +116.6602 426.7588 103.9399 446.7793 y +97.7002 445.5801 l +81.8599 476.7197 91.2197 415.0996 y +100.9014 377.3193 248.4199 428.7793 y +434.1826 462.2002 446.4199 466.7002 v +458.8232 471.001 556.8203 464.54 y +551.2998 486.8594 l +479.9434 537.9609 464.9814 507.9609 450.0195 512.2998 c +435.0625 516.7588 437.7031 506.1992 434.1797 505.3398 c +430.6621 504.4395 387.543 531.7207 380.4199 530.7793 c +F +0.015686 0.156863 0.203922 0 k +381.8594 528.8594 m +374.9023 528.0391 344.7148 552.9824 363.3799 519.2598 c +387.6631 475.6777 299.2231 476.1201 280.8198 488.54 c +262.2607 500.7578 288.7402 468.1396 y +308.9023 446.1992 270.98 464.7793 y +233.2207 478.7598 206.8208 450.5977 203.2998 449.6602 c +199.7817 448.8389 194.5015 445.3184 193.7002 452.2998 c +192.7402 459.3994 185.6357 476.2949 149.54 448.9395 c +116.7417 424.0186 104.1802 443.4199 y +97.7002 443.6602 l +82.7192 472.8193 91.9399 411.7393 y +101.6216 373.959 249.8599 426.8594 y +435.623 460.2793 447.8594 464.7793 v +460.2637 469.0781 557.2998 462.6201 y +551.7793 485.6602 l +480.502 536.6787 466.4219 506.0381 451.46 510.3799 c +436.501 514.8389 439.1426 504.2793 435.6201 503.4199 c +432.1016 502.5195 388.9834 529.7979 381.8594 528.8594 c +F +0.011765 0.098039 0.12549 0 k +383.2998 526.9395 m +376.3418 526.1191 346.582 551.2949 364.8203 517.3398 c +389.1006 472.4404 300.6606 474.2002 282.2598 486.6201 c +263.7007 498.8408 290.1802 466.2197 y +310.3418 444.2793 272.4199 462.8594 y +234.6606 476.8398 208.2607 448.6807 204.7402 447.7393 c +201.2217 446.9189 195.9414 443.4004 195.1401 450.3799 c +194.1802 457.4785 187.2197 474.1904 150.98 447.0195 c +116.8208 421.2793 104.6602 440.0596 y +97.7002 441.9795 l +83.3599 468.4805 92.6602 408.3799 y +102.3418 370.5986 251.2998 424.9395 y +437.0625 458.3594 449.2998 462.8594 v +461.7012 467.1602 557.7793 460.9395 y +552.2598 484.46 l +481.0615 535.3994 467.8613 504.1201 452.9004 508.46 c +437.9414 512.9189 440.5801 502.3594 437.0605 501.5 c +433.541 500.5996 390.4209 527.8809 383.2998 526.9395 c +F +0 0.039216 0.05098 0 k +384.7402 525.0195 m +377.7822 524.2012 349.208 549.9893 366.2598 515.4199 c +389.6621 468.3193 302.1006 472.2793 283.7002 484.7002 c +265.1406 496.918 291.6201 464.2998 y +311.7822 442.3594 273.8599 460.9395 y +236.1006 474.9199 209.7007 446.7578 206.1802 445.8193 c +202.6616 444.999 197.3818 441.4785 196.5801 448.46 c +195.6226 455.5586 188.8042 472.085 152.4199 445.0996 c +116.8999 418.5391 105.1401 436.7002 y +97.7002 440.2998 l +83.5591 465.8984 93.3799 405.0195 y +103.0615 367.2393 252.7402 423.0195 y +438.502 456.4395 450.7402 460.9395 v +463.1426 465.2383 558.2598 459.0195 y +552.9805 483.0195 l +481.6211 534.1201 469.3018 502.1982 454.3398 506.54 c +439.3828 511.001 442.0234 500.4385 438.5 499.5801 c +434.9814 498.6797 391.8613 525.9609 384.7402 525.0195 c +F +1 g +97.7002 438.6201 m +83.54 462.8818 94.1001 401.6602 y +103.7817 363.8789 254.1802 421.0996 y +439.9424 454.5195 452.1797 459.0195 v +464.5801 463.3203 558.7402 457.0996 y +553.46 481.8193 l +482.1826 532.8418 470.7422 500.2803 455.7793 504.6201 c +440.8203 509.0811 443.4609 498.5215 439.9395 497.6602 c +436.4219 496.7598 393.3008 524.041 386.1797 523.0996 c +379.2227 522.2813 351.4785 548.4678 367.7002 513.5 c +392.2305 461.002 300.9463 472.0898 285.1401 482.7803 c +266.5806 495.001 293.0601 462.3799 y +313.2197 440.4395 275.2998 459.0195 y +237.541 473 211.1406 444.8408 207.6201 443.8994 c +204.1016 443.0791 198.8218 439.5586 198.02 446.54 c +197.0601 453.6416 190.3877 469.9834 153.8599 443.1797 c +116.9814 415.8008 105.6201 433.3398 y +97.7002 438.6201 l +F +0 g +143.2998 405.7402 m +135.4614 392.9189 158.4199 378.3799 v +159.8818 376.8584 140.1802 381.5 v +133.2607 383.6787 131.54 395.1797 v +126.2217 399.958 120.98 406.2197 v +115.6616 412.2803 143.2998 405.7402 y +F +0.8 g +297.3799 458.0596 m +316.8486 428.5371 316.0996 423.2598 v +314.7607 411.8408 314.54 401.2803 318.0195 396.8594 c +321.582 392.4795 331.2197 356.0596 y +330.8223 354.6387 344.4199 396.3799 v +357.2217 414.0391 335.2998 434.2998 v +296.5015 465.9609 297.3799 458.0596 v +F +0 g +165.3799 376.2197 m +177.7017 368.2803 161.7798 333.9795 v +168.98 336.6201 l +168.02 324.2793 164.4199 321.7393 v +172.3398 325.0996 l +177.7017 316.3594 173.2998 311.1797 v +191.7798 302.2803 190.8198 295.3398 v +197.9409 304.04 193.46 311.1797 v +189.1401 318.1201 181.2197 313.7188 182.1802 333.9795 c +172.3398 330.3799 l +178.5801 340.1191 178.5801 347.1797 v +169.7002 344.54 l +186.7949 373.7549 174.98 375.2598 v +168.4614 376.2002 165.3799 376.2197 y +F +0.8 g +201.1401 357.7393 m +204.1016 362.5586 201.1401 361.5801 v +197.9409 360.7998 163.6206 344.5205 156.98 333.9795 c +194.8613 360.7998 201.1401 357.7393 v +F +212.4199 348.8594 m +215.54 353.7578 212.4199 352.9395 v +209.3818 351.999 175.0615 335.7197 168.5 325.0996 c +206.2998 351.999 212.4199 348.8594 v +F +227.0601 365.6602 m +230.0601 370.4795 227.0601 369.5 v +223.9014 368.7197 189.5815 352.4404 182.8999 341.8994 c +220.8198 368.7197 227.0601 365.6602 v +F +201.3799 317.6602 m +201.4614 324.2793 198.5 323.4199 v +195.3008 322.5195 155.7007 303.1592 149.0601 292.7002 c +195.3008 320.7578 201.3799 317.6602 v +F +202.8198 329.6602 m +204.1016 334.8389 201.1401 333.9795 v +198.8218 333.958 169.7817 321.2002 163.2197 310.7002 c +195.7402 334.3994 202.8198 329.6602 v +F +186.98 277.0996 m +175.9399 268.9395 l +187.3809 277.2002 191.2998 275.8994 v +183.8599 263.5586 182.8999 257.8994 v +194.4199 271.9209 200.6602 271.5801 v +208.9399 271.04 209.0601 259.0996 v +215.1006 270.6006 218.6602 270.1396 v +219.9414 263.1201 218.6602 255.7393 v +223.0205 264.001 227.54 262.2197 v +234.4614 264.4395 233.54 251.6602 v +233.5806 240.2402 232.8198 237.2598 v +238.8608 266.1992 241.46 266.54 v +250.3018 267.958 255.6201 258.3799 v +251.1802 266.6406 256.5801 264.3799 v +268.3398 262.6777 271.9399 255.2598 v +264.3799 268.3994 270.5 264.8594 v +278.0215 264.8789 279.3799 257.8994 v +288.5815 234.5186 290.8999 232.7002 v +282.4209 256.5195 284.1802 256.46 v +281.9814 269.7197 287.7798 253.3398 v +284.1802 268.8389 290.4199 267.9795 v +296.5015 267.0801 301.3398 256.0781 310.5801 258.6201 c +321.1426 252.5596 323.2998 328.7002 v +186.98 277.0996 l +F +0 g +192.2598 379.3398 m +208.501 385.8799 252.5 379.3398 v +260.4199 378.8408 267.8599 388.46 v +275.3818 398.1992 304.8608 406.1191 312.0195 403.8193 c +322.5801 396.8594 l +323.2998 395.6602 l +336.9824 384.1201 337.46 375.7393 v +337.8613 367.3994 321.582 314.5996 311.0605 297.0195 c +300.4614 279.3994 289.9014 265.7598 268.8198 268.46 c +245.8999 272.7988 217.7002 268.46 v +185.6216 270.1592 182.6602 279.0195 v +179.4609 287.7578 194.8999 304.46 y +199.7002 313.7188 198.5 329.6602 v +197.0601 345.3994 197.5015 376.2002 192.2598 379.3398 c +F +0.047059 0.745098 0.211765 0 k +216.5 377.1797 m +225.6606 356.8398 193.2197 285.0195 y +190.9014 283.3594 207.0273 276.7109 218.1802 279.5 c +230.2207 282.3008 274.5801 277.5801 y +300.4614 294.7998 314.6602 343.5801 y +325.9805 370.04 306.7402 373.5801 v +287.2617 377.0791 216.5 377.1797 y +F +0.247059 0.933333 0.509804 0.070588 k +214.1001 343.0996 m +217.8438 357.1641 219.5864 370.1426 216.5 377.1797 c +285.0605 370.04 297.3799 393.0195 v +302.0454 401.583 318.2813 367.8389 317.7793 357.2598 c +248.54 341.4385 232.3398 353.6602 v +214.1001 343.0996 l +F +0.266667 0.972549 0.580392 0.137255 k +219.1401 325.0996 m +221.2617 317.2393 218.6602 312.8594 v +216.8599 311.96 215.54 311.4199 v +216.8599 307.5586 223.46 305.8994 v +225.6606 300.958 228.2598 300.6201 v +230.9409 300.0801 236.2207 293.9189 240.7402 295.3398 c +245.0215 296.5586 257.2998 300.8594 y +263.5015 304.4795 273.1401 300.6201 v +275.792 301.4023 276.2598 305.8994 v +276.8096 310.9707 280.2197 315.0391 282.5 317.1797 c +284.6216 319.4404 295.1816 333.5186 293.7798 333.9795 c +292.5415 334.3994 219.1401 325.0996 y +F +0 0.698039 0.356863 0 k +214.3398 378.3799 m +211.1406 353.7578 214.5801 344.54 v +218.1802 335.2803 217.3018 333.0801 216.5 328.7002 c +215.54 324.2793 220.3809 313.2803 226.5801 306.6201 c +239.7798 304.9395 l +256.46 308.8809 266.6602 305.8994 v +276.4736 304.3232 280.3398 320.7803 v +285.5 327.7998 293.54 330.8594 v +301.3398 333.958 309.2598 379.7188 304.8198 388.46 c +300.4614 397.3203 284.6216 402.1592 267.1401 385.0996 c +249.4209 367.8389 247.2197 386.3193 214.3398 378.3799 c +F +0 R +0 G +1.1 w 10 M +214.3398 378.3799 m +211.1406 353.7578 214.5801 344.54 v +218.1802 335.2803 217.3018 333.0801 216.5 328.7002 c +215.54 324.2793 220.3809 313.2803 226.5801 306.6201 c +239.7798 304.9395 l +256.46 308.8809 266.6602 305.8994 v +276.4736 304.3232 280.3398 320.7803 v +285.5 327.7998 293.54 330.8594 v +301.3398 333.958 309.2598 379.7188 304.8198 388.46 c +300.4614 397.3203 284.6216 402.1592 267.1401 385.0996 c +249.4209 367.8389 247.2197 386.3193 214.3398 378.3799 c +214.3398 378.3799 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +216.02 296.0596 m +215.1006 298.3203 210.2598 298.7002 v +185.6216 302.7197 176.4199 316.46 v +168.9009 322.5195 173.7798 309.7393 v +185.1802 287.3193 192.7402 284.2998 v +210.7017 279.8408 216.02 296.0596 v +F +0 R +0 G +0.550001 w 10 M +216.02 296.0596 m +215.1006 298.3203 210.2598 298.7002 v +185.6216 302.7197 176.4199 316.46 v +168.9009 322.5195 173.7798 309.7393 v +185.1802 287.3193 192.7402 284.2998 v +210.7017 279.8408 216.02 296.0596 v +216.02 296.0596 l +s +0 O +0.145098 0.898039 0.682353 0.027451 k +1 w 4 M +303.8599 366.3799 m +304.6426 375.1855 306.7905 384.6602 304.8198 388.46 c +297.771 402.7041 279.0991 396.7754 267.1401 385.0996 c +249.4209 367.8389 247.2197 386.3193 214.3398 378.3799 c +212.2998 363.041 213.1401 351.9795 v +254.2617 364.7598 255.1401 358.7002 v +256.9014 362.1201 267.1401 362.0596 v +277.1406 362.1201 302.1558 363.4082 303.8599 366.3799 c +F +0 R +0.231373 1 0.941176 0.172549 K +2.2 w 10 M +256.5801 377.4199 m +261.7402 372.2402 257.7798 361.5801 v +241.9399 344.0791 244.1001 328.7002 v +S +0 O +0.011765 0 0.239216 0 k +1 w 4 M +203.7798 284.2998 m +198.8218 298.3203 208.5801 290.7803 v +213.7808 288.6387 212.4199 286.9395 v +211.1406 285.1201 204.98 280.7188 203.7798 284.2998 c +F +0 R +0 G +0.550001 w 10 M +203.7798 284.2998 m +198.8218 298.3203 208.5801 290.7803 v +213.7808 288.6387 212.4199 286.9395 v +211.1406 285.1201 204.98 280.7188 203.7798 284.2998 c +203.7798 284.2998 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +209.2998 282.8594 m +205.333 294.1826 213.1401 288.1396 v +217.9399 285.5068 216.2598 285.0195 v +211.2295 283.623 216.2432 280.8076 209.2998 282.8594 c +F +0 R +0 G +0.550001 w 10 M +209.2998 282.8594 m +205.333 294.1826 213.1401 288.1396 v +217.9399 285.5068 216.2598 285.0195 v +211.2295 283.623 216.2432 280.8076 209.2998 282.8594 c +209.2998 282.8594 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +214.5801 282.8594 m +210.6128 294.1826 218.4199 288.1396 v +223.1694 285.6582 221.54 285.0195 v +217.8296 283.623 221.5229 280.8076 214.5801 282.8594 c +F +0 R +0 G +0.550001 w 10 M +214.5801 282.8594 m +210.6128 294.1826 218.4199 288.1396 v +223.1694 285.6582 221.54 285.0195 v +217.8296 283.623 221.5229 280.8076 214.5801 282.8594 c +214.5801 282.8594 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +221.7798 282.6201 m +217.8726 293.9648 225.6201 287.8994 v +230.4365 285.4131 228.7402 284.7803 v +225.5288 283.623 228.7856 280.5869 221.7798 282.6201 c +F +0 R +0 G +0.550001 w 10 M +221.7798 282.6201 m +217.8726 293.9648 225.6201 287.8994 v +230.4365 285.4131 228.7402 284.7803 v +225.5288 283.623 228.7856 280.5869 221.7798 282.6201 c +221.7798 282.6201 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +228.98 282.8594 m +225.001 294.0508 232.8198 288.1396 v +236.9697 286.3086 235.9399 284.7803 v +234.8574 283.4912 235.9136 280.6758 228.98 282.8594 c +F +0 R +0 G +0.550001 w 10 M +228.98 282.8594 m +225.001 294.0508 232.8198 288.1396 v +236.9697 286.3086 235.9399 284.7803 v +234.8574 283.4912 235.9136 280.6758 228.98 282.8594 c +228.98 282.8594 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +236.1802 282.1396 m +230.9409 295.6807 240.98 288.6201 v +246.3418 286.4404 245.0601 284.7803 v +243.7017 282.9199 245.0215 279.3994 236.1802 282.1396 c +F +0 R +0 G +0.550001 w 10 M +236.1802 282.1396 m +230.9409 295.6807 240.98 288.6201 v +246.3418 286.4404 245.0601 284.7803 v +243.7017 282.9199 245.0215 279.3994 236.1802 282.1396 c +236.1802 282.1396 l +s +*u +0.266667 0.972549 0.580392 0.137255 K +2.2 w +204.98 300.8594 m +219.5 304.04 226.1001 300.6201 v +232.7002 299.1992 234.02 299.6602 v +235.3398 300.0801 238.8198 300.6201 y +S +1 D +242.4199 291.2598 m +255.5815 306.2402 268.8198 301.3398 v +276.4976 298.5703 275.3818 302.2803 276.2598 305.4199 c +277.1406 308.4385 277.3613 313.0586 282.98 316.46 c +S +*U +0 D +0 O +0.011765 0 0.239216 0 k +1 w 4 M +261.3799 308.7803 m +256.9014 320.7578 253.9399 306.6201 v +250.7407 292.5986 247.2197 288.6387 245.54 285.5 c +245.4609 279.8408 254.6602 280.2197 v +266.5806 280.7188 267.1401 283.8193 v +267.4614 286.8799 265.7002 299.6406 261.3799 308.7803 c +F +0 R +0 G +0.550001 w 10 M +261.3799 308.7803 m +256.9014 320.7578 253.9399 306.6201 v +250.7407 292.5986 247.2197 288.6387 245.54 285.5 c +245.4609 279.8408 254.6602 280.2197 v +266.5806 280.7188 267.1401 283.8193 v +267.4614 286.8799 265.7002 299.6406 261.3799 308.7803 c +261.3799 308.7803 l +s +*u +0.266667 0.972549 0.580392 0.137255 K +2.2 w +276.7402 300.8594 m +280.6616 303.6006 283.2197 302.2998 v +S +283.9399 319.0996 m +287.041 324.3896 292.3398 325.3398 v +S +*U +0 O +0.701961 g +1 w 4 M +196.5801 278.54 m +216.4209 275 221.2998 276.8594 v +230.9409 276.7588 221.7798 274.46 v +207.6201 274.5586 198.7402 275.8994 v +186.0605 282.0391 196.5801 278.54 v +F +0.011765 0 0.239216 0 k +211.9399 381.0195 m +231.3799 381.0391 233.54 380.0596 v +241.501 346.2803 237.6201 337.8193 v +236.2207 334.8389 233.0601 340.9395 v +212.8999 377.0791 209.2998 379.3398 v +205.8608 381.4805 210.7017 381.0391 211.9399 381.0195 c +F +0 R +0 G +0.550001 w 10 M +211.9399 381.0195 m +231.3799 381.0391 233.54 380.0596 v +241.501 346.2803 237.6201 337.8193 v +236.2207 334.8389 233.0601 340.9395 v +212.8999 377.0791 209.2998 379.3398 v +205.8608 381.4805 210.7017 381.0391 211.9399 381.0195 c +211.9399 381.0195 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +127.2197 383.8994 m +137 382.1406 150.98 379.3398 v +156.1401 354.6387 159.6201 349.3398 v +163.1816 344.0791 159.2217 344.0791 155.2998 347.1797 c +151.3018 350.2393 135.02 365.6406 132.7402 370.46 c +130.6206 375.3193 127.2197 383.8994 y +F +0 R +0 G +0.550001 w 10 M +127.2197 383.8994 m +137 382.1406 150.98 379.3398 v +156.1401 354.6387 159.6201 349.3398 v +163.1816 344.0791 159.2217 344.0791 155.2998 347.1797 c +151.3018 350.2393 135.02 365.6406 132.7402 370.46 c +130.6206 375.3193 127.2197 383.8994 y +127.2197 383.8994 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +151.2197 379.0996 m +157.6377 377.3379 158.6602 375.0195 v +159.855 372.4658 157.46 368.7803 y +156.3247 365.2041 155.0601 367.5801 v +153.6802 369.9629 150.5215 378.3867 151.2197 379.0996 c +F +0 R +0 G +0.550001 w 10 M +151.2197 379.0996 m +157.6377 377.3379 158.6602 375.0195 v +159.855 372.4658 157.46 368.7803 y +156.3247 365.2041 155.0601 367.5801 v +153.6802 369.9629 150.5215 378.3867 151.2197 379.0996 c +151.2197 379.0996 l +s +0 O +0 g +1 w 4 M +151.2197 379.3398 m +155.2617 373.5586 159.1401 373.5801 v +163.1816 373.5586 163.6016 374.0146 166.8198 373.3398 c +171.7617 372.2402 171.3198 374.4385 178.5801 373.0996 c +181.4839 372.5908 184.3018 373.5586 187.46 372.1396 c +190.46 370.9209 193.981 371.7988 195.3799 374.0596 c +196.6206 376.2002 201.8599 380.7803 y +187.8198 378.8408 184.8198 377.8994 v +160.1001 376.6396 151.2197 379.3398 v +F +0.011765 0 0.239216 0 k +200.4199 379.0996 m +193.2656 375.209 192.7402 372.6201 v +192.3848 369.9297 198.5 365.8994 y +201.625 360.7998 202.3398 363.5 v +202.9448 366.0801 201.2407 378.6201 200.4199 379.0996 c +F +0 R +0 G +0.550001 w 10 M +200.4199 379.0996 m +193.2656 375.209 192.7402 372.6201 v +192.3848 369.9297 198.5 365.8994 y +201.625 360.7998 202.3398 363.5 v +202.9448 366.0801 201.2407 378.6201 200.4199 379.0996 c +200.4199 379.0996 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +159.1401 373.0996 m +166.8345 360.7422 167.0601 373.0996 v +167.6865 374.458 165.8599 374.54 v +159.0679 374.5664 160.7407 379.0781 159.1401 373.0996 c +F +0 R +0 G +0.550001 w 10 M +159.1401 373.0996 m +166.8345 360.7422 167.0601 373.0996 v +167.6865 374.458 165.8599 374.54 v +159.0679 374.5664 160.7407 379.0781 159.1401 373.0996 c +159.1401 373.0996 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +167.0601 372.8594 m +175.7358 360.4707 174.98 372.8594 v +175.0449 373.2441 173.0601 373.3398 v +167.8926 373.8682 168.272 378.8359 167.0601 372.8594 c +F +0 R +0 G +0.550001 w 10 M +167.0601 372.8594 m +175.7358 360.4707 174.98 372.8594 v +175.0449 373.2441 173.0601 373.3398 v +167.8926 373.8682 168.272 378.8359 167.0601 372.8594 c +167.0601 372.8594 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +174.98 372.8594 m +183.7134 361.0762 182.8999 371.6602 v +183.1089 373.0664 181.2197 373.3398 v +177.0078 374.1729 176.7754 377.7461 174.98 372.8594 c +F +0 R +0 G +0.550001 w 10 M +174.98 372.8594 m +183.7134 361.0762 182.8999 371.6602 v +183.1089 373.0664 181.2197 373.3398 v +177.0078 374.1729 176.7754 377.7461 174.98 372.8594 c +174.98 372.8594 l +s +0 O +0.011765 0 0.239216 0 k +1 w 4 M +182.4199 372.6201 m +191.2109 359.9619 191.54 370.7002 v +193.4023 372.2354 191.54 372.3799 v +185.0815 373.2939 185.96 378.1953 182.4199 372.6201 c +F +0 R +0 G +0.550001 w 10 M +182.4199 372.6201 m +191.2109 359.9619 191.54 370.7002 v +193.4023 372.2354 191.54 372.3799 v +185.0815 373.2939 185.96 378.1953 182.4199 372.6201 c +182.4199 372.6201 l +s +0 O +0.105882 0.031373 0.356863 0 k +1 w 4 M +142.8198 368.7803 m +134.4199 370.46 l +131.4463 375.9795 129.1401 382.7002 y +136.1216 381.6465 149.7798 378.6201 v +150.8335 374.9141 152.4199 368.54 v +142.8198 368.7803 l +F +214.3398 373.8193 m +212.4702 376.6807 211.0229 378.6152 210.2598 379.0996 c +206.9937 381.1328 211.5513 380.7178 212.8999 380.7803 c +231.02 380.7178 233.0601 379.8193 v +233.6694 377.4219 234.5 373.5801 v +223.3232 375.9033 214.3398 373.8193 v +F +0.164706 0.627451 1 0.031373 k +273.3799 525.9795 m +303.7617 521.5303 331.832 560.7363 333.8594 571.3398 c +335.7051 582.0322 324.5 595.0996 y +326.0264 598.4883 320.7012 613.9756 314.9004 624.1396 c +309.085 634.3057 291.5938 633.2334 272.4199 634.2197 c +254.876 635.2734 234.5479 609.6201 233.0601 607.5801 c +231.644 605.749 238.4214 563.6406 239.7798 557.4199 c +241.3232 551.0547 238.3398 521.8994 y +276.085 532.0254 242.7754 530.2441 273.3799 525.9795 c +F +0.047059 0.517647 0.756863 0 k +233.7798 606.8594 m +232.4722 605.0713 239.125 563.7266 240.5 557.6602 c +241.9761 551.3721 239.0601 522.8594 y +275.0649 532.6279 243.4014 530.9385 273.3799 526.7002 c +303.2769 522.3848 330.8379 560.876 332.6602 571.3398 c +334.6406 581.7871 323.7793 594.6201 y +325.1357 597.9434 319.9082 613.1504 314.1797 623.1797 c +308.5039 633.1084 291.332 632.0547 272.4199 633.0195 c +255.2817 634.0586 235.3232 608.873 233.7798 606.8594 c +F +0.035294 0.372549 0.533333 0 k +234.7402 606.1396 m +233.2998 604.3926 239.8281 563.8154 241.2197 557.6602 c +242.6265 551.6885 239.7798 523.8193 y +274.3735 533.7822 244.0254 531.6338 273.3799 527.4199 c +302.792 523.2393 329.8447 561.0176 331.7002 571.3398 c +333.5762 581.54 322.8203 594.1396 y +324.248 597.3965 319.1172 612.3223 313.46 622.2197 c +307.9238 631.9111 291.0703 630.8789 272.4199 631.8193 c +255.6846 632.8447 236.0981 608.124 234.7402 606.1396 c +F +0.023529 0.239216 0.32549 0 k +235.46 605.6602 m +234.1255 603.7158 240.5313 563.9043 241.9399 557.8994 c +243.2769 552.0049 240.5 524.54 y +272.9121 534.4951 244.6494 532.3301 273.3799 528.1396 c +302.3096 524.0938 328.8516 561.1563 330.7402 571.3398 c +332.5117 581.293 322.0996 593.6602 y +323.3594 596.8516 318.3242 611.4941 312.7402 621.0195 c +307.3418 630.7129 290.8066 629.7002 272.6602 630.6201 c +256.0903 631.6299 236.8711 607.376 235.46 605.6602 c +F +0.011765 0.109804 0.137255 0 k +236.1802 604.9395 m +234.9536 603.0391 241.2368 563.9912 242.6602 558.1396 c +243.9297 552.3223 241.2197 525.5 y +271.8921 535.208 245.2759 533.0234 273.6201 529.0996 c +301.8247 524.9453 327.8555 561.2979 329.54 571.0996 c +331.4453 581.0479 321.1406 593.1797 y +322.4697 596.3066 317.5332 610.6689 312.2598 620.0596 c +306.7617 629.5186 290.5449 628.5244 272.6602 629.4199 c +256.4961 630.416 237.6465 606.6289 236.1802 604.9395 c +F +1 g +273.6201 529.8193 m +301.3398 525.7998 326.8613 561.4395 328.5801 571.0996 c +330.3828 580.8008 320.1797 592.7002 y +321.582 595.7598 316.7402 609.8408 311.54 619.0996 c +306.1807 628.3203 290.2808 627.3457 272.6602 628.2197 c +256.9014 629.2012 238.4214 605.8809 237.1401 604.2197 c +235.7817 602.3594 241.9399 564.0801 243.3799 558.3799 c +244.5801 552.6416 241.9399 526.2197 y +269.9912 535.7002 245.8999 533.7197 273.6201 529.8193 c +F +0.8 g +324.7402 567.2598 m +294.0801 558.7998 281.2998 560.54 v +263.9409 567.8213 254.1802 543.7393 v +250.3018 535.9209 248.1802 533.6602 v +245.8999 531.5215 324.7402 567.2598 y +F +0 g +328.8203 569.6602 m +296.9409 556.1602 285.8599 556.7002 v +267.9009 561.6602 258.7402 545.6602 v +249.4209 535.4814 246.02 533.6602 v +245.4609 531.9609 252.5 536.2998 v +264.02 530.54 l +280.2197 520.0801 290.8999 537.7393 v +295.1816 550.001 295.2197 552.1396 v +295.1816 554.4004 318.5 560.5615 320.1797 561.0195 c +322.0205 561.4395 329.2813 566.0596 328.8203 569.6602 c +F +0.45098 0 1 0 k +276.7402 530.0596 m +269.1416 530.0762 259.9302 534.3271 259.9399 541.0996 c +259.9302 548.0742 269.1416 554.9648 276.7402 555.0195 c +284.2617 554.9648 290.3911 549.3945 290.4199 542.54 c +290.3911 535.6465 284.2617 530.0762 276.7402 530.0596 c +F +0.658824 0.2 1 0.039216 k +272.6602 548.54 m +267.3848 547.6328 261.7881 545.9814 261.8599 546.1396 c +263.5591 551.2998 270.5576 554.9648 276.7402 555.0195 c +281.4248 554.9648 285.5938 552.79 288.02 549.5 c +282.2046 549.8408 272.6602 548.54 v +F +1 g +285.8599 548.7793 m +281.1006 552.2002 281.0601 549.7393 v +285.0605 544.9395 285.8599 548.7793 v +F +0 g +275.0601 539.6602 m +272.1919 539.7412 269.9624 541.9707 270.02 544.7002 c +269.9624 547.4697 272.1919 549.6992 275.0601 549.7393 c +277.6904 549.6992 279.9199 547.4697 279.8599 544.7002 c +279.9199 541.9707 277.6904 539.7412 275.0601 539.6602 c +F +0.164706 0.627451 1 0.031373 k +160.5801 554.2998 m +157.0205 577.7217 159.6201 582.6201 v +171.541 593.5615 171.1401 597.5 v +170.6602 617.3213 169.46 618.1396 v +168.02 619.0801 159.6606 625.6807 153.1401 618.6201 c +141.6201 598.8418 142.5801 591.7393 v +142.5801 589.5801 l +134.1416 590.04 132.5 587.8994 v +131.0601 582.1201 129.8599 581.6602 v +126.6606 579.041 128.8999 575.8994 v +126.6606 573.3193 127.2197 568.9395 v +135.3799 564.6201 l +137.6602 548.6816 149.54 543.0195 v +154.8608 540.3994 158.3408 547.8008 160.5801 554.2998 c +F +1 g +159.3799 556.46 m +156.272 577.4121 158.6602 581.6602 v +169.3398 591.668 168.98 595.3398 v +168.5479 613.0518 167.2998 613.8193 v +166.1719 614.6357 158.6479 620.5752 152.6602 614.2998 c +142.4121 596.4199 143.2998 590.0596 v +143.2998 588.1396 l +135.6802 588.5 134.1802 586.46 v +132.9082 581.3721 131.7798 580.9395 v +128.9478 578.5996 130.8198 575.8994 v +128.9478 573.4521 129.3799 569.4199 v +136.8198 565.5801 l +138.8481 551.2754 149.54 546.1396 v +154.3281 543.8232 157.46 550.4863 159.3799 556.46 c +F +0.043137 0.478431 0.701961 0 k +168.7402 617.1797 m +167.6455 618.0576 159.4063 624.4063 152.8999 617.6602 c +141.8193 598.2363 142.5801 591.2598 v +142.5801 589.3398 l +134.5254 589.6563 132.7402 587.4199 v +131.5229 581.9336 130.3398 581.4199 v +127.2319 578.9307 129.3799 575.8994 v +127.2319 573.3535 127.7002 569.1797 v +135.8599 564.8594 l +137.9575 549.3291 149.54 543.7393 v +154.7266 541.2559 158.1201 548.4697 160.3398 555.0195 c +156.8335 577.6445 159.3799 582.3799 v +170.9912 593.0889 170.6602 597.0195 v +170.1318 616.2529 168.7402 617.1797 v +F +0.027451 0.305882 0.423529 0 k +168.2598 615.9795 m +167.271 617.0332 159.1543 623.1289 152.8999 616.46 c +142.0161 597.6318 142.8198 591.0195 v +142.8198 588.8594 l +134.9097 589.2705 133.2197 587.1797 v +131.9839 581.7461 130.8198 581.4199 v +127.8032 578.8203 129.8599 575.8994 v +127.8032 573.3867 128.1802 569.1797 v +136.1001 565.0996 l +138.2554 549.9795 149.54 544.46 v +154.5942 542.1104 157.9014 549.1426 160.1001 555.5 c +156.6465 577.5674 159.1401 582.1396 v +170.4414 592.6133 169.9399 596.2998 v +169.604 615.1875 168.2598 615.9795 v +F +0.015686 0.141176 0.184314 0 k +167.7798 615.0195 m +166.8994 616.0107 158.8999 621.8525 152.8999 615.2598 c +142.2153 597.0244 143.0601 590.54 v +143.0601 588.3799 l +135.2959 588.8857 133.7002 586.9395 v +132.4473 581.5586 131.2998 581.1797 v +128.377 578.71 130.3398 575.8994 v +128.377 573.4209 128.8999 569.4199 v +136.5801 565.3398 l +138.5503 550.6279 149.54 545.4199 v +154.46 542.9668 157.6807 549.8145 159.6201 555.9795 c +156.459 577.4912 158.8999 581.8994 v +169.8896 592.1426 169.46 595.8193 v +169.0762 614.1201 167.7798 615.0195 v +F +1 g +159.3799 556.46 m +156.272 577.4121 158.6602 581.6602 v +169.3398 591.668 168.98 595.3398 v +168.5479 613.0518 167.2998 613.8193 v +166.5249 614.9883 158.6479 620.5752 152.6602 614.2998 c +142.4121 596.4199 143.2998 590.0596 v +143.2998 588.1396 l +135.6802 588.5 134.1802 586.46 v +132.9082 581.3721 131.7798 580.9395 v +128.9478 578.5996 130.8198 575.8994 v +128.9478 573.4521 129.3799 569.4199 v +136.8198 565.5801 l +138.8481 551.2754 149.54 546.1396 v +154.3281 543.8232 157.46 550.5938 159.3799 556.46 c +F +0.8 g +156.02 563.4199 m +132.2695 574.6396 131.2998 575.4199 v +141.291 566.501 142.1001 566.54 v +143.0503 566.501 156.02 563.4199 y +F +0 g +137.2998 570.1396 m +157.46 566.2803 157.46 561.5 v +157.46 558.2383 157.1934 543.4756 151.2197 545.1797 c +142.0615 547.8008 146.0215 563.6406 137.2998 570.1396 c +F +0.45098 0 1 0 k +146.4199 566.0596 m +156.3369 564.4395 157.46 561.5 v +158.1201 559.6807 158.8496 550.541 152.8999 549.2598 c +147.8335 548.3379 145.3809 559.582 146.4199 566.0596 c +F +0 g +240.98 519.2598 m +240.5098 521.1729 241.9497 521.0283 243.8599 521.6602 c +246.1206 522.2813 259.5415 526.46 260.4199 529.3398 c +261.3008 532.1816 275.7798 527.4199 y +277.8008 526.46 282.7402 523.5801 y +287.9214 522.2813 295.2197 521.8994 y +297.8218 520.7402 301.46 517.5801 y +317.6211 506.4414 331.2197 514.46 y +353.2617 521.6211 346.5801 540.6201 y +343.3613 550.4404 346.8203 554.2998 y +347.1006 558.3604 354.9805 551.4199 y +357.8818 546.7012 358.8203 541.0996 y +367.5605 528.8818 363.8594 548.54 y +364.043 549.5596 360.9609 553.5195 360.9805 554.7793 c +360.9609 556.1602 359.0605 559.8193 y +355.6807 563.6406 358.3398 571.3398 y +360.3008 586.5195 357.8594 584.54 y +356.5615 586.5195 346.3398 575.4199 y +344.0215 571.7813 337.46 570.1396 y +334.3418 568.04 330.5 569.6602 y +327.7422 570.0195 321.6201 562.2197 y +324.6602 562.541 327.3008 557.7002 330.0195 557.4199 c +332.5801 557.2617 334.5605 560.1201 336.2598 560.7793 c +338.082 561.4395 341.0605 555.0195 y +341.6025 552.2002 335.54 546.8594 y +335.002 541.8604 333.1406 543.7393 y +329.9414 544.2793 328.6211 540.1016 327.6201 535.0996 c +326.4219 529.9805 321.8594 529.5801 y +320.041 521.4004 318.7402 524.7793 y +318.5 530.8613 312.0195 524.54 y +310.5801 522.2813 305.54 524.7793 y +298.04 526.9014 300.7402 529.0996 y +302.6602 531.5215 314.9004 529.0996 y +317.4004 530.8613 308.6602 535.3398 y +307.9395 537.2402 309.1406 542.0596 y +310.3613 545.5996 317.7793 551.6602 y +328.1816 553.0801 325.2197 554.7793 y +318.2813 560.5615 312.0195 552.1396 y +309.4805 545.3818 290.4199 528.8594 y +285.0605 525.1396 287.9214 532.6201 283.46 528.8594 c +279.1206 525.1396 256.5801 535.0996 y +243.7422 536.3525 240.7373 519.0361 236.8999 522.3799 c +242.8135 513.0967 240.98 519.2598 v +F +455.2998 702.1396 m +427.1816 693.4395 424.0996 672.8594 v +421.4629 647.6816 444.0195 628.2197 v +444.3418 621.2813 446.6602 617.6602 v +444.7813 612.4805 465.3799 620.7793 v +495.3799 630.1396 l +502.4219 632.7197 508.0996 642.3799 v +513.8623 652.0801 530.5801 672.7617 526.5801 700.46 c +527.9414 712.8008 521.2998 713.1797 v +512.1006 715.001 504.2598 706.7002 v +496.7021 703.1211 494.1797 703.5801 v +455.2998 702.1396 l +F +515.54 703.3398 m +517.7334 713.1533 512.4199 707.8994 v +504.668 701.5371 496.3398 701.4199 v +480.4668 699.1162 475.6992 684.6201 v +471.2695 655.0732 480.0195 648.8594 v +485.3047 640.5537 492.9805 647.8994 v +500.7949 655.0732 517.8438 688.3252 515.54 703.3398 c +F +0.2 g +515.0605 702.8594 m +517.3105 712.5537 512.1797 707.4199 v +504.4805 701.1514 496.3398 701.1797 v +480.7207 698.7725 475.9395 684.6201 v +471.6914 655.5293 480.2598 649.3398 v +485.4727 641.2734 492.9805 648.3799 v +500.6797 655.5293 517.3877 688.2051 515.0605 702.8594 c +F +0.4 g +514.5801 702.6201 m +516.8906 711.9561 511.6992 706.9395 v +504.2959 700.7617 496.3398 700.7002 v +480.9746 698.4297 476.4199 684.3799 v +472.1143 655.9873 480.5 649.8193 v +485.6387 641.9961 493.2197 649.0996 v +500.5664 655.9873 516.9346 688.083 514.5801 702.6201 c +F +0.6 g +514.0996 702.1396 m +516.4668 711.3584 511.46 706.2197 v +504.1113 700.376 496.3398 700.46 v +481.2324 698.0859 476.6602 684.3799 v +472.5371 656.4463 480.7402 650.54 v +485.8066 642.7178 493.2197 649.5801 v +500.4512 656.4463 516.4785 687.9629 514.0996 702.1396 c +F +0.8 g +513.8594 701.6602 m +516.0469 710.7578 511.2197 705.7393 v +503.9258 699.9893 496.3398 699.9795 v +481.4863 697.7432 476.9004 684.3799 v +472.959 656.9043 480.9805 651.0195 v +485.9746 643.4385 493.2197 650.0596 v +500.3359 656.9043 516.0225 687.8428 513.8594 701.6602 c +F +1 g +513.3799 701.4199 m +515.6211 710.1602 510.7402 705.2598 v +503.7422 699.6006 496.3398 699.5 v +481.7402 697.3994 477.3799 684.1396 v +473.3809 657.3604 481.2197 651.7393 v +486.1426 644.1602 493.2197 650.7793 v +500.2207 657.3604 515.5664 687.7207 513.3799 701.4199 c +F +0.254902 0.941176 1 0.243137 k +280.5801 477.7402 m +258.2217 498.9609 249.3799 499.8193 v +211.5801 504.2402 195.3799 484.46 v +214.6616 506.8809 245.0601 500.7803 v +221.2617 505.5605 207.6201 501.9795 v +189.1401 502.04 178.5801 486.6201 v +175.46 481.3398 l +179.8999 497.6406 200.1802 504.1396 v +225.2217 509.5205 237.1401 504.1396 v +213.3418 511.7217 202.3398 509.4199 v +168.9009 512.1602 154.8198 483.0195 v +159.2217 498.9609 175.46 506.7803 v +190.46 516.5596 212.8999 513.5 v +228.7402 509.96 234.5 507.2598 v +240.1807 504.6797 238.8608 507.7617 229.7002 513.0195 c +223.46 524.041 208.1001 523.5801 v +160.981 519.6416 149.54 506.54 v +164.5015 518.7607 175.9399 521.8994 v +200.5806 530.6406 209.7798 529.8193 v +237.1016 528.6602 245.54 533.1797 v +233.1416 527.5615 236.6602 524.0596 v +240.1807 520.5195 247.6616 512.1602 247.7002 510.8594 c +247.6616 509.5205 274.2798 485.2109 278.1802 480.3799 c +280.5801 477.7402 l +F +0.8 g +432.9805 264.3799 m +415.8516 304.5918 402.0195 315.0195 v +430.7002 297.4395 434.6602 277.5801 v +434.5498 266.6406 432.9805 264.3799 v +F +484.5801 256.2197 m +455.4512 316.6904 435.1406 343.0996 v +482.9502 301.8418 488.4199 272.7803 v +488.9004 266.54 l +485.7793 269.4199 l +485.1514 259.4912 484.5801 256.2197 v +F +546.7402 309.5 m +478.002 374.9912 476.4199 377.6602 v +542.9004 305.1416 546.2598 296.7803 v +544.002 306.79 546.7402 309.5 v +F +339.3799 261.7393 m +360.8506 318.8906 381.8594 294.1396 v +398.25 283.1406 397.7002 279.7393 v +393.3008 286.9902 373.46 286.46 v +352.6016 289.7402 339.3799 261.7393 v +F +548.9004 401.8994 m +499.4502 433.292 491.2998 435.0195 v +478.2129 437.5371 545.6504 403.04 551.0605 391.5801 c +553.3496 394.2412 548.9004 401.8994 v +F +0 g +383.2998 284.7803 m +405.623 286.8799 413.0605 294.3799 v +417.8594 290.2998 l +437.2998 332.54 l +441.3799 327.0195 l +457.1025 343.2002 456.2598 351.9795 v +455.3408 360.7998 470.4199 345.5 y +469.4219 358.1602 477.3799 350.7803 v +474.7012 367.8389 483.8594 358.9395 v +472.3496 392.2139 497.0605 363.9795 v +503.3027 356.8398 498.5 364.2197 y +469.8613 417.1201 493.7002 401.1797 v +495.8213 426.3584 494.4199 431.1797 v +493.1816 436.04 490.9805 460.6807 485.7793 466.46 c +480.4209 472.1211 486.1426 473.8809 492.2598 468.1396 c +479.9814 494.5615 494.4199 481.3398 v +490.541 498.0801 485.7793 501.2598 v +479.543 520.0811 496.3398 508.2197 v +491.4219 521.8398 487.9395 525.2598 v +475.1406 555.7207 483.1406 550.46 v +487.9395 546.3799 l +480.4209 561.8818 487.46 556.9395 v +494.502 552.2002 494.4199 552.6201 y +471.1807 589.1602 493.7002 569.8994 v +484.6465 585.1113 480.9805 592.7002 v +460.1816 615.1201 475.9395 608.0596 v +481.2197 606.3799 l +471.623 617.3213 462.7402 619.0996 v +454.0205 620.8398 465.4609 627.8818 472.5801 625.5801 c +479.543 623.4795 496.8203 615.0195 y +510.7813 594.4395 515.2998 593.8994 v +493.1816 602.3594 499.7002 593.6602 v +515.6211 578.1602 507.6201 578.54 v +501.1016 570.6797 506.4199 561.0195 v +486.0752 581.2305 502.3398 553.0996 v +510.0195 535.0996 l +483.0605 562.3203 495.3799 538.2197 v +514.3018 512.1602 516.5 511.8193 v +518.7012 511.2803 523.46 501.5 y +518.6602 503.8994 l +524.4199 494.0596 l +512.1006 507.3193 518.6602 492.8594 v +524.9004 477.0195 l +502.4219 501.1611 517.46 468.6201 v +499.3418 474.3193 509.0605 455.4199 v +507.2617 437.7988 507.6201 432.1396 v +508.1406 426.3584 509.4609 395.1201 504.7402 386.2998 c +499.7813 377.5205 511.2227 356.4004 513.3799 351.9795 c +515.6211 347.5996 519.582 335.7197 510.0195 345.7393 c +500.2207 355.959 505.0615 349.8008 507.3799 340.2197 c +509.4609 330.4395 516.0605 313.2803 515.2998 307.0996 c +513.8623 305.7988 510.2598 309.7393 v +494.0625 334.8389 495.8594 319.0996 v +494.502 310.2002 491.0605 300.6201 v +487.4629 288.6387 487.46 298.2197 v +483.9414 316.8008 480.9805 308.54 v +477.7813 300.0801 473.8203 293.4795 470.6602 290.7803 c +467.6621 288.2002 461.9414 313.2803 460.5801 301.8193 c +447.4209 315.4805 442.0996 297.5 v +429.3799 279.5 l +428.9414 293.04 427.7002 286.46 v +394.6211 279.8408 383.2998 284.7803 v +F +345.3799 677.1797 m +332.5801 685.9609 328.0996 685.5801 v +323.7822 685.0801 358.541 695.2012 403.9395 664.9395 c +409.1406 661.7598 413.0605 662.2998 v +416.6211 659.5615 413.54 655.5801 v +403.8613 645.041 416.1797 632.7793 v +436.4219 625.2412 430.3398 634.9395 v +442.1406 630.5215 444.7402 626.0596 v +447.4209 621.7207 446.1797 626.0596 y +439.0615 634.04 432.5 639.7393 v +426.7422 641.96 423.6201 651.2598 v +420.582 660.4395 417.9414 671.4414 422.9004 675.0195 c +418.3809 670.1211 419.2998 674.54 v +420.1426 678.9199 424.1025 682.8799 425.7793 683.4199 c +427.6211 683.7607 445.6621 701.1416 453.1406 701.6602 c +443.0215 700.04 439.7002 701.1797 v +436.4219 702.2402 407.1602 714.7803 400.5801 716.0596 c +382.0801 723.3604 395.2998 721.0996 v +434.6621 716.9814 454.5801 702.3799 v +446.7607 711.7012 426.5 719.4199 v +402.1016 733.2607 363.3799 727.8193 v +343.8008 724.2412 335.2998 722.2998 v +332.3623 722.9209 331.7002 723.2598 v +331.043 723.7998 318.0605 733.7002 287.7798 725.8994 c +269 720.9414 259.46 715.5801 v +242.8208 714.3408 238.8198 710.7793 v +218.4009 694.7598 216.2598 693.9795 v +214.0015 693.001 201.4614 684.6416 200.6602 684.1396 c +227.6406 691.46 230.1802 694.2197 v +232.9209 696.7393 252.0605 699.6006 254.6602 698.0596 c +257.3408 696.5215 266.5806 697.1816 256.1001 696.6201 c +339.1807 680.2393 340.0996 678.1396 v +340.9424 675.8408 345.3799 677.1797 y +F +0.164706 0.627451 1 0.031373 k +423.8594 687.2598 m +412.6621 695.4199 410.4199 695.4199 v +408.2617 695.4199 394.6211 706.6396 390.0195 706.2197 c +385.3809 705.7617 371.9629 716.7607 341.7793 707.6602 c +341.1602 709.9395 345.1406 710.7793 v +352.1621 713.2393 352.5801 713.8994 v +374.8203 718.5195 382.8203 714.6201 v +392.8613 711.7012 399.6201 704.7793 v +412.002 701.3594 415.46 702.3799 v +425.2012 700.04 425.54 698.0596 v +432.0225 694.7598 430.0996 691.8193 v +430.4814 690.1396 423.8594 687.2598 v +F +410.1797 689.6602 m +411.0508 688.9063 412.1719 688.7979 412.8203 687.9795 c +413.0938 687.5625 412.7773 687.2041 412.3398 687.0195 c +411.2842 686.749 410.123 687.375 408.9805 686.7793 c +408.4238 686.501 407.7178 686.7002 407.0605 686.7793 c +405.3125 687.3506 403.3018 687.377 401.54 686.54 c +399.2578 687.8623 396.6631 687.2217 394.3398 688.2197 c +394.3086 688.3516 394.0645 687.9697 394.0996 687.9795 c +390.6318 689.2588 386.5156 688.9492 383.7793 691.5801 c +381.1709 691.9131 378.5762 692.4219 375.8594 693.2598 c +373.9063 693.7305 372.3584 694.8174 370.5801 695.6602 c +369.0605 696.5117 367.457 697.085 365.7793 697.5801 c +363.7207 697.9922 361.707 697.8701 359.54 698.54 c +359.5234 698.4678 359.3125 698.0908 359.2998 698.0596 c +358.8652 698.2393 358.5469 698.8809 358.3398 698.7793 c +356.5088 698.2471 354.8721 699.3174 353.0605 699.0195 c +351.7441 700.2871 349.8438 700.0186 348.2598 700.46 c +344.8828 701.4365 341.415 700.04 338.1797 701.1797 c +342.6055 703.167 347.7607 701.8105 352.3398 704.0596 c +354.791 705.3916 357.7188 704.1797 360.5 705.0195 c +361.0801 705.1729 361.8418 705.3965 362.1797 704.7793 c +362.4297 704.8086 362.6289 705.0723 362.6602 705.0195 c +365.3887 703.7695 367.9355 702.3682 370.5801 701.1797 c +371.0391 701.0332 371.627 701.29 372.0195 701.1797 c +373.5752 699.7305 375.7109 699.8428 377.2998 698.54 c +379.1094 699.0537 381.082 698.6338 383.0605 699.2598 c +383.0693 699.3506 383.3262 698.9766 383.2998 699.0195 c +384.6055 699.8232 385.875 699.5264 386.9004 699.2598 c +387.2285 699.0625 387.959 698.792 388.3398 698.7793 c +389.5303 698.4072 390.4736 697.8799 391.7002 697.5801 c +391.8965 697.6592 392.0986 698.0332 392.1797 698.0596 c +393.4141 697.5195 394.5586 697.5801 395.2998 696.3799 c +395.4297 696.4492 395.6113 696.7109 395.7793 696.6201 c +396.8311 696.3105 397.5469 695.4795 398.6602 695.1797 c +399.291 695.0977 399.9629 694.4092 400.5801 694.2197 c +403.2266 693.4111 405.2559 691.7285 407.7793 690.8594 c +408.5049 690.4033 409.4668 690.1465 410.1797 689.6602 c +F +325.9395 705.2598 m +323.0957 707.1514 320.4922 708.3682 317.7793 710.2998 c +317.6055 710.4795 317.2109 710.29 317.0605 710.54 c +315.8789 711.0967 314.9043 711.7354 313.9395 712.46 c +313.2295 712.9209 312.3271 712.9082 311.7793 713.1797 c +308.9697 714.6123 306.0776 715.2266 303.3799 716.54 c +304.0713 717.2432 305.3047 716.9736 306.02 717.9795 c +306.1733 717.5527 306.4351 717.2402 306.7402 717.5 c +308.6699 718.4453 310.7051 718.6133 312.5 718.46 c +314.4248 718.4121 316.3164 718.0781 318.2598 717.7393 c +318.6055 717.7275 318.8242 717.1514 319.2197 717.0195 c +321.6318 716.3145 324.2598 716.8926 326.6602 716.0596 c +328.3398 715.2793 330.0684 714.375 331.46 712.9395 c +331.707 712.6855 331.3496 712.3545 330.9805 712.2197 c +331.4697 712.2607 331.7695 712.0352 331.9395 711.7393 c +331.9834 711.4277 331.9834 711.0938 331.9395 710.7793 c +331.7676 710.4893 331.46 710.377 330.9805 710.2998 c +329.502 710.1123 331.4502 711.6289 330.7402 711.0195 c +329.2813 710.2422 330.1016 708.6963 329.2998 707.4199 c +328.9736 707.5137 328.7217 707.7529 328.8203 708.1396 c +329.0977 707.6064 328.4355 707.2881 328.3398 706.9395 c +327.8281 706.1426 326.8398 704.585 325.9395 705.2598 c +F +290.1802 697.0996 m +286.6494 698.043 283.2944 697.918 279.8599 699.2598 c +279.9033 699.3535 279.6582 698.9697 279.6201 699.0195 c +278.084 699.6533 277.0737 700.7168 275.7798 701.8994 c +274.8872 702.8428 273.063 702.418 271.7002 702.8594 c +271.3042 703.0898 271.0806 703.6514 270.7402 703.5801 c +269.4102 703.8682 268.3906 704.9121 267.1401 705.5 c +269.811 706.4141 272.4629 706.3809 275.0601 706.7002 c +275.2949 706.8242 275.4536 706.4697 275.54 706.46 c +275.751 706.4697 275.8926 706.7119 276.02 706.9395 c +276.2554 706.5537 276.5864 706.1934 276.98 706.46 c +277.4722 707.0674 278.084 706.8584 278.6602 706.7002 c +278.835 706.8027 278.9746 706.4697 279.1401 706.46 c +279.2695 706.4697 279.4136 706.8125 279.6201 706.7002 c +279.7109 706.8105 279.855 706.4697 280.1001 706.46 c +280.1504 706.4697 280.292 706.7119 280.3398 706.9395 c +281.2017 706.001 282.1733 706.6113 282.98 706.46 c +284.2207 706.165 284.5137 704.8994 285.6201 704.54 c +290.8833 703.1377 295.4336 700.7793 300.2598 698.54 c +300.5693 698.3213 300.7998 698.0479 300.7402 697.5801 c +300.9751 697.6201 301.3184 697.7168 301.46 697.5801 c +302.6914 696.7666 303.8359 696.1641 304.5801 694.9395 c +304.8418 694.585 304.479 694.1357 304.3398 694.2197 c +299.3506 695.2881 294.9438 695.9551 290.1802 697.0996 c +F +274.8198 648.6201 m +273.1206 649.8799 272.4775 652.1113 271.2197 654.1396 c +271.0015 654.4561 271.3042 654.8047 271.7002 654.8594 c +272.2686 655.0752 272.8662 654.5498 273.3799 654.3799 c +275.2354 653.3789 276.9248 652.0137 279.1401 651.9795 c +281.3096 649.4043 285.9941 648.9795 286.1001 645.2598 c +286.0039 644.3164 284.4321 645.3242 283.9399 644.2998 c +281.2642 645.4834 278.6357 645.3701 276.02 646.9395 c +275.3384 647.4033 275.7031 647.9023 274.8198 648.6201 c +F +244.5801 706.46 m +244.729 706.3711 252.4614 706.1143 252.5 705.9795 c +252.3945 705.6514 243.8911 704.4971 243.3799 704.7793 c +243.3105 704.7676 235.0474 702.0938 234.98 702.1396 c +235.1934 702.3896 244.2871 706.373 244.5801 706.46 c +F +0 g +261.6201 695.6602 m +245.2402 693.6602 240.5 692.2998 v +235.5605 691.0205 215.1006 682.6611 211.7002 680.54 c +197.0601 674.5205 178.3398 652.46 v +186.7207 656.2617 189.1401 659.4199 v +204.1016 673.2002 203.7798 670.46 v +217.3018 679.8008 216.7402 677.4199 v +243.481 689.7002 241.2197 686.2998 v +265.04 691.2412 264.02 688.9395 v +284.6216 684.2002 281.54 683.8994 v +275.1606 682.6611 282.2598 678.6201 v +278.4609 673.8604 272.4199 678.3799 v +266.5806 682.6611 269.8809 680.2393 264.5 679.0996 c +261.5215 678.2598 256.5801 682.7002 v +250.3018 687.7207 240.7402 683.6602 v +206.96 669.9004 204.7402 669.2598 v +200.8018 666.1611 198.2598 662.2998 v +191.7798 657.3604 188.4199 655.8193 v +174.4014 643.0615 173.0601 641.4199 v +169.3398 635.8018 168.5 635.4199 v +175.501 639.54 177.6201 641.6602 v +193.1001 652.7402 198.98 653.6602 v +203.8809 656.9209 204.7402 658.46 v +220.6016 668.5801 225.1401 668.54 v +235.3398 662.8613 238.1001 670.46 v +244.3613 672.54 250.5801 671.1797 v +254.041 674.0811 253.2197 676.46 v +254.9214 678.4805 256.1001 674.2998 v +259.7598 670.3398 264.98 672.6201 v +269.4414 672.7617 267.1401 670.2197 v +262.3999 665.9404 249.3799 665.6602 v +235.7817 665.0596 217.7002 656.7793 v +184.9614 645.2598 174.7402 633.7393 v +167.8018 624.1396 161.7798 622.9395 v +155.48 621.9414 148.8198 613.8193 v +159.6606 620.1797 169.46 620.2998 v +173.96 622.8193 169.7002 618.8594 v +165.8218 610.501 167.54 604.46 v +166.9209 598.8418 166.1001 597.0195 v +157.46 583.001 157.46 580.46 v +157.46 577.7217 158.7798 566.9404 159.1401 566.2998 c +159.6606 565.6201 158.1201 568.04 162.2598 565.3398 c +166.4814 562.7598 169.5605 561.001 170.4199 557.8994 c +171.3198 554.8398 168.2407 563.8613 168.02 565.8193 c +167.8018 567.8213 163.1816 575.7412 164.1802 578.2998 c +165.1616 577.2793 166.1001 575.6602 v +165.3799 576.4014 166.1001 580.46 v +166.9209 586.0801 168.5 589.5801 v +170 593.1201 172.2007 597.3008 172.5801 598.2197 c +173.0815 599.0596 173.0815 605.4414 174.7402 602.54 c +178.3398 599.6602 l +175.2798 602.5801 177.6201 604.9395 v +176.6001 611.1602 178.5801 614.0596 v +186.2817 623.2617 187.9399 624.3799 v +189.7998 625.46 188.1802 625.0996 y +194.8613 629.6406 188.4199 627.9795 v +184.0806 626.1201 180.7402 626.0596 v +172.4214 623.9209 176.8999 628.46 v +181.2197 633.1611 192.2217 639.1016 196.3398 638.7793 c +197.2998 637.0996 l +209.54 639.7393 l +208.3398 638.7793 l +208.0615 639.1016 212.6602 639.5 v +217.3018 639.9795 223.6807 638.4414 225.1401 640.46 c +226.7598 642.4014 230.5015 643.501 230.1802 641.8994 c +229.6206 640.4209 229.46 638.2998 y +234.9009 644.5996 234.2598 642.1396 v +233.5806 639.7617 224.5615 634.04 222.98 627.2598 c +234.5 636.1396 l +238.3398 639.5 l +242.3818 637.1211 242.6602 638.7793 v +242.8208 640.6396 247.8799 647.0215 249.1401 646.7002 c +250.52 646.5801 252.7207 649.6611 252.5 646.7002 c +252.2817 643.9395 260.6602 638.0596 y +264.1616 639.9795 265.7002 638.54 v +267.2407 636.9004 271.9399 660.1396 y +299.2998 671.8994 l +347.2998 675.7393 l +328.5801 683.1797 l +261.6201 695.6602 l +F +*u +1 D +0 R +0.435294 0.886275 0.8 0.670588 K +1 J 2.2 w 10 M +281.54 476.7803 m +265.04 495.2217 255.8599 498.1396 v +241.0615 505.5605 214.1001 496.9395 v +S +252.2598 499.5801 m +224.5615 508.4209 207.6201 503.8994 v +187.3809 501.6006 178.1001 486.3799 v +S +248.4199 501.0195 m +229.6206 508.8604 213.3799 511.3398 v +195.0801 514.1406 176.8999 506.2998 v +163.3999 499.6201 157.46 488.2998 v +S +249.3799 500.54 m +232.4814 512.5996 231.3799 514.2197 v +223.6807 526.2412 209.2998 526.7002 v +185.8398 525.7998 166.8198 517.0996 v +S +*U +0 D +0 O +0 g +0 J 1 w 4 M +247.9399 510.3799 m +249.6802 508.7842 279.3799 477.0195 y +318.0605 436.7002 287.2998 474.3799 y +278.8999 479.5996 268.8198 500.2998 y +267.4614 503.3594 284.1802 492.3799 y +288.5815 491.4795 303.6201 470.2998 y +296.0601 473 301.46 465.0195 y +304.4214 462.8818 326.9004 445.8193 y +330.8223 441.3193 335.2998 439.5801 y +350.6211 445.2793 343.7002 430.7002 y +346.2227 423.2793 352.3398 435.9795 y +364.7021 454.5195 346.5801 451.8193 y +313.6621 448.8008 306.2598 466.46 y +303.541 469.04 313.2197 466.46 y +322.4629 464.2012 305.2998 480.1396 y +307.9395 480.041 318.0195 472.46 y +329.502 462.4395 331.7002 464.54 y +351.502 474.3193 362.9004 465.9795 y +365.1416 464.2012 358.9805 456.7207 360.7402 451.0996 c +362.502 445.2793 367.7002 431.6602 y +365.1416 429.8789 365.54 417.9795 y +384.0605 392.4795 373.46 394.7002 y +356.3408 395.1201 372.7402 386.7793 y +376.1406 384.5596 385.9395 376.7002 y +382.7402 377.96 380.9004 372.1396 y +386.2617 367.8389 383.2998 362.54 y +376.582 361.2393 375.3799 356.7793 y +382.7402 348.0391 371.7793 347.6602 y +375.7012 342.7588 370.3398 329.6602 y +365.1416 329.5586 358.0996 323.4199 y +360.7422 318.1201 349.2197 311.8994 y +340.0615 310.2002 343.2197 302.7793 y +334.3418 296.1201 331.7002 278.54 y +330.8223 267.0801 328.1816 263.5586 333.8594 265.8193 c +339.623 267.958 338.6602 281.6602 y +333.4609 298.7598 380.6602 316.46 y +384.9414 318.1201 385.9395 323.8994 y +388.0215 323.4004 397.7002 315.0195 y +406.0615 302.7197 406.5801 312.8594 y +407.8203 316.8008 406.0996 323.4199 y +412.6621 347.1582 397.2197 354.1396 y +386.2617 391.1602 401.7793 381.9795 y +404.7422 375.7588 416.6602 369.9795 y +420.5 372.6201 l +418.8223 377.96 428.1797 384.6201 y +431.1416 377.5205 437.7793 386.2998 y +441.7012 413.1582 455.2998 397.3398 y +459.7422 396.001 461.0605 403.5801 y +465.0225 414.9199 461.0605 429.9795 y +465.0225 430.3203 475.7002 423.7393 y +478.6621 427.6807 468.541 446.1582 473.0605 443.4199 c +477.3418 440.8809 482.1797 439.0996 y +483.0605 441.3193 472.0996 454.9395 y +467.2207 458.04 461.54 480.3799 y +469.4219 476.5205 458.4199 493.3398 y +458.4219 496.7598 465.1406 509.1797 y +464.1416 516.5596 465.1406 516.1396 y +468.1016 514.8008 476.9023 513.041 469.46 519.9795 c +461.9414 527.1201 470.4199 532.46 y +475.1406 535.4814 460.0996 535.0996 y +454.4629 539.8809 454.8203 544.2197 y +463.7021 542.0811 447.8623 557.9209 445.2197 561.9795 c +442.582 565.8418 453.1406 571.5801 y +467.6621 575.5205 454.8203 579.0195 y +433.3418 578.5996 445.2197 590.54 y +451.8223 590.04 450.0195 592.7002 y +444.3418 594.001 433.7002 601.0996 y +429.3828 605 433.46 604.2197 y +451.8223 602.8018 420.2598 615.0195 y +428.9414 615.1201 409.2197 626.54 y +406.9424 628.3203 403.46 636.6201 y +396.8223 642.4014 391.46 649.8193 y +391.1025 654.7207 385.9395 659.8994 y +373.0615 674.96 366.9805 674.54 y +350.6211 678.4805 344.9004 677.6602 y +286.8198 672.8594 l +257.7798 658.6807 266.4199 635.6602 y +273.4014 626.3408 283.46 630.6201 y +288.5815 637.3398 301.46 634.9395 y +323.7822 631.3994 320.9004 635.4199 y +318.2813 640.4209 300.4614 647.2393 300.2598 647.8994 c +300.02 648.5596 290.4199 652.2197 y +287.041 653.6211 282.2598 663.7393 y +278.6816 667.4814 296.1802 661.0996 y +294.7402 660.001 302.8999 655.5801 y +322.0205 656.7002 333.6201 644.7793 y +345.5625 626.5615 345.8594 635.6602 y +348.8623 645.9199 335.7793 669.2598 y +336.3223 671.4414 345.3799 664.2197 y +346.8828 666.3799 347.7793 659.8994 y +347.9814 657.3604 352.0996 648.6201 y +355.2422 634.2607 359.2998 642.3799 y +364.3398 632.0596 l +365.8018 629.2012 359.2998 620.7793 y +358.9805 617.7607 359.8613 617.9814 353.7793 609.7393 c +347.543 601.2607 351.3799 596.54 y +349.7402 589.1602 359.54 589.5801 y +362.2813 587.1797 366.0195 587.1797 y +368.002 584.9814 370.5801 585.7393 y +372.4014 589.8193 379.2197 587.6602 y +380.7607 590.2617 389.7793 590.7793 y +390.8809 593.5615 391.3203 595.3203 395.0605 596.0596 c +398.8018 596.6406 371.7793 644.0596 y +378.7813 644.8203 369.8594 658.46 y +367.3418 665.7197 379.8828 649.6611 382.3398 648.1396 c +384.7207 646.5801 385.8223 644.1602 384.0195 644.2998 c +382.3018 644.5996 380.3223 642.1807 381.8594 641.8994 c +383.4004 641.7412 397.7021 625.2412 401.54 614.0596 c +405.1807 602.8018 411.7813 598.3994 418.5801 591.7393 c +425.4219 585.2002 424.5801 558.6201 y +424.1025 548.8994 430.8203 537.2598 y +432.9004 533.0596 428.1797 513.0195 y +426.082 510.6201 427.7002 509.6602 y +428.7227 508.4209 436.0996 493.8193 y +434.2207 494.1201 438.2598 490.2197 y +443.9023 483.5596 436.8203 486.8594 y +430.2607 488.6211 438.0195 477.7393 y +439.2822 475.8604 429.3799 480.8594 y +419.2617 481.5801 432.0195 473.6602 y +441.4805 465.7393 428.9004 470.54 y +423.8809 472.5605 427.46 465.0195 y +430.9209 463.3203 449.7793 455.6602 y +450.2813 451.4404 446.9004 445.8193 y +447.4209 441.54 444.9805 437.8994 y +443.6816 428.7793 443.0605 427.8193 y +438.4014 427.6807 430.3398 412.46 y +428.2813 409.6396 417.1406 396.3799 y +414.8623 388.7402 395.0605 396.6201 y +387.8027 392.9189 390.0195 396.6201 y +389.5615 399.0801 394.8203 405.7393 y +402.541 408.54 399.6201 420.3799 y +404.082 421.959 391.7617 425.04 391.9395 426.3799 c +392.2012 427.6807 398.6602 429.2598 y +407.3809 431.4199 402.5 434.0596 y +401.8809 438.459 405.1406 444.6201 y +417.9414 445.501 405.1406 463.3398 y +393.3008 471.6797 392.1797 477.9795 y +406.0615 487.0801 397.043 500.7197 397.2197 504.6201 c +397.4814 508.6396 398.9004 532.46 y +396.6006 539.2207 393.3799 554.2998 y +395.7227 559.9014 403.9395 573.7393 y +406.9424 578.3818 416.6211 583.6611 414.2598 586.9395 c +411.7813 590.2617 403.2197 588.3799 y +394.6211 589.8193 395.2998 584.0596 y +393.5215 583.001 392.6602 577.5801 y +391.8486 568.7744 382.0996 561.9795 y +369.7617 555.0605 379.9395 550.7002 y +386.4824 543.4014 375.6201 543.2598 y +363.6006 545.1602 372.7402 533.8994 y +384.502 519.8594 381.1406 516.8594 y +369.9824 515.6816 383.7793 505.5801 y +382.9609 507.7617 383.2998 505.8193 v +383.4004 503.8018 386.7012 499.1816 387.6201 496.9395 c +388.4629 494.7793 384.0195 494.54 y +384.7207 484.001 367.7002 488.54 y +367.7813 488.6211 366.0195 488.2998 v +364.2607 488.1797 351.9414 489.0605 345.6201 491.4199 c +339.1807 493.9014 331.7002 493.8193 y +327.3008 491.9209 318.9805 492.1396 v +310.5801 492.3604 301.7002 489.2598 y +296.9409 489.7207 306.4014 494.5615 306.7402 494.2998 c +306.8408 494.1201 313.002 500.2803 304.1001 499.5801 c +280.2246 497.8232 268.3398 509.1797 y +266.1416 510.6201 263.2998 513.7393 y +252.2817 515.8994 264.7402 500.0596 y +266.1416 498.5215 264.5 497.4199 y +263.7197 499.1816 255.1401 505.0996 y +252.0488 506.1914 250.5488 507.6582 247.9399 510.3799 c +F +0.435294 0.886275 0.8 0.670588 k +221.7798 523.0996 m +234.4614 517.001 237.3799 513.9795 v +240.1807 510.8408 255.6201 498.3799 y +249.6416 500.501 246.7402 502.46 v +243.9199 504.4609 232.1001 513.5 y +227.8613 520.0801 221.7798 523.0996 v +F +0.45098 0 1 0 k +157.9399 557.4199 m +158.2617 557.6406 157.6855 560.624 157.46 561.2598 c +156.3369 564.2188 146.4199 565.8193 y +146.2109 564.3389 146.1514 562.585 146.1802 560.7793 c +151.6206 554.71 157.9399 557.4199 v +F +0.658824 0.2 1 0.039216 k +157.9399 557.6602 m +157.395 557.5225 157.875 560.7051 157.7002 561.2598 c +156.5552 564.2188 146.4199 566.0596 y +146.2109 564.4492 146.1514 562.6924 146.1802 560.7793 c +150.9609 555.2598 157.9399 557.6602 v +F +0 g +153.1401 557.6602 m +152.3721 557.54 151.8154 558.7949 151.7002 560.2998 c +151.8154 561.8857 152.3721 563.1416 153.1401 563.1797 c +153.7471 563.1416 154.3066 561.8857 154.3398 560.2998 c +154.3066 558.7949 153.7471 557.54 153.1401 557.6602 c +F +102.98 449.6602 m +96.7402 438.6797 124.1001 445.3398 v +139.4214 446.5996 142.1001 449.1797 v +143.3818 448.3594 152.583 445.1338 155.7798 444.3799 c +163.1816 442.6396 172.3398 453.7402 y +177.481 465.1904 180.5 465.2598 v +183.6416 465.1904 180.02 463.3398 y +172.8608 452.3193 173.2998 450.6201 v +167.5806 428.5586 150.02 427.5801 v +132.2144 426.6338 133.7002 420.1396 v +143.3818 422.8398 145.9399 420.1396 v +157.9014 420.6387 149.0601 413.6602 v +141.6201 400.9395 l +141.7734 396.5313 130.5801 400.46 v +119.8398 404.1387 108.5 418.2197 y +90.9658 434.333 102.98 449.6602 v +F +0.066667 0.470588 0.290196 0 k +101.54 445.3398 m +99.3799 434.7197 139.9399 446.0596 v +144.7017 446.1582 147.3799 445.3398 v +149.9814 444.3994 163.1816 441.3193 165.3799 442.7002 c +157.46 427.6807 144.7402 429.5 v +130.1816 427.6807 130.5801 422.2998 v +135.02 414.4805 140.4199 411.7402 v +143.3818 409.2002 143.0601 405.7402 v +142.501 402.1592 139.4214 400.3994 137.2998 399.5 c +135.02 398.6406 131.5015 402.1592 129.8599 402.1396 c +127.981 402.1592 118.7407 409.2002 114.02 414.3799 c +109.0615 419.7578 99.8218 432.958 100.3398 435.9795 c +100.7002 439.1191 101.54 445.3398 y +F +0.262745 0.682353 0.52549 0.062745 k +105.1401 426.1396 m +107.96 421.7402 111.481 417.1201 114.02 414.3799 c +118.7407 409.2002 127.981 402.1592 129.8599 402.1396 c +131.5015 402.1592 135.02 398.6406 137.2998 399.5 c +139.4214 400.3994 142.501 402.1592 143.0601 405.7402 c +143.3818 409.2002 140.4199 411.7402 y +136.9277 413.5254 133.9136 417.3682 132.2598 419.8994 c +132.3799 417.1201 126.7402 417.9795 v +120.9414 418.8799 115.2197 421.959 113.54 425.4199 c +111.7017 429.001 109.0615 431.6406 110.8999 427.5801 c +112.5801 423.7207 115.2197 419.7578 116.8999 419.4199 c +118.7407 418.8799 118.3018 417.5596 115.7002 417.9795 c +113.0215 418.4404 109.9399 418.8799 105.1401 424.7002 c +F +0.254902 0.941176 1 0.243137 k +102.2598 449.1797 m +104.2207 464.2012 105.6201 468.6201 v +104.6602 476.0811 107.2998 480.6201 v +109.9399 485.3213 112.1406 492.1396 115.46 498.1396 c +118.7407 504.0195 118.9614 508.4209 123.3799 510.1396 c +127.7598 511.9395 134.3599 521.4004 137.54 522.6201 c +140.5205 523.6016 140.4199 522.6201 y +147.7808 539 162.7402 534.6201 v +144.9199 537.6797 162.2598 548.0596 v +157.0205 546.8115 160.5801 554.54 v +163.0713 559.6445 162.5215 552.2002 150.5 539.1797 c +144.9199 529.7598 139.2197 526.46 v +133.4814 523.1602 120.2817 515.4609 119.0601 511.3398 c +117.6416 507.1016 114.1206 500.7197 111.8599 498.8594 c +109.7217 497.2012 106.6401 492.5811 106.1001 488.7803 c +104.8809 484.4404 103.46 483.0195 v +101.8018 481.8008 101.5806 478.2803 101.54 476.0596 c +101.5806 473.8809 99.3799 470.8018 99.6201 468.1396 c +100.4814 447.2598 100.1001 445.0996 v +102.2598 449.1797 l +F +1 g +92.8999 444.1396 m +90.5815 445.7188 85.7002 439.0996 v +93.771 402.8193 93.8599 401.1797 v +94.981 403.5898 93.6201 411.5 v +92.1201 419.4297 91.2197 433.3398 y +92.8999 444.1396 l +F +0.254902 0.941176 1 0.243137 k +116.6602 510.8594 m +97.1816 507.3193 97.7002 475.0996 v +96.7402 447.9795 l +95.4199 476.0811 94.1001 477.7393 v +92.7798 479.5996 97.1816 491.9209 93.6201 485.4199 c +78.2598 469.9209 87.1401 446.54 v +88.7095 442.9707 85.46 447.9795 v +80.3506 461.8896 81.6201 468.8594 v +81.7808 471.3506 83.7798 474.3799 v +93.3296 487.3018 96.2598 489.7393 v +98.2808 505.6709 115.2197 511.3398 v +121.4912 513.9199 116.6602 510.8594 v +F +0 g +269.7798 583.5801 m +270.6055 584.0498 270.5957 585.1182 271.2197 585.2598 c +272.499 585.6846 272.6792 586.8584 273.1401 587.6602 c +274.208 589.1719 274.4214 590.8594 275.0601 592.46 c +275.3599 593.2686 275.3911 594.3193 275.0601 595.0996 c +273.7544 597.7734 272.9814 600.4688 271.46 603.0195 c +271.1001 603.6318 270.812 604.5049 270.5 605.1797 c +270.0825 606.6865 268.7002 607.7764 267.8599 609.2598 c +267.4375 609.7129 268.0137 610.7305 267.1401 610.9395 c +266.2402 610.9395 264.6465 611.5752 264.5 610.46 c +263.7441 607.6016 264.855 604.8271 265.9399 602.0596 c +265.0591 601.3779 265.4263 600.3682 265.7002 599.4199 c +266.377 595.5557 265.0566 591.8691 264.2598 588.1396 c +264.1953 587.9336 264.5718 587.7148 264.5 587.6602 c +263.1968 584.6934 261.5981 582.0029 259.7002 579.5 c +258.7642 578.293 257.8066 577.2842 257.2998 576.1396 c +256.8535 575.249 256.4048 574.1885 256.5801 573.0195 c +252.9033 570.0439 250.4263 565.8125 247.46 561.5 c +247.0474 560.835 247.3662 559.5049 247.9399 559.0996 c +248.8662 558.7705 249.9199 559.8965 250.3398 560.7793 c +250.8633 561.5957 251.252 562.3105 251.7798 562.9395 c +251.9385 563.2109 251.7417 563.6719 251.7798 563.8994 c +254.7871 566.3857 256.623 569.6162 259.2197 572.2998 c +261.4663 572.583 263.1558 573.6797 264.98 574.7002 c +265.417 574.9902 265.9951 574.7168 266.4199 574.9395 c +268.2417 576.2266 268.2393 578.4678 268.3398 580.46 c +268.4097 581.54 268.6255 582.9893 269.7798 583.5801 c +F +260.1802 588.6201 m +260.2905 588.6582 260.1201 589.124 260.1802 589.3398 c +260.4199 589.7168 260.8613 589.9229 261.1401 590.2998 c +261.1616 590.5186 260.9814 590.9355 261.1401 591.0195 c +263.6982 593.7842 263.979 597.1113 262.8198 600.3799 c +263.9673 601.0635 264.0342 602.4512 263.54 603.5 c +262.6279 605.252 262.417 607.3711 261.3799 609.0195 c +260.4609 610.4648 258.7256 611.833 257.2998 610.46 c +256.7554 609.958 256.3999 609.0938 256.8198 608.2998 c +256.7769 608.1318 257.0913 607.9707 257.0601 607.8193 c +256.9424 607.5244 256.3423 607.2773 256.3398 606.8594 c +256.3042 605.333 255.2529 603.6699 255.8599 602.2998 c +256.7959 600.418 257.6958 598.373 258.5 596.54 c +257.0815 594.0918 258.2192 591.3994 256.3398 589.3398 c +256.1406 589.1738 256.1504 588.749 256.3398 588.6201 c +256.6064 587.9932 257.0527 587.5469 257.54 587.1797 c +257.811 587.0908 258.1929 587.0908 258.5 587.1797 c +259.0498 587.624 259.4863 588.1592 260.1802 588.6201 c +F +329.2998 599.8994 m +330.7754 597.9434 331.0957 594.8691 328.8203 593.4199 c +329.4463 589.7002 333.1328 591.877 335.54 592.46 c +335.3223 592.8867 335.5713 593.2666 335.7793 593.1797 c +337.0449 593.2881 337.793 594.4229 338.9004 594.1396 c +339.4395 595.9326 341.2402 596.7051 342.0195 598.2197 c +343.8457 602.2881 343.1982 606.9893 340.3398 610.46 c +340.1338 610.8389 340.3711 611.4072 340.3398 611.8994 c +339.4043 614.2373 337.1289 614.583 335.0605 615.2598 c +333.707 619.6035 332.9785 624.0361 330.9805 628.2197 c +329.2666 628.376 328.498 630.2881 327.1406 631.0996 c +325.5605 631.8701 324.9365 630.1348 324.9805 628.9395 c +324.9902 628.7598 325.4863 628.5127 325.2197 628.2197 c +325.2148 627.9297 324.9297 627.8096 324.9805 627.7393 c +324.9316 627.5117 325.1738 627.3682 325.2197 627.2598 c +324.3105 626.3193 322.7461 625.793 322.3398 624.6201 c +321.373 620.4531 324.2021 617.0166 325.9395 613.5801 c +326.6865 612.248 325.877 610.8486 324.9805 609.5 c +324.5605 608.7559 324.6797 607.5146 324.9805 606.6201 c +325.8105 604.0107 327.5605 602.0957 329.2998 599.8994 c +F +288.2598 579.7393 m +286.7358 577.6543 282.9849 574.8291 286.1001 572.7793 c +286.4048 572.5664 286.8125 572.5615 287.0601 572.7793 c +289.2246 574.4307 291.4302 575.4248 294.02 576.1396 c +294.2456 576.0967 294.5479 575.583 294.98 575.6602 c +296.7271 576.5332 298.9375 576.4688 300.2598 578.0596 c +304.3833 577.6953 308.3047 578.9209 312.0195 580.46 c +313.3135 580.8535 314.7109 581.4678 316.0996 582.1396 c +317.5449 582.6533 318.8691 583.6758 320.1797 585.0195 c +320.2373 585.0801 320.6289 584.9814 320.9004 585.0195 c +320.8789 585.9297 321.9365 586.0713 322.0996 586.7002 c +322.3086 587.0098 322.1426 587.4463 322.3398 587.6602 c +324.6416 589.3496 325.6543 591.5693 324.2598 594.1396 c +324.0537 594.8213 323.7793 595.501 323.0605 596.0596 c +321.9629 597.0244 320.751 596.0859 319.7002 596.54 c +319.4258 595.7305 318.625 595.918 318.2598 595.8193 c +317.2539 595.2197 315.7881 595.8633 314.9004 595.3398 c +313.3447 594.6152 311.9785 594.4297 310.3398 593.8994 c +310.0713 593.9258 309.2168 594.0293 309.1406 593.4199 c +308.8926 593.4893 308.7295 593.7461 308.6602 593.6602 c +306.5146 593.2852 305.1294 593.0498 303.6201 591.2598 c +303.584 591.0439 303.0967 591.2402 302.8999 591.0195 c +301.8701 590.2012 301.4263 588.8457 300.2598 588.1396 c +299.9937 587.9697 299.605 588.1563 299.2998 587.8994 c +298.6807 587.54 298.2773 586.834 297.6201 586.46 c +297.2095 586.0898 296.7705 586.4473 296.8999 586.7002 c +297.0752 588.8721 297.793 590.8369 297.1401 592.9395 c +299.4463 595.6729 302.2134 597.8164 304.1001 600.8594 c +304.2178 603.2041 304.9785 605.5635 304.8198 607.8193 c +304.8418 608.0596 304.5249 608.8662 304.3398 609.2598 c +304.0449 610.1885 305.041 611.3594 304.1001 612.1396 c +302.5688 613.4814 301.1479 612.5166 300.2598 610.9395 c +298.2178 610.5098 295.9448 609.749 294.2598 611.1797 c +293.103 611.9717 292.4673 612.9697 291.6201 614.0596 c +290.5039 615.5625 290.8735 617.1416 290.8999 618.8594 c +290.9551 619.0039 290.6094 619.1523 290.6602 619.3398 c +290.6118 619.4502 290.8521 619.5938 290.8999 619.8193 c +290.2231 620.4297 289.9209 621.5938 288.7402 621.9795 c +289.1357 623.1416 288.3921 624.1133 287.54 624.3799 c +285.2383 625.208 283.395 623.1025 281.2998 622.9395 c +280.748 623.002 280.2344 624.1445 279.6201 624.6201 c +279.0464 624.7393 278.271 624.7754 277.9399 624.3799 c +277.1167 623.9287 276.4688 623.8037 275.54 623.6602 c +273.855 623.0977 272.4512 621.8936 270.7402 621.0195 c +269.1895 620.0117 268.1382 618.4297 266.8999 616.9395 c +265.9136 615.7109 265.7646 613.0566 267.3799 612.6201 c +269.355 611.792 270.7881 614.7656 272.8999 614.2998 c +273.2935 614.3506 273.5215 614.0068 273.3799 613.5801 c +273.8286 613.46 274.0688 613.7119 274.3398 614.0596 c +275.2231 612.9004 276.5049 612.5283 277.46 611.6602 c +278.605 610.5752 280.5249 611.0332 281.54 609.9795 c +283.3232 608.2852 282.7065 605.3359 284.8999 603.9795 c +284.1968 602.4561 283.5298 601.0518 283.2197 599.4199 c +282.8506 598.1553 283.9424 596.8398 285.3799 597.0195 c +286.6592 597.041 286.9473 597.877 287.54 599.1797 c +287.7754 598.7666 288.291 598.4404 288.2598 598.2197 c +287.7417 595.5771 286.6133 593.3857 286.1001 590.7793 c +286.0449 590.3623 285.709 590.1387 285.3799 590.2998 c +284.7656 585.6963 280.3086 583.0635 277.46 579.5 c +277.0664 579.0293 277.0615 577.6563 277.46 577.0996 c +279.0537 575.6865 281.2109 577.3877 282.98 578.0596 c +283.3135 579.2666 284.2593 580.3037 285.6201 580.2197 c +286.0063 580.2314 286.2656 580.8271 286.5801 580.9395 c +287.0049 581.1221 287.5566 580.875 287.7798 581.1797 c +289.772 582.4082 291.3223 583.625 293.2998 585.0195 c +293.4438 585.0752 293.8232 584.9023 294.02 585.0195 c +294.4185 585.2002 294.625 585.624 294.98 585.7393 c +295.3613 586.0469 295.6279 585.7275 295.9399 585.5 c +295.1313 585.0361 295.1265 583.9834 294.5 583.8193 c +293.6338 583.4668 293.0166 582.9033 292.3398 582.3799 c +291.9536 582.2002 291.229 582.4707 291.1401 582.3799 c +290.4561 581.1436 289.1528 580.6611 288.2598 579.7393 c +F +227.54 633.9795 m +217.2583 637.2002 204.98 609.0195 v +202.3398 603.2402 199.7002 601.0996 v +197.0601 598.8418 184.7407 594.8818 182.6602 590.54 c +171.1401 572.7793 l +187.3809 590.4795 190.8198 593.1797 v +199.7002 602.3594 196.1001 594.8594 v +180.7808 583.001 182.1802 572.7793 v +175.9399 557.04 174.98 554.7793 v +192.6606 590.04 195.3799 591.2598 v +197.9409 592.6807 199.2607 592.6807 198.02 588.6201 c +196.6206 584.7607 196.1816 566.7197 193.2197 564.6201 c +201.9009 586.9609 201.1401 590.54 v +204.541 594.4395 207.1401 588.6201 v +205.9399 571.0996 l +210.7402 557.8994 l +208.0615 570.2402 209.7798 587.4199 v +207.6201 598.8418 211.9399 592.7002 v +216.4209 586.5195 226.981 579.9199 227.0601 574.7002 c +221.2617 594.001 211.2197 599.1797 v +206.6602 592.7002 l +205.46 594.8594 l +201.4614 595.7598 206.4199 603.2598 v +211.1406 610.7217 210.7402 611.6602 y +217.7407 603.6797 219.6201 603.7393 v +234.02 612.041 235.46 585.2598 v +242.8208 601.04 232.8198 608.54 v +216.4209 610.7217 217.7002 616.46 v +225.6201 630.1396 l +229.6206 635.8018 227.7798 632.7793 y +F +205.46 615.9795 m +191.3408 616.001 187.9399 610.2197 v +180.02 599.6602 l +198.8218 610.7217 203.2998 612.1396 v +207.6201 613.3613 205.46 615.9795 y +F +161.54 609.0195 m +159.2217 607.6396 158.8999 604.46 v +158.3408 601.4814 155.7007 601.04 156.5 597.9795 c +157.46 594.8818 159.6606 592.2412 159.6201 596.54 c +159.6606 601.04 161.4199 603.2402 162.2598 604.46 c +163.1816 605.8809 164.9409 610.7217 161.54 609.0195 c +F +151.7002 541.5801 m +142.501 546.041 138.98 549.9795 v +135.4614 553.9609 135.9585 548.2783 130.5801 548.7793 c +124.189 549.166 125.2998 566.7793 y +120.98 558.3799 l +119.6216 542.5205 128.4199 545.1797 v +132.7183 546.4492 134.1416 544.7217 132.5 543.7393 c +130.6206 542.96 138.541 542.5205 135.3799 540.8594 c +132.3799 539 148.2197 544.7217 145.7002 533.1797 c +151.7002 541.5801 l +F +137.7798 525.7393 m +120.9414 520.9609 116.8999 531.5 v +111.7017 528.8818 114.02 525.5 v +116.54 522.2813 117.8599 521.8994 y +123.7998 520.5195 123.1401 519.7393 v +122.48 518.7607 119.7798 514.9395 y +131.0601 521.6211 137.7798 525.7393 v +F +1 g +389.0605 439.8193 m +388.6523 437.4316 386.8135 436.5508 384.7402 435.7402 c +382.6133 436.8721 379.7559 440.29 377.7793 437.8994 c +377.1602 438.5479 376.3037 438.6123 375.8594 439.3398 c +375.4141 440.3311 375.7129 441.4805 375.3799 442.46 c +374.7363 443.7578 373.957 445.2607 374.1797 446.7803 c +376.1484 447.6025 376.8027 449.6982 376.3398 451.5801 c +376.2051 451.9209 375.7324 452.1387 375.8594 452.54 c +376.1582 452.8779 376.5078 453.1279 376.8203 453.5 c +376.6523 453.2715 376.4941 453.0146 376.3398 453.0195 c +375.7012 453.1543 375.8359 453.8545 375.8594 454.2197 c +376.623 456.2021 378.8379 456.4922 380.4199 455.1797 c +380.6025 455.8018 381.1621 455.5879 381.6201 455.6602 c +381.5859 456.2578 382.0352 456.8379 382.3398 457.3398 c +382.8223 458.5059 384.6152 457.2891 385.46 458.0596 c +386.6738 458.8711 387.8438 459.6416 389.0605 459.0195 c +391.0215 457.8633 392.9004 456.5313 394.0996 454.7002 c +394.8516 453.6963 395.1152 452.2881 395.0605 451.3398 c +395.0098 450.5215 393.4902 450.9102 393.1406 449.8994 c +392.4033 447.9658 394.417 447.3945 395.2998 445.8193 c +395.4678 445.5391 395.1777 445.2031 394.8203 445.0996 c +394.3789 444.9561 393.5166 445.165 393.6201 444.6201 c +394.7363 441.1514 391.7051 440.4082 389.0605 439.8193 c +F +378.5 418.2197 m +378.5527 420.1299 376.791 422.0645 378.0195 423.9795 c +378.2695 423.793 378.4141 423.5498 378.5 423.5 c +378.7109 423.5498 378.8555 423.793 378.9805 423.9795 c +380.6455 421.5029 384.6631 420.4805 384.5 417.2598 c +384.4834 416.8594 383.2881 415.8486 384.2598 415.0996 c +382.2871 413.6572 382.2266 411.0508 381.1406 408.8594 c +379.8398 409.2939 378.5078 409.6924 377.2998 410.2998 c +377.6289 411.9346 377.499 413.7871 378.5 415.3398 c +378.8789 416.0068 378.5645 417.1924 378.5 418.2197 c +F +0.8 g +195.8599 428.0596 m +177.1953 416.9697 192.7402 433.8193 v +202.3398 444.3994 213.3799 450.6201 y +224.7798 455.4004 228.7402 456.6201 v +232.7002 458.041 249.4209 463.7598 252.98 464.2998 c +256.46 464.6406 267.02 469.04 274.5801 464.54 c +281.9814 460.2412 290.8999 455.4199 y +272.7417 464.6406 268.8198 461.8994 v +264.8218 459.3604 256.9014 459.7998 250.3398 456.3799 c +234.02 451.4404 230.4199 449.1797 v +226.981 447.0391 215.54 434.2803 213.8599 435.2598 c +212.0215 436.04 214.2197 436.4795 215.54 439.5801 c +216.8599 442.6396 214.6616 444.3994 205.9399 437.4199 c +197.0601 430.3203 195.8599 428.0596 y +F +0 g +203.7798 434.7803 m +205.436 449.0264 214.8198 447.2598 v +223.8105 451.7842 226.8198 453.9795 v +235.7578 455.8203 237.1401 456.3799 v +257.5254 466.0684 273.7183 461.0986 274.3398 462.3799 c +274.9185 463.5605 296.5063 455.7314 300.5 451.3398 c +300.9082 450.749 289.2222 457.3945 278.6602 459.5 c +269.4536 461.249 245.6934 459.2021 233.7798 453.0195 c +230.4248 451.4521 220.585 445.0898 217.7002 445.0996 c +215.0166 445.335 203.7798 434.7803 y +F +0.8 g +199.7002 406.46 m +182.9814 409.2002 201.3799 411.0195 v +221.2617 413.1582 225.6201 418.9395 v +240.6201 429.001 243.6201 429.5 v +246.7808 429.8789 279.7808 437.7988 280.3398 440.54 c +280.6616 443.0791 286.8198 443.0791 288.5 442.2197 c +290.3408 441.3193 289.46 440 286.3398 439.0996 c +283.3018 438.2402 248.9814 420.2002 241.9399 418.9395 c +234.9009 417.5596 222.1401 409.2002 216.98 407.8994 c +211.5801 406.5586 199.7002 406.46 y +F +0 g +221.0601 414.6201 m +211.731 415.6113 221.2998 416.54 v +230.8906 420.2764 233.0601 423.2598 v +240.8047 428.3887 242.4199 428.54 v +243.9585 428.8369 259.3135 432.8936 259.46 434.2998 c +259.7646 435.5957 297.2383 449.4365 302.1802 445.8193 c +305.3022 443.6162 294.4111 445.46 283.7002 440.54 c +282.3223 439.9277 245.084 423.8818 241.46 423.2598 c +237.8745 422.5303 231.3418 418.251 228.7402 417.5 c +225.9346 416.8975 221.0601 414.6201 y +F +212.4199 412.2197 m +218.1802 412.7188 216.98 411.0195 v +215.54 409.2002 212.8999 410.0596 y +212.4199 412.2197 l +F +204.5 410.54 m +210.2598 410.96 209.0601 409.0996 v +207.6201 407.4395 204.98 408.3799 y +204.5 410.54 l +F +193.2197 408.8594 m +198.8218 409.2002 197.54 407.4199 v +196.1816 405.6797 193.46 406.46 y +193.2197 408.8594 l +F +184.8198 407.8994 m +190.46 408.3193 189.1401 406.46 v +187.8198 404.7988 185.2998 405.7402 y +184.8198 407.8994 l +F +227.0601 451.3398 m +231.8218 451.4404 230.4199 449.6602 v +229.1816 447.9199 225.6201 448.46 y +227.0601 451.3398 l +F +216.02 445.3398 m +223.1357 447.6338 220.3398 443.8994 v +219.0605 442.2002 216.5 443.1797 y +216.02 445.3398 l +F +203.7798 440.0596 m +209.3818 440.4395 208.1001 438.6201 v +206.7417 436.9209 204.02 437.8994 y +203.7798 440.0596 l +F +195.3799 433.3398 m +201.02 433.8389 199.7002 432.1396 v +198.3799 430.3203 195.8599 431.1797 y +195.3799 433.3398 l +F +187.9399 428.0596 m +193.5415 428.5586 192.2598 426.8594 v +190.9014 425.041 188.1802 425.8994 y +187.9399 428.0596 l +F +230.8999 421.0996 m +238.4238 421.6689 236.6602 419.4199 v +234.9102 416.9834 231.3799 418.2197 y +230.8999 421.0996 l +F +242.1802 426.3799 m +249.8647 426.9482 248.1802 424.7002 v +246.3511 422.2637 242.8999 423.5 y +242.1802 426.3799 l +F +254.1802 431.1797 m +261.7446 431.7891 259.9399 429.5 v +258.231 427.1045 254.6602 428.2998 y +254.1802 431.1797 l +F +265.46 436.46 m +273.1831 437.0693 271.46 434.7803 v +269.6694 432.3848 266.1802 433.5801 y +265.46 436.46 l +F +235.2197 456.3799 m +242.8232 456.8691 240.98 454.46 v +239.3096 452.1846 234.98 452.54 y +235.2197 456.3799 l +F +246.2598 459.7402 m +253.8247 460.3877 252.02 458.0596 v +250.311 455.7031 245.54 455.8994 y +246.2598 459.7402 l +F +221.2998 415.8193 m +226.981 416.2402 225.6201 414.3799 v +224.3408 412.7188 221.7798 413.6602 y +221.2998 415.8193 l +F +0.254902 0.941176 1 0.243137 k +140.6602 525.0195 m +135.9009 515.2393 135.3799 511.8193 v +136.3398 521.4004 137.7798 523.5801 v +138.98 525.7998 140.6602 525.0195 y +F +120.5 509.4199 m +116.9814 493.6807 117.3799 490.7002 v +116.1006 503.3594 116.6602 504.6201 v +116.9814 506 120.5 509.4199 y +F +0.8 g +143.2998 591.5 m +143.0601 588.1396 l +140.6602 587.8994 l +156.3608 573.9795 156.98 565.5801 v +157.9014 574.6396 143.2998 591.5 v +F +0 g +147.8599 590.2998 m +147.2891 590.6475 147.5288 591.4658 147.1401 591.7393 c +146.1919 592.3203 148.5078 592.3828 148.3398 593.1797 c +147.8359 594.4971 148.0425 594.5215 147.8599 595.8193 c +147.8457 596.5801 148.4912 598.2744 148.8198 598.7002 c +150.5073 600.5762 149.0503 603.8018 150.7402 605.4199 c +151.189 605.8252 151.6016 606.4326 151.9399 606.8594 c +152.6406 607.9521 153.9414 608.4893 155.0601 609.5 c +155.3384 609.7041 155.1152 610.6133 155.7798 610.46 c +156.5264 610.3857 157.8921 610.5293 157.9399 609.5 c +157.7192 607.2705 156.2578 605.3789 154.8198 603.5 c +155.3457 602.7705 154.8418 602.0713 154.5801 601.3398 c +153.0605 598.5771 153.2695 595.4502 153.1401 592.2197 c +153.0703 592.2344 152.7344 592.1475 152.6602 591.9795 c +153.1304 589.5225 153.7734 587.1025 154.8198 584.54 c +155.1416 583.6279 155.6602 582.6436 155.7798 581.6602 c +155.9478 580.8682 156.0605 579.9531 155.54 579.2598 c +157.8511 575.998 156.4111 573.082 157.7002 569.1797 c +157.9233 568.5098 159.7856 566.4053 159.3799 566.54 c +156.5117 567.54 156.3896 567.9775 156.2598 568.7002 c +156.0342 569.4922 155.6694 571.0059 155.2998 571.5801 c +155.3384 571.8486 155.1514 573.9219 155.0601 573.9795 c +153.4014 576.6748 154.8945 576.4834 153.3799 579.0195 c +151.8174 579.8232 150.7544 581.0381 149.54 582.3799 c +149.3022 582.54 150.5601 583.3369 150.2598 583.5801 c +149.1582 584.9912 147.8911 585.833 148.3398 587.4199 c +148.4312 588.2334 148.5801 589.3975 147.8599 590.2998 c +F +143.7798 588.3799 m +144.2598 580.8008 146.8999 579.0195 v +149.54 577.2793 148.2197 578.1602 144.7402 579.5 c +141.1807 580.8008 142.5801 581.6602 y +139.4214 581.2393 142.1001 579.0195 v +144.7017 576.8408 148.6616 574.2002 146.8999 574.2197 c +145.1406 574.2002 136.7817 578.5996 136.8198 581.6602 c +136.7817 584.7607 135.6201 589.3398 y +136.8896 590.1514 142.1001 590.0596 v +143.7104 589.2705 143.7798 588.3799 v +F +1 g +143.0601 567.7393 m +133.5679 570.8906 113.2998 567.2598 v +123.1733 569.4463 143.7798 567.0195 v +155.1514 565.5654 143.0601 567.7393 y +F +0 R +0 G +1 J 0.11 w 10 M +143.0601 567.7393 m +133.5679 570.8906 113.2998 567.2598 v +123.1733 569.4463 143.7798 567.0195 v +155.1514 565.5654 143.0601 567.7393 y +143.0601 567.7393 l +s +0 O +1 g +0 J 1 w 4 M +145.2197 567.9795 m +136.1768 571.7695 115.7002 569.8994 v +125.6982 571.2266 145.9399 567.0195 v +157.2178 564.5957 145.2197 567.9795 y +F +0 R +0 G +1 J 0.11 w 10 M +145.2197 567.9795 m +136.1768 571.7695 115.7002 569.8994 v +125.6982 571.2266 145.9399 567.0195 v +157.2178 564.5957 145.2197 567.9795 y +145.2197 567.9795 l +s +0 O +1 g +0 J 1 w 4 M +147.1401 567.7393 m +138.457 572.3311 117.8599 571.8193 v +127.9663 572.5713 147.8599 566.7793 v +158.9048 563.6113 147.1401 567.7393 y +F +0 R +0 G +1 J 0.11 w 10 M +147.1401 567.7393 m +138.457 572.3311 117.8599 571.8193 v +127.9663 572.5713 147.8599 566.7793 v +158.9048 563.6113 147.1401 567.7393 y +147.1401 567.7393 l +s +0 O +1 g +0 J 1 w 4 M +148.5801 567.5 m +141.1064 572.2881 122.6602 573.5 v +131.7178 573.3105 149.2998 566.54 v +158.7729 562.9014 148.5801 567.5 y +F +0 R +0 G +1 J 0.11 w 10 M +148.5801 567.5 m +141.1064 572.2881 122.6602 573.5 v +131.7178 573.3105 149.2998 566.54 v +158.7729 562.9014 148.5801 567.5 y +148.5801 567.5 l +s +0 O +1 g +0 J 1 w 4 M +275.54 555.9795 m +274.3999 555.2764 274.5801 556.46 v +274.8726 557.873 305.9023 572.3594 309.8594 572.0596 c +276.6055 557.5586 275.54 555.9795 v +F +0 R +0 G +1 J 0.11 w 10 M +275.54 555.9795 m +274.3999 555.2764 274.5801 556.46 v +274.8726 557.873 305.9023 572.3594 309.8594 572.0596 c +276.6055 557.5586 275.54 555.9795 v +275.54 555.9795 l +s +0 O +1 g +0 J 1 w 4 M +271.7002 555.2598 m +270.728 554.4941 270.98 555.7393 v +270.9922 557.1201 300.7881 574.001 304.8198 573.9795 c +272.7441 556.9424 271.7002 555.2598 v +F +0 R +0 G +1 J 0.11 w 10 M +271.7002 555.2598 m +270.728 554.4941 270.98 555.7393 v +270.9922 557.1201 300.7881 574.001 304.8198 573.9795 c +272.7441 556.9424 271.7002 555.2598 v +271.7002 555.2598 l +s +0 O +1 g +0 J 1 w 4 M +268.1001 553.8193 m +267.1665 552.9199 267.1401 554.2998 v +267.2578 555.5576 289.0566 572.6045 299.7798 574.7002 c +280.0161 565.7266 268.1001 553.8193 v +F +0 R +0 G +1 J 0.11 w 10 M +268.1001 553.8193 m +267.1665 552.9199 267.1401 554.2998 v +267.2578 555.5576 289.0566 572.6045 299.7798 574.7002 c +280.0161 565.7266 268.1001 553.8193 v +268.1001 553.8193 l +s +0 O +1 g +0 J 1 w 4 M +264.98 551.6602 m +264.0918 550.9561 264.02 552.1396 v +264.1758 553.3301 283.7935 568.6709 293.54 570.6201 c +275.6602 562.4814 264.98 551.6602 v +F +0 R +0 G +1 J 0.11 w 10 M +264.98 551.6602 m +264.0918 550.9561 264.02 552.1396 v +264.1758 553.3301 283.7935 568.6709 293.54 570.6201 c +275.6602 562.4814 264.98 551.6602 v +264.98 551.6602 l +s +0 O +0.8 g +0 J 1 w 4 M +230.1802 388.9395 m +213.3418 391.5986 231.8599 393.2598 v +251.6216 395.5586 256.1001 401.1797 v +270.98 411.3994 274.1001 411.7402 v +277.1406 412.2803 295.1816 416.2402 295.7002 418.9395 c +296.0601 421.5195 302.6602 424.1602 304.3398 423.2598 c +306.1807 422.4004 306.1807 412.2803 303.1401 411.5 c +300.02 410.5205 279.3418 402.6006 272.4199 401.1797 c +265.2607 399.958 252.5 391.5986 247.2197 390.3799 c +241.9399 388.959 230.1802 388.9395 y +F +0 g +310.3398 429.9795 m +307.0615 428.3408 305.7798 425.4199 v +298.7002 413.8203 282.98 410.2998 v +257.7798 400.3994 249.1401 398.2998 v +234.4614 392.7002 226.3398 393.5 v +218.6216 393.3584 225.3799 391.5801 v +247.6616 393.7998 251.2998 395.6602 v +268.5605 401.499 271.9399 404.2998 v +275.1606 407.2207 295.1816 412.7188 297.6201 414.8594 c +300.02 417.1201 310.8008 426.3584 310.3398 429.9795 c +F +245.7798 395.4199 m +251.5229 395.6865 250.3398 393.9795 v +248.9863 392.2783 246.2598 393.2598 y +245.7798 395.4199 l +F +237.8599 393.9795 m +243.5981 394.2002 242.4199 392.54 v +241.064 390.79 238.3398 391.8193 y +237.8599 393.9795 l +F +226.3398 392.54 m +232.1289 392.8281 230.8999 391.0996 v +229.5918 389.4199 226.8198 390.3799 y +226.3398 392.54 l +F +217.9399 392.0596 m +223.731 392.2275 222.5 390.6201 v +221.1943 388.8193 218.4199 389.8994 y +217.9399 392.0596 l +F +264.02 403.5801 m +271.6133 403.9082 270.02 401.6602 v +268.2368 399.3701 264.7402 400.7002 y +264.02 403.5801 l +F +275.2998 408.3799 m +281.8569 412.0762 281.2998 406.46 v +280.9736 403.6953 276.02 405.5 y +275.2998 408.3799 l +F +285.3799 411.5 m +293.2231 415.6113 291.3799 409.5801 v +290.4609 406.9063 286.1001 408.6201 y +285.3799 411.5 l +F +295.7002 416.7803 m +300.6079 422.2373 301.7002 414.8594 v +302.228 412.1162 296.4199 413.8994 y +295.7002 416.7803 l +F +254.4199 398.54 m +260.2686 398.8945 258.98 397.0996 v +257.7319 395.4844 255.1401 396.3799 y +254.4199 398.54 l +F +1 g +293.7798 532.2197 m +292.8799 531.4473 292.8198 532.7002 v +292.8774 533.8018 312.1113 548.3906 321.8594 549.9795 c +304.1289 542.5107 293.7798 532.2197 v +F +0 R +0 G +1 J 0.11 w 10 M +293.7798 532.2197 m +292.8799 531.4473 292.8198 532.7002 v +292.8774 533.8018 312.1113 548.3906 321.8594 549.9795 c +304.1289 542.5107 293.7798 532.2197 v +293.7798 532.2197 l +s +0 O +0 g +0 J 1 w 4 M +296.8999 461.8994 m +321.1426 437.3594 331.2197 433.3398 v +341.3818 421.0811 336.9805 392.54 v +333.4609 384.1201 330.0195 406.9395 v +333.4609 434.7197 321.1406 417.0195 v +311.9004 428.0098 318.9805 427.5801 v +322.4629 425.4795 322.8203 427.3398 v +323.3408 429.001 314.54 443.96 295.7002 459.7402 c +276.7017 475.6396 296.8999 461.8994 y +F +1 g +232.8198 419.4199 m +232.4814 421.2988 234.5 420.3799 v +236.4414 419.54 340.0615 412.7188 374.9004 386.2998 c +325.1025 411.8408 232.8198 419.4199 v +F +0 R +0 G +1 J 0.11 w 10 M +232.8198 419.4199 m +232.4814 421.2988 234.5 420.3799 v +236.4414 419.54 340.0615 412.7188 374.9004 386.2998 c +325.1025 411.8408 232.8198 419.4199 v +232.8198 419.4199 l +s +0 O +1 g +0 J 1 w 4 M +244.1001 424.2197 m +243.9199 426.1396 246.02 425.1797 v +247.8799 424.3809 398.1416 425.4795 424.0996 389.8994 c +399.9004 417.5596 244.1001 424.2197 v +F +0 R +0 G +1 J 0.11 w 10 M +244.1001 424.2197 m +243.9199 426.1396 246.02 425.1797 v +247.8799 424.3809 398.1416 425.4795 424.0996 389.8994 c +399.9004 417.5596 244.1001 424.2197 v +244.1001 424.2197 l +s +0 O +1 g +0 J 1 w 4 M +256.8198 428.54 m +256.6807 430.5391 258.7402 429.7402 v +260.6406 428.7803 451.3809 443.0791 477.3799 407.4199 c +466.7813 435.6006 256.8198 428.54 v +F +0 R +0 G +1 J 0.11 w 10 M +256.8198 428.54 m +256.6807 430.5391 258.7402 429.7402 v +260.6406 428.7803 451.3809 443.0791 477.3799 407.4199 c +466.7813 435.6006 256.8198 428.54 v +256.8198 428.54 l +s +0 O +1 g +0 J 1 w 4 M +267.8599 433.8193 m +267.6802 435.8193 269.7798 435.0195 v +271.6401 434.0596 406.0615 476.5205 432.0195 440.7803 c +417.2813 467.9404 267.8599 433.8193 v +F +0 R +0 G +1 J 0.11 w 10 M +267.8599 433.8193 m +267.6802 435.8193 269.7798 435.0195 v +271.6401 434.0596 406.0615 476.5205 432.0195 440.7803 c +417.2813 467.9404 267.8599 433.8193 v +267.8599 433.8193 l +s +0 O +1 g +0 J 1 w 4 M +204.02 408.8594 m +203.8809 410.7393 205.9399 409.8193 v +207.8408 408.9795 227.4199 406.5586 229.7002 363.9795 c +221.7007 410.0791 204.02 408.8594 v +F +0 R +0 G +1 J 0.11 w 10 M +204.02 408.8594 m +203.8809 410.7393 205.9399 409.8193 v +207.8408 408.9795 227.4199 406.5586 229.7002 363.9795 c +221.7007 410.0791 204.02 408.8594 v +204.02 408.8594 l +s +0 O +1 g +0 J 1 w 4 M +194.4199 406.9395 m +194.2017 408.9795 196.1001 408.1396 v +198.1616 407.2207 213.7808 412.2803 210.7402 369.5 c +212.0215 408.3193 194.4199 406.9395 v +F +0 R +0 G +1 J 0.11 w 10 M +194.4199 406.9395 m +194.2017 408.9795 196.1001 408.1396 v +198.1616 407.2207 213.7808 412.2803 210.7402 369.5 c +212.0215 408.3193 194.4199 406.9395 v +194.4199 406.9395 l +s +0 O +1 g +0 J 1 w 4 M +185.54 406.46 m +185.4009 408.541 187.46 407.6602 v +189.3608 406.7793 206.2998 406.1191 192.7402 381.5 c +203.2207 407.8809 185.54 406.46 v +F +0 R +0 G +1 J 0.11 w 10 M +185.54 406.46 m +185.4009 408.541 187.46 407.6602 v +189.3608 406.7793 206.2998 406.1191 192.7402 381.5 c +203.2207 407.8809 185.54 406.46 v +185.54 406.46 l +s +0 O +1 g +0 J 1 w 4 M +237.6201 455.4199 m +237.1904 453.1299 238.8198 454.46 v +256.5703 468.3555 292.2559 533.1484 353.54 539.4199 c +311.3691 552.668 237.6201 455.4199 v +F +0 R +0 G +1 J 0.11 w 10 M +237.6201 455.4199 m +237.1904 453.1299 238.8198 454.46 v +256.5703 468.3555 292.2559 533.1484 353.54 539.4199 c +311.3691 552.668 237.6201 455.4199 v +237.6201 455.4199 l +s +0 O +1 g +0 J 1 w 4 M +250.1001 457.3398 m +248.499 458.6211 250.5801 459.2598 v +252.6104 459.9971 376.2949 539.749 419.54 531.0195 c +389.6914 539.2471 250.1001 457.3398 v +F +0 R +0 G +1 J 0.11 w 10 M +250.1001 457.3398 m +248.499 458.6211 250.5801 459.2598 v +252.6104 459.9971 376.2949 539.749 419.54 531.0195 c +389.6914 539.2471 250.1001 457.3398 v +250.1001 457.3398 l +s +0 O +1 g +0 J 1 w 4 M +227.0601 450.6201 m +226.5151 448.8389 228.5 449.8994 v +238.2681 455.5449 242.2446 518.4746 290.1802 519.7402 c +254.5278 536.043 227.0601 450.6201 v +F +0 R +0 G +1 J 0.11 w 10 M +227.0601 450.6201 m +226.5151 448.8389 228.5 449.8994 v +238.2681 455.5449 242.2446 518.4746 290.1802 519.7402 c +254.5278 536.043 227.0601 450.6201 v +227.0601 450.6201 l +s +0 O +1 g +0 J 1 w 4 M +205.2197 438.3799 m +203.9746 437.0547 206.1802 437.4199 v +217.3926 438.7998 240.9365 484.1953 289.9399 478.7002 c +254.6577 494.3906 205.2197 438.3799 v +F +0 R +0 G +1 J 0.11 w 10 M +205.2197 438.3799 m +203.9746 437.0547 206.1802 437.4199 v +217.3926 438.7998 240.9365 484.1953 289.9399 478.7002 c +254.6577 494.3906 205.2197 438.3799 v +205.2197 438.3799 l +s +0 O +1 g +0 J 1 w 4 M +217.46 445.0996 m +216.6294 443.5898 218.6602 444.3799 v +229.4624 447.8818 243.855 496.9521 292.8198 500.7803 c +255.3633 509.5928 217.46 445.0996 v +F +0 R +0 G +1 J 0.11 w 10 M +217.46 445.0996 m +216.6294 443.5898 218.6602 444.3799 v +229.4624 447.8818 243.855 496.9521 292.8198 500.7803 c +255.3633 509.5928 217.46 445.0996 v +217.46 445.0996 l +s +0 O +1 g +0 J 1 w 4 M +197.2998 432.8594 m +196.4551 431.6914 198.2598 431.8994 v +207.3247 433.1045 226.395 469.877 265.9399 465.2598 c +237.5098 478.1338 197.2998 432.8594 v +F +0 R +0 G +1 J 0.11 w 10 M +197.2998 432.8594 m +196.4551 431.6914 198.2598 431.8994 v +207.3247 433.1045 226.395 469.877 265.9399 465.2598 c +237.5098 478.1338 197.2998 432.8594 v +197.2998 432.8594 l +s +0 O +1 g +0 J 1 w 4 M +189.1401 426.3799 m +187.9497 425.1895 189.6201 425.4199 v +194.2856 425.6572 227.9863 462.0459 248.4199 445.0996 c +235.0854 465.5889 189.1401 426.3799 v +F +0 R +0 G +1 J 0.11 w 10 M +189.1401 426.3799 m +187.9497 425.1895 189.6201 425.4199 v +194.2856 425.6572 227.9863 462.0459 248.4199 445.0996 c +235.0854 465.5889 189.1401 426.3799 v +189.1401 426.3799 l +s +0 O +1 g +0 J 1 w 4 M +265.46 461.4199 m +264.2192 462.9434 266.4199 463.3398 v +268.4697 463.791 401.2441 527.2734 443.0605 513.0195 c +414.4668 525.082 265.46 461.4199 v +F +0 R +0 G +1 J 0.11 w 10 M +265.46 461.4199 m +264.2192 462.9434 266.4199 463.3398 v +268.4697 463.791 401.2441 527.2734 443.0605 513.0195 c +414.4668 525.082 265.46 461.4199 v +265.46 461.4199 l +s +0 O +1 g +0 J 1 w 4 M +228.7402 390.6201 m +228.5215 392.7002 230.4199 391.8193 v +232.4814 390.9395 249.4209 390.2793 235.7002 365.6602 c +246.3418 392.041 228.7402 390.6201 v +F +0 R +0 G +1 J 0.11 w 10 M +228.7402 390.6201 m +228.5215 392.7002 230.4199 391.8193 v +232.4814 390.9395 249.4209 390.2793 235.7002 365.6602 c +246.3418 392.041 228.7402 390.6201 v +228.7402 390.6201 l +s +0 O +1 g +0 J 1 w 4 M +240.2598 392.54 m +239.96 394.46 241.9399 393.5 v +243.9199 392.7002 263.5015 390.2793 265.7002 347.6602 c +257.7798 393.7998 240.2598 392.54 v +F +0 R +0 G +1 J 0.11 w 10 M +240.2598 392.54 m +239.96 394.46 241.9399 393.5 v +243.9199 392.7002 263.5015 390.2793 265.7002 347.6602 c +257.7798 393.7998 240.2598 392.54 v +240.2598 392.54 l +s +0 O +1 g +0 J 1 w 4 M +247.7002 394.2197 m +247.4409 396.2188 249.3799 395.4199 v +251.4009 394.46 278.4609 390.7207 304.3398 355.0996 c +265.2607 395.5586 247.7002 394.2197 v +F +0 R +0 G +1 J 0.11 w 10 M +247.7002 394.2197 m +247.4409 396.2188 249.3799 395.4199 v +251.4009 394.46 278.4609 390.7207 304.3398 355.0996 c +265.2607 395.5586 247.7002 394.2197 v +247.7002 394.2197 l +s +0 O +1 g +0 J 1 w 4 M +256.1001 396.3799 m +255.5674 398.4053 257.54 397.8193 v +259.7266 397.1865 282.2021 399.2764 324.0195 361.5801 c +273.3174 400.1191 256.1001 396.3799 v +F +0 R +0 G +1 J 0.11 w 10 M +256.1001 396.3799 m +255.5674 398.4053 257.54 397.8193 v +259.7266 397.1865 282.2021 399.2764 324.0195 361.5801 c +273.3174 400.1191 256.1001 396.3799 v +256.1001 396.3799 l +s +0 O +1 g +0 J 1 w 4 M +267.3799 401.4199 m +267.0078 403.2461 269.0601 402.6201 v +271.165 402.0273 309.4834 397.0762 366.2598 358.7002 c +284.7559 404.96 267.3799 401.4199 v +F +0 R +0 G +1 J 0.11 w 10 M +267.3799 401.4199 m +267.0078 403.2461 269.0601 402.6201 v +271.165 402.0273 309.4834 397.0762 366.2598 358.7002 c +284.7559 404.96 267.3799 401.4199 v +267.3799 401.4199 l +s +0 O +1 g +0 J 1 w 4 M +222.98 414.1396 m +222.7998 416.0186 224.8999 415.0996 v +226.7598 414.2598 285.5 411.3994 318.9805 381.9795 c +280.5488 409.1719 222.98 414.1396 v +F +0 R +0 G +1 J 0.11 w 10 M +222.98 414.1396 m +222.7998 416.0186 224.8999 415.0996 v +226.7598 414.2598 285.5 411.3994 318.9805 381.9795 c +280.5488 409.1719 222.98 414.1396 v +222.98 414.1396 l +s +0 O +1 g +0 J 1 w 4 M +211.9399 409.5801 m +211.8008 411.6201 213.8599 410.7803 v +215.7607 409.8584 242.8208 406.1191 268.8198 370.46 c +229.6206 410.96 211.9399 409.5801 v +F +0 R +0 G +1 J 0.11 w 10 M +211.9399 409.5801 m +211.8008 411.6201 213.8599 410.7803 v +215.7607 409.8584 242.8208 406.1191 268.8198 370.46 c +229.6206 410.96 211.9399 409.5801 v +211.9399 409.5801 l +s +0 O +1 g +0 J 1 w 4 M +279.3799 406.46 m +278.833 408.2764 281.0601 407.8994 v +283.0688 407.3672 321.6465 405.2354 381.1406 370.9395 c +295.748 408.8672 279.3799 406.46 v +F +0 R +0 G +1 J 0.11 w 10 M +279.3799 406.46 m +278.833 408.2764 281.0601 407.8994 v +283.0688 407.3672 321.6465 405.2354 381.1406 370.9395 c +295.748 408.8672 279.3799 406.46 v +279.3799 406.46 l +s +0 O +1 g +0 J 1 w 4 M +288.7402 409.0996 m +288.0728 410.917 290.1802 410.54 v +292.3086 410.0068 330.8867 407.876 390.5 373.5801 c +305.6479 411.9463 288.7402 409.0996 v +F +0 R +0 G +1 J 0.11 w 10 M +288.7402 409.0996 m +288.0728 410.917 290.1802 410.54 v +292.3086 410.0068 330.8867 407.876 390.5 373.5801 c +305.6479 411.9463 288.7402 409.0996 v +288.7402 409.0996 l +s +0 O +1 g +0 J 1 w 4 M +299.2998 414.6201 m +298.6328 416.415 300.7402 416.0596 v +302.8687 415.5049 350.2471 410.7363 449.0605 373.0996 c +316.208 417.4473 299.2998 414.6201 v +F +0 R +0 G +1 J 0.11 w 10 M +299.2998 414.6201 m +298.6328 416.415 300.7402 416.0596 v +302.8687 415.5049 350.2471 410.7363 449.0605 373.0996 c +316.208 417.4473 299.2998 414.6201 v +299.2998 414.6201 l +s +0 O +0 g +0 J 1 w 4 M +176.8999 406.9395 m +182.54 407.4395 181.2197 405.7402 v +179.8999 403.9209 177.3799 404.7803 y +176.8999 406.9395 l +F +210.7402 391.5801 m +216.4209 392.041 215.0601 390.3799 v +213.7808 388.5195 211.2197 389.4199 y +210.7402 391.5801 l +F +201.1401 392.0596 m +206.7417 392.4795 205.46 390.6201 v +204.1016 388.959 201.3799 389.8994 y +201.1401 392.0596 l +F +96.02 405.0195 m +101.665 403.585 99.8599 402.3799 v +98.0166 401.1221 95.7798 402.8594 y +96.02 405.0195 l +F +98.4199 415.5801 m +103.8633 414.1445 102.02 412.9395 v +100.2178 411.6826 97.9399 413.4199 y +98.4199 415.5801 l +F +90.5 420.3799 m +95.9434 418.9854 94.1001 417.7402 v +92.2974 416.5225 90.02 418.2197 y +90.5 420.3799 l +F +0.8 g +178.1001 337.8193 m +176.3818 337.9209 172.1001 335.6602 v +169.7817 335.7197 157.46 331.7598 151.2197 320.7803 c +164.9409 331.3203 178.1001 337.8193 v +F +274.5801 236.0596 m +274.7842 235.7266 274.8438 235.2627 275.0601 235.3398 c +275.8877 235.2002 277.2441 234.8691 277.2197 235.5801 c +276.1733 240.3057 275.2134 245.7363 270.7402 247.8193 c +269.9648 248.0313 268.3784 247.5771 268.3398 246.6201 c +268.1553 244.9277 268.0278 243.4443 268.3398 241.8193 c +268.6978 240.2695 271.0713 240.2578 272.1802 241.8193 c +273.1113 239.9404 273.5864 237.9121 274.5801 236.0596 c +F +262.3398 230.7803 m +263.2666 229.2461 263.125 227.2012 264.7402 226.7002 c +265.4961 226.2607 267.5313 227.333 267.1401 228.6201 c +266.1895 230.7803 265.7622 233.2441 264.2598 235.3398 c +264.0151 235.5244 264.2769 236.1104 264.02 236.54 c +263.4487 237.8115 262.189 238.623 260.6602 238.2197 c +259.4146 235.8369 260.6768 233.4941 262.3398 231.5 c +262.501 231.4473 262.3184 231.0342 262.3398 230.7803 c +F +218.8999 236.54 m +218.7607 236.9258 218.7197 237.4346 218.8999 237.7393 c +219.4854 238.9229 220.3569 240.1592 220.1001 241.3398 c +219.603 242.4434 218.377 242.2441 217.7002 241.5801 c +216.4136 240.5234 216.3584 238.5146 215.54 237.0195 c +215.3838 236.5947 215.4395 235.9658 215.0601 235.5801 c +214.4336 235.0732 213.9487 233.3955 214.1001 232.7002 c +214.1118 232.4238 213.9102 221.5254 214.1001 221.8994 c +214.8369 222.6201 218.1919 233.3291 218.1802 234.3799 c +218.3311 235.1143 219.1353 235.625 218.8999 236.54 c +F +190.5801 243.9795 m +193.5752 246.7305 196.6445 249.9893 196.1001 254.0596 c +196.0303 255.1445 194.0767 254.5664 193.9399 253.5801 c +192.9897 249.6465 190.748 246.7207 187.9399 243.9795 c +185.5063 241.8369 183.459 234.8594 183.1401 234.3799 c +187.2681 240.082 189.7495 243.1016 190.5801 243.9795 c +F +175.7002 250.46 m +176.3218 250.9492 175.9902 251.4893 176.1802 251.8994 c +177.2769 253.457 178.707 254.8281 178.8198 256.7002 c +178.731 257.0449 178.3159 257.3857 177.8599 257.1797 c +177.6416 256.9375 177.2646 256.793 177.1401 256.7002 c +174.915 253.957 173.3745 251.0186 171.8599 247.8193 c +171.5864 247.5322 170.3262 242.5928 170.6602 242.54 c +170.9336 242.377 172.8271 246.9746 173.0601 247.0996 c +174.4473 247.8555 174.459 249.6318 175.7002 250.46 c +F +194.1802 229.0996 m +194.6406 230 196.3735 231.3223 196.3398 232.2197 c +196.1216 233.3213 196.6353 234.9082 195.6201 234.1396 c +194.2495 233.1074 190.4551 231.625 190.1001 225.2598 c +190.1313 224.6064 193.4023 227.5713 194.1802 229.0996 c +F +210.02 247.8193 m +210.481 248.6738 211.2583 248.1533 211.7002 248.54 c +212.4775 248.8516 213.1494 249.4658 213.3799 250.2197 c +214.5366 252.543 216.4834 254.5469 216.7402 257.1797 c +215 258.7256 214.2534 256.4814 213.6201 255.5 c +212.1055 257.2305 211.0063 255.1709 209.54 254.54 c +209.499 254.5684 209.2642 254.9502 209.2998 255.0195 c +207.8862 254.4365 207.1401 253.2461 205.9399 252.3799 c +205.8535 252.2402 205.4097 252.4395 205.2197 252.3799 c +204.5288 251.626 203.4585 251.2686 203.0601 250.46 c +201.9297 247.541 198.4761 245.2354 196.3398 237.0195 c +196.8198 235.9395 201.3633 244.2461 201.8599 244.9395 c +202.8198 246.3291 202.9497 243.1875 204.2598 243.9795 c +204.4087 243.9482 204.6128 243.6865 204.7402 243.5 c +204.9727 243.8477 205.2129 244.0996 205.7002 243.9795 c +205.6401 244.4189 205.4937 245.0313 205.7002 245.1797 c +207.0752 246.2813 206.9814 247.4551 207.8599 248.7803 c +208.3447 247.9521 209.5112 248.7412 210.02 247.8193 c +F +275.7798 188.0596 m +283.9614 210.54 279.1401 222.8594 v +291.6606 199.0996 286.5801 186.8594 v +286.1602 198.2188 281.7798 203.6602 v +277.3613 189.6387 275.7798 188.0596 v +F +259.46 190.9395 m +265.4814 200.6406 256.5801 220.9395 v +255.7998 198.4395 248.4199 186.3799 v +263.9409 208.5605 259.46 190.9395 v +F +248.6602 193.0996 m +248.3218 215.1602 248.6602 218.54 v +244.5801 200.1992 233.2998 189.7393 v +249.2002 202.8389 248.6602 193.0996 v +F +238.1001 228.3799 m +244.5801 213.3994 233.54 193.0996 v +240.6201 206.5781 235.46 214.2197 v +238.2007 218.0186 238.1001 228.3799 v +F +216.98 193.5801 m +215.7607 210.7588 217.7002 213.2598 v +217.9614 220.2197 217.46 221.4199 v +221.9214 228.1396 222.2598 219.9795 v +223.6807 211.4189 226.8198 206.2998 v +230.7197 200.4199 230.4199 193.3398 v +219.5 226.5986 216.98 193.5801 v +F +212.8999 224.0596 m +205.6401 212.0791 203.7798 191.1797 v +202.1216 198.001 206.4199 213.7393 v +210.9199 230.7803 212.8999 224.0596 v +F +188.8999 202.2197 m +194.4199 208.1191 195.8599 213.5 v +199.9209 231.001 192.98 221.4199 v +193.1001 212.7393 184.1001 204.6201 v +189.3608 207.2402 188.8999 202.2197 v +F +182.6602 207.7393 m +186.2817 226.8193 187.2197 227.6602 v +189.1401 231.4395 186.02 227.8994 v +176.3818 206.7988 172.1001 199.5801 v +180.7808 209.6602 182.6602 207.7393 v +F +176.1802 225.9795 m +188.9214 250.5801 164.8999 222.1396 v +177.0415 232.9785 176.1802 225.9795 v +F +159.1401 242.0596 m +164.5015 262.6777 167.2998 262.46 v +176.3818 272.3594 169.2197 260.7803 v +162.5215 250.1406 163.2197 239.4199 v +162.5215 249.9199 159.1401 242.0596 v +F +522.5 254.54 m +509.3496 265.541 506.6602 269.4199 v +521.4512 249.041 521.54 241.3398 v +524.2012 249.5908 522.5 254.54 v +F +528.5 278.7803 m +505.501 295.2412 501.6201 303.5 v +530.8018 271.04 530.9004 266.0596 v +531.3516 275.9912 528.5 278.7803 v +F +547.2197 448.2197 m +534.1016 456.9414 532.3398 454.7002 v +544.002 447.5908 546.7402 438.1396 v +545.1006 448.1406 547.2197 448.2197 v +F +556.5801 359.6602 m +537.3799 372.8594 l +558.3008 354.0918 558.7402 349.5801 v +556.5801 359.6602 l +F +*u +0 R +0 G +1 J 1.1 w 10 M +126.7402 384.3799 m +150.98 379.0996 l +S +1 D +182.1802 206.0596 m +181.5513 209.9912 171.6201 198.3799 v +S +188.1802 200.54 m +190.3496 207.79 183.1401 202.9395 v +S +247.46 191.1797 m +249.2002 203.3906 236.6602 189.0195 v +S +*U +U +%%PageTrailer +gsave annotatepage grestore showpage +%%Trailer +Adobe_Illustrator_AI3 /terminate get exec +Adobe_pattern_AI3 /terminate get exec +Adobe_customcolor /terminate get exec +Adobe_cshow /terminate get exec +Adobe_cmykcolor /terminate get exec +Adobe_packedarray /terminate get exec +%%EOF diff --git a/htdocs/includes/tcpdf/images/tux.svg b/htdocs/includes/tcpdf/images/tux.svg new file mode 100644 index 00000000000..de8c8696886 --- /dev/null +++ b/htdocs/includes/tcpdf/images/tux.svg @@ -0,0 +1,1487 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/htdocs/includes/tcpdf/spotcolors.php b/htdocs/includes/tcpdf/spotcolors.php new file mode 100644 index 00000000000..231079d237a --- /dev/null +++ b/htdocs/includes/tcpdf/spotcolors.php @@ -0,0 +1,59 @@ +. +// +// See LICENSE.TXT file for more information. +// ------------------------------------------------------------------- +// +// Description : Array of Spot Colors for TCPDF library +// +//============================================================+ + +/** + * Arrays of Spot Colors for TCPDF library + * @author Nicola Asuni + * @copyright 2002-2009 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 + * @since 5.9.012 (2010-11-11) +*/ + +/** + * Array of Spot colors (C,M,Y,K,name) + * Color keys must be in lowercase and without spaces. + * Add here your spot colors ... + */ +$spotcolor = array ( + // these are just examples, add your own spot colors ... + 'pantone116c' => array(0, 20, 100, 0, 'Pantone 116 C'), + 'pantone288c' => array(100, 60, 10, 5, 'Pantone 288 C'), + 'hks16k' => array(30, 100, 90, 10, 'HKS 16 K'), + // ... +); + +//============================================================+ +// END OF FILE +//============================================================+ diff --git a/htdocs/webservices/server.php b/htdocs/webservices/server.php deleted file mode 100644 index 6bbd4445e6d..00000000000 --- a/htdocs/webservices/server.php +++ /dev/null @@ -1,89 +0,0 @@ - - * - * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -/** - * \file htdocs/webservices/server.php - * \brief File that is entry point to call Dolibarr WebServices - * \version $Id$ - */ - -// This is to make Dolibarr working with Plesk -set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs'); - -require_once("../master.inc.php"); -require_once(DOL_DOCUMENT_ROOT."/lib/functions2.lib.php"); -require_once(NUSOAP_PATH.'/nusoap.php'); // Include SOAP - - -dol_syslog("Call Dolibarr webservices interfaces"); - -// Enable and test if module web services is enabled -if (empty($conf->global->MAIN_MODULE_WEBSERVICES)) -{ - $langs->load("admin"); - dol_syslog("Call Dolibarr webservices interfaces with module webservices disabled"); - print $langs->trans("WarningModuleNotActive",'WebServices').'.

      '; - print $langs->trans("ToActivateModule"); - exit; -} - -// Create the soap Object -$server = new soap_server(); -$server->soap_defencoding='UTF-8'; -$ns='dolibarr'; -$server->configureWSDL('WebServicesDolibarr',$ns); -$server->wsdl->schemaTargetNamespace=$ns; - -// Register methods available for clients -/* -$server->register('getVersions', -array(), // Tableau parametres entree -array('result' => 'xsd:array'), // Tableau parametres sortie -$ns); -*/ - -$server->register('getVersions', -// Tableau parametres entree -array(), -// Tableau parametres sortie -array('dolibarr'=>'xsd:string','os'=>'xsd:string','php'=>'xsd:string','webserver'=>'xsd:string'), -$ns); - - - -// Return the results. -$server->service($HTTP_RAW_POST_DATA); - - -// Full methods code -function getVersions() -{ - dol_syslog("Function: getVersions"); - - $versions_array=array(); - - $versions_array['dolibarr']=version_dolibarr(); - $versions_array['os']=version_os(); - $versions_array['php']=version_php(); - $versions_array['webserver']=version_webserver(); - - return $versions_array; -} - - -?> diff --git a/htdocs/webservices/server.wsdl b/htdocs/webservices/server.wsdl deleted file mode 100644 index f924fa87bd4..00000000000 --- a/htdocs/webservices/server.wsdl +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/htdocs/webservices/server_invoice.php b/htdocs/webservices/server_invoice.php new file mode 100755 index 00000000000..27609a6ceba --- /dev/null +++ b/htdocs/webservices/server_invoice.php @@ -0,0 +1,256 @@ + + * + * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +/** + * \file htdocs/webservices/server_invoice.php + * \brief File that is entry point to call Dolibarr WebServices + * \version $Id$ + */ + +// This is to make Dolibarr working with Plesk +set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs'); + +require_once("../master.inc.php"); +require_once(NUSOAP_PATH.'/nusoap.php'); // Include SOAP +require_once(DOL_DOCUMENT_ROOT."/user/class/user.class.php"); +require_once(DOL_DOCUMENT_ROOT."/compta/facture/class/facture.class.php"); + + +dol_syslog("Call Dolibarr webservices interfaces"); + +// Enable and test if module web services is enabled +if (empty($conf->global->MAIN_MODULE_WEBSERVICES)) +{ + $langs->load("admin"); + dol_syslog("Call Dolibarr webservices interfaces with module webservices disabled"); + print $langs->trans("WarningModuleNotActive",'WebServices').'.

      '; + print $langs->trans("ToActivateModule"); + exit; +} + +// Create the soap Object +$server = new soap_server(); +$server->soap_defencoding='UTF-8'; +$ns='http://www.dolibarr.org/ns'; +$server->configureWSDL('WebServicesDolibarrInvoice',$ns); +$server->wsdl->schemaTargetNamespace=$ns; + + +// Define WSDL content +$server->wsdl->addComplexType( + 'authentication', + 'complexType', + 'struct', + 'all', + '', + array( + 'dolibarrkey' => array('name'=>'dolibarrkey','type'=>'xsd:string'), + 'sourceapplication' => array('name'=>'sourceapplication','type'=>'xsd:string'), + 'login' => array('name'=>'login','type'=>'xsd:string'), + 'password' => array('name'=>'password','type'=>'xsd:string'), + 'entity' => array('name'=>'entity','type'=>'xsd:string'), + )); + +$server->wsdl->addComplexType( + 'line', + 'element', + 'struct', + 'all', + '', + array( + 'id' => array('name'=>'id','type'=>'xsd:string'), + 'type' => array('name'=>'type','type'=>'xsd:string'), + 'fk_product' => array('name'=>'fk_product','type'=>'xsd:int'), + 'total_ht' => array('name'=>'total_ht','type'=>'xsd:int'), + 'total_vat' => array('name'=>'total_vat','type'=>'xsd:int'), + 'total_ttc' => array('name'=>'total_ttc','type'=>'xsd:int') + ) +); + +$server->wsdl->addComplexType( + 'LinesArray', + 'complexType', + 'array', + '', + 'SOAP-ENC:Array', + array(), + array( + array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType'=>'tns:line[]') + ), + 'tns:line' +); + +$server->wsdl->addComplexType( + 'invoice', + 'complexType', + 'struct', + 'all', + '', + array( + 'id' => array('name'=>'id','type'=>'xsd:string'), + 'ref' => array('name'=>'ref','type'=>'xsd:string'), + 'fk_user_author' => array('name'=>'fk_user_author','type'=>'xsd:string'), + 'fk_user_valid' => array('name'=>'fk_user_valid','type'=>'xsd:string'), + 'date' => array('name'=>'date','type'=>'xsd:int'), + 'date_creation' => array('name'=>'date_creation','type'=>'xsd:int'), + 'date_validation' => array('name'=>'date_validation','type'=>'xsd:int'), + 'date_modification' => array('name'=>'date_modification','type'=>'xsd:int'), + 'type' => array('name'=>'type','type'=>'xsd:int'), + 'total' => array('name'=>'type','type'=>'xsd:int'), + 'total_vat' => array('name'=>'type','type'=>'xsd:int'), + 'total_vat' => array('name'=>'type','type'=>'xsd:int'), + 'note' => array('name'=>'note','type'=>'xsd:int'), + 'note_public' => array('name'=>'note_public','type'=>'xsd:int'), + 'status' => array('name'=>'status','type'=>'xsd:int'), + 'close_code' => array('name'=>'close_code','type'=>'xsd:int'), + 'close_note' => array('name'=>'close_note','type'=>'xsd:int'), + 'lines' => array('name'=>'lines','type'=>'tns:LinesArray') + ) + ); + +$server->wsdl->addComplexType( + 'result', + 'complexType', + 'struct', + 'all', + '', + array( + 'result_code' => array('name'=>'result_code','type'=>'xsd:string'), + 'result_label' => array('name'=>'result_label','type'=>'xsd:string'), + )); + + +// Register WSDL +$server->register('getInvoice', +// Entry values +array('authentication'=>'tns:authentication','id'=>'xsd:string','ref'=>'xsd:string'), +// Exit values +array('result'=>'tns:result','invoice'=>'tns:invoice'), +$ns +); + + +// Full methods code +function getInvoice($authentication,$id,$ref) +{ + global $db,$conf,$langs; + + dol_syslog("Function: getInvoice login=".$authentication['login']." id=".$id." ref=".$ref); + + if ($authentication['entity']) $conf->entity=$authentication['entity']; + + $objectresp=array(); + $errorcode='';$errorlabel=''; + $error=0; + + if (! $error && ($authentication['dolibarrkey'] != $conf->global->WEBSERVICES_KEY)) + { + $error++; + $errorcode='BAD_VALUE_FOR_SECURITY_KEY'; $errorlabel='Value provided into dolibarrkey entry field does not match security key defined in Webservice module setup'; + } + + if (! $error && $id && $ref) + { + $error++; + $errorcode='BAD_PARAMETERS'; $errorlabel='Parameter id and ref can\'t be both provided. You must choose one or other but not both.'; + } + + if (! $error) + { + $fuser=new User($db); + $result=$fuser->fetch('',$authentication['login'],'',0); + if ($result <= 0) $error++; + + // TODO Check password + + + + if ($error) + { + $errorcode='BAD_CREDENTIALS'; $errorlabel='Bad value for login or password'; + } + } + + if (! $error) + { + $fuser->getrights(); + + if ($fuser->rights->facture->lire) + { + $invoice=new Facture($db); + $result=$invoice->fetch($id,$ref); + if ($result > 0) + { + $linesresp=array(); + $i=0; + foreach($invoice->lines as $line) + { + //var_dump($line); + $linesresp[]=array( + 'id'=>$line->rowid, + 'type'=>$line->type, + 'total_ht'=>$line->total_ht, + 'total_vat'=>$line->total_tva, + 'total_ttc'=>$line->total_ttc, + + + ); + $i++; + } + + // Create invoice + $objectresp = array( + 'result'=>array('result_code'=>'', 'result_label'=>''), + 'invoice'=>array( + 'id' => $invoice->id, + 'ref' => $invoice->ref, + 'fk_user_author' => $invoice->fk_user_author, + 'fk_user_valid' => $invoice->fk_user_valid, + 'lines' => $linesresp +// 'lines' => array('0'=>array('id'=>222,'type'=>1), +// '1'=>array('id'=>333,'type'=>1)) + + )); + } + else + { + $error++; + $errorcode='FAILEDTOREAD'; $errorlabel='Object not found for id='.$id.' nor ref='.$ref; + } + } + else + { + $error++; + $errorcode='PERMISSION_DENIED'; $errorlabel='User does not have permission for this request'; + } + } + + if ($error) + { + $objectresp = array('result'=>array('result_code' => $errorcode, 'result_label' => $errorlabel)); + } + + return $objectresp; +} + + + +// Return the results. +$server->service($HTTP_RAW_POST_DATA); + +?> diff --git a/htdocs/webservices/server_other.php b/htdocs/webservices/server_other.php new file mode 100644 index 00000000000..1bb24b5c645 --- /dev/null +++ b/htdocs/webservices/server_other.php @@ -0,0 +1,131 @@ + + * + * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +/** + * \file htdocs/webservices/server_other.php + * \brief File that is entry point to call Dolibarr WebServices + * \version $Id$ + */ + +// This is to make Dolibarr working with Plesk +set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs'); + +require_once("../master.inc.php"); +require_once(DOL_DOCUMENT_ROOT."/user/class/user.class.php"); +require_once(DOL_DOCUMENT_ROOT."/lib/functions2.lib.php"); +require_once(NUSOAP_PATH.'/nusoap.php'); // Include SOAP + + +dol_syslog("Call Dolibarr webservices interfaces"); + +// Enable and test if module web services is enabled +if (empty($conf->global->MAIN_MODULE_WEBSERVICES)) +{ + $langs->load("admin"); + dol_syslog("Call Dolibarr webservices interfaces with module webservices disabled"); + print $langs->trans("WarningModuleNotActive",'WebServices').'.

      '; + print $langs->trans("ToActivateModule"); + exit; +} + +// Create the soap Object +$server = new soap_server(); +$server->soap_defencoding='UTF-8'; +$ns='http://www.dolibarr.org/ns'; +$server->configureWSDL('WebServicesDolibarrOther',$ns); +$server->wsdl->schemaTargetNamespace=$ns; + + +// Define WSDL content +$server->wsdl->addComplexType( + 'authentication', + 'complexType', + 'struct', + 'all', + '', + array( + 'dolibarrkey' => array('name'=>'dolibarrkey','type'=>'xsd:string'), + 'sourceapplication' => array('name'=>'sourceapplication','type'=>'xsd:string'), + 'login' => array('name'=>'login','type'=>'xsd:string'), + 'password' => array('name'=>'password','type'=>'xsd:string'), + 'entity' => array('name'=>'entity','type'=>'xsd:string'), + )); + +$server->wsdl->addComplexType( + 'result', + 'complexType', + 'struct', + 'all', + '', + array( + 'result_code' => array('name'=>'result_code','type'=>'xsd:string'), + 'result_label' => array('name'=>'result_label','type'=>'xsd:string'), + )); + + +// Register WSDL +$server->register('getVersions', +// Entry values +array('authentication'=>'tns:authentication'), +// Exit values +array('result'=>'tns:result','dolibarr'=>'xsd:string','os'=>'xsd:string','php'=>'xsd:string','webserver'=>'xsd:string'), +$ns); + + + +// Full methods code +function getVersions($authentication) +{ + global $db,$conf,$langs; + + dol_syslog("Function: getVersions login=".$authentication['login']); + + if ($authentication['entity']) $conf->entity=$authentication['entity']; + + $objectresp=array(); + $errorcode='';$errorlabel=''; + $error=0; + + if ($authentication['dolibarrkey'] != $conf->global->WEBSERVICES_KEY) + { + $error++; + $errorcode='BAD_VALUE_FOR_SECURITY_KEY'; $errorlabel='Value provided into dolibarrkey entry field does not match security key defined in Webservice module setup'; + } + + if (! $error) + { + $objectresp['result']=array('result_code'=>'', 'result_label'=>''); + $objectresp['dolibarr']=version_dolibarr(); + $objectresp['os']=version_os(); + $objectresp['php']=version_php(); + $objectresp['webserver']=version_webserver(); + } + + if ($error) + { + $objectresp = array('result'=>array('result_code' => $errorcode, 'result_label' => $errorlabel)); + } + + return $objectresp; +} + + +// Return the results. +$server->service($HTTP_RAW_POST_DATA); + +?> diff --git a/htdocs/webservices/server_thirdparty.php b/htdocs/webservices/server_thirdparty.php new file mode 100755 index 00000000000..ed56f958001 --- /dev/null +++ b/htdocs/webservices/server_thirdparty.php @@ -0,0 +1,227 @@ + + * + * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +/** + * \file htdocs/webservices/server_thirdparty.php + * \brief File that is entry point to call Dolibarr WebServices + * \version $Id$ + */ + +// This is to make Dolibarr working with Plesk +set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs'); + +require_once("../master.inc.php"); +require_once(NUSOAP_PATH.'/nusoap.php'); // Include SOAP +require_once(DOL_DOCUMENT_ROOT."/user/class/user.class.php"); +require_once(DOL_DOCUMENT_ROOT."/societe/class/societe.class.php"); + + +dol_syslog("Call Dolibarr webservices interfaces"); + +// Enable and test if module web services is enabled +if (empty($conf->global->MAIN_MODULE_WEBSERVICES)) +{ + $langs->load("admin"); + dol_syslog("Call Dolibarr webservices interfaces with module webservices disabled"); + print $langs->trans("WarningModuleNotActive",'WebServices').'.

      '; + print $langs->trans("ToActivateModule"); + exit; +} + +// Create the soap Object +$server = new soap_server(); +$server->soap_defencoding='UTF-8'; +$ns='http://www.dolibarr.org/ns'; +$server->configureWSDL('WebServicesDolibarrThirdParty',$ns); +$server->wsdl->schemaTargetNamespace=$ns; + + +// Define WSDL content +$server->wsdl->addComplexType( + 'authentication', + 'complexType', + 'struct', + 'all', + '', + array( + 'dolibarrkey' => array('name'=>'dolibarrkey','type'=>'xsd:string'), + 'sourceapplication' => array('name'=>'sourceapplication','type'=>'xsd:string'), + 'login' => array('name'=>'login','type'=>'xsd:string'), + 'password' => array('name'=>'password','type'=>'xsd:string'), + 'entity' => array('name'=>'entity','type'=>'xsd:string'), + )); + +$server->wsdl->addComplexType( + 'thirdparty', + 'complexType', + 'struct', + 'all', + '', + array( + 'id' => array('name'=>'id','type'=>'xsd:string'), + 'name' => array('name'=>'name','type'=>'xsd:string'), + 'fk_user_author' => array('name'=>'fk_user_author','type'=>'xsd:string'), + 'date' => array('name'=>'date','type'=>'xsd:int'), + 'date_creation' => array('name'=>'date_creation','type'=>'xsd:int'), + 'date_modification' => array('name'=>'date_modification','type'=>'xsd:int'), + 'note' => array('name'=>'note','type'=>'xsd:int'), + 'address' => array('name'=>'address','type'=>'xsd:string'), + 'zip' => array('name'=>'zip','type'=>'xsd:string'), + 'town' => array('name'=>'town','type'=>'xsd:string'), + 'province_id' => array('name'=>'province_id','type'=>'xsd:string'), + 'phone' => array('name'=>'country_id','type'=>'xsd:string'), + 'fax' => array('name'=>'country_id','type'=>'xsd:string'), + 'email' => array('name'=>'country_id','type'=>'xsd:string'), + 'url' => array('name'=>'country_id','type'=>'xsd:string'), + 'profid1' => array('name'=>'profid1','type'=>'xsd:string'), + 'profid2' => array('name'=>'profid2','type'=>'xsd:string'), + 'profid3' => array('name'=>'profid3','type'=>'xsd:string'), + 'profid4' => array('name'=>'profid4','type'=>'xsd:string'), + 'prefix' => array('name'=>'prefix','type'=>'xsd:string'), + 'vat_used' => array('name'=>'vat_used','type'=>'xsd:string'), + 'vat_number' => array('name'=>'vat_number','type'=>'xsd:string') + ) + ); + +$server->wsdl->addComplexType( + 'result', + 'complexType', + 'struct', + 'all', + '', + array( + 'result_code' => array('name'=>'result_code','type'=>'xsd:string'), + 'result_label' => array('name'=>'result_label','type'=>'xsd:string'), + )); + + +// Register WSDL +$server->register('getThirdParty', +// Entry values +array('authentication'=>'tns:authentication','id'=>'xsd:string','name'=>'xsd:string'), +// Exit values +array('result'=>'tns:result','thirdparty'=>'tns:thirdparty'), +$ns +); + + +// Full methods code +function getThirdParty($authentication,$id,$name) +{ + global $db,$conf,$langs; + + dol_syslog("Function: getThirdParty login=".$authentication['login']." id=".$id." name=".$name); + + if ($authentication['entity']) $conf->entity=$authentication['entity']; + + $objectresp=array(); + $errorcode='';$errorlabel=''; + $error=0; + + if (! $error && ($authentication['dolibarrkey'] != $conf->global->WEBSERVICES_KEY)) + { + $error++; + $errorcode='BAD_VALUE_FOR_SECURITY_KEY'; $errorlabel='Value provided into dolibarrkey entry field does not match security key defined in Webservice module setup'; + } + + if (! $error && $id && $name) + { + $error++; + $errorcode='BAD_PARAMETERS'; $errorlabel='Parameter id and ref can\'t be both provided. You must choose one or other but not both.'; + } + + if (! $error) + { + $fuser=new User($db); + $result=$fuser->fetch('',$authentication['login'],'',0); + if ($result <= 0) $error++; + + // TODO Check password + + + + if ($error) + { + $errorcode='BAD_CREDENTIALS'; $errorlabel='Bad value for login or password'; + } + } + + if (! $error) + { + $fuser->getrights(); + + if ($fuser->rights->facture->lire) + { + $thirdparty=new Societe($db); + $result=$thirdparty->fetch($id,$name); + if ($result > 0) + { + // Create + $objectresp = array( + 'result'=>array('result_code'=>'', 'result_label'=>''), + 'thirdparty'=>array( + 'id' => $thirdparty->id, + 'name' => $thirdparty->name, + 'fk_user_author' => $thirdparty->fk_user_author, +// 'date_creation' => $thirdparty-> +// 'date_modification' => $thirdparty-> + 'address' => $thirdparty->address, + 'zip' => $thirdparty->cp, + 'town' => $thirdparty->ville, + 'province_id' => $thirdparty->departement_id, + 'country_id' => $thirdparty->pays_id, + 'phone' => $thirdparty->tel, + 'fax' => $thirdparty->fax, + 'email' => $thirdparty->email, + 'url' => $thirdparty->url, + 'profid1' => $thirdparty->siren, + 'profid2' => $thirdparty->siret, + 'profid3' => $thirdparty->ape, + 'profid4' => $thirdparty->idprof4, + 'prefix' => $thirdparty->prefix_comm, + 'vat_used' => $thirdparty->tva_assuj, + 'vat_number' => $thirdparty->tva_intra + )); + } + else + { + $error++; + $errorcode='FAILEDTOREAD'; $errorlabel='Object not found for id='.$id.' nor ref='.$ref; + } + } + else + { + $error++; + $errorcode='PERMISSION_DENIED'; $errorlabel='User does not have permission for this request'; + } + } + + if ($error) + { + $objectresp = array('result'=>array('result_code' => $errorcode, 'result_label' => $errorlabel)); + } + + return $objectresp; +} + + + +// Return the results. +$server->service($HTTP_RAW_POST_DATA); + +?>