%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php class com_wiris_system_Utf8 { public function __construct() { } static function getLength($s) { return haxe_Utf8::length($s); } static function charCodeAt($s, $i) { return haxe_Utf8::charCodeAt($s, $i); } static function mbSubstring($s, $i, $len) { return mb_substr($s, $i, $len); } static function charValueAt($s, $i) { $ret = 0; $charUCS4 = mb_convert_encoding(mb_substr($s, $i, 1), 'UCS-4BE', 'UTF-8'); $byte1 = ord(substr($charUCS4, 0, 1)); $byte2 = ord(substr($charUCS4, 1, 1)); $byte3 = ord(substr($charUCS4, 2, 1)); $byte4 = ord(substr($charUCS4, 3, 1)); $ret = ($byte1 << 32) + ($byte2 << 16) + ($byte3 << 8) + $byte4; return $ret; } static function charAt($s, $i) { return com_wiris_system_Utf8_0($i, $s); } static function uchr($i) { $s = new haxe_Utf8(null); $s->addChar($i); return $s->toString(); } static function sub($s, $pos, $len) { return haxe_Utf8::sub($s, $pos, $len); } static function toBytes($s) { return haxe_io_Bytes::ofString($s)->b; } static function fromBytes($s) { $bs = haxe_io_Bytes::ofData($s); return $bs->toString(); } static function getIterator($s) { return new com_wiris_system__Utf8_StringIterator($s); } function __toString() { return 'com.wiris.system.Utf8'; } } function com_wiris_system_Utf8_0(&$i, &$s) { { $s1 = new haxe_Utf8(null); $s1->addChar(haxe_Utf8::charCodeAt($s, $i)); return $s1->toString(); } }