ÿØÿà JFIF    ÿÛ „  ( %!1!%)+//.383,7(-.+  -%%-////---/-.+/--+------/------/--0+--/-/-----.-----ÿÀ  ¥2" ÿÄ     ÿÄ J    ! 1AQ"aq2‘#BR‚¡ÁÑ3br’¢±Âð$CSƒ²á4c“%DsÓñÿÄ   ÿÄ *  !1AQa‘"2q3±ð#b¡ÿÚ   ? ¼QxJQaÍuò¸Zö Úü8,ÐÚú "SSn<rçù–´âE—^ªBÖ9À\†¸ÔÁT­ÃÛ5 ëd´³Í#Ý;Þ38œî ¶H£M:wÎ3…³…âpÔF&‚FK¸9„â4àGEõªfÿ ‘ñ(ßw­pŽF|È¥ù®häðÍѶ¹‘[ÒinÙW¶ùñY˜Q{›K"išÒ[Ú8žë\F¹@-?v"ÔU”,ìöžkÿ {I‡£šÍ?e ríV .............................................................................................................................................................................. ............................................................................. ?????????????? module.audio.dts.php000060000000025206152233444720010436 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio.dts.php // // module for analyzing DTS Audio files // // dependencies: NONE // // // ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } /** * @tutorial http://wiki.multimedia.cx/index.php?title=DTS */ class getid3_dts extends getid3_handler { /** * Default DTS syncword used in native .cpt or .dts formats. */ const syncword = "\x7F\xFE\x80\x01"; /** * @var int */ private $readBinDataOffset = 0; /** * Possible syncwords indicating bitstream encoding. */ public static $syncwords = array( 0 => "\x7F\xFE\x80\x01", // raw big-endian 1 => "\xFE\x7F\x01\x80", // raw little-endian 2 => "\x1F\xFF\xE8\x00", // 14-bit big-endian 3 => "\xFF\x1F\x00\xE8"); // 14-bit little-endian /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; $info['fileformat'] = 'dts'; $this->fseek($info['avdataoffset']); $DTSheader = $this->fread(20); // we only need 2 words magic + 6 words frame header, but these words may be normal 16-bit words OR 14-bit words with 2 highest bits set to zero, so 8 words can be either 8*16/8 = 16 bytes OR 8*16*(16/14)/8 = 18.3 bytes // check syncword $sync = substr($DTSheader, 0, 4); if (($encoding = array_search($sync, self::$syncwords)) !== false) { $info['dts']['raw']['magic'] = $sync; $this->readBinDataOffset = 32; } elseif ($this->isDependencyFor('matroska')) { // Matroska contains DTS without syncword encoded as raw big-endian format $encoding = 0; $this->readBinDataOffset = 0; } else { unset($info['fileformat']); return $this->error('Expecting "'.implode('| ', array_map('getid3_lib::PrintHexBytes', self::$syncwords)).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes($sync).'"'); } // decode header $fhBS = ''; for ($word_offset = 0; $word_offset <= strlen($DTSheader); $word_offset += 2) { switch ($encoding) { case 0: // raw big-endian $fhBS .= getid3_lib::BigEndian2Bin( substr($DTSheader, $word_offset, 2) ); break; case 1: // raw little-endian $fhBS .= getid3_lib::BigEndian2Bin(strrev(substr($DTSheader, $word_offset, 2))); break; case 2: // 14-bit big-endian $fhBS .= substr(getid3_lib::BigEndian2Bin( substr($DTSheader, $word_offset, 2) ), 2, 14); break; case 3: // 14-bit little-endian $fhBS .= substr(getid3_lib::BigEndian2Bin(strrev(substr($DTSheader, $word_offset, 2))), 2, 14); break; } } $info['dts']['raw']['frame_type'] = $this->readBinData($fhBS, 1); $info['dts']['raw']['deficit_samples'] = $this->readBinData($fhBS, 5); $info['dts']['flags']['crc_present'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['raw']['pcm_sample_blocks'] = $this->readBinData($fhBS, 7); $info['dts']['raw']['frame_byte_size'] = $this->readBinData($fhBS, 14); $info['dts']['raw']['channel_arrangement'] = $this->readBinData($fhBS, 6); $info['dts']['raw']['sample_frequency'] = $this->readBinData($fhBS, 4); $info['dts']['raw']['bitrate'] = $this->readBinData($fhBS, 5); $info['dts']['flags']['embedded_downmix'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['flags']['dynamicrange'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['flags']['timestamp'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['flags']['auxdata'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['flags']['hdcd'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['raw']['extension_audio'] = $this->readBinData($fhBS, 3); $info['dts']['flags']['extended_coding'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['flags']['audio_sync_insertion'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['raw']['lfe_effects'] = $this->readBinData($fhBS, 2); $info['dts']['flags']['predictor_history'] = (bool) $this->readBinData($fhBS, 1); if ($info['dts']['flags']['crc_present']) { $info['dts']['raw']['crc16'] = $this->readBinData($fhBS, 16); } $info['dts']['flags']['mri_perfect_reconst'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['raw']['encoder_soft_version'] = $this->readBinData($fhBS, 4); $info['dts']['raw']['copy_history'] = $this->readBinData($fhBS, 2); $info['dts']['raw']['bits_per_sample'] = $this->readBinData($fhBS, 2); $info['dts']['flags']['surround_es'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['flags']['front_sum_diff'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['flags']['surround_sum_diff'] = (bool) $this->readBinData($fhBS, 1); $info['dts']['raw']['dialog_normalization'] = $this->readBinData($fhBS, 4); $info['dts']['bitrate'] = self::bitrateLookup($info['dts']['raw']['bitrate']); $info['dts']['bits_per_sample'] = self::bitPerSampleLookup($info['dts']['raw']['bits_per_sample']); $info['dts']['sample_rate'] = self::sampleRateLookup($info['dts']['raw']['sample_frequency']); $info['dts']['dialog_normalization'] = self::dialogNormalization($info['dts']['raw']['dialog_normalization'], $info['dts']['raw']['encoder_soft_version']); $info['dts']['flags']['lossless'] = (($info['dts']['raw']['bitrate'] == 31) ? true : false); $info['dts']['bitrate_mode'] = (($info['dts']['raw']['bitrate'] == 30) ? 'vbr' : 'cbr'); $info['dts']['channels'] = self::numChannelsLookup($info['dts']['raw']['channel_arrangement']); $info['dts']['channel_arrangement'] = self::channelArrangementLookup($info['dts']['raw']['channel_arrangement']); $info['audio']['dataformat'] = 'dts'; $info['audio']['lossless'] = $info['dts']['flags']['lossless']; $info['audio']['bitrate_mode'] = $info['dts']['bitrate_mode']; $info['audio']['bits_per_sample'] = $info['dts']['bits_per_sample']; $info['audio']['sample_rate'] = $info['dts']['sample_rate']; $info['audio']['channels'] = $info['dts']['channels']; $info['audio']['bitrate'] = $info['dts']['bitrate']; if (isset($info['avdataend']) && !empty($info['dts']['bitrate']) && is_numeric($info['dts']['bitrate'])) { $info['playtime_seconds'] = ($info['avdataend'] - $info['avdataoffset']) / ($info['dts']['bitrate'] / 8); if (($encoding == 2) || ($encoding == 3)) { // 14-bit data packed into 16-bit words, so the playtime is wrong because only (14/16) of the bytes in the data portion of the file are used at the specified bitrate $info['playtime_seconds'] *= (14 / 16); } } return true; } /** * @param string $bin * @param int $length * * @return int */ private function readBinData($bin, $length) { $data = substr($bin, $this->readBinDataOffset, $length); $this->readBinDataOffset += $length; return bindec($data); } /** * @param int $index * * @return int|string|false */ public static function bitrateLookup($index) { static $lookup = array( 0 => 32000, 1 => 56000, 2 => 64000, 3 => 96000, 4 => 112000, 5 => 128000, 6 => 192000, 7 => 224000, 8 => 256000, 9 => 320000, 10 => 384000, 11 => 448000, 12 => 512000, 13 => 576000, 14 => 640000, 15 => 768000, 16 => 960000, 17 => 1024000, 18 => 1152000, 19 => 1280000, 20 => 1344000, 21 => 1408000, 22 => 1411200, 23 => 1472000, 24 => 1536000, 25 => 1920000, 26 => 2048000, 27 => 3072000, 28 => 3840000, 29 => 'open', 30 => 'variable', 31 => 'lossless', ); return (isset($lookup[$index]) ? $lookup[$index] : false); } /** * @param int $index * * @return int|string|false */ public static function sampleRateLookup($index) { static $lookup = array( 0 => 'invalid', 1 => 8000, 2 => 16000, 3 => 32000, 4 => 'invalid', 5 => 'invalid', 6 => 11025, 7 => 22050, 8 => 44100, 9 => 'invalid', 10 => 'invalid', 11 => 12000, 12 => 24000, 13 => 48000, 14 => 'invalid', 15 => 'invalid', ); return (isset($lookup[$index]) ? $lookup[$index] : false); } /** * @param int $index * * @return int|false */ public static function bitPerSampleLookup($index) { static $lookup = array( 0 => 16, 1 => 20, 2 => 24, 3 => 24, ); return (isset($lookup[$index]) ? $lookup[$index] : false); } /** * @param int $index * * @return int|false */ public static function numChannelsLookup($index) { switch ($index) { case 0: return 1; case 1: case 2: case 3: case 4: return 2; case 5: case 6: return 3; case 7: case 8: return 4; case 9: return 5; case 10: case 11: case 12: return 6; case 13: return 7; case 14: case 15: return 8; } return false; } /** * @param int $index * * @return string */ public static function channelArrangementLookup($index) { static $lookup = array( 0 => 'A', 1 => 'A + B (dual mono)', 2 => 'L + R (stereo)', 3 => '(L+R) + (L-R) (sum-difference)', 4 => 'LT + RT (left and right total)', 5 => 'C + L + R', 6 => 'L + R + S', 7 => 'C + L + R + S', 8 => 'L + R + SL + SR', 9 => 'C + L + R + SL + SR', 10 => 'CL + CR + L + R + SL + SR', 11 => 'C + L + R+ LR + RR + OV', 12 => 'CF + CR + LF + RF + LR + RR', 13 => 'CL + C + CR + L + R + SL + SR', 14 => 'CL + CR + L + R + SL1 + SL2 + SR1 + SR2', 15 => 'CL + C+ CR + L + R + SL + S + SR', ); return (isset($lookup[$index]) ? $lookup[$index] : 'user-defined'); } /** * @param int $index * @param int $version * * @return int|false */ public static function dialogNormalization($index, $version) { switch ($version) { case 7: return 0 - $index; case 6: return 0 - 16 - $index; } return false; } } readme.txt000064400000063332152233444720006557 0ustar00///////////////////////////////////////////////////////////////// /// getID3() by James Heinrich // // available at http://getid3.sourceforge.net // // or https://www.getid3.org // // also https://github.com/JamesHeinrich/getID3 // ///////////////////////////////////////////////////////////////// ***************************************************************** ***************************************************************** getID3() is released under multiple licenses. You may choose from the following licenses, and use getID3 according to the terms of the license most suitable to your project. GNU GPL: https://gnu.org/licenses/gpl.html (v3) https://gnu.org/licenses/old-licenses/gpl-2.0.html (v2) https://gnu.org/licenses/old-licenses/gpl-1.0.html (v1) GNU LGPL: https://gnu.org/licenses/lgpl.html (v3) Mozilla MPL: https://www.mozilla.org/MPL/2.0/ (v2) getID3 Commercial License: https://www.getid3.org/#gCL (no longer available, existing licenses remain valid) ***************************************************************** ***************************************************************** Copies of each of the above licenses are included in the 'licenses' directory of the getID3 distribution. +----------------------------------------------+ | If you want to donate, there is a link on | | https://www.getid3.org for PayPal donations. | +----------------------------------------------+ Quick Start =========================================================================== Q: How can I check that getID3() works on my server/files? A: Unzip getID3() to a directory, then access /demos/demo.browse.php Support =========================================================================== Q: I have a question, or I found a bug. What do I do? A: The preferred method of support requests and/or bug reports is the forum at http://support.getid3.org/ Sourceforge Notification =========================================================================== It's highly recommended that you sign up for notification from Sourceforge for when new versions are released. Please visit: http://sourceforge.net/project/showfiles.php?group_id=55859 and click the little "monitor package" icon/link. If you're previously signed up for the mailing list, be aware that it has been discontinued, only the automated Sourceforge notification will be used from now on. What does getID3() do? =========================================================================== Reads & parses (to varying degrees): ¤ tags: * APE (v1 and v2) * ID3v1 (& ID3v1.1) * ID3v2 (v2.4, v2.3, v2.2) * Lyrics3 (v1 & v2) ¤ audio-lossy: * MP3/MP2/MP1 * MPC / Musepack * Ogg (Vorbis, OggFLAC, Speex, Opus) * AAC / MP4 * AC3 * DTS * RealAudio * Speex * DSS * VQF ¤ audio-lossless: * AIFF * AU * Bonk * CD-audio (*.cda) * FLAC * LA (Lossless Audio) * LiteWave * LPAC * MIDI * Monkey's Audio * OptimFROG * RKAU * Shorten * TTA * VOC * WAV (RIFF) * WavPack ¤ audio-video: * ASF: ASF, Windows Media Audio (WMA), Windows Media Video (WMV) * AVI (RIFF) * Flash * Matroska (MKV) * MPEG-1 / MPEG-2 * NSV (Nullsoft Streaming Video) * Quicktime (including MP4) * RealVideo ¤ still image: * BMP * GIF * JPEG * PNG * TIFF * SWF (Flash) * PhotoCD ¤ data: * ISO-9660 CD-ROM image (directory structure) * SZIP (limited support) * ZIP (directory structure) * TAR * CUE Writes: * ID3v1 (& ID3v1.1) * ID3v2 (v2.3 & v2.4) * VorbisComment on OggVorbis * VorbisComment on FLAC (not OggFLAC) * APE v2 * Lyrics3 (delete only) Requirements =========================================================================== * PHP 4.2.0 up to 5.2.x for getID3() 1.7.x (and earlier) * PHP 5.0.5 (or higher) for getID3() 1.8.x (and up) * PHP 5.3.0 (or higher) for getID3() 1.9.17 (and up) * PHP 5.3.0 (or higher) for getID3() 2.0.x (and up) * at least 4MB memory for PHP. 8MB or more is highly recommended. 12MB is required with all modules loaded. Usage =========================================================================== See /demos/demo.basic.php for a very basic use of getID3() with no fancy output, just scanning one file. See structure.txt for the returned data structure. *> For an example of a complete directory-browsing, <* *> file-scanning implementation of getID3(), please run <* *> /demos/demo.browse.php <* See /demos/demo.mysql.php for a sample recursive scanning code that scans every file in a given directory, and all sub-directories, stores the results in a database and allows various analysis / maintenance operations To analyze remote files over HTTP or FTP you need to copy the file locally first before running getID3(). Your code would look something like this: // Copy remote file locally to scan with getID3() $remotefilename = 'http://www.example.com/filename.mp3'; if ($fp_remote = fopen($remotefilename, 'rb')) { $localtempfilename = tempnam('/tmp', 'getID3'); if ($fp_local = fopen($localtempfilename, 'wb')) { while ($buffer = fread($fp_remote, 32768)) { fwrite($fp_local, $buffer); } fclose($fp_local); $remote_headers = array_change_key_case(get_headers($remotefilename, 1), CASE_LOWER); $remote_filesize = (isset($remote_headers['content-length']) ? (is_array($remote_headers['content-length']) ? $remote_headers['content-length'][count($remote_headers['content-length']) - 1] : $remote_headers['content-length']) : null); // Initialize getID3 engine $getID3 = new getID3; $ThisFileInfo = $getID3->analyze($localtempfilename, $remote_filesize, basename($remotefilename)); // Delete temporary file unlink($localtempfilename); } fclose($fp_remote); } Note: since v1.9.9-20150212 it is possible a second and third parameter to $getID3->analyze(), for original filesize and original filename respectively. This permits you to download only a portion of a large remote file but get accurate playtime estimates, assuming the format only requires the beginning of the file for correct format analysis. See /demos/demo.write.php for how to write tags. What does the returned data structure look like? =========================================================================== See structure.txt It is recommended that you look at the output of /demos/demo.browse.php scanning the file(s) you're interested in to confirm what data is actually returned for any particular filetype in general, and your files in particular, as the actual data returned may vary considerably depending on what information is available in the file itself. Notes =========================================================================== getID3() 1.x: If the format parser encounters a critical problem, it will return something in $fileinfo['error'], describing the encountered error. If a less critical error or notice is generated it will appear in $fileinfo['warning']. Both keys may contain more than one warning or error. If something is returned in ['error'] then the file was not correctly parsed and returned data may or may not be correct and/or complete. If something is returned in ['warning'] (and not ['error']) then the data that is returned is OK - usually getID3() is reporting errors in the file that have been worked around due to known bugs in other programs. Some warnings may indicate that the data that is returned is OK but that some data could not be extracted due to errors in the file. getID3() 2.x: See above except errors are thrown (so you will only get one error). Disclaimer =========================================================================== getID3() has been tested on many systems, on many types of files, under many operating systems, and is generally believe to be stable and safe. That being said, there is still the chance there is an undiscovered and/or unfixed bug that may potentially corrupt your file, especially within the writing functions. By using getID3() you agree that it's not my fault if any of your files are corrupted. In fact, I'm not liable for anything :) License =========================================================================== GNU General Public License - see license.txt 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: Free Software Foundation, Inc. 59 Temple Place - Suite 330 Boston, MA 02111-1307, USA. FAQ: Q: Can I use getID3() in my program? Do I need a commercial license? A: You're generally free to use getID3 however you see fit. The only case in which you would require a commercial license is if you're selling your closed-source program that integrates getID3. If you sell your program including a copy of getID3, that's fine as long as you include a copy of the sourcecode when you sell it. Or you can distribute your code without getID3 and say "download it from getid3.sourceforge.net" Why is it called "getID3()" if it does so much more than just that? =========================================================================== v0.1 did in fact just do that. I don't have a copy of code that old, but I could essentially write it today with a one-line function: function getID3($filename) { return unpack('a3TAG/a30title/a30artist/a30album/a4year/a28comment/c1track/c1genreid', substr(file_get_contents($filename), -128)); } Future Plans =========================================================================== https://www.getid3.org/phpBB3/viewforum.php?f=7 * Better support for MP4 container format * Scan for appended ID3v2 tag at end of file per ID3v2.4 specs (Section 5.0) * Support for JPEG-2000 (http://www.morgan-multimedia.com/jpeg2000_overview.htm) * Support for MOD (mod/stm/s3m/it/xm/mtm/ult/669) * Support for ACE (thanks Vince) * Support for Ogg other than Vorbis, Speex and OggFlac (ie. Ogg+Xvid) * Ability to create Xing/LAME VBR header for VBR MP3s that are missing VBR header * Ability to "clean" ID3v2 padding (replace invalid padding with valid padding) * Warn if MP3s change version mid-stream (in full-scan mode) * check for corrupt/broken mid-file MP3 streams in histogram scan * Support for lossless-compression formats (http://www.firstpr.com.au/audiocomp/lossless/#Links) (http://compression.ca/act-sound.html) (http://web.inter.nl.net/users/hvdh/lossless/lossless.htm) * Support for RIFF-INFO chunks * http://lotto.st-andrews.ac.uk/~njh/tag_interchange.html (thanks Nick Humfrey ) * http://abcavi.narod.ru/sof/abcavi/infotags.htm (thanks Kibi) * Better support for Bink video * http://www.hr/josip/DSP/AudioFile2.html * http://www.pcisys.net/~melanson/codecs/ * Detect mp3PRO * Support for PSD * Support for JPC * Support for JP2 * Support for JPX * Support for JB2 * Support for IFF * Support for ICO * Support for ANI * Support for EXE (comments, author, etc) (thanks p*quaedackersØplanet*nl) * Support for DVD-IFO (region, subtitles, aspect ratio, etc) (thanks p*quaedackersØplanet*nl) * More complete support for SWF - parsing encapsulated MP3 and/or JPEG content (thanks n8n8Øyahoo*com) * Support for a2b * Optional scan-through-frames for AVI verification (thanks rockcohenØmassive-interactive*nl) * Support for TTF (thanks infoØbutterflyx*com) * Support for DSS (https://www.getid3.org/phpBB3/viewtopic.php?t=171) * Support for SMAF (http://smaf-yamaha.com/what/demo.html) https://www.getid3.org/phpBB3/viewtopic.php?t=182 * Support for AMR (https://www.getid3.org/phpBB3/viewtopic.php?t=195) * Support for 3gpp (https://www.getid3.org/phpBB3/viewtopic.php?t=195) * Support for ID4 (http://www.wackysoft.cjb.net grizlyY2KØhotmail*com) * Parse XML data returned in Ogg comments * Parse XML data from Quicktime SMIL metafiles (klausrathØmac*com) * ID3v2 genre string creator function * More complete parsing of JPG * Support for all old-style ASF packets * ASF/WMA/WMV tag writing * Parse declared T??? ID3v2 text information frames, where appropriate (thanks Christian Fritz for the idea) * Recognize encoder: http://www.guerillasoft.com/EncSpot2/index.html http://ff123.net/identify.html http://www.hydrogenaudio.org/?act=ST&f=16&t=9414 http://www.hydrogenaudio.org/?showtopic=11785 * Support for other OS/2 bitmap structures: Bitmap Array('BA'), Color Icon('CI'), Color Pointer('CP'), Icon('IC'), Pointer ('PT') http://netghost.narod.ru/gff/graphics/summary/os2bmp.htm * Support for WavPack RAW mode * ASF/WMA/WMV data packet parsing * ID3v2FrameFlagsLookupTagAlter() * ID3v2FrameFlagsLookupFileAlter() * obey ID3v2 tag alter/preserve/discard rules * http://www.geocities.com/SiliconValley/Sector/9654/Softdoc/Illyrium/Aolyr.htm * proper checking for LINK/LNK frame validity in ID3v2 writing * proper checking for ASPI-TLEN frame validity in ID3v2 writing * proper checking for COMR frame validity in ID3v2 writing * http://www.geocities.co.jp/SiliconValley-Oakland/3664/index.html * decode GEOB ID3v2 structure as encoded by RealJukebox, decode NCON ID3v2 structure as encoded by MusicMatch (probably won't happen - the formats are proprietary) Known Bugs/Issues in getID3() that may be fixed eventually =========================================================================== https://www.getid3.org/phpBB3/viewtopic.php?t=25 * Cannot determine bitrate for MPEG video with VBR video data (need documentation) * Interlace/progressive cannot be determined for MPEG video (need documentation) * MIDI playtime is sometimes inaccurate * AAC-RAW mode files cannot be identified * WavPack-RAW mode files cannot be identified * mp4 files report lots of "Unknown QuickTime atom type" (need documentation) * Encrypted ASF/WMA/WMV files warn about "unhandled GUID ASF_Content_Encryption_Object" * Bitrate split between audio and video cannot be calculated for NSV, only the total bitrate. (need documentation) * All Ogg formats (Vorbis, OggFLAC, Speex) are affected by the problem of large VorbisComments spanning multiple Ogg pages, but but only OggVorbis files can be processed with vorbiscomment. * The version of "head" supplied with Mac OS 10.2.8 (maybe other versions too) does only understands a single option (-n) and therefore fails. getID3 ignores this and returns wrong md5_data. Known Bugs/Issues in getID3() that cannot be fixed -------------------------------------------------- https://www.getid3.org/phpBB3/viewtopic.php?t=25 * 32-bit PHP installations only: Files larger than 2GB cannot always be parsed fully by getID3() due to limitations in the 32-bit PHP filesystem functions. NOTE: Since v1.7.8b3 there is partial support for larger-than- 2GB files, most of which will parse OK, as long as no critical data is located beyond the 2GB offset. Known will-work: * all file formats on 64-bit PHP * ZIP (format doesn't support files >2GB) * FLAC (current encoders don't support files >2GB) Known will-not-work: * ID3v1 tags (always located at end-of-file) * Lyrics3 tags (always located at end-of-file) * APE tags (always located at end-of-file) Maybe-will-work: * Quicktime (will work if needed metadata is before 2GB offset, that is if the file has been hinted/optimized for streaming) * RIFF.WAV (should work fine, but gives warnings about not being able to parse all chunks) * RIFF.AVI (playtime will probably be wrong, is only based on "movi" chunk that fits in the first 2GB, should issue error to show that playtime is incorrect. Other data should be mostly correct, assuming that data is constant throughout the file) * PHP <= v5 on Windows cannot read UTF-8 filenames Known Bugs/Issues in other programs ----------------------------------- https://www.getid3.org/phpBB3/viewtopic.php?t=25 * MusicBrainz Picard (at least up to v1.3.2) writes multiple ID3v2.3 genres in non-standard forward-slash separated text rather than parenthesis-numeric+refinement style per the ID3v2.3 specs. Tags written in ID3v2.4 mode are written correctly. (detected and worked around by getID3()) * PZ TagEditor v4.53.408 has been known to insert ID3v2.3 frames into an existing ID3v2.2 tag which, of course, breaks things * Windows Media Player (up to v11) and iTunes (up to v10+) do not correctly handle ID3v2.3 tags with UTF-16BE+BOM encoding (they assume the data is UTF-16LE+BOM and either crash (WMP) or output Asian character set (iTunes) * Winamp (up to v2.80 at least) does not support ID3v2.4 tags, only ID3v2.3 see: http://forums.winamp.com/showthread.php?postid=387524 * Some versions of Helium2 (www.helium2.com) do not write ID3v2.4-compliant Frame Sizes, even though the tag is marked as ID3v2.4) (detected by getID3()) * MP3ext V3.3.17 places a non-compliant padding string at the end of the ID3v2 header. This is supposedly fixed in v3.4b21 but only if you manually add a registry key. This fix is not yet confirmed. (detected by getID3()) * CDex v1.40 (fixed by v1.50b7) writes non-compliant Ogg comment strings, supposed to be in the format "NAME=value" but actually written just "value" (detected by getID3()) * Oggenc 0.9-rc3 flags the encoded file as ABR whether it's actually ABR or VBR. * iTunes (versions "v7.0.0.70" is known-guilty, probably other versions are too) writes ID3v2.3 comment tags using an ID3v2.2 frame name (3-bytes) null-padded to 4 bytes which is not valid for ID3v2.3+ (detected by getID3() since 1.9.12-201603221746) * iTunes (versions "X v2.0.3", "v3.0.1" are known-guilty, probably other versions are too) writes ID3v2.3 comment tags using a frame name 'COM ' which is not valid for ID3v2.3+ (it's an ID3v2.2-style frame name) (detected by getID3()) * MP2enc does not encode mono CBR MP2 files properly (half speed sound and double playtime) * MP2enc does not encode mono VBR MP2 files properly (actually encoded as stereo) * tooLAME does not encode mono VBR MP2 files properly (actually encoded as stereo) * AACenc encodes files in VBR mode (actually ABR) even if CBR is specified * AAC/ADIF - bitrate_mode = cbr for vbr files * LAME 3.90-3.92 prepends one frame of null data (space for the LAME/VBR header, but it never gets written) when encoding in CBR mode with the DLL * Ahead Nero encodes TwinVQF with a DSIZ value (which is supposed to be the filesize in bytes) of "0" for TwinVQF v1.0 and "1" for TwinVQF v2.0 (detected by getID3()) * Ahead Nero encodes TwinVQF files 1 second shorter than they should be * AAC-ADTS files are always actually encoded VBR, even if CBR mode is specified (the CBR-mode switches on the encoder enable ABR mode, not CBR as such, but it's not possible to tell the difference between such ABR files and true VBR) * STREAMINFO.audio_signature in OggFLAC is always null. "The reason it's like that is because there is no seeking support in libOggFLAC yet, so it has no way to go back and write the computed sum after encoding. Seeking support in Ogg FLAC is the #1 item for the next release." - Josh Coalson (FLAC developer) NOTE: getID3() will calculate md5_data in a method similar to other file formats, but that value cannot be compared to the md5_data value from FLAC data in a FLAC file format. * STREAMINFO.audio_signature is not calculated in FLAC v0.3.0 & v0.4.0 - getID3() will calculate md5_data in a method similar to other file formats, but that value cannot be compared to the md5_data value from FLAC v0.5.0+ * RioPort (various versions including 2.0 and 3.11) tags ID3v2 with a WCOM frame that has no data portion * Earlier versions of Coolplayer adds illegal ID3 tags to Ogg Vorbis files, thus making them corrupt. * Meracl ID3 Tag Writer v1.3.4 (and older) incorrectly truncates the last byte of data from an MP3 file when appending a new ID3v1 tag. (detected by getID3()) * Lossless-Audio files encoded with and without the -noseek switch do actually differ internally and therefore cannot match md5_data * iTunes has been known to append a new ID3v1 tag on the end of an existing ID3v1 tag when ID3v2 tag is also present (detected by getID3()) * MediaMonkey may write a blank RGAD ID3v2 frame but put actual replay gain adjustments in a series of user-defined TXXX frames (detected and handled by getID3() since v1.9.2) Reference material: =========================================================================== [www.id3.org material now mirrored at http://id3lib.sourceforge.net/id3/] * http://www.id3.org/id3v2.4.0-structure.txt * http://www.id3.org/id3v2.4.0-frames.txt * http://www.id3.org/id3v2.4.0-changes.txt * http://www.id3.org/id3v2.3.0.txt * http://www.id3.org/id3v2-00.txt * http://www.id3.org/mp3frame.html * http://minnie.tuhs.org/pipermail/mp3encoder/2001-January/001800.html * http://www.dv.co.yu/mpgscript/mpeghdr.htm * http://www.mp3-tech.org/programmer/frame_header.html * http://users.belgacom.net/gc247244/extra/tag.html * http://gabriel.mp3-tech.org/mp3infotag.html * http://www.id3.org/iso4217.html * http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-1.TXT * http://www.xiph.org/ogg/vorbis/doc/framing.html * http://www.xiph.org/ogg/vorbis/doc/v-comment.html * http://leknor.com/code/php/class.ogg.php.txt * http://www.id3.org/iso639-2.html * http://www.id3.org/lyrics3.html * http://www.id3.org/lyrics3200.html * http://www.psc.edu/general/software/packages/ieee/ieee.html * http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/ieee-expl.html * http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/binary.html * http://www.jmcgowan.com/avi.html * http://www.wotsit.org/ * http://www.herdsoft.com/ti/davincie/davp3xo2.htm * http://www.mathdogs.com/vorbis-illuminated/bitstream-appendix.html * "Standard MIDI File Format" by Dustin Caldwell (from www.wotsit.org) * http://midistudio.com/Help/GMSpecs_Patches.htm * http://www.xiph.org/archives/vorbis/200109/0459.html * http://www.replaygain.org/ * http://www.lossless-audio.com/ * http://download.microsoft.com/download/winmediatech40/Doc/1.0/WIN98MeXP/EN-US/ASF_Specification_v.1.0.exe * http://mediaxw.sourceforge.net/files/doc/Active%20Streaming%20Format%20(ASF)%201.0%20Specification.pdf * http://www.uni-jena.de/~pfk/mpp/sv8/ (archived at http://www.hydrogenaudio.org/musepack/klemm/www.personal.uni-jena.de/~pfk/mpp/sv8/) * http://jfaul.de/atl/ * http://www.uni-jena.de/~pfk/mpp/ (archived at http://www.hydrogenaudio.org/musepack/klemm/www.personal.uni-jena.de/~pfk/mpp/) * http://www.libpng.org/pub/png/spec/png-1.2-pdg.html * http://www.real.com/devzone/library/creating/rmsdk/doc/rmff.htm * http://www.fastgraph.com/help/bmp_os2_header_format.html * http://netghost.narod.ru/gff/graphics/summary/os2bmp.htm * http://flac.sourceforge.net/format.html * http://www.research.att.com/projects/mpegaudio/mpeg2.html * http://www.audiocoding.com/wiki/index.php?page=AAC * http://libmpeg.org/mpeg4/doc/w2203tfs.pdf * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt * http://developer.apple.com/techpubs/quicktime/qtdevdocs/RM/frameset.htm * http://www.nullsoft.com/nsv/ * http://www.wotsit.org/download.asp?f=iso9660 * http://sandbox.mc.edu/~bennet/cs110/tc/tctod.html * http://www.cdroller.com/htm/readdata.html * http://www.speex.org/manual/node10.html * http://www.harmony-central.com/Computer/Programming/aiff-file-format.doc * http://www.faqs.org/rfcs/rfc2361.html * http://ghido.shelter.ro/ * http://www.ebu.ch/tech_t3285.pdf * http://www.sr.se/utveckling/tu/bwf * http://ftp.aessc.org/pub/aes46-2002.pdf * http://cartchunk.org:8080/ * http://www.broadcastpapers.com/radio/cartchunk01.htm * http://www.hr/josip/DSP/AudioFile2.html * http://home.attbi.com/~chris.bagwell/AudioFormats-11.html * http://www.pure-mac.com/extkey.html * http://cesnet.dl.sourceforge.net/sourceforge/bonkenc/bonk-binary-format-0.9.txt * http://www.headbands.com/gspot/ * http://www.openswf.org/spec/SWFfileformat.html * http://j-faul.virtualave.net/ * http://www.btinternet.com/~AnthonyJ/Atari/programming/avr_format.html * http://cui.unige.ch/OSG/info/AudioFormats/ap11.html * http://sswf.sourceforge.net/SWFalexref.html * http://www.geocities.com/xhelmboyx/quicktime/formats/qti-layout.txt * http://www-lehre.informatik.uni-osnabrueck.de/~fbstark/diplom/docs/swf/Flash_Uncovered.htm * http://developer.apple.com/quicktime/icefloe/dispatch012.html * http://www.csdn.net/Dev/Format/graphics/PCD.htm * http://tta.iszf.irk.ru/ * http://www.atsc.org/standards/a_52a.pdf * http://www.alanwood.net/unicode/ * http://www.freelists.org/archives/matroska-devel/07-2003/msg00010.html * http://www.its.msstate.edu/net/real/reports/config/tags.stats * http://homepages.slingshot.co.nz/~helmboy/quicktime/formats/qtm-layout.txt * http://brennan.young.net/Comp/LiveStage/things.html * http://www.multiweb.cz/twoinches/MP3inside.htm * http://www.geocities.co.jp/SiliconValley-Oakland/3664/alittle.html#GenreExtended * http://www.mactech.com/articles/mactech/Vol.06/06.01/SANENormalized/ * http://www.unicode.org/unicode/faq/utf_bom.html * http://tta.corecodec.org/?menu=format * http://www.scvi.net/nsvformat.htm * http://pda.etsi.org/pda/queryform.asp * http://cpansearch.perl.org/src/RGIBSON/Audio-DSS-0.02/lib/Audio/DSS.pm * http://trac.musepack.net/trac/wiki/SV8Specification * http://wyday.com/cuesharp/specification.php * http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html * http://www.codeproject.com/Articles/8295/MPEG-Audio-Frame-Header * http://dsd-guide.com/sites/default/files/white-papers/DSFFileFormatSpec_E.pdf * https://fileformats.fandom.com/wiki/Torrent_filemodule.audio-video.asf.php000064400000413157152233444720011537 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio-video.asf.php // // module for analyzing ASF, WMA and WMV files // // dependencies: module.audio-video.riff.php // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio-video.riff.php', __FILE__, true); class getid3_asf extends getid3_handler { protected static $ASFIndexParametersObjectIndexSpecifiersIndexTypes = array( 1 => 'Nearest Past Data Packet', 2 => 'Nearest Past Media Object', 3 => 'Nearest Past Cleanpoint' ); protected static $ASFMediaObjectIndexParametersObjectIndexSpecifiersIndexTypes = array( 1 => 'Nearest Past Data Packet', 2 => 'Nearest Past Media Object', 3 => 'Nearest Past Cleanpoint', 0xFF => 'Frame Number Offset' ); protected static $ASFTimecodeIndexParametersObjectIndexSpecifiersIndexTypes = array( 2 => 'Nearest Past Media Object', 3 => 'Nearest Past Cleanpoint' ); /** * @param getID3 $getid3 */ public function __construct(getID3 $getid3) { parent::__construct($getid3); // extends getid3_handler::__construct() // initialize all GUID constants $GUIDarray = $this->KnownGUIDs(); foreach ($GUIDarray as $GUIDname => $hexstringvalue) { if (!defined($GUIDname)) { define($GUIDname, $this->GUIDtoBytestring($hexstringvalue)); } } } /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; // Shortcuts $thisfile_audio = &$info['audio']; $thisfile_video = &$info['video']; $info['asf'] = array(); $thisfile_asf = &$info['asf']; $thisfile_asf['comments'] = array(); $thisfile_asf_comments = &$thisfile_asf['comments']; $thisfile_asf['header_object'] = array(); $thisfile_asf_headerobject = &$thisfile_asf['header_object']; // ASF structure: // * Header Object [required] // * File Properties Object [required] (global file attributes) // * Stream Properties Object [required] (defines media stream & characteristics) // * Header Extension Object [required] (additional functionality) // * Content Description Object (bibliographic information) // * Script Command Object (commands for during playback) // * Marker Object (named jumped points within the file) // * Data Object [required] // * Data Packets // * Index Object // Header Object: (mandatory, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for header object - GETID3_ASF_Header_Object // Object Size QWORD 64 // size of header object, including 30 bytes of Header Object header // Number of Header Objects DWORD 32 // number of objects in header object // Reserved1 BYTE 8 // hardcoded: 0x01 // Reserved2 BYTE 8 // hardcoded: 0x02 $info['fileformat'] = 'asf'; $this->fseek($info['avdataoffset']); $HeaderObjectData = $this->fread(30); $thisfile_asf_headerobject['objectid'] = substr($HeaderObjectData, 0, 16); $thisfile_asf_headerobject['objectid_guid'] = $this->BytestringToGUID($thisfile_asf_headerobject['objectid']); if ($thisfile_asf_headerobject['objectid'] != GETID3_ASF_Header_Object) { unset($info['fileformat'], $info['asf']); return $this->error('ASF header GUID {'.$this->BytestringToGUID($thisfile_asf_headerobject['objectid']).'} does not match expected "GETID3_ASF_Header_Object" GUID {'.$this->BytestringToGUID(GETID3_ASF_Header_Object).'}'); } $thisfile_asf_headerobject['objectsize'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 16, 8)); $thisfile_asf_headerobject['headerobjects'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 24, 4)); $thisfile_asf_headerobject['reserved1'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 28, 1)); $thisfile_asf_headerobject['reserved2'] = getid3_lib::LittleEndian2Int(substr($HeaderObjectData, 29, 1)); $NextObjectOffset = $this->ftell(); $ASFHeaderData = $this->fread($thisfile_asf_headerobject['objectsize'] - 30); $offset = 0; $thisfile_asf_streambitratepropertiesobject = array(); $thisfile_asf_codeclistobject = array(); $StreamPropertiesObjectData = array(); for ($HeaderObjectsCounter = 0; $HeaderObjectsCounter < $thisfile_asf_headerobject['headerobjects']; $HeaderObjectsCounter++) { $NextObjectGUID = substr($ASFHeaderData, $offset, 16); $offset += 16; $NextObjectGUIDtext = $this->BytestringToGUID($NextObjectGUID); $NextObjectSize = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); $offset += 8; switch ($NextObjectGUID) { case GETID3_ASF_File_Properties_Object: // File Properties Object: (mandatory, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for file properties object - GETID3_ASF_File_Properties_Object // Object Size QWORD 64 // size of file properties object, including 104 bytes of File Properties Object header // File ID GUID 128 // unique ID - identical to File ID in Data Object // File Size QWORD 64 // entire file in bytes. Invalid if Broadcast Flag == 1 // Creation Date QWORD 64 // date & time of file creation. Maybe invalid if Broadcast Flag == 1 // Data Packets Count QWORD 64 // number of data packets in Data Object. Invalid if Broadcast Flag == 1 // Play Duration QWORD 64 // playtime, in 100-nanosecond units. Invalid if Broadcast Flag == 1 // Send Duration QWORD 64 // time needed to send file, in 100-nanosecond units. Players can ignore this value. Invalid if Broadcast Flag == 1 // Preroll QWORD 64 // time to buffer data before starting to play file, in 1-millisecond units. If <> 0, PlayDuration and PresentationTime have been offset by this amount // Flags DWORD 32 // // * Broadcast Flag bits 1 (0x01) // file is currently being written, some header values are invalid // * Seekable Flag bits 1 (0x02) // is file seekable // * Reserved bits 30 (0xFFFFFFFC) // reserved - set to zero // Minimum Data Packet Size DWORD 32 // in bytes. should be same as Maximum Data Packet Size. Invalid if Broadcast Flag == 1 // Maximum Data Packet Size DWORD 32 // in bytes. should be same as Minimum Data Packet Size. Invalid if Broadcast Flag == 1 // Maximum Bitrate DWORD 32 // maximum instantaneous bitrate in bits per second for entire file, including all data streams and ASF overhead // shortcut $thisfile_asf['file_properties_object'] = array(); $thisfile_asf_filepropertiesobject = &$thisfile_asf['file_properties_object']; $thisfile_asf_filepropertiesobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_filepropertiesobject['objectid'] = $NextObjectGUID; $thisfile_asf_filepropertiesobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_filepropertiesobject['objectsize'] = $NextObjectSize; $thisfile_asf_filepropertiesobject['fileid'] = substr($ASFHeaderData, $offset, 16); $offset += 16; $thisfile_asf_filepropertiesobject['fileid_guid'] = $this->BytestringToGUID($thisfile_asf_filepropertiesobject['fileid']); $thisfile_asf_filepropertiesobject['filesize'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); $offset += 8; $thisfile_asf_filepropertiesobject['creation_date'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); $thisfile_asf_filepropertiesobject['creation_date_unix'] = $this->FILETIMEtoUNIXtime($thisfile_asf_filepropertiesobject['creation_date']); $offset += 8; $thisfile_asf_filepropertiesobject['data_packets'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); $offset += 8; $thisfile_asf_filepropertiesobject['play_duration'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); $offset += 8; $thisfile_asf_filepropertiesobject['send_duration'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); $offset += 8; $thisfile_asf_filepropertiesobject['preroll'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); $offset += 8; $thisfile_asf_filepropertiesobject['flags_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; $thisfile_asf_filepropertiesobject['flags']['broadcast'] = (bool) ($thisfile_asf_filepropertiesobject['flags_raw'] & 0x0001); $thisfile_asf_filepropertiesobject['flags']['seekable'] = (bool) ($thisfile_asf_filepropertiesobject['flags_raw'] & 0x0002); $thisfile_asf_filepropertiesobject['min_packet_size'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; $thisfile_asf_filepropertiesobject['max_packet_size'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; $thisfile_asf_filepropertiesobject['max_bitrate'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; if ($thisfile_asf_filepropertiesobject['flags']['broadcast']) { // broadcast flag is set, some values invalid unset($thisfile_asf_filepropertiesobject['filesize']); unset($thisfile_asf_filepropertiesobject['data_packets']); unset($thisfile_asf_filepropertiesobject['play_duration']); unset($thisfile_asf_filepropertiesobject['send_duration']); unset($thisfile_asf_filepropertiesobject['min_packet_size']); unset($thisfile_asf_filepropertiesobject['max_packet_size']); } else { // broadcast flag NOT set, perform calculations $info['playtime_seconds'] = ($thisfile_asf_filepropertiesobject['play_duration'] / 10000000) - ($thisfile_asf_filepropertiesobject['preroll'] / 1000); //$info['bitrate'] = $thisfile_asf_filepropertiesobject['max_bitrate']; $info['bitrate'] = getid3_lib::SafeDiv($thisfile_asf_filepropertiesobject['filesize'] * 8, $info['playtime_seconds']); } break; case GETID3_ASF_Stream_Properties_Object: // Stream Properties Object: (mandatory, one per media stream) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for stream properties object - GETID3_ASF_Stream_Properties_Object // Object Size QWORD 64 // size of stream properties object, including 78 bytes of Stream Properties Object header // Stream Type GUID 128 // GETID3_ASF_Audio_Media, GETID3_ASF_Video_Media or GETID3_ASF_Command_Media // Error Correction Type GUID 128 // GETID3_ASF_Audio_Spread for audio-only streams, GETID3_ASF_No_Error_Correction for other stream types // Time Offset QWORD 64 // 100-nanosecond units. typically zero. added to all timestamps of samples in the stream // Type-Specific Data Length DWORD 32 // number of bytes for Type-Specific Data field // Error Correction Data Length DWORD 32 // number of bytes for Error Correction Data field // Flags WORD 16 // // * Stream Number bits 7 (0x007F) // number of this stream. 1 <= valid <= 127 // * Reserved bits 8 (0x7F80) // reserved - set to zero // * Encrypted Content Flag bits 1 (0x8000) // stream contents encrypted if set // Reserved DWORD 32 // reserved - set to zero // Type-Specific Data BYTESTREAM variable // type-specific format data, depending on value of Stream Type // Error Correction Data BYTESTREAM variable // error-correction-specific format data, depending on value of Error Correct Type // There is one GETID3_ASF_Stream_Properties_Object for each stream (audio, video) but the // stream number isn't known until halfway through decoding the structure, hence it // it is decoded to a temporary variable and then stuck in the appropriate index later $StreamPropertiesObjectData['offset'] = $NextObjectOffset + $offset; $StreamPropertiesObjectData['objectid'] = $NextObjectGUID; $StreamPropertiesObjectData['objectid_guid'] = $NextObjectGUIDtext; $StreamPropertiesObjectData['objectsize'] = $NextObjectSize; $StreamPropertiesObjectData['stream_type'] = substr($ASFHeaderData, $offset, 16); $offset += 16; $StreamPropertiesObjectData['stream_type_guid'] = $this->BytestringToGUID($StreamPropertiesObjectData['stream_type']); $StreamPropertiesObjectData['error_correct_type'] = substr($ASFHeaderData, $offset, 16); $offset += 16; $StreamPropertiesObjectData['error_correct_guid'] = $this->BytestringToGUID($StreamPropertiesObjectData['error_correct_type']); $StreamPropertiesObjectData['time_offset'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); $offset += 8; $StreamPropertiesObjectData['type_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; $StreamPropertiesObjectData['error_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; $StreamPropertiesObjectData['flags_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $StreamPropertiesObjectStreamNumber = $StreamPropertiesObjectData['flags_raw'] & 0x007F; $StreamPropertiesObjectData['flags']['encrypted'] = (bool) ($StreamPropertiesObjectData['flags_raw'] & 0x8000); $offset += 4; // reserved - DWORD $StreamPropertiesObjectData['type_specific_data'] = substr($ASFHeaderData, $offset, $StreamPropertiesObjectData['type_data_length']); $offset += $StreamPropertiesObjectData['type_data_length']; $StreamPropertiesObjectData['error_correct_data'] = substr($ASFHeaderData, $offset, $StreamPropertiesObjectData['error_data_length']); $offset += $StreamPropertiesObjectData['error_data_length']; switch ($StreamPropertiesObjectData['stream_type']) { case GETID3_ASF_Audio_Media: $thisfile_audio['dataformat'] = (!empty($thisfile_audio['dataformat']) ? $thisfile_audio['dataformat'] : 'asf'); $thisfile_audio['bitrate_mode'] = (!empty($thisfile_audio['bitrate_mode']) ? $thisfile_audio['bitrate_mode'] : 'cbr'); $audiodata = getid3_riff::parseWAVEFORMATex(substr($StreamPropertiesObjectData['type_specific_data'], 0, 16)); unset($audiodata['raw']); $thisfile_audio = getid3_lib::array_merge_noclobber($audiodata, $thisfile_audio); break; case GETID3_ASF_Video_Media: $thisfile_video['dataformat'] = (!empty($thisfile_video['dataformat']) ? $thisfile_video['dataformat'] : 'asf'); $thisfile_video['bitrate_mode'] = (!empty($thisfile_video['bitrate_mode']) ? $thisfile_video['bitrate_mode'] : 'cbr'); break; case GETID3_ASF_Command_Media: default: // do nothing break; } $thisfile_asf['stream_properties_object'][$StreamPropertiesObjectStreamNumber] = $StreamPropertiesObjectData; unset($StreamPropertiesObjectData); // clear for next stream, if any break; case GETID3_ASF_Header_Extension_Object: // Header Extension Object: (mandatory, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Header Extension object - GETID3_ASF_Header_Extension_Object // Object Size QWORD 64 // size of Header Extension object, including 46 bytes of Header Extension Object header // Reserved Field 1 GUID 128 // hardcoded: GETID3_ASF_Reserved_1 // Reserved Field 2 WORD 16 // hardcoded: 0x00000006 // Header Extension Data Size DWORD 32 // in bytes. valid: 0, or > 24. equals object size minus 46 // Header Extension Data BYTESTREAM variable // array of zero or more extended header objects // shortcut $thisfile_asf['header_extension_object'] = array(); $thisfile_asf_headerextensionobject = &$thisfile_asf['header_extension_object']; $thisfile_asf_headerextensionobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_headerextensionobject['objectid'] = $NextObjectGUID; $thisfile_asf_headerextensionobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_headerextensionobject['objectsize'] = $NextObjectSize; $thisfile_asf_headerextensionobject['reserved_1'] = substr($ASFHeaderData, $offset, 16); $offset += 16; $thisfile_asf_headerextensionobject['reserved_1_guid'] = $this->BytestringToGUID($thisfile_asf_headerextensionobject['reserved_1']); if ($thisfile_asf_headerextensionobject['reserved_1'] != GETID3_ASF_Reserved_1) { $this->warning('header_extension_object.reserved_1 GUID ('.$this->BytestringToGUID($thisfile_asf_headerextensionobject['reserved_1']).') does not match expected "GETID3_ASF_Reserved_1" GUID ('.$this->BytestringToGUID(GETID3_ASF_Reserved_1).')'); //return false; break; } $thisfile_asf_headerextensionobject['reserved_2'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; if ($thisfile_asf_headerextensionobject['reserved_2'] != 6) { $this->warning('header_extension_object.reserved_2 ('.$thisfile_asf_headerextensionobject['reserved_2'].') does not match expected value of "6"'); //return false; break; } $thisfile_asf_headerextensionobject['extension_data_size'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; $thisfile_asf_headerextensionobject['extension_data'] = substr($ASFHeaderData, $offset, $thisfile_asf_headerextensionobject['extension_data_size']); $unhandled_sections = 0; $thisfile_asf_headerextensionobject['extension_data_parsed'] = $this->HeaderExtensionObjectDataParse($thisfile_asf_headerextensionobject['extension_data'], $unhandled_sections); if ($unhandled_sections === 0) { unset($thisfile_asf_headerextensionobject['extension_data']); } $offset += $thisfile_asf_headerextensionobject['extension_data_size']; break; case GETID3_ASF_Codec_List_Object: // Codec List Object: (optional, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Codec List object - GETID3_ASF_Codec_List_Object // Object Size QWORD 64 // size of Codec List object, including 44 bytes of Codec List Object header // Reserved GUID 128 // hardcoded: 86D15241-311D-11D0-A3A4-00A0C90348F6 // Codec Entries Count DWORD 32 // number of entries in Codec Entries array // Codec Entries array of: variable // // * Type WORD 16 // 0x0001 = Video Codec, 0x0002 = Audio Codec, 0xFFFF = Unknown Codec // * Codec Name Length WORD 16 // number of Unicode characters stored in the Codec Name field // * Codec Name WCHAR variable // array of Unicode characters - name of codec used to create the content // * Codec Description Length WORD 16 // number of Unicode characters stored in the Codec Description field // * Codec Description WCHAR variable // array of Unicode characters - description of format used to create the content // * Codec Information Length WORD 16 // number of Unicode characters stored in the Codec Information field // * Codec Information BYTESTREAM variable // opaque array of information bytes about the codec used to create the content // shortcut $thisfile_asf['codec_list_object'] = array(); /** @var mixed[] $thisfile_asf_codeclistobject */ $thisfile_asf_codeclistobject = &$thisfile_asf['codec_list_object']; // @phpstan-ignore-line $thisfile_asf_codeclistobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_codeclistobject['objectid'] = $NextObjectGUID; $thisfile_asf_codeclistobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_codeclistobject['objectsize'] = $NextObjectSize; $thisfile_asf_codeclistobject['reserved'] = substr($ASFHeaderData, $offset, 16); $offset += 16; $thisfile_asf_codeclistobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_codeclistobject['reserved']); if ($thisfile_asf_codeclistobject['reserved'] != $this->GUIDtoBytestring('86D15241-311D-11D0-A3A4-00A0C90348F6')) { $this->warning('codec_list_object.reserved GUID {'.$this->BytestringToGUID($thisfile_asf_codeclistobject['reserved']).'} does not match expected "GETID3_ASF_Reserved_1" GUID {86D15241-311D-11D0-A3A4-00A0C90348F6}'); //return false; break; } $thisfile_asf_codeclistobject['codec_entries_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); if ($thisfile_asf_codeclistobject['codec_entries_count'] > 0) { $thisfile_asf_codeclistobject['codec_entries'] = array(); } $offset += 4; for ($CodecEntryCounter = 0; $CodecEntryCounter < $thisfile_asf_codeclistobject['codec_entries_count']; $CodecEntryCounter++) { // shortcut $thisfile_asf_codeclistobject['codec_entries'][$CodecEntryCounter] = array(); $thisfile_asf_codeclistobject_codecentries_current = &$thisfile_asf_codeclistobject['codec_entries'][$CodecEntryCounter]; $thisfile_asf_codeclistobject_codecentries_current['type_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_codeclistobject_codecentries_current['type'] = self::codecListObjectTypeLookup($thisfile_asf_codeclistobject_codecentries_current['type_raw']); $CodecNameLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2; // 2 bytes per character $offset += 2; $thisfile_asf_codeclistobject_codecentries_current['name'] = substr($ASFHeaderData, $offset, $CodecNameLength); $offset += $CodecNameLength; $CodecDescriptionLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2; // 2 bytes per character $offset += 2; $thisfile_asf_codeclistobject_codecentries_current['description'] = substr($ASFHeaderData, $offset, $CodecDescriptionLength); $offset += $CodecDescriptionLength; $CodecInformationLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_codeclistobject_codecentries_current['information'] = substr($ASFHeaderData, $offset, $CodecInformationLength); $offset += $CodecInformationLength; if ($thisfile_asf_codeclistobject_codecentries_current['type_raw'] == 2) { // audio codec if (strpos($thisfile_asf_codeclistobject_codecentries_current['description'], ',') === false) { $this->warning('[asf][codec_list_object][codec_entries]['.$CodecEntryCounter.'][description] expected to contain comma-separated list of parameters: "'.$thisfile_asf_codeclistobject_codecentries_current['description'].'"'); } else { list($AudioCodecBitrate, $AudioCodecFrequency, $AudioCodecChannels) = explode(',', $this->TrimConvert($thisfile_asf_codeclistobject_codecentries_current['description'])); $thisfile_audio['codec'] = $this->TrimConvert($thisfile_asf_codeclistobject_codecentries_current['name']); if (!isset($thisfile_audio['bitrate']) && strstr($AudioCodecBitrate, 'kbps')) { $thisfile_audio['bitrate'] = (int) trim(str_replace('kbps', '', $AudioCodecBitrate)) * 1000; } //if (!isset($thisfile_video['bitrate']) && isset($thisfile_audio['bitrate']) && isset($thisfile_asf['file_properties_object']['max_bitrate']) && ($thisfile_asf_codeclistobject['codec_entries_count'] > 1)) { if (empty($thisfile_video['bitrate']) && !empty($thisfile_audio['bitrate']) && !empty($info['bitrate'])) { //$thisfile_video['bitrate'] = $thisfile_asf['file_properties_object']['max_bitrate'] - $thisfile_audio['bitrate']; $thisfile_video['bitrate'] = $info['bitrate'] - $thisfile_audio['bitrate']; } $AudioCodecFrequency = (int) trim(str_replace('kHz', '', $AudioCodecFrequency)); switch ($AudioCodecFrequency) { case 8: case 8000: $thisfile_audio['sample_rate'] = 8000; break; case 11: case 11025: $thisfile_audio['sample_rate'] = 11025; break; case 12: case 12000: $thisfile_audio['sample_rate'] = 12000; break; case 16: case 16000: $thisfile_audio['sample_rate'] = 16000; break; case 22: case 22050: $thisfile_audio['sample_rate'] = 22050; break; case 24: case 24000: $thisfile_audio['sample_rate'] = 24000; break; case 32: case 32000: $thisfile_audio['sample_rate'] = 32000; break; case 44: case 441000: $thisfile_audio['sample_rate'] = 44100; break; case 48: case 48000: $thisfile_audio['sample_rate'] = 48000; break; default: $this->warning('unknown frequency: "'.$AudioCodecFrequency.'" ('.$this->TrimConvert($thisfile_asf_codeclistobject_codecentries_current['description']).')'); break; } if (!isset($thisfile_audio['channels'])) { if (strstr($AudioCodecChannels, 'stereo')) { $thisfile_audio['channels'] = 2; } elseif (strstr($AudioCodecChannels, 'mono')) { $thisfile_audio['channels'] = 1; } } } } } break; case GETID3_ASF_Script_Command_Object: // Script Command Object: (optional, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Script Command object - GETID3_ASF_Script_Command_Object // Object Size QWORD 64 // size of Script Command object, including 44 bytes of Script Command Object header // Reserved GUID 128 // hardcoded: 4B1ACBE3-100B-11D0-A39B-00A0C90348F6 // Commands Count WORD 16 // number of Commands structures in the Script Commands Objects // Command Types Count WORD 16 // number of Command Types structures in the Script Commands Objects // Command Types array of: variable // // * Command Type Name Length WORD 16 // number of Unicode characters for Command Type Name // * Command Type Name WCHAR variable // array of Unicode characters - name of a type of command // Commands array of: variable // // * Presentation Time DWORD 32 // presentation time of that command, in milliseconds // * Type Index WORD 16 // type of this command, as a zero-based index into the array of Command Types of this object // * Command Name Length WORD 16 // number of Unicode characters for Command Name // * Command Name WCHAR variable // array of Unicode characters - name of this command // shortcut $thisfile_asf['script_command_object'] = array(); $thisfile_asf_scriptcommandobject = &$thisfile_asf['script_command_object']; $thisfile_asf_scriptcommandobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_scriptcommandobject['objectid'] = $NextObjectGUID; $thisfile_asf_scriptcommandobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_scriptcommandobject['objectsize'] = $NextObjectSize; $thisfile_asf_scriptcommandobject['reserved'] = substr($ASFHeaderData, $offset, 16); $offset += 16; $thisfile_asf_scriptcommandobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_scriptcommandobject['reserved']); if ($thisfile_asf_scriptcommandobject['reserved'] != $this->GUIDtoBytestring('4B1ACBE3-100B-11D0-A39B-00A0C90348F6')) { $this->warning('script_command_object.reserved GUID {'.$this->BytestringToGUID($thisfile_asf_scriptcommandobject['reserved']).'} does not match expected "GETID3_ASF_Reserved_1" GUID {4B1ACBE3-100B-11D0-A39B-00A0C90348F6}'); //return false; break; } $thisfile_asf_scriptcommandobject['commands_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_scriptcommandobject['command_types_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; if ($thisfile_asf_scriptcommandobject['command_types_count'] > 0) { $thisfile_asf_scriptcommandobject['command_types'] = array(); for ($CommandTypesCounter = 0; $CommandTypesCounter < (int) $thisfile_asf_scriptcommandobject['command_types_count']; $CommandTypesCounter++) { $CommandTypeNameLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2; // 2 bytes per character $offset += 2; $thisfile_asf_scriptcommandobject['command_types'][$CommandTypesCounter] = array(); $thisfile_asf_scriptcommandobject['command_types'][$CommandTypesCounter]['name'] = substr($ASFHeaderData, $offset, $CommandTypeNameLength); $offset += $CommandTypeNameLength; } } for ($CommandsCounter = 0; $CommandsCounter < (int) $thisfile_asf_scriptcommandobject['commands_count']; $CommandsCounter++) { $thisfile_asf_scriptcommandobject['commands'][$CommandsCounter]['presentation_time'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; $thisfile_asf_scriptcommandobject['commands'][$CommandsCounter]['type_index'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $CommandTypeNameLength = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)) * 2; // 2 bytes per character $offset += 2; $thisfile_asf_scriptcommandobject['commands'][$CommandsCounter]['name'] = substr($ASFHeaderData, $offset, $CommandTypeNameLength); $offset += $CommandTypeNameLength; } break; case GETID3_ASF_Marker_Object: // Marker Object: (optional, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Marker object - GETID3_ASF_Marker_Object // Object Size QWORD 64 // size of Marker object, including 48 bytes of Marker Object header // Reserved GUID 128 // hardcoded: 4CFEDB20-75F6-11CF-9C0F-00A0C90349CB // Markers Count DWORD 32 // number of Marker structures in Marker Object // Reserved WORD 16 // hardcoded: 0x0000 // Name Length WORD 16 // number of bytes in the Name field // Name WCHAR variable // name of the Marker Object // Markers array of: variable // // * Offset QWORD 64 // byte offset into Data Object // * Presentation Time QWORD 64 // in 100-nanosecond units // * Entry Length WORD 16 // length in bytes of (Send Time + Flags + Marker Description Length + Marker Description + Padding) // * Send Time DWORD 32 // in milliseconds // * Flags DWORD 32 // hardcoded: 0x00000000 // * Marker Description Length DWORD 32 // number of bytes in Marker Description field // * Marker Description WCHAR variable // array of Unicode characters - description of marker entry // * Padding BYTESTREAM variable // optional padding bytes // shortcut $thisfile_asf['marker_object'] = array(); $thisfile_asf_markerobject = &$thisfile_asf['marker_object']; $thisfile_asf_markerobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_markerobject['objectid'] = $NextObjectGUID; $thisfile_asf_markerobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_markerobject['objectsize'] = $NextObjectSize; $thisfile_asf_markerobject['reserved'] = substr($ASFHeaderData, $offset, 16); $offset += 16; $thisfile_asf_markerobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_markerobject['reserved']); if ($thisfile_asf_markerobject['reserved'] != $this->GUIDtoBytestring('4CFEDB20-75F6-11CF-9C0F-00A0C90349CB')) { $this->warning('marker_object.reserved GUID {'.$this->BytestringToGUID($thisfile_asf_markerobject['reserved']).'} does not match expected "GETID3_ASF_Reserved_1" GUID {4CFEDB20-75F6-11CF-9C0F-00A0C90349CB}'); break; } $thisfile_asf_markerobject['markers_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); /** @var int|float|false $totalMakersCount */ $totalMakersCount = $thisfile_asf_markerobject['markers_count']; $offset += 4; $thisfile_asf_markerobject['reserved_2'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; if ($thisfile_asf_markerobject['reserved_2'] != 0) { $this->warning('marker_object.reserved_2 ('.$thisfile_asf_markerobject['reserved_2'].') does not match expected value of "0"'); break; } $thisfile_asf_markerobject['name_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_markerobject['name'] = substr($ASFHeaderData, $offset, $thisfile_asf_markerobject['name_length']); $offset += $thisfile_asf_markerobject['name_length']; for ($MarkersCounter = 0; $MarkersCounter < $totalMakersCount; $MarkersCounter++) { $thisfile_asf_markerobject['markers'][$MarkersCounter] = array(); $thisfile_asf_markerobject['markers'][$MarkersCounter]['offset'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); $offset += 8; $thisfile_asf_markerobject['markers'][$MarkersCounter]['presentation_time'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 8)); $offset += 8; $thisfile_asf_markerobject['markers'][$MarkersCounter]['entry_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_markerobject['markers'][$MarkersCounter]['send_time'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; $thisfile_asf_markerobject['markers'][$MarkersCounter]['flags'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description'] = substr($ASFHeaderData, $offset, $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length']); $offset += $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length']; $PaddingLength = $thisfile_asf_markerobject['markers'][$MarkersCounter]['entry_length'] - 4 - 4 - 4 - $thisfile_asf_markerobject['markers'][$MarkersCounter]['marker_description_length']; if ($PaddingLength > 0) { $thisfile_asf_markerobject['markers'][$MarkersCounter]['padding'] = substr($ASFHeaderData, $offset, $PaddingLength); $offset += $PaddingLength; } } break; case GETID3_ASF_Bitrate_Mutual_Exclusion_Object: // Bitrate Mutual Exclusion Object: (optional) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Bitrate Mutual Exclusion object - GETID3_ASF_Bitrate_Mutual_Exclusion_Object // Object Size QWORD 64 // size of Bitrate Mutual Exclusion object, including 42 bytes of Bitrate Mutual Exclusion Object header // Exlusion Type GUID 128 // nature of mutual exclusion relationship. one of: (GETID3_ASF_Mutex_Bitrate, GETID3_ASF_Mutex_Unknown) // Stream Numbers Count WORD 16 // number of video streams // Stream Numbers WORD variable // array of mutually exclusive video stream numbers. 1 <= valid <= 127 // shortcut $thisfile_asf['bitrate_mutual_exclusion_object'] = array(); $thisfile_asf_bitratemutualexclusionobject = &$thisfile_asf['bitrate_mutual_exclusion_object']; $thisfile_asf_bitratemutualexclusionobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_bitratemutualexclusionobject['objectid'] = $NextObjectGUID; $thisfile_asf_bitratemutualexclusionobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_bitratemutualexclusionobject['objectsize'] = $NextObjectSize; $thisfile_asf_bitratemutualexclusionobject['reserved'] = substr($ASFHeaderData, $offset, 16); $thisfile_asf_bitratemutualexclusionobject['reserved_guid'] = $this->BytestringToGUID($thisfile_asf_bitratemutualexclusionobject['reserved']); $offset += 16; if (($thisfile_asf_bitratemutualexclusionobject['reserved'] != GETID3_ASF_Mutex_Bitrate) && ($thisfile_asf_bitratemutualexclusionobject['reserved'] != GETID3_ASF_Mutex_Unknown)) { $this->warning('bitrate_mutual_exclusion_object.reserved GUID {'.$this->BytestringToGUID($thisfile_asf_bitratemutualexclusionobject['reserved']).'} does not match expected "GETID3_ASF_Mutex_Bitrate" GUID {'.$this->BytestringToGUID(GETID3_ASF_Mutex_Bitrate).'} or "GETID3_ASF_Mutex_Unknown" GUID {'.$this->BytestringToGUID(GETID3_ASF_Mutex_Unknown).'}'); //return false; break; } $thisfile_asf_bitratemutualexclusionobject['stream_numbers_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; for ($StreamNumberCounter = 0; $StreamNumberCounter < (int) $thisfile_asf_bitratemutualexclusionobject['stream_numbers_count']; $StreamNumberCounter++) { $thisfile_asf_bitratemutualexclusionobject['stream_numbers'][$StreamNumberCounter] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; } break; case GETID3_ASF_Error_Correction_Object: // Error Correction Object: (optional, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Error Correction object - GETID3_ASF_Error_Correction_Object // Object Size QWORD 64 // size of Error Correction object, including 44 bytes of Error Correction Object header // Error Correction Type GUID 128 // type of error correction. one of: (GETID3_ASF_No_Error_Correction, GETID3_ASF_Audio_Spread) // Error Correction Data Length DWORD 32 // number of bytes in Error Correction Data field // Error Correction Data BYTESTREAM variable // structure depends on value of Error Correction Type field // shortcut $thisfile_asf['error_correction_object'] = array(); $thisfile_asf_errorcorrectionobject = &$thisfile_asf['error_correction_object']; $thisfile_asf_errorcorrectionobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_errorcorrectionobject['objectid'] = $NextObjectGUID; $thisfile_asf_errorcorrectionobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_errorcorrectionobject['objectsize'] = $NextObjectSize; $thisfile_asf_errorcorrectionobject['error_correction_type'] = substr($ASFHeaderData, $offset, 16); $offset += 16; $thisfile_asf_errorcorrectionobject['error_correction_guid'] = $this->BytestringToGUID($thisfile_asf_errorcorrectionobject['error_correction_type']); $thisfile_asf_errorcorrectionobject['error_correction_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; switch ($thisfile_asf_errorcorrectionobject['error_correction_type']) { case GETID3_ASF_No_Error_Correction: // should be no data, but just in case there is, skip to the end of the field $offset += $thisfile_asf_errorcorrectionobject['error_correction_data_length']; break; case GETID3_ASF_Audio_Spread: // Field Name Field Type Size (bits) // Span BYTE 8 // number of packets over which audio will be spread. // Virtual Packet Length WORD 16 // size of largest audio payload found in audio stream // Virtual Chunk Length WORD 16 // size of largest audio payload found in audio stream // Silence Data Length WORD 16 // number of bytes in Silence Data field // Silence Data BYTESTREAM variable // hardcoded: 0x00 * (Silence Data Length) bytes $thisfile_asf_errorcorrectionobject['span'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 1)); $offset += 1; $thisfile_asf_errorcorrectionobject['virtual_packet_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_errorcorrectionobject['virtual_chunk_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_errorcorrectionobject['silence_data_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_errorcorrectionobject['silence_data'] = substr($ASFHeaderData, $offset, $thisfile_asf_errorcorrectionobject['silence_data_length']); $offset += $thisfile_asf_errorcorrectionobject['silence_data_length']; break; default: $this->warning('error_correction_object.error_correction_type GUID {'.$this->BytestringToGUID($thisfile_asf_errorcorrectionobject['error_correction_type']).'} does not match expected "GETID3_ASF_No_Error_Correction" GUID {'.$this->BytestringToGUID(GETID3_ASF_No_Error_Correction).'} or "GETID3_ASF_Audio_Spread" GUID {'.$this->BytestringToGUID(GETID3_ASF_Audio_Spread).'}'); //return false; break; } break; case GETID3_ASF_Content_Description_Object: // Content Description Object: (optional, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Content Description object - GETID3_ASF_Content_Description_Object // Object Size QWORD 64 // size of Content Description object, including 34 bytes of Content Description Object header // Title Length WORD 16 // number of bytes in Title field // Author Length WORD 16 // number of bytes in Author field // Copyright Length WORD 16 // number of bytes in Copyright field // Description Length WORD 16 // number of bytes in Description field // Rating Length WORD 16 // number of bytes in Rating field // Title WCHAR 16 // array of Unicode characters - Title // Author WCHAR 16 // array of Unicode characters - Author // Copyright WCHAR 16 // array of Unicode characters - Copyright // Description WCHAR 16 // array of Unicode characters - Description // Rating WCHAR 16 // array of Unicode characters - Rating // shortcut $thisfile_asf['content_description_object'] = array(); $thisfile_asf_contentdescriptionobject = &$thisfile_asf['content_description_object']; $thisfile_asf_contentdescriptionobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_contentdescriptionobject['objectid'] = $NextObjectGUID; $thisfile_asf_contentdescriptionobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_contentdescriptionobject['objectsize'] = $NextObjectSize; $thisfile_asf_contentdescriptionobject['title_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_contentdescriptionobject['author_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_contentdescriptionobject['copyright_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_contentdescriptionobject['description_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_contentdescriptionobject['rating_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_contentdescriptionobject['title'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['title_length']); $offset += $thisfile_asf_contentdescriptionobject['title_length']; $thisfile_asf_contentdescriptionobject['author'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['author_length']); $offset += $thisfile_asf_contentdescriptionobject['author_length']; $thisfile_asf_contentdescriptionobject['copyright'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['copyright_length']); $offset += $thisfile_asf_contentdescriptionobject['copyright_length']; $thisfile_asf_contentdescriptionobject['description'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['description_length']); $offset += $thisfile_asf_contentdescriptionobject['description_length']; $thisfile_asf_contentdescriptionobject['rating'] = substr($ASFHeaderData, $offset, $thisfile_asf_contentdescriptionobject['rating_length']); $offset += $thisfile_asf_contentdescriptionobject['rating_length']; $ASFcommentKeysToCopy = array('title'=>'title', 'author'=>'artist', 'copyright'=>'copyright', 'description'=>'comment', 'rating'=>'rating'); foreach ($ASFcommentKeysToCopy as $keytocopyfrom => $keytocopyto) { if (!empty($thisfile_asf_contentdescriptionobject[$keytocopyfrom])) { $thisfile_asf_comments[$keytocopyto][] = $this->TrimTerm($thisfile_asf_contentdescriptionobject[$keytocopyfrom]); } } break; case GETID3_ASF_Extended_Content_Description_Object: // Extended Content Description Object: (optional, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Extended Content Description object - GETID3_ASF_Extended_Content_Description_Object // Object Size QWORD 64 // size of ExtendedContent Description object, including 26 bytes of Extended Content Description Object header // Content Descriptors Count WORD 16 // number of entries in Content Descriptors list // Content Descriptors array of: variable // // * Descriptor Name Length WORD 16 // size in bytes of Descriptor Name field // * Descriptor Name WCHAR variable // array of Unicode characters - Descriptor Name // * Descriptor Value Data Type WORD 16 // Lookup array: // 0x0000 = Unicode String (variable length) // 0x0001 = BYTE array (variable length) // 0x0002 = BOOL (DWORD, 32 bits) // 0x0003 = DWORD (DWORD, 32 bits) // 0x0004 = QWORD (QWORD, 64 bits) // 0x0005 = WORD (WORD, 16 bits) // * Descriptor Value Length WORD 16 // number of bytes stored in Descriptor Value field // * Descriptor Value variable variable // value for Content Descriptor // shortcut $thisfile_asf['extended_content_description_object'] = array(); $thisfile_asf_extendedcontentdescriptionobject = &$thisfile_asf['extended_content_description_object']; $thisfile_asf_extendedcontentdescriptionobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_extendedcontentdescriptionobject['objectid'] = $NextObjectGUID; $thisfile_asf_extendedcontentdescriptionobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_extendedcontentdescriptionobject['objectsize'] = $NextObjectSize; $thisfile_asf_extendedcontentdescriptionobject['content_descriptors_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; for ($ExtendedContentDescriptorsCounter = 0; $ExtendedContentDescriptorsCounter < (int) $thisfile_asf_extendedcontentdescriptionobject['content_descriptors_count']; $ExtendedContentDescriptorsCounter++) { // shortcut $thisfile_asf_extendedcontentdescriptionobject['content_descriptors'][$ExtendedContentDescriptorsCounter] = array(); $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current = &$thisfile_asf_extendedcontentdescriptionobject['content_descriptors'][$ExtendedContentDescriptorsCounter]; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['base_offset'] = $offset + 30; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name'] = substr($ASFHeaderData, $offset, $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name_length']); $offset += $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name_length']; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_length'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'] = substr($ASFHeaderData, $offset, $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_length']); $offset += $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_length']; switch ($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type']) { case 0x0000: // Unicode string break; case 0x0001: // BYTE array // do nothing break; case 0x0002: // BOOL $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'] = (bool) getid3_lib::LittleEndian2Int($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']); break; case 0x0003: // DWORD case 0x0004: // QWORD case 0x0005: // WORD $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'] = getid3_lib::LittleEndian2Int($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']); break; default: $this->warning('extended_content_description.content_descriptors.'.$ExtendedContentDescriptorsCounter.'.value_type is invalid ('.$thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type'].')'); //return false; break; } switch ($this->TrimConvert(strtolower($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name']))) { case 'wm/albumartist': case 'artist': // Note: not 'artist', that comes from 'author' tag $thisfile_asf_comments['albumartist'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'])); break; case 'wm/albumtitle': case 'album': $thisfile_asf_comments['album'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'])); break; case 'wm/genre': case 'genre': $thisfile_asf_comments['genre'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'])); break; case 'wm/partofset': $thisfile_asf_comments['partofset'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'])); break; case 'wm/tracknumber': case 'tracknumber': // be careful casting to int: casting unicode strings to int gives unexpected results (stops parsing at first non-numeric character) $thisfile_asf_comments['track_number'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'])); foreach ($thisfile_asf_comments['track_number'] as $key => $value) { if (preg_match('/^[0-9\x00]+$/', $value)) { $thisfile_asf_comments['track_number'][$key] = intval(str_replace("\x00", '', $value)); } } break; case 'wm/track': if (empty($thisfile_asf_comments['track_number'])) { $thisfile_asf_comments['track_number'] = array(1 + (int) $this->TrimConvert($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'])); } break; case 'wm/year': case 'year': case 'date': $thisfile_asf_comments['year'] = array( $this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'])); break; case 'wm/lyrics': case 'lyrics': $thisfile_asf_comments['lyrics'] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'])); break; case 'isvbr': if ($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']) { $thisfile_audio['bitrate_mode'] = 'vbr'; $thisfile_video['bitrate_mode'] = 'vbr'; } break; case 'id3': $this->getid3->include_module('tag.id3v2'); $getid3_id3v2 = new getid3_id3v2($this->getid3); $getid3_id3v2->AnalyzeString($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']); unset($getid3_id3v2); if ($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_length'] > 1024) { $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'] = ''; } break; case 'wm/encodingtime': $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['encoding_time_unix'] = $this->FILETIMEtoUNIXtime($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']); $thisfile_asf_comments['encoding_time_unix'] = array($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['encoding_time_unix']); break; case 'wm/picture': $WMpicture = $this->ASF_WMpicture($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']); foreach ($WMpicture as $key => $value) { $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current[$key] = $value; } unset($WMpicture); /* $wm_picture_offset = 0; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_type_id'] = getid3_lib::LittleEndian2Int(substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 1)); $wm_picture_offset += 1; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_type'] = self::WMpictureTypeLookup($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_type_id']); $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_size'] = getid3_lib::LittleEndian2Int(substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 4)); $wm_picture_offset += 4; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime'] = ''; do { $next_byte_pair = substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 2); $wm_picture_offset += 2; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime'] .= $next_byte_pair; } while ($next_byte_pair !== "\x00\x00"); $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_description'] = ''; do { $next_byte_pair = substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset, 2); $wm_picture_offset += 2; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_description'] .= $next_byte_pair; } while ($next_byte_pair !== "\x00\x00"); $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['dataoffset'] = $wm_picture_offset; $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['data'] = substr($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'], $wm_picture_offset); unset($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value']); $imageinfo = array(); $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime'] = ''; $imagechunkcheck = getid3_lib::GetDataImageSize($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['data'], $imageinfo); unset($imageinfo); if (!empty($imagechunkcheck)) { $thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime'] = image_type_to_mime_type($imagechunkcheck[2]); } if (!isset($thisfile_asf_comments['picture'])) { $thisfile_asf_comments['picture'] = array(); } $thisfile_asf_comments['picture'][] = array('data'=>$thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['data'], 'image_mime'=>$thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['image_mime']); */ break; default: switch ($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value_type']) { case 0: // Unicode string if (substr($this->TrimConvert($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name']), 0, 3) == 'WM/') { $thisfile_asf_comments[str_replace('wm/', '', strtolower($this->TrimConvert($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['name'])))] = array($this->TrimTerm($thisfile_asf_extendedcontentdescriptionobject_contentdescriptor_current['value'])); } break; case 1: break; } break; } } break; case GETID3_ASF_Stream_Bitrate_Properties_Object: // Stream Bitrate Properties Object: (optional, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Stream Bitrate Properties object - GETID3_ASF_Stream_Bitrate_Properties_Object // Object Size QWORD 64 // size of Extended Content Description object, including 26 bytes of Stream Bitrate Properties Object header // Bitrate Records Count WORD 16 // number of records in Bitrate Records // Bitrate Records array of: variable // // * Flags WORD 16 // // * * Stream Number bits 7 (0x007F) // number of this stream // * * Reserved bits 9 (0xFF80) // hardcoded: 0 // * Average Bitrate DWORD 32 // in bits per second // shortcut $thisfile_asf['stream_bitrate_properties_object'] = array(); $thisfile_asf_streambitratepropertiesobject = &$thisfile_asf['stream_bitrate_properties_object']; $thisfile_asf_streambitratepropertiesobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_streambitratepropertiesobject['objectid'] = $NextObjectGUID; $thisfile_asf_streambitratepropertiesobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_streambitratepropertiesobject['objectsize'] = $NextObjectSize; $thisfile_asf_streambitratepropertiesobject['bitrate_records_count'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; for ($BitrateRecordsCounter = 0; $BitrateRecordsCounter < (int) $thisfile_asf_streambitratepropertiesobject['bitrate_records_count']; $BitrateRecordsCounter++) { $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter] = array(); $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter]['flags_raw'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 2)); $offset += 2; $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter]['flags']['stream_number'] = $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter]['flags_raw'] & 0x007F; $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter]['bitrate'] = getid3_lib::LittleEndian2Int(substr($ASFHeaderData, $offset, 4)); $offset += 4; } break; case GETID3_ASF_Padding_Object: // Padding Object: (optional) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Padding object - GETID3_ASF_Padding_Object // Object Size QWORD 64 // size of Padding object, including 24 bytes of ASF Padding Object header // Padding Data BYTESTREAM variable // ignore // shortcut $thisfile_asf['padding_object'] = array(); $thisfile_asf_paddingobject = &$thisfile_asf['padding_object']; $thisfile_asf_paddingobject['offset'] = $NextObjectOffset + $offset; $thisfile_asf_paddingobject['objectid'] = $NextObjectGUID; $thisfile_asf_paddingobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_paddingobject['objectsize'] = $NextObjectSize; $thisfile_asf_paddingobject['padding_length'] = $thisfile_asf_paddingobject['objectsize'] - 16 - 8; $thisfile_asf_paddingobject['padding'] = substr($ASFHeaderData, $offset, $thisfile_asf_paddingobject['padding_length']); $offset += ($NextObjectSize - 16 - 8); break; case GETID3_ASF_Extended_Content_Encryption_Object: case GETID3_ASF_Content_Encryption_Object: // WMA DRM - just ignore $offset += ($NextObjectSize - 16 - 8); break; default: // Implementations shall ignore any standard or non-standard object that they do not know how to handle. if ($this->GUIDname($NextObjectGUIDtext)) { $this->warning('unhandled GUID "'.$this->GUIDname($NextObjectGUIDtext).'" {'.$NextObjectGUIDtext.'} in ASF header at offset '.($offset - 16 - 8)); } else { $this->warning('unknown GUID {'.$NextObjectGUIDtext.'} in ASF header at offset '.($offset - 16 - 8)); } $offset += ($NextObjectSize - 16 - 8); break; } } if (isset($thisfile_asf_streambitratepropertiesobject['bitrate_records_count'])) { $ASFbitrateAudio = 0; $ASFbitrateVideo = 0; for ($BitrateRecordsCounter = 0; $BitrateRecordsCounter < (int) $thisfile_asf_streambitratepropertiesobject['bitrate_records_count']; $BitrateRecordsCounter++) { if (isset($thisfile_asf_codeclistobject['codec_entries'][$BitrateRecordsCounter])) { switch ($thisfile_asf_codeclistobject['codec_entries'][$BitrateRecordsCounter]['type_raw']) { case 1: $ASFbitrateVideo += $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter]['bitrate']; break; case 2: $ASFbitrateAudio += $thisfile_asf_streambitratepropertiesobject['bitrate_records'][$BitrateRecordsCounter]['bitrate']; break; default: // do nothing break; } } } if ($ASFbitrateAudio > 0) { $thisfile_audio['bitrate'] = $ASFbitrateAudio; } if ($ASFbitrateVideo > 0) { $thisfile_video['bitrate'] = $ASFbitrateVideo; } } if (isset($thisfile_asf['stream_properties_object'])) { $thisfile_audio['bitrate'] = 0; $thisfile_video['bitrate'] = 0; foreach ($thisfile_asf['stream_properties_object'] as $streamnumber => $streamdata) { switch ($streamdata['stream_type']) { case GETID3_ASF_Audio_Media: // Field Name Field Type Size (bits) // Codec ID / Format Tag WORD 16 // unique ID of audio codec - defined as wFormatTag field of WAVEFORMATEX structure // Number of Channels WORD 16 // number of channels of audio - defined as nChannels field of WAVEFORMATEX structure // Samples Per Second DWORD 32 // in Hertz - defined as nSamplesPerSec field of WAVEFORMATEX structure // Average number of Bytes/sec DWORD 32 // bytes/sec of audio stream - defined as nAvgBytesPerSec field of WAVEFORMATEX structure // Block Alignment WORD 16 // block size in bytes of audio codec - defined as nBlockAlign field of WAVEFORMATEX structure // Bits per sample WORD 16 // bits per sample of mono data. set to zero for variable bitrate codecs. defined as wBitsPerSample field of WAVEFORMATEX structure // Codec Specific Data Size WORD 16 // size in bytes of Codec Specific Data buffer - defined as cbSize field of WAVEFORMATEX structure // Codec Specific Data BYTESTREAM variable // array of codec-specific data bytes // shortcut $thisfile_asf['audio_media'][$streamnumber] = array(); $thisfile_asf_audiomedia_currentstream = &$thisfile_asf['audio_media'][$streamnumber]; $audiomediaoffset = 0; $thisfile_asf_audiomedia_currentstream = getid3_riff::parseWAVEFORMATex(substr($streamdata['type_specific_data'], $audiomediaoffset, 16)); $audiomediaoffset += 16; $thisfile_audio['lossless'] = false; switch ($thisfile_asf_audiomedia_currentstream['raw']['wFormatTag']) { case 0x0001: // PCM case 0x0163: // WMA9 Lossless $thisfile_audio['lossless'] = true; break; } if (!empty($thisfile_asf['stream_bitrate_properties_object']['bitrate_records'])) { // @phpstan-ignore-line foreach ($thisfile_asf['stream_bitrate_properties_object']['bitrate_records'] as $dummy => $dataarray) { // @phpstan-ignore-line if (isset($dataarray['flags']['stream_number']) && ($dataarray['flags']['stream_number'] == $streamnumber)) { $thisfile_asf_audiomedia_currentstream['bitrate'] = $dataarray['bitrate']; $thisfile_audio['bitrate'] += $dataarray['bitrate']; break; } } } else { if (!empty($thisfile_asf_audiomedia_currentstream['bytes_sec'])) { $thisfile_audio['bitrate'] += $thisfile_asf_audiomedia_currentstream['bytes_sec'] * 8; } elseif (!empty($thisfile_asf_audiomedia_currentstream['bitrate'])) { $thisfile_audio['bitrate'] += $thisfile_asf_audiomedia_currentstream['bitrate']; } } $thisfile_audio['streams'][$streamnumber] = $thisfile_asf_audiomedia_currentstream; $thisfile_audio['streams'][$streamnumber]['wformattag'] = $thisfile_asf_audiomedia_currentstream['raw']['wFormatTag']; $thisfile_audio['streams'][$streamnumber]['lossless'] = $thisfile_audio['lossless']; $thisfile_audio['streams'][$streamnumber]['bitrate'] = $thisfile_audio['bitrate']; $thisfile_audio['streams'][$streamnumber]['dataformat'] = 'wma'; unset($thisfile_audio['streams'][$streamnumber]['raw']); $thisfile_asf_audiomedia_currentstream['codec_data_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $audiomediaoffset, 2)); $audiomediaoffset += 2; $thisfile_asf_audiomedia_currentstream['codec_data'] = substr($streamdata['type_specific_data'], $audiomediaoffset, $thisfile_asf_audiomedia_currentstream['codec_data_size']); $audiomediaoffset += $thisfile_asf_audiomedia_currentstream['codec_data_size']; break; case GETID3_ASF_Video_Media: // Field Name Field Type Size (bits) // Encoded Image Width DWORD 32 // width of image in pixels // Encoded Image Height DWORD 32 // height of image in pixels // Reserved Flags BYTE 8 // hardcoded: 0x02 // Format Data Size WORD 16 // size of Format Data field in bytes // Format Data array of: variable // // * Format Data Size DWORD 32 // number of bytes in Format Data field, in bytes - defined as biSize field of BITMAPINFOHEADER structure // * Image Width LONG 32 // width of encoded image in pixels - defined as biWidth field of BITMAPINFOHEADER structure // * Image Height LONG 32 // height of encoded image in pixels - defined as biHeight field of BITMAPINFOHEADER structure // * Reserved WORD 16 // hardcoded: 0x0001 - defined as biPlanes field of BITMAPINFOHEADER structure // * Bits Per Pixel Count WORD 16 // bits per pixel - defined as biBitCount field of BITMAPINFOHEADER structure // * Compression ID FOURCC 32 // fourcc of video codec - defined as biCompression field of BITMAPINFOHEADER structure // * Image Size DWORD 32 // image size in bytes - defined as biSizeImage field of BITMAPINFOHEADER structure // * Horizontal Pixels / Meter DWORD 32 // horizontal resolution of target device in pixels per meter - defined as biXPelsPerMeter field of BITMAPINFOHEADER structure // * Vertical Pixels / Meter DWORD 32 // vertical resolution of target device in pixels per meter - defined as biYPelsPerMeter field of BITMAPINFOHEADER structure // * Colors Used Count DWORD 32 // number of color indexes in the color table that are actually used - defined as biClrUsed field of BITMAPINFOHEADER structure // * Important Colors Count DWORD 32 // number of color index required for displaying bitmap. if zero, all colors are required. defined as biClrImportant field of BITMAPINFOHEADER structure // * Codec Specific Data BYTESTREAM variable // array of codec-specific data bytes // shortcut $thisfile_asf['video_media'][$streamnumber] = array(); $thisfile_asf_videomedia_currentstream = &$thisfile_asf['video_media'][$streamnumber]; $videomediaoffset = 0; $thisfile_asf_videomedia_currentstream['image_width'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4)); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['image_height'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4)); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['flags'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 1)); $videomediaoffset += 1; $thisfile_asf_videomedia_currentstream['format_data_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 2)); $videomediaoffset += 2; $thisfile_asf_videomedia_currentstream['format_data']['format_data_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4)); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['format_data']['image_width'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4)); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['format_data']['image_height'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4)); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['format_data']['reserved'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 2)); $videomediaoffset += 2; $thisfile_asf_videomedia_currentstream['format_data']['bits_per_pixel'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 2)); $videomediaoffset += 2; $thisfile_asf_videomedia_currentstream['format_data']['codec_fourcc'] = substr($streamdata['type_specific_data'], $videomediaoffset, 4); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['format_data']['image_size'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4)); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['format_data']['horizontal_pels'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4)); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['format_data']['vertical_pels'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4)); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['format_data']['colors_used'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4)); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['format_data']['colors_important'] = getid3_lib::LittleEndian2Int(substr($streamdata['type_specific_data'], $videomediaoffset, 4)); $videomediaoffset += 4; $thisfile_asf_videomedia_currentstream['format_data']['codec_data'] = substr($streamdata['type_specific_data'], $videomediaoffset); if (!empty($thisfile_asf['stream_bitrate_properties_object']['bitrate_records'])) { // @phpstan-ignore-line foreach ($thisfile_asf['stream_bitrate_properties_object']['bitrate_records'] as $dummy => $dataarray) { // @phpstan-ignore-line if (isset($dataarray['flags']['stream_number']) && ($dataarray['flags']['stream_number'] == $streamnumber)) { $thisfile_asf_videomedia_currentstream['bitrate'] = $dataarray['bitrate']; $thisfile_video['streams'][$streamnumber]['bitrate'] = $dataarray['bitrate']; $thisfile_video['bitrate'] += $dataarray['bitrate']; break; } } } $thisfile_asf_videomedia_currentstream['format_data']['codec'] = getid3_riff::fourccLookup($thisfile_asf_videomedia_currentstream['format_data']['codec_fourcc']); $thisfile_video['streams'][$streamnumber]['fourcc'] = $thisfile_asf_videomedia_currentstream['format_data']['codec_fourcc']; $thisfile_video['streams'][$streamnumber]['codec'] = $thisfile_asf_videomedia_currentstream['format_data']['codec']; $thisfile_video['streams'][$streamnumber]['resolution_x'] = $thisfile_asf_videomedia_currentstream['image_width']; $thisfile_video['streams'][$streamnumber]['resolution_y'] = $thisfile_asf_videomedia_currentstream['image_height']; $thisfile_video['streams'][$streamnumber]['bits_per_sample'] = $thisfile_asf_videomedia_currentstream['format_data']['bits_per_pixel']; break; default: break; } } } while ($this->ftell() < $info['avdataend']) { $NextObjectDataHeader = $this->fread(24); $offset = 0; $NextObjectGUID = substr($NextObjectDataHeader, 0, 16); $offset += 16; $NextObjectGUIDtext = $this->BytestringToGUID($NextObjectGUID); $NextObjectSize = getid3_lib::LittleEndian2Int(substr($NextObjectDataHeader, $offset, 8)); $offset += 8; switch ($NextObjectGUID) { case GETID3_ASF_Data_Object: // Data Object: (mandatory, one only) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Data object - GETID3_ASF_Data_Object // Object Size QWORD 64 // size of Data object, including 50 bytes of Data Object header. may be 0 if FilePropertiesObject.BroadcastFlag == 1 // File ID GUID 128 // unique identifier. identical to File ID field in Header Object // Total Data Packets QWORD 64 // number of Data Packet entries in Data Object. invalid if FilePropertiesObject.BroadcastFlag == 1 // Reserved WORD 16 // hardcoded: 0x0101 // shortcut $thisfile_asf['data_object'] = array(); $thisfile_asf_dataobject = &$thisfile_asf['data_object']; $DataObjectData = $NextObjectDataHeader.$this->fread(50 - 24); $offset = 24; $thisfile_asf_dataobject['objectid'] = $NextObjectGUID; $thisfile_asf_dataobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_dataobject['objectsize'] = $NextObjectSize; $thisfile_asf_dataobject['fileid'] = substr($DataObjectData, $offset, 16); $offset += 16; $thisfile_asf_dataobject['fileid_guid'] = $this->BytestringToGUID($thisfile_asf_dataobject['fileid']); $thisfile_asf_dataobject['total_data_packets'] = getid3_lib::LittleEndian2Int(substr($DataObjectData, $offset, 8)); $offset += 8; $thisfile_asf_dataobject['reserved'] = getid3_lib::LittleEndian2Int(substr($DataObjectData, $offset, 2)); $offset += 2; if ($thisfile_asf_dataobject['reserved'] != 0x0101) { $this->warning('data_object.reserved (0x'.sprintf('%04X', $thisfile_asf_dataobject['reserved']).') does not match expected value of "0x0101"'); //return false; break; } // Data Packets array of: variable // // * Error Correction Flags BYTE 8 // // * * Error Correction Data Length bits 4 // if Error Correction Length Type == 00, size of Error Correction Data in bytes, else hardcoded: 0000 // * * Opaque Data Present bits 1 // // * * Error Correction Length Type bits 2 // number of bits for size of the error correction data. hardcoded: 00 // * * Error Correction Present bits 1 // If set, use Opaque Data Packet structure, else use Payload structure // * Error Correction Data $info['avdataoffset'] = $this->ftell(); $this->fseek(($thisfile_asf_dataobject['objectsize'] - 50), SEEK_CUR); // skip actual audio/video data $info['avdataend'] = $this->ftell(); break; case GETID3_ASF_Simple_Index_Object: // Simple Index Object: (optional, recommended, one per video stream) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for Simple Index object - GETID3_ASF_Data_Object // Object Size QWORD 64 // size of Simple Index object, including 56 bytes of Simple Index Object header // File ID GUID 128 // unique identifier. may be zero or identical to File ID field in Data Object and Header Object // Index Entry Time Interval QWORD 64 // interval between index entries in 100-nanosecond units // Maximum Packet Count DWORD 32 // maximum packet count for all index entries // Index Entries Count DWORD 32 // number of Index Entries structures // Index Entries array of: variable // // * Packet Number DWORD 32 // number of the Data Packet associated with this index entry // * Packet Count WORD 16 // number of Data Packets to sent at this index entry // shortcut $thisfile_asf['simple_index_object'] = array(); $thisfile_asf_simpleindexobject = &$thisfile_asf['simple_index_object']; $SimpleIndexObjectData = $NextObjectDataHeader.$this->fread(56 - 24); $offset = 24; $thisfile_asf_simpleindexobject['objectid'] = $NextObjectGUID; $thisfile_asf_simpleindexobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_simpleindexobject['objectsize'] = $NextObjectSize; $thisfile_asf_simpleindexobject['fileid'] = substr($SimpleIndexObjectData, $offset, 16); $offset += 16; $thisfile_asf_simpleindexobject['fileid_guid'] = $this->BytestringToGUID($thisfile_asf_simpleindexobject['fileid']); $thisfile_asf_simpleindexobject['index_entry_time_interval'] = getid3_lib::LittleEndian2Int(substr($SimpleIndexObjectData, $offset, 8)); $offset += 8; $thisfile_asf_simpleindexobject['maximum_packet_count'] = getid3_lib::LittleEndian2Int(substr($SimpleIndexObjectData, $offset, 4)); $offset += 4; $thisfile_asf_simpleindexobject['index_entries_count'] = getid3_lib::LittleEndian2Int(substr($SimpleIndexObjectData, $offset, 4)); /** @var int|float|false $totalIndexEntriesCount */ $totalIndexEntriesCount = $thisfile_asf_simpleindexobject['index_entries_count']; $offset += 4; $IndexEntriesData = $SimpleIndexObjectData.$this->fread(6 * $totalIndexEntriesCount); for ($IndexEntriesCounter = 0; $IndexEntriesCounter < $totalIndexEntriesCount; $IndexEntriesCounter++) { $thisfile_asf_simpleindexobject['index_entries'][$IndexEntriesCounter] = array(); $thisfile_asf_simpleindexobject['index_entries'][$IndexEntriesCounter]['packet_number'] = getid3_lib::LittleEndian2Int(substr($IndexEntriesData, $offset, 4)); $offset += 4; $thisfile_asf_simpleindexobject['index_entries'][$IndexEntriesCounter]['packet_count'] = getid3_lib::LittleEndian2Int(substr($IndexEntriesData, $offset, 4)); $offset += 2; } break; case GETID3_ASF_Index_Object: // 6.2 ASF top-level Index Object (optional but recommended when appropriate, 0 or 1) // Field Name Field Type Size (bits) // Object ID GUID 128 // GUID for the Index Object - GETID3_ASF_Index_Object // Object Size QWORD 64 // Specifies the size, in bytes, of the Index Object, including at least 34 bytes of Index Object header // Index Entry Time Interval DWORD 32 // Specifies the time interval between each index entry in ms. // Index Specifiers Count WORD 16 // Specifies the number of Index Specifiers structures in this Index Object. // Index Blocks Count DWORD 32 // Specifies the number of Index Blocks structures in this Index Object. // Index Entry Time Interval DWORD 32 // Specifies the time interval between index entries in milliseconds. This value cannot be 0. // Index Specifiers Count WORD 16 // Specifies the number of entries in the Index Specifiers list. Valid values are 1 and greater. // Index Specifiers array of: varies // // * Stream Number WORD 16 // Specifies the stream number that the Index Specifiers refer to. Valid values are between 1 and 127. // * Index Type WORD 16 // Specifies Index Type values as follows: // 1 = Nearest Past Data Packet - indexes point to the data packet whose presentation time is closest to the index entry time. // 2 = Nearest Past Media Object - indexes point to the closest data packet containing an entire object or first fragment of an object. // 3 = Nearest Past Cleanpoint. - indexes point to the closest data packet containing an entire object (or first fragment of an object) that has the Cleanpoint Flag set. // Nearest Past Cleanpoint is the most common type of index. // Index Entry Count DWORD 32 // Specifies the number of Index Entries in the block. // * Block Positions QWORD varies // Specifies a list of byte offsets of the beginnings of the blocks relative to the beginning of the first Data Packet (i.e., the beginning of the Data Object + 50 bytes). The number of entries in this list is specified by the value of the Index Specifiers Count field. The order of those byte offsets is tied to the order in which Index Specifiers are listed. // * Index Entries array of: varies // // * * Offsets DWORD varies // An offset value of 0xffffffff indicates an invalid offset value // shortcut $thisfile_asf['asf_index_object'] = array(); $thisfile_asf_asfindexobject = &$thisfile_asf['asf_index_object']; $ASFIndexObjectData = $NextObjectDataHeader.$this->fread(34 - 24); $offset = 24; $thisfile_asf_asfindexobject['objectid'] = $NextObjectGUID; $thisfile_asf_asfindexobject['objectid_guid'] = $NextObjectGUIDtext; $thisfile_asf_asfindexobject['objectsize'] = $NextObjectSize; $thisfile_asf_asfindexobject['entry_time_interval'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4)); $offset += 4; $thisfile_asf_asfindexobject['index_specifiers_count'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 2)); $offset += 2; $thisfile_asf_asfindexobject['index_blocks_count'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4)); $offset += 4; $ASFIndexObjectData .= $this->fread(4 * $thisfile_asf_asfindexobject['index_specifiers_count']); for ($IndexSpecifiersCounter = 0; $IndexSpecifiersCounter < (int) $thisfile_asf_asfindexobject['index_specifiers_count']; $IndexSpecifiersCounter++) { $IndexSpecifierStreamNumber = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 2)); $offset += 2; $thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter] = array(); $thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['stream_number'] = $IndexSpecifierStreamNumber; $thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['index_type'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 2)); $offset += 2; $thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['index_type_text'] = $this->ASFIndexObjectIndexTypeLookup($thisfile_asf_asfindexobject['index_specifiers'][$IndexSpecifiersCounter]['index_type']); } $ASFIndexObjectData .= $this->fread(4); $thisfile_asf_asfindexobject['index_entry_count'] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4)); /** @var int|float|false $totalIndexEntryCount */ $totalIndexEntryCount = $thisfile_asf_asfindexobject['index_entry_count']; $offset += 4; $ASFIndexObjectData .= $this->fread(8 * $thisfile_asf_asfindexobject['index_specifiers_count']); for ($IndexSpecifiersCounter = 0; $IndexSpecifiersCounter < (int) $thisfile_asf_asfindexobject['index_specifiers_count']; $IndexSpecifiersCounter++) { $thisfile_asf_asfindexobject['block_positions'][$IndexSpecifiersCounter] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 8)); $offset += 8; } $ASFIndexObjectData .= $this->fread(4 * $thisfile_asf_asfindexobject['index_specifiers_count'] * $thisfile_asf_asfindexobject['index_entry_count']); for ($IndexEntryCounter = 0; $IndexEntryCounter < $totalIndexEntryCount; $IndexEntryCounter++) { for ($IndexSpecifiersCounter = 0; $IndexSpecifiersCounter < (int) $thisfile_asf_asfindexobject['index_specifiers_count']; $IndexSpecifiersCounter++) { $thisfile_asf_asfindexobject['offsets'][$IndexSpecifiersCounter][$IndexEntryCounter] = getid3_lib::LittleEndian2Int(substr($ASFIndexObjectData, $offset, 4)); $offset += 4; } } break; default: // Implementations shall ignore any standard or non-standard object that they do not know how to handle. if ($this->GUIDname($NextObjectGUIDtext)) { $this->warning('unhandled GUID "'.$this->GUIDname($NextObjectGUIDtext).'" {'.$NextObjectGUIDtext.'} in ASF body at offset '.($offset - 16 - 8)); } else { $this->warning('unknown GUID {'.$NextObjectGUIDtext.'} in ASF body at offset '.($this->ftell() - 16 - 8)); } $this->fseek(($NextObjectSize - 16 - 8), SEEK_CUR); break; } } if (isset($thisfile_asf_codeclistobject['codec_entries']) && is_array($thisfile_asf_codeclistobject['codec_entries'])) { foreach ($thisfile_asf_codeclistobject['codec_entries'] as $streamnumber => $streamdata) { switch ($streamdata['information']) { case 'WMV1': case 'WMV2': case 'WMV3': case 'MSS1': case 'MSS2': case 'WMVA': case 'WVC1': case 'WMVP': case 'WVP2': $thisfile_video['dataformat'] = 'wmv'; $info['mime_type'] = 'video/x-ms-wmv'; break; case 'MP42': case 'MP43': case 'MP4S': case 'mp4s': $thisfile_video['dataformat'] = 'asf'; $info['mime_type'] = 'video/x-ms-asf'; break; default: switch ($streamdata['type_raw']) { case 1: if (strstr($this->TrimConvert($streamdata['name']), 'Windows Media')) { $thisfile_video['dataformat'] = 'wmv'; if ($info['mime_type'] == 'video/x-ms-asf') { $info['mime_type'] = 'video/x-ms-wmv'; } } break; case 2: if (strstr($this->TrimConvert($streamdata['name']), 'Windows Media')) { $thisfile_audio['dataformat'] = 'wma'; if ($info['mime_type'] == 'video/x-ms-asf') { $info['mime_type'] = 'audio/x-ms-wma'; } } break; } break; } } } switch (isset($thisfile_audio['codec']) ? $thisfile_audio['codec'] : '') { case 'MPEG Layer-3': $thisfile_audio['dataformat'] = 'mp3'; break; default: break; } if (isset($thisfile_asf_codeclistobject['codec_entries'])) { foreach ($thisfile_asf_codeclistobject['codec_entries'] as $streamnumber => $streamdata) { switch ($streamdata['type_raw']) { case 1: // video $thisfile_video['encoder'] = $this->TrimConvert($thisfile_asf_codeclistobject['codec_entries'][$streamnumber]['name']); break; case 2: // audio $thisfile_audio['encoder'] = $this->TrimConvert($thisfile_asf_codeclistobject['codec_entries'][$streamnumber]['name']); // AH 2003-10-01 $thisfile_audio['encoder_options'] = $this->TrimConvert($thisfile_asf_codeclistobject['codec_entries'][0]['description']); $thisfile_audio['codec'] = $thisfile_audio['encoder']; break; default: $this->warning('Unknown streamtype: [codec_list_object][codec_entries]['.$streamnumber.'][type_raw] == '.$streamdata['type_raw']); break; } } } if (isset($info['audio'])) { $thisfile_audio['lossless'] = (isset($thisfile_audio['lossless']) ? $thisfile_audio['lossless'] : false); $thisfile_audio['dataformat'] = (!empty($thisfile_audio['dataformat']) ? $thisfile_audio['dataformat'] : 'asf'); } if (!empty($thisfile_video['dataformat'])) { $thisfile_video['lossless'] = (isset($thisfile_audio['lossless']) ? $thisfile_audio['lossless'] : false); $thisfile_video['pixel_aspect_ratio'] = (isset($thisfile_audio['pixel_aspect_ratio']) ? $thisfile_audio['pixel_aspect_ratio'] : (float) 1); $thisfile_video['dataformat'] = (!empty($thisfile_video['dataformat']) ? $thisfile_video['dataformat'] : 'asf'); } if (!empty($thisfile_video['streams'])) { $thisfile_video['resolution_x'] = 0; $thisfile_video['resolution_y'] = 0; foreach ($thisfile_video['streams'] as $key => $valuearray) { if (($valuearray['resolution_x'] > $thisfile_video['resolution_x']) || ($valuearray['resolution_y'] > $thisfile_video['resolution_y'])) { $thisfile_video['resolution_x'] = $valuearray['resolution_x']; $thisfile_video['resolution_y'] = $valuearray['resolution_y']; } } } $info['bitrate'] = 0 + (isset($thisfile_audio['bitrate']) ? $thisfile_audio['bitrate'] : 0) + (isset($thisfile_video['bitrate']) ? $thisfile_video['bitrate'] : 0); if ((!isset($info['playtime_seconds']) || ($info['playtime_seconds'] <= 0)) && ($info['bitrate'] > 0)) { $info['playtime_seconds'] = ($info['filesize'] - $info['avdataoffset']) / ($info['bitrate'] / 8); } return true; } /** * @param int $CodecListType * * @return string */ public static function codecListObjectTypeLookup($CodecListType) { static $lookup = array( 0x0001 => 'Video Codec', 0x0002 => 'Audio Codec', 0xFFFF => 'Unknown Codec' ); return (isset($lookup[$CodecListType]) ? $lookup[$CodecListType] : 'Invalid Codec Type'); } /** * @return array */ public static function KnownGUIDs() { static $GUIDarray = array( 'GETID3_ASF_Extended_Stream_Properties_Object' => '14E6A5CB-C672-4332-8399-A96952065B5A', 'GETID3_ASF_Padding_Object' => '1806D474-CADF-4509-A4BA-9AABCB96AAE8', 'GETID3_ASF_Payload_Ext_Syst_Pixel_Aspect_Ratio' => '1B1EE554-F9EA-4BC8-821A-376B74E4C4B8', 'GETID3_ASF_Script_Command_Object' => '1EFB1A30-0B62-11D0-A39B-00A0C90348F6', 'GETID3_ASF_No_Error_Correction' => '20FB5700-5B55-11CF-A8FD-00805F5C442B', 'GETID3_ASF_Content_Branding_Object' => '2211B3FA-BD23-11D2-B4B7-00A0C955FC6E', 'GETID3_ASF_Content_Encryption_Object' => '2211B3FB-BD23-11D2-B4B7-00A0C955FC6E', 'GETID3_ASF_Digital_Signature_Object' => '2211B3FC-BD23-11D2-B4B7-00A0C955FC6E', 'GETID3_ASF_Extended_Content_Encryption_Object' => '298AE614-2622-4C17-B935-DAE07EE9289C', 'GETID3_ASF_Simple_Index_Object' => '33000890-E5B1-11CF-89F4-00A0C90349CB', 'GETID3_ASF_Degradable_JPEG_Media' => '35907DE0-E415-11CF-A917-00805F5C442B', 'GETID3_ASF_Payload_Extension_System_Timecode' => '399595EC-8667-4E2D-8FDB-98814CE76C1E', 'GETID3_ASF_Binary_Media' => '3AFB65E2-47EF-40F2-AC2C-70A90D71D343', 'GETID3_ASF_Timecode_Index_Object' => '3CB73FD0-0C4A-4803-953D-EDF7B6228F0C', 'GETID3_ASF_Metadata_Library_Object' => '44231C94-9498-49D1-A141-1D134E457054', 'GETID3_ASF_Reserved_3' => '4B1ACBE3-100B-11D0-A39B-00A0C90348F6', 'GETID3_ASF_Reserved_4' => '4CFEDB20-75F6-11CF-9C0F-00A0C90349CB', 'GETID3_ASF_Command_Media' => '59DACFC0-59E6-11D0-A3AC-00A0C90348F6', 'GETID3_ASF_Header_Extension_Object' => '5FBF03B5-A92E-11CF-8EE3-00C00C205365', 'GETID3_ASF_Media_Object_Index_Parameters_Obj' => '6B203BAD-3F11-4E84-ACA8-D7613DE2CFA7', 'GETID3_ASF_Header_Object' => '75B22630-668E-11CF-A6D9-00AA0062CE6C', 'GETID3_ASF_Content_Description_Object' => '75B22633-668E-11CF-A6D9-00AA0062CE6C', 'GETID3_ASF_Error_Correction_Object' => '75B22635-668E-11CF-A6D9-00AA0062CE6C', 'GETID3_ASF_Data_Object' => '75B22636-668E-11CF-A6D9-00AA0062CE6C', 'GETID3_ASF_Web_Stream_Media_Subtype' => '776257D4-C627-41CB-8F81-7AC7FF1C40CC', 'GETID3_ASF_Stream_Bitrate_Properties_Object' => '7BF875CE-468D-11D1-8D82-006097C9A2B2', 'GETID3_ASF_Language_List_Object' => '7C4346A9-EFE0-4BFC-B229-393EDE415C85', 'GETID3_ASF_Codec_List_Object' => '86D15240-311D-11D0-A3A4-00A0C90348F6', 'GETID3_ASF_Reserved_2' => '86D15241-311D-11D0-A3A4-00A0C90348F6', 'GETID3_ASF_File_Properties_Object' => '8CABDCA1-A947-11CF-8EE4-00C00C205365', 'GETID3_ASF_File_Transfer_Media' => '91BD222C-F21C-497A-8B6D-5AA86BFC0185', 'GETID3_ASF_Old_RTP_Extension_Data' => '96800C63-4C94-11D1-837B-0080C7A37F95', 'GETID3_ASF_Advanced_Mutual_Exclusion_Object' => 'A08649CF-4775-4670-8A16-6E35357566CD', 'GETID3_ASF_Bandwidth_Sharing_Object' => 'A69609E6-517B-11D2-B6AF-00C04FD908E9', 'GETID3_ASF_Reserved_1' => 'ABD3D211-A9BA-11cf-8EE6-00C00C205365', 'GETID3_ASF_Bandwidth_Sharing_Exclusive' => 'AF6060AA-5197-11D2-B6AF-00C04FD908E9', 'GETID3_ASF_Bandwidth_Sharing_Partial' => 'AF6060AB-5197-11D2-B6AF-00C04FD908E9', 'GETID3_ASF_JFIF_Media' => 'B61BE100-5B4E-11CF-A8FD-00805F5C442B', 'GETID3_ASF_Stream_Properties_Object' => 'B7DC0791-A9B7-11CF-8EE6-00C00C205365', 'GETID3_ASF_Video_Media' => 'BC19EFC0-5B4D-11CF-A8FD-00805F5C442B', 'GETID3_ASF_Audio_Spread' => 'BFC3CD50-618F-11CF-8BB2-00AA00B4E220', 'GETID3_ASF_Metadata_Object' => 'C5F8CBEA-5BAF-4877-8467-AA8C44FA4CCA', 'GETID3_ASF_Payload_Ext_Syst_Sample_Duration' => 'C6BD9450-867F-4907-83A3-C77921B733AD', 'GETID3_ASF_Group_Mutual_Exclusion_Object' => 'D1465A40-5A79-4338-B71B-E36B8FD6C249', 'GETID3_ASF_Extended_Content_Description_Object' => 'D2D0A440-E307-11D2-97F0-00A0C95EA850', 'GETID3_ASF_Stream_Prioritization_Object' => 'D4FED15B-88D3-454F-81F0-ED5C45999E24', 'GETID3_ASF_Payload_Ext_System_Content_Type' => 'D590DC20-07BC-436C-9CF7-F3BBFBF1A4DC', 'GETID3_ASF_Old_File_Properties_Object' => 'D6E229D0-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_ASF_Header_Object' => 'D6E229D1-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_ASF_Data_Object' => 'D6E229D2-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Index_Object' => 'D6E229D3-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Stream_Properties_Object' => 'D6E229D4-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Content_Description_Object' => 'D6E229D5-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Script_Command_Object' => 'D6E229D6-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Marker_Object' => 'D6E229D7-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Component_Download_Object' => 'D6E229D8-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Stream_Group_Object' => 'D6E229D9-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Scalable_Object' => 'D6E229DA-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Prioritization_Object' => 'D6E229DB-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Bitrate_Mutual_Exclusion_Object' => 'D6E229DC-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Inter_Media_Dependency_Object' => 'D6E229DD-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Rating_Object' => 'D6E229DE-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Index_Parameters_Object' => 'D6E229DF-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Color_Table_Object' => 'D6E229E0-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Language_List_Object' => 'D6E229E1-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Audio_Media' => 'D6E229E2-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Video_Media' => 'D6E229E3-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Image_Media' => 'D6E229E4-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Timecode_Media' => 'D6E229E5-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Text_Media' => 'D6E229E6-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_MIDI_Media' => 'D6E229E7-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Command_Media' => 'D6E229E8-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_No_Error_Concealment' => 'D6E229EA-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Scrambled_Audio' => 'D6E229EB-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_No_Color_Table' => 'D6E229EC-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_SMPTE_Time' => 'D6E229ED-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_ASCII_Text' => 'D6E229EE-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Unicode_Text' => 'D6E229EF-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_HTML_Text' => 'D6E229F0-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_URL_Command' => 'D6E229F1-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Filename_Command' => 'D6E229F2-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_ACM_Codec' => 'D6E229F3-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_VCM_Codec' => 'D6E229F4-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_QuickTime_Codec' => 'D6E229F5-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_DirectShow_Transform_Filter' => 'D6E229F6-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_DirectShow_Rendering_Filter' => 'D6E229F7-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_No_Enhancement' => 'D6E229F8-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Unknown_Enhancement_Type' => 'D6E229F9-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Temporal_Enhancement' => 'D6E229FA-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Spatial_Enhancement' => 'D6E229FB-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Quality_Enhancement' => 'D6E229FC-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Number_of_Channels_Enhancement' => 'D6E229FD-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Frequency_Response_Enhancement' => 'D6E229FE-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Media_Object' => 'D6E229FF-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Mutex_Language' => 'D6E22A00-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Mutex_Bitrate' => 'D6E22A01-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Mutex_Unknown' => 'D6E22A02-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_ASF_Placeholder_Object' => 'D6E22A0E-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Old_Data_Unit_Extension_Object' => 'D6E22A0F-35DA-11D1-9034-00A0C90349BE', 'GETID3_ASF_Web_Stream_Format' => 'DA1E6B13-8359-4050-B398-388E965BF00C', 'GETID3_ASF_Payload_Ext_System_File_Name' => 'E165EC0E-19ED-45D7-B4A7-25CBD1E28E9B', 'GETID3_ASF_Marker_Object' => 'F487CD01-A951-11CF-8EE6-00C00C205365', 'GETID3_ASF_Timecode_Index_Parameters_Object' => 'F55E496D-9797-4B5D-8C8B-604DFE9BFB24', 'GETID3_ASF_Audio_Media' => 'F8699E40-5B4D-11CF-A8FD-00805F5C442B', 'GETID3_ASF_Media_Object_Index_Object' => 'FEB103F8-12AD-4C64-840F-2A1D2F7AD48C', 'GETID3_ASF_Alt_Extended_Content_Encryption_Obj' => 'FF889EF1-ADEE-40DA-9E71-98704BB928CE', 'GETID3_ASF_Index_Placeholder_Object' => 'D9AADE20-7C17-4F9C-BC28-8555DD98E2A2', // https://metacpan.org/dist/Audio-WMA/source/WMA.pm 'GETID3_ASF_Compatibility_Object' => '26F18B5D-4584-47EC-9F5F-0E651F0452C9', // https://metacpan.org/dist/Audio-WMA/source/WMA.pm 'GETID3_ASF_Media_Object_Index_Parameters_Object'=> '6B203BAD-3F11-48E4-ACA8-D7613DE2CFA7', ); return $GUIDarray; } /** * @param string $GUIDstring * * @return string|false */ public static function GUIDname($GUIDstring) { static $GUIDarray = array(); if (empty($GUIDarray)) { $GUIDarray = self::KnownGUIDs(); } return array_search($GUIDstring, $GUIDarray); } /** * @param int $id * * @return string */ public static function ASFIndexObjectIndexTypeLookup($id) { static $ASFIndexObjectIndexTypeLookup = array(); if (empty($ASFIndexObjectIndexTypeLookup)) { $ASFIndexObjectIndexTypeLookup[1] = 'Nearest Past Data Packet'; $ASFIndexObjectIndexTypeLookup[2] = 'Nearest Past Media Object'; $ASFIndexObjectIndexTypeLookup[3] = 'Nearest Past Cleanpoint'; } return (isset($ASFIndexObjectIndexTypeLookup[$id]) ? $ASFIndexObjectIndexTypeLookup[$id] : 'invalid'); } /** * @param string $GUIDstring * * @return string */ public static function GUIDtoBytestring($GUIDstring) { // Microsoft defines these 16-byte (128-bit) GUIDs in the strangest way: // first 4 bytes are in little-endian order // next 2 bytes are appended in little-endian order // next 2 bytes are appended in little-endian order // next 2 bytes are appended in big-endian order // next 6 bytes are appended in big-endian order // AaBbCcDd-EeFf-GgHh-IiJj-KkLlMmNnOoPp is stored as this 16-byte string: // $Dd $Cc $Bb $Aa $Ff $Ee $Hh $Gg $Ii $Jj $Kk $Ll $Mm $Nn $Oo $Pp $hexbytecharstring = chr(hexdec(substr($GUIDstring, 6, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 4, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 2, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 0, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 11, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 9, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 16, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 14, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 19, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 21, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 24, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 26, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 28, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 30, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 32, 2))); $hexbytecharstring .= chr(hexdec(substr($GUIDstring, 34, 2))); return $hexbytecharstring; } /** * @param string $Bytestring * * @return string */ public static function BytestringToGUID($Bytestring) { $GUIDstring = str_pad(dechex(ord($Bytestring[3])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[2])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[1])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[0])), 2, '0', STR_PAD_LEFT); $GUIDstring .= '-'; $GUIDstring .= str_pad(dechex(ord($Bytestring[5])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[4])), 2, '0', STR_PAD_LEFT); $GUIDstring .= '-'; $GUIDstring .= str_pad(dechex(ord($Bytestring[7])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[6])), 2, '0', STR_PAD_LEFT); $GUIDstring .= '-'; $GUIDstring .= str_pad(dechex(ord($Bytestring[8])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[9])), 2, '0', STR_PAD_LEFT); $GUIDstring .= '-'; $GUIDstring .= str_pad(dechex(ord($Bytestring[10])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[11])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[12])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[13])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[14])), 2, '0', STR_PAD_LEFT); $GUIDstring .= str_pad(dechex(ord($Bytestring[15])), 2, '0', STR_PAD_LEFT); return strtoupper($GUIDstring); } /** * @param int $FILETIME * @param bool $round * * @return float|int */ public static function FILETIMEtoUNIXtime($FILETIME, $round=true) { // FILETIME is a 64-bit unsigned integer representing // the number of 100-nanosecond intervals since January 1, 1601 // UNIX timestamp is number of seconds since January 1, 1970 // 116444736000000000 = 10000000 * 60 * 60 * 24 * 365 * 369 + 89 leap days if ($round) { return intval(round(($FILETIME - 116444736000000000) / 10000000)); } return ($FILETIME - 116444736000000000) / 10000000; } /** * @param int $WMpictureType * * @return string */ public static function WMpictureTypeLookup($WMpictureType) { static $lookup = null; if ($lookup === null) { $lookup = array( 0x03 => 'Front Cover', 0x04 => 'Back Cover', 0x00 => 'User Defined', 0x05 => 'Leaflet Page', 0x06 => 'Media Label', 0x07 => 'Lead Artist', 0x08 => 'Artist', 0x09 => 'Conductor', 0x0A => 'Band', 0x0B => 'Composer', 0x0C => 'Lyricist', 0x0D => 'Recording Location', 0x0E => 'During Recording', 0x0F => 'During Performance', 0x10 => 'Video Screen Capture', 0x12 => 'Illustration', 0x13 => 'Band Logotype', 0x14 => 'Publisher Logotype' ); $lookup = array_map(function($str) { return getid3_lib::iconv_fallback('UTF-8', 'UTF-16LE', $str); }, $lookup); } return (isset($lookup[$WMpictureType]) ? $lookup[$WMpictureType] : ''); } /** * @param string $asf_header_extension_object_data * @param int $unhandled_sections * * @return array */ public function HeaderExtensionObjectDataParse(&$asf_header_extension_object_data, &$unhandled_sections) { // https://web.archive.org/web/20140419205228/http://msdn.microsoft.com/en-us/library/bb643323.aspx $offset = 0; $objectOffset = 0; $HeaderExtensionObjectParsed = array(); while ($objectOffset < strlen($asf_header_extension_object_data)) { $offset = $objectOffset; $thisObject = array(); $thisObject['guid'] = substr($asf_header_extension_object_data, $offset, 16); $offset += 16; $thisObject['guid_text'] = $this->BytestringToGUID($thisObject['guid']); $thisObject['guid_name'] = $this->GUIDname($thisObject['guid_text']); $thisObject['size'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 8)); $offset += 8; if ($thisObject['size'] <= 0) { break; } switch ($thisObject['guid']) { case GETID3_ASF_Extended_Stream_Properties_Object: $thisObject['start_time'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 8)); $offset += 8; $thisObject['start_time_unix'] = $this->FILETIMEtoUNIXtime($thisObject['start_time']); $thisObject['end_time'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 8)); $offset += 8; $thisObject['end_time_unix'] = $this->FILETIMEtoUNIXtime($thisObject['end_time']); $thisObject['data_bitrate'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['buffer_size'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['initial_buffer_fullness'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['alternate_data_bitrate'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['alternate_buffer_size'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['alternate_initial_buffer_fullness'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['maximum_object_size'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['flags_raw'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['flags']['reliable'] = (bool) $thisObject['flags_raw'] & 0x00000001; $thisObject['flags']['seekable'] = (bool) $thisObject['flags_raw'] & 0x00000002; $thisObject['flags']['no_cleanpoints'] = (bool) $thisObject['flags_raw'] & 0x00000004; $thisObject['flags']['resend_live_cleanpoints'] = (bool) $thisObject['flags_raw'] & 0x00000008; $thisObject['stream_number'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $thisObject['stream_language_id_index'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $thisObject['average_time_per_frame'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 8)); $offset += 8; $thisObject['stream_name_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $thisObject['payload_extension_system_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; for ($i = 0; $i < $thisObject['stream_name_count']; $i++) { $streamName = array(); $streamName['language_id_index'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $streamName['stream_name_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $streamName['stream_name'] = substr($asf_header_extension_object_data, $offset, $streamName['stream_name_length']); $offset += $streamName['stream_name_length']; $thisObject['stream_names'][$i] = $streamName; } for ($i = 0; $i < $thisObject['payload_extension_system_count']; $i++) { $payloadExtensionSystem = array(); $payloadExtensionSystem['extension_system_id'] = substr($asf_header_extension_object_data, $offset, 16); $offset += 16; $payloadExtensionSystem['extension_system_id_text'] = $this->BytestringToGUID($payloadExtensionSystem['extension_system_id']); $payloadExtensionSystem['extension_system_size'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; if ($payloadExtensionSystem['extension_system_size'] <= 0) { break 2; } $payloadExtensionSystem['extension_system_info_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $payloadExtensionSystem['extension_system_info'] = substr($asf_header_extension_object_data, $offset, $payloadExtensionSystem['extension_system_info_length']); $offset += $payloadExtensionSystem['extension_system_info_length']; $thisObject['payload_extension_systems'][$i] = $payloadExtensionSystem; } break; case GETID3_ASF_Advanced_Mutual_Exclusion_Object: $thisObject['exclusion_type'] = substr($asf_header_extension_object_data, $offset, 16); $offset += 16; $thisObject['exclusion_type_text'] = $this->BytestringToGUID($thisObject['exclusion_type']); $thisObject['stream_numbers_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; for ($i = 0; $i < $thisObject['stream_numbers_count']; $i++) { $thisObject['stream_numbers'][$i] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; } break; case GETID3_ASF_Stream_Prioritization_Object: $thisObject['priority_records_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; for ($i = 0; $i < $thisObject['priority_records_count']; $i++) { $priorityRecord = array(); $priorityRecord['stream_number'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $priorityRecord['flags_raw'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $priorityRecord['flags']['mandatory'] = (bool) $priorityRecord['flags_raw'] & 0x00000001; $thisObject['priority_records'][$i] = $priorityRecord; } break; case GETID3_ASF_Padding_Object: // padding, skip it break; case GETID3_ASF_Metadata_Object: $thisObject['description_record_counts'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; for ($i = 0; $i < $thisObject['description_record_counts']; $i++) { $descriptionRecord = array(); $descriptionRecord['reserved_1'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); // must be zero $offset += 2; $descriptionRecord['stream_number'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $descriptionRecord['name_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $descriptionRecord['data_type'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $descriptionRecord['data_type_text'] = self::metadataLibraryObjectDataTypeLookup($descriptionRecord['data_type']); $descriptionRecord['data_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $descriptionRecord['name'] = substr($asf_header_extension_object_data, $offset, $descriptionRecord['name_length']); $offset += $descriptionRecord['name_length']; $descriptionRecord['data'] = substr($asf_header_extension_object_data, $offset, $descriptionRecord['data_length']); $offset += $descriptionRecord['data_length']; switch ($descriptionRecord['data_type']) { case 0x0000: // Unicode string break; case 0x0001: // BYTE array // do nothing break; case 0x0002: // BOOL $descriptionRecord['data'] = (bool) getid3_lib::LittleEndian2Int($descriptionRecord['data']); break; case 0x0003: // DWORD case 0x0004: // QWORD case 0x0005: // WORD $descriptionRecord['data'] = getid3_lib::LittleEndian2Int($descriptionRecord['data']); break; case 0x0006: // GUID $descriptionRecord['data_text'] = $this->BytestringToGUID($descriptionRecord['data']); break; } $thisObject['description_record'][$i] = $descriptionRecord; } break; case GETID3_ASF_Language_List_Object: $thisObject['language_id_record_counts'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; for ($i = 0; $i < $thisObject['language_id_record_counts']; $i++) { $languageIDrecord = array(); $languageIDrecord['language_id_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 1)); $offset += 1; $languageIDrecord['language_id'] = substr($asf_header_extension_object_data, $offset, $languageIDrecord['language_id_length']); $offset += $languageIDrecord['language_id_length']; $thisObject['language_id_record'][$i] = $languageIDrecord; } break; case GETID3_ASF_Metadata_Library_Object: $thisObject['description_records_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; for ($i = 0; $i < $thisObject['description_records_count']; $i++) { $descriptionRecord = array(); $descriptionRecord['language_list_index'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $descriptionRecord['stream_number'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $descriptionRecord['name_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $descriptionRecord['data_type'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $descriptionRecord['data_type_text'] = self::metadataLibraryObjectDataTypeLookup($descriptionRecord['data_type']); $descriptionRecord['data_length'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $descriptionRecord['name'] = substr($asf_header_extension_object_data, $offset, $descriptionRecord['name_length']); $offset += $descriptionRecord['name_length']; $descriptionRecord['data'] = substr($asf_header_extension_object_data, $offset, $descriptionRecord['data_length']); $offset += $descriptionRecord['data_length']; if (preg_match('#^WM/Picture$#', str_replace("\x00", '', trim($descriptionRecord['name'])))) { $WMpicture = $this->ASF_WMpicture($descriptionRecord['data']); foreach ($WMpicture as $key => $value) { $descriptionRecord['data'] = $WMpicture; } unset($WMpicture); } $thisObject['description_record'][$i] = $descriptionRecord; } break; case GETID3_ASF_Index_Parameters_Object: $thisObject['index_entry_time_interval'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['index_specifiers_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; for ($i = 0; $i < $thisObject['index_specifiers_count']; $i++) { $indexSpecifier = array(); $indexSpecifier['stream_number'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $indexSpecifier['index_type'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $indexSpecifier['index_type_text'] = isset(static::$ASFIndexParametersObjectIndexSpecifiersIndexTypes[$indexSpecifier['index_type']]) ? static::$ASFIndexParametersObjectIndexSpecifiersIndexTypes[$indexSpecifier['index_type']] : 'invalid' ; $thisObject['index_specifiers'][$i] = $indexSpecifier; } break; case GETID3_ASF_Media_Object_Index_Parameters_Object: $thisObject['index_entry_count_interval'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['index_specifiers_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; for ($i = 0; $i < $thisObject['index_specifiers_count']; $i++) { $indexSpecifier = array(); $indexSpecifier['stream_number'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $indexSpecifier['index_type'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $indexSpecifier['index_type_text'] = isset(static::$ASFMediaObjectIndexParametersObjectIndexSpecifiersIndexTypes[$indexSpecifier['index_type']]) ? static::$ASFMediaObjectIndexParametersObjectIndexSpecifiersIndexTypes[$indexSpecifier['index_type']] : 'invalid' ; $thisObject['index_specifiers'][$i] = $indexSpecifier; } break; case GETID3_ASF_Timecode_Index_Parameters_Object: // 4.11 Timecode Index Parameters Object (mandatory only if TIMECODE index is present in file, 0 or 1) // Field name Field type Size (bits) // Object ID GUID 128 // GUID for the Timecode Index Parameters Object - ASF_Timecode_Index_Parameters_Object // Object Size QWORD 64 // Specifies the size, in bytes, of the Timecode Index Parameters Object. Valid values are at least 34 bytes. // Index Entry Count Interval DWORD 32 // This value is ignored for the Timecode Index Parameters Object. // Index Specifiers Count WORD 16 // Specifies the number of entries in the Index Specifiers list. Valid values are 1 and greater. // Index Specifiers array of: varies // // * Stream Number WORD 16 // Specifies the stream number that the Index Specifiers refer to. Valid values are between 1 and 127. // * Index Type WORD 16 // Specifies the type of index. Values are defined as follows (1 is not a valid value): // 2 = Nearest Past Media Object - indexes point to the closest data packet containing an entire video frame or the first fragment of a video frame // 3 = Nearest Past Cleanpoint - indexes point to the closest data packet containing an entire video frame (or first fragment of a video frame) that is a key frame. // Nearest Past Media Object is the most common value $thisObject['index_entry_count_interval'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 4)); $offset += 4; $thisObject['index_specifiers_count'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; for ($i = 0; $i < $thisObject['index_specifiers_count']; $i++) { $indexSpecifier = array(); $indexSpecifier['stream_number'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $indexSpecifier['index_type'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 2)); $offset += 2; $indexSpecifier['index_type_text'] = isset(static::$ASFTimecodeIndexParametersObjectIndexSpecifiersIndexTypes[$indexSpecifier['index_type']]) ? static::$ASFTimecodeIndexParametersObjectIndexSpecifiersIndexTypes[$indexSpecifier['index_type']] : 'invalid' ; $thisObject['index_specifiers'][$i] = $indexSpecifier; } break; case GETID3_ASF_Compatibility_Object: $thisObject['profile'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 1)); $offset += 1; $thisObject['mode'] = getid3_lib::LittleEndian2Int(substr($asf_header_extension_object_data, $offset, 1)); $offset += 1; break; default: $unhandled_sections++; if ($this->GUIDname($thisObject['guid_text'])) { $this->warning('unhandled Header Extension Object GUID "'.$this->GUIDname($thisObject['guid_text']).'" {'.$thisObject['guid_text'].'} at offset '.($offset - 16 - 8)); } else { $this->warning('unknown Header Extension Object GUID {'.$thisObject['guid_text'].'} in at offset '.($offset - 16 - 8)); } break; } $HeaderExtensionObjectParsed[] = $thisObject; $objectOffset += $thisObject['size']; } return $HeaderExtensionObjectParsed; } /** * @param int $id * * @return string */ public static function metadataLibraryObjectDataTypeLookup($id) { static $lookup = array( 0x0000 => 'Unicode string', // The data consists of a sequence of Unicode characters 0x0001 => 'BYTE array', // The type of the data is implementation-specific 0x0002 => 'BOOL', // The data is 2 bytes long and should be interpreted as a 16-bit unsigned integer. Only 0x0000 or 0x0001 are permitted values 0x0003 => 'DWORD', // The data is 4 bytes long and should be interpreted as a 32-bit unsigned integer 0x0004 => 'QWORD', // The data is 8 bytes long and should be interpreted as a 64-bit unsigned integer 0x0005 => 'WORD', // The data is 2 bytes long and should be interpreted as a 16-bit unsigned integer 0x0006 => 'GUID', // The data is 16 bytes long and should be interpreted as a 128-bit GUID ); return (isset($lookup[$id]) ? $lookup[$id] : 'invalid'); } /** * @param string $data * * @return array */ public function ASF_WMpicture(&$data) { //typedef struct _WMPicture{ // LPWSTR pwszMIMEType; // BYTE bPictureType; // LPWSTR pwszDescription; // DWORD dwDataLen; // BYTE* pbData; //} WM_PICTURE; $WMpicture = array(); $offset = 0; $WMpicture['image_type_id'] = getid3_lib::LittleEndian2Int(substr($data, $offset, 1)); $offset += 1; $WMpicture['image_type'] = self::WMpictureTypeLookup($WMpicture['image_type_id']); $WMpicture['image_size'] = getid3_lib::LittleEndian2Int(substr($data, $offset, 4)); $offset += 4; $WMpicture['image_mime'] = ''; do { $next_byte_pair = substr($data, $offset, 2); $offset += 2; $WMpicture['image_mime'] .= $next_byte_pair; } while ($next_byte_pair !== "\x00\x00"); $WMpicture['image_description'] = ''; do { $next_byte_pair = substr($data, $offset, 2); $offset += 2; $WMpicture['image_description'] .= $next_byte_pair; } while ($next_byte_pair !== "\x00\x00"); $WMpicture['dataoffset'] = $offset; $WMpicture['data'] = substr($data, $offset); $imageinfo = array(); $WMpicture['image_mime'] = ''; $imagechunkcheck = getid3_lib::GetDataImageSize($WMpicture['data'], $imageinfo); unset($imageinfo); if (!empty($imagechunkcheck)) { $WMpicture['image_mime'] = image_type_to_mime_type($imagechunkcheck[2]); } if (!isset($this->getid3->info['asf']['comments']['picture'])) { $this->getid3->info['asf']['comments']['picture'] = array(); } $this->getid3->info['asf']['comments']['picture'][] = array('data'=>$WMpicture['data'], 'image_mime'=>$WMpicture['image_mime']); return $WMpicture; } /** * Remove terminator 00 00 and convert UTF-16LE to Latin-1. * * @param string $string * * @return string */ public static function TrimConvert($string) { return trim(getid3_lib::iconv_fallback('UTF-16LE', 'ISO-8859-1', self::TrimTerm($string)), ' '); } /** * Remove terminator 00 00. * * @param string $string * * @return string */ public static function TrimTerm($string) { // remove terminator, only if present (it should be, but...) if (substr($string, -2) === "\x00\x00") { $string = substr($string, 0, -2); } return $string; } } license.txt000064400000002564152233444720006744 0ustar00///////////////////////////////////////////////////////////////// /// getID3() by James Heinrich // // available at http://getid3.sourceforge.net // // or https://www.getid3.org // // also https://github.com/JamesHeinrich/getID3 // ///////////////////////////////////////////////////////////////// ***************************************************************** ***************************************************************** getID3() is released under multiple licenses. You may choose from the following licenses, and use getID3 according to the terms of the license most suitable to your project. GNU GPL: https://gnu.org/licenses/gpl.html (v3) https://gnu.org/licenses/old-licenses/gpl-2.0.html (v2) https://gnu.org/licenses/old-licenses/gpl-1.0.html (v1) GNU LGPL: https://gnu.org/licenses/lgpl.html (v3) Mozilla MPL: https://www.mozilla.org/MPL/2.0/ (v2) getID3 Commercial License: https://www.getid3.org/#gCL (no longer available, existing licenses remain valid) ***************************************************************** ***************************************************************** Copies of each of the above licenses are included in the 'licenses' directory of the getID3 distribution. module.audio-video.riff.php000064400000421523152233444720011710 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio-video.riff.php // // module for analyzing RIFF files // // multiple formats supported by this module: // // Wave, AVI, AIFF/AIFC, (MP3,AC3)/RIFF, Wavpack v3, 8SVX // // dependencies: module.audio.mp3.php // // module.audio.ac3.php // // module.audio.dts.php // // /// ///////////////////////////////////////////////////////////////// /** * @todo Parse AC-3/DTS audio inside WAVE correctly * @todo Rewrite RIFF parser totally */ if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.mp3.php', __FILE__, true); getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.ac3.php', __FILE__, true); getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.dts.php', __FILE__, true); class getid3_riff extends getid3_handler { protected $container = 'riff'; // default /** * @return bool * * @throws getid3_exception */ public function Analyze() { $info = &$this->getid3->info; // initialize these values to an empty array, otherwise they default to NULL // and you can't append array values to a NULL value $info['riff'] = array('raw'=>array()); // Shortcuts $thisfile_riff = &$info['riff']; $thisfile_riff_raw = &$thisfile_riff['raw']; $thisfile_audio = &$info['audio']; $thisfile_video = &$info['video']; $thisfile_audio_dataformat = &$thisfile_audio['dataformat']; $thisfile_riff_audio = &$thisfile_riff['audio']; $thisfile_riff_video = &$thisfile_riff['video']; $thisfile_riff_WAVE = array(); $Original = array(); $Original['avdataoffset'] = $info['avdataoffset']; $Original['avdataend'] = $info['avdataend']; $this->fseek($info['avdataoffset']); $RIFFheader = $this->fread(12); $offset = $this->ftell(); $RIFFtype = substr($RIFFheader, 0, 4); $RIFFsize = substr($RIFFheader, 4, 4); $RIFFsubtype = substr($RIFFheader, 8, 4); if ($RIFFsize == "\x00\x00\x00\x00") { // https://github.com/JamesHeinrich/getID3/issues/468 // may occur in streaming files where the data size is unknown $thisfile_riff['header_size'] = $info['avdataend'] - 8; $this->warning('RIFF size field is empty, assuming the correct value is filesize-8 ('.$thisfile_riff['header_size'].')'); } else { $thisfile_riff['header_size'] = $this->EitherEndian2Int($RIFFsize); } switch ($RIFFtype) { case 'FORM': // AIFF, AIFC //$info['fileformat'] = 'aiff'; $this->container = 'aiff'; $thisfile_riff[$RIFFsubtype] = $this->ParseRIFF($offset, ($offset + $thisfile_riff['header_size'] - 4)); break; case 'RIFF': // AVI, WAV, etc case 'SDSS': // SDSS is identical to RIFF, just renamed. Used by SmartSound QuickTracks (www.smartsound.com) case 'RMP3': // RMP3 is identical to RIFF, just renamed. Used by [unknown program] when creating RIFF-MP3s //$info['fileformat'] = 'riff'; $this->container = 'riff'; if ($RIFFsubtype == 'RMP3') { // RMP3 is identical to WAVE, just renamed. Used by [unknown program] when creating RIFF-MP3s $RIFFsubtype = 'WAVE'; } if ($RIFFsubtype != 'AMV ') { // AMV files are RIFF-AVI files with parts of the spec deliberately broken, such as chunk size fields hardcoded to zero (because players known in hardware that these fields are always a certain size // Handled separately in ParseRIFFAMV() $thisfile_riff[$RIFFsubtype] = $this->ParseRIFF($offset, ($offset + $thisfile_riff['header_size'] - 4)); } if (($info['avdataend'] - $info['filesize']) == 1) { // LiteWave appears to incorrectly *not* pad actual output file // to nearest WORD boundary so may appear to be short by one // byte, in which case - skip warning $info['avdataend'] = $info['filesize']; } $nextRIFFoffset = (int) $Original['avdataoffset'] + 8 + (int) $thisfile_riff['header_size']; // 8 = "RIFF" + 32-bit offset while ($nextRIFFoffset < min($info['filesize'], $info['avdataend'])) { try { $this->fseek($nextRIFFoffset); } catch (getid3_exception $e) { if ($e->getCode() == 10) { //$this->warning('RIFF parser: '.$e->getMessage()); $this->error('AVI extends beyond '.round(PHP_INT_MAX / 1073741824).'GB and PHP filesystem functions cannot read that far, playtime may be wrong'); $this->warning('[avdataend] value may be incorrect, multiple AVIX chunks may be present'); break; } else { throw $e; } } $nextRIFFheader = $this->fread(12); if ($nextRIFFoffset == ($info['avdataend'] - 1)) { if (substr($nextRIFFheader, 0, 1) == "\x00") { // RIFF padded to WORD boundary, we're actually already at the end break; } } $nextRIFFheaderID = substr($nextRIFFheader, 0, 4); $nextRIFFsize = $this->EitherEndian2Int(substr($nextRIFFheader, 4, 4)); $nextRIFFtype = substr($nextRIFFheader, 8, 4); $chunkdata = array(); $chunkdata['offset'] = $nextRIFFoffset + 8; $chunkdata['size'] = $nextRIFFsize; $nextRIFFoffset = $chunkdata['offset'] + $chunkdata['size']; switch ($nextRIFFheaderID) { case 'RIFF': $chunkdata['chunks'] = $this->ParseRIFF($chunkdata['offset'] + 4, $nextRIFFoffset); if (!isset($thisfile_riff[$nextRIFFtype])) { $thisfile_riff[$nextRIFFtype] = array(); } $thisfile_riff[$nextRIFFtype][] = $chunkdata; break; case 'AMV ': unset($info['riff']); $info['amv'] = $this->ParseRIFFAMV($chunkdata['offset'] + 4, $nextRIFFoffset); break; case 'JUNK': // ignore $thisfile_riff[$nextRIFFheaderID][] = $chunkdata; break; case 'IDVX': $info['divxtag']['comments'] = self::ParseDIVXTAG($this->fread($chunkdata['size'])); break; default: if ($info['filesize'] == ($chunkdata['offset'] - 8 + 128)) { $DIVXTAG = $nextRIFFheader.$this->fread(128 - 12); if (substr($DIVXTAG, -7) == 'DIVXTAG') { // DIVXTAG is supposed to be inside an IDVX chunk in a LIST chunk, but some bad encoders just slap it on the end of a file $this->warning('Found wrongly-structured DIVXTAG at offset '.($this->ftell() - 128).', parsing anyway'); $info['divxtag']['comments'] = self::ParseDIVXTAG($DIVXTAG); break 2; } } $this->warning('Expecting "RIFF|JUNK|IDVX" at '.$nextRIFFoffset.', found "'.$nextRIFFheaderID.'" ('.getid3_lib::PrintHexBytes($nextRIFFheaderID).') - skipping rest of file'); break 2; } } if ($RIFFsubtype == 'WAVE') { $thisfile_riff_WAVE = &$thisfile_riff['WAVE']; } break; default: $this->error('Cannot parse RIFF (this is maybe not a RIFF / WAV / AVI file?) - expecting "FORM|RIFF|SDSS|RMP3" found "'.$RIFFsubtype.'" instead'); //unset($info['fileformat']); return false; } $streamindex = 0; switch ($RIFFsubtype) { // http://en.wikipedia.org/wiki/Wav case 'WAVE': $info['fileformat'] = 'wav'; if (empty($thisfile_audio['bitrate_mode'])) { $thisfile_audio['bitrate_mode'] = 'cbr'; } if (empty($thisfile_audio_dataformat)) { $thisfile_audio_dataformat = 'wav'; } if (isset($thisfile_riff_WAVE['data'][0]['offset'])) { $info['avdataoffset'] = $thisfile_riff_WAVE['data'][0]['offset'] + 8; $info['avdataend'] = $info['avdataoffset'] + $thisfile_riff_WAVE['data'][0]['size']; } if (isset($thisfile_riff_WAVE['fmt '][0]['data'])) { $thisfile_riff_audio[$streamindex] = self::parseWAVEFORMATex($thisfile_riff_WAVE['fmt '][0]['data']); $thisfile_audio['wformattag'] = $thisfile_riff_audio[$streamindex]['raw']['wFormatTag']; if (!isset($thisfile_riff_audio[$streamindex]['bitrate']) || ($thisfile_riff_audio[$streamindex]['bitrate'] == 0)) { $this->error('Corrupt RIFF file: bitrate_audio == zero'); return false; } $thisfile_riff_raw['fmt '] = $thisfile_riff_audio[$streamindex]['raw']; unset($thisfile_riff_audio[$streamindex]['raw']); $thisfile_audio['streams'][$streamindex] = $thisfile_riff_audio[$streamindex]; $thisfile_audio = (array) getid3_lib::array_merge_noclobber($thisfile_audio, $thisfile_riff_audio[$streamindex]); if (substr($thisfile_audio['codec'], 0, strlen('unknown: 0x')) == 'unknown: 0x') { $this->warning('Audio codec = '.$thisfile_audio['codec']); } $thisfile_audio['bitrate'] = $thisfile_riff_audio[$streamindex]['bitrate']; if (empty($info['playtime_seconds'])) { // may already be set (e.g. DTS-WAV) $info['playtime_seconds'] = (float)getid3_lib::SafeDiv(($info['avdataend'] - $info['avdataoffset']) * 8, $thisfile_audio['bitrate']); } $thisfile_audio['lossless'] = false; if (isset($thisfile_riff_WAVE['data'][0]['offset']) && isset($thisfile_riff_raw['fmt ']['wFormatTag'])) { switch ($thisfile_riff_raw['fmt ']['wFormatTag']) { case 0x0001: // PCM $thisfile_audio['lossless'] = true; break; case 0x2000: // AC-3 $thisfile_audio_dataformat = 'ac3'; break; default: // do nothing break; } } $thisfile_audio['streams'][$streamindex]['wformattag'] = $thisfile_audio['wformattag']; $thisfile_audio['streams'][$streamindex]['bitrate_mode'] = $thisfile_audio['bitrate_mode']; $thisfile_audio['streams'][$streamindex]['lossless'] = $thisfile_audio['lossless']; $thisfile_audio['streams'][$streamindex]['dataformat'] = $thisfile_audio_dataformat; } if (isset($thisfile_riff_WAVE['rgad'][0]['data'])) { // shortcuts $rgadData = &$thisfile_riff_WAVE['rgad'][0]['data']; $thisfile_riff_raw['rgad'] = array('track'=>array(), 'album'=>array()); $thisfile_riff_raw_rgad = &$thisfile_riff_raw['rgad']; $thisfile_riff_raw_rgad_track = &$thisfile_riff_raw_rgad['track']; $thisfile_riff_raw_rgad_album = &$thisfile_riff_raw_rgad['album']; $thisfile_riff_raw_rgad['fPeakAmplitude'] = getid3_lib::LittleEndian2Float(substr($rgadData, 0, 4)); $thisfile_riff_raw_rgad['nRadioRgAdjust'] = $this->EitherEndian2Int(substr($rgadData, 4, 2)); $thisfile_riff_raw_rgad['nAudiophileRgAdjust'] = $this->EitherEndian2Int(substr($rgadData, 6, 2)); $nRadioRgAdjustBitstring = str_pad(getid3_lib::Dec2Bin($thisfile_riff_raw_rgad['nRadioRgAdjust']), 16, '0', STR_PAD_LEFT); $nAudiophileRgAdjustBitstring = str_pad(getid3_lib::Dec2Bin($thisfile_riff_raw_rgad['nAudiophileRgAdjust']), 16, '0', STR_PAD_LEFT); $thisfile_riff_raw_rgad_track['name'] = getid3_lib::Bin2Dec(substr($nRadioRgAdjustBitstring, 0, 3)); $thisfile_riff_raw_rgad_track['originator'] = getid3_lib::Bin2Dec(substr($nRadioRgAdjustBitstring, 3, 3)); $thisfile_riff_raw_rgad_track['signbit'] = getid3_lib::Bin2Dec(substr($nRadioRgAdjustBitstring, 6, 1)); $thisfile_riff_raw_rgad_track['adjustment'] = getid3_lib::Bin2Dec(substr($nRadioRgAdjustBitstring, 7, 9)); $thisfile_riff_raw_rgad_album['name'] = getid3_lib::Bin2Dec(substr($nAudiophileRgAdjustBitstring, 0, 3)); $thisfile_riff_raw_rgad_album['originator'] = getid3_lib::Bin2Dec(substr($nAudiophileRgAdjustBitstring, 3, 3)); $thisfile_riff_raw_rgad_album['signbit'] = getid3_lib::Bin2Dec(substr($nAudiophileRgAdjustBitstring, 6, 1)); $thisfile_riff_raw_rgad_album['adjustment'] = getid3_lib::Bin2Dec(substr($nAudiophileRgAdjustBitstring, 7, 9)); $thisfile_riff['rgad']['peakamplitude'] = $thisfile_riff_raw_rgad['fPeakAmplitude']; if (($thisfile_riff_raw_rgad_track['name'] != 0) && ($thisfile_riff_raw_rgad_track['originator'] != 0)) { $thisfile_riff['rgad']['track']['name'] = getid3_lib::RGADnameLookup($thisfile_riff_raw_rgad_track['name']); $thisfile_riff['rgad']['track']['originator'] = getid3_lib::RGADoriginatorLookup($thisfile_riff_raw_rgad_track['originator']); $thisfile_riff['rgad']['track']['adjustment'] = getid3_lib::RGADadjustmentLookup($thisfile_riff_raw_rgad_track['adjustment'], $thisfile_riff_raw_rgad_track['signbit']); } if (($thisfile_riff_raw_rgad_album['name'] != 0) && ($thisfile_riff_raw_rgad_album['originator'] != 0)) { $thisfile_riff['rgad']['album']['name'] = getid3_lib::RGADnameLookup($thisfile_riff_raw_rgad_album['name']); $thisfile_riff['rgad']['album']['originator'] = getid3_lib::RGADoriginatorLookup($thisfile_riff_raw_rgad_album['originator']); $thisfile_riff['rgad']['album']['adjustment'] = getid3_lib::RGADadjustmentLookup($thisfile_riff_raw_rgad_album['adjustment'], $thisfile_riff_raw_rgad_album['signbit']); } } if (isset($thisfile_riff_WAVE['fact'][0]['data'])) { $thisfile_riff_raw['fact']['NumberOfSamples'] = $this->EitherEndian2Int(substr($thisfile_riff_WAVE['fact'][0]['data'], 0, 4)); // This should be a good way of calculating exact playtime, // but some sample files have had incorrect number of samples, // so cannot use this method // if (!empty($thisfile_riff_raw['fmt ']['nSamplesPerSec'])) { // $info['playtime_seconds'] = (float) $thisfile_riff_raw['fact']['NumberOfSamples'] / $thisfile_riff_raw['fmt ']['nSamplesPerSec']; // } } if (!empty($thisfile_riff_raw['fmt ']['nAvgBytesPerSec'])) { $thisfile_audio['bitrate'] = getid3_lib::CastAsInt($thisfile_riff_raw['fmt ']['nAvgBytesPerSec'] * 8); } if (isset($thisfile_riff_WAVE['bext'][0]['data'])) { // shortcut $thisfile_riff_WAVE_bext_0 = &$thisfile_riff_WAVE['bext'][0]; $thisfile_riff_WAVE_bext_0['title'] = substr($thisfile_riff_WAVE_bext_0['data'], 0, 256); $thisfile_riff_WAVE_bext_0['author'] = substr($thisfile_riff_WAVE_bext_0['data'], 256, 32); $thisfile_riff_WAVE_bext_0['reference'] = substr($thisfile_riff_WAVE_bext_0['data'], 288, 32); foreach (array('title','author','reference') as $bext_key) { // Some software (notably Logic Pro) may not blank existing data before writing a null-terminated string to the offsets // assigned for text fields, resulting in a null-terminated string (or possibly just a single null) followed by garbage // Keep only string as far as first null byte, discard rest of fixed-width data // https://github.com/JamesHeinrich/getID3/issues/263 // https://github.com/JamesHeinrich/getID3/issues/430 $null_terminator_rows = explode("\x00", $thisfile_riff_WAVE_bext_0[$bext_key]); $thisfile_riff_WAVE_bext_0[$bext_key] = $null_terminator_rows[0]; } $thisfile_riff_WAVE_bext_0['origin_date'] = substr($thisfile_riff_WAVE_bext_0['data'], 320, 10); $thisfile_riff_WAVE_bext_0['origin_time'] = substr($thisfile_riff_WAVE_bext_0['data'], 330, 8); $thisfile_riff_WAVE_bext_0['time_reference'] = getid3_lib::LittleEndian2Int(substr($thisfile_riff_WAVE_bext_0['data'], 338, 8)); $thisfile_riff_WAVE_bext_0['bwf_version'] = getid3_lib::LittleEndian2Int(substr($thisfile_riff_WAVE_bext_0['data'], 346, 1)); $thisfile_riff_WAVE_bext_0['reserved'] = substr($thisfile_riff_WAVE_bext_0['data'], 347, 254); $thisfile_riff_WAVE_bext_0['coding_history'] = explode("\r\n", trim(substr($thisfile_riff_WAVE_bext_0['data'], 601))); if (preg_match('#^([0-9]{4}).([0-9]{2}).([0-9]{2})$#', $thisfile_riff_WAVE_bext_0['origin_date'], $matches_bext_date)) { if (preg_match('#^([0-9]{2}).([0-9]{2}).([0-9]{2})$#', $thisfile_riff_WAVE_bext_0['origin_time'], $matches_bext_time)) { $bext_timestamp = array(); list($dummy, $bext_timestamp['year'], $bext_timestamp['month'], $bext_timestamp['day']) = $matches_bext_date; list($dummy, $bext_timestamp['hour'], $bext_timestamp['minute'], $bext_timestamp['second']) = $matches_bext_time; $thisfile_riff_WAVE_bext_0['origin_date_unix'] = gmmktime($bext_timestamp['hour'], $bext_timestamp['minute'], $bext_timestamp['second'], $bext_timestamp['month'], $bext_timestamp['day'], $bext_timestamp['year']); } else { $this->warning('RIFF.WAVE.BEXT.origin_time is invalid'); } } else { $this->warning('RIFF.WAVE.BEXT.origin_date is invalid'); } $thisfile_riff['comments']['author'][] = $thisfile_riff_WAVE_bext_0['author']; $thisfile_riff['comments']['title'][] = $thisfile_riff_WAVE_bext_0['title']; } if (isset($thisfile_riff_WAVE['MEXT'][0]['data'])) { // shortcut $thisfile_riff_WAVE_MEXT_0 = &$thisfile_riff_WAVE['MEXT'][0]; $thisfile_riff_WAVE_MEXT_0['raw']['sound_information'] = getid3_lib::LittleEndian2Int(substr($thisfile_riff_WAVE_MEXT_0['data'], 0, 2)); $thisfile_riff_WAVE_MEXT_0['flags']['homogenous'] = (bool) ($thisfile_riff_WAVE_MEXT_0['raw']['sound_information'] & 0x0001); if ($thisfile_riff_WAVE_MEXT_0['flags']['homogenous']) { $thisfile_riff_WAVE_MEXT_0['flags']['padding'] = ($thisfile_riff_WAVE_MEXT_0['raw']['sound_information'] & 0x0002) ? false : true; $thisfile_riff_WAVE_MEXT_0['flags']['22_or_44'] = (bool) ($thisfile_riff_WAVE_MEXT_0['raw']['sound_information'] & 0x0004); $thisfile_riff_WAVE_MEXT_0['flags']['free_format'] = (bool) ($thisfile_riff_WAVE_MEXT_0['raw']['sound_information'] & 0x0008); $thisfile_riff_WAVE_MEXT_0['nominal_frame_size'] = getid3_lib::LittleEndian2Int(substr($thisfile_riff_WAVE_MEXT_0['data'], 2, 2)); } $thisfile_riff_WAVE_MEXT_0['anciliary_data_length'] = getid3_lib::LittleEndian2Int(substr($thisfile_riff_WAVE_MEXT_0['data'], 6, 2)); $thisfile_riff_WAVE_MEXT_0['raw']['anciliary_data_def'] = getid3_lib::LittleEndian2Int(substr($thisfile_riff_WAVE_MEXT_0['data'], 8, 2)); $thisfile_riff_WAVE_MEXT_0['flags']['anciliary_data_left'] = (bool) ($thisfile_riff_WAVE_MEXT_0['raw']['anciliary_data_def'] & 0x0001); $thisfile_riff_WAVE_MEXT_0['flags']['anciliary_data_free'] = (bool) ($thisfile_riff_WAVE_MEXT_0['raw']['anciliary_data_def'] & 0x0002); $thisfile_riff_WAVE_MEXT_0['flags']['anciliary_data_right'] = (bool) ($thisfile_riff_WAVE_MEXT_0['raw']['anciliary_data_def'] & 0x0004); } if (isset($thisfile_riff_WAVE['cart'][0]['data'])) { // shortcut $thisfile_riff_WAVE_cart_0 = &$thisfile_riff_WAVE['cart'][0]; $thisfile_riff_WAVE_cart_0['version'] = substr($thisfile_riff_WAVE_cart_0['data'], 0, 4); $thisfile_riff_WAVE_cart_0['title'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 4, 64)); $thisfile_riff_WAVE_cart_0['artist'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 68, 64)); $thisfile_riff_WAVE_cart_0['cut_id'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 132, 64)); $thisfile_riff_WAVE_cart_0['client_id'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 196, 64)); $thisfile_riff_WAVE_cart_0['category'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 260, 64)); $thisfile_riff_WAVE_cart_0['classification'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 324, 64)); $thisfile_riff_WAVE_cart_0['out_cue'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 388, 64)); $thisfile_riff_WAVE_cart_0['start_date'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 452, 10)); $thisfile_riff_WAVE_cart_0['start_time'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 462, 8)); $thisfile_riff_WAVE_cart_0['end_date'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 470, 10)); $thisfile_riff_WAVE_cart_0['end_time'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 480, 8)); $thisfile_riff_WAVE_cart_0['producer_app_id'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 488, 64)); $thisfile_riff_WAVE_cart_0['producer_app_version'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 552, 64)); $thisfile_riff_WAVE_cart_0['user_defined_text'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 616, 64)); $thisfile_riff_WAVE_cart_0['zero_db_reference'] = getid3_lib::LittleEndian2Int(substr($thisfile_riff_WAVE_cart_0['data'], 680, 4), true); for ($i = 0; $i < 8; $i++) { $thisfile_riff_WAVE_cart_0['post_time'][$i]['usage_fourcc'] = substr($thisfile_riff_WAVE_cart_0['data'], 684 + ($i * 8), 4); $thisfile_riff_WAVE_cart_0['post_time'][$i]['timer_value'] = getid3_lib::LittleEndian2Int(substr($thisfile_riff_WAVE_cart_0['data'], 684 + ($i * 8) + 4, 4)); } $thisfile_riff_WAVE_cart_0['url'] = trim(substr($thisfile_riff_WAVE_cart_0['data'], 748, 1024)); $thisfile_riff_WAVE_cart_0['tag_text'] = explode("\r\n", trim(substr($thisfile_riff_WAVE_cart_0['data'], 1772))); $thisfile_riff['comments']['tag_text'][] = substr($thisfile_riff_WAVE_cart_0['data'], 1772); $thisfile_riff['comments']['artist'][] = $thisfile_riff_WAVE_cart_0['artist']; $thisfile_riff['comments']['title'][] = $thisfile_riff_WAVE_cart_0['title']; } if (isset($thisfile_riff_WAVE['SNDM'][0]['data'])) { // SoundMiner metadata // shortcuts $thisfile_riff_WAVE_SNDM_0 = &$thisfile_riff_WAVE['SNDM'][0]; $thisfile_riff_WAVE_SNDM_0_data = &$thisfile_riff_WAVE_SNDM_0['data']; $SNDM_startoffset = 0; $SNDM_endoffset = $thisfile_riff_WAVE_SNDM_0['size']; while ($SNDM_startoffset < $SNDM_endoffset) { $SNDM_thisTagOffset = 0; $SNDM_thisTagSize = getid3_lib::BigEndian2Int(substr($thisfile_riff_WAVE_SNDM_0_data, $SNDM_startoffset + $SNDM_thisTagOffset, 4)); $SNDM_thisTagOffset += 4; $SNDM_thisTagKey = substr($thisfile_riff_WAVE_SNDM_0_data, $SNDM_startoffset + $SNDM_thisTagOffset, 4); $SNDM_thisTagOffset += 4; $SNDM_thisTagDataSize = getid3_lib::BigEndian2Int(substr($thisfile_riff_WAVE_SNDM_0_data, $SNDM_startoffset + $SNDM_thisTagOffset, 2)); $SNDM_thisTagOffset += 2; $SNDM_thisTagDataFlags = getid3_lib::BigEndian2Int(substr($thisfile_riff_WAVE_SNDM_0_data, $SNDM_startoffset + $SNDM_thisTagOffset, 2)); $SNDM_thisTagOffset += 2; $SNDM_thisTagDataText = substr($thisfile_riff_WAVE_SNDM_0_data, $SNDM_startoffset + $SNDM_thisTagOffset, $SNDM_thisTagDataSize); $SNDM_thisTagOffset += $SNDM_thisTagDataSize; if ($SNDM_thisTagSize != (4 + 4 + 2 + 2 + $SNDM_thisTagDataSize)) { $this->warning('RIFF.WAVE.SNDM.data contains tag not expected length (expected: '.$SNDM_thisTagSize.', found: '.(4 + 4 + 2 + 2 + $SNDM_thisTagDataSize).') at offset '.$SNDM_startoffset.' (file offset '.($thisfile_riff_WAVE_SNDM_0['offset'] + $SNDM_startoffset).')'); break; } elseif ($SNDM_thisTagSize <= 0) { $this->warning('RIFF.WAVE.SNDM.data contains zero-size tag at offset '.$SNDM_startoffset.' (file offset '.($thisfile_riff_WAVE_SNDM_0['offset'] + $SNDM_startoffset).')'); break; } $SNDM_startoffset += $SNDM_thisTagSize; $thisfile_riff_WAVE_SNDM_0['parsed_raw'][$SNDM_thisTagKey] = $SNDM_thisTagDataText; if ($parsedkey = self::waveSNDMtagLookup($SNDM_thisTagKey)) { $thisfile_riff_WAVE_SNDM_0['parsed'][$parsedkey] = $SNDM_thisTagDataText; } else { $this->warning('RIFF.WAVE.SNDM contains unknown tag "'.$SNDM_thisTagKey.'" at offset '.$SNDM_startoffset.' (file offset '.($thisfile_riff_WAVE_SNDM_0['offset'] + $SNDM_startoffset).')'); } } $tagmapping = array( 'tracktitle'=>'title', 'category' =>'genre', 'cdtitle' =>'album', ); foreach ($tagmapping as $fromkey => $tokey) { if (isset($thisfile_riff_WAVE_SNDM_0['parsed'][$fromkey])) { $thisfile_riff['comments'][$tokey][] = $thisfile_riff_WAVE_SNDM_0['parsed'][$fromkey]; } } } if (isset($thisfile_riff_WAVE['iXML'][0]['data'])) { // requires functions simplexml_load_string and get_object_vars if ($parsedXML = getid3_lib::XML2array($thisfile_riff_WAVE['iXML'][0]['data'])) { $thisfile_riff_WAVE['iXML'][0]['parsed'] = $parsedXML; if (isset($parsedXML['SPEED']['MASTER_SPEED'])) { @list($numerator, $denominator) = explode('/', $parsedXML['SPEED']['MASTER_SPEED']); $thisfile_riff_WAVE['iXML'][0]['master_speed'] = (int) $numerator / ($denominator ? $denominator : 1000); } if (isset($parsedXML['SPEED']['TIMECODE_RATE'])) { @list($numerator, $denominator) = explode('/', $parsedXML['SPEED']['TIMECODE_RATE']); $thisfile_riff_WAVE['iXML'][0]['timecode_rate'] = (int) $numerator / ($denominator ? $denominator : 1000); } if (isset($parsedXML['SPEED']['TIMESTAMP_SAMPLES_SINCE_MIDNIGHT_LO']) && !empty($parsedXML['SPEED']['TIMESTAMP_SAMPLE_RATE']) && !empty($thisfile_riff_WAVE['iXML'][0]['timecode_rate'])) { $samples_since_midnight = floatval(ltrim($parsedXML['SPEED']['TIMESTAMP_SAMPLES_SINCE_MIDNIGHT_HI'].$parsedXML['SPEED']['TIMESTAMP_SAMPLES_SINCE_MIDNIGHT_LO'], '0')); $timestamp_sample_rate = (is_array($parsedXML['SPEED']['TIMESTAMP_SAMPLE_RATE']) ? max($parsedXML['SPEED']['TIMESTAMP_SAMPLE_RATE']) : $parsedXML['SPEED']['TIMESTAMP_SAMPLE_RATE']); // XML could possibly contain more than one TIMESTAMP_SAMPLE_RATE tag, returning as array instead of integer [why? does it make sense? perhaps doesn't matter but getID3 needs to deal with it] - see https://github.com/JamesHeinrich/getID3/issues/105 $thisfile_riff_WAVE['iXML'][0]['timecode_seconds'] = $samples_since_midnight / $timestamp_sample_rate; $h = floor( $thisfile_riff_WAVE['iXML'][0]['timecode_seconds'] / 3600); $m = floor(($thisfile_riff_WAVE['iXML'][0]['timecode_seconds'] - ($h * 3600)) / 60); $s = floor( $thisfile_riff_WAVE['iXML'][0]['timecode_seconds'] - ($h * 3600) - ($m * 60)); $f = ($thisfile_riff_WAVE['iXML'][0]['timecode_seconds'] - ($h * 3600) - ($m * 60) - $s) * $thisfile_riff_WAVE['iXML'][0]['timecode_rate']; $thisfile_riff_WAVE['iXML'][0]['timecode_string'] = sprintf('%02d:%02d:%02d:%05.2f', $h, $m, $s, $f); $thisfile_riff_WAVE['iXML'][0]['timecode_string_round'] = sprintf('%02d:%02d:%02d:%02d', $h, $m, $s, round($f)); unset($samples_since_midnight, $timestamp_sample_rate, $h, $m, $s, $f); } unset($parsedXML); } } if (isset($thisfile_riff_WAVE['guan'][0]['data'])) { // shortcut $thisfile_riff_WAVE_guan_0 = &$thisfile_riff_WAVE['guan'][0]; if (!empty($thisfile_riff_WAVE_guan_0['data']) && (substr($thisfile_riff_WAVE_guan_0['data'], 0, 14) == 'GUANO|Version:')) { $thisfile_riff['guano'] = array(); foreach (explode("\n", $thisfile_riff_WAVE_guan_0['data']) as $line) { if ($line) { @list($key, $value) = explode(':', $line, 2); if (substr($value, 0, 3) == '[{"') { if ($decoded = @json_decode($value, true)) { if (count($decoded) === 1) { $value = $decoded[0]; } else { $value = $decoded; } } } $thisfile_riff['guano'] = array_merge_recursive($thisfile_riff['guano'], getid3_lib::CreateDeepArray($key, '|', $value)); } } // https://www.wildlifeacoustics.com/SCHEMA/GUANO.html foreach ($thisfile_riff['guano'] as $key => $value) { switch ($key) { case 'Loc Position': if (preg_match('#^([\\+\\-]?[0-9]+\\.[0-9]+) ([\\+\\-]?[0-9]+\\.[0-9]+)$#', $value, $matches)) { list($dummy, $latitude, $longitude) = $matches; $thisfile_riff['comments']['gps_latitude'][0] = floatval($latitude); $thisfile_riff['comments']['gps_longitude'][0] = floatval($longitude); $thisfile_riff['guano'][$key] = floatval($latitude).' '.floatval($longitude); } break; case 'Loc Elevation': // Elevation/altitude above mean sea level in meters $thisfile_riff['comments']['gps_altitude'][0] = floatval($value); $thisfile_riff['guano'][$key] = (float) $value; break; case 'Filter HP': // High-pass filter frequency in kHz case 'Filter LP': // Low-pass filter frequency in kHz case 'Humidity': // Relative humidity as a percentage case 'Length': // Recording length in seconds case 'Loc Accuracy': // Estimated Position Error in meters case 'Temperature Ext': // External temperature in degrees Celsius outside the recorder's housing case 'Temperature Int': // Internal temperature in degrees Celsius inside the recorder's housing $thisfile_riff['guano'][$key] = (float) $value; break; case 'Samplerate': // Recording sample rate, Hz case 'TE': // Time-expansion factor. If not specified, then 1 (no time-expansion a.k.a. direct-recording) is assumed. $thisfile_riff['guano'][$key] = (int) $value; break; } } } else { $this->warning('RIFF.guan data not in expected format'); } } if (!isset($thisfile_audio['bitrate']) && isset($thisfile_riff_audio[$streamindex]['bitrate'])) { $thisfile_audio['bitrate'] = $thisfile_riff_audio[$streamindex]['bitrate']; $info['playtime_seconds'] = (float)getid3_lib::SafeDiv((($info['avdataend'] - $info['avdataoffset']) * 8), $thisfile_audio['bitrate']); } if (!empty($info['wavpack'])) { $thisfile_audio_dataformat = 'wavpack'; $thisfile_audio['bitrate_mode'] = 'vbr'; $thisfile_audio['encoder'] = 'WavPack v'.$info['wavpack']['version']; // Reset to the way it was - RIFF parsing will have messed this up $info['avdataend'] = $Original['avdataend']; $thisfile_audio['bitrate'] = getid3_lib::SafeDiv(($info['avdataend'] - $info['avdataoffset']) * 8, $info['playtime_seconds']); $this->fseek($info['avdataoffset'] - 44); $RIFFdata = $this->fread(44); $OrignalRIFFheaderSize = getid3_lib::LittleEndian2Int(substr($RIFFdata, 4, 4)) + 8; $OrignalRIFFdataSize = getid3_lib::LittleEndian2Int(substr($RIFFdata, 40, 4)) + 44; if ($OrignalRIFFheaderSize > $OrignalRIFFdataSize) { $info['avdataend'] -= ($OrignalRIFFheaderSize - $OrignalRIFFdataSize); $this->fseek($info['avdataend']); $RIFFdata .= $this->fread($OrignalRIFFheaderSize - $OrignalRIFFdataSize); } // move the data chunk after all other chunks (if any) // so that the RIFF parser doesn't see EOF when trying // to skip over the data chunk $RIFFdata = substr($RIFFdata, 0, 36).substr($RIFFdata, 44).substr($RIFFdata, 36, 8); $getid3_riff = new getid3_riff($this->getid3); $getid3_riff->ParseRIFFdata($RIFFdata); unset($getid3_riff); } if (isset($thisfile_riff_raw['fmt ']['wFormatTag'])) { switch ($thisfile_riff_raw['fmt ']['wFormatTag']) { case 0x0001: // PCM if (!empty($info['ac3'])) { // Dolby Digital WAV files masquerade as PCM-WAV, but they're not $thisfile_audio['wformattag'] = 0x2000; $thisfile_audio['codec'] = self::wFormatTagLookup($thisfile_audio['wformattag']); $thisfile_audio['lossless'] = false; $thisfile_audio['bitrate'] = $info['ac3']['bitrate']; $thisfile_audio['sample_rate'] = $info['ac3']['sample_rate']; } if (!empty($info['dts'])) { // Dolby DTS files masquerade as PCM-WAV, but they're not $thisfile_audio['wformattag'] = 0x2001; $thisfile_audio['codec'] = self::wFormatTagLookup($thisfile_audio['wformattag']); $thisfile_audio['lossless'] = false; $thisfile_audio['bitrate'] = $info['dts']['bitrate']; $thisfile_audio['sample_rate'] = $info['dts']['sample_rate']; } break; case 0x08AE: // ClearJump LiteWave $thisfile_audio['bitrate_mode'] = 'vbr'; $thisfile_audio_dataformat = 'litewave'; //typedef struct tagSLwFormat { // WORD m_wCompFormat; // low byte defines compression method, high byte is compression flags // DWORD m_dwScale; // scale factor for lossy compression // DWORD m_dwBlockSize; // number of samples in encoded blocks // WORD m_wQuality; // alias for the scale factor // WORD m_wMarkDistance; // distance between marks in bytes // WORD m_wReserved; // // //following paramters are ignored if CF_FILESRC is not set // DWORD m_dwOrgSize; // original file size in bytes // WORD m_bFactExists; // indicates if 'fact' chunk exists in the original file // DWORD m_dwRiffChunkSize; // riff chunk size in the original file // // PCMWAVEFORMAT m_OrgWf; // original wave format // }SLwFormat, *PSLwFormat; // shortcut $thisfile_riff['litewave']['raw'] = array(); $riff_litewave = &$thisfile_riff['litewave']; $riff_litewave_raw = &$riff_litewave['raw']; $flags = array( 'compression_method' => 1, 'compression_flags' => 1, 'm_dwScale' => 4, 'm_dwBlockSize' => 4, 'm_wQuality' => 2, 'm_wMarkDistance' => 2, 'm_wReserved' => 2, 'm_dwOrgSize' => 4, 'm_bFactExists' => 2, 'm_dwRiffChunkSize' => 4, ); $litewave_offset = 18; foreach ($flags as $flag => $length) { $riff_litewave_raw[$flag] = getid3_lib::LittleEndian2Int(substr($thisfile_riff_WAVE['fmt '][0]['data'], $litewave_offset, $length)); $litewave_offset += $length; } //$riff_litewave['quality_factor'] = intval(round((2000 - $riff_litewave_raw['m_dwScale']) / 20)); $riff_litewave['quality_factor'] = $riff_litewave_raw['m_wQuality']; $riff_litewave['flags']['raw_source'] = ($riff_litewave_raw['compression_flags'] & 0x01) ? false : true; $riff_litewave['flags']['vbr_blocksize'] = ($riff_litewave_raw['compression_flags'] & 0x02) ? false : true; $riff_litewave['flags']['seekpoints'] = (bool) ($riff_litewave_raw['compression_flags'] & 0x04); $thisfile_audio['lossless'] = (($riff_litewave_raw['m_wQuality'] == 100) ? true : false); $thisfile_audio['encoder_options'] = '-q'.$riff_litewave['quality_factor']; break; default: break; } } if ($info['avdataend'] > $info['filesize']) { switch ($thisfile_audio_dataformat) { case 'wavpack': // WavPack case 'lpac': // LPAC case 'ofr': // OptimFROG case 'ofs': // OptimFROG DualStream // lossless compressed audio formats that keep original RIFF headers - skip warning break; case 'litewave': if (($info['avdataend'] - $info['filesize']) == 1) { // LiteWave appears to incorrectly *not* pad actual output file // to nearest WORD boundary so may appear to be short by one // byte, in which case - skip warning } else { // Short by more than one byte, throw warning $this->warning('Probably truncated file - expecting '.$thisfile_riff[$RIFFsubtype]['data'][0]['size'].' bytes of data, only found '.($info['filesize'] - $info['avdataoffset']).' (short by '.($thisfile_riff[$RIFFsubtype]['data'][0]['size'] - ($info['filesize'] - $info['avdataoffset'])).' bytes)'); $info['avdataend'] = $info['filesize']; } break; default: if ((($info['avdataend'] - $info['filesize']) == 1) && (($thisfile_riff[$RIFFsubtype]['data'][0]['size'] % 2) == 0) && ((($info['filesize'] - $info['avdataoffset']) % 2) == 1)) { // output file appears to be incorrectly *not* padded to nearest WORD boundary // Output less severe warning $this->warning('File should probably be padded to nearest WORD boundary, but it is not (expecting '.$thisfile_riff[$RIFFsubtype]['data'][0]['size'].' bytes of data, only found '.($info['filesize'] - $info['avdataoffset']).' therefore short by '.($thisfile_riff[$RIFFsubtype]['data'][0]['size'] - ($info['filesize'] - $info['avdataoffset'])).' bytes)'); $info['avdataend'] = $info['filesize']; } else { // Short by more than one byte, throw warning $this->warning('Probably truncated file - expecting '.$thisfile_riff[$RIFFsubtype]['data'][0]['size'].' bytes of data, only found '.($info['filesize'] - $info['avdataoffset']).' (short by '.($thisfile_riff[$RIFFsubtype]['data'][0]['size'] - ($info['filesize'] - $info['avdataoffset'])).' bytes)'); $info['avdataend'] = $info['filesize']; } break; } } if (!empty($info['mpeg']['audio']['LAME']['audio_bytes'])) { if ((($info['avdataend'] - $info['avdataoffset']) - $info['mpeg']['audio']['LAME']['audio_bytes']) == 1) { $info['avdataend']--; $this->warning('Extra null byte at end of MP3 data assumed to be RIFF padding and therefore ignored'); } } if ($thisfile_audio_dataformat == 'ac3') { unset($thisfile_audio['bits_per_sample']); if (!empty($info['ac3']['bitrate']) && ($info['ac3']['bitrate'] != $thisfile_audio['bitrate'])) { $thisfile_audio['bitrate'] = $info['ac3']['bitrate']; } } break; // http://en.wikipedia.org/wiki/Audio_Video_Interleave case 'AVI ': $info['fileformat'] = 'avi'; $info['mime_type'] = 'video/avi'; $thisfile_video['bitrate_mode'] = 'vbr'; // maybe not, but probably $thisfile_video['dataformat'] = 'avi'; $thisfile_riff_video_current = array(); if (isset($thisfile_riff[$RIFFsubtype]['movi']['offset'])) { $info['avdataoffset'] = $thisfile_riff[$RIFFsubtype]['movi']['offset'] + 8; if (isset($thisfile_riff['AVIX'])) { $info['avdataend'] = $thisfile_riff['AVIX'][(count($thisfile_riff['AVIX']) - 1)]['chunks']['movi']['offset'] + $thisfile_riff['AVIX'][(count($thisfile_riff['AVIX']) - 1)]['chunks']['movi']['size']; } else { $info['avdataend'] = $thisfile_riff['AVI ']['movi']['offset'] + $thisfile_riff['AVI ']['movi']['size']; } if ($info['avdataend'] > $info['filesize']) { $this->warning('Probably truncated file - expecting '.($info['avdataend'] - $info['avdataoffset']).' bytes of data, only found '.($info['filesize'] - $info['avdataoffset']).' (short by '.($info['avdataend'] - $info['filesize']).' bytes)'); $info['avdataend'] = $info['filesize']; } } if (isset($thisfile_riff['AVI ']['hdrl']['strl']['indx'])) { //$bIndexType = array( // 0x00 => 'AVI_INDEX_OF_INDEXES', // 0x01 => 'AVI_INDEX_OF_CHUNKS', // 0x80 => 'AVI_INDEX_IS_DATA', //); //$bIndexSubtype = array( // 0x01 => array( // 0x01 => 'AVI_INDEX_2FIELD', // ), //); foreach ($thisfile_riff['AVI ']['hdrl']['strl']['indx'] as $streamnumber => $steamdataarray) { $ahsisd = &$thisfile_riff['AVI ']['hdrl']['strl']['indx'][$streamnumber]['data']; $thisfile_riff_raw['indx'][$streamnumber]['wLongsPerEntry'] = $this->EitherEndian2Int(substr($ahsisd, 0, 2)); $thisfile_riff_raw['indx'][$streamnumber]['bIndexSubType'] = $this->EitherEndian2Int(substr($ahsisd, 2, 1)); $thisfile_riff_raw['indx'][$streamnumber]['bIndexType'] = $this->EitherEndian2Int(substr($ahsisd, 3, 1)); $thisfile_riff_raw['indx'][$streamnumber]['nEntriesInUse'] = $this->EitherEndian2Int(substr($ahsisd, 4, 4)); $thisfile_riff_raw['indx'][$streamnumber]['dwChunkId'] = substr($ahsisd, 8, 4); $thisfile_riff_raw['indx'][$streamnumber]['dwReserved'] = $this->EitherEndian2Int(substr($ahsisd, 12, 4)); //$thisfile_riff_raw['indx'][$streamnumber]['bIndexType_name'] = $bIndexType[$thisfile_riff_raw['indx'][$streamnumber]['bIndexType']]; //$thisfile_riff_raw['indx'][$streamnumber]['bIndexSubType_name'] = $bIndexSubtype[$thisfile_riff_raw['indx'][$streamnumber]['bIndexType']][$thisfile_riff_raw['indx'][$streamnumber]['bIndexSubType']]; unset($ahsisd); } } if (isset($thisfile_riff['AVI ']['hdrl']['avih'][$streamindex]['data'])) { $avihData = $thisfile_riff['AVI ']['hdrl']['avih'][$streamindex]['data']; // shortcut $thisfile_riff_raw['avih'] = array(); $thisfile_riff_raw_avih = &$thisfile_riff_raw['avih']; $thisfile_riff_raw_avih['dwMicroSecPerFrame'] = $this->EitherEndian2Int(substr($avihData, 0, 4)); // frame display rate (or 0L) if ($thisfile_riff_raw_avih['dwMicroSecPerFrame'] == 0) { $this->error('Corrupt RIFF file: avih.dwMicroSecPerFrame == zero'); return false; } $flags = array( 'dwMaxBytesPerSec', // max. transfer rate 'dwPaddingGranularity', // pad to multiples of this size; normally 2K. 'dwFlags', // the ever-present flags 'dwTotalFrames', // # frames in file 'dwInitialFrames', // 'dwStreams', // 'dwSuggestedBufferSize', // 'dwWidth', // 'dwHeight', // 'dwScale', // 'dwRate', // 'dwStart', // 'dwLength', // ); $avih_offset = 4; foreach ($flags as $flag) { $thisfile_riff_raw_avih[$flag] = $this->EitherEndian2Int(substr($avihData, $avih_offset, 4)); $avih_offset += 4; } $flags = array( 'hasindex' => 0x00000010, 'mustuseindex' => 0x00000020, 'interleaved' => 0x00000100, 'trustcktype' => 0x00000800, 'capturedfile' => 0x00010000, 'copyrighted' => 0x00020010, ); foreach ($flags as $flag => $value) { $thisfile_riff_raw_avih['flags'][$flag] = (bool) ($thisfile_riff_raw_avih['dwFlags'] & $value); } // shortcut $thisfile_riff_video[$streamindex] = array(); /** @var array $thisfile_riff_video_current */ $thisfile_riff_video_current = &$thisfile_riff_video[$streamindex]; if ($thisfile_riff_raw_avih['dwWidth'] > 0) { // @phpstan-ignore-line $thisfile_riff_video_current['frame_width'] = $thisfile_riff_raw_avih['dwWidth']; $thisfile_video['resolution_x'] = $thisfile_riff_video_current['frame_width']; } if ($thisfile_riff_raw_avih['dwHeight'] > 0) { // @phpstan-ignore-line $thisfile_riff_video_current['frame_height'] = $thisfile_riff_raw_avih['dwHeight']; $thisfile_video['resolution_y'] = $thisfile_riff_video_current['frame_height']; } if ($thisfile_riff_raw_avih['dwTotalFrames'] > 0) { // @phpstan-ignore-line $thisfile_riff_video_current['total_frames'] = $thisfile_riff_raw_avih['dwTotalFrames']; $thisfile_video['total_frames'] = $thisfile_riff_video_current['total_frames']; } $thisfile_riff_video_current['frame_rate'] = round(1000000 / $thisfile_riff_raw_avih['dwMicroSecPerFrame'], 3); $thisfile_video['frame_rate'] = $thisfile_riff_video_current['frame_rate']; } if (isset($thisfile_riff['AVI ']['hdrl']['strl']['strh'][0]['data'])) { if (is_array($thisfile_riff['AVI ']['hdrl']['strl']['strh'])) { $thisfile_riff_raw_strf_strhfccType_streamindex = null; for ($i = 0; $i < count($thisfile_riff['AVI ']['hdrl']['strl']['strh']); $i++) { if (isset($thisfile_riff['AVI ']['hdrl']['strl']['strh'][$i]['data'])) { $strhData = $thisfile_riff['AVI ']['hdrl']['strl']['strh'][$i]['data']; $strhfccType = substr($strhData, 0, 4); if (isset($thisfile_riff['AVI ']['hdrl']['strl']['strf'][$i]['data'])) { $strfData = $thisfile_riff['AVI ']['hdrl']['strl']['strf'][$i]['data']; if (!isset($thisfile_riff_raw['strf'][$strhfccType][$streamindex])) { $thisfile_riff_raw['strf'][$strhfccType][$streamindex] = null; } // shortcut $thisfile_riff_raw_strf_strhfccType_streamindex = &$thisfile_riff_raw['strf'][$strhfccType][$streamindex]; switch ($strhfccType) { case 'auds': $thisfile_audio['bitrate_mode'] = 'cbr'; $thisfile_audio_dataformat = 'wav'; if (isset($thisfile_riff_audio) && is_array($thisfile_riff_audio)) { $streamindex = count($thisfile_riff_audio); } $thisfile_riff_audio[$streamindex] = self::parseWAVEFORMATex($strfData); $thisfile_audio['wformattag'] = $thisfile_riff_audio[$streamindex]['raw']['wFormatTag']; // shortcut $thisfile_audio['streams'][$streamindex] = $thisfile_riff_audio[$streamindex]; $thisfile_audio_streams_currentstream = &$thisfile_audio['streams'][$streamindex]; if ($thisfile_audio_streams_currentstream['bits_per_sample'] == 0) { unset($thisfile_audio_streams_currentstream['bits_per_sample']); } $thisfile_audio_streams_currentstream['wformattag'] = $thisfile_audio_streams_currentstream['raw']['wFormatTag']; unset($thisfile_audio_streams_currentstream['raw']); // shortcut $thisfile_riff_raw['strf'][$strhfccType][$streamindex] = $thisfile_riff_audio[$streamindex]['raw']; unset($thisfile_riff_audio[$streamindex]['raw']); $thisfile_audio = getid3_lib::array_merge_noclobber($thisfile_audio, $thisfile_riff_audio[$streamindex]); $thisfile_audio['lossless'] = false; switch ($thisfile_riff_raw_strf_strhfccType_streamindex['wFormatTag']) { case 0x0001: // PCM $thisfile_audio_dataformat = 'wav'; $thisfile_audio['lossless'] = true; break; case 0x0050: // MPEG Layer 2 or Layer 1 $thisfile_audio_dataformat = 'mp2'; // Assume Layer-2 break; case 0x0055: // MPEG Layer 3 $thisfile_audio_dataformat = 'mp3'; break; case 0x00FF: // AAC $thisfile_audio_dataformat = 'aac'; break; case 0x0161: // Windows Media v7 / v8 / v9 case 0x0162: // Windows Media Professional v9 case 0x0163: // Windows Media Lossess v9 $thisfile_audio_dataformat = 'wma'; break; case 0x2000: // AC-3 $thisfile_audio_dataformat = 'ac3'; break; case 0x2001: // DTS $thisfile_audio_dataformat = 'dts'; break; default: $thisfile_audio_dataformat = 'wav'; break; } $thisfile_audio_streams_currentstream['dataformat'] = $thisfile_audio_dataformat; $thisfile_audio_streams_currentstream['lossless'] = $thisfile_audio['lossless']; $thisfile_audio_streams_currentstream['bitrate_mode'] = $thisfile_audio['bitrate_mode']; break; case 'iavs': case 'vids': // shortcut $thisfile_riff_raw['strh'][$i] = array(); $thisfile_riff_raw_strh_current = &$thisfile_riff_raw['strh'][$i]; $thisfile_riff_raw_strh_current['fccType'] = substr($strhData, 0, 4); // same as $strhfccType; $thisfile_riff_raw_strh_current['fccHandler'] = substr($strhData, 4, 4); $thisfile_riff_raw_strh_current['dwFlags'] = $this->EitherEndian2Int(substr($strhData, 8, 4)); // Contains AVITF_* flags $thisfile_riff_raw_strh_current['wPriority'] = $this->EitherEndian2Int(substr($strhData, 12, 2)); $thisfile_riff_raw_strh_current['wLanguage'] = $this->EitherEndian2Int(substr($strhData, 14, 2)); $thisfile_riff_raw_strh_current['dwInitialFrames'] = $this->EitherEndian2Int(substr($strhData, 16, 4)); $thisfile_riff_raw_strh_current['dwScale'] = $this->EitherEndian2Int(substr($strhData, 20, 4)); $thisfile_riff_raw_strh_current['dwRate'] = $this->EitherEndian2Int(substr($strhData, 24, 4)); $thisfile_riff_raw_strh_current['dwStart'] = $this->EitherEndian2Int(substr($strhData, 28, 4)); $thisfile_riff_raw_strh_current['dwLength'] = $this->EitherEndian2Int(substr($strhData, 32, 4)); $thisfile_riff_raw_strh_current['dwSuggestedBufferSize'] = $this->EitherEndian2Int(substr($strhData, 36, 4)); $thisfile_riff_raw_strh_current['dwQuality'] = $this->EitherEndian2Int(substr($strhData, 40, 4)); $thisfile_riff_raw_strh_current['dwSampleSize'] = $this->EitherEndian2Int(substr($strhData, 44, 4)); $thisfile_riff_raw_strh_current['rcFrame'] = $this->EitherEndian2Int(substr($strhData, 48, 4)); $thisfile_riff_video_current['codec'] = self::fourccLookup($thisfile_riff_raw_strh_current['fccHandler']); $thisfile_video['fourcc'] = $thisfile_riff_raw_strh_current['fccHandler']; if (!$thisfile_riff_video_current['codec'] && isset($thisfile_riff_raw_strf_strhfccType_streamindex['fourcc']) && self::fourccLookup($thisfile_riff_raw_strf_strhfccType_streamindex['fourcc'])) { $thisfile_riff_video_current['codec'] = self::fourccLookup($thisfile_riff_raw_strf_strhfccType_streamindex['fourcc']); $thisfile_video['fourcc'] = $thisfile_riff_raw_strf_strhfccType_streamindex['fourcc']; } $thisfile_video['codec'] = $thisfile_riff_video_current['codec']; $thisfile_video['pixel_aspect_ratio'] = (float) 1; switch ($thisfile_riff_raw_strh_current['fccHandler']) { case 'HFYU': // Huffman Lossless Codec case 'IRAW': // Intel YUV Uncompressed case 'YUY2': // Uncompressed YUV 4:2:2 $thisfile_video['lossless'] = true; break; default: $thisfile_video['lossless'] = false; break; } switch ($strhfccType) { case 'vids': $thisfile_riff_raw_strf_strhfccType_streamindex = self::ParseBITMAPINFOHEADER(substr($strfData, 0, 40), ($this->container == 'riff')); $thisfile_video['bits_per_sample'] = $thisfile_riff_raw_strf_strhfccType_streamindex['biBitCount']; if ($thisfile_riff_video_current['codec'] == 'DV') { $thisfile_riff_video_current['dv_type'] = 2; } break; case 'iavs': $thisfile_riff_video_current['dv_type'] = 1; break; } break; default: $this->warning('Unhandled fccType for stream ('.$i.'): "'.$strhfccType.'"'); break; } } } if (isset($thisfile_riff_raw_strf_strhfccType_streamindex) && isset($thisfile_riff_raw_strf_strhfccType_streamindex['fourcc'])) { $thisfile_video['fourcc'] = $thisfile_riff_raw_strf_strhfccType_streamindex['fourcc']; if (self::fourccLookup($thisfile_video['fourcc'])) { $thisfile_riff_video_current['codec'] = self::fourccLookup($thisfile_video['fourcc']); $thisfile_video['codec'] = $thisfile_riff_video_current['codec']; } switch ($thisfile_riff_raw_strf_strhfccType_streamindex['fourcc']) { case 'HFYU': // Huffman Lossless Codec case 'IRAW': // Intel YUV Uncompressed case 'YUY2': // Uncompressed YUV 4:2:2 $thisfile_video['lossless'] = true; //$thisfile_video['bits_per_sample'] = 24; break; default: $thisfile_video['lossless'] = false; //$thisfile_video['bits_per_sample'] = 24; break; } } } } } break; case 'AMV ': $info['fileformat'] = 'amv'; $info['mime_type'] = 'video/amv'; $thisfile_video['bitrate_mode'] = 'vbr'; // it's MJPEG, presumably contant-quality encoding, thereby VBR $thisfile_video['dataformat'] = 'mjpeg'; $thisfile_video['codec'] = 'mjpeg'; $thisfile_video['lossless'] = false; $thisfile_video['bits_per_sample'] = 24; $thisfile_audio['dataformat'] = 'adpcm'; $thisfile_audio['lossless'] = false; break; // http://en.wikipedia.org/wiki/CD-DA case 'CDDA': $info['fileformat'] = 'cda'; unset($info['mime_type']); $thisfile_audio_dataformat = 'cda'; $info['avdataoffset'] = 44; if (isset($thisfile_riff['CDDA']['fmt '][0]['data'])) { // shortcut $thisfile_riff_CDDA_fmt_0 = &$thisfile_riff['CDDA']['fmt '][0]; $thisfile_riff_CDDA_fmt_0['unknown1'] = $this->EitherEndian2Int(substr($thisfile_riff_CDDA_fmt_0['data'], 0, 2)); $thisfile_riff_CDDA_fmt_0['track_num'] = $this->EitherEndian2Int(substr($thisfile_riff_CDDA_fmt_0['data'], 2, 2)); $thisfile_riff_CDDA_fmt_0['disc_id'] = $this->EitherEndian2Int(substr($thisfile_riff_CDDA_fmt_0['data'], 4, 4)); $thisfile_riff_CDDA_fmt_0['start_offset_frame'] = $this->EitherEndian2Int(substr($thisfile_riff_CDDA_fmt_0['data'], 8, 4)); $thisfile_riff_CDDA_fmt_0['playtime_frames'] = $this->EitherEndian2Int(substr($thisfile_riff_CDDA_fmt_0['data'], 12, 4)); $thisfile_riff_CDDA_fmt_0['unknown6'] = $this->EitherEndian2Int(substr($thisfile_riff_CDDA_fmt_0['data'], 16, 4)); $thisfile_riff_CDDA_fmt_0['unknown7'] = $this->EitherEndian2Int(substr($thisfile_riff_CDDA_fmt_0['data'], 20, 4)); $thisfile_riff_CDDA_fmt_0['start_offset_seconds'] = (float) $thisfile_riff_CDDA_fmt_0['start_offset_frame'] / 75; $thisfile_riff_CDDA_fmt_0['playtime_seconds'] = (float) $thisfile_riff_CDDA_fmt_0['playtime_frames'] / 75; $info['comments']['track_number'] = $thisfile_riff_CDDA_fmt_0['track_num']; $info['playtime_seconds'] = $thisfile_riff_CDDA_fmt_0['playtime_seconds']; // hardcoded data for CD-audio $thisfile_audio['lossless'] = true; $thisfile_audio['sample_rate'] = 44100; $thisfile_audio['channels'] = 2; $thisfile_audio['bits_per_sample'] = 16; $thisfile_audio['bitrate'] = $thisfile_audio['sample_rate'] * $thisfile_audio['channels'] * $thisfile_audio['bits_per_sample']; $thisfile_audio['bitrate_mode'] = 'cbr'; } break; // http://en.wikipedia.org/wiki/AIFF case 'AIFF': case 'AIFC': $info['fileformat'] = 'aiff'; $info['mime_type'] = 'audio/x-aiff'; $thisfile_audio['bitrate_mode'] = 'cbr'; $thisfile_audio_dataformat = 'aiff'; $thisfile_audio['lossless'] = true; if (isset($thisfile_riff[$RIFFsubtype]['SSND'][0]['offset'])) { $info['avdataoffset'] = $thisfile_riff[$RIFFsubtype]['SSND'][0]['offset'] + 8; $info['avdataend'] = $info['avdataoffset'] + $thisfile_riff[$RIFFsubtype]['SSND'][0]['size']; if ($info['avdataend'] > $info['filesize']) { if (($info['avdataend'] == ($info['filesize'] + 1)) && (($info['filesize'] % 2) == 1)) { // structures rounded to 2-byte boundary, but dumb encoders // forget to pad end of file to make this actually work } else { $this->warning('Probable truncated AIFF file: expecting '.$thisfile_riff[$RIFFsubtype]['SSND'][0]['size'].' bytes of audio data, only '.($info['filesize'] - $info['avdataoffset']).' bytes found'); } $info['avdataend'] = $info['filesize']; } } if (isset($thisfile_riff[$RIFFsubtype]['COMM'][0]['data'])) { // shortcut $thisfile_riff_RIFFsubtype_COMM_0_data = &$thisfile_riff[$RIFFsubtype]['COMM'][0]['data']; $thisfile_riff_audio['channels'] = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIFFsubtype_COMM_0_data, 0, 2), true); $thisfile_riff_audio['total_samples'] = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIFFsubtype_COMM_0_data, 2, 4), false); $thisfile_riff_audio['bits_per_sample'] = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIFFsubtype_COMM_0_data, 6, 2), true); $thisfile_riff_audio['sample_rate'] = (int) getid3_lib::BigEndian2Float(substr($thisfile_riff_RIFFsubtype_COMM_0_data, 8, 10)); if ($thisfile_riff[$RIFFsubtype]['COMM'][0]['size'] > 18) { $thisfile_riff_audio['codec_fourcc'] = substr($thisfile_riff_RIFFsubtype_COMM_0_data, 18, 4); $CodecNameSize = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIFFsubtype_COMM_0_data, 22, 1), false); $thisfile_riff_audio['codec_name'] = substr($thisfile_riff_RIFFsubtype_COMM_0_data, 23, $CodecNameSize); switch ($thisfile_riff_audio['codec_name']) { case 'NONE': $thisfile_audio['codec'] = 'Pulse Code Modulation (PCM)'; $thisfile_audio['lossless'] = true; break; case '': switch ($thisfile_riff_audio['codec_fourcc']) { // http://developer.apple.com/qa/snd/snd07.html case 'sowt': $thisfile_riff_audio['codec_name'] = 'Two\'s Compliment Little-Endian PCM'; $thisfile_audio['lossless'] = true; break; case 'twos': $thisfile_riff_audio['codec_name'] = 'Two\'s Compliment Big-Endian PCM'; $thisfile_audio['lossless'] = true; break; default: break; } break; default: $thisfile_audio['codec'] = $thisfile_riff_audio['codec_name']; $thisfile_audio['lossless'] = false; break; } } $thisfile_audio['channels'] = $thisfile_riff_audio['channels']; if ($thisfile_riff_audio['bits_per_sample'] > 0) { $thisfile_audio['bits_per_sample'] = $thisfile_riff_audio['bits_per_sample']; } $thisfile_audio['sample_rate'] = $thisfile_riff_audio['sample_rate']; if ($thisfile_audio['sample_rate'] == 0) { $this->error('Corrupted AIFF file: sample_rate == zero'); return false; } $info['playtime_seconds'] = $thisfile_riff_audio['total_samples'] / $thisfile_audio['sample_rate']; } if (isset($thisfile_riff[$RIFFsubtype]['COMT'])) { $offset = 0; $CommentCount = getid3_lib::BigEndian2Int(substr($thisfile_riff[$RIFFsubtype]['COMT'][0]['data'], $offset, 2), false); $offset += 2; for ($i = 0; $i < $CommentCount; $i++) { $info['comments_raw'][$i]['timestamp'] = getid3_lib::BigEndian2Int(substr($thisfile_riff[$RIFFsubtype]['COMT'][0]['data'], $offset, 4), false); $offset += 4; $info['comments_raw'][$i]['marker_id'] = getid3_lib::BigEndian2Int(substr($thisfile_riff[$RIFFsubtype]['COMT'][0]['data'], $offset, 2), true); $offset += 2; $CommentLength = getid3_lib::BigEndian2Int(substr($thisfile_riff[$RIFFsubtype]['COMT'][0]['data'], $offset, 2), false); $offset += 2; $info['comments_raw'][$i]['comment'] = substr($thisfile_riff[$RIFFsubtype]['COMT'][0]['data'], $offset, $CommentLength); $offset += $CommentLength; $info['comments_raw'][$i]['timestamp_unix'] = getid3_lib::DateMac2Unix($info['comments_raw'][$i]['timestamp']); $thisfile_riff['comments']['comment'][] = $info['comments_raw'][$i]['comment']; } } $CommentsChunkNames = array('NAME'=>'title', 'author'=>'artist', '(c) '=>'copyright', 'ANNO'=>'comment'); foreach ($CommentsChunkNames as $key => $value) { if (isset($thisfile_riff[$RIFFsubtype][$key][0]['data'])) { // https://github.com/JamesHeinrich/getID3/issues/430 $null_terminator_rows = explode("\x00", $thisfile_riff[$RIFFsubtype][$key][0]['data']); $thisfile_riff['comments'][$value][] = $null_terminator_rows[0]; } } /* if (isset($thisfile_riff[$RIFFsubtype]['ID3 '])) { getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.tag.id3v2.php', __FILE__, true); $getid3_temp = new getID3(); $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_id3v2 = new getid3_id3v2($getid3_temp); $getid3_id3v2->StartingOffset = $thisfile_riff[$RIFFsubtype]['ID3 '][0]['offset'] + 8; if ($thisfile_riff[$RIFFsubtype]['ID3 '][0]['valid'] = $getid3_id3v2->Analyze()) { $info['id3v2'] = $getid3_temp->info['id3v2']; } unset($getid3_temp, $getid3_id3v2); } */ break; // http://en.wikipedia.org/wiki/8SVX case '8SVX': $info['fileformat'] = '8svx'; $info['mime_type'] = 'audio/8svx'; $thisfile_audio['bitrate_mode'] = 'cbr'; $thisfile_audio_dataformat = '8svx'; $thisfile_audio['bits_per_sample'] = 8; $thisfile_audio['channels'] = 1; // overridden below, if need be $ActualBitsPerSample = 0; if (isset($thisfile_riff[$RIFFsubtype]['BODY'][0]['offset'])) { $info['avdataoffset'] = $thisfile_riff[$RIFFsubtype]['BODY'][0]['offset'] + 8; $info['avdataend'] = $info['avdataoffset'] + $thisfile_riff[$RIFFsubtype]['BODY'][0]['size']; if ($info['avdataend'] > $info['filesize']) { $this->warning('Probable truncated AIFF file: expecting '.$thisfile_riff[$RIFFsubtype]['BODY'][0]['size'].' bytes of audio data, only '.($info['filesize'] - $info['avdataoffset']).' bytes found'); } } if (isset($thisfile_riff[$RIFFsubtype]['VHDR'][0]['offset'])) { // shortcut $thisfile_riff_RIFFsubtype_VHDR_0 = &$thisfile_riff[$RIFFsubtype]['VHDR'][0]; $thisfile_riff_RIFFsubtype_VHDR_0['oneShotHiSamples'] = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIFFsubtype_VHDR_0['data'], 0, 4)); $thisfile_riff_RIFFsubtype_VHDR_0['repeatHiSamples'] = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIFFsubtype_VHDR_0['data'], 4, 4)); $thisfile_riff_RIFFsubtype_VHDR_0['samplesPerHiCycle'] = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIFFsubtype_VHDR_0['data'], 8, 4)); $thisfile_riff_RIFFsubtype_VHDR_0['samplesPerSec'] = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIFFsubtype_VHDR_0['data'], 12, 2)); $thisfile_riff_RIFFsubtype_VHDR_0['ctOctave'] = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIFFsubtype_VHDR_0['data'], 14, 1)); $thisfile_riff_RIFFsubtype_VHDR_0['sCompression'] = getid3_lib::BigEndian2Int(substr($thisfile_riff_RIFFsubtype_VHDR_0['data'], 15, 1)); $thisfile_riff_RIFFsubtype_VHDR_0['Volume'] = getid3_lib::FixedPoint16_16(substr($thisfile_riff_RIFFsubtype_VHDR_0['data'], 16, 4)); $thisfile_audio['sample_rate'] = $thisfile_riff_RIFFsubtype_VHDR_0['samplesPerSec']; switch ($thisfile_riff_RIFFsubtype_VHDR_0['sCompression']) { case 0: $thisfile_audio['codec'] = 'Pulse Code Modulation (PCM)'; $thisfile_audio['lossless'] = true; $ActualBitsPerSample = 8; break; case 1: $thisfile_audio['codec'] = 'Fibonacci-delta encoding'; $thisfile_audio['lossless'] = false; $ActualBitsPerSample = 4; break; default: $this->warning('Unexpected sCompression value in 8SVX.VHDR chunk - expecting 0 or 1, found "'.$thisfile_riff_RIFFsubtype_VHDR_0['sCompression'].'"'); break; } } if (isset($thisfile_riff[$RIFFsubtype]['CHAN'][0]['data'])) { $ChannelsIndex = getid3_lib::BigEndian2Int(substr($thisfile_riff[$RIFFsubtype]['CHAN'][0]['data'], 0, 4)); switch ($ChannelsIndex) { case 6: // Stereo $thisfile_audio['channels'] = 2; break; case 2: // Left channel only case 4: // Right channel only $thisfile_audio['channels'] = 1; break; default: $this->warning('Unexpected value in 8SVX.CHAN chunk - expecting 2 or 4 or 6, found "'.$ChannelsIndex.'"'); break; } } $CommentsChunkNames = array('NAME'=>'title', 'author'=>'artist', '(c) '=>'copyright', 'ANNO'=>'comment'); foreach ($CommentsChunkNames as $key => $value) { if (isset($thisfile_riff[$RIFFsubtype][$key][0]['data'])) { // https://github.com/JamesHeinrich/getID3/issues/430 $null_terminator_rows = explode("\x00", $thisfile_riff[$RIFFsubtype][$key][0]['data']); $thisfile_riff['comments'][$value][] = $null_terminator_rows[0]; } } $thisfile_audio['bitrate'] = $thisfile_audio['sample_rate'] * $ActualBitsPerSample * $thisfile_audio['channels']; if (!empty($thisfile_audio['bitrate'])) { $info['playtime_seconds'] = ($info['avdataend'] - $info['avdataoffset']) / ($thisfile_audio['bitrate'] / 8); } break; case 'CDXA': $info['fileformat'] = 'vcd'; // Asume Video CD $info['mime_type'] = 'video/mpeg'; if (!empty($thisfile_riff['CDXA']['data'][0]['size'])) { getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio-video.mpeg.php', __FILE__, true); $getid3_temp = new getID3(); $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_mpeg = new getid3_mpeg($getid3_temp); $getid3_mpeg->Analyze(); if (empty($getid3_temp->info['error'])) { $info['audio'] = $getid3_temp->info['audio']; $info['video'] = $getid3_temp->info['video']; $info['mpeg'] = $getid3_temp->info['mpeg']; $info['warning'] = $getid3_temp->info['warning']; } unset($getid3_temp, $getid3_mpeg); } break; case 'WEBP': // https://developers.google.com/speed/webp/docs/riff_container // https://tools.ietf.org/html/rfc6386 // https://chromium.googlesource.com/webm/libwebp/+/master/doc/webp-lossless-bitstream-spec.txt $info['fileformat'] = 'webp'; $info['mime_type'] = 'image/webp'; if (!empty($thisfile_riff['WEBP']['VP8 '][0]['size'])) { $old_offset = $this->ftell(); $this->fseek($thisfile_riff['WEBP']['VP8 '][0]['offset'] + 8); // 4 bytes "VP8 " + 4 bytes chunk size $WEBP_VP8_header = $this->fread(10); $this->fseek($old_offset); if (substr($WEBP_VP8_header, 3, 3) == "\x9D\x01\x2A") { $thisfile_riff['WEBP']['VP8 '][0]['keyframe'] = !(getid3_lib::LittleEndian2Int(substr($WEBP_VP8_header, 0, 3)) & 0x800000); $thisfile_riff['WEBP']['VP8 '][0]['version'] = (getid3_lib::LittleEndian2Int(substr($WEBP_VP8_header, 0, 3)) & 0x700000) >> 20; $thisfile_riff['WEBP']['VP8 '][0]['show_frame'] = (getid3_lib::LittleEndian2Int(substr($WEBP_VP8_header, 0, 3)) & 0x080000); $thisfile_riff['WEBP']['VP8 '][0]['data_bytes'] = (getid3_lib::LittleEndian2Int(substr($WEBP_VP8_header, 0, 3)) & 0x07FFFF) >> 0; $thisfile_riff['WEBP']['VP8 '][0]['scale_x'] = (getid3_lib::LittleEndian2Int(substr($WEBP_VP8_header, 6, 2)) & 0xC000) >> 14; $thisfile_riff['WEBP']['VP8 '][0]['width'] = (getid3_lib::LittleEndian2Int(substr($WEBP_VP8_header, 6, 2)) & 0x3FFF); $thisfile_riff['WEBP']['VP8 '][0]['scale_y'] = (getid3_lib::LittleEndian2Int(substr($WEBP_VP8_header, 8, 2)) & 0xC000) >> 14; $thisfile_riff['WEBP']['VP8 '][0]['height'] = (getid3_lib::LittleEndian2Int(substr($WEBP_VP8_header, 8, 2)) & 0x3FFF); $info['video']['resolution_x'] = $thisfile_riff['WEBP']['VP8 '][0]['width']; $info['video']['resolution_y'] = $thisfile_riff['WEBP']['VP8 '][0]['height']; } else { $this->error('Expecting 9D 01 2A at offset '.($thisfile_riff['WEBP']['VP8 '][0]['offset'] + 8 + 3).', found "'.getid3_lib::PrintHexBytes(substr($WEBP_VP8_header, 3, 3)).'"'); } } if (!empty($thisfile_riff['WEBP']['VP8L'][0]['size'])) { $old_offset = $this->ftell(); $this->fseek($thisfile_riff['WEBP']['VP8L'][0]['offset'] + 8); // 4 bytes "VP8L" + 4 bytes chunk size $WEBP_VP8L_header = $this->fread(10); $this->fseek($old_offset); if (substr($WEBP_VP8L_header, 0, 1) == "\x2F") { $width_height_flags = getid3_lib::LittleEndian2Bin(substr($WEBP_VP8L_header, 1, 4)); $thisfile_riff['WEBP']['VP8L'][0]['width'] = bindec(substr($width_height_flags, 18, 14)) + 1; $thisfile_riff['WEBP']['VP8L'][0]['height'] = bindec(substr($width_height_flags, 4, 14)) + 1; $thisfile_riff['WEBP']['VP8L'][0]['alpha_is_used'] = (bool) bindec(substr($width_height_flags, 3, 1)); $thisfile_riff['WEBP']['VP8L'][0]['version'] = bindec(substr($width_height_flags, 0, 3)); $info['video']['resolution_x'] = $thisfile_riff['WEBP']['VP8L'][0]['width']; $info['video']['resolution_y'] = $thisfile_riff['WEBP']['VP8L'][0]['height']; } else { $this->error('Expecting 2F at offset '.($thisfile_riff['WEBP']['VP8L'][0]['offset'] + 8).', found "'.getid3_lib::PrintHexBytes(substr($WEBP_VP8L_header, 0, 1)).'"'); } } break; default: $this->error('Unknown RIFF type: expecting one of (WAVE|RMP3|AVI |CDDA|AIFF|AIFC|8SVX|CDXA|WEBP), found "'.$RIFFsubtype.'" instead'); //unset($info['fileformat']); } switch ($RIFFsubtype) { case 'WAVE': case 'AIFF': case 'AIFC': $ID3v2_key_good = 'id3 '; $ID3v2_keys_bad = array('ID3 ', 'tag '); foreach ($ID3v2_keys_bad as $ID3v2_key_bad) { if (isset($thisfile_riff[$RIFFsubtype][$ID3v2_key_bad]) && !array_key_exists($ID3v2_key_good, $thisfile_riff[$RIFFsubtype])) { $thisfile_riff[$RIFFsubtype][$ID3v2_key_good] = $thisfile_riff[$RIFFsubtype][$ID3v2_key_bad]; $this->warning('mapping "'.$ID3v2_key_bad.'" chunk to "'.$ID3v2_key_good.'"'); } } if (isset($thisfile_riff[$RIFFsubtype]['id3 '])) { getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.tag.id3v2.php', __FILE__, true); $getid3_temp = new getID3(); $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_id3v2 = new getid3_id3v2($getid3_temp); $getid3_id3v2->StartingOffset = $thisfile_riff[$RIFFsubtype]['id3 '][0]['offset'] + 8; if ($thisfile_riff[$RIFFsubtype]['id3 '][0]['valid'] = $getid3_id3v2->Analyze()) { $info['id3v2'] = $getid3_temp->info['id3v2']; } unset($getid3_temp, $getid3_id3v2); } break; } if (isset($thisfile_riff_WAVE['DISP']) && is_array($thisfile_riff_WAVE['DISP'])) { $thisfile_riff['comments']['title'][] = trim(substr($thisfile_riff_WAVE['DISP'][count($thisfile_riff_WAVE['DISP']) - 1]['data'], 4)); } if (isset($thisfile_riff_WAVE['INFO']) && is_array($thisfile_riff_WAVE['INFO'])) { self::parseComments($thisfile_riff_WAVE['INFO'], $thisfile_riff['comments']); } if (isset($thisfile_riff['AVI ']['INFO']) && is_array($thisfile_riff['AVI ']['INFO'])) { self::parseComments($thisfile_riff['AVI ']['INFO'], $thisfile_riff['comments']); } if (empty($thisfile_audio['encoder']) && !empty($info['mpeg']['audio']['LAME']['short_version'])) { $thisfile_audio['encoder'] = $info['mpeg']['audio']['LAME']['short_version']; } if (!isset($info['playtime_seconds'])) { $info['playtime_seconds'] = 0; } if (isset($thisfile_riff_raw['strh'][0]['dwLength']) && isset($thisfile_riff_raw['avih']['dwMicroSecPerFrame'])) { // @phpstan-ignore-line // needed for >2GB AVIs where 'avih' chunk only lists number of frames in that chunk, not entire movie $info['playtime_seconds'] = $thisfile_riff_raw['strh'][0]['dwLength'] * ($thisfile_riff_raw['avih']['dwMicroSecPerFrame'] / 1000000); } elseif (isset($thisfile_riff_raw['avih']['dwTotalFrames']) && isset($thisfile_riff_raw['avih']['dwMicroSecPerFrame'])) { // @phpstan-ignore-line $info['playtime_seconds'] = $thisfile_riff_raw['avih']['dwTotalFrames'] * ($thisfile_riff_raw['avih']['dwMicroSecPerFrame'] / 1000000); } if ($info['playtime_seconds'] > 0) { if ($thisfile_riff_audio !== null && $thisfile_riff_video !== null) { if (!isset($info['bitrate'])) { $info['bitrate'] = ((($info['avdataend'] - $info['avdataoffset']) / $info['playtime_seconds']) * 8); } } elseif ($thisfile_riff_audio !== null && $thisfile_riff_video === null) { // @phpstan-ignore-line if (!isset($thisfile_audio['bitrate'])) { $thisfile_audio['bitrate'] = ((($info['avdataend'] - $info['avdataoffset']) / $info['playtime_seconds']) * 8); } } elseif ($thisfile_riff_audio === null && $thisfile_riff_video !== null) { if (!isset($thisfile_video['bitrate'])) { $thisfile_video['bitrate'] = ((($info['avdataend'] - $info['avdataoffset']) / $info['playtime_seconds']) * 8); } } } if (isset($thisfile_riff_video) && isset($thisfile_audio['bitrate']) && ($thisfile_audio['bitrate'] > 0) && ($info['playtime_seconds'] > 0)) { $info['bitrate'] = ((($info['avdataend'] - $info['avdataoffset']) / $info['playtime_seconds']) * 8); $thisfile_audio['bitrate'] = 0; $thisfile_video['bitrate'] = $info['bitrate']; foreach ($thisfile_riff_audio as $channelnumber => $audioinfoarray) { $thisfile_video['bitrate'] -= $audioinfoarray['bitrate']; $thisfile_audio['bitrate'] += $audioinfoarray['bitrate']; } if ($thisfile_video['bitrate'] <= 0) { unset($thisfile_video['bitrate']); } if ($thisfile_audio['bitrate'] <= 0) { unset($thisfile_audio['bitrate']); } } if (isset($info['mpeg']['audio'])) { $thisfile_audio_dataformat = 'mp'.$info['mpeg']['audio']['layer']; $thisfile_audio['sample_rate'] = $info['mpeg']['audio']['sample_rate']; $thisfile_audio['channels'] = $info['mpeg']['audio']['channels']; $thisfile_audio['bitrate'] = $info['mpeg']['audio']['bitrate']; $thisfile_audio['bitrate_mode'] = strtolower($info['mpeg']['audio']['bitrate_mode']); if (!empty($info['mpeg']['audio']['codec'])) { $thisfile_audio['codec'] = $info['mpeg']['audio']['codec'].' '.$thisfile_audio['codec']; } if (!empty($thisfile_audio['streams'])) { foreach ($thisfile_audio['streams'] as $streamnumber => $streamdata) { if ($streamdata['dataformat'] == $thisfile_audio_dataformat) { $thisfile_audio['streams'][$streamnumber]['sample_rate'] = $thisfile_audio['sample_rate']; $thisfile_audio['streams'][$streamnumber]['channels'] = $thisfile_audio['channels']; $thisfile_audio['streams'][$streamnumber]['bitrate'] = $thisfile_audio['bitrate']; $thisfile_audio['streams'][$streamnumber]['bitrate_mode'] = $thisfile_audio['bitrate_mode']; $thisfile_audio['streams'][$streamnumber]['codec'] = $thisfile_audio['codec']; } } } $getid3_mp3 = new getid3_mp3($this->getid3); $thisfile_audio['encoder_options'] = $getid3_mp3->GuessEncoderOptions(); unset($getid3_mp3); } if (!empty($thisfile_riff_raw['fmt ']['wBitsPerSample']) && ($thisfile_riff_raw['fmt ']['wBitsPerSample'] > 0)) { switch ($thisfile_audio_dataformat) { case 'ac3': // ignore bits_per_sample break; default: $thisfile_audio['bits_per_sample'] = $thisfile_riff_raw['fmt ']['wBitsPerSample']; break; } } if (empty($thisfile_riff_raw)) { unset($thisfile_riff['raw']); } if (empty($thisfile_riff_audio)) { unset($thisfile_riff['audio']); } if (empty($thisfile_riff_video)) { unset($thisfile_riff['video']); } return true; } /** * @param int $startoffset * @param int $maxoffset * * @return array|false * * @throws Exception * @throws getid3_exception */ public function ParseRIFFAMV($startoffset, $maxoffset) { // AMV files are RIFF-AVI files with parts of the spec deliberately broken, such as chunk size fields hardcoded to zero (because players known in hardware that these fields are always a certain size // https://code.google.com/p/amv-codec-tools/wiki/AmvDocumentation //typedef struct _amvmainheader { //FOURCC fcc; // 'amvh' //DWORD cb; //DWORD dwMicroSecPerFrame; //BYTE reserve[28]; //DWORD dwWidth; //DWORD dwHeight; //DWORD dwSpeed; //DWORD reserve0; //DWORD reserve1; //BYTE bTimeSec; //BYTE bTimeMin; //WORD wTimeHour; //} AMVMAINHEADER; $info = &$this->getid3->info; $RIFFchunk = false; try { $this->fseek($startoffset); $maxoffset = min($maxoffset, $info['avdataend']); $AMVheader = $this->fread(284); if (substr($AMVheader, 0, 8) != 'hdrlamvh') { throw new Exception('expecting "hdrlamv" at offset '.($startoffset + 0).', found "'.substr($AMVheader, 0, 8).'"'); } if (substr($AMVheader, 8, 4) != "\x38\x00\x00\x00") { // "amvh" chunk size, hardcoded to 0x38 = 56 bytes throw new Exception('expecting "0x38000000" at offset '.($startoffset + 8).', found "'.getid3_lib::PrintHexBytes(substr($AMVheader, 8, 4)).'"'); } $RIFFchunk = array(); $RIFFchunk['amvh']['us_per_frame'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 12, 4)); $RIFFchunk['amvh']['reserved28'] = substr($AMVheader, 16, 28); // null? reserved? $RIFFchunk['amvh']['resolution_x'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 44, 4)); $RIFFchunk['amvh']['resolution_y'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 48, 4)); $RIFFchunk['amvh']['frame_rate_int'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 52, 4)); $RIFFchunk['amvh']['reserved0'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 56, 4)); // 1? reserved? $RIFFchunk['amvh']['reserved1'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 60, 4)); // 0? reserved? $RIFFchunk['amvh']['runtime_sec'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 64, 1)); $RIFFchunk['amvh']['runtime_min'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 65, 1)); $RIFFchunk['amvh']['runtime_hrs'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 66, 2)); $info['video']['frame_rate'] = 1000000 / $RIFFchunk['amvh']['us_per_frame']; $info['video']['resolution_x'] = $RIFFchunk['amvh']['resolution_x']; $info['video']['resolution_y'] = $RIFFchunk['amvh']['resolution_y']; $info['playtime_seconds'] = ($RIFFchunk['amvh']['runtime_hrs'] * 3600) + ($RIFFchunk['amvh']['runtime_min'] * 60) + $RIFFchunk['amvh']['runtime_sec']; // the rest is all hardcoded(?) and does not appear to be useful until you get to audio info at offset 256, even then everything is probably hardcoded if (substr($AMVheader, 68, 20) != 'LIST'."\x00\x00\x00\x00".'strlstrh'."\x38\x00\x00\x00") { throw new Exception('expecting "LIST<0x00000000>strlstrh<0x38000000>" at offset '.($startoffset + 68).', found "'.getid3_lib::PrintHexBytes(substr($AMVheader, 68, 20)).'"'); } // followed by 56 bytes of null: substr($AMVheader, 88, 56) -> 144 if (substr($AMVheader, 144, 8) != 'strf'."\x24\x00\x00\x00") { throw new Exception('expecting "strf<0x24000000>" at offset '.($startoffset + 144).', found "'.getid3_lib::PrintHexBytes(substr($AMVheader, 144, 8)).'"'); } // followed by 36 bytes of null: substr($AMVheader, 144, 36) -> 180 if (substr($AMVheader, 188, 20) != 'LIST'."\x00\x00\x00\x00".'strlstrh'."\x30\x00\x00\x00") { throw new Exception('expecting "LIST<0x00000000>strlstrh<0x30000000>" at offset '.($startoffset + 188).', found "'.getid3_lib::PrintHexBytes(substr($AMVheader, 188, 20)).'"'); } // followed by 48 bytes of null: substr($AMVheader, 208, 48) -> 256 if (substr($AMVheader, 256, 8) != 'strf'."\x14\x00\x00\x00") { throw new Exception('expecting "strf<0x14000000>" at offset '.($startoffset + 256).', found "'.getid3_lib::PrintHexBytes(substr($AMVheader, 256, 8)).'"'); } // followed by 20 bytes of a modified WAVEFORMATEX: // typedef struct { // WORD wFormatTag; //(Fixme: this is equal to PCM's 0x01 format code) // WORD nChannels; //(Fixme: this is always 1) // DWORD nSamplesPerSec; //(Fixme: for all known sample files this is equal to 22050) // DWORD nAvgBytesPerSec; //(Fixme: for all known sample files this is equal to 44100) // WORD nBlockAlign; //(Fixme: this seems to be 2 in AMV files, is this correct ?) // WORD wBitsPerSample; //(Fixme: this seems to be 16 in AMV files instead of the expected 4) // WORD cbSize; //(Fixme: this seems to be 0 in AMV files) // WORD reserved; // } WAVEFORMATEX; $RIFFchunk['strf']['wformattag'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 264, 2)); $RIFFchunk['strf']['nchannels'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 266, 2)); $RIFFchunk['strf']['nsamplespersec'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 268, 4)); $RIFFchunk['strf']['navgbytespersec'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 272, 4)); $RIFFchunk['strf']['nblockalign'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 276, 2)); $RIFFchunk['strf']['wbitspersample'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 278, 2)); $RIFFchunk['strf']['cbsize'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 280, 2)); $RIFFchunk['strf']['reserved'] = getid3_lib::LittleEndian2Int(substr($AMVheader, 282, 2)); $info['audio']['lossless'] = false; $info['audio']['sample_rate'] = $RIFFchunk['strf']['nsamplespersec']; $info['audio']['channels'] = $RIFFchunk['strf']['nchannels']; $info['audio']['bits_per_sample'] = $RIFFchunk['strf']['wbitspersample']; $info['audio']['bitrate'] = $info['audio']['sample_rate'] * $info['audio']['channels'] * $info['audio']['bits_per_sample']; $info['audio']['bitrate_mode'] = 'cbr'; } catch (getid3_exception $e) { if ($e->getCode() == 10) { $this->warning('RIFFAMV parser: '.$e->getMessage()); } else { throw $e; } } return $RIFFchunk; } /** * @param int $startoffset * @param int $maxoffset * * @return array|false * @throws getid3_exception */ public function ParseRIFF($startoffset, $maxoffset) { $info = &$this->getid3->info; $RIFFchunk = array(); $FoundAllChunksWeNeed = false; $LISTchunkParent = null; $LISTchunkMaxOffset = null; $AC3syncwordBytes = pack('n', getid3_ac3::syncword); // 0x0B77 -> "\x0B\x77" try { $this->fseek($startoffset); $maxoffset = min($maxoffset, $info['avdataend']); while ($this->ftell() < $maxoffset) { $chunknamesize = $this->fread(8); //$chunkname = substr($chunknamesize, 0, 4); $chunkname = str_replace("\x00", '_', substr($chunknamesize, 0, 4)); // note: chunk names of 4 null bytes do appear to be legal (has been observed inside INFO and PRMI chunks, for example), but makes traversing array keys more difficult $chunksize = $this->EitherEndian2Int(substr($chunknamesize, 4, 4)); //if (strlen(trim($chunkname, "\x00")) < 4) { if (strlen($chunkname) < 4) { $this->error('Expecting chunk name at offset '.($this->ftell() - 8).' but found nothing. Aborting RIFF parsing.'); break; } if ($chunksize == 0) { if ($chunkname == 'JUNK') { // this is allowed } elseif ($chunkname == 'data') { // https://github.com/JamesHeinrich/getID3/issues/468 // may occur in streaming files where the data size is unknown $chunksize = $info['avdataend'] - $this->ftell(); $this->warning('RIFF.data size field is empty, assuming the correct value is filesize-offset ('.$chunksize.')'); } else { $this->warning('Chunk ('.$chunkname.') size at offset '.($this->ftell() - 4).' is zero. Aborting RIFF parsing.'); break; } } if (($chunksize % 2) != 0) { // all structures are packed on word boundaries $chunksize++; } switch ($chunkname) { case 'LIST': $listname = $this->fread(4); if (preg_match('#^(movi|rec )$#i', $listname)) { $RIFFchunk[$listname]['offset'] = $this->ftell() - 4; $RIFFchunk[$listname]['size'] = $chunksize; if (!$FoundAllChunksWeNeed) { $WhereWeWere = $this->ftell(); $AudioChunkHeader = $this->fread(12); $AudioChunkStreamNum = substr($AudioChunkHeader, 0, 2); $AudioChunkStreamType = substr($AudioChunkHeader, 2, 2); $AudioChunkSize = getid3_lib::LittleEndian2Int(substr($AudioChunkHeader, 4, 4)); if ($AudioChunkStreamType == 'wb') { $FirstFourBytes = substr($AudioChunkHeader, 8, 4); if (preg_match('/^\xFF[\xE2-\xE7\xF2-\xF7\xFA-\xFF][\x00-\xEB]/s', $FirstFourBytes)) { // MP3 if (getid3_mp3::MPEGaudioHeaderBytesValid($FirstFourBytes)) { $getid3_temp = new getID3(); $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_temp->info['avdataoffset'] = $this->ftell() - 4; $getid3_temp->info['avdataend'] = $this->ftell() + $AudioChunkSize; $getid3_mp3 = new getid3_mp3($getid3_temp, __CLASS__); $getid3_mp3->getOnlyMPEGaudioInfo($getid3_temp->info['avdataoffset'], false); if (isset($getid3_temp->info['mpeg']['audio'])) { $info['mpeg']['audio'] = $getid3_temp->info['mpeg']['audio']; $info['audio'] = $getid3_temp->info['audio']; $info['audio']['dataformat'] = 'mp'.$info['mpeg']['audio']['layer']; $info['audio']['sample_rate'] = $info['mpeg']['audio']['sample_rate']; $info['audio']['channels'] = $info['mpeg']['audio']['channels']; $info['audio']['bitrate'] = $info['mpeg']['audio']['bitrate']; $info['audio']['bitrate_mode'] = strtolower($info['mpeg']['audio']['bitrate_mode']); //$info['bitrate'] = $info['audio']['bitrate']; } unset($getid3_temp, $getid3_mp3); } } elseif (strpos($FirstFourBytes, $AC3syncwordBytes) === 0) { // AC3 $getid3_temp = new getID3(); $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_temp->info['avdataoffset'] = $this->ftell() - 4; $getid3_temp->info['avdataend'] = $this->ftell() + $AudioChunkSize; $getid3_ac3 = new getid3_ac3($getid3_temp); $getid3_ac3->Analyze(); if (empty($getid3_temp->info['error'])) { $info['audio'] = $getid3_temp->info['audio']; $info['ac3'] = $getid3_temp->info['ac3']; if (!empty($getid3_temp->info['warning'])) { foreach ($getid3_temp->info['warning'] as $key => $value) { $this->warning($value); } } } unset($getid3_temp, $getid3_ac3); } } $FoundAllChunksWeNeed = true; $this->fseek($WhereWeWere); } $this->fseek($chunksize - 4, SEEK_CUR); } else { if (!isset($RIFFchunk[$listname])) { $RIFFchunk[$listname] = array(); } $LISTchunkParent = $listname; $LISTchunkMaxOffset = $this->ftell() - 4 + $chunksize; if ($parsedChunk = $this->ParseRIFF($this->ftell(), $LISTchunkMaxOffset)) { $RIFFchunk[$listname] = array_merge_recursive($RIFFchunk[$listname], $parsedChunk); } } break; default: if (preg_match('#^[0-9]{2}(wb|pc|dc|db)$#', $chunkname)) { $this->fseek($chunksize, SEEK_CUR); break; } $thisindex = 0; if (isset($RIFFchunk[$chunkname])) { $thisindex = count($RIFFchunk[$chunkname]); } $RIFFchunk[$chunkname][$thisindex]['offset'] = $this->ftell() - 8; $RIFFchunk[$chunkname][$thisindex]['size'] = $chunksize; switch ($chunkname) { case 'data': $info['avdataoffset'] = $this->ftell(); $info['avdataend'] = $info['avdataoffset'] + $chunksize; $testData = $this->fread(36); if ($testData === '') { break; } if (preg_match('/^\xFF[\xE2-\xE7\xF2-\xF7\xFA-\xFF][\x00-\xEB]/s', substr($testData, 0, 4))) { // Probably is MP3 data if (getid3_mp3::MPEGaudioHeaderBytesValid(substr($testData, 0, 4))) { $getid3_temp = new getID3(); $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_temp->info['avdataoffset'] = $info['avdataoffset']; $getid3_temp->info['avdataend'] = $info['avdataend']; $getid3_mp3 = new getid3_mp3($getid3_temp, __CLASS__); $getid3_mp3->getOnlyMPEGaudioInfo($info['avdataoffset'], false); if (!empty($getid3_temp->info['mpeg']['audio']['bitrate']) && ($getid3_temp->info['mpeg']['audio']['bitrate'] != 'free')) { // if it detects as "free" bitrate then it's almost certainly a false-match MP3 sync, ignore if (empty($getid3_temp->info['error'])) { $info['audio'] = $getid3_temp->info['audio']; $info['mpeg'] = $getid3_temp->info['mpeg']; } } unset($getid3_temp, $getid3_mp3); } } elseif (($isRegularAC3 = (substr($testData, 0, 2) == $AC3syncwordBytes)) || substr($testData, 8, 2) == strrev($AC3syncwordBytes)) { // This is probably AC-3 data $getid3_temp = new getID3(); if ($isRegularAC3) { $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_temp->info['avdataoffset'] = $info['avdataoffset']; $getid3_temp->info['avdataend'] = $info['avdataend']; } $getid3_ac3 = new getid3_ac3($getid3_temp); if ($isRegularAC3) { $getid3_ac3->Analyze(); } else { // Dolby Digital WAV // AC-3 content, but not encoded in same format as normal AC-3 file // For one thing, byte order is swapped $ac3_data = ''; for ($i = 0; $i < 28; $i += 2) { $ac3_data .= substr($testData, 8 + $i + 1, 1); $ac3_data .= substr($testData, 8 + $i + 0, 1); } $getid3_ac3->getid3->info['avdataoffset'] = 0; $getid3_ac3->getid3->info['avdataend'] = strlen($ac3_data); $getid3_ac3->AnalyzeString($ac3_data); } if (empty($getid3_temp->info['error'])) { $info['audio'] = $getid3_temp->info['audio']; $info['ac3'] = $getid3_temp->info['ac3']; if (!empty($getid3_temp->info['warning'])) { foreach ($getid3_temp->info['warning'] as $newerror) { $this->warning('getid3_ac3() says: ['.$newerror.']'); } } } unset($getid3_temp, $getid3_ac3); } elseif (preg_match('/^('.implode('|', array_map('preg_quote', getid3_dts::$syncwords)).')/', $testData)) { // This is probably DTS data $getid3_temp = new getID3(); $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_temp->info['avdataoffset'] = $info['avdataoffset']; $getid3_dts = new getid3_dts($getid3_temp); $getid3_dts->Analyze(); if (empty($getid3_temp->info['error'])) { $info['audio'] = $getid3_temp->info['audio']; $info['dts'] = $getid3_temp->info['dts']; $info['playtime_seconds'] = $getid3_temp->info['playtime_seconds']; // may not match RIFF calculations since DTS-WAV often used 14/16 bit-word packing if (!empty($getid3_temp->info['warning'])) { foreach ($getid3_temp->info['warning'] as $newerror) { $this->warning('getid3_dts() says: ['.$newerror.']'); } } } unset($getid3_temp, $getid3_dts); } elseif (substr($testData, 0, 4) == 'wvpk') { // This is WavPack data $info['wavpack']['offset'] = $info['avdataoffset']; $info['wavpack']['size'] = getid3_lib::LittleEndian2Int(substr($testData, 4, 4)); $this->parseWavPackHeader(substr($testData, 8, 28)); } else { // This is some other kind of data (quite possibly just PCM) // do nothing special, just skip it } $nextoffset = $info['avdataend']; $this->fseek($nextoffset); break; case 'iXML': case 'bext': case 'cart': case 'fmt ': case 'strh': case 'strf': case 'indx': case 'MEXT': case 'DISP': case 'wamd': case 'guan': // always read data in case 'JUNK': // should be: never read data in // but some programs write their version strings in a JUNK chunk (e.g. VirtualDub, AVIdemux, etc) if ($chunksize < 1048576) { if ($chunksize > 0) { $RIFFchunk[$chunkname][$thisindex]['data'] = $this->fread($chunksize); if ($chunkname == 'JUNK') { if (preg_match('#^([\\x20-\\x7F]+)#', $RIFFchunk[$chunkname][$thisindex]['data'], $matches)) { // only keep text characters [chr(32)-chr(127)] $info['riff']['comments']['junk'][] = trim($matches[1]); } // but if nothing there, ignore // remove the key in either case unset($RIFFchunk[$chunkname][$thisindex]['data']); } } } else { $this->warning('Chunk "'.$chunkname.'" at offset '.$this->ftell().' is unexpectedly larger than 1MB (claims to be '.number_format($chunksize).' bytes), skipping data'); $this->fseek($chunksize, SEEK_CUR); } break; //case 'IDVX': // $info['divxtag']['comments'] = self::ParseDIVXTAG($this->fread($chunksize)); // break; case 'scot': // https://cmsdk.com/node-js/adding-scot-chunk-to-wav-file.html $RIFFchunk[$chunkname][$thisindex]['data'] = $this->fread($chunksize); $RIFFchunk[$chunkname][$thisindex]['parsed']['alter'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 0, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['attrib'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 1, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['artnum'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 2, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['title'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 4, 43); // "name" in other documentation $RIFFchunk[$chunkname][$thisindex]['parsed']['copy'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 47, 4); $RIFFchunk[$chunkname][$thisindex]['parsed']['padd'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 51, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['asclen'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 52, 5); $RIFFchunk[$chunkname][$thisindex]['parsed']['startseconds'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 57, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['starthundredths'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 59, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['endseconds'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 61, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['endhundreths'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 63, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['sdate'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 65, 6); $RIFFchunk[$chunkname][$thisindex]['parsed']['kdate'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 71, 6); $RIFFchunk[$chunkname][$thisindex]['parsed']['start_hr'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 77, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['kill_hr'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 78, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['digital'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 79, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['sample_rate'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 80, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['stereo'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 82, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['compress'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 83, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['eomstrt'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 84, 4)); $RIFFchunk[$chunkname][$thisindex]['parsed']['eomlen'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 88, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['attrib2'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 90, 4)); $RIFFchunk[$chunkname][$thisindex]['parsed']['future1'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 94, 12); $RIFFchunk[$chunkname][$thisindex]['parsed']['catfontcolor'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 106, 4)); $RIFFchunk[$chunkname][$thisindex]['parsed']['catcolor'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 110, 4)); $RIFFchunk[$chunkname][$thisindex]['parsed']['segeompos'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 114, 4)); $RIFFchunk[$chunkname][$thisindex]['parsed']['vt_startsecs'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 118, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['vt_starthunds'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 120, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['priorcat'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 122, 3); $RIFFchunk[$chunkname][$thisindex]['parsed']['priorcopy'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 125, 4); $RIFFchunk[$chunkname][$thisindex]['parsed']['priorpadd'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 129, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['postcat'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 130, 3); $RIFFchunk[$chunkname][$thisindex]['parsed']['postcopy'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 133, 4); $RIFFchunk[$chunkname][$thisindex]['parsed']['postpadd'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 137, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['hrcanplay'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 138, 21); $RIFFchunk[$chunkname][$thisindex]['parsed']['future2'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 159, 108); $RIFFchunk[$chunkname][$thisindex]['parsed']['artist'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 267, 34); $RIFFchunk[$chunkname][$thisindex]['parsed']['comment'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 301, 34); // "trivia" in other documentation $RIFFchunk[$chunkname][$thisindex]['parsed']['intro'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 335, 2); $RIFFchunk[$chunkname][$thisindex]['parsed']['end'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 337, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['year'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 338, 4); $RIFFchunk[$chunkname][$thisindex]['parsed']['obsolete2'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 342, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['rec_hr'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 343, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['rdate'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 344, 6); $RIFFchunk[$chunkname][$thisindex]['parsed']['mpeg_bitrate'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 350, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['pitch'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 352, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['playlevel'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 354, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['lenvalid'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 356, 1); $RIFFchunk[$chunkname][$thisindex]['parsed']['filelength'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 357, 4)); $RIFFchunk[$chunkname][$thisindex]['parsed']['newplaylevel'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 361, 2)); $RIFFchunk[$chunkname][$thisindex]['parsed']['chopsize'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 363, 4)); $RIFFchunk[$chunkname][$thisindex]['parsed']['vteomovr'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 367, 4)); $RIFFchunk[$chunkname][$thisindex]['parsed']['desiredlen'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 371, 4)); $RIFFchunk[$chunkname][$thisindex]['parsed']['triggers'] = getid3_lib::LittleEndian2Int(substr($RIFFchunk[$chunkname][$thisindex]['data'], 375, 4)); $RIFFchunk[$chunkname][$thisindex]['parsed']['fillout'] = substr($RIFFchunk[$chunkname][$thisindex]['data'], 379, 33); foreach (array('title', 'artist', 'comment') as $key) { if (trim($RIFFchunk[$chunkname][$thisindex]['parsed'][$key])) { $info['riff']['comments'][$key] = array($RIFFchunk[$chunkname][$thisindex]['parsed'][$key]); } } if ($RIFFchunk[$chunkname][$thisindex]['parsed']['filelength'] && !empty($info['filesize']) && ($RIFFchunk[$chunkname][$thisindex]['parsed']['filelength'] != $info['filesize'])) { $this->warning('RIFF.WAVE.scot.filelength ('.$RIFFchunk[$chunkname][$thisindex]['parsed']['filelength'].') different from actual filesize ('.$info['filesize'].')'); } break; default: if (!empty($LISTchunkParent) && isset($LISTchunkMaxOffset) && (($RIFFchunk[$chunkname][$thisindex]['offset'] + $RIFFchunk[$chunkname][$thisindex]['size']) <= $LISTchunkMaxOffset)) { $RIFFchunk[$LISTchunkParent][$chunkname][$thisindex]['offset'] = $RIFFchunk[$chunkname][$thisindex]['offset']; $RIFFchunk[$LISTchunkParent][$chunkname][$thisindex]['size'] = $RIFFchunk[$chunkname][$thisindex]['size']; unset($RIFFchunk[$chunkname][$thisindex]['offset']); unset($RIFFchunk[$chunkname][$thisindex]['size']); if (isset($RIFFchunk[$chunkname][$thisindex]) && empty($RIFFchunk[$chunkname][$thisindex])) { unset($RIFFchunk[$chunkname][$thisindex]); } if (count($RIFFchunk[$chunkname]) === 0) { unset($RIFFchunk[$chunkname]); } $RIFFchunk[$LISTchunkParent][$chunkname][$thisindex]['data'] = $this->fread($chunksize); } elseif ($chunksize < 2048) { // only read data in if smaller than 2kB $RIFFchunk[$chunkname][$thisindex]['data'] = $this->fread($chunksize); } else { $this->fseek($chunksize, SEEK_CUR); } break; } break; } } } catch (getid3_exception $e) { if ($e->getCode() == 10) { $this->warning('RIFF parser: '.$e->getMessage()); } else { throw $e; } } return !empty($RIFFchunk) ? $RIFFchunk : false; } /** * @param string $RIFFdata * * @return bool */ public function ParseRIFFdata(&$RIFFdata) { $info = &$this->getid3->info; if ($RIFFdata) { $tempfile = tempnam(GETID3_TEMP_DIR, 'getID3'); $fp_temp = fopen($tempfile, 'wb'); $RIFFdataLength = strlen($RIFFdata); $NewLengthString = getid3_lib::LittleEndian2String($RIFFdataLength, 4); for ($i = 0; $i < 4; $i++) { $RIFFdata[($i + 4)] = $NewLengthString[$i]; } fwrite($fp_temp, $RIFFdata); fclose($fp_temp); $getid3_temp = new getID3(); $getid3_temp->openfile($tempfile); $getid3_temp->info['filesize'] = $RIFFdataLength; $getid3_temp->info['filenamepath'] = $info['filenamepath']; $getid3_temp->info['tags'] = $info['tags']; $getid3_temp->info['warning'] = $info['warning']; $getid3_temp->info['error'] = $info['error']; $getid3_temp->info['comments'] = $info['comments']; $getid3_temp->info['audio'] = (isset($info['audio']) ? $info['audio'] : array()); $getid3_temp->info['video'] = (isset($info['video']) ? $info['video'] : array()); $getid3_riff = new getid3_riff($getid3_temp); $getid3_riff->Analyze(); $info['riff'] = $getid3_temp->info['riff']; $info['warning'] = $getid3_temp->info['warning']; $info['error'] = $getid3_temp->info['error']; $info['tags'] = $getid3_temp->info['tags']; $info['comments'] = $getid3_temp->info['comments']; unset($getid3_riff, $getid3_temp); unlink($tempfile); } return false; } /** * @param array $RIFFinfoArray * @param array $CommentsTargetArray * * @return bool */ public static function parseComments(&$RIFFinfoArray, &$CommentsTargetArray) { $RIFFinfoKeyLookup = array( 'IARL'=>'archivallocation', 'IART'=>'artist', 'ICDS'=>'costumedesigner', 'ICMS'=>'commissionedby', 'ICMT'=>'comment', 'ICNT'=>'country', 'ICOP'=>'copyright', 'ICRD'=>'creationdate', 'IDIM'=>'dimensions', 'IDIT'=>'digitizationdate', 'IDPI'=>'resolution', 'IDST'=>'distributor', 'IEDT'=>'editor', 'IENG'=>'engineers', 'IFRM'=>'accountofparts', 'IGNR'=>'genre', 'IKEY'=>'keywords', 'ILGT'=>'lightness', 'ILNG'=>'language', 'IMED'=>'orignalmedium', 'IMUS'=>'composer', 'INAM'=>'title', 'IPDS'=>'productiondesigner', 'IPLT'=>'palette', 'IPRD'=>'product', 'IPRO'=>'producer', 'IPRT'=>'part', 'IRTD'=>'rating', 'ISBJ'=>'subject', 'ISFT'=>'software', 'ISGN'=>'secondarygenre', 'ISHP'=>'sharpness', 'ISRC'=>'sourcesupplier', 'ISRF'=>'digitizationsource', 'ISTD'=>'productionstudio', 'ISTR'=>'starring', 'ITCH'=>'encoded_by', 'IWEB'=>'url', 'IWRI'=>'writer', '____'=>'comment', ); foreach ($RIFFinfoKeyLookup as $key => $value) { if (isset($RIFFinfoArray[$key])) { foreach ($RIFFinfoArray[$key] as $commentid => $commentdata) { if (!empty($commentdata['data']) && trim($commentdata['data']) != '') { if (isset($CommentsTargetArray[$value])) { $CommentsTargetArray[$value][] = trim($commentdata['data']); } else { $CommentsTargetArray[$value] = array(trim($commentdata['data'])); } } } } } return true; } /** * @param string $WaveFormatExData * * @return array */ public static function parseWAVEFORMATex($WaveFormatExData) { // shortcut $WaveFormatEx = array(); $WaveFormatEx['raw'] = array(); $WaveFormatEx_raw = &$WaveFormatEx['raw']; $WaveFormatEx_raw['wFormatTag'] = substr($WaveFormatExData, 0, 2); $WaveFormatEx_raw['nChannels'] = substr($WaveFormatExData, 2, 2); $WaveFormatEx_raw['nSamplesPerSec'] = substr($WaveFormatExData, 4, 4); $WaveFormatEx_raw['nAvgBytesPerSec'] = substr($WaveFormatExData, 8, 4); $WaveFormatEx_raw['nBlockAlign'] = substr($WaveFormatExData, 12, 2); $WaveFormatEx_raw['wBitsPerSample'] = substr($WaveFormatExData, 14, 2); if (strlen($WaveFormatExData) > 16) { $WaveFormatEx_raw['cbSize'] = substr($WaveFormatExData, 16, 2); } $WaveFormatEx_raw = array_map('getid3_lib::LittleEndian2Int', $WaveFormatEx_raw); $WaveFormatEx['codec'] = self::wFormatTagLookup($WaveFormatEx_raw['wFormatTag']); $WaveFormatEx['channels'] = $WaveFormatEx_raw['nChannels']; $WaveFormatEx['sample_rate'] = $WaveFormatEx_raw['nSamplesPerSec']; $WaveFormatEx['bitrate'] = $WaveFormatEx_raw['nAvgBytesPerSec'] * 8; $WaveFormatEx['bits_per_sample'] = $WaveFormatEx_raw['wBitsPerSample']; return $WaveFormatEx; } /** * @param string $WavPackChunkData * * @return bool */ public function parseWavPackHeader($WavPackChunkData) { // typedef struct { // char ckID [4]; // long ckSize; // short version; // short bits; // added for version 2.00 // short flags, shift; // added for version 3.00 // long total_samples, crc, crc2; // char extension [4], extra_bc, extras [3]; // } WavpackHeader; // shortcut $info = &$this->getid3->info; $info['wavpack'] = array(); $thisfile_wavpack = &$info['wavpack']; $thisfile_wavpack['version'] = getid3_lib::LittleEndian2Int(substr($WavPackChunkData, 0, 2)); if ($thisfile_wavpack['version'] >= 2) { $thisfile_wavpack['bits'] = getid3_lib::LittleEndian2Int(substr($WavPackChunkData, 2, 2)); } if ($thisfile_wavpack['version'] >= 3) { $thisfile_wavpack['flags_raw'] = getid3_lib::LittleEndian2Int(substr($WavPackChunkData, 4, 2)); $thisfile_wavpack['shift'] = getid3_lib::LittleEndian2Int(substr($WavPackChunkData, 6, 2)); $thisfile_wavpack['total_samples'] = getid3_lib::LittleEndian2Int(substr($WavPackChunkData, 8, 4)); $thisfile_wavpack['crc1'] = getid3_lib::LittleEndian2Int(substr($WavPackChunkData, 12, 4)); $thisfile_wavpack['crc2'] = getid3_lib::LittleEndian2Int(substr($WavPackChunkData, 16, 4)); $thisfile_wavpack['extension'] = substr($WavPackChunkData, 20, 4); $thisfile_wavpack['extra_bc'] = getid3_lib::LittleEndian2Int(substr($WavPackChunkData, 24, 1)); for ($i = 0; $i <= 2; $i++) { $thisfile_wavpack['extras'][] = getid3_lib::LittleEndian2Int(substr($WavPackChunkData, 25 + $i, 1)); } // shortcut $thisfile_wavpack['flags'] = array(); $thisfile_wavpack_flags = &$thisfile_wavpack['flags']; $thisfile_wavpack_flags['mono'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000001); $thisfile_wavpack_flags['fast_mode'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000002); $thisfile_wavpack_flags['raw_mode'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000004); $thisfile_wavpack_flags['calc_noise'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000008); $thisfile_wavpack_flags['high_quality'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000010); $thisfile_wavpack_flags['3_byte_samples'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000020); $thisfile_wavpack_flags['over_20_bits'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000040); $thisfile_wavpack_flags['use_wvc'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000080); $thisfile_wavpack_flags['noiseshaping'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000100); $thisfile_wavpack_flags['very_fast_mode'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000200); $thisfile_wavpack_flags['new_high_quality'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000400); $thisfile_wavpack_flags['cancel_extreme'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x000800); $thisfile_wavpack_flags['cross_decorrelation'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x001000); $thisfile_wavpack_flags['new_decorrelation'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x002000); $thisfile_wavpack_flags['joint_stereo'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x004000); $thisfile_wavpack_flags['extra_decorrelation'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x008000); $thisfile_wavpack_flags['override_noiseshape'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x010000); $thisfile_wavpack_flags['override_jointstereo'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x020000); $thisfile_wavpack_flags['copy_source_filetime'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x040000); $thisfile_wavpack_flags['create_exe'] = (bool) ($thisfile_wavpack['flags_raw'] & 0x080000); } return true; } /** * @param string $BITMAPINFOHEADER * @param bool $littleEndian * * @return array */ public static function ParseBITMAPINFOHEADER($BITMAPINFOHEADER, $littleEndian=true) { $parsed = array(); $parsed['biSize'] = substr($BITMAPINFOHEADER, 0, 4); // number of bytes required by the BITMAPINFOHEADER structure $parsed['biWidth'] = substr($BITMAPINFOHEADER, 4, 4); // width of the bitmap in pixels $parsed['biHeight'] = substr($BITMAPINFOHEADER, 8, 4); // height of the bitmap in pixels. If biHeight is positive, the bitmap is a 'bottom-up' DIB and its origin is the lower left corner. If biHeight is negative, the bitmap is a 'top-down' DIB and its origin is the upper left corner $parsed['biPlanes'] = substr($BITMAPINFOHEADER, 12, 2); // number of color planes on the target device. In most cases this value must be set to 1 $parsed['biBitCount'] = substr($BITMAPINFOHEADER, 14, 2); // Specifies the number of bits per pixels $parsed['biSizeImage'] = substr($BITMAPINFOHEADER, 20, 4); // size of the bitmap data section of the image (the actual pixel data, excluding BITMAPINFOHEADER and RGBQUAD structures) $parsed['biXPelsPerMeter'] = substr($BITMAPINFOHEADER, 24, 4); // horizontal resolution, in pixels per metre, of the target device $parsed['biYPelsPerMeter'] = substr($BITMAPINFOHEADER, 28, 4); // vertical resolution, in pixels per metre, of the target device $parsed['biClrUsed'] = substr($BITMAPINFOHEADER, 32, 4); // actual number of color indices in the color table used by the bitmap. If this value is zero, the bitmap uses the maximum number of colors corresponding to the value of the biBitCount member for the compression mode specified by biCompression $parsed['biClrImportant'] = substr($BITMAPINFOHEADER, 36, 4); // number of color indices that are considered important for displaying the bitmap. If this value is zero, all colors are important $parsed = array_map('getid3_lib::'.($littleEndian ? 'Little' : 'Big').'Endian2Int', $parsed); $parsed['fourcc'] = substr($BITMAPINFOHEADER, 16, 4); // compression identifier return $parsed; } /** * @param string $DIVXTAG * @param bool $raw * * @return array */ public static function ParseDIVXTAG($DIVXTAG, $raw=false) { // structure from "IDivX" source, Form1.frm, by "Greg Frazier of Daemonic Software Group", email: gfrazier@icestorm.net, web: http://dsg.cjb.net/ // source available at http://files.divx-digest.com/download/c663efe7ef8ad2e90bf4af4d3ea6188a/on0SWN2r/edit/IDivX.zip // 'Byte Layout: '1111111111111111 // '32 for Movie - 1 '1111111111111111 // '28 for Author - 6 '6666666666666666 // '4 for year - 2 '6666666666662222 // '3 for genre - 3 '7777777777777777 // '48 for Comments - 7 '7777777777777777 // '1 for Rating - 4 '7777777777777777 // '5 for Future Additions - 0 '333400000DIVXTAG // '128 bytes total static $DIVXTAGgenre = array( 0 => 'Action', 1 => 'Action/Adventure', 2 => 'Adventure', 3 => 'Adult', 4 => 'Anime', 5 => 'Cartoon', 6 => 'Claymation', 7 => 'Comedy', 8 => 'Commercial', 9 => 'Documentary', 10 => 'Drama', 11 => 'Home Video', 12 => 'Horror', 13 => 'Infomercial', 14 => 'Interactive', 15 => 'Mystery', 16 => 'Music Video', 17 => 'Other', 18 => 'Religion', 19 => 'Sci Fi', 20 => 'Thriller', 21 => 'Western', ), $DIVXTAGrating = array( 0 => 'Unrated', 1 => 'G', 2 => 'PG', 3 => 'PG-13', 4 => 'R', 5 => 'NC-17', ); $parsed = array(); $parsed['title'] = trim(substr($DIVXTAG, 0, 32)); $parsed['artist'] = trim(substr($DIVXTAG, 32, 28)); $parsed['year'] = intval(trim(substr($DIVXTAG, 60, 4))); $parsed['comment'] = trim(substr($DIVXTAG, 64, 48)); $parsed['genre_id'] = intval(trim(substr($DIVXTAG, 112, 3))); $parsed['rating_id'] = ord(substr($DIVXTAG, 115, 1)); //$parsed['padding'] = substr($DIVXTAG, 116, 5); // 5-byte null //$parsed['magic'] = substr($DIVXTAG, 121, 7); // "DIVXTAG" $parsed['genre'] = (isset($DIVXTAGgenre[$parsed['genre_id']]) ? $DIVXTAGgenre[$parsed['genre_id']] : $parsed['genre_id']); $parsed['rating'] = (isset($DIVXTAGrating[$parsed['rating_id']]) ? $DIVXTAGrating[$parsed['rating_id']] : $parsed['rating_id']); if (!$raw) { unset($parsed['genre_id'], $parsed['rating_id']); foreach ($parsed as $key => $value) { if (empty($value)) { unset($parsed[$key]); } } } foreach ($parsed as $tag => $value) { $parsed[$tag] = array($value); } return $parsed; } /** * @param string $tagshortname * * @return string */ public static function waveSNDMtagLookup($tagshortname) { $begin = __LINE__; /** This is not a comment! ©kwd keywords ©BPM bpm ©trt tracktitle ©des description ©gen category ©fin featuredinstrument ©LID longid ©bex bwdescription ©pub publisher ©cdt cdtitle ©alb library ©com composer */ return getid3_lib::EmbeddedLookup($tagshortname, $begin, __LINE__, __FILE__, 'riff-sndm'); } /** * @param int $wFormatTag * * @return string */ public static function wFormatTagLookup($wFormatTag) { $begin = __LINE__; /** This is not a comment! 0x0000 Microsoft Unknown Wave Format 0x0001 Pulse Code Modulation (PCM) 0x0002 Microsoft ADPCM 0x0003 IEEE Float 0x0004 Compaq Computer VSELP 0x0005 IBM CVSD 0x0006 Microsoft A-Law 0x0007 Microsoft mu-Law 0x0008 Microsoft DTS 0x0010 OKI ADPCM 0x0011 Intel DVI/IMA ADPCM 0x0012 Videologic MediaSpace ADPCM 0x0013 Sierra Semiconductor ADPCM 0x0014 Antex Electronics G.723 ADPCM 0x0015 DSP Solutions DigiSTD 0x0016 DSP Solutions DigiFIX 0x0017 Dialogic OKI ADPCM 0x0018 MediaVision ADPCM 0x0019 Hewlett-Packard CU 0x0020 Yamaha ADPCM 0x0021 Speech Compression Sonarc 0x0022 DSP Group TrueSpeech 0x0023 Echo Speech EchoSC1 0x0024 Audiofile AF36 0x0025 Audio Processing Technology APTX 0x0026 AudioFile AF10 0x0027 Prosody 1612 0x0028 LRC 0x0030 Dolby AC2 0x0031 Microsoft GSM 6.10 0x0032 MSNAudio 0x0033 Antex Electronics ADPCME 0x0034 Control Resources VQLPC 0x0035 DSP Solutions DigiREAL 0x0036 DSP Solutions DigiADPCM 0x0037 Control Resources CR10 0x0038 Natural MicroSystems VBXADPCM 0x0039 Crystal Semiconductor IMA ADPCM 0x003A EchoSC3 0x003B Rockwell ADPCM 0x003C Rockwell Digit LK 0x003D Xebec 0x0040 Antex Electronics G.721 ADPCM 0x0041 G.728 CELP 0x0042 MSG723 0x0050 MPEG Layer-2 or Layer-1 0x0052 RT24 0x0053 PAC 0x0055 MPEG Layer-3 0x0059 Lucent G.723 0x0060 Cirrus 0x0061 ESPCM 0x0062 Voxware 0x0063 Canopus Atrac 0x0064 G.726 ADPCM 0x0065 G.722 ADPCM 0x0066 DSAT 0x0067 DSAT Display 0x0069 Voxware Byte Aligned 0x0070 Voxware AC8 0x0071 Voxware AC10 0x0072 Voxware AC16 0x0073 Voxware AC20 0x0074 Voxware MetaVoice 0x0075 Voxware MetaSound 0x0076 Voxware RT29HW 0x0077 Voxware VR12 0x0078 Voxware VR18 0x0079 Voxware TQ40 0x0080 Softsound 0x0081 Voxware TQ60 0x0082 MSRT24 0x0083 G.729A 0x0084 MVI MV12 0x0085 DF G.726 0x0086 DF GSM610 0x0088 ISIAudio 0x0089 Onlive 0x0091 SBC24 0x0092 Dolby AC3 SPDIF 0x0093 MediaSonic G.723 0x0094 Aculab PLC Prosody 8kbps 0x0097 ZyXEL ADPCM 0x0098 Philips LPCBB 0x0099 Packed 0x00FF AAC 0x0100 Rhetorex ADPCM 0x0101 IBM mu-law 0x0102 IBM A-law 0x0103 IBM AVC Adaptive Differential Pulse Code Modulation (ADPCM) 0x0111 Vivo G.723 0x0112 Vivo Siren 0x0123 Digital G.723 0x0125 Sanyo LD ADPCM 0x0130 Sipro Lab Telecom ACELP NET 0x0131 Sipro Lab Telecom ACELP 4800 0x0132 Sipro Lab Telecom ACELP 8V3 0x0133 Sipro Lab Telecom G.729 0x0134 Sipro Lab Telecom G.729A 0x0135 Sipro Lab Telecom Kelvin 0x0140 Windows Media Video V8 0x0150 Qualcomm PureVoice 0x0151 Qualcomm HalfRate 0x0155 Ring Zero Systems TUB GSM 0x0160 Microsoft Audio 1 0x0161 Windows Media Audio V7 / V8 / V9 0x0162 Windows Media Audio Professional V9 0x0163 Windows Media Audio Lossless V9 0x0200 Creative Labs ADPCM 0x0202 Creative Labs Fastspeech8 0x0203 Creative Labs Fastspeech10 0x0210 UHER Informatic GmbH ADPCM 0x0220 Quarterdeck 0x0230 I-link Worldwide VC 0x0240 Aureal RAW Sport 0x0250 Interactive Products HSX 0x0251 Interactive Products RPELP 0x0260 Consistent Software CS2 0x0270 Sony SCX 0x0300 Fujitsu FM Towns Snd 0x0400 BTV Digital 0x0401 Intel Music Coder 0x0450 QDesign Music 0x0680 VME VMPCM 0x0681 AT&T Labs TPC 0x08AE ClearJump LiteWave 0x1000 Olivetti GSM 0x1001 Olivetti ADPCM 0x1002 Olivetti CELP 0x1003 Olivetti SBC 0x1004 Olivetti OPR 0x1100 Lernout & Hauspie Codec (0x1100) 0x1101 Lernout & Hauspie CELP Codec (0x1101) 0x1102 Lernout & Hauspie SBC Codec (0x1102) 0x1103 Lernout & Hauspie SBC Codec (0x1103) 0x1104 Lernout & Hauspie SBC Codec (0x1104) 0x1400 Norris 0x1401 AT&T ISIAudio 0x1500 Soundspace Music Compression 0x181C VoxWare RT24 Speech 0x1FC4 NCT Soft ALF2CD (www.nctsoft.com) 0x2000 Dolby AC3 0x2001 Dolby DTS 0x2002 WAVE_FORMAT_14_4 0x2003 WAVE_FORMAT_28_8 0x2004 WAVE_FORMAT_COOK 0x2005 WAVE_FORMAT_DNET 0x674F Ogg Vorbis 1 0x6750 Ogg Vorbis 2 0x6751 Ogg Vorbis 3 0x676F Ogg Vorbis 1+ 0x6770 Ogg Vorbis 2+ 0x6771 Ogg Vorbis 3+ 0x7A21 GSM-AMR (CBR, no SID) 0x7A22 GSM-AMR (VBR, including SID) 0xFFFE WAVE_FORMAT_EXTENSIBLE 0xFFFF WAVE_FORMAT_DEVELOPMENT */ return getid3_lib::EmbeddedLookup('0x'.str_pad(strtoupper(dechex($wFormatTag)), 4, '0', STR_PAD_LEFT), $begin, __LINE__, __FILE__, 'riff-wFormatTag'); } /** * @param string $fourcc * * @return string */ public static function fourccLookup($fourcc) { $begin = __LINE__; /** This is not a comment! swot http://developer.apple.com/qa/snd/snd07.html ____ No Codec (____) _BIT BI_BITFIELDS (Raw RGB) _JPG JPEG compressed _PNG PNG compressed W3C/ISO/IEC (RFC-2083) _RAW Full Frames (Uncompressed) _RGB Raw RGB Bitmap _RL4 RLE 4bpp RGB _RL8 RLE 8bpp RGB 3IV1 3ivx MPEG-4 v1 3IV2 3ivx MPEG-4 v2 3IVX 3ivx MPEG-4 AASC Autodesk Animator ABYR Kensington ?ABYR? AEMI Array Microsystems VideoONE MPEG1-I Capture AFLC Autodesk Animator FLC AFLI Autodesk Animator FLI AMPG Array Microsystems VideoONE MPEG ANIM Intel RDX (ANIM) AP41 AngelPotion Definitive ASV1 Asus Video v1 ASV2 Asus Video v2 ASVX Asus Video 2.0 (audio) AUR2 AuraVision Aura 2 Codec - YUV 4:2:2 AURA AuraVision Aura 1 Codec - YUV 4:1:1 AVDJ Independent JPEG Group\'s codec (AVDJ) AVRN Independent JPEG Group\'s codec (AVRN) AYUV 4:4:4 YUV (AYUV) AZPR Quicktime Apple Video (AZPR) BGR Raw RGB32 BLZ0 Blizzard DivX MPEG-4 BTVC Conexant Composite Video BINK RAD Game Tools Bink Video BT20 Conexant Prosumer Video BTCV Conexant Composite Video Codec BW10 Data Translation Broadway MPEG Capture CC12 Intel YUV12 CDVC Canopus DV CFCC Digital Processing Systems DPS Perception CGDI Microsoft Office 97 Camcorder Video CHAM Winnov Caviara Champagne CJPG Creative WebCam JPEG CLJR Cirrus Logic YUV 4:1:1 CMYK Common Data Format in Printing (Colorgraph) CPLA Weitek 4:2:0 YUV Planar CRAM Microsoft Video 1 (CRAM) cvid Radius Cinepak CVID Radius Cinepak CWLT Microsoft Color WLT DIB CYUV Creative Labs YUV CYUY ATI YUV D261 H.261 D263 H.263 DIB Device Independent Bitmap DIV1 FFmpeg OpenDivX DIV2 Microsoft MPEG-4 v1/v2 DIV3 DivX ;-) MPEG-4 v3.x Low-Motion DIV4 DivX ;-) MPEG-4 v3.x Fast-Motion DIV5 DivX MPEG-4 v5.x DIV6 DivX ;-) (MS MPEG-4 v3.x) DIVX DivX MPEG-4 v4 (OpenDivX / Project Mayo) divx DivX MPEG-4 DMB1 Matrox Rainbow Runner hardware MJPEG DMB2 Paradigm MJPEG DSVD ?DSVD? DUCK Duck TrueMotion 1.0 DPS0 DPS/Leitch Reality Motion JPEG DPSC DPS/Leitch PAR Motion JPEG DV25 Matrox DVCPRO codec DV50 Matrox DVCPRO50 codec DVC IEC 61834 and SMPTE 314M (DVC/DV Video) DVCP IEC 61834 and SMPTE 314M (DVC/DV Video) DVHD IEC Standard DV 1125 lines @ 30fps / 1250 lines @ 25fps DVMA Darim Vision DVMPEG (dummy for MPEG compressor) (www.darvision.com) DVSL IEC Standard DV compressed in SD (SDL) DVAN ?DVAN? DVE2 InSoft DVE-2 Videoconferencing dvsd IEC 61834 and SMPTE 314M DVC/DV Video DVSD IEC 61834 and SMPTE 314M DVC/DV Video DVX1 Lucent DVX1000SP Video Decoder DVX2 Lucent DVX2000S Video Decoder DVX3 Lucent DVX3000S Video Decoder DX50 DivX v5 DXT1 Microsoft DirectX Compressed Texture (DXT1) DXT2 Microsoft DirectX Compressed Texture (DXT2) DXT3 Microsoft DirectX Compressed Texture (DXT3) DXT4 Microsoft DirectX Compressed Texture (DXT4) DXT5 Microsoft DirectX Compressed Texture (DXT5) DXTC Microsoft DirectX Compressed Texture (DXTC) DXTn Microsoft DirectX Compressed Texture (DXTn) EM2V Etymonix MPEG-2 I-frame (www.etymonix.com) EKQ0 Elsa ?EKQ0? ELK0 Elsa ?ELK0? ESCP Eidos Escape ETV1 eTreppid Video ETV1 ETV2 eTreppid Video ETV2 ETVC eTreppid Video ETVC FLIC Autodesk FLI/FLC Animation FLV1 Sorenson Spark FLV4 On2 TrueMotion VP6 FRWT Darim Vision Forward Motion JPEG (www.darvision.com) FRWU Darim Vision Forward Uncompressed (www.darvision.com) FLJP D-Vision Field Encoded Motion JPEG FPS1 FRAPS v1 FRWA SoftLab-Nsk Forward Motion JPEG w/ alpha channel FRWD SoftLab-Nsk Forward Motion JPEG FVF1 Iterated Systems Fractal Video Frame GLZW Motion LZW (gabest@freemail.hu) GPEG Motion JPEG (gabest@freemail.hu) GWLT Microsoft Greyscale WLT DIB H260 Intel ITU H.260 Videoconferencing H261 Intel ITU H.261 Videoconferencing H262 Intel ITU H.262 Videoconferencing H263 Intel ITU H.263 Videoconferencing H264 Intel ITU H.264 Videoconferencing H265 Intel ITU H.265 Videoconferencing H266 Intel ITU H.266 Videoconferencing H267 Intel ITU H.267 Videoconferencing H268 Intel ITU H.268 Videoconferencing H269 Intel ITU H.269 Videoconferencing HFYU Huffman Lossless Codec HMCR Rendition Motion Compensation Format (HMCR) HMRR Rendition Motion Compensation Format (HMRR) I263 FFmpeg I263 decoder IF09 Indeo YVU9 ("YVU9 with additional delta-frame info after the U plane") IUYV Interlaced version of UYVY (www.leadtools.com) IY41 Interlaced version of Y41P (www.leadtools.com) IYU1 12 bit format used in mode 2 of the IEEE 1394 Digital Camera 1.04 spec IEEE standard IYU2 24 bit format used in mode 2 of the IEEE 1394 Digital Camera 1.04 spec IEEE standard IYUV Planar YUV format (8-bpp Y plane, followed by 8-bpp 2×2 U and V planes) i263 Intel ITU H.263 Videoconferencing (i263) I420 Intel Indeo 4 IAN Intel Indeo 4 (RDX) ICLB InSoft CellB Videoconferencing IGOR Power DVD IJPG Intergraph JPEG ILVC Intel Layered Video ILVR ITU-T H.263+ IPDV I-O Data Device Giga AVI DV Codec IR21 Intel Indeo 2.1 IRAW Intel YUV Uncompressed IV30 Intel Indeo 3.0 IV31 Intel Indeo 3.1 IV32 Ligos Indeo 3.2 IV33 Ligos Indeo 3.3 IV34 Ligos Indeo 3.4 IV35 Ligos Indeo 3.5 IV36 Ligos Indeo 3.6 IV37 Ligos Indeo 3.7 IV38 Ligos Indeo 3.8 IV39 Ligos Indeo 3.9 IV40 Ligos Indeo Interactive 4.0 IV41 Ligos Indeo Interactive 4.1 IV42 Ligos Indeo Interactive 4.2 IV43 Ligos Indeo Interactive 4.3 IV44 Ligos Indeo Interactive 4.4 IV45 Ligos Indeo Interactive 4.5 IV46 Ligos Indeo Interactive 4.6 IV47 Ligos Indeo Interactive 4.7 IV48 Ligos Indeo Interactive 4.8 IV49 Ligos Indeo Interactive 4.9 IV50 Ligos Indeo Interactive 5.0 JBYR Kensington ?JBYR? JPEG Still Image JPEG DIB JPGL Pegasus Lossless Motion JPEG KMVC Team17 Software Karl Morton\'s Video Codec LSVM Vianet Lighting Strike Vmail (Streaming) (www.vianet.com) LEAD LEAD Video Codec Ljpg LEAD MJPEG Codec MDVD Alex MicroDVD Video (hacked MS MPEG-4) (www.tiasoft.de) MJPA Morgan Motion JPEG (MJPA) (www.morgan-multimedia.com) MJPB Morgan Motion JPEG (MJPB) (www.morgan-multimedia.com) MMES Matrox MPEG-2 I-frame MP2v Microsoft S-Mpeg 4 version 1 (MP2v) MP42 Microsoft S-Mpeg 4 version 2 (MP42) MP43 Microsoft S-Mpeg 4 version 3 (MP43) MP4S Microsoft S-Mpeg 4 version 3 (MP4S) MP4V FFmpeg MPEG-4 MPG1 FFmpeg MPEG 1/2 MPG2 FFmpeg MPEG 1/2 MPG3 FFmpeg DivX ;-) (MS MPEG-4 v3) MPG4 Microsoft MPEG-4 MPGI Sigma Designs MPEG MPNG PNG images decoder MSS1 Microsoft Windows Screen Video MSZH LCL (Lossless Codec Library) (www.geocities.co.jp/Playtown-Denei/2837/LRC.htm) M261 Microsoft H.261 M263 Microsoft H.263 M4S2 Microsoft Fully Compliant MPEG-4 v2 simple profile (M4S2) m4s2 Microsoft Fully Compliant MPEG-4 v2 simple profile (m4s2) MC12 ATI Motion Compensation Format (MC12) MCAM ATI Motion Compensation Format (MCAM) MJ2C Morgan Multimedia Motion JPEG2000 mJPG IBM Motion JPEG w/ Huffman Tables MJPG Microsoft Motion JPEG DIB MP42 Microsoft MPEG-4 (low-motion) MP43 Microsoft MPEG-4 (fast-motion) MP4S Microsoft MPEG-4 (MP4S) mp4s Microsoft MPEG-4 (mp4s) MPEG Chromatic Research MPEG-1 Video I-Frame MPG4 Microsoft MPEG-4 Video High Speed Compressor MPGI Sigma Designs MPEG MRCA FAST Multimedia Martin Regen Codec MRLE Microsoft Run Length Encoding MSVC Microsoft Video 1 MTX1 Matrox ?MTX1? MTX2 Matrox ?MTX2? MTX3 Matrox ?MTX3? MTX4 Matrox ?MTX4? MTX5 Matrox ?MTX5? MTX6 Matrox ?MTX6? MTX7 Matrox ?MTX7? MTX8 Matrox ?MTX8? MTX9 Matrox ?MTX9? MV12 Motion Pixels Codec (old) MWV1 Aware Motion Wavelets nAVI SMR Codec (hack of Microsoft MPEG-4) (IRC #shadowrealm) NT00 NewTek LightWave HDTV YUV w/ Alpha (www.newtek.com) NUV1 NuppelVideo NTN1 Nogatech Video Compression 1 NVS0 nVidia GeForce Texture (NVS0) NVS1 nVidia GeForce Texture (NVS1) NVS2 nVidia GeForce Texture (NVS2) NVS3 nVidia GeForce Texture (NVS3) NVS4 nVidia GeForce Texture (NVS4) NVS5 nVidia GeForce Texture (NVS5) NVT0 nVidia GeForce Texture (NVT0) NVT1 nVidia GeForce Texture (NVT1) NVT2 nVidia GeForce Texture (NVT2) NVT3 nVidia GeForce Texture (NVT3) NVT4 nVidia GeForce Texture (NVT4) NVT5 nVidia GeForce Texture (NVT5) PIXL MiroXL, Pinnacle PCTV PDVC I-O Data Device Digital Video Capture DV codec PGVV Radius Video Vision PHMO IBM Photomotion PIM1 MPEG Realtime (Pinnacle Cards) PIM2 Pegasus Imaging ?PIM2? PIMJ Pegasus Imaging Lossless JPEG PVEZ Horizons Technology PowerEZ PVMM PacketVideo Corporation MPEG-4 PVW2 Pegasus Imaging Wavelet Compression Q1.0 Q-Team\'s QPEG 1.0 (www.q-team.de) Q1.1 Q-Team\'s QPEG 1.1 (www.q-team.de) QPEG Q-Team QPEG 1.0 qpeq Q-Team QPEG 1.1 RGB Raw BGR32 RGBA Raw RGB w/ Alpha RMP4 REALmagic MPEG-4 (unauthorized XVID copy) (www.sigmadesigns.com) ROQV Id RoQ File Video Decoder RPZA Quicktime Apple Video (RPZA) RUD0 Rududu video codec (http://rududu.ifrance.com/rududu/) RV10 RealVideo 1.0 (aka RealVideo 5.0) RV13 RealVideo 1.0 (RV13) RV20 RealVideo G2 RV30 RealVideo 8 RV40 RealVideo 9 RGBT Raw RGB w/ Transparency RLE Microsoft Run Length Encoder RLE4 Run Length Encoded (4bpp, 16-color) RLE8 Run Length Encoded (8bpp, 256-color) RT21 Intel Indeo RealTime Video 2.1 rv20 RealVideo G2 rv30 RealVideo 8 RVX Intel RDX (RVX ) SMC Apple Graphics (SMC ) SP54 Logitech Sunplus Sp54 Codec for Mustek GSmart Mini 2 SPIG Radius Spigot SVQ3 Sorenson Video 3 (Apple Quicktime 5) s422 Tekram VideoCap C210 YUV 4:2:2 SDCC Sun Communication Digital Camera Codec SFMC CrystalNet Surface Fitting Method SMSC Radius SMSC SMSD Radius SMSD smsv WorldConnect Wavelet Video SPIG Radius Spigot SPLC Splash Studios ACM Audio Codec (www.splashstudios.net) SQZ2 Microsoft VXTreme Video Codec V2 STVA ST Microelectronics CMOS Imager Data (Bayer) STVB ST Microelectronics CMOS Imager Data (Nudged Bayer) STVC ST Microelectronics CMOS Imager Data (Bunched) STVX ST Microelectronics CMOS Imager Data (Extended CODEC Data Format) STVY ST Microelectronics CMOS Imager Data (Extended CODEC Data Format with Correction Data) SV10 Sorenson Video R1 SVQ1 Sorenson Video T420 Toshiba YUV 4:2:0 TM2A Duck TrueMotion Archiver 2.0 (www.duck.com) TVJP Pinnacle/Truevision Targa 2000 board (TVJP) TVMJ Pinnacle/Truevision Targa 2000 board (TVMJ) TY0N Tecomac Low-Bit Rate Codec (www.tecomac.com) TY2C Trident Decompression Driver TLMS TeraLogic Motion Intraframe Codec (TLMS) TLST TeraLogic Motion Intraframe Codec (TLST) TM20 Duck TrueMotion 2.0 TM2X Duck TrueMotion 2X TMIC TeraLogic Motion Intraframe Codec (TMIC) TMOT Horizons Technology TrueMotion S tmot Horizons TrueMotion Video Compression TR20 Duck TrueMotion RealTime 2.0 TSCC TechSmith Screen Capture Codec TV10 Tecomac Low-Bit Rate Codec TY2N Trident ?TY2N? U263 UB Video H.263/H.263+/H.263++ Decoder UMP4 UB Video MPEG 4 (www.ubvideo.com) UYNV Nvidia UYVY packed 4:2:2 UYVP Evans & Sutherland YCbCr 4:2:2 extended precision UCOD eMajix.com ClearVideo ULTI IBM Ultimotion UYVY UYVY packed 4:2:2 V261 Lucent VX2000S VIFP VFAPI Reader Codec (www.yks.ne.jp/~hori/) VIV1 FFmpeg H263+ decoder VIV2 Vivo H.263 VQC2 Vector-quantised codec 2 (research) http://eprints.ecs.soton.ac.uk/archive/00001310/01/VTC97-js.pdf) VTLP Alaris VideoGramPiX VYU9 ATI YUV (VYU9) VYUY ATI YUV (VYUY) V261 Lucent VX2000S V422 Vitec Multimedia 24-bit YUV 4:2:2 Format V655 Vitec Multimedia 16-bit YUV 4:2:2 Format VCR1 ATI Video Codec 1 VCR2 ATI Video Codec 2 VCR3 ATI VCR 3.0 VCR4 ATI VCR 4.0 VCR5 ATI VCR 5.0 VCR6 ATI VCR 6.0 VCR7 ATI VCR 7.0 VCR8 ATI VCR 8.0 VCR9 ATI VCR 9.0 VDCT Vitec Multimedia Video Maker Pro DIB VDOM VDOnet VDOWave VDOW VDOnet VDOLive (H.263) VDTZ Darim Vison VideoTizer YUV VGPX Alaris VideoGramPiX VIDS Vitec Multimedia YUV 4:2:2 CCIR 601 for V422 VIVO Vivo H.263 v2.00 vivo Vivo H.263 VIXL Miro/Pinnacle Video XL VLV1 VideoLogic/PURE Digital Videologic Capture VP30 On2 VP3.0 VP31 On2 VP3.1 VP50 On2 VP5 VP60 On2 VP6 VP70 On2 VP7 VP80 On2 VP8 VP6F On2 TrueMotion VP6 VX1K Lucent VX1000S Video Codec VX2K Lucent VX2000S Video Codec VXSP Lucent VX1000SP Video Codec WBVC Winbond W9960 WHAM Microsoft Video 1 (WHAM) WINX Winnov Software Compression WJPG AverMedia Winbond JPEG WMV1 Windows Media Video V7 WMV2 Windows Media Video V8 WMV3 Windows Media Video V9 WNV1 Winnov Hardware Compression XYZP Extended PAL format XYZ palette (www.riff.org) x263 Xirlink H.263 XLV0 NetXL Video Decoder XMPG Xing MPEG (I-Frame only) XVID XviD MPEG-4 (www.xvid.org) XXAN ?XXAN? YU92 Intel YUV (YU92) YUNV Nvidia Uncompressed YUV 4:2:2 YUVP Extended PAL format YUV palette (www.riff.org) Y211 YUV 2:1:1 Packed Y411 YUV 4:1:1 Packed Y41B Weitek YUV 4:1:1 Planar Y41P Brooktree PC1 YUV 4:1:1 Packed Y41T Brooktree PC1 YUV 4:1:1 with transparency Y42B Weitek YUV 4:2:2 Planar Y42T Brooktree UYUV 4:2:2 with transparency Y422 ADS Technologies Copy of UYVY used in Pyro WebCam firewire camera Y800 Simple, single Y plane for monochrome images Y8 Grayscale video YC12 Intel YUV 12 codec YUV8 Winnov Caviar YUV8 YUV9 Intel YUV9 YUY2 Uncompressed YUV 4:2:2 YUYV Canopus YUV YV12 YVU12 Planar YVU9 Intel YVU9 Planar (8-bpp Y plane, followed by 8-bpp 4x4 U and V planes) YVYU YVYU 4:2:2 Packed ZLIB Lossless Codec Library zlib compression (www.geocities.co.jp/Playtown-Denei/2837/LRC.htm) ZPEG Metheus Video Zipper */ return getid3_lib::EmbeddedLookup($fourcc, $begin, __LINE__, __FILE__, 'riff-fourcc'); } /** * @param string $byteword * @param bool $signed * * @return int|float|false */ private function EitherEndian2Int($byteword, $signed=false) { if ($this->container == 'riff') { return getid3_lib::LittleEndian2Int($byteword, $signed); } return getid3_lib::BigEndian2Int($byteword, false, $signed); } } module.audio-video.quicktime.php000064400000521136152233444720012756 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio-video.quicktime.php // // module for analyzing Quicktime and MP3-in-MP4 files // // dependencies: module.audio.mp3.php // // dependencies: module.tag.id3v2.php // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.mp3.php', __FILE__, true); getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.tag.id3v2.php', __FILE__, true); // needed for ISO 639-2 language code lookup class getid3_quicktime extends getid3_handler { /** audio-video.quicktime * return all parsed data from all atoms if true, otherwise just returned parsed metadata * * @var bool */ public $ReturnAtomData = false; /** audio-video.quicktime * return all parsed data from all atoms if true, otherwise just returned parsed metadata * * @var bool */ public $ParseAllPossibleAtoms = false; /** * real ugly, but so is the QuickTime structure that stores keys and values in different multi-nested locations that are hard to relate to each other * https://github.com/JamesHeinrich/getID3/issues/214 * * @var int */ private $metaDATAkey = 1; /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; $this->metaDATAkey = 1; $info['fileformat'] = 'quicktime'; $info['quicktime']['hinting'] = false; $info['quicktime']['controller'] = 'standard'; // may be overridden if 'ctyp' atom is present $this->fseek($info['avdataoffset']); $offset = 0; $atomcounter = 0; $atom_data_read_buffer_size = $info['php_memory_limit'] ? round($info['php_memory_limit'] / 4) : $this->getid3->option_fread_buffer_size * 1024; // set read buffer to 25% of PHP memory limit (if one is specified), otherwise use option_fread_buffer_size [default: 32MB] while ($offset < $info['avdataend']) { if (!getid3_lib::intValueSupported($offset)) { $this->error('Unable to parse atom at offset '.$offset.' because beyond '.round(PHP_INT_MAX / 1073741824).'GB limit of PHP filesystem functions'); break; } $this->fseek($offset); $AtomHeader = $this->fread(8); // https://github.com/JamesHeinrich/getID3/issues/382 // Atom sizes are stored as 32-bit number in most cases, but sometimes (notably for "mdat") // a 64-bit value is required, in which case the normal 32-bit size field is set to 0x00000001 // and the 64-bit "real" size value is the next 8 bytes. $atom_size_extended_bytes = 0; $atomsize = getid3_lib::BigEndian2Int(substr($AtomHeader, 0, 4)); $atomname = substr($AtomHeader, 4, 4); if ($atomsize == 1) { $atom_size_extended_bytes = 8; $atomsize = getid3_lib::BigEndian2Int($this->fread($atom_size_extended_bytes)); } if (($offset + $atomsize) > $info['avdataend']) { $info['quicktime'][$atomname]['name'] = $atomname; $info['quicktime'][$atomname]['size'] = $atomsize; $info['quicktime'][$atomname]['offset'] = $offset; $this->error('Atom at offset '.$offset.' claims to go beyond end-of-file (length: '.$atomsize.' bytes)'); return false; } if ($atomsize == 0) { // Furthermore, for historical reasons the list of atoms is optionally // terminated by a 32-bit integer set to 0. If you are writing a program // to read user data atoms, you should allow for the terminating 0. $info['quicktime'][$atomname]['name'] = $atomname; $info['quicktime'][$atomname]['size'] = $atomsize; $info['quicktime'][$atomname]['offset'] = $offset; break; } $atomHierarchy = array(); $parsedAtomData = $this->QuicktimeParseAtom($atomname, $atomsize, $this->fread(min($atomsize - $atom_size_extended_bytes, $atom_data_read_buffer_size)), $offset, $atomHierarchy, $this->ParseAllPossibleAtoms); $parsedAtomData['name'] = $atomname; $parsedAtomData['size'] = $atomsize; $parsedAtomData['offset'] = $offset; if ($atom_size_extended_bytes) { $parsedAtomData['xsize_bytes'] = $atom_size_extended_bytes; } if (in_array($atomname, array('uuid'))) { @$info['quicktime'][$atomname][] = $parsedAtomData; } else { $info['quicktime'][$atomname] = $parsedAtomData; } $offset += $atomsize; $atomcounter++; } if (!empty($info['avdataend_tmp'])) { // this value is assigned to a temp value and then erased because // otherwise any atoms beyond the 'mdat' atom would not get parsed $info['avdataend'] = $info['avdataend_tmp']; unset($info['avdataend_tmp']); } if (isset($info['quicktime']['comments']['chapters']) && is_array($info['quicktime']['comments']['chapters']) && (count($info['quicktime']['comments']['chapters']) > 0)) { $durations = $this->quicktime_time_to_sample_table($info); for ($i = 0; $i < count($info['quicktime']['comments']['chapters']); $i++) { $bookmark = array(); $bookmark['title'] = $info['quicktime']['comments']['chapters'][$i]; if (isset($durations[$i])) { $bookmark['duration_sample'] = $durations[$i]['sample_duration']; if ($i > 0) { $bookmark['start_sample'] = $info['quicktime']['bookmarks'][($i - 1)]['start_sample'] + $info['quicktime']['bookmarks'][($i - 1)]['duration_sample']; } else { $bookmark['start_sample'] = 0; } if ($time_scale = $this->quicktime_bookmark_time_scale($info)) { $bookmark['duration_seconds'] = $bookmark['duration_sample'] / $time_scale; $bookmark['start_seconds'] = $bookmark['start_sample'] / $time_scale; } } $info['quicktime']['bookmarks'][] = $bookmark; } } if (isset($info['quicktime']['temp_meta_key_names'])) { unset($info['quicktime']['temp_meta_key_names']); } if (!empty($info['quicktime']['comments']['location.ISO6709'])) { // https://en.wikipedia.org/wiki/ISO_6709 foreach ($info['quicktime']['comments']['location.ISO6709'] as $ISO6709string) { $ISO6709parsed = array('latitude'=>false, 'longitude'=>false, 'altitude'=>false); if (preg_match('#^([\\+\\-])([0-9]{2}|[0-9]{4}|[0-9]{6})(\\.[0-9]+)?([\\+\\-])([0-9]{3}|[0-9]{5}|[0-9]{7})(\\.[0-9]+)?(([\\+\\-])([0-9]{3}|[0-9]{5}|[0-9]{7})(\\.[0-9]+)?)?/$#', $ISO6709string, $matches)) { @list($dummy, $lat_sign, $lat_deg, $lat_deg_dec, $lon_sign, $lon_deg, $lon_deg_dec, $dummy, $alt_sign, $alt_deg, $alt_deg_dec) = $matches; if (strlen($lat_deg) == 2) { // [+-]DD.D $ISO6709parsed['latitude'] = (($lat_sign == '-') ? -1 : 1) * (float) (ltrim($lat_deg, '0').$lat_deg_dec); } elseif (strlen($lat_deg) == 4) { // [+-]DDMM.M $ISO6709parsed['latitude'] = (($lat_sign == '-') ? -1 : 1) * (int) ltrim(substr($lat_deg, 0, 2), '0') + ((float) (ltrim(substr($lat_deg, 2, 2), '0').$lat_deg_dec) / 60); } elseif (strlen($lat_deg) == 6) { // [+-]DDMMSS.S $ISO6709parsed['latitude'] = (($lat_sign == '-') ? -1 : 1) * (int) ltrim(substr($lat_deg, 0, 2), '0') + ((int) ltrim(substr($lat_deg, 2, 2), '0') / 60) + ((float) (ltrim(substr($lat_deg, 4, 2), '0').$lat_deg_dec) / 3600); } if (strlen($lon_deg) == 3) { // [+-]DDD.D $ISO6709parsed['longitude'] = (($lon_sign == '-') ? -1 : 1) * (float) (ltrim($lon_deg, '0').$lon_deg_dec); } elseif (strlen($lon_deg) == 5) { // [+-]DDDMM.M $ISO6709parsed['longitude'] = (($lon_sign == '-') ? -1 : 1) * (int) ltrim(substr($lon_deg, 0, 2), '0') + ((float) (ltrim(substr($lon_deg, 2, 2), '0').$lon_deg_dec) / 60); } elseif (strlen($lon_deg) == 7) { // [+-]DDDMMSS.S $ISO6709parsed['longitude'] = (($lon_sign == '-') ? -1 : 1) * (int) ltrim(substr($lon_deg, 0, 2), '0') + ((int) ltrim(substr($lon_deg, 2, 2), '0') / 60) + ((float) (ltrim(substr($lon_deg, 4, 2), '0').$lon_deg_dec) / 3600); } if (strlen($alt_deg) == 3) { // [+-]DDD.D $ISO6709parsed['altitude'] = (($alt_sign == '-') ? -1 : 1) * (float) (ltrim($alt_deg, '0').$alt_deg_dec); } elseif (strlen($alt_deg) == 5) { // [+-]DDDMM.M $ISO6709parsed['altitude'] = (($alt_sign == '-') ? -1 : 1) * (int) ltrim(substr($alt_deg, 0, 2), '0') + ((float) (ltrim(substr($alt_deg, 2, 2), '0').$alt_deg_dec) / 60); } elseif (strlen($alt_deg) == 7) { // [+-]DDDMMSS.S $ISO6709parsed['altitude'] = (($alt_sign == '-') ? -1 : 1) * (int) ltrim(substr($alt_deg, 0, 2), '0') + ((int) ltrim(substr($alt_deg, 2, 2), '0') / 60) + ((float) (ltrim(substr($alt_deg, 4, 2), '0').$alt_deg_dec) / 3600); } foreach (array('latitude', 'longitude', 'altitude') as $key) { if ($ISO6709parsed[$key] !== false) { $value = (($lat_sign == '-') ? -1 : 1) * floatval($ISO6709parsed[$key]); if (!isset($info['quicktime']['comments']['gps_'.$key]) || !in_array($value, $info['quicktime']['comments']['gps_'.$key])) { @$info['quicktime']['comments']['gps_'.$key][] = (($lat_sign == '-') ? -1 : 1) * floatval($ISO6709parsed[$key]); } } } } if ($ISO6709parsed['latitude'] === false) { $this->warning('location.ISO6709 string not parsed correctly: "'.$ISO6709string.'", please submit as a bug'); unset($info['quicktime']['comments']['location.ISO6709']); } break; } } if (!isset($info['bitrate']) && !empty($info['playtime_seconds'])) { $info['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / $info['playtime_seconds']; } if (isset($info['bitrate']) && !isset($info['audio']['bitrate']) && !isset($info['quicktime']['video'])) { $info['audio']['bitrate'] = $info['bitrate']; } if (!empty($info['bitrate']) && !empty($info['audio']['bitrate']) && empty($info['video']['bitrate']) && !empty($info['video']['frame_rate']) && !empty($info['video']['resolution_x']) && ($info['bitrate'] > $info['audio']['bitrate'])) { $info['video']['bitrate'] = $info['bitrate'] - $info['audio']['bitrate']; } if (!empty($info['playtime_seconds']) && !isset($info['video']['frame_rate']) && !empty($info['quicktime']['stts_framecount'])) { foreach ($info['quicktime']['stts_framecount'] as $key => $samples_count) { $samples_per_second = $samples_count / $info['playtime_seconds']; if ($samples_per_second > 240) { // has to be audio samples } else { $info['video']['frame_rate'] = $samples_per_second; break; } } } if ($info['audio']['dataformat'] == 'mp4') { $info['fileformat'] = 'mp4'; if (empty($info['video']['resolution_x'])) { $info['mime_type'] = 'audio/mp4'; unset($info['video']['dataformat']); } else { $info['mime_type'] = 'video/mp4'; } } if (!empty($info['quicktime']['ftyp']['signature']) && in_array($info['quicktime']['ftyp']['signature'], array('heic','heix','hevc','hevx','heim','heis','hevm','hevs'))) { if ($info['mime_type'] == 'video/quicktime') { // default value, as we // https://en.wikipedia.org/wiki/High_Efficiency_Image_File_Format $this->error('HEIF files not currently supported'); switch ($info['quicktime']['ftyp']['signature']) { // https://github.com/strukturag/libheif/issues/83 (comment by Dirk Farin 2018-09-14) case 'heic': // the usual HEIF images case 'heix': // 10bit images, or anything that uses h265 with range extension case 'hevc': // brands for image sequences case 'hevx': // brands for image sequences case 'heim': // multiview case 'heis': // scalable case 'hevm': // multiview sequence case 'hevs': // scalable sequence $info['fileformat'] = 'heif'; $info['mime_type'] = 'image/heif'; break; } } } if (!$this->ReturnAtomData) { unset($info['quicktime']['moov']); } if (empty($info['audio']['dataformat']) && !empty($info['quicktime']['audio'])) { $info['audio']['dataformat'] = 'quicktime'; } if (empty($info['video']['dataformat']) && !empty($info['quicktime']['video'])) { $info['video']['dataformat'] = 'quicktime'; } if (isset($info['video']) && ($info['mime_type'] == 'audio/mp4') && empty($info['video']['resolution_x']) && empty($info['video']['resolution_y'])) { unset($info['video']); } return true; } /** * @param string $atomname * @param int $atomsize * @param string $atom_data * @param int $baseoffset * @param array $atomHierarchy * @param bool $ParseAllPossibleAtoms * * @return array|false */ public function QuicktimeParseAtom($atomname, $atomsize, $atom_data, $baseoffset, &$atomHierarchy, $ParseAllPossibleAtoms) { // http://developer.apple.com/techpubs/quicktime/qtdevdocs/APIREF/INDEX/atomalphaindex.htm // https://code.google.com/p/mp4v2/wiki/iTunesMetadata $info = &$this->getid3->info; $atom_parent = end($atomHierarchy); // not array_pop($atomHierarchy); see https://www.getid3.org/phpBB3/viewtopic.php?t=1717 array_push($atomHierarchy, $atomname); $atom_structure = array(); $atom_structure['hierarchy'] = implode(' ', $atomHierarchy); $atom_structure['name'] = $atomname; $atom_structure['size'] = $atomsize; $atom_structure['offset'] = $baseoffset; if (substr($atomname, 0, 3) == "\x00\x00\x00") { // https://github.com/JamesHeinrich/getID3/issues/139 $atomname = getid3_lib::BigEndian2Int($atomname); $atom_structure['name'] = $atomname; $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); } else { switch ($atomname) { case 'moov': // MOVie container atom case 'moof': // MOvie Fragment box case 'trak': // TRAcK container atom case 'traf': // TRAck Fragment box case 'clip': // CLIPping container atom case 'matt': // track MATTe container atom case 'edts': // EDiTS container atom case 'tref': // Track REFerence container atom case 'mdia': // MeDIA container atom case 'minf': // Media INFormation container atom case 'dinf': // Data INFormation container atom case 'nmhd': // Null Media HeaDer container atom case 'udta': // User DaTA container atom case 'cmov': // Compressed MOVie container atom case 'rmra': // Reference Movie Record Atom case 'rmda': // Reference Movie Descriptor Atom case 'gmhd': // Generic Media info HeaDer atom (seen on QTVR) $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); break; case 'ilst': // Item LiST container atom if ($atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms)) { // some "ilst" atoms contain data atoms that have a numeric name, and the data is far more accessible if the returned array is compacted $allnumericnames = true; foreach ($atom_structure['subatoms'] as $subatomarray) { if (!is_integer($subatomarray['name']) || (count($subatomarray['subatoms']) != 1)) { $allnumericnames = false; break; } } if ($allnumericnames) { $newData = array(); foreach ($atom_structure['subatoms'] as $subatomarray) { foreach ($subatomarray['subatoms'] as $newData_subatomarray) { unset($newData_subatomarray['hierarchy'], $newData_subatomarray['name']); $newData[$subatomarray['name']] = $newData_subatomarray; break; } } $atom_structure['data'] = $newData; unset($atom_structure['subatoms']); } } break; case 'stbl': // Sample TaBLe container atom $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); $isVideo = false; $framerate = 0; $framecount = 0; foreach ($atom_structure['subatoms'] as $key => $value_array) { if (isset($value_array['sample_description_table'])) { foreach ($value_array['sample_description_table'] as $key2 => $value_array2) { if (isset($value_array2['data_format'])) { switch ($value_array2['data_format']) { case 'avc1': case 'mp4v': // video data $isVideo = true; break; case 'mp4a': // audio data break; } } } } elseif (isset($value_array['time_to_sample_table'])) { foreach ($value_array['time_to_sample_table'] as $key2 => $value_array2) { if (isset($value_array2['sample_count']) && isset($value_array2['sample_duration']) && ($value_array2['sample_duration'] > 0) && !empty($info['quicktime']['time_scale'])) { $framerate = round($info['quicktime']['time_scale'] / $value_array2['sample_duration'], 3); $framecount = $value_array2['sample_count']; } } } } if ($isVideo && $framerate) { $info['quicktime']['video']['frame_rate'] = $framerate; $info['video']['frame_rate'] = $info['quicktime']['video']['frame_rate']; } if ($isVideo && $framecount) { $info['quicktime']['video']['frame_count'] = $framecount; } break; case "\xA9".'alb': // ALBum case "\xA9".'ART': // case "\xA9".'art': // ARTist case "\xA9".'aut': // case "\xA9".'cmt': // CoMmenT case "\xA9".'com': // COMposer case "\xA9".'cpy': // case "\xA9".'day': // content created year case "\xA9".'dir': // case "\xA9".'ed1': // case "\xA9".'ed2': // case "\xA9".'ed3': // case "\xA9".'ed4': // case "\xA9".'ed5': // case "\xA9".'ed6': // case "\xA9".'ed7': // case "\xA9".'ed8': // case "\xA9".'ed9': // case "\xA9".'enc': // case "\xA9".'fmt': // case "\xA9".'gen': // GENre case "\xA9".'grp': // GRouPing case "\xA9".'hst': // case "\xA9".'inf': // case "\xA9".'lyr': // LYRics case "\xA9".'mak': // case "\xA9".'mod': // case "\xA9".'nam': // full NAMe case "\xA9".'ope': // case "\xA9".'PRD': // case "\xA9".'prf': // case "\xA9".'req': // case "\xA9".'src': // case "\xA9".'swr': // case "\xA9".'too': // encoder case "\xA9".'trk': // TRacK case "\xA9".'url': // case "\xA9".'wrn': // case "\xA9".'wrt': // WRiTer case '----': // itunes specific case 'aART': // Album ARTist case 'akID': // iTunes store account type case 'apID': // Purchase Account case 'atID': // case 'catg': // CaTeGory case 'cmID': // case 'cnID': // case 'covr': // COVeR artwork case 'cpil': // ComPILation case 'cprt': // CoPyRighT case 'desc': // DESCription case 'disk': // DISK number case 'egid': // Episode Global ID case 'geID': // case 'gnre': // GeNRE case 'hdvd': // HD ViDeo case 'keyw': // KEYWord case 'ldes': // Long DEScription case 'pcst': // PodCaST case 'pgap': // GAPless Playback case 'plID': // case 'purd': // PURchase Date case 'purl': // Podcast URL case 'rati': // case 'rndu': // case 'rpdu': // case 'rtng': // RaTiNG case 'sfID': // iTunes store country case 'soaa': // SOrt Album Artist case 'soal': // SOrt ALbum case 'soar': // SOrt ARtist case 'soco': // SOrt COmposer case 'sonm': // SOrt NaMe case 'sosn': // SOrt Show Name case 'stik': // case 'tmpo': // TeMPO (BPM) case 'trkn': // TRacK Number case 'tven': // tvEpisodeID case 'tves': // TV EpiSode case 'tvnn': // TV Network Name case 'tvsh': // TV SHow Name case 'tvsn': // TV SeasoN if ($atom_parent == 'udta') { // User data atom handler $atom_structure['data_length'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2)); $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2)); $atom_structure['data'] = substr($atom_data, 4); $atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']); if (empty($info['comments']['language']) || (!in_array($atom_structure['language'], $info['comments']['language']))) { $info['comments']['language'][] = $atom_structure['language']; } } else { // Apple item list box atom handler $atomoffset = 0; // todo (2025-10-16): 0x10B5 is probably Packed ISO639-2/T language code so this code block is likely incorrect // need to locate sample file to figure out what is going on here and why this code was written as such // https://developer.apple.com/documentation/quicktime-file-format/language_code_values if (substr($atom_data, 2, 2) == "\x10\xB5") { // not sure what it means, but observed on iPhone4 data. // Each $atom_data has 2 bytes of datasize, plus 0x10B5, then data while ($atomoffset < strlen($atom_data)) { $boxsmallsize = getid3_lib::BigEndian2Int(substr($atom_data, $atomoffset, 2)); $boxsmalltype = substr($atom_data, $atomoffset + 2, 2); $boxsmalldata = substr($atom_data, $atomoffset + 4, $boxsmallsize); if ($boxsmallsize <= 1) { $this->warning('Invalid QuickTime atom smallbox size "'.$boxsmallsize.'" in atom "'.preg_replace('#[^a-zA-Z0-9 _\\-]#', '?', $atomname).'" at offset: '.($atom_structure['offset'] + $atomoffset)); $atom_structure['data'] = null; $atomoffset = strlen($atom_data); break; } switch ($boxsmalltype) { case "\x10\xB5": $atom_structure['data'] = $boxsmalldata; break; default: $this->warning('Unknown QuickTime smallbox type: "'.preg_replace('#[^a-zA-Z0-9 _\\-]#', '?', $boxsmalltype).'" ('.trim(getid3_lib::PrintHexBytes($boxsmalltype)).') at offset '.$baseoffset); $atom_structure['data'] = $atom_data; break; } $atomoffset += (4 + $boxsmallsize); } } else { while ($atomoffset < strlen($atom_data)) { $boxsize = getid3_lib::BigEndian2Int(substr($atom_data, $atomoffset, 4)); $boxtype = substr($atom_data, $atomoffset + 4, 4); $boxdata = substr($atom_data, $atomoffset + 8, $boxsize - 8); if ($boxsize <= 1) { $this->warning('Invalid QuickTime atom box size "'.$boxsize.'" in atom "'.preg_replace('#[^a-zA-Z0-9 _\\-]#', '?', $atomname).'" at offset: '.($atom_structure['offset'] + $atomoffset)); $atom_structure['data'] = null; $atomoffset = strlen($atom_data); break; } $atomoffset += $boxsize; switch ($boxtype) { case 'mean': case 'name': $atom_structure[$boxtype] = substr($boxdata, 4); break; case 'data': $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($boxdata, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($boxdata, 1, 3)); switch ($atom_structure['flags_raw']) { case 0: // data flag case 21: // tmpo/cpil flag switch ($atomname) { case 'cpil': case 'hdvd': case 'pcst': case 'pgap': // 8-bit integer (boolean) $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1)); break; case 'tmpo': // 16-bit integer $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 2)); break; case 'disk': case 'trkn': // binary $num = getid3_lib::BigEndian2Int(substr($boxdata, 10, 2)); $num_total = getid3_lib::BigEndian2Int(substr($boxdata, 12, 2)); $atom_structure['data'] = empty($num) ? '' : $num; $atom_structure['data'] .= empty($num_total) ? '' : '/'.$num_total; break; case 'gnre': // enum $GenreID = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4)); $atom_structure['data'] = getid3_id3v1::LookupGenreName($GenreID - 1); break; case 'rtng': // 8-bit integer $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1)); $atom_structure['data'] = $this->QuicktimeContentRatingLookup($atom_structure[$atomname]); break; case 'stik': // 8-bit integer (enum) $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 1)); $atom_structure['data'] = $this->QuicktimeSTIKLookup($atom_structure[$atomname]); break; case 'sfID': // 32-bit integer $atom_structure[$atomname] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4)); $atom_structure['data'] = $this->QuicktimeStoreFrontCodeLookup($atom_structure[$atomname]); break; case 'egid': case 'purl': $atom_structure['data'] = substr($boxdata, 8); break; case 'plID': // 64-bit integer $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 8)); break; case 'covr': $atom_structure['data'] = substr($boxdata, 8); // not a foolproof check, but better than nothing if (preg_match('#^\\xFF\\xD8\\xFF#', $atom_structure['data'])) { $atom_structure['image_mime'] = 'image/jpeg'; } elseif (preg_match('#^\\x89\\x50\\x4E\\x47\\x0D\\x0A\\x1A\\x0A#', $atom_structure['data'])) { $atom_structure['image_mime'] = 'image/png'; } elseif (preg_match('#^GIF#', $atom_structure['data'])) { $atom_structure['image_mime'] = 'image/gif'; } $info['quicktime']['comments']['picture'][] = array('image_mime'=>$atom_structure['image_mime'], 'data'=>$atom_structure['data'], 'description'=>'cover'); break; case 'atID': case 'cnID': case 'geID': case 'tves': case 'tvsn': default: // 32-bit integer $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($boxdata, 8, 4)); } break; case 1: // text flag case 13: // image flag default: $atom_structure['data'] = substr($boxdata, 8); if ($atomname == 'covr') { if (!empty($atom_structure['data'])) { $atom_structure['image_mime'] = 'image/unknown'; // provide default MIME type to ensure array keys exist if (function_exists('getimagesizefromstring') && ($getimagesize = getimagesizefromstring($atom_structure['data'])) && !empty($getimagesize['mime'])) { $atom_structure['image_mime'] = $getimagesize['mime']; } else { // if getimagesizefromstring is not available, or fails for some reason, fall back to simple detection of common image formats $ImageFormatSignatures = array( 'image/jpeg' => "\xFF\xD8\xFF", 'image/png' => "\x89\x50\x4E\x47\x0D\x0A\x1A\x0A", 'image/gif' => 'GIF', ); foreach ($ImageFormatSignatures as $mime => $image_format_signature) { if (substr($atom_structure['data'], 0, strlen($image_format_signature)) == $image_format_signature) { $atom_structure['image_mime'] = $mime; break; } } } $info['quicktime']['comments']['picture'][] = array('image_mime'=>$atom_structure['image_mime'], 'data'=>$atom_structure['data'], 'description'=>'cover'); } else { $this->warning('Unknown empty "covr" image at offset '.$baseoffset); } } break; } break; default: $this->warning('Unknown QuickTime box type: "'.preg_replace('#[^a-zA-Z0-9 _\\-]#', '?', $boxtype).'" ('.trim(getid3_lib::PrintHexBytes($boxtype)).') at offset '.$baseoffset); $atom_structure['data'] = $atom_data; } } } } if (!empty($atom_structure['data'])) { // https://github.com/JamesHeinrich/getID3/issues/477#issuecomment-3723356688 $this->CopyToAppropriateCommentsSection($atomname, $atom_structure['data'], $atom_structure['name']); } break; case 'play': // auto-PLAY atom $atom_structure['autoplay'] = (bool) getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $info['quicktime']['autoplay'] = $atom_structure['autoplay']; break; case 'WLOC': // Window LOCation atom $atom_structure['location_x'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2)); $atom_structure['location_y'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2)); break; case 'LOOP': // LOOPing atom case 'SelO': // play SELection Only atom case 'AllF': // play ALL Frames atom $atom_structure['data'] = getid3_lib::BigEndian2Int($atom_data); break; case 'name': // case 'MCPS': // Media Cleaner PRo case '@PRM': // adobe PReMiere version case '@PRQ': // adobe PRemiere Quicktime version $atom_structure['data'] = $atom_data; break; case 'cmvd': // Compressed MooV Data atom // Code by ubergeekØubergeek*tv based on information from // http://developer.apple.com/quicktime/icefloe/dispatch012.html $atom_structure['unCompressedSize'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); $CompressedFileData = substr($atom_data, 4); if ($UncompressedHeader = @gzuncompress($CompressedFileData)) { $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($UncompressedHeader, 0, $atomHierarchy, $ParseAllPossibleAtoms); } else { $this->warning('Error decompressing compressed MOV atom at offset '.$atom_structure['offset']); } break; case 'dcom': // Data COMpression atom $atom_structure['compression_id'] = $atom_data; $atom_structure['compression_text'] = $this->QuicktimeDCOMLookup($atom_data); break; case 'rdrf': // Reference movie Data ReFerence atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); $atom_structure['flags']['internal_data'] = (bool) ($atom_structure['flags_raw'] & 0x000001); $atom_structure['reference_type_name'] = substr($atom_data, 4, 4); $atom_structure['reference_length'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); switch ($atom_structure['reference_type_name']) { case 'url ': $atom_structure['url'] = $this->NoNullString(substr($atom_data, 12)); break; case 'alis': $atom_structure['file_alias'] = substr($atom_data, 12); break; case 'rsrc': $atom_structure['resource_alias'] = substr($atom_data, 12); break; default: $atom_structure['data'] = substr($atom_data, 12); break; } break; case 'rmqu': // Reference Movie QUality atom $atom_structure['movie_quality'] = getid3_lib::BigEndian2Int($atom_data); break; case 'rmcs': // Reference Movie Cpu Speed atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['cpu_speed_rating'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); break; case 'rmvc': // Reference Movie Version Check atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['gestalt_selector'] = substr($atom_data, 4, 4); $atom_structure['gestalt_value_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); $atom_structure['gestalt_value'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4)); $atom_structure['gestalt_check_type'] = getid3_lib::BigEndian2Int(substr($atom_data, 14, 2)); break; case 'rmcd': // Reference Movie Component check atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['component_type'] = substr($atom_data, 4, 4); $atom_structure['component_subtype'] = substr($atom_data, 8, 4); $atom_structure['component_manufacturer'] = substr($atom_data, 12, 4); $atom_structure['component_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4)); $atom_structure['component_flags_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4)); $atom_structure['component_min_version'] = getid3_lib::BigEndian2Int(substr($atom_data, 24, 4)); break; case 'rmdr': // Reference Movie Data Rate atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['data_rate'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $atom_structure['data_rate_bps'] = $atom_structure['data_rate'] * 10; break; case 'rmla': // Reference Movie Language Atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); $atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']); if (empty($info['comments']['language']) || (!in_array($atom_structure['language'], $info['comments']['language']))) { $info['comments']['language'][] = $atom_structure['language']; } break; case 'ptv ': // Print To Video - defines a movie's full screen mode // http://developer.apple.com/documentation/QuickTime/APIREF/SOURCESIV/at_ptv-_pg.htm $atom_structure['display_size_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2)); $atom_structure['reserved_1'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 2)); // hardcoded: 0x0000 $atom_structure['reserved_2'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); // hardcoded: 0x0000 $atom_structure['slide_show_flag'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 1)); $atom_structure['play_on_open_flag'] = getid3_lib::BigEndian2Int(substr($atom_data, 7, 1)); $atom_structure['flags']['play_on_open'] = (bool) $atom_structure['play_on_open_flag']; $atom_structure['flags']['slide_show'] = (bool) $atom_structure['slide_show_flag']; $ptv_lookup = array( 0 => 'normal', 1 => 'double', 2 => 'half', 3 => 'full', 4 => 'current' ); if (isset($ptv_lookup[$atom_structure['display_size_raw']])) { $atom_structure['display_size'] = $ptv_lookup[$atom_structure['display_size_raw']]; } else { $this->warning('unknown "ptv " display constant ('.$atom_structure['display_size_raw'].')'); } break; case 'stsd': // Sample Table Sample Description atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); // hardcoded: 0x00 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x000000 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); // see: https://github.com/JamesHeinrich/getID3/issues/111 // Some corrupt files have been known to have high bits set in the number_entries field // This field shouldn't really need to be 32-bits, values stores are likely in the range 1-100000 // Workaround: mask off the upper byte and throw a warning if it's nonzero if ($atom_structure['number_entries'] > 0x000FFFFF) { if ($atom_structure['number_entries'] > 0x00FFFFFF) { $this->warning('"stsd" atom contains improbably large number_entries (0x'.getid3_lib::PrintHexBytes(substr($atom_data, 4, 4), true, false).' = '.$atom_structure['number_entries'].'), probably in error. Ignoring upper byte and interpreting this as 0x'.getid3_lib::PrintHexBytes(substr($atom_data, 5, 3), true, false).' = '.($atom_structure['number_entries'] & 0x00FFFFFF)); $atom_structure['number_entries'] = ($atom_structure['number_entries'] & 0x00FFFFFF); } else { $this->warning('"stsd" atom contains improbably large number_entries (0x'.getid3_lib::PrintHexBytes(substr($atom_data, 4, 4), true, false).' = '.$atom_structure['number_entries'].'), probably in error. Please report this to info@getid3.org referencing bug report #111'); } } $stsdEntriesDataOffset = 8; for ($i = 0; $i < (int) $atom_structure['number_entries']; $i++) { $atom_structure['sample_description_table'][$i]['size'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 4)); $stsdEntriesDataOffset += 4; $atom_structure['sample_description_table'][$i]['data_format'] = substr($atom_data, $stsdEntriesDataOffset, 4); $stsdEntriesDataOffset += 4; $atom_structure['sample_description_table'][$i]['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 6)); $stsdEntriesDataOffset += 6; $atom_structure['sample_description_table'][$i]['reference_index'] = getid3_lib::BigEndian2Int(substr($atom_data, $stsdEntriesDataOffset, 2)); $stsdEntriesDataOffset += 2; $atom_structure['sample_description_table'][$i]['data'] = substr($atom_data, $stsdEntriesDataOffset, ($atom_structure['sample_description_table'][$i]['size'] - 4 - 4 - 6 - 2)); $stsdEntriesDataOffset += ($atom_structure['sample_description_table'][$i]['size'] - 4 - 4 - 6 - 2); if (substr($atom_structure['sample_description_table'][$i]['data'], 1, 54) == 'application/octet-stream;type=com.parrot.videometadata') { // special handling for apparently-malformed (TextMetaDataSampleEntry?) data for some version of Parrot drones $atom_structure['sample_description_table'][$i]['parrot_frame_metadata']['mime_type'] = substr($atom_structure['sample_description_table'][$i]['data'], 1, 55); $atom_structure['sample_description_table'][$i]['parrot_frame_metadata']['metadata_version'] = (int) substr($atom_structure['sample_description_table'][$i]['data'], 55, 1); unset($atom_structure['sample_description_table'][$i]['data']); $this->warning('incomplete/incorrect handling of "stsd" with Parrot metadata in this version of getID3() ['.$this->getid3->version().']'); continue; } $atom_structure['sample_description_table'][$i]['encoder_version'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 0, 2)); $atom_structure['sample_description_table'][$i]['encoder_revision'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 2, 2)); $atom_structure['sample_description_table'][$i]['encoder_vendor'] = substr($atom_structure['sample_description_table'][$i]['data'], 4, 4); switch ($atom_structure['sample_description_table'][$i]['encoder_vendor']) { case "\x00\x00\x00\x00": // audio tracks $atom_structure['sample_description_table'][$i]['audio_channels'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 8, 2)); $atom_structure['sample_description_table'][$i]['audio_bit_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 10, 2)); $atom_structure['sample_description_table'][$i]['audio_compression_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 12, 2)); $atom_structure['sample_description_table'][$i]['audio_packet_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 14, 2)); $atom_structure['sample_description_table'][$i]['audio_sample_rate'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 16, 4)); // video tracks // http://developer.apple.com/library/mac/#documentation/QuickTime/QTFF/QTFFChap3/qtff3.html // https://developer.apple.com/documentation/quicktime-file-format $STSDvOffset = 8; $atom_structure['sample_description_table'][$i]['temporal_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 4)); $STSDvOffset += 4; $atom_structure['sample_description_table'][$i]['spatial_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 4)); $STSDvOffset += 4; $atom_structure['sample_description_table'][$i]['width'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 2)); $STSDvOffset += 2; $atom_structure['sample_description_table'][$i]['height'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 2)); $STSDvOffset += 2; $atom_structure['sample_description_table'][$i]['resolution_x'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 4)); $STSDvOffset += 4; $atom_structure['sample_description_table'][$i]['resolution_y'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 4)); $STSDvOffset += 4; $atom_structure['sample_description_table'][$i]['data_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 4)); $STSDvOffset += 4; $atom_structure['sample_description_table'][$i]['frame_count'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 2)); $STSDvOffset += 2; $atom_structure['sample_description_table'][$i]['compressor_name'] = substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 32) ; $STSDvOffset += 32; $atom_structure['sample_description_table'][$i]['compressor_name'] = $this->MaybePascal2String(rtrim($atom_structure['sample_description_table'][$i]['compressor_name'], "\x00")); // https://github.com/JamesHeinrich/getID3/issues/452 $atom_structure['sample_description_table'][$i]['pixel_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 2)); $STSDvOffset += 2; $atom_structure['sample_description_table'][$i]['color_table_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], $STSDvOffset, 2)); $STSDvOffset += 2; switch ($atom_structure['sample_description_table'][$i]['data_format']) { case '2vuY': case 'avc1': case 'cvid': case 'dvc ': case 'dvcp': case 'gif ': case 'h263': case 'hvc1': case 'jpeg': case 'kpcd': case 'mjpa': case 'mjpb': case 'mp4v': case 'png ': case 'raw ': case 'rle ': case 'rpza': case 'smc ': case 'SVQ1': case 'SVQ3': case 'tiff': case 'v210': case 'v216': case 'v308': case 'v408': case 'v410': case 'yuv2': $info['fileformat'] = 'mp4'; $info['video']['fourcc'] = $atom_structure['sample_description_table'][$i]['data_format']; if ($this->QuicktimeVideoCodecLookup($info['video']['fourcc'])) { $info['video']['codec'] = $this->QuicktimeVideoCodecLookup($info['video']['fourcc']); } // https://www.getid3.org/phpBB3/viewtopic.php?t=1550 //if ((!empty($atom_structure['sample_description_table'][$i]['width']) && !empty($atom_structure['sample_description_table'][$i]['width'])) && (empty($info['video']['resolution_x']) || empty($info['video']['resolution_y']) || (number_format($info['video']['resolution_x'], 6) != number_format(round($info['video']['resolution_x']), 6)) || (number_format($info['video']['resolution_y'], 6) != number_format(round($info['video']['resolution_y']), 6)))) { // ugly check for floating point numbers if (!empty($atom_structure['sample_description_table'][$i]['width']) && !empty($atom_structure['sample_description_table'][$i]['height'])) { // assume that values stored here are more important than values stored in [tkhd] atom $info['video']['resolution_x'] = $atom_structure['sample_description_table'][$i]['width']; $info['video']['resolution_y'] = $atom_structure['sample_description_table'][$i]['height']; $info['quicktime']['video']['resolution_x'] = $info['video']['resolution_x']; $info['quicktime']['video']['resolution_y'] = $info['video']['resolution_y']; } break; case 'qtvr': $info['video']['dataformat'] = 'quicktimevr'; break; case 'mp4a': $atom_structure['sample_description_table'][$i]['subatoms'] = $this->QuicktimeParseContainerAtom(substr($atom_structure['sample_description_table'][$i]['data'], 20), $baseoffset + $stsdEntriesDataOffset - 20 - 16, $atomHierarchy, $ParseAllPossibleAtoms); $info['quicktime']['audio']['codec'] = $this->QuicktimeAudioCodecLookup($atom_structure['sample_description_table'][$i]['data_format']); $info['quicktime']['audio']['sample_rate'] = $atom_structure['sample_description_table'][$i]['audio_sample_rate']; $info['quicktime']['audio']['channels'] = $atom_structure['sample_description_table'][$i]['audio_channels']; $info['quicktime']['audio']['bit_depth'] = $atom_structure['sample_description_table'][$i]['audio_bit_depth']; $info['audio']['codec'] = $info['quicktime']['audio']['codec']; $info['audio']['sample_rate'] = $info['quicktime']['audio']['sample_rate']; $info['audio']['channels'] = $info['quicktime']['audio']['channels']; $info['audio']['bits_per_sample'] = $info['quicktime']['audio']['bit_depth']; switch ($atom_structure['sample_description_table'][$i]['data_format']) { case 'raw ': // PCM case 'alac': // Apple Lossless Audio Codec case 'sowt': // signed/two's complement (Little Endian) case 'twos': // signed/two's complement (Big Endian) case 'in24': // 24-bit Integer case 'in32': // 32-bit Integer case 'fl32': // 32-bit Floating Point case 'fl64': // 64-bit Floating Point $info['audio']['lossless'] = $info['quicktime']['audio']['lossless'] = true; $info['audio']['bitrate'] = $info['quicktime']['audio']['bitrate'] = $info['audio']['channels'] * $info['audio']['bits_per_sample'] * $info['audio']['sample_rate']; break; default: $info['audio']['lossless'] = false; break; } break; default: break; } break; case 'keys': // 2025-Oct-17 probably something to do with this but I haven't found clear documentation explaining what I'm seeing, ignoring for now // https://developer.apple.com/documentation/quicktime-file-format/metadata_key_declaration_atom/ break; default: switch ($atom_structure['sample_description_table'][$i]['data_format']) { case 'mp4s': $info['fileformat'] = 'mp4'; break; default: // video atom $atom_structure['sample_description_table'][$i]['video_temporal_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 8, 4)); $atom_structure['sample_description_table'][$i]['video_spatial_quality'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 12, 4)); $atom_structure['sample_description_table'][$i]['video_frame_width'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 16, 2)); $atom_structure['sample_description_table'][$i]['video_frame_height'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 18, 2)); $atom_structure['sample_description_table'][$i]['video_resolution_x'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 20, 4)); $atom_structure['sample_description_table'][$i]['video_resolution_y'] = getid3_lib::FixedPoint16_16(substr($atom_structure['sample_description_table'][$i]['data'], 24, 4)); $atom_structure['sample_description_table'][$i]['video_data_size'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 28, 4)); $atom_structure['sample_description_table'][$i]['video_frame_count'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 32, 2)); $atom_structure['sample_description_table'][$i]['video_encoder_name_len'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 34, 1)); $atom_structure['sample_description_table'][$i]['video_encoder_name'] = substr($atom_structure['sample_description_table'][$i]['data'], 35, $atom_structure['sample_description_table'][$i]['video_encoder_name_len']); $atom_structure['sample_description_table'][$i]['video_pixel_color_depth'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 66, 2)); $atom_structure['sample_description_table'][$i]['video_color_table_id'] = getid3_lib::BigEndian2Int(substr($atom_structure['sample_description_table'][$i]['data'], 68, 2)); $atom_structure['sample_description_table'][$i]['video_pixel_color_type'] = (((int) $atom_structure['sample_description_table'][$i]['video_pixel_color_depth'] > 32) ? 'grayscale' : 'color'); $atom_structure['sample_description_table'][$i]['video_pixel_color_name'] = $this->QuicktimeColorNameLookup($atom_structure['sample_description_table'][$i]['video_pixel_color_depth']); if ($atom_structure['sample_description_table'][$i]['video_pixel_color_name'] != 'invalid') { $info['quicktime']['video']['codec_fourcc'] = $atom_structure['sample_description_table'][$i]['data_format']; $info['quicktime']['video']['codec_fourcc_lookup'] = $this->QuicktimeVideoCodecLookup($atom_structure['sample_description_table'][$i]['data_format']); $info['quicktime']['video']['codec'] = (((int) $atom_structure['sample_description_table'][$i]['video_encoder_name_len'] > 0) ? $atom_structure['sample_description_table'][$i]['video_encoder_name'] : $atom_structure['sample_description_table'][$i]['data_format']); $info['quicktime']['video']['color_depth'] = $atom_structure['sample_description_table'][$i]['video_pixel_color_depth']; $info['quicktime']['video']['color_depth_name'] = $atom_structure['sample_description_table'][$i]['video_pixel_color_name']; $info['video']['codec'] = $info['quicktime']['video']['codec']; $info['video']['bits_per_sample'] = $info['quicktime']['video']['color_depth']; } $info['video']['lossless'] = false; $info['video']['pixel_aspect_ratio'] = (float) 1; break; } break; } switch (strtolower($atom_structure['sample_description_table'][$i]['data_format'])) { case 'mp4a': $info['audio']['dataformat'] = 'mp4'; $info['quicktime']['audio']['codec'] = 'mp4'; break; case '3ivx': case '3iv1': case '3iv2': $info['video']['dataformat'] = '3ivx'; break; case 'xvid': $info['video']['dataformat'] = 'xvid'; break; case 'mp4v': $info['video']['dataformat'] = 'mpeg4'; break; case 'divx': case 'div1': case 'div2': case 'div3': case 'div4': case 'div5': case 'div6': $info['video']['dataformat'] = 'divx'; break; default: // do nothing break; } unset($atom_structure['sample_description_table'][$i]['data']); } break; case 'stts': // Sample Table Time-to-Sample atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $sttsEntriesDataOffset = 8; //$FrameRateCalculatorArray = array(); $frames_count = 0; $max_stts_entries_to_scan = ($info['php_memory_limit'] ? min(floor($this->getid3->memory_limit / 10000), $atom_structure['number_entries']) : $atom_structure['number_entries']); if ($max_stts_entries_to_scan < $atom_structure['number_entries']) { $this->warning('QuickTime atom "stts" has '.$atom_structure['number_entries'].' but only scanning the first '.$max_stts_entries_to_scan.' entries due to limited PHP memory available ('.floor($this->getid3->memory_limit / 1048576).'MB).'); } for ($i = 0; $i < $max_stts_entries_to_scan; $i++) { $atom_structure['time_to_sample_table'][$i]['sample_count'] = getid3_lib::BigEndian2Int(substr($atom_data, $sttsEntriesDataOffset, 4)); $sttsEntriesDataOffset += 4; $atom_structure['time_to_sample_table'][$i]['sample_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, $sttsEntriesDataOffset, 4)); $sttsEntriesDataOffset += 4; $frames_count += $atom_structure['time_to_sample_table'][$i]['sample_count']; // THIS SECTION REPLACED WITH CODE IN "stbl" ATOM //if (!empty($info['quicktime']['time_scale']) && ($atom_structure['time_to_sample_table'][$i]['sample_duration'] > 0)) { // $stts_new_framerate = $info['quicktime']['time_scale'] / $atom_structure['time_to_sample_table'][$i]['sample_duration']; // if ($stts_new_framerate <= 60) { // // some atoms have durations of "1" giving a very large framerate, which probably is not right // $info['video']['frame_rate'] = max($info['video']['frame_rate'], $stts_new_framerate); // } //} // //$FrameRateCalculatorArray[($info['quicktime']['time_scale'] / $atom_structure['time_to_sample_table'][$i]['sample_duration'])] += $atom_structure['time_to_sample_table'][$i]['sample_count']; } $info['quicktime']['stts_framecount'][] = $frames_count; //$sttsFramesTotal = 0; //$sttsSecondsTotal = 0; //foreach ($FrameRateCalculatorArray as $frames_per_second => $frame_count) { // if (($frames_per_second > 60) || ($frames_per_second < 1)) { // // not video FPS information, probably audio information // $sttsFramesTotal = 0; // $sttsSecondsTotal = 0; // break; // } // $sttsFramesTotal += $frame_count; // $sttsSecondsTotal += $frame_count / $frames_per_second; //} //if (($sttsFramesTotal > 0) && ($sttsSecondsTotal > 0)) { // if (($sttsFramesTotal / $sttsSecondsTotal) > $info['video']['frame_rate']) { // $info['video']['frame_rate'] = $sttsFramesTotal / $sttsSecondsTotal; // } //} break; case 'stss': // Sample Table Sync Sample (key frames) atom if ($ParseAllPossibleAtoms) { $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $stssEntriesDataOffset = 8; for ($i = 0; $i < $atom_structure['number_entries']; $i++) { $atom_structure['time_to_sample_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stssEntriesDataOffset, 4)); $stssEntriesDataOffset += 4; } } break; case 'stsc': // Sample Table Sample-to-Chunk atom if ($ParseAllPossibleAtoms) { $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $stscEntriesDataOffset = 8; for ($i = 0; $i < $atom_structure['number_entries']; $i++) { $atom_structure['sample_to_chunk_table'][$i]['first_chunk'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4)); $stscEntriesDataOffset += 4; $atom_structure['sample_to_chunk_table'][$i]['samples_per_chunk'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4)); $stscEntriesDataOffset += 4; $atom_structure['sample_to_chunk_table'][$i]['sample_description'] = getid3_lib::BigEndian2Int(substr($atom_data, $stscEntriesDataOffset, 4)); $stscEntriesDataOffset += 4; } } break; case 'stsz': // Sample Table SiZe atom if ($ParseAllPossibleAtoms) { $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['sample_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); $stszEntriesDataOffset = 12; if ($atom_structure['sample_size'] == 0) { for ($i = 0; $i < $atom_structure['number_entries']; $i++) { $atom_structure['sample_size_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stszEntriesDataOffset, 4)); $stszEntriesDataOffset += 4; } } } break; case 'stco': // Sample Table Chunk Offset atom // if (true) { if ($ParseAllPossibleAtoms) { $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $stcoEntriesDataOffset = 8; for ($i = 0; $i < $atom_structure['number_entries']; $i++) { $atom_structure['chunk_offset_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stcoEntriesDataOffset, 4)); $stcoEntriesDataOffset += 4; } } break; case 'co64': // Chunk Offset 64-bit (version of "stco" that supports > 2GB files) if ($ParseAllPossibleAtoms) { $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $stcoEntriesDataOffset = 8; for ($i = 0; $i < $atom_structure['number_entries']; $i++) { $atom_structure['chunk_offset_table'][$i] = getid3_lib::BigEndian2Int(substr($atom_data, $stcoEntriesDataOffset, 8)); $stcoEntriesDataOffset += 8; } } break; case 'dref': // Data REFerence atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $drefDataOffset = 8; for ($i = 0; $i < $atom_structure['number_entries']; $i++) { $atom_structure['data_references'][$i]['size'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 4)); $drefDataOffset += 4; $atom_structure['data_references'][$i]['type'] = substr($atom_data, $drefDataOffset, 4); $drefDataOffset += 4; $atom_structure['data_references'][$i]['version'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 1)); $drefDataOffset += 1; $atom_structure['data_references'][$i]['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, $drefDataOffset, 3)); // hardcoded: 0x0000 $drefDataOffset += 3; $atom_structure['data_references'][$i]['data'] = substr($atom_data, $drefDataOffset, ($atom_structure['data_references'][$i]['size'] - 4 - 4 - 1 - 3)); $drefDataOffset += ($atom_structure['data_references'][$i]['size'] - 4 - 4 - 1 - 3); $atom_structure['data_references'][$i]['flags']['self_reference'] = (bool) ($atom_structure['data_references'][$i]['flags_raw'] & 0x001); } break; case 'gmin': // base Media INformation atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['graphics_mode'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); $atom_structure['opcolor_red'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2)); $atom_structure['opcolor_green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 2)); $atom_structure['opcolor_blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2)); $atom_structure['balance'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 2)); $atom_structure['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, 14, 2)); break; case 'smhd': // Sound Media information HeaDer atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['balance'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); $atom_structure['reserved'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2)); break; case 'vmhd': // Video Media information HeaDer atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); $atom_structure['graphics_mode'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); $atom_structure['opcolor_red'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2)); $atom_structure['opcolor_green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 2)); $atom_structure['opcolor_blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2)); $atom_structure['flags']['no_lean_ahead'] = (bool) ($atom_structure['flags_raw'] & 0x001); break; case 'hdlr': // HanDLeR reference atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['component_type'] = substr($atom_data, 4, 4); $atom_structure['component_subtype'] = substr($atom_data, 8, 4); $atom_structure['component_manufacturer'] = substr($atom_data, 12, 4); $atom_structure['component_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4)); $atom_structure['component_flags_mask'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4)); $atom_structure['component_name'] = $this->MaybePascal2String(substr($atom_data, 24)); if (($atom_structure['component_subtype'] == 'STpn') && ($atom_structure['component_manufacturer'] == 'zzzz')) { $info['video']['dataformat'] = 'quicktimevr'; } break; case 'mdhd': // MeDia HeaDer atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); $atom_structure['time_scale'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4)); $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4)); $atom_structure['language_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 2)); $atom_structure['quality'] = getid3_lib::BigEndian2Int(substr($atom_data, 22, 2)); if ($atom_structure['time_scale'] == 0) { $this->error('Corrupt Quicktime file: mdhd.time_scale == zero'); return false; } $info['quicktime']['time_scale'] = ((isset($info['quicktime']['time_scale']) && ($info['quicktime']['time_scale'] < 1000)) ? max($info['quicktime']['time_scale'], $atom_structure['time_scale']) : $atom_structure['time_scale']); $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']); $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']); $atom_structure['playtime_seconds'] = $atom_structure['duration'] / $atom_structure['time_scale']; $atom_structure['language'] = $this->QuicktimeLanguageLookup($atom_structure['language_id']); if (empty($info['comments']['language']) || (!in_array($atom_structure['language'], $info['comments']['language']))) { $info['comments']['language'][] = $atom_structure['language']; } $info['quicktime']['timestamps_unix']['create'][$atom_structure['hierarchy']] = $atom_structure['creation_time_unix']; $info['quicktime']['timestamps_unix']['modify'][$atom_structure['hierarchy']] = $atom_structure['modify_time_unix']; break; case 'pnot': // Preview atom $atom_structure['modification_date'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); // "standard Macintosh format" $atom_structure['version_number'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); // hardcoded: 0x00 $atom_structure['atom_type'] = substr($atom_data, 6, 4); // usually: 'PICT' $atom_structure['atom_index'] = getid3_lib::BigEndian2Int(substr($atom_data, 10, 2)); // usually: 0x01 $atom_structure['modification_date_unix'] = getid3_lib::DateMac2Unix($atom_structure['modification_date']); $info['quicktime']['timestamps_unix']['modify'][$atom_structure['hierarchy']] = $atom_structure['modification_date_unix']; break; case 'crgn': // Clipping ReGioN atom $atom_structure['region_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 2)); // The Region size, Region boundary box, $atom_structure['boundary_box'] = getid3_lib::BigEndian2Int(substr($atom_data, 2, 8)); // and Clipping region data fields $atom_structure['clipping_data'] = substr($atom_data, 10); // constitute a QuickDraw region. break; case 'load': // track LOAD settings atom $atom_structure['preload_start_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); $atom_structure['preload_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $atom_structure['preload_flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); $atom_structure['default_hints_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4)); $atom_structure['default_hints']['double_buffer'] = (bool) ($atom_structure['default_hints_raw'] & 0x0020); $atom_structure['default_hints']['high_quality'] = (bool) ($atom_structure['default_hints_raw'] & 0x0100); break; case 'tmcd': // TiMe CoDe atom case 'chap': // CHAPter list atom case 'sync': // SYNChronization atom case 'scpt': // tranSCriPT atom case 'ssrc': // non-primary SouRCe atom for ($i = 0; $i < strlen($atom_data); $i += 4) { @$atom_structure['track_id'][] = getid3_lib::BigEndian2Int(substr($atom_data, $i, 4)); } break; case 'elst': // Edit LiST atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['number_entries'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); for ($i = 0; $i < $atom_structure['number_entries']; $i++ ) { $atom_structure['edit_list'][$i]['track_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($i * 12) + 0, 4)); $atom_structure['edit_list'][$i]['media_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($i * 12) + 4, 4)); $atom_structure['edit_list'][$i]['media_rate'] = getid3_lib::FixedPoint16_16(substr($atom_data, 8 + ($i * 12) + 8, 4)); } break; case 'kmat': // compressed MATte atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x0000 $atom_structure['matte_data_raw'] = substr($atom_data, 4); break; case 'ctab': // Color TABle atom $atom_structure['color_table_seed'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); // hardcoded: 0x00000000 $atom_structure['color_table_flags'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 2)); // hardcoded: 0x8000 $atom_structure['color_table_size'] = getid3_lib::BigEndian2Int(substr($atom_data, 6, 2)) + 1; for ($colortableentry = 0; $colortableentry < $atom_structure['color_table_size']; $colortableentry++) { $atom_structure['color_table'][$colortableentry]['alpha'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($colortableentry * 8) + 0, 2)); $atom_structure['color_table'][$colortableentry]['red'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($colortableentry * 8) + 2, 2)); $atom_structure['color_table'][$colortableentry]['green'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($colortableentry * 8) + 4, 2)); $atom_structure['color_table'][$colortableentry]['blue'] = getid3_lib::BigEndian2Int(substr($atom_data, 8 + ($colortableentry * 8) + 6, 2)); } break; case 'mvhd': // MoVie HeaDer atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); $atom_structure['time_scale'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4)); $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4)); $atom_structure['preferred_rate'] = getid3_lib::FixedPoint16_16(substr($atom_data, 20, 4)); $atom_structure['preferred_volume'] = getid3_lib::FixedPoint8_8(substr($atom_data, 24, 2)); $atom_structure['reserved'] = substr($atom_data, 26, 10); $atom_structure['matrix_a'] = getid3_lib::FixedPoint16_16(substr($atom_data, 36, 4)); $atom_structure['matrix_b'] = getid3_lib::FixedPoint16_16(substr($atom_data, 40, 4)); $atom_structure['matrix_u'] = getid3_lib::FixedPoint2_30(substr($atom_data, 44, 4)); $atom_structure['matrix_c'] = getid3_lib::FixedPoint16_16(substr($atom_data, 48, 4)); $atom_structure['matrix_d'] = getid3_lib::FixedPoint16_16(substr($atom_data, 52, 4)); $atom_structure['matrix_v'] = getid3_lib::FixedPoint2_30(substr($atom_data, 56, 4)); $atom_structure['matrix_x'] = getid3_lib::FixedPoint16_16(substr($atom_data, 60, 4)); $atom_structure['matrix_y'] = getid3_lib::FixedPoint16_16(substr($atom_data, 64, 4)); $atom_structure['matrix_w'] = getid3_lib::FixedPoint2_30(substr($atom_data, 68, 4)); $atom_structure['preview_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 72, 4)); $atom_structure['preview_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 76, 4)); $atom_structure['poster_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 80, 4)); $atom_structure['selection_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 84, 4)); $atom_structure['selection_duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 88, 4)); $atom_structure['current_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 92, 4)); $atom_structure['next_track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, 96, 4)); if ($atom_structure['time_scale'] == 0) { $this->error('Corrupt Quicktime file: mvhd.time_scale == zero'); return false; } $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']); $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']); $info['quicktime']['timestamps_unix']['create'][$atom_structure['hierarchy']] = $atom_structure['creation_time_unix']; $info['quicktime']['timestamps_unix']['modify'][$atom_structure['hierarchy']] = $atom_structure['modify_time_unix']; $info['quicktime']['time_scale'] = ((isset($info['quicktime']['time_scale']) && ($info['quicktime']['time_scale'] < 1000)) ? max($info['quicktime']['time_scale'], $atom_structure['time_scale']) : $atom_structure['time_scale']); $info['quicktime']['display_scale'] = $atom_structure['matrix_a']; $info['playtime_seconds'] = $atom_structure['duration'] / $atom_structure['time_scale']; break; case 'tkhd': // TracK HeaDer atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); $atom_structure['creation_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $atom_structure['modify_time'] = getid3_lib::BigEndian2Int(substr($atom_data, 8, 4)); $atom_structure['trackid'] = getid3_lib::BigEndian2Int(substr($atom_data, 12, 4)); $atom_structure['reserved1'] = getid3_lib::BigEndian2Int(substr($atom_data, 16, 4)); $atom_structure['duration'] = getid3_lib::BigEndian2Int(substr($atom_data, 20, 4)); $atom_structure['reserved2'] = getid3_lib::BigEndian2Int(substr($atom_data, 24, 8)); $atom_structure['layer'] = getid3_lib::BigEndian2Int(substr($atom_data, 32, 2)); $atom_structure['alternate_group'] = getid3_lib::BigEndian2Int(substr($atom_data, 34, 2)); $atom_structure['volume'] = getid3_lib::FixedPoint8_8(substr($atom_data, 36, 2)); $atom_structure['reserved3'] = getid3_lib::BigEndian2Int(substr($atom_data, 38, 2)); // http://developer.apple.com/library/mac/#documentation/QuickTime/RM/MovieBasics/MTEditing/K-Chapter/11MatrixFunctions.html // http://developer.apple.com/library/mac/#documentation/QuickTime/qtff/QTFFChap4/qtff4.html#//apple_ref/doc/uid/TP40000939-CH206-18737 $atom_structure['matrix_a'] = getid3_lib::FixedPoint16_16(substr($atom_data, 40, 4)); $atom_structure['matrix_b'] = getid3_lib::FixedPoint16_16(substr($atom_data, 44, 4)); $atom_structure['matrix_u'] = getid3_lib::FixedPoint2_30(substr($atom_data, 48, 4)); $atom_structure['matrix_c'] = getid3_lib::FixedPoint16_16(substr($atom_data, 52, 4)); $atom_structure['matrix_d'] = getid3_lib::FixedPoint16_16(substr($atom_data, 56, 4)); $atom_structure['matrix_v'] = getid3_lib::FixedPoint2_30(substr($atom_data, 60, 4)); $atom_structure['matrix_x'] = getid3_lib::FixedPoint16_16(substr($atom_data, 64, 4)); $atom_structure['matrix_y'] = getid3_lib::FixedPoint16_16(substr($atom_data, 68, 4)); $atom_structure['matrix_w'] = getid3_lib::FixedPoint2_30(substr($atom_data, 72, 4)); $atom_structure['width'] = getid3_lib::FixedPoint16_16(substr($atom_data, 76, 4)); $atom_structure['height'] = getid3_lib::FixedPoint16_16(substr($atom_data, 80, 4)); $atom_structure['flags']['enabled'] = (bool) ($atom_structure['flags_raw'] & 0x0001); $atom_structure['flags']['in_movie'] = (bool) ($atom_structure['flags_raw'] & 0x0002); $atom_structure['flags']['in_preview'] = (bool) ($atom_structure['flags_raw'] & 0x0004); $atom_structure['flags']['in_poster'] = (bool) ($atom_structure['flags_raw'] & 0x0008); $atom_structure['creation_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['creation_time']); $atom_structure['modify_time_unix'] = getid3_lib::DateMac2Unix($atom_structure['modify_time']); $info['quicktime']['timestamps_unix']['create'][$atom_structure['hierarchy']] = $atom_structure['creation_time_unix']; $info['quicktime']['timestamps_unix']['modify'][$atom_structure['hierarchy']] = $atom_structure['modify_time_unix']; // https://www.getid3.org/phpBB3/viewtopic.php?t=1908 // attempt to compute rotation from matrix values // 2017-Dec-28: uncertain if 90/270 are correctly oriented; values returned by FixedPoint16_16 should perhaps be -1 instead of 65535(?) $matrixRotation = 0; switch ($atom_structure['matrix_a'].':'.$atom_structure['matrix_b'].':'.$atom_structure['matrix_c'].':'.$atom_structure['matrix_d']) { case '1:0:0:1': $matrixRotation = 0; break; case '0:1:65535:0': $matrixRotation = 90; break; case '65535:0:0:65535': $matrixRotation = 180; break; case '0:65535:1:0': $matrixRotation = 270; break; default: break; } // https://www.getid3.org/phpBB3/viewtopic.php?t=2468 // The rotation matrix can appear in the Quicktime file multiple times, at least once for each track, // and it's possible that only the video track (or, in theory, one of the video tracks) is flagged as // rotated while the other tracks (e.g. audio) is tagged as rotation=0 (behavior noted on iPhone 8 Plus) // The correct solution would be to check if the TrackID associated with the rotation matrix is indeed // a video track (or the main video track) and only set the rotation then, but since information about // what track is what is not trivially there to be examined, the lazy solution is to set the rotation // if it is found to be nonzero, on the assumption that tracks that don't need it will have rotation set // to zero (and be effectively ignored) and the video track will have rotation set correctly, which will // either be zero and automatically correct, or nonzero and be set correctly. if (!isset($info['video']['rotate']) || (($info['video']['rotate'] == 0) && ($matrixRotation > 0))) { $info['quicktime']['video']['rotate'] = $info['video']['rotate'] = $matrixRotation; } if ($atom_structure['flags']['enabled'] == 1) { if (!isset($info['video']['resolution_x']) || !isset($info['video']['resolution_y'])) { $info['video']['resolution_x'] = $atom_structure['width']; $info['video']['resolution_y'] = $atom_structure['height']; } $info['video']['resolution_x'] = max($info['video']['resolution_x'], $atom_structure['width']); $info['video']['resolution_y'] = max($info['video']['resolution_y'], $atom_structure['height']); $info['quicktime']['video']['resolution_x'] = $info['video']['resolution_x']; $info['quicktime']['video']['resolution_y'] = $info['video']['resolution_y']; } else { // see: https://www.getid3.org/phpBB3/viewtopic.php?t=1295 //if (isset($info['video']['resolution_x'])) { unset($info['video']['resolution_x']); } //if (isset($info['video']['resolution_y'])) { unset($info['video']['resolution_y']); } //if (isset($info['quicktime']['video'])) { unset($info['quicktime']['video']); } } break; case 'iods': // Initial Object DeScriptor atom // http://www.koders.com/c/fid1FAB3E762903DC482D8A246D4A4BF9F28E049594.aspx?s=windows.h // http://libquicktime.sourcearchive.com/documentation/1.0.2plus-pdebian/iods_8c-source.html $offset = 0; $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); $offset += 1; $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 3)); $offset += 3; $atom_structure['mp4_iod_tag'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); $offset += 1; $atom_structure['length'] = $this->quicktime_read_mp4_descr_length($atom_data, $offset); //$offset already adjusted by quicktime_read_mp4_descr_length() $atom_structure['object_descriptor_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 2)); $offset += 2; $atom_structure['od_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); $offset += 1; $atom_structure['scene_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); $offset += 1; $atom_structure['audio_profile_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); $offset += 1; $atom_structure['video_profile_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); $offset += 1; $atom_structure['graphics_profile_level'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); $offset += 1; $atom_structure['num_iods_tracks'] = ($atom_structure['length'] - 7) / 6; // 6 bytes would only be right if all tracks use 1-byte length fields for ($i = 0; $i < $atom_structure['num_iods_tracks']; $i++) { $atom_structure['track'][$i]['ES_ID_IncTag'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 1)); $offset += 1; $atom_structure['track'][$i]['length'] = $this->quicktime_read_mp4_descr_length($atom_data, $offset); //$offset already adjusted by quicktime_read_mp4_descr_length() $atom_structure['track'][$i]['track_id'] = getid3_lib::BigEndian2Int(substr($atom_data, $offset, 4)); $offset += 4; } $atom_structure['audio_profile_name'] = $this->QuicktimeIODSaudioProfileName($atom_structure['audio_profile_id']); $atom_structure['video_profile_name'] = $this->QuicktimeIODSvideoProfileName($atom_structure['video_profile_id']); break; case 'ftyp': // FileTYPe (?) atom (for MP4 it seems) $atom_structure['signature'] = substr($atom_data, 0, 4); $atom_structure['unknown_1'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $atom_structure['fourcc'] = substr($atom_data, 8, 4); break; case 'mdat': // Media DATa atom // 'mdat' contains the actual data for the audio/video, possibly also subtitles /* due to lack of known documentation, this is a kludge implementation. If you know of documentation on how mdat is properly structed, please send it to info@getid3.org */ // first, skip any 'wide' padding, and second 'mdat' header (with specified size of zero?) $mdat_offset = 0; while (true) { if (substr($atom_data, $mdat_offset, 8) == "\x00\x00\x00\x08".'wide') { $mdat_offset += 8; } elseif (substr($atom_data, $mdat_offset, 8) == "\x00\x00\x00\x00".'mdat') { $mdat_offset += 8; } else { break; } } if (substr($atom_data, $mdat_offset, 4) == 'GPRO') { $GOPRO_chunk_length = getid3_lib::LittleEndian2Int(substr($atom_data, $mdat_offset + 4, 4)); $GOPRO_offset = 8; $atom_structure['GPRO']['raw'] = substr($atom_data, $mdat_offset + 8, $GOPRO_chunk_length - 8); $atom_structure['GPRO']['firmware'] = substr($atom_structure['GPRO']['raw'], 0, 15); $atom_structure['GPRO']['unknown1'] = substr($atom_structure['GPRO']['raw'], 15, 16); $atom_structure['GPRO']['unknown2'] = substr($atom_structure['GPRO']['raw'], 31, 32); $atom_structure['GPRO']['unknown3'] = substr($atom_structure['GPRO']['raw'], 63, 16); $atom_structure['GPRO']['camera'] = substr($atom_structure['GPRO']['raw'], 79, 32); $info['quicktime']['camera']['model'] = rtrim($atom_structure['GPRO']['camera'], "\x00"); } // check to see if it looks like chapter titles, in the form of unterminated strings with a leading 16-bit size field while (($mdat_offset < (strlen($atom_data) - 8)) && ($chapter_string_length = getid3_lib::BigEndian2Int(substr($atom_data, $mdat_offset, 2))) && ($chapter_string_length < 1000) && ($chapter_string_length <= (strlen($atom_data) - $mdat_offset - 2)) && preg_match('#^([\x00-\xFF]{2})([\x20-\xFF]+)$#', substr($atom_data, $mdat_offset, $chapter_string_length + 2), $chapter_matches)) { list($dummy, $chapter_string_length_hex, $chapter_string) = $chapter_matches; $mdat_offset += (2 + $chapter_string_length); @$info['quicktime']['comments']['chapters'][] = $chapter_string; // "encd" atom specifies encoding. In theory could be anything, almost always UTF-8, but may be UTF-16 with BOM (not currently handled) if (substr($atom_data, $mdat_offset, 12) == "\x00\x00\x00\x0C\x65\x6E\x63\x64\x00\x00\x01\x00") { // UTF-8 $mdat_offset += 12; } } if (($atomsize > 8) && (!isset($info['avdataend_tmp']) || ($info['quicktime'][$atomname]['size'] > ($info['avdataend_tmp'] - $info['avdataoffset'])))) { $info['avdataoffset'] = $atom_structure['offset'] + 8; // $info['quicktime'][$atomname]['offset'] + 8; $OldAVDataEnd = $info['avdataend']; $info['avdataend'] = $atom_structure['offset'] + $atom_structure['size']; // $info['quicktime'][$atomname]['offset'] + $info['quicktime'][$atomname]['size']; $getid3_temp = new getID3(); $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_temp->info['avdataoffset'] = $info['avdataoffset']; $getid3_temp->info['avdataend'] = $info['avdataend']; $getid3_mp3 = new getid3_mp3($getid3_temp); if ($getid3_mp3->MPEGaudioHeaderValid($getid3_mp3->MPEGaudioHeaderDecode($this->fread(4)))) { $getid3_mp3->getOnlyMPEGaudioInfo($getid3_temp->info['avdataoffset'], false); if (!empty($getid3_temp->info['warning'])) { foreach ($getid3_temp->info['warning'] as $value) { $this->warning($value); } } if (!empty($getid3_temp->info['mpeg'])) { $info['mpeg'] = $getid3_temp->info['mpeg']; if (isset($info['mpeg']['audio'])) { $info['audio']['dataformat'] = 'mp3'; $info['audio']['codec'] = (!empty($info['mpeg']['audio']['encoder']) ? $info['mpeg']['audio']['encoder'] : (!empty($info['mpeg']['audio']['codec']) ? $info['mpeg']['audio']['codec'] : (!empty($info['mpeg']['audio']['LAME']) ? 'LAME' :'mp3'))); $info['audio']['sample_rate'] = $info['mpeg']['audio']['sample_rate']; $info['audio']['channels'] = $info['mpeg']['audio']['channels']; $info['audio']['bitrate'] = $info['mpeg']['audio']['bitrate']; $info['audio']['bitrate_mode'] = strtolower($info['mpeg']['audio']['bitrate_mode']); $info['bitrate'] = $info['audio']['bitrate']; } } } unset($getid3_mp3, $getid3_temp); $info['avdataend'] = $OldAVDataEnd; unset($OldAVDataEnd); } unset($mdat_offset, $chapter_string_length, $chapter_matches); break; case 'ID32': // ID3v2 getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.tag.id3v2.php', __FILE__, true); $getid3_temp = new getID3(); $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_id3v2 = new getid3_id3v2($getid3_temp); $getid3_id3v2->StartingOffset = $atom_structure['offset'] + 14; // framelength(4)+framename(4)+flags(4)+??(2) if ($atom_structure['valid'] = $getid3_id3v2->Analyze()) { $atom_structure['id3v2'] = $getid3_temp->info['id3v2']; } else { $this->warning('ID32 frame at offset '.$atom_structure['offset'].' did not parse'); } unset($getid3_temp, $getid3_id3v2); break; case 'free': // FREE space atom case 'skip': // SKIP atom case 'wide': // 64-bit expansion placeholder atom // 'free', 'skip' and 'wide' are just padding, contains no useful data at all // When writing QuickTime files, it is sometimes necessary to update an atom's size. // It is impossible to update a 32-bit atom to a 64-bit atom since the 32-bit atom // is only 8 bytes in size, and the 64-bit atom requires 16 bytes. Therefore, QuickTime // puts an 8-byte placeholder atom before any atoms it may have to update the size of. // In this way, if the atom needs to be converted from a 32-bit to a 64-bit atom, the // placeholder atom can be overwritten to obtain the necessary 8 extra bytes. // The placeholder atom has a type of kWideAtomPlaceholderType ( 'wide' ). break; case 'nsav': // NoSAVe atom // http://developer.apple.com/technotes/tn/tn2038.html $atom_structure['data'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); break; case 'ctyp': // Controller TYPe atom (seen on QTVR) // http://homepages.slingshot.co.nz/~helmboy/quicktime/formats/qtm-layout.txt // some controller names are: // 0x00 + 'std' for linear movie // 'none' for no controls $atom_structure['ctyp'] = substr($atom_data, 0, 4); $info['quicktime']['controller'] = $atom_structure['ctyp']; switch ($atom_structure['ctyp']) { case 'qtvr': $info['video']['dataformat'] = 'quicktimevr'; break; } break; case 'pano': // PANOrama track (seen on QTVR) $atom_structure['pano'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 4)); break; case 'hint': // HINT track case 'hinf': // case 'hinv': // case 'hnti': // $info['quicktime']['hinting'] = true; break; case 'imgt': // IMaGe Track reference (kQTVRImageTrackRefType) (seen on QTVR) for ($i = 0; $i < ($atom_structure['size'] - 8); $i += 4) { $atom_structure['imgt'][] = getid3_lib::BigEndian2Int(substr($atom_data, $i, 4)); } break; // Observed-but-not-handled atom types are just listed here to prevent warnings being generated case 'FXTC': // Something to do with Adobe After Effects (?) case 'PrmA': case 'code': case 'FIEL': // this is NOT "fiel" (Field Ordering) as describe here: http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html case 'tapt': // TrackApertureModeDimensionsAID - http://developer.apple.com/documentation/QuickTime/Reference/QT7-1_Update_Reference/Constants/Constants.html // tapt seems to be used to compute the video size [https://www.getid3.org/phpBB3/viewtopic.php?t=838] // * http://lists.apple.com/archives/quicktime-api/2006/Aug/msg00014.html // * http://handbrake.fr/irclogs/handbrake-dev/handbrake-dev20080128_pg2.html case 'ctts':// STCompositionOffsetAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html case 'cslg':// STCompositionShiftLeastGreatestAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html case 'sdtp':// STSampleDependencyAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html case 'stps':// STPartialSyncSampleAID - http://developer.apple.com/documentation/QuickTime/Reference/QTRef_Constants/Reference/reference.html //$atom_structure['data'] = $atom_data; break; case "\xA9".'xyz': // GPS latitude+longitude+altitude $atom_structure['data'] = $atom_data; if (preg_match('#([\\+\\-][0-9\\.]+)([\\+\\-][0-9\\.]+)([\\+\\-][0-9\\.]+)?/$#i', $atom_data, $matches)) { @list($all, $latitude, $longitude, $altitude) = $matches; $info['quicktime']['comments']['gps_latitude'][] = floatval($latitude); $info['quicktime']['comments']['gps_longitude'][] = floatval($longitude); if (!empty($altitude)) { // @phpstan-ignore-line $info['quicktime']['comments']['gps_altitude'][] = floatval($altitude); } } else { $this->warning('QuickTime atom "©xyz" data does not match expected data pattern at offset '.$baseoffset.'. Please report as getID3() bug.'); } break; case 'NCDT': // https://exiftool.org/TagNames/Nikon.html // Nikon-specific QuickTime tags found in the NCDT atom of MOV videos from some Nikon cameras such as the Coolpix S8000 and D5100 $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 4, $atomHierarchy, $ParseAllPossibleAtoms); break; case 'NCTH': // Nikon Camera THumbnail image case 'NCVW': // Nikon Camera preVieW image case 'NCM1': // Nikon Camera preview iMage 1 case 'NCM2': // Nikon Camera preview iMage 2 // https://exiftool.org/TagNames/Nikon.html if (preg_match('/^\xFF\xD8\xFF/', $atom_data)) { $descriptions = array( 'NCTH' => 'Nikon Camera Thumbnail Image', 'NCVW' => 'Nikon Camera Preview Image', 'NCM1' => 'Nikon Camera Preview Image 1', 'NCM2' => 'Nikon Camera Preview Image 2', ); $atom_structure['data'] = $atom_data; $atom_structure['image_mime'] = 'image/jpeg'; $atom_structure['description'] = $descriptions[$atomname]; $info['quicktime']['comments']['picture'][] = array( 'image_mime' => $atom_structure['image_mime'], 'data' => $atom_data, 'description' => $atom_structure['description'] ); } break; case 'NCTG': // Nikon - https://exiftool.org/TagNames/Nikon.html#NCTG getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.tag.nikon-nctg.php', __FILE__, true); $nikonNCTG = new getid3_tag_nikon_nctg($this->getid3); $atom_structure['data'] = $nikonNCTG->parse($atom_data); break; case 'NCHD': // Nikon:MakerNoteVersion - https://exiftool.org/TagNames/Nikon.html $makerNoteVersion = ''; for ($i = 0, $iMax = strlen($atom_data); $i < $iMax; ++$i) { if (ord($atom_data[$i]) <= 0x1F) { $makerNoteVersion .= ' '.ord($atom_data[$i]); } else { $makerNoteVersion .= $atom_data[$i]; } } $makerNoteVersion = rtrim($makerNoteVersion, "\x00"); $atom_structure['data'] = array( 'MakerNoteVersion' => $makerNoteVersion ); break; case 'NCDB': // Nikon - https://exiftool.org/TagNames/Nikon.html case 'CNCV': // Canon:CompressorVersion - https://exiftool.org/TagNames/Canon.html $atom_structure['data'] = $atom_data; break; case "\x00\x00\x00\x00": // some kind of metacontainer, may contain a big data dump such as: // mdta keys \005 mdtacom.apple.quicktime.make (mdtacom.apple.quicktime.creationdate ,mdtacom.apple.quicktime.location.ISO6709 $mdtacom.apple.quicktime.software !mdtacom.apple.quicktime.model ilst \01D \001 \015data \001DE\010Apple 0 \002 (data \001DE\0102011-05-11T17:54:04+0200 2 \003 *data \001DE\010+52.4936+013.3897+040.247/ \01D \004 \015data \001DE\0104.3.1 \005 \018data \001DE\010iPhone 4 // https://xhelmboyx.tripod.com/formats/qti-layout.txt $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom(substr($atom_data, 4), $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); //$atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); break; case 'meta': // METAdata atom // https://developer.apple.com/library/mac/documentation/QuickTime/QTFF/Metadata/Metadata.html $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 8, $atomHierarchy, $ParseAllPossibleAtoms); break; case 'data': // metaDATA atom // seems to be 2 bytes language code (ASCII), 2 bytes language code (probably packed ISO639-2/T), remainder is useful data $atom_structure['lang2'] = substr($atom_data, 4 + 0, 2); $atom_structure['lang3'] = $this->QuicktimeLanguageLookup(getid3_lib::BigEndian2Int(substr($atom_data, 4 + 2, 2))); $atom_structure['data'] = substr($atom_data, 4 + 4); $atom_structure['key_name'] = (isset($info['quicktime']['temp_meta_key_names'][$this->metaDATAkey]) ? $info['quicktime']['temp_meta_key_names'][$this->metaDATAkey] : ''); $this->metaDATAkey++; switch ($atom_structure['key_name']) { case 'com.android.capture.fps': case 'com.apple.quicktime.live-photo.vitality-score': $atom_structure['data'] = getid3_lib::BigEndian2Float($atom_structure['data']); break; case 'com.apple.quicktime.camera.focal_length.35mm_equivalent': case 'com.apple.quicktime.live-photo.auto': case 'com.apple.quicktime.live-photo.vitality-scoring-version': case 'com.apple.quicktime.full-frame-rate-playback-intent': $atom_structure['data'] = getid3_lib::BigEndian2Int($atom_structure['data']); break; case 'com.apple.quicktime.location.accuracy.horizontal': $atom_structure['data'] = (float) $atom_structure['data']; // string representing float value e.g. "14.989691" break; } if ($atom_structure['key_name'] && $atom_structure['data']) { @$info['quicktime']['comments'][str_replace('com.android.', '', str_replace('com.apple.quicktime.', '', $atom_structure['key_name']))][] = $atom_structure['data']; } break; case 'keys': // KEYS that may be present in the metadata atom. // https://developer.apple.com/library/mac/documentation/QuickTime/QTFF/Metadata/Metadata.html#//apple_ref/doc/uid/TP40000939-CH1-SW21 // The metadata item keys atom holds a list of the metadata keys that may be present in the metadata atom. // This list is indexed starting with 1; 0 is a reserved index value. The metadata item keys atom is a full atom with an atom type of "keys". $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); $atom_structure['entry_count'] = getid3_lib::BigEndian2Int(substr($atom_data, 4, 4)); $keys_atom_offset = 8; $keys_index_base = (!empty($info['quicktime']['temp_meta_key_names']) ? count($info['quicktime']['temp_meta_key_names']) : 0); // file may contain multiple "keys" entries, starting index should be culmulative not reset to 1 on each set; https://github.com/JamesHeinrich/getID3/issues/452 for ($i = 1; $i <= $atom_structure['entry_count']; $i++) { $atom_structure['keys'][($keys_index_base + $i)]['key_size'] = getid3_lib::BigEndian2Int(substr($atom_data, $keys_atom_offset + 0, 4)); $atom_structure['keys'][($keys_index_base + $i)]['key_namespace'] = substr($atom_data, $keys_atom_offset + 4, 4); $atom_structure['keys'][($keys_index_base + $i)]['key_value'] = substr($atom_data, $keys_atom_offset + 8, $atom_structure['keys'][($keys_index_base + $i)]['key_size'] - 8); $keys_atom_offset += $atom_structure['keys'][($keys_index_base + $i)]['key_size']; // key_size includes the 4+4 bytes for key_size and key_namespace $info['quicktime']['temp_meta_key_names'][($keys_index_base + $i)] = $atom_structure['keys'][($keys_index_base + $i)]['key_value']; } break; case 'uuid': // user-defined atom often seen containing XML data, also used for potentially many other purposes, only a few specifically handled by getID3 (e.g. 360fly spatial data) //Get the UUID ID in first 16 bytes $uuid_bytes_read = unpack('H8time_low/H4time_mid/H4time_hi/H4clock_seq_hi/H12clock_seq_low', substr($atom_data, 0, 16)); $atom_structure['uuid_field_id'] = implode('-', $uuid_bytes_read); switch ($atom_structure['uuid_field_id']) { // http://fileformats.archiveteam.org/wiki/Boxes/atoms_format#UUID_boxes case '0537cdab-9d0c-4431-a72a-fa561f2a113e': // Exif - http://fileformats.archiveteam.org/wiki/Exif case '2c4c0100-8504-40b9-a03e-562148d6dfeb': // Photoshop Image Resources - http://fileformats.archiveteam.org/wiki/Photoshop_Image_Resources case '33c7a4d2-b81d-4723-a0ba-f1a3e097ad38': // IPTC-IIM - http://fileformats.archiveteam.org/wiki/IPTC-IIM case '8974dbce-7be7-4c51-84f9-7148f9882554': // PIFF Track Encryption Box - http://fileformats.archiveteam.org/wiki/Protected_Interoperable_File_Format case '96a9f1f1-dc98-402d-a7ae-d68e34451809': // GeoJP2 World File Box - http://fileformats.archiveteam.org/wiki/GeoJP2 case 'a2394f52-5a9b-4f14-a244-6c427c648df4': // PIFF Sample Encryption Box - http://fileformats.archiveteam.org/wiki/Protected_Interoperable_File_Format case 'b14bf8bd-083d-4b43-a5ae-8cd7d5a6ce03': // GeoJP2 GeoTIFF Box - http://fileformats.archiveteam.org/wiki/GeoJP2 case 'd08a4f18-10f3-4a82-b6c8-32d8aba183d3': // PIFF Protection System Specific Header Box - http://fileformats.archiveteam.org/wiki/Protected_Interoperable_File_Format $this->warning('Unhandled (but recognized) "uuid" atom identified by "'.$atom_structure['uuid_field_id'].'" at offset '.$atom_structure['offset'].' ('.strlen($atom_data).' bytes)'); break; case 'be7acfcb-97a9-42e8-9c71-999491e3afac': // XMP data (in XML format) $atom_structure['xml'] = substr($atom_data, 16, strlen($atom_data) - 16 - 8); // 16 bytes for UUID, 8 bytes header(?) break; case 'efe1589a-bb77-49ef-8095-27759eb1dc6f': // 360fly data /* 360fly code in this block by Paul Lewis 2019-Oct-31 */ /* Sensor Timestamps need to be calculated using the recordings base time at ['quicktime']['moov']['subatoms'][0]['creation_time_unix']. */ $atom_structure['title'] = '360Fly Sensor Data'; //Get the UUID HEADER data $uuid_bytes_read = unpack('vheader_size/vheader_version/vtimescale/vhardware_version/x/x/x/x/x/x/x/x/x/x/x/x/x/x/x/x/', substr($atom_data, 16, 32)); $atom_structure['uuid_header'] = $uuid_bytes_read; $start_byte = 48; $atom_SENSOR_data = substr($atom_data, $start_byte); $atom_structure['sensor_data']['data_type'] = array( 'fusion_count' => 0, // ID 250 'fusion_data' => array(), 'accel_count' => 0, // ID 1 'accel_data' => array(), 'gyro_count' => 0, // ID 2 'gyro_data' => array(), 'magno_count' => 0, // ID 3 'magno_data' => array(), 'gps_count' => 0, // ID 5 'gps_data' => array(), 'rotation_count' => 0, // ID 6 'rotation_data' => array(), 'unknown_count' => 0, // ID ?? 'unknown_data' => array(), 'debug_list' => '', // Used to debug variables stored as comma delimited strings ); $debug_structure = array(); $debug_structure['debug_items'] = array(); // Can start loop here to decode all sensor data in 32 Byte chunks: foreach (str_split($atom_SENSOR_data, 32) as $sensor_key => $sensor_data) { // This gets me a data_type code to work out what data is in the next 31 bytes. $sensor_data_type = substr($sensor_data, 0, 1); $sensor_data_content = substr($sensor_data, 1); $uuid_bytes_read = unpack('C*', $sensor_data_type); $sensor_data_array = array(); switch ($uuid_bytes_read[1]) { case 250: $atom_structure['sensor_data']['data_type']['fusion_count']++; $uuid_bytes_read = unpack('cmode/Jtimestamp/Gyaw/Gpitch/Groll/x*', $sensor_data_content); $sensor_data_array['mode'] = $uuid_bytes_read['mode']; $sensor_data_array['timestamp'] = $uuid_bytes_read['timestamp']; $sensor_data_array['yaw'] = $uuid_bytes_read['yaw']; $sensor_data_array['pitch'] = $uuid_bytes_read['pitch']; $sensor_data_array['roll'] = $uuid_bytes_read['roll']; array_push($atom_structure['sensor_data']['data_type']['fusion_data'], $sensor_data_array); break; case 1: $atom_structure['sensor_data']['data_type']['accel_count']++; $uuid_bytes_read = unpack('cmode/Jtimestamp/Gyaw/Gpitch/Groll/x*', $sensor_data_content); $sensor_data_array['mode'] = $uuid_bytes_read['mode']; $sensor_data_array['timestamp'] = $uuid_bytes_read['timestamp']; $sensor_data_array['yaw'] = $uuid_bytes_read['yaw']; $sensor_data_array['pitch'] = $uuid_bytes_read['pitch']; $sensor_data_array['roll'] = $uuid_bytes_read['roll']; array_push($atom_structure['sensor_data']['data_type']['accel_data'], $sensor_data_array); break; case 2: $atom_structure['sensor_data']['data_type']['gyro_count']++; $uuid_bytes_read = unpack('cmode/Jtimestamp/Gyaw/Gpitch/Groll/x*', $sensor_data_content); $sensor_data_array['mode'] = $uuid_bytes_read['mode']; $sensor_data_array['timestamp'] = $uuid_bytes_read['timestamp']; $sensor_data_array['yaw'] = $uuid_bytes_read['yaw']; $sensor_data_array['pitch'] = $uuid_bytes_read['pitch']; $sensor_data_array['roll'] = $uuid_bytes_read['roll']; array_push($atom_structure['sensor_data']['data_type']['gyro_data'], $sensor_data_array); break; case 3: $atom_structure['sensor_data']['data_type']['magno_count']++; $uuid_bytes_read = unpack('cmode/Jtimestamp/Gmagx/Gmagy/Gmagz/x*', $sensor_data_content); $sensor_data_array['mode'] = $uuid_bytes_read['mode']; $sensor_data_array['timestamp'] = $uuid_bytes_read['timestamp']; $sensor_data_array['magx'] = $uuid_bytes_read['magx']; $sensor_data_array['magy'] = $uuid_bytes_read['magy']; $sensor_data_array['magz'] = $uuid_bytes_read['magz']; array_push($atom_structure['sensor_data']['data_type']['magno_data'], $sensor_data_array); break; case 5: $atom_structure['sensor_data']['data_type']['gps_count']++; $uuid_bytes_read = unpack('cmode/Jtimestamp/Glat/Glon/Galt/Gspeed/nbearing/nacc/x*', $sensor_data_content); $sensor_data_array['mode'] = $uuid_bytes_read['mode']; $sensor_data_array['timestamp'] = $uuid_bytes_read['timestamp']; $sensor_data_array['lat'] = $uuid_bytes_read['lat']; $sensor_data_array['lon'] = $uuid_bytes_read['lon']; $sensor_data_array['alt'] = $uuid_bytes_read['alt']; $sensor_data_array['speed'] = $uuid_bytes_read['speed']; $sensor_data_array['bearing'] = $uuid_bytes_read['bearing']; $sensor_data_array['acc'] = $uuid_bytes_read['acc']; array_push($atom_structure['sensor_data']['data_type']['gps_data'], $sensor_data_array); //array_push($debug_structure['debug_items'], $uuid_bytes_read['timestamp']); break; case 6: $atom_structure['sensor_data']['data_type']['rotation_count']++; $uuid_bytes_read = unpack('cmode/Jtimestamp/Grotx/Groty/Grotz/x*', $sensor_data_content); $sensor_data_array['mode'] = $uuid_bytes_read['mode']; $sensor_data_array['timestamp'] = $uuid_bytes_read['timestamp']; $sensor_data_array['rotx'] = $uuid_bytes_read['rotx']; $sensor_data_array['roty'] = $uuid_bytes_read['roty']; $sensor_data_array['rotz'] = $uuid_bytes_read['rotz']; array_push($atom_structure['sensor_data']['data_type']['rotation_data'], $sensor_data_array); break; default: $atom_structure['sensor_data']['data_type']['unknown_count']++; break; } } //if (isset($debug_structure['debug_items']) && count($debug_structure['debug_items']) > 0) { // $atom_structure['sensor_data']['data_type']['debug_list'] = implode(',', $debug_structure['debug_items']); //} else { $atom_structure['sensor_data']['data_type']['debug_list'] = 'No debug items in list!'; //} break; default: $this->warning('Unhandled "uuid" atom identified by "'.$atom_structure['uuid_field_id'].'" at offset '.$atom_structure['offset'].' ('.strlen($atom_data).' bytes)'); } break; case 'gps ': // https://dashcamtalk.com/forum/threads/script-to-extract-gps-data-from-novatek-mp4.20808/page-2#post-291730 // The 'gps ' contains simple look up table made up of 8byte rows, that point to the 'free' atoms that contains the actual GPS data. // The first row is version/metadata/notsure, I skip that. // The following rows consist of 4byte address (absolute) and 4byte size (0x1000), these point to the GPS data in the file. $GPS_rowsize = 8; // 4 bytes for offset, 4 bytes for size if (strlen($atom_data) > 0) { if ((strlen($atom_data) % $GPS_rowsize) == 0) { $atom_structure['gps_toc'] = array(); foreach (str_split($atom_data, $GPS_rowsize) as $counter => $datapair) { $atom_structure['gps_toc'][] = unpack('Noffset/Nsize', substr($atom_data, $counter * $GPS_rowsize, $GPS_rowsize)); } $atom_structure['gps_entries'] = array(); $previous_offset = $this->ftell(); foreach ($atom_structure['gps_toc'] as $key => $gps_pointer) { if ($key == 0) { // "The first row is version/metadata/notsure, I skip that." continue; } $this->fseek($gps_pointer['offset']); $GPS_free_data = $this->fread($gps_pointer['size']); /* // 2017-05-10: I see some of the data, notably the Hour-Minute-Second, but cannot reconcile the rest of the data. However, the NMEA "GPRMC" line is there and relatively easy to parse, so I'm using that instead // https://dashcamtalk.com/forum/threads/script-to-extract-gps-data-from-novatek-mp4.20808/page-2#post-291730 // The structure of the GPS data atom (the 'free' atoms mentioned above) is following: // hour,minute,second,year,month,day,active,latitude_b,longitude_b,unknown2,latitude,longitude,speed = struct.unpack_from(' 90) ? 1900 : 2000); // complete lack of foresight: datestamps are stored with 2-digit years, take best guess $GPS_this_GPRMC['timestamp'] = $year.'-'.$month.'-'.$day.' '.$hour.':'.$minute.':'.$second.$ms; $GPS_this_GPRMC['active'] = ($GPS_this_GPRMC['raw']['status'] == 'A'); // A=Active,V=Void foreach (array('latitude','longitude') as $latlon) { preg_match('#^([0-9]{1,3})([0-9]{2}\\.[0-9]+)$#', $GPS_this_GPRMC['raw'][$latlon], $matches); list($dummy, $deg, $min) = $matches; $GPS_this_GPRMC[$latlon] = (int) $deg + ((float) $min / 60); } $GPS_this_GPRMC['latitude'] *= (($GPS_this_GPRMC['raw']['latitude_direction'] == 'S') ? -1 : 1); $GPS_this_GPRMC['longitude'] *= (($GPS_this_GPRMC['raw']['longitude_direction'] == 'W') ? -1 : 1); $GPS_this_GPRMC['heading'] = $GPS_this_GPRMC['raw']['angle']; $GPS_this_GPRMC['speed_knot'] = $GPS_this_GPRMC['raw']['knots']; $GPS_this_GPRMC['speed_kmh'] = (float) $GPS_this_GPRMC['raw']['knots'] * 1.852; if ($GPS_this_GPRMC['raw']['variation']) { $GPS_this_GPRMC['variation'] = (float) $GPS_this_GPRMC['raw']['variation']; $GPS_this_GPRMC['variation'] *= (($GPS_this_GPRMC['raw']['variation_direction'] == 'W') ? -1 : 1); } $atom_structure['gps_entries'][$key] = $GPS_this_GPRMC; @$info['quicktime']['gps_track'][$GPS_this_GPRMC['timestamp']] = array( 'latitude' => (float) $GPS_this_GPRMC['latitude'], 'longitude' => (float) $GPS_this_GPRMC['longitude'], 'speed_kmh' => (float) $GPS_this_GPRMC['speed_kmh'], 'heading' => (float) $GPS_this_GPRMC['heading'], ); } else { $this->warning('Unhandled GPS format in "free" atom at offset '.$gps_pointer['offset']); } } $this->fseek($previous_offset); } else { $this->warning('QuickTime atom "'.$atomname.'" is not mod-8 bytes long ('.$atomsize.' bytes) at offset '.$baseoffset); } } else { $this->warning('QuickTime atom "'.$atomname.'" is zero bytes long at offset '.$baseoffset); } break; case 'loci':// 3GP location (El Loco) $loffset = 0; $info['quicktime']['comments']['gps_flags'] = array( getid3_lib::BigEndian2Int(substr($atom_data, 0, 4))); $info['quicktime']['comments']['gps_lang'] = array( getid3_lib::BigEndian2Int(substr($atom_data, 4, 2))); $info['quicktime']['comments']['gps_location'] = array( $this->LociString(substr($atom_data, 6), $loffset)); $loci_data = substr($atom_data, 6 + $loffset); $info['quicktime']['comments']['gps_role'] = array( getid3_lib::BigEndian2Int(substr($loci_data, 0, 1))); $info['quicktime']['comments']['gps_longitude'] = array(getid3_lib::FixedPoint16_16(substr($loci_data, 1, 4))); $info['quicktime']['comments']['gps_latitude'] = array(getid3_lib::FixedPoint16_16(substr($loci_data, 5, 4))); $info['quicktime']['comments']['gps_altitude'] = array(getid3_lib::FixedPoint16_16(substr($loci_data, 9, 4))); $info['quicktime']['comments']['gps_body'] = array( $this->LociString(substr($loci_data, 13 ), $loffset)); $info['quicktime']['comments']['gps_notes'] = array( $this->LociString(substr($loci_data, 13 + $loffset), $loffset)); break; case 'chpl': // CHaPter List // https://www.adobe.com/content/dam/Adobe/en/devnet/flv/pdfs/video_file_format_spec_v10.pdf $chpl_version = getid3_lib::BigEndian2Int(substr($atom_data, 4, 1)); // Expected to be 0 $chpl_flags = getid3_lib::BigEndian2Int(substr($atom_data, 5, 3)); // Reserved, set to 0 $chpl_count = getid3_lib::BigEndian2Int(substr($atom_data, 8, 1)); $chpl_offset = 9; for ($i = 0; $i < $chpl_count; $i++) { if (($chpl_offset + 9) >= strlen($atom_data)) { $this->warning('QuickTime chapter '.$i.' extends beyond end of "chpl" atom'); break; } $info['quicktime']['chapters'][$i]['timestamp'] = getid3_lib::BigEndian2Int(substr($atom_data, $chpl_offset, 8)) / 10000000; // timestamps are stored as 100-nanosecond units $chpl_offset += 8; $chpl_title_size = getid3_lib::BigEndian2Int(substr($atom_data, $chpl_offset, 1)); $chpl_offset += 1; $info['quicktime']['chapters'][$i]['title'] = substr($atom_data, $chpl_offset, $chpl_title_size); $chpl_offset += $chpl_title_size; } break; case 'FIRM': // FIRMware version(?), seen on GoPro Hero4 $info['quicktime']['camera']['firmware'] = $atom_data; break; case 'CAME': // FIRMware version(?), seen on GoPro Hero4 $info['quicktime']['camera']['serial_hash'] = unpack('H*', $atom_data); break; case 'dscp': case 'rcif': // https://www.getid3.org/phpBB3/viewtopic.php?t=1908 if (substr($atom_data, 0, 7) == "\x00\x00\x00\x00\x55\xC4".'{') { if ($json_decoded = @json_decode(rtrim(substr($atom_data, 6), "\x00"), true)) { $info['quicktime']['camera'][$atomname] = $json_decoded; if (($atomname == 'rcif') && isset($info['quicktime']['camera']['rcif']['wxcamera']['rotate'])) { $info['video']['rotate'] = $info['quicktime']['video']['rotate'] = $info['quicktime']['camera']['rcif']['wxcamera']['rotate']; } } else { $this->warning('Failed to JSON decode atom "'.$atomname.'"'); $atom_structure['data'] = $atom_data; } unset($json_decoded); } else { $this->warning('Expecting 55 C4 7B at start of atom "'.$atomname.'", found '.getid3_lib::PrintHexBytes(substr($atom_data, 4, 3)).' instead'); $atom_structure['data'] = $atom_data; } break; case 'frea': // https://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Kodak.html#frea // may contain "scra" (PreviewImage) and/or "thma" (ThumbnailImage) $atom_structure['subatoms'] = $this->QuicktimeParseContainerAtom($atom_data, $baseoffset + 4, $atomHierarchy, $ParseAllPossibleAtoms); break; case 'tima': // subatom to "frea" // no idea what this does, the one sample file I've seen has a value of 0x00000027 $atom_structure['data'] = $atom_data; break; case 'ver ': // subatom to "frea" // some kind of version number, the one sample file I've seen has a value of "3.00.073" $atom_structure['data'] = $atom_data; break; case 'thma': // subatom to "frea" -- "ThumbnailImage" // https://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Kodak.html#frea if (strlen($atom_data) > 0) { $info['quicktime']['comments']['picture'][] = array('data'=>$atom_data, 'image_mime'=>'image/jpeg', 'description'=>'ThumbnailImage'); } break; case 'scra': // subatom to "frea" -- "PreviewImage" // https://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Kodak.html#frea // but the only sample file I've seen has no useful data here if (strlen($atom_data) > 0) { $info['quicktime']['comments']['picture'][] = array('data'=>$atom_data, 'image_mime'=>'image/jpeg', 'description'=>'PreviewImage'); } break; case 'cdsc': // timed metadata reference // A QuickTime movie can contain none, one, or several timed metadata tracks. Timed metadata tracks can refer to multiple tracks. // Metadata tracks are linked to the tracks they describe using a track-reference of type 'cdsc'. The metadata track holds the 'cdsc' track reference. $atom_structure['track_number'] = getid3_lib::BigEndian2Int($atom_data); break; case 'esds': // Elementary Stream DeScriptor // https://github.com/JamesHeinrich/getID3/issues/414 // https://chromium.googlesource.com/chromium/src/media/+/refs/heads/main/formats/mp4/es_descriptor.cc // https://chromium.googlesource.com/chromium/src/media/+/refs/heads/main/formats/mp4/es_descriptor.h $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); // hardcoded: 0x00 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x000000 $esds_offset = 4; $atom_structure['ES_DescrTag'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 1)); $esds_offset += 1; if ($atom_structure['ES_DescrTag'] != 0x03) { $this->warning('expecting esds.ES_DescrTag = 0x03, found 0x'.sprintf('%02X', $atom_structure['ES_DescrTag']).', at offset '.$atom_structure['offset']); break; } $atom_structure['ES_DescrSize'] = $this->quicktime_read_mp4_descr_length($atom_data, $esds_offset); $atom_structure['ES_ID'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 2)); $esds_offset += 2; $atom_structure['ES_flagsraw'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 1)); $esds_offset += 1; $atom_structure['ES_flags']['stream_dependency'] = (bool) ($atom_structure['ES_flagsraw'] & 0x80); $atom_structure['ES_flags']['url_flag'] = (bool) ($atom_structure['ES_flagsraw'] & 0x40); $atom_structure['ES_flags']['ocr_stream'] = (bool) ($atom_structure['ES_flagsraw'] & 0x20); $atom_structure['ES_stream_priority'] = ($atom_structure['ES_flagsraw'] & 0x1F); if ($atom_structure['ES_flags']['url_flag']) { $this->warning('Unsupported esds.url_flag enabled at offset '.$atom_structure['offset']); break; } if ($atom_structure['ES_flags']['stream_dependency']) { $atom_structure['ES_dependsOn_ES_ID'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 2)); $esds_offset += 2; } if ($atom_structure['ES_flags']['ocr_stream']) { $atom_structure['ES_OCR_ES_Id'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 2)); $esds_offset += 2; } $atom_structure['ES_DecoderConfigDescrTag'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 1)); $esds_offset += 1; if ($atom_structure['ES_DecoderConfigDescrTag'] != 0x04) { $this->warning('expecting esds.ES_DecoderConfigDescrTag = 0x04, found 0x'.sprintf('%02X', $atom_structure['ES_DecoderConfigDescrTag']).', at offset '.$atom_structure['offset']); break; } $atom_structure['ES_DecoderConfigDescrTagSize'] = $this->quicktime_read_mp4_descr_length($atom_data, $esds_offset); $atom_structure['ES_objectTypeIndication'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 1)); $esds_offset += 1; // https://stackoverflow.com/questions/3987850 // 0x40 = "Audio ISO/IEC 14496-3" = MPEG-4 Audio // 0x67 = "Audio ISO/IEC 13818-7 LowComplexity Profile" = MPEG-2 AAC LC // 0x69 = "Audio ISO/IEC 13818-3" = MPEG-2 Backward Compatible Audio (MPEG-2 Layers 1, 2, and 3) // 0x6B = "Audio ISO/IEC 11172-3" = MPEG-1 Audio (MPEG-1 Layers 1, 2, and 3) $streamTypePlusFlags = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 1)); $esds_offset += 1; $atom_structure['ES_streamType'] = ($streamTypePlusFlags & 0xFC) >> 2; $atom_structure['ES_upStream'] = (bool) ($streamTypePlusFlags & 0x02) >> 1; $atom_structure['ES_bufferSizeDB'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 3)); $esds_offset += 3; $atom_structure['ES_maxBitrate'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 4)); $esds_offset += 4; $atom_structure['ES_avgBitrate'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 4)); $esds_offset += 4; if ($atom_structure['ES_avgBitrate']) { $info['quicktime']['audio']['bitrate'] = $atom_structure['ES_avgBitrate']; $info['audio']['bitrate'] = $atom_structure['ES_avgBitrate']; } $atom_structure['ES_DecSpecificInfoTag'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 1)); $esds_offset += 1; if ($atom_structure['ES_DecSpecificInfoTag'] != 0x05) { $this->warning('expecting esds.ES_DecSpecificInfoTag = 0x05, found 0x'.sprintf('%02X', $atom_structure['ES_DecSpecificInfoTag']).', at offset '.$atom_structure['offset']); break; } $atom_structure['ES_DecSpecificInfoTagSize'] = $this->quicktime_read_mp4_descr_length($atom_data, $esds_offset); $atom_structure['ES_DecSpecificInfo'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, $atom_structure['ES_DecSpecificInfoTagSize'])); $esds_offset += $atom_structure['ES_DecSpecificInfoTagSize']; $atom_structure['ES_SLConfigDescrTag'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, 1)); $esds_offset += 1; if ($atom_structure['ES_SLConfigDescrTag'] != 0x06) { $this->warning('expecting esds.ES_SLConfigDescrTag = 0x05, found 0x'.sprintf('%02X', $atom_structure['ES_SLConfigDescrTag']).', at offset '.$atom_structure['offset']); break; } $atom_structure['ES_SLConfigDescrTagSize'] = $this->quicktime_read_mp4_descr_length($atom_data, $esds_offset); $atom_structure['ES_SLConfigDescr'] = getid3_lib::BigEndian2Int(substr($atom_data, $esds_offset, $atom_structure['ES_SLConfigDescrTagSize'])); $esds_offset += $atom_structure['ES_SLConfigDescrTagSize']; break; case 'sgpd': // https://developer.apple.com/documentation/quicktime-file-format/sample_group_description_atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); // hardcoded: 0x00 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x000000 $sgpd_offset = 4; $atom_structure['grouping_type'] = getid3_lib::BigEndian2Int(substr($atom_data, $sgpd_offset, 4)); $sgpd_offset += 4; $atom_structure['default_length'] = getid3_lib::BigEndian2Int(substr($atom_data, $sgpd_offset, 4)); $sgpd_offset += 4; $atom_structure['entry_count'] = getid3_lib::BigEndian2Int(substr($atom_data, $sgpd_offset, 4)); $sgpd_offset += 4; $atom_structure['payload_data_raw'] = substr($atom_data, $sgpd_offset); break; case 'sbgp': // https://developer.apple.com/documentation/quicktime-file-format/sample-to-group_atom $atom_structure['version'] = getid3_lib::BigEndian2Int(substr($atom_data, 0, 1)); // hardcoded: 0x00 $atom_structure['flags_raw'] = getid3_lib::BigEndian2Int(substr($atom_data, 1, 3)); // hardcoded: 0x000000 $sbgp_offset = 4; $atom_structure['grouping_type'] = getid3_lib::BigEndian2Int(substr($atom_data, $sbgp_offset, 4)); $sbgp_offset += 4; $atom_structure['default_length'] = getid3_lib::BigEndian2Int(substr($atom_data, $sbgp_offset, 4)); $sbgp_offset += 4; $atom_structure['entry_count'] = getid3_lib::BigEndian2Int(substr($atom_data, $sbgp_offset, 4)); $sbgp_offset += 4; $atom_structure['table_data_raw'] = substr($atom_data, $sbgp_offset); break; // AVIF-related - https://docs.rs/avif-parse/0.13.2/src/avif_parse/boxes.rs.html case 'pitm': // Primary ITeM case 'iloc': // Item LOCation case 'iinf': // Item INFo case 'iref': // Image REFerence case 'iprp': // Image PRoPerties $this->error('AVIF files not currently supported'); $atom_structure['data'] = $atom_data; break; case 'tfdt': // Track Fragment base media Decode Time box case 'tfhd': // Track Fragment HeaDer box case 'mfhd': // Movie Fragment HeaDer box case 'trun': // Track fragment RUN box $this->error('fragmented mp4 files not currently supported'); $atom_structure['data'] = $atom_data; break; case 'mvex': // MoVie EXtends box case 'pssh': // Protection System Specific Header box case 'sidx': // Segment InDeX box default: $this->warning('Unknown QuickTime atom type: "'.preg_replace('#[^a-zA-Z0-9 _\\-]#', '?', $atomname).'" ('.trim(getid3_lib::PrintHexBytes($atomname)).'), '.$atomsize.' bytes at offset '.$baseoffset); $atom_structure['data'] = $atom_data; break; } } array_pop($atomHierarchy); return $atom_structure; } /** * @param string $atom_data * @param int $baseoffset * @param array $atomHierarchy * @param bool $ParseAllPossibleAtoms * * @return array|false */ public function QuicktimeParseContainerAtom($atom_data, $baseoffset, &$atomHierarchy, $ParseAllPossibleAtoms) { $atom_structure = array(); $subatomoffset = 0; $subatomcounter = 0; if ((strlen($atom_data) == 4) && (getid3_lib::BigEndian2Int($atom_data) == 0x00000000)) { return false; } while ($subatomoffset < strlen($atom_data)) { $subatomsize = getid3_lib::BigEndian2Int(substr($atom_data, $subatomoffset + 0, 4)); $subatomname = substr($atom_data, $subatomoffset + 4, 4); $subatomdata = substr($atom_data, $subatomoffset + 8, $subatomsize - 8); if ($subatomsize == 0) { // Furthermore, for historical reasons the list of atoms is optionally // terminated by a 32-bit integer set to 0. If you are writing a program // to read user data atoms, you should allow for the terminating 0. if (strlen($atom_data) > 12) { $subatomoffset += 4; continue; } break; } if (strlen($subatomdata) < ($subatomsize - 8)) { // we don't have enough data to decode the subatom. // this may be because we are refusing to parse large subatoms, or it may be because this atom had its size set too large // so we passed in the start of a following atom incorrectly? break; } $atom_structure[$subatomcounter++] = $this->QuicktimeParseAtom($subatomname, $subatomsize, $subatomdata, $baseoffset + $subatomoffset, $atomHierarchy, $ParseAllPossibleAtoms); $subatomoffset += $subatomsize; } if (empty($atom_structure)) { return false; } return $atom_structure; } /** * @param string $data * @param int $offset * * @return int */ public function quicktime_read_mp4_descr_length($data, &$offset) { // http://libquicktime.sourcearchive.com/documentation/2:1.0.2plus-pdebian-2build1/esds_8c-source.html $num_bytes = 0; $length = 0; do { $b = ord(substr($data, $offset++, 1)); $length = ($length << 7) | ($b & 0x7F); } while (($b & 0x80) && ($num_bytes++ < 4)); return $length; } /** * @param int $languageid * * @return string */ public function QuicktimeLanguageLookup($languageid) { // http://developer.apple.com/library/mac/#documentation/QuickTime/QTFF/QTFFChap4/qtff4.html#//apple_ref/doc/uid/TP40000939-CH206-34353 // https://developer.apple.com/documentation/quicktime-file-format/language_code_values static $QuicktimeLanguageLookup = array(); if (empty($QuicktimeLanguageLookup)) { $QuicktimeLanguageLookup[0] = 'English'; $QuicktimeLanguageLookup[1] = 'French'; $QuicktimeLanguageLookup[2] = 'German'; $QuicktimeLanguageLookup[3] = 'Italian'; $QuicktimeLanguageLookup[4] = 'Dutch'; $QuicktimeLanguageLookup[5] = 'Swedish'; $QuicktimeLanguageLookup[6] = 'Spanish'; $QuicktimeLanguageLookup[7] = 'Danish'; $QuicktimeLanguageLookup[8] = 'Portuguese'; $QuicktimeLanguageLookup[9] = 'Norwegian'; $QuicktimeLanguageLookup[10] = 'Hebrew'; $QuicktimeLanguageLookup[11] = 'Japanese'; $QuicktimeLanguageLookup[12] = 'Arabic'; $QuicktimeLanguageLookup[13] = 'Finnish'; $QuicktimeLanguageLookup[14] = 'Greek'; $QuicktimeLanguageLookup[15] = 'Icelandic'; $QuicktimeLanguageLookup[16] = 'Maltese'; $QuicktimeLanguageLookup[17] = 'Turkish'; $QuicktimeLanguageLookup[18] = 'Croatian'; $QuicktimeLanguageLookup[19] = 'Chinese (Traditional)'; $QuicktimeLanguageLookup[20] = 'Urdu'; $QuicktimeLanguageLookup[21] = 'Hindi'; $QuicktimeLanguageLookup[22] = 'Thai'; $QuicktimeLanguageLookup[23] = 'Korean'; $QuicktimeLanguageLookup[24] = 'Lithuanian'; $QuicktimeLanguageLookup[25] = 'Polish'; $QuicktimeLanguageLookup[26] = 'Hungarian'; $QuicktimeLanguageLookup[27] = 'Estonian'; $QuicktimeLanguageLookup[28] = 'Lettish'; $QuicktimeLanguageLookup[28] = 'Latvian'; $QuicktimeLanguageLookup[29] = 'Saamisk'; $QuicktimeLanguageLookup[29] = 'Lappish'; $QuicktimeLanguageLookup[30] = 'Faeroese'; $QuicktimeLanguageLookup[31] = 'Farsi'; $QuicktimeLanguageLookup[31] = 'Persian'; $QuicktimeLanguageLookup[32] = 'Russian'; $QuicktimeLanguageLookup[33] = 'Chinese (Simplified)'; $QuicktimeLanguageLookup[34] = 'Flemish'; $QuicktimeLanguageLookup[35] = 'Irish'; $QuicktimeLanguageLookup[36] = 'Albanian'; $QuicktimeLanguageLookup[37] = 'Romanian'; $QuicktimeLanguageLookup[38] = 'Czech'; $QuicktimeLanguageLookup[39] = 'Slovak'; $QuicktimeLanguageLookup[40] = 'Slovenian'; $QuicktimeLanguageLookup[41] = 'Yiddish'; $QuicktimeLanguageLookup[42] = 'Serbian'; $QuicktimeLanguageLookup[43] = 'Macedonian'; $QuicktimeLanguageLookup[44] = 'Bulgarian'; $QuicktimeLanguageLookup[45] = 'Ukrainian'; $QuicktimeLanguageLookup[46] = 'Byelorussian'; $QuicktimeLanguageLookup[47] = 'Uzbek'; $QuicktimeLanguageLookup[48] = 'Kazakh'; $QuicktimeLanguageLookup[49] = 'Azerbaijani'; $QuicktimeLanguageLookup[50] = 'AzerbaijanAr'; $QuicktimeLanguageLookup[51] = 'Armenian'; $QuicktimeLanguageLookup[52] = 'Georgian'; $QuicktimeLanguageLookup[53] = 'Moldavian'; $QuicktimeLanguageLookup[54] = 'Kirghiz'; $QuicktimeLanguageLookup[55] = 'Tajiki'; $QuicktimeLanguageLookup[56] = 'Turkmen'; $QuicktimeLanguageLookup[57] = 'Mongolian'; $QuicktimeLanguageLookup[58] = 'MongolianCyr'; $QuicktimeLanguageLookup[59] = 'Pashto'; $QuicktimeLanguageLookup[60] = 'Kurdish'; $QuicktimeLanguageLookup[61] = 'Kashmiri'; $QuicktimeLanguageLookup[62] = 'Sindhi'; $QuicktimeLanguageLookup[63] = 'Tibetan'; $QuicktimeLanguageLookup[64] = 'Nepali'; $QuicktimeLanguageLookup[65] = 'Sanskrit'; $QuicktimeLanguageLookup[66] = 'Marathi'; $QuicktimeLanguageLookup[67] = 'Bengali'; $QuicktimeLanguageLookup[68] = 'Assamese'; $QuicktimeLanguageLookup[69] = 'Gujarati'; $QuicktimeLanguageLookup[70] = 'Punjabi'; $QuicktimeLanguageLookup[71] = 'Oriya'; $QuicktimeLanguageLookup[72] = 'Malayalam'; $QuicktimeLanguageLookup[73] = 'Kannada'; $QuicktimeLanguageLookup[74] = 'Tamil'; $QuicktimeLanguageLookup[75] = 'Telugu'; $QuicktimeLanguageLookup[76] = 'Sinhalese'; $QuicktimeLanguageLookup[77] = 'Burmese'; $QuicktimeLanguageLookup[78] = 'Khmer'; $QuicktimeLanguageLookup[79] = 'Lao'; $QuicktimeLanguageLookup[80] = 'Vietnamese'; $QuicktimeLanguageLookup[81] = 'Indonesian'; $QuicktimeLanguageLookup[82] = 'Tagalog'; $QuicktimeLanguageLookup[83] = 'MalayRoman'; $QuicktimeLanguageLookup[84] = 'MalayArabic'; $QuicktimeLanguageLookup[85] = 'Amharic'; $QuicktimeLanguageLookup[86] = 'Tigrinya'; $QuicktimeLanguageLookup[87] = 'Galla'; $QuicktimeLanguageLookup[87] = 'Oromo'; $QuicktimeLanguageLookup[88] = 'Somali'; $QuicktimeLanguageLookup[89] = 'Swahili'; $QuicktimeLanguageLookup[90] = 'Ruanda'; $QuicktimeLanguageLookup[91] = 'Rundi'; $QuicktimeLanguageLookup[92] = 'Chewa'; $QuicktimeLanguageLookup[93] = 'Malagasy'; $QuicktimeLanguageLookup[94] = 'Esperanto'; $QuicktimeLanguageLookup[128] = 'Welsh'; $QuicktimeLanguageLookup[129] = 'Basque'; $QuicktimeLanguageLookup[130] = 'Catalan'; $QuicktimeLanguageLookup[131] = 'Latin'; $QuicktimeLanguageLookup[132] = 'Quechua'; $QuicktimeLanguageLookup[133] = 'Guarani'; $QuicktimeLanguageLookup[134] = 'Aymara'; $QuicktimeLanguageLookup[135] = 'Tatar'; $QuicktimeLanguageLookup[136] = 'Uighur'; $QuicktimeLanguageLookup[137] = 'Dzongkha'; $QuicktimeLanguageLookup[138] = 'JavaneseRom'; $QuicktimeLanguageLookup[32767] = 'Unspecified'; } if (($languageid > 138) && ($languageid < 32767)) { /* ISO Language Codes - http://www.loc.gov/standards/iso639-2/php/code_list.php Because the language codes specified by ISO 639-2/T are three characters long, they must be packed to fit into a 16-bit field. The packing algorithm must map each of the three characters, which are always lowercase, into a 5-bit integer and then concatenate these integers into the least significant 15 bits of a 16-bit integer, leaving the 16-bit integer's most significant bit set to zero. One algorithm for performing this packing is to treat each ISO character as a 16-bit integer. Subtract 0x60 from the first character and multiply by 2^10 (0x400), subtract 0x60 from the second character and multiply by 2^5 (0x20), subtract 0x60 from the third character, and add the three 16-bit values. This will result in a single 16-bit value with the three codes correctly packed into the 15 least significant bits and the most significant bit set to zero. */ $iso_language_id = ''; $iso_language_id .= chr((($languageid & 0x7C00) >> 10) + 0x60); $iso_language_id .= chr((($languageid & 0x03E0) >> 5) + 0x60); $iso_language_id .= chr((($languageid & 0x001F) >> 0) + 0x60); $QuicktimeLanguageLookup[$languageid] = getid3_id3v2::LanguageLookup($iso_language_id); } return (isset($QuicktimeLanguageLookup[$languageid]) ? $QuicktimeLanguageLookup[$languageid] : 'invalid'); } /** * @param string $codecid * * @return string */ public function QuicktimeVideoCodecLookup($codecid) { static $QuicktimeVideoCodecLookup = array(); if (empty($QuicktimeVideoCodecLookup)) { $QuicktimeVideoCodecLookup['.SGI'] = 'SGI'; $QuicktimeVideoCodecLookup['3IV1'] = '3ivx MPEG-4 v1'; $QuicktimeVideoCodecLookup['3IV2'] = '3ivx MPEG-4 v2'; $QuicktimeVideoCodecLookup['3IVX'] = '3ivx MPEG-4'; $QuicktimeVideoCodecLookup['8BPS'] = 'Planar RGB'; $QuicktimeVideoCodecLookup['avc1'] = 'H.264/MPEG-4 AVC'; $QuicktimeVideoCodecLookup['avr '] = 'AVR-JPEG'; $QuicktimeVideoCodecLookup['b16g'] = '16Gray'; $QuicktimeVideoCodecLookup['b32a'] = '32AlphaGray'; $QuicktimeVideoCodecLookup['b48r'] = '48RGB'; $QuicktimeVideoCodecLookup['b64a'] = '64ARGB'; $QuicktimeVideoCodecLookup['base'] = 'Base'; $QuicktimeVideoCodecLookup['clou'] = 'Cloud'; $QuicktimeVideoCodecLookup['cmyk'] = 'CMYK'; $QuicktimeVideoCodecLookup['cvid'] = 'Cinepak'; $QuicktimeVideoCodecLookup['dmb1'] = 'OpenDML JPEG'; $QuicktimeVideoCodecLookup['dvc '] = 'DVC-NTSC'; $QuicktimeVideoCodecLookup['dvcp'] = 'DVC-PAL'; $QuicktimeVideoCodecLookup['dvpn'] = 'DVCPro-NTSC'; $QuicktimeVideoCodecLookup['dvpp'] = 'DVCPro-PAL'; $QuicktimeVideoCodecLookup['fire'] = 'Fire'; $QuicktimeVideoCodecLookup['flic'] = 'FLC'; $QuicktimeVideoCodecLookup['gif '] = 'GIF'; $QuicktimeVideoCodecLookup['h261'] = 'H261'; $QuicktimeVideoCodecLookup['h263'] = 'H263'; $QuicktimeVideoCodecLookup['hvc1'] = 'H.265/HEVC'; $QuicktimeVideoCodecLookup['IV41'] = 'Indeo4'; $QuicktimeVideoCodecLookup['jpeg'] = 'JPEG'; $QuicktimeVideoCodecLookup['kpcd'] = 'PhotoCD'; $QuicktimeVideoCodecLookup['mjpa'] = 'Motion JPEG-A'; $QuicktimeVideoCodecLookup['mjpb'] = 'Motion JPEG-B'; $QuicktimeVideoCodecLookup['msvc'] = 'Microsoft Video1'; $QuicktimeVideoCodecLookup['myuv'] = 'MPEG YUV420'; $QuicktimeVideoCodecLookup['path'] = 'Vector'; $QuicktimeVideoCodecLookup['png '] = 'PNG'; $QuicktimeVideoCodecLookup['PNTG'] = 'MacPaint'; $QuicktimeVideoCodecLookup['qdgx'] = 'QuickDrawGX'; $QuicktimeVideoCodecLookup['qdrw'] = 'QuickDraw'; $QuicktimeVideoCodecLookup['raw '] = 'RAW'; $QuicktimeVideoCodecLookup['ripl'] = 'WaterRipple'; $QuicktimeVideoCodecLookup['rpza'] = 'Video'; $QuicktimeVideoCodecLookup['smc '] = 'Graphics'; $QuicktimeVideoCodecLookup['SVQ1'] = 'Sorenson Video 1'; $QuicktimeVideoCodecLookup['SVQ1'] = 'Sorenson Video 3'; $QuicktimeVideoCodecLookup['syv9'] = 'Sorenson YUV9'; $QuicktimeVideoCodecLookup['tga '] = 'Targa'; $QuicktimeVideoCodecLookup['tiff'] = 'TIFF'; $QuicktimeVideoCodecLookup['WRAW'] = 'Windows RAW'; $QuicktimeVideoCodecLookup['WRLE'] = 'BMP'; $QuicktimeVideoCodecLookup['y420'] = 'YUV420'; $QuicktimeVideoCodecLookup['yuv2'] = 'ComponentVideo'; $QuicktimeVideoCodecLookup['yuvs'] = 'ComponentVideoUnsigned'; $QuicktimeVideoCodecLookup['yuvu'] = 'ComponentVideoSigned'; } return (isset($QuicktimeVideoCodecLookup[$codecid]) ? $QuicktimeVideoCodecLookup[$codecid] : ''); } /** * @param string $codecid * * @return mixed|string */ public function QuicktimeAudioCodecLookup($codecid) { static $QuicktimeAudioCodecLookup = array(); if (empty($QuicktimeAudioCodecLookup)) { $QuicktimeAudioCodecLookup['.mp3'] = 'Fraunhofer MPEG Layer-III alias'; $QuicktimeAudioCodecLookup['aac '] = 'ISO/IEC 14496-3 AAC'; $QuicktimeAudioCodecLookup['agsm'] = 'Apple GSM 10:1'; $QuicktimeAudioCodecLookup['alac'] = 'Apple Lossless Audio Codec'; $QuicktimeAudioCodecLookup['alaw'] = 'A-law 2:1'; $QuicktimeAudioCodecLookup['conv'] = 'Sample Format'; $QuicktimeAudioCodecLookup['dvca'] = 'DV'; $QuicktimeAudioCodecLookup['dvi '] = 'DV 4:1'; $QuicktimeAudioCodecLookup['eqal'] = 'Frequency Equalizer'; $QuicktimeAudioCodecLookup['fl32'] = '32-bit Floating Point'; $QuicktimeAudioCodecLookup['fl64'] = '64-bit Floating Point'; $QuicktimeAudioCodecLookup['ima4'] = 'Interactive Multimedia Association 4:1'; $QuicktimeAudioCodecLookup['in24'] = '24-bit Integer'; $QuicktimeAudioCodecLookup['in32'] = '32-bit Integer'; $QuicktimeAudioCodecLookup['lpc '] = 'LPC 23:1'; $QuicktimeAudioCodecLookup['MAC3'] = 'Macintosh Audio Compression/Expansion (MACE) 3:1'; $QuicktimeAudioCodecLookup['MAC6'] = 'Macintosh Audio Compression/Expansion (MACE) 6:1'; $QuicktimeAudioCodecLookup['mixb'] = '8-bit Mixer'; $QuicktimeAudioCodecLookup['mixw'] = '16-bit Mixer'; $QuicktimeAudioCodecLookup['mp4a'] = 'ISO/IEC 14496-3 AAC'; $QuicktimeAudioCodecLookup['MS'."\x00\x02"] = 'Microsoft ADPCM'; $QuicktimeAudioCodecLookup['MS'."\x00\x11"] = 'DV IMA'; $QuicktimeAudioCodecLookup['MS'."\x00\x55"] = 'Fraunhofer MPEG Layer III'; $QuicktimeAudioCodecLookup['NONE'] = 'No Encoding'; $QuicktimeAudioCodecLookup['Qclp'] = 'Qualcomm PureVoice'; $QuicktimeAudioCodecLookup['QDM2'] = 'QDesign Music 2'; $QuicktimeAudioCodecLookup['QDMC'] = 'QDesign Music 1'; $QuicktimeAudioCodecLookup['ratb'] = '8-bit Rate'; $QuicktimeAudioCodecLookup['ratw'] = '16-bit Rate'; $QuicktimeAudioCodecLookup['raw '] = 'raw PCM'; $QuicktimeAudioCodecLookup['sour'] = 'Sound Source'; $QuicktimeAudioCodecLookup['sowt'] = 'signed/two\'s complement (Little Endian)'; $QuicktimeAudioCodecLookup['str1'] = 'Iomega MPEG layer II'; $QuicktimeAudioCodecLookup['str2'] = 'Iomega MPEG *layer II'; $QuicktimeAudioCodecLookup['str3'] = 'Iomega MPEG **layer II'; $QuicktimeAudioCodecLookup['str4'] = 'Iomega MPEG ***layer II'; $QuicktimeAudioCodecLookup['twos'] = 'signed/two\'s complement (Big Endian)'; $QuicktimeAudioCodecLookup['ulaw'] = 'mu-law 2:1'; } return (isset($QuicktimeAudioCodecLookup[$codecid]) ? $QuicktimeAudioCodecLookup[$codecid] : ''); } /** * @param string $compressionid * * @return string */ public function QuicktimeDCOMLookup($compressionid) { static $QuicktimeDCOMLookup = array(); if (empty($QuicktimeDCOMLookup)) { $QuicktimeDCOMLookup['zlib'] = 'ZLib Deflate'; $QuicktimeDCOMLookup['adec'] = 'Apple Compression'; } return (isset($QuicktimeDCOMLookup[$compressionid]) ? $QuicktimeDCOMLookup[$compressionid] : ''); } /** * @param int $colordepthid * * @return string */ public function QuicktimeColorNameLookup($colordepthid) { static $QuicktimeColorNameLookup = array(); if (empty($QuicktimeColorNameLookup)) { $QuicktimeColorNameLookup[1] = '2-color (monochrome)'; $QuicktimeColorNameLookup[2] = '4-color'; $QuicktimeColorNameLookup[4] = '16-color'; $QuicktimeColorNameLookup[8] = '256-color'; $QuicktimeColorNameLookup[16] = 'thousands (16-bit color)'; $QuicktimeColorNameLookup[24] = 'millions (24-bit color)'; $QuicktimeColorNameLookup[32] = 'millions+ (32-bit color)'; $QuicktimeColorNameLookup[33] = 'black & white'; $QuicktimeColorNameLookup[34] = '4-gray'; $QuicktimeColorNameLookup[36] = '16-gray'; $QuicktimeColorNameLookup[40] = '256-gray'; } return (isset($QuicktimeColorNameLookup[$colordepthid]) ? $QuicktimeColorNameLookup[$colordepthid] : 'invalid'); } /** * @param int $stik * * @return string */ public function QuicktimeSTIKLookup($stik) { static $QuicktimeSTIKLookup = array(); if (empty($QuicktimeSTIKLookup)) { $QuicktimeSTIKLookup[0] = 'Movie'; $QuicktimeSTIKLookup[1] = 'Normal'; $QuicktimeSTIKLookup[2] = 'Audiobook'; $QuicktimeSTIKLookup[5] = 'Whacked Bookmark'; $QuicktimeSTIKLookup[6] = 'Music Video'; $QuicktimeSTIKLookup[9] = 'Short Film'; $QuicktimeSTIKLookup[10] = 'TV Show'; $QuicktimeSTIKLookup[11] = 'Booklet'; $QuicktimeSTIKLookup[14] = 'Ringtone'; $QuicktimeSTIKLookup[21] = 'Podcast'; } return (isset($QuicktimeSTIKLookup[$stik]) ? $QuicktimeSTIKLookup[$stik] : 'invalid'); } /** * @param int $audio_profile_id * * @return string */ public function QuicktimeIODSaudioProfileName($audio_profile_id) { static $QuicktimeIODSaudioProfileNameLookup = array(); if (empty($QuicktimeIODSaudioProfileNameLookup)) { $QuicktimeIODSaudioProfileNameLookup = array( 0x00 => 'ISO Reserved (0x00)', 0x01 => 'Main Audio Profile @ Level 1', 0x02 => 'Main Audio Profile @ Level 2', 0x03 => 'Main Audio Profile @ Level 3', 0x04 => 'Main Audio Profile @ Level 4', 0x05 => 'Scalable Audio Profile @ Level 1', 0x06 => 'Scalable Audio Profile @ Level 2', 0x07 => 'Scalable Audio Profile @ Level 3', 0x08 => 'Scalable Audio Profile @ Level 4', 0x09 => 'Speech Audio Profile @ Level 1', 0x0A => 'Speech Audio Profile @ Level 2', 0x0B => 'Synthetic Audio Profile @ Level 1', 0x0C => 'Synthetic Audio Profile @ Level 2', 0x0D => 'Synthetic Audio Profile @ Level 3', 0x0E => 'High Quality Audio Profile @ Level 1', 0x0F => 'High Quality Audio Profile @ Level 2', 0x10 => 'High Quality Audio Profile @ Level 3', 0x11 => 'High Quality Audio Profile @ Level 4', 0x12 => 'High Quality Audio Profile @ Level 5', 0x13 => 'High Quality Audio Profile @ Level 6', 0x14 => 'High Quality Audio Profile @ Level 7', 0x15 => 'High Quality Audio Profile @ Level 8', 0x16 => 'Low Delay Audio Profile @ Level 1', 0x17 => 'Low Delay Audio Profile @ Level 2', 0x18 => 'Low Delay Audio Profile @ Level 3', 0x19 => 'Low Delay Audio Profile @ Level 4', 0x1A => 'Low Delay Audio Profile @ Level 5', 0x1B => 'Low Delay Audio Profile @ Level 6', 0x1C => 'Low Delay Audio Profile @ Level 7', 0x1D => 'Low Delay Audio Profile @ Level 8', 0x1E => 'Natural Audio Profile @ Level 1', 0x1F => 'Natural Audio Profile @ Level 2', 0x20 => 'Natural Audio Profile @ Level 3', 0x21 => 'Natural Audio Profile @ Level 4', 0x22 => 'Mobile Audio Internetworking Profile @ Level 1', 0x23 => 'Mobile Audio Internetworking Profile @ Level 2', 0x24 => 'Mobile Audio Internetworking Profile @ Level 3', 0x25 => 'Mobile Audio Internetworking Profile @ Level 4', 0x26 => 'Mobile Audio Internetworking Profile @ Level 5', 0x27 => 'Mobile Audio Internetworking Profile @ Level 6', 0x28 => 'AAC Profile @ Level 1', 0x29 => 'AAC Profile @ Level 2', 0x2A => 'AAC Profile @ Level 4', 0x2B => 'AAC Profile @ Level 5', 0x2C => 'High Efficiency AAC Profile @ Level 2', 0x2D => 'High Efficiency AAC Profile @ Level 3', 0x2E => 'High Efficiency AAC Profile @ Level 4', 0x2F => 'High Efficiency AAC Profile @ Level 5', 0xFE => 'Not part of MPEG-4 audio profiles', 0xFF => 'No audio capability required', ); } return (isset($QuicktimeIODSaudioProfileNameLookup[$audio_profile_id]) ? $QuicktimeIODSaudioProfileNameLookup[$audio_profile_id] : 'ISO Reserved / User Private'); } /** * @param int $video_profile_id * * @return string */ public function QuicktimeIODSvideoProfileName($video_profile_id) { static $QuicktimeIODSvideoProfileNameLookup = array(); if (empty($QuicktimeIODSvideoProfileNameLookup)) { $QuicktimeIODSvideoProfileNameLookup = array( 0x00 => 'Reserved (0x00) Profile', 0x01 => 'Simple Profile @ Level 1', 0x02 => 'Simple Profile @ Level 2', 0x03 => 'Simple Profile @ Level 3', 0x08 => 'Simple Profile @ Level 0', 0x10 => 'Simple Scalable Profile @ Level 0', 0x11 => 'Simple Scalable Profile @ Level 1', 0x12 => 'Simple Scalable Profile @ Level 2', 0x15 => 'AVC/H264 Profile', 0x21 => 'Core Profile @ Level 1', 0x22 => 'Core Profile @ Level 2', 0x32 => 'Main Profile @ Level 2', 0x33 => 'Main Profile @ Level 3', 0x34 => 'Main Profile @ Level 4', 0x42 => 'N-bit Profile @ Level 2', 0x51 => 'Scalable Texture Profile @ Level 1', 0x61 => 'Simple Face Animation Profile @ Level 1', 0x62 => 'Simple Face Animation Profile @ Level 2', 0x63 => 'Simple FBA Profile @ Level 1', 0x64 => 'Simple FBA Profile @ Level 2', 0x71 => 'Basic Animated Texture Profile @ Level 1', 0x72 => 'Basic Animated Texture Profile @ Level 2', 0x81 => 'Hybrid Profile @ Level 1', 0x82 => 'Hybrid Profile @ Level 2', 0x91 => 'Advanced Real Time Simple Profile @ Level 1', 0x92 => 'Advanced Real Time Simple Profile @ Level 2', 0x93 => 'Advanced Real Time Simple Profile @ Level 3', 0x94 => 'Advanced Real Time Simple Profile @ Level 4', 0xA1 => 'Core Scalable Profile @ Level1', 0xA2 => 'Core Scalable Profile @ Level2', 0xA3 => 'Core Scalable Profile @ Level3', 0xB1 => 'Advanced Coding Efficiency Profile @ Level 1', 0xB2 => 'Advanced Coding Efficiency Profile @ Level 2', 0xB3 => 'Advanced Coding Efficiency Profile @ Level 3', 0xB4 => 'Advanced Coding Efficiency Profile @ Level 4', 0xC1 => 'Advanced Core Profile @ Level 1', 0xC2 => 'Advanced Core Profile @ Level 2', 0xD1 => 'Advanced Scalable Texture @ Level1', 0xD2 => 'Advanced Scalable Texture @ Level2', 0xE1 => 'Simple Studio Profile @ Level 1', 0xE2 => 'Simple Studio Profile @ Level 2', 0xE3 => 'Simple Studio Profile @ Level 3', 0xE4 => 'Simple Studio Profile @ Level 4', 0xE5 => 'Core Studio Profile @ Level 1', 0xE6 => 'Core Studio Profile @ Level 2', 0xE7 => 'Core Studio Profile @ Level 3', 0xE8 => 'Core Studio Profile @ Level 4', 0xF0 => 'Advanced Simple Profile @ Level 0', 0xF1 => 'Advanced Simple Profile @ Level 1', 0xF2 => 'Advanced Simple Profile @ Level 2', 0xF3 => 'Advanced Simple Profile @ Level 3', 0xF4 => 'Advanced Simple Profile @ Level 4', 0xF5 => 'Advanced Simple Profile @ Level 5', 0xF7 => 'Advanced Simple Profile @ Level 3b', 0xF8 => 'Fine Granularity Scalable Profile @ Level 0', 0xF9 => 'Fine Granularity Scalable Profile @ Level 1', 0xFA => 'Fine Granularity Scalable Profile @ Level 2', 0xFB => 'Fine Granularity Scalable Profile @ Level 3', 0xFC => 'Fine Granularity Scalable Profile @ Level 4', 0xFD => 'Fine Granularity Scalable Profile @ Level 5', 0xFE => 'Not part of MPEG-4 Visual profiles', 0xFF => 'No visual capability required', ); } return (isset($QuicktimeIODSvideoProfileNameLookup[$video_profile_id]) ? $QuicktimeIODSvideoProfileNameLookup[$video_profile_id] : 'ISO Reserved Profile'); } /** * @param int $rtng * * @return string */ public function QuicktimeContentRatingLookup($rtng) { static $QuicktimeContentRatingLookup = array(); if (empty($QuicktimeContentRatingLookup)) { $QuicktimeContentRatingLookup[0] = 'None'; $QuicktimeContentRatingLookup[1] = 'Explicit'; $QuicktimeContentRatingLookup[2] = 'Clean'; $QuicktimeContentRatingLookup[4] = 'Explicit (old)'; } return (isset($QuicktimeContentRatingLookup[$rtng]) ? $QuicktimeContentRatingLookup[$rtng] : 'invalid'); } /** * @param int $akid * * @return string */ public function QuicktimeStoreAccountTypeLookup($akid) { static $QuicktimeStoreAccountTypeLookup = array(); if (empty($QuicktimeStoreAccountTypeLookup)) { $QuicktimeStoreAccountTypeLookup[0] = 'iTunes'; $QuicktimeStoreAccountTypeLookup[1] = 'AOL'; } return (isset($QuicktimeStoreAccountTypeLookup[$akid]) ? $QuicktimeStoreAccountTypeLookup[$akid] : 'invalid'); } /** * @param int $sfid * * @return string */ public function QuicktimeStoreFrontCodeLookup($sfid) { static $QuicktimeStoreFrontCodeLookup = array(); if (empty($QuicktimeStoreFrontCodeLookup)) { $QuicktimeStoreFrontCodeLookup[143460] = 'Australia'; $QuicktimeStoreFrontCodeLookup[143445] = 'Austria'; $QuicktimeStoreFrontCodeLookup[143446] = 'Belgium'; $QuicktimeStoreFrontCodeLookup[143455] = 'Canada'; $QuicktimeStoreFrontCodeLookup[143458] = 'Denmark'; $QuicktimeStoreFrontCodeLookup[143447] = 'Finland'; $QuicktimeStoreFrontCodeLookup[143442] = 'France'; $QuicktimeStoreFrontCodeLookup[143443] = 'Germany'; $QuicktimeStoreFrontCodeLookup[143448] = 'Greece'; $QuicktimeStoreFrontCodeLookup[143449] = 'Ireland'; $QuicktimeStoreFrontCodeLookup[143450] = 'Italy'; $QuicktimeStoreFrontCodeLookup[143462] = 'Japan'; $QuicktimeStoreFrontCodeLookup[143451] = 'Luxembourg'; $QuicktimeStoreFrontCodeLookup[143452] = 'Netherlands'; $QuicktimeStoreFrontCodeLookup[143461] = 'New Zealand'; $QuicktimeStoreFrontCodeLookup[143457] = 'Norway'; $QuicktimeStoreFrontCodeLookup[143453] = 'Portugal'; $QuicktimeStoreFrontCodeLookup[143454] = 'Spain'; $QuicktimeStoreFrontCodeLookup[143456] = 'Sweden'; $QuicktimeStoreFrontCodeLookup[143459] = 'Switzerland'; $QuicktimeStoreFrontCodeLookup[143444] = 'United Kingdom'; $QuicktimeStoreFrontCodeLookup[143441] = 'United States'; } return (isset($QuicktimeStoreFrontCodeLookup[$sfid]) ? $QuicktimeStoreFrontCodeLookup[$sfid] : 'invalid'); } /** * @param string $keyname * @param string|array $data * @param string $boxname * * @return bool */ public function CopyToAppropriateCommentsSection($keyname, $data, $boxname='') { static $handyatomtranslatorarray = array(); if (empty($handyatomtranslatorarray)) { // http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt // http://www.geocities.com/xhelmboyx/quicktime/formats/mp4-layout.txt // http://atomicparsley.sourceforge.net/mpeg-4files.html // https://code.google.com/p/mp4v2/wiki/iTunesMetadata $handyatomtranslatorarray["\xA9".'alb'] = 'album'; // iTunes 4.0 $handyatomtranslatorarray["\xA9".'ART'] = 'artist'; $handyatomtranslatorarray["\xA9".'art'] = 'artist'; // iTunes 4.0 $handyatomtranslatorarray["\xA9".'aut'] = 'author'; $handyatomtranslatorarray["\xA9".'cmt'] = 'comment'; // iTunes 4.0 $handyatomtranslatorarray["\xA9".'com'] = 'comment'; $handyatomtranslatorarray["\xA9".'cpy'] = 'copyright'; $handyatomtranslatorarray["\xA9".'day'] = 'creation_date'; // iTunes 4.0 $handyatomtranslatorarray["\xA9".'dir'] = 'director'; $handyatomtranslatorarray["\xA9".'ed1'] = 'edit1'; $handyatomtranslatorarray["\xA9".'ed2'] = 'edit2'; $handyatomtranslatorarray["\xA9".'ed3'] = 'edit3'; $handyatomtranslatorarray["\xA9".'ed4'] = 'edit4'; $handyatomtranslatorarray["\xA9".'ed5'] = 'edit5'; $handyatomtranslatorarray["\xA9".'ed6'] = 'edit6'; $handyatomtranslatorarray["\xA9".'ed7'] = 'edit7'; $handyatomtranslatorarray["\xA9".'ed8'] = 'edit8'; $handyatomtranslatorarray["\xA9".'ed9'] = 'edit9'; $handyatomtranslatorarray["\xA9".'enc'] = 'encoded_by'; $handyatomtranslatorarray["\xA9".'fmt'] = 'format'; $handyatomtranslatorarray["\xA9".'gen'] = 'genre'; // iTunes 4.0 $handyatomtranslatorarray["\xA9".'grp'] = 'grouping'; // iTunes 4.2 $handyatomtranslatorarray["\xA9".'hst'] = 'host_computer'; $handyatomtranslatorarray["\xA9".'inf'] = 'information'; $handyatomtranslatorarray["\xA9".'lyr'] = 'lyrics'; // iTunes 5.0 $handyatomtranslatorarray["\xA9".'mak'] = 'make'; $handyatomtranslatorarray["\xA9".'mod'] = 'model'; $handyatomtranslatorarray["\xA9".'nam'] = 'title'; // iTunes 4.0 $handyatomtranslatorarray["\xA9".'ope'] = 'composer'; $handyatomtranslatorarray["\xA9".'prd'] = 'producer'; $handyatomtranslatorarray["\xA9".'PRD'] = 'product'; $handyatomtranslatorarray["\xA9".'prf'] = 'performers'; $handyatomtranslatorarray["\xA9".'req'] = 'system_requirements'; $handyatomtranslatorarray["\xA9".'src'] = 'source_credit'; $handyatomtranslatorarray["\xA9".'swr'] = 'software'; $handyatomtranslatorarray["\xA9".'too'] = 'encoding_tool'; // iTunes 4.0 $handyatomtranslatorarray["\xA9".'trk'] = 'track_number'; $handyatomtranslatorarray["\xA9".'url'] = 'url'; $handyatomtranslatorarray["\xA9".'wrn'] = 'warning'; $handyatomtranslatorarray["\xA9".'wrt'] = 'composer'; $handyatomtranslatorarray['aART'] = 'album_artist'; $handyatomtranslatorarray['apID'] = 'purchase_account'; $handyatomtranslatorarray['catg'] = 'category'; // iTunes 4.9 $handyatomtranslatorarray['covr'] = 'picture'; // iTunes 4.0 $handyatomtranslatorarray['cpil'] = 'compilation'; // iTunes 4.0 $handyatomtranslatorarray['cprt'] = 'copyright'; // iTunes 4.0? $handyatomtranslatorarray['desc'] = 'description'; // iTunes 5.0 $handyatomtranslatorarray['disk'] = 'disc_number'; // iTunes 4.0 $handyatomtranslatorarray['egid'] = 'episode_guid'; // iTunes 4.9 $handyatomtranslatorarray['gnre'] = 'genre'; // iTunes 4.0 $handyatomtranslatorarray['hdvd'] = 'hd_video'; // iTunes 4.0 $handyatomtranslatorarray['ldes'] = 'description_long'; // $handyatomtranslatorarray['keyw'] = 'keyword'; // iTunes 4.9 $handyatomtranslatorarray['pcst'] = 'podcast'; // iTunes 4.9 $handyatomtranslatorarray['pgap'] = 'gapless_playback'; // iTunes 7.0 $handyatomtranslatorarray['purd'] = 'purchase_date'; // iTunes 6.0.2 $handyatomtranslatorarray['purl'] = 'podcast_url'; // iTunes 4.9 $handyatomtranslatorarray['rtng'] = 'rating'; // iTunes 4.0 $handyatomtranslatorarray['soaa'] = 'sort_album_artist'; // $handyatomtranslatorarray['soal'] = 'sort_album'; // $handyatomtranslatorarray['soar'] = 'sort_artist'; // $handyatomtranslatorarray['soco'] = 'sort_composer'; // $handyatomtranslatorarray['sonm'] = 'sort_title'; // $handyatomtranslatorarray['sosn'] = 'sort_show'; // $handyatomtranslatorarray['stik'] = 'stik'; // iTunes 4.9 $handyatomtranslatorarray['tmpo'] = 'bpm'; // iTunes 4.0 $handyatomtranslatorarray['trkn'] = 'track_number'; // iTunes 4.0 $handyatomtranslatorarray['tven'] = 'tv_episode_id'; // $handyatomtranslatorarray['tves'] = 'tv_episode'; // iTunes 6.0 $handyatomtranslatorarray['tvnn'] = 'tv_network_name'; // iTunes 6.0 $handyatomtranslatorarray['tvsh'] = 'tv_show_name'; // iTunes 6.0 $handyatomtranslatorarray['tvsn'] = 'tv_season'; // iTunes 6.0 // boxnames: /* $handyatomtranslatorarray['iTunSMPB'] = 'iTunSMPB'; $handyatomtranslatorarray['iTunNORM'] = 'iTunNORM'; $handyatomtranslatorarray['Encoding Params'] = 'Encoding Params'; $handyatomtranslatorarray['replaygain_track_gain'] = 'replaygain_track_gain'; $handyatomtranslatorarray['replaygain_track_peak'] = 'replaygain_track_peak'; $handyatomtranslatorarray['replaygain_track_minmax'] = 'replaygain_track_minmax'; $handyatomtranslatorarray['MusicIP PUID'] = 'MusicIP PUID'; $handyatomtranslatorarray['MusicBrainz Artist Id'] = 'MusicBrainz Artist Id'; $handyatomtranslatorarray['MusicBrainz Album Id'] = 'MusicBrainz Album Id'; $handyatomtranslatorarray['MusicBrainz Album Artist Id'] = 'MusicBrainz Album Artist Id'; $handyatomtranslatorarray['MusicBrainz Track Id'] = 'MusicBrainz Track Id'; $handyatomtranslatorarray['MusicBrainz Disc Id'] = 'MusicBrainz Disc Id'; // http://age.hobba.nl/audio/tag_frame_reference.html $handyatomtranslatorarray['PLAY_COUNTER'] = 'play_counter'; // Foobar2000 - https://www.getid3.org/phpBB3/viewtopic.php?t=1355 $handyatomtranslatorarray['MEDIATYPE'] = 'mediatype'; // Foobar2000 - https://www.getid3.org/phpBB3/viewtopic.php?t=1355 */ } $info = &$this->getid3->info; $comment_key = ''; if ($boxname && ($boxname != $keyname)) { $comment_key = (isset($handyatomtranslatorarray[$boxname]) ? $handyatomtranslatorarray[$boxname] : $boxname); } elseif (isset($handyatomtranslatorarray[$keyname])) { $comment_key = $handyatomtranslatorarray[$keyname]; } if ($comment_key) { if ($comment_key == 'picture') { // already copied directly into [comments][picture] elsewhere, do not re-copy here return true; } $gooddata = array($data); if ($comment_key == 'genre') { // some other taggers separate multiple genres with semicolon, e.g. "Heavy Metal;Thrash Metal;Metal" $gooddata = explode(';', $data); } foreach ($gooddata as $data) { if (!empty($info['quicktime']['comments'][$comment_key]) && in_array($data, $info['quicktime']['comments'][$comment_key], true)) { // avoid duplicate copies of identical data continue; } $info['quicktime']['comments'][$comment_key][] = $data; } } return true; } /** * @param string $lstring * @param int $count * * @return string */ public function LociString($lstring, &$count) { // Loci strings are UTF-8 or UTF-16 and null (x00/x0000) terminated. UTF-16 has a BOM // Also need to return the number of bytes the string occupied so additional fields can be extracted $len = strlen($lstring); if ($len == 0) { $count = 0; return ''; } if ($lstring[0] == "\x00") { $count = 1; return ''; } // check for BOM if (($len > 2) && ((($lstring[0] == "\xFE") && ($lstring[1] == "\xFF")) || (($lstring[0] == "\xFF") && ($lstring[1] == "\xFE")))) { // UTF-16 if (preg_match('/(.*)\x00/', $lstring, $lmatches)) { $count = strlen($lmatches[1]) * 2 + 2; //account for 2 byte characters and trailing \x0000 return getid3_lib::iconv_fallback_utf16_utf8($lmatches[1]); } else { return ''; } } // UTF-8 if (preg_match('/(.*)\x00/', $lstring, $lmatches)) { $count = strlen($lmatches[1]) + 1; //account for trailing \x00 return $lmatches[1]; } return ''; } /** * @param string $nullterminatedstring * * @return string */ public function NoNullString($nullterminatedstring) { // remove the single null terminator on null terminated strings if (substr($nullterminatedstring, strlen($nullterminatedstring) - 1, 1) === "\x00") { return substr($nullterminatedstring, 0, strlen($nullterminatedstring) - 1); } return $nullterminatedstring; } /** * @param string $pascalstring * * @return string */ public function Pascal2String($pascalstring) { // Pascal strings have 1 unsigned byte at the beginning saying how many chars (1-255) are in the string return substr($pascalstring, 1); } /** * @param string $pascalstring * * @return string */ public function MaybePascal2String($pascalstring) { // Pascal strings have 1 unsigned byte at the beginning saying how many chars (1-255) are in the string // Check if string actually is in this format or written incorrectly, straight string, or null-terminated string if (strlen($pascalstring) > 0) { if (ord(substr($pascalstring, 0, 1)) == (strlen($pascalstring) - 1)) { return substr($pascalstring, 1); } elseif (substr($pascalstring, -1, 1) == "\x00") { // appears to be null-terminated instead of Pascal-style return substr($pascalstring, 0, -1); } } return $pascalstring; } /** * Helper functions for m4b audiobook chapters * code by Steffen Hartmann 2015-Nov-08. * * @param array $info * @param string $tag * @param string $history * @param array $result */ public function search_tag_by_key($info, $tag, $history, &$result) { foreach ($info as $key => $value) { $key_history = $history.'/'.$key; if ($key === $tag) { $result[] = array($key_history, $info); } else { if (is_array($value)) { $this->search_tag_by_key($value, $tag, $key_history, $result); } } } } /** * @param array $info * @param string $k * @param string $v * @param string $history * @param array $result */ public function search_tag_by_pair($info, $k, $v, $history, &$result) { foreach ($info as $key => $value) { $key_history = $history.'/'.$key; if (($key === $k) && ($value === $v)) { $result[] = array($key_history, $info); } else { if (is_array($value)) { $this->search_tag_by_pair($value, $k, $v, $key_history, $result); } } } } /** * @param array $info * * @return array */ public function quicktime_time_to_sample_table($info) { $res = array(); $this->search_tag_by_pair($info['quicktime']['moov'], 'name', 'stbl', 'quicktime/moov', $res); foreach ($res as $value) { $stbl_res = array(); $this->search_tag_by_pair($value[1], 'data_format', 'text', $value[0], $stbl_res); if (count($stbl_res) > 0) { $stts_res = array(); $this->search_tag_by_key($value[1], 'time_to_sample_table', $value[0], $stts_res); if (count($stts_res) > 0) { return $stts_res[0][1]['time_to_sample_table']; } } } return array(); } /** * @param array $info * * @return int */ public function quicktime_bookmark_time_scale($info) { $time_scale = ''; $ts_prefix_len = 0; $res = array(); $this->search_tag_by_pair($info['quicktime']['moov'], 'name', 'stbl', 'quicktime/moov', $res); foreach ($res as $value) { $stbl_res = array(); $this->search_tag_by_pair($value[1], 'data_format', 'text', $value[0], $stbl_res); if (count($stbl_res) > 0) { $ts_res = array(); $this->search_tag_by_key($info['quicktime']['moov'], 'time_scale', 'quicktime/moov', $ts_res); foreach ($ts_res as $sub_value) { $prefix = substr($sub_value[0], 0, -12); if ((substr($stbl_res[0][0], 0, strlen($prefix)) === $prefix) && ($ts_prefix_len < strlen($prefix))) { $time_scale = $sub_value[1]['time_scale']; $ts_prefix_len = strlen($prefix); } } } } return $time_scale; } /* // END helper functions for m4b audiobook chapters */ } module.audio.flac.php000064400000046525152233444720010570 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio.flac.php // // module for analyzing FLAC and OggFLAC audio files // // dependencies: module.audio.ogg.php // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.ogg.php', __FILE__, true); /** * @tutorial http://flac.sourceforge.net/format.html */ class getid3_flac extends getid3_handler { const syncword = 'fLaC'; /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; $this->fseek($info['avdataoffset']); $StreamMarker = $this->fread(4); if ($StreamMarker != self::syncword) { return $this->error('Expecting "'.getid3_lib::PrintHexBytes(self::syncword).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes($StreamMarker).'"'); } $info['fileformat'] = 'flac'; $info['audio']['dataformat'] = 'flac'; $info['audio']['bitrate_mode'] = 'vbr'; $info['audio']['lossless'] = true; // parse flac container return $this->parseMETAdata(); } /** * @return bool */ public function parseMETAdata() { $info = &$this->getid3->info; do { $BlockOffset = $this->ftell(); $BlockHeader = $this->fread(4); $LBFBT = getid3_lib::BigEndian2Int(substr($BlockHeader, 0, 1)); // LBFBT = LastBlockFlag + BlockType $LastBlockFlag = (bool) ($LBFBT & 0x80); $BlockType = ($LBFBT & 0x7F); $BlockLength = getid3_lib::BigEndian2Int(substr($BlockHeader, 1, 3)); $BlockTypeText = self::metaBlockTypeLookup($BlockType); if (($BlockOffset + 4 + $BlockLength) > $info['avdataend']) { $this->warning('METADATA_BLOCK_HEADER.BLOCK_TYPE ('.$BlockTypeText.') at offset '.$BlockOffset.' extends beyond end of file'); break; } if ($BlockLength < 1) { if ($BlockTypeText != 'reserved') { // probably supposed to be zero-length $this->warning('METADATA_BLOCK_HEADER.BLOCK_LENGTH ('.$BlockTypeText.') at offset '.$BlockOffset.' is zero bytes'); continue; } $this->error('METADATA_BLOCK_HEADER.BLOCK_LENGTH ('.$BlockLength.') at offset '.$BlockOffset.' is invalid'); break; } $info['flac'][$BlockTypeText]['raw'] = array(); $BlockTypeText_raw = &$info['flac'][$BlockTypeText]['raw']; $BlockTypeText_raw['offset'] = $BlockOffset; $BlockTypeText_raw['last_meta_block'] = $LastBlockFlag; $BlockTypeText_raw['block_type'] = $BlockType; $BlockTypeText_raw['block_type_text'] = $BlockTypeText; $BlockTypeText_raw['block_length'] = $BlockLength; if ($BlockTypeText_raw['block_type'] != 0x06) { // do not read attachment data automatically $BlockTypeText_raw['block_data'] = $this->fread($BlockLength); } switch ($BlockTypeText) { case 'STREAMINFO': // 0x00 if (!$this->parseSTREAMINFO($BlockTypeText_raw['block_data'])) { return false; } break; case 'PADDING': // 0x01 unset($info['flac']['PADDING']); // ignore break; case 'APPLICATION': // 0x02 if (!$this->parseAPPLICATION($BlockTypeText_raw['block_data'])) { return false; } break; case 'SEEKTABLE': // 0x03 if (!$this->parseSEEKTABLE($BlockTypeText_raw['block_data'])) { return false; } break; case 'VORBIS_COMMENT': // 0x04 if (!$this->parseVORBIS_COMMENT($BlockTypeText_raw['block_data'])) { return false; } break; case 'CUESHEET': // 0x05 if (!$this->parseCUESHEET($BlockTypeText_raw['block_data'])) { return false; } break; case 'PICTURE': // 0x06 if (!$this->parsePICTURE()) { return false; } break; default: $this->warning('Unhandled METADATA_BLOCK_HEADER.BLOCK_TYPE ('.$BlockType.') at offset '.$BlockOffset); } unset($info['flac'][$BlockTypeText]['raw']); $info['avdataoffset'] = $this->ftell(); } while ($LastBlockFlag === false); // handle tags if (!empty($info['flac']['VORBIS_COMMENT']['comments'])) { $info['flac']['comments'] = $info['flac']['VORBIS_COMMENT']['comments']; } if (!empty($info['flac']['VORBIS_COMMENT']['vendor'])) { $info['audio']['encoder'] = str_replace('reference ', '', $info['flac']['VORBIS_COMMENT']['vendor']); } // copy attachments to 'comments' array if nesesary if (isset($info['flac']['PICTURE']) && ($this->getid3->option_save_attachments !== getID3::ATTACHMENTS_NONE)) { foreach ($info['flac']['PICTURE'] as $entry) { if (!empty($entry['data'])) { if (!isset($info['flac']['comments']['picture'])) { $info['flac']['comments']['picture'] = array(); } $comments_picture_data = array(); foreach (array('data', 'image_mime', 'image_width', 'image_height', 'imagetype', 'picturetype', 'description', 'datalength') as $picture_key) { if (isset($entry[$picture_key])) { $comments_picture_data[$picture_key] = $entry[$picture_key]; } } $info['flac']['comments']['picture'][] = $comments_picture_data; unset($comments_picture_data); } } } if (isset($info['flac']['STREAMINFO'])) { if (!$this->isDependencyFor('matroska')) { $info['flac']['compressed_audio_bytes'] = $info['avdataend'] - $info['avdataoffset']; } $info['flac']['uncompressed_audio_bytes'] = $info['flac']['STREAMINFO']['samples_stream'] * $info['flac']['STREAMINFO']['channels'] * ($info['flac']['STREAMINFO']['bits_per_sample'] / 8); if ($info['flac']['uncompressed_audio_bytes'] == 0 && $info['flac']['STREAMINFO']['samples_stream'] > 0) { return $this->error('Corrupt FLAC file: uncompressed_audio_bytes == zero'); } if (!empty($info['flac']['compressed_audio_bytes']) && $info['flac']['STREAMINFO']['samples_stream'] > 0) { $info['flac']['compression_ratio'] = $info['flac']['compressed_audio_bytes'] / $info['flac']['uncompressed_audio_bytes']; } } // set md5_data_source - built into flac 0.5+ if (isset($info['flac']['STREAMINFO']['audio_signature'])) { if ($info['flac']['STREAMINFO']['audio_signature'] === str_repeat("\x00", 16)) { $this->warning('FLAC STREAMINFO.audio_signature is null (known issue with libOggFLAC)'); } else { $info['md5_data_source'] = ''; $md5 = $info['flac']['STREAMINFO']['audio_signature']; for ($i = 0; $i < strlen($md5); $i++) { $info['md5_data_source'] .= str_pad(dechex(ord($md5[$i])), 2, '00', STR_PAD_LEFT); } if (!preg_match('/^[0-9a-f]{32}$/', $info['md5_data_source'])) { unset($info['md5_data_source']); } } } if (isset($info['flac']['STREAMINFO']['bits_per_sample'])) { $info['audio']['bits_per_sample'] = $info['flac']['STREAMINFO']['bits_per_sample']; if ($info['audio']['bits_per_sample'] == 8) { // special case // must invert sign bit on all data bytes before MD5'ing to match FLAC's calculated value // MD5sum calculates on unsigned bytes, but FLAC calculated MD5 on 8-bit audio data as signed $this->warning('FLAC calculates MD5 data strangely on 8-bit audio, so the stored md5_data_source value will not match the decoded WAV file'); } } return true; } /** * @param string $BlockData * * @return array */ public static function parseSTREAMINFOdata($BlockData) { $streaminfo = array(); $streaminfo['min_block_size'] = getid3_lib::BigEndian2Int(substr($BlockData, 0, 2)); $streaminfo['max_block_size'] = getid3_lib::BigEndian2Int(substr($BlockData, 2, 2)); $streaminfo['min_frame_size'] = getid3_lib::BigEndian2Int(substr($BlockData, 4, 3)); $streaminfo['max_frame_size'] = getid3_lib::BigEndian2Int(substr($BlockData, 7, 3)); $SRCSBSS = getid3_lib::BigEndian2Bin(substr($BlockData, 10, 8)); $streaminfo['sample_rate'] = getid3_lib::Bin2Dec(substr($SRCSBSS, 0, 20)); $streaminfo['channels'] = getid3_lib::Bin2Dec(substr($SRCSBSS, 20, 3)) + 1; $streaminfo['bits_per_sample'] = getid3_lib::Bin2Dec(substr($SRCSBSS, 23, 5)) + 1; $streaminfo['samples_stream'] = getid3_lib::Bin2Dec(substr($SRCSBSS, 28, 36)); $streaminfo['audio_signature'] = substr($BlockData, 18, 16); return $streaminfo; } /** * @param string $BlockData * * @return bool */ private function parseSTREAMINFO($BlockData) { $info = &$this->getid3->info; $info['flac']['STREAMINFO'] = self::parseSTREAMINFOdata($BlockData); if (!empty($info['flac']['STREAMINFO']['sample_rate'])) { $info['audio']['bitrate_mode'] = 'vbr'; $info['audio']['sample_rate'] = $info['flac']['STREAMINFO']['sample_rate']; $info['audio']['channels'] = $info['flac']['STREAMINFO']['channels']; $info['audio']['bits_per_sample'] = $info['flac']['STREAMINFO']['bits_per_sample']; $info['playtime_seconds'] = $info['flac']['STREAMINFO']['samples_stream'] / $info['flac']['STREAMINFO']['sample_rate']; if ($info['playtime_seconds'] > 0) { if (!$this->isDependencyFor('matroska')) { $info['audio']['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / $info['playtime_seconds']; } else { $this->warning('Cannot determine audio bitrate because total stream size is unknown'); } } } else { return $this->error('Corrupt METAdata block: STREAMINFO'); } return true; } /** * @param string $BlockData * * @return bool */ private function parseAPPLICATION($BlockData) { $info = &$this->getid3->info; $ApplicationID = getid3_lib::BigEndian2Int(substr($BlockData, 0, 4)); $info['flac']['APPLICATION'][$ApplicationID]['name'] = self::applicationIDLookup($ApplicationID); $info['flac']['APPLICATION'][$ApplicationID]['data'] = substr($BlockData, 4); return true; } /** * @param string $BlockData * * @return bool */ private function parseSEEKTABLE($BlockData) { $info = &$this->getid3->info; $offset = 0; $BlockLength = strlen($BlockData); $placeholderpattern = str_repeat("\xFF", 8); while ($offset < $BlockLength) { $SampleNumberString = substr($BlockData, $offset, 8); $offset += 8; if ($SampleNumberString == $placeholderpattern) { // placeholder point getid3_lib::safe_inc($info['flac']['SEEKTABLE']['placeholders'], 1); $offset += 10; } else { $SampleNumber = getid3_lib::BigEndian2Int($SampleNumberString); $info['flac']['SEEKTABLE'][$SampleNumber]['offset'] = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 8)); $offset += 8; $info['flac']['SEEKTABLE'][$SampleNumber]['samples'] = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 2)); $offset += 2; } } return true; } /** * @param string $BlockData * * @return bool */ private function parseVORBIS_COMMENT($BlockData) { $info = &$this->getid3->info; $getid3_ogg = new getid3_ogg($this->getid3); if ($this->isDependencyFor('matroska')) { $getid3_ogg->setStringMode($this->data_string); } $getid3_ogg->ParseVorbisComments(); if (isset($info['ogg'])) { unset($info['ogg']['comments_raw']); $info['flac']['VORBIS_COMMENT'] = $info['ogg']; unset($info['ogg']); } unset($getid3_ogg); return true; } /** * @param string $BlockData * * @return bool */ private function parseCUESHEET($BlockData) { $info = &$this->getid3->info; $offset = 0; $info['flac']['CUESHEET']['media_catalog_number'] = trim(substr($BlockData, $offset, 128), "\0"); $offset += 128; $info['flac']['CUESHEET']['lead_in_samples'] = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 8)); $offset += 8; $info['flac']['CUESHEET']['flags']['is_cd'] = (bool) (getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1)) & 0x80); $offset += 1; $offset += 258; // reserved $info['flac']['CUESHEET']['number_tracks'] = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1)); $offset += 1; for ($track = 0; $track < $info['flac']['CUESHEET']['number_tracks']; $track++) { $TrackSampleOffset = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 8)); $offset += 8; $TrackNumber = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1)); $offset += 1; $info['flac']['CUESHEET']['tracks'][$TrackNumber]['sample_offset'] = $TrackSampleOffset; $info['flac']['CUESHEET']['tracks'][$TrackNumber]['isrc'] = substr($BlockData, $offset, 12); $offset += 12; $TrackFlagsRaw = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1)); $offset += 1; $info['flac']['CUESHEET']['tracks'][$TrackNumber]['flags']['is_audio'] = (bool) ($TrackFlagsRaw & 0x80); $info['flac']['CUESHEET']['tracks'][$TrackNumber]['flags']['pre_emphasis'] = (bool) ($TrackFlagsRaw & 0x40); $offset += 13; // reserved $info['flac']['CUESHEET']['tracks'][$TrackNumber]['index_points'] = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1)); $offset += 1; for ($index = 0; $index < $info['flac']['CUESHEET']['tracks'][$TrackNumber]['index_points']; $index++) { $IndexSampleOffset = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 8)); $offset += 8; $IndexNumber = getid3_lib::BigEndian2Int(substr($BlockData, $offset, 1)); $offset += 1; $offset += 3; // reserved $info['flac']['CUESHEET']['tracks'][$TrackNumber]['indexes'][$IndexNumber] = $IndexSampleOffset; } } return true; } /** * Parse METADATA_BLOCK_PICTURE flac structure and extract attachment * External usage: audio.ogg * * @return bool */ public function parsePICTURE() { $info = &$this->getid3->info; $picture = array(); $picture['typeid'] = getid3_lib::BigEndian2Int($this->fread(4)); $picture['picturetype'] = self::pictureTypeLookup($picture['typeid']); $picture['image_mime'] = $this->fread(getid3_lib::BigEndian2Int($this->fread(4))); $descr_length = getid3_lib::BigEndian2Int($this->fread(4)); if ($descr_length) { $picture['description'] = $this->fread($descr_length); } $picture['image_width'] = getid3_lib::BigEndian2Int($this->fread(4)); $picture['image_height'] = getid3_lib::BigEndian2Int($this->fread(4)); $picture['color_depth'] = getid3_lib::BigEndian2Int($this->fread(4)); $picture['colors_indexed'] = getid3_lib::BigEndian2Int($this->fread(4)); $picture['datalength'] = getid3_lib::BigEndian2Int($this->fread(4)); if ($picture['image_mime'] == '-->') { $picture['data'] = $this->fread($picture['datalength']); } else { $picture['data'] = $this->saveAttachment( str_replace('/', '_', $picture['picturetype']).'_'.$this->ftell(), $this->ftell(), $picture['datalength'], $picture['image_mime']); } $info['flac']['PICTURE'][] = $picture; return true; } /** * @param int $blocktype * * @return string */ public static function metaBlockTypeLookup($blocktype) { static $lookup = array( 0 => 'STREAMINFO', 1 => 'PADDING', 2 => 'APPLICATION', 3 => 'SEEKTABLE', 4 => 'VORBIS_COMMENT', 5 => 'CUESHEET', 6 => 'PICTURE', ); return (isset($lookup[$blocktype]) ? $lookup[$blocktype] : 'reserved'); } /** * @param int $applicationid * * @return string */ public static function applicationIDLookup($applicationid) { // http://flac.sourceforge.net/id.html static $lookup = array( 0x41544348 => 'FlacFile', // "ATCH" 0x42534F4C => 'beSolo', // "BSOL" 0x42554753 => 'Bugs Player', // "BUGS" 0x43756573 => 'GoldWave cue points (specification)', // "Cues" 0x46696361 => 'CUE Splitter', // "Fica" 0x46746F6C => 'flac-tools', // "Ftol" 0x4D4F5442 => 'MOTB MetaCzar', // "MOTB" 0x4D505345 => 'MP3 Stream Editor', // "MPSE" 0x4D754D4C => 'MusicML: Music Metadata Language', // "MuML" 0x52494646 => 'Sound Devices RIFF chunk storage', // "RIFF" 0x5346464C => 'Sound Font FLAC', // "SFFL" 0x534F4E59 => 'Sony Creative Software', // "SONY" 0x5351455A => 'flacsqueeze', // "SQEZ" 0x54745776 => 'TwistedWave', // "TtWv" 0x55495453 => 'UITS Embedding tools', // "UITS" 0x61696666 => 'FLAC AIFF chunk storage', // "aiff" 0x696D6167 => 'flac-image application for storing arbitrary files in APPLICATION metadata blocks', // "imag" 0x7065656D => 'Parseable Embedded Extensible Metadata (specification)', // "peem" 0x71667374 => 'QFLAC Studio', // "qfst" 0x72696666 => 'FLAC RIFF chunk storage', // "riff" 0x74756E65 => 'TagTuner', // "tune" 0x78626174 => 'XBAT', // "xbat" 0x786D6364 => 'xmcd', // "xmcd" ); return (isset($lookup[$applicationid]) ? $lookup[$applicationid] : 'reserved'); } /** * @param int $type_id * * @return string */ public static function pictureTypeLookup($type_id) { static $lookup = array ( 0 => 'Other', 1 => '32x32 pixels \'file icon\' (PNG only)', 2 => 'Other file icon', 3 => 'Cover (front)', 4 => 'Cover (back)', 5 => 'Leaflet page', 6 => 'Media (e.g. label side of CD)', 7 => 'Lead artist/lead performer/soloist', 8 => 'Artist/performer', 9 => 'Conductor', 10 => 'Band/Orchestra', 11 => 'Composer', 12 => 'Lyricist/text writer', 13 => 'Recording Location', 14 => 'During recording', 15 => 'During performance', 16 => 'Movie/video screen capture', 17 => 'A bright coloured fish', 18 => 'Illustration', 19 => 'Band/artist logotype', 20 => 'Publisher/Studio logotype', ); return (isset($lookup[$type_id]) ? $lookup[$type_id] : 'reserved'); } } module.audio.ac3.php000060000000116217152233444720010315 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio.ac3.php // // module for analyzing AC-3 (aka Dolby Digital) audio files // // dependencies: NONE // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } class getid3_ac3 extends getid3_handler { /** * @var array */ private $AC3header = array(); /** * @var int */ private $BSIoffset = 0; const syncword = 0x0B77; /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; ///AH $info['ac3']['raw']['bsi'] = array(); $thisfile_ac3 = &$info['ac3']; $thisfile_ac3_raw = &$thisfile_ac3['raw']; $thisfile_ac3_raw_bsi = &$thisfile_ac3_raw['bsi']; // http://www.atsc.org/standards/a_52a.pdf $info['fileformat'] = 'ac3'; // An AC-3 serial coded audio bit stream is made up of a sequence of synchronization frames // Each synchronization frame contains 6 coded audio blocks (AB), each of which represent 256 // new audio samples per channel. A synchronization information (SI) header at the beginning // of each frame contains information needed to acquire and maintain synchronization. A // bit stream information (BSI) header follows SI, and contains parameters describing the coded // audio service. The coded audio blocks may be followed by an auxiliary data (Aux) field. At the // end of each frame is an error check field that includes a CRC word for error detection. An // additional CRC word is located in the SI header, the use of which, by a decoder, is optional. // // syncinfo() | bsi() | AB0 | AB1 | AB2 | AB3 | AB4 | AB5 | Aux | CRC // syncinfo() { // syncword 16 // crc1 16 // fscod 2 // frmsizecod 6 // } /* end of syncinfo */ $this->fseek($info['avdataoffset']); $tempAC3header = $this->fread(100); // should be enough to cover all data, there are some variable-length fields...? $this->AC3header['syncinfo'] = getid3_lib::BigEndian2Int(substr($tempAC3header, 0, 2)); $this->AC3header['bsi'] = getid3_lib::BigEndian2Bin(substr($tempAC3header, 2)); $thisfile_ac3_raw_bsi['bsid'] = (getid3_lib::LittleEndian2Int(substr($tempAC3header, 5, 1)) & 0xF8) >> 3; // AC3 and E-AC3 put the "bsid" version identifier in the same place, but unfortnately the 4 bytes between the syncword and the version identifier are interpreted differently, so grab it here so the following code structure can make sense unset($tempAC3header); if ($this->AC3header['syncinfo'] !== self::syncword) { if (!$this->isDependencyFor('matroska')) { unset($info['fileformat'], $info['ac3']); return $this->error('Expecting "'.dechex(self::syncword).'" at offset '.$info['avdataoffset'].', found "'.dechex($this->AC3header['syncinfo']).'"'); } } $info['audio']['dataformat'] = 'ac3'; $info['audio']['bitrate_mode'] = 'cbr'; $info['audio']['lossless'] = false; if ($thisfile_ac3_raw_bsi['bsid'] <= 8) { $thisfile_ac3_raw_bsi['crc1'] = getid3_lib::Bin2Dec($this->readHeaderBSI(16)); $thisfile_ac3_raw_bsi['fscod'] = $this->readHeaderBSI(2); // 5.4.1.3 $thisfile_ac3_raw_bsi['frmsizecod'] = $this->readHeaderBSI(6); // 5.4.1.4 if ($thisfile_ac3_raw_bsi['frmsizecod'] > 37) { // binary: 100101 - see Table 5.18 Frame Size Code Table (1 word = 16 bits) $this->warning('Unexpected ac3.bsi.frmsizecod value: '.$thisfile_ac3_raw_bsi['frmsizecod'].', bitrate not set correctly'); } $thisfile_ac3_raw_bsi['bsid'] = $this->readHeaderBSI(5); // we already know this from pre-parsing the version identifier, but re-read it to let the bitstream flow as intended $thisfile_ac3_raw_bsi['bsmod'] = $this->readHeaderBSI(3); $thisfile_ac3_raw_bsi['acmod'] = $this->readHeaderBSI(3); if ($thisfile_ac3_raw_bsi['acmod'] & 0x01) { // If the lsb of acmod is a 1, center channel is in use and cmixlev follows in the bit stream. $thisfile_ac3_raw_bsi['cmixlev'] = $this->readHeaderBSI(2); $thisfile_ac3['center_mix_level'] = self::centerMixLevelLookup($thisfile_ac3_raw_bsi['cmixlev']); } if ($thisfile_ac3_raw_bsi['acmod'] & 0x04) { // If the msb of acmod is a 1, surround channels are in use and surmixlev follows in the bit stream. $thisfile_ac3_raw_bsi['surmixlev'] = $this->readHeaderBSI(2); $thisfile_ac3['surround_mix_level'] = self::surroundMixLevelLookup($thisfile_ac3_raw_bsi['surmixlev']); } if ($thisfile_ac3_raw_bsi['acmod'] == 0x02) { // When operating in the two channel mode, this 2-bit code indicates whether or not the program has been encoded in Dolby Surround. $thisfile_ac3_raw_bsi['dsurmod'] = $this->readHeaderBSI(2); $thisfile_ac3['dolby_surround_mode'] = self::dolbySurroundModeLookup($thisfile_ac3_raw_bsi['dsurmod']); } $thisfile_ac3_raw_bsi['flags']['lfeon'] = (bool) $this->readHeaderBSI(1); // This indicates how far the average dialogue level is below digital 100 percent. Valid values are 1-31. // The value of 0 is reserved. The values of 1 to 31 are interpreted as -1 dB to -31 dB with respect to digital 100 percent. $thisfile_ac3_raw_bsi['dialnorm'] = $this->readHeaderBSI(5); // 5.4.2.8 dialnorm: Dialogue Normalization, 5 Bits $thisfile_ac3_raw_bsi['flags']['compr'] = (bool) $this->readHeaderBSI(1); // 5.4.2.9 compre: Compression Gain Word Exists, 1 Bit if ($thisfile_ac3_raw_bsi['flags']['compr']) { $thisfile_ac3_raw_bsi['compr'] = $this->readHeaderBSI(8); // 5.4.2.10 compr: Compression Gain Word, 8 Bits $thisfile_ac3['heavy_compression'] = self::heavyCompression($thisfile_ac3_raw_bsi['compr']); } $thisfile_ac3_raw_bsi['flags']['langcod'] = (bool) $this->readHeaderBSI(1); // 5.4.2.11 langcode: Language Code Exists, 1 Bit if ($thisfile_ac3_raw_bsi['flags']['langcod']) { $thisfile_ac3_raw_bsi['langcod'] = $this->readHeaderBSI(8); // 5.4.2.12 langcod: Language Code, 8 Bits } $thisfile_ac3_raw_bsi['flags']['audprodinfo'] = (bool) $this->readHeaderBSI(1); // 5.4.2.13 audprodie: Audio Production Information Exists, 1 Bit if ($thisfile_ac3_raw_bsi['flags']['audprodinfo']) { $thisfile_ac3_raw_bsi['mixlevel'] = $this->readHeaderBSI(5); // 5.4.2.14 mixlevel: Mixing Level, 5 Bits $thisfile_ac3_raw_bsi['roomtyp'] = $this->readHeaderBSI(2); // 5.4.2.15 roomtyp: Room Type, 2 Bits $thisfile_ac3['mixing_level'] = (80 + $thisfile_ac3_raw_bsi['mixlevel']).'dB'; $thisfile_ac3['room_type'] = self::roomTypeLookup($thisfile_ac3_raw_bsi['roomtyp']); } $thisfile_ac3_raw_bsi['dialnorm2'] = $this->readHeaderBSI(5); // 5.4.2.16 dialnorm2: Dialogue Normalization, ch2, 5 Bits $thisfile_ac3['dialogue_normalization2'] = '-'.$thisfile_ac3_raw_bsi['dialnorm2'].'dB'; // This indicates how far the average dialogue level is below digital 100 percent. Valid values are 1-31. The value of 0 is reserved. The values of 1 to 31 are interpreted as -1 dB to -31 dB with respect to digital 100 percent. $thisfile_ac3_raw_bsi['flags']['compr2'] = (bool) $this->readHeaderBSI(1); // 5.4.2.17 compr2e: Compression Gain Word Exists, ch2, 1 Bit if ($thisfile_ac3_raw_bsi['flags']['compr2']) { $thisfile_ac3_raw_bsi['compr2'] = $this->readHeaderBSI(8); // 5.4.2.18 compr2: Compression Gain Word, ch2, 8 Bits $thisfile_ac3['heavy_compression2'] = self::heavyCompression($thisfile_ac3_raw_bsi['compr2']); } $thisfile_ac3_raw_bsi['flags']['langcod2'] = (bool) $this->readHeaderBSI(1); // 5.4.2.19 langcod2e: Language Code Exists, ch2, 1 Bit if ($thisfile_ac3_raw_bsi['flags']['langcod2']) { $thisfile_ac3_raw_bsi['langcod2'] = $this->readHeaderBSI(8); // 5.4.2.20 langcod2: Language Code, ch2, 8 Bits } $thisfile_ac3_raw_bsi['flags']['audprodinfo2'] = (bool) $this->readHeaderBSI(1); // 5.4.2.21 audprodi2e: Audio Production Information Exists, ch2, 1 Bit if ($thisfile_ac3_raw_bsi['flags']['audprodinfo2']) { $thisfile_ac3_raw_bsi['mixlevel2'] = $this->readHeaderBSI(5); // 5.4.2.22 mixlevel2: Mixing Level, ch2, 5 Bits $thisfile_ac3_raw_bsi['roomtyp2'] = $this->readHeaderBSI(2); // 5.4.2.23 roomtyp2: Room Type, ch2, 2 Bits $thisfile_ac3['mixing_level2'] = (80 + $thisfile_ac3_raw_bsi['mixlevel2']).'dB'; $thisfile_ac3['room_type2'] = self::roomTypeLookup($thisfile_ac3_raw_bsi['roomtyp2']); } $thisfile_ac3_raw_bsi['copyright'] = (bool) $this->readHeaderBSI(1); // 5.4.2.24 copyrightb: Copyright Bit, 1 Bit $thisfile_ac3_raw_bsi['original'] = (bool) $this->readHeaderBSI(1); // 5.4.2.25 origbs: Original Bit Stream, 1 Bit $thisfile_ac3_raw_bsi['flags']['timecod1'] = $this->readHeaderBSI(2); // 5.4.2.26 timecod1e, timcode2e: Time Code (first and second) Halves Exist, 2 Bits if ($thisfile_ac3_raw_bsi['flags']['timecod1'] & 0x01) { $thisfile_ac3_raw_bsi['timecod1'] = $this->readHeaderBSI(14); // 5.4.2.27 timecod1: Time code first half, 14 bits $thisfile_ac3['timecode1'] = 0; $thisfile_ac3['timecode1'] += (($thisfile_ac3_raw_bsi['timecod1'] & 0x3E00) >> 9) * 3600; // The first 5 bits of this 14-bit field represent the time in hours, with valid values of 0�23 $thisfile_ac3['timecode1'] += (($thisfile_ac3_raw_bsi['timecod1'] & 0x01F8) >> 3) * 60; // The next 6 bits represent the time in minutes, with valid values of 0�59 $thisfile_ac3['timecode1'] += (($thisfile_ac3_raw_bsi['timecod1'] & 0x0003) >> 0) * 8; // The final 3 bits represents the time in 8 second increments, with valid values of 0�7 (representing 0, 8, 16, ... 56 seconds) } if ($thisfile_ac3_raw_bsi['flags']['timecod1'] & 0x02) { $thisfile_ac3_raw_bsi['timecod2'] = $this->readHeaderBSI(14); // 5.4.2.28 timecod2: Time code second half, 14 bits $thisfile_ac3['timecode2'] = 0; $thisfile_ac3['timecode2'] += (($thisfile_ac3_raw_bsi['timecod2'] & 0x3800) >> 11) * 1; // The first 3 bits of this 14-bit field represent the time in seconds, with valid values from 0�7 (representing 0-7 seconds) $thisfile_ac3['timecode2'] += (($thisfile_ac3_raw_bsi['timecod2'] & 0x07C0) >> 6) * (1 / 30); // The next 5 bits represents the time in frames, with valid values from 0�29 (one frame = 1/30th of a second) $thisfile_ac3['timecode2'] += (($thisfile_ac3_raw_bsi['timecod2'] & 0x003F) >> 0) * ((1 / 30) / 60); // The final 6 bits represents fractions of 1/64 of a frame, with valid values from 0�63 } $thisfile_ac3_raw_bsi['flags']['addbsi'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['addbsi']) { $thisfile_ac3_raw_bsi['addbsi_length'] = $this->readHeaderBSI(6) + 1; // This 6-bit code, which exists only if addbside is a 1, indicates the length in bytes of additional bit stream information. The valid range of addbsil is 0�63, indicating 1�64 additional bytes, respectively. $this->AC3header['bsi'] .= getid3_lib::BigEndian2Bin($this->fread($thisfile_ac3_raw_bsi['addbsi_length'])); $thisfile_ac3_raw_bsi['addbsi_data'] = substr($this->AC3header['bsi'], $this->BSIoffset, $thisfile_ac3_raw_bsi['addbsi_length'] * 8); $this->BSIoffset += $thisfile_ac3_raw_bsi['addbsi_length'] * 8; } } elseif ($thisfile_ac3_raw_bsi['bsid'] <= 16) { // E-AC3 $this->error('E-AC3 parsing is incomplete and experimental in this version of getID3 ('.$this->getid3->version().'). Notably the bitrate calculations are wrong -- value might (or not) be correct, but it is not calculated correctly. Email info@getid3.org if you know how to calculate EAC3 bitrate correctly.'); $info['audio']['dataformat'] = 'eac3'; $thisfile_ac3_raw_bsi['strmtyp'] = $this->readHeaderBSI(2); $thisfile_ac3_raw_bsi['substreamid'] = $this->readHeaderBSI(3); $thisfile_ac3_raw_bsi['frmsiz'] = $this->readHeaderBSI(11); $thisfile_ac3_raw_bsi['fscod'] = $this->readHeaderBSI(2); if ($thisfile_ac3_raw_bsi['fscod'] == 3) { $thisfile_ac3_raw_bsi['fscod2'] = $this->readHeaderBSI(2); $thisfile_ac3_raw_bsi['numblkscod'] = 3; // six blocks per syncframe } else { $thisfile_ac3_raw_bsi['numblkscod'] = $this->readHeaderBSI(2); } $thisfile_ac3['bsi']['blocks_per_sync_frame'] = self::blocksPerSyncFrame($thisfile_ac3_raw_bsi['numblkscod']); $thisfile_ac3_raw_bsi['acmod'] = $this->readHeaderBSI(3); $thisfile_ac3_raw_bsi['flags']['lfeon'] = (bool) $this->readHeaderBSI(1); $thisfile_ac3_raw_bsi['bsid'] = $this->readHeaderBSI(5); // we already know this from pre-parsing the version identifier, but re-read it to let the bitstream flow as intended $thisfile_ac3_raw_bsi['dialnorm'] = $this->readHeaderBSI(5); $thisfile_ac3_raw_bsi['flags']['compr'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['compr']) { $thisfile_ac3_raw_bsi['compr'] = $this->readHeaderBSI(8); } if ($thisfile_ac3_raw_bsi['acmod'] == 0) { // if 1+1 mode (dual mono, so some items need a second value) $thisfile_ac3_raw_bsi['dialnorm2'] = $this->readHeaderBSI(5); $thisfile_ac3_raw_bsi['flags']['compr2'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['compr2']) { $thisfile_ac3_raw_bsi['compr2'] = $this->readHeaderBSI(8); } } if ($thisfile_ac3_raw_bsi['strmtyp'] == 1) { // if dependent stream $thisfile_ac3_raw_bsi['flags']['chanmap'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['chanmap']) { $thisfile_ac3_raw_bsi['chanmap'] = $this->readHeaderBSI(8); } } $thisfile_ac3_raw_bsi['flags']['mixmdat'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['mixmdat']) { // Mixing metadata if ($thisfile_ac3_raw_bsi['acmod'] > 2) { // if more than 2 channels $thisfile_ac3_raw_bsi['dmixmod'] = $this->readHeaderBSI(2); } if (($thisfile_ac3_raw_bsi['acmod'] & 0x01) && ($thisfile_ac3_raw_bsi['acmod'] > 2)) { // if three front channels exist $thisfile_ac3_raw_bsi['ltrtcmixlev'] = $this->readHeaderBSI(3); $thisfile_ac3_raw_bsi['lorocmixlev'] = $this->readHeaderBSI(3); } if ($thisfile_ac3_raw_bsi['acmod'] & 0x04) { // if a surround channel exists $thisfile_ac3_raw_bsi['ltrtsurmixlev'] = $this->readHeaderBSI(3); $thisfile_ac3_raw_bsi['lorosurmixlev'] = $this->readHeaderBSI(3); } if ($thisfile_ac3_raw_bsi['flags']['lfeon']) { // if the LFE channel exists $thisfile_ac3_raw_bsi['flags']['lfemixlevcod'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['lfemixlevcod']) { $thisfile_ac3_raw_bsi['lfemixlevcod'] = $this->readHeaderBSI(5); } } if ($thisfile_ac3_raw_bsi['strmtyp'] == 0) { // if independent stream $thisfile_ac3_raw_bsi['flags']['pgmscl'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['pgmscl']) { $thisfile_ac3_raw_bsi['pgmscl'] = $this->readHeaderBSI(6); } if ($thisfile_ac3_raw_bsi['acmod'] == 0) { // if 1+1 mode (dual mono, so some items need a second value) $thisfile_ac3_raw_bsi['flags']['pgmscl2'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['pgmscl2']) { $thisfile_ac3_raw_bsi['pgmscl2'] = $this->readHeaderBSI(6); } } $thisfile_ac3_raw_bsi['flags']['extpgmscl'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['extpgmscl']) { $thisfile_ac3_raw_bsi['extpgmscl'] = $this->readHeaderBSI(6); } $thisfile_ac3_raw_bsi['mixdef'] = $this->readHeaderBSI(2); if ($thisfile_ac3_raw_bsi['mixdef'] == 1) { // mixing option 2 $thisfile_ac3_raw_bsi['premixcmpsel'] = (bool) $this->readHeaderBSI(1); $thisfile_ac3_raw_bsi['drcsrc'] = (bool) $this->readHeaderBSI(1); $thisfile_ac3_raw_bsi['premixcmpscl'] = $this->readHeaderBSI(3); } elseif ($thisfile_ac3_raw_bsi['mixdef'] == 2) { // mixing option 3 $thisfile_ac3_raw_bsi['mixdata'] = $this->readHeaderBSI(12); } elseif ($thisfile_ac3_raw_bsi['mixdef'] == 3) { // mixing option 4 $mixdefbitsread = 0; $thisfile_ac3_raw_bsi['mixdeflen'] = $this->readHeaderBSI(5); $mixdefbitsread += 5; $thisfile_ac3_raw_bsi['flags']['mixdata2'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['mixdata2']) { $thisfile_ac3_raw_bsi['premixcmpsel'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; $thisfile_ac3_raw_bsi['drcsrc'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; $thisfile_ac3_raw_bsi['premixcmpscl'] = $this->readHeaderBSI(3); $mixdefbitsread += 3; $thisfile_ac3_raw_bsi['flags']['extpgmlscl'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['extpgmlscl']) { $thisfile_ac3_raw_bsi['extpgmlscl'] = $this->readHeaderBSI(4); $mixdefbitsread += 4; } $thisfile_ac3_raw_bsi['flags']['extpgmcscl'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['extpgmcscl']) { $thisfile_ac3_raw_bsi['extpgmcscl'] = $this->readHeaderBSI(4); $mixdefbitsread += 4; } $thisfile_ac3_raw_bsi['flags']['extpgmrscl'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['extpgmrscl']) { $thisfile_ac3_raw_bsi['extpgmrscl'] = $this->readHeaderBSI(4); } $thisfile_ac3_raw_bsi['flags']['extpgmlsscl'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['extpgmlsscl']) { $thisfile_ac3_raw_bsi['extpgmlsscl'] = $this->readHeaderBSI(4); $mixdefbitsread += 4; } $thisfile_ac3_raw_bsi['flags']['extpgmrsscl'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['extpgmrsscl']) { $thisfile_ac3_raw_bsi['extpgmrsscl'] = $this->readHeaderBSI(4); $mixdefbitsread += 4; } $thisfile_ac3_raw_bsi['flags']['extpgmlfescl'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['extpgmlfescl']) { $thisfile_ac3_raw_bsi['extpgmlfescl'] = $this->readHeaderBSI(4); $mixdefbitsread += 4; } $thisfile_ac3_raw_bsi['flags']['dmixscl'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['dmixscl']) { $thisfile_ac3_raw_bsi['dmixscl'] = $this->readHeaderBSI(4); $mixdefbitsread += 4; } $thisfile_ac3_raw_bsi['flags']['addch'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['addch']) { $thisfile_ac3_raw_bsi['flags']['extpgmaux1scl'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['extpgmaux1scl']) { $thisfile_ac3_raw_bsi['extpgmaux1scl'] = $this->readHeaderBSI(4); $mixdefbitsread += 4; } $thisfile_ac3_raw_bsi['flags']['extpgmaux2scl'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['extpgmaux2scl']) { $thisfile_ac3_raw_bsi['extpgmaux2scl'] = $this->readHeaderBSI(4); $mixdefbitsread += 4; } } } $thisfile_ac3_raw_bsi['flags']['mixdata3'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['mixdata3']) { $thisfile_ac3_raw_bsi['spchdat'] = $this->readHeaderBSI(5); $mixdefbitsread += 5; $thisfile_ac3_raw_bsi['flags']['addspchdat'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['addspchdat']) { $thisfile_ac3_raw_bsi['spchdat1'] = $this->readHeaderBSI(5); $mixdefbitsread += 5; $thisfile_ac3_raw_bsi['spchan1att'] = $this->readHeaderBSI(2); $mixdefbitsread += 2; $thisfile_ac3_raw_bsi['flags']['addspchdat1'] = (bool) $this->readHeaderBSI(1); $mixdefbitsread += 1; if ($thisfile_ac3_raw_bsi['flags']['addspchdat1']) { $thisfile_ac3_raw_bsi['spchdat2'] = $this->readHeaderBSI(5); $mixdefbitsread += 5; $thisfile_ac3_raw_bsi['spchan2att'] = $this->readHeaderBSI(3); $mixdefbitsread += 3; } } } $mixdata_bits = (8 * ($thisfile_ac3_raw_bsi['mixdeflen'] + 2)) - $mixdefbitsread; $mixdata_fill = (($mixdata_bits % 8) ? 8 - ($mixdata_bits % 8) : 0); $thisfile_ac3_raw_bsi['mixdata'] = $this->readHeaderBSI($mixdata_bits); $thisfile_ac3_raw_bsi['mixdatafill'] = $this->readHeaderBSI($mixdata_fill); unset($mixdefbitsread, $mixdata_bits, $mixdata_fill); } if ($thisfile_ac3_raw_bsi['acmod'] < 2) { // if mono or dual mono source $thisfile_ac3_raw_bsi['flags']['paninfo'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['paninfo']) { $thisfile_ac3_raw_bsi['panmean'] = $this->readHeaderBSI(8); $thisfile_ac3_raw_bsi['paninfo'] = $this->readHeaderBSI(6); } if ($thisfile_ac3_raw_bsi['acmod'] == 0) { // if 1+1 mode (dual mono, so some items need a second value) $thisfile_ac3_raw_bsi['flags']['paninfo2'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['paninfo2']) { $thisfile_ac3_raw_bsi['panmean2'] = $this->readHeaderBSI(8); $thisfile_ac3_raw_bsi['paninfo2'] = $this->readHeaderBSI(6); } } } $thisfile_ac3_raw_bsi['flags']['frmmixcfginfo'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['frmmixcfginfo']) { // mixing configuration information if ($thisfile_ac3_raw_bsi['numblkscod'] == 0) { $thisfile_ac3_raw_bsi['blkmixcfginfo'][0] = $this->readHeaderBSI(5); } else { for ($blk = 0; $blk < $thisfile_ac3_raw_bsi['numblkscod']; $blk++) { $thisfile_ac3_raw_bsi['flags']['blkmixcfginfo'.$blk] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['blkmixcfginfo'.$blk]) { // mixing configuration information $thisfile_ac3_raw_bsi['blkmixcfginfo'][$blk] = $this->readHeaderBSI(5); } } } } } } $thisfile_ac3_raw_bsi['flags']['infomdat'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['infomdat']) { // Informational metadata $thisfile_ac3_raw_bsi['bsmod'] = $this->readHeaderBSI(3); $thisfile_ac3_raw_bsi['flags']['copyrightb'] = (bool) $this->readHeaderBSI(1); $thisfile_ac3_raw_bsi['flags']['origbs'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['acmod'] == 2) { // if in 2/0 mode $thisfile_ac3_raw_bsi['dsurmod'] = $this->readHeaderBSI(2); $thisfile_ac3_raw_bsi['dheadphonmod'] = $this->readHeaderBSI(2); } if ($thisfile_ac3_raw_bsi['acmod'] >= 6) { // if both surround channels exist $thisfile_ac3_raw_bsi['dsurexmod'] = $this->readHeaderBSI(2); } $thisfile_ac3_raw_bsi['flags']['audprodi'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['audprodi']) { $thisfile_ac3_raw_bsi['mixlevel'] = $this->readHeaderBSI(5); $thisfile_ac3_raw_bsi['roomtyp'] = $this->readHeaderBSI(2); $thisfile_ac3_raw_bsi['flags']['adconvtyp'] = (bool) $this->readHeaderBSI(1); } if ($thisfile_ac3_raw_bsi['acmod'] == 0) { // if 1+1 mode (dual mono, so some items need a second value) $thisfile_ac3_raw_bsi['flags']['audprodi2'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['audprodi2']) { $thisfile_ac3_raw_bsi['mixlevel2'] = $this->readHeaderBSI(5); $thisfile_ac3_raw_bsi['roomtyp2'] = $this->readHeaderBSI(2); $thisfile_ac3_raw_bsi['flags']['adconvtyp2'] = (bool) $this->readHeaderBSI(1); } } if ($thisfile_ac3_raw_bsi['fscod'] < 3) { // if not half sample rate $thisfile_ac3_raw_bsi['flags']['sourcefscod'] = (bool) $this->readHeaderBSI(1); } } if (($thisfile_ac3_raw_bsi['strmtyp'] == 0) && ($thisfile_ac3_raw_bsi['numblkscod'] != 3)) { // if both surround channels exist $thisfile_ac3_raw_bsi['flags']['convsync'] = (bool) $this->readHeaderBSI(1); } if ($thisfile_ac3_raw_bsi['strmtyp'] == 2) { // if bit stream converted from AC-3 if ($thisfile_ac3_raw_bsi['numblkscod'] != 3) { // 6 blocks per syncframe $thisfile_ac3_raw_bsi['flags']['blkid'] = 1; } else { $thisfile_ac3_raw_bsi['flags']['blkid'] = (bool) $this->readHeaderBSI(1); } if ($thisfile_ac3_raw_bsi['flags']['blkid']) { $thisfile_ac3_raw_bsi['frmsizecod'] = $this->readHeaderBSI(6); } } $thisfile_ac3_raw_bsi['flags']['addbsi'] = (bool) $this->readHeaderBSI(1); if ($thisfile_ac3_raw_bsi['flags']['addbsi']) { $thisfile_ac3_raw_bsi['addbsil'] = $this->readHeaderBSI(6); $thisfile_ac3_raw_bsi['addbsi'] = $this->readHeaderBSI(($thisfile_ac3_raw_bsi['addbsil'] + 1) * 8); } } else { $this->error('Bit stream identification is version '.$thisfile_ac3_raw_bsi['bsid'].', but getID3() only understands up to version 16. Please submit a support ticket with a sample file.'); unset($info['ac3']); return false; } if (isset($thisfile_ac3_raw_bsi['fscod2'])) { $thisfile_ac3['sample_rate'] = self::sampleRateCodeLookup2($thisfile_ac3_raw_bsi['fscod2']); } else { $thisfile_ac3['sample_rate'] = self::sampleRateCodeLookup($thisfile_ac3_raw_bsi['fscod']); } if ($thisfile_ac3_raw_bsi['fscod'] <= 3) { $info['audio']['sample_rate'] = $thisfile_ac3['sample_rate']; } else { $this->warning('Unexpected ac3.bsi.fscod value: '.$thisfile_ac3_raw_bsi['fscod']); } if (isset($thisfile_ac3_raw_bsi['frmsizecod'])) { $thisfile_ac3['frame_length'] = self::frameSizeLookup($thisfile_ac3_raw_bsi['frmsizecod'], $thisfile_ac3_raw_bsi['fscod']); $thisfile_ac3['bitrate'] = self::bitrateLookup($thisfile_ac3_raw_bsi['frmsizecod']); } elseif (!empty($thisfile_ac3_raw_bsi['frmsiz'])) { // this isn't right, but it's (usually) close, roughly 5% less than it should be. // but WHERE is the actual bitrate value stored in EAC3?? email info@getid3.org if you know! $thisfile_ac3['bitrate'] = ($thisfile_ac3_raw_bsi['frmsiz'] + 1) * 16 * 30; // The frmsiz field shall contain a value one less than the overall size of the coded syncframe in 16-bit words. That is, this field may assume a value ranging from 0 to 2047, and these values correspond to syncframe sizes ranging from 1 to 2048. // kludge-fix to make it approximately the expected value, still not "right": $thisfile_ac3['bitrate'] = round(($thisfile_ac3['bitrate'] * 1.05) / 16000) * 16000; } $info['audio']['bitrate'] = $thisfile_ac3['bitrate']; if (isset($thisfile_ac3_raw_bsi['bsmod']) && isset($thisfile_ac3_raw_bsi['acmod'])) { $thisfile_ac3['service_type'] = self::serviceTypeLookup($thisfile_ac3_raw_bsi['bsmod'], $thisfile_ac3_raw_bsi['acmod']); } $ac3_coding_mode = self::audioCodingModeLookup($thisfile_ac3_raw_bsi['acmod']); foreach($ac3_coding_mode as $key => $value) { $thisfile_ac3[$key] = $value; } switch ($thisfile_ac3_raw_bsi['acmod']) { case 0: case 1: $info['audio']['channelmode'] = 'mono'; break; case 3: case 4: $info['audio']['channelmode'] = 'stereo'; break; default: $info['audio']['channelmode'] = 'surround'; break; } $info['audio']['channels'] = $thisfile_ac3['num_channels']; $thisfile_ac3['lfe_enabled'] = $thisfile_ac3_raw_bsi['flags']['lfeon']; if ($thisfile_ac3_raw_bsi['flags']['lfeon']) { $info['audio']['channels'] .= '.1'; } $thisfile_ac3['channels_enabled'] = self::channelsEnabledLookup($thisfile_ac3_raw_bsi['acmod'], $thisfile_ac3_raw_bsi['flags']['lfeon']); $thisfile_ac3['dialogue_normalization'] = '-'.$thisfile_ac3_raw_bsi['dialnorm'].'dB'; return true; } /** * @param int $length * * @return int */ private function readHeaderBSI($length) { $data = substr($this->AC3header['bsi'], $this->BSIoffset, $length); $this->BSIoffset += $length; return bindec($data); } /** * @param int $fscod * * @return int|string|false */ public static function sampleRateCodeLookup($fscod) { static $sampleRateCodeLookup = array( 0 => 48000, 1 => 44100, 2 => 32000, 3 => 'reserved' // If the reserved code is indicated, the decoder should not attempt to decode audio and should mute. ); return (isset($sampleRateCodeLookup[$fscod]) ? $sampleRateCodeLookup[$fscod] : false); } /** * @param int $fscod2 * * @return int|string|false */ public static function sampleRateCodeLookup2($fscod2) { static $sampleRateCodeLookup2 = array( 0 => 24000, 1 => 22050, 2 => 16000, 3 => 'reserved' // If the reserved code is indicated, the decoder should not attempt to decode audio and should mute. ); return (isset($sampleRateCodeLookup2[$fscod2]) ? $sampleRateCodeLookup2[$fscod2] : false); } /** * @param int $bsmod * @param int $acmod * * @return string|false */ public static function serviceTypeLookup($bsmod, $acmod) { static $serviceTypeLookup = array(); if (empty($serviceTypeLookup)) { for ($i = 0; $i <= 7; $i++) { $serviceTypeLookup[0][$i] = 'main audio service: complete main (CM)'; $serviceTypeLookup[1][$i] = 'main audio service: music and effects (ME)'; $serviceTypeLookup[2][$i] = 'associated service: visually impaired (VI)'; $serviceTypeLookup[3][$i] = 'associated service: hearing impaired (HI)'; $serviceTypeLookup[4][$i] = 'associated service: dialogue (D)'; $serviceTypeLookup[5][$i] = 'associated service: commentary (C)'; $serviceTypeLookup[6][$i] = 'associated service: emergency (E)'; } $serviceTypeLookup[7][1] = 'associated service: voice over (VO)'; for ($i = 2; $i <= 7; $i++) { $serviceTypeLookup[7][$i] = 'main audio service: karaoke'; } } return (isset($serviceTypeLookup[$bsmod][$acmod]) ? $serviceTypeLookup[$bsmod][$acmod] : false); } /** * @param int $acmod * * @return array|false */ public static function audioCodingModeLookup($acmod) { // array(channel configuration, # channels (not incl LFE), channel order) static $audioCodingModeLookup = array ( 0 => array('channel_config'=>'1+1', 'num_channels'=>2, 'channel_order'=>'Ch1,Ch2'), 1 => array('channel_config'=>'1/0', 'num_channels'=>1, 'channel_order'=>'C'), 2 => array('channel_config'=>'2/0', 'num_channels'=>2, 'channel_order'=>'L,R'), 3 => array('channel_config'=>'3/0', 'num_channels'=>3, 'channel_order'=>'L,C,R'), 4 => array('channel_config'=>'2/1', 'num_channels'=>3, 'channel_order'=>'L,R,S'), 5 => array('channel_config'=>'3/1', 'num_channels'=>4, 'channel_order'=>'L,C,R,S'), 6 => array('channel_config'=>'2/2', 'num_channels'=>4, 'channel_order'=>'L,R,SL,SR'), 7 => array('channel_config'=>'3/2', 'num_channels'=>5, 'channel_order'=>'L,C,R,SL,SR'), ); return (isset($audioCodingModeLookup[$acmod]) ? $audioCodingModeLookup[$acmod] : false); } /** * @param int $cmixlev * * @return int|float|string|false */ public static function centerMixLevelLookup($cmixlev) { static $centerMixLevelLookup; if (empty($centerMixLevelLookup)) { $centerMixLevelLookup = array( 0 => pow(2, -3.0 / 6), // 0.707 (-3.0 dB) 1 => pow(2, -4.5 / 6), // 0.595 (-4.5 dB) 2 => pow(2, -6.0 / 6), // 0.500 (-6.0 dB) 3 => 'reserved' ); } return (isset($centerMixLevelLookup[$cmixlev]) ? $centerMixLevelLookup[$cmixlev] : false); } /** * @param int $surmixlev * * @return int|float|string|false */ public static function surroundMixLevelLookup($surmixlev) { static $surroundMixLevelLookup; if (empty($surroundMixLevelLookup)) { $surroundMixLevelLookup = array( 0 => pow(2, -3.0 / 6), 1 => pow(2, -6.0 / 6), 2 => 0, 3 => 'reserved' ); } return (isset($surroundMixLevelLookup[$surmixlev]) ? $surroundMixLevelLookup[$surmixlev] : false); } /** * @param int $dsurmod * * @return string|false */ public static function dolbySurroundModeLookup($dsurmod) { static $dolbySurroundModeLookup = array( 0 => 'not indicated', 1 => 'Not Dolby Surround encoded', 2 => 'Dolby Surround encoded', 3 => 'reserved' ); return (isset($dolbySurroundModeLookup[$dsurmod]) ? $dolbySurroundModeLookup[$dsurmod] : false); } /** * @param int $acmod * @param bool $lfeon * * @return array */ public static function channelsEnabledLookup($acmod, $lfeon) { $lookup = array( 'ch1'=>($acmod == 0), 'ch2'=>($acmod == 0), 'left'=>($acmod > 1), 'right'=>($acmod > 1), 'center'=>(bool) ($acmod & 0x01), 'surround_mono'=>false, 'surround_left'=>false, 'surround_right'=>false, 'lfe'=>$lfeon); switch ($acmod) { case 4: case 5: $lookup['surround_mono'] = true; break; case 6: case 7: $lookup['surround_left'] = true; $lookup['surround_right'] = true; break; } return $lookup; } /** * @param int $compre * * @return float|int */ public static function heavyCompression($compre) { // The first four bits indicate gain changes in 6.02dB increments which can be // implemented with an arithmetic shift operation. The following four bits // indicate linear gain changes, and require a 5-bit multiply. // We will represent the two 4-bit fields of compr as follows: // X0 X1 X2 X3 . Y4 Y5 Y6 Y7 // The meaning of the X values is most simply described by considering X to represent a 4-bit // signed integer with values from -8 to +7. The gain indicated by X is then (X + 1) * 6.02 dB. The // following table shows this in detail. // Meaning of 4 msb of compr // 7 +48.16 dB // 6 +42.14 dB // 5 +36.12 dB // 4 +30.10 dB // 3 +24.08 dB // 2 +18.06 dB // 1 +12.04 dB // 0 +6.02 dB // -1 0 dB // -2 -6.02 dB // -3 -12.04 dB // -4 -18.06 dB // -5 -24.08 dB // -6 -30.10 dB // -7 -36.12 dB // -8 -42.14 dB $fourbit = str_pad(decbin(($compre & 0xF0) >> 4), 4, '0', STR_PAD_LEFT); if ($fourbit[0] == '1') { $log_gain = -8 + bindec(substr($fourbit, 1)); } else { $log_gain = bindec(substr($fourbit, 1)); } $log_gain = ($log_gain + 1) * getid3_lib::RGADamplitude2dB(2); // The value of Y is a linear representation of a gain change of up to -6 dB. Y is considered to // be an unsigned fractional integer, with a leading value of 1, or: 0.1 Y4 Y5 Y6 Y7 (base 2). Y can // represent values between 0.111112 (or 31/32) and 0.100002 (or 1/2). Thus, Y can represent gain // changes from -0.28 dB to -6.02 dB. $lin_gain = (16 + ($compre & 0x0F)) / 32; // The combination of X and Y values allows compr to indicate gain changes from // 48.16 - 0.28 = +47.89 dB, to // -42.14 - 6.02 = -48.16 dB. return $log_gain - $lin_gain; } /** * @param int $roomtyp * * @return string|false */ public static function roomTypeLookup($roomtyp) { static $roomTypeLookup = array( 0 => 'not indicated', 1 => 'large room, X curve monitor', 2 => 'small room, flat monitor', 3 => 'reserved' ); return (isset($roomTypeLookup[$roomtyp]) ? $roomTypeLookup[$roomtyp] : false); } /** * @param int $frmsizecod * @param int $fscod * * @return int|false */ public static function frameSizeLookup($frmsizecod, $fscod) { // LSB is whether padding is used or not $padding = (bool) ($frmsizecod & 0x01); $framesizeid = ($frmsizecod & 0x3E) >> 1; static $frameSizeLookup = array(); if (empty($frameSizeLookup)) { $frameSizeLookup = array ( 0 => array( 128, 138, 192), // 32 kbps 1 => array( 160, 174, 240), // 40 kbps 2 => array( 192, 208, 288), // 48 kbps 3 => array( 224, 242, 336), // 56 kbps 4 => array( 256, 278, 384), // 64 kbps 5 => array( 320, 348, 480), // 80 kbps 6 => array( 384, 416, 576), // 96 kbps 7 => array( 448, 486, 672), // 112 kbps 8 => array( 512, 556, 768), // 128 kbps 9 => array( 640, 696, 960), // 160 kbps 10 => array( 768, 834, 1152), // 192 kbps 11 => array( 896, 974, 1344), // 224 kbps 12 => array(1024, 1114, 1536), // 256 kbps 13 => array(1280, 1392, 1920), // 320 kbps 14 => array(1536, 1670, 2304), // 384 kbps 15 => array(1792, 1950, 2688), // 448 kbps 16 => array(2048, 2228, 3072), // 512 kbps 17 => array(2304, 2506, 3456), // 576 kbps 18 => array(2560, 2786, 3840) // 640 kbps ); } $paddingBytes = 0; if (($fscod == 1) && $padding) { // frame lengths are padded by 1 word (16 bits) at 44100 // (fscode==1) means 44100Hz (see sampleRateCodeLookup) $paddingBytes = 2; } return (isset($frameSizeLookup[$framesizeid][$fscod]) ? $frameSizeLookup[$framesizeid][$fscod] + $paddingBytes : false); } /** * @param int $frmsizecod * * @return int|false */ public static function bitrateLookup($frmsizecod) { // LSB is whether padding is used or not $padding = (bool) ($frmsizecod & 0x01); $framesizeid = ($frmsizecod & 0x3E) >> 1; static $bitrateLookup = array( 0 => 32000, 1 => 40000, 2 => 48000, 3 => 56000, 4 => 64000, 5 => 80000, 6 => 96000, 7 => 112000, 8 => 128000, 9 => 160000, 10 => 192000, 11 => 224000, 12 => 256000, 13 => 320000, 14 => 384000, 15 => 448000, 16 => 512000, 17 => 576000, 18 => 640000, ); return (isset($bitrateLookup[$framesizeid]) ? $bitrateLookup[$framesizeid] : false); } /** * @param int $numblkscod * * @return int|false */ public static function blocksPerSyncFrame($numblkscod) { static $blocksPerSyncFrameLookup = array( 0 => 1, 1 => 2, 2 => 3, 3 => 6, ); return (isset($blocksPerSyncFrameLookup[$numblkscod]) ? $blocksPerSyncFrameLookup[$numblkscod] : false); } } module.audio.ogg.php000064400000125361152233444720010433 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio.ogg.php // // module for analyzing Ogg Vorbis, OggFLAC and Speex files // // dependencies: module.audio.flac.php // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.flac.php', __FILE__, true); class getid3_ogg extends getid3_handler { /** * @link http://xiph.org/vorbis/doc/Vorbis_I_spec.html * * @return bool */ public function Analyze() { $info = &$this->getid3->info; $info['fileformat'] = 'ogg'; // Warn about illegal tags - only vorbiscomments are allowed if (isset($info['id3v2'])) { $this->warning('Illegal ID3v2 tag present.'); } if (isset($info['id3v1'])) { $this->warning('Illegal ID3v1 tag present.'); } if (isset($info['ape'])) { $this->warning('Illegal APE tag present.'); } // Page 1 - Stream Header $this->fseek($info['avdataoffset']); $oggpageinfo = $this->ParseOggPageHeader(); $info['ogg']['pageheader'][$oggpageinfo['page_seqno']] = $oggpageinfo; if ($this->ftell() >= $this->getid3->fread_buffer_size()) { $this->error('Could not find start of Ogg page in the first '.$this->getid3->fread_buffer_size().' bytes (this might not be an Ogg-Vorbis file?)'); unset($info['fileformat']); unset($info['ogg']); return false; } $filedata = $this->fread($oggpageinfo['page_length']); $filedataoffset = 0; if (substr($filedata, 0, 4) == 'fLaC') { $info['audio']['dataformat'] = 'flac'; $info['audio']['bitrate_mode'] = 'vbr'; $info['audio']['lossless'] = true; } elseif (substr($filedata, 1, 6) == 'vorbis') { $this->ParseVorbisPageHeader($filedata, $filedataoffset, $oggpageinfo); } elseif (substr($filedata, 0, 8) == 'OpusHead') { if ($this->ParseOpusPageHeader($filedata, $filedataoffset, $oggpageinfo) === false) { return false; } } elseif (substr($filedata, 0, 8) == 'Speex ') { // http://www.speex.org/manual/node10.html $info['audio']['dataformat'] = 'speex'; $info['mime_type'] = 'audio/speex'; $info['audio']['bitrate_mode'] = 'abr'; $info['audio']['lossless'] = false; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['speex_string'] = substr($filedata, $filedataoffset, 8); // hard-coded to 'Speex ' $filedataoffset += 8; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['speex_version'] = substr($filedata, $filedataoffset, 20); $filedataoffset += 20; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['speex_version_id'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['header_size'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['rate'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['mode'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['mode_bitstream_version'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['nb_channels'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['bitrate'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['framesize'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['vbr'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['frames_per_packet'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['extra_headers'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['reserved1'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['reserved2'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['speex']['speex_version'] = trim($info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['speex_version']); $info['speex']['sample_rate'] = $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['rate']; $info['speex']['channels'] = $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['nb_channels']; $info['speex']['vbr'] = (bool) $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['vbr']; $info['speex']['band_type'] = $this->SpeexBandModeLookup($info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['mode']); $info['audio']['sample_rate'] = $info['speex']['sample_rate']; $info['audio']['channels'] = $info['speex']['channels']; if ($info['speex']['vbr']) { $info['audio']['bitrate_mode'] = 'vbr'; } } elseif (substr($filedata, 0, 7) == "\x80".'theora') { // http://www.theora.org/doc/Theora.pdf (section 6.2) $info['ogg']['pageheader']['theora']['theora_magic'] = substr($filedata, $filedataoffset, 7); // hard-coded to "\x80.'theora' $filedataoffset += 7; $info['ogg']['pageheader']['theora']['version_major'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $info['ogg']['pageheader']['theora']['version_minor'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $info['ogg']['pageheader']['theora']['version_revision'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $info['ogg']['pageheader']['theora']['frame_width_macroblocks'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 2)); $filedataoffset += 2; $info['ogg']['pageheader']['theora']['frame_height_macroblocks'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 2)); $filedataoffset += 2; $info['ogg']['pageheader']['theora']['resolution_x'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 3)); $filedataoffset += 3; $info['ogg']['pageheader']['theora']['resolution_y'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 3)); $filedataoffset += 3; $info['ogg']['pageheader']['theora']['picture_offset_x'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $info['ogg']['pageheader']['theora']['picture_offset_y'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $info['ogg']['pageheader']['theora']['frame_rate_numerator'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader']['theora']['frame_rate_denominator'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['pageheader']['theora']['pixel_aspect_numerator'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 3)); $filedataoffset += 3; $info['ogg']['pageheader']['theora']['pixel_aspect_denominator'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 3)); $filedataoffset += 3; $info['ogg']['pageheader']['theora']['color_space_id'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $info['ogg']['pageheader']['theora']['nominal_bitrate'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 3)); $filedataoffset += 3; $info['ogg']['pageheader']['theora']['flags'] = getid3_lib::BigEndian2Int(substr($filedata, $filedataoffset, 2)); $filedataoffset += 2; $info['ogg']['pageheader']['theora']['quality'] = ($info['ogg']['pageheader']['theora']['flags'] & 0xFC00) >> 10; $info['ogg']['pageheader']['theora']['kfg_shift'] = ($info['ogg']['pageheader']['theora']['flags'] & 0x03E0) >> 5; $info['ogg']['pageheader']['theora']['pixel_format_id'] = ($info['ogg']['pageheader']['theora']['flags'] & 0x0018) >> 3; $info['ogg']['pageheader']['theora']['reserved'] = ($info['ogg']['pageheader']['theora']['flags'] & 0x0007) >> 0; // should be 0 $info['ogg']['pageheader']['theora']['color_space'] = self::TheoraColorSpace($info['ogg']['pageheader']['theora']['color_space_id']); $info['ogg']['pageheader']['theora']['pixel_format'] = self::TheoraPixelFormat($info['ogg']['pageheader']['theora']['pixel_format_id']); $info['video']['dataformat'] = 'theora'; $info['mime_type'] = 'video/ogg'; //$info['audio']['bitrate_mode'] = 'abr'; //$info['audio']['lossless'] = false; $info['video']['resolution_x'] = $info['ogg']['pageheader']['theora']['resolution_x']; $info['video']['resolution_y'] = $info['ogg']['pageheader']['theora']['resolution_y']; if ($info['ogg']['pageheader']['theora']['frame_rate_denominator'] > 0) { $info['video']['frame_rate'] = (float) $info['ogg']['pageheader']['theora']['frame_rate_numerator'] / $info['ogg']['pageheader']['theora']['frame_rate_denominator']; } if ($info['ogg']['pageheader']['theora']['pixel_aspect_denominator'] > 0) { $info['video']['pixel_aspect_ratio'] = (float) $info['ogg']['pageheader']['theora']['pixel_aspect_numerator'] / $info['ogg']['pageheader']['theora']['pixel_aspect_denominator']; } $this->warning('Ogg Theora (v3) not fully supported in this version of getID3 ['.$this->getid3->version().'] -- bitrate, playtime and all audio data are currently unavailable'); } elseif (substr($filedata, 0, 8) == "fishead\x00") { // Ogg Skeleton version 3.0 Format Specification // http://xiph.org/ogg/doc/skeleton.html $filedataoffset += 8; $info['ogg']['skeleton']['fishead']['raw']['version_major'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 2)); $filedataoffset += 2; $info['ogg']['skeleton']['fishead']['raw']['version_minor'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 2)); $filedataoffset += 2; $info['ogg']['skeleton']['fishead']['raw']['presentationtime_numerator'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 8)); $filedataoffset += 8; $info['ogg']['skeleton']['fishead']['raw']['presentationtime_denominator'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 8)); $filedataoffset += 8; $info['ogg']['skeleton']['fishead']['raw']['basetime_numerator'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 8)); $filedataoffset += 8; $info['ogg']['skeleton']['fishead']['raw']['basetime_denominator'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 8)); $filedataoffset += 8; $info['ogg']['skeleton']['fishead']['raw']['utc'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 20)); $filedataoffset += 20; $info['ogg']['skeleton']['fishead']['version'] = $info['ogg']['skeleton']['fishead']['raw']['version_major'].'.'.$info['ogg']['skeleton']['fishead']['raw']['version_minor']; $info['ogg']['skeleton']['fishead']['presentationtime'] = getid3_lib::SafeDiv($info['ogg']['skeleton']['fishead']['raw']['presentationtime_numerator'], $info['ogg']['skeleton']['fishead']['raw']['presentationtime_denominator']); $info['ogg']['skeleton']['fishead']['basetime'] = getid3_lib::SafeDiv($info['ogg']['skeleton']['fishead']['raw']['basetime_numerator'], $info['ogg']['skeleton']['fishead']['raw']['basetime_denominator']); $info['ogg']['skeleton']['fishead']['utc'] = $info['ogg']['skeleton']['fishead']['raw']['utc']; $counter = 0; do { $oggpageinfo = $this->ParseOggPageHeader(); $info['ogg']['pageheader'][$oggpageinfo['page_seqno'].'.'.$counter++] = $oggpageinfo; $filedata = $this->fread($oggpageinfo['page_length']); $this->fseek($oggpageinfo['page_end_offset']); if (substr($filedata, 0, 8) == "fisbone\x00") { $filedataoffset = 8; $info['ogg']['skeleton']['fisbone']['raw']['message_header_offset'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['skeleton']['fisbone']['raw']['serial_number'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['skeleton']['fisbone']['raw']['number_header_packets'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['skeleton']['fisbone']['raw']['granulerate_numerator'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 8)); $filedataoffset += 8; $info['ogg']['skeleton']['fisbone']['raw']['granulerate_denominator'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 8)); $filedataoffset += 8; $info['ogg']['skeleton']['fisbone']['raw']['basegranule'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 8)); $filedataoffset += 8; $info['ogg']['skeleton']['fisbone']['raw']['preroll'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['skeleton']['fisbone']['raw']['granuleshift'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $info['ogg']['skeleton']['fisbone']['raw']['padding'] = substr($filedata, $filedataoffset, 3); $filedataoffset += 3; } elseif (substr($filedata, 1, 6) == 'theora') { $info['video']['dataformat'] = 'theora1'; $this->error('Ogg Theora (v1) not correctly handled in this version of getID3 ['.$this->getid3->version().']'); //break; } elseif (substr($filedata, 1, 6) == 'vorbis') { $this->ParseVorbisPageHeader($filedata, $filedataoffset, $oggpageinfo); } else { $this->error('unexpected'); //break; } //} while ($oggpageinfo['page_seqno'] == 0); } while (($oggpageinfo['page_seqno'] == 0) && (substr($filedata, 0, 8) != "fisbone\x00")); $this->fseek($oggpageinfo['page_start_offset']); $this->error('Ogg Skeleton not correctly handled in this version of getID3 ['.$this->getid3->version().']'); //return false; } elseif (substr($filedata, 0, 5) == "\x7F".'FLAC') { // https://xiph.org/flac/ogg_mapping.html $info['audio']['dataformat'] = 'flac'; $info['audio']['bitrate_mode'] = 'vbr'; $info['audio']['lossless'] = true; $info['ogg']['flac']['header']['version_major'] = ord(substr($filedata, 5, 1)); $info['ogg']['flac']['header']['version_minor'] = ord(substr($filedata, 6, 1)); $info['ogg']['flac']['header']['header_packets'] = getid3_lib::BigEndian2Int(substr($filedata, 7, 2)) + 1; // "A two-byte, big-endian binary number signifying the number of header (non-audio) packets, not including this one. This number may be zero (0x0000) to signify 'unknown' but be aware that some decoders may not be able to handle such streams." $info['ogg']['flac']['header']['magic'] = substr($filedata, 9, 4); if ($info['ogg']['flac']['header']['magic'] != 'fLaC') { $this->error('Ogg-FLAC expecting "fLaC", found "'.$info['ogg']['flac']['header']['magic'].'" ('.trim(getid3_lib::PrintHexBytes($info['ogg']['flac']['header']['magic'])).')'); return false; } $info['ogg']['flac']['header']['STREAMINFO_bytes'] = getid3_lib::BigEndian2Int(substr($filedata, 13, 4)); $info['flac']['STREAMINFO'] = getid3_flac::parseSTREAMINFOdata(substr($filedata, 17, 34)); if (!empty($info['flac']['STREAMINFO']['sample_rate'])) { $info['audio']['bitrate_mode'] = 'vbr'; $info['audio']['sample_rate'] = $info['flac']['STREAMINFO']['sample_rate']; $info['audio']['channels'] = $info['flac']['STREAMINFO']['channels']; $info['audio']['bits_per_sample'] = $info['flac']['STREAMINFO']['bits_per_sample']; $info['playtime_seconds'] = getid3_lib::SafeDiv($info['flac']['STREAMINFO']['samples_stream'], $info['flac']['STREAMINFO']['sample_rate']); } } else { $this->error('Expecting one of "vorbis", "Speex", "OpusHead", "vorbis", "fishhead", "theora", "fLaC" identifier strings, found "'.substr($filedata, 0, 8).'"'); unset($info['ogg']); unset($info['mime_type']); return false; } // Page 2 - Comment Header $oggpageinfo = $this->ParseOggPageHeader(); $info['ogg']['pageheader'][$oggpageinfo['page_seqno']] = $oggpageinfo; switch ($info['audio']['dataformat']) { case 'vorbis': $filedata = $this->fread($info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['page_length']); $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['packet_type'] = getid3_lib::LittleEndian2Int(substr($filedata, 0, 1)); $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['stream_type'] = substr($filedata, 1, 6); // hard-coded to 'vorbis' $this->ParseVorbisComments(); break; case 'flac': $flac = new getid3_flac($this->getid3); if (!$flac->parseMETAdata()) { $this->error('Failed to parse FLAC headers'); return false; } unset($flac); break; case 'speex': $this->fseek($info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['page_length'], SEEK_CUR); $this->ParseVorbisComments(); break; case 'opus': $filedata = $this->fread($info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['page_length']); $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['stream_type'] = substr($filedata, 0, 8); // hard-coded to 'OpusTags' if(substr($filedata, 0, 8) != 'OpusTags') { $this->error('Expected "OpusTags" as header but got "'.substr($filedata, 0, 8).'"'); return false; } $this->ParseVorbisComments(); break; } // Last Page - Number of Samples if (!getid3_lib::intValueSupported($info['avdataend'])) { $this->warning('Unable to parse Ogg end chunk file (PHP does not support file operations beyond '.round(PHP_INT_MAX / 1073741824).'GB)'); } else { $this->fseek(max($info['avdataend'] - $this->getid3->fread_buffer_size(), 0)); $LastChunkOfOgg = strrev($this->fread($this->getid3->fread_buffer_size())); if ($LastOggSpostion = strpos($LastChunkOfOgg, 'SggO')) { if (substr($LastChunkOfOgg, 13, 8) === "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF") { // https://github.com/JamesHeinrich/getID3/issues/450 // "Sometimes, Opus encoders (WhatsApp voice registrations and others) add a special last header with a granule duration of 0xFFFFFFFFFFFFFF. // This value indicates "this is the end," but must be ignored; otherwise, it makes calculations wrong." $LastOggSpostion = strpos($LastChunkOfOgg, 'SggO', $LastOggSpostion + 1); } $this->fseek($info['avdataend'] - ($LastOggSpostion + strlen('SggO'))); $info['avdataend'] = $this->ftell(); $info['ogg']['pageheader']['eos'] = $this->ParseOggPageHeader(); $info['ogg']['samples'] = $info['ogg']['pageheader']['eos']['pcm_abs_position']; if ($info['ogg']['samples'] == 0) { $this->error('Corrupt Ogg file: eos.number of samples == zero'); return false; } if (!empty($info['audio']['sample_rate'])) { $info['ogg']['bitrate_average'] = (($info['avdataend'] - $info['avdataoffset']) * 8) * $info['audio']['sample_rate'] / $info['ogg']['samples']; } } } if (!empty($info['ogg']['bitrate_average'])) { $info['audio']['bitrate'] = $info['ogg']['bitrate_average']; } elseif (!empty($info['ogg']['bitrate_nominal'])) { $info['audio']['bitrate'] = $info['ogg']['bitrate_nominal']; } elseif (!empty($info['ogg']['bitrate_min']) && !empty($info['ogg']['bitrate_max'])) { $info['audio']['bitrate'] = ($info['ogg']['bitrate_min'] + $info['ogg']['bitrate_max']) / 2; } if (isset($info['audio']['bitrate']) && !isset($info['playtime_seconds'])) { if ($info['audio']['bitrate'] == 0) { $this->error('Corrupt Ogg file: bitrate_audio == zero'); return false; } $info['playtime_seconds'] = (float) ((($info['avdataend'] - $info['avdataoffset']) * 8) / $info['audio']['bitrate']); } if (isset($info['ogg']['vendor'])) { $info['audio']['encoder'] = preg_replace('/^Encoded with /', '', $info['ogg']['vendor']); // Vorbis only if ($info['audio']['dataformat'] == 'vorbis') { // Vorbis 1.0 starts with Xiph.Org if (preg_match('/^Xiph.Org/', $info['audio']['encoder'])) { if ($info['audio']['bitrate_mode'] == 'abr') { // Set -b 128 on abr files $info['audio']['encoder_options'] = '-b '.round($info['ogg']['bitrate_nominal'] / 1000); } elseif (($info['audio']['bitrate_mode'] == 'vbr') && ($info['audio']['channels'] == 2) && ($info['audio']['sample_rate'] >= 44100) && ($info['audio']['sample_rate'] <= 48000)) { // Set -q N on vbr files $info['audio']['encoder_options'] = '-q '.$this->get_quality_from_nominal_bitrate($info['ogg']['bitrate_nominal']); } } if (empty($info['audio']['encoder_options']) && !empty($info['ogg']['bitrate_nominal'])) { $info['audio']['encoder_options'] = 'Nominal bitrate: '.intval(round($info['ogg']['bitrate_nominal'] / 1000)).'kbps'; } } } return true; } /** * @param string $filedata * @param int $filedataoffset * @param array $oggpageinfo * * @return bool */ public function ParseVorbisPageHeader(&$filedata, &$filedataoffset, &$oggpageinfo) { $info = &$this->getid3->info; $info['audio']['dataformat'] = 'vorbis'; $info['audio']['lossless'] = false; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['packet_type'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['stream_type'] = substr($filedata, $filedataoffset, 6); // hard-coded to 'vorbis' $filedataoffset += 6; $info['ogg']['bitstreamversion'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['numberofchannels'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $info['audio']['channels'] = $info['ogg']['numberofchannels']; $info['ogg']['samplerate'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; if ($info['ogg']['samplerate'] == 0) { $this->error('Corrupt Ogg file: sample rate == zero'); return false; } $info['audio']['sample_rate'] = $info['ogg']['samplerate']; $info['ogg']['samples'] = 0; // filled in later $info['ogg']['bitrate_average'] = 0; // filled in later $info['ogg']['bitrate_max'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['bitrate_nominal'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['bitrate_min'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $info['ogg']['blocksize_small'] = pow(2, getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)) & 0x0F); $info['ogg']['blocksize_large'] = pow(2, (getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)) & 0xF0) >> 4); $info['ogg']['stop_bit'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); // must be 1, marks end of packet $info['audio']['bitrate_mode'] = 'vbr'; // overridden if actually abr if ($info['ogg']['bitrate_max'] == 0xFFFFFFFF) { unset($info['ogg']['bitrate_max']); $info['audio']['bitrate_mode'] = 'abr'; } if ($info['ogg']['bitrate_nominal'] == 0xFFFFFFFF) { unset($info['ogg']['bitrate_nominal']); } if ($info['ogg']['bitrate_min'] == 0xFFFFFFFF) { unset($info['ogg']['bitrate_min']); $info['audio']['bitrate_mode'] = 'abr'; } return true; } /** * @link http://tools.ietf.org/html/draft-ietf-codec-oggopus-03 * * @param string $filedata * @param int $filedataoffset * @param array $oggpageinfo * * @return bool */ public function ParseOpusPageHeader(&$filedata, &$filedataoffset, &$oggpageinfo) { $info = &$this->getid3->info; $info['audio']['dataformat'] = 'opus'; $info['mime_type'] = 'audio/ogg; codecs=opus'; /** @todo find a usable way to detect abr (vbr that is padded to be abr) */ $info['audio']['bitrate_mode'] = 'vbr'; $info['audio']['lossless'] = false; $info['ogg']['pageheader']['opus']['opus_magic'] = substr($filedata, $filedataoffset, 8); // hard-coded to 'OpusHead' $filedataoffset += 8; $info['ogg']['pageheader']['opus']['version'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; if ($info['ogg']['pageheader']['opus']['version'] < 1 || $info['ogg']['pageheader']['opus']['version'] > 15) { $this->error('Unknown opus version number (only accepting 1-15)'); return false; } $info['ogg']['pageheader']['opus']['out_channel_count'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; if ($info['ogg']['pageheader']['opus']['out_channel_count'] == 0) { $this->error('Invalid channel count in opus header (must not be zero)'); return false; } $info['ogg']['pageheader']['opus']['pre_skip'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 2)); $filedataoffset += 2; $info['ogg']['pageheader']['opus']['input_sample_rate'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; //$info['ogg']['pageheader']['opus']['output_gain'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 2)); //$filedataoffset += 2; //$info['ogg']['pageheader']['opus']['channel_mapping_family'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); //$filedataoffset += 1; $info['opus']['opus_version'] = $info['ogg']['pageheader']['opus']['version']; $info['opus']['sample_rate_input'] = $info['ogg']['pageheader']['opus']['input_sample_rate']; $info['opus']['out_channel_count'] = $info['ogg']['pageheader']['opus']['out_channel_count']; $info['audio']['channels'] = $info['opus']['out_channel_count']; $info['audio']['sample_rate_input'] = $info['opus']['sample_rate_input']; $info['audio']['sample_rate'] = 48000; // "All Opus audio is coded at 48 kHz, and should also be decoded at 48 kHz for playback (unless the target hardware does not support this sampling rate). However, this field may be used to resample the audio back to the original sampling rate, for example, when saving the output to a file." -- https://mf4.xiph.org/jenkins/view/opus/job/opusfile-unix/ws/doc/html/structOpusHead.html return true; } /** * @return array|false */ public function ParseOggPageHeader() { // http://xiph.org/ogg/vorbis/doc/framing.html $oggheader = array(); $oggheader['page_start_offset'] = $this->ftell(); // where we started from in the file $filedata = $this->fread($this->getid3->fread_buffer_size()); $filedataoffset = 0; while (substr($filedata, $filedataoffset++, 4) != 'OggS') { if (($this->ftell() - $oggheader['page_start_offset']) >= $this->getid3->fread_buffer_size()) { // should be found before here return false; } if (($filedataoffset + 28) > strlen($filedata)) { if ($this->feof() || (($filedata .= $this->fread($this->getid3->fread_buffer_size())) === '')) { // get some more data, unless eof, in which case fail return false; } } } $filedataoffset += strlen('OggS') - 1; // page, delimited by 'OggS' $oggheader['stream_structver'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $oggheader['flags_raw'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $oggheader['flags']['fresh'] = (bool) ($oggheader['flags_raw'] & 0x01); // fresh packet $oggheader['flags']['bos'] = (bool) ($oggheader['flags_raw'] & 0x02); // first page of logical bitstream (bos) $oggheader['flags']['eos'] = (bool) ($oggheader['flags_raw'] & 0x04); // last page of logical bitstream (eos) $oggheader['pcm_abs_position'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 8)); $filedataoffset += 8; $oggheader['stream_serialno'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $oggheader['page_seqno'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $oggheader['page_checksum'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 4)); $filedataoffset += 4; $oggheader['page_segments'] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $oggheader['page_length'] = 0; for ($i = 0; $i < $oggheader['page_segments']; $i++) { $oggheader['segment_table'][$i] = getid3_lib::LittleEndian2Int(substr($filedata, $filedataoffset, 1)); $filedataoffset += 1; $oggheader['page_length'] += $oggheader['segment_table'][$i]; } $oggheader['header_end_offset'] = $oggheader['page_start_offset'] + $filedataoffset; $oggheader['page_end_offset'] = $oggheader['header_end_offset'] + $oggheader['page_length']; $this->fseek($oggheader['header_end_offset']); return $oggheader; } /** * @link http://xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-810005 * * @return bool */ public function ParseVorbisComments() { $info = &$this->getid3->info; $OriginalOffset = $this->ftell(); $commentdata = null; $commentdataoffset = 0; $VorbisCommentPage = 1; $CommentStartOffset = 0; switch ($info['audio']['dataformat']) { case 'vorbis': case 'speex': case 'opus': $CommentStartOffset = $info['ogg']['pageheader'][$VorbisCommentPage]['page_start_offset']; // Second Ogg page, after header block $this->fseek($CommentStartOffset); $commentdataoffset = 27 + $info['ogg']['pageheader'][$VorbisCommentPage]['page_segments']; $commentdata = $this->fread(self::OggPageSegmentLength($info['ogg']['pageheader'][$VorbisCommentPage], 1) + $commentdataoffset); if ($info['audio']['dataformat'] == 'vorbis') { $commentdataoffset += (strlen('vorbis') + 1); } else if ($info['audio']['dataformat'] == 'opus') { $commentdataoffset += strlen('OpusTags'); } break; case 'flac': $CommentStartOffset = $info['flac']['VORBIS_COMMENT']['raw']['offset'] + 4; $this->fseek($CommentStartOffset); $commentdata = $this->fread($info['flac']['VORBIS_COMMENT']['raw']['block_length']); break; default: return false; } $VendorSize = getid3_lib::LittleEndian2Int(substr($commentdata, $commentdataoffset, 4)); $commentdataoffset += 4; $info['ogg']['vendor'] = substr($commentdata, $commentdataoffset, $VendorSize); $commentdataoffset += $VendorSize; $CommentsCount = getid3_lib::LittleEndian2Int(substr($commentdata, $commentdataoffset, 4)); $commentdataoffset += 4; $info['avdataoffset'] = $CommentStartOffset + $commentdataoffset; $basicfields = array('TITLE', 'ARTIST', 'ALBUM', 'TRACKNUMBER', 'GENRE', 'DATE', 'DESCRIPTION', 'COMMENT'); $ThisFileInfo_ogg_comments_raw = &$info['ogg']['comments_raw']; for ($i = 0; $i < $CommentsCount; $i++) { if ($i >= 10000) { // https://github.com/owncloud/music/issues/212#issuecomment-43082336 $this->warning('Unexpectedly large number ('.$CommentsCount.') of Ogg comments - breaking after reading '.$i.' comments'); break; } $ThisFileInfo_ogg_comments_raw[$i]['dataoffset'] = $CommentStartOffset + $commentdataoffset; if ($this->ftell() < ($ThisFileInfo_ogg_comments_raw[$i]['dataoffset'] + 4)) { if ($oggpageinfo = $this->ParseOggPageHeader()) { $info['ogg']['pageheader'][$oggpageinfo['page_seqno']] = $oggpageinfo; $VorbisCommentPage++; // First, save what we haven't read yet $AsYetUnusedData = substr($commentdata, $commentdataoffset); // Then take that data off the end $commentdata = substr($commentdata, 0, $commentdataoffset); // Add [headerlength] bytes of dummy data for the Ogg Page Header, just to keep absolute offsets correct $commentdata .= str_repeat("\x00", 27 + $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['page_segments']); $commentdataoffset += (27 + $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['page_segments']); // Finally, stick the unused data back on the end $commentdata .= $AsYetUnusedData; //$commentdata .= $this->fread($info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['page_length']); $commentdata .= $this->fread($this->OggPageSegmentLength($info['ogg']['pageheader'][$VorbisCommentPage], 1)); } } $ThisFileInfo_ogg_comments_raw[$i]['size'] = getid3_lib::LittleEndian2Int(substr($commentdata, $commentdataoffset, 4)); // replace avdataoffset with position just after the last vorbiscomment $info['avdataoffset'] = $ThisFileInfo_ogg_comments_raw[$i]['dataoffset'] + $ThisFileInfo_ogg_comments_raw[$i]['size'] + 4; $commentdataoffset += 4; while ((strlen($commentdata) - $commentdataoffset) < $ThisFileInfo_ogg_comments_raw[$i]['size']) { if (($ThisFileInfo_ogg_comments_raw[$i]['size'] > $info['avdataend']) || ($ThisFileInfo_ogg_comments_raw[$i]['size'] < 0)) { $this->warning('Invalid Ogg comment size (comment #'.$i.', claims to be '.number_format($ThisFileInfo_ogg_comments_raw[$i]['size']).' bytes) - aborting reading comments'); break 2; } $VorbisCommentPage++; if ($oggpageinfo = $this->ParseOggPageHeader()) { $info['ogg']['pageheader'][$oggpageinfo['page_seqno']] = $oggpageinfo; // First, save what we haven't read yet $AsYetUnusedData = substr($commentdata, $commentdataoffset); // Then take that data off the end $commentdata = substr($commentdata, 0, $commentdataoffset); // Add [headerlength] bytes of dummy data for the Ogg Page Header, just to keep absolute offsets correct $commentdata .= str_repeat("\x00", 27 + $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['page_segments']); $commentdataoffset += (27 + $info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['page_segments']); // Finally, stick the unused data back on the end $commentdata .= $AsYetUnusedData; //$commentdata .= $this->fread($info['ogg']['pageheader'][$oggpageinfo['page_seqno']]['page_length']); if (!isset($info['ogg']['pageheader'][$VorbisCommentPage])) { $this->warning('undefined Vorbis Comment page "'.$VorbisCommentPage.'" at offset '.$this->ftell()); break; } $readlength = self::OggPageSegmentLength($info['ogg']['pageheader'][$VorbisCommentPage], 1); if ($readlength <= 0) { $this->warning('invalid length Vorbis Comment page "'.$VorbisCommentPage.'" at offset '.$this->ftell()); break; } $commentdata .= $this->fread($readlength); //$filebaseoffset += $oggpageinfo['header_end_offset'] - $oggpageinfo['page_start_offset']; } else { $this->warning('failed to ParseOggPageHeader() at offset '.$this->ftell()); break; } } $ThisFileInfo_ogg_comments_raw[$i]['offset'] = $commentdataoffset; $commentstring = substr($commentdata, $commentdataoffset, $ThisFileInfo_ogg_comments_raw[$i]['size']); $commentdataoffset += $ThisFileInfo_ogg_comments_raw[$i]['size']; if (!$commentstring) { // no comment? $this->warning('Blank Ogg comment ['.$i.']'); } elseif (strstr($commentstring, '=')) { $commentexploded = explode('=', $commentstring, 2); $ThisFileInfo_ogg_comments_raw[$i]['key'] = strtoupper($commentexploded[0]); $ThisFileInfo_ogg_comments_raw[$i]['value'] = (isset($commentexploded[1]) ? $commentexploded[1] : ''); if ($ThisFileInfo_ogg_comments_raw[$i]['key'] == 'METADATA_BLOCK_PICTURE') { // http://wiki.xiph.org/VorbisComment#METADATA_BLOCK_PICTURE // The unencoded format is that of the FLAC picture block. The fields are stored in big endian order as in FLAC, picture data is stored according to the relevant standard. // http://flac.sourceforge.net/format.html#metadata_block_picture $flac = new getid3_flac($this->getid3); $flac->setStringMode(base64_decode($ThisFileInfo_ogg_comments_raw[$i]['value'])); $flac->parsePICTURE(); $info['ogg']['comments']['picture'][] = $flac->getid3->info['flac']['PICTURE'][0]; unset($flac); } elseif ($ThisFileInfo_ogg_comments_raw[$i]['key'] == 'COVERART') { $data = base64_decode($ThisFileInfo_ogg_comments_raw[$i]['value']); $this->notice('Found deprecated COVERART tag, it should be replaced in honor of METADATA_BLOCK_PICTURE structure'); /** @todo use 'coverartmime' where available */ $imageinfo = getid3_lib::GetDataImageSize($data); if ($imageinfo === false || !isset($imageinfo['mime'])) { $this->warning('COVERART vorbiscomment tag contains invalid image'); continue; } $ogg = new self($this->getid3); $ogg->setStringMode($data); $info['ogg']['comments']['picture'][] = array( 'image_mime' => $imageinfo['mime'], 'datalength' => strlen($data), 'picturetype' => 'cover art', 'image_height' => $imageinfo['height'], 'image_width' => $imageinfo['width'], 'data' => $ogg->saveAttachment('coverart', 0, strlen($data), $imageinfo['mime']), ); unset($ogg); } else { $info['ogg']['comments'][strtolower($ThisFileInfo_ogg_comments_raw[$i]['key'])][] = $ThisFileInfo_ogg_comments_raw[$i]['value']; } } else { $this->warning('[known problem with CDex >= v1.40, < v1.50b7] Invalid Ogg comment name/value pair ['.$i.']: '.$commentstring); } unset($ThisFileInfo_ogg_comments_raw[$i]); } unset($ThisFileInfo_ogg_comments_raw); // Replay Gain Adjustment // http://privatewww.essex.ac.uk/~djmrob/replaygain/ if (isset($info['ogg']['comments']) && is_array($info['ogg']['comments'])) { foreach ($info['ogg']['comments'] as $index => $commentvalue) { switch ($index) { case 'rg_audiophile': case 'replaygain_album_gain': $info['replay_gain']['album']['adjustment'] = (float) $commentvalue[0]; unset($info['ogg']['comments'][$index]); break; case 'rg_radio': case 'replaygain_track_gain': $info['replay_gain']['track']['adjustment'] = (float) $commentvalue[0]; unset($info['ogg']['comments'][$index]); break; case 'replaygain_album_peak': $info['replay_gain']['album']['peak'] = (float) $commentvalue[0]; unset($info['ogg']['comments'][$index]); break; case 'rg_peak': case 'replaygain_track_peak': $info['replay_gain']['track']['peak'] = (float) $commentvalue[0]; unset($info['ogg']['comments'][$index]); break; case 'replaygain_reference_loudness': $info['replay_gain']['reference_volume'] = (float) $commentvalue[0]; unset($info['ogg']['comments'][$index]); break; default: // do nothing break; } } } $this->fseek($OriginalOffset); return true; } /** * @param int $mode * * @return string|null */ public static function SpeexBandModeLookup($mode) { static $SpeexBandModeLookup = array(); if (empty($SpeexBandModeLookup)) { $SpeexBandModeLookup[0] = 'narrow'; $SpeexBandModeLookup[1] = 'wide'; $SpeexBandModeLookup[2] = 'ultra-wide'; } return (isset($SpeexBandModeLookup[$mode]) ? $SpeexBandModeLookup[$mode] : null); } /** * @param array $OggInfoArray * @param int $SegmentNumber * * @return int */ public static function OggPageSegmentLength($OggInfoArray, $SegmentNumber=1) { $segmentlength = 0; for ($i = 0; $i < $SegmentNumber; $i++) { $segmentlength = 0; foreach ($OggInfoArray['segment_table'] as $key => $value) { $segmentlength += $value; if ($value < 255) { break; } } } return $segmentlength; } /** * @param int $nominal_bitrate * * @return float */ public static function get_quality_from_nominal_bitrate($nominal_bitrate) { // decrease precision $nominal_bitrate = $nominal_bitrate / 1000; if ($nominal_bitrate < 128) { // q-1 to q4 $qval = ($nominal_bitrate - 64) / 16; } elseif ($nominal_bitrate < 256) { // q4 to q8 $qval = $nominal_bitrate / 32; } elseif ($nominal_bitrate < 320) { // q8 to q9 $qval = ($nominal_bitrate + 256) / 64; } else { // q9 to q10 $qval = ($nominal_bitrate + 1300) / 180; } //return $qval; // 5.031324 //return intval($qval); // 5 return round($qval, 1); // 5 or 4.9 } /** * @param int $colorspace_id * * @return string|null */ public static function TheoraColorSpace($colorspace_id) { // http://www.theora.org/doc/Theora.pdf (table 6.3) static $TheoraColorSpaceLookup = array(); if (empty($TheoraColorSpaceLookup)) { $TheoraColorSpaceLookup[0] = 'Undefined'; $TheoraColorSpaceLookup[1] = 'Rec. 470M'; $TheoraColorSpaceLookup[2] = 'Rec. 470BG'; $TheoraColorSpaceLookup[3] = 'Reserved'; } return (isset($TheoraColorSpaceLookup[$colorspace_id]) ? $TheoraColorSpaceLookup[$colorspace_id] : null); } /** * @param int $pixelformat_id * * @return string|null */ public static function TheoraPixelFormat($pixelformat_id) { // http://www.theora.org/doc/Theora.pdf (table 6.4) static $TheoraPixelFormatLookup = array(); if (empty($TheoraPixelFormatLookup)) { $TheoraPixelFormatLookup[0] = '4:2:0'; $TheoraPixelFormatLookup[1] = 'Reserved'; $TheoraPixelFormatLookup[2] = '4:2:2'; $TheoraPixelFormatLookup[3] = '4:4:4'; } return (isset($TheoraPixelFormatLookup[$pixelformat_id]) ? $TheoraPixelFormatLookup[$pixelformat_id] : null); } } module.tag.id3v1.php000064400000035512152233444720010255 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.tag.id3v1.php // // module for analyzing ID3v1 tags // // dependencies: NONE // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } class getid3_id3v1 extends getid3_handler { /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; if (!getid3_lib::intValueSupported($info['filesize'])) { $this->warning('Unable to check for ID3v1 because file is larger than '.round(PHP_INT_MAX / 1073741824).'GB'); return false; } elseif ($info['filesize'] < 128) { $this->warning('Unable to check for ID3v1 because file is too small'); return false; } if($info['filesize'] < 256) { $this->fseek(-128, SEEK_END); $preid3v1 = ''; $id3v1tag = $this->fread(128); } else { $this->fseek(-256, SEEK_END); $preid3v1 = $this->fread(128); $id3v1tag = $this->fread(128); } if (substr($id3v1tag, 0, 3) == 'TAG') { $info['avdataend'] = $info['filesize'] - 128; $ParsedID3v1 = array(); $ParsedID3v1['title'] = $this->cutfield(substr($id3v1tag, 3, 30)); $ParsedID3v1['artist'] = $this->cutfield(substr($id3v1tag, 33, 30)); $ParsedID3v1['album'] = $this->cutfield(substr($id3v1tag, 63, 30)); $ParsedID3v1['year'] = $this->cutfield(substr($id3v1tag, 93, 4)); $ParsedID3v1['comment'] = substr($id3v1tag, 97, 30); // can't remove nulls yet, track detection depends on them $ParsedID3v1['genreid'] = ord(substr($id3v1tag, 127, 1)); // If second-last byte of comment field is null and last byte of comment field is non-null // then this is ID3v1.1 and the comment field is 28 bytes long and the 30th byte is the track number if (($id3v1tag[125] === "\x00") && ($id3v1tag[126] !== "\x00")) { $ParsedID3v1['track_number'] = ord(substr($ParsedID3v1['comment'], 29, 1)); $ParsedID3v1['comment'] = substr($ParsedID3v1['comment'], 0, 28); } $ParsedID3v1['comment'] = $this->cutfield($ParsedID3v1['comment']); $ParsedID3v1['genre'] = $this->LookupGenreName($ParsedID3v1['genreid']); if (!empty($ParsedID3v1['genre'])) { unset($ParsedID3v1['genreid']); } if (empty($ParsedID3v1['genre']) || ($ParsedID3v1['genre'] == 'Unknown')) { unset($ParsedID3v1['genre']); } foreach ($ParsedID3v1 as $key => $value) { $ParsedID3v1['comments'][$key][0] = $value; } $ID3v1encoding = $this->getid3->encoding_id3v1; if ($this->getid3->encoding_id3v1_autodetect) { // ID3v1 encoding detection hack START // ID3v1 is defined as always using ISO-8859-1 encoding, but it is not uncommon to find files tagged with ID3v1 using Windows-1251 or other character sets // Since ID3v1 has no concept of character sets there is no certain way to know we have the correct non-ISO-8859-1 character set, but we can guess foreach ($ParsedID3v1['comments'] as $tag_key => $valuearray) { foreach ($valuearray as $key => $value) { if (preg_match('#^[\\x00-\\x40\\x80-\\xFF]+$#', $value) && !ctype_digit((string) $value)) { // check for strings with only characters above chr(128) and punctuation/numbers, but not just numeric strings (e.g. track numbers or years) foreach (array('Windows-1251', 'KOI8-R') as $id3v1_bad_encoding) { if (function_exists('mb_convert_encoding') && @mb_convert_encoding($value, $id3v1_bad_encoding, $id3v1_bad_encoding) === $value) { $ID3v1encoding = $id3v1_bad_encoding; $this->warning('ID3v1 detected as '.$id3v1_bad_encoding.' text encoding in '.$tag_key); break 3; } elseif (function_exists('iconv') && @iconv($id3v1_bad_encoding, $id3v1_bad_encoding, $value) === $value) { $ID3v1encoding = $id3v1_bad_encoding; $this->warning('ID3v1 detected as '.$id3v1_bad_encoding.' text encoding in '.$tag_key); break 3; } } } } } // ID3v1 encoding detection hack END } // ID3v1 data is supposed to be padded with NULL characters, but some taggers pad with spaces $GoodFormatID3v1tag = $this->GenerateID3v1Tag( $ParsedID3v1['title'], $ParsedID3v1['artist'], $ParsedID3v1['album'], $ParsedID3v1['year'], (isset($ParsedID3v1['genre']) ? $this->LookupGenreID($ParsedID3v1['genre']) : false), $ParsedID3v1['comment'], (!empty($ParsedID3v1['track_number']) ? $ParsedID3v1['track_number'] : '')); $ParsedID3v1['padding_valid'] = true; if ($id3v1tag !== $GoodFormatID3v1tag) { $ParsedID3v1['padding_valid'] = false; $this->warning('Some ID3v1 fields do not use NULL characters for padding'); } $ParsedID3v1['tag_offset_end'] = $info['filesize']; $ParsedID3v1['tag_offset_start'] = $ParsedID3v1['tag_offset_end'] - 128; $info['id3v1'] = $ParsedID3v1; $info['id3v1']['encoding'] = $ID3v1encoding; } if (substr($preid3v1, 0, 3) == 'TAG') { // The way iTunes handles tags is, well, brain-damaged. // It completely ignores v1 if ID3v2 is present. // This goes as far as adding a new v1 tag *even if there already is one* // A suspected double-ID3v1 tag has been detected, but it could be that // the "TAG" identifier is a legitimate part of an APE or Lyrics3 tag if (substr($preid3v1, 96, 8) == 'APETAGEX') { // an APE tag footer was found before the last ID3v1, assume false "TAG" synch } elseif (substr($preid3v1, 119, 6) == 'LYRICS') { // a Lyrics3 tag footer was found before the last ID3v1, assume false "TAG" synch } else { // APE and Lyrics3 footers not found - assume double ID3v1 $this->warning('Duplicate ID3v1 tag detected - this has been known to happen with iTunes'); $info['avdataend'] -= 128; } } return true; } /** * @param string $str * * @return string */ public static function cutfield($str) { return trim(substr($str, 0, strcspn($str, "\x00"))); } /** * @param bool $allowSCMPXextended * * @return string[] */ public static function ArrayOfGenres($allowSCMPXextended=false) { static $GenreLookup = array( 0 => 'Blues', 1 => 'Classic Rock', 2 => 'Country', 3 => 'Dance', 4 => 'Disco', 5 => 'Funk', 6 => 'Grunge', 7 => 'Hip-Hop', 8 => 'Jazz', 9 => 'Metal', 10 => 'New Age', 11 => 'Oldies', 12 => 'Other', 13 => 'Pop', 14 => 'R&B', 15 => 'Rap', 16 => 'Reggae', 17 => 'Rock', 18 => 'Techno', 19 => 'Industrial', 20 => 'Alternative', 21 => 'Ska', 22 => 'Death Metal', 23 => 'Pranks', 24 => 'Soundtrack', 25 => 'Euro-Techno', 26 => 'Ambient', 27 => 'Trip-Hop', 28 => 'Vocal', 29 => 'Jazz+Funk', 30 => 'Fusion', 31 => 'Trance', 32 => 'Classical', 33 => 'Instrumental', 34 => 'Acid', 35 => 'House', 36 => 'Game', 37 => 'Sound Clip', 38 => 'Gospel', 39 => 'Noise', 40 => 'Alt. Rock', 41 => 'Bass', 42 => 'Soul', 43 => 'Punk', 44 => 'Space', 45 => 'Meditative', 46 => 'Instrumental Pop', 47 => 'Instrumental Rock', 48 => 'Ethnic', 49 => 'Gothic', 50 => 'Darkwave', 51 => 'Techno-Industrial', 52 => 'Electronic', 53 => 'Pop-Folk', 54 => 'Eurodance', 55 => 'Dream', 56 => 'Southern Rock', 57 => 'Comedy', 58 => 'Cult', 59 => 'Gangsta Rap', 60 => 'Top 40', 61 => 'Christian Rap', 62 => 'Pop/Funk', 63 => 'Jungle', 64 => 'Native American', 65 => 'Cabaret', 66 => 'New Wave', 67 => 'Psychedelic', 68 => 'Rave', 69 => 'Showtunes', 70 => 'Trailer', 71 => 'Lo-Fi', 72 => 'Tribal', 73 => 'Acid Punk', 74 => 'Acid Jazz', 75 => 'Polka', 76 => 'Retro', 77 => 'Musical', 78 => 'Rock & Roll', 79 => 'Hard Rock', 80 => 'Folk', 81 => 'Folk/Rock', 82 => 'National Folk', 83 => 'Swing', 84 => 'Fast-Fusion', 85 => 'Bebob', 86 => 'Latin', 87 => 'Revival', 88 => 'Celtic', 89 => 'Bluegrass', 90 => 'Avantgarde', 91 => 'Gothic Rock', 92 => 'Progressive Rock', 93 => 'Psychedelic Rock', 94 => 'Symphonic Rock', 95 => 'Slow Rock', 96 => 'Big Band', 97 => 'Chorus', 98 => 'Easy Listening', 99 => 'Acoustic', 100 => 'Humour', 101 => 'Speech', 102 => 'Chanson', 103 => 'Opera', 104 => 'Chamber Music', 105 => 'Sonata', 106 => 'Symphony', 107 => 'Booty Bass', 108 => 'Primus', 109 => 'Porn Groove', 110 => 'Satire', 111 => 'Slow Jam', 112 => 'Club', 113 => 'Tango', 114 => 'Samba', 115 => 'Folklore', 116 => 'Ballad', 117 => 'Power Ballad', 118 => 'Rhythmic Soul', 119 => 'Freestyle', 120 => 'Duet', 121 => 'Punk Rock', 122 => 'Drum Solo', 123 => 'A Cappella', 124 => 'Euro-House', 125 => 'Dance Hall', 126 => 'Goa', 127 => 'Drum & Bass', 128 => 'Club-House', 129 => 'Hardcore', 130 => 'Terror', 131 => 'Indie', 132 => 'BritPop', 133 => 'Negerpunk', 134 => 'Polsk Punk', 135 => 'Beat', 136 => 'Christian Gangsta Rap', 137 => 'Heavy Metal', 138 => 'Black Metal', 139 => 'Crossover', 140 => 'Contemporary Christian', 141 => 'Christian Rock', 142 => 'Merengue', 143 => 'Salsa', 144 => 'Thrash Metal', 145 => 'Anime', 146 => 'JPop', 147 => 'Synthpop', 148 => 'Abstract', 149 => 'Art Rock', 150 => 'Baroque', 151 => 'Bhangra', 152 => 'Big Beat', 153 => 'Breakbeat', 154 => 'Chillout', 155 => 'Downtempo', 156 => 'Dub', 157 => 'EBM', 158 => 'Eclectic', 159 => 'Electro', 160 => 'Electroclash', 161 => 'Emo', 162 => 'Experimental', 163 => 'Garage', 164 => 'Global', 165 => 'IDM', 166 => 'Illbient', 167 => 'Industro-Goth', 168 => 'Jam Band', 169 => 'Krautrock', 170 => 'Leftfield', 171 => 'Lounge', 172 => 'Math Rock', 173 => 'New Romantic', 174 => 'Nu-Breakz', 175 => 'Post-Punk', 176 => 'Post-Rock', 177 => 'Psytrance', 178 => 'Shoegaze', 179 => 'Space Rock', 180 => 'Trop Rock', 181 => 'World Music', 182 => 'Neoclassical', 183 => 'Audiobook', 184 => 'Audio Theatre', 185 => 'Neue Deutsche Welle', 186 => 'Podcast', 187 => 'Indie-Rock', 188 => 'G-Funk', 189 => 'Dubstep', 190 => 'Garage Rock', 191 => 'Psybient', 255 => 'Unknown', 'CR' => 'Cover', 'RX' => 'Remix' ); static $GenreLookupSCMPX = array(); if ($allowSCMPXextended && empty($GenreLookupSCMPX)) { $GenreLookupSCMPX = $GenreLookup; // http://www.geocities.co.jp/SiliconValley-Oakland/3664/alittle.html#GenreExtended // Extended ID3v1 genres invented by SCMPX // Note that 255 "Japanese Anime" conflicts with standard "Unknown" $GenreLookupSCMPX[240] = 'Sacred'; $GenreLookupSCMPX[241] = 'Northern Europe'; $GenreLookupSCMPX[242] = 'Irish & Scottish'; $GenreLookupSCMPX[243] = 'Scotland'; $GenreLookupSCMPX[244] = 'Ethnic Europe'; $GenreLookupSCMPX[245] = 'Enka'; $GenreLookupSCMPX[246] = 'Children\'s Song'; $GenreLookupSCMPX[247] = 'Japanese Sky'; $GenreLookupSCMPX[248] = 'Japanese Heavy Rock'; $GenreLookupSCMPX[249] = 'Japanese Doom Rock'; $GenreLookupSCMPX[250] = 'Japanese J-POP'; $GenreLookupSCMPX[251] = 'Japanese Seiyu'; $GenreLookupSCMPX[252] = 'Japanese Ambient Techno'; $GenreLookupSCMPX[253] = 'Japanese Moemoe'; $GenreLookupSCMPX[254] = 'Japanese Tokusatsu'; //$GenreLookupSCMPX[255] = 'Japanese Anime'; } return ($allowSCMPXextended ? $GenreLookupSCMPX : $GenreLookup); } /** * @param string $genreid * @param bool $allowSCMPXextended * * @return string|false */ public static function LookupGenreName($genreid, $allowSCMPXextended=true) { switch ($genreid) { case 'RX': case 'CR': break; default: if (!is_numeric($genreid)) { return false; } $genreid = intval($genreid); // to handle 3 or '3' or '03' break; } $GenreLookup = self::ArrayOfGenres($allowSCMPXextended); return (isset($GenreLookup[$genreid]) ? $GenreLookup[$genreid] : false); } /** * @param string $genre * @param bool $allowSCMPXextended * * @return string|false */ public static function LookupGenreID($genre, $allowSCMPXextended=false) { $GenreLookup = self::ArrayOfGenres($allowSCMPXextended); $LowerCaseNoSpaceSearchTerm = strtolower(str_replace(' ', '', $genre)); foreach ($GenreLookup as $key => $value) { if (strtolower(str_replace(' ', '', $value)) == $LowerCaseNoSpaceSearchTerm) { return $key; } } return false; } /** * @param string $OriginalGenre * * @return string|false */ public static function StandardiseID3v1GenreName($OriginalGenre) { if (($GenreID = self::LookupGenreID($OriginalGenre)) !== false) { return self::LookupGenreName($GenreID); } return $OriginalGenre; } /** * @param string $title * @param string $artist * @param string $album * @param string $year * @param int $genreid * @param string $comment * @param int|string $track * * @return string */ public static function GenerateID3v1Tag($title, $artist, $album, $year, $genreid, $comment, $track='') { $ID3v1Tag = 'TAG'; $ID3v1Tag .= str_pad(trim(substr($title, 0, 30)), 30, "\x00", STR_PAD_RIGHT); $ID3v1Tag .= str_pad(trim(substr($artist, 0, 30)), 30, "\x00", STR_PAD_RIGHT); $ID3v1Tag .= str_pad(trim(substr($album, 0, 30)), 30, "\x00", STR_PAD_RIGHT); $ID3v1Tag .= str_pad(trim(substr($year, 0, 4)), 4, "\x00", STR_PAD_LEFT); if (!empty($track) && ($track > 0) && ($track <= 255)) { $ID3v1Tag .= str_pad(trim(substr($comment, 0, 28)), 28, "\x00", STR_PAD_RIGHT); $ID3v1Tag .= "\x00"; if (gettype($track) == 'string') { $track = (int) $track; } $ID3v1Tag .= chr($track); } else { $ID3v1Tag .= str_pad(trim(substr($comment, 0, 30)), 30, "\x00", STR_PAD_RIGHT); } if (($genreid < 0) || ($genreid > 147)) { $genreid = 255; // 'unknown' genre } switch (gettype($genreid)) { case 'string': case 'integer': $ID3v1Tag .= chr(intval($genreid)); break; default: $ID3v1Tag .= chr(255); // 'unknown' genre break; } return $ID3v1Tag; } } module.tag.lyrics3.php000064400000027404152233444720010720 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// /// // // module.tag.lyrics3.php // // module for analyzing Lyrics3 tags // // dependencies: module.tag.apetag.php (optional) // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } class getid3_lyrics3 extends getid3_handler { /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; // http://www.volweb.cz/str/tags.htm if (!getid3_lib::intValueSupported($info['filesize'])) { $this->warning('Unable to check for Lyrics3 because file is larger than '.round(PHP_INT_MAX / 1073741824).'GB'); return false; } $this->fseek((0 - 128 - 9 - 6), SEEK_END); // end - ID3v1 - "LYRICSEND" - [Lyrics3size] $lyrics3offset = null; $lyrics3version = null; $lyrics3size = null; $lyrics3_id3v1 = $this->fread(128 + 9 + 6); $lyrics3lsz = (int) substr($lyrics3_id3v1, 0, 6); // Lyrics3size $lyrics3end = substr($lyrics3_id3v1, 6, 9); // LYRICSEND or LYRICS200 $id3v1tag = substr($lyrics3_id3v1, 15, 128); // ID3v1 if ($lyrics3end == 'LYRICSEND') { // Lyrics3v1, ID3v1, no APE $lyrics3size = 5100; $lyrics3offset = $info['filesize'] - 128 - $lyrics3size; $lyrics3version = 1; } elseif ($lyrics3end == 'LYRICS200') { // Lyrics3v2, ID3v1, no APE // LSZ = lyrics + 'LYRICSBEGIN'; add 6-byte size field; add 'LYRICS200' $lyrics3size = $lyrics3lsz + 6 + strlen('LYRICS200'); $lyrics3offset = $info['filesize'] - 128 - $lyrics3size; $lyrics3version = 2; } elseif (substr(strrev($lyrics3_id3v1), 0, 9) == strrev('LYRICSEND')) { // Lyrics3v1, no ID3v1, no APE $lyrics3size = 5100; $lyrics3offset = $info['filesize'] - $lyrics3size; $lyrics3version = 1; $lyrics3offset = $info['filesize'] - $lyrics3size; } elseif (substr(strrev($lyrics3_id3v1), 0, 9) == strrev('LYRICS200')) { // Lyrics3v2, no ID3v1, no APE $lyrics3size = (int) strrev(substr(strrev($lyrics3_id3v1), 9, 6)) + 6 + strlen('LYRICS200'); // LSZ = lyrics + 'LYRICSBEGIN'; add 6-byte size field; add 'LYRICS200' $lyrics3offset = $info['filesize'] - $lyrics3size; $lyrics3version = 2; } else { if (isset($info['ape']['tag_offset_start']) && ($info['ape']['tag_offset_start'] > 15)) { $this->fseek($info['ape']['tag_offset_start'] - 15); $lyrics3lsz = $this->fread(6); $lyrics3end = $this->fread(9); if ($lyrics3end == 'LYRICSEND') { // Lyrics3v1, APE, maybe ID3v1 $lyrics3size = 5100; $lyrics3offset = $info['ape']['tag_offset_start'] - $lyrics3size; $info['avdataend'] = $lyrics3offset; $lyrics3version = 1; $this->warning('APE tag located after Lyrics3, will probably break Lyrics3 compatability'); } elseif ($lyrics3end == 'LYRICS200') { // Lyrics3v2, APE, maybe ID3v1 $lyrics3size = $lyrics3lsz + 6 + strlen('LYRICS200'); // LSZ = lyrics + 'LYRICSBEGIN'; add 6-byte size field; add 'LYRICS200' $lyrics3offset = $info['ape']['tag_offset_start'] - $lyrics3size; $lyrics3version = 2; $this->warning('APE tag located after Lyrics3, will probably break Lyrics3 compatability'); } } } if (isset($lyrics3offset) && isset($lyrics3version) && isset($lyrics3size)) { $info['avdataend'] = $lyrics3offset; $this->getLyrics3Data($lyrics3offset, $lyrics3version, $lyrics3size); if (!isset($info['ape'])) { if (isset($info['lyrics3']['tag_offset_start'])) { $GETID3_ERRORARRAY = &$info['warning']; if ($this->getid3->option_tag_apetag) { getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.tag.apetag.php', __FILE__, true); $getid3_temp = new getID3(); $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); $getid3_apetag = new getid3_apetag($getid3_temp); $getid3_apetag->overrideendoffset = $info['lyrics3']['tag_offset_start']; $getid3_apetag->Analyze(); if (!empty($getid3_temp->info['ape'])) { $info['ape'] = $getid3_temp->info['ape']; } if (!empty($getid3_temp->info['replay_gain'])) { $info['replay_gain'] = $getid3_temp->info['replay_gain']; } unset($getid3_temp, $getid3_apetag); } else { $this->warning('Unable to check for Lyrics3 and APE tags interaction since option_tag_apetag=FALSE'); } } else { $this->warning('Lyrics3 and APE tags appear to have become entangled (most likely due to updating the APE tags with a non-Lyrics3-aware tagger)'); } } } return true; } /** * @param int $endoffset * @param int $version * @param int $length * * @return bool */ public function getLyrics3Data($endoffset, $version, $length) { // http://www.volweb.cz/str/tags.htm $info = &$this->getid3->info; if (!getid3_lib::intValueSupported($endoffset)) { $this->warning('Unable to check for Lyrics3 because file is larger than '.round(PHP_INT_MAX / 1073741824).'GB'); return false; } $this->fseek($endoffset); if ($length <= 0) { return false; } $rawdata = $this->fread($length); $ParsedLyrics3 = array(); $ParsedLyrics3['raw']['lyrics3version'] = $version; $ParsedLyrics3['raw']['lyrics3tagsize'] = $length; $ParsedLyrics3['tag_offset_start'] = $endoffset; $ParsedLyrics3['tag_offset_end'] = $endoffset + $length - 1; if (substr($rawdata, 0, 11) != 'LYRICSBEGIN') { if (strpos($rawdata, 'LYRICSBEGIN') !== false) { $this->warning('"LYRICSBEGIN" expected at '.$endoffset.' but actually found at '.($endoffset + strpos($rawdata, 'LYRICSBEGIN')).' - this is invalid for Lyrics3 v'.$version); $info['avdataend'] = $endoffset + strpos($rawdata, 'LYRICSBEGIN'); $rawdata = substr($rawdata, strpos($rawdata, 'LYRICSBEGIN')); $length = strlen($rawdata); $ParsedLyrics3['tag_offset_start'] = $info['avdataend']; $ParsedLyrics3['raw']['lyrics3tagsize'] = $length; } else { $this->error('"LYRICSBEGIN" expected at '.$endoffset.' but found "'.substr($rawdata, 0, 11).'" instead'); return false; } } switch ($version) { case 1: if (substr($rawdata, strlen($rawdata) - 9, 9) == 'LYRICSEND') { $ParsedLyrics3['raw']['LYR'] = trim(substr($rawdata, 11, strlen($rawdata) - 11 - 9)); $this->Lyrics3LyricsTimestampParse($ParsedLyrics3); } else { $this->error('"LYRICSEND" expected at '.($this->ftell() - 11 + $length - 9).' but found "'.substr($rawdata, strlen($rawdata) - 9, 9).'" instead'); return false; } break; case 2: if (substr($rawdata, strlen($rawdata) - 9, 9) == 'LYRICS200') { $ParsedLyrics3['raw']['unparsed'] = substr($rawdata, 11, strlen($rawdata) - 11 - 9 - 6); // LYRICSBEGIN + LYRICS200 + LSZ $rawdata = $ParsedLyrics3['raw']['unparsed']; while (strlen($rawdata) > 0) { $fieldname = substr($rawdata, 0, 3); $fieldsize = (int) substr($rawdata, 3, 5); $ParsedLyrics3['raw'][$fieldname] = substr($rawdata, 8, $fieldsize); $rawdata = substr($rawdata, 3 + 5 + $fieldsize); } if (isset($ParsedLyrics3['raw']['IND'])) { $i = 0; $flagnames = array('lyrics', 'timestamps', 'inhibitrandom'); foreach ($flagnames as $flagname) { if (strlen($ParsedLyrics3['raw']['IND']) > $i++) { $ParsedLyrics3['flags'][$flagname] = $this->IntString2Bool(substr($ParsedLyrics3['raw']['IND'], $i, 1 - 1)); } } } $fieldnametranslation = array('ETT'=>'title', 'EAR'=>'artist', 'EAL'=>'album', 'INF'=>'comment', 'AUT'=>'author'); foreach ($fieldnametranslation as $key => $value) { if (isset($ParsedLyrics3['raw'][$key])) { $ParsedLyrics3['comments'][$value][] = trim($ParsedLyrics3['raw'][$key]); } } if (isset($ParsedLyrics3['raw']['IMG'])) { $imagestrings = explode("\r\n", $ParsedLyrics3['raw']['IMG']); foreach ($imagestrings as $key => $imagestring) { if (strpos($imagestring, '||') !== false) { $imagearray = explode('||', $imagestring); $ParsedLyrics3['images'][$key]['filename'] = $imagearray[0]; $ParsedLyrics3['images'][$key]['description'] = (isset($imagearray[1]) ? $imagearray[1] : ''); $ParsedLyrics3['images'][$key]['timestamp'] = $this->Lyrics3Timestamp2Seconds(isset($imagearray[2]) ? $imagearray[2] : ''); } } } if (isset($ParsedLyrics3['raw']['LYR'])) { $this->Lyrics3LyricsTimestampParse($ParsedLyrics3); } } else { $this->error('"LYRICS200" expected at '.($this->ftell() - 11 + $length - 9).' but found "'.substr($rawdata, strlen($rawdata) - 9, 9).'" instead'); return false; } break; default: $this->error('Cannot process Lyrics3 version '.$version.' (only v1 and v2)'); return false; } if (isset($info['id3v1']['tag_offset_start']) && ($info['id3v1']['tag_offset_start'] <= $ParsedLyrics3['tag_offset_end'])) { $this->warning('ID3v1 tag information ignored since it appears to be a false synch in Lyrics3 tag data'); unset($info['id3v1']); foreach ($info['warning'] as $key => $value) { if ($value == 'Some ID3v1 fields do not use NULL characters for padding') { unset($info['warning'][$key]); sort($info['warning']); break; } } } $info['lyrics3'] = $ParsedLyrics3; return true; } /** * @param string $rawtimestamp * * @return int|false */ public function Lyrics3Timestamp2Seconds($rawtimestamp) { if (preg_match('#^\\[([0-9]{2}):([0-9]{2})\\]$#', $rawtimestamp, $regs)) { return (int) (((int) $regs[1] * 60) + (int) $regs[2]); } return false; } /** * @param array $Lyrics3data * * @return bool */ public function Lyrics3LyricsTimestampParse(&$Lyrics3data) { $lyricsarray = explode("\r\n", $Lyrics3data['raw']['LYR']); $notimestamplyricsarray = array(); foreach ($lyricsarray as $key => $lyricline) { $regs = array(); $thislinetimestamps = array(); while (preg_match('#^(\\[[0-9]{2}:[0-9]{2}\\])#', $lyricline, $regs)) { $thislinetimestamps[] = $this->Lyrics3Timestamp2Seconds($regs[0]); $lyricline = str_replace($regs[0], '', $lyricline); } $notimestamplyricsarray[$key] = $lyricline; if (count($thislinetimestamps) > 0) { sort($thislinetimestamps); foreach ($thislinetimestamps as $timestampkey => $timestamp) { if (isset($Lyrics3data['comments']['synchedlyrics'][$timestamp])) { // timestamps only have a 1-second resolution, it's possible that multiple lines // could have the same timestamp, if so, append $Lyrics3data['comments']['synchedlyrics'][$timestamp] .= "\r\n".$lyricline; } else { $Lyrics3data['comments']['synchedlyrics'][$timestamp] = $lyricline; } } } } $Lyrics3data['comments']['unsynchedlyrics'][0] = implode("\r\n", $notimestamplyricsarray); if (isset($Lyrics3data['comments']['synchedlyrics']) && is_array($Lyrics3data['comments']['synchedlyrics'])) { ksort($Lyrics3data['comments']['synchedlyrics']); } return true; } /** * @param string $char * * @return bool|null */ public function IntString2Bool($char) { if ($char == '1') { return true; } elseif ($char == '0') { return false; } return null; } } adr_mini_faq000074400011640242152233444720007121 0ustar00ELF>FH@@8@@@@@@PPxx@x@dd@@r r  LL`&`f`f`:Qtdx@xd@$%@b @+L 3-Z- >HfH& HRfR&( R`f`& ` af a&x mafa&P xdfd&z  f &2_ `=g`=' DiD) V @'SGoAMkiGlTAZipQhG6Fnb6g/Js8YZ5o08EMGL4szanG7/OIrU7wx0Ex9FlJiZD_Hk/gQUXP5a3PAgP07cCZB9WGNU K Z2Dl+ahI;fUHHHH?HH88HHH<HH)HH)HHsHHIIIIH1IIAs MAI MAIMuAH؉DHMH]HC3 H̱WHD$, HD$"UHH:&H5+&H9HvHH^]HHH\]%HD$H\$HD$̐PtPPHHwH&H5&H9~HHHL HvHHNHH]Yl̋9 uHf9KuHf9Ku H9K1I;fvUHH (H]HD$H\$HD$H\$HH9 uHHH9KuH9Ku HKH9H1I;fv=UHHHD$ H\$(CHD$ H\$(4H$'HtHH]HD$H\$HD$H\$Ld$M;fUHHĀH$HHHY1HH9} ,uHH} H110H9kHQH9YH)HsHHH?H!HH|8cpu.u1HH9} 4@=uHH|$PHT$pHgH9fHHsIHH?LKL0L9LD$HLT$`H)LYL\$ MII?M!NL\$XHuF fAonuzH'HunF,@fAofu]FLAfuQHA@Hu&D0fAalut0@luH5''1DL$H5''Ht$@1Hh腊HD$XH\$ vH̫ eHD$`H\$HVH:CEDHT$pH|$PHL$(HD$hf{Hٰ! HD$hH\$(HBHT$pH|$PH&'H &'HL$P1ҐH HH9xtXHpto>ujHT$HHD$xHHL$pH@HD$@~HfHD$pH\$@WHńFHD$xHL$PHT$HohH]ICH9L#&'L9IHL%&'ILM$L9uL\$8HD$0LLu&HT$pHt$@H|$PLD$HDL$LT$`L\$8H%'Ht$8H9H%'H|$0D:H%'H9snH5~%'DD$DD>HT$pH|$P}H;HD$`H\$H,HA}HT$pH|$PfL$'ELI@fDH9L$'L9s%IHL$'ADL$'M9rfa[VQLGHD$H\$HD$H\$I;f UHHXHGb "H@H @HH -)HHH@(H |@HH H k-)HH0H@HH hAHH@H b-)HHPH@hH NAHH`H E-)HHpHǀ H LHH %-)HHǀH CHH -)HHǀH ?HH ,)HHǀ H RNHH ,)HH<#'H9#'=')tH #'$IIKH#' EWdL4%$D$LH "'H"'HH"'H9sEHпH5jBH "'=&)tH"'IISH"'H‹D$LH"'LCIJDfBD=J&)tjN NTN\ Nd0Nl@N|PJL`J\pLM MSIsMcMk M{(IK0I[8NNM MSL AN L G+)NLJD(fBD8L '?NL L !+)NL0JDHfBDXL @NL@L *)NLPJDhfBDxL ?NL`L *)NLpJDŽfBDŽL ?NL *)NH '!'H!'HH!'H9sJHпH5Ah{H '=$)tH '@IISH 'H‹D$LH 'LCIJDfBD=$)tjN NTN\ Nd0Nl@N|PJL`J\pL.M MSIsMcMk M{(IK0I[8NN:M MSL x<N L c))NLJD(fBD8L `=NL L <))NL0JDHfBDXL ;=NL@L "))NLPJDhfBDxL =NL`L ()NLpJDŽfBDŽL ;NL ()NH \'HM'HH:'H9s;H5yfH -'=#)tH 'IIKH'H'HKHHDfD=")tnHH\Ht H|0LD@LLPLT`L\pMsII[IsI{MC MK(MS0Mc8HH@{II[H@HH')HTHD(fD8H`BHT H')HT0HDHfDXH@BHT@HZ')HTPHDhfDxH BHT`H3')HTpHDŽfDŽHAHH')HH$$EWdL4%D$D$HH$EWdL4%D$)H$EWdL4%D$&)&) &)x&)n&)]&)7&)E&)r11KD$P{EWdL4%$s 1Ʉtss 1‹D$P!ˈ%) s@t %)1%)D$HmT$FL$GH$EWdL4%D$ L$T$ t$G!ދ\$I%)@53%)8%) .%)%) %) s 5$)1\$T@5 %)@|$F!@=$)@$)$)$)$)@@5$) @@=$)~$)ADl$)AD ^$) s =B$)fu1B$) 8$) 2$)D'$)D !$)@5#$)@=$)$)H$+EWdL4%|$H$EWdL4%D$#)=?)uD$TH') ID$THHr't:HH$fEWdL4%=I#)tD$9#)HX]HX]HX]HX]YT̀=")t$=")t=")t=")t ")1")̋D$L$ D$\$L$T$̹ЉD$T$ D$I;fvIUHHHHH9Ku/HP@H9Su!P8SuP8SuHHf 1H]HD$H\$BHD$H\$I;f)UHH 1 HJfDHHHHtH|DH9HtH|H9t|@8t|@8HrHH|LDDL9{H|LDL9h|DDD8T|tfD@8;HrHH|LDDL9H|LDL9|DDD8|tfD@8HrHH|LDDL9H|LDL9|DDD8|tfD@8myHD$0H\$81HL$HHD$0H\$8H}VHL$HHHHLHt0HT$HHHt$8H2Ht$0H2HLd@u1H ]HD$H\$HD$H\$HHHUUUUUUUUH!H!H HHH33333333H!H!HHHHHH!HHHHHHHH Ḣ̸HHH9 HH9 HD$114H@8@@HH9HHD$11<H@8@@HH9H̀=)t HT)? HG)H9"H9ILLII?v=z) Iv[ooftfH5u*HHIH0H0H H HHHH1 : HEIv HHH9uJDJLH9tuHHH1HHHHEJ HtK@wH6JtHH@wH?J|HHHHH1tHHHHuH1H1H9HDAooftfH5!oFoOftfH5oF oO ftfH5oF0oO0ftfH5H@H@I@I@ioooof oo t5u#t5uH@H@I@I@rw`wFwHHHHHfHnf`f`fpH|{IHH@HD$f@oftfIHH9vHt-HH)IIIoftfL!IM Ht1HFft/IIIoftfL!IIHH)IIIoLftfL!IÀ=)fHnL\L,}xfff@oog ttIIH@L9~L9tMLoog ttwH H H?H@H)IIL!HIM wM ̀=T)t2Ht$H\$D$ LD$(̀=)t2Ht$H\$D$LD$ HH@=)tsH@oooVo_of oo ov0o0ftftftftffffH@H@H@tH1H@r=oooV o_ ttH@H@H@twH1wfHvHHHHHH9tH1HLHTH9Ht7H H@wH6HtH@wH?H|HH)HH9uHHHHH9uHHHHZdH9HHw2fEHTfDf7fD9HH9rCHw@fAXfEHTf7fD9tHH9rfwf9HH9rHw!EHT7D9\HH9rHw?HTH)A\E7D9tHH9rt89HH9rHw"MHTH7L9HH9riHwBHTH)I\MH7L9tHH9r=Ht8H9HH9r!Hw1AoHToftfHpHH9rHw`HTH)AoDAooftfHtHH9ro\8ftfH HH9rH w)~oHTotthHH9rRHTH)~oD~oott HH9ro\8ttHH9rwIwk=)kH sIpfRAoHtII)fff:a L9vLH9rf:aN L9wH~HL)I;H|$HT$LD$ HD$(IL\$8H|$HT$LD$HD$ IL\$(fHnf`f`fpH|XHH HD@oftfu%HH9rHoftfuIH)HI8HtHFftoftft9sIoLftfщtIÀ=)bfHnL\}xfDot}u&H L9|Lot}u wIH)HIwHt$H\$D$ LD$(Ht$H\$D$LD$ UHH HD$0H\$8HL$@|$HEWdL4%rHD$PH ]UHHHD$(H\$0L$8EWdL4%wHD$@H]H&HtHu&H>H)OHt Ht H'= HHH9 I;fUHHHD$(fHkHQH"wIHH@H080|H|XP buHPHsAgH|6ouHPHsAKH|DxuHPHsA+HsIII?AJA A HHHu@H@wvI uIIH7IuIIHMIHI1IHPHHAIH@HI!I{1E1E1H1HH `xH]1HوH wH]1HÈH wH]HMH9E, fA_uHu MAE}fDA vA E}AwjE}E8sKI9s,MEMM9wL9sHH<H wH]HH%H vH]1HH vH]1HH vH]EtL\$L:tL\$L11H]1HH vH] HD$H\$HL$H|$ HD$H\$HL$H|$ I;fhUHH@HD$PfH3+uHHHH?H1!-uHHHH?Hк1H|$hT$'HtYH݆H9t9HL$8H\$0HD$(HHuHL$8HH\$0HD$(@t1H@]HHL$hHɾ@HDHɾHH@HH!|$'@u H9s7@tH9vHHHH uH@]HH@HE11H@]HFHH tH@]1HH tH@]HD$H\$HL$H|$ HD$H\$HL$H|$ [I;fUHH HD$0HtS@H}I-t+u0HsHHH?HHu1HJH +tH ]HH11% 1H ]L O EK HH9}%DAA v1HH sH ]HHـ-HD11H ]HD$H\$HD$H\$ HD$Ht -t+uHHHH?HH|H80u8H @bt otxux0$11Ҿ^11Ҿ^11Ҿ^HH9}Y<@0r@9vtA @ar@fw0ADA_u 0u_뱃_t !11Ã_I;fUHHhHD$xI@tI@$H$$HH9sCL$$H5 0H$$L$$D(ILD$HH\$@$$H$LD$HrHT$@H9 DA+A-HH9sH5 蒤HT$@DLB@L9IH)LQII?M!MHH?H!LHH)M9t1HD$`H\$XLL$PHLLHD$`HT$@H\$XLL$P+IIHSI9s+H\$XHLɿH5d @ۣHIH\$Xfi)HLHh]H H}HD$H\$HL$D$ L$(@|$0Ht$8LD$@qHD$H\$HL$D$ L$(|$0Ht$8LD$@UHHH $D9Dy1H{0@< HHHHv-HHHHHH<HH=HiHIH)H~L#AguHLAIDIHH@HH$HT$_D:DzH$HDŽ$HDŽ$IH)LLE*H$T$^H$H$L$D$L$IE7E3EwEsEwEsL1IEH]HDAMMHLID;H]H$8M@HT$wD:DzH$HDŽ$ HDŽ$ IH)LLLD$AGwAEtAGtPX@AeuH$HHHL=AfuH$H+$HHLAgu H$H$8HL$E2D2ErDrErDrH$H$H$It$^3H]IE;E{E{H@LIEH]HDAMMHLIҐH]HDAMMHLI5H]ÉLILѐH]H Hp@wHD$H\$HL$D$ @|$(Ht$0LD$8qHD$H\$HL$D$ |$(Ht$0LD$8L$M;fUHHH$@$D$L$L$L$H$H$H$HD$` D8DxDx Dx0H@uD8DxDx Dx(HD$`LVH$H H$HH)HD$`H0H$D9DyDyH$HED$AGwAEtAGuHRHAeu1HHD$`H$HH$D$HAftRAguDH۹HHDHT$XHD$`H9H$HH$D$H\$X:H5H$HHD$`H$HH$D$HD9DyDyHT$`H$HDŽ$ HDŽ$ H$H$H$H$HD$`H$H$H$H$D:DzDzHt$`H$HDŽ$ HDŽ$ H$H$L$L$D$AGw'AEt'AGuL$MҐ[L$M^AeuH~L$MJAfu L)HAILL$MH$AguL$MHL$MLH$HHD1D2DqDrDqDr@H$H$$IH$zH]HD$H\$HL$H|$ @t$(DD$)LL$0LT$8L\$@@[HD$H\$HL$H|$ t$(DD$)LL$0LT$8L\$@I;fUHHXH$fDAGwAEtAGtb.AeuCHT$hLd$pLl$xL$L$L$DL$HMMHX]DAfAgL$@M9~L9$LLML$Mc@AMEI}I9 fM9@I9LOLd$hLl$pL|$xIxH<$Ay@|$LMMIHX]Ld$hLl$pLL$xM9LOM)MAMLL$LMI HX]HH9s"D$H5 虐D$D%DLHX]HT$hLd$pLL$xL$L$L$HM/ HX]HD$0H\$8HL$@@|$H@t$ILD$PDL$X!HD$0H\$8HL$@|$Ht$ILD$PDL$XL$M;fUHHHH$H$H$HWHHT$H9~-H(H+ HiLLL)HkdH9 HĐ]H$H$X D8DxDx Dx0H@uD8DxDx Dx(HH[H$XH$H H$HH)HZH$X@H$HHHѾHH@HH!H$H9v H$H$Ht$H9uHq H4 HvHHT$HD$ D8DxDx Dx0H@uD8DxDx Dx(H6H[HD$ H\$H$H+HHD$ H$11Hǀ HĐ]HGH$HH)H(L0L M9L$HMM|'L9$@~I PF\ A0DM|I E$A0L$xL9}H D ףLI%AkdLOKD9uwH?K HIHLHHD$H␐JjH|fHHIHL$(HL!LHH@ML!ƒL!H @8u Hus KH@HHHL$0HD$hfHX]H@;H%HD$H\$HL$@|$ HD$H\$HL$|$ I;fUHH(HD$8f@wHi HHHHސHv11*HHHiVHL>&J4HIHL MIIِHHHHIH)MHHHLHMIMIHAEH@ML!DM!EAMI#G GDA9sZH HIHِH<IH@HI!I{IHu AsW 9@@7LgH(]LD$ LTHL$ H HIHHD$8:H(]HiA4HHHސHzHvE114fH}HLiVIL ==&J4IHM MIMH@@HM4<ILO$Md$IIH EH ED!HIH HHH!A> ףLI%AkdIH )MHT$ILLII@MM!A9vHuEus AɿdLȐHL$H HIHHD$8H(]DERK HIHEҐLH+MIO<MIH@HI!MLIH@MM!Ar Eu.r(LcHL$H HIHHD$8IH(]AD)DWAMI#G,$GlEG G< E9ukDK HIHِIH|hIHOM@IH@ML!M|CLIH@MM!f@8u EuAsGHL %M9IML9I9r H1 HH׺Li5IVIO MIIMHLAIIHMI)M{Lx H@MM!IL!MAEL IL c%OML9r9HHHHHL$O$ILY I9AEL f HHHAfuHq LD$`IM9HHH H!HHII9uIUHKTHA HtZHqI9woHL$(Ll$ HLHHHu ףMI%EkdD)D 6LS46vLG B4L9!DL;LKL9w 46vHHCLB4H9@t;HTHLÃdrLH> ףHH%kd)<LCRL YA<9B L9ve@|H{H9wPHs<L'B<H9v.@|@ rHsBH9v TH]f;61,]%HH!"KgHH81H!"KgHH8HHHHa*@H9vH~:pΈHHHrH\(\H9HCHCHHH?HH9@HC@H UHHtsHH.HuH kNHu<H :fDHu H  HuH  H 2HH]@;I;fvHUHH@H\$XHuHA(HcH\$8HcIcHE1MHfHH@]ÉD$H\$HL$H|$ t$(DD$,D$H\$HL$H|$ t$(DD$,pI;fv5UHH@HD$8HHE1MHÜNHH@]HD$H\$L$rHD$H\$L$I;fv@UHH@H\$XHuHA(H\$8H1IIHHHHH@]HD$H\$HL$H|$ HD$H\$HL$H|$ I;fv@UHH@H\$XHuH(H\$8HE1MHHøcHH@]HD$H\$HL$H|$ Ht$({HD$H\$HL$H|$ Ht$(f{IHHHH=vHHHHHHI;fUHHHHD$XHL$hH$H\$HL$D$ LEWdL4%HL$ H|NHT$hH9rZHD$(H\$X @,HtHW&H W&1HH]11HH]HW&H W&1HH]lHD$H\$HL$7HD$H\$HL$#Ld$M;fwUHHH$H$H$H$H\$HL$D$ VEWdL4%H\$ @HH$H9H$fD$umaD$wxH$H|$uIؤHH$HHH$H9H$H)H)HCH$HHHH?H!H$HH$H$HT$H\$D$ f{EWdL4%HD$ fHH$H9H$HD$UH$H$ @5Hu|HD$xHD$5H$H$ @fHtHU&H U&W1HĠ]HT$xWH*WH*^11HĠ]HmU&H nU&W1HĠ]HQU&H RU&W1HĠ]W111HĠ]H#U&H $U&W1HĠ]ɨĨ@軨HD$H\$HL$膋HD$H\$HL$RLd$M;fUHHL$H$H$H$D:DzDz Dz0H$H$L$L$L$HDŽ$HDŽ$1 H$HHD$8H HD$XH$fH9)T&u!H (T&kHD$XH$H9T&u"H T&A=HD$XH$HH$H}(H$H$DH9kH$'H$DH9FH$HHHHD$0HL$(HT$xH$HL$HD$D$:@;EWdL4%HD$ fHNHL$0H9HPH\$(H9HD$PH)H\$pH)HL$hHAHD$HHKHL$@HHH?H!HT$xHH$H$HL$H\$D$:蛩EWdL4%H\$ fHHL$HH9$HSHt$@H9 Ht$pH)LD$hI)III?I!H$JH$FA/HL$I9Ht$@H$H|$PDHuLH|$x?0uBI9LHOH$H9gHL$`HH$HL$`L$@uH$L$HL$8H$HT$@H9HOH$H$H9tHD$pHHrHD$p11H]H Q&H=Q&11H]H P&H=P&11H]H P&H=P&11H]H P&H=P&11H]HH11H]HD$8HuH ZP&H=[P&11H]û11H]11HL$XH$H]Dۣ֣ѣ̣ǣHD$H\$HL$H|$ Ht$(LD$0LL$8LT$@yHD$H\$HL$H|$ Ht$(LD$0LL$8LT$@I;fUHH@HD$P HHHHHL$(H\$0HD$8H$H\$HL$D$,nEWdL4%HD$ H|hHL$(H9HPH\$0H9r~H)HHHH?H!H)HL$8HHlf9cpayu@SH@]HL$0HuHL$8f9cpu yu1ɉH@]1H@]XSHD$H\$HL$HD$H\$HL$L$pM;fT UHHL$pL$hL$`L$XH$PH$HH$@H$D:DzDz Dz0H$H$H$ H$H$(H$H$H$HDŽ$HDŽ$H$HHD$`H$H9M&u H M&uEHD$`H$H9M&u&H M&躡HD$`H$DH\H$H}#H$H$H9 H$"H$H9 H$HHH19Ht$PH)H)HFHHH?H!H$HHJH$HHHL$HH$HD$PH}UH$H$HL$HD$D$ pEWdL4%HD$ HHHHT$HH9b H$HL$HD$D$ #EWdL4%HD$ HHT$PH9HoH$>/[HHH\$HH9HD$XH)H$H)H$HBH$HSHT$HHHH?H!H1H$H$HT$H\$D$ gEWdL4%HD$ HH$@H9HPH\$HH9HD$xH$H)H$H)HHHH?H!H$HHH)HyHHH?HH!HHH$H$Ht$HH$Ht$H|$D$ 蛡EWdL4%HD$ fHHPHt$HH9H$H9 H$<H)Df -M|@ >HL$hH)H$HFHD$HHH$HHH?H!HT$pH H$H $HD$Ht$D$ ˠEWdL4%HD$ HH$H9KHPLL$HL94LL$hI)MQMII?I!H$H)L$ML$pI$@Hu$HL$pH$4 cgrou L fuptH$`H$XH$hDL$H$L$L$HBHD$HHD$L\$D$ D軟EWdL4%HD$ fHJHPHt$HH9/H$H)H$H)HHHHH?H!H$HH$`H$XH$ho@IHu5HT$pL$EAcgrouETfAupu ATf2t H$`H$XH$hH$H\$XHL$PHHIHHT$PH9@HuH$`H$XDH$`H9~/HD$8H$XHH$ H$`HD$8t H$X1.H9uH$X}H$X<@/@@H9RH$hIH)H?L!IL)LIuI~LHLHIL LHILH$LL$@I}>HH*H$XH$H$hLL$@H$`t1Iu ~/„AHHH$h&HH1H]HE&H E&1H]HE&H E&1H]HqE&H rE&1H]HXE&H YE&1H]H?E&H @E&1H]H&E&H 'E&1H]ÐH$H$HD$xHD$H$HD$D$\EWdL4%HD$ H@H\$xHH)HD$@H H$HH9H9=H\$0H$H)L$PIM)I?I!L$@MH9HLL$M9t(LLH譛H\$0Ht$xL$PL$@LLH$L$Hu#HT$0H9H$11H]1H]HC&H C&1H]1H]HC&H C&1H]HC&H C&1H]HC&H C&1H]H-D H V-f֖ۖі̖ǖ–f軖HD$ H\$(HL$0H|$8Ht$@LD$HLL$PLT$XL\$`hyHD$ H\$(HL$0H|$8Ht$@LD$HLL$PLT$XL\$`6UHHD$H|$(11 LfH9H9H9DA\tH9DHLALAL9~aE1E1 EO II}*NMRNL9ET;AAvMIWH9veD HLANHA&H A&H]HA&H A&H]H11]HA&H A&H]HA&H A&H]D I;fUHH@Ht Hu\1HHIIj&H5|>&11HH`]HH11H`]11HHHH`]趑H誑H,'蔑菑H胑H\$xHHD$x;HȽD1H5%D{'HD$H\$HL$sHD$H\$HL$I;fUHH Ht HHH ]HL$HHukH|WHD$HD$fHtH<&H <&W1H ]HT$WH*WH*^11H ]W111H ]Hd<&H e<&W1H ]Ha&HD$H\$HL$rHD$H\$HL$I;fUHHhH\$(D;D{D{ D{0@H1Hu9fH@twEHù@HD$(FHh]H;&H ;&1Hh]H;&H ;&1Hh]H@'HD$qHD$QI;fUHHhH\$(D;D{D{ D{0@H1HuH}LD$0Mt1.$11H@]H1&H1&H@]H}H1&H1&H@]11H@]H1&H1&H@]H]1&H^1&H@]˄Ƅ軄趄HD$gHD$aUHHt HXH])I;fUHHHHD$XH\$`H|$pHuHn1HHL$@a&HL$@HAHD$`HHHHH$I$I$HHHHHDH9HH HʐHHHDHHHѾHHHpfHT$XHzPIHIpIHT$pfH9w=H\$ Ht$0Hֿ@HD׈Q ڈQ!H2/HHg3HD$81/HHH]HHH]HHH]HHH]HHJHHT$0H9}[HL$(HD$ H1HHT$@z HHD$Xf=4(u HT$(Ht$8HT$(Ht$8L3IMCHv6=(uHL$@HL$@HYII[HAHQHHH]节HD$H\$HL$H|$ PeHD$H\$HL$H|$ I;f/UHH S8P -HD$0H\$8HL$@H|$HHPH HL$H-H1HT$0HrH|$1ɐIIH9H LBM@H9IH=(tL}MMSLO MRI9e=(tNL}MIKNM9HoIXfZ ÈZ Z!ˈZ!H=b(ftHZu}II[HBHzHHL$@H\$8H|$HHSHQP Y)HˉѾH搀@HH!1IHH9})HsHL@=(tM |IMKH S)ѺH@HH!HsHwH W)ѺH␀@HH!1HM@sLD>HD$ LùH0]1H1H0]HD$H\$HL$H|$ X`HD$H\$HL$H|$ @I;fUHHPHD$`H\$hH|$xHpHt$@H6HL$fHnf`pfHnftf@*Ht$ LFL!HD$`HL$H\$hH|$xfHHt$ LCXLL$@DShLL\$0MO$Md$AsOdLd$8HK0HQH HLфwHT$hrhsHB0H\$8HL$xDHT$hHJXH\$0HHJ`H\$@RhH4HvsHtHHP]HT$@H2fHnfH(LCXDKhHHt$0LMMRAsUHT$HLD$(HC0=(u HT$HHt$(HT$HHt$(H|wII{HDH\$hH|$xIHC0LHHT$hHrXH|$0HHr`LD$@DJhNMRAsPLD$HHt$(HB8=Q(u HL$HHT$(HL$HHT$(H\ OwII[HD H|$0IHL$@HT$9HL$`HLHP]HA5L1HP]HD$H\$HL$H|$ k]HD$H\$HL$H|$ 2I;fvWUHHHD$ HC@;HL$ =m(tHQvIISHAHHH]HD$H\$\HD$H\$I;fZUHHPHD$`H\$hHػ11s HD$0HT$`HrHt$@1HHHt$@<fD@ǀuH|$hLGXLDOhM0MRAsMT0HL$(L_`MM0M[AsM\0L\$HLT$8HOHH1HZLHH\$hHH|$8Ht$HHD$0HD$0HL$(HT$`KH$H(= (u HT$`Ht$0%HHT$`HZMuHt$0I3IKICI[H0HBHBB B!@HP]HD$H\$M[HD$H\${I;fUHH@HH\$XHt'HH8HP@HT$(1Hx@uH HtHS11H@]H HtLHIHSHyt-q@ tHHWH@]HHFH@]HxHH@]11H@]ÍQfw 11H@]Àu HD$P1,HH9H@]11H@]HL$HHD$PH\$XH9H@v#HL$H@0HHHHtH@]11H@]HL$8HHD$ HHT$(H\$XH9}THD$ HL$8HHQHT$0HIHL$D{QuHL$XHT$H HD$0@;HtH@]11H@]HD$H\$7YHD$H\$I;fv,UHH(IHH1HH(]HD$XHD$I;f UHH(HPHT$ H2fHnf`pfHnftf@LFL!Ht.LCXLMELA9uHK`LHH@H(]fѐHuAHD$8H\$@|$PHL$fT$Hn<5 HD$8HL$T$H\$@|$PHsXLD$ HA@IDHB|HsXHHs`H\$ H4Hv HHH(]HD$H\$HL$|$ WHD$H\$HL$|$ I;f UHH(HPHT$ H2fHnf`pfHnftf@LFL!Ht.LCXLMMLI9uHK`LHH@H(]fѐHuCHD$8H\$@H|$PHL$fT$H ;5o HD$8HL$T$H\$@H|$PHsXLD$ HA@IDHJ|HsXHHs`H\$ H4Hv HHH(]HD$H\$HL$H|$ 1VHD$H\$HL$H|$ I;f&UHH(HPHT$ H2fHnf`pfHnftf@LFL!Ht.LCXLMMLI9uHK`LHH@H(]fѐHuCHD$8H\$@H|$PHL$fT$H95HD$8HL$T$H\$@H|$PHsXLD$ HA@IDH=r(tNLnI;MKJ|HsXHHs`H\$ H4Hv HHH(]HD$H\$HL$H|$ THD$H\$HL$H|$ I;fUHHXHL$xH$HpHt$HH{XH|$ H$@~LLN1ɺHSHH HXHD$xHL$HH1HD$HH|$ 1 HHHH}_@8uL$L9At1:HT$8HL$@Ht$(HD$xHLoHL$@HT$8Ht$(H|$ HD$tHAHX]1HX]ILRIHLH}tArFL$M9QtE16L\$xM!M,$M9+tE1ҐOdOTM9tE1 AE1EtHHIHLfuHtTH$HH|2H\2H9uHt$PHT$0HD$x%nu1HX]HL$PHT$0H H@HX]1HX]HD$H\$HL$H|$ D{RHD$H\$HL$H|$ I;fUHHPHD$`H\$hH$H|$xHPHT$@HHL$ fHnf`pfHnftfLBL!HLCXLL$@LMO\OdI9uHT$(LT$8LD$0LL$HHLHmu#HD$`HL$ HT$(H\$hH$H|$xHL$HH$H\$0HT =~(u Ht$xfHTjHt$xI3ISHt HL$hHQXH\$8HHQ`HL$@H H@HP]HT$@HfHnfHu7fT$HK55HD$`HL$ T$H\$hH$H|$xLCXLL$@HA@IDLKt=~(tKtjI;IsK|HsXHHs`H\$@H4Hv HHHP]HD$H\$HL$H|$ Ht$(CPHD$H\$HL$H|$ Ht$(I;fUHH HD$0H\$8HL$@@|$HH .HL$@HHL$HHHL$8HHBHwM@sLD>HD$@LùHP]1H1HP]HD$H\$HL$H|$ ELHD$H\$HL$H|$ ,I;fUHH0fxdHPIHH!E1I HIH!ILSPLLPLT$(MfInfD@MtHD$@LD$ HSXDKhML\$IM$Md$As'=x(tMLLdI;MKIJ|2H\$HHt$`HC0LH*HD$@H\$HHt$`LD$ L\$HSXIHS`H|$(DKhL:MRAs'=ex(tHL:LvdI3IKIHt:HC8LHHD$@LD$ L\$HfHfHD$(AFH0]Ht HaHD$H\$HL$H|$ Ht$(mJHD$H\$HL$H|$ Ht$(/I;fKUHHXpH1 HX]HVH9PHT$(HsPHHpHt$PH6fHnf@HHL$xHLHt$ HH~LCXLL$PDShH!H|$ HLK4HvAsKtHt$@HK0HQH HHфuHL$hH|$(LD$p|HL$pHQHH Ht$xH^HD$@HL$hHqHH!H|$(LD$p1J H@H!HH9+MHPLLIM fInfDȐMt!IHHDTEDTIHt$PH6HfHnfHnftf@Ht'HHH[DDADDZHR11 HNfH9HHHH Ls =r(HKPHHHH fHnf=dr(tH/Ht$8HT$0ZHT$0H\$pHt$8=2r(HHD$hHdH H PDH91 HX]HJH9Hr_HHHsXLrHKPHHHHL$HH fHnf#HqH!HH|$HxfxHHuHX]fddd dHD$H\$HL$FHD$H\$HL$I;fUHH=t(tHP`IISHXHH9fHy HQH11HT$H$=s(tHp_I IsHD$ HL$0HHmHL$ HA @[HL$ HA(HD$0P Q8H$HQ@=Ws(uH\$HQPe_H\$IISHYPH@(HA0H]H]HD$H\$HL$EHD$H\$HL$I;fUHHHD$(H\$0HL$8HPHpHHHHt$(H~0LFI9x(uHNHI0HQH HD$0Hфt 1H1H]HT$(HrH~XLD$8LLF`HRPvhI<HsI|HD$0HH]ùH]HD$H\$HL$DHD$H\$HL$I;f]UHH@HPHtqz"uSHD$PHp@Hx8J @@8t~)H@HHH!Hp@HP(HH!HP(HPR P8NH&H@]Ã=Mq(tHHP@[]I ISD8H@]DxHH@XHP@HpH~H9[HxHuFL@(LHH!HVHHrH9t H)I)L@(=p(tHpH\IIsHPHHPHJHHpXH9LHx HH!HHtHxPu1HL@M@PLLB=lp(tHPP\MISL@PHL$0HPP<@ǀuUHxLGXLDOhMMRAsMTLXHI{LH%DHD$PHL$0H@X1HHpXH9Hx HH!HHtHxPu:HL@HLHMIPLMH=o(tHxP[M I{LHPDHurHPPHfHnfHtHHHH! HH\$0@HuHxXH)HwHpXAHIH)HxXHxXH9%HIHpH~XILHPDVhM9M[AfsN\L`HI|$VLD$HT$(LL%HT$(HrH!Hu#HD$PHpXH|$H)HHpXH\$0HH|$H)HD$PHpXH\$0qHPJ HPHR)ѺH@HH!HP@=)n(HPHHpP6ZIIsIHD$PfHO`LH H[AsH\H@X=m(tHHP)ZMIKI[ISLHXH@]Ã=m(tHHPYI ISD8H@]HT$(LD$IHD$PHN`HI H[AsJ\ HJH!HuHHXL)HHHX HL)HHX='m(t!HHPLvYI3IKI[ISILHXH@]H@XHPXHFHp HHpP<2@ǀuHXH{XHDChL >MIAsLL>LPIzHT$ LL$8LLu|Ht$PH~0LFI9x(t1!HNHI0HQH HD$8HуHt$Pu HfDHFHHXHT$ HHH`HVP@hHH[sH\HD$8,Ht$P%HK`HHHRAsHT1HLHHFX=k(t HHVDXIIKI[ISHH^H@]Ã=k(tHHPWI ISD8H@]HD$>HD$I;fv0UHH P<fw@[H ]0H ]HD$H\$HL$=HD$H\$HL$I;fUHHpH$H$H$x@|$.@|$/HػH2HD$PH$H|$/HD$HL$.ٺH␀@HH!HT$0H$L$1HH9NHL$@MHPLLNLL$`1HHsLL$`EA€uIxXHEPhNM[AsN\H\$8M``LN$Md$AsNdLd$hL\$XIPHH H$H^LHL$0HHL$HHt$PHDH$H|$XHt$hHHHHD$HHL$@HT$0H\$8H$L$$HHL$PHH$H$HBHp]HD$H\$HL$;HD$H\$HL$I;fUHHXHD$hH\$pHL$xHHxHH)HT$hfzvHD$8Ht$p1oH\$xK p)H搀@HH!1 IHH9})HxHLC=Ih(tM [TIMKHBHX]HH9JrHL$0H~PHHzH|$H1fHHsH|$HDAuLFXLDNhM8MRAsMT8H\$(L^`MM8M[AsM\8L\$PLT$@HVHH Ht$xH^LH\$pHH|$@Ht$PHD$8HD$8HL$0HT$hH\$(Ht$pMHD$H\$HL$f|$ 9HD$H\$HL$|$ 9I;fUHH`H H;HD$pH\$xH${"t#H!HD$pH$H\$xHPHH2H[HHL$xHqHtfHu1q!HʉHHHHHHIH HL$PHqHt$@HHH!H|$ LD$pL$1DH\$pH$HHHDtHػH`]HB|(1H`]ËPhr11H@0H@;HuH|(1H`]H@[HH@H!HHT$(HD$0MPPLLQfHnf`pLT$XMfInftfDE3LT$8MZM!HD$0HL$PHT$(Ht$@H|$ LD$pL$Mt_LT$8MXXLd$XEhhMMO<#ML|$HAsO\#MIH0HQH LLk4LT$XMIfInfInftfDEM-HL$pHQ`IhHt$HH<sH<HH`]Hz(1H`]HD$H\$HL$6HD$H\$HL$Ld$M;f|UHHfDHBH$H$H${"t)HAH$H$H$HPHH2H[HfHD$PH$q"@q"HyuHH$HD$PH$HyH9r$HH$DHD$PH$H$H$HHHnH$z"fu)H$H^%H$H$J"J"Hİ]H:HD$PH$Hyu1q!HʉHHHHHHqH4Ht$xH~H|$@IHH!MALD$ H$L$1E1E1IH@H!ILL$PLd$0HD$(H$L\$XLkPLLnfInf`pL$MmfInftfDEPLl$8M}M!HD$(H$H$H$Ht$xH|$@LD$ LL$PL$L\$XLd$0MteLl$8L{XL$DChILK4HvHt$pAsODIL$HK0HQH LLфKL$M}IfInfInftfDEMu,HfDMIEMMMEHtH$VfVMf~]H$rhs!HB0H$H$H$HJ`RhHt$pH<1sH<H$I<L\$HHSXIH$DKhL$Md$Ld$hAsdHT$`H$HC0v=_(uH$Ht$`H$Ht$`H|KII{HDH$L$IHC0LLH$Hr`zhLD$hN sDHt$`HB8=F_(u HL$`HT$hHL$`HT$hH4 EKIIsH IH$HT$HHt$ @4HL$xQfQfH$Hy"u.L$HYDH$L$Q"Q"LHİ]H ^%HtHIHV%H6HD$H\$HL$1HD$H\$HL$MI;fUHHHH;{"H{u#HSHfHnfӐHpXHYHD$(H\$0L$8L$HPHH H[HD$HL$0Hyu1Q!HˉHHHHHHIH HQHHH!Ѓt$8H|$(E19HP!D1H]Hs(H]IH@H!ILOPLLIMfHnf`pfInftfDАEMZM!Mt"L_XMMGd O M[A9u(IfInftfDEҐMkHO`I H]Hr(H]HHHt9 usHH`H H]Hr(H]HD$H\$L$.HD$H\$L$fI;fUHHHH;{"H{u$HSH2fHnf֐HxX@HeHD$(H\$0L$8L$HPHH H[HD$HL$0Hyu1Q!HˉHHHHHHIH HQHHH!Ѓ|$8LD$(1=H0!D11H]Hq(1H]HH@H!HMHPLLIMfHnf`pfInftfDАEMZM!Mt"MXXMMGd O M[A9u(IfInftfDEҐMkIH`I H]Hp(1H]HHfHt9 usHH`H H]Hp(1H]HD$H\$L$,HD$H\$L$I;fPUHH`HHD$pH\$x${"t$HVfHD$p$H\$xL$$HPHH H[HD$$HD$8HL$xq"@q"HyuHH\$pHD$8HL$xHyH9rHH\$p#HD$8HL$xjH\$p$HHHfHT$xz"u HD$XHZHD$XHT$xJ"J"H`]HwHD$8HL$xHyu1Q!HˉHHHHHHqHHrHHH!IH|$(D$H\$pE1E1E1IH@H!ILkPLLjfHnf`pLl$PM}fInftfDEII!H|$(LD$8MtLCXILC|(D9ufDMxMGD=AuMMEMELD$8MMLMtLT$PrfrMfzu3HT$@L\$0HHL$xHT$@H\$pH|$(D$L\$0fz{HS`LJ*HRGHsXILD$PFLHsXIHs`LD$PC<zfz:f:HI0HRy"u HT$HH|CHL$xHT$HY"Y"HH`]H %HtHIH%HgHD$H\$L$3)HD$H\$L$D{I;fUHHHH;{"H{u#HSHfHnfӐHpXHSHD$(H\$0HL$8HL$HPHH H[HD$fHL$0Hyu1Q!HˉHHHHHHIH HQHHH!ЃHt$8H|$(E14Hk!1H]Hk(H]IH@H!ILOPLLIMfHnf`pfInftfDАEMZM!MtL_XMMOd I9uې)IfInftfDEҐMqK H@H]H k(H]HHHtH9 usHBH]Hj(H]HD$H\$HL$'HD$H\$HL$I;fUHHHH;{"H{u$HSH2fHnf֐HxX@H]HD$(H\$0HL$8HL$HPHH H[HD$HL$0Hyu1Q!HˉHHHHHHIH HQHHH!ЃH|$8LD$(19Hl!11H]Hi(1H]HH@H!HMHPLLIMfHnf`pfInftfDАEMZM!MtMXXMMOd fI9u(IfInftfDEҐMqK H@H]Hi(1H]HHHtH9 usHBH]Hh(1H]HD$H\$HL$%HD$H\$HL$I;fPUHH`HHD$pH\$xH${"t$H[HD$pH$H\$xHL$(HPHH H[HD$(HD$8HL$xq"@q"HyuHH\$p HD$8HL$xHyH9rHH\$paHD$8HL$xhH\$pH$HHHHT$xz"u HD$XHңHD$XHT$xJ"J"H`]HHD$8HL$xHyu1Q!HˉHHHHHHqHHrHHH!IH|$ L$H\$pE1E1E1IH@H!ILkPLLjfHnf`pLl$PM}fInftfDEII!H|$ LD$8MtLCXILK|(L9ufDMxMGD=AuMMEMELD$8MMLMtLT$PrfrMfzu3HT$@L\$0H)HL$xHT$@H\$pH|$ L$L\$0fz{HS`LJ*HRGHsXILD$PNLHsXIHs`LD$PC<zfz:f:HI0HRy"u HT$HHHL$xHT$HY"Y"HH`]H %HtHIH%HHD$H\$HL$r!HD$H\$HL${I;f<UHHPHHD$`H\$hHL$p{"t$H@HD$`HL$pH\$hHL$8HPHH H[HD$8HD$(HL$hq"@q"HyuHH\$`lHD$(HL$hHyH9rHH\$`HD$(HL$hkH\$`H|$pHHHD[HT$hz"u HD$HH3HD$HHT$hJ"J"HP]HHD$(HL$hHyu1Q!HˉHHHHHHqHHrHHH!IH|$ LL$pH\$`E1E1E1IH@H!ILkPLLjfHnf`pLl$@M}fInftfDEII!H|$ LD$(MtLCXILK|(L9udfDMxMGD=AuMMEMELD$(MMIMtLT$@rfrMfzHS`LJ*HRkHsXILD$@=L(tNTL@8M MSINLHsXIHs`LD$@C<zfz:f:HJHRy"u!HT$0H5HL$hHT$0Y"Y"HHP]H G%HtHIH?%H@HD$H\$HL$HD$H\$HL$I;ffUHHxH$fDHH;{"H{H$H$H$H$HL$XH|$`HPHH H[HD$XH$Hyu1Q!HˉHHHHHHqHHT$PHrHt$@HHH!H|$ H$L$1_HHHEDHtHx]Hn`(Hx]H!W1Hx]HH`(Hx]HH@H!HH\$0HD$(MHPLLJfHnf`pLL$hM fInftfDEMQM!MtxMPXL\$hMMOdOlI9uLL$8LT$HL\$pH$LF7umHD$(H$HT$PH\$0Ht$@H|$ L$LL$8{LL$hM IfInfInftfDEfDMHL$pHT$HH H@Hx]H_(Hx]HD$H\$HL$H|$ 7HD$H\$HL$H|$ [I;fsUHHxH$fDHH;{"H{H$H$H$H$HL$XH|$`HPHH H[HD$XH$Hyu1Q!HˉHHHHHHqHHT$PHrHt$@HHH!H|$ H$L$1jHHHDHt Hx]H](1Hx]H !11Hx]H](1Hx]HH@H!HH\$0HD$(MHPLLJfHnf`pLL$hM fInftfDE MQM!ѐMtxMPXL\$hMMOdOlI9uLL$8LT$HL\$pH$Lz4ugHD$(H$HT$PH\$0Ht$@H|$ L$LL$8zLL$hM IfInfInftfDEMHL$pHT$HH H@Hx]HK\(1Hx]HD$H\$HL$H|$ jHD$H\$HL$H|$ QLd$M;f?UHHH$HH$H$H$H${"t4HחH$H$H$H$H$H$HPHH H[H$HD$XH$q"@q"HyuHH$'HD$XH$HyH9r"HH$yHD$XH$H$H$H$HHHH$z"u)H$HӖH$H$J"J"Hĸ]HHD$XH$Hyu1Q!HˉHHHHHHqHHT$xHrHt$HHHH!IH|$(L$H$E1E1E1IH@H!ILd$8HD$0L$L\$`LkPLLjfHnf`pL$MmfInftfDEM}M!H$LD$XML{XL$L$IHL$pLKLODL9uLl$@L|$hH$LL0HD$0HT$xH$Ht$HH|$(L$L$L\$`Ld$8Ll$@@L$M}fInfDfMMGD=AuMMEMELD$XMMMtL$rfrMfzu4L\$PH[H$HT$xH$H|$(L$L\$PfzH$H$Ht$hHT=A(u H$HT1-H$I;ISH|H$HQXHt$pHHQ`H$H HIHH$@HsXIL$NL=A(u LL$ML0L"-L$MMKNTHsXHHs`L$A<zfz:f:HI0HRy"u)H$H1H$H$Y"Y"HHĸ]H ;%HtHIH3%HHD$H\$HL$H|$ HD$H\$HL$H|$ D{I;fv:UHH(Ht'HHH1HRH(]!~HD$VHD$I;fv&UHHHP(H9S(t1 $z-H]HD$H\$HD$H\$f9 uCHf9Ku9Hf9Ku/H8Ku&HHH9KuHHH9Ku HHH9K1ɉ1I;fUHHHHfH9KHSH9Pu{HP H9S uqHS0H9P0ugP88S8u^P98S9uUHD$(H\$0HHq,tL9L9Ld$`HHHH$H$H$H\$pHt$hH$DD$/DL$,LT$0L\$PLd$`IMIIM9M9|H)HIHH?I!I\H?HHLH} HHx]HL$hHH@Hx]HD$hHx]HHx]HHx]f{MM9L9L\$XF$A8L9LT$HL)HHH?IRH!HH$HL$@t$EWdL4%HD$fHxHT$HLMRH$H$H$H\$pt$.H$DD$-LL$8L\$XMbL9MLT$hFlE8uM,:L9+fDM9Ld$`LHH@H$H$H$H\$pt$.H$DD$-LL$8LT$hL\$XLd$`IMjI?I=O,*MmIM9uL)HHHH?I!LH$H\$HL$H|$EWdL4%HD$ H|HL$hHH@Hx]HHx]HD$hHx]HHx]HHx]D[VQLGHD$H\$HL$H|$ HD$H\$HL$H|$ I;fUHH@H\$XH|$h11Di“D CHH9HAAEEEIIHEELH1E1EiГD3GHH9~ H9wNH|$hHL$`H\$XHD$8DL$T$D9uLfDH9DD$ HHHd@u'HD$8HL$`T$H\$XH|$hDD$ DL$H1H@]ICfH9EiDEII)FEE)D9usIL)IHH?IL!HL9t1FL\$0DD$$LT$(HLHL$`T$H\$XHt$8H|$hDD$$DL$LT$(L\$0TIILH@]HH@]HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(I;fnUHHPD|$8fD|$HHD$`D$HF&HHD$`1Hg (3Äu3H$&HH ?"(H9uH&H HxH1HD$(H (HD$0HD$(HD$8D$H&HH !(HHHD$H!(HD$ HD$HD$@HHD$HD$HD$`H 4&Ht6H &HHHH L H5&HttHHD$`D$D$HT$@HD$HT$8HHP]=HP]HD$HD$qHB1HHB1ɇI;fv0UHHGHtH&H H{H]I;fv|UHHHD$HHT$(Ht$0H|$8LD$@LHHHLH1L$HT$Hǂ(H H H]HD$(HD$(jI;fUHH(r( uBHHHHHHHHǀ(HD$(H(HH[H Ht$(H ( u dž$H]HD$"HD$8I;fUHH@HD$PHT$D:Dz1HtHH}PHL$8fHD$PHL$8HT$ $9wDFD AH4D9v뢄HD2D6DrDvH1HPHT$Pǂ(H H H@]HD$DHD$UHHexpafHnfpnd 3fHnfp2-byfHnfpte kfHnfp $L$L$L$ Do$$8fHnfppfHnfpD@fInfpDH fInfpDPfMnfEpDXfMnfEpD`fMnfEpDhfMnfEpfLnfLnDffDfEofArfArfEfEfAfDofAr frfAffDfEofArfArfEfEfAfDofArfrfAc@ffDfEofArfArfEfEfAfDofAr frfAffDfEofArfArfEfEfAfDofArfrfADoffDfAofrfArfDfEfAfofr frfffDfAofrfArfDfEfAfofrfrfffDfAofrfArfDfEfAfofr frfffDfAofrfArfDfEfAfofrfrfffDfAofrfArfDfEfAfofr frfffDfAofrfArfDfEfAfofrfrfDffDfAofrfArfDfEfAfofr frfffDfAofrfArfDfEfAfofrfrfoc@ffDfEofArfArfEfEfAfDofAr frfAffDfEofArfArfEfEfAfDofArfrfAffDfEofArfArfEfEfAfDofAr frfAffDfEofArfArfEfEfAfDofArfrfAKS [0DDDfHnfpfHnfpfInfpfInfpfMnfEpfMnfEpfMnfEpfMnfEpfffffEfEfEfEc@kPs`{pDDDDfLnH]I;fvUHH,H]HD$H\$HD$H\$I;feUHHHH=(Hֱ%=/(tH &AIIKH&H%=(tH t&IIKHa&H%=(tH R&IIKH?&H%=(tH 0&IIKH&Hn%=(tH &IIKH &HT%=](tH $&oIIKH&H4%H$=v(t$$d$H$Hs(HlHU(H~#HO(H]I;fv UHHH r H@{UI;fvUHHhH]HD$H\$HD$H\$I;fvUHHHHHH[H]HD$H\$HD$H\$I;fUHHW.uf{J.u{3H\$0MHL$0H1H!VjnuH1HckRHH]ùH]H!VjnuH1HckRHH]HD$H\$$HD$H\$UI;fUHHWf.u{Kf.u{3H\$0茦HL$0H1H!VjnuH1HckRHH]ùH]H!VjnuH1HckRHH]HD$H\$cHD$H\$TI;fv.UHHHD$ fHL$ HHHRH]HD$H\$fHD$H\$I;fv.UHHHD$ HL$ HHHH]HD$H\$fHD$H\$I;fUHH(HHtuHRHztsr@ t0HpH!VjnuH1HHuzHckRHH(]HpH!VjnuH1HHEzHckRHH(]HH(]HD(HH1Ho%f軂HHQn ̔HD$H\$HD$H\$ ̸8 f9 ̋9 HH9 HH9 u HHH9K1ɉ .! f.!H[.!.!!H[f.!f.!!I;fv'UHHHHH9Kt1 HH9H]HD$H\$HD$H\$I;fv-UHHHH9t1HpHKHHSH]HD$H\$[HD$H\$I;fv-UHHHH9t1HpHKHH3H]HD$H\$HD$H\$I;fUHH(Ht5HPDHt2p@ t H9H(]H2HHH(]øH(]D%HH1H{"fHHj wHD$H\$HL$BHD$H\$HL$NI;fUHH(Ht5H@HPHt2p@ t H9H(]H2HHH(]øH(]$HH1H,{!~HH="'ft#LPMYPMaXLjMICI[McH@IAPIAXHD$8MAEIy`t+HgٿH\$@dHD$8HT$HH9@{='tH@xI Hǂ@ƂH==X'tHJI3L$/HǂHP0H~HL$0H)HлzxHD$8L$/='t HPXIH@X1HH`gL$/H`]HY0HA(QHHYHL$xorHT$pHr0HHr0H9ruHB0HHD$@tH`]LLD$PHL$XHHHL$xH|$PH`]HL$pyuH\腃HX Hwv~H'daHD$@sHX HGv~HD$H\$L$H|$ iHD$H\$L$H|$ I;fvUHHHBHhsH]wI;fhUHH8H\$PH|$`Ht$hL@`MtEM9tHHHsH=HHH\+HH|HHHH)ʈP)HH)ʈP*H@H]H< 9H 9HD$HD$fLd$M;f*UHHH$PHt$D>D~D~ D~0D~91D< HHI|H$H$H$H$xfu@+D$h1x@@HILLOMAL GFT IIM}Mt@H|D$*x@HILLGMII?I!J| IAMOL L9t9HLL8H$H$H$H$Ht$A1 HfDH9qD@*D;L9|HDD8+MM[II{MM@MII?M!IUNDEA3MAL$L= H$F<>G<(IIHt$M}MtBD*LB&IILRMII?M!NDIMOLu M9tTH$Dd$gLLLH$H$H$H$Ht$H$ADd$gED$A^vA.LM@(LII7FdF}H<H(LHI BDF H H[)fHIHI H$Hzt1HfB)HĘ]D HHI|H$1r Hr H<0H9|z*H9|H:HfDHsdH40HvDD+HsKHD$xt+D8rDH$HH[HRH HHD$xH$H$r֞ўHIŞHI蹞HI譞HI衞蛞HI菞芞HI{vHIjIxfDHDD%Ht$ 1HHHH]HH9v4H|HtHL$HL$8HHT$8HD$0HL$HT$(Ht$ HHH9Ju9=&'tHHB>%UHD$0H 1>%HH'>%HD$XpHc>'D-Hj 3-HD$hyHD$HHHHsR3VH!ʾ HH!HH|LM@H9t HuIH@Ld$M;fUHHHHQtNQHHw:H5[$HQH2HQ@,HQ8&HQP HQpHQ8HQ8HQPHQ01H0H~@DBIHH$$Ht$xHL$hHT$`LD$XH|$DJLL$HE1E1E1:LQHL$hHT$`$Ht$xH|$LD$XLL$HILd$(H$I9hLn@fM9LT$ L$Ld$(HN8H$B\H,HD$PHL$ H$HD$x荿H$DoH$H\$8H$HuHL$xHA0oH\$0HD$pHL$(HT$(HHD$pH\$0HHT$HfH9HL$(HHL$@HT$X HD$hH$HL$@HT$X\ HD$hQHL$PH9t15H$oHL$8H9t1HH$ؑHL$8HL$PJH$HuHL$`HD$hcnH$t HT$0 HT$0H9t1HH\$pcHT$0u HL$PHL$@HT$X\ HD$h8HL$ Hu$H$$t3='u H$H$H|II{HDH$H$UtLX11HĠ]H$H\$8HĠ]UPHDHD$\$uHD$\$&I;fUHH8HM'DH d%Ht HHI11HL$HT$(1HH9~[HD$ HHHt$0HH\$1/H|$HH|$HHD$ HL$HT$(H\$Ht$0H9|띐H'H8]8t3I;f|UHHHD$ H\$(HL$0H8 3>=L'u/HL$0HHL$ HHHL$(HHDxHHa "VHL$0I HT$ ISHt$(IsHD$H\$HL$sHD$H\$HL$RI;fUHHH\$0HL$8@HtmHPHT$Hk f=='u.HL$8HHL$HHHL$0HHDxHH "芌HL$8I HT$ISHt$0Is1HD$H\$HL$rHD$H\$HL$BI;fvJUHH HD$0H\$8HHùHHD$HHL$8HD$0{HD$H ]HD$H\$ArHD$H\$I;fvDUHH HD$0H\$8HH1HxHD$HT$0H H\$8衒HD$H ]HD$H\$qHD$H\$I;fhUHH0HD$@Hux 1"H\$HHPHH! H\$HHHD$@IV0HhH/dxdvHI(~I1IHIIH1IhIIv0LhI8H(~H1IIHH1LhIuSLD$(HL$L='tHD$ HHD$@GHD$ HHD$(HT$@H HD$H0]HH0]HH0]H :HL$@HI='uHHDxHH X蓉I HD$H\$@pHD$H\$lI;fUHH8HHHHT$(HƸHHVHHHH9LD$(1IyHL9}IH?tHH\$PHL$XHt$0HHRHHHDHHH@HH!HD$HHD$ HHHB1۹ HT$ HHt$HHHHHQHH9HT$0H\$ H|$(1HHH9}LMtME@I!QHT$PzH! IxH!fH9s)IHLLMuHT9HT$XHT9HH8]荋MBI!I9s&MIM\MuLRNLNTfdVHD$H\$HL$ nHD$H\$HL$I;fUHHPHPHHT$ HHgHQH@H9SHL$HH\$h11Ht$(HHL$HH\$hHHHt$ H9}+HD$(HDHtHL$HH\$hHt$(HMF0MhI/dxdvK I(~I1HIIH1MhHMF0MhKI(~I1IIIH1MhIu`LT$@H|$8Ht$(LH='tHD$0HHD$H&HD$0HHD$@HT$HH HD$(H\$8HP]HHHP]HHHP]@HD$H\$&lHD$H\$7I;fUHH8HHHHT$(HƸHHVHIHH9LL$(1MBHL9}MI8tHH\$PHL$XH|$`Ht$0HHRHHHDHHH@HH!HT$HrHt$ HRH@HH 1۹ HT$ HHt$HHHHHQHH9HT$0H\$ H|$(1HHH9}LMtME@I!VHT$PzH!HH!H9s2LNLfMuJTHT$XJTHT$`JTHH8]tII!I9s.O@N\MuLBLZNLNDN\@W6HD$H\$HL$H|$ iHD$H\$HL$H|$ I;fvUHHH+&aiI;fv]UHHHD$ H\$(HKHHKHH+HL$ HT$(HHHHHH1ÄtH]HD$H\$iHD$H\$HHHt&HHH HHHH„tH1I;fvMUHHHD$(HH1Hf HuHD$(fH]H2"$.HD$chHD$I;fvzUHHxtZHt HHH1HHQHHtxt$Ht HPH1HHHHH]HHHD$H\$gHD$H\$bI;fUHHHHtUxftfHt HPH1HrH0HBHHtxt(Ht HXH1HHH]1H]HHHD$fHD$QI;fUHHHH9tdxftiHt HHH1HHt HXH1HYHHt H@H1@HtHrHtHHD9H]fH]HA HD$H\$4fHD$H\$EI;fvvUHHuf;H]É\$H} ;D$PH @H eHD$eHD$pI;fUHH(IV0LH92HD$8Ht$ H)%H:HHEHL$Ht$ HV0ƂHD$8HL$uBHV0Ƃ1yHj)%HHtH$HD${EWdL4%H(]H rHD$dHD$fUHH0HD$@Lt$(H}H(%H:HEH\$ u*H\$HEWdL4%H$H\$HHHD$H0]HH)HHx(%H:tH~HT$(HR0ƂHD$@H1MH>(%HHtH$HD$zEWdL4%HL$(HQ0ƂHT$@u/[EWdL4%H$HL$DH9GHT$@ H0]HT$(Hr0ƆHD$@H\$ uKHT$(HR0ƂH1苐H|'%HHtH$HD$yEWdL4%땸H0]I;fv@UHHIN0LH9t Hu H]H D;HD$H\$kbHD$H\$I;fv`UHHIN0LH9t6HD$(H\$0HD$(H\$0D$@D$H]H) @HD$H\$aHD$H\${UHH HD$0IV0HT$0HT$0Hȅ})H0HHӎHL$0H|иH ]1H ]I;fUHH$fDHDH $AHuH]HD$Hc "HD$8H HD$f{H.*D[vHD6DHDo}I`$I;fvUHH,H]HD$`HD$I;fUHHPIN0@‰t;HD$`Lt$@L='HHOHt$(11E1E1E1tHP]IHLH\$ rXf@t9IHHIHILDHLL"AEtuHL@u:r3IHILI$A@Et LLL@|$LD$0DL$@uEuL %L9DT$I9|TL^M9&EWdL4%HD$`LHL$@HHt$(LD$0H\$ DT$DL$|$$tEWdL4%HD$`LHL$@HHt$(LD$0H\$ DT$DL$|$EudHT$uEWdL4%HD$@HH0H$HH@0HVHL$@HT$Ht$(|$LD$0DL$HHD$`IHHuE1L%MII9tLZMHQ0LHQ0HMAI ILI@IEILI„t:H\$8HVHL$@HQ0HAH\$8Ht$(LT$`E11HQ0HǂMLA7HA0Ht5HD$HxEWdL4%H$HL$ H)HHL$HHHP]HA0Ht5HD$H1EWdL4%H$HL$ H)HHL$HHHP]HO8/H fHD$[HD$I;fvUHH,H]HD$[HD$I;fUHH(Lt$ Hz'fH1YI~0I/dxdvLhI(~M1HLHIH1ЉLhH9EމHH HȄtHD$8H11҆11}t-HL$ HA0IV0utHAXHL$ HQ0HQ0|utHAH(]H6 :H )HHHtZ rTHu%HT$BrEWdL4%H $HD$8HT$HHHHHH„t 1@0H11H؉HD$YHD$/I;fUHH0HIv0H/dxdvHhI(~I1IHIIH1ЉHH Hh҄uVtAsH5%I9t H0]MItlA reLT$LIM@@tLT$HtDLIMuE1 H= %IHL9tIzIL14H0]1fMHLIMu1H5%HHL9tIrHHt HHH8rH5ǜ%I9uH HuHHj1DH9uLIHȁI MSHt#0uH0)H0]HHHIHuH9tLHHHH1HIHLYIHIHuLL$(HT$ Ht$HHH)IIHH)HHH?HHIF0HHPHT$ LL$(LT$VHD$\$HL$WHD$\$HL$3HtIH=t4H| H9#% H H q#%HHH\HАH H I;fUHHH9'|_HPHH|NHHHԁ'HHH@HH!H|'HHH@HH!H5'H)'HH]諚覚HI& HD$UHD$D[I;fUHH8f=j$fDH'HfHHHrfH7HȀ'HrHH@v H'H='@1HHDRH$4@v1H5$H+zhH>H| H=u$H9~tHJhHD$0H\$84HT$ Ht$0džDGDuAtIFt$@t 111t 111豜HT$ HZhHD$8H@]HD$H\$.EHD$H\$@;I;fUHHHIV0IV0ǂHHtHv8H5p'H=wHxHLŕ$A<8$HHH=L$A<8HD?L&$AHD$H\$I;fHUHHHIV0IV0ǂHHtHv8H5j'HxHw*HxHHLl$A<8%HHHL$A<8HDD?L ˏ$AUHHHIV0IV0ǂHHtHv8H5HL$(H)H>H| H=҄$H9~tHD$0H\$8HL$(HT$Ht$0džDGDuAtIF111(t 111L$ht!HL$ydtHD$(H\$86HL$HL$IF0IF0HD$@HT$`Ht3Hzt,HHtH[8He'HHSHQhHSOHD$@QuAtIFHD$8H\$(HH]HD$H\$L$8HD$H\$L$I;fUHH=j'tXDHt4Hu*HuHHDHH 'H]À=g'tH g'I9uHf'1H]HD$H\$8HD$H\$GI;fUHH(=f'tHf'I9uHf'=t%HD$8H\$@=t%u11"HL$H;9HL$HHHHD$8H\$@HtoHt$ HHHHHT$ Pv NP H 1ۆYuAtIFHD$8H\$@=ci'tHu HH(]HD$H\$HL$6HD$H\$HL$I;fvFUHHIN0HHu Lt$HL$HH)HH}HzH]HD$j6HD$I;fv{UHH H HL$6H)HHHT$HHGHfSHL$H\$H9s'AtH\$HF3HL$H\$H ]HD$H\$5HD$H\$aI;fv%UHHHHùH@H]HD$5HD$I;fUHH HHtHR8Ha'HtqH5$HrH5$Hu H@Hu16HD$0H\$8HL$@HT$HgHcHD$0HT$H\$8HHL$@H2%H ]H_8HD$H\$HL$4HD$H\$HL$%H=~ HIN0H/dxdvHhH(~H1HHHHH1ЉHH WH*fH~HH4HIH/MIAI,AWH*WI*HhH i$B \X\YQYX y\Wf.vWWH*YY,1UHH8HD$HHHT$HT$HT$HD$ H\$(HL$0HD$H$1EWdL4%HD$H8]I;fv0UHH HBHZHJ HRHT$HT$HH ]E2I;fUHHHH|DHt HSHTH vD0H=HD$XHL$hH\$ IV0IV0HT$0HtHHt H+H2`'f;HD$XHL$hHT$0H\$ H5`'Ht$8LFNM@HH\$(I!NLFIwH>uXH'H < LHT$8HHHH {LHH]H>LFN LNDEQLDAuAftIFH|$@HB_'H9uH,_'HD$XHL$hH|$@HɆ'H9t%HHIH\$XHH'{IH|$@HHH]H~\'H HH H5n\'HtH|$ HLD$(L!HzHD$XHL$hHHT$0H ^'H9tH ;Hb^'H #H * Hp HD$H\$HL$cmHD$H\$HL$/I;fUHH@Ht$pHHHRHH!L L9HLH0['LPM MIHL!I9sjxt`HD$PHT$0H\$(HL)HT$8LHHHLLHT$PHBH\$8HWh'ILrOHD$PHT$0H\$(HXHH@]1H@]HD$H\$HL$H|$ Ht$(LD$0 /HD$H\$HL$H|$ Ht$(LD$0UHH HHHH1GH ]UHH HPHHHH#H ]UHH Ht$P=['t@Ht;Hxt4Hr.H\$8HL$@H|$HHHH1HL$@H\$8H|$HHHHNHT$P1HH }YHHHHH)HH@tHƒ=0['tHAGIIsHH ]UHH =Z't*HHHt!HD$0H\$8HH1HD$0H\$8HHHKH ]UHH8HD$HH\$PHL$XHHhHPH)Ӌp\HH HHH\$0aHt$PHT$0H9uHT$XLL$HI9Qhu H8]HT$XII)L2LH8]UHH PbHxhvlt HHH HHt>r@uHr HT$H\$HapHT$H\$HHHHH ]1HH1H ]H\$8 H\$8H1HH ]1HH1H ]UHHPbuESuHS fH\$ HL$(HoHL$(H\$ HHHHHHH]1HH1H]UHH H|$HHt$PH|$HLːHHHLGIL9r LLHHHH9WuHW .HL$HD$HDnHL$Ht$PH|$HHD$IH)HMHL9sPMI)IIHLAIHMXII@MM!MBII@MM!IL!HM1HH1HH ]1HH1HH ]HHH4H ]UHH0H|$XH3I99fDHLL9r=H)LMHLH1IIHH)HHHHHHLD$hH|$(IH)H9wwYwLD@uHw HT$ HgmHT$ H|$(LD$hHƄI9v H6H1HH1H0]DOAuLO =H\$ Ht$LT$HT$HmHT$H\$ Ht$H|$(LD$hLT$IHL)HHAIH@MM!IM#1LHLLM9sKHL)HHAIIILQIH@MM!MCLII@MM!IL!HHH0]HHHAILH@HI!IL!M9sJHL)HHHIILIIH@MI!IrLHI@ML!HH!H1H0]1HH1H0]lUHH`HH H H=T'HHHH@r13Ld&AIDHtII AJ1DHu!HK%Ht LHR1E11@rc@u H9BwH9BpwH`]HD$pH\$xH$Iv0HHt$XHtHHH HH9HT$xH*H`]MP%MIMP%MM$MMD$HT$pL$I4fHHT$pIH)LL$xM1L\$XMP%IM9X%sH|$PHL$8H\$0HD$(LD$HLT$@FAHD$(HL$8HT$pH\$0H|$PLD$HLL$xLT$@L\$X1H`]LP%MILP%LMHT$pL$I4fHtHT$XLP%IDL9X%sH|$PHL$8Ht$HH\$0HD$(@HD$(HL$8HT$XH\$0Ht$HH|$PhHH9~9M ML9rI9vHL)I(D H`]H>I%Ht LHRf1E11HH9~8M MfL9rI9vHL)I8D; H`]H`]H (UHH`HH H Hc=[Q'Iv0HIIII@rE1-L &AOMtHH %MHfE1HD$pHT$@H$Ht$X@HtHHL3HLD!H`]MP%MIMP%M M HT$pL$I4fHtvHT$pH)LD$@N LT$XMP%IM9X%sH|$PHL$8H\$0LL$HHD$(R>HD$(HL$8HT$pH\$0H|$PLD$@LL$HLT$XRH`]HU (NI;fUHHHD$ PbDu"u 1v@u HxhvxetHtHD?HD$ HPhHHw!XbHPH€xdHH]HHH9HD$ HD$f!HD$1HH Hu1HPhH@HHHHHFHHH HPhHpHH HHH7H)HpHHHFHHP H HphHxIHILNI)IwIH)HH HHʃ?HH<2M ؐIH[H@vLLBIHHRI1HHHAIHH@HL!HH#HHI@HH!H !IHHHH@HH!HH!HUHHWuHW 3HD$H\$ HL$(H|$0H-dHL$(H\$ H|$0HHD$H7HHtHII:HHH@HH!HHHhHpLALIwLH)HHI؃?HL H I@vsL[IHH[LIHLAIILIIIMI4HvI@MM!M#I MM!H@HI!IL#.M L.2HHLHI4H@ML!HHHH#H HHH]IHIHMIMLH@MM!L LLH9wHH@H HHH8I;fUHHP0p2f9t%HD$(ft$Hx8HA@IDHHR@H[HHHH3H]øH]H?9HD$xHD$NI;fUHH@HD$PH\$XHL$`H|$hH @{HD$X,HD$PHHcL$'eD蛝H\ *D$'HD$8HD$PHHpHL$0H@HD$([Hx HD$(D[Ht ʧHD$0D;H}t 誧HD$8D軡V,GHD$`fHu IN0Ɓ"H>@趜H EHD$`軣H_ *HD$hD蛣H_  ŜHZc HL$`H|$hjjD;Hŧ ʦ腜DHD$H\$HL$H|$ BHD$H\$HL$H|$ UHH0HD$@H\$HHL$PHHHMF0MLD$(AIHAAH1HHI9-fEuHrzuH8AHDHL$Ht$ DT$HHT$HuaIP%HI9X%s/4HD$@HL$HT$H\$HHt$ LD$(LL$PDT$IP%IIMP%HHxH<MP%IDM9X%s8H|$m4HD$@HL$HT$H\$HHt$ H|$LD$(LL$PDT$MP%MIMP%HIHISEH0]UHHXHHD$hH98"=E'tJH\$pHL$xPuHP Y\HL$xH\$pHHD$hIv0HHt$P1E1HX]H@H9xH?u DHAAsL LLP%IfDL9X%sKH|$DD$LL$HLT$@HT$03HD$hHL$xHT$0H\$pHt$PH|$DD$LL$HLT$@LP%MILP%M M M MK=HX]H$YHD$8H\$(HL$hH HL$ ֘H (eHD$8H\$(VHl EHD$ [HM *H$f;趚јH $D[H )JI;fUHH0HD$@HHCHHD$HHD$ H k'@HT$ H@wGHD$(HL$HHD$@pH\$(HL$ fuH0]H H@2HD$H\$HD$H\$9UHH11LLHLHHHHs8ILHArH0H1(Hu 111E1HLEMAIHIIH@MM!M AfrLH9wLSHHH)LWIIL)IHt#D+HOHIHIIZL H4I)LI2;HHHIHMSH@ML!H AHHMMwɃfHv0HHH!HHHHH@ML!H HHH)HHރHHHEL ڐHIH9rvH)IHHH@ML!IHHuHuH9)L$H4?H9w HH I)HHLL9w6HHHHLH@ML!I DIIHIsMv4LHH<H@ML!HH!HHH@HH!I HILHrHIHIII!L H< LH@vHt7HƸ9H1HHȺHH@ML!HH!HH @WHLEMAIHIIH@MM!L ArLD!HHHHw]EIHIL ҐHHIHLfH9rAMvA9HHHH I4IHIIHTI;fUHH HD$HHD$HD$HD$HD$H$!EWdL4%1HL$H>%HT0HH=|H\$Hu HHu1HcHT$H HD$H ]0KI;fvSUHHHJHL$H`%H7'OcHL$H &H2%-H]"fI;f?UHH0fHHT0r`ff9r2u HDŽpHpHHD$@HL$(H5#=%H95&9rXn\$HHT$ H IHH5&H1H! HW')HL$ Q`qfH)HT$t$H@HH4Hv@H@uHT$@HZ(HX(HB(H&HHP`f9P2tiHD$ &PXP`fPfP`HphHHX H H)HT$@HJHF'fHT$@HBHt$(H|$ H|0H0]H hHYk WHϐ FH D5H{ ($Hx+HD$\$IHD$\$I;fUHH@H H9dH\$XL$`HH ɈL$HHHD$(HH HD$8gH%H\$(L$!HHD$ HKU'&HL$8HH0HH8H)U'd'L$`HL$0HL$8H2F'H HL$ HY H HD'1*HL$0DHsgH IH&H5&H HIXHҺ(HEHH\$ HD$ HHHT$XHHHp;HD$ H@]H)HUi SHDi BHD$H\$L$n HD$H\$L$:I;fUHHHHD$XHHHL$@H@&T$11HHt$8HH|0L8%L9tH\$0H|$(O`WffGfH)HL$ H{S'$L$L$HL$0HH HI@HT$ HHFS'%H\$(HKhHT$ HHPD'H L$9KXtK2S`)HShHHt$8H)Ht$8Ht$8HL$0H IHH&H THL$0H8%Ht$XHT0HT$HL7%Ht$8HL$@DxHR' $HL$XHQ(HP(HA(HlR'$HL$XHpD9DyDy Dy0H@uH4B'H\$8HL$@eHH]HD$U HD$ I;fUHH &9t2Y9u1HD$(HD$( &HT$(H]H]ÉL$T$藋Hf &D$;H  D$!蛍趋Hb EHD$z HD$0I;ftUHHhHDHDGHD$xHX$ H 1c=E%u11 HtYHD$X8HL$XPv ʉP H 1ۆZuAtIFD$D$ 6&L$Hɹ(HEHL$HHT$xHH@%DHu1HD$@=E%u11 HHD$@HtbHL$PHHL$PPv ʉPH 1@2ruAtIFHD$@H2P`H9t4X0f9t+f"HD$@HH8P0HˉHHX8Hh]H 2?1%u!pH=&1%7@@tӋ5&5&t$D$T$T$dHD$(HȋT$HHD$(JHɹ(HEHT$xH H@HtKHD$@HHD$GHD$8tHD$8;K\$L$H_0%B1HD$@&HD$(T$HD$(HȋT$HHD$(JHɹ(HEHT$xH H@XHHD$@HHD$oFHD$0tHD$0JHD$0H\$0f9C2uHL$xHT$HH H@XWfC0\$L$H/%A1HD$@M\$L$He/%A=UB%u11H\$ HtXHD$`DHL$`Pv ʉP H 1ۆZuAtIFHD$xLHtHT$ H1Hh]HD"HD$HD$nI;fUHHf{` =&QsX9u y{X9 ʇKXft`S2s`H)H~'Hɹ(HEHH@I:Hɹ(HEHH@X"fH\$HD$1HH]HJ $趷HD$H\$HD$H\$I;fv`UHH HHDs9H5ZS$H% zHtHD$HD$H ]1H ]HD{ HD$PHD$I;fUHH H &HL$H&H\$1+HD$HH 2H+HD$HHL$H\$H9|H &HL$H&H\$1+HD$HH HߜHD$HHL$H\$H9|$-'H ]@;I;fUHH 6%9 6%uKH Q5%Hu) 6%6%9wH -6%H.6%12u ,'H]Hw 蛵HH9} H46tH9}1OI;fUHH H|$HfD@H&HHHH@HHt>HHH%H)HHHHHپH=s9H 11@Ht@t H ]@11H ]1H ]HH@fHD$0H\$8HL$@gbH 9HD$0g肄f蛂6H ŌHD$8;HHE 誌HD$@DH]E 芌EHrF HL$8H|$@H~E HL$0HIF0ƀ"H+ 葳HD$H\$HL$H|$ @t$(LD$0HD$H\$HL$H|$ t$(LD$0I;fUHHHD$(1H D%蒊IF0HHT$(H HXHD$HD$1DIF0HHD$*`H ?D%H]HD$HD$[L$M;fUHHHL$HD9DyDy Dy0H@fuD9DyDy HDŽ$D$'HDŽ$H H$H$H$H$H$HL$'H$HL$HH$H$; H$~OH@ ):ˁH$H2H$xHL$H110H]H$HH$pHH$xH$`H98H$pH$H$HqH$hHyH$`LL$X~uH1f蛖 H]M H^0H聖HZG H$H$H$(H$H$`H9t@Htv~豀~H$(H@0[?H$H$PF~H\] ՈH$H$PD軈HB 誈H$`f6Q~H$XsUH$hxu!}Ho @[~}H 0;}H$Xs*}H~ =}H$XHsLsFH$hxuC}H -҇}&}HP ?赇p} }Fa}H$hH$H|HA {H$H$fHWA UH$Hȃ~|H$(H@(jHXH$@H$8H$(HJ(H$H$ HcH$0H$8ZH$@SH$H\$0|Ht? 襆H$H\$0蓆H? 肆f;|H$8H$@RHD$@H$(HR(H$H{HB 5H$H$ DH| H$0f蛀H> H$HHT$@H)Up}{SH$(H@(H$H{H;L @蛅H$HHB> f{6{zHV D[{H$(H@ DHUH$@H$8H$(HJ H$H$HcH$0H$8ZH$@QH$H\$()zH= 踄H$H\$(覄H= 蕄PzH$8H$@PHD$8H$(HR H$HyH@ JH$H$5H$H$0~H< H$HHT$8H)q{yH$(H@ H$H)yHTJ 踃H$H+H_< 蚃Uyx&{Ay|$'uH 8ɪxH٫ "SyH2DI;f6UHHHqHz LBLJHR@@t@t HH]HD$XHL$hHT$@LD$0LL$8H|$(=('~FH\$`xH $藂HD$X HS; {6xHL$hH\$`HHT$HL$H\$ HD$l==('~wywH&HL$XHHHH@HHtNHHHHH)HHHHHHH H11Ht{ HT$@H@H9rHDH9sHHtAHT$0HH2}#s]H[Ht$(H HDHL$hHLHHL$81HH]øHH]øHH]H[HYHHH]H2HH@HD$H\$HL$HD$H\$HL$I;fvVUHH(LBEHAt*Au0IPH >$H1Hf蛻HZHL*H(]HD$:HD$I;fKUHH`HD$pH5z&Ht$XH=v&H|$P1HH9LL &AI@HL$HOLD$8A1HH}M ME EtHT$0DL$1HYLHsIHAAEtHL$@LOL\$(M:Ll$ MeHD$pHL$@HT$0HHt$XH|$PLD$8DL$LT$HL\$(MtLd$ H0I{I|$LLHHքuH`]H`]H@HD$aHD$I;f=UHHHHtyH\$0HD$(H^Ht\HD$HHxHL$@IN0IN0HL$8K5HL$HIHT$0H)HT$HD$@ʑHL$HH\$HH]HH]HH2@Ht-H~H9u ~tH9wuۀ~v Ht$(211HD$ Hu^H&HIHHHH@H H΁HڄHH2H HD$@SHL$8ZuAtIFHL$ fHtfHZ'譐H 'H+ 'H 'H 'HT$ H H'H 'Ӕ="'tHD$0H\$(ۊHH]HH]H@c HH:Ht5LGI9uu H9w0tI9I9wuԀvHH11HHD$H\$HD$H\$I;fUHHHH\$`HL$hH|$pHD$XIV0IV0HT$HHt$@L5MH|$8HL$0H\$(D@HEt L@HE1EH@;HuLHH D'袻HD$ HD$ HT$XHHHXHHStHD$ HL$@H5HL$0HT$H\$(Ht$@H|$8IHD$XEHIO I='t.OT O\(Od0MIMSIKMkI{ Mc(K\ KL(K|0AHyAxu4LʄHL$@Hǁ5Ht$XHVHT$HH5HuAtIFHH] HD$H\$HL$H|$ HD$H\$HL$H|$ I;fUHH(HD$8HD$8HؐHHHtHQHHHStHHD$ DHT$8HJHvHD$ nLMMLHH\$ . @H@軃H(]HD$HD$Ld$M;f&UHHH$IV0H<%H$L5%LD$xMN0L$1111E1ҐHLLT$0Ht$@H|$8fL9LMM5MIǃ5HtD[fIeHL$pLd$PH\$hO,[IMIII?M!E|$N,+Mm E9v}D|$,E)DL$,I@M9L\$HKM)MGHI?L!I<H H0 LLL@[H\$hCHT$HLD$PA)P8I|$ HR0 LLپ"H\$hSLD$PAPSA@{ftH|$8H$HH|$8HE1H\$PMtBAxtHt$@9H|$`H\$XH$H@LHt$@HH\$XH|$`Ht$@H$HL$pH$LD$xL$LT$0IfIIIIDHt)蔀H|$8HH$Ht$@L$LT$0HtHHxfHHLH9 %u@HHAHAuAtIFHĐ]H7 4;HD$aHD$I;f-UHH HD$0HHD$HL$0HQ@H9vH9v H)H1҅t<5'AAN)9Gօv t!HD$D$1+HD$όH ]Ht$HH\$D$9s'H@HtHH뼐HD$yHD$H ]HD$@HD$I;fUHHHD$(HHD$趇HL$(1ۇ5'N)9Gޅu u\$v HD$贋1D$ H=DD$ L$9rH]HD$fHD$1I;fUHH0#HH2%H 1ɇHHHn%I}H"%fLt$(IN0HL$(HI0LHH%ruAtIFHD$1:HD HD(HD0H HLHL$HHD$HO%pH9}THHL$H4IHT H|(LD0=B'ftLL(LT0L\ MgM#MKMSjLt$ IN0HL$ HI0LH1@2r}AnIFahBf;UHHHD$(H|$@HL$8HHH{HD$(H 'HHH\$8HL$@H]UHHHD$(H\$0HHHT$HHHL$H'H HD$(H\$0VH]I;fUHH@H|$hH\$XHL$`HH\$0HHHHt{H\$`HKHtbHL$XH4 HH<HHH!H\$ HHL$8H)Ht$(HH)ѐHH\$(Hv HD$8HD$ H\$XH@]H\$0H@]11H@]HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(I;fvEUHH H|$HHD$0H\$8Ht$PHHD$0H\$8HL$HH|$Pf;H ]HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(yUHH0HL$PHD$@H\$HHù"E11 H@H uBH\$ 0dH @nvd$EWdL4%H\$ H u5cH ;{n6d$EWdL4%1H0]HD$(H\$@HL$HH|$PHD$(H0]I;fUHH HL  'IɐLLv+$='t tHD$0H\$8t[H$H\$D$[EWdL4%|$uHD$0H\$8H +$HD$0H\$8H$H\$D$ EWdL4%|$u HD$0H\$8YE1H*$DHD$0H\$82E1HuHtH\$8H M) {HD$0H\$8='~91ɿ2E1HT$0H9u!HuH\$8H ) /H ]H 4ؓHU ǓHD$H\$HD$H\$(I;fUHH ='H ]HD$0H\$82E1H tp H$`H me EH=&t HPIHZHPHo H$`H q !H=&t HPIHhZHP11H DH~HL$HHo H$`H [ 薨HT$HH='&t HPIH ZHPHFo H$`H d MH=&u L$`#Hd$LPML$`MSISHYHPL6$H$L$L$1H@HL9L$D2E3DrEsDr Es Dr0Es0$PuH$XH$H$H$ 1Ha L A[H$HHH'n H@;H=&t HPIHUHPH$H$XL$&Hh]Bf;6HHCI;fUHH={&HD$(H\$0HL$8H|$@Ht$HHG&^H C&HtyeuqH=8&uC1H 'H&H-&HH &H&=E&u1>H &HQH&H&HQH &H &QHeYH=N&uH\$@Ht$HH|$(LL$0NH\Ht0H|8LD fLL$0M I[H\$@I[IsHt$HIs I{(H|$(I{0MC8LLLD$8LD(H\0Ht8H| H#&H&aH& H]HeSHHHHHHH)HB$ H& HH@|HF pHD$H\$HL$H|$ Ht$(¼HD$H\$HL$H|$ Ht$(I;fv=UHH <&u%1H /&t HhVH]XI;fv-UHHH`H& H]HD$H\$HD$H\$I;fvOUHHHq&[H }&HL$H y&HL$HK&_HD$H\$H]膻L$M;fUHHL$H&M[=&u H$H 3$H$IIKH$H&j_11H$HD$8H&ZH &H&Ht:HL$@H $HL$hHd&_HD$@HL$8H$DH\QH5& nHD$8H$aH$HL$PHHHL$HH&CZL$0H &H &HT$@HJH&H&s^HD$HHL$PH$HHD$@pt$0*D:HD8t$4yHȋ\$0HL$XH$NHet$4HH$11 xT$3tD$2H$HH]HDH9LMH8EDd&E9IuHD$pL$ H &q=&u H$H$H胾IIsHHD$pH$H$H|$xN H;H$AEWdL4%&T$R$ &9} >$H&Hd$HQ$HD$`H$HEWdL4%H$HD$XH$D$8D|$@HD$PHH$HD$8H$H$H$芢EWdL4%HD$PH$H$H ;H$ZEWdL4%0H c$H\$XHc &Hd&H$H$DD$4jHL$XH&3HD$`Ht 1HD$` 8$t&.$1H"$ Hh:BHD$`H& &u a&$$;xH &IF0IF0H$EWdL4%HcT$H $H+L$HHH $H $HH$HD$XH$HD$8H$H$H$ϠEWdL4%HN#11tH$Qu&AtIFHT$`HHT$`HHT$`Ht H$9ןH$11&tT$3tD$2H$HH]DT$4DHD$hIcH$B#Hc -H$d(HY -HD$h'Hb -D$4'*%E#H  TnH]HD$H\$L$HD$H\$L$@;I;fvkUHH8LBLD$(HRHT$0AIHIxIp1 cHT$0HLD$(M@L)HF$LL$$HH&0H8]誟I;fv8UHHHJHL$@;^HT$HZHJHzH]f[I;fv3UHHBHJ=%&tH7I ISH]fLd$M;fUHHH$111 nnQHǀHzHD$hHD$8HD$pHD$hH$f蛝EWdL4%H#11f[q=&I$9z$uGH$Hu1^$D[$A9wH$L$11H#111 m$&H6HT$xƄ$ H25H$HT$xH$謜EWdL4%=&tH"#11epD&uEWdL4%H$HD$0H$IN0Hǁ=&tH IH6 HD$8D|$@HD$PHHD$hHD$8HD$pHD$hH$EWdL4%HD$PHX$HY$D$/HHD$XHD$/HD$`HD$XH$蘛EWdL4%D$/u=$tn=$uet &$IF0Hǀ=&mH I YH$11nHĐ]f1H 5&H&1HL$0,CN$9Hs$11nHc &=e$H&H\$0D$8H\$@HL$HH|$PHĐ]ÃbHL9}L E fEtL9}1ƛAI;fvuUHH0HBHD$(EWdL4%Hc@$H $HT$(H+JHH $H $HJHzHr1]HL$(H+AH#$H0]D蛚vI;fUHH0HJHL$(H$HT$ H$H\$1HD$HHL$(HT$ H\$H9}1HD$HHD$蚶HD$HX(uHD$(H0]lI;fv8UHHHJHL$@{XHT$HZHJHzH]f蛙I;fvSUHH HrHt$JIV0HHD$RHD$cHD$ NH ]"fI;fUHHuVQv?Qw H@JwH@HtHA %|H]øH]1H]øH]HT$HJHHt"HL$HA`{@t۸H]1H]HD$@ۘHD$1I;fUHH0 C$L$ Ht$He$L$ HH95H5$H9bHT$H\$H j$HtHL$HH|$HHL$HHL$ HHT$H9H,$H9HL$ H$HHD$(YtH $HT$fH9H$H4H|$ H9=&tH %I3IKH4H $H9sfH $=&uHt$(HHt$(I3I[H4HHD$9sH$H $H0]C;61,AI;fUUHH0H $H9 $t/uH$H+$H$H$1H0]øH0]HT$HH5^$H9}pH5$fH9HT$H5s$HHD$( JHT$(f@t@u H@zw@wH@GH $H)H $1H $H $H0]HT$HB f{aHL$HQHHu+HT$ HB`ZaHL$ HQHHu ²蛕L$@M;f UHH8H$PH$HH$@D$?H5&&uˆz&H;&H$EWdL4%IF0H $H$IF0Hǀ=,&tHIH$H? Hƀ"HH$f{MHH$H$H$H$H$˒EWdL4%D$%HH$(HT$%H$0H$(H$茒EWdL4%H$Ƃ"H$H=$u11eDHt_H$ΙH$Pv ʉPH 1@2ruAtIFH$Hǁ=&ftH蒬IHǁ=ѽ& H&H&H)H$yEWdL4%EWdL4%H$H$(Hiʚ;HcHH$H$@HH)Hv$Hg$H @&HHHS&HH6&H G$H5(&H &H &HH#$H&H$HHH)Hc$HH 4$H 5$H$謬H$H+$WH*H7$WH*^&1H a&H1H \&H1H o$H=$ti&H$1Q&H$H$5HO&kH&H$!&QHH:R)э IH& tŐ$uPH5Ѻ$„t؋O&O&t$%@tJ @t, $$=$tH'f/D$>H H$HD$>H$H$H$D$?$H$@H$H$HH$H$PH$ H$H$f蛎EWdL4%IH&H$tEWdL4%=&~H=&T1HH H$Ƅ$"H&H$H$H$EWdL4%$uHF$$=k&1Y&$8HD$&D8DxH$H+g&HHil7HHHH sH|THHHHHH4H4H)H.Hs0@t &HqHuD %.fH$8H,H$H0T&2&H$0H\&HHHH$H$H$(H H$0fHC jH$H$(UH DH$H)&|$>tuH[5 @VH DH,$H$D9DyH $H$H $H$H $H$1rHH)HD$&HHHHHD$`gH$H$(H$H$(f;H$HH$H}_H$H̀H$fHeH$PJHw H$PH$@)HB D[H&H &H&HѐH&H$XD;D{D{Hc$H5$H+5$HH$XH$`H$hH$pHcp$H $H+ ~$HH$x1fHD$&HtHHHD$@H$H$(/ H$H$(u H$HfHH$HHHXH$Ht9Hb H R H$H$2 H "f H$H&HH$0H&H m$HH$ H b$HH$H W$HH$H t&HH$HH$Hc$H$P Hx wH$ H6 YH$lH ;H$NHb fH$.H fH$0H fH$H fH$PNH| fV =g$t H w2   # =&~5|IN0ZuH&--=&fDH)ؐH $H$Hl$H5m$HHL1LAI5HH9|H$H$H$ HE H$4HB H$H$H)HHL@H J H$'H ز$H$H$H$D=$= &tH$IH$Hd$@+H$1/H$(H$HH$HH$(HH$H9|H&gH=@vHH$舅EWdL4%H#11JYH#119YH$~uAtIFH8]躣赣Hxj 5D:H 3:H9% ":D$H\$HL$H|$ ID$H\$HL$H|$ I;fvSUHH HrHt$JIV0HHD$>HD$OHD$ :H ]"fI;fvEUHH(HBZHJ Hz(Hr0HRT$DM$DC$GH(]谄I;fUHHH $HRHT$H $= &~H肅HT$=N&~ /HT$1H& &u &H$ HL$H]f[I;fvUHHHBI H]軃I;fAUHH( &9 &~ZIN0IN0HL$H sHL$ruAtIFHD$ fH(]HD$ 1l&HD$ &9 y&IN0IN0HL$H^ MH H=&uHL$ 谜HL$ I HH@۱HL$ZfD_AQIFCH(]I;fvUHHHB)H]I;f!UHHxH$Lt$HIN0Hǁ=˯&tHf軛IHt HH {LHL$HHQ0Hǂ=&tHrI3HD$XHǂHHIN0IN0HHH$H"rHH\$X 15IV0IV0LD$XIPHT$HLJ0M==&DAI@LL$P;EWdL4%H$HD$0HL$PHHH@u5H8H=@uHH!H=H81҈T$'HHD$`HD$HHD$hHD$PHD$pHD$`H$AEWdL4%莰EWdL4%HD$PH@H $HL$(HD$0HH)HT$8H5&H͌D$'tHD$PH8HL$(jHD$PH@uHL$8H0Hǀ@AHD$XHHZuAtIF1ɐHHXH( 3AI@HD$@nH f HD$@HB &63HD$kHD$I;fsUHH@HrHt$(HBHD$0-8HD$(H@Ht>HtHHX>HX >@HXHD$8=HL$0HD$(HD$H\$L$ HtuH$HL$T$ Ht6&H?6&H(6&H Y6&HZ6&=&tH :6&IIKH'6&1HE5&H 1H@5&H H3%@1H $ HL$@HuFH{3%H4&Hb3%f[H Ğ$HL$(H$HT$ 1oH$=$t$H$1۹M!Hd$@1H0]HD$H HA8AkHD$HHL$(HT$ H9|eDHu51.uY&QHH:R)э IHӟ& tCdH0]H@ )(HD$HD$I;fUHHH bH1%H %4&HL$H 4&HL$H1%HL$HT$1f0HބHD;D{D{ D{0H@uHH9}HH5V3&H@rH$H'&H8$H]H@DI;foUHH0H$HtHH f$HL$(Hb$HT$11HHH9}8H4=Ƞ&tHD$Ht$ H1 HD$HL$(HT$Ht$ 뻐HS$.H O$ HAHHtHQ=j&tHY@[Iу=O&tH $AI H$H$%H$H $HA HHtHQ =&tHY IfЃ=ן&tH $ɋI H$H$H0]Brf{UHHD$Hr#HHil7HHHH{HHHHLOM9uL9v(D7.LOH9vH0>H)H7H)]蓍莍艍I;fvsUHHH12@@tA8Zt+HT$\$0HHL$0HT$JBH]H3G -#HL /#HD$\$HL$oHD$\$HL$D[I;fUHHxtdHP8@H9*HD$(H\$0HH)HcPDH1ې;HD$(H\$0HX8@1ɇfuH]H "HK /"HD$H\$oHD$H\$TI;fvqUHHH1„uH]Àyu5HL$Hc1HT$ uH]H ;"H *"HD$H\$ZnHD$H\$kI;fUHHPHP8fH9HH)HcPDHHHP8HP HtHHHP HאHP0HtIHHP0IЀxuFHD$`H\$hHt$MN0AL r$LL$HLn$LT$8M^0L\$@1eHP]ÀxtWH* YH,HL)H)HH+HP]HL$0HHD$`H\$hHt$LL$HLT$8L\$@L9HL$0LD$ H|$(IɄH8v<w u LD$ H|$(HT$ LH|$(<wHT$(H<LD$ v<u\Hg$HHHT$ L2H|$(OADJEAIFH HD$H\$:lHD$H\$HPHpH)HH)H~5H9r-H)HHHHHHHtHH &H@H}IH)H9wH@HII)L)HpHtHu H1ɆI;fUHHH12@@HT$L$8HL$8HT$JDHcHiʚ;HJHrH9vHJHJ@1 &J@ s HJ1@11ɇ uH]H8 HK3 ({HD$H\$L$jHD$H\$L$1HАHHH=tmHH!HH!H HH)H9HLHt3IH=II!I ѐHHL @@tLH1H1HI;fAUHHHАHHH=8HH1H:ADEtHH!HH!H HH)H9ֺHLHtTuHʙ&H:SwH&H#u*H$HHH&HH]H]HK 3\$0HT$H% ;D$0NHg fHD$1HXV >VHD$\$HL$hHD$\$HL$I;fUHH H7$H58$1$H<H AD@HAH9|H $HL$H# H5HL$HQH5؏$H=ُ$1E1HH9}|L ސEfDAuEAA v(I9s_=&tNM MSN I말H9s2=Ԕ&tLM MSL H|HzHH ]d@[5gI;fUHD=›$H$Ht HH@111HH9~^HHH+HH@H95q$}H5h$HH+HHH9O$}HF$H&&H &&HO&&HP&&=&tH/&&I ISH &&HH$=$uLH!$H $H+$H,$=m&tH $@{I ISH $H$A@{H$H $=&&tH Ś$8IIKH$H={$H$He$1H #$H:$H;$H<$HE$HH $F$H$H :$H $@($H$ @$H$@$]DdI;fUHH0 `$^$f9w/HD$H HL$ HL$HL$(HD$ H0]ÉL$T$D;D$Hͪ @D$HI @VH} @d6I;fUHH(HJHH9$~tHBHH(]H(]HD$8HL$ HHL$D$KH HD$8PHC @HD$H4 DHD$ H D{D$Q 'H HD$KbHD$Ld$M;fNUHHH$$$HD$89$w89$v0H$Ht LHR1E1LD$xHT$01D9N$w39J$v+Hن$Ht LHR1E1HT$(LD$p1u H&u H$,$9r9$v)1і$99ǖ$H5ʖ$)H9H$HڐtuHuH)$HH 3H$H$HL$8H$H$H$H$f_EWdL4%H&HH$_EWdL4%1Ht&HL$8HtH$t HD$8{HD$8HĠ]}$HD$h$HD$`$HD$XZH HD$h@H HD$`DHY HD$XDH] EHS HT$HDBEH K@HH &H1H'HT$HHRH$$Hu1HT$@DBEHKHH &H1H7'HT$@HH$$Hu1mHt$PILLM)H8@$)LHL:HD$8Ht$PHH$$HT$($LD$pH9Hp&Ht$PILLM)H(ē$)LHLHD$8Ht$PHH$$HT$0$LD$xH9H&}HD$\$L$q^HD$\$L${I;fUHH@HBIv0HHzHRH9uDAAfE1HD$ H|$8HT$(Ht$DD$fEtHHD$ @uuHT$ uyL$\$HD$0HH\$(HL$8HHL$ ƁHD$0\$L$L$ftHD$H@]HD$ ƀH@]H @u\I;fvYUHH0HHH9w1H0]HH LIH)HM9HBHT$(H1L$HD$(H0]HD$H\$HL$H|$ Ht$(\HD$H\$HL$H|$ Ht$(eI;fUHHXH=$D;H 4$6$HL$@T$HH$$H$bHL$@Ht1)HX]HL$PHHYf[pHD$PD8HHuHL$@HL$ L$HL$HD$H$HL$ HL$(HT$HT$0\$\$8DHt*H $HHL$(H q$ s$L$8 i$H@$HX]8[I;fUHHxH&HH?HH8HD$PIF0HHXH\$X;HD$(HD$PHD$(WH*H-&fHnYH,HL$PHHH@t/=|&uHD$PHD$PHhIIKH~EWdL4%HD$PH@0HH$HL$ HH)HD$8H(HL$0u"H\$H8HٻHD$8H\$H(H~)H &H H~&HL$8Hǁ(H@]HǀH@]HD$H\$胋HD$H\$I;fv\UHHHQ$H M$W$D=?$E$HL$T$HD$RTH$$H]MI;fUHH(H͂$D{ -x&Lt$ H$L$D $IdžL$Mt MM MLt$LT$ Lo$q$L&M~;LN$HO$D P$Ht 1ɐHH$21H(]ÐHzH$H(]ÐHہ$H(]{LI;fiUHH(H=$t8WH*H &fHnYH,HL$H`$HD$6H |&HH(]Ht$ HǂH11f{HD$ H$HfDHHt&HH5$fHu H$ $HHH}HHǂH $Ht HHHѐH$HːH$$1H~+WH*H ԃ&fHnYH,ȐH~&H H@$SH(]HD$JHD$yL$pM;fUHHH$ wt*ZsD LfDH9LHhMuLH8LPM)HR0HL5H5Hxht1`t1St1Eu.fH/L #At1H$ L$u ƀf9yH$H$ L$H$D>D~D~ D~0D~@HLHH$L$HxPt HPH #H߻H$HT$8D:DzDz Dz0Dz@DzPHHHHE1H& u 1H]ÐH$HH$KH H$MHҒ H$H fH$)DH HD$8H$H$ YHD$8H|$HuH$LB( L$1L$fu M@ L$H$HHxt-HH #H$ H$ H$H$Hx t-H H E#H$ H$H$L$A8AH$H #H$ H$H$@HZ HtH$1|H$H$1KH$H$}HtzH$H)H$Ht#DA9vHRDJED9rHR1HtLBMtE1ɐLJMHҍ#qHHH$H@7H$HuH$u'H$uH$uH$H]H HHHt.L9@wL9HwL9wL9v1AI H8H$McAt HLH$ H$rHLH$ H$ H/AbH\ H$HH$Hy :H$H2 H$.H fH$H: 3L$4HH$H H$H H$HY gD$4H DHD$H\$ HD$H\$I;f UHHPHHt z(AHAt z(1HD$`H\$hHL$p{E@1zHt$@LD$0~DH|$HL$,HcHLD$`I@8H)HH|$pHt$hH L$,Ht$@H|$HLD$0~,HT$`HB@HcHHH|$pHt$hY Ht$@LD$0HT$`Hz8D1DD$+T$*LH8Mt9LP(M)Mv-LHHL1 HD$`HL$pT$*H\$hDD$+uHt HT$`HR@H1H|$pHt$hH; D$+u D$*t HD$h@ HD$h@HP]HP]HGDI9~HHD H LR8E|LR@McK H9Z(wH|$8HD$hyHT$`Ht$@H|$8LD$0HD$H\$HL$yAHD$H\$HL$̀=:v$t u$u$#H u$ u$9Ë u$9v!qH=u$7@@t݉Ȼ11I;fMUHH`='n&&IN0HHQ0HHfH t/s H=RHL5IEL 1IHD$pH\$xHL$HH|$PHHT$XD t$Dt$E9v;Ht$LD$ ADL$mHL$HHT$XH\$xHIHD$pH|$Pt2sA&D $EtA`5AE1EHt$@LD$ H=r$u(NHD$pHL$HHT$XH\$xHt$@H|$PLD$ LHMt%MQMtMZMYIqOLE1MDHD9HuE1EANT DHMt E1D;Ht1dHD$pHt1ɐGYZHD$pHt1&HD$(HD$pHu HD$pH#HHD$(HHHHHHHT$XH\$xHt$@H|$PLD$ IIHD$pHL$HE1MuM;HL'% HL6H\$pQt!ƃQ=h&uHu&0CH\$pHH@HH5Kv&HHL$xrHD$@%HHHL$@H)D[HL$xH\$p1HHHǃHH|$ H)HIHT$PHu1*H|$8HD$0HHL$xHT$PH\$pH|$8HD$0@u1HǠ:HT$Pf.HL$xHT$PHD$@H|$ HHHD$pHHH~2Hcu&H sHHH)HD$pHǀHH`]HYHHL$HHT$XH\$xHt$H|$PLD$ DL$t3sA)Dʁ$fEtA`5AE1ҐEiL$HD$pYHT$PHu1 HHT$PuAH\$pQCƃQ=f&/Hs& AHT$PH\$pHD$pH\$xHt$HD$pHL$HHT$XH\$xHt$H|$PLD$ @H JHD$H\$z;HD$H\$I;fUHH0=h&HD$@H\$HHHIV0HHHT$( HHT$(H\$Ht1@5v HL$@HIF0ƀ"H QH?MH) #4HD$H\$HL$H|$ Ht$(LD$0P0HD$H\$HL$H|$ Ht$(LD$0MI;fUHH`H$H$H\$xHD$pHHHfH@r1'H5%HHtH H H1HT$ bHD$pH\$xHt H$U萱HD$ HHHpHL$PHbHL$HHHhHL$@H@HD$HV 舻HD$H jHD$PD۷Hb JHD$HD[H *HD$@D;H8 ŰHD$ HcHz#H9~>Hf#HH HL$XHDHD$8*HD$XH\$8軺Vq=L$H1{ 蕺D$訴HJs w2HD$ HHh@c<uHuH$HA HH$HD$(11&蒯HEx !ۯH`]HH90HrHqH9v HH9rHT$0t!-H u 軹vHT$0H$HHHD$PHr 船HD$pH\$xyHr hHD$0{H\s JHD$PD軵H$HL$0H9u$@{H s  ŮD[薰豮HD$(H$HT$01t/H t 軸vH`]HD$H\$HL$H|$ 7,HD$H\$HL$H|$ UHH=V&=V&@lHPhHpH)H\HHfHw+HH#HfDH?HHR@HXHHH#H3HH HHٿ@:HPhHHw&H#HPH€H?H@:HHHU%HHHH@seHڄHHH HH@u@:IN0HHHPhHH]H@GH?GH?GH 2fH , I;fUHHXH R$HL$PHR$HT$@1HH9HHs8HtH~HtHD$8Ht$0HXH\$HH2u3HT$0HB1HHT$0HBHHt$HI1HfHD$8HL$PHT$@uHX]Ð{)6I;fvSUHHHt4t'D8DxDx Dx0Dx@DxPDx`DxpXH]H #HD$\$L$(HD$\$L$̐P?u8HH?HHHHljދ 2uu@u0HHO?HHHދ 2u1I;f~UHHP2HHpHƀH1'LD@IM!LWHMDL ;LH9sHHHrXbHH]DHD$H\$'HD$H\$ZI;fuUHH =R&$HHHH@r1 H5%HHHH%HH HHAA AHH%Hr@HH)HDL#A HH HfHσIȉAAH?wH HI@@1fDAD Jt1HfHD0H/x# JH@H ]H\$8HD$LD$HbfHD$8HHL$HL$H =P&uxH Z$H\$83H9HY$HrA )|lHY$HcH9vQH Y$H 9ƃQH\$8ƃPH ]øH ]1H ]1H ]1H ]pBifBHDZBH?NBHDBBHD$H\$%HD$H\$cI;fUHHH9Hu1 HT HHHD$ HXHHuuHX$H\$ 3H9vsHX$Hs@ )х|BHX$Hc۾H9v'H jX$H !11H]H]HH]MAhCAHD$$HD$I;fUHHH)Dt@H\@tGHHHH@HǀX+GكvbHeHD$ H\$(HL$ Q1)t@H\$(H\AH]H 1H]ÐHIHtQ q$9tHuf;H]HD$H\$"HD$H\$I;fUHH HD$0\$8HǀHu%HL$0HHHȋ\$8HHudHL$0HI( =GrHD$HËL$8HD$0{t+HD$0HHT$HHQHH ]H ]H .HD$\$!HD$\$I;fUHH9Pr_S s$)֍s(9r1.1H]Í4:DAENDDK(AA!Hs0N9w֍9S$H]H "HD$H\$L$!HD$H\$L$NI;fUHH HHt HD$0H\$8 1H ]HD$0HL$HQHT$HqHuBHL$Ht0HD$HT$8H@@tHt$H@>1H ]H ]HD$H\$5 HD$H\$FI;fUHHH9tLK S$)ʉ)օtX9s(s IځG1DDK(AE!LC0OLD9rߍ<I{ t1H]AApu1 IHAHH]H) HD$H\$CHD$H\$I;f-UHH=I&H+H HI@HtQ q$9tHHD$(H(S$賾HD$(HSHL$HS$H豷HD$H D&H+ D&H D&H D&HT$H HD&HJHD$(HuHǀH1THL$(HǁHR$vH]HO $@H 'HD$@HD$I;fUHH(D$8HR$蛽HC&oHD$ HHQ$;HQ$H H&HT$89BэJu8Ht$ V(HHr&H z 8HT$ HB0HH(]H "D$@D$2I;fv~UHHHD$(HP0X(HHH Xr&7= J&uHD$(HD$(HH05I H@0HH1҆1HH1ɇH 1ɇH$@(D8H]HD$RHD$hI;fUHH HP$D=F&uH P$HtHjP$UH ]HHtbHQ@q@tHL$HT$HAP$HHD$H (B&H+ A&H B&H A&HT$H HA&HT$떐HO$׿H ]l'I;fUHH8IN0HH/dxdvHhH(~H1HHIHHh D$H1Ѕ1H5D$1fDH9H\$0LD$(H5D$41T$L$|$ DL$$DΉT$L$|$ t$$t1 ‰T$7"Ɖ1T$ L$9L$H oN$T$ fDH9H HN$H gH B$T$ H9H B$H fI9=@t$HCHpHu[L$ )х|RHM$HcH9v7H M$H !9H\$0t$LD$(DH8]1H8]6^{6v6Q^l6G^B^HD$7HD$Ld$M;fwUHHHHHr@9@LIDLJ?Lj#GBE1EAH%fDȐI?LD IHȉAAEuFD"L@=qJ&~ KHxAMILHHH]H]H$HL$8@t$7L$L$H5p#B4HiH H$H|$@D?DD D0D@DPD`DpHHQHOH$HHH$H@=*B&H$IfAEfDL9H$HD$8HL8ADL$7IHH$HLHL$@H$H$HH=H&~$H$H HXH$H`H8HcАHH$H$1qH$=H&~L$OJhJpHD$8Ht$@H]H]H$HH$H$H$H9}OH$HH$ouH$1H9HtHH$I1HِH]H2H?2HD2Hs [HD$H\$HD$H\$[I;fvUHH(H%HHHH@8HHH%DH IHAAHHEuDLL$ H|$PAHHHL$M?&11LHFH9HHHMMM\@IM!IM!HMDMDIM!LMtM t E1MHt$H\$Lh'HL$>&H\$Ht$H|$PLL$ IDGHH(] 1H@1HD$f\$HL$H|$ HD$\$HL$H|$ NI;fUHHXH\$pH$HHLAIHFHHHHH$HHHIIDHHRHH=&t 1HHD$0H&H$HHD$0Ht$p1OIHH9}PHA@IDIHAILA L8AH@HL!HH!IrH8fHHL$HHT$P1HfH9}iH4H6HtHD$@Ht$8Hfu,HD$81HhHtHH$I1H+HD$@HL$HHT$PH$HX]HD.H.HD$H\$HL$H|$ HD$H\$HL$H|$ Ld$M;fUHHH$H$f$H$H$1E1IQLD$@HIHDNI9iL$H$D;&Et E1MZL\$XL$$H$H$H$H$LD$@L$D*;&L\$XIH$Ld$HLLLSIMFL$E1ZL$IH$$H$H$H$L$Ld$HL$MIH$MM9L$L$L\$xI˾@HDHL$PHHt$pHHH HL$`HHL%H$HHHt$PH@HLD$pI!IHt$xL!LIMDJHRHH9&t E1L+Ht$hHD$0u"9&H$Ht$hIHD$0LL$`L$1NHcHHHHHHHHH ףp= ףHHH HHHAH9HBHQHHHYA HYxHH ؏YH| WH*HƒHH WH*XY f.vH,\H,H?HAI;fv]UHH H[4 @Huf8ofuxfu H ]ù SHt dH ]H ]I;fUHH H@ f?HtHuf8ofuxfuHH ]H\$HD$5@tH ]nH4C D[yHD$H\$LypoH ?葠FUHH HȐHHH @9}4|9ZHcH H HHH„tH ]1H ]HT$HL$nH1 @xHD$Hc.sH3 f{xHD$Hcs p$nH} 賟I;fUHH HȐHQHH |(HcH H HHH„tH ]H\$HL$;mH0 wHD$Hcf[rH3 wHD$Hcf;r6oQmH| D۞HD$HD$&I;fUHHHH|(HcH H HHHtH]É\$0HL$flH/ vHD$HcqH02 vD$0HckqfnlH{ HD$\$AHD$\$3I;fUHH( $H!&=&tH!&f=&$u11gHtYHD$ HL$ Pv ʉP H 1ۆZuAtIFH"!&fH\$EH!&H c!&H\$H(]n& WH* Yf.vH,\H,H?H5!&H9wHH5U&H H5H&HHH| WH*HHڃHH WH*XH| WH*HʃHH WH*XH 4N&^H| WH*HʃHH WH*XYf.v H,f\H,H?HHHHHe&H HIHH!ʐH &H &HH9s H)H9 6&vHH 5&H H(&HÐHH &HI;fUHHHxq=&u Lt$HT$HHLIIKHD$(HPHk f=&uHL$(HL$(HQIISHA=U&tHP(HX8IIKI[H|HP(HD HP0HH8HA0HD2D0DrDpDr Dp Dr(Dp(HMbP?HA(Hyxu =&t HAxIHw|HAxHu'=&tHIHQ|HHfu&=w&tHiIH'|HH]Hȑ 衙HD$HD$LI;fv`UHH HD$0襅LH\$0H9Ku&CHC 藙H ]H .DHD$PHD$I;fvqUHHHD$(%HD$(xtD1ɇH@HD$D$HHHǁHL$D$HD$[HD$(/H]HD$@HD$qI;fUHH`HD$pD$x{LHD$pH9HAL$xf.v -L$X@(^H,HL$HHxpt膈HL$pHQpH HD$HEWdL4%HD$pH@H $HL$8HT$HH111E1IZH\$pCHv}ʗEWdL4%H$HL$8H)HD$@HD$p{HD$pH@WHD$pHD$@HL$pHYhH~*D$XH,HH9} HAhH)HYhH`]WH*L$XXD$PHHfW*T$PYL$X^HD$pH0 _HL$pA(u$HMbP?HQ(H*HQhHXH`]H~ /AHD$D$pHD$D$DI;fv+UHHHD$%HD$@uH]HD$HD$I;f|UHH HD$0LHD$0H9H? W1H tf.D$HD$HD$0HHЄHL$0HQxH HuaH &HHH1HH| WH*HHH WH*X͂YL$XWH*L$XHHL$HHr'H= &HL$T$ H@Hv H9  &w HH ]H .5p%H -@HD$PHD$fI;fvpUHHHD$ H $HD$ Hz Hi $DH] $HuHL $'H M%HH1 $,HD$DHD$qI;fUHHHHD$XH\$`HL$h@|$pHD$HD$XHH\$`|$pH9\$H# HtoH HL$HL$HL$ HL$XHL$(HD$0H\$8HD$`HD$@HD$H$yEWdL4%HT$hHu1 HHT$h]HD$HH]HD$H\$HL$@|$ HD$H\$HL$|$ I;fv7UHH(HBHZHJ Hz(HRHT$ H+:HT$ HH(]I;fUHH(HD$8H\$@L$H_H&H &H&H&HHSHD$ HL$HT$@{_Hh%  jHD$8H dH`F iHD$@H cHS iHD$ H cH0 iHD$HkdHL$1HcH& i;_D$Hu2= $tI^H~S Si_d $%D^H4- *i^D{^`^IF0QuH&H(]{!HD$H\$L$gHD$H\$L$3I;fUHHpH$H$H$H$H H|$8H l&H HL$0H{H$HHhH$HH\$8H<HT$0HһHDH$H9Hp`H4H?s HH9HH H H\$ LDxAHHt$hJH$HcHuH$H$ HD$HH\$(HH H$HHHt$`HHHt$PHt$ H$HtxH|$hH7HHH$H\$PHL$(艇H$H~H$1DHD$PHH\$(HH HH H\$XH HHt$@H=&H7HHWH&H\$XH&H\$@uH!&)HL$@HHL$XHHH!&H$HyHH$HxH\$`H9v Ht$PHxHL$(HH Ht$`Ht$ HTxHt$hH2H\$HTH$H\$PHL$(16HT$ H$HTxHt$hH2H@@H\$HHL$(FH$HQ}HD$`Hp]H H$H&}1Hp]H HD$H\$HL$H|$ HD$H\$HL$H|$ :I;ftUHHHwsHtgfHu(HUUUUUUUUH!HUUUUUUUUHH H HHHwwwwwwwwH!HwwwwwwwwHH H HDH]Hw^Hu)HH!HHH H HHHH!HHH H HWH u+HH!HHH H H,fDH@uFHH?HH<H H ֐HHKHHH@HH!HH)H HH]H"- 裊HD$H\$HD$H\$dI;fUHH@HL$`HQDHHH@I@HuHHHRHHސH!HHHD$PHL$8HH\$ HHD$PHL$8HT$`H\$ H|BHH H L@HHHtHL$ HHD$PHL$8HT$`H\$ HH H L@HHbHHHT$ HHHIIDLOILWIHLHH HIHHRI@ML!HtHIDHHHHT$(HL$0HH"1HH@]Ht$HHT$(HHL$0fH|RHt$H|$HL$PHH D@H\$`HHHDHHT$H)HJ@HtHT$(HHL$0H5:&LD$8L9IIGIH)H vL@H95 &s:H L1MRHI!@L9rM)H!ΐL9rH)HH HHHHHH@]d@[UHX9 `HD$`ZX1VH1 D軇UH9 E`HD$`[ZWUH| !D{HD$H\$HL$H|$ HD$H\$HL$H|$ I;fUHHLHP0fH|)H5#HHIHIp0„t HII@8H|H#HIP8„tH#IP@AXLL謫H]HD$\$HL$HD$\$HL$@;I;fv8UHH HHڐHp(HHtH9vHP(H ]HD$H\$HL$H|$ IHD$H\$HL$H|$ UHHH0tHH8HH}HHHHHH9=#tD@HLH(IHI11]HDI9L`L9 L M$M$$MIAtȄuDMI DE9u$fAsIAfAAE1 fAAEtL9t1HHH| H?kIH?HLHC?H HH]ÐHH| H#HHH„t11]Hػ]HؐH1H9|HHH@@tHI;fUHH(HPH9HD$8H\$@HHڐHHHHH IH?fDD$fT$t$ @|$$PHHD$HˉHT$8HrH|$@H9s-HL$T$ \$$HH H H HHH(]fHD$H\$HL$HD$H\$HL$I;f4UHH(HPH9HD$8H\$@HL$HH|$PHHڐHHHIH MIA?fDL$fT$t$ DD$$HHHD$HHT$8HrH|$@H9HL$\$ t$$LD$HLL$POM@I IHLHH H H JHHHHHB@fH9sHJ@HB8HHؐHHL@H9sHߐHz8H(]hcHD$H\$HL$H|$ )HD$H\$HL$H|$ @HHH0HHHHX@HHLH9sHېHX0H x#HH@UHHHHH9HH ِH HHH΁HH IHI>fDD$fL$T$@|$ HHfH9s6HL$HH A>II H L HؐHH]D;6I;fUHHH4Hw/9HtfPHffu HHH]H\$0fT$YNH1 XD$RHv XHD$0DRVPqNH "DHD$H\$L$'HD$H\$L$I;fUHHH9w%9HtfPH)fHHH]H\$0fT$rMH0 XD$RH WHD$0QvOMH` DHD$H\$L$GHD$H\$L$4\Yh(Xf.@\f.f.Hf.ΐwH f.wxEWfD.fu{lDHfE.u{]Y^YA^\YXXh(f.uz\f.u zf.u{H@(@0@1ÐH@(@1@1I;fUHHH9DH9XHPtHP(H\$0HT$H HtCHyuSHH Ht H@ v-HT$H\$0HHAHHAH P-DxHL$HH\$0HHAH=sH\ HAH]HSH^ |HD$H\$L$HD$H\$L$I;fUHH8HD$HHL$ D9HHHL$ HH(HL$0HL$(1HHHt H>HtHuIL@ Mt0HT$Ht$H|$L.HD$HHL$0HT$Ht$H|$Hx HH>HtHWLBLGIs9HDH9H8]HH HtH".HL$HHA 11H8]H@HD$HD$I;f(UHHHD$(H\$0HL$8HP8Hu,q+H@HL$(HA0HA8HL$8H\$0HHD$(HrH~iH8LFIH)I?IB| B|$9H?u9HT$+H@HL$HAHL$(HA8LL$0HHHL$8IHZH?s0HHHHrH0I)DL qt$HL(H@@H]H?H )[zH?HD$H\$HL$zHD$H\$HL$I;fUHH@HHL$`HH?HHHL$8H?HD$H\$0HHHL$(H4 Hv Ht$ HzH>uHS1HHL$`Ht$8H)HHHcHT$(Ht$H|$0Ht0HD8HD$ H@]HH1H@]H?HD$H\$HL$pHD$H\$HL$I;f?UHHHD$ @L$#T$ HD$ L$fDT$ HRHr0HHHɹ(HEH l/HHHɹ(HEH ;H] B#T$ D 4# +#كsH #Ät1H]Ð #Hؐ9sHÉH5#tHHH]HD$HD$I;fmUHH09h%tFHؐʁɁJHÉ tс=%H%HHHD$(H&%HD$H*%H)HHL$ %D$DHk OHD$(IHl$ gOHD$ f{IHpI JOHD$D[IH  *OD$@[GH ODH#H0]H0]Hwz #;vHh 1*vHD$\$L$WHD$\$L$dI;fUHH0)Hu # %L$1qH@HH%H4HvHHRXHT$(HPHT$ Hɹ(HEHL$HHL$HT$(H L$HD$ H=|H#f;fH0]Hۖ ,@uUI;feUHH0HD$@=%fu Lt$(HT$(H #LIIKH#H#`#HD$@H[oHZH# t1HAHD$ HtEHHL$ HHeffffffHH?HH9r{THL$ oT%)uH#-`#fD=u/#HYH# t>H#;dS%HD$ǿHD$f{I;fvcUHHxtCKXP@9u)HKXtHػH]11H]11H]HP rHD$H\$(HD$H\$yI;f-UHH@Lt$8IN0#uPH#„t؋Q}%G}%T$D$tHL$8HI0HH@]H{$3HtpHctPX\$9tۍs9tHHD$HD$(tHH HL$0HD$(1tHL$0H|%HH211Ґ;#uƁH=#7@@tхHT$HL$0\$L$H~#T$t6=%~HWH$EWdL4%H# HL$8HI0HD$0H@]ÈL$T$$\$ >HN ID$fCH jID$$CHP PID$ gC@f>Hd pļ@I;fUHH(IN0uu LH9Hؐ 4#ʁu$rHÉH=#7„tЋz% z%HH\$ T$D$uoHD$mHD$u\$L$H#H\$ @HD$1ې{\$L$H#H(]ZEWdL4%H\$ CXL$9t9uH(]HRq ";oHD$pHD$L$`M;fUHHIV0uu LH92HuH5y%t$ @zc@@DFD9BX$0HT$@DD$$=#u11!cHT$@t$ DD$$HH$0HH$HR H HHH9H$Pv ΉPH 1@>~uAtIFHT$@$0t$ DD$$Hz LLx%I:HH$DRbDT$LZhL\$8L$H$L$0DT$L$M@Mh IAH1IHILaLihIN< Iw'IHIĀA$H? IHR@LaHA$IHLAILAAAtjAytL$IH$0IH$H$HAALLLWt$ H$DD$$L\$8Ld$@NM MtM9QsAyuː11LT$h HIt$HHH$H$HL$Wt$ H$DD$$LT$hL\$8Ld$@H$HMHPL9r?DHtmHucH="w%HJIIII@ H IAJ<τIJ<'HAAAD =X#u =b%trHzhHHwHzHǀH@HzHH$Ƅ$HDŽ$Hz@H$Ƅ$HDŽ$1EHzhHfHw-HZHH苎HT$@$0t$ DD$$DT$L\$8J0fDf9J2vnHzHAIB<Lb@A$G$ AA!AEt5LL$HHf; HT$@$0t$ DD$$LL$HDT$L\$8IIJ2HHHL$(11LHH|$pH9siLJHAM D%%EtMHD$PL7HL$(HT$@$0t$ H|$pDD$$DT$L\$8D%U%IHD$PJ`A)fD9fL$fz`fB0fB4=[#t!MN0MDLjhMAMHJHHJ@B2WHL$@HAHHyPtH@{#HL$@H1謖H\$@Kc~SXt$$9oL$ q9Nq9CʇKX{e@$0HL$pDfvSL$HH IHH5t%H 1HIXHҺ(HEH s1H]HC HHKcHs%H1Hd H$H$H$H$裲EWdL4%1H]L$f|$fw$0@L$CdH%L$HHDH HpT$H$HHK%H\$@HKhH$HH Z%H$0ɋT$ t$qHL$pff9K2uQHCH vHH5s%H 1HIXHҺ(HEH fHH vHH5r%H HIHҺ(HEHfHH$H$Ho$H$H$H$۰EWdL4%H]$0uXL$fuYfHH vHH5r%H 1HIXHҺ(HEH f1H]H%HhHL$8H`Ha%H\$8H ~%HH=w%~,HL$@HApHAHHِHU%H 3JHH$HD$@H$Hn$H$H$H$蔯EWdL4%H]H HHHDHfH *jdHZ YdH$CXH$;2H' <H$f6H <H$f6H <D$ 6462Hu 'cfDL$H$H$B2HD$x1H *<HD$xD;6H  <H$f6H- ;D$D5H ;H$f5V3q1HG[ DbHz2HHH9HzH<9LJ@AF ADtHL$XHHL$XHT$@$0t$ DD$$DT$L\$8H$Hz2H9H$D$?D=z0H9$r$L$E AHJhHHJ=*#HD$`HL$0=#fu1E16үHL$0HT$@t$ DD$$DT$L\$8HIHD$`$0HL$LHdNH$Pv ΉPH 1@>~uAtIFHD$`HL$0HT$@$0t$ DD$$DT$L\$8=D%t1q$@uH$Ƅ$ @$H$$@uH$Ƅ$3@$$9ᆳHL9rH@H$HHPL9DHAMl$I\@AtH$HH$HH$H$HLEKt$ H$DD$$LT$hL\$8Ld$@DeH?O*@H$BXH$-H" f[8H$n2H= f;8H$N2H f8D$ 22/-HaA W_HF F_HD$\$wHD$\$I;fUHH8HBHD$ HBHD$藬t?讬HD$0H\$(@;t#HD$0H\$(HL$IHD$0H\$(4HD$ JHD$ H\$13HD$ NH8]"f[I;fUHH8HBHD$ HBHD$׫t?HD$0H\$(@{t#HD$0H\$(HL$#IHD$0H\$(tHD$ IHD$ H\$173HD$ -NH8]bf[I;fvzUHHHJHQH5%H9uIHL$H g$IH%H\$6H%H\$F8Hf$MH]Hd $!]軨vI;fUHHpH$*H$HHhHL$8@0HD$0*Hd $Q5H$HH4H *5HD$8D;/H 5HD$0D/H Q4*H$HHhHHwHHHH@HHHHL$@D$HHD$PHH@HL$XD$`HD$h1fHD$hHL$ HH$P2DH9HL$ HPhHHPHT$()HD$(0)H$H0HT$ H9sHL$X\$` L$t!P)H{ @3)/)H` 3v)HD$@L$Ht%D(H 3E)(H j3%)HD$@L$Ht D$1D$@t(Ht &3({(*(D$t-H$HZhHHGHD$(1DL$Hu HD$@D$HɈL$HHD$PL$`uHD$XD$`@ɈL$`H@ @YHD$HD$I;fUHH0d%Wf.uHD$@H\$H=#u11YHHHD$@H\$HHt{HT$ HHԭHL$ Pv ʉPH 1@2ruAtIFHD$@H\$HH0]HD$@H\$HH c%HB%H5c%HH)HH9HHGH| WH*HƒHH WH*XHL$ c%YH,H)HT$HHT$H\$HHt$@H=hc%H)H9}-HtH Vc%HT$H9tCHKc%=4#u11HtYHD$((HL$(Pv BP H 1҆PuAtIFH0]HD$H\$HD$H\$̐ #u Hb%sH %H)HHSb%HCb%H)H= HLHHAb%.WH*WH*^"b%H b%Hb%HI;fv4UHHD$HL$HA HuHL$HA]HD$ۢHD$I;fUHHHD$ H\$(HHHtoHyu^HPHPHHHJHu>HL$HHL$ ƁP9HL$ HAHT$HH\$(HH@1HHL$ HQHH\$(1HJHs$H\HB@t=%uƀQH]HHD$H\$ǡHD$H\$I;fUHHHH\$`HtAHD$XHPHu/H|$pH\$`HL$hBHL$XHQHHL$hH\$`H|$p1'HH]LJL)IIMII?M!LL)HH|$8HL$0H\$@AHzHL$XƁPHL$XHQHQHAHHL$0H\$@H|$8LBItMMIII?M!NM@L9LLL9:HT$ LL$(@t$LHLHD$XHL$0HT$ H\$@t$H|$8LL$(@t=%uƀQHH]H*HD$H\$HL$H|$ HD$H\$HL$H|$ 7I;fUHHHD$(HHDHuvHL$(HQHHHyfuOHHHPHHHPHyu8HL$f;HtHD$HD$gHL$HT$(HJ1H]HQHZHYHs HDH]HDHD$HD$&I;f{UHHHD$ HPDHtdHzuHHL$ HfHL$ ƁPHAHAHxu HD$ HD$ ƀPH@P+PwH0@1Ʉu]X+XtHb{HD$ )х|}H#Hc۾H9vbH #H 1ƀPH@HtHU#H Hǀ@HHHtH%H HǀHH]覺!HRHtr z$9tHD"HD$QHD$gI;fUHHHHHtoHD$HPHzu'Hy~HFHL$HAƁP(H]HfHL$ƁPHL$HA=y%uƁQH]H]HD$覜HD$[HHHtHyuHHHyt11H+Hw H01ÐHIHtQ Y$9tHI;fUHHHH=n#u1fH_#2Ht HxfHHD$H=~#tJHk#;Hg#H\$HtHV#(H\$HU#H*H/#?H|$ujH+HD$8HD$HD$@HD$8H$ΙEWdL4%H|$H#';H\$H#)H#h?11HH]HHD$(HHwPHD$HT$(HL$ HL$HIHHD$0H@1HL$HuHD$0HD$0HD$ HH@ ;NH *Nd@;I;fv5UHH HRHT$HW$HT$HH ]D[I;fv7UHHHxuHH(#;0H]H dMHD$虙HD$I;fv7UHHHxtHH#/H]HJ MHD$9HD$I;fvAUHHH+#0HtHxtH]1H]H LԘI;fUHH HD$0HL$0HQHH?HHH)HYHPHYHs2HD$HHH[HHHD$0HD$H ]HXHD$-HD$cI;fUHHH#D7H=#HJ#H #Hu"H}#(MH<>HM9wMLl$hHt$PL\$`LD$@L$H$LL$XE1IH$LT$pfM9K'H$fM9VEE1HIH$1E1E11E1E1LD$@L$Ht$h#HL$hDHtH\$@H1H$HH$H$GHt1[H$H$uH$'1HĠ]HD$XH$H$uGHHL$XH\$@HD$hHL$XH$HuH$HH$H$"'H\$@HL$XL$HD$hHl%D%Et1E1!L%IMI)L9IBAL%%ItXfHvDL-$%L=-%MIM9sM)L9IGH9HBL$M%L$ML$M L$MH\$@HD$hL$HD\$7HT$`觱EWdL4%H$HD$8H$H8H=HT$xu#HH!I`I L8H$HH\$`H _|$7譡H?%HEWdL4%H $HT$x@u&HL$HH$H8@HL$HHT$8H)Hw%H HD$hH\$@L$$$HL$IH$LH$H H\$PHT$@Ht=HD$hHHHT$pHg%H 腠H6%H\$pԘHT$@H\$PH)H %H踘$uH%H\$P蛘H%OHL$@HHHHP$uHL$PHHf"u HL$PHHu HL$PHH Hu%谙=z#=l#u11/HtgH$H$H$Pv NP H 1ۆYuAtIFH$HĠ]HQ +2HHD$H\$L$@|$HD$H\$L$|$I;fUHH(HD$8H\$@L$H@|$IHt$PLD$XLL$`HHL[ HD$8H\$PHL$X'=s%uHL$XHL$XHH Ht$`DH9tt H|$@GdH|$@T$Hft!HG(fG2HwcAD \$I_bHH uHGhfG2G\tHHDL|"EXLGhMHIAAMFIw@u HHIL)Mj1IfG2H#"W\fG0fG4HG8G2DHL$@HAHA2HcHL$ DH|$@HG@HOhW2HHOHOpHD$8@OXHT$ HL$XH_HD$8T$HHD$@HHH;%HHHH@stHڄHHH4HH @>H@hHH=wHH @8HD$8HL$XH`D軒H(]H@)HDHD$H\$L$@|$Ht$ LD$(LL$0{HD$H\$L$|$Ht$ LD$(LL$0Ld$M;fGUHHĀHHT$hL%HHH L OMRIM!L9rL9H$H\$HHH0W)HSHL$ML9uHIHT$h1DII)Mu1HT$xH\$PLL$@LH %H= ;HT%ϓHT$@HPH=%xH$HPHHHL$@#HT$xH\$PL$HD$@IIIIHT$hHu%H+ %H /%H %HT$8H H%H!%H%aH %H+ k%H %H t%HT$8H He%HՇ%WHHHH{H% H %H+ [%H %H d%HT$8H HU%H|%/H(]H xHD$H\$HL$]HD$H\$HL$oI;fUHH8H w%HP?HHtHHHHHtH15HHH@Hv1H)HTH HIHHt$0H\$(Hߋ%H %HtHH\$0HH H\$0t Ht$(1ɐ>HT$(HHHHv1fH)HH HIfDHHH [%HtHHt$0HHHt$0@t H|$(18HT$(HHHfHv1H)HH HIHHtHH Ht12HH8HHv1H)HH HIHHL$H v%HHH k%HHO%HD$H8]HL$H ;%HHH0%H%zHD$H8]HL$ H%[HD$ H8]HH8]H HwHwHwHwHD$ZHD$I;fUHHHe%D[H t%HtHP%HuGH D%H M%H N%H 7%H 8%1H'%H H %fH]HHYHuHQH %H %YTI;fUHH0H=%Ht!H|$ HWH% 1HHD$ KHx%H%H 6tHt%HD$(HC%;HD$(D8H0]HV  YPI;f|UHH H"HH\$8@|$H=#%tH 5rI ISHD$0HL$@H HHOcHD$0\$HD'H ,"HD$0Hx=%uHt$8HqHt$8I3ISHH\$HHL$@裄HT$0H(t$H@1H ]HT$H1 JHL$HH@HH!@{H  DHD* +D; HD$H\$HL$@|$ aWHD$H\$HL$|$ HI;f|UHHhHD$xH$HHT$`H H?HHL$0HH\$(HHHT$Pw'HT$xH HD$`H\$(HL$0HT$xH(HH|$PIHH\$0II@HtH9vHH|$HILL$@L9sLHD$(_HL$xHHHHHHFcHD$xHxHHHT$PH9vH\$(HxH\$(HL$H7HTxHH2H@@1۹6HL$8HHD$xH\$(HT$@H9HH H Ht$8LDxMuHL$ H H @;pHtyHT$x1u/HD$X0t v vHD$XHT$xHt$ HDxHHHt$8@H$H 1Hh]HH H DqHD$H\$HL$THD$H\$HL$RI;fTUHH`HD$pH$[HD$p0u[ƀ0H\$0D;D{D{H HL$PHZfHq$lHL$pHHHt$(1HG$BH`]HHH9HD$ HT$XH:ILLJLL$H#?H|$HDxotH|$HHD$ HL$pHT$XHt$(ILL$IOI#L9mfH rH`]H CpHD$XHD$Ld$M;fNUHHH$H HIIL$MIL$ILH$IHL9@H$@uHphHt$0LX`L$aLI#HX`I @$H$HPhHT$8JTxHH v6HL$8H$fH9H$HH$LGpH$I9xLJL9fLW`I)II)IPHIH?L!JLID$Eu 1HIL+oHL$8H$H$H$THHhDL9=HH`LI#J I  HL$(JLxHHT5HL$(H9t'H$HrhL$L9Hr`J Hİ]H$L$ HLMHiaHD$PL 8"I IHMIL%"MlLl$HL=P"I|H|$@H@HI!H!ILD$`1LHH|$@LD$`L ؝"L$L$L%"Ll$HL="Ht$xHD$PfL99Ht$XL$'H@L|(LHLd$XM\$L\$xILTH@MM!L!M9I9rxH\$pI)I)LIHI?I!K:LeHT$pH$LDHLL$XM9s+NʐI9tJʸD$'Hİ]5l0l+l&lH llH$IH#fDH sLHLxIAJ3HL$8H$H9vH$HH$kH @kI@LHI9DfvkqklkH D[kL$ILAH$H$Ht$0L$L$fDI9ZLI I s7HL$hJTxHH(2HL$hHT$0H9zjH jHD$H\$HL$@|$ @t$!MHD$H\$HL$|$ t$!gLd$M;fUHHH$H$H$H H4 H HIHHIHH|$hILIHIA??I LT$`H H9MI#I -LL$XHt$PHL$HIHHL$@HH$JTxHT$xIAL\$8JH@@L.HD$0HT$8Ht$xHH\$`HL$@5H$H\$hHL$@{HT$hHHD$0"LI#I HH$L)HHL$@JTxHT$xHHt$8H2H@@L.HD$0HT$8Ht$xHH\$`HL$@l4H$H\$hHL$@zHD$0HD$ H$H$H$GHD$ H HĈ]H IhHT$ HT$pD:DzDz Dz0H$H\$(tzHT$(HHD$ HD$ Ht$PH9HH fH $H|$(H$HTxHT$xHH|$8HH@@HD$p1۹,HT$ HHt$8H|$xH1 HHH|HT$XHH#H HL$HHHL$@H$HTxHT$xHH|$8H:H@@1I,HD$0HT$xHt$8H1HL$@2H$H\$PHL$@3yHT$0Ht$ HD+H fH fH fHD$H\$HL$bIHD$H\$HL$I;fUHHHHـ1u0HF%Ht$HDH@s4H Ht HH]HTtH]H"H]H@eHD$H\$HHD$H\$XL$XM;f UHH H$0H$8H5"H="H$H$H5 H$H$H$111H%H$HH$0H$HH@H3H|$pLJ"M ILAIHO$RNlL="Ks1QfH u H HH ށH*H HH@IJHH%HL$HHH\$hHt$ H|$`1HP]H@HtQH9zuH9ruH9Z uHT$(HАHL$xH9tHL$HHT$(H\$hHt$ H|$`HT$p1HH\$xfHD$8qHL$xH9HOHL$pH9tHHHH 3HL$ HT$8HJHL$hHJ HL$`Hu H06#Hu H16#H 6#HL$HHHHHZHHHH=%f;HD$8HP]HH9~-H%H HL$H2<%EHD$:D$ 1HD$腴H<%wH] GI;fUHHHs|HL$H3#bHT$H*HL$HHHH[0H4Hv H| H8H|(HxH|0HxHxH|8HxD>D;HT$HRHuH],D$[D$RI;fUHHpHH`H5NA%Hc@H9PH$H$H$HH9%H$LDJAMI!G ID)L9T$4HH$HLAHD$8@T$4HHD$HHHT$@HD<%HHD$P%HL$@HT$HHD H$H\ 0HD$Pf[H HL$XH$HL$`HL$8HL$hHL$XH $J EWdL4%Hp]Hp]***HD$H\$HL$ HD$H\$HL$9I;fvUHHHZHBeH] I;fUHH(H\$@ 7%L$ YL$ QHH!R)HsQHD$HHL$H :%HHD$ 讬HL$HT$HD (H\$@H\ 8HD$ H(])HD$H\$k HD$H\$;HH9IN0HhH/dxdvHH(~H1IHIHH1ЉHLhIN0HhH7H(~H1HIHH1ЉH11HLhL91Ʉt1øI;fRUHH@==%HL$`HHD$PH\$XH|$hLt$8IV0IV0HT$0=[=%uH tcLMt2LL$8M9t(HHHLHHHHHHHqLDMt{MM9tsHLM@@MLIMI0MIY`LHHIxHHH?LHHGHPB'HL$0HHHHL$`HH)HHHHHHT$0HH9wZHH\$XHLD$hHD$PHT$0DEQDAuAtIFH@]H@]&&&fHn 誕HD$`D;VHz HD$H\$HL$H|$ HD$H\$HL$H|$ rI;fUHH`H$H$11HH9wHnLCHH9LHHT$ @t$H\$XHD$8I@HD$(HL$([HD$@H\$HHL$PHD$8L$HT$ -HT$ HD$0HD$@HnHHD$0L$HT$ H}LD$@MtE@(&E1!LD$PALcIIGDD$DAu tt lH~HL$L$1L$DI9~vVLWL$MHL$I9%H\$XH$H$}HH`]HH`];$H/$*$HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(I;fvlUHHIN0H/dxdvHhH(~H1HHH1ЉHH HhuM6EWdL4%H$H]1H]II;fyUHHH۹HLـx1QH\$HH HfDHIV0HhH/dxdvHI(~I1ILIHH1ЉHIhIv0LhI8I(~I1ILIIH1ЉL11HLhIv0LhI8I(~I1ILIIH1ЉHLhIv0LhI:H(~H1IHHIH1ЉH11HLhL9rII(IY(H]H]ILL$L[HL$HT$HJ H]HX(H]HD$H\$HD$H\$@[I;fUHHH=6%@0HxHD$XHHHHD$HL$XHHT$HT$PHT$HL$ LHL$(HL$HL$0HD$8HD$@HD$H$kEWdL4%HD$HL$XHQH9}sHIHHH]HH]  HD$HD$Ld$M;fUHHHJHrLJ0L$HZLJ L$HR(H$HD$0D8DxDx Dx0Dx@DxP1A gH$HzHrILBHrHHHHH?I HD$0H$$HPL$IHĨ]I;f1UHHXIV0IV0@1Lc 4%1HL9} LP@L9LPMMuLLH LP(Dx @0H.%HpfH9HD$hHT$PLT$@H\$HHPLHAHHD$@H~5H@HD$0HHT$8H\$HHL$0HAlHD$h@1HD$PQuAtIFHX]kfHD$;HD$I;fUHH8HL$XHD$HH\$PLD$pL1A HD$0H,%ҠHT$pHu6HL$PH\$HH9~1WH*WH*^HT$0XHJHHL$PH\$HHuWH*HT$0XHHJJHL$0XHYH ,%蛤H8]HD$H\$HL$H|$ Ht$(LD$0HD$H\$HL$H|$ Ht$(LD$0I;fvCUHH(IV0HHt11HH5\/H(]H@ ,XHD$HD$I;fMUHH(H\$@DAt!A tHD$8Ht$XHL$HH\$@H|$P H(]HАD|AAMF0AMF0H1AD|AEtALD$ HHt$8|HL$HHH\$@Ht$XH|$PLD$ AEEZEACA5IF(HHHL$HHT$8H\$@Ht$XH|$PAH(]HD$H\$HL$H|$ Ht$( HD$H\$HL$H|$ Ht$(mI;feUHHHHD$XH|$pHL$hH\$`1sHD$Xu HxhH"H H"H9HL$HAHT$HD$ HL$(HD$hHD$8HD$pHD$@HD$`HD$0HD$H$EWdL4%HZ"Ht=H V"HT$H9s=HL$XH`=H*%tHf[I I[H HH]HH]HH]HHD$h~H HD$ 舀~H8 &2HD$H\$HL$H|$ XHD$H\$HL$H|$ @[I;fvRUHH8LRL?"M9v4HrLB LJ(HJH"ORJD~D~ D~0D~8LLD$HH\$XHL$`HD$PLHD$hH$HD$pHT$x@$HD$@H$H4$EWdL4%$T$'Ht$(LD$8LL$0tLLH:HD$@HĐ]HD$H\$HL$@|$ HD$H\$HL$|$ ZI;fUHHXHJLt$HI^0Hr(Ht$8Hz0H|$0LB@LD$PHB LJR8T$/ƃ"IdžI=$%tIM IKHD$@HL$HLHD$8H\$01H|$@1L$/tHD$@H\HD$HHH0Ɓ"HHT$PH D=I$%tH;I HǀHX]"fI;fvAUHHHHHH9H98uH]H <HD$H\$JHD$H\$I;fUHHHH4 LI9rL L:M9sI9 1HH]s L :LM9wHH9IHL IMMHL M9r LѐL9wM9rIpII@]HqH9}+H9s+HHH4IM LL9vH]H]I;fUHHHD$ H\$(@Hu!HL$ HyH HH]HL$ HQHpH9veH HH<ILLL$(OHt1I9rLL9vLȻH]fH9}HHH]11H]94HD$H\$HD$H\$I;fUHHXHH4HH9v HH)H1H\$HH|$@H!HD$hHt$8HT$0H~0HT$hHrHxH9H2HHt>H|$HH9@ HT$hH|$H1LBL L9}IHMLd$@M9AILd$@E1fE@M9^IrMIOlI9@HMl1HJI9%H2LBM)MII?M!MSJIM)L9IIII?M!JH9tIHH!HT$hH|$HLd$@HBHJHH9HJHD$0HL$8H9DE0@t(IBI9hHMdHD$0HL$8H9Et#M9:IK<HD$0HL$8H9LT$(HBIpH9HrMJfI9LLjM)M}III?M!M)K;I9IpIMII?M!K\I9@@J fH94HHT$hH|$HLL$(Ld$@HD$ LD$LL$PHrH4HrHHHJ HbHT$hHHrHL$(H9Ht$ H9H\$PH9t&HHH[HL$(HT$hH\$PHt$ HzLAL9L LRI)H)HIIII?M!KLD$I)IH)LIH?L!HI9ILH9tHHHT$hHt$(H|$HILd$@HBI9s2HIJ<NdHD$0HL$8H9vI)E1LbHX]       f      f  1pH=` DzHD$H1wHO3 DzHD$@wHg3 D{z6pH )šHD$H\$HL$HD$H\$HL$I;fUHHHSH9P~%蹀Ht$HH]HD$!HD$I;fUHH HH HH 9 HPH9vJHPH ʐHHt6StUSt9HD$01H1ɇKH%HD$01HH 1HHH ]H 1H 4 HT$HL$jH3 uHD$DoH9 juHD${olkH! #D蛜HD$HD$I;fvIUHHHtH]H3"HHBڸH >%H]HD$gHD$fI;f~UHHHHAtH]H HD$iH|Q VtHD$lnH8 ;t1TnkiHj yHD$HD$dUHHH\$0HHHHD$fH~H9H} HKH9H]fhHD sHD$DmH, jsHD$0DmjiH] D蛚UHHIN0HHtd5JrCHD$(H {HD$( ʻHH!R)HiɐHH]ÉL$hHC rD$l$j@;hH\ ʙUHHIN0HHtd5sH "H]ÉD$sgHhC rD$ligHB\ ;̄t!H %H%H5%H=%1111L2HHHH5%L %HL@HxHP Hp(LH0J HH8H+x*#Hc %HHn*#HXPH /#HP@HHH@HPPHX HX8HH)HPHHHHHHHUHHIF0 ~HH`%HP%H]H~H$EWdL4%H]I;fUHHHH`%HP%H)HHHD$XHt$0HǀP%=c%uHXH\$@11A1$HL$8H`%DHL$8HHD$XHt$0H9|HP%HH]HH9L`%IrHL$8LD$ HT$(LD蛻tHD$XHL$8H\$@Ht$0HT$(HD$ 1HMHuHD$XHL$8H\$@Ht$0HT$(nHShHHw+HHHsHƀH?HHR@HsHIIJDDtHD$XHL$8H\$@Ht$0HT$(@2HKH$HHH@H@HHHD2H AAH2HEuD Sbt3Ht$XLLChLHHL$8H\$@Ht$0HT$(;HT$(Ht$0H9soH\$XH`%HHHL$8H\$@ fDHw2H`%HHHѿf?HD$XHP%HH]HYTH@HH?;H/HD$DHD$H8ʃHLщуHHXLʁ ːHNHʃ HƉNtHʁpHt9tÉL@@8t9IAx@@u ApHt9tI;fvRUHH %u:H % %uH %H %H]I;fv{UHHHD$ H\$(HC0HD$wHD$(HHHHHzHD$诃HD$ BHD$ HHHT$(H HP膃H]HD$H\$HD$H\$aUHHD$rtu1҃wtu=1HtHHH@HtHHH@D$H]HHK(fDHt4HHȿH{(ADEtHu1Ht L$H1HsHHS Ht/HHпH{ AEtHu1HtL$ Hƿ1HHH tH% I;fvCUHH HKHgHT$HD$HL$HD$H$EWdL4%H ]HD$H\$HHD$H\$I;fv%UHHHZHBD蛈H]PI;f<UHH(HP wu HP(HHƸE1LAfDELAL ADEuLIItuYDNAs@ruArwfwuAsrruAs1Hu+HT$ HuHӹ HT$ E1LIwIH(]øH(]Hq nH W f[HD$\$L$HD$\$L$I;fUHH HD$0A{HD$0Hxu#H 0%@蛧HT$01BHHHL$H HH[HD$H ]E8HDŽHzH<HrHKHHH H4H<HpLM=%tLLpL M MSD?HDŽ=%wHLI;MKVH)HD$1HD$I;fUHH`#1HHIIJ#"H "1۹HHIIJ@HHD$<D$DH%HT$@Hc#"HcH|$PHt$HHD$'-H@]IH!HRLLI9t)IPMuHL$(H_"zGHL$(HHD$0 H|H\HtHHuHSH'RH HT$0H =q$tHJIIKHBHUHSHQH HT$0H =/$tHJDIIKHBH H@]HD$蛴HD$qI;fUHHHD$ HHDHtMHHL$ HQzYfDzZu#5H8O{@66HL$ HȀxZ@5H J@6HD$ HHXH1HD$ HXtIxYu%t?u5H @@5T5H_> ?565q75H]H]H]HD$OHD$HqW I;fAUHHLt$HT$HPHT$ =T$tHp iIIsHP x[=-$tHP(BI ISHH(HT$HHtv=$tHI3HǂHHP@HSHʃ=$tHpHIIsHPHHSHу=$tHPP@I ISHHPH]HT$Hr =z$t(HxLB LH8I3I{ICMCIK MK(HpHB HX0HH8H]HD$H\$HL$HD$H\$HL$I;f<UHH Lt$x[uI9F xXHD$0HD$0HHHHtAui=$tHHHI H@HHHD$HD$0HL$HQ(HtHX(@H9Zuzu1uO4vH~HHPHDH ]HZH\$HRHP@HHHD$H ]11H ]HoJ肮H 1dH DdHD$PHD$I;fvjUHH0D$Hx0u D$1H0]H rHL$LHL$HD$ HD$HD$(HD$H$hEWdL4%D$H0]HD$ƯHD${Ld$M;f?UHHHrLN(LRL$MtMIE1L$HRH$HD$0D8DxDx Dx0Dx@DxPHZ0HJ81E1{Q HD$0WH|$@H$H9T$Xt H\$0HL$8H|$hH$tHD$PH$HA0HD$X=$tHQ(,IISHA(HD$`=$tHQ8 IISHA8H$HĨ]H$H@0HĨ]譭I;fUHH8{+w1$ST@1HL$H@t$HA@,x ?HD$@H؉qHL$@I HHT$HHt$HL$A8HRHt!Hz H9szZtHJ1H\$H\$=k$u HHt$`Ht$`LF pIMCHHV fu džHrH|$t|HL$ Hp oHL$HHQ@HHQHHY(H)HPHQPHI(H)HP=$uHL$`HL$`HD۾IISHHH|$HL$ HtHHD$8H9rFH9~r@H~8HN@HFXHD$(HHF`HF8H$ۢEWdL4%HP]HFHD$0&H )1HD$@-H 1HD$8D{-H 0HD$0D[-H 0&H XHS XH WHD$'HD$f;UHH0Lt$IN0HT$@uHTHD$HD$HD$HD$8HD$ HT$(HD$H$(EWdL4%1HH0]I;fUHH8HBHD$(HJHL$ HRHT$0=$t$EWdL4%HD$0H\$(HL$ 1St 脞$xEWdL4%H8]D;VUHH@HL$PD$HHT$HD$HD$HD$ LHD$(HD$HHD$0HL$8HD$H$EWdL4%|$t ϝH9H$@軠EWdL4%1HH@]I;fUHHHHBHD$@HBHD$8HB HD$(HB(HD$ HBHD$0{t'HD$0Ht"Hl$ HD$0HD$0H @H9u HPHR1HD$8H\$(HL$ HHT$@HH]覠AI;fXUHHLt$H=$u"H{ .h-##HL$HQ0HQ0} ǂHI0 teu?ǁ r"H+ -"$EWdL4%$EWdL4%1H]ǁ "Hd ,["1H]ǁ H$ H'$ @=#$ =$~  )NH]ٟI;fhUHHpH$H$H$H$SAr1E1H4RL"MLItHt9Ht$8LL$X!H^ +HD$XH\$8+;!,T$4 H+ @[+D$4' !H$HHL$PHHL$HHHD$@{ H  +HD$PD{'H *HD$HD['H *HD$@D;'H *e H$H$H$H$:!Iv0DAvAA"@uAAACT$05L@0I9AE DT$/I9uo}A[H0 )H$H$1H$1CYH$T$0H$DT$/Zf;!VH$pH$H$1H$1XH$T$0H$DT$/=$uG@Eu&Ht9H HL$`H|$hH\$`;vT$0G$HF3!vT$0H$@HS$ t H$mH$H|$0LD$ t$HL$(T$H\$` A HL$Pt$H\$hT$HujEWdL4%L$I'LD$HHEWdL4%HD$HH9$}#$ ĠEWdL4%LD$HȿEWdL4%EWdL4%L$IH$fǀHH HP1L$Hp]11Hp]Lt$XHL$@HHD$8Y H H$[H HD$8DH HD$@D6 Q HD$XHL$@HHD$8 H [HD$XHV D;HD$8QH DHD$@1 HL V<HN 'E<HD$HD$I;fUHH@HD$PuZL$HD$8tv u3فK7T$tHD$81۹3H@]H@]Lt$0HL$(HHD$ D{ H  HD$8D{H HD$ D H HD$(D V q HD$0HL$(HHD$ H/ {HD$0Hv D[HD$ q H D;HD$(Q H v:HD$\$L$裆HD$\$L$/UHHHlLt$L@HL$ƁH]I;fUHHHdfD$HdL$L$HdkL$HcH@H !H wH]H Hs!& H] J9脅@;I;fUHHPHP0HH9HHuHu;Hu-u#DHt11 111҄+HH9r H)ѐH9 !v 11HP]H\$hHD;cHH\$@HD$81H|$h;HT$8z+w H|$@1(rt0H|$@AH@AAEIL!Hnr)f@WD$$H\$0HHHL$hfd}HtP"11HcfHXHTHu11f H؉H|Hruntime.H91҄t1H}1'H\$(HD$HH ʞH\$(HD$HuH|Hreflect.H91Ʉt 11HP]ËL$$tJw2H\$0HHL$hH9w|H)fDHwmHP]øH\$hHP]HL$8HD$@HøHP]11HP]11HP]11HP]11HP]11HP]H ;6H菟HD$H\$HL$H|$ UHD$H\$HL$H|$ I;fUHH HfDHP0HH(>Ht Hdž(>HHD$0Ht$HA"!H<"HD$H!"%HD$0Ht$HT$H5H׹HHH ]HnD &5HD$萾HD$&UHH(HtvHH0HH(>t@HD$8HL$HfHD$HL$ HD$H$nEWdL4%HD$8HL$HH(>HǀH(]Ha 2g4I;fvUHHHBH5!H]I;fvvUHHH@t^HD$H"5 HL$H@Hګ"H+"H̫"H"HH"Hǁ@Ho"J$H]HD$HD$pI;fMUHH(HD$8HL$HH\$@Zd$uHT$HHt$8H|$@1^IN0ZuH$#H(]Lp$MMI?I7MIM)L-N$K!LH9~H ;$HLMI?I!LN$MH9rkIIH)IH)H?L!HI9LODL9hLd$ LL$LLbHT$HHt$8LL$L$L\$@Ld$ f,薛H芛HD$H\$HL$U~HD$H\$HL$I;fvJUHHIN0ZuHL$H6$HL$H]}I;fv5UHHIN0ZuH$ "H]D}I;fUHH(HD$8fHH\$@HD$8LDHHHHz0 tHHH)III?L!H>Ht$@H9HLH\$8H9tHT$ HL$蓝HL$HT$ HHHH9r)HH(]ÐHD$8H\$@VH(]H(]襙HD$H\$HL$p|HD$H\$HL$I;fvUHHHH]|I;fvUHHHAH]{I;fv8UHHtH fH~ H]ÈD$y{D$I;fv?UHHPHD$8D8Dx1۹gHA@ƬHP]D${D$I;fvLUHHHHD$9HD$@ZHD$91۹gHA Y4HH]D$zD$I;fvJUHHxHD$ED8DxDx Dx#1۹3gHA蛢Hx]D$L$@zD$L$I;fvLUHHhHD$GD8DxDxZZ1۹!gHA@4Hh]D$L$ fyD$L$ I;fvZUHH8HT$$D:DzHHHHw$HHHHH?H!HD$HH8]AHD$yHD$I;fUHH8HD$HHHHT$$D:DzHHHLHлHHHT$HH}HPHs9D#-HHw$HJHHH?H!HD$HH8]芕腕HD$ZxHD$PLd$M;fUHHĀHT$D:DzDz Dz0Dz@DzPDzTc HHHH~,H΃H= <@|HsHzHH9@t HrHds[DxHrHds@D0HHdw$HNHHH?H!HD4HH]Hd胔HdwHdkD$H\$HL$7wD$H\$HL$I;fv%UHHHC$HH]HD$vHD$I;fUHHhH$HD$x{D$$"HD$$H$1fHD$0H$H9HT$x4HxHH)HT$xHH$H|$0 R t u|fD$"\nHD$"HfD$\tHD$H%D] ="t\u!D$&\@t$'HD$&HL)DFA^}JH HT$HHD$PHcHT$(HD$HHL$PH1HL$(%DHm HT$8HD$@HcHT$(HD$8HL$@H1HL$(xH HT$XHD$`HcHT$(HD$XHL$`Hg1HL$(3@t$%HD$%H:fD$ \rHD$ HِD$%"HD$%H@IV0~@D@uH$Hh]HD$H\$7tHD$H\$HI;fv%UHHHC$HH]HD$sHD$I;fv%UHHH$Hf{H]HD$sHD$I;fv*UHH(HD$8HD$H\$ HD$HH(]HD$H\$asHD$H\$I;fUHH(H\$ HL$HD$8H\$@HL$HH @[HD$ H۷ D;HD$H DHL$8H$@[H(]HD$H\$HL$rHD$H\$HL$-Ld$M;f UHHfDּ$D$'IF0HD$hHHǀ8H!ʚ;H!5w$H H$spEWdL4%IF0IF0LHIF0IHD$hH ծ"H9H臡EWdL4%H$Hם$H=ϣ$tIH 7$($H !HL$`H!HT$01#HD$PH;HD$PHHL$`HT$0H9|D$&HHD$pHD$&HD$xHD$pH$D$'2-H1@[=4$tH "FIIKH"=Y$ttH=ϕ"H="H="H=ݕ"H=o"H"fH|HKHF"1@H D!HL$@Hȷ!HHHD$8HHT$XHH\$(1*Ht$PHHt$PHHD$8HL$@HT$XH\$(H9|H9u$H"wD$&-=G$u*==$u!HHЋQ$t"1D$'H$HHĈ]Ë)$t11۹f[#1y$觜EWdL4%1HD$HHKlHD$HHH=}$uѐ|H "H/ %y"H h"H W"H F"H 5"H] $"HL "護HĈ]@;nI;fvUHHB8t舫]amI;fv^UH=/$t%H"H "H"SIIKISHHr"HHl"HHf"]wmI;fvUHHHH]:mI;fUHH(=g$u Lt$ HT$ H "mLIIKH""赜EWdL4%H$1H`" e"ufLS"AH@H1"  =r$~@H eDaH $l@UHHH9iH]UHHAu x"HiH]H]UHHXIN0IN0HH u!HL$@HT$PH"a HL$PH H~H9L ID=$t ML脄M IDH H9rQH HP Hu-ZuAtIFHX]H/: *f{ևчHTH HfH9 H"HLB=ؗ$tL "LRMMKMSL|"HBL H HH I9sPHT$HLH5c8HT$PH =c$tL uIMCH HHT$HH =1$LDAIMCḪ"HL$PH H@ 3HL$PH H HH H9sVHD$HHHѿH5/cJ7HT$PH =$tH 詂IIKH HHHD$HH =b$ftHTtIISHDHHL$@UHH`HP Hx<HxHxHxHfDpHP`HQI@*HD$pIV0IV0HT$@LLD$XM M9 u 11ېI I HM H9sSLȿH5a5HT$XH =4$tH FIIKH IIHD$pHT$@I =$tILIIKIDHuAtIFH`]LI I HfH9|I LL=$t LTxMHDHI fH9I Ht&=B$ftHsUM IsLKoLfeHL$PH\$HHȫ"HL$HH"=$uH\$P$HYH5"5II[H\$PI[IsHQH~"Hn" HD$pHT$@LD$XPH99 +@H H! $H H~ H( &H< uI;fvUHHH! $A{eI;fvUHHH( ;eI;fv UHHH HD @dUHHH 1HL$LHL$HD$ZH]I;fUHHHHBHD$@HHL$8HHHL$0H@8HD$(&Ht !HD$8+HD$0HV HD$(DH j%H|$@HG0ƀ"HG@H_8HOX1fHM D{cUHHH\ FH]UHHH1H"LH2„t$Ht$HObzEWdL4%Ht$H P"H9u$HE $zEWdL4%$d:EWdL4%H*# %{vzEWdL4%H]I;f<UHHHHD$XHŽ$eH ^"HO"HH="H9s;H5 70H 0"=$tH "{IIKH"H"=_$uHT$XHLl{HT$XIIKHTHvaH"H9"t*=$tH\$@H"KH\$@H "HH "H$H Hڍ$fHH]~H @HD$PaHD$I;fv{UHH HD$0H|$@H "HL$H"HT$1%HD$HHT$0H HD$HHL$HT$H9|֐H#$&H ]HD$`HD$kI;fveUHH HD$0H $HL$H"H\$10HT$HHӐHHHT$HHD$0HL$H\$@H9wH ]HD$+`HD$I;f UHH1Hq"5ۊ$40vHcHHu߉D$1 L$ D$9L$ H4"$ IHcHHD$觩HHT$HHH9wgH|HGODEBUG=H91҄tHaHr1HPHHH?H|$H11HHH]D|@HtQ _Ld$M;fUHHH$H$ `,"H)"pLt$x2"'HH $HkL$FH$H\$htq HJ$H!HD$X5HL$XHHHu1HHHo$H HID9HH|1HHH$HD9HH#|.H$H\$h{]$]$$Q$$E$$9$B|HD$xH@0Hmh{趚HD$xH@0Hx$HD$HD$D$EWdL4%HD$xH@0H@xHs$=$t 11sf[D$FuH 聯 q@mH"H"HH"H"=!t H9!ώ$Ht$xHv0Ht$pHcHL$PH#H{)HT$PHt$pHH=$tHuIISH^$HcHL$HHȈHD)HT$HHt$pHH=<$tHNuIIKHH"臋EWdL4%H$H ֟"HH&  HuH~ " :$荂HH"H=""u4H ""=l$tH!"[tIH H!"H=z""fu1Hk""=,$tHS""tIH=""HĈ]H- +SI@H"Hт"H9IHLLHI |LD$hHD$`L$GHH @utTH"LD$hI9Hk"LL$`JD =f$t M[sML N PLD$hL$GAH %"HfH9sAHпH5'H "=$tH " sIIKH́"HHˁ"HCHHD=$t H rI H  H f;Vv0Y+I;fUHHH"H+" $)ȋ ƃ$)ȋ z"9|H]ÉL$H %D$HcHa H R XgI;fvFUHHH "HQH9HL$Hޜ"1HD$H]H  /XI;fUHH8HD$HH\$PIV0LH92tH HfGH2"HL$PH|HT$HH0HL$HHH= !HD$0H\$HHD$H=ل$uHT$0HpHT$0IIKHL=$uH\$HH\$HHKHpIIKHCH=o$tHH0pIIKHX0HKHHtHH HQH S{"=4$tH`FpI ISH`=$tH{"BH\$HH {"HH"=&$uHT$H=H. =ƒ$fuHT$HHT$HHPoIIsHP5v$VHcHL$(HׂH/#HT$(Ht$HHH=P$tHboIISH$HcHL$ H|H"HT$ Ht$HHH=$tHoIIKHH8]HD$H\$dUHD$H\$5I;fvRUHH~"H ~"H}"H0H8=l$tH({nIIsH(H]HD$THD$I;fv1UHD0=$tH(mI Hǀ(]HD$@{THD$I;faUHHPHD$`Iv0Iv0 H\$hL$pHt$@=ސ"u11UHHHD$`HT$ H|$8fH\$ HthHD$8HL$`H|$hfeHT$8Pv ΉPH 1@>~uAtIFHT$@HH\$`L$pNHT$@~uAtIFHP]Lt$HHL$0HHD$(H AHD$`H< &HD$(;H  HD$0DHD$HHL$0HHD$(-Ho HD$H1H DHD$(HV D{HD$0 'H HD$H\$L$QHD$H\$L$nI;fUHHH ;|$=$1@$EWdL4%H]$EWdL4%HD$HH}(HD$"H v"gu$wEWdL4%E$YEWdL4%H]PI;fUHH0HD$@\$HL$Lvځ9uHHÉ@@t1IF0QuAtIFH0]H 'f{HD$@H D[D$HH @;D$LLt$ HD$@HL$HHD$[H HD$@D[H HD$DH HD$D6QHD$ HL$HHD$H [HD$ HV D;HD$QH DHD$1HV2 4VQH! +DHD$@QHc DD$H0HK @D$L+FLt$(HD$@HL$HHD$H JHD$@DH@ *HD$D;H  HD$DHD$(HL$HHD$-Ho HD$(1H DHD$HV D{HD$ 'H3 7HD$\$L$LHD$\$L$I;fUHH\$(L$,tfvSw8ځ9u,HÉtIN0LH]H !D$(H] D$,1H %DHD$\$L$KHD$\$L$UHHXHD$h\$pL$t r  r9u (HD$\$L$UEHD$\$L$cI;fUHH@D$PHT$8H.!111 *HT$8DHIF0HH G&"H\H H=0r$tHB^I ISHHmHD$(D$PD$0HD$(H$CEWdL4%s$Hs$H s$H= s$H@]f{aD$QDD$I;fv2UHHBIr$Hr$H r$H=r$H]cCI;fUHHHHHT$D$ H\$(HL$0H|$8HD$H$ABEWdL4%IF0IF0Hǀ=p$tH\IHD$@HǀH!1@HT$@~uAtIFHH]ÈD$H\$HL$H|$ CD$H\$HL$H|$ I;fv%UHH(ZHJHzHr 1;H(]BI;fv4UHH(D$8H!111 D$8,H(]ÈD$f[BD$I;fv%UHH -H=!11ɐ{H ]ÈD$H\$HL$H|$ fAD$H\$HL$H|$ Ld$M;fUHH$IV0H!=n~"u111CHtcHD$`$HHT$`Pv NPH 1@1quAtIFIN0SLt$pHj"@pEWdL4% k$H$HT$8 %"H" HL$pHQ0HBHI0HHT$8H5 څ"H Wi"H$HPi"H\$X1HD$PHH$HT$8H\$XH9}AHD$PH"f@tH$|$$J\$$فH$Q렐oEWdL4%H$HD$0>HD$h@DoEWdL4%H$HL$hH5 "HD$0Hu "L$$H"L$$D[oEWdL4%H$H\$(HD$8HH)$tuH "HH"H=m"u#Hg"H5g"H|$(111E1f1)H HD$@@5|i$@t5HL$HHT$xHj$Hj$HD$@HL$HHT$xHu:IV0H$H\$8HL$(H|$@HĐ]HHːIǁ5IM)LH@H9}=L M5AyA.IEL%R MEMuHu(LM HHL+H4"tH"@H tD$zD$DI;fjUHH`HD$pHL$8\$IV0IV0HT$H5 h$t31fL$HD$ \$(HD$ CL$t H#h$ Hf" g$g$t g$щȐ{HD$P1H" "t1H " H"H"HD$PHD$XHtVHPHp0HT$XHt1H@0H<HXHH#HH1HL$pHukEWdL4%H$HHL$0HT$8HH)T$tuHɐ"[ Hʕ"M=x"u11Y=HtYHD$@CHL$@Pv BP H 1҆PuAtIFHD$HQuAtIFHD$0H`]H %HD$\$HL$H|$ Ht$(:HD$\$HL$H|$ Ht$(QUHH Lt$IHu>INHL$fHu HD$@HL$HT$HJH\$H)HH HHT$D$HHHBHB+D$H ]I;fUHHIN0LH9HT$IVHHD$ IF@HD$(IF8w7EWdL4%rHv"HL$H9A0uHv"HL$HY0HHtHHv"HL$HQ0H9t HlHL$HI0HǁCH]H 59I;fv5UHH=c$t=c$fu c$R 1 H]D8I;fUHH IN0Hu"H9D$0HL$:{=IN0HA@HD$HHHHt5HHYL=e$uHD$HD$HHHQI H@HHL$H11Hi|"HD$H p\"H`HH/H9uH`=-e$tHCQII[HH |"=d$t"HH|"JQI ISICI[HH|"H{"@HL$H@Hb$HHH;"H H{{"H{"jHa{"[L$0tHL$H ]HD$HH$gdEWdL4%H ]H% c{Hz"H{"ےHz"Lt$IF0HXHD$H@0HǀXH D$'6D$f[Ld$M;f UHHĀH$Lt$XIN0IN0HHT$XHR0HT$HHL$xH z"={"v`$ȉz"=b$u H$Hz"NH$I ICH z"H^"H^"H\$x1HH9}H =^$uHL$` JHL$`I HD$0HH\$h;=[$t4^=^$uHL$0HL$0HJIISH1@^=m^$uHL$0HL$0HwJIISHH=A^$tHZ0UJI I[HJ0HT$ HZ0HHt$XH9u苊HL$0HT$ HR0suAtIFH_$JHD$0HH]HL$(HL$(HDu=HL$(H=]$tHIII[HHD$(HT$(f량L$HD$=l"u l"tHD$(WKHD$L$u6HHD$8HD$(HD$@HD$8H$&.EWdL4%HD$HL$(HHL$(=\$tH t"HIIKHt"Hs"HD$H\$HL$1/HD$H\$HL$fI;fv%UHHHJH H HHY[CH]0.UHH@D$P=UY$t4=0Y$u+H, *P$\EWdL4%HD$ $HD$HD$ HD$D$^EWdL4%1/LHD$8 HL$ HHxHH$EEWdL4%H\$PHD$8L$PKSHD$8ƀz+EWdL4%fD$Pt11=j"u11 B/HD$PH\$(HL$0HT$8H H5r"HT$8t t$P@H=q"7t$P@utH\$(HtjHHD$0FHT$0Pv FP H 1ɆHuAtIFHT$8t$P@H@]I;fvNUHH1H `W$v$1)IW$u,H]ÉL$fL$$9wG,I;f7UHH(11HHD$YHD$ H EHHP@HPHHP8H@XHHpHHp@HppHPhHP8H1۹ =Y$u HD$ HT$HD$ HH0EHT$IIKHP0=X$tHDIIKHfǂHHHHuo"H HHHo" HD$H(]*UHHHIV0HT$@t11f=g"u11 J,HT$@H\$0HD$8H HT$@HƆH=o"7uH5n"ugH\$0Ht]HD$8CHL$8Pv ʉP H 1ۆZuAtIFHT$@HHD9=f"u f"t+Hm"HD$@EHm"HT$@ƂHJxHL$(1*D[.IN0HA@H$@EWdL4%HD$@HD9Dyƀ!H#T$ HL$(HL$ $HL$ HL$HD$D$tYEWdL4%HH]UHHD$ 1D$ L$HU$Ht}Hu:u6uHVS$ $VEWdL4%HH5T$H>@Ɛ@u@]EWdL4%D$k]EWdL4%D$KHH]UHH1HR$ HhHR$HT$H HhHH]UHHHD$HL$HhH"R$HS$H H]I;f]UHH H\$8IV0LHHHHT$8HH'S$HPxLHHJ0HHD$ufHU$=U$DH U$HT$HhHU$=U$tU$HU$#HzU$IN0ZfuAtIFH ]{IN0ZuAtIFH ]H *zHD$H\$HL$%HD$H\$HL$qI;fUHH0=P$D|$HD$(H=BJ"HHHL$HT$ H "HL$(HT$H J"H $HL$HL$;EWdL4%HT$H0]HD$@HT$HD$@UHzT$H0]H [HD$$HD$I;fUHH IV0IV01H5S$>@@u-HuAtIFH ]HT$H[1HfHT$~uAtIFH ]#@;I;fUHHHg"D{ h"Hg"f/R$HR$HR$fHR$诽HgR$"fHUR$H QR$HtHL$H;R$H+R$FHD$!HhHL$HǀhBHD$Hu" I;fUHH IN0HDLt$Hf"GHL$HA0ٜHf"Lt$IF0HX蔼HL$HI0HǁXHL$HI0HxHL$HI0HǁH ]H D{HF jH. Y!IF0ƀI;fUHH8\$PL$QIV0IV0HT$ u'HD$HHe"HD$HL$QHT$ \$PHuf11HHD$(HDe"7Ht Le"HtYL$QfuHD$0He" HD$0HL$P@HT$(+HD$Hd"D$PH ۹HEH\$(HL$D$QtH~d"HD$ Q@uAtIFH8]L$QuH1d",HD$ QuAtIFH8]ÈHXHT$(HHXHL$ ZuAtIFH8]ËL DA9u@9u MyHp H Hݝ DH: $HD$\$L$HD$\$L$CI;fUHHH DA9u9HH=c"=["ft ["„t?HT"H5T"H9t T"t HIY"1Ht1ۉH]HD$(=H$tHD$(vb"5lb"uAH1H^b"2„t%1H5Hb"HȻ1@H]ÐHa"g b"+HD$(`5tVH1`5@@t>Hb"HHfӋ b"Yb"uH{b"۶HL$(HH=a"a"5G$9u.Ha"Ht"Ha"HD$(1ۉIH]ÐH5H5Ht HtH9HHT$H1H`"HD$Ht!H]ÐH`"HD$(1ۉH]HD$(@KEWdL4%H$HL$(H5Da"H ;a"uH3a"軵H2`"-H]HD$(1ۉYH]1ۉJH]HD$HD$I;fRUHHHIN0HH!HH9Lt$8Ht u$wLt$0IF0HX荵HL$0HI0HǁXHL$8HQ0HӁu*HI0HqHL$8HI0HǁHH]É\$bH, +D$H $զ萜HD$8H@0HHD$@Lt$(HL$ HHD$H' 膦HD$@Hd jHD$D{H< JHD$ D[֝HD$(HL$ HHD$mH HD$(qHc DۥHD$H D軥HD$ џLgH H !@I;f}UHHHI9N0tVHu;HL$trHL$HXHH臲H]H KH :HD$oHD$eI;fUHH ]"IN0t!ƁH\" ɅqHD$HW\"HD$@GEWdL4%H$HL$H5 ]"H ]"u H\"脱H["H]H :H )cI;fUHH8HD$H\$PIV0HT$0=9!t'11HH5D{HD$HHT$0\$P=CD$tHU0IIsH=D$tHp030IIsHP0ƀHT$HHǂƂH2HƠHrt$P@tHL$0HL$0HF=@$t?=H$t6@tt@u ƁtƁ["9t PHT$H=R"u11 yHT$HHt^HD$(%#HL$(Pv BP H 1҆PuAtIFHT$HHB8H$DEWdL4%H8]HD$\$CHD$\$L$M;fjUHHIF0H$x2H$xH%Z"H$`5tfH$Hh511D=mQ"t uQ"H$t&H$ϰH H$H$=?$t+H$HHK$H HH$H$ H$ri fS\2H=X"H=X"س=X"u14H X"Ht$HHmX"Hu HeX" gX"H$HHW"H$HHH$ H$H$5>$ u\H H5=$>@@t H5"7"f1Ht,H1۹訾H$ H$H$HH5LA"@Hvg5 B"v-5B"==$ADAAN9@@t$H@"L)H$ H$H$H5!H6Ht7H4$HD$3)EWdL4%H$ H$H$H Ht!H$1H @H$1@H$xHAH=V"tnHV"躱H$H$H$$HU"H$H H$ H$H$5<$t5Z<$@1@t&H5|U"HtH={U"7@11@tO1:H$$1HFU"H$@H H$ H$H$H$xt'5UU"=IU"Dv;$A)A9@@u%ƀH= U"71H=U"7HHV @tH$x.DHtH$HtH9| H$HH$xH$HH$H$ =:$u1bH@u$H$xH$ H$H$1.HQG$"H$ H$H$H$x@t)H<$YH H G$d#H$xH$H$H$H 8"H$H 8"H$H 7"H$H 7"H$XH 7"HL$pH 7"HL$xH"S"f軮 S"uH$`5ftHR"H$xH=;S"*H$xt1f S"Ät@ƂHR" 1HR" HR"{H$xgH$H9 HH$ gH$ H6R"1H$xT$?*ƁH=WR"7΅ HQ"臭H=?R"t1HHQ"@軱H$H$H$H$H$L$Ht8dH$xƀHQ" 1HQ" $@H=H$H$H$H$XHt$pLD$xL$D;H$xT$?H$5B7$t(57$wHt1H=P"H7H@11@H5P"HHH@HtWH$ Hu7H$ ;EWdL4%H$H$xT$?H$ HH)HHLf 1HH=}8$HEH!5L$@H$$h;EWdL4%H $H$ 1HO"HHO"H H=8$tH$ufH$x7HO"DH$ NH$`H]O"XH$`H8aH$HL$?t2H$xƀH_O" 1HUO" H$x1ۉH]1۹H]H$=-G"u11 HH$H$@H\$`iH\$`@HtiH$@H$1dH$@Pv ΉPH 1@>~uAtIFH$1۹H]H$hH$`H$xƁHN" 1HN" H$hHǁ@=F"u11 H\$HH$(H$MH\$HHtiH$(H$1LH$(Pv ΉPH 1@>~uAtIFH$1ۉH]H$pӃH$H$H$$HL"覬H$HH$pH$D車H$H$p@^H$xƁHL" 1HL" H$1ۉH]H$HtHH$$H$L$@ft H2$ =9D"u11H\$hH$PH$wH\$hHtiH$PH$1vH$PPv ΉPH 1@>~uAtIFH$1ۉH]H$" L$@t~uAftIFH$1ۉH]1H]ÉL$DH$HtHH$$H$D L$Dt H/$ =OA"u11H\$XH$8H$莸H\$XHtiH$8H$1H$8Pv ΉPH 1@>~uAtIFH$1ۉH]H$H$QH$u"H$1ۉH]É1H]HQ %3H@ %"H (Hǻ #DHT H %ٶH (ȶHy !跶H 覶9t)Hx@@tH111@vI;fUHH H=&G"u IN0H H ]ËH 9u9u{Huv ,$t &-$1ɄtQH JF"fHtC1t+HD$\$Ht.L$ HD$XL$ t H,$ H ]1H ]øH ]DI;fUHH`IV0HHT$X111 HLHHMF0MhI/dxdvMI(~M1HLIIMhD*"H1АE71AL *"EA1AI9HL$0L *"E HADl$1T$ DD$$D\$(D|$,DET$ DD$$D\$(DL$,tE1!‰T$ C EA1AT$(T$ 9T$$E"H)"DD$(L9LH("JI9eHu-H)"EAL9H("JD1DL$HD$PH\$H@t$Hh5H1KHtHT$HHtH9| HT$HHӄtDHT$XL MtHLE1L AHE1EDL$DL$I/dxdvLd$XDl$HljHD$PHL$0H("DD$(EAfL9H'"JDfD1H\$@@t$H|$8HDLfۄHuYHL$0H\$@t$H|$8DL$I/dxdvLd$XDl$HH11H`]1HH߾1H`]1HL$8H|$@t$H`]aDD9t&DN˜DHDAEt1 E11@Mu HȹHt$LH`]BBfBHD$HD$&I;fUHHHD$ H|$81fHJH9~[HLH9H s13AEM EE9uA9uM1Ƀt1H]ÐHiA"1f|HtHD$HHA"CHD$H]ÐH/A"*1H]fHD$H\$HL$H|$ Ht$(LD$0HD$H\$HL$H|$ Ht$(LD$0UHHD$H|$(1HIHDH9~]HLH9vSH s=AI5M5MtHt @I9LHt MtL9|LLɐL]I;fGUHH( `&$tH L4$HH 9| 11H(]1D}H?"e1zH=&$t$HD$H\$H2$su,HD$H\$DwHr?"m11H(]H'$Ht+HD$ HD?"@;HL$ HYHD$H(]HD$H\$8wH?" Hc2$11H(]ÐH>"11H(]11H(]jI;fv2UHH >"HuH >"fHtH9~ "芯]HD$HD$I;fvaUHHIN0t:ƁH>" Ʌ| "H]H- !kH ZI;fUHHxH8t8H$=)6"u11HH$H\$(HL$`H1Hx]Ht$hHH$HL$`Ht9HT$hHл5H\$(HtHD$`HL$h1: H\$(HtJPv ʉPH 1@:zuAtIFHPHL$0Ht$8T$@H@IN0HHtD|$HD$X <"T$$H<"&HL$8T$@Ht~uAtIFIN0H1Hq0IN01HHL$@HHu HD$HH+H2HHD$`փ=$uHT$@"HT$@HH I3I{Dt HD$HH=$."u11H\$ HD$0HD$`iHD$H@Ht 6[HD$HH\$ HtdHD$0HL$`SHT$0Pv NPH 1@1quAtIFHD$`THD$HHt ZDHP]HD$kHD$aI;fUHHHHD$X\$`HP0HHT$@=,"u11HT$@HHHD$X\$`HL$Ht$0Ht0tHH˹HH˹@HD$XHT$fHtRHT$0Pv ΉPH 1@>~uAtIFIV0H1Hr0IV01HT$`t ^4"1҄tHD$@H\$XnbHJ3"HL$XHǁH3"Ht HHHʐH p3"HӐHm3"o3"H2"=$$tHH]Lt$8HL$(HHD$ pH@` @zHD$XzH8 D{zHD$ tHRd D[zHD$(qtqpHD$8HL$(HHD$ oH_ zHD$8yH 8 yHD$ tHd yHD$(slqoHG HD$\$GHD$\$I;fvUHH1H]HD$HD$I;fUHHHH0uSuFHu8Hzu'HHtf11 111Ʉu$HD$ H8H$6EWdL4%HD$ 1fH]HD$+HD$AI;fUHHXHD$ht)H@@D{HWP)HD$h 1=z("u11f;H\$ HD$@Ht 1DIV0H1Hr0IV01HHD$h  膚HT$ HtRHD$@Pv ɉP H 1҆Q@uAtIF$HX]ËHH؉CHD$PH\$8lH %wHD$PH\$8wH\ vlH5P ;Hi *Lt$HHL$0HHD$(lH5\ vHD$h vH4 yvHD$(pHP` [vHD$0qpmlHD$HHL$0HHD$(kH[ vHD$HuH 4 uHD$( pH` uHD$0olmkHC HD$&HD$!I;f UHH0HD$@=%"fu11 HHD$@H\$HL$ HP0HHT$(HtHȹHD$@HT$fHtRHT$ Pv ΉPH 1@>~uAtIFIV0H1Hr0IV01HHD$(H\$@17hrH0]HD$"HD$I;fUHH=$"u11yHtXHD$jHL$Pv ʉP H 1ۆZuAtIFH~pH]eD[I;fvUHH-hH]HD$HD$I;fUHH0HD$@IV0HT$ HHT$(HD$@HH+PHt$(Ht@H5H<H5H HH?r'H $H9Hdž5 H $H1tH*" =$uH\$@H\$@HK0I HC0HHHǃHT$ Hǂƃƃ=C$tNHs(H{ LLL`LhLLI3I{MCMKMS IC(Mc0D{ DHǃƃHǃD`Hǃƃǃ=$tQH~BH5$HWH*fHnYH,H=}$H7HǃHHHHL$Iv0HH~0Iv0Ht u?HD$(HL$Ht$HD$ HH8H$dEWdL4%H0]Ét$(fHco pD$jIhdfHD$ tH HH= 5ԗHD$ HD$@UHHIV0LH92t9H9rHt3HF@H^8HFXHN`H~PuH]ÐH4 SH~ BUHH`HD$pH\$xH$Lt$(IV0IFAƆIV0HvIV0H`5t9HT$0H}H$EWdL4%HD$pH$HT$0H\$xHt$(Hv0HHT$xHD$(HPhHt$pHppH$HxxH9wH9PsCH HL$PHD$XHD$PH$EWdL4%HD$(HT$xHt$pH$L@xMtL9wL9@sCH HL$PHD$XHD$PH$EWdL4%HD$(HT$xHt$pH$="u11HT$xHt$pH$HHD$(H\$HL$ HtiH#HD$8H\$HHL$@HD$8H$&EWdL4%HD$pH\$xH$HD$(HL$ HT$xH\$Ht$pH$D&"EtiHnHD$8H\$HHL$@HD$8H$EWdL4%HD$pH\$xH$-HD$(HL$ HT$xH\$Ht$pH$Hu(IAEAEtH6LHT$HHL$ HT$xHt$pH$LD$(tIPv ȉP H 1ۆXuAtIF%"tH\$(HtxH0Ht$xHD$0pHT$0DPEv AHP H 1ۆYuAtIFHD$@HT$HHL$hH5HL$8ZuAtIFHP]HFg Hg wHD$H\$HL$@|$ @t$!HD$H\$HL$|$ t$!L$hM;fjUHHa#~ Hu 1H]H$ H(Ht H>Hv11H$H$9LHcH$HZ HH$fHH$HHHH?(HH H$H$mHL$(D9DyDy Dy0H@uD9H$ 1HL$(2HH$HHH;H$H22ILOH\$(H9t$H$ILH$H$H$D:DzDzH$H$H$H$ HH$H H$=#tH H$H衚H$H$D2D1DrDqDrDqHiH$HHHH=r#u H$aH$I HH]HD$HD$pI;fUHHpHKHHH)ы=!@H9t?H$H$HHDH$D9HAH$HH HH @|D|$D$ D|$XD$hHp]à ~H HtHH H9u*HT$XHHʐHL$XH|$`uHT$`D$hHT$HHʐHL$H|$uHT$D$ uHS "VgHL$XHT$`\$hHL$@HT$H\$PHt$H > "HHL$@H + "L$P ) "HL$HT$\$ HL$(HT$0\$8Ht$H "HHL$(H "L$8 "H "kHf ezHD$H\$HD$H\$I;fUHH HD$0HV "jHD$0H HH=< "uH=B "H "@fHL$0H HH }H "HtHH " "HuH "HtHH " "Huf4HtHH HHL$HHtCHYH)Ӌ}!H9t1HHD$HL$HD$H$EWdL4%HL$H9uBHzHD$HL$HD$H$EWdL4%HD$HHHHHHH ]1H ]HD$HD$:I;fv1UHHHJHL$![HL$HHYH]I;fv6UHHHJHL$HHYfHL$D9HAH]@{I;fYUHHhD|$D$D|$PD$`H Ht|@HtHH H9u*HT$PHHʐHL$PH|$XuHT$XD$`HT$HHʐHL$H|$uHT$D$xH9";cHL$PHT$X\$`HL$8HT$@\$HHt$H #"HHL$8H "L$H "HL$HT$\$HL$ HT$(\$0Ht$H "HHL$ H "L$0 "H"gHh]HD$HD$UHHLt$IF0uHXH$EWdL4%HD$H@0IF0uuHǀIdžH]I;fvUHHH >uI;fv UH]I;fv UH]I;fv UH]jI;fv UH]JI;fv UH]*I;fv UH] I;fv UH]L$M;fUHH1#CHtu HĠ]H$H$H$IV0HT$0D:DzDz Dz0Dz@DzPL$AE9EyEy Ey0I@Au䃾H~gLMtRIyptFIyht:DLEu'HPHtH;t11\1U1NHH H@Ht+LMtHHLHA 1aHAHHHHa1 HĠ]fH@H$HpHHHH?H!HHD$01HmH$HHH$fDH9#wH9#vHHHАH9/!s H.HHH$H$HtHEHH$HHH$D#EL$MtMH0MtMMt I`E1H@H$HG"LH$H׾@oH$Ht(LJ0MtMMMIEE1E1E1E1HLLH$H$A@IF0HĠ]H@H@H$HH^pHNhH1A_H$HH }L ːMuH w_L$L9t?H$HHLHH$H$HT$0H$H$LPIQH HD$H\$HL$H|$ Ht$(諼HD$H\$HL$H|$ Ht$(I;f\UHH\$(X@Hǀ Hǀ H H=#t"H HxhI IsISI{HD$ H H@pH@x HPhHP%AHL$ Hy8tT$(0T$(uH5#HHq8̩HL$ HA8T$()|QH!HcһH9v6Hy!H HS!H9vH?!H!H]ZUH @nHD$\$ HD$\${I;fUHHX!9tCɉHȘH^!HHʐH J!H=J!fuH?!H Ht?H"!HHʐH !H= !uH!!Hǀ HD$hIN0HHh5Hh59 #HD$hHpǚHD$hH HD$@]HD$hHǀ Hǀ = #uHt$@#H H/Ht$@I3IKISH HǀHHD$8Z]HL$hHApHAx =#uHT$8HAhHT$8IICHQhHHD$HHL$PHD$HH$f{EWdL4%HD$hHH8H5HD$0H3HD$ HL$(HD$ H$;EWdL4%HD$hH@8HD$hHǀ(H !H5H !Hǀ5H5Hm"H Hǀ5HD$07HD$h@HX]ÉL$HD$hHcHD$9H jDHD$D>HN JDD$a>;9HU` kHD$躷HD$I;fvQUHHHBHD$DHD$zHt".WH#H\$f Ht"o[H]褶I;fUHHHJ11H HG#H+#H9#H#HH#HH9 ~ H=rMHǁ H@HL$H%t"DVHD$Ht"Ht"ZH]H;L$XM;f9 UHH !#  $0T$D=!u11讷T$DH$0HtfH$Hȉ臸H$Pv FP H 1ɆHuAtIFoEWdL4%H!H $HtT$DHcHH)HH5!T$DHH$H=!H5!D$0A9H#UH !$09HcfDH9 H5!HcH$HSHH$H=!H5!HH$HSWH$Hm!Hn!=#u H$HD!H$I3ISH5)!$0H5K!DBAAFE@ADD$LH=!D9| McL9s= H !IcH$H|w$0DD$LH$IHL !H5!=(#tH5!:I;IsH=!H5!H=!D9| McL9s=V H !IcH$H$0DD$LH$IHL e!H5f!=#tH5F!I;IsH=3!H5D!H=-!D9| IcH9s8 H !IcH$Hje$0H$HHH !H5!=#tH !-I;IKH=!H6#VT$DH$D$0%H$H0T$X‹D$DH$D$0A9H !HcH9T$XH$H !H HuHT O|T$XHH$HȉvH !H$H9H5!Hր=%#DAH$H$EHH$L$IV0HDH,HD9H=+!u11H$D$0HD$DHH\$`H$HȹH$HR0HH$H\$`.H$Pv NP H 1ۆYuAtIFD$DH$D$0H$HQ0HHB0(BIN0HHA8H$HQ0HǂH=!H !HH@0@=!u11蓱HteH$AH$Pv ʉPH E1DDBDuAtIFH#$0D$TH :!HD$TT$D9}H $!HcH9w@L !$0D9HcH$H# OH !H$H9H!H!$0DFAAFE@ADD$HH=!D9| McL9s7MH !IcH\$xH $0DD$HHT$xIHL g!Hh!=#tHG!I;ISH=4!H]!H=F!D9| McL9s7H 5!IcH\$pH艵$0DD$HHT$pIHL !H!==#tH!OI;ISH=!H!H=!D9| IcH9s2:H !IcH\$hH $0HL$hHHH !H!=#tH n!I;IKH=[!H#Q$0T$DDAL$111AH$EIL!McM9L!OMY0MM9tABEEM EE9uE9uMu IBLMZ`MtME1@Mu1`DD$PL$H$H$L2'$0T$DH$H$DD$PL$L$HH$HtIz0IZLDIrLH$HC0L$LCH$$0T$DH$Ht6H$H$HNH$H!CHt !됃=/#wH$4HHH$H$'$0T$DH$H$Huǐ !H !G9ΉA1ȉD…uuH !L!IH!L9s\|$\LÿH5;xH !=#tH!IISHt!T$D$0|$\IH$L[!B|LH5>#χ>9tH#H$>H$HH ]ÐH$HC0L$LC$0T$DH$HH$H$HH$H#jt:H$HIH$H!BDHp !eH$$0T$DH$f{vqlgbf[VQLGH=0 \D$ D$I;fUHH=!fu11sHtYHD$DHL$Pv BP H 1҆PuAtIFH]HD$eHD$[I;fvNUHHHD$hHL$HQ0H=q#tHY`II[HQ`HA8貝H]HD$HD$UHH HD$0Lt$IN0Hft"HBH$EWdL4%HD$0Hx0uxt1H hHL$HD$HD$H$ХEWdL4%HD$0HL$HQ0HHHA0HC0CH ]I;fUHH(HBHH0HL$ HHHL$@HD${(H9 3HD$ D-HtG2HD$D{-H 2HD$D,V*q(H{) DY1d菥*I;fUHH =!u11虧HtkHD$IV0H@HT$Pv FPf H 1ɆHuAtIF$H ]yTI;f2UHH8IN0HHHL$0H\$(HS0HT$H9uE{u?Lt$ H#įHL$ HI0HǁHD$(H@0@H8]ËCHD$&H_ 1HD$00H f0HD$(q0H D0HD$Q-H D0HD$*L(g&H2 WHv# W@I;fvFUHHD$HE!DCL$ U!~(H!HH]ÉD$諣D$I;fUHHX='#=# >#w=#t1!=#t #v11 !!!H5!H+5!H)))9HD$ H HL$HHL$ HL$PHD$HAH|$ uH!GH݇ 6H=p#t-HH9|H S!HT!1H># fHHD$@H!:DHt !HtMHXH!ƀHT$@HHȐ;HX]HX]HX]HX]ÐH:!5FH0 UH!FH^0 eUHfH9}HHx5tHX]ÐH!EHb %HX]H|$8L$T$\$ #H7 -D$HcHD$0HD$8HcHD$8D$HcHD$(D$Hc(H V-HD$0'H ;-HD$8'H D-HD$('$"H!DHD HT肠fI;fUHH(HD$8HJHL$ 1~u6HD$8ʁtvt uHD$ HH(]H(]ÉHL$HHD$!H6 0,HD$F&HA ,HD$+&#!H!CH BSHD$מHD$ I;foUHHpH!D;?!H!C1111%H\$PH!gCHD$`HL$PHT$X\$ HL$PHT$XHD$`DHu H2@Ɖ''G؉\$ $EWdL4%{EWdL4%H$=#$ !t !H#91ɄuD$ HL$`!HD$(H!6> x!t !#9uD$ HL$`f(HL$(H9D$ HL$`H)HD$hH%! H"!fBH HH?HHHL$hH9HOH!:D$H!{=1H! H!L$t 1 D$ HL$`HL$`D$ H!AD$ HL$`HL$`D$ H!=EWdL4%H pa!H H$HD$hHt$H $HD$赳EWdL4%HD$hH !y#HyHH9~mHHH!H1HD$@\$HHt=L$@[HD$@ѢGL$ft HD# HD$h=L#t HL$XHʚ;H9|,HD$hHHL$XHL$Xj!tHG!袶HD$hD$$H\$h1#HL$`HT$$ҺHEHL$`to]!teH@!;1H@! HD$0D$8H !HǁHL$0D$8HD$0ǡH!?HL$`N#~9HcHi@BH\$PHHt$hH9=#H\$hH\$Pf{I;fhUHH`HD$pH@#:11HHL$8f@H9Q!8HHD$P@@tHT$/tHT$PHT$PDBDJM9upDBHt$pHr(HHD$8HD$8HD$8ZH#M9HD$@HL$8H#=HD$8H`]DDL DE9uߐE9u$MuD!D !EEAE1E1Et4LB(ILL$pM9}GHD$8D2HD$X|$4T$01;HD$X\$0L$4GHD$PyHD$8HHD$DHD$zI;fUHH(xHP0HLMAفAAA HD$8HT$ LD$\$L$LJtPHD$HP0H\$ H9uHHL$8H9t\$L$F11111H(]Ë|$H(]11111H(]11111H(]11111H(]11111H(]11111H(]HD$HD$I;fvVUHH0HD$@H\$HHL$PHL$(tEWdL4%HT$(L$L5 !H0]HD$H\$HL$|$ lHD$H\$HL$|$ tI;fUHH0HD$@H\$HHL$Pt HL$(H\$ =!u11t$`菗HL$(t$`HHH\$ HA0HǃqDHtiHT$HHKHT$Pv FP H 1ɆHuAtIFHL$(H\$ uH!AH0]H[ 'fHHD$H\$HL$|$ t$(HD$H\$HL$|$ t$(@I;fviUHH(H {!HL$ Hw!HT$11HH9}3H4~uHD$\$H1\$ HD$HL$ HT$ʼnH(]LI;fUHHHH0HI9N0HHtnH9titOƂHB= #u,ƀ51t HȻH]1H]1H]1H]HD$肓HD$8Ld$M;fm UHH$EWdL4%H$HD$ H=#uH#Hi!3 !HcH$H t!H+ }!HcHL$x !HcHL$p !HL$hH 3#HT$ H)H4ׂCHHHH?H)HT$`Hc !HL$XHc P!HL$P6H HD$`[H" Hc'#;H H$fH jHD$xDH JHD$pDH *HD$hD;H HD$XDHD HD$PD{$!D$!D$Hc!H$Hc!HD$xH D$RH aH$H CHD$xH{ (D$$Hp!H$Hi!H\$H1HA$H$H\$HH9uHD$(H4‹|$DDD$H$FHD$hFHD$@FHD$8H bHD$(H GHD$hf[Hw *HD$@D;H HD$8DH H$HH0Ht-HH$DH$NiH LD$L$)ȉD$H$Hc H$Hx5HD$0H ED$[H *H$fHb HD$0DHL$(Bf;HD$(Hu'H q D$L$)fVH!HHL$(H9HN aHL$(iH 3H!H$H !HL$H1OHT$0HЋ@HD$hYHD$hED;HT$0HH$HL$HH9|H D[$t H !:H}!x1Hİ]DH$H`HH$HHH$H$xHG H$H H$Ht$HcH$'H$ZuH fV Hd D{6H$HHt$HHD$h HD$hgf H) ( H$HcH$HL$hHH$HHL$HHcHL$xHc HL$pL$D$ H H$5H HD$hH iH$H\$HWH FHD$xH *HD$pDH D$DH D$DH  H$HHt*HHD$hD HD$hL  Hr q, H$(HR!M.Hİ]ÈD$ۉD$qI;fv7UHH=ӻ#uHBN!f*H]H#)H]{I;f_UHHH=#u Lt$@HT$@H J!譢LIIKH4!M 8! #He!D(!HK!F-D$'H\$8HL$0H|$(FHհ!D( հ!L!AHL"H! < ED$'H\$8HL$0H|$(H!N(!T$&H!,T$&D$'H\$8HL$0H|$(EHH]HD $;I;f!UHH(HE#D'H!' #L$ 2!L$H!+L$D1豮D$H#@+L$T$9ze!tjHH!3'L$ M!1H>! HD$D$ H !HǁHL$D$ HD$eH!7+H(]H(]ÐHB#f+H(]谆I;fUHHD$(D$H!v&L$8 C! 7!L$(}H 3!5!T$Ht>HH5!HǁH !Ht HH5!H!!D=!!HC!;*D$@H,!'*H!*H]H]ÉD$11ۉِ;dD$ȅt ;!1fuɈD$qD$I;fv(UHHHH!!H]HD$(HD$I;fvIUHHHpuHxu1H]HD$ HHO! \!HD$ H]HD$DŽHD$fUHHD<$D$U!tc5_#9O…Ѓu1ҐPH!9OHt$HH!Hu H! !Q11H1H]ÐLL$D$~`H5!Ht%LL!Mu H! !HdžLD$Mt IIIH4$MH$HL$|$H]I;fUHHH DA9u9LH<Hu!HD$ EWdL4%H$HD$ 5uH)хH!HcH9Hث!H!:)хH!HcH9vzH t!H 9H !HHHH!H5 !H8H=u$HH!H?H8HH]HK (5,"fH: #5HD$H\$ځHD$H\$KI;f5UHH(HO!HHT$ HugEWdL4%H$HT$ )H5d!HcAAH9H5@!H4D  )|}H5!HcAAH9v`HD$H5ک!L8H4AD!HRHu!H5p!HLHT$ HD$HHH(]豝,觝"HD$wHD$I;fv/UHHHtH]ÐH! 1H]HD$!HD$I;fUHH ubHD$0H\$ HD$0H\$)@rtH ]@ύWHȘH ]HHH HHHH AEtHt HHlH ]HD$H\$L$f;HD$H\$L$'L$HM;flUHH0HT$(D:DzDz Dz0H@fuDz)14 @HHt(rHƉt H$(11H0]HL(HT(H=rHL$(H$(HL$HT$D$ H!+HL$T$ Ht=HHt$HǁH !Ht HH5!H!!D|$D$ H'!""H0]H!" c1HD$H\$L$|$}HD$H\$L$|$T̐H;tDJWH3Ht5)ʁs+DHtHHHuHCK봉ׇUHH D|$D$H HtUHH1H @@t>HǂHt$HtHHf H֐HT$HH|$D$H)…t%wD$@@tϋt$1 HD$H\$L$H ]ÐLL$D$9s><0@HHLJLD$Mt IIIH|$MHD$H\$L$H ]I;fmUHHHD$ H\$(L$0@|$4H)AA)E@H Hxu]Hp0HtTHT$HHtt1$YEWdL4%HD$ L$0HT$H\$(|$4HHE1L AEHhHD{7H$HHL$pHT$XH\$ H$H|$0uHHuBImemprofiL9u3ylerau*fy teu"HuHuH H$L!LD$xL !LL$H1 HL9MMZI9uHD$@LT$`IHLRju-HD$@HL$pHT$XH\$ H$H|$0LD$xLL$HHD$XH\$ HsHt H$2H$HtHt$`Ht$`H~Ht HvHtHD$@HL$pHT$XH\$ H$H|$0LD$xLL$H =# HĈ]HC f/k*k%kDkHH|94@,uH|*@H9w@HrH9r0H)HHHH?H!H1H1HHHHfjjHD$H\$HL$MHD$H\$HL$UH=z#t HfI H]UHHH=qz#tHfI ISH]HH$0H$8H$HD$XL$HL$HHKH$H=]s#w1Gb_EWdL4%H$HL$HH$H$8H$HD$XHH$0Ht$8E1E1AML$LT$@I9MIM,MaLd$xMm`MtnM9thLL$pD\$4H!! .H$0HL$HH$H$8Ht$8H$HD$XLL$pLT$@D\$4Ld$xE1M Mi MtKD\$5LL'HL$HH$H$8Ht$8H$HD$XLT$@D\$5Ld$xMJEM~0IhH/dxdvHH(~H1HHH1ЉIH IhfDH9D,SI9fF,SfD$SH$0H$Ht$8Mu=r#tNlE^M+EJDKI9L$It EtA,AD\$1E1f fF,bMgM9F,cI95IN,(L$M"D\$6fFbD\$1L$IHt$8M~PIt$HI9DrDI9fD\$6INM9v@M9rHt$8D\$1F,{fDM99|MbfDHt$HH)ft HL$H)H 7HH?HHHHH\$hHH@HD$(x8L$`t%HL$@^HD$0HH]HH]HH]H\$hHPHL$(y8uIN0uLH9t̐H@)H؋trHÉ1@@tҐHuHC8HH WHD$\$HL$+HD$\$HL$I;fUHH =X#u Lt$Ht$HDLI3ISH1=zX#tHQDIISHYHHY =TX#t&L@LILQDI MCMKMSH@DyfA>HpL@1LHLLMMKIMP L9tsIPIP@=W#tHCI ICHA@8A8I@(HA(I@@=W#tHQ@CIISHA@I@=}W#tHQCIISHAIP=\W#tHYqCII[HQHt=:W#tHP@OCI ISHH@HAHt=W#tHP@)CI ISHH@=V#tHAH CMICLAHI@P=V#tHQPBIISHAPHu=V#tHAPBMICLAPA@>fA>ftfA>=V#ft$I@@IHIPIXPBIIKISI[I@@ExI@PDI@PHt$=+V#tHPHD;BI ISHHH=V#tI@HBI ICIHH=U#tI@PHQHBI ICISIHPHAHA@>ftfA@>H ]IV0H/dxdvHhI(~I1IHIIH1ЃIhA8=fU#tHQ@H>AIISIKI{LL$HL$@HY@H HL$@LL$HY@Ht*S89Q8s"H9KtH9KuLLf;H ]HQHDHD$H\$HL$@|$ a'HD$H\$HL$|$ I;fPUHH(HPHpH2HHHLF L9tsHVHVHD$8Ht$H~(u1.HT$ >EWdL4%H$HT$ Ht$HHD$8H~HHu HL$=S#tL@I;MCH:V8W8HV@=S#tLG@?IMCHW@HV=S#tLG?IMCHWfHt=S#tLB@?I;MCHz@HV=sS#tLG?IMCHWHt=QS#tLB@f?I;MCHz@HHt&HVP=)S#tLGP;?IMCHWP=S#t HWP>IHGPV>fW>fvfW>HO(HVPHz(HJ(=R#tHVHLFP>IMCD~H 11HH(]H=R#tL@LN@f>MMKHǂ@HF@=YR#t HVN>IHF1HV =6R#tHVLFG>IMCD~F8HHHH(]HD$8HL$Ht$HVHu H~t-HtH~Ht89z8w HHHV@HtDH9ru=Q#t Hz=I;HB<=Q#t Hzy=I;HB=eQ#t HPZ=IH@H~(HD$H\$#HD$H\$I;fUHHHKHS@Hq=P#t(HyLC@LK=II{IKMCIs MK(HYHK@HsDHt=P#tH~@<II{H^@=P#tHq@<IIsHQ@HtMH9Zu=nP#tHB<I ICHJGH9ZuG=IP#tHB[<I ICHJ=%P#tHP:<I ISHHH]H@ XHD$H\$"HD$H\$I;fUHHHKHS@Hq=O#t(HyLC@LK(<II{IKMCIs MK(HYHK@HsDHt=TO#tH~@i;II{H^@=7O#tHq@L;IIsHQ@HtMH9Zu=O#tHB#;I ICHJGH9ZuG=N#tHB:I ICHJ=N#tHP:I ISHHH]H HD$H\$(!HD$H\$Ld$M;fUHHH$=R#lK#HT$8D:DzDz Dz0Dz@D$8 Go:D$< HT8HJAJLLH9t.H$H$HHLAH$H$H$LD$8L$H$1HIɻAMVS֐HuH J#HĘ]HĘ]HD$H\$HL$H|$ HD$H\$HL$H|$ Ld$M;fUHHH$H@HH$%HOj 贫H$'Bf[H$H@HH$ڠH j iH$ۧH$H@HH$萠Hi @H$莧詢ĠH$H@HH$CHi ҪH$ED[vH$H@H@hHD$xHAi 芪HD$xD1H$H@H@pHD$p趟Hi EHD$p軦֡H$H@H@xHD$hvHh HD$h{薡豟H$H@HHD$`3Hh ©HD$`8SnH$H@H@(HD$XHUh 肩HD$X.H$H@H@0HD$P賞Hh BHD$P踥ӠH$H@H@8HD$HsHg HD$Hx蓠讞H$H@H@@HD$@3Hg ¨HD$@8SnH$H@H@HHD$8Hqg 肨HD$8.H$H@H@PHD$0賝H8g BHD$0踤ӟH$H@H@XHD$(sHf HD$(x蓟讝H$H@H@`HD$ 3Hf §HD$ 8SnH$H@HHD$Hf @{HD$ 'H$H@HHD$詜HJf 8HD$讣ɞH$H@H$cH f H$eD{薜H$H@H$He 褦H$2MH$H@H$̛He [H$΢HĨ]HD$HD$'I;fUHH HD$0HPHH\$HHHH~tBH2HL$0HQHHHӐHt$H2HQHHIHHs2HL$0HIHH ]HD$\$HL$ HD$\$HL$7UHHPupC#=gC#tf =WC#t uHP]1DAnH@H5!<օtr׉D$HT$@HS#HHT$HD|$ D|$01HL$ #t-HGPHD$ HHT$(Hp!H\$ HXH0]UHHhH$H$D$xHT$xHT$ HsHH9wH9Vv1Hh]HD$@D8DxH$HD$cFEWdL4%D$HHt$@H\$ H9LD$PLH9Lt$`H$HtIIV0HRHHHRHHQIV0HRHHRHQIV0HRHHRHQIV0HRHHHQ HL$@HT$`HZ0H[HH HZ0H[HHt$PHHsHZ0H[HHHKHR0HRHHJHh]H\$ H$H1@H9H9^HVH+H\$(D;D{HT$8H H HL$(Lt$XH$HtIIV0HRHHHRHHQIV0HRHHRHQIV0HRHHRHQIV0HRHHHQ HL$(HT$XHZ0H[HH HZ0H[HHt$8HHsHZ0H[HHHKHR0HRHHJHh]Å@NjD$xH H21Hh]UHH D$0H\$8HL$@@|$HH$&EWdL4%!D$Hu#D$0H\$8HL$@ DH ]ËD$0HD$dHhX HD$ Hx )ؚ蓐Hi "I;fBUHH`Iv0H\$PHL$XL I8t#HtMLM9uMFM9AAE1E1D$pH$Ht$@DD$+uAHb2!fHt3H2HH\$PHքuD$pHt$@H$DD$+H`]à u7H$2!Ht+H HфuD$pHt$@H$DD$+H`]Ã!u1=?#u(Eu#HH\$PDD$pHt$@H$AsH IHX! HT$PRt#tsu H9tL$Ht4謇H $;H$HH$HL$`$tupH1#H$H[HHHD$H1HH)HrH\$(Hw 誑eHD$HD$X1N-HHD$`Hp]HL$0HD$8ʆňHD$8ۍHL$0HHD$XHT$(@H9s Hr茆Ljf!ID$H\$HL$H|$ D$H\$HL$H|$ UHHD$ L$ fHAH9#H1҇ $@2EWdL4%9EWdL4%9EWdL4%9EWdL4%D$ 1#HHH IH5Z HtH\$0HT$Hu sH]ÉD$( D$(H\$@;=u-#t HD$H=a-#t)HD$HuHD$0H@t@tH]ËD$($I1EWdL4%$0EWdL4%HD$(S;H]H]ÉD$H\$9D$H\$I;f<UHH D$0H\$8HL$@軃HK JD$0@[H **HD$@H@HHHL$H@HD$fHs HD$kFHD$[HG ʍ腃HD$@HHHL$H@HD$Hq_ 薍HD$ HD$fH6J jHD$8DۉH 9D蛴D$H\$HL$D$H\$HL$UHHHD$ H\$(=/+#uC= +#u:H8 *$-EWdL4%{HxHD$ .uHD$ H\$(6H]UHH ALH5F;#H4H6H~uAtIFHL$`HT$@Hs H1lH5"HHHH@.H4H H@sc@=#uH!rH\$(HK HL$8H'#HL$8HHHHDHHɹHDH#sPHH W'#HH\$(xH8'#!H)ؐH5"#HHHv Hx]Hx]H#HCHD$ -kHD$ CrmHD$`1uLmgkH{K H@JHDHwHT$pHR0HHL$0fHt HtKH\$HH #HHD$hƈHD$0\$HD$h Hv8Hs^HHHr&Ht$HHT$PH0HD$@HL$0HT$PHt$HHHHHHTOHk ۛHD$H\$K%HD$H\${I;fUHHPH\$hHt$8HHD$0LLILQLcL\$(HIE1fMeM9Ld$ MILcE$$ H\$hL\$(EtEA\$MA!JHD$0Ht$8L\$(NL\$Ht"MkIs=5#uZLl$ Ll$ M9rM9sH9v-Ht$LLH3@@tHD$0Ht$8DaMNUHP]H\$HIN0Ɓ"_H?HD$@H\$@[hH& rHD$@H\$rH, rHD$HD;rH]+ rHD$Do6jQhHڊ DۙHD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(fI;fUHHhHxH$HH@HP8H)HpHt$8H8H|$0HuH H9 wH9Kv LCLH HD$x1Ht$@LD$(D$HH\$PL$XH|$`L$H~( JgH$fcH *gH$fcH@  gH$f{cHwMFL9r( HH9HH2H\2H`]Lː[HD$@H\$HT$XL$E1ɐ*11H`]H)III?I!HLI)ILM9~wLLZL9IIOL9tLd$8HL$HLL$0HT$PHt$(H|$ HLH-HD$@HL$HHT$PH\$Ht$(H|$ L$LL$0Ld$8dH`]MHH` sHD$H\$HL$H|$ fHD$H\$HL$H|$ I;fv>UHH@H\$XH|$hHL$(H\$ Ht$8H|$0H\$ HH@]HD$H\$HL$H|$ Ht$({HD$H\$HL$H|$ Ht$(f{I;fvPUHHPH\$hH|$xL$HL$(H\$ Ht$8H|$0LL$HLD$@H\$ HHP]HD$H\$HL$H|$ Ht$(LD$0LL$8¾HD$H\$HL$H|$ Ht$(LD$0LL$8ZI;fveUHH`H\$xH$L$L$HL$(H\$ Ht$8H|$0LL$HLD$@L\$XLT$PH\$ H;H`]HD$H\$HL$H|$ Ht$(LD$0LL$8LT$@L\$HHD$H\$HL$H|$ Ht$(LD$0LL$8LT$@L\$H1I;fUHHpH$H$L$L$HL$(H\$ Ht$8H|$0LL$HLD$@L\$XLT$PH$HT$hH$HT$`H\$ H:Hp]HD$H\$ HL$(H|$0Ht$8LD$@LL$HLT$PL\$XHD$H\$ HL$(H|$0Ht$8LD$@LL$HLT$PL\$XI;fUHH HDHu. HHHHfDHH ]H\$8HL$@fHtH ~H11ZHL$@H\$8HD$H\$@H|0HD$HHH9wH ]11H ]HtHD$H\$HL$軻HD$H\$HL$I;fUHHHtH wfHvW -H\$0H11YH|$0H|/HHH9wHHHHHH]Ht.i$@;H /HD$H\$@HD$H\$LI;fUHH0H\$HHt@H D8DxHʾ HL$PH:HT$PHHH\$HH9HHLH9t&Ht$ HD$(HL$H$HD$(HL$Ht$ HHH0]HD$H\$HL$5HD$H\$HL$AI;fUHH(Hu(H\$@11uXHHHrGH\$@HHD$ HcH9ӺHEڹHHfHwHHD$ H(]fHtHD$H\$聹HD$H\$RI;f UHH@HD$PHD$(D|$0H=w]H=w,HPHH5; HDH5 VfAHHH5l HDs~H5 VHH9vHHHT$H11,WH\$PHL$fH9t"HD$ H)HHHHD$ HL$H\$PH\$0HL$8HD$(H@]HDxHDlHD$AHD$I;fUHH(HD$8fHTr@ DBHTrD@ vriucH|STKwDGu"Ku)Mu Tu1Ҿ11H(]11H(]11H(]H˹ @HuH} 11H(]ûH(]11H(]ù @HuH} 11H(]ûH(]11H(]HH H9|Ht$ H @NHuH} 11H(]HL$ HtPHHH1HH9w+HHH9s 11H(]HȻH(]11H(]@;HD$H\$+HD$H\$UHH8HtHHH1$1H8]H\$ Ht$0HHt$(HHT$(HL$ HD$0H$HL$D$6EWdL4%HD$@HtHL$(HH8]UHHHϗ 3XH]L$XM;fTUHH H$H$0D:DzDz Dz0Dz@DzH HH$0Hp(L@ HLHM.HHDHt H@IDHHHHHHH?IyLHxHpHك="tHI I[HLD$XLfےHDH= )H=4 HD$XlH$HQ(H4Hy0LA H9sUH$H$H$LHHHH5c@軁H$IHHH$H$H$H$L$IH)HL)H?MkXI!KHHHbHrVH$H$HS(H$HS0="u H$HS H$I3ISHs f'H$HD$xH\$p@{ HD$`HL$XH9H)HL$XHD$xH\$p豓H$H$H$}1HtPD@$DH(fDAA*HcHHDTDD D DDD$H} HD$xDL$GT$LH\$PH$HHH$HH$Hz~H2HxH9>tr}H$Htv(+1'H$Lc@IIB4@ut$G@ t@t @bHzH$T$LH\$PDD$H1H$Hu11H؉K DD$HHIcH$HgMIHHHH1H$D9DyDy Dy0Dy@DyHHT$XH$H$H$H$H$HT$`H$H$H$HT$xH$HT$pH$H$HS0Hs(HHC H9sPHHѿH5_;~H$HJ0="tHr fIIsHB H$HHHs(HkXHHR=K"t/H$H_HH$H$H$D1D2DqDrDq Dr Dq0Dr0Dq@Dr@DqHDrHH}HuqE0D2EpDrEp Dr Ep0Dr0Ep@Dr@EpHDrHH@(H@0HP8=w"tHp IIsHP H 1H ]E0D2EpDrEp Dr Ep0Dr0Ep@Dr@EpHDrHHP(fDHHH HX8HXHP8="tUH$H$H$Hp IIsH]H$H$H$H$D1D3DqDsDq Ds Dq0Ds0Dq@Ds@DqHDsHH@(H@0HP E0D2EpDrEp Dr Ep0Dr0Ep@Dr@EpHDrHHP(HHp L@0IHHP(L@0II?AXI0="tHp IIsHP H$xHp(HHuHBHt$hH$H$0H1H$PH$XHcH$`HT$hHH ]HHHD$`谬HD$`L$pM;fPUHHH$HL$hD9DyDy Dy(HD$hHH|$pu H$t111)11HH]HD$hHD$HHL$@HT$`HD$HHT$`HHL$XH$SH$H\$PHD$p;H$D9DyDy Dy0Dy@DyHH$H$H$H$Ht$PH$H$H$H\$xH$H$H$H\$HHt$XH9rHD$`2HD$`HٿHH5oZ*yH$HHH$HD$`Ht$@H\$HHkXH<H=R"t>H$H!ZH|HD$`H$H$H\$HHt$@H$D1D7DqDwDq Dw Dq0Dw0Dq@Dw@DqHDwHH$>HD$hHD$hHD$`H\$@HL$HH]HD$4HD$I;fUHH`H'BtHD$XH HHHSuHL$PHPHXHLH9sFLHѿH5awHT$XHJ="tLIMCHHL$PIHHXIL 9("nH(H9"ZHH+H\$@H诒HL$P =}"tH(IISH(HH+H\$HH bHL$P0HT$HHt$@H=#"tL85IMCH8L"IHD$XHHP1HH9}'H4ـtH1HHH9sHD$XH HH`]AUHH(HHXH4 @H~ HPE1HH(]IyII9}.ILL_I9wI9wLcM9uI9uH_H4 L)H@H9vHT$ Ht$HL$')H 3HD$,0H 3HD$ 0HD{3HD$/ +')HX !ZI;fvHUHHt,HHHcH9v*HHHHD$HHD$H]11H]HD$\$脦HD$\$I;fv[UHHt H H@H]HHHtHQpHtHqhH9wHH9s1HH]HD$HD$Ld$M;f}UHHt:HHMF0AMF0MMQMMuE11H]MEEQEAuAtIFfDHLCXAM95$H$@$H|$HL$H$H$HKPHS`L)HT$hHH?L!ʋ0M)LD$`HH$H؉HD$XD$4HL$hHT$`H${@t ^"t1H]1ɋ H؉lHD$@"&H[@ 0HD$@'-B(f[&H WHHHHHL$hHT$`H$HD$PH$H$H9D$XAH$H\$`HL$hH|$XHt$4 fD@<HT$XH$H9wIN0IN0HHzHHIV0H/dxdvHhH(~H1HIHH1ЉHH HRLhH|$HHAIEL9ML9L9L9M MTM\T$4H9$99H\$PH9H\$PHruAtIFD$4H]ËE"x$DcH$H\$xH$H$YH$KH$H\$8HL$XHL$p#Hj_ $[.H$H\$8I.Hb8.HD$p*H f.H$*H~f-H$H\$xH$A.{%#H$HHXH$fH9`HpPHx`H)H|$hHH?H!L$AH)HL$`H >H$HD$XD$4HD$hHL$`H$1H]HL$hH\$`H$HD$XH$"Ha-HcD$4'H ,H$h)$"HD$hHL$`H$HD$hHL$`H$H$H$D;H9D$XAH$H\$`HL$hH|$XHt$4Q@#H; S IfI^ORHAAMEO$ M$OHL$`HDHD$8D$0HD$HHL$@HT$`1t$0|$49LHHHىHD$HHL$@HT$`\$4HL$PHD$XH9D$8AHD$`H\$@HL$HH|$8Ht$0@uD$4Hh]f蛹HD$H\$kHD$H\$I;fv.UHH(9Hw H(]ÉʋL,2H(]HD$H\$L$H|$ HD$H\$L$H|$ I;fv)UHH(9Hw H(]ÉʋL,H(]HD$H\$L$H|$ @t$(tHD$H\$L$H|$ t$(I;fv1UHH(9Hw1H(]ÉʋL,/H(]HD$H\$L$H|$ HD$H\$L$H|$ UHHD$H8uEu 11H1]s 1E1E1AAуAD1L9L)L)HHH?I!JHB4s 11E18H9w H7H)H)HHH?H!Hп]"qLDH9s,D EAIˉAD`E A€uLDD۶ֶDALH9v/DEAIDAE AÀuLADʐ薶葶I;fUHH8|pHPHcɐHsgHD$HHH HIHc HL$0HHHH HL$0H<H|$(HL$HHHY1'HD$(H8]1H8]HHD$H\$L$谘HD$H\$L$f;I;fUHH@u)fH/}H 1,@t uH1H1uH/ t uH9Xhu@qH1T$Ht$L$8u HuH@]HD$P7HL$HD$PHHxL$T$8tt HHHxx}H HD$PH}Ho HD$P@[HD$ HD$P;HL$ Ht6HHD$(HL$0HD$8HD$(H$xEWdL4%H@]H/H/HD$H\$L$|$赖HD$H\$L$|$I;fv%UHHHZHBDAH]谕I;fv.UHHHD$%6HD$Hr:H]HD$HD$I;fUHH0HD$@5HD$@HHHH|_HD$HD$@9HL$Ht:H`HD$HL$ HD$(HD$H$@ۓEWdL4%H0]Hi HHD$,HD$BI;fv%UHHHZHBD@H]PH HH~1HHHH@HP8HtHtH9HѐH~ H9HP|H@XHH`HtHH@XI;fUHH@HD$PH\$XL$`HH5HtYHD$HHxHL$(IN0IN0HL$ iHL$PHT$H+JHL$HD$(3HL$HH\$ 1H@]HH2Ht=H~H9u ~ tH9w)u߀~ vHL$XH9NHDHt$`f@u1HT$0H"a3Hr"HD$8H"7HL$XHT$8HJB HL$HJHL$0HHHH JR"HT$HRHHHH@H HցHلHHHHHD$HD$(D6HL$ ZuAtIFHD$H@]H@xHD$H\$L$DHD$H\$L$I;f(UHH(HD$8H\$@HHHځH HHH HL$ H9HށH9u HH(]Ht$Ht$jHp 0HD$8oHdHD$@QHDHD$1HDHD$ HD{HD$ 'HDH/HD$H\$@ېHD$H\$I;fUHHHHHHHyHQH9P DubtUP HyvyHL$HQHpHrH1nHL$Hyu 1HQ0 HQHRHQ0H]1H]ÃP Q$HDH] H CHD$ɏHD$@I;fv5UHH8HhHpH111E1IH8]HD$H\$VHD$H\$I;fvkUHH0HD$@H\$HHJH9uHjHT$HL$HD$HD$H$͊EWdL4%HD$03,H ]HD$#HD$YI;fvUHHHZHB1#H]8I;f'UHHHD$( "L$ux tHP+HD$(f{+L$tHD$(L$HD$(P t!ӃP uX HPHZ$HxH@…ux tH@@Hx u XX~T$H HP P/L$tT$7HD$(x uT$%HP%/HL$(y tHA8豽T$ ‰H]ÐHJ P>HD$腊HD$I;fRUHHHx9HHH H9AH="tHQHD{IHAHHHHQH~5HpHHLDHLF=D"tLZIMCHHHPH9HPHHHD:="t L:MH:HPfH9rSHpH~HD$(HL$1HD$(HL$Hxu1HP0 HPHRHP0Hu1HH8H]C;H <%HD$HD$I;fUHH@Ht$pLD$x@H\H@HD$PH\$XHL$`H|$hL$LD$xHt$p"T$ux tHPj(HD$P[(L$tHD$PL$HD$PHP Ht$`Hp Ht$hHtP="fuH|$x!Hx(L@8ʡI3I{H|$xI{MCHp(Ht$pHp0Hx8H$Hp@HpHH|$XHxD@ @AtXAD@ AtL@HAEH$D@ AD@ L@HM@8MtfI9~D@ LHEL@H11D@ Au*Hx~x t x AHHAHHA@Etx tuMMMAuWI9zP}X@t$HHT$ D$(HD$0LT$8HD$ H$D;EWdL4%D$H@]ÅɐDL$\$ux tH@@Hu PX~@t$H HP *L$tL$HD$PL$THD$Px uL$L$;HHPHL$H@8L$ ȈD$HD$f[*L$HD$PL$L$t@[L$T$tHD$XcL$H@]Hr> #e9HؐMH8MtI9|HLIx8AEtHػH7 !f9H  9HD$H\$HL$H|$ Ht$(LD$0LL$8!HD$H\$HL$H|$ Ht$(LD$0LL$8I;fvIUHH(HJHBzu$x tHD$HL$ HP )HD$HL$ HYP H(]I;fUHH0HD$@IN0IN0HL$ x tIHHHHh5HT$(H$HD$(HD$@#HD$@H uHx~x ft x  1Ʉx t=IN0H/dxdvHhH(~H1HHHHH1HhCHK K HKHD$(HP8Hp0Ht HtH9HHL$HuH9ˆT$HD$@L$HT$11HT$L$H HP @['HD$(HHH G'HL$ ZuAtIFL$t HD$HH0]HO )Q6HD$膂HD$I;fUHHHHD$XLt$8fHD$XHHHHT$8sHpHHHH4DF@AHxpHHH @H9AHEYHL$(HQHT$@H!HD$(D$HD$(H HT$@ %L$fD:H|$ Ht$0HL$HY!HD$0H }H ="t HHH菚I H@HHT$XJ$HJH\$ H9vpHJHt$HD1=M"t H<1BI;H1HJH9r3HZH HP %uHH]HH]HH]HH]趝豝HD;4薝HD$kHD$I;fUHH(HKHtHD$8H\$@HL$HS1H(]HHƐH9}lH:=o"t LGHdMHGHDG At ADG Ht$HT$ ADG HHD$8HL$HT$ H\$@Ht$D{="t HKI HC1ɇK$1HK01HK81ɇK HHH 9HD$H\$XHD$H\$I;fUHH@uHH8Ht8H93HH8HP0HtHtfH9HHD$PHH01HH811 H@]HOHpH9.HpHHL1I9@HEHAtHt$8H|$(LD$0HL$ T$LD{HD$0H fHT$PJ$H H HJHYH9hHrHHL3LLLT$(I9AHL$ LL=Y"tL 1nMMKLHJH9HJHD=""ft H4 I3HHJfDH9Hz="t HHHI H@HIJ8t)HXHt$ H|$8H\7X X HL$( HL$(\$\$HL$H HP z!HD$PH|$T$)t f[ HD$PHxu 1HH0 HHHIHH0H@]@ۙHci0HX0賙HD$H\$L$@{|HD$H\$L$'I;fUHH8HP8Hp0@Ht HtH9HHHD$HHL$XHu+HT$ EWdL4%H$HD$HHL$XHT$ p$`I~0HHh5@H9uHcx HH9@1H\$0H9}@uHH1H8]Ð@{HD$HHxu 11H\$011H11H8]øD$HT$HHzt1HH\$0HL$XfHtҺHOD$HHT$H1Iv0HHh5H9uHPHx L@(LH8LP0LX@H)H~-IHIHHHPHJ/HHHLI1Ld$hH$Ht$`LD$PL\$(H\$0LL$XLT$8IT$A|$ @t[AA|$ HuAEl$ IT$Hz$LH$H\$0Ht$`LD$PLL$XLT$8L\$(Ld$h "T$$@u&A|$ tI|$ uA|$XDž AL$ IT$ LHD$`HtHHH HD$`H$HteILt$H=v"tI舐I3ISH\$HHHcT$$HD$`H$ADD$$EtHL$P^LL$hAy uHL$PKIAPfHL$hHy uqXHt$(H9q@LD$PL MELH1HD$8H\$XH|$0HHL$(f֋t$$t H$H-HD$hx u H$HHPgH$Hu HD$`HTLt$@LYHT$@=+"u HD$`HHI HD$`HHǂtHp]H ;)H *)H' !)H)HD$H\$HL$rHD$H\$HL$[I;fUHHH"DH H 1HHH9}AH4HtH5H5Ht HtH9HHH9HHLHHEH\$H"HD$H]RtMI;fUHHHHH9HPHHH|LH H2HH~dHFHH9HHLLHI9f|3EPD9Pv)H9scHLL2="tL 2IMKH9s5HH2L9t"H|2=͠"tH2MICL2H]lgbH&KH&HD$H\$ sHD$H\$I;fUHH HHH9HHHsH9~6H9HpHHLDHMLD$HT$H@H ]HLMHLHHLOL9LWL9LLfDL9FM98IH)I)HHIH?I!JIzMIE1I IGILL$I9}7ILHHM9|DPD9RvLT$M,MmMHLT$MfI9LIJ.J|.H9s}HH|=Ҟ"H<MDۊII{MH9s5HHH9t"LD="tH裊IICHH ]-LMD H$H}$HD$H\$pHD$H\$I;fvLUHHHHH~HD$(HH H]HL$HHL$HHD$(H}H]HD$DpHD$I;fUHH0HD$@H\$Hx t-IH9K`t HC +DHD$@H\$HHf蕟EWdL4%H $HD$@x t IHJPP uHXHtH9}HHH0]HzHT$HD$HL$ HD$HHD$(HD$H$mEWdL4%H0]H0]HD$H\$ oHD$H\$I;fv%UHHHZHrHBHN`fH]nI;fUHH HH HL$y t(HP`I9tHQB +DHL$HKHD$x f@ H t tHx~H HHHQ$H uHx~x t x  1҈T$HP 2L$tHD$@;H ]ÐH]c!HD$mHD$I;fUHHH@ HD$[ HD$x tOH tHQP u"H tuH HHHQ$H HP gH]ÐH HD$lHD$ZI;f UHH0HJHL$(HHL$ JL$H H HT$ H HT$t2HT$(HHHH Hu|H= u`H~ Ht0QH H0]HH H "AHj Hu 1H˨ H H]Q 6{HQ 6jk@I;fvEUHHHJHL$H [ HL$H H H fH]jI;ftUHHPHJHL$HRHT$HHH:EHHH@ @tHHHHH\$8HT$0HH H(HL$@H HL$@D$ 1HH}6HT HtHD$HH\$VHL$HT$@HHHH HL$0HT$8HH=t"tH1HH裃IIsI{HHǂHHHD$HHL$HT$0H8dEWdL4%HD$HHL$HP]fhvI;fvSUHH HrHt$JIV0HHD$K"HD$A3HD$mH ]hfLd$M;fUHHHJHHHHHHRHH)HWH HHvHAIDIЃHDŽӨHIHHRI)JHE1D f,H$HD$@D8DxDxH\$@HD$PH (HL$pH\$xH$H$HD$pH$D{fEWdL4%H|$HH$HJHZHHH9s8H5;5H$HJ="tH2IIsHHZHHH[؃=ؔ"t H\$hHHL$@D8H\$hHD$@D0D3DpDsDpDsHĘ]HĘ]HD$yfHD$I;fUHHHHrHt$0Iv0HHD$(HrHt$@HRHT$ #HD$0 L$\$HHt$@HVHP0HtHR@HVHD$8V V$V%HT$ HHEH H 1H\$0@HT$@HBHD$8L$\$HD$('HH]Ð;eI;fUHH`HD$pHB 1~HL$0HT$XH2HzHÃHHLɠ ILD$PLALD$8HҺAIELo IH裙HT$0Ht$PHHT$XHHD$pHL$8fHxHG 1HL$(HT$XH2HzHÃHQHT$8HAIEAAMEL  LHT$HHМ JHHT$(Ht$HHHT$XHHD$pHL$8HnHO> 1HL$ HT$XH2HzHÃHQHT$8HAIEAAMEL LHT$@H0 JHdHT$ Ht$@HHT$XHHD$pHL$8HnH`]HD$cHD$̐H @ H1 H9t  t H 1HtHH 1H„tH1HI;fvFUHHHD$ HEHL$ HA1՜HL$ HAǗHL$ HH]HD$bHD$I;fvIUHH HD$0HHD$HL$0HAHt H\$裦HD$H ]HD$bHD$fI;fveUHHHD$ HHD$;HL$ HA="tHQD{{IHA˖HD$D[H]HD$aHD$I;fUHHHHD$XHL$hUXHT$hHrH+5 DBcAu DJbMAH|$0D?DH Ht$0HR HT$8LL$@I[HH]HD$H\$HL$9aHD$H\$HL$EI;fvWUHH8HD$HHL$XWHT$XHRH+ H HT$0H|$0IZH8]HD$H\$HL$`HD$H\$HL${I;fUHH`HD$pH$H$H\$@VHD$XH\$8H$H+$ HHT$0HT$@HHEH5 HH$qHT$0HT$HHD$PHD$XH\$8H|$HIYH`]HD$H\$HL$H|$ _HD$H\$HL$H|$ I;fvSUHH8HD$HHL$XUHT$XH+E HHT$0H|$0IXH8]HD$H\$HL$_HD$H\$HL$I;fUHH@HD$PHW@HugHL$`H|$hbUHT$`H+ H HT$0HT$hHHHDHHT$8H|$0I:XH@]H2( (#HD$H\$HL$H|$ I^HD$H\$HL$H|$ 0I;fvSUHH8HD$HHL$XTHT$XH+ H HT$0H|$0IWH8]HD$H\$HL$]HD$H\$HL$Ld$M;fUHHLH9uHz0H9Hu(@HuHNhHtHVpHV@HN8HHH$H$D$HT$xHL$pH\$ D;D{D{ D{0D{8HT$0HL$HHuHH HL$0HKHL$HHD$0m;H HD$ H\$(H$HPHHL$E8ExEx Ex0Ex@ExPL$LT$ E2E1ErEqEr Eq Er0Eq0Er8Eq8H$H$$$H$E0D0EpDpEp Dp Ep0Dp0Ep@Dp@EpPDpPHT$xH9T$0uHt$pH9t$HuH9Wpu H9wh1һmH]$H$HHD$hHD$0HD$x0H @HD$hHDH$H f{HD$x 'H$HXHHL$ 16$@t.H$D8DxDx Dx0Dx@DxPH]Hخ [H^0 ,JHD$H\$HL$H|$ Ht$(DD$0fZHD$H\$HL$H|$ Ht$(DD$0I;fUHHXHz$DB(DJ)AuAtAHD$hLPHx00\$pDXYALXHMc0M9$M$MM9c0A t1AMؐLXHMX8LX(MPIL@PA_L\$PLِLXHHI@HHH7HL$hHHYHT$PHrXDH)Hq Hr8Hq(HPHHQPHIH\$pLT$8HT$@DL$/HxJHLӾ HcLD$hIP(HIP0L\$pDL$/HT$@LT$8At H@ HAt,t HYftHYuH@ fHx uHH0HH HH HH0HQHP8H9P(sHHH8HH0HH@HHHHxXu5Hy u H@"H@HL$hHR HHRHQHX]HX]HuR11HD$0HL$HH ')HD$HH\$0H @[ ZL谰HHHD$\$L$vWHD$\$L$"I;fUHHhHH HPfDHHD$xHT$PHPHHH\$HHT$`H5HHT$xHrfH9r uHz(H9z0Ht$H~(@t @t@u zY@zY zY@zYv(@rXHHZHr HrHB Hr0Hr(HB0H1ۉ;Hh]HD$xHYu(Ht$`H~0tH|$H(u1H|$H Ht$`H|$HtL$'Hu11_HD$P(Ht$`HHD$xH\$(HT$XHHL$@H@ HD$8H &HD$@;Hu HD$XH\$(H HD$8D[vHD$`HHXHHL$x161D$'HD$xtH@ Hh]Hh]HHt$8H|$0HTHD$8H9HD$0HD$`HHXHD$xHx(HHH0HúQHD$THD$I;f!UHH0H@HYfuHHHH@(HH9uH0]HL$(HD$ HT$HHD$H6 PHD$fH 5HD$ HHD$HD$(HHL$ H@HD$KHHD$ PHf@HD$1LgH& #HD$+SHD$I;fvLUHHHYu'HD$ HHHHHL$ HQH9r HH@H]HBH]HD$RHD$I;fUHH H\$8H=w t`H=w tVHz(uMHPPH|DHpHLPI9v\H\$8HL$@HHH4HHPPHN5HL$@H\$81f 1H ]HH9~HHuH ]HH ]oHD$H\$HL$H|$ QHD$H\$HL$H|$ L$M;feUHHhH$xH$H$H$HT$0AD:DzDz Dz0H@Au1:HL$ HH$xH$H$H$HT$ H$HH9HxHT$ H$HHPH$@HH$8H\$0 HHD$(H$xH$@HH$81H$xL$LL$ L$HADZXH$PH$XH$`E1L$HLL$ H$PH$XH$`Eu;H$PH詶H$xL$LL$ L$HHM9H}L$PMtE[(*E1%L$`ALcI]IG#Au)DbXA tAtAtL$DM~IL$fDM9LgL$OdIMM9H$LI)IHI?L!LL)L$I9H|$(H ~H9HLH\$0H9tQH$0HHHdoH$0H$xH\$0H$L$L$L$HL\$ L+L#HHh]H bkf[kVkHJkHD$H\$HL$H|$ Ht$( NHD$H\$HL$H|$ Ht$(MI;f(UHHPP+w1#pt@AH@AAEIL!HtlHL$pHt$Hw1#PTDAH@AAEIL!HT$@HT$@HtD$$\$!11HP]ÉHT$@LHS@t$"LD$HF LQLT$0AaAu^@u!Hّ*D{H  HD$@T$$\$!LT$0t$"Augf@u 6HtD{HđD[HD$@T$$\$!LT$0t$"=DL$#HL$8@uLHVD$$HL$8HT$@\$!t$"LD$HDL$#LT$0fIB|LT$pO @s!DgA߉IA@MM!IM!L\$(/HD$(ED{HD$@HT$$\$!t$#@8v DL$"HcL$"AAEL<AAADAADuKHN;HD$@T$$\$!t$#DL$"T$$\$!t$#DL$"@8wAqDLT$8IAtqDA@u,HjvHHDVHD$@T$$\$!t$"LT$0H[HD$@T$$\$!LT$0t$"1HP]HHfHfHD$H\$HL$H|$ IHD$H\$HL$H|$ I;fUHH H\$8HD$0H$H\$D$[iEWdL4%H\$H|LD$8IPHD$0HD$0H\$811HIH ]HI9vRD A]uH9L11HIH ]I)IMII?HL!H4H H ]eHD$H\$HHD$H\$I;fUHH@HD$PHuGHruntime.H9u8xgopau/fx niu'xcu!Hg"H@]HD$8HL$0Ht$(H\$ H|$LD$HD$8H\$ %HD$0H\$HD$(H\$H@]HD$H\$GHD$H\$I;fUHH@HD$PH HD$0%Hu15H\$(HD$8PH$x(H؉Ht$PE1E1H\$(HD$8t HT$PHtHHL$06H@]HD$FHD$[I;fUHHPHL$pH|$xHD$@H\$85H @{HD$@Hu11XHD$8[HHHL$xHt&HpHD$x!HD$@HD$8D۝HL$pH9HH)HD$@H\$8Hѿ%HD$HL$$H\$0f[HHD$HH\$0H<D$$Hc[vHD$@HD$8EHL$pH9sHHL$@HD$8*HD$(DH?jHD$pHL$(H)HP]HD$H\$HL$H|$ DHD$H\$HL$H|$ I;fvHUHH(HW0LpMt HhHxL11HH(]þ8H(]HD$H\$HL$H|$ 9DHD$H\$HL$H|$ L$xM;fUHHH$(=n" LG0MAHHhMPMI9H$H$H$ @$0ALHO0HPH$D1D0DqDpDq Dp Dq0Dp0H@H@uHO0HPHHO01҇LH$"H$H$ H$$0H$(DAAu HGpH_hLG0MtMMt IIIكH\$(D;D{D{ D{0D{@D{PH$D:DzDz Dz(LsL$H$H$L$H$H$@$H$1HuH$H$H$(H$(H(HtHLAL$1H]H$H$L$D2E0DrEpDrEpH$H$H$H$H$1 H$H(H$HL$L9wH]HD$H\$HL$H|$ @t$(AHD$H\$HL$H|$ t$(Ld$M;fUHH$HZHJHz Hr(DB0HBH$H$$1ɿ2f[H2H$H$HT$0H$D0D2DpDrDp Dr Dp0Dr0Dp@Dr@DpPDrP$1H$HH)HpH~qH$H$HH)H$H; H$HHD$0$2bfHD$0$2GH$Hĸ]Hĸ]ÈD$>D$ZL$(M;fMUHHPH$pH$xHD$hHD$pH ZH$ H$pH$(H$xH$0HL$hH$8HL$pH$@HHHIv0"@uC։H$`$hH$H|$oT$4|HL9H$`HH@H$H$H$HH$謼H;葼HDH$H\$x HjD$8Hc觼D$4cH$H$aH$`H9AvkH$H$;HD$PH$`HIH$fۻH?jH$HL$PH)H$`H$HHP0Htr H9tT$<HA0H$HA(H$HAH$NH7fH$NH fH$.HfH$IH$HH$`T$<к &H$`t$4H|$XD$hOHH$ H/HH$D9DyDy Dy(H H$1111HD$pHD$h1HP]H\$pHD$hHP]HfH99H$HԈH=\ tFH=M] tu1HzHR HHHH~ HH1H1I;fUHH`H|$PHD$pH\$xH$H$H$袷H1HD$PGHh{ѷHD$pHD$XHL$xHL$H1HT$0HHD$XHL$HH9}HT$0HHD$(HD$@H\$8DHtPDH$DP( E1E111L\$0M@H؉DDE1@tHD$@H\$8HL$(jH|$x2u 趶HEDH$nHu1/H\$ HD$@PH$x(H؉1E1"H\$ HD$@tH$tH$1H`]HD$H\$HL$H|$ Ht$(T4HD$H\$HL$H|$ Ht$(I;fUHHhH$H\$@HD$8t$$HD$HH\$PHL$XH1T$$}HT$HHt Ht$PR:114Ht$XHcf@H(HH|$PTHHD$`L$ H\$0Hu11HD{HHHHH|蔿OH3yHD$`H\$0jHYL$ HcHL$8HD$@׊H$H9sJHL$8HD$@蹊HD$(oHwH$HL$(H)f衴;v葴Hh]H@{OHD$H\$HL$F2HD$H\$HL$Ld$M;fUHHHJHrLJ L$LJ(L$LJ0L$LJ8L$LJ@L$HZHD$0D8DxDx Dx0Dx@DxP1AHD$0H$H$H$H$H$HHĸ]0'Ld$M;fUHHH$H$H$H$HT$0D:DzDz Dz0Dz@DzPHHHHAH%HD$0H$H$H$H$HĐ]HD$H\$HL$H|$ Ht$(t0HD$H\$HL$H|$ Ht$(I;fvPUHH IV0r*DHt H9t HH9u H ]DEpH ]HD$\$L$@|$Ht$ DD$(DL$)/HD$\$L$|$Ht$ DD$(DL$)[I;fWUHH0 yIV0D"EuCAfA @uA tAt@At1H0]Ã@DHu11@t$X t$XfDHu6Hruntime.H9u'xgopaufx niuxcu@u H0]HD$(H\$ H$H\$D$.'OEWdL4%H|$|4H\$ H|"Hruntime.HD$(H9t 1H0]øH0]øH0]HD$\$L$@|$@t$ DD$!-HD$\$L$|$t$ DD$!YUHHD$H|Hruntime.H91Ʉt%HHKHHH?HsH<1]HHD>A.uH|nH9LFfDL9H)HSHHH?L!HH|KDA(u@L*u6L>)u,HHHH?HH1H1 H1H1Ht0 Ar(fZw!HuAr Z11ɉ]IIILd$M;fUHH |vIV0"uCʉːʁ sցHH= LHTֺLqt uG@t6fD@/rL{!HH L:HT:H$HT$0LD$ht$$L$ \$tuYHu1MP[EWdL4%H$H$H+HH@GO?LIHHH"H?H)HH1H|$(HHD$`ҬHQ aHD$`wH$HH0Htr H9tL$f{Hhq H$f{趬H$HH0Ht^H$HHD$X,Ho軶HD$XQHqD蛶H$IHysq,ǫHoVHD$hH\$0GD$ u"蔫H;{ #۫D$ T$$ shHOu貫D$ H$HH/H=w47@t]Ht$0H }1&HT$hHH@Hz xDH$u#ǪHP} VH$HD$(@H~>薪Hm%HD$(軯H.v ŪH$Ht%NH f۴薪H$HHt6H@HHD$`H裴HD$`蹮TH$H`tZ"1tDH`HHHt1HL$8HHD$p詩Hby 8HD$p17腩HfmϩHĘ]H$H HJHHT$8H9HL$@H$HH$HHHL$PHHHL$xH@HD$H H$H\$P[H=l芳HD$xH\$H;6HD$8HHHT$@H9Q貨HkAHD$8HT$@&臨HkѨH/DCHD$&HD$I;fUHH` pIV0"@uCʉIN0HHt]H9tXHD$pH\$xHL$0t$,ק-HD$0HH1H|$01HD$pHL$0H\$xt$,HT$8D:DzDzH=]H|$8HD$@HL$HH\$Pt$XHfH`]HD$H\$%HD$H\$I;f UHH0HJZ H9Bt HrH9uH0]Ðt uH0]HD$@\$,HHӄHD$@1tD$,} H0]蛦֨HD$@GH|$@HG0I9F0t1Ґt2Hhu+PHV 6@۰薦HD$@ HH116H0]H0]HD$D#HD$I;fUHH`HQ0Hq(HtH9sHI HIHH$H$Ht$ LD$@H\$8HD$0HT$tI9wILD$(lH}HD$ qHukDۯHD$@QHt D軯HD$01HFhD蛯HD$8HShD{6HD$HH\$(HHL$ HHH5Ht$HH$Ht$PH$Ht$XH9HGH9HBHL$0H9HGHL$8H9HBH)HL$H賗H`]HD$H\$HL$H|$ t"HD$H\$HL$H|$ ;I;fUHH(HD$8H\$HJHRHT$H9A0u@HL$ HĢ@軣HgJHD$8HL$ HT$H\$H9A(u5H胢{Heg ţHD$8HT$H\$H9u#HIDH9hӭ莣H(]HD$H\$ HD$H\$ I;fUHHHD$ \$(H0HH(t tf u1H]Àu$L$(t1H]Ë K"H]Àu(L$(t1H]ÐHL$ H]ËHH؉yH|Hruntime.H91ɉH]1H]HD$\$X HD$\$ I;fUHH`HD$pH=D t)H=.E tHL$(D9DyDy Dy(11CHL$ HT$袡Hz1HD$觨£fۡHL$ HHD$pH } HfHuH`]HT$ HH^aHT$ HHD$pHL$(H }H4HuHD$(HH`]HD$:HD$I;ftUHH(HD$8H\$@HL$HHH\$@HHЄ8uHD$HHD$HpHL$HHAHt3HD$ hHD$nHD$ H\$@薢豠JH٪蔠/Hx軪vHD$HHHHtYHL$ H;hHD$HL$HHIHL$HD$ H\$tHչcHD$y贡誟Hc9HD$8详ʡHD$HHx(1H(]øH(]HD$H\$HL$HD$H\$HL$ZI;fvNUHH H"wIN0LH9t H H H1H=5B HHHH]HD$HD$I;fvtUHH0H\$H5G"wIv0LH9t H HHv/HD$HD$H\$ HL$(H HA H\$H0]9HD$H\$HL$H|$ MHD$H\$HL$H|$ TUHHHHD$X@t$xL$L$K H4Hv H|$8HD$@H\$0HL$(KEWdL4%H|$8HWLBL $MI?I:MIL9MCLOLGI)ѐI4T$xBT HWHrHwLB II9L:M@!1MAʀEHIH }fDIsE H4HvHwH$H$1LGHH9~^LGMH LƐIwbM9wXN MI 1fMAˀE HIH }fDIsE NM@HD$@H\$0HL$(HH]7H7{7Ho7Hc7UHH(HD$8HtHWH HH9tT$'T$'H(]UHHHD$(H\$0HL$8H|$@H]HD$HD$(HD$HD$H$DEWdL4%HD$@HD$(H\$0HL$81H]I;fvJUHHHJHL$HO ;HL$HAHt HYH{O vH]kI;fUHHHD$(H\$0HL$8H|$@HHD$HD$(HD$HD$H$6EWdL4%HEWdL4%HD$@HHHQH$HH?H:HHH9HCHXHD$@HHD$@H@HD$(HtHP@HH|$8u(Ht$@LFfDIBD HFDHt$@LFIBD 1HFHt$@LFILL$8FL HFHt$@LFMH IfM9hLL$0M0MR 1MAˀEHIH }IsE NM@LFHt$@LFMH IM9M 0MI 1IAʀEHHH }fDHsANM@LFHT$@HrLF IL9wuLM@ 1IAɀE HHH }@HsAH40HvHrHT$@HrLF LBHT$@HrHD$(H\$0HL$8H|$@H]n3Hb3f[3HO3J3H;3H/3H#3H3HD$H\$HL$H|$ fHD$H\$HL$H|$ I;fUHH(HJHL$ HK 藵HL$ HAHtHYD;HL$ HK HtHQH H K HK 讹?HK 蛹Hj"H 1p /HL$ HAHtH(]HP+UHH1 HHHHH }3H }HsIH΃ɀL τHs%L HHuH]H&2H1Hz1I;fUHHHD$(H\$0HXHHH)H0HT$0HHt$(HH=iJ LMt HDH0H4HtgJ uH UJ H]HD$H\$PHD$H\$WI;fUHH=7P HpN 1qHhN 1aH:N 蕦H6N 艦HJN f;HDN 1L=f@"t%H -N HM HM ,I ISI[HN D=M HM D[H]H*dL$M;fUHHH$HL$HD9DyDy Dy0H@uH$H $M HVDL$/HHLIH$`HmHcHDH9RHHHt Hu6H-LPMIL`IIMEHHLl$@LQII?A(LxLh IHuMuMu MAE1H$xH)H$`HHH?H!ILII?AHLL$xL)IELd$0H$xL$PH$XH$H$pL$Ht$8HD$HM_ M|L|HHH$HH LM9|H$LK I<1H$1ɾ4@t"HWH2D HGH$HfHH$hH$HҺHEH5F HH\$H1H$hHrffHD2 LBMHLJMP IkM9]MMR!Ld$01MAˀE HI@H }IsE$ M MILJMA IM9MM@ L$P1MAʀEHIH }IsE,N MILJMA IM9wMM@ Ll$@1MAʀEHIH }IsE,N MILJMA IM9MM@ L$x1MAʀEHIH }IsE<N MILJMA IM9MM@ 1IAʀEHHH }fH=sAN MILJL$L H KH$pH$H$XHt$8L$DL$/vADHĘ]*H*@{*Ho*j*H[*V*HJ*E*H9*H-*H!*H** *HD$D HD$QI;fvVUHH HHG HHt1HTHT$HD$HL$HD$H$ EWdL4%H ]HD$Z HD$I;fvfUHH(HJHL$HRHT$HL$ HoB HD$H\$HSB NHL$ HG HH(]/ I;fUHHxH$=oH H  uL AEL DH MH$H$H$T$OL$LL$pH$H$;EWdL4%H$H|$PD?DHH?H:HH$HtHcHHHT$P HD$PH$Ht HHT$XHL$hH$Lb@Ld$`Gu H 1ɆHx]Hx]Hx]@EWdL4%HL$hH$H|$P1L%^E AE,$AEtLl$pAL=AE O,IEHu D$OAH1۾IL$L$L$'T$OH$L%D A$u H 1ɆHx]HD$H\$HL$H|$ Ht$(LD$0 HD$H\$HL$H|$ Ht$(LD$0I;fUHHPHD$`HfHt4HHIHHHRII)KHHI1Ht$HH\$@AHHHHRII)KH1AD"„tYLkHAMDLAKDŽIHAIHHRI)KHE1D*EAL$pIcEIAIN(H1HAL:Ht HHH(H{H<L$pH\$@Ht$HAA AAHfHt1HHHHHRII)JH H1DHHHHRII)JH1D"„tNLcHMDMAJDŽHAIHHRI)JHE1D"EtgHLF@DIAIJ&(HHAE117HtHHH(HsHJHHD$8LMtLIfHuBHT$HHSHHHH\$hHHHL$pHT$HH\$`Ht$@HHD$8I1H:AEupHH9r kH9J8aHT$0H|$(HB0H\$h4u#HL$pHT$0H\$`Ht$@H|$(LD$8"HL$0HA(1HP]HG(HP]HD$H\$HL$yHD$H\$HL$I;fUHH(H\$@HL$HH|$PHt$XHHD$ HHD$H\$@HL$H#HD$ HHL$HH0HL$HHH8HH@HL$XHH(HL$PHH H(]HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(8I;fv>UHHHD$(HHL$1x1HT$(HJHHD$H]HD$2HD$I;fUHHHHKHDHPHPHT$Ht7HHJHHw$HT$H)HsnH H@HH]HHD$H HL$ HD$(HD$HD$0H\$8HD$HD$@HD$ H$@EWdL4%HD$HH]HWH''HsմHD$H\$HD$H\$I;fKUHHHHJHL$@HBHD$0HJHL$ HJ HL$8袠HD$0HHHT$@H HtoHt$ IHqLHvH2LHLH2HpAL)Ht$(谤HL$@H HT$(HHH@HL$8HHH]øHU"H nDHT$@HHtEHL$0HHt$ HpH2HH|$8H7HH@ۖHD$0HH]HVXHI;fUHH HD$0HPHT$@2%HHPHH T"yHD$0HT$HpHuHpfHt*HH T"GHD$0H1HT$1H ]HD$HD$Qj; UH=E; t]11]̐IN0IF0 uWH H; Hu21҆QuAtIF11HXPHXHD$HHD$Pv ɉP H 1҆QuAtIFI;fUHH`HD$p$H\$PHD$XH\$H$HcHT$@HT$PHHEH53 H 1HT$@HT$0HD$8HD$XH\$H H|$0ItH`]HD$H\$L$HD$H\$L$(I;fUHHPHD$`HHT$HHڃHT$0HT$HHt$0LILH|$8D?HcHT$8LD$@ IHP]HD$H\$HD$H\$WI;fv6UHH0HD$@; 11IJH0]HD$H\$HL$pHD$H\$HL$I;fvXUHH8HD$HHD$0H7 HT$0H|$0IH7 H8]HD$H\$HD$H\$I;fUHHXHD$hH\$H5HD$PH\$@HT$HHHEH5*1 H 1:H|$0D?H:7 HT$0HD$8HD$PH\$@IH 7 HX]HD$H\$HD$H\$9I;fvXUHH8HD$H[HD$0H6 HT$0H|$0IOHx6 H8]HD$H\$sHD$H\$I;fUHHhHD$x$H\$H$HH\$@HD$`HH5aH H|H\$HHڃHҺHE־AIEHt$8H50 H-HD$0HT$8H5g/ H 1wHT$0HT$PHD$XHD$`H\$@H|$PI'Hh]Ð{HD$H\$L$GHD$H\$L$I;fv6UHH0HD$@11IH0]HD$H\$HD$H\$I;fvFUHHHD$ HuƁDH]H5HD$H\$eHD$H\$I;fUHHXHD$hHHHL$xHT$PH\$8HD$HH\$0HT$8HHEH5|- H 1HD$@HD$HH\$0 H|$@IFHT$PƂHL$xHHX]HD$H\$HL$THD$H\$HL$DI;fUHHHHD$XHtntXHT$@zH|$0D?HT$@HHt$0HHT$8!IbHT$@ƂƂHH]H8HD$H\$hHD$H\$9I;fUHHPHD$`H\$@HD$HH\$8HT$@HHEH5+ H 1HD$0HD$HH\$8#H|$0ItHP]HD$H\$@HD$H\$LI;fv6UHH0HD$@$11I H0]HD$H\$5HD$H\$I;f1UHHxH$H$H$HHIHHHRII)JHAD @t/LD$pH\$HD$7L/HD$hH\$@HD$pH\$HH$HD$8HT$HHHEH5* H 1H|$PD?DH$HHT$PHT$8HT$XHD$`HD$hH\$@L$7IHx]HD$H\$HL$H|$ @t$(HD$H\$HL$H|$ t$(I;fUHHpH$H\$@IV0HHT$`HR0HHT$0HD$hH\$8HT$@HT$@Ht$`L֨IL֨H|$PD?HHT$PLD$XIHT$0H@tVHD$HLL$@IH@L- MHs0IHT$HHD$hH\$8'H|$HIPHp]HD$H\$uHD$H\$I;fv6UHH0HD$@11IH0]HD$H\$HD$H\$I;fUHHhHD$x$H\$HnHD$`H\$@$HT$8HT$HHҸHEHD$0HEHA' H 11T H|$PD?HT$0H5+ HHt$8Hs0HHT$PHD$XHD$`H\$@IHh]Ð; HD$H\$L$HD$H\$L$I;fUHHhHD$x$H$H\$XFHD$`H\$P$HT$HHT$XHҺHEHT$@HEH5& H H$1& H|$0D?HT$@H5* HHt$HHs0HHT$0HD$8HD$`H\$PIHh] HD$H\$L$H|$ HD$H\$L$H|$ I;fUHHhHD$xH$H$H\$@HD$`HHD$`H\$@HD$`H\$8H$Ht$@LILD$0LHHEH5$ H H$1 H|$HD?DH$HHT$HHT$0HT$PHD$XHD$`H\$8IbHh]HD$H\$HL$H|$ HD$H\$HL$H|$ I;f#UHH@HD$PHHHHHHRIH)HHD*E1AD*„tTMl$IAMDMAJDŽHIHHRI)JHE1D"@tgHDIAIJ&(H1HIAE1DHtHHH(Hs HHR LD$(L1MAɀD HIH }IsD H41HvHwHwfH HHH?H!H4>Hv H9HLH\$hH9tH|$0HT$8HHHT$8H|$0HWHD$PHxmH@]HHDHHHwHD$H\$HL$H|$ Ht$(xHD$H\$HL$H|$ Ht$(I;fveUHH HxtCHD$0H HL$HD$H\$HD$H$BEWdL4%HD$0H@H@H ]HD$H\$HD$H\$wI;fvSUHH HJHL$HJHL$H2gHL$HAH\$@۲HrmkH ]bfLd$M;fUHHH$H$H1151cHWHD 2HWHrHwHWD:!HWHrHwLB I(I9HL$PH\$HHD$XL:M@!L$E1MAˀGIII }IsG I4HvH|$@HwGHD$0\$,HL$8EWdL4%HD$@HHHQH$HH?H:HHH9HCHXHPH)ːHKD 3HHHQHPHq f@HH9H4Hv!1IAȀD>HHH }fDHsو>HHRHPHJ HH9HH[ HL$81Hσπ@<3HHH }fHsވ 3HHRHPHJ H-H9H HI H\$01H߃π@<1HHH }fHsވ1HHRHPHJ @HH9L$,HcHH[ 1Hσπ@<3HHfDH }Hsڈ 3HHRHPH HL$`HL$HHL$pHL$PHL$xH$HD$XHD$hH$H$HD$`H$EWdL4%HĐ]HHzuHidHXHLGH;H/H#HD$H\$HD$H\$I;fvKUHH HJ HL$HJ(HL$HbHD$H\$cHfH ]I;fv1UHHH\$0HtH\$0wH]1H]HD$H\$:HD$H\$I;fvzUHH(HD$8HHu 11HHٿ11fHHHt HHH(@HsHHt$ HHD$PH\$pH9p@wHi"kHD$H\$HL$HD$H\$HL$I;f<UHHHt \$`H _1HH]HHHt8H(fH9rH0H9sHcH H9RHH]HD$(Hbf[WHdHdL$`脈\$HHL$@H.[L$@uc8H &fCD$`Hc?HWICHD$(@?H !*C8H^~HD$@HH]HD$ H(HL$8H0HD$0L8H:BHD$8Q?HDBHD$01?L:g8HD$ HHHuHÐ.iHT$8Ht$07H %eBD$`Hc>HWHBHD$8>Hd*BHD$0D>97H h!D[iHD$\$茵HD$\$I;f|UHHHtt H 1HH]HHHtH9(wH90v1ɉ\$`HtYHL$ H@HbHHHu-HL$ H(\$`HcH2H0H9JHH]HH]HD$(HTHH&bL$`f蛃HHL$@HiXHD$@Hu^6HY#@D$`Hc=H@HD$(fD$XHc:H,>HD$ :HD=3H/H@]HȐ{ H@]HD$H(HL$0H0HD$(3H=HD$0:H=HD$(f9513HD$HHDHuH.dHD$\$۰HD$\$-I;f UHHHtt1111H]IIHH4IH4q|HAIHHH@HH!H4AuJ<J4HvDt11:D$H 0HT$H9t 0L$\$+膨H]HKH4LINAtM|0AHLHH@ML!HAuH H49HvPKHD$D蛯HD$L$M;fUHHH=CH^H$D9DyDy HOH$D:DzDz Dz0H@uDzHH$H$H$H]wPH`Ht H2HzHR111HH$HHH?LHH$HwH$1H]HIH9kHL$xLD$HHH Ɍ$H~Hf0H~@*H~8$H~PH~pH~8fH~8 H~PH~0HufHHtHu 1H]H$H\$@H$H$H$(HL$@H9HH$H$ H$(T$twH]HzDH H O$H@0H^0H$0tH$ HI@H$(H9J@1ɉH]HP8DH9V8t1H@0H^0H$0H]P2f9V2P0~0ff9uuD@AtH 8@fu1E1LDNAtH8fu1E1L 1H|$0L$HT$8L$11H]H@0RH\$xH$H$(HA04HL$xH9uGHH$t3H$ HQ@H$(fH9V@u HT$x1n1H]1H]H@0H^0H$0u1%H$ HB8H$(HZ8H$0SH]H@0H^0H$05H]H@0H^0H$0H]HN@H9H@uhH@0;H\$xH$H$(HA0fHL$xH9u*HH$tH$ HQ@HT$x1v1H]1H]øH]1H]1H]1H]øH]øH]HD$HHH$ HT$xH9HY@@H9H$(Hs@H9HD$HHI8H$H@HT$pH[8H$HH\$hH$HL$pH$HHL$hH9HH$貾HT$pH$HDH$H\H$0[HL$pH$HfH\$hH$HL$pH$HHL$hH9usHH$t\HL$pH$H\H$H|H9u-HH  8k1H]1H]1H]1H]1H]øH]GBHD$PHH$ HT$xH$(DH9Hy@H9Hy8LF@L L9H$HD$PL$HN8H$H H$LfH$HL$PH$H$H$H$H\$pH$H$ǙHL$pfH9HH$臼H$KH\$pH$H$1HL$pH9HH$3tpHL$PH$\H$QH$HL$PH$\H$+HH$0H$I1H]1H]1H]øH]VQHL$`HH$ HT$8H$(H|$0L$L$H9}5MH9rHL$`ILH$0u1H]P2fuE11Cx@tH8x0LH9H)IHHH?H!L~2fuE11EDFAtH8DF0DHI9L)IHIH?L!HLT$ H$LL$(H$1"HD$XHH$H$LL$(LT$ L9}1H{I;fv*UHHHi!D*H[!6*H]+I;fUHH D$fDD$IN0IN0HL$H7)1k HtO1۹ZhH .HT$~uAxIFkH-HL$ZuAtIFH ]ÉD$.D$I;fvUHHHai1<II;fv%UHHH"1Hf{aH]萈I;fv?UHHHD$ ƀAHD$ t. H]HD$1HD$I;fv'UHH$膵EWdL4%H]Ld$M;fUHHHu HĈ]Áx2u!ƀHǀI;fvOUHHHKHt'ruAtIFH!VH]HD$H\$軃HD$H\$I;fv UHq]芃I;fUHHHD$(H@8DyH|$(u1H HD$H|$HD$H$豁EWdL4%H|$(=$!~1~=k!tHf[IHLJH]HHװH5!HH׸H\HH\HH\H\ HH\ HHD|HT1HHHH]HD$eHD$I;fvJUHHHJHL$H? "HD$H@Hq? D]H[? V&H]KI;fvUHHH+? &7H]躁I;fvOUHHHD$hHD$HXHL$tH!ƁH]HD$AHD$I;fv UHѾ] HHJ!H cH`H@HHuHCHH WH* "^CHH(WH* !^CHH0WH* !^CHH8WH* B!^CHH@WH* !^CHH`WH* ^CHHHWH* ^CHHPWH* B ^CHHXWH*  ^CHHpWH* ^CHHhWH* ^CHHHCHHHCHHH+HKHHHCHHHCHHHCHHHCHHHCHHxHCHHHCHHHCI;fnUHH@HD$PHHT$8H HL$H5 Ht$ H;u H{Hu\H\$XHH‰f{F=!uHT$XHT$XHrf蛕IIsHBHL$HT$8Ht$ HHD$PHO Hw(=J!tHw@[IIsHWHH9OtNH|$0HL$(HHHHT$(Ht$0HVHV=!tH IIKHHD$PHHOHQH9v$HD$H\$L$`HD$H\$L$I;fv%UHHHHùH@[H]HD$_HD$I;fv%UHHHHùH@H]HD$_HD$I;fvrUHHHt7HHHHpBHH9w3H|.H˹fH]HHùHH]HH)HD$H\$^HD$H\$jI;fvUHHMH]HD$H\$^HD$H\$I;fv1UHHHK(HD$HL$HAHH]d^I;fv)UHH HۺHLHH ]HD$H\$HL$f^HD$H\$HL$HtH1UHH H9tX=,!t8HPHt/HD$0H\$8HL$@HHHH!6HD$0HL$@H\$8HHHHA~H ]H ]I;fvUHHmH]HD$H\$HL$3]HD$H\$HL$I;fvUHH-H]HD$H\$HL$\HD$H\$HL$UHH0H9HLHtxH9tjHL$(HHH=!t9H\$HH|$XHt$ HH)HHHHHH5H\$HHt$ H|$XHHH(}HD$(H0]HH0]1H0]I;fvUHH.H]HD$H\$\HD$H\$UHH HD$0H\$8HHH11ې[4HD$0H\$8yH ]UHH(HHHfDH@r1)H5!HHtHH %HH1H@rc@uLBL9rH9BpwF@t2=J!tHT$ HHHH>HT$ 1HHH(]1HHH(]HrhL)J\HH HJHH(]HޭޭޭH9u=׌!t1HHHU>11HH(]̐HHHH@r1f)H!H HtHH %H H1Ht1HޭޭޭH9I;f5UHH8HL$XH\$PHD$HH11 )@{~H}HmHL$HH|$P>HHT$(HD3@#H H=!uHT$XrHT$XIHD$0HPH[}HHL$HH|$P AHT$(H=!uHt$0HPrHt$0I3ISHpH11j+H8]1H.,H|$HHt$P HD$H\$HL$XHD$H\$HL$I;fv)UH=!tH |rIIKH{|]HD$gXHD$fI;fvUUHH0H\$HH!H\$(HHNHD$ KtHL$HHHD$ H\$(kLH0]HD$H\$WHD$H\$I;fUHH H!HHLHIv0LhI/dxdvMI(~M1HLHIH1ЉHLhIv0LhKI(~I1IIIH1ЉL11HLhHuHSHHHѿ{KH ]HD$H\$VHD$H\$I;fv UHv]VI;f<UHH0HD$@Hƒ!f{HD$H0HD$(eHD$HH(HHHP H@HHT$@HPHpHu Hp@811uHD$H@@1HP HǀH1HP(HǀH tHD$(!HD$@H\$2}Ht#HD$ H!H\$u1H\$ H0]HD$1H0]HX&, HK' HD$PUHD$I;fUHHx8tfHH(HHuFHH HHu&HD$ H@}H4!H\$ JuH]H!)H $*H #qHD$THD$[̐Hs8rur fwusrru s1Hu Hru 1HH Hwu1HH(1HI;fUHHPsHD$I;fvfUHHHD$ H=k!uHL$ WHL$ I HHHbp=h!t HZH]HD$*>HD$I;fUHHHD$ H8HtsHf8aluxlu f8weuixrtcaHu 8noneuS1rHu8crasuAxhu; WHu.8singufxleu:8systufxemu #cDHuH9u=g!u =g!t h!H AH]HD$H\$=HD$H\$@I;fvUHHH]HD$\$<HD$\$I;fvUHH-H]HD$\$y<HD$\$I;fvUHH證H]HD$\$9<HD$\$I;fvUHH-H]HD$\$;HD$\$I;f&UHH HD$0HeH=euZ =i!tH eUIIKHe=h!tHeTIISHxe^eHgeHL$0HHH8uf 4eL$Q'eH(eHl=eh!uHL$0HtTHL$0I ISHHdHwT$T$HdD$H ]HD$:HD$I;fv%UHH(1۹1 @{ H(]HD$K:HD$I;fvUHH H]HD$\$HL$:HD$\$HL$I;fv%UHH(HϾDH(]HD$\$HL$9HD$\$HL$I;fv%UHH(HϾDH(]HD$\$HL$b9HD$\$HL$I;fv%UHH(HϾD;H(]HD$\$HL$9HD$\$HL$I;fv.UHH(t-11ιH(]HD$\$8HD$\$I;fvUHH11 H]HD$X8HD$I;fvUHH H]HD$\$HL$8HD$\$HL$I;f|UHHH uH]HD$ 蘹H$'HD$ f;H D薻豹H;D;HD$p7HD$fI;fv$UHH-gEWdL4%H$H]17I;fv+UHHH3H$5EWdL4%H]6I;fUHHPLt$0@HL$0HuHft\HHL$ H1AyH HL$8HD$@1HL$ HL$HH{H\$8HHgBHHD$(ѷHD[HD$(ѾH}H/1xH =HtHIH5HDu}HHthHt1HVxH HtHIHHwH;%xH HtHIHHF!z떃 HHHHHJHHHHH@1HD$HtyefuCYHsHD$[v葶H<|DHi$HD$6QH` H fHtHH H U1KHHL$HI1vH 5HL$8HD$@1HL$HL$HHH\$8 HHH1ivH fHtHIHHH`lArHH RHp*HDH\!HH2H*2I;fUHHHHHHHppHH9wH|H9|HH]HHqH!HHH9wH|ؐHHmHHD$H\$HL$-2HD$H\$HL$9I;fUHH`HH)HhH>Ht#L L9fDHIH%\!HH`]LNHIMtIvIx LfHw5LWILhGIDLGSL)I)_LIISLGID1LGSL)I)fII9vM HIHI9AHMkHLIIfMtIvMP MfIw5MZIL%hG#IDgL%G\M)M)_MII/L%G#ID L%G\M)M)fMM9vM IMHIIMII L9AHHLMMILWL HLIHIH@IMtIvMXMIw4McIL-CG$,IDL-̀GdeM)M)ܐ^MIIL-_G$,IDL-GdeM)M)MM9vM IMIIIMIL9ALHM2HHT$8IHHLIH=Mt@H=vHPHHw;LZIL%7G#IDL%G\H)I)LILIIL%LG#IDL%oG\H)I)LI5HH9vHD$PLIL\$PHHT$ LIL\$ AL1ILHT$8IHHHHEI9HD$pHL$HHT$8Ll$0MtnH$LHyHL$8H=DZ!tyHD$XHH\$pHH$LIM)LOHHLHD$XHL$8:LT$@H\$(L11 HD$XH\$@HT$(H)H3JHL$8HD$XHD$XH\$pMHD$XH\$HHL$0H`]H޴HRHDFIH:IHD.IHD"IHIHD IHDHHHHDHHDHHHHD@HLLIIL9wDMIHH{HD$H\$HL$H|$ Ht$(;+HD$H\$HL$H|$ Ht$(fI;fUHH H@H9HD$0H=w]H=w*HPHH5{HDH5^|V9HHH5fHDsnH53|VHHHT$H11HL$H|3HHH9wH\$0H9wH ]DG@Ht薌1茌HDDGHDGHH@HD$)HD$UHHH2 2gI;fUHH(HD$8s@Hu 11H(]HD$11HL$H|=HHH9w"HD$ H\$8IHD$ H\$H(]Ht![HD$ )HD$aI;fvUHHIH]HD$H\$HL$(HD$H\$HL$L$xM;f5UHHHT$yyyyH$HHHq1LDH9HLL9|IV0IV0H$L DT$p@u!IyIAIDLTI8@9HH$EWdL4%$pH$L$=Su11H\$@H$Hػ(kO A!H$H\$@QH$Pfv ʉPH 1@2ru*AtIF$p$p $pH$$pL$=@!t =Ru11H$H$Pv ʉPH 1@2ruAtIFH$$pL$DGDuAtIFH^_11HY3H9H$HHH`Ht&H`=aB!tHHr.I I[H "ZfHHH$HHt&H$=B!tHH&.II[뿐HXH hH$H$H$H$H$ H$H $EWdL4%H$H$H$H$H11E1E1H(HLLfDH9L$D1E2DqErDqErL$AIHIIHHRMI)KHuHt$xH$XH\$HL$LL$PH|$X$$@GH$L$D$L$H\$HHL$XH|$PAH${CHt$xL$L$IIHH$XLHLfHt)HHH(fH[H!f8oo\fff8f8f8f8f8f8ffH~fofof >!f>!f>!f8f8f8o ohoto|fffff8f8f8f8f8f8f8f8f8f8f8f8ffffH~fofofofofofof =!f=!f>!f%>!f->!f5>!f= >!f8f8f8f8f8f8f8DoDoHDoP DoX0DodDolDotDo|fDfDfDfDfDfDfDfDfE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fEfEfEfEfEfEfEfEfL~fofofofofofof dHP0?XjeH$HHD$HD$T@H$/0H(MHHt>H\$HSH UHHHH[I^@H\$I^8H]I^`I^0H3L9u =LIdL4%If8HPL"AԐX$=]UH U]UHH|$dH%HX0H;CHteHH9t]H;u]dH%IHb8HH?dH%HX0HdH%H`8Hh`H@8H@`]HH?]HO>UHI^0L52I^0L3dL4%I^H HHHi dH<%H_0H$HG@HD$HG8Ho`HWPH3H9u M<(HsHH9u Z<HD$HCHD$HCH{HdH%Hc8HC=̺VI$I\$IL$I|$It$ MD$(ML$0MT$8M\$@fAD$HfAL$PfAT$XfA\$`fAd$hfAl$pfAt$xfAּ$fEք$fE֌$fE֔$fE֜$fE֤$fE֬$fEִ$I$I\$IL$I|$It$ MD$(ML$0MT$8M\$@A~D$HA~L$PA~T$XA~\$`A~d$hA~l$pA~t$xA~$E~$E~$E~$E~$E~$E~$E~$̋L$(Hw HH w H`H@w HHw H?Hw HHw H[Hw HHw HwHw HH w HH@w HaHw HHw HHw Hk Hw H Hw H Hw Hu H w H# H@w H Hw H Hw H-Hw HHw HHw H7Hw HH w HH@w HAH88dL4%I;fv^UHHHt$0L$8HLd$HHT$(L"ALd$HHY !<HH9vUH| Huu&%H tHHDHTHKHHHHHH9vHHHHHHHHHHH)H)LLËfNfOËLLHHHHLHHLooLLooNoTo\OT\ooNoV o^0odoloto|OW _0dlt|ooNoV o^0of@onPov`o~pDoDDoLDoTDo\DodDolDotDo|OW _0g@oPw`pDDDLDTD\DdDlDtD|fEHooNoV o^0of@onPov`o~pDoDoDoDoDoDoDoDoOW _0g@oPw`pDDDDDDDDHHHfE?HH)H9HH IoioqHHH oyDoAIM)DoIDoQL)DoYDoao&LH)ooN oV@o^`HO W@_`HH)wHH~"wks{DCDKDSD[DcH oloqoyDoADoIDoQDoYDoao&IHH IM)L)LH HooN oV@o^`HƀO W@_`HǀHw~ wiqyDADIDQDYDaHo.ovHo~ DoF0LWIDoN@DoVPIDo^`DofpL1HofL)L)Hw{HoFoNoVo^HGOW_HHw~"w(px D@0DH@DPPDX`D`pH@oFoNoVo^HGOW_HHw~"w(px D@0DH@DPPDX`D`pUHHpH$HL$HT$H\$Ht$ H|$(LD$0LL$8LT$@L\$HLd$PLl$XLt$`L|$hdL4%IF0HH5H@@DD@DDDD@DDH@@~~@~~~~@~~)bHbHHbHPbHXbH`bHhbHpbHxbqH@bqHH bqHP bqHX bqH` bqHh bqHpbqHxbH@bHHbHPbHXbH`bHhbHpbHxbaH@baHHbaHPbaHXbaH`baHhbaHpbaHx (08IF0HH(>DDD@DDDD@D@H@~o~o~o@~o~o~o~o@~oooo@ooooH@o)80( baHoxbaHopbaHohbaHo`baHoXbaHoPbaHoHbaHo@bHoxbHopbHohbHo`bHoXbHoPbHoHbHo@bqHoxbqHopbqHoh bqHo` bqHoX bqHoP bqHoH bqHo@bHoxbHopbHohbHo`bHoXbHoPbHoHbHoL|$hLt$`Ll$XLd$PL\$HLT$@LL$8LD$0H|$(Ht$ H\$HT$HL$H$Hp]H0Hl$(Hl$(H$Ld$Ll$Lt$L|$ dL4%fEHHHHHH$Ld$Ll$Lt$L|$ Hl$(H0̋|$HD$<̿Ht$T$DT$H=vD$̋|$H=vD$H|$Ht$T$D$ ̋|$Ht$T$D$ UHHD$ @BH$HD$H#H]̸D$̸'AĸDT$̸'Njt$≯'HD$H|$Ht$HT$̋|$Ht$HT$D$ ̋|$t$ HT$LT$D$ ̋|$D$H|$Ht$HT$D$ UHHII^0HHH $HT$HT$ HJHHL;uHHb8HHH4$H Ht:H$HT$LHL$HH $HHiʚ;HHD$ H]H̋|$Ht$HT$DT$ H=v %H|$Ht$HT$LT$ D$(UHHH|$ Ht$(HT$0H2HHH܉D$8H]UHHD$|$Ht$ HT$(HHH]H0Hl$(Hl$(H$Ld$Ll$Lt$L|$ dL4%fEHHHHڸHH$Ld$Ll$Lt$L|$ Hl$(H0HHtoHHtcdH%HtZH@0HtLHtBHHt6HIhHt-LPMt!LuH -L HuLb A uH L!L NHOHH|$Ht$T$DT$DD$ DL$$ H=vHHHD$(HD$0HD$(HD$0UHHH|$ Ht$(T$0L$4DD$8DL$UHHHD$EWdL4%_H]UHHHD$EWdL4%_H]EWdL4%_EWdL4%._EWdL4%N`EWdL4%dEWdL4%EWdL4%UHHHD$EWdL4%H]UHHD$ H\$(EWdL4%f[fH]EWdL4%jEWdL4%EWdL4%EWdL4%. UHH0H$H\$HL$|$t$DD$ LL$(EWdL4%H0]UHHH$H\$EWdL4%D$H]UHHHD$(H\$0L$8EWdL4%D$@H]I;fv^UHHHH9uFHD$(H\$0HKHXHt(HD$(HP`H\$0H9S`uHHL1H]HD$H\$-HD$H\$I;fv%UHHP+8S+t1 *[H]HD$H\$HD$H\$I;fviUHH9uSP8SuJP8SuAP8Su8P8Su/HP@H9Su!HPH9SuH H (1H]HD$H\$BHD$H\$sI;fviUHHHHH9KuOHS@H9PuAHP H9S u7HD$(H\$0HH;tHT$0HZHT$(HBHJ1H]HD$H\$袿HD$H\$s̋9 u HHH9K1I;fvPUHHHH9u8HPfDH9Su(HPH9SuPf9SuHHTt1H]HD$H\$HD$H\$I;fvUHH@(H]HD$H\$賾HD$H\$I;fvRUHHHD$(H\$0 t%HL$(HQH\$0H9Su HIH9K11ɉH]HD$H\$9HD$H\$I;fvVUHHHD$(H\$0 [t+HL$(HQH\$0H9Su HIH9K1ɉH]1H]HD$H\$赽HD$H\$I;fvUHHH]HD$H\$sHD$H\$I;fvIUHHHD$(H\$06u1HD$(H8H\$0H8hwH]HD$H\$HD$H\$HH9 u HHH9K18 HH9 uHHH9Ku H8K1HH9 u H9K1I;fUHHHD$(H\$0 ztWHL$(HQH\$0H9SuCHQH9Su9HQ H9S u/Q(8S(u&Q)8S)uHQ0H9S0uHI8H9K8H]1H]HD$H\$註HD$H\$Y̸HH9 I;fvYUHH9u HD$(H\$0HHJpu1!HD$(HXH\$0HX GH]HD$H\$ҺHD$H\$I;fvUHHH]HD$H\$蓺HD$H\$HH9 uBHHH9Ku8H8Ku/HHH9Ku$H 9K uH$9K$uH(9K(u HH0H9K01HH9 uHHH9KuHHH9Ku H9K1I;fv>UHH8u'HP8H9S8uP@8S@uHH,1H]HD$H\$荹HD$H\$I;fvUHHH]HD$H\$SHD$H\$̋9 u*H8Ku!H8KuHH@H9Ku H9K1I;fUHHHH9uxHPfH9SulHHH9KubHS(H9P(uXHD$(H\$0H[H@t=HT$0HZ HT$(HB HJ(tHD$(H0H\$0H0(1H]HD$H\$WHD$H\$H̸HH9 uHHH9KuH8Ku H8K1I;fv5UHHHHH9KuHP@H9Su HH1H]HD$H\$薷HD$H\$I;fv5UHHHHH9KuHP@H9Su HH1H]HD$H\$6HD$H\$I;fvUHH&hH]HD$H\$HD$H\$I;fvKUHHHH9u3HPfDH9Su#HPH9SuHH H9K uH@H[1H]HD$H\$D{HD$H\$f.uszq@Kf.fu_z]@Kf.uMzK@Kf.u;z9@ K f.u)z'@(K(f.uzH08K0u H18K11I;fZUHHHH9>HPH9S0HHH9K"HS(fH9P(HPXH9SXHP`@H9S`HSpH9PpHH9HD$(H\$0H[H@{u1?HT$(HB Ht$0H^ HJ(Xu1HD$(H0H\$0H0(4tlHT$0HZhHT$(HBhHJpu1KHT$0HZxHT$(HBxHu1%HD$(HH\$0HÈ(1H]HD$H\$MHD$H\${I;fvXUHHHD$X(wD{HL$ItHrHHHH?HH]H]HD$踳HD$I;fUHHHtD[HK1 11H]HH|%4@.uHt@[uH@]uHHQH9rH)HHHH?H!HH]2HD$HD$f[I;fUHH(HwDuHH0/u(HH0$uHH8uHH0 uHH01Ht HH(]SHH1H{TzUOHHKfaHD$;HD$QI;fv,UHH-Ht H 11HHH]HD$HD$I;fv!UHHHtHH]ZHD$菱HD$I;fv!UHHHtHEH]HD$OHD$I;fvgUHHHәH9u=HH=j tH {IICHH]HH t=ΰHHXHI;fUHH(HD$8H\$@HL$HH|$PHt@Ht;HQHt H511҄LL9u.Hz@{H(]H9t1HH(]HHH 9yDHRH9fDHD$H\$6HD$H\$I;fvUHHHH]HD$HD$I;fUHHHD$(HؐHHH tmHJHHH tr1$Mvu H\$(1fHD$(vH\$(HKHD{[HL$(H HuOH]Hсu5s/HL$vt!HD$HL$(1H„t H&vH]HH7 CHD$HD$I;f&UHHH 1fHCHCHH9}HЄ= tHsάI3HRH S1HHCHDH9}EHH3= tH{袬I3I{HsHsHs=h tH3[I3HH HѹHH =, tHӹH WIICIKHD=H]苒̐H} @1ɉI;fUHH0HD$@H\$HHL$PH|$X1HH}TH4HvH6HtHT$ >ufHHftHD$@HL$PHT$ H\$HH|$X1H0]øH0]ÐLD$(IpHD$@HL$PHT$ H\$HH|$XHlHt$(LHFH^HN Hv(HHAАu1H0]HD$H\$HL$H|$ [HD$H\$HL$H|$ I;fvWUHH Hh0u&HD$0H\$8HL$@H HD$0HL$@H\$8HPHhHHH ]HD$H\$HL$ϐHD$H\$HL${I;fUHH@HL$`H|$hHt$pLD$xL$HPH2HHX(HHL$pH9tMHD$H%D{Z= u H$胩H$IHD$(HPHHT$xRHD$hHH\$`'HD$hH@]HD$0HHHT$H HIHH'HL$(HT$ HD$0HHHHt$HLD$pIH@ML!փM!AI9uDHL$ Ht$HD$0HCY= u HL$0c裨HL$0I QH HIJHRHT$8HH\$`&H\$hHD$8&HD$(H@]HH3>HD$H\$HL$H|$ Ht$(LD$0LL$8躎HD$H\$HL$H|$ Ht$(LD$0LL$8L$xM;f!UHHfDּ$H$H$L$8H$0D$?H$ H$(D$D$>HK@uHH$ ׄH$HQHHI(HHHD$`H$1 LHLҐHq@LHHLLH$HH{HHIHH@ML!ȃL MIM LMRMtFA9tHL$hLT$xL$Mc`L$L$(L$L$ L|$PI1IHH$HL$XLT$pH~1ADNAEu@H$HHL$XH$H$H$LD$`ALT$pMMt A;uE1 DfEAEu8^H.H$LD$`ALT$pfL *L$H$H$H$D$?DMtLA;L$H$LO`L$L$ Ld$HL$(L$L@1H$H$ HL$@H$(H$HAUHL$@HH=ȸ uH$L$8ϤH$IL$8MSHPH$0HP LP(H$Ht>H$HZ@HHt$`LD$XL$H$IHHD$p"HHD$p"H$0H$H$8H$D$>D$?H$HH$L$>H$H]AM[MM{fM9uL$I[LLd@uQH$HL$XH$H$H$LD$`L$LT$pL$Ld$HL$uH$HY Hq(HH$HL$XH$H$LD$`LT$pIH$ AH$L$D$>D$?H$HH$L$>H$H]HGH@-[8H4H=-H8A$MIMIAL9uL$IYLuIHL$hH$H$HLD$`L$LT$xL$L$L$L|$PH$HB HZ(H$H$D$>H]øuH$H$L$>H]HD$H\$HL$H|$ Ht$(LD$0*HD$H\$HL$H|$ Ht$(LD$0I;fv%UHHHBtH]0I;f`UHH8HD$HH\$PHL$XH|$`HKuHhHD$X[~HL$HHQHHI(HH֐HL$HHI@HHHHHHHHHH@HH!H DH$1HcH$H$@軹H$HY= tHIISH1H&HĈ]H$II111HĈ]MMA8vfMQMII?AMIuH">f;CH$1HH$H$H$HY= tH3IISH1H%HĈ]@MMA8!DPADPMQMII?AMIuHk=BH$1HH$H$;H$HY=h tH{IISH1H(%HĈ]Iu A8nuDPADPALHD$pLL$HLD$h1۾1AE1HL9} E$A-H9uHuAxuLcLA1lA+tfDA-FA+u E H\$PDd$GH;IH)HfH@HBL9F<HpHxHHHHL$xAyAIDHٺHH@HH!H9r HT$xHL$`DT$FL\$XHD$xHHH53nDHT$pHJ= tLBӏIMCHBHL$`LD$hLL$HDT$FL\$XDd$GLl$PE1HHHD$pHxHHHLL\HHRDA+H$H$LA-LPLXILhM9r A+LLLѿH5]CHT$pHJ= u DD$GA+LBIMCDD$GA+HBH$H$LD$hLL$HIIHD$pH\$PLXO[KDKDOTMRAA+AH{E1۾ZA0s vDAFwJA9w9H HIHIAEH@MM!M LAAs!El$Aw*DH'IAAEM AyL[M9~ PF\A0SA1IE1DH49O>H$1H2$H$H$H$HY=1 tHGIISH1H HĈ]H8@=H$1H4H$H$萳H$HY= tHӌIISH1H HĈ]HP8k=H$1HH$H$DH$HY=H tH[IISH1H HĈ]H7D~D~H[bisect-H$Hmatch 0xH$H$@1!HH#uHHHH?HHH=O uHT$(HT$(LB XqIMCHB Hx uHrH:Ht ?#uH0]1H93軗HHV;I;fFUHHxH$H$HD$hH\$pHHTH H|$hUuH E!HD$XH %15HHH9u HHx]HH HHD$XH9H4 HL1%fI9HT$8HL$@Ht$PHL $I|1I1L$I9u5Ht$HH|$0H\$`H$LquOH\$`H|$0L$H$HL@mH}HD$PHT$87HT$PHHD$@%H v$HT$PfH9H P$HT$HHHD$X1Ƀ= tHP -oI ISHH H }UH$H$D{H4SH mHH5FLD$XHtHgFH9uHHx]HD$XHx]HH $@6r1rHD$H\$UHD$H\$I;fv&UHHHHH]TI;fUHHH\$0HD$(HHL$0HH=ǁ uHL$( mHL$(I HD$HDH]&xH H= uHL$ ymHL$I HHH]HD$H\$SHD$H\$IL$(M;fUHHPfDּ$HH$hH$pH$xH$`D$1H5~ AD@@u H~ iHbH$8H~ H$@H$8H$HD$H$D8DxDx HD$@D8DxDx Dx0H@uDxHHD$@HD$@H$H$HHD$0H$HD$8H }HfPHL$0[H$H$pH$xH$H$`H$hHHD$ H$HD$(H|HOHL$ D$H$HHHP]jHP]HD$H\$HL$H|$ QHD$H\$HL$H|$ I;fUHH HD$0H\$8HL$@H|$HH5{H9udHL$@H|$HHRH H{HH38u$HD$@HyBH9uHD$HHxH ]H / HH HD$H\$HL$H|$ aPHD$H\$HL$H|$ (I;fUHH HD$0H\$8HL$@H|$HH5AH9uSHw Ht0~9t)H5zH9u(HRH H{H H88H ]HH `;HHH N)HD$H\$HL$H|$ OHD$H\$HL$H|$ 6I;fv)UHHHB@t跦H],OI;fUHHhHD$xH$H$HQHH LGHLHbtDA,5@H H9#LBL9II)IMII?M!IH9LOL9HT$(LT$HLD$PLL$@HL$8H|$ HLLH|1HT$8Ht$ H)HrIHH?LL$@I!H$I8fD9LD$@LL$XHT$0H$H\$xHL$PH|$H06H&IHT$@HP={ uHL$X gHL$XI HD$`H1%A=uHIHLHh]HH9}4 @#uHXHT$0H)HHHH?H{H!Hʃ=,{ tH8BgI I{HHHM={ uHL$`HL$`HQgIISHAHD$PH\$HH\$`)H$HD$xHT$(HH$HHHUjPjKjFjHD$H\$HL$MHD$H\$HL$f;I;fv3UHHH\$0HtHL$82HL$8H11H]HD$H\$HL$H|$ LHD$H\$HL$H|$ I;fvUHHHBH]KHJHI;fvUHHHBH];KHH9 u3H9Ku+H 9K u#HD9KuHHH9Ku HH H9K 1HH9 I;fv5UHHHHH9KuHP@H9Su HHf1H]HD$H\$KHD$H\$I;fvNUHHHHH9Ku4PD9Su'P9SuP9SuHP H9S u HHf1H]HD$H\$fJHD$H\$I;fv=UHHHv=w tH cIIKHH]8JI;fUHHi H:qH ;q=Tw tH qfcIIKHqH D8DxDx=w t H cI HD$H &HH4H H=v uHT$H m cHT$IICIKHPHl=v ftH bIIKHH]II;fvRUHH(HBHD$ HHH>HT$HD$HH\$ǠHL$ ytH(]HAHY HI;fvnUHH(fD|$ D$HBHD$H VHL$HD$HL$HL$ D$HHHD$@D$HT$ HH(]蒑H(]GI;fvkUHHHB=gu t Hf[aI HD$HHL$HA=7u tHQ LaIISHY ytH] GI;f<UHHH=t ftHk`IISHjHnH5nHt$01 HHfDH9H LB1HL9}D A=uHD$(HT$@H\$ HL$8HjHHH+tGHnHt$(H9ssHHLmID0=t t M 0`M I0%H*jH3HL$8H|$ D.HT$(HHHT$@Ht$0HH]@{cUFI;fUHHPfD|$HH\$hHD$`D$'D|$(D$&HiHH|$hHH5fs …}HQs 11, H|$hHHT$8H$s HT$@HT$8HT$HD$'H)iH2HL$`*t+HH lH9HH lHHD1JD|$(D$&D$'HT$HHL$&H\$0HD$(HP]D|$(D$&111HP]HH9}]4 fD@=uH)HHHH?HH!H HD$(Ht$0D$&D$'HT$HHL$&HD$(H\$0HP]D|$(D$&D$'HT$HHL$&H\$0HD$(HP]aӍHD$(H\$0L$&HP]HD$H\$ODHD$H\$DI;fv)UHHHBXf}藪H]LCLd$M;fUHHfDּ$D$GHD$hD|$pH9gHАH q }Hp 11 HnH$Hp H$H$H$D$GH sjHL$PH/m1HHQjH5RjHt$`H|$P11 HHH9LBL MtHH9sPHL$XL$H$LD$HHH5lH$Ht$`LD$HL$HHL$XLSIND=o tN[M MCN ZHD$hH\$pH|$xD$GH$HHD$hH\$pHL$xHĨ]膋HD$hH\$pHL$xHĨ] B$I;fv)UHHHBXf}wH],ALd$M;fUHHH$H$H$H$H$HT$H$HT$HD$xD$$$$@t$\$tH$HD$xH$\$tfHH$HHtHcH2HyPu HyhH$[BHDŽ$H$HKHr&HD$xSHtH_H9u]HH$H$H$H$SH$AHD$x1Hĸ]1HHĸ]H H WHD$ H\$(HL$0H|$8Ht$@LD$HLL$PLT$XL\$`@?HD$ H\$(HL$0H|$8Ht$@LD$HLL$PLT$XL\$` L$M;fUHHH$L$PL$XL$@H$8H$(H$ HDŽ$ H$D:HDŽ$L$E9EyDŽ$D$DŽ$L bL$L$I|$Pu1E1E11H$H$HT$mH5D6D2DvDrID$PI\$XIL$`FH$(H$H$8L$@L$L$PL$XL$HAL|$mH$H$H$ L$L$H$I|$hfu]1H$1H$1H$1H$1H$1H$1H$1H$H$jHT$XH5D6D2DvDrHT$EH5D6D2DvDrA$tD$?allofD$CwHt$?D$:denyD$>Ht$:H$H$ID$hI\$pIL$xH$(H$H$8H$L$@L$L$PL$XL$L$L$H$H$H$H|$XH$LD$EL$H$H$H$ H$(H$8H$L$@I|$8u1H$H$H$'D|$HD${QEWdL4%HD$ H$(H$H$ H$8H$L$@L$L$PL$XL$L$L$H$H$H$LF0L$HDIwL$E9EyL$uHgLHlH$(H$H$ H$H$L$HL$PL$XL$L$L$IH$H^0H$@Hv(1H$H$(K IOL$L$H$H$(L$L$@M9}J H9HLM9rL$H$I|$PuI|$htiHлHٿ,H H$H$(H$H$L$HL$L$PL$XL$IT$@rIt$HrHAHHI$HEH$A$ur =d H$PD:DzDz Dz0Dz@DzHH$PHDŽ$pA$t"HH!H$PI$H$HI$tH$H$XH$P1H$2H$HtMH$H$HD$HD$XHD$MEWdL4%HD$(HL$ H$ \H$HH$H$H$8HD$HD$HL$[MEWdL4%HD$(HL$ H$ H$ HH$HtA1HIIJH$ Ht H$H$HzPuHzhDH$1HCJH$ Ht H$ZH$H$H$1JH$ Ht H$HtHDŽ$ H$H$@HtH$ H$H$zt4p1HHIH$ Ht H$H$zuz(t5HJ0m1HEIH$ Ht H$\H$z(Hr0$u=H$'D|$HD$KEWdL4%HD$ $H$H$H$HZ THH$ fHt H$)H$HXHH}1HeHH$ HH$LRHAHzhL$M H$H$HÜ1II HH$ Ht H$H$fDH5 H$H$H$HøGH$ Ht H$H$1HaGH$ Ht H$xH$H H$H$HÜ1II(GH$ Ht H$H$fDHK H$H$H$HøFH$ Ht H$H$1HFH$ Hu H$H$fLRHAHzPL$M H$H$HÜ1II"FH$ Ht H$H$HA H$H$H$HøEH$ Ht H$H$1HEH$ Hu H$H$fLRHAsVH|H$H |H$H$1@II3EH$ HH$HH$PHt0H$x1HDH$ HtH$HPHHZHvHr1H$Hxhtu @Ht7z u1tH1fDH$ Ht H$}H$Zj1H2DH$ Ht H$IH$i1H@CH$ HH$HDŽ$" H$H$pH$H$hH$p}1CH$ HuH$HL1H$H$H$uH$kH$aH$ $HHѿH]HH9uH H$ $11H]HH TϼH$ H$ HÿB<1HBAHMAA MEF EF F EF L9}L MIDIrH$H$`H$H$XH$`~1BH$ Hu*H$LL$LL$@12H$fH$8HH$L$L$@L9}EH$8I<¸/1IIAH$ HtH$HH$XHt0H$PP1H$AH$ H{H$HH8H1HIIf@H$ Ht H$H$nD|$HD$eCEWdL4%H$H9D$ tWH$'D|$HD$-CEWdL4%H\$ H$HH8>1C@H$ HH$H$HQH$H9}CH$0$Hѿ?H$ Hu8H$HH$H$0H$@L$L$H12H$H$H$HL9M$M|L9~H$H$(H9@@H$8H 2H$$L(?H$ HuXL$L$L$OL$8L$(KTHRH$LH$@ML$H8H$@12H$HH$H$@L$L$HL9H$IHtQDH9u%HvHӹ1E>H$ Ht;$H1'>H$ Hd&H1H>fIH$@H$@L$L1H=L$IH$H$@I|ŀxft@1۹"TH=H$ fHt H$@H$H$@xtGHX TD;=H$ Ht H$@RH$H$@H$fHH$H$H.1۹HII<H$ DHt H$%H$HWLRL9$u,H9$u"H$@.1۹HII<H$H$@xt4e1HHB<H$ Ht H$@YH$@H$H$8H$(HvbH$ H$0H$@Hv@H$8H$(H$8H$0;;H$ H$@!FFFF FFFfEEEHD$0H\$8HL$@H|$HHt$PLD$XLL$`LT$hL\$p(HD$0H\$8HL$@H|$HHt$PLD$XLL$`LT$hL\$pL$hM;fUUHHH$ H$(1111UHt$xHT$pH$HHHHHH$HH$HH$(H$Ht$pH|$xH9H$H$Ht$`H|$hH$HHPHT$xHPHT$pHȻ GH$H\$XHD$x +H$H\$PHD$p HL$XH$H$H$HDŽ$H H$HT$PH$H$H$HDŽ$H$H$H$HDŽ$H H$HD$0H$HdHL$`HHt$hH9r H$XH\$xH$H$HHH5PHWHHHH$HL$`H\$xL$ I)HH)L9sH/HHHHHHH]HD$H\$HL$%HD$H\$HL$qI;fUHH@HD$PHt$pH|$hHL$`Hٿ1HHDHuwHD$(HD$`H\$hHL$pfHHHHD$(,HuHD$(&HtH@]11H@]HL$8H\$0HD$(&HD$0H\$8H@]HHH@]HD$H\$HL$H|$ Ht$($HD$H\$HL$H|$ Ht$(Ld$M;fUHHĀ$ 8HHLvA HD$HHleHٿ1HHH$@tD$CalloD$GwHT$CD$?denyHT$?HD$hHH+Ht$HL$xH\$pHD$hG%HD$pH\$xH]HD$h-%H]HHH]HD$\$#HD$\$Ld$M;f{UHHH$H$H{Ptm HHLUoAHD$XHEkcH$HQPHyXHq`H@HH$H$H{h HtSHWH9t3HD$xH$HHHaT@H$HD$xft HĈ]H$ HHLynAHD$8HajbH$HQhHypHqxHѐ;Hu 11HĈ]HĈ]HĈ]HD$H\$!HD$H\$XI;fvUHHHB #H] I;fvlUHH8HD$0H$8HD$QHD$HD$)6EWdL4%H\$(HD$ HuHtH8]ø1HH3HD$ HD$zI;fUHHhH$HD$xH110HD$`HH|$(LD$0I48HvHL$HHHT$xH$Ht$0H9~YHL$HHD$`HHHL$(HH$HL$D$@EWdL4%H|$t11HH=H5Hh]HKHL$@HH HD$`H^JH\$0HHD$XHT$xHt$`H$H|$01E1HO M@HLH9I9LJMI)I?M!IL)L"M,II9IL=L tL<8M+M{L\$0L,M9tH\$8HT$PLL$ LT$HLLH?HD$XH$HT$PH\$8Ht$`LL$ LT$HL\$0;HH\$@H11Hh];HD$H\$HL$HD$H\$HL$I;fv}UHHHD$(\$01f HuM t$0@8u 11H]HH H@HEHD$(u HHH]HHH]HD$\$HD$\$D[L$pM;fUHHH$H$(HT$pD:HDŽ$D$dMuLHL$H$8H$0H$(IP@HuHJH$ Ht1@Hk11HkH$H$(H$0H$8EDH'H$H$H$H$HBHZHJ fDHH$H$H$H$HrHu1VHH@Ht1H11DHeH$H$H$HH$H$H$LGMuE1_HLkHt1fH!11HH$H$H$H$H$IH$L$DJEt|z(uBEtpLO0L9J |fH(H@'H HHH1H]HH@.H HHH1H]HD$pHٿ HHT$xL$L$$L$Ld$HT$H$H$H$H$H$L$L$L$L$H$HuH$HD$xHD$pHD$xH$ŶHH1H]H$HD$h1H\$hH$H]1HHH]1HHH]1HHH]1HHH]1HHH]HD$pH$7"H$H$H$H0H9uHHD7@uHD$pH$Ht H$H$HHt H$H$荵H H$H$H$H\$d11D H$H@@HzHEH$H$LIEH$BH$11H]H$H\$d11. HH$H$H9u Hó&6uH$H$H$LfMt4IHt+H$HHH$H$1HHH]444HD$H\$HL$H|$ Ht$(LD$0HD$H\$HL$H|$ Ht$(LD$0DI;fUHH8fD|$0D$1H WB u H@B kH tHL$ H (B HL$(HL$ HL$0D$H=B HoD ZH5A tHA mH5A LHf]H0]+I;fv)UHHHB@t7kH]I;fUHH8HbHD$01H1HuMH\$0HKHv?HH9 s7H7褫HL$0HIHL$(HHL$ 1HL$ 1H8]jI;fUHH(H\$@HD$8H$H\$D$4EWdL4%H|$t11HH=H5WH(]H\$@HSHT$ H=HH|$8HӐH\$ H11H(]HD$H\$HD$H\$KI;fvBUHHD$,Hu HL$11]HH9~ H4H9uHH]HD$HD$I;fv_UHHPHT$ D:DzD$ " HT$ HT$HHL$(HL$@H\$H}1$Hu L$(1ɉHP]Ld$M;fUHHH$HSH$$H$H$H$ H$H$HJH9t.HHHT/H"H$H$tGH9t.HHH/HH$H$t H]H$DH^H|$8D?DD D0D@DPD`DpDHH$H$H$HVH$L$4H$ sSH$kD|$HD$%EWdL4%HD$ HtRH$t1=H$3H$fD|$HD$V%EWdL4%HD$ @HuJ$s0L$PIt 11H]HfHH]11H]9D$TuL$PH$ s0H$lD|$HD$$EWdL4%HD$ 4H$hD|$HD$D{$EWdL4%HD$ L$X9t t L$PL$P$!уT$49u 11H]HsHH]11H]H]HHH]f[H]HD$H\$HL$|$ Ht$(UHD$H\$HL$|$ Ht$(8I;fvcUHHHD$(Huu,H=HHH7'ubHD$(HL$8H\$0@H9Iu>HHHHH'ft#HL$(H&tH_uH]1H]HL$(HH]HD$H\$HL$HD$H\$HL$wI;fv^UHH(H s%HHHH\ H Ht HH(]û flHH1HRbHH(]HD$2HD$I;fUHH8H\$PHD$H|$`HHUHt1 H11HHt$(H|$ HD$0T$`H\$HH Ht[HwuH !H"LH uH H6fHuH HH肢H H HL$8HT$@HHHP]HHHP]"HD$H\$HL$|$ Ht$(HD$H\$HL$|$ Ht$(I;fUHHXH\$pHD$hH$$HHHt1H11HHt$HH|$8HD$P$H\$hHH$E1MRHtdHD$@Hwfu[HtXHwuHZ H9s H5Bf軪H$Itime.LocLfDalHZH9s)L$H5wH$L$H$H$H$Htime.LocH Hocation(HLIIX)H$HH$H9r H$NH$H$H$HHH5^H֩HHHH$H$H$H$H$H$HHHHKH$HSH$H9r H$GH fHuH$D?D "H$HӿH5'HHD:)HH0HZH9sH5H$Itime.UTCLHÐH9sH5OʨD)HH1H]HD$H\$HL$HD$H\$HL$aLd$M;fUHHH$H$HV H@}L\$@E;E{E{ E{0@tH$H$H$H$H$H$Hv1H H$H$H$H$H$IH$IIIL1fHH1HĠ]HD$H\$HL$H|$ Ht$(rHD$H\$HL$H|$ Ht$(I;fUHHXHL$xHL$PL$H\$HH$L$HD$@H$L$II#LH#"fuAHD$@HL$PH\$HH$H$L$L$L$DHD$@H\$HHL$PH$H$L$Ai*HX]LHduBHD$@HL$PH\$HH$H$L$L$L$HX]HD$@H\$HHL$PH$H$L$E1)HX]HD$H\$HL$H|$ Ht$(LD$0LL$8LT$@HD$H\$HL$H|$ Ht$(LD$0LL$8LT$@L$M;f$UHH`H$L$L$L$H$H$H$4H$H$H$@H$HHJrE.HHHH$H$IIIE1E1E1E1H$H$H$H$H$H$XH$H$PH$H$H$@H$H$`L$MML$pL$L$L$H$H$XL$0L$PH$H$L$L$fHUL$pL$L$L$L$L$8L$0HH$PH$hH$0H$`HuH$H$XH$H$LL$M9r L$XNH$8H$xH$XLHH5LLĢH$IIIH$8H$xL$XL$L$LHHH:H$hH$`H$0H$H$XH$HH$H$HH$L$0M}`rL$L$XH$.H$HH$`H$0IIIH$H$hH$L$L$L$0L$L$L$8M}` fsXH$/H$H$hH$HH$`H$0L$L$L$0IH$L$M seL$MiQML$M)IH ijIH H$HiI)HIHHkH=Ht$8IHD$0=/uHT$8H;HT$8IIKHH@]HD$蛨HD$QI;fvuUHH8HD$HH\$PHaH9uFH|$`H\$PlfH|$`H@ HD$ H\$(HL$0HD$PH\$ fH8]HH 3HD$H\$HL$H|$ HD$H\$HL$H|$ SI;fv;UHH(HD$8H11HHHt1H(]11H(]HD$H\$pHD$H\$I;fvUHHͨH]HD$f;HD$I;fUHH8HD$HH\$PH|$`HL$XHHLHHuHD$XHL$`HT$P2HHH8]HL$(H)HHH?H!H)LD$0LHHHttHL$(HT$0HD$ HHHHD$HPH~ HT$ H9vIHt HHH8]H[pH@ H zHHHPH8]11H8]0HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(HH?sKH HH4HH9sH HHHH ??HH H?H0HHHH9H@@8uHP#H~HHHHHH̐HHPHH#HHHi:H)HqHkdHia,AIH5i]AAAwLH LHH+HH H򐐐H2@ƿA IM@HH@HI)L̐HHHHH#HHHHiʱ:H)HKHkdHia,AIH5H HΐH2AAAmMMELI@I2IH@@HHH H!I!JL)HuH9r^HrSHQIHH?HH)H{III?LQM!I HLþH(]11HH1H(]藭蒭LH9~|LAHL$ HL$ IHD$8H\$@DJAvЃ wH}11HH1H(]H)HHH?H!HHHѾH(]H}11HH1H(]11H(]HD$H\$踏HD$H\$ILd$M;fUHHH$Htq+uHSHHH?HH1H-uHHHH?H-@@t$Hu11E1E1H\$0H$1111H1HĘ]LH9DDALI1HL$xHT$`HL$xHT$`t$AIH$H\$0EPA w.HHMcJHRH~11E1E1XHtH} 11E1E1BH9H)IHH?H!L H}11E1E1f E1E1ɄtyHiMtKA9:uEIXHHH?LIu11E11AHD$HH\$(H$LD$@11:Hi@HELLHĘ]11H1HĘ]LLH9D ALQ>HL$pH|$XHHL$pH$t$H|$XLD$@AIHD$HH\$(EYfA w/L?OMcO MII;r11E11WHtH} 11E11BH9I)IMII?L!HʹH} 11E11f E11҄txLkHL$hH|$PHTHL$hH$t$H|$PLL$8AIHD$HH\$ EX@A w1L?OMcOM@I;j1111#Ht @H} 1111H9wNI)IYIII?L!L HLH} 1111H11f֧ѧ̧HD$H\$蛊HD$H\$L$hM;f UHHH$ HT$D:DzDzL\$hE;E{E{HH$(D AJuFLcMII?ALDHtL$H$111111AMuCLcMII?ALHu11E1E1L$H$11H$ 113D:DzDz11HHHE1IE1H]LLH9D$ALiEH$H$H$HT$H$L\$hAIH$ H$(E|$fDA w3L<6OMILIH?H>LHHK4H)HrH%I$I$IIHHH?H)H4RHrI)IRIrHHLH)HQHHLʸy1aHiɀQXHiрQH)\(\HHQHHHp= ףp= H9߻HBHu H<}HHJL)HLfDH9HuIH)\(\IHQHHp= ףp= H9ֺHBLu&HHHӃHIHLLQDL9kHiH-H%I$I$IHHHH?H)H)\(\IIQLHAIMMLL Ip= ףp= I9HBLuH~L MRIiʀQI;fv9UHH8HD$H HHLA 1H'H8]HD$H\$R}HD$H\$I;fPUHHHH}*Dx=|t HrI H@11HHHpHHHH?HHHHxH 2=/tH0EI IsHH}@1HpH}*Dx=t H0I3H@11IH8L@IMII?AHHpLHJ4=tL趕I3MCH0H}@H7H|H|H H Ȼ]@11]HD${HD$L$M;fYUHHH$H$H$H$H$Ƅ$H}#D$HDŽ$Ƅ$118HVHHH?HHH$H$H$HʹH:TZiffH$H}#D$HDŽ$Ƅ$11IH$H$HIHH?HHH$L$H$@HuYu2u f 3uH$D:DzDz 1\H#@H $@1H]H @H @1H]H?H ?1H]Ë7ΉHHHH$H}#D$HDŽ$Ƅ$11FH$L$IMII?AIHH$L$L$HcƄ$H3?H 4?1H]HH$HH$HH4vHH$HH$HH$HH$H<HL$HI9}D$HDŽ$Ƅ$MH$H9<L$I)IL$H)HVH$HH?H!JH$1CHOH$HH$H9}'D$HDŽ$Ƅ$E11E1JL$I9L$MI)MII?I!MH)H$L$L$L$PH$XL$`Ƅ$hH$H$H9}$D$HDŽ$Ƅ$1E1GL$I9&L$I)MII?I!MH)H$L$L$H$HH<L$DI9}'D$HDŽ$Ƅ$E11E1JL$I9 L$MI)MII?I!MI)L$L$L$L$0H$8L$@Ƅ$HH$L$I9}'D$HDŽ$Ƅ$1E1E1PL$fDI9 L$MI)MII?I!MI)L$L$L$L$HIL$I9}D$HDŽ$Ƅ$GL$I9V L$I)MII?I!MI)L$L$L$H$L$I9}$D$HDŽ$Ƅ$1E1GL$I9 L$I)MII?I!MI)L$L$L$H$L$L$M9}%D$HDŽ$Ƅ$E1E1_L$M9> H$M)L$II?M!IM)L$L$L$L$IH$$dLD$HL$HT$PL$H|$XLT$hL$ Ht$`L$(H$H$L$H$D$HDŽ$I8 u~A\D tH$1E1kHXIO1f۶H$HT$PHt$`H|$XLD$HL$(LT$hL$ L$L$IH$ 1E11E1H$H$Ht.H$L$HHH @H$1DH8H 81H]H8H 81H]HH$HHH$H9 H$8H}#D$8HDŽ$0Ƅ$H11FH$0L$@IMII?AIHH$8L$@L$0HfHH?HcH|H$8Hu$D$8HDŽ$0Ƅ$H1E1DL$0L$@IMII?AMHH$8L$@L$0HA8DH$8@Hu$D$8HDŽ$0Ƅ$H1E1DL$0L$@IMII?AMHH$8L$@L$0HuƄ$HA8@LD$XI9H$H$HD$hH)H$HHH?H!I)L$H$ HH$xH$LD$HL$D$@ېEWdL4%HD$ HtH$H9v H$H$xH1wH$H$H\=[IH<lII{D/H5H 51H]Ƅ$HH5H 51H]Ƅ$HH5H 51H]H$H0HM9~dDlM9} G,ED M9}L$C/D L$Ƅ$hH3H 31H]Hk3H l31H]HR3H S31H]HtH21HH50;HH@f@ H$H$H$pH07H$HHHH =9u"H$H$pH$H$4pH$I H$pISH$I[H$IsH$HHH$HH0H$HH8HP(H$HHHH$HHHHp@NH$pH$1H^H9HHLL9|LNL9tMIN I9~MH$LFPILNXLND\M9XLNIMك=uL9L^`L M I[L9LN`aH^HHtdHV@LHHfEt`H$H$H$DD$FH$HzPHrXHrHzH|$xE12IJHVXH$11H]H$H II9LVL^DfL9tE1xL$Dd$GLL$pH$HHLH@H$H$H$H$H|$xDD$FLL$pL$Dd$GAH$EXfL9FE8= IDIt?HrI9HrIL΃=[tHz`pI3I{Hr`DH4H$HH=uH$H$$H$Hr`7H$I;ICIsH8H$Hpt$F@pHB`h{vqlgbf[VQLGB7ΉHHHH$H}#D$HDŽ$Ƅ$11FH$L$IMII?AIHH$L$L$HcƄ$Hf.H g.1H]HvHD$H\$HL$H|$ Ht$(7hHD$H\$HL$H|$ Ht$(YI;fvjUHH8HD$HHL$XH~T.zipu H8]Ht%IIHH=H1gHHHH6H8]HD$H\$HL$H|$ wgHD$H\$HL$H|$ [L$0M;f UHHHfDּ$@H$pH$hH$`H$XD$OHDŽ$D$D$HH$H H$H$H$H$@D$OH HD3H$8HùHHH$4HuH$8D@IPK1H'H$XH$`0H$H$(H40H$HP=Au H$(/H$(I HD$HDŽ$H H$H$D$OH$@HH$H$H$H$H$HH]ËJ H$rH$R H$HH;2H$8HH$HH$H$нHuH$H$H$81;1HH$XH$`ɤH$H$ H2.H$HP=ڑu H$ }H$ I HD$HDŽ$H H$H$D$OH$@HH$H$H$H$H$HH]HDŽ$D$H$H$H$H$L$HHHLHH]HLLH9H}18HPKhH HyH}1HH? <8HLAI}E1II?AFHLII}E1ɐII?AF HLQI}E1II?AFDH LLYI}E1II?A EH*LaI}E1II?A*E$Mi.L9fI.LiII?A.MO<M.IML9L)LQMII?M!ML$pM9jH$H|$`LD$XLL$PL$L$L$0LH$hL"}fu-H$H$L$0L$L$pHT$`H1HH$hH$pL`AL$XL$`H\$xH$Hh+HT$xHP=xu H$gzH$I HD$HDŽ$H U H$H$D$OH$@HH$H$H$H$H$HH]HL$PHH$HH-H$8HH$HH$H$@HtHL$PH$8@{H$8DIPKt HL$P[DBMt HL$PEDBHL$PL9t/HHH?H2H$h{HL$PH$81HH$XH$`蕟H\$pH$H)HT$pHP=u H$xH$I HD$HDŽ$H H$H$D$OH$@HH$H$H$H$H$HH]H$HRH2HRH$HH\$XH+H$8HHL$XHH$H$D;H1HFH$XH$`OH\$hH$HV(HT$hHP=fu H$UwH$I HD$HDŽ$H CH$H$D$OH$@HH$H$H$H$H$HH]H$8H$HD$XH$H$D$D$OH$@HH$H$H$H$H$HH]HDŽ$D$HH$HH$D$OH$@HH$H$H$H$H$HH]yH.DyyH*yH {yvyqylygy补H$H$H$H$H$HH]HD$H\$HL$H|$ [HD$H\$HL$H|$ I;fvUHHHB)]H]ZI;fvqUHH HD$0HL$@H|L9DTA2006tH9%H)HsHHH?I!J<Lù]H9H)HsIII?L!H<H˹]L9r\H)HsHHH?I!J<H˹ ]H9r+H)HsIII?L!H<H˹]11H]t`o`j`e`D[`V`Q`L`G`B`f;`6`1`,`'`"`f``` ```f_____I-07:00:0eIL9~ EE8tL9~EAA vMI)IA9A"A#MDH.uAIM L9AIM IL9rL)HHH?I!I<HL]:_5_0_+_&_!__I;fUH$HtYHmwHHH!H)HtHcHwHH H]HHcH H?HHH]HcHwHH H]MAhI;fvUH1L$HHbl]AI;fv,UHHHtHHXHHH_H]菬HD$@HD$I;fv,UHHHtHHXHHH]H]/HD$d@HD$I;fveUHH8HtRHH\$D;D{wH w&HHHHH?H!H\1HQH8]H @\薫HD$?HD$I;fvAUHH8Ht.HpH81H LA FH8]:HD$o?HD$I;fv>UHHHHH9Ku$HP@H9SuP8Su HHZ1H]HD$H\$ ?HD$H\$HH9 uH8KuH 8K u H 8K 1HH9 u H8K1UHHD$H/H փ@@H=ËLwH4wHvH9HA8D@A8r6A8v]fH~}p~@?wdH~?@P?v ]ÃA?A A ȃ?A ?D ]à A?AD ? Ȼ]ø]ÃA?D Ȼ]ø]!ȁ л]ø1]qZUHHD$H/H փ@@H=cLwH4wHvH9HA8D@A8r6A8v]fH~}p~@?wdH~?@P?v ]ÃA?A A ȃ?A ?D ]à A?AD ? Ȼ]ø]ÃA?D Ȼ]ø]!ȁ л]ø1]YUHHD$w%H@8?ɀH]Ár w3H @8?ɀH?ʀP]Íw=HvS@8 ?ɀH?ʀP?ɀH]Hvf@]XXX XI;fQUHH@HD$P|$hDw>HH9sH5#e|$h@|?ʀTH@]Ár wKHH9sH5dJ|$h @|?ʀT?΀@tH@]ÍwZHH9sH5vd|$h@| ?ʀT?΀@t?ʀTH@]HH9sH5dDfDH@]HD$H\$HL$|$ m9HD$H\$HL$|$ uHD$HH~HKHHH?H4H~TH<IIHSH4HvH}H|H |IjH HIHSIJH ΃@@H=LwH4wHv6EHu9HHD8@8HKHHH?HHu`HHD8@8HHKHHH?HHHHHudfDH|UHD8rL@8wGHr>w6Hr-w(HKHHH?HHHH21111øH=HHHŌDH HH ~HH YHqH qH ItHI;f#UHHH H\=6dtH\HPI ICH \HcH dH\=ctH\PI ICH \H;H <H\=ctH\OI ICH \HH Hu\=ctHm\DOI ICH U\HH HH\=QctH@\cOI ICH -\]5Ld$M;fUHHH$H$HH0HH\$XH$HK(H$H_1H$H$HI(H$H$H9w HH$:H$H$H$HH5_H$HH$H$HL$pH\$hHHHUH\$hHSHL$pH9r H$EH HuH$D>D~ "H$HӿH5^rHHH$HT$hHL$pD2 H$HI8H$H|HL$pH\$hH$JH\$hHHL$pH9r H$&HD$xH$H5p^HHD$xD-HLD$DE8ExLO0DL4DHHLH r.HHIHHL O L)HrHL@0DD4DII)IH~HL9sH\$hHHL$pfH9r H$H$H5[D/ H\$hH$HH1WtH] NNHD$H\$0HD$H\$Ld$M;fLUHHH$H$HH(HH\$@H$HKHL$`H wH$D:DzH$HZ1hHH$H$HI0H$H{H9HL$`H9w HH$7H$H|$HH$HH5_ZHT$HHHH$HL$XH|$PH$HHHHdPH\$PHSHL$XH9r H$CH HuH\$hD;D{ "H$HӿH5YJHHD H|$@L:L9s'HT$PHLH5YHT$PH|$@IHH$LD$PHL$XHH$HOH$HR H$҄tHt1Hu :.t&@Hu f:..tH9H9uH]1H]JHD$H\$a-HD$H\$I;fUHHPD$`H\$D;D{11LH H5+<LA7HL$HHT$8H 蛐HL$HHT$8H5I؋D$`H\$HHAAH EE!fDtH @|Hn@Hu D$-1 HLH H5z<LAf6HL$@HT$8H HL$@HT$8H5QzI؋D$`H\$HHAAH EE!DtH sH@|lH s,D-\H w1HoHP]H HH HH HH HD$y+D$0%(I;fveUHHXHD$hHH H@(HIHL$hHHqLALIH$H\$1HHH=BLoAmHX]HD$*HD$HH HX(HI;fUHHHHH9KukHPH9SuaHD$(H\$0HHEtHHT$0HZHT$(HBHJEt)HT$(HB Ht$0H9F t1HZ(HN(fG1H]HD$H\$)HD$H\$SUHHt ]gI;fv!UHHHtFH]:HD$o)HD$UHHt %(] UHHD$HtT/u H˹1ɐHSHH|DA/ufHH|0H9wFLBL9r8H)H{III?M!NHӉL]H߉λHHm]EEI;fv#UHHHHXHCHHH]HD$m(HD$H@111I;fvUHHHHXHH]HD$'HD$I;fv2UHHHHXH@$mE%(H]HD$'HD$I;fv5UHHHHXH#@t mH]ø$H]HD$;'HD$I;fvUHHHHp CH]HD$&HD$Ld$M;fwUHHH$H$H$HHcH$HuH$8.uHHĘ]H$H$Ht>H$HL$xH\$PH|$HH$H2Ht$pHRHT$@IE1:1HĘ]1HĘ]HL$xHHt$pH|$HLD$@HH$fL9MIM9dLL$8HT$ LT$XK RHHH\bHD$hH\$0HL$`H|$(H$H|$PU|$x@|HP]DL$~T$~t.|$xDHLH1ɐ|$xHH9sH5^>|$xD\HH9sH5<>|$x@|HP]Ë|$x@w:H\$hHHL$pH9rHD$`HD$`H5=l|$x@|HD$`H\$hHL$pmHP]HD$`HL$pH\$h tvt>D HSH9sHӿH5=HH\$hf\tHSH9sHӿH5L=HH\$hf\bjHSH9sHӿH5=HH\$hf\a:@   ^D | wA|>HSH9s HӿH5<|$xHH\$hf\U@|$DHSH9s HӿH5U<|$DHH\$hf\u HSH9s HӿH5<|$xHH\$hf\xHZ@DL LyGH9s'DD$CH5;PT$xDD$CL yDDHÃB H9sT$CH5;T$CTHSH9sHӿH5l;HH\$hf\rHSH9sHӿH5<;HH\$hf\f] u-HSH9sHӿH5 ;HH\$hf\n+HSH9sHӿH5:XHH\$hf\vHHP]HDLHYDHH|^HHHAL wE 9H9sHL$HDL$CHHH5j:DD$DDL$CHHHL$HHHDLHYDHH|^HHHAL uwE 9H9sHL$HDL$CHHH59nDD$xDL$CHHHL$HHH LH9~,IH)HL L9vDGPfA9s H HIMH9sAHf9J ,,HD$H\$HL$|$ @t$$DD$%DL$&DHD$H\$HL$|$ t$$DD$%DL$&I;fUHH HD$0HHHsH\$HD$HډHD$H\$H9wsH)HHH?H!H<H~ u,t3 } t`tp1H ]1H ]1H ]øH ]*HD$H\$f HD$H\$ UH=~7=}H oH`H1VH HH1'H^v=| =]1]ø]HH9~4HH)HL1DL9F A9s H4HvLǐH9}[HHH949w>HH9 9r*=}H HH1]1]HH9~2HH)HL1DL9v@F BfA9s H4HvLǐH9}s rf91Ƀ]@;)6)1),)')")HH9~0HH)HL1L9F BfA9s H4HvLH9}PDHHH94rf9w,HH9~ Jf9rH HH11]HH9~,HH)HL1L9vIL9veO FND9|FLA9}D9|IpLE1Mt)AL~A )˃ ىȻ]É1]'I;fvFUHH(HP FH(]H H=H5øH(]ÉD$ D$I;fUHH(@1HD$ HH NHֹqH r=7tH#I ISHHH\$ H N2H;=6tH0"IIsHHiH\$ H NH=6tH0"IIsHH*H\$ H ONH=F6tH0["IIsHHH\$ H MtH=6tH0"IIsHHH\$ H M4H]=5uH\$ #H -H"II[H\$ I[IKHH,苩HD$ HH QH0H =]5tHs!I ISHHH\$ H OH=5tH04!IIsHH÷H\$ H MY MH=4uH\$ #H ?,H'!II[H\$ I[IKHH,H(];6̀=9t 911I;fvxUH=O4tH*A IH0H*=)4tH* IHQ Hj*=4tHb*IH 1HL*]f{vLd$M;fUHHH$H$HH(HP HL@LHH9sfLD$HLHӿH5D2@H$HJ(=H3tHrf[IIsHBLD$HHIH$H$HP MDH;H$D0D2DpDrDp Dr Dp0Dr0Dp8Dr81#o=2tHhH$H$sH$L$E0D2EpDrEp Dr Ep0Dr0Ep8Dr8L$ME@LR0OMRIM!АLB0LD$PE8ExEx HD$PLL$`LR0LT$hHJHZHHH9sGLL$@H5wH$HJ=1tH IIKHLD$PLL$@HZH [HH HIE0D1EpDqEp Dq LJ0HJHYH9vLH IHHH H@H]1H]HH0SH HIHH!HP01H] HD$H\$HD$H\$5Ld$M;fUHHĀH$HH(HP HL@LHH9shH$LL$HLHӿH5j/%H$HJ(=r0tLBIMCHBLL$HHIH$H$HP MLS tH{u1۹111۹{H$LB0IILB0LD$PE8ExEx HD$PHD$`LJ0LL$hLJHZHHI9sML$GLɿH5H$HJ=h/tH {IIKHL$GLD$PHZH4[HH40HvE0D6EpDvEp Dv HB0HrH~H9v&H4vHHH2H@ЉH]1H]HD$H\$jHD$H\$L$xM;fUHHSLBIoH$H$ HB$H˹1H]HHHѿ1H]HP@HH9EK| HH99Kr HT$H11HP@HH9 K|H= Kr11HP@HH9J|H=Jfr11HHS@Ht#HuH[0H]1H]øH]H˹@H]H˹H]H˹{H]H$HS@HT$h1FHHHѿEH]Ht$`HH$H$ HT$hH$H9}7H{@H9s+HZBDHH}HJHZHLBH9sH$LH5MȾH$HJ=tLB* IMCHBIH$H$H$f{H$H$I;fvSUHHHw1Ht,HQHu H sHH'H]Ð; HH(HD$H\$HL$H|$ HD$H\$HL$H|$ uI;fvSUHHHw1Ht,HQHu H sHHH]Ð HtH舞HD$H\$HL$H|$ NHD$H\$HL$H|$ uL$M;fWUHHpH$H$H$ H$H$H$H$H$HDAI L$HHH@HH9H$H HH$H$D9DyDy Dy0Dy@DyPDy`DypDDDDH11 H$HD2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDr`Dq`DrpDqpDDDDDDDDH$D1D6DqDvDq Dv Dq0Dv0Dq@Dv@DqPDvPDq`Dv`DqpDvpDDDDDDDDH$H$HH$=tI HHH$HP$fPL$LH HP H$Hp8=uH$H$,LH(LP0H$I MKH$I{MSH$HH(Hx0H$H$IH$H$`HH$Hp]HwH 0kxHHؚHD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$([UHHHH$D3D2DsDrDs Dr Ds0Dr0Ds8Dr81fHJH }HHHtHHH)HHAAAtH4HHDŽHH]I;fv1UHHHL$8HHHHH٣HD$8H]HD$H\$HL$uHD$H\$HL$I;fvUHHͥH]HD$f;HD$I;fvuUHHHx(tRHHHt5HHR0HpZH` HEH H6H]HH٘HHƘHD$HD$qI;fvuUHHHx(tRHH Ht5HHR8HpZH` HEH H26H]H%H>9HH&HD$HD$qI;fUHHHPHHD$(HHHx(tHxtZHBf(H0H>u2H~t+HxsH?HHHL$(HyH]H\H%pHIHf[H4H]HHD$fHD$1I;fvyUHH(HuH(]HD$H\$HD$ HHL$HH=u HL$ HHL$HHHHa谖HL$ I HD$wHD$mI;fvXUHH(H9vH HHH\HH(]Ð JHH1H1-('H(]HD$HD$̐PtOPHHw;H $HPH7HP@1HP8+HPP%HPpHP8HP8HPP HP01@Htrfu11zHHHH11HI;fUHH(HwDuHH0/u(HH0$uHH8uHH0 uHH01Ht HH(]3;HH1Hۇ%赂HHƔHD$HD$QI;f~UHH(Ht^HtFfHuHk+H(]Ð fHHH1H/B%H(]H-H(]H-H(]HD$HD$dI;fUHH HL$0D9DyDy Dy0Dy@DyPDyXHmH9X@cH$H$HH8H[HtHt H=11HL$HT$H|$PHt$XHHD$0H\$8HL$HT$H$Hu(H$HA0{HD$@H\$HHL$HT$HHt HD$`H\$hHL$HT$HLHL$pH$H|6H;ۭH$HHD$xHDŽ$HDŽ$<́H$HHHHr#HL$xHDŽ$HDŽ$H ]EH# H|7HD$pH\$xHD$pH\$xL$M;fUHHH$D:DzDz Dz0Dz@DzPDz`DzpDDDDxHt {H$H$H$H$H$H$HC HH H$HZH$D:DzDz Dz0H@uDzH@H9H$D3D1DsDqDs Dq Ds0Dq0H@H@uDsDqH$(H$D2D1DrDqDr Dq Dr0Dq0H@H@uDrDqH$(H$0H$H$8D2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDr`Dq`DrpDqpDDDDDDDDH]H$H$qH$HD2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDr`Dq`DrpDqpDDDDDDDDH$H$pHHH$H̩@H$HH$ HHHH$9v@HyHI= u H$HI H$HHH fH$HHH$ t}H[4H$H$H$;4H #H $HD$ H$H$L#AIIH$H3 :H$3 HHL^#AH$H,111Aa[H$ B(HpdH$H5PH H=_ uH$H$ $H$HQ zH$ I3ICISHpHA H$H$H$H$H$D:DzDz Dz0H@uDzH$H$H$H$D2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDr`Dq`DrpDqpDDDDDDDDH=H$jH$HH$iHMH H$H5wIHMH$D9DyDy Dy0H@@uDyH 0H9QH$D3D1DsDqDs Dq Ds0Dq0H@H@uDsDqH$(H$D2D1DrDqDr Dq Dr0Dq0H@H@uDrDqH$(H$0H$H$8D2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDr`Dq`DrpDqpDDDDDDDDH]HH MfHH MfH 0,HH1HwHH蛉/%HH1H f{VwHHLgH$H$1H$H$;I;fv!UHHHB)zHHH]4Ld$M;f UHHĀHy@H$H$H$QHw8Ht!LBI@Hl1PfHHtHtygHQ@HT$x1JH]Ht$hHQ8H4vH|HHL6Ht$hHH$H$HT$xH$H9} Hy@H9rH]LËIH9s)?u1HPDAL9wː?u1AHH@H9vHH4 @4D[HXBDHH}HPHXHL@H9sHL$XLHѿH5}H$HJ=EtLBZIMCHBHL$XIHfHXBD HHHPHXHLHH9sHL$`LHѿH5tH$HJ=tLBIMCHBHL$`L$IHwHT$pHI0H1HHZHT$pHH$H$H$H9Q@.LËIH9s&?u1HPDAL9w{?u1HPDEAL9HPEAEF‰?u1?HHH9vHH4 @4@zVHXBDHH}HPHXHL@H9sHL$@LHѿH5xH$HJ=@tLBUIMCHBHL$@IHHXBDHHHPHXHL@H9sHL$HLHѿH5qH$HJ=tLBIMCHBHL$HIHVHXBD HfHJHPHXHLHH9sHL$PLHѿH5kH$HJ=3tLBHIMCHBHL$PL$IHoHD$H\$HL$HD$H\$HL$fI;fUHH0HD$@H\$HP ts HH0]HH0]s:s+H\$(HD$ HtHD$HHL$(HD$ vH\$HH0]HHEyHD$H\$HL$HD$H\$HL$GI;fUHHXHPHu0HpH81H?L3AHX]HD$hHHL$hH9HqH H $HD$LDAII1H&?bHX]HD$HD$HL$PM;fUHH(H#H$ HùHϸYHHD$`HB軜HL$`HHH@HH8=u H$ H$ IIKHD$hHH@(H@0HH HL$pD9DyDy Dy0Dy@DyHHD$hH$D9DyDy Dy0Dy@DyHH$HD2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrHDqHH\$pD1D3DqDsDq Ds Dq0Ds0Dq@Ds@DqHDsHH$H~:H$Hreflect.H91u#yValuufy e.uq@Ar@Zv f HH(]H 1H(]I;fUHH(HD$8H\$@HuH(]HL$H\$HD$ H贚HL$HH=u HL$ HHL$HHHHJbfHL$ I HD$H\$HL$fHD$H\$HL$GI;fUHHHD$(H\$0HʃHp@w@uHp07@u/Hp0+@u Hp8D@uHp0@uHp01~fHH@HHHH9HH]HuvPwuHP04u-HP0)DuHP8uHP0uHP01ҀzuHHSHKHH]HHTt}HL$HH@H RCHHL$HHHHH}Ht11f0HtH t}HaHsu}HD$H\$HL$D;HD$H\$HL$'I;fUHHxH$H$L$H$HL$hH$yL9A@JH|$`HQ8HT$XBHҐHT$`HHHT$PH$HqHeHT$PHrHH9PHt$X\HrHt$HH HIHL$@HD$h藐HL$HHT$@HD{H$H9HTT$H$HH$H$HH$DbH$H H$@{HĨ]HHdmHzHsdmHgH`d{mH0HL9L$D1E4$DqEt$Dq Et$ L$L$L$I<IIuPL$fDI FN='tJ<#M9M+I{MN,#KfDIL$H$fDIuHLlHF,#DIHDHB#H$H$H$H$H$H$H$H$H$(L$L$L$oHfHHmakHHbkHHHbkH0HL9VH$H$L$D0E3DpEsDp Es L$L$L$I<IItzI L$H$fDIu"BHfA~L@EINfHL@L$N I s|NĸH$H$H$H$H$H$H$H$(L$L$L$H$DHH_iHH`iHH}`ifHoH`i{vqHH G-"FHD$H\$HL$H|$ (HD$H\$HL$H|$ I;fUHH@HD$PH\$XHL$H\$8HʃHtsHs7P u+HD$0H_HD$0HL$H\$8HHtH@0`PH HɀH@]111H@]HuHT$8H2HRHT$8H2HtHvHRHt$ HT$(Ht$ Ht~IHπDNA IE111HtLD$I`AA MEL HHHH@]HH^gHT$HòۂH@H -)HHL$HHHH2gHD$H\$HL$[HD$H\$HL$GI;fUHHHD$(H\$0HʃHH9x@vqHp8H<HDLDHEI AuLH@I ALEArH8uIɀHuLH]H\LH]HH]fHL$H蹁H@H #,HHL$HHHH1ofHD$H\$HL$H|$ 5HD$H\$HL$H|$ I;foUHHHD$(H\$0HʃHuGH9x@2H@0HʁH0HHpH` HEH H H]HuPfH9{H@0HHpHH` HEH HɀHH]HuJH9{v1HHH:H` HEHɈH]HH/\ eHT$HH@H *HHL$HHHH0dHHZdHH[dHD$H\$HL$H|$ nHD$H\$HL$H|$ UHD$H\$HI;fUHHHD$(H\$0HʃHL$HwHHt8H3H8HxzsHHf;NH]H@@H]Hu0H83Hx(sHH{VH]HHwfuHP0/u(HP0$uHP8uHP0 uHP01ҀzfwuHH0/u(HH0#uHH8uHH0 uHH01ɀyuHI@1HH]@Hu HCH]Hɭ}H@H HHL$HHHH-bHsHYbH`H)XtbHMHXabHD$H\$HL$,HD$H\$HL$I;fvgUHH P tHHHH ]HD$0H\$8HL$@SHD$HHL$@HD$0OUHL$8HɀHD$0H\$H ]HD$H\$HL$@{HD$H\$HL$gI;fviUHHHD$ H\$(Ht s1H]0H]HC[|H@H 6HH@HHW,aHD$H\$HL$f۱HD$H\$HL$gI;fUHH(HD$8H\$@Hu H@@H(]HL$H\$HD$ H{HL$HH=u#HL$ HHL$HHHH+[`HL$ I HD$H\$HL$HD$H\$HL$DI;fUHH HD$0H\$8=,t1HH$=%tH7IISH HʃHL$HwbHHuG r2H8HxsHfHtHHH ]H H ]fHtMHw6Hu'Hxu5HHD$uUHD$H ]HH ]Ht'Hu=H8u$HxftsHHH ]HH ]HHT^HɩyH@H b-HHL$HHHH)^HsHU^H`H)Tt^HD$H\$HL$@;HD$H\$HL$'I;fv8UHHHD$(H\$0HʃfHu HH[H]HH]HD$H\$HL$ήHD$H\$HL$I;fUHH8HD$HH\$P@HtO r H ʠ HHHHѹHHL>A1H-H8]HZH8]HD$H\$HL$HD$H\$HL$NI;fv'UHHHD$(H\$0CHHH]HD$H\$HL$@蛭HD$H\$HL$I;fUHH HD$0H\$8@H s\H xuH9H@vfHP8\pH ]HL$HD${HL$H9v"H\HD$[pH ]H ]HHR[HHR[HvH@H _HH@HH&[HD$H\$HL$f{HD$H\$HL$I;foUHH HD$0H\$8HʃHL$HwaHHuF r2H8Hx fsHHtHHH ]H#H ]HtPHw9Hu*Hxu8H\$HQHL$HH ]HH ]Ht'Hu=H8fu"HxtsHHH ]HH ]HUHPiZHbf{uH@H !?HHL$HHHHv%1ZH HQZHHOZHD$H\$HL$ӪHD$H\$HL$@[I;fvXUHHHD$ X(mDHL$ ItHrHHHH?HH]H]cHD$8HD$@I;fv*UHHHHu H@@H]HH]HD$ƩHD$I;fUHHHtDHK1 11H]HH|%4@.uHt@[uH@]uHHQH9rH)HHHH?H!HH]2HD$HD$f[I;fv-UHHHt H 11HHH]HD$裨HD$Ld$M;fUHHH$D9DyDy Dy0Dy@DyPDyXHHIHL$xHD2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDrXDqXH$D1D2DqDrDq Dr Dq0Dr0Dq@Dr@DqPDrPDqXDrXH]"HH1H;[eDHH[vVHD$pH\$xFHD$pH\$xI;fUHHHHD$XH\$`@H@t H` sHHλ HHC褷HʃHu>H\$0NHuHL$0HHIHL$0HHtHRHIHHHH]HD$(HT$(HT$8HD$@HT$8HHHH]HIHLf[UHTopH@H *HH@HHk &UHD$H\$HL$@|$ HD$H\$HL$|$ UHH8Ld$(˥HT$H$Ld$xHT$H$H$HHL$D$ HD$ HD$HD$(HD$Ld$(:H8]I;fUHHHHfH9KHPH9SHD$(H\$0HHSt{HT$(HBHt$0H^HJ4t\HT$(HB Ht$0fH9F uFHN(HZ(t5HL$(HQ0H\$0H9S0u!HQ8H9S8uHQ@H9S@u HIHH9KH1ɉH]HD$H\$[HD$H\$ I;fv!UHHHtHżH]HD$HD$I;fv!UHHHtHeH]HD$ϣHD$UHHt H@]hI;fvJUHHHt7HHHʃHXHu H HSHHHHHH]HD$FHD$UHHHD$ H\$(EWdL4%蛷H]UHH HD$0H\$8HL$@H|$HEWdL4%H ]I;fv5UHHHHH9KuHP@H9Su HHϽ1H]HD$H\$VHD$H\$HH9 u HHH9KuHHH9Ku Kf9H1HH9 uPHHH9KuFHHH9Ku<Hf9Ku2HH H9K u(HH(H9K(uHH0fH9K0u HH8H9K81ɉ1L$(M;fUHHPH$`H$hH$HL$pH$Ht r H eHHHHHL$pHʃHT$hHuH$H~H$H$HH|$@H$1HmHT$hHtH$HD$p軸H$H$D9DyDy Dy0Dy@DyPDy`DyhHT$pH$H$H$H$H$HT$@1?11HHP]H$D6D2DvDrDv Dr HH$HT$PH\$HHD$xHH$õH$H$HL$pH$AH$H$H$H$HT$pH$H$H$H$H\$HHHL$PH9rHD$xHD$xH5MmH[HHHRЃ=H$H\$`HL$XH$HOHH$@;pH$HL$XH$H\$`HKH\$xHL$HH|$PHLr45HD$xH\$HHL$PHP]HD$H\$HL$艞HD$H\$HL$Ld$M;f< UHHH$H$H$H$LD$xH$HL$pH$H$H$Ht r HL G:DHL$pH$H$H$LD$xIHH$H$LL$HMtA r ILKHHLHL$pH$H$LD$xLL$HL$IHH$H$M9HHL@eHL$pHʃLJI HT$hHʉB$HL$xHʃH$6Ht@t$7H$H$t$7H$@81t#@tH]HH]1H]Hw+Hu H$H TH H$H H uH$ ,@H u H$H H H$H HT$xHT$xH wD@Hu H$HgHu H$TH _H$=H u H$(H u H$HH  H$HH9s H v1H]@H uH$ZHH$HL$xH uH$ ZHH$ f.uf{f.u{16H-f.u{f.v Hf.v1H]HuH$IZZHMH$IHL$xHuH$YZZHH$Yf.u{f.uf{1:H1f.u{"f.v Hf.v1@HuUf.u{f.u{16H-f.u{f.v Hf.v1H]H]1HH$H$H$H$LD$x,u`H$H$HL$pHD$`H$H$HL$xHT$`H9v H s1H]H]H$H$H$H$LD$xH$H$HL$p3Ht r HH~7HtH@Ht'tPHHʀx@ HE111111HT$8H$H$H$H$HL$xHt r HHHtH@Ht(tPIHʀDPA IE111111HL$8HHIH$H$Ht H]H$H$HL$p H$H$HL$pH$H$HL$xHHIH$H$HL$pXH]H]HL$xHʃH$HH^HuH$H2HR5H\$@H$H$H$HHH$H\$@HH赬H} H ~1H]1yH$H$HD$`H$H$HL$xHT$`H9v H s1H]HH]HD$XHHL$pHD$XH$H$H|$XH9H$H$HL$pH$H$HL$hH$H$HL$xH|$X@HHIH$H$HL$hHLH]1H]HD$PHHL$pHD$PH$H$H|$PH9H$H$HL$pH$H$HL$hH$H$HL$xH|$PXHHIH$H$HL$hHQH]1H]HL$xH,G]H@H uHHL$xHHHHB fAH]H@H =HHL$hHHHH AHL$xH\H@H !HHL$xHHHH AH\H@H HHL$hHHHH QAHJe\H@H HHL$xHHHH` AH/\H@H HHL$hHHHH* @Hދ[H@H HHL$xHHHH @H[H@H HHL$hHHHH y@HL$HHHH$ѹHH1HJ%.HH6@HD$H\$HL$H|$ Ht$(LD$0HD$H\$HL$H|$ Ht$(LD$0oI;fUHHHD$(H\$0H|$@Ht$HHʃHL$HwHy@Hv*HtHvHu H;H rsHHtzLALD$IwIPHv*ItIvIu H>I rsH6Ht 11H]øH]LALD$IwIPfDHv#ItUIvIu H>Iu: rsH6HftHH]1H]HVqYH@H HHL$HHHHl '>H ;YH@H uHHL$HHHH6 =HYH@H ?HHL$HHHH =HD$H\$HL$H|$ Ht$(LD$0wHD$H\$HL$H|$ Ht$(LD$0I;fvVUHH0HD$pH\$xH$H$H$L$HD$pH\$xH|$@Ht$HLD$PH0]HD$8H\$@HL$HH|$PHt$XLD$`HD$8H\$@HL$HH|$PHt$XLD$`[L$M;fUHHH$H$L$H$H$H$E1LZLL$L$H9H$MYMZI9}L\$xME3E2EsErEs Er E4$E3Et$EsEt$ Es HL9LL9"L0ORIIL$E2E4$ErEt$Er Et$ L9O[IIۃ=tUHD$(LT$hL\$`H8LL-MH&H\$`H$MHD$(H$ HT$PH$Ht$@H$8LD$8LL$LT$hL\$`L$M)HL)HT$H1;E1D7EqDwEq Dw E2E1ErEqEr Eq HL9H<H9L 0H<HHLT$pD7E2DwErDw Er L9O IIIك=9^HD$ H|$hLL$`HHLKHH\$`HL$pKHD$ H$ HT$HH$H$8H|$hLD$8LL$`LT$pDH]mhc[E2D7ErDwEr Dw E3E2EsErEs Er HL9H<H9L0H<HHL$D7E3DwEsDw Es L9ORIIڃ=[HD$0H|$hLT$`HHLJHH\$`H$JHD$0H$ HT$XH$H$8H|$hLD$8LL$LT$`L$M)H(#HD$H\$HL$H|$ Ht$(LD$0LL$8LT$@xHD$H\$HL$H|$ Ht$(LD$0LL$8LT$@hLd$M;f0 UHHH$HBH$H$T$O/Ht$xD>D~D~ D~0D~8H$HD$xH$H$H$/HH~8/uHDŽ$HeHfDH$H$H$H$H$H$H9; H\$xH9HHOH9tHFH$H$T$OHH$H$H9H$>/H$1H%HH=H1:H]LH94D<@/uHyI@.LAL9tQDLA/t@.nL9,A.OHyH9tDDA/*L$L9}IL$}/5H|$pMH$H$L9~!Ht$xB4@/uIpH$HL$hHyHCHL$hH$H$H$H$H$@H9H\$xH9HLH9taH$T$OH$H|$pH$L$L9}H$B/H$H$H$H$H9~+9LD$xE0DA.uHH$HL$hH~HBHL$hH$H$H$H$H$fH9H\$xH9HLH9taH$T$OH$H|$pH$L$L9jH$B.H$H$H$H$H9}+&LD$xFDA.uHH$HL$hH~HAHL$hH$H$H$H$H$fH9H\$xH9HLH9taH$T$OH$H|$pH$L$I9[H$B.H$H$1/ ///Ht$XuH$u /H$ H$HL$PH$L$@L9}&LL$xE 9A/uHH$LD$hH)LH?HL$hH$H$H$H$H$H9>H\$xH9HLH9tH$HL$PT$OH$Ht$XH$L$I9H$B/H$fHH9<@/ H$HL$`@|$.L$L$M9}#LT$xGA8uIxH$LL$hHLHِ>HL$hH$H$H$H$H$H9H\$xH9HLH9tH$HL$`T$OH$Ht$X|$.L$L$M9L$C<H$IH$H$H$HtHT$x:.uHDŽ$HL$pHH=HL$pH$H$H$H$H$H9H\$xH9HLH9tH$H$H9H$2.H$H$HtjH$H$H9H$H$H9wqHt$pH$H$HD$/HL$pHH1H$詯(H$H$H$H9rH$HH]qlgbf[VQLGBf;I.)$@ IL$L$L9}L$MtL$M9v.G L$M9vLT$xG A/uq觋袋f蛋薋葋茋臋肋HD$H\$RnHD$H\$UHHD$HuH]HːHt L/tHKHH|-/uH|HQH9r+H)HHHH?H!HHuH]]ÐۊI;fv`UHH(HD$8HKH@H| /uHH9r)HD$8Hf1HH1H\$8gH(]Ð[HD$H\$+mHD$H\${I;fvFUHHHD$(HDHt H2HR11HtHv HHHH]HD$H\$lHD$H\$I;fvFUHHHD$(H DHt H2HR11HtHv(HHHH]HD$H\$%lHD$H\$I;fvFUHHHD$(HDHt H2HR11HtHv0HHHH]HD$H\$kHD$H\$I;fUHHHH\$`HD$XH|$pHt$xHHWHt1 Hvl11HuWHD$@H|$pH|$8HL$@H\$XHt$xE1Mj~HtHf{HHHH]11HH]HHHH]HD$H\$HL$H|$ Ht$(jHD$H\$HL$H|$ Ht$(I;fvfUHHPH\$HH|$@HT$HHMFIHHH}Hu11HD$8HH HHD$8HHHP]HD$H\$HL$H|$ Ht$(LD$0iHD$H\$HL$H|$ Ht$(LD$0NI;fvCUHHu$HcDHLHHH]Hc11H]HD$H\$HL$ciHD$H\$HL$L$M;fUHHHD$ D8DxDx Dx0H@fuDxHD$ oHuTH$D9H$H$D2D1DrDqDr Dq Dr0Dq0Dr1Dq11111HH]HHA}<@ wHHHHHs.HHH}1H$H$H]D;hI;fvMUHH H1HøDzHtHNHHHH ]11H ]HD$H\$gHD$H\$I;fv[UHHHHL$@Ht$8HT$@HIE1HHHzHtHHHHH]11HH]HD$H\$HL$H|$ Ht$(gHD$H\$HL$H|$ Ht$(cI;fUHHH1D8DxDx = t HI HD$H HH0H ^H=ԓuHT$ H @HT$IICIKHPH @HHHH]*fEI;fvbUHH0HJHBHD$(HPH5ZHt$HD$HL$ HH\$۽HL$(yt A(H0]HAHY eI;fv{UHH0fD|$(D$HBHD$ HJHrH\$HD$HL$HL$HL$(D$HHHL$ A(AD$HT$(HH0]膮H0]zduI;fvkUHHHB=Gt Hf;~I HD$HǸHL$HA=tHQ ,~IISHY ytH]cI;fv'UH1H~ u H1ɉ]NdI;f*UHHHHD$XH\$`HL$hHHЄt HD$h11111HH]HHHHD$8HL$0H=HHOHD$XH\$`HD$ H\$(HL$@HT$8HH)H|$0LHIOH|$HOHt$8HH9ukHH(t)HT$ HHt$8H|$HT$(H H9HD$ HL$@H H\$(Ht$8H|$uOHH軀t HT$ H<HT$(Hv H9HD$ HL$@Hb H\$(Ht$8H|$uOHHjt HT$ HHT$(H% H9HD$ HL$@H H\$(Ht$8H|$uOHH6t HT$ HHT$(H H9HD$ HL$@H H\$(Ht$8H|$uLHHEt HT$ HLHT$(H H9HD$ HL$@Hr H\$(Ht$8H|$uOHHzt#HT$ HHt$8H|$IHD$ HL$@H\$(Ht$8H|$HtH!HuHuHHtt @H?HHމIHLHH]HȻ11HH]HD$H\$HL$`HD$H\$HL$Ld$M;frUHHD$H$H$H$D$7HD$8D|$X1HtH$11,H$z2tH5q(H=r(H5 H=HH ZHL$xH$HL$xH$D$7H$tL$E1E1-L$Ay2tL'L'Lm L&Mu%HHT$hLL$pHT$hH$D$7lHD$8LT$XL\$`D$7H$HHD$8H\$XHL$`HĘ]HD$8Ht$XH|$`HD$8HHHĘ]L$IAH$HJ1HH$E1jH H9u3HL$PHD$HH\$@HH:f|uHD$HHL$PH\$@HD$8H\$XHL$`D$7H$HD$7H$HHD$8H\$XHL$`HĘ]踧HD$8H\$XHL$`HĘ]HD$H\$HL$+^HD$H\$HL$WI;fvUHHHBH];]I;fvUHHHBH]\H  H I;fUHH HHfr@HHHHHH!HHH tH\$f'1H ]HT$HCH$HT$HH\$HHu%HT$HC $HL$HHH\$HHu̸H ]H`H)t HD$I\HD$@I;fUHH0tHHHHH HHHD$@HL$(H\$Ht$HT$ LH8ruHuIH HHuvL>LtZMILILI9@@tIt%H HL$(HT$ H\$Ht$LL$@f늸H0]1H0]H$H8 HH% HD$\$ZHD$\$I;fUHHtHHH'HH HHHLH8@HtfHt]IHH!LJH)HHLEHHL AEtHtLL$H!LL$AIH]HH" HD$\$YHD$\$I;fvqUHHHHHt:HQHHHtӁHuH-H]11H]HvHOHD$@[YHD$qI;fv.UHHHD$ At HD$ H]HD$YHD$I;fv.UHHHD$ 1@t HD$ RH]HD$XHD$I;fUHHHD$ fuH\$(HH脰H\$(HCHteHwu?H B HC AH uH H +HuH  H HbH HHHH]HL$ H11H]HD$H\$WHD$H\$I;fUHHHHL$8HD$H=Hu 11\HuiL$8tH ZH[:H H*HuH THUHu$H NHOHHH]11H]HbHD$HHHD$H\$L$D{VHD$H\$L$I;fUHHHHL$89HD$HAHu 11`HL$8tH 6H7:H Ho*HuH 0H1HuHH *H+HHH]HP H@!H =HHHH]DHHD$id@{HTHmhHD$H\$L$4UHD$H\$L$DI;fvgUHHH\$(Hu ;fileu@2@t0HD$ HH HHD;Ht HL$ A,H]@,11H]HD$H\$HL$@|$ zTHD$H\$HL$|$ aI;fv|UHH HD$0HH HtHȐHL$0HA HHHHX(H\$HHHHD$H\$HL$0HAHD$nHD$H\$H ]HD$SHD$jI;fUHHHD$(bftQHD$(HH Ht HHD$(HL$(y,uH\$HD$HA(fHD$H\$H]HL$(y2ftH gHhH H}HHH]HD$ SHD$D;I;f1UHH@fD|$8D$D|$HHr1HQHHHH„tHs({2tH HfH H|11HtHL$HT$ HHH@]H HL$(H\$0HL$(HL$8D$K,HC1ې[3HD$H\$ D$HT$8H HD$H\$ H@]H{H@HD$H\$ H@]HD$QHD$I;fvUHHHBH]PLd$M;fEUHHfDּ$H$H$H$H$D$'HD$(D|$PtH$11,H$x2tH5H=H5dH={HH5Ht$pHD$xHt$pH$D$'H$fHHP HT$`H2HлrfHu;H$z0tH$H@~@H$Ht$0HD$(HD$PH\$XD$'H$HHD$(H\$PHL$XHĈ]HD$(D|$PD$'H$HHD$(H\$PHL$XHĈ]HD$(Ht$PH|$XHD$(HHHĈ]H$Ht$0HBHD$@ HD$@Ht$0H$HH$UH\$HHL$hHH9u.HD$8HHvluHD$8HL$hHH\$HHtmH9t1HHGlHL$hH\$Ht;H$H~ t4N2HD$`r2H+H$HHH$1H$DHuHu~1tHH HD$(H\$PHL$XD$'H$HHD$(H\$PHL$XHĈ]dHD$(H\$PHL$XHĈ]HD$H\$HL$H|$ MHD$H\$HL$H|$ zI;fvUHHHBIH]LLd$M;fUHHfDּ$H$H$H$H$D$OHD$XD$1ېtH$11,H$x2tHH5HH5=wHHH$H$H$H$D$OHP H$H2HлwHu1yHD$XH$H$D$OH$HHD$XH$H$H]HD$XH$H$HD$XHHH]HH$z0t H$IH)H@~H@ L$LH$H9H9HD$pHH)Ht$hIHH?H!LRL$H)HL$`L$I3H$HL$`H$LL$hL$LLRH$HD$xH$HDH9u/HHihuHD$xH$HH$H~Ht$`fH9Ht$pHHt$pL$I9]Ht$pH9t13HHZhH$H$Ht$pL$HD$xtgL$Iy tcAI2H$wHt"Ht$pL$L$HHHD$x%Ht$pL$L$L$Hu\HH+H ,Ht$XH$H$D$OH$HHD$XH$H$H]Ht$XH$H$D$OH$HHD$XH$H$H]Ht$XH$H$D$OH$HHD$XH$H$H]û 諬H$H\$PHD$` 菬H$Ht$PLAII1HHHrefeՑHD$XH$H$H]HD$H\$HL$H|$ ;HHD$H\$HL$H|$ I;fvUHHHB)H][GI;fqUHH`fD|$XD$D|$0HHr1HQHHHH„tHs(~2tH HfH Hq11Hu,Ht$@H\$xH HL$HHt$PHL$HHL$XD$ HL$0HT$8HHH`]H\$xHt$@HF/QH H9u*H\$(HD$ HHHDduHD$ H\$(HD$0H\$8D$HT$XHfHD$0H\$8H`]HpHPՏHD$0H\$8H`]HD$H\$VFHD$H\$gI;fvUHHHBIH]{EI;fUHHPfD|$HHD$`H\$hD$D|$ t HD$`11)HD$`x2tH H5 HUH5pHuhHBHT$8HD$@HT$8HT$HD$HP HT$0H2HлrHt?HD$ H\$(D$HT$HHHD$ H\$(HP]HT$ Ht$(HHHP]HT$hH H\$`HCфuGHT$`J2HD$0r{HtHD$ H\$(D$HT$HHHD$ H\$(HP]D|$ D$HT$HHH\$(HD$ HP]HD$ H\$(HP]HD$H\$dDHD$H\$UI;fvUHHHBH]{CLd$M;fkUHHĀH$fD|$xD$'HD$(D|$HLHr+HrHIHI0@@tIs(Ax2tH H5 H'H5m11Hu?LD$`H$H$H$HHT$hLD$pHT$hHT$xD$'AHD$(HT$HHt$PHD$(HHH]H$H$H$LD$`I@HD$8HD$8H$H$H$EH\$@HL$XHNH9u1HD$0HHf[`uHD$0HL$XHH\$@HtdH9t1HH#`HL$XH\$@t4HD$`Hx t HP H2HлrHHHHH1 HHH\$XHL$(HD$HH\$PD$'HT$xHHD$(H\$HHL$PH]HkH{DHD$(H\$HHL$PH]HD$H\$HL$H|$ mAHD$H\$HL$H|$ TI;fvUHHHBIH]{@I;fUHHpH$fD|$hD$/D|$@LHr/LBIEIHMA@EtIs'Ay2tHLH2Lj 1E1@HuGLL$PH$H$H$H$H/HT$XLL$`HT$XHT$hD$/;HT$@LD$HHLHp]H$H$H$H$LL$PIAOHH9u*H\$8HD$0HHH$]uHD$0H\$8HD$@H\$HD$/HT$hHfHD$@H\$HHp]HgiH0{赈HD$@H\$HHp]HD$H\$HL$H|$ Ht$('?HD$H\$HL$H|$ Ht$( I;fvUHHHB H];>I;fvUHH H1HH ]HD$H\$HL$>HD$H\$HL$L$pM;fUHHH$H$ H$(H$0HD$0D$D$/H H$H$H$HL$0H$H$H$HL$/H$H$H$HD$xH$1xtH$11,H$y2tHHH!HgHHH$H$H$HL$`HD$HcH$HP H$H2Hлw{HuH$HBHD$8DHD$0H$H$D$/H$|$/H$HD$0H]HD$0H$H$D$/҅H$|$/H$HD$0H]誅H$|$/H$HD$0H]HD$8H$L$0M~LL$0M)IAMOAHt$0H$ H$(LH$H$H~HD$0H$Hu8HH$0H_fDH9T$0NHT$@H$H$H H9u/H#YuCHT$@HH9H$DHXH$0H$0H~ H9T$0H$J2H$wcH$H$HH$0ftD$D$/|$/H$HD$0H$H]HT$@HH9H$u,HDXuRHT$@HH9H$u'HoWu)HT$@HH9H$uJHWt3H|$0D$/5H$|$/H$HD$0H]HcH9$uH$HmWu1D$/@ۂH$|$/H$HD$0H]H|$0D$/訂H$|$/H$HD$0H]D$D$/r|$/H$HD$0H$H]D$/EH$|$/H$HD$0H]HD$H\$HL$H|$ 8HD$H\$HL$H|$ 0I;fvUHHHBH]7I;fv=UHH0LJ HZLRLZ(HBI I9EIqHL AH0]X7I;fvUHH CH ]HD$H\$HL$H|$ Ht$(7HD$H\$HL$H|$ Ht$(I;faUHHhfD|$`HD$xH$H$D$HD$ D$D|$@H譑HtH5=H911HH 1HD$@HL$HHu/H\$8H5Ht$PH\$XHt$PHt$`D$H$$HD$ D$1HH1Hh]HHH|$@HHD$0HSH=HLHH$H\$@HL$H|$t9H5H9t#HD$(HH5DSHD$(L$H|$@u\DHtRHT$8HBHHHD$xH\$@HL$HH~HD$ Ht$8H)FH|$0H)Ht$8H|$0H|$@t)D$HT$`HHD$ HL$@\$H|$HHh]D$D|$@D$HT$`HHD$ HL$@\$H|$HHh]HH :~HD$ \$HL$@H|$HHh]HD$H\$HL$5HD$H\$HL$mI;fvUHHHBH]4Ld$M;fUHHfDּ$H$H$H$D$7HD$8D|$PHػ!tH$11.H$x2ftHGH5HHH5^HHPHT$pHD$xHT$pH$D$7HP HT$`H2Hлr:HtdHD$8HD$PH\$XD$7H$HHD$8H\$PHL$XHĈ]HD$8HT$PHt$XHD$8HHHĈ]H$HB1H$HH$A?H\$@HD$HHL$hHH9u@HHxPt H$Ht$@HH9HD$HHL$hHHHH:PtzH$Hz @IJ2HD$`r'Hu H$$HL$HHL$8HD$PH\$XD$7H$HHD$8H\$PHL$XHĈ]HD$HHL$hH\$@HD$8H\$PHL$XD$7H$HHD$8H\$PHL$XHĈ]J{HD$8H\$PHL$XHĈ]HD$H\$HL$1HD$H\$HL$I;fvUHHHBIH]0Ld$M;f4UHHfDּ$H$H$H$D$7HD$8D|$`1tH$115H$x2tHH5HH5I[fHHH$H$H$H$D$7HP HT$pH2HлwHuH$1fgHD$8HD$`H\$hD$7H$HHD$8H\$`HL$hHĘ]HD$8HT$`Ht$hHD$8HHHĘ]LHHD$HHL$@H$HJ1HHAH$f{H/IpHH?L$J1HDH9~ D EuHHu F A.tHu&A40f..u H$H$H H$H@@H)H$H$XHHH|$xL$A|8@w'@uY@u L@uA?@w@u,@u!1"@ u @ uD$D1c]Hً|$DHH$H 1HL$`H$HD$hH$Hk?H5l?HHHHt H$LD$`M3H$H$HH$H9s!H5cH$H$H$HsHLD$hL0=Fu L$LD0f2L$M MCLL01[\HHH$HKHL$XH$HD$PH$Hg>H5h>HHHHtH$LD$XMH$H$HH$H9s"H5[H$H$H$HsHLD$PL0=Eu L$LD01L$M MCLL01T[H$H$HH$H9sMH$H$HHӿH5AH$H$HHH$H$H$LBIJ\=DtN D0IMKJH$H$H~H$HnHfH^HVHJHH$p=MDuH$HH$H$HH%0I H$HH@H\$pH$HLH@ H phHH$HH HQ@HI8HP=Cu H$/I H$I[HHHL$pHH HX(H H$8H$@D$CH$ HH$L$H$L$H$H$L$L$H$H(]H$H$H$HHH HDŽ$D$HDŽ$D$HDŽ$D$H$8H$@D$CH$ HH$L$H$L$H$H$L$H$L$H(]D$8D$CH$ HH$L$L$H$H$L$L$H$H$H(]HDŽ$D$HDŽ$D$L$8H$H$@D$CH$ HH$L$H$L$H$H$L$L$H$H(]HDŽ$D$HDŽ$D$L$8H$H$@D$CH$ HH$L$H$L$H$H$L$L$H$H(]20-0(0#0HH ԞN\H$H$H$H$H$L$L$L$L$H(]HD$H\$ HL$(HD$H\$ HL$(I;fv)UHHHB@tiH]HD$H}11@H퐐I;fv,UHHH\$(HD$ äHD$ H\$(tH]HD$H\$@HD$H\$I;fvJUHH8HD$HHHH@HIHL$HHHIH=TVII1HQH8]HD$&HD$HHHXHI;f'UHH0HD$@H\$HHL$PH|$XHtbP\kLuH{H9uHHC0H[8> MuHںfH9u(HC H[(VuHfH9uHCH[HL$PH|$XH9u.H\$(HD$H.pHD$HL$PH\$(H|$XHǺH9uH6HT$ H9 uLHHHH-t$HL$ H u HHL$PHT$ H|$XH9 YuKHXHHHb-ft!HL$ Hu H'HL$PHT$ H|$XH9 u6HHHH-tHT$ HZHL$PHT$ H|$XH9 uH@ H UHH$HH=5uH$Ht$pD!H$IHt$pIsHPHT$PHP Hp(HDZH1H]HD$HH$\$GJ+tHHD$HY11H]HD[HL$HH11H]HHH 萓HD$H\$HL$H|$ Ht$(LD$0HD$H\$HL$H|$ Ht$(LD$0)I;fUHHpH@D$TƒT$P0DAt%=u H @T@511,D$LHD$X{ HH1Ha"FHL$XHu|tDD$LH T$LAHHt\H\$`HD$hHt IIL miHL$`H=POIILJA1H\$hfFT$PHD$ThHHH1HgQhET$PHD$T5 h HH1H+]1ET$PHD$Tt*t%s1H=4dHHHDHHHp]HKHp]HD$HD$I;fvmUHHH\$(HL$0HQH9u HHx(t )H]aH]HH@H HHHH]HD$H\$HL$HD$H\$HL$eI;fUHHXfD|$PD$D|$(H8H8bpƅ}&HD$hH\$pH11DHD$hH\$pH HL$@HH HL$HHL$@HL$PD$Hx(YHt{HgH H9u>HD$ H\$8HHH,@ tH H! HD$ H\$8HD$(H\$0D$HT$PHHD$(H\$0HX]HH HD$(HL$0D$HT$PHHD$(H\$0HX]HH HD$(HL$0D$HT$PHHD$(H\$0HX]HH@H HH HL$(HD$0HL$(HHHX]H?H@HD$(H\$0HX]H,HOKHD$(H\$0HX]HD$H\$HD$H\$I;fv)UHHHBXf}7hH]I;fUHH8H`H |_H|$(HD$0HL$H\$ HH@H*S tH\$ HHD$0HL$H|$(HD$0HL$H\$ H|$(H8]fHHA8HY@I;fv{UHH0H\$HHt11H &H5 &Ht1HHH0]HD$@H1HD$(HD$@HHH6FHHHD$(H0]HD$H\$HL$H|$ &HD$H\$HL$H|$ MI;fUHH0H\$HHL$P@Ht11H>%H5?%HudHD$@HL$PH\$H8t2HD$(HD$@HFHHϹ HHHD$(H0]HD$@H\$HHL$PH0]1HHH0]HD$H\$HL$;HD$H\$HL$'I;fv UHHH )H@I;fv5UHH8H\$PHL$XH1E1MHHHȩH8]HD$H\$HL$HD$H\$HL$fI;fFUHHPH\$hHt11H#H5#H HD$`HL$pH貰HHLHT$pH9tH$L%1E1LD$HHT$8HD$0HL$@H\$(L ~L9t1*LH#HL$@HT$8H\$(LD$HHD$0@t5LL$`MAzQt*YHD$0HL$@HT$8H\$(LD$HLL$`LL$`Ht%LHHH?DHIHD$0HLHP]1HHHP]HD$H\$HL$H|$ HD$H\$HL$H|$ {I;fUHH0H\$HHL$P@Ht11H!H5!HudHD$@HL$PH\$H2t2HD$(HD$@H5BHHϹHHHD$(H0]HD$@H\$HHL$PH0]1HHH0]HD$H\$HL$HD$H\$HL$'I;fv UHHH%HԞ@۪I;fv5UHH8H\$PHL$XH1E1MHHH h|H8]HD$H\$HL$QHD$H\$HL$fI;fvaUHH H\$8HD$0HL$@|$HzHD$0H\$8HL$@|$HbfHt1H ]HHt$@ BR11H ]HD$H\$HL$|$ HD$H\$HL$|$ iI;fUHH8H\$PH|$`Ht$hHHD$HHL$XH\$PHt$hH|$`H9=t10H HHHL$XH\$PHt$hH|$`HD$H*H9=!uAH HHftH=H5_HD$HHL$XH\$PHt$hH|$`=/$t=H HHHHHHD$HHL$XH\$PHt$hH|$`Ht$0H|$(H/HL$XHH=&fuHL$P HL$PI HHL$HH HQ@HI8HP=l&u HT$0{I HT$0ISHHHL$(HH HP(HH,H8]HHH8]HL$`HIHD$hѹ/HH1H8蔕HH"襧HD$H\$HL$H|$ Ht$(fHD$H\$HL$H|$ Ht$(I;fv{UHHHt11HH5HuEHD$ HC=\%uHT$ NHT$ IHH11HͦH]11HHH]HD$HD$kI;fvAUHHHt$HyPtHD$H藤HD$HHIHHH]HD$OHD$I;fUHH8HD$HHt$hH|$`HL$XADHuqHD$(H\$XHL$`H|$hHT$(HuHNH5O"HL$0H\$ HHL$0HHH\$ Ht HuHHHHH8]HHH8]HD$H\$HL$H|$ Ht$(DD$0hHD$H\$HL$H|$ Ht$(DD$0I;fv3UHH(HD$8HHHHHH1H(]HD$H\$HL$|$ HD$H\$HL$|$ I;fv/UHHHtHH]HH H]HD$HD$I;fvUHH0H\$HH} 1H0]HD$@H\$HHL$P1dHۺHEHD$(  @HD$@H\$HHL$P1QHHt$( BRH0]HD$H\$HL$HD$H\$HL$SI;fUHH0HD$@H|$X@t$`HL$PH\$HHuHˆT$'HV葾HD$(HD{HL$@HHf@0HT$PHP@=|!u HT$(LD$HHT$(H2 LD$HMICIsL@8t$'@pQHHt$XHtIHHu LƻL\$`tUDD$`EtHu@PE1;HȻHtHT$( HT$(H2FP@AHL$@1E1DD$&HH39;Ht0T$&t'HD$@1HtHT$(HT$(H2FPHT$(HHwhH AH=dHD$8H\$@H`]q#HD$8H\$@H`]HD$H\$HD$H\$I;fv9UHHHJHA(HtD[H]HH|ˆL$pM;f UHHfDּ$D$7D$H$'D|$HD$EWdL4%HD$ 1qHu:H$HH$H$H$H$D$7H$H$H H@ H *HH$HH=u H$H$I HHH H$H$HHH]H$HL$8D9DyDy Dy0Dy@DyPDy`DypHÿ1pH$H$HH9u:HHHVsuH$H~H9HHqH$u,HHHrf{H$H$Hu11[H詡H@ H f)HH$HH=u H$H$I HHHHRH$H$D$7H$HH$H$H]øH$11Hu11H6sHHdHH$H$HǠH@H AHH$HH=fu H$H$I HHH qH$H$D$7H$HH$H$H]Ht;H$H$D$7H$HH$H$H]D$D$7H$HH$H$H]DH$H$H]f[I;fvUHHHBH]{I;fUHHPHD$(D8HٿHtgHD$8H\$@HH@H HHL$8HH=uHT$@ HT$@IHP1H HHHP]HD$(Hh1HD$HHD$0HH1H11HD$HHP] I;fvD@^111H0]111H0]Ht4HD$(HH HHD$ HL$(HIHD$HHHD$ H0]111H0]MI!INTI9t!MAfMuH4HlPH\$JD|IH!HLL:L9t,IxMuH\$HHȞ'PH\$HfHD:HD$H\$HD$H\$I;fviUHHHHH9KuOHP@H9SuAP9Su9HD$(H\$0HHftHD$(H H\$0H {1H]HD$H\$HD$H\$sI;fUHHHHfH9KHSH9PHS(@H9P(HD$(H\$0HHtgHT$0HZHT$(HBHJtGHT$0HZ HT$(HB HJ(t'HT$(HB0Ht$0H9F0t1HZ8HN81H]HD$H\$HD$H\$ I;f}UHHHD$(H\$0@ۚtVHT$(HJ@Ht$0H9N@uBHzHH9~Hu8zP@8~Pu.zQ@8~Qu$zR@8~RuzS@8~SuH^8HB81H]HD$H\$JHD$H\$[HH9 ̋9 u,H9Ku$HHH9KuHH@H9Ku HHH9K1I;fUHHHHH9KuuHPH9SukP 9S ucHD$(H\$0HHftHHT$0HZHT$(HBHJt(HT$(HB(Ht$0H9F(t1HZ0HN01H]HD$H\$HD$H\$II;fUHHxH$H$=|t1HH H h=!tH _2IIKHLH$=:t1HPHH%=tHI ISH H$HH$H$H@0H$H\$0HhHtuH$H9$u@H$Ht$0HHHH@r1/L|AIH9Ku6H9Ku.H 9K u&HH(H9K(uHH0H9K0u HH8H9K81ɉ1HH9 uH9Ku HHH9K1I;fv$UHHHhxHHH]1I;f1UHH8HHHrHzL3HL9HD$HH\$PLD$Ht$ H {HL$(HFHzHT$HH2HHvHL$(H9HHLH9tHD$0HKHD$0HL$(HT$HH\$PHt$ LD$HIHLʀxt x u0 L9rYIH)H?I!J4 E1H8]B IL9HL@Hx=itH@{IIKHH8]HD$H\$֬HD$H\$Ld$M;foUHHH$H$xtHxtH$1HH$LBLJN HM9s5LL$pLHH5LAzLL$pIIH$H$LD$pLT$hH$LHT$hH$HVHT$pHV=Ku H$HVH$I ICHHĠ]HH9~KDArHT$HHH)H?H!HHH)HD$(HDHD$xH\$X11L@I)Ѐx LD$PHH$LJLRNL"M9s;LT$pLLHH5LyLT$pIIIH$H$L$LL$pL\$hKfHT$hH$HVHT$pHV=u H$H&H$IIKHH$H\$PbfLSH$H H$HQHqH$H7HH9s$Ht$pHH50xHt$pH$HHT$pH\$hH$HH$HHT$hH$HVHT$pHV=:u H$HFH$I ICHHĠ]HLDH9~4DALAHT$`D; HD$xHT$`IH\$XLD$HLH$H$H$HD$H\$HL$H|$ )HD$H\$HL$H|$ PI;fUHHhH$H$xtHxtHD$x11HHT$XLBLJM HM9s5LL$@LHH5LvLL$@IIH$H$LD$@LT$8HD$`LHT$8Ht$XHVHT$@HV=uHL$`HHL$`I ICHHh]HH9~CDAHHt$0HHH HD$xH$Ht$0HH$HPH)x HT$(LLD$HMHMPNM M9sHH9s$Ht$@HH53tHt$@H$HHT$@H\$8HD$`HH$H;HT$8Ht$PHVHT$@HV=uHL$`H̿HL$`I ICHHh]HD$H\$HL$#HD$H\$HL$I;fv8UHHtHfHH]HD$\$败HD$\$I;fUHHPHD$`H\$hHP(x t]HH H~GHq HDDKHL$@Ht$(HHHbrHL$@H\$hHt$(HHD$`D DHt$8HT$HHL$0x t2Hv1'HiHL$0HT$HH\$hHt$8HD$`1@LFL9D'} H[fM>D(Aw H%HIH)LNM9LI)IMII?M!MwM`B 4Ht$@LLHHhHD$`HL$0HT$HH\$hHt$@H|$8LFL9D'LFL9D HIETHILIHr IpIكLFH9wIpL F H9ELLA D0ILM~ LNL9wgLFL9vYD+LFL9vFDUDHDL$'@H)HHHH?I!IH#T$'Ht$`VHP]ۿֿѿ̿ǿ¿f軿HD$H\$苢HD$H\$I;fUHH8LD$h@tH1҄tHHD$HT$'LP(xfux tuLXLX IIDD`HL$Xt$dL\$(LL$pLD$hH\$0HZLHnHL$XT$'H\$0t$dLD$hLL$pH|$(IHD$HDx t6LX Mu[HuVHL$&@HXUL$&HT$HJH8]Àxt%x uxtLXu x ux tIE1H%Hu IDJHI H uIHvIB\ILLHr"I݃I9FLBM9w.I9 LoF<M9F|CD0II@M~ LM)M9Lx Hu.MEL9CDbMEL9CD0HuH9 D3DD$EAEM9T$EGI9IB M9)DD$GT$FLLLH5fdT$FHt$PH$DD$GL$L$Ld$`IIIHD$xH$H$HLYLi=tHM;ISL9xtHXI9}x tL)-Hh]bf[VQLGHD$H\$HL$H|$ Ht$(LD$0LL$8LT$@HD$H\$HL$H|$ Ht$(LD$0LL$8LT$@ I;fUHHpH$H$x tH$HP 1x t-HL$XHHH$HL$XH$HP(x tHD$`11H@]HD$H\$HL$H|$ ӇHD$H\$HL$H|$ I;fUHHPL$H$H|$xHL$pH\$hHD$`L$fHD$@H\$pHL$xH$H$L$SHD$`H@HL$@HHQHyHHHD$hHD$8H\$0HL$HHD$@0HD$8H\$0HL$HHP]HD$H\$HL$H|$ Ht$(LD$0LL$8賆HD$H\$HL$H|$ Ht$(LD$0LL$8I;fUHH@Ht$pH|$hHL$`H\$XHD$PHD$0H\$`HL$hH|$pdHD$PH@HL$0HHQHyHHHD$XHD$(H\$ HL$8HD$08HD$(H\$ HL$8H@]HD$H\$HL$H|$ Ht$(ŅHD$H\$HL$H|$ Ht$('I;fv5UHH HD$0H\$8CHʃHu H;tkH ]HD$H\$HL$H|$ LHD$H\$HL$H|$ Ld$M;fkUHHĀH$H$H$HHPL@ILL9shH|$XHL$xH\$pLLHѿH51RH$HJ=tH2IIsHHL$xH|$XIIHH\$pL@CD? r H vHHHfHHHHH$HQHqH<LH9sBHt$PH\$@HD$`LHH5HHHQHt$PIHHHD$`H\$@HT$PH|$HLD$hI0HHHxH\$HH$HZHL$PHJ=uHD$hLHD$hIMCHHÐH9s=H5f[QH$HJ=tH 軜IIKHHZD?H]HXHSHHLH9s/H\$PLHӿH5wPIHH$H\$PAHPHH="ftH6MIKLH]HD$H\$HL$H|$ 荂HD$H\$HL$H|$ TLd$M;fUHHH$$ƀHHHPLBLL9s:HT$XLLÿH5@OHT$XIIH$$fA%!L@HH=+tHAM ISLwHPHH=˪tHMISLHHHXHHH9sDHпH50KH$HJ=}tH 蓖IIKHHHHHXD)ƀHĈ]HH}H 6Rq HD$\$|HD$\$TI;fv.UHHttvuH@f{H]HD$\$L$Z|HD$\$L$I;fvSUHH8HD$HPLT$7HLH@1vL^ADT$7LT$HARLH8]HD$H\$L${HD$H\$L$I;fUHH0cDU%OU9H@`XtGbtcH@x=H@ϾbLAH@ϾXLXAo`dt/oH@L1AϹlH@ϾdLA Cqtuvuxt 0H@11IL AH@@H@]HD$H\$HL$|$ fvHD$H\$HL$|$ Ld$M;fWUHHH$L$H$$qqfXt@dtqHP@H$HD$@HHH$f%H@HIL A1H1sv`H$H$xPHPLPO L L9sQL$L$L$LLHLH5ZBL$L$L$IHIL$L$HT$xKLLPH$H$HXHL$xHH=̡u L$fH֍L$MISLH$HtjHH9sQLH5BH$HJ=htL{IMCHH$IH$HXBD{1 HSH9s-LHӿH51AIHH$H$A(nilAD)HPHH=٠tHMIKLHĘ]HPLPILL9saLLHѿH5/AH$HJ=|tL蒌IMSHH$$IIHH$LPCD[1xtJHHHdq HEHDH$E1H$2H@HIL A1H1 H@HĘ]H@Lӹ 1LAHT$`HH$H$H$$fDH9HT$`DH~LXL`IL(M9suLT$pLLLٿH5;?H$HJ=tLIMSHH$HT$`$LT$pIIH$H$L`CD, HHHXHHH9sDHпH5'?H$HJ=ttH 芊IIKHHHHHXD]@HL$hHH$H$L$I9HL$h H~LHLPMZL M9sZL$H\$pLLLɿH5i>H$L$L$IIIH$HL$hH\$pfC, LXLH=tH0薉M#IsL HHHXHHH9sLHпH5eD=H$HJ=(tH ;IIKHHHHHXD}DHD$H\$HL$H|$ t$(LD$0LL$8soHD$H\$HL$H|$ t$(LD$0LL$8LLd$M;fUHHH$H$H$$HLGIvLGIv HH$HT$`HL$xHHHa$d#XXbOdCYp7o0@p>H$JLHHf*vH$zPHD$@HJHZHLH9sCLH5LBHJ=זtH IIKHHĐ]H$H$HD$XLBHDJPLD$GDL$OHBHBPDzXHJLBMHLL9s@LD$hLL˿H5d@6H$LD$hIIHD$XH$fC%!LJHJ=tLMMCL$wIMAL9s9LLÿH5d6H$$IIHD$XH$C|&LLP-H$IIHD$XH$LBHJ=ftL {MMKLMHL9sDA;HxPt1HHHP H$HH50/H>DA@qXtqtstvt fxHHHP HH$qH=2LH$D$#HHHP H$D>D~D~H=:H$H$H$H$$H$H$H$HRH$HH$|$$D$#Hİ]ڬD$#Hİ]D$#¬D$#Hİ]IL!H4vLTDL9t4IqMuH1HCH$HHH$\$$ HLHtH$HHvD$#HHHP H$D>D~D~H=8H$H$H$ H$($0Ht$@HD$(¨H$HIH$Hً|$$HH$U谫D$#Hİ]D$#HHHP H$8D>D~D~H=H$8H$@H$HH$P$XHt$pHD$X"H$HIH$Hً|$$HH$D$#Hİ]fH+H$D$#HHHP H$`D>D~D~H=eH$`H$hH$pH$x$H$H$iH$H@H$H$HIH$HHH$FD$#Hİ]MI!INTI9t4MAMuHT+H H$\$$HH$JLMI!INTL9t7MAMuH*HH$\$$HH${JLqHtt v,wD$#eD$#Hİ]HH!HLD1L9t"HwMuH3*.HH$H\1HD$\$_HD$\$;I;fv/UHH0HZHJz HBH5jAH0]^I;fv/UHH0HZHJz HBH5AQH0]f^I;fv/UHH0HZHJz HBH5AH0]&^I;fv/UHH0HZHJz HBH5AH0]]Ld$M;fUHHĀH$H$HX=t#HP LP(LX0LwI ISMSIsHH H@8Dx(HH$Tjp$H$H$HuS?H5^S$HH9RHQHHIHH`HT$8HL$xH\$pHHHѿHH$HB=tHJ vIIKHZ HЋ$u H$HL$xHT$8H\$p$H]ÉE1HYHH9H1HΆH9lHHIHH9KIHCH9HH݉H9 Z D[SHH91ɐ[3HH9H1ɐ;H/H9HcH H9kHHH9HHHHH9@HH9H1`H<H9YZZ»@6.HʆH9H4 HH9~1 HAH9ub1HFtH9uHHHQLQHщLALא{HoH9uDvukH$HT$@H$HT$HLL$@MtEQMIʀEaA MEE1E11H$LHL׋$E1CH]H\$PHL$XHT$PHtDBMIȀDRA MEE111HLǾpSH]H\$`HL$hHT$`Ht H K11҄H5KH9u\H賮H$H@HHHHHH]ÃTtvuH@H H]HH^H N.HD$H\$HL$|$ XHD$H\$HL$|$ 8L$M;f-UHHH$H$H$$L$H$H$`H$X@MHH`HHHH$HB=[tHJ pqIIKHZ HЋ$vu1H$H$`H$X$H$L$ H]H@=t$HP LH(LP0VqII[MKIKMS H@ Hx8HX(HH0HHH$ML E@A$HHHXHSLH9s-H$LHӿH5g$IHH$H$H$L$PIHgwH$H$HVH$HV=u H$PHoH$PI ICHvHXHSHHLH9s5H$LHӿH5$IHH$H$AHPHH=FtH[oMIKLeDsHw&fDHuHBHH2DHuH!HuHcfHHHӹ@H w&HuHBHu6H ?'H u DH uH H HH1ɉ  Z f @m YZZ˻@K I1 HHH[H/H$zPfDH$ rHFH$XH$XH$`&HHHH$HQHqH<LH9sTH$H$ H$LHH56~HHH!H$IHHH$ H$L$PH$H$I0HHHftH$H$HZH$HJ=u H$PLDlH$PIMCHLC@L9s'LÿH5l} H$IH$(nilD)LBHJ=tH /lIIKHDb HZLCHJHL9s/H$LÿH5|j H$IH$LBHJ=tH kIIKH L$IHϋ$HHH$[ xP< r H?DHHHHHHHfH$HQHqH<3LH9sTH$H$H$0LHH5{HHHoH$IHHH$0H$H$H$L$PJHHHqH$H$HZH$HJ=]~uL$A H$P%L[jH$PIMCL$A Hs L$`$As L$`M L$`MMtqHH9sHH5zsH$HJ=}tH2iIIsHL$L$`HZD{LH$XLDLCL9s)LÿH5zfH$IH$(nilD)LBHJ=-}tH CiIIKHH]HPLHMQLL9sbL$LLHѿH5yy$H$L$L$IHIH$H$`H$XC map[LPHP=|ftHMhM ISMLHHHXH$1-t1CHHHuHH$H$`H$X$H$L$QHHH芔HσHwHtHtHt HH$HJLJILL9stH$H$`H$XLL˿H5x H$HJ=X{tL ngIMKHH$IIH$XH$`LJCD&L$IHً$HHАH]H$H$`H$X$H$qXtqtBst x4Ht r L ?HHH;ILL$xH$IIXHHHHH$@HtNH$rHH$XH$`藗H$HHH"wfH$H1 H$H$XH95puH$`HHYHI H$`N|H H$H$`H$H$X$H$L$xP.DHt r L N>HHHIIHHH$HQHqH<LH9sVH$H$H$LHH5 vHHHf{H$IHHH$H$H$H$L$PJHHHkH$H$HZH$HJ=ixu H$PLudH$PIMCHL$IuyL$`I9usLCfL9s'LÿH5,uH$IH$(nilD)LBHJ=wtH cIIKHH]L$`HH9rI\H5t5H$HJ=wfuL$ILcIMCL$IHL$`HZD{ LHLPILM9s~LLLɿH5/tH$HJ=vtL cIMCHH$`H$$H$L$IIH$H$XLPCD[E1cHHI&xP> r Hj;HHHHHHHH$HQHqH<3LH9sUH$H$(H$LHH5*sHHHאH$IHHH$(H$H$H$L$PI0HHHiH$H$HVH$HV=uu L$PHaL$PMISLHH$`H$X$H$L$HPLHILL9sqLLHѿH51rH$HJ=ttH2aIIsHH$`$H$L$IIHH$XLHCD{1fH]H$XH$`H$sL$IHϋ$HHH$KH$HH$`H$XH$H$HHHH$H9HH$zPtzHJHZLCHL9s7H$LÿH5pYH$H$IH$f, LBHJ=stH2@_IIsHgHJHZHHH9s@H5opH$HJ=7stH2M_IIsHH$HZD H$zOu zPhH$ rH7H$XH$XH$`脗H$HH`HHH$hHD2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDrXDqXH$pH$hH"L$IHMHNIL9sEL$H$H$8LH5)oHH$L$IH$8L$H$PH$LH#eH$H$HZH$HJ=qu H$PL]H$PIMCHHH9s=H5nfH$HJ=HqtH2[]IIsHHZD:H$H$H$HJHZHHH9s8H5 nH$HJ=ptH \IIKHHZD}HHHL@;L$IHϋ$HHH$sL$IH$H$`H$H$X$H$L$L$HuLQPHHH菍H$`H$H$X$H$L$L$IH$M9@MLPLXIL fM9LLLѿH5lfH$HJ=hotH2{[IIsHH$`H$$H$L$L$IIH$H$XLXCD# fKHHHXHÐHH9sDHпH5ksH$HJ=ntH ZIIKHHHHHXD]LH$HH$XL$IHϋ$HHH$RH$HL$IH$L$`H$uMQ;H$XLH$胋H$L$L$`IH$I9H9HJHZLSLL9sMH$LLӿH5j;H$L$L$`IIH$H$fA, LRHJ=WmtH2LjYI IsILHJHZHÐHH9s8H58j H$HJ=mtH YIIKHHZD}BH$@H$H$HL$xHHH$H$H$$IIH$H$@H]H$H$HHH$H9H$H$XH$`HH$ÇH$H w*Hu HfDHuH uBuH uhH uHZH uHIHHHHf8H@H ׭HH$HHHHy4HXD:H$H$H$$L$@;H$`H0H$HH$H9H$H$`H$hD0D2DpDrDp Dr H/H$zPLJLRMZL"M9sSL$LLLɿH5g. H$L$IIIH$`H$H$fC, LZLJ=GjtL f[VM#MKL"LJLRILM9sfLLLɿH5$g@ H$HJ=itL UIMKHH$IIH$`H$LRCD H$H$hH$pH$xL$IL$HЋ$eH$HHHXHÐHH9HпH5Vf H$HJ=itL 4UIMKHHH$H$zPtZHJHZHÐHH9s8H5eg H$HJ=htH TIIKHHZD}HJHZHÐHH9s8H5e H$HJ=WhtH mTIIKHHZD]H4 H@H _HH$HHHHH4H@H HH$HHHHǴHD$H\$HL$H|$ t$(LD$0@;:HD$H\$HL$H|$ t$(LD$0yUHHHD$ H9FUHHH48H|8L fL9uLAu LƿHt7H4$H|$H4$HtDNMIɀv@ ME E11E11AIqfHwL@LH=%StL;?MMCLL$L$H$Ht H11LL9HzH$HQHqH<LH9sOH\$HH$H$LHH5OHHHאH$IHHH$H\$HH$H$L$I0HHHEH$H$HXH$HH= Ru L$fH>L$MISLHÐH9sALH5NgH$HJ=QtH2=IIsHIHHXBD=H\$hH$vH$HL$PH$H$HHHXHHH9sDHпH5UNH$HJ=QtH 3=IIKHHHHHXD)dHH()H @IYHS IIMH9s=H$LHӿ H5MBL$IHH$H$I%!(NOVERMfADB)IQII=_PtIuDWDT$=L[L\$HE1E1[H$H\$HL$H|$Ht$ LD$(-EWdL4%HD$0HĈ]HH)H$DDT$?D_D\$DT$=L\$HLl$hM|$L9}Ld$xA\fD8I4H9UI9GL|$pLI)I?I!LHH!&H$H$H$H$H$L$DL$>DT$=L\$HLd$xLl$hL|$pII\$H?H=IH[HL97L)HL)HHHH?I!LH$HT$H\$H|$Ht$ LD$((EWdL4%HD$0H|HL$xHH@HĈ]HHĈ]HD$xHĈ]HHĈ]HHĈ]&&&&&HD$H\$HL$H|$ Ht$(LD$0f[ HD$H\$HL$H|$ Ht$(LD$0I;fUHH@H\$XHt$p11DiʓDC HI9LAAEEEMIIEEMME1E1EiٓF$G IL9~ L9wlHt$pH|$hHL$`H\$XHD$8DT$T$DD9uKH9-DL$ HHH@#u,HD$8HL$`T$H\$XHt$pH|$hDL$ DT$I1H@]ID$LH9EiɓDEIM)F$EE)D9IL)IL)HHH?IL!HI9t1fNLd$0DL$$L\$(HHH"HL$`T$H\$XHt$pLD$8DL$$DT$L\$(Ld$0Ll$hE II8LH@]HH@]D;$6$HD$H\$HL$H|$ Ht$(LD$0LL$8HD$H\$HL$H|$ Ht$(LD$0LL$8I;fv?UHHHkC1$/=3tH L+ IIKH9+H]vI;fvUHHH+;H]:I;fUHH0HD$@HHHKHT$@HZH9rcHrH9t.H\$HD$(HL$ HH&HD$(HL$ HT$@H\$HZHJ=3tHJIIKHBH0]"HD$H\$uHD$H\$FI;fvwUHHHHtH9tK=2tHIIKHH|HHH+HH9~H]H/Hl H.H HD$H\$HD$H\$eI;fUHHHHHtDH9t =1tHIISHHD$XHHHPL@LD$@Dw?MHL9s/\$`HL˿H5.7LD$@IHHD$X\$`A\HЉL/LD$@IHHD$XLHHHM)=M1tHpbIIsHPL11HH]H-Hl ײHD$\$HD$\$I;fUHHHHL$hH\$`HD$X11HH9~4<HHt$ HfHD$XHL$hHt$ HH\$`H|H9HHt$0H-HHHD$@HL$0HT$`Ht$X1H4IXHLHyH9H\$(Ht >s1HT$Ht$8HHZHD$@HL$0HT$Ht$8HH\$(H9H9svIHH|H)IHH?H!H>=/bH<I3I{MH~&HHT8=y/tH8I3ISH48HHH]HD$H\$HL$HD$H\$HL$GI;fUHH@HD$PHL$`@HuHD$PH\$X11HtHL$`H|$h1W H$H\$L$@EWdL4%HD$H@]H)HHH?H!Ht$8HHT$0HHL$`H\$ HD$8HT$0(HtH|$hHHt$ H9s HD$0H@]fHHH9~-4HqHT$(wdHD$PHT$(HH\$XHBH@]HD$H\$HL$H|$ D{HD$H\$HL$H|$ I;fUHHPHD$`HL$p@MHttH$H|$xHL$pH\$hHD$`M}LL@H\$hHSI9LOLD$0H)LHHD$HHL$0HQHT$81Ht$hH|$`f?L6HP]11HHP]I)MII?L!MD5IZHT$8LLH9H\$(Ht$ H|$@HHHL$pH|$xqHH$H4LD$ I9LL$(HL$0@I9MIL\$HKt H|$xH4=V,u LLl$@O$ L[Ll$@M+McN,I9f\HD$HHL$0H\$(Ht$ H|$@DH9s4HHHt=+tH4fI;IsH<HHP]f{vqHD$H\$HL$H|$ Ht$(LD$0-HD$H\$HL$H|$ Ht$(LD$0Ld$M;f#UHHH$H$HtRHt9Ht(HKHHI1HH9HI1L1*HHXHHĠ]11HĠ]LMAHH9~MM@II)M9~PH$H$H$H$D|$hD|$xHD$hHHL$hH$HzHHtLD$hL9tLD$hLD$hH$LD$xN HD$pL9s:LD$PH|$0H\$`LH5"'fH$H|$0LD$PIH\$`LL$PHL$HH$HH$LHHT$PHT$xHT$HH$H$HT$pH$H$HHt$P1_HL$@H\$8H$HH\$XHHT$8HT$xHT$@H$H$HT$pH$HHD$HHHt$PH9MLD$hLJLfMtL\$hM9tqLD$hLD$hL\$hHD$HH$LL$(LT$XH$LD$xH$JLd$pH9s$LD$@LH5%/H$LD$@IHL$@H\$8L$KH$HHT$8HT$xHT$@H$H$HT$pHT$hHtLD$h@L9tHT$hHT$hLD$hH$HT$xH|$(H:HD$pH9kHT$@H5$rHT$@H|$(KHD$pHHH\$xH9wHĠ]DHt6\q\H*$Hӝ ;H$H (H$H H#Hg H#HT HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(Ld$M;fUHHH$H$H$D|$pD$1H$HLHT$hH9HT$X4HzHHH\HH$t$LH|$hHH‰щD$HL$L9u/tH$L$qH$Ht$XH9H$Ht$XH9HH)IHH?H!L$M9MtA<9@s)LLHt$XL$HىNjD$HH$Ht9u} H`T fC(wH,HH$HL$PHHD$pDH$H|$XH9HT$pHtLD$pL9tXHT$pHT$pH$L$JHD$xH9s!LD$hHH5!H|$XLD$hHHT$hH\$`H$LH$HfHT$`H$HT$hH$H$HT$x\$H| HD$pHt$XH|$PHH$H9H)HHH?H!H$H7H$H$tHL$hH$1)HHHĘ]H$HL$hH$HT$`H94HzHHHYHH$H|$`HH‰х|LD$pMtLL$pM9tLD$pLD$pH$H$HLD$xH9s,D$DLH5wH$HD$xID$DH$BDHD$pDHD$xHHH$H9w HĘ]HtWKWHH HH DHD$H\$HL$HD$H\$HL$'Ld$M;fUHHH$11HH9~C4@st@Ar @Z1HHH HĠ]ÄtDH$H$D|$xD$HD$xDH$H$11 HĠ]HH9DEHAHD$PDD$GH9 HH)III?L!LL$xHʐMtLT$xM9tLL$xLL$xLT$xL$L$M$;L$M9sfH$HH=u H$H$IHH$LCIw %HH5\LTHHH$HD$xHt$`H|$XHVHH?HHOHH$HH(H!;H$HP=HuH$H\$xRH$I H\$xI[HD$pHHL$XHHHL$`HH HXH蔑Ht4H82fHH膷 H$H$|H$H9t HT$pHH$@{uHT$puH$H$z+Ht&HT$pHZ=EtH[II[HHT$pHt*H=tH)I;IKHHH]HH\$pH $H=~ 2HHL$HHHwHL$HHL$HHD$hH1HL$HH9}HD$PH|$7HTD2D7DrDwHþIHD$hH|=HPHt$PDH9rtHL$HH)H)HIII?L!LD$hIHVHT$PHL$HHD$hH\$pH@HH=tH8IISH8f{HD$H\$HL$H|$ Ht$(;HD$H\$HL$H|$ Ht$(fLd$M;foUHHH HPH$D$D$HxHH$H$Hu H110H|$@H\$p1H1H5mHHHHL$@H\$pHt$hH|$`H$HDHT$`H$HT$hH$H$H$H$HrDHnLBHR HHH?LLFLD$h1HPHXHH HH=( Hİ]HL$XL\$PL$K HGHT$PH$HT$XH$H$H$H$HHD$`HLD$h@L9VL$HzHMtL$M9tuL$L$L$HD$`H$H\$xH|$HH$L$IL$L9sQLL˿H5/誳H$H$H$H|$HLD$hL$IIHD$`H\$xL$CD L$Mt M9t L$H$L$M9L$DL9rLL$XLLH5DH|$HLL$XIIH\$xH$HHHL$XH1H$`H$FfDH=0u H$`H$`H24IIsHH$HX`HHhHGHL$XfDHr H$`1H$H$`H5JHH$HL$X=tHrIIsH$HBHH$DHHL$XHr H$2H$H$H5A軣HH$= tLBIMCHBL$ILKIL9s5H\$hH$XHHH5LOH$XIHH\$hHL$XLL$PH$MALIII?ALHLHH@xH$ HCH$LJMt LRLZ 4D$L"LjL$L$AAL$L$E8ExEx Ex0Ex8Lb@LjHL$L$Ld$PL$Ld$XL$L$L$H$H$H$HH$H$H\$HLLL2=Ku H$H$HJII{HHD$FHfDBH  =fu H$ H$H(DIISH$H(H H$H$HD$8H$0H$0@H$HH$PHHt$h1H\$pHL$xD$GH$hHHD$pH\$xHp]H|$pHt$xD$GH$hHHD$pH\$xHp]H\$pHL$xD$GH$hHHD$pH\$xHp]H\$pHL$xD$GH$hHHD$pH\$xHp]H\$pHL$xD$GH$hHHD$pH\$xHp]H$HHHJ(HD$pH\$xD$GH$hH HD$pH\$xHp]H4ϛH@H NHH { HL$pHD$xHL$pHHHp]HuHfDHHHHI HH 1=_u H$H$H0@[IISH$H0HH H=uH$H$H$I H$ISHHHP D|$pD$GH$hHH\$xHD$pHp]HHHPHD$`HH$H$PHt$hH9HD$`H H$H/H H=>uH$H$EH$I H$ISH$HHHHPHҙH H=uH$HH$*H$HI H$IS D=tHIHǁHpHD$pH\$xHp]HD$HD$I;fvUHHHZHBH]I;fvUHHHBHRH H]I;fUHHXHJHL$HHZH\$ HHD$H\$(D|$@HD$PHD$H\$@HD$HHL$@H\$PH@@Ht$HEHt$(HEސHuHD$0H\$8HD$ H\$0a#HHL$@HD$HH\$PHD$H\$@f;HX]HD$HD$!I;f?UHH8HJHL$ HHRHT$0HHt$17HD$H\$(H HCHIH\$(HHD$HHL$ HT$0Ht$H9|D=ZtHLIHǁ:uHHH\$18H8]HD$HT$(H HBHIHT$(HHD$HHL$ H\$H9|D=tHHIISHǁDHǁuL$HM;fUHH0H$@H$HHDŽ$D$ HHHI H$D9DyH$HH$H$H$H$H$H\$81ɿHA菃H5H$@HHu 11H@HtH\$pHD$@H :H=;{t11vH >H$HDŽ$HL$@H$HL$pH$HU$H$(XHH~v !H$@HHHJ(fHHH$@HfH HT$xHD$HH%!HL$HH$HL$xH$ H$(HH$D:DzH$HH$H$H$H$H$H\$01ɿHADHcH$@HHH HD$hH$H$Hu HL$HHD$x~H$H H=t HL$HHD$xSH 4H$HDŽ$HL$hH$H$H$H"H$wVH t H$@H(H H$HL$`D$H$ u"H$@HHHt$P17HL$`Ht H$rHT$hHtH$H$VH$LH0]H$H$ HDŽ$(H$HH$H0]H0]Ã=u H$@H$@H(D[I3Hǂ(H$H$ HDŽ$(H$HH$[H0]HD$XH$H HBHIH$HHD$XHH$@Ht$PH9|D$H(H$HL$`HtH$H HHD$H\$HD$H\$I;fuUHHxHP(L@0LH8fHt 11 H$H$HrHHu 11HL$PH\$HHD$hHB@HHtHT$HHHt$hHL$PHH1HO zHT$HHHL$PH9rHt$h6H\$XHD$pHD$hHӿH5#HHHD$pH\$XLBIJ\=WtN lIMKJ11HHHIIHHHHD$@H|$`1HLLIHT$@HAEHELD$`LEHLHx]HD$wHD$mL$M;fUHH$$H$H$H1H4H$H$pD9DyDy H$HSH$D:DzDz Dz0H@@uDzHH$H$H$H.p)fHD$pH$H$1H1E1HIHHHD$pHL$hHCH\$@Ht$HH|$`L$HT$xLILL$hMIL$Od Ld$PO L$D$Et1pL $Ld$D$yEWdL4%H|$HT$xH\$@Ht$HH|$`L$L$LT$hL$Ld$PD$HD$pt>Hy謍H@'H oHHL$HH\$@Hm HHD$xLLH #CHuCH\$PHHHHH?H$HH @HHHT$PHtrH\$@HHL$HH9rHD$xHD$xH5薐HT$PLCIJT=u L$JL$M ISN HL$HH\$@HD$xHT$`H$HT$PH9$@u H$HH$f[HHHD$XH$H\$pHHym8t!HL$HH\$@HT$`H$HD$xFHGmH\$pH$H|$XPH\$@HHL$HH9rHD$xHD$xH5c[HSHLD$PLD=fu L$LL$M MCL HT$`H$1L<Nd N IBIIL9}sII)IIHLLdL9vgINl N< Ll=tL$N, H XM;IKLL$MCMkMIqHHLHĠ]Ð{vqD$\$ HL$H|$Ht$ 4D$\$ HL$H|$Ht$ I;fCUHH@HD$PH\$X@HHH(HDD$,HoLHH\$PHL$XAHH\$8HD$0H+j H9t(HHH` 5Hj H\$8HD$0t1H9t'HHHZ fH\$8HD$01Ʉu*L$,It 11H@]HHH@]H@]Hi H_ H@]HHH@]HD$H\$褾HD$H\$Ld$M;fUHHH$HtHu8.tHuf8..uHH511H$H$Ht~Ht$`HT$@H@;H$HH=HuH$Ht$`RH$IHt$`IsHHT$@HPHp1H %i H1HĘ]H 覿H}FHn萫Hu HD$P1H "Y 1IH\$81H$H$&HtzHD$HH\$hHKH$HH=XuH$Ht$hbH$IHt$hIsHHT$HHPHp1H 5h H1HĘ]H$H$11HĘ]H$HHL$PHH\$8H9tHL$PH$HPH0HҿHDHT$xH,HDHt$pH$H$H$H$HD$pHAHD$XH\$0H_H\$0Ht HD$X8/HD$X1H bHu 80H3΅H$HH=u H$H$IHHŀH5ƀHP=t I3HpH\$0H f HHD$XHĘ]HhK`HD$XH\$011HĘ]H(H$HH=5u H$$H$IHH/H50HP=tI3Hp1H f H1HĘ]HD$H\$iHD$H\$I;fv UH1]*I;f UHH(Ht HtH(]H8HգHH:HD$8H>H:HRH#HT$8H8H@HH,HuT HfHtTHH]T HD11HեHH1=[6VHH,Ghf9H HD$HD$I;fv[UHHHHH9KuAHD$(H\$0HHt(HT$(HBHt$0H9Ft1HZHNi1H]HD$H\$pHD$H\$I;fv[UHHHHH9KuAHD$(H\$0HHt(HT$(HBHt$0H9Ft1HZHN1H]HD$H\$HD$H\$I;fv`UHHHHtMHHL$@HHHL$8HHHPHRHHL$8H=II1H\$@HHH]f;#HD$pHD$UHHt HXH@]#I;fvRUHHHH9u8HD$(H\$0HpHKHHtHL$(HIHT$0H9J1ɉH]HD$H\$ٶHD$H\$I;fv^UHHHHH9KuDHS@H9Pu6HD$(H\$0HHtHT$0HZHT$(HBHJ1H]HD$H\$MHD$H\$I;fvAUHHHH9u)HPfDH9St1HpHKHH1H]HD$H\$HD$H\$L$M;f UHHpfDּ$hD$GsH?sH HH HHiʚ;%?HcHH=H ƳHɹHEH\$xH HEH$f{GH$H\$PD$0DQH H$0H$8HMH_ H \ H$0AM-HxH@[HdHH$H$HR H$@H$PH$XH$HHH$@H% 1 HtQD$tH[H$H$HoH0^ H %?H$AM6,1H$Ht,H ` H$H$H$H$hD$GH}H$`H$1HqH$HrU H$HH] H$H,Hp]D$ tHH$ H$(HxH9] H BH$ AM@;+Hp]H$HH$HH$`H$H9SH$H$HH$HAH$HJ фuH$HI(H$H$H\$XHH1HDUH NvHHHHH蚓HH$H$H$D9DyH$H\$XNH H$H$H$HtHyHH$H$H$HH[ H -H$AM)HL$hH\$`H$HT$PH$H$H$HT$XH$H$H$H$HD;H\$HH$HT$xH9u%HH$4H$H\$HH$H|$`Ht$hAbfHH$H$H$D9DyH$H\$XdMH ]H$H$H$DHtHAHH$H$H$HHDZ H MHH$AMJ(H$H\$H11HHT$PHPH=u H$HH@'H$IIKH$HX@kHH9sH5oj}HSHHD=u H$ H4H$LG(I3ICMCH5H4H_0HO8HG(HHCy@=XuH$HH$H$&H$HEIISH$HHtQHX HYP=t HYXHqhHyxEII[IsI{HQXHX HY`HQhHYpHQx?HAP=tHYXHqhHyxIIsI{DyXDyhHAxHHH$H$H$`D9DyH$H\$XJH H$`H$hH$HtHAHH$pH$H$xHHW H \JH$`AM%H$H\$H|H$@D9DyH$H\$X'JH H$@H$HH$HHyIH 2H$PH$XHKH W H IH$@AM%H$HH蒡H$`DHwvH H=u H$`H$`I H$HHHjvH H=yuH$H$!D{H$I H$ISHHHL$HHHHPnD@D$H$H\$XDHH H$H$HHU H q>H$AM#}H$HL$F3sHHiʚ;HL$pD$0GH LH$0H$8HeH&U H Ƒ8H$0AM,#H H$ H L H$(HHT H$ H $HD$pH zH$H L H$HHT H$HD#H$`NH 'H$H XL H$HyH:T H$Hm#L$FtD$GH$hHHp]#Hp]赩I;fvUHHHBHZHRH H]֨I;fUHH0fD|$(H\$HHD$@D$HJHHT$HL$ HL$HL$(D$H*腌HD$@H\$H薻D$HT$(H H0]Ð;H0]HD$H\$&HD$H\$WI;fvUHHHBHH]קI;fvUHHHJHtHAH]薧I;fvvUHHJH9scHRHHtH<H9sHHH LDH =?tHLLLMIKIsMKLDH<Ht]HD$H\$HD$H\$f_vFfsmupRNwCntxgcaymiosmuX0X1InlkOpFdfdg0idsppcfninGoDoIsPCtxiolohirot1t2OrlrfpbpvpvutsgpmpZ0Z1Z2Z3Z4Z5Z6Z7Z8Z9K0K1K2K3K4K5K6K7rgwgrtrdwtwdkptittpdHiLobufSysfmtmsgerrpadwidargTypStrInsKeyLenOutptrtapvecsrcs64IntkeysysOldNewErrpfdtypDirEnvPidpidtlsmOSarroutctxRunvalAllGetPutpinAddrawSeqSecCurMaxDevInoUidGidAbsgetDaySubUTCsecextlocoffTagCapSetretAndendbssbadcassetpcslennowrunseqZ10Z11Z12Z13Z14Z15Z16Z17Z18Z19Z20Z21Z22Z23Z24Z25Z26Z27Z28Z29Z30Z31sigaddsubmaxminpopobjcapputgcwposPinhasmidrfdwfdDupFunR16R32LoadSwapnbufbufpnamedatahashInfoModeNameSizeTypeReadSeekStatfreeFlagfmtCfmtQfmtSinitpluszeroprecHashiterBitsElemKindOutstyp_flagsyncnextprevSeedfeedreadseedIntnPermelemctrltextsizemodefileSyncseekrefsrootinfo FilefileKillWaitkillwaitonceLockcurgoldpncgoparkselfheaplinkheadPathArgsargvpackvalstailnodeswapdeadfindsemaDonelockdoneAddrDataNanoUnixNsecUsecBaseRdevAtimMtimCtimCttyPgidLinetimewhenzoneDateHourYearZonemononsecwallStopkindbytebaseNextFuncBoolCallGrowRecvSendSeq2Uintcallgrowrecvsendiregfregftyprcvrdumpabid Type*intargspcsppclnflagpad1pad2nfnsftabebssptabctxtgoidgopclessmaintakerandstoplastregsbitpaddrdifflistmasktinyscavpushnodenobjringslotget1get2fulloldmrunqrankFilecodelinewakebitsrrunwrunuserrseqwseqdepsfdmuInitMoffDumpIntsPtrsusedUsedseenStoreembedIsDirClosefilesErrorWidthwritelimitWritefmtBsfmtBxfmtQcfmtSxminussharpspaceplusVvalueSize_TFlagKind_EqualBytesInterAlignFieldNumInInt63Int31slotscloseChdirChmodChownchmodpreadstatesigMuvalidnextplocksdyingincgotracetimerStdinStartcheckentryemptyClearRangelocalRLockValueUtimeStimeIxrssIdrssIsrssNswapNvcswNlinkstackPidFDIndexHoursRoundsplitisDSTindexisstdisutcAfterClockIsDSTLocalMonthResetio/fsFloatIsNilSlicerunesptrTostepsiregsfregsspill*int8*uint*boolretpcEntrymagicminLCnfuncvaddrcutabpctabminpcmaxpcetextedatagcbsstypesdatap_Func_funcstarttotalhchanresetfirstsendxrecvxrecvqsendqschedparamsigpcxRegsbytepequalflushallocclearinUsestorecacheunpinsweptstampdrainstealchainwbuf1wbuf2spanqstatsgFreewbBufvalPCUnpinunionmergetimersleepfdseqreadyStackrsemawsemaSysfdcsemaFstatFsyncPreadevictgroupPrintcloneClonequietdedupZKStringoffsetReadAtlookup`IUnwrapfmtSbxsharpVintbufFormatAlign_GCDataCanSeqFieldsMethodNumOutKHUint64Int31nInt63nUint32int31nrecentbisectL L L HHinRootpwritecloseddecrefincrefparentSignalhandlestatusrusageExitedexitedsignalPollFDresultUnlockdivmodprocidvdsoSPvdsoPCXK YK ZK[K@[KaKjKkKkKprefixStderrStdoutCancelOutput aLaLbL@cLcLunpacksharedinitedinitMuDeleteexpandnoCopyvictimdoSlowHHH H@H`HHHHHH@H`HH@H`HH HGroupsSetLenHostIDMaxrssMinfltMajfltMsgsndMsgrcvNivcswBlocksOffsetChrootPtraceSetsidNocttyactiveformatextendBeforeIsZeroMinuteSecondabsSecaddSeclocabssetLocII@Ierrors HILookupmustBeCanIntCanSetSetCapSetIntSlice3commonstkOffappendCommonaddArgargLenmethodtJ`wJwJxJ@HHHmHmHmHmH*error*uint8*int16*int32*int64*[]intunsafegoexitopaquepcfilefuncIDnfilesptrbitgcdataetypesrodatagofunctimerswaiteradjustsiftUpunlockverifyastateisChanisFakeperiodmodifytrace1qcountbubbleticket_panic_defersecretlabelsinsertremovenoscannpagesnelemsdivMulinListisFreelayoutrefillallocNputObjdeinitptrBuflfnodemcachepcachepalloccycleslenPosvarintpinnersignedcountsinHeapgTotalgNonGoensurescalarreasonfileIDparkednextPCframes`XHXH@YHYHZHZH [H`[H[H`\H\H ]H@]H`]H]H]H^H^H^H@_H_H_H `H`H`HaHaHaH bHbHbH cHcH@dHrwlockiovecsisFileAcceptFchdirFchmodFchownPwriteWritev JEnable`*@*@HasTagMcountXcountFloats@ @`@groupsrehashdirPtrdirLenA A-@StrideenableHOpaqueA .@@.@Init64RefillReseed.A*func()ModTimeReadDirconsume*fmt.ppbadVerbdoPrintfmt0x64fmtBoolPkgPathMethodsCanSeq2ChanDirreflectseedPosreadValreadPosFloat32Float64ShufflemodTimedirinfoReaddirWriteAtWriteTolstatatreaddirwrapErrwriteToSyscallTimeoutControlacquirereleasecleanupSuccesssuccessReleasepidWaitNetworkTryLockruntimemorebufgsignalsigmaskblockedisextraalllinklockedgchacha8os/execProcessEnvironenvironrunningpopHeadpopTailprivateisEntrykeyHashgetSlowpinSlowRLockerRUnlocksyscallStoppedInblockOublockX__pad0BlksizeSetpgidSetcttyMinutesSecondsAddDateCompareISOWeekWeekdayYearDaysetMonounixSecCanAddrCanUintComplexConvertIsValidMapKeysPointerSetBoolSetUintSetZeroTryRecvTrySendabiTypepointernameOfftextOfftypeOffGcSliceHasNameMapTypeaddRcvrregPtrs*[1]intsetting*string*uint16*uint32*uint64*[]uintstartPCstartSPnpcdataptrSizefuncofffiletabcovctrshasmaintypemapsrcFuncuintptrzombiesraceCtxwaitingaddHeapdequeueenqueuesortkeywaitersnextSeqpreemptlockedmstartpcracectxcgoCtxtcoroargisEmptytakeAllobjBasepushAllinSweeppushcntbalancedisposeallnodedestroyputFastdiscardscratchrunnextwritingentriesbucketscomputethreadsensuredgcStatsclosingstackIDmakeArgcontextcallers SysFileFstatatRawReadReadMsgprepareFeatureInCountIsBlankInSlicePutSlotunicodeverbosePackageChanged*[]uint8go.shape*fmt.fmtfmtFloattruncatefmtFlagserroringwrapErrsdoPrintffmtBytesprintArgGoStringPtrBytesNumField*os.File*os.filenonblockReadFromTruncatereadFromExitCodeSysUsageUserTimesysUsageuserTimemstartfnthrowingspinningfreeWaitncgocallidleNodewaitlockfreelinklibcallgdlogPerMwatchCtxfirstErrpushHeadheadTailoverflowindirectchildrenvalEqualinitSlowTryRLockCoreDumpSignaledNsignalsCgroupFDcacheEndLocationUnixNanoappendTo*fs.FileCanFloatMapIndexMapRangeSetBytesSetFloatassignTosetRunestypeSlowuncommonFuncTypePointersUncommon*[]int32*[]int64register*uintptr*float32*float64*[]errorslotsPtrentryOffcuOffsetfuncInfoFileLineentryoffbaseaddrbytedatapcHeadernoptrbssecovctrsepclntabfuncNametextAddrraceaddrinitHeapsiftDownwakeTimesendLockmaybeAddneedsAdddataqsizelemsizeelemtypeisSelectwaitlinkwaittailstktopspcoroexittrackingwritebufsigcode0sigcode1guintptrcontainssubtractlessThansweepgenneedzerospecialsheapBitsobjIndexflushGennextFreescavengerefStoremaySweepspanBasetryDraincleanupsrunqheadrunqtailsudogbufstatsSeqwaitTimedisabledlastTimevarintAtentryGentargetpcwaitsemalockAddrFunctionreleasedinStacksmSpanSysotherSysheapGoalIdleTimecpuStatsheapScangRunninggWaitinggCreatedsysStatscpuStatsconcreteasserteddispatchcallingGcapacityfileLinerwunlock*poll.FDIsStreamRawWriteShutdownWriteMsgeofErrorreadLockpollablewaitReadDeadlinelockSlowOutCountOutSliceclearSeq*sys.nih writeByte writeRune Precision padString reordered panicking argNumber badArgNum doPrintln fmtString PtrToThis NumMethod math/rand noWriteTo StoreNoWB doRelease pidSignal pidStatus pidfdWait caughtsig mallocing profilehz printlock traceback schedlink lockedExt lockedInt mWaitList profStack libcallpc libcallsp cheaprand locksHeld rangefunc *exec.Cmd WaitDelay goroutine ctxResult StdinPipe writerSem readerSem localSize Temporary Continued TrapCause Interface *[3]int64 X__unused Pdeathsig cacheZone GobDecode GobEncode UnixMicro UnixMilli stripMono initTimer *chan int IsRegular Anonymous CallSlice SetString bytesSlow ArrayType regAssign retOffset stackPtrs inRegPtrs framePool *[]string *[]uint32 *[]uint64 recovered gopanicFP *[1]uint8 NotInHeap startLine nfuncdata isInlined pclntable noptrdata enoptrbss typelinks itablinks pkghashes inittasks gcbssmask nextDefer nextFrame decActive incActive cleanHead deleteMin isSending syscallsp syscallpc syscallbp stackLock waitsince ditWanted ancestors sleepWhen schedtick schedwhen sizeclass lessEqual startAddr freeindex allocBits spanclass largeType scanAlloc reclaimed tryGetObj deferpool goidcache storeSlow haveStack available reentered committed largeFree inObjects stacksSys mCacheSys gcMiscSys TotalTime stackScan totalScan gRunnable heapStats sleepStub Ftruncate WaitWrite WriteOnce writeLock waitWrite Specified *abi.Kind *abi.Type *abi.Name *abi.ITab *maps.Map seenLossy Immutable *[16]uint8 *fmt.State clearflags fmtBoolean fmtInteger fmtUnicode widPresent *[68]uint8 goodArgNum catchPanic fmtComplex fmtPointer missingArg printValue Comparable FieldAlign Implements IsVariadic *rand.Rand ExpFloat64 *[4]uint64 appendMode checkValid noReadFrom *os.Signal SystemTime systemTime WithHandle withHandle *struct {} goSigStack preemptoff isExtraInC needextram cgoCallers ditEnabled winsyscall preemptGen *[1]string ExtraFiles StderrPipe StdoutPipe childStdin readerWait *[96]uint8 *sync.Pool victimSize *sync.Once ExitStatus StopSignal Credential Foreground Cloneflags *time.zone *time.Time cacheStart lookupName AppendText Nanosecond ZoneBounds *[64]uint8 *io.Writer *io.Reader *io.Closer IsExported CanComplex CanConvert SetComplex SetIterKey SetPointer UnsafeAddr assignIntN valueStart stackBytes outRegPtrs StructType nonDefault *[]uintptr *complex64 *[]float64 *runtime.m *runtime.g repanicked pclnOffset modulename enoptrdata pluginpath gcdatamask isChanWait isSyncWait updateHeap *[2]uint64 waitreason gcscandone throwsplit raceignore parentGoid selectDone *runtime.p insertBack allocCache gcmarkBits pinnerBits allocCount countAlloc nextSample tinyoffset tinyAllocs stackcache allocLarge releaseAll mSyscallID putObjFast tryGetSpan workbufhdr checkempty chainEmpty tryGetFast sysmontick sudogcache mspancache gcStopTime startTicks cyclesLost stringData difference inWorkBufs largeAlloc numObjects totalFreed totalFrees mSpanInUse accumulate GCIdleTime finalStats schedStats atomicInfo _interface sysmonWake sleepRatio shouldStop gomaxprocs *chan bool frameStore isBlocking RawControl ReadDirent readUnlock runtimeCtx unlockSlow *abi.TFlag IsEmbedded ReadVarint lengthMask growthLeft localDepth getWithKey tombstones clearSmall MarkerOnly *[50]uint8 sync/atomic *embed.file *fmt.buffer writeString precPresent wrappedErrs WriteString unknownType FieldAlign_ *func() int FieldByName OverflowInt *[1]uintptr *[2]uintptr *[4]uintptr poolDequeue *[607]int64 NormFloat64 *os.dirInfo stdoutOrErr SetDeadline SyscallConn setDeadline *os.rawConn closeHandle *[]*os.File *os.Process *[5]uintptr *[6]uintptr newSigstack createstack waitunlockf syscalltick *exec.Error SysProcAttr lookPathErr startCalled childStderr childStdout *chan error *sync.Mutex readerCount *sync.eface LoadOrStore rUnlockSlow ContainerID NoSetGroups UidMappings GidMappings AmbientCaps UseCgroupFD Nanoseconds MarshalJSON MarshalText *time.Timer panicNotMap SetMapIndex abiTypeSlow capNonSlice extendSlice lenNonSlice stackAssign *[9]uintptr *complex128 deferreturn pctabOffset runtimehash funcnametab findfunctab textsectmap isMutexWait minWhenHeap acquiretime releasetime stackguard0 stackguard1 preemptStop trackingSeq syscallwhen speciallock ensureSwept memProfRate putObjBatch bytesMarked flushedWork raceprocctx pinnerCache *[480]uint8 *[216]uint8 *[68]uint64 totalAllocs mCacheInUse buckHashSys GCPauseTime GCTotalTime globalsScan publishInfo setEventErr slotsOffset errIntegral errOverflow SetBlocking writeUnlock prepareRead *cpu.option DataChecked *[15]uint64 ReturnIsPtr *abi.FuncID *maps.table deleteSmall directoryAt growToSmall growToTable globalDepth globalShift LatinOffset ShouldPrint matchResult LoadAcquire *[32]uint64 *[16]uintptr *func() bool writePadding AssignableTo FieldByIndex MethodByName OverflowUint *rand.Source *func(int64) *[][4]uint64 *os.fileStat Readdirnames lstatatNolog spliceToFile *[32]uintptr signalSecret isExtraInSig allpSnapshot mLockProfile pcvalueCache locksHeldLen *[]io.Closer ProcessState childIOFiles goroutineErr *sync.noCopy Unshareflags Microseconds Milliseconds *[]time.zone AppendBinary AppendFormat appendFormat *io.WriterTo *fs.FileInfo *fs.FileMode *fs.DirEntry CanInterface SetIterValue panicNotBool assignFloatN *[]*abi.Type makeFuncCtxt Undocumented *atomic.Bool RuntimeError deferBitsPtr *[]*abi.ITab linktimehash modulehashes setTraceable maybeRunChan unlockAndRun dequeueSudoG readyNextGen statusTraced atomicstatus paniconfault inMarkAssist runnableTime takeFromBack initHeapBits tryStealSpan heapScanWork deferpoolbuf goidcacheend gcAssistTime limiterEvent captureStack recordUnlock *runtime.mOS profileTimer snapshotAllp gcCyclesDone GCAssistTime *poll.String ReadMsgInet4 ReadMsgInet6 WriteToInet4 WriteToInet6 prepareWrite waitCanceled internal/cpu internal/abi *abi.NameOff *abi.TypeOff *abi.Imethod *abi.RegArgs directorySet putSlotSmall replaceTable ShouldEnable *bisect.cond StoreRelease *func(string) *func() int64 *func() error *[]embed.file *func() int32 *fmt.fmtFlags handleMethods *fmt.Stringer ConvertibleTo OverflowFloat *os.LinkError copyFileRange *os.noWriteTo *[]*runtime.p cgoCallersUse waitTraceSkip signalPending *<-chan error parentIOPipes *[]sync.eface internal/sync loadAndDelete LoadAndDelete *sync.RWMutex *syscall.Conn firstZoneUsed MarshalBinary UnmarshalJSON UnmarshalText *fs.PathError *reflect.Type *reflect.Kind *reflect.flag InterfaceData UnsafePointer InterfaceType IsDirectIface stepsForValue IncNonDefault *atomic.Int32 *atomic.Int64 *interface {} *runtime.Func filetabOffset changegstatus maybeRunAsync *runtime.coro acquireStatus preemptShrink parkingOnChan nocgocallback trackingStamp fipsIndicator syncSafePoint gcAssistBytes takeFromFront decPinCounter getPinnerBits incPinCounter newPinnerBits nextFreeIndex pinnerBitSize reportZombies setPinnerBits tryGetObjFast *[253]uintptr checknonempty mayNeedWorker *[512]uintptr scannedStacks *runtime.note *[65504]uint8 varintReserve oldthrowsplit hasCgoOnStack missingMethod inputOverflow internal/poll *poll.fdMutex *poll.SysFile ZeroReadIsEOF GetsockoptInt ReadFromInet4 ReadFromInet6 SetsockoptInt WriteMsgInet4 WriteMsgInet6 readWriteLock *[]cpu.option *abi.FuncType IntRegArgAddr *abi.FuncFlag getWithoutKey maxGrowthLeft *bisect.dedup *atomic.Uint8*[]*os.dirInfoCompareAndSwap5@*func() string*embed.openDirtruncateString*fmt.Formatter5@ 5@D5@5@05@ 5@X5@*func() uint64*rand.Source645@5@5@5@5@*os.unixDirent*os.noReadFrom*func(uintptr)5@(5@5@createdByStackCombinedOutputcompareAndSwap5@`5@*syscall.Errno*syscall.Iovec5@ 5@85@5@5@x5@h*time.Duration*time.Location5@@*io.ReaderFrom*reflect.ValuemustBeExported*reflect.rtype5@5@H*godebug.valuenonDefaultOnce*atomic.noCopy*atomic.Uint32*atomic.Uint64*runtime.stack*runtime._funcfuncnameOffset*runtime.gobuf*runtime.sudogsetUntraceable*runtime.hchan*runtime.timer*runtime.mutexlockRankStruct*runtime.waitq*runtime.xRegsasyncSafePointfipsOnlyBypass*runtime.mspanmanualFreeListinlineMarkBitstypePointersOfreusableNoscan*runtime.gListflushScanStatstryGetSpanFastputsSinceDrain*[1024]uintptr*runtime.wbBufrunSafePointFncleanupsQueuedtraceBufHeaderbecomeSpinning*runtime.FrametinyAllocCountlargeFreeCountsmallFreeCountheapStatsDeltatotalAllocatedgcCyclesForcedScavengeBgTime5@@5@@5@5@ 5@5@ 5@ 5@5@H5@5@5@5@5@5@5@5@ increfAndClose*poll.pollDescSetsockoptByte*go.shape.bool*strconv.Error*sync.hashFunc*[8]cpu.option*[]abi.ImethoddirectoryIndex*sys.NotInHeap*bisect.Writer*[]bisect.cond5@2*godebugs.Info*[0]*os.dirInfo*embed.openFile*func(int) bool*func() []error*fmt.GoStringer*func() uintptrFieldByNameFuncOverflowComplex*rand.rngSource*[128][4]uint64internal/bisectSetReadDeadlinesetReadDeadlinepidfdSendSignalg0StackAccurate*[]func() error*exec.ctxResultawaitGoroutines*sync.poolLocal*sync.poolChainlookupWithValue*sync.WaitGroup*syscall.Signal*syscall._Gid_t*syscall.Rlimit*syscall.Rusage*syscall.Stat_t*map[string]int*time.zoneTrans*chan time.TimelookupFirstZoneUnmarshalBinary*chan struct {}*reflect.MethodFieldByIndexErrstringNonStringexportedMethodsExportedMethods*reflect.abiSeq*atomic.align64*atomic.Uintptr*unsafe.Pointer*runtime._defer*runtime._panic*runtime.timersminWhenModifiedmaybeWakeLockedsetStatusTracedstatusWasTracedrunningCleanupsvalgrindStackIDinternalBlockedisMaybeRunnable*runtime.sigset*runtime.mcache*runtime.gcBitsmarkBitsForBasemoveInlineMarksprepareForSweep*runtime.pinner*runtime.lfnode*runtime.gcWork*runtime.objptrvgetrandomState*runtime.PinnerlargeAllocCountsmallAllocCountGCDedicatedTimedeferBitsOffsetsleepController*runtime.FramesreadWriteUnlock*sync.equalFunccheckInvariantspruneTombstonesgetWithKeySmall*bisect.Matcher*[]*bisect.dedup*map[uint64]boolinternal/godebugSetWriteDeadlinesetWriteDeadline*os.SyscallError*os.ProcessState*func() *poll.FD*[]syscall.IovecwriterDescriptor*func(*exec.Cmd)*map[string]bool*sync.dequeueNilcompareAndDeleteCompareAndDelete*syscall.Timeval*syscall.RawConninternal/fmtsort*reflect.ChanDirmustBeAssignable*reflect.abiStep*func() abi.Kind*reflect.abiDesc*godebug.setting*godebug.Setting*runtime.functabisIdleInSynctest*[]atomic.Uint32activeStackChans*runtime.special*runtime.offAddrfreeIndexForScanisUserArenaChunkdivideByElemSizemarkBitsForIndexrefillAllocCache*runtime.workbuf*runtime.funcvalgcMarkWorkerModenextGCMarkWorkerscannedStackSize*runtime.mPaddedfinalizersQueuedcleanupsExecutedcontrollerFailed*runtime.Cleanup*[]runtime.Frame*poll.splicePipesplicePipeFieldsSetsockoptIPMreqSetsockoptLingerinternal/strconv*context.ContextuncheckedPutSlot*unicode.Range16*unicode.Range32*func() time.Time*func(int64) bool*func() *abi.Type*[0]*bisect.dedup*[]*godebug.value*os.processHandle*sync.poolDequeuepoolLocalInternal*func(error) bool*syscall.Timespec*[]time.zoneTrans*<-chan time.Time*io.LimitedReader*fmtsort.KeyValuestackCallArgsSize*[]unsafe.Pointer*runtime.funcInfo*runtime.pcHeader*runtime.textsect*runtime.initTask*runtime.guintptr*runtime.muintptrupdateMinWhenHeapmaybeTraceablePtr*runtime.xRegPerG*[3]atomic.Uint32goroutineProfiled*runtime.puintptrallocBitsForIndexrefreshPinnerBitsuserArenaNextFree*[]*runtime.mspanaddReusableNoscanhasReusableNoscan*[]*runtime.sudogspansDenseScannedsparseObjsScanned*runtime.spanSPMC*[]runtime.objptr*runtime.xRegPerPmaxStackScanDeltagoroutinesCreated*runtime.traceBuf*runtime.dlogPerMprofileTimerValid*runtime.lockRankclearAllpSnapshot*runtime.cpuStatsScavengeTotalTimefloat64HistOrInit*runtime.stringer*runtime.pollDesctargetCPUFraction*<-chan struct {}*[2]runtime.FrameSetsockoptIPMreqn*reflectlite.Type*abi.UncommonType*abi.PCLnTabMagicinstallTableSplittombstonePossibleinternal/godebugs*func(string) bool*func(uint64) bool*rand.lockedSource*func(int64) int64*[0]*godebug.value**os.processHandleCompareAndSwapNoWBblockUntilWaitable*exec.wrappedError*sync.poolChainElt*reflect.StructTagmustBeExportedSlow*reflect.bitVector*reflect.layoutKey*[]reflect.abiStep*[]runtime.functab*runtime.ptabEntry*runtime.bitvector*runtime.timerWhen*runtime.xRegState*runtime.mSpanList*runtime.gclinkptr*runtime.spanClass*runtime.addrRangeremoveGreaterEqualuserArenaChunkFreeinitInlineMarkBitstypePointersOfTypewriteHeapBitsSmallnextReusableNoScan*runtime.pageCache*[]*runtime._defer*[5]unsafe.Pointer*runtime.notInHeapspansSparseScanned*runtime.spanQueue*runtime.cleanupFncleanupBlockHeader*runtime.throwType*runtime.mWaitList*runtime.traceTimegcBgMarkWorkerNodeScavengeAssistTimefinalizersExecuted*runtime.timeTimer*runtime.untracedGcontrollerCooldown*runtime._typePairSetsockoptIPv6Mreq*reflectlite.rtype*abi.InterfaceType*[9]unsafe.PointerputSlotSmallFast32putSlotSmallFast64*[]unicode.Range16*[]unicode.Range32*bisect.parseError*chacha8rand.State*func() fs.FileMode*func() (int, bool)*func(float64) bool*rand.runtimeSource*func(uintptr) bool*func() poll.String*func(func() error)*syscall.WaitStatus*syscall.Credential*time.fileSizeErrorappendFormatRFC3339appendStrictRFC3339*errors.errorString*[]fmtsort.KeyValue*reflect.layoutType*reflect.ValueError*runtime.plainError*runtime.moduledata*[]runtime.textsect*runtime.modulehashinitOpenCodedDefers*runtime.waitReason*runtime.sysmontickscannedBitsForIndex*[]runtime.guintptr*runtime.workbufhdr*runtime.cgoCallers*runtime.winlibcall*runtime.statDepSet*runtime.metricKind*runtime.traceFrame*runtime.metricData*poll.errNetClosingSetsockoptInet4AddrputSlotSmallFastPtrputSlotSmallFastStr*unicode.RangeTable*cgroup.stringError*func() interface {}*func() reflect.Type*func() reflect.KindwaitTraceBlockReasoncachedLookExtensions*chan exec.ctxResult*syscall.SysProcAttr*reflect.StructFieldmustBeAssignableSlow*reflect.abiStepKind*reflect.methodValue*runtime.errorString*[]runtime.ptabEntry*[]*runtime.initTaskisWaitingForSuspendG*[]runtime.timerWhen*func(*runtime.coro)*runtime.gTraceState*[136]*runtime.mspanheapBitsSmallForAddr*[]runtime.gclinkptr*[32]*runtime._defer*[128]*runtime.sudog*[128]*runtime.mspan*runtime.pTraceStatespanObjsDenseScanned*[256]runtime.objptr*[]runtime.cleanupFngcFractionalMarkTime*runtime.mTraceState*[]*runtime.traceBufneedPerThreadSyscall*runtime.boundsError*runtime.metricValue*func(string) func()printControllerResetinternal/reflectlite*abi.BoundsErrorCode*abi.IntArgRegBitmapinternal/runtime/sysinternal/chacha8rand*func(string, string)*[]*sync.poolChainElt*func(*os.file) error*exec.goroutineStatus*syscall.SysProcIDMap*map.group[string]int*reflect.makeFuncCtxt*[]runtime.modulehash*runtime.ancestorInfoupdateMinWhenModified*runtime.gsignalStackallocCountBeforeCache*runtime.mWeakPointer*runtime.limiterEventspanObjsSparseScanned*runtime.cleanupBlockgcMarkWorkerStartTime*runtime.mLockProfile*[2]*runtime.traceBuf*runtime.pcvalueCache*runtime.heldLockInfo*runtime.metricReaderaccumulateGCPauseTime*runtime.piController*func() go.shape.boolinternal/runtime/maps*maps.groupsReferenceCompareAndSwapRelease*atomic.UnsafePointer*[0]*sync.poolChainElt*func(complex128) bool*map.group[uint64]bool*os.fileWithoutWriteTohandleTransientAcquirehandleTransientRelease*<-chan exec.ctxResult*chan<- exec.ctxResult*map.group[string]bool*go.shape.interface {}*godebug.runtimeStderr*runtime.mSpanStateBoxisFreeOrNewlyAllocatedisUnusedUserArenaChunkspecialFindSplicePointwriteUserArenaHeapBits*runtime.stackfreelist*[256]runtime.guintptr*func(*runtime.pinner)*[20]runtime.cleanupFn*runtime.PanicNilError*runtime.statAggregate*[]*runtime.moduledata*poll.splicePipeFields*func(fmt.State, int32)*func() reflect.ChanDir*func(int) reflect.Type*iter.Seq[reflect.Type]*os.fileWithoutReadFrominternal/runtime/atomic*[]runtime.heldLockInfo*sync.poolLocalInternal*[]syscall.SysProcIDMap*[]runtime.ancestorInfo*runtime.lockRankStruct*runtime.synctestBubbletraceSchedResourceStatetypePointersOfUnchecked*[136]runtime.gclinkptr*runtime.listNodeManual*runtime.traceBufHeader*[][2]*runtime.traceBuf*runtime.heapStatsDelta*runtime.scavengerState*map[uint32][]*abi.Typeinternal/runtime/cgroup*func(reflect.Type) bool*func(*os.processHandle)setUserArenaChunkToFault*[]runtime.stackfreelist*runtime.persistentAlloc*[2][2]*runtime.traceBuf*runtime.pcvalueCacheEnt*func() <-chan struct {}*func() reflectlite.Type*func(int) reflect.Method*iter.Seq[reflect.Method]*func() *abi.UncommonType*[10]runtime.heldLockInfo*[4]runtime.stackfreelist*runtime.gcMarkWorkerMode*runtime.traceBlockReason*[]*runtime.PanicNilError*runtime.gcStatsAggregate*map[int32]unsafe.Pointer*map[unsafe.Pointer]int32*func() (time.Time, bool)*maps.unhashableTypeErrorgetWithoutKeySmallFastStr*func(reflect.Method) bool*func(func(uintptr)) error*atomic.Pointer[runtime.m]*chan exec.goroutineStatusGidMappingsEnableSetgroups*map[abi.TypeOff]*abi.Type*runtime.maybeTraceablePtr*[]runtime.pcvalueCacheEnt*[0]*runtime.PanicNilError*runtime.sysStatsAggregate*runtime.cpuStatsAggregate*runtime.sliceInterfacePtr*runtime.debugCallWrapArgs*atomic.Pointer[os.dirInfo]*func([]uint8) (int, error)*runtime.maybeTraceableChan*runtime.gcBgMarkWorkerNode*runtime.sizeClassScanStats*runtime.cleanupBlockHeader*[8]runtime.pcvalueCacheEnt*runtime.errorAddressString*runtime.heapStatsAggregate*runtime.stringInterfacePtr*runtime.uint16InterfacePtr*runtime.uint32InterfacePtr*runtime.uint64InterfacePtr*runtime.TypeAssertionError*poll.DeadlineExceededError*func() (fs.FileInfo, error)*runtime.finalStatsAggregate*runtime.schedStatsAggregate*runtime.savedOpenDeferState*func(poll.splicePipeFields)*func(reflectlite.Type) bool*interface { Is(error) bool }*interface { Unwrap() error }*[]runtime.sizeClassScanStats*[][8]runtime.pcvalueCacheEnt*map.group[uint32][]*abi.Type*func(int) reflect.StructField*iter.Seq[reflect.StructField]*func() iter.Seq[reflect.Type]*map[interface {}]interface {}*[2][8]runtime.pcvalueCacheEnt*runtime.synctestDeadlockError*map[string]runtime.metricData*func(reflect.StructField) bool*func(io.Reader) (int64, error)*func(io.Writer) (int64, error)*func(func(uintptr) bool) error*atomic.Pointer[runtime._defer]*interface { Unwrap() []error }*[68]runtime.sizeClassScanStats*runtime.metricFloat64Histogram*func(uintptr) (uintptr, int64)*map.group[int32]unsafe.Pointer*map.group[unsafe.Pointer]int32*map[string]*unicode.RangeTable *func([]int) reflect.StructField *func() iter.Seq[reflect.Method] *func() (syscall.RawConn, error) *struct { key string; elem int } *func(interface {}) interface {} *map.group[abi.TypeOff]*abi.Type *runtime.traceSchedResourceState *map[runtime._typePair]struct {}!*struct { key uint64; elem bool }!*struct { in string; out string }!*struct { key string; elem bool }!*runtime.gcBgMarkWorkerNodePadded"*atomic.Pointer[sync.poolChainElt]"*[]struct { key string; elem int }"*struct { F uintptr; X0 chan int }#*[]struct { key uint64; elem bool }#*[]struct { key string; elem bool }#*[8]struct { key string; elem int }#*struct { F uintptr; X0 *abi.Type }#*func(interface {}, uintptr, int64)$*func(string) (reflect.Method, bool)$*[8]struct { key uint64; elem bool }$*[8]struct { key string; elem bool }$*map.group[interface {}]interface {}$*runtime.goroutineProfileStateHolder$*map.group[string]runtime.metricData%*func() iter.Seq[reflect.StructField]%*struct { F uintptr; X0 *[5]uintptr }%*sync.node[interface {},interface {}]%*map.group[string]*unicode.RangeTable&*atomic.Pointer[internal/bisect.dedup]&*go.shape.interface { Error() string }&*func(*runtime.g, unsafe.Pointer) bool&*sync.entry[interface {},interface {}]&*func(interface {}, interface {}) bool&*map.group[runtime._typePair]struct {}'*atomic.Pointer[internal/godebug.value]'*struct { F uintptr; R *atomic.Uint64 }'*func(*runtime.funcval, unsafe.Pointer)(*[]*sync.node[interface {},interface {}](*struct { key uint32; elem []*abi.Type }(*struct { F uintptr; X0 chan struct {} })*struct { F uintptr; X0 *sync.WaitGroup })*func(string) (reflect.StructField, bool))*sync.indirect[interface {},interface {}])*[]*sync.entry[interface {},interface {}])*[0]*sync.node[interface {},interface {}])*struct { F uintptr; R *godebug.Setting }**[0]*sync.entry[interface {},interface {}]**func(unsafe.Pointer, unsafe.Pointer) bool**struct { key int32; elem unsafe.Pointer }**[]struct { key uint32; elem []*abi.Type }**struct { key unsafe.Pointer; elem int32 }+*struct { key abi.TypeOff; elem *abi.Type }+*[8]struct { key uint32; elem []*abi.Type },*sync.HashTrieMap[interface {},interface {}],*[]*sync.indirect[interface {},interface {}],*func(func(interface {}, interface {}) bool),*struct { len int; buf [128]*runtime.mspan },*[]struct { key int32; elem unsafe.Pointer },*[]struct { key unsafe.Pointer; elem int32 }-*func() go.shape.interface { Error() string }-*[0]*sync.indirect[interface {},interface {}]-*func(fmtsort.KeyValue, fmtsort.KeyValue) int-*[]struct { key abi.TypeOff; elem *abi.Type }-*[8]struct { key int32; elem unsafe.Pointer }-*[8]struct { key unsafe.Pointer; elem int32 }-*struct { F uintptr; R runtime.metricReader }.*[8]struct { key abi.TypeOff; elem *abi.Type }/*struct { key interface {}; elem interface {} }/*go.shape.struct { internal/sync.isEntry bool }/*struct { key string; elem runtime.metricData }0*struct { F uintptr; X0 *os.File; X1 *exec.Cmd }0*struct { F uintptr; X0 io.Writer; X1 *os.File }0*struct { key string; elem *unicode.RangeTable }1*struct { F uintptr; X0 func(string); X1 string }1*[]struct { key interface {}; elem interface {} }1*struct { key runtime._typePair; elem struct {} }1*[]struct { key string; elem runtime.metricData }2*[8]struct { key interface {}; elem interface {} }2*[]*go.shape.struct { internal/sync.isEntry bool }2*[8]struct { key string; elem runtime.metricData }2*[]struct { key string; elem *unicode.RangeTable }3*[0]*go.shape.struct { internal/sync.isEntry bool }3*func(*runtime.statAggregate, *runtime.metricValue)3*[]struct { key runtime._typePair; elem struct {} }3*[8]struct { key string; elem *unicode.RangeTable }4*func(func(string) bool) (reflect.StructField, bool)4*[8]struct { key runtime._typePair; elem struct {} }gdFe(ЮYY( Mo(ЮYY;Nq(ЮYYA MQ(ЮYYDIM63D(ЮYY< MWa(ЮYY6 M/(ЮYYPBM;(ЮYY)MF(ЮYYJ@N賂(ЮYYbN0vv4(ЮYY2 N(ЮYY2J N'(ЮYY]g N\(ЮYY/bNNOf(ЮYYJCMk (ЮYYJNW! (ЮYYJN(ЮYYJN E(ЮYY^@Or(ЮYY[~N?ʶ (ЮYY=O M}<(ЮYY=M0(ЮYYZ+NN7f(ЮYYJ~Np(ЮYY+Mu(ЮYY+ Mhu(ЮYYDM(ЮYY]8 M(ЮYY+M=z(ЮYYMVt(ЮYYk8N(ЮYY8 M(ЮYYS@Nǡ(ЮYYu=`N6fc(ЮYYONn(ЮYY_CM^/(ЮYYWN*"(ЮYYU\QNHM(ЮYY]b@N(ЮYY)_QNr;(ЮYYON%@(ЮYYpDN־<(ЮYYK@MjNP(ЮYY` M(ЮYYDM|)(ЮYYw @DMJ (ЮYYhDM <(ЮYYpDMcw(ЮYYEM=!(ЮYYx@EMu(ЮYYEM++(ЮYYEMx(ЮYYFMgE(ЮYY@FM#(ЮYY~ FMip(ЮYYFMM.(ЮYY,GMr.(ЮYY3@GM8(ЮYYGM]r(ЮYYGM)(ЮYY HMS(ЮYYK@HM;p(ЮYY>MH(ЮYYKN2(ЮYYD@N$m(ЮYYPSNf(ЮYYONWc(ЮYYcSUN/Q(ЮYYWN(ЮYY\@VNI(ЮYYvS NS(ЮYYDNx~(ЮYYbXN* (ЮYY@EN?8(ЮYYg`M 2(ЮYYE N&o1(ЮYYe>NC(ЮYYSM`iU(ЮYYpE`5OtlЮYغY#XN(ЮYYbNA(ЮYYLM1(ЮYY\NeWЮYغY'P@NH(ЮYYeNս(ЮYYhN((ЮYYY@IMX*\I(ЮYYf]Ms R(ЮYYc%N% Ҡ(ЮYYpiNu(ЮYY>UM(ЮYYc:Nx (ЮYYc%Ncy(ЮYYF@NT(ЮYYs@&N :s(ЮYYmq'Ntn(ЮYY]IM@v0(ЮYYll\M(ЮYYmIME(ЮYYU Mu(ЮYY]N%$(ЮYYmJM (ЮYYm@JM(ЮYYnJMd(ЮYY+ZNY(ЮYYl (N8#Q(ЮYYncN A1(ЮYYSZ(N\M`(ЮYY]`)N(ЮYYfdNDŽ(ЮYYkQ*N(ЮYY:JM^ (ЮYYQM (ЮYYpHM`Ğ(ЮYYM`Mml(ЮYY5VxN(ЮYY5N&[(ЮYY{aKMv<7(ЮYY/@KMq(ЮYY';KM0?(ЮYY5;KM=1 (ЮYYC;+Nvm(ЮYY(@Nm(ЮYY[VLM$r%(ЮYYA@LM0Έ(ЮYY5LM;ЮYغY"MlЮYغYHM?M)(ЮYYQgNj>(ЮYYQ@hNO(ЮYY#^iN*@(ЮYYH M(ЮYY;iNPs(ЮYYHN@0NYWNYu_Y8Ne~Y DM? Y@EM'Y%EMWYEMzY%FMfY@FMAYFMYz,FMkmY,GMY%DM 'Y*S@HM]Y M?\XYWN6J0Y\UNDrY!9#M`DPYU_N肼Ytb@VNgFYk_MWY|MonUMYgXNl!(ЮYYg`8M_}Y_`EN~%YP`.NRbDYZT OPY`MsKY"iN#wYYMEY']MYTMk3YIoNYT Mrx(ЮYY0FxMՠY`@_N:IOY`aNeKgYWhzMߩ>YkNRYho`{M-Y{j M=Y~f MlOY,{Mә/Y0MuhY~MVYyM@YZ{M/YYQ@Nޚn(ЮYYn@XM^(ЮYYPHXMgP(ЮYY(@NR!LY@N(n]YH+N=+|YZgNYZ@hN#ǻY M){LYHiN7*interface { Network() poll.String; PollFD() *poll.FD }7*sync.node[go.shape.interface {},go.shape.interface {}]8*sync.entry[go.shape.interface {},go.shape.interface {}];*[]*sync.entry[go.shape.interface {},go.shape.interface {}];*sync.indirect[go.shape.interface {},go.shape.interface {}];*go.shape.struct { Key reflect.Value; Value reflect.Value }<*[0]*sync.entry[go.shape.interface {},go.shape.interface {}]=*struct { F uintptr; X0 *exec.Cmd; X1 chan<- exec.ctxResult }=*struct { F uintptr; X0 func(func() error); X1 func() error }=*struct { head *runtime.spanSPMC; tail atomic.UnsafePointer }D YغYJޘЮYغY_E2YY 4%hYغYw `yvjhYغYhYغYpל& YغY YغYx` YغYC")fЮYغY:p ЮYغY 4ЮYغY`<ЮYغY~ \ ЮYغY>ЯYغY,  wدYغY3`}r YغYҦlYغYH`OhYغY Fզ/ЮYYK`kЮYغYEjA;ݜ} YغYYAwhYغY`jAj) ЮYغYYAK2ЮYغY] A><YYmAۂ YغYm`A3ˉ YغYmA? ЮYغYnAfYY:6@jhYغY{a`;~''`hYغY/;@YغY';;e/YغY5; ;D* YغY[V;ZZhYغYA ;XqhYغY5`;S"Y;DM@i"Y6HMs"Y R`)O"Y/[NUc"YADM_fi"Y;EMXt)"YM^Mdy"Y; MB*"Y3I`6M`"Y;@EM)!"Y0@FM0M"YfMAJE"Yc^`Nm>"YuMܷ"Yo@Mn "Yy^`M"Y4rM""YUIFML"Y3RNX"Yi M`6}"Y6EM"Y@BFMk"YBFM\"Yh MeW)"Y[JM"YN -O2$k"Y{ M*ЮYY< M:0*ЮYYd@N*ЮYY K M!"YOMT"Y_ MJPZ"YfMpL*ЮYYU MߖV*ЮYY/HMi#"YndN9 hYغYPH  T"YcXM %"YiWMQ="YixN?*atomic.Pointer[internal/sync.entry[interface {},interface {}]]?*atomic.Pointer[go.shape.struct { internal/sync.isEntry bool }]@*[]atomic.Pointer[internal/sync.node[interface {},interface {}]]@*struct { f func(); once sync.Once; valid bool; p interface {} }A*[]atomic.Pointer[go.shape.struct { internal/sync.isEntry bool }]B*struct { F uintptr; X0 chan exec.goroutineStatus; X1 chan error }B*atomic.Pointer[internal/sync.indirect[interface {},interface {}]]B*[16]atomic.Pointer[internal/sync.node[interface {},interface {}]]C*[16]atomic.Pointer[go.shape.struct { internal/sync.isEntry bool }]oَY0vDMO/ЮYYN MSpBiYll`DMA خYغYI M&M% LغY6FM`5MI YغY(DM3M*"YWnN MT~"Y"I@FMHM`-"YD[@FMHM@x7|"YVDMHMU"YaDMDMDi LغY2)DM3MD8"Yf M@EMarsY خYغYnd@3N'Mx"Yh`NHML"Yo@FMNuQ"Yr4MNY"YpNHM"Yf@FM`NTn4"Yi@FMNSA"Y8kNHM8C"Yd@GMHM-F+"YY[GMHM^"Y REMHM A!"YVFMHM`q{ ЮYغY1FM`5M.,-- YغY1FM`5M  LغY 1FM`5Mn pLغY:1EM`4M_iU "YVEMEMɀ` خYغYFRM )MWge خYغYV` M`)M  LغY)FM4M LغYIgM)MEغYtM)M`g"YbM M;O#"YVr M MN"Y[FMHMKP<"YTk@RM M "YpiM M( LغY1 FM`5M0ņF LغY1FM`5M LغYS7FM`5M * LغYj%N ,M .YY*DM5MYuM -M`Fd @LغY*DM3M`b خYغY>yN-Mĵ]V خYغYxM-M/HLYQpN .M, خYغY{M`.MY~M.M^ خYغY{ /M/MP خYغY0M0M𚥓LYrN 1Mz"YR MHMD LغY$EM`4MULxYdt M1M@$? LغY+DM3M@8x ЮYغYo@FM4MHIp `LغY3FM`5M d6="YrMMz hYغY%DM3MC})xY|M 8M q1] LغYS`.N 9M]= YغY"-FM4M@B  LغY_ O`9M@r  LغY hM9M@0 LغY*jN9MJ LضY`M :M 0P PLغYfM`:Ml LY1`M:MPt LغYG` O`9M((Ҥ LY'Y@HM 6M @LغYLqN:MD4?Z PLغY?FM`5M^ PLغY` M ;M ({ pLغY0F`FM`5M~6M LغY?FM`5M U."YwM@HMQY6f@_N;MV LغY?DM3Mަ YغYqcaN;M en LغYVizM Mx.(Ys|M`>M҈L`YV@N>M<"Yj`)OHṂ"YnxNHMaxLYHN?Mxj LغY5FM4MHH.X `LYZ@HM 6M fYe M@M2XE LغY^0DM3M27 LغY6FM4M `>YY[$@ ` `n' ЮYغYaO E f $ "1ЮYغY=E e " nL ЮYغYSRA#PMd`"YtMFMEM5/"YqFMFMEMQ*atomic.Pointer[internal/sync.entry[go.shape.interface {},go.shape.interface {}]]R*struct { f func() bool; once sync.Once; valid bool; p interface {}; result bool }T*struct { f func() error; once sync.Once; valid bool; p interface {}; result error }}KM)ЮYYT1|NA`)ЮYYNA  (7,)ЮYYg<MA V V (}J)ЮYYB MA` `R `R )ЮYYpC N)ЮYY[M$@ @ 3)ЮYY+\M$@Y@YOXQ)ЮYYR`N )ЮYYaOME f f 7X)ЮYY^NE+汝7)ЮYY=`ME e e ~4)ЮYY1KNE+Ds)ЮYYWNE^0)ЮYYONE`ڬ)ЮYYj\ NE$`6 `6 XJ)ЮYY^eMAN@  aS)ЮYYWNA;)ЮYYX`ENAHdЮYغYL`EM 4MAC2_)ЮYYKXMA.)ЮYYL NA `rr= ЮYغY;YMA4;U)ЮYYT#NA`[LغYQ] FM`5M AĩE)ЮYYdU@MA @A@Ary)ЮYYph`NA 0)ЮYY4l`NA1`߳0!)ЮYYjNA1` )ЮYYunNA1`Dĥ)ЮYYn@NA1`)ЮYYff`NAXs.)ЮYY#a@bNAU[M)ЮYYc@MA1g()ЮYYFpFNA$b)ЮYYGQFNA`fUh)ЮYYMNA'TTo)ЮYY`HMQ$xx`>)ЮYY(M; ?\YغYa>DM3M;)ЮYY)d,Nda W)ЮYY[ MI$<_o)ЮYY8^`Mh$QSYY o0MrYY+qM ĔYY*oM Z*struct { F uintptr; X0 *struct { f func(); once sync.Once; valid bool; p interface {} } }cخYغY7 ,MSIӋЮYغYvJ - ` ! ` ñYYoW 2EVخYغY^eMANǤPخYغYD2@Mj0RخYغYKMj0YY?_3A$@B`a9`{wYY\ 4A$A b9`qYzخYغYgMAf}hYغY_X6A'g = ЮYغYM 8At ]خYغYf]MAm^ خYغY>U@MAyA'Yc AFM1)% خYغY:n ]M6@rϦ'YpH`<(@HMFMFMtL'YM<(@HM@HMHMC,خYغY" MaG^خYغYD AM+gخYغYKM+g!YY0M/ YGYYFe LM d*struct { f func() go.shape.bool; once sync.Once; valid bool; p interface {}; result go.shape.bool }3,1YYAOLMO `9]YYDIOLMOn93uYY< OLMO \kL)ЮYYI<{NA$ ,)ЮYY2N$    57)ЮYYGWsN$ R R R R )ЮYY7`MS``})ЮYY+@MNSbb@b@b&)ЮYYvJM ` ! ! ?])ЮYYR@ Nzk)ЮYY+O N[$YYY=`LM{1`6w)ЮYY(3N* ǵmYY+ LM@%YY+`LMYYDLM` y7YY]8LM }`gYY+ LMW)ЮYYoW MEg\)ЮYYDMj0``5YY`M$q.)ЮYY?_MA$@B@B9`[(9)ЮYY\MA$AA9` ЮYغYD`NA%])ЮYYS MAMK)ЮYY ENAfGEI ЮYغYL NA^ !)ЮYY_XMA'9s)ЮYYve MAN4)ЮYYb@8NAz `Nz)ЮYYM MAt j>0 ЮYغYP]NAB.`?`WI)ЮYYv-@>OA` O O MM))ЮYYTMAhh\)ЮYYNfMA$VV9`J|)ЮYY aNA$CC9`8)ЮYYm NA1` `")ЮYYUNA/$$cYYYUALMA t)ЮYYn@NA$]]9`sr)ЮYYc`NAY>> `C)ЮYYT@M6@ `)ЮYYHV`N;uK*񤝍)ЮYYa`M;)ЮYYQ;N;`@)ЮYYk`;Nd$``9`sbYYHLMI@x)ЮYY5AjNI  (``_^d)ЮYYD M+g``?)ЮYY8M+g7YY{v LM $/)ЮYYv M<X ?{2YY6`2LM2# eQpخYغYg<MA V  BخYغYB@MA` `R -.YY)ALMA ` /"Y/NFMHM MY"YNDMHM MPYv|"YpMM MpY =1"YJDM@FMMPYL7"YkKMN MYi"Yj@EM@HM MYv"Ys(N M MYo}"YfpDM`)N MPY ]W"YhEM`3M MY RCq"Yj@HM@EM MYu+V"YqDM%MMPY")ЮYYIHN2#@ @ e ( KhLغYn[`w2LM2#(EL NMzYYPB2LM2#(e( V)ЮYYwN`NA$  ALMA(L M ЮYغY\9OAR c\b0q_)ЮYYSMA>)ЮYY`ENA5u9>NYYlALMA(L`N5)ЮYYku@NAcA""mЮYغYS`ALMA(LM ȓLغY_@ALMA(LN(Zi)ЮYY,COA$ cLtL`p`pBC]hYغYve 7ALMA(L-NLغY;YALMA(LM')ЮYYbMA   6aLغYb WALMA(LlNɨW ЮYغYT NA` _ _JЮYغYPALMA(uLFM(ЮYغY?`ALMA(LFMVǿ`LغYNf :ALMA(L |Mi)ЮYY@MMAf p p ` r r `()ЮYYom@NA$BB9`8ЮYغY{]~FM4MA. mM)ЮYYPl MA/c1`X? LغYPl[ALMA(LNBm)ЮYY]*N6@$ |$f^-)ЮYY:nM6@$ |$0 /ЮYYT@=6LM6@(L+MЮYغY0H96LM6@(ίLFMupLغYHLMa(LMzYY[ LMI(LDMchYغY8A+LM+g(L-N5y/ЮYY q +LM+g(L/NW;/ЮYYpk+LM+g(L/NU hYغYvB߼LM<(ڗLHML y)ЮYYxN<_ X NhYغYQ`߼LM<(ڗLHM5hYغY2}߼LM (ڗLHM"jYY( OLMO0"+@&Ӧ ЮYغY`C@y$ @ |$,V(YY81LM1 0  YYQ pLMp0r"m 9)OYYypMLFMLRNCYzLMLKMLN=YrLpMLFMӈLsM 0LغYzALML@FMELvM{ YY7ALpM%L MIL/N8'YyLML@EML@HM. YqLpMLFMӈL`~MZY~LML(NL M ' YwLpMLFMӈL~M bYc}LMLDML`)N]q0YuLpMLFMӈL M $ZYwLMLEML`3M @YoLpMLFMӈLMYyLML@HML@EM3()ЮYYn[ M2#` ` e ( qxv/ЮYYAL`MA(LM\k)ЮYYeJLNSrrm`tt}` u uƗ)ЮYY`CM$    |$lR')ЮYY8`Nj0cA]]}[n)ЮYYKNA\[[`&`X`Xk&YY VVCr)ЮYYX@\NAs ``_ l @@"T)ЮYYE`NA_ HG鹜s ЮYغY,c #NA_ >q)ЮYY,WOAF`wU`@@ @:/ЮYY@M ZALMA((LM `.i)ЮYYP&NAF`wU` @:?Sc)ЮYY{] MA._ k  ЮYغYUOAg@J5` )W5)])ЮYYDA-N+g)ЮYYllNj0cAr)ЮYYsmNj0cA@})ЮYYSv@nNj0cA)ЮYYCwoNj0cAo@)ЮYYoNj0cA)ЮYYpNj0cAc)ЮYY @qNj0cA筃YYILN@ LNLEM\ݳ`LYV2L N2#@UL NLM hPLYwN LNA@ՖLDML My%0XLغYlRMAL`NA@LFMLN xX^LY2 +N@ɃLDML M/LYJ LN@YL M0N @|L`POL`PO*struct { F uintptr; X0 *struct { f func() go.shape.bool; once sync.Once; valid bool; p interface {}; result go.shape.bool }; X1 *[4]uintptr }*struct { f func() go.shape.interface { Error() string }; once sync.Once; valid bool; p interface {}; result go.shape.interface { Error() string } }0)ЮYYI N   |T)ЮYYB@}NA    wg)ЮYY[WKNS=r۳j)ЮYYR NS=@k@k l lr`j`j)ЮYY*NS@dd cc`e`eff`g`gz)ЮYYy8N1 @ @ !% ` `  B)ЮYYk`NANK9`E`T)ЮYYgNAG>qqv&` t t&`ssL u ufT;k)ЮYYlMANK9`E`i*)ЮYYrNAt>Y9@L@0Ltɼ/ЮYYb7AL8NA(L?Nz `NNJ)ЮYY]`NAt>Y9@L@0LH)ЮYY@F^NA`_ ek ``%`%_bJ)ЮYYE@@eN6@ H  " <#s)ЮYYr2@+N<`8```|"`^^/``ITq/ЮYYk?L;Nd(ǁLN$9`ΛC)ЮYY= -N+gcA')ЮYY >@kN+gcAS)ЮYYWd/N+gcA@ W@ H#"b7)ЮYY[ Na'`  ` wY*~>NLFMILLMMLDMWw)ЮYY q M+gcAWH#B)ЮYYpkM+gcAWH#JEY@NLFMIL`,MML(Mk - Y}PANLFMILOML`N兟YANLFMILTMML@TM r@Y}BNLFMILMMLOMY0CNLFMIL`NMLTMYCNLFMIL@UMMLNM;YаpDNLFMIL`?MML(MVnQhYغY\A A ,O3 -`_YYXALENA@MA cc%yLغYcSALUNAXLFMLFMLFM((@cLY\`ALVNAXάLDM/LDMijL M qNdT)ЮYY=SNA X % j)ЮYY\DNA AA,O3 -_(Yb ALXNAXL`5MLFMLFM 5\)ЮYY_ MAt>Y9@ `L@0L=LغY7XAL`ZNAXLML OL O1S ЮYغY7XZNA `-@Z4)ЮYYsXNA. X8 9>LغYX {AL\NAX!LFMLFMALFM aLغYl AL`]NAXML@!NŀLML M$(LغYP8AL ^NAXLM6L!NMLxM61LغY@FAL^NAXYLFMLFMEL yMYwY`AL_NAX]LyMuLMhL@HM%)ЮYYZcNAG:`U: @@ `'`e=HLغY+UAL aNAXLMpLNL@zM  ЮYغY+U`NA'. ! ?@m]LxY#aALbNAXLIM`LFML@HMp`%&YZKAL`cNAX2L@HM LHML@N"LغYnAL dNAXLFMLFMdLFMZ LغYf`6LdN6@XuL@FMzL@FML@FMk8YغYE@ 6LeN6@XLFM)LEM0LEM 8(J|(Y@`fN;XL`NLEM0LEM2P@?6 YZ l gN;XL`N!LN0*L?M8eԙ0LغYQ gNXALEM=LEMxLEM ːLغYQ`hNXALEM=LEMxLEM8 )Y#^`iNXL @ML`@MNL@FM0@u5LغY; L jNIX5LFMLFMLHMr0Y5A@LjNIXPL@hMEL NL M[LغY >+LkN+gXL MLMLEMLغYD+L`lN+gXL MLMLFMv'LYljL mNj0XL]MLML@HM-' LYs`jLmNj0XL`MLML@HMф'xLYSvjLnNj0XL gMLML@HMjH~'LYCwjL`oNj0XLgMLML@HM$'@LY@jL pNj0XLmMLML@HMsA'PLYjLpNj0XLmMLML@HMK'(LY jLqNj0XLnMLML@HM 'xLYjL`rNj0XL`oMLML@HM}'LY`jL sNj0XLoMLML@HM O2LYGW+LsN@pLDMYL M$ R @ R  (([" c YD`SLtN L`'ML@MNLHMLMA`Z)ЮYY=Nj0cA$)ЮYYDNj0cA )ЮYYDTNj0cAk&C)ЮYY9PNA4#)e &'B 9U,)ЮYYhNA5Q`'' `"" `@$@$ ` ( ( `%`%`$$}YY5VeL yN eah6)5@);! @la)ЮYYDlN+gcAu6;cO)ЮYYK/N+gcAu6@;@0 8pLY) W2L`{N2#pL MLMWLEM `L@DM(@@7T0LPYI<* |NApYLDMLDMLDM L M0 V'@LYT1 AL|NApEL NEL 'ML@FML@FM88pLHL`YBAL}NApLDMLDMǁLN ńLN((MAY[`~Np?LEMDLEML 4MLHM 9$pLغYJӅL NpمLEMLDMLHM LHM JU( ЮYغY=@EsO`^`0D`W`53`"  ;]LY]bELNEpuLFMLMLFMfL`M((WJ(L YO AL`NANpLoNL@MNnLTNńL`&M (uI*LغYb AL NApL@N,LFM9LFMLFM nLغY\ALNApLEM LEMLEM`LEM5!LغY'PALNApLMYLMLFMLDM b8LغY5m AL`NApLML@!NwL`M&LEM =5LغY>h`AL NApLaN L@IMaL@FML@FM LغYpi`ALNAp(LFMqLEML@EM LFM_WpLYomZALNA@TLDM#LFM$Ba9` <LغYj@AL`NApLFMLFM=LFM#LFM Z=LغYunAL NApLFMLFM`LFM#LFM LغY] ALNApLFMLFMpLFMLFM( ђuLеYn<ALNApJLNҡLNܡLNLDM)\iXYM@AL`NApyL`5MLFML>M L@M8 2[LY5 N ;pɃLDML MLHMLHMJ0LYQ; ?N;pL`rM LMHL MٵL`M Y8LY(N;pL NՃLN#LEML@eM000J8LYv߼L`N<pOL MLoNLMLM 00N@pLY ߼L N<pOL MLrNL@ML@M *struct { F uintptr; X0 *struct { f func() go.shape.interface { Error() string }; once sync.Once; valid bool; p interface {}; result go.shape.interface { Error() string } }; X1 *[4]uintptr }D)ЮYY =`NS` q q{ ```p`p8`qq2pp08)ЮYY=NEsO`^`0D`W`53`)ЮYYK NE  ]  82,  `c%  3=$3- ЮYغYLNAmT-T XL``.``w,)ЮYY N@NIR0;[6" "h6 ``88ۿYSLN LNML@MNLHMLML M(88Y2Ya`SLN L@SML@MNLHMLML M($/)ЮYYvN<O0CX < TJU0(W YcSLN LMML@MNLHMLMLHM(0(s"" Y(`SLN LXML@MNLHMLMLXM(w YغY[@ $+@ *+$@wYغYsXAL`NA@!LN9LN. X8 b)ЮYYw0@GN   @  ` `  J@ pLY`dOL NOELM2LNcL@FML@FM ،L`M(8 k[(LHY7@ALNALDMLEMLNL`)O LN8@0** `LpY1YALNAցL@FMLN L`N LM(LFN0:XLغY =`SLNS L N[LEMfLEM LNLNl)ЮYY[ N $+@ *+$@H ^4YK ELNE[L 3M>L4MJLFM0bL@FM8iL@FM@ bYe> AL`NAŀLM L@WMɀLMLEṂLEM(kLغYm`AL@NALFMsLFMOLFMLFMLFM  J`LYcY8AL NA%LEMILEMYL`xM L@FML MH^PLغYc:ALNAqL@EMQLML-N/LFM2LEM+$)ЮYY(N; 5/+/v(LغYHV >LN;!LKMLEMLEMׇLEMLEM ((5JY NLNILHM}LHMLHM/L@ML@nN 0dȕLغY[LNaEL@MwLgM>LEM &LEM$2LEM(F!0LYxa߼L`N<OL M[L`NEL@+NLML@nMeLGM qLGM(~LHM0'LHM1q)ЮYYZcNA s``V>`Y98 5 @`g9- GKLغY;`OL N O&LHMLHMcLHMLHMjLHMqLHMLHMxLHMЌLHM:D)ЮYYNKNA @ @ ` ` J@@ * @@*s$)ЮYY0E@NA s``V>`@}@}Y98   @~@~5 @`g9@@-@y@y8 LY" 6LN 6@ˇL@eN7L@FMLM9L M >LEM(LEM,"LHM0cLHM1LHM20/`LxY( |L N dLFMwLFMPL@HMXL@FM4LDM ALDM!LDM"LHM#LFM(mf)ЮYYtzN< f `O cA<2m a ``)iYOLN OEL[MhLML`PO(OLN@ڢLHM>LHMLHMLM@ԟLMHޟLMP2LMX4YhAL@NA`sLN/LML`.NL/N L/N(sLN0ULHM8LHM9LHM:LEM<LFM@L@NH!LEMLFM%L@N)LEMLM /vY^OLDM6LMLHMLHMFLHMOLHMLHML@FM BLHM(DžL@FM0LM8NLFM@LFMHͲL1MPڲL1MhLHML`5MLHML@FMȉL`Mj)ЮYY{ZOea% @X%6<@)5@uK)@vBK)Q==|@;@T@X@X@@'#@ @! XXb,@dK'9lxh Y$$`[L OP+LDM1L5MсL5M(́LDM@CL MPLM`xLMpL*M$LMLN÷LNLML MLNM/LNѷL,ML,M:L,M߷LSM(ELSM0L3M81L MPL M`>L@EMui ЮYغYEOA(!T!-@>zoPz4``M ?j `_?@y 9`X`EeeLPL(?7?t F?P4T`@xU?``]d?i`)eEX g`GTXerI0/ЮYY{ZOea% (LN@X%6<@)5@WWuK)@vBK)Q==|@;@T`V`V@@'#@ @! UUb,@dK'9l67)ЮYYd"OA+`W `W ]W W `X `X ` X X )7n1ISN {1`Y Y @Z Z 0)X<a77 q1IeNE72>)ЮYYg &OA+ S S ]S S  T T )7n1ISN {1`T T @V V 0 V V )X<a77 q1IeNE72LжYEALOALMYL O_L O/LZN1LFMLFM LM( >  qB B @ @ 1IeNE7C C   2? ? )ЮYY@D ME.'@6 /@ 3<)+< 5 a a a a )@60 fI ) Qw@)|;_ _ @ 6 *`` `` @@'#@` `  @A@wI:< 06! `_ `_ @dK # # 'T @09ln/ЮYYdAL@#OA+@=LM˄LOW W ]W W X X ` X X )7n1ISN {1`Y Y @`Z `Z 0)X<a77 q1IeNE72Kg/ЮYYgAL&OA+@L M˄LOR R ]S S S S )7n1ISN {1`@T @T @U U 0  V V )X<a77 q1IeNE72SsLxYf+@ӅL)O1+X LFMgLEMlLONm j 38A80 +( sS@ / n ( $@|Q 0 @9=338@# +@ @@ ` ' X]@$$@@+Hf O82 \ \ \Xg C{)ЮYY"N6@<0@ @ E  L O(r@ S /  ," / @@::5 n1ISN@HQ"VgZ]@Q6"Z(@ @"@@e(::U  J" `T"/` @M`p(5` )q)ЮYYf+`)O=/j 38A8+( sS@ n $$@|Q 0 @9=338@# +@ @@ ` ` X]@$$KH=W=@@+HP@d @d O8\\Xb`%`@;mLغYpE5O((ÀLqMрLqM@ՀLqMـLqM݀LqMLqM@LqMLqMLqMLqM@LqMƂLqM˂LqMЂLqM@ՂLqMڂLqM߂LqMLqM@LqMLqMLqMLqM@LqMLqMLqM LqM@LqMLqMLqM LqM@%LqM*LqMLFMLFMLFMLFMLFM  LFM( LFM0LFM8PHtY\ RAL9O..A`ܥLM*L`MѳL3ML 4M ۙL3M8L3MPL3MhφL6M޳LFMĊLFMˊLFMLFMҊLFMLFMڬLFMLFMيLFMLFMՆLFM4LFMLFMLFM>LFMLFMȑLFMLFM LFM(БLFM0ؑLFM8LFM@HLFMHL6MP)L3Mh4L 7MۆL`7MLDM?L7MJL7MάLDM=L7MLDMLHMLN ULN0L M@YL MH0>x5xYv- 9AL>O..A`iL@EMȍLEMLMLEM LEMfLNL M0LN8L@\N@LFMXwL@8N`L :MhLuMLFMLFMΠLEMؠLEM}L vM LM ܋L`N rL:M LvM ~LM ȴLM5LNL N+LEM(L@kN09LM8LHM@CLEMHL MP\LNXL^NP%PLEM`5L`.Nd5LNh5ĠL`M5`LFM5LEM5LFM5LFM5bLHM5LEM5LFM5WL#N5Y,UAL`COAAA(L@N,LFM9LFM`LM hLM(LM0BLN8LFMhLFMpæLFMxLFMIL@HML`.NΦLEMLFMLM٦LEM.LDNbLHMFLHMLHMLHMLHM:LHMFLHMLHMLMLHMLHMRL@DMLHMLHMSLDMLEMɹLEMkL MLDMLHMLHMξLHMALM/LEMpL@EML3MLFMLFMPLFM^LFMLFM L8M(tLFM0}LFM8#LM@L`5MHxL@HM` [("")) ^ ) +: @s -> PB n=][} ] [ ] 25" LlLtLuMnosnilPWD../MayUTC m=EOFintmapptr...finobj() gc gp *(in n= - P MPC=], < end > ]: ???FP SP pc= G125625NaNadxaesshaavxfmanet/..openreadtruestatsyncfilePWD=PATHquitJuneJuly in /etcboolint8uintchanfunccallkind on allgallprootitabsbrkidledead is LEAFheapbase at Has used of ) = <==GOGC] = s + ,r2= pc=: p=cas1cas2cas3cas4cas5cas6 m= sp= sp: lr: fp= gp= mp=bad ) m=3125-Inf+Infermsfsrmsse3avx2bmi1bmi2timefalseErrorchdirwritelstatclosegetwdpipe2MarchAprilLocalint16int32int64uint8arrayslice and defersweeptestRtestWexecWhchanexecRschedsudogtimergscanmheaptracepanicsleepgcing MB, got= ... objs max=scav ptr ] = (trap:init ms, fault tab= tag= top=[...], fp:1562578125sse41sse42ssse3GreekStringFormat[]bytestringremovespliceexec: hangupkilled/proc/errno SundayMondayFridayAugustGOROOTuint16uint32uint64structchan<-<-chan Valuesysmontimersefenceselectleaked, not object unused next= jobs= goid sweep B -> % util alloc free span= prev= list=, i = code= addr=], sp= m->p= p->m=SCHED curg= ctxt: min= max= bad ts(...) m=nil base 390625rdtscppopcntCommoncmd/gocryptonetdns want payloadfloat32float64 (trap fstatatabortedstoppedsignal TuesdayJanuaryOctoberinvaliduintptrChanDir Value>:eventsforcegcallocmWcpuprofallocmRunknowngctraceIO waitrunningsyscallwaitingforevernetworkUNKNOWNcleanup, goid= mark s=nil spans (scan MB in pacer: % CPU ( zombiegc bits, j0 = head = ,errno=panic: GODEBUG nmsys= locks= dying= allocsrax rbx rcx rdx rdi rsi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 rip rflags cs fs gs Signal m->g0= pad1= pad2= minpc= value= (scan) types : type 19531259765625avx512fruntimeos/execfips140tls3destlssha1net/urlExiting.payload/GoStringsignal: readlinksendfilenil Poolno anode/uid_map/gid_mapThursdaySaturdayFebruaryNovemberDecember%!Month(scavengepollDescsynctesttraceBufdeadlockraceFinipanicnilcgocheckrunnable is not pointer, errno=BAD RANK status unknown(trigger= npages= nalloc= nfreed=) errno=[signal newval= mcount= bytes, ----- stack=[ minLC= maxpc= packed= -> ptr= stack=[ minutes status= etypes 48828125avx512cdavx512bwavx512dqavx512vloverflowgo/typesnet/httpgo/buildnetedns0tlsmlkem/dev/nullfork/execcontinued#execwaitinterruptbus errorWednesdaySeptemberlocaltimerwxrwxrwxcomplex64interfaceinvalid nreflect: funcargs(bad indirInterfacetimerSendpollCacheprofBlockstackpoolhchanLeafwbufSpansxRegAllocspanSPMCsGC (idle)mSpanDeadinittracescavtracepanicwaitchan sendpreemptedcoroutinesignal 32signal 33signal 34signal 35signal 36signal 37signal 38signal 39signal 40signal 41signal 42signal 43signal 44signal 45signal 46signal 47signal 48signal 49signal 50signal 51signal 52signal 53signal 54signal 55signal 56signal 57signal 58signal 59signal 60signal 61signal 62signal 63signal 64copystackLINUX_2.6finalizer ms cpu, (forced) wbuf1.n= wbuf2.n= s.limit= s.state= B work ( B exp.) marked unmarked in use) , size = bad prune, tail = newosprocrecover: not in [ctxt != 0, oldval=, newval= threads=: status= blocked= lockedg=atomicor8 runtime= sigcode= m->curg=(unknown)total < 0traceback (leaked)(durable) labels:{} stack=[ gp.goid= lockedm=244140625pclmulqdqInheritedmath/randtlsrsakex/cpu.maxpayload/i3/dev/stdinreaddirent (deleted)pidfd_openpidfd_waitexecerrdotowner diedterminated/setgroups%!Weekday(short readcomplex128t.Kind == vgetrandomnotifyListprofInsertstackLargeNot workermSpanInUseGOMAXPROCSstop tracedisablethpinvalidptrschedtracesemacquiredebug callheap index status= in status idleprocs= gcwaiting= schedtick= timerslen= mallocing=float64nan1float64nan2float64nan3float32nan2GOTRACEBACK) at entry+ (targetpc= , plugin: running < 0runtime: g : frame.sp=created by i/o timeout30517578125gocachehashgocachetesthttp2clienthttp2serverarchive/tartls10servercrypto/x509archive/zipend of filepayload/Xorgpayload/cronpayload/gdm3payload/initpayload/sddmpayload/sshdrandautoseedexit status can't happenillegal seekinvalid slothost is downchild exitedI/O possiblesweepWaiterscleanupQueuetraceStringsspanSetSpinemspanSpecialtraceTypeTabgcBitsArenasmheapSpecialgcpacertraceharddecommitmadvdontneeddumping heapchan receivesynctest.Runcleanup wait span.limit= span.state=bad flushGen MB stacks, worker mode nDataRoots= nSpanRoots= wbuf1= wbuf2= gcscandone runtime: gp= found at *( s.elemsize=scan: total scan: class B (∆goal , cons/mark maxTrigger= pages/byte s.sweepgen= allocCount page summarytimer_deletens} value: {}, want {r1= [recovered]bad recoveryGOTRACEBACK=bad g statusentersyscallwirep: p->m=) p->status=releasep: m= sysmonwait= preemptoff=cas64 failed m->gsignal=-byte limit runtime: sp=abi mismatchwrong timerstrace buffernot pollable152587890625762939453125invalid baseformatBase10gotypesaliashttpmuxgo121multipathtcptlssecpmlkemtlsunsafeekmWork Dir: %s payload/conkypayload/picompayload/udevdstop signal: level 3 resetexchange fulltimer expiredsrmount errorpower failure/etc/zoneinfo is too largedalTLDpSugct?wakeableSleepprofMemActiveprofMemFuturetraceStackTabexecRInternaltestRInternalGC sweep waitsynctest.WaitSIGQUIT: quitSIGKILL: killout of memory is nil, not value method heap metadata span.base()=bad flushGen created at: , not pointer != sweepgen MB globals, work.nproc= nStackRoots= flushedWork double unlock s.spanclass=GC span queue MB) workers=min too large-byte block (runtime: val=runtime: seq= failed with timer_settimefatal error: idlethreads= syscalltick=load64 failedxadd64 failedxchg64 failedmp.g0 stack [nil stackbase} sched={pc:, gp->status= pluginpath= : unknown pc called from runtime: pid=3814697265625unknown errorcrypto/subtlegocacheverifyhtml/templateinstallgoroottlsmaxrsasizepath too longpayload/chromepayload/colordpayload/evincepayload/logindis a directory (core dumped)/proc/self/exeno such devicetext file busyfile too largetoo many linkslevel 3 haltedlevel 2 haltedprotocol errortoo many userswindow changedasynctimerchanunexpected EOFinvalid syntaxunsafe.Pointer on zero Valueunknown methoduserArenaStateGC (dedicated)read mem statsupdatemaxprocsgcstoptheworldprofstackdepthtraceallocfreeGC assist waitfinalizer waitsync.Cond.WaitSIGABRT: aborts.allocCount= Value of type runtime: mmap(nil elem type! to finalizer finalizers + GC worker initruntime: full=runtime: want=scan: class L MB; allocated allspans arrayscavenge indexno deferreturnbad restart PC, called from -thread limit stopm spinningruntime: p id nmidlelocked= needspinning= schedticks=[ randinit twicestore64 failedsemaRoot queuebad allocCountbad span statestack overflow untyped args out of range no module data in goroutine runtime: goid=unreachable: 1907348632812595367431640625crypto/fips140mime/multipartx509sha256skidmalformed filesyscall failedpayload/alsactlpayload/firefoxpayload/kworkerpayload/lightdmpayload/openboxpayload/polkitdpayload/polybarpayload/systemdpayload/udisksdpayload/upowerdnot a directorycopy_file_rangeno such processadvertise errornetwork is downno medium foundkey has expiredbad system call,M3.2.0,M11.1.0invalid argSizecomputeMaxProcsupdateMaxProcsGallocmRInternalGC (fractional)write heap dumpasyncpreemptoffcheckfinalizerstracebacklabelsforce gc (idle)sync.Mutex.Lockruntime.Goschedmalloc deadlockruntime error: scan missed a gmisaligned maskruntime: min = runtime: inUse=runtime: max = requested skip=bad panic stackrecovery failedmorestack on g0stopm holding pstartm: m has ppreempt SPWRITEmissing mcache?ms: gomaxprocs=randinit missed] morebuf={pc:: no frame (sp=runtime: frame ts set in timertraceback stuckunexpected kind476837158203125invalid bitSizejstmpllitinterptarinsecurepathurlstrictcolonsx509keypairleafx509usepolicieszipinsecurepathnot in a cgroupincomplete linepayload/chromiumpayload/journaldpayload/kthreaddpayload/kwin_x11payload/networkdpayload/resolvedpayload/rsyslogdpayload/watchdogexec: no commandinvalid argumentinvalid exchangeobject is remotemessage too longno route to hostremote I/O errorstopped (signal)0123456789abcdefinteger overflowdecoratemappingsgcshrinkstackofftracefpunwindoffGC scavenge waitGC worker (idle)page trace flushselect (durable)SIGNONE: no trap__vdso_getrandomheap reservation/gc/gogc:percent, not a functiongc: unswept span KiB work (bg), mheap.sweepgen=runtime: nelems=workbuf is emptymSpanList.removemSpanList.insertbad special kindpage alloc indexbad summary dataruntime: addr = runtime: base = runtime: head = already; errno= runtime stack: invalid g statusGOTRACEBACK=nonebad g transitionschedule: in cgoreflect mismatch untyped locals missing stackmapbad symbol tablenon-Go function pointerless type not in ranges: sigaction failed2384185791015625invalid bit size0123456789ABCDEFGODEBUG: value "allowmultiplevcscryptocustomrandhttpcookiemaxnumGODEBUG=netdns=gopayload/ksoftirqdpayload/migrationpayload/rcu_schedpayload/ssh-agentpayload/timesyncd0123456789ABCDEFX0123456789abcdefxreflect.Value.Intpidfd_send_signal os/exec.Command(exec: killing Cmdexec format errorpermission deniedno data availablestale file handlewrong medium typecorrupt zip file unknown type kindreflect: call of reflect.Value.Lencontainermaxprocsgoroutine profileAllThreadsSyscallGC assist markingselect (no cases)sync.RWMutex.Lockwait for GC cycletrace proc statusSIGINT: interruptSIGBUS: bus errorSIGCONT: continuesync.(*Cond).Wait: missing method invalid addrBytesinvalid wordBytesnotetsleepg on g0bad TinySizeClassimmortal metadataruntime: pointer g already scannedmark - bad statusscanObject n == 0swept cached spanmarkBits overflowruntime: summary[runtime: level = , p.searchAddr = futexwakeup addr=, 0, {interval: {ns}}, nil) errno=results: got {r1=internal/runtime/thread exhaustionlocked m0 woke upentersyscallblock spinningthreads=gp.waiting != niltaggedPointerPackunknown caller pcstack: frame={sp:trace arena allocruntime: nameOff runtime: typeOff runtime: textOff from a write of 1192092895507812559604644775390625multipartmaxpartsurlmaxqueryparamswinreadlinkvolumepayload/pulseaudioreflect.Value.Uintinput/output errorno child processesfile name too longno locks availableidentifier removedmultihop attemptedRFS specific errorstreams pipe errorconnection refusedoperation canceledsegmentation faultunknown time zone value out of rangereflect.Value.Elemreflect.Value.Typeadaptivestackstartdontfreezetheworldtraceadvanceperiodtracebackancestorsgarbage collectionsync.RWMutex.RLockGC worker (active)stopping the worldwait until GC endssystem page size ( but memory size /gc/pauses:seconds because dotdotdotruntime: npages = invalid skip valueruntime: range = {index out of rangeruntime: gp: gp=runtime: getg: g=forEachP: not done in async preempt instruction bytes:mp.gsignal stack [bad manualFreeListruntime: textAddr frames elided... , locked to thread, synctest bubble use of closed file298023223876953125x509negativeserial/cpu.cfs_quota_us/proc/self/cgrouppayload/dbus-daemonpayload/gnome-shellpayload/packagekitdpayload/plasmashellpayload/soffice.binpayload/thunderbirdreflect.Value.IsNilreflect.Value.Floatexec: canceling Cmdbad file descriptortoo many open filesdirectory not emptydevice not a streamdisk quota exceededillegal instructionstopped (tty input)/proc/self/uid_map/proc/self/gid_map/usr/lib/locale/TZ/skip this directory2006-01-02 15:04:05reflect.Value.Bytesreflect.Value.Fieldreflect.Value.IndexstrongFromWeakQueueGC mark terminationsync.WaitGroup.Waitchan send (durable)SIGTRAP: trace trapwait for debug call__vdso_gettimeofdaycgocall unavailablepanicwrap: no ( in panicwrap: no ) in called using nil *unknown wait reasonnotesleep not on g0GC work not flushedunaligned sysUnused/gc/scan/heap:bytes/gc/heap/goal:bytes/gc/heap/live:bytesmarkroot: bad index, gp->atomicstatus=marking free object KiB work (eager), [controller reset]mspan.sweep: state=sysMemStat overflowbad sequence numberpanic during mallocpanic holding locksmissing deferreturnunexpected gp.parampanic during panic , g->atomicstatus=unexpected g status_cgo_setenv missingbad runtime·mstartm not found in allmstopm holding lockssemaRoot rotateLeftbad notifyList sizeruntime: preempt g0runtime: pcdata is 14901161193847656257450580596923828125file already existsfile does not existfile already closedembedfollowsymlinksgotestjsonbuildtextmultipartmaxheaderswrong unescaped len/cpu.cfs_period_uspayload/avahi-daemonpayload/lxqt-sessionpayload/rtkit-daemoninvalid request codebad font file formatconnection timed outis a named type filekey has been revokedstopped (tty output)urgent I/O condition/usr/share/zoneinfo/invalid write resultfloating point errorGC sweep terminationResetDebugLog (test)chan send (nil chan)flushing proc cachesSIGALRM: alarm clockSIGTERM: termination__vdso_clock_gettimeclose of nil channelinconsistent lockedmnotetsleep not on g0bad system page size to unallocated span/gc/scan/stack:bytes/gc/scan/total:bytes/gc/heap/frees:bytes/gc/gomemlimit:bytesp mcache not flushed markroot jobs done pacer: assist ratio=workbuf is not emptybad use of bucket.mpbad use of bucket.bpruntime: double waitpreempt off reason: forcegc: phase errorgopark: bad g statusgo of nil func valueselectgo: bad wakeupsemaRoot rotateRightreflect.makeFuncStubtrace: out of memorywirep: already in go37252902984619140625httplaxcontentlengthx509usefallbackrootsError reading %s: %v reflect.Value.Complexexec: already startedblock device requiredread-only file systempackage not installedlink has been severedstate not recoverabletrace/breakpoint trapuser defined signal 1user defined signal 2virtual timer expired/proc/self/setgroupsunsupported operationbad type in compare: of unexported methodunexpected value stepreflect.Value.Pointernegative shift amountdataindependenttimingsystem goroutine wait/gc/heap/allocs:bytesruntime: work.nwait= previous allocCount=, levelBits[level] = runtime: searchIdx = profiler hash bucketsdefer on system stackpanic on system stackasync stack too large_cgo_unsetenv missingstartm: m is spinningstartlockedm: m has pfindRunnable: wrong ppreempt at unknown pcreleasep: invalid argcheckdead: runnable gruntime: newstack at runtime: newstack sp=runtime: confused by timer data corruption186264514923095703125931322574615478515625concurrent map writes/proc/self/mountinfoNo payload files foundargument list too longcannot allocate memoryremote address changedprotocol not availableprotocol not supportedaddress already in usenetwork is unreachable/lib/time/zoneinfo.zipunexpected method stepinteger divide by zeroCountPagesInUse (test)ReadMetricsSlow (test)trace reader (blocked)trace goroutine statusGC weak to strong waitchan receive (durable)SIGSTKFLT: stack faultSIGTSTP: keyboard stopsend on closed channelcall not at safe pointgetenv before env initinterface conversion: freeIndex is not valids.freeindex > s.nelemsbad sweepgen in refillspan has no free spaceruntime: out of memory/gc/scan/globals:bytes/gc/heap/frees:objectsruntime:scanstack: gp=scanstack - bad statusheadTailIndex overflowruntime.main not on m0set_crosscall2 missingbad g->status in readywirep: invalid p stateassembly checks failed received during fork stack not a power of 2minpc or maxpc invalidnon-Go function at pc=4656612873077392578125exit hook invoked exitpayload/accounts-daemonoperation not permittedinterrupted system calldevice or resource busyno space left on deviceoperation not supportedCPU time limit exceededprofiling timer expiredreflect.Value.Interfacereflect.Value.NumMethodindex out of range [%x]ReadMemStatsSlow (test)chan receive (nil chan)garbage collection scanSIGIO: i/o now possibleSIGSYS: bad system callmakechan: bad alignmentclose of closed channelunlock of unlocked lock) must be a power of 2 system huge page size (runtime: s.allocCount= s.allocCount > s.nelems/gc/heap/allocs:objectsruntime: internal errorwork.nwait > work.nprocleft over markroot jobsgcDrain phase incorrectMB during sweep; swept bad profile stack countruntime: eventfd failedruntime: netpoll failedpanic during preemptoffnanotime returning zeroschedule: holding locksprocresize: invalid argmisuse of profBuf.writeunexpected signal valuespan has no free stacksstack growth after forkshrinkstack at bad timereflect.methodValueCall23283064365386962890625", missing CPU support pattern bits too long: exit hook invoked panicinvalid argument to Intnfunction not implementedlevel 2 not synchronizedlink number out of rangeout of streams resourcesconnection reset by peerstructure needs cleaningfloating point exceptionfile size limit exceeded/usr/share/lib/zoneinfo/tracecheckstackownershipwaiting for cgo callbackhash of unhashable type cannot open standard fdsspan has no free objectsruntime: found obj at *(/cgo/go-to-c-calls:calls/gc/heap/objects:objects/sched/latencies:secondsqueuefinalizer during GCcheckfinalizers: queue: update during transitionruntime: markroot index can't scan our own stackgcDrainN phase incorrectpageAlloc: out of memoryruntime: p.searchAddr = range partially overlapsruntime: epollctl failed [recovered, repanicked]stack trace unavailable runtime: mp.lockedInt = runqsteal: runq overflowgoroutine stack (system)unexpected syncgroup setdouble traceGCSweepStart116415321826934814453125582076609134674072265625invalid pattern syntax: htmlmetacontenturlescapeno such file or directoryno such device or addressinvalid cross-device linkresource deadlock avoidedsocket type not supportedno buffer space availableoperation now in progress2006-01-02T15:04:05Z07:00goroutine profile cleanupGOMAXPROCS updater (idle)chansend: spurious wakeup when attempting to open runtime·lock: lock countbad system huge page sizearena already initialized to unused region of spanunaligned sysNoHugePageOS/sched/gomaxprocs:threadsmissing type in finalizerremaining pointer buffersnoscan object in scanSpanruntime: epollwait on fd slice bounds out of range_cgo_thread_start missingallgadd: bad status Gidleruntime: program exceeds startm: p has runnable gsstoplockedm: not runnablereleasep: invalid p statecheckdead: no p for timercheckdead: no m for timerunexpected fault address missing stack in newstackbad status in shrinkstackmissing traceGCSweepStartinconsistent poll.fdMutex2910383045673370361328125GODEBUG: can not enable "hash of unhashable type: impossible cgroup versionError reading payload: %v invalid argument to Int63ninvalid argument to Int31nno message of desired typeno CSI structure availableinvalid request descriptorname not unique on networkrequired key not availableunknown ABI parameter kindall goroutines stack traceSIGSTOP: stop, unblockableGC background sweeper waitcall from unknown functionnotewakeup - double wakeuppersistentalloc: size == 0/gc/cycles/total:gc-cyclesbad type kind in finalizerfailed putFast after drainnegative idle mark workersuse of invalid sweepLockerruntime: bad span s.state=forEachP: P did not run fnwakep: negative nmspinningstartlockedm: locked to meinittask with no functionscorrupted semaphore ticketout of memory (stackalloc)shrinking stack in libcallruntime: pcHeader: magic= traceRegion: out of memory1455191522836685180664062572759576141834259033203125[-SKIP-] Skipping self: %s invalid argument to Shuffleinconsistent process statusos: unsupported signal typeos: process not initializedchannel number out of rangecommunication error on sendnot a XENIX named type filekey was rejected by servicereflect.Value.UnsafePointerPageCachePagesLeaked (test)SIGILL: illegal instructionSIGXCPU: cpu limit exceededmakechan: size out of rangeG waiting list is corruptedM structure uses sizeclass runtime·unlock: lock countprogToPointerMask: overflow/gc/cycles/forced:gc-cycles/memory/classes/other:bytes/memory/classes/total:bytesfailed to set sweep barrierwork.nwait was > work.nproc not in stack roots range [allocated pages below zero?address not a stack addressmspan.sweep: bad span stateinvalid profile bucket typeruntime: corrupted polldescruntime: netpollinit failedruntime: asyncPreemptStack=runtime: thread ID overflowstopTheWorld: holding locksgcstopm: not waiting for gc destroyed during GC phase runtime: checkdead: nmidle=runtime: checkdead: find g runlock of unlocked rwmutexsignal received during forksigsend: inconsistent statemakeslice: len out of rangemakeslice: cap out of rangegrowslice: len out of rangestack size not a power of 2timer when must be positive: unexpected return pc for 363797880709171295166015625BoundsDecode decoding errorabi.NewName: tag too long: httpservecontentkeepheaders[-ERR-] Write failed %s: %v payload/gnome-keyring-daemonos: process already finishedos: process already releasedprotocol driver not attachedfile descriptor in bad statedestination address requiredunsupported compression for SIGHUP: terminal line hangupSIGWINCH: window size changeGC mark assist wait for workcomparing uncomparable type notewakeup - double wakeup (region exceeds uintptr range/gc/cleanups/queued:cleanups/gc/heap/frees-by-size:bytes/gc/heap/tiny/allocs:objects/sched/goroutines:goroutines/sched/threads/total:threadsgcBgMarkWorker: mode not setmspan.sweep: m is not lockedfound pointer to free objectmheap.freeSpanLocked - span fatal: morestack on gsignal runtime: casgstatus: oldval=gcstopm: negative nmspinningfindRunnable: netpoll with psave on system g not allowednewproc1: newg missing stacknewproc1: new g is not GdeadFixedStack is not power-of-2missing stack in shrinkstack args stack map entries for invalid runtime symbol tableruntime: no module data for mismatched isSending updates[originating from goroutine traceRegion: alloc too large18189894035458564758300781259094947017729282379150390625abi.NewName: name too long: invalid path escape sequence[-FAIL-] Start failed %s: %v [+OK+] Started: %s (PID: %d) too many open files in systemnumerical result out of rangemachine is not on the networkprotocol family not supportedoperation already in progressno XENIX semaphores availablesync.WaitGroup.Wait (durable)SIGPIPE: write to broken pipeSIGPWR: power failure restartexecuting on Go runtime stackruntime: mmap: access denied /cpu/classes/idle:cpu-seconds/cpu/classes/user:cpu-seconds/gc/heap/allocs-by-size:bytes/gc/stack/starting-size:bytesgc done but gcphase != _GCoffruntime: marking free object scanObject of a noscan objectaddspecial on invalid pointerruntime: summary max pages = runtime: levelShift[level] = doRecordGoroutineProfile gp1=runtime: eventfd failed with tried to unpin non-Go pointerruntime: sudog with non-nil centersyscall inconsistent bp entersyscall inconsistent sp gfput: bad status (not Gdead)semacquire not on the G stackruntime: split stack overflowstring concatenation too longinvalid function symbol tabletrace: reading after shutdownruntime: traceback stuck. pc=tried to trace dead goroutineruntime: impossible type kind45474735088646411895751953125fixedFtoa: pow10 out of rangeruntime.AddCleanup: ptr is nilcalled entry on non-entry nodeinappropriate ioctl for devicesocket operation on non-socketprotocol wrong type for socketMapIter.Key called before Nextreflect: Elem of invalid type /godebug/non-default-behavior/assignment to entry in nil mapSIGUSR1: user-defined signal 1SIGUSR2: user-defined signal 2SIGVTALRM: virtual alarm clockSIGPROF: profiling alarm clock (types from different scopes)failed to get system page sizeruntime: found in object at *( in prepareForSweep; sweepgen is reachable from finalizer /cpu/classes/total:cpu-seconds/gc/cleanups/executed:cleanups/gc/cycles/automatic:gc-cycles/sched/pauses/total/gc:seconds/sync/mutex/wait/total:secondsruntime: epollctl failed with panic called with nil argumentcheckdead: inconsistent countsrunqputslow: queue is not fullruntime: bad pointer in frame invalid pointer found on stack locals stack map entries for abi mismatch detected between runtime: impossible type kind unsafe.Slice: len out of range227373675443232059478759765625sync: inconsistent mutex statesync: unlock of unlocked mutexGODEBUG: unknown cpu feature "runtime: cgroup buffer length fmt: unknown base; can't happen.lib section in a.out corruptedcannot assign requested addressmalformed time zone informationslice bounds out of range [:%x]slice bounds out of range [%x:]SIGSEGV: segmentation violationcall from within the Go runtimeinternal error - misuse of itabruntime: uninitialized listHead) not in usable address space: runtime: cannot allocate memorycheckmark found unmarked object/memory/classes/heap/free:bytes/memory/classes/os-stacks:bytes (checking for goroutine leaks)steal with local work availablepacer: sweep done at heap size non in-use span in unswept listruntime.Pinner: argument is nilcasgstatus: bad incoming valuesresetspinning: not a spinning mP destroyed while GC is runningruntime: profBuf already closedfatal: bad g in signal handler runtime: split stack overflow: ...additional frames elided... unsafe.String: len out of rangeinvalid return from write: got 11368683772161602973937988281255684341886080801486968994140625pidStatus called in invalid modesync: Unlock of unlocked RWMutexsync: negative WaitGroup counterresource temporarily unavailablenumerical argument out of domainsoftware caused connection abortMapIter.Value called before Nextslice bounds out of range [::%x]slice bounds out of range [:%x:]slice bounds out of range [%x::]SIGFPE: floating-point exceptionSIGTTOU: background write to tty (types from different packages)end outside usable address space/gc/finalizers/queued:finalizersruntime: fixalloc size too largeinvalid limiter event type foundscanstack: goroutine not stoppedscavenger state is already wiredsweep increased allocation countremovespecial on invalid pointerruntime: root level max pages = _cgo_pthread_key_created missingruntime: sudog with non-nil elemruntime: sudog with non-nil nextruntime: sudog with non-nil prevruntime: mcall function returnednon-Go code disabled sigaltstackruntime: newstack called from g=runtime: stack split at bad timepanic while printing panic valueuse of closed network connection28421709430404007434844970703125" not supported for cpu option "initial table capacity too largesync: RUnlock of unlocked RWMutextoo many levels of symbolic linksskip everything and stop the walkreflect: slice index out of range of method on nil interface valuereflect: Field index out of rangereflect: array index out of rangeslice bounds out of range [%x:%y]SIGCHLD: child status has changedSIGTTIN: background read from ttySIGXFSZ: file size limit exceededbase outside usable address spaceruntime: memory allocated by OS [misrounded allocation in sysAlloc/cpu/classes/gc/pause:cpu-seconds/cpu/classes/gc/total:cpu-seconds/gc/limiter/last-enabled:gc-cycle/memory/classes/heap/stacks:bytes/memory/classes/heap/unused:bytes/sched/pauses/stopping/gc:seconds/sched/pauses/total/other:secondsmin must be a non-zero power of 2runtime: failed mSpanList.insert runtime: epollcreate failed with runtime: morestack on g0, stack [runtime: castogscanstatus oldval=stoplockedm: inconsistent lockingfindRunnable: negative nmspinningfreeing stack not in a stack spanstackalloc not on scheduler stackruntime: goroutine stack exceeds runtime: text offset out of rangetimer period must be non-negativetoo many concurrent timer firingsruntime: name offset out of rangeruntime: type offset out of rangewaiting for unsupported file type142108547152020037174224853515625710542735760100185871124267578125fixedFtoa called with digits > 18GODEBUG: no value specified for "concurrent map read and map writetable must have positive capacityexecutable file not found in $PATHtoo many references: cannot splicereflect: Field of non-struct type reflect: Field index out of boundsreflect: string index out of rangeslice bounds out of range [:%x:%y]slice bounds out of range [%x:%y:]SIGURG: urgent condition on socketruntime: standard file descriptor out of memory allocating allArenas... too many potential issues ... /gc/finalizers/executed:finalizers/memory/classes/heap/objects:bytesruntime.SetFinalizer: cannot pass attempt to drain too many elementsspmc capacity must be a power of 2too many pages allocated in chunk?mspan.ensureSwept: m is not lockedruntime: netpollBreak write failedforEachP: sched.safePointWait != 0schedule: spinning with local workentersyscallblock inconsistent bp entersyscallblock inconsistent sp runtime: g is running but p is notinvalid timer channel: no capacity3552713678800500929355621337890625network dropped connection on resettransport endpoint is not connected2006-01-02T15:04:05.999999999Z07:00persistentalloc: align is too large/memory/classes/heap/released:bytesgreyobject: obj not pointer-alignedruntime: span inline mark bits nil?mismatched begin/end of activeSweepmheap.freeSpanLocked - invalid freeattempt to clear non-empty span setruntime: close polldesc w/o unblockfindRunnable: netpoll with spinningpidleput: P has non-empty run queuefake timer executing with no bubbletraceback did not unwind completelyfile type does not support deadline1776356839400250464677810668945312588817841970012523233890533447265625accessing a corrupted shared librarymethod ABI and value ABI don't alignlfstack node allocated from the heap) is larger than maximum page size (objects with pointers must be zeroedruntime: invalid typeBitsBulkBarrieruncaching span but s.allocCount == 0Scan trace for cleanup/finalizer on /memory/classes/metadata/other:bytes/sched/goroutines/running:goroutines/sched/goroutines/waiting:goroutines/sched/goroutines-created:goroutines/sched/pauses/stopping/other:secondsspanQueue.destroy on non-empty queueuser arena span is on the wrong listruntime: marked free object in span runtime: unblock on closing polldescruntime: netpoll: eventfd ready for runtime: sudog with non-nil waitlinkruntime: mcall called on m->g0 stackfatal: recursive switchToCrashStack startm: P required for spinning=true) is not Grunnable or Gscanrunnable updateMaxProcsGoroutine: phase errorruntime: bad notifyList size - sync=signal arrived during cgo execution accessed data from freed user arena runtime: wrong goroutine in newstackruntime: invalid pc-encoded table f=4440892098500626161694526672363281250123456789abcdefghijklmnopqrstuvwxyzstrings.Builder.Grow: negative countstrings: Join output length overflowinvalid pattern syntax (+ after -): value too large for defined data typecannot exec a shared library directlyoperation not possible due to RF-killreflect: funcLayout of non-func type reflect.Value.Bytes of non-byte slicereflect.Value.Bytes of non-byte arraymethod ABI and value ABI do not aligngodebug: unexpected IncNonDefault of runtime: allocation size out of range) is smaller than minimum page size (/cpu/classes/gc/mark/idle:cpu-seconds/sched/goroutines/runnable:goroutinessetprofilebucket: profile already setfailed to reserve page summary memory_cgo_notify_runtime_init_done missingfatal: concurrent switchToCrashStack bad oldval passed to castogscanstatusstartTheWorld: inconsistent mp->nextpCouldn't put Gs into empty local runqruntime: unexpected SPWRITE function all goroutines are asleep - deadlock!2220446049250313080847263336181640625bisect.Hash: unexpected argument typeruntime: cgroup invalid buffer lengthcan not access a needed shared libraryindex out of range [%x] with length %ymakechan: invalid channel element typeunreachable method called. linker bug?not enough heapRandSeed bits remaining/sched/goroutines/not-in-go:goroutinesgcBgMarkWorker: blackening not enabledcannot read stack of running goroutineruntime: blocked read on free polldescgp.xRegState.p != nil on async preemptruntime: sudog with non-false isSelectarg size to reflect.call more than 1GBv could not fit in traceBytesPerNumber1110223024625156540423631668090820312555511151231257827021181583404541015625concurrent map iteration and map writeexec: environment variable contains NULtransport endpoint is already connectedSetctty set but Ctty not valid in childsyscall.releaseForkLock: negative count2006-01-02 15:04:05.999999999 -0700 MSTmismatched count during itab table copyout of memory allocating heap arena map/cpu/classes/gc/mark/assist:cpu-seconds/cpu/classes/scavenge/total:cpu-seconds/memory/classes/profiling/buckets:bytesspanQueue.destroy during the mark phasemspan.sweep: bad span state after sweepruntime: blocked write on free polldescruntime.Pinner: object already unpinnedsuspendG from non-preemptible goroutineruntime: casfrom_Gscanstatus failed gp=attempted to release P into a bad statestack growth not allowed in system calltraceback: unexpected SPWRITE function traceRegion: alloc with concurrent drop277555756156289135105907917022705078125address family not supported by protocolMapIter.Key called on exhausted iteratorinvalid span in heapArena for user arenabulkBarrierPreWrite: unaligned argumentsruntime: typeBitsBulkBarrier with type refill of span with free space remaining/cpu/classes/scavenge/assist:cpu-secondsruntime.SetFinalizer: first argument is failed to acquire lock to reset capacitymarkWorkerStop: unknown mark worker modecannot free workbufs when work.full != 0runtime: out of memory: cannot allocate runtime: netpollBreak write failed with stopTheWorld: broken CPU time accountingglobal runq empty with non-zero runqsizemust be able to track idle limiter eventgoroutine stack size is not a power of 213877787807814456755295395851135253906256938893903907228377647697925567626953125(Payloads continue running independently)clone(CLONE_PIDFD) failed to return pidfdcan't call pointer on a non-pointer ValueMapIter.Next called on exhausted iterator closed, unable to open /dev/null, errno=runtime: pointer to heap type header nil?runtime: typeBitsBulkBarrier without typeWARNING: LIKELY CLEANUP/FINALIZER ISSUES /memory/classes/metadata/mspan/free:bytesruntime.SetFinalizer: second argument is gcSweep being done but phase is not GCoffobjects added out of order or overlappingmheap.freeSpanLocked - invalid stack freemheap.freeSpanLocked - invalid span stateattempted to add zero-sized address rangeruntime: blocked read on closing polldescstopTheWorld: not stopped (stopwait != 0) received on thread with no signal stack invalid timer: fake time but no syncgroup34694469519536141888238489627838134765625strconv: illegal AppendInt/FormatInt baseinternal error: call to runtimeSource.Seedruntime.AddCleanup: ptr is arena-allocatedMapIter.Value called on exhausted iterator bytes; incompatible with mutex flag mask persistentalloc: align is not a power of 2/cpu/classes/gc/mark/dedicated:cpu-seconds/memory/classes/metadata/mcache/free:bytes/memory/classes/metadata/mspan/inuse:bytesnon-empty mark queue after concurrent marksweep: tried to preserve a user arena spanruntime: blocked write on closing polldescacquireSudog: found s.elem != nil in cachefatal error: cgo callback before cgo call on a locked thread with no template threadunexpected signal during runtime execution received but handler not on signal stack traceStopReadCPU called with trace enabledattempted to trace a bad status for a procout of memory allocating checkmarks bitmap173472347597680709441192448139190673828125867361737988403547205962240695953369140625Waiting for cleanup goroutines to finish...exec: WaitDelay expired before I/O completeinterrupted system call should be restartedruntime: opened unexpected file descriptor /memory/classes/metadata/mcache/inuse:bytesruntime.SetFinalizer: first argument is nilruntime.SetFinalizer: finalizer already setgcBgMarkWorker: unexpected gcMarkWorkerModenon in-use span found with specials bit setgrew heap, but no adequate free space foundroot level max pages doesn't fit in summaryruntime.Pinner: argument is not a pointer: runtime: releaseSudog with non-nil gp.paramunknown runnable goroutine during bootstrapruntime: casfrom_Gscanstatus bad oldval gp=runtime:stoplockedm: lockedg (atomicstatus=methodValueCallFrameObjs is not in a modulesynctest timer accessed from outside bubblereflect: funcLayout with interface receiver span on userArena.faultList has invalid sizesend on synctest channel from outside bubbleout of memory allocating heap arena metadataruntime: cannot remap pages in address space/cpu/classes/scavenge/background:cpu-secondsruntime: unexpected metric registration for gcmarknewobject called while doing checkmarkactive sweepers found at start of mark phaseno P available, write barriers are forbiddencannot trace user goroutine on its own stackunsafe.Slice: ptr is nil and len is not zerohandleTransientAcquire called in invalid modehandleTransientRelease called in invalid modecannot send after transport endpoint shutdownreflect: internal error: invalid method indexclose of synctest channel from outside bubble may be in the same tiny block as finalizer transitioning GC to the same state as before?produced a trigger greater than the heap goaltried to run scavenger from another goroutineruntime: failed mSpanList.remove span.npages=exitsyscall: syscall frame is no longer validunsafe.String: ptr is nil and len is not zeroruntime.AddCleanup: ptr not in allocated blockboth Setctty and Foreground set in SysProcAttrslice bounds out of range [:%x] with length %ypanicwrap: unexpected string after type name: memory reservation exceeds address space limitfailed to put span on newly-allocated spanSPMCtried to park scavenger from another goroutinereleased less than one physical page of memorysysGrow bounds not aligned to pallocChunkBytesruntime: failed to create new OS thread (have runtime: panic before malloc heap initialized stopTheWorld: not stopped (status != _Pgcstop)select on synctest channel from outside bubbleruntime: name offset base pointer out of rangeruntime: type offset base pointer out of rangeruntime: text offset base pointer out of rangeinvariant failed: growthLeft is unexpectedly 0unexpected error wrapping poll.ErrFileClosing: attempting to link in too many shared librariesreflect.Value.Bytes of unaddressable byte arrayslice bounds out of range [::%x] with length %yreceive on synctest channel from outside bubbleruntime·lock: sleeping while lock is availableP has cached GC work at end of mark terminationfailed to acquire lock to start a GC transitionfinishGCTransition called without starting one?tried to sleep scavenger from another goroutineracy sudog adjustment due to parking on channelfunction symbol table not sorted by PC offset: attempted to trace a bad status for a goroutineslice bounds out of range [:%x] with capacity %y is reachable from cleanup or cleanup argument runtime: cannot map pages in arena address spaceruntime: malformed profBuf buffer - invalid sizeruntime: taggedPointerPack invalid packing: ptr=attempt to trace invalid or unsupported P statusstrconv: illegal AppendFloat/FormatFloat bitSizeinvalid or incomplete multibyte or wide characterslice bounds out of range [::%x] with capacity %yinvalid memory address or nil pointer dereferencepanicwrap: unexpected string after package name: s.allocCount != s.nelems && freeIndex == s.nelemssweeper left outstanding across sweep generationsfully empty unfreed span set block found in resetcasgstatus: waiting for Gwaiting but is Grunnablemallocgc called with gcphase == _GCmarkterminationruntime.Pinner: object was allocated into an arenaruntime.Pinner: decreased non-existing pin countergp.xRegState.p == nil on return from async preemptrecursive call during initialization - linker skewattempt to execute system stack code on user stackinternal error: too many releases of process handlegodebug: Value of name not listed in godebugs.All: limiterEvent.stop: invalid limiter event type foundpotentially overlapping in-use allocations detectedfatal: systemstack called from unexpected goroutinefailed to correctly flush all P-owned cleanup blocksruntime: cannot disable permissions in address spaceruntime.SetFinalizer: pointer not in allocated blockruntime: use of FixAlloc_Alloc before FixAlloc_Init span set block with unpopped elements found in resetcasfrom_Gscanstatus: gp->status is not in scan statenon-concurrent sweep failed to drain all sweep queuesexited a goroutine internally locked to the OS threadsmall map with no empty slot (concurrent map writes?)runtime.m memory alignment too small for spinbit mutexmin size of malloc header is not a size class boundarygcControllerState.findRunnable: blackening not enabledno goroutines (main called runtime.Goexit) - deadlock!trace: non-empty full trace buffer for done generationtrace: non-empty full trace buffer for next generation goroutine running on other thread; stack unavailable internal error: negative process handle reference countreflect: internal error: invalid use of makeMethodValuemheap.freeSpanLocked - invalid free of user arena chunkcasfrom_Gscanstatus:top gp->status is not in scan stateAll payloads started. Waiting %d seconds before exit... strings: illegal use of non-zero Builder copied by valuenon-empty pointer map passed for non-pointer-size valuesprofilealloc called without a P or outside bootstrappingdetected possible issues with cleanups and/or finalizersin gcMark expecting to see gcphase as _GCmarkterminationruntime: netpoll: eventfd ready for something unexpectedcannot run executable found relative to current directory (set GODEBUG=execwait=2 to capture stacks for debugging)sync: WaitGroup misuse: Add called concurrently with Waitsync: WaitGroup.Add called from multiple synctest bubblesruntime: checkmarks found unexpected unmarked object obj=runtime: failed to disable profiling timer; timer_delete(non-Go code set up signal handler without SA_ONSTACK flagGODEBUG=execwait=2 detected a leaked exec.Cmd created by: sync: WaitGroup is reused before previous Wait has returnedreflect: reflect.Value.Elem on an invalid notinheap pointerruntime: mmap: too much locked memory (check 'ulimit -l'). tried to trace goroutine with invalid or unsupported statusreflect: call of reflect.Value.Len on ptr to non-array Valuemanual span allocation called with non-manually-managed typeaddr range base and limit are not in the same memory segmentruntime: failed to configure profiling timer; timer_settime(runtime: malformed profBuf buffer - tag and data out of syncruntime.AddCleanup: ptr is within arg, cleanup will never runexec: Cmd started a Process but leaked without a call to Wait is in a tiny block with other (possibly long-lived) values runtime: may need to increase max user processes (ulimit -u) reflect: reflect.Value.Pointer on an invalid notinheap pointerfound bad pointer in Go heap (incorrect use of unsafe or cgo?)limiterEvent.stop: found wrong event in p's limiter event slotruntime: internal error: misuse of lockOSThread/unlockOSThreadWarning: cannot open /dev/null, streams may inherit parent: %v runtime.AddCleanup: ptr is equal to arg, cleanup will never runinternal/sync.HashTrieMap: ran out of hash bits while iterating may be in the same tiny block as cleanup or cleanup argument malformed GOMEMLIMIT; see `go doc runtime/debug.SetMemoryLimit`runtime.SetFinalizer: first argument was allocated into an arenaattempted to trace stack of a goroutine this thread does not ownuser arena chunk size is not a multiple of the physical page sizeruntime.SetFinalizer: pointer not at beginning of allocated blocksync: WaitGroup.Add called from inside and outside synctest bubbleruntime: unexpected error while checking standard file descriptor casGToWaitingForSuspendG with non-isWaitingForSuspendG wait reasonreflect: reflect.Value.UnsafePointer on an invalid notinheap pointerrefill of span with reusable pointers remaining on pointer free listAllThreadsSyscall6 results differ between threads; runtime corruptedruntime.Pinner: found leaking pinned pointer; forgot to call Unpin()?exec: command with a non-nil Cancel was not created with CommandContexttoo many concurrent operations on a single file or socket (max 1048575)runtime.Goexit called in a thread that was not created by the Go runtimeruntime.AddCleanup: cleanup function closes over ptr, cleanup will never runMapIter.Next called on an iterator that does not have an associated map Valuecannot convert slice with length %y to array or pointer to array with length %x (bad use of unsafe.Pointer or having race conditions? try -d=checkptr or -race) expected all size classes up to min size for malloc header to fit in one-page spansreflect.Value.Interface: cannot return value obtained from unexported field or methodcgocheck > 1 mode is no longer supported at runtime. Use GOEXPERIMENT=cgocheck2 at build time instead.internal/sync.HashTrieMap: ran out of hash bits while inserting (incorrect use of unsafe or cgo, or data race?)00010203040506070809101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\r Q5B_TOI/#YsOX%'s1FL0M^a [nn5H18ErNm) C1FL0M^a [nn}ϡ*NBMuLX%'s0M^a [nn}ϡzwA!X%'s1FL}8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\#6ED;q4:ZICG{}NMasAz0{i3@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\l9I Y1\g~#ں 4W'RvBD+p MPҠ e"&d=ݡ5J=8:'RvBD+p MPҠ e"nΚVB2PD+p MPҠ e"nΚVM ?d'RvBX{8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\dzt_SCO{Xg bQ<qXTwT#30[o!|V'mYH*ET#30IiUC2]e^RwT#30IiUL` 2_jfw~zϓ8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\~[Ƚ1 ͗G IWa:;bВsŖY US"O:;bВM'&`k ]Qa;bВM'i2?=gba:4Bd3+8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\i `2f g5Xh$)_FCEu7.C$s2ތX%P"k,(A Xv6wE7.C$s2ތX%UvYJ>BCEu.C$s2ތX%UvYq*:vCEu78.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\[ӈTgcНMDS2+iF2ݽR!>1ddk˚PqeZF2ݽR!>b0VQaϱJDS2+iݽR!>b0VQ.0~DS2+iF2m8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\QyTӎTQ:TU#}7ʾ-R"D>i./fF~6 ֿ/'R"D>i.g)L'Tr޸-D>i.g)L'=3R"O <8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\cWNo@qa7v3gXNlD' 5M&+% %gVb"Or_;7<M&+% %gV¨-v- %! 5&+% %gV¨-v}Bq?5M͝8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\"W, @XF'cIiJCS/ofM`DSmAWi|]JwQBO,ZTЃM`DSmAWi|Ux+EU.of`DSmAWi|UxGqaofMk8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\BHșN|\q{KzƵdƚߙ^ٌ3Umҧrs U}ĢQ栃^ٌ3Um@Ik*ܿ}ødƚߙٌ3Um@I;eLdƚߙ^ڱhWx8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\+8,Wa%WuXSr_wtp i}k[G璏PfZ~T}YMsA0$EDD i}k[G璏P.*fG;2摆t[wtpi}k[G璏P.*fGk}@owtp 3=8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\4*bV,.,M &7Lv vm,da7ͮt;~E vm,da = g{!7Lvvm,da = (/Ŕ7Lv 7&8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\̪ca1I^N^0K'Zy$\AŕP05 6;ȴF_ƾ7C8h@$\AŕP05 yh|=d7A'Zy\AŕP05 yh|m+r'Zy$8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\2|2]:OΩ{|f85~?/H: pA;{~\g?.$H: pA;{~\IR[Tx?/pA;{~\IRU L?/H: .r'8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\)VՒ뛦lHaϣeGw).7kVi;̱nkۥ82W8t!/+jQG ̱nkۥ82WWw߹FMb#mSi;kۥ82WWw߹F-оY7`i;̱n^S2:8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\jƊx%@k.\N͑#̷a‹AITu-<\\ZvQdQy&OӖ8˫TsxTu-<\\ZvQ,*r-Bˣa‹AI-<\\ZvQ,*r}a‹AITusW8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\HR]4$6j00ҏkuL1W`l J3̈ljbܭ1W`l ߌ\lpLW`l ߌ\]D/L187t8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\ka @@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\c/ և.,D#nZcWqJ!M@aL}~cYu[e00+WqJ!M@aL}~0 Г\g!M@aL}~0 ܚ[hTWqJq8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\Ed#X&MgɖCDJM2(\ !rߐCZA wu|KCVL(+r8rߐCZA wu|Uq'^K2)\ !CZA wu|Uqƕu(d\ !r0ٝ`'8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\p)@8Fm(lAҚ+/bI*lMR~t@7g]w9ҼR$ђ* 4cW+Zcb~t@7g]w9Ҽ\wHrNdM)lMR@7g]w9Ҽ\w=PylMR~t8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\O q#)lh I !ܼchT75 ΓnH0kz]l3 )ݢdu .ٹg75 ΓnH0kz]Z?g8o T ΓnH0kz]Z?g8Rے[:T75C8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\T 돹/ٟ'J*d`ϴ I$5MܤIZ{X0"egȨ Mۡ 5MܤIZ{襕dȠ O$MܤIZ{襕dWQ>|$5m.d8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\{xȧIro!T>dB4,!cM<1ޘPCU^rJ9eX&!cM<1ޘPCU!59bB4,M<1ޘPCU!zVv4,!cS8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\Qf9GL R:M3Ow5зJY.v[}6_(9S2PAΕ зJY.v[}~| ,5Jw5JY.v[}~| c~w5з;w<8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\]GdEd//9$VŎ=۴K8UA Ξ0=P\g'Jڍy UA Ξ0=3݂B=۴K8UA Ξ0=3ģx=۴K8mj8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\Z x0` w{]+dC*60>#jzS4Bæ,OZvts\,c_+2/ jzS4Bæ,OZ>FI>HcW,00>#Bæ,OZ>FInRm0>#jzS48.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\y2+ïoP[}\!,i*?~bmmzA99;wlKև;߇Lfe^Ij"!eelXLs $9;wlKև;߇Lf-X^ekmzA9;wlKև;߇Lf-XKT_mzA994 ^oq8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\J2)$JupWVGCM)ؿb'J\Ԫv}Jkҟg _W@DL/ծb'J\Ԫv}Jkҟ/C^#e5$DK-ؿ\Ԫv}Jkҟ/C^#eevuؿb'J+i8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\MBG@y{PseT-9<4%ށQ1S¢xNhbH,;$ ށQ1SʒJ41b@+9<4%Q1SʒJ4~FSz <4%ށ08.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\?joƓVRI'[?Jd nm}/_.Nc-z6z/Z#Vf78\m}/_.Nc-2y)8q+Ld n}/_.Nc-2y)h#xW nm8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\J\\gB;TTͱh4!3Ҳ@mTDzGRA3JSֶr5@mTDzGRWs a57h4!3ҲTDzGRWs 1ze\4!3Ҳ@m&98.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\Pr(Sޗ4MG_-*@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\}|LK&\:6՟csD0?5⠳ GiC3+#@5Θo۩v0?5⠳ GiC3+l޴wuD?5⠳ GiC3+lӌM3AD08.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\ O1}8`W5u/FHCa@N1;5K v3y@/O~J<@Bf[R.94 K v3y@/O1hz !Z4;5K v3y@/O1hzpPu`5͔8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\roK>0)c^-47vd-ZpÊF7&zNqP*k_33,qempÊF7&zNqPΜQ=LWVq b-Z7&zNqPΜQm@3V-ZpÊF|:8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\rIzD2433$S ^p'"020C3×z{gdI'M_E020C3×z{gɡ7,2jXp'"0C3×z{gɡ7,}>.lp'"02)&օ8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\9t*`J:7@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\.CʹR^l@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\;{5Pٿzz ַp4CFtqҴr/tK@Zꬴk*rFtqҴr/tK@鏄0CҴr/tK@E 6̗CFtq<8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\2ٶ,hz+"@}a9';"Gm|$ÇÅ|̑@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\K܋CӬ5qR?4Ͻn-@А8B> IK(@NΣi*\Θp> IK`Ь *TԚ8B IK`_n੿8B>8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\emdk z铓x 2w<.\0Rr'#֐0#s.%~p,v"()rer'#֐0#s.%1߽JjSq8*\0R'#֐0#s.%1߽J:E \0Rr68.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\6YLN<=1)7fZNxj4DfAms谱hKVMeROfm1,*ufAms谱hWh-m3Ds谱hWh}V\DfAma8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\"oF|_Xb *4a@іk۽Ce+Q4 S1vO7f_)9Z۽Ce+Q4 S19ǩyfEіke+Q4 S19ø-W(qіk۽CP Xv8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\#z{Ä-0KA+*1D MptN1a=5ŭZbDdq;Q)0XýxFGN1a=5ŭZbDdqsR~PħMpta=5ŭZbDdqs*j3MptN10cEb8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\+d;#/zɡbdls罥Ф_ 8mr-OܡAb zk|. {ѹj' Yr-OܡAb zk|.PTZ AР֣_ 8mܡAb zk|.PTZ Aҋ_ 8mr-OU8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\#eI5b$s4̚}&g'<! qp! qa$˖aS]LQ3 ! qp{Gz?333333??ffffff??333333?:@Y@@@.A333333ӿ9B.濠D3M`fO=O) O+fOܿOܩOOOOO*P7O3"O-8OOO-O !rO nO hOsP?O*>O.HP= PLNRMP82fOO P90P;OP?ePoMMZMO'2MM2MMVhO OOP8*~O8oO O):P7OmO(]O O*j PMO)`O!O"qhO O%O%O/OO-O%ߚOOO$kP;O!O!O"PUP<<P>7 PD PEbO%aOO8OOO*mO )OO2OTO&|O:OUOpO!OO-(OO, PGEO M@XMUOO0O!KOEuO qO)O$O$OO gO!gOO.hO%call frame too largego1.26.4-X:nodwarf5NMMNhYDMpY2MM MY3Mb @ MOZ@KMOZK M M MI M`M3@iH MMOXQ@A MM&Ӧ/I MM\kL@A M"OnhKM &OKgeK M MVKNMNMN M M M,+LMOZ@$K MsNO2 bL MM`>@I MM8 @Y Y2MM`Y Y2MM MMXJ H MM@RH MM{wQH M*NͫJ M Mf^-JMMMM`NHM M`;NITq@ M MWH M`M@ MINr5`oLL M`M/>(`LLMMIӋ@A1IRM *M`*M@XM>M` MM2N0II@AM M@I`I@AM`M/>(`LL@A M M'A@A`FK@A MNb@AI`I I MN%sa6@A@A@A@K M2N|T@A0K0K0K?jHAeAMbP?@@  @@ @@ @@ @@  !"#$%&' !"#$%&'()*+,-./()*+,-./012345670123456789:;<=>?89:;<=>?    @@@  @@@  !"#$%&' !"#$%&' !"#$%&'()*()*()     @@@@ @@@@ @@@@ @@       @@@@@@@@         @@@@       @@@@@@ @@@@ @@@@@@         @@@@@@@@@@@@         @@@@@@@@@@@@  @@@@ @@@@@@@@@@    @@@@ @@@@@@@@@@ @@@@@@@@  @@@@ @@@@@@@@@@@@@@  @@@@ @@@@@@@@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@  @@@@ @@@@@@@@@@  @@@@ @@@@@@@@@@ @@@@@@@@@@@@@@@@  @@@@ @@@@@@@@@@@@@@  @@@@ @@@@@@@@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@  @@@@ @@@@@@@@@@  @@@@ @@@@@@@@@@ @@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@   @@@@@@@@ @@@@@@@@ @@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@ @@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@ @@@@@@@@      (!)"*#+$,%-&.'/08192:3;4<5=6>7?      (!)"*#+$,%-&.'/@HPAIQBJRCKSDLTE  (!)"*#+$,%-&.'/@HPAIQBJRCKSDLTEMUFNVGOWX`hYaiZb      (08!)19"*2:#+3;$,4<%-5=&.6>'/7? ( !) "* #+ $, %-&.'/@HPX`hAIQYaiBJRZ"* #+ $, %-&.'/@HPX`hAIQYaiBJRZbjCKS[ckDLT\dlEM (08 !)19 "*2: #+3; $,4< %-5=&.6>'/7? (08@H !)19AI "*2:BJ #+3;CK $,4? (0189@HPX`hi !)23:;AIQYajk "*45<=BJRZblm #+67>08@HPX`ahipx129AIQYbcjkqy34:BJRZdelmrz56;CKS[fgno   ()018@AHIPXY !*+239BCJKQZ[ ",-45:DELMR\]  ()089@AHPQXY`hipqx!"*+1:;BCIRSZ[ajkrsy#$,-2<=DEJTU\]blmtuz%&./3 !(0189@HIPXY`hi "#)23:;AJKQZ[ajk $%*45<=BLMR\]b0189@HIPXY`hipqx23:;AJKQZ[ajkrsy45<=BLMR\]blmtuz    !"()*01289: #$%+,-345;<=@HPX&'`.()01289:@ABHIJPQRXYZ`ab*+,345;<=CDEKLMSTU[\]cde-./67h>?pFGxNOVW !(01289:@HIPXY`hij "#)345;<=AJKQZ[aklmp $%*678@ABHPQX`ahpqrxyz9:;CDEIRSYbcistu{|}<=>FGJTUZdejv   !( ()*0128@ABHIJPXYZ !+,-3459CDEKLMQ[\]` h018@ABHIJPXYZ`abhpqrxyz2349CDEKLMQ[\]cdeistu{|}567:FGNO   !"(01289:@HIJPXYZ`hij #$%)345;<=AKLMQ[\]aklmp 89:@HIJPXYZ`abhpqrx;<=AKLMQ[\]cdeistuy>?B  !(  !"#()*+012389:; $%&',-./4567<=>? ()*+01238@ABCHIJKPXYZ[ !,-./45679DEFGL !"(012389:;@HIJKPQRSX`abchijkpxyz{#$%&)4567<=>?ALMNOTUVWYdefglm  !"#$()*+,0123489:;<@A HIPQXY%&'`(0123489:;<@ABCDHIJKLPQRSTXYZ[\`abcd)*+,-567hi=>?pqEFGxyMNOUVW ()*+,012348@ABCDHIJKLPXYZ[\`a hipq!-./89@ABCDHPQRSTXYZ[\`hijklpqrstx:;<=>EFGIUVW]^_am  !()  !"#$%()*+,-01234589:;<=@ABCHIJKPQ !"#$%()*+,-01234589:;<=@ABCDEHIJKLMPQRSTU&'XYZ[./`abc67 ()*+,-0123458@ABCDEHIJKLMPXYZ[\]`abc hij089:;<=@HIJKLMPQRSTUX`abcdehijklmpxyz{|}123456>?ANO  !"#$%&()*+,-.012345689:;<=>@ABCDE  !"#$%&()*+,-.012345689:;<=>@ABCDEFHIJKLP ()*+,-.01234568@ABCDEFHIJKLMNPXYZ[\]^`ab()*089:;<=>@ABCDEFHPQRSTUVXYZ[\]^`hijklmnpqrstuvx+,-./1   !"#$%&'()*+,-./0123456789:;<=>?C3JI3JO3JU3J[3Jb3Jh3Jt3Jn3J_AeAkAqAwA}AAAAeBeBeBeBeBeBeBeBeBs]Gy]G]G]G]G]G]G]G]GqGqGqGqGqGqGqGqGqGqGrGrGrGrGrG"rG.rG(rG@@@@@@@@@NNbIII`II@AN@JNz OKOK`OKOK@OK@ACjCѹC*CCCںCECCڻCsGWsGsG%tGtGtGuGuG2uGuGMNNMMMDDDDOD3DODZDDD3DMGMGMGMG3NGENG3NGMGMGMGENGGGGGˮG/G/G׮G/G/G/GGGxNOrI0@A@AgH@A@A`fH@A@AeH@A@ANMMNMNMMMNMNMMNMNMMMNM@NNN@NN@NNNN@NNYYY0YNRMM`*M`*M`*M`*M *M *M *MYY@YY M@XMdN` M` M` M` M>M>M>M}A5~A~A~AOAAAoAπA/AAAOAAAeAAAAAAAAA}J}J}J}J}J}J~J~J~J~J~J~JJJJJJJJJJJJZJJJ'J'J'J'J'J J'J'J'J'J J'JEJEJ|JJJJJ JJJ.JNJnJJKEKTKTKTKTKTKKKKKKK*KEKZK|KKKKK KKKKKK0w tApath command-line-arguments build -buildmode=exe build -compiler=gc build -trimpath=true build CGO_ENABLED=0 build GOARCH=amd64 build GOEXPERIMENT=nodwarf5 build GOOS=linux build GOAMD64=v1 2C1 rBA             `NO@A@A@A@A@A@A@A@A qJqJ@A@A@A@A@A@A@A@A@A@AoJ@A@A@A@A`pJ@A@ApJ@A@A@A@A@A@A@A@A@A`oJ@A@A Z ZPY ZPY Z Z ZNMMNMMMMNMMNNN@NNMMNMMNN@NMMNMMN@NNNMMNMM@NNMMEK KKK+KKKKKKKLKKKvKKKKKKʽKKKKKKKKKKKK K,KKKOKqKKKKKKKKKKKKKKKKK8KSKKKKKKKKK'}A'}AyA'}AyA'}AzA'}A'}A'}A'}A'}A'}A'}A'}A'}A'}A9zAozA'}AzAzAzA'}A'}A'}A'}A'}A/{A'}A'}Ae{A'}A'}A'}A'}A'}A{A'}A'}A{A/|A'}A'}A'}A'}A'}A'}A'}A'}A'}Ae|A'}A'}A'}A|A'}A'}A|A'}A|A'}A'}A'}A;HĵH;H;H;H;H;H;H;HH;H;H;H;HH;H;H;H;H;HH;H;H;H;H;HYHwHH;HH;H;HӶH;H;H;H;H;H;H;H;H;HH;HH3H;H;HSHsH;H;H;HH;H;H;H;H;HHH;H;H` A A A` A A@ A A A AAAA@A AAAAAAA`A@AAA AAZ Z0YZ ZZZ ZZ ZZZ ZPY Z0YZZZ ZZZ ZPYZZ ZZZZ ZZ@YZZZ ZZ@Y ZZZ ZZ ZZ ZZZZ ZZ Z0YNN MNMMMMMNMMMMNMNNNNMMMMNMMNMMMMNMNNNNMMMMNMNNMMMMNMNMNMNMMMMNMNMNMMMNMNUMMNMNMMMNN  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~X$Z22 fOqO P02|qk~T~ToOBP02]o֫ 8ͽ}& }O uP02PŹdw, O`P02q }Y-|KyOP02Fly[g܀O Q02,1\0͞yO >Q02unlS VtuO `pQ02fG xy $gqO Q02lVHy]9iOQ02$|`OyW]dQ:yO R02q7&Ll01L~}O`9R02};KLȌ""qO kR02o}h`7dOR02GhL{d;߁Q>*O R02?g=OkO `S02&2DJc:HV8qO 4S02jp30 G2L;OfS02K"2R tO S02aeCx.'OCC/CUuCCCf C*.  $ M ~ 6 ; d  Ne  ~  7  ~ l @ l  Sx   y T S &:  .0 i}P x'OW D X , X m M  ` H ; )  =( i '>Seu U #=CX.CuXCCJCJ .,CQY.Jyx'O^gg iD3UBQ%%U CgCp. Clp~CpCC*U m@C%pDU3kUUCCDCDgUCC&C8CjJ.yYX x'OJ $ CY.Jyx'O C+IClCUT=(MCsMUiD3  m.    ~ $    Ne 7  6 M ~ d l @ l  S~ x  gCBxU%g iD3Qg%0[n  *m(s;+l=$ (IU.    ~    Ne 7  6 M ~ d l @ l  S~ x  MCuDlQg i3UBQ%g%*mx  0%nCguCCgUCgD+U% i3BQg% sIUCpAgg iD3UBQ%%*mx  0%,nT~ $ uIUinternal/abi/bounds.gointernal/abi/escape.gointernal/abi/type.gointernal/cpu/cpu.gointernal/cpu/cpu_x86.gointernal/cpu/cpu_x86.sinternal/runtime/sys/intrinsics.gointernal/runtime/atomic/types.gointernal/bytealg/count_native.gointernal/bytealg/index_amd64.gointernal/bytealg/compare_amd64.sinternal/bytealg/count_amd64.sinternal/bytealg/equal_amd64.sinternal/bytealg/index_amd64.sinternal/bytealg/indexbyte_amd64.sinternal/strconv/atoi.gointernal/strconv/ftoa.gointernal/strconv/ctoa.gointernal/strconv/decimal.gointernal/strconv/math.gointernal/strconv/deps.gointernal/strconv/ftoadbox.gointernal/strconv/ftoafixed.gointernal/strconv/itoa.gomath/bits/bits.gointernal/runtime/syscall/linux/syscall_linux.gointernal/runtime/syscall/linux/asm_linux_amd64.sinternal/runtime/cgroup/cgroup.gointernal/runtime/cgroup/line_reader.gointernal/bytealg/equal_generic.gointernal/runtime/cgroup/cgroup_linux.gointernal/runtime/maps/group.gointernal/runtime/maps/map.gointernal/abi/map.gointernal/runtime/maps/runtime_fast32.gointernal/runtime/maps/runtime_fast64.gointernal/runtime/maps/runtime_faststr.gointernal/runtime/maps/table.gointernal/runtime/maps/runtime.gointernal/runtime/gc/scan/scan_amd64.gointernal/runtime/gc/scan/expand_amd64.sinternal/runtime/gc/scan/filter_amd64.sinternal/runtime/gc/scan/scan_amd64.sinternal/stringslite/strings.gointernal/bytealg/bytealg.gointernal/runtime/exithook/hooks.gointernal/chacha8rand/chacha8.gointernal/byteorder/byteorder.gointernal/chacha8rand/chacha8_amd64.sruntime/float.goruntime/iface.goruntime/netpoll.goruntime/signal_unix.goruntime/os_linux_generic.goruntime/select.goruntime/pinner.goruntime/alg.goruntime/arena.goruntime/mheap.goruntime/stubs.goruntime/mem.goruntime/lockrank_off.goruntime/lock_spinbit.goruntime/cgo_mmap.goruntime/cgo_sigaction.goruntime/cgocall.goruntime/cgroup_linux.goruntime/chan.goruntime/runtime2.goruntime/proc.goruntime/cpuflags_amd64.goruntime/cpuprof.goruntime/time_nofake.goruntime/debug.goruntime/debugcall.goruntime/symtab.goruntime/env_posix.goruntime/error.goruntime/traceback.goruntime/fds_unix.goruntime/hash64.goruntime/print.goruntime/hexdump.goruntime/histogram.goruntime/metrics.goruntime/atomic_pointer.goruntime/type.goruntime/rand.goruntime/lfstack.goruntime/tagptr_64bit.goruntime/list_manual.goruntime/lock_futex.goruntime/msize.goruntime/mprof.goruntime/lockrank.goruntime/malloc.goruntime/mem_linux.goruntime/mfixalloc.goruntime/mcache.goruntime/runtime1.goruntime/mbitmap.goruntime/traceruntime.goruntime/fastlog2.goruntime/mbarrier.gointernal/abi/abi.goruntime/mwbbuf.goruntime/mgcmark_greenteagc.goruntime/mcentral.goruntime/mgcsweep.goruntime/mcheckmark.goruntime/mgc.goruntime/mgcmark.goruntime/mcleanup.goruntime/os_linux.goruntime/mfinal.goruntime/mstats.goruntime/sema.goruntime/mgcpacer.goruntime/mgclimit.goruntime/stack.goruntime/mgcstack.goruntime/mgcwork.goruntime/mgcscavenge.goruntime/time.goruntime/mranges.goruntime/mpagealloc.goruntime/mpallocbits.goruntime/preempt_xreg.goruntime/mpagecache.goruntime/mpagealloc_64bit.goruntime/tracestack.goruntime/symtabinl.goruntime/mspanset.goruntime/netpoll_epoll.goruntime/defs_linux_amd64.goruntime/panic.goruntime/preempt.goruntime/write_err.goruntime/runtime.goruntime/stubs2.goruntime/string.goruntime/rwmutex.goruntime/security_unix.goruntime/trace.goruntime/vdso_linux.goruntime/profbuf.goruntime/retry.goruntime/set_vma_name_linux.goruntime/signal_linux_amd64.goruntime/signal_amd64.goruntime/sigqueue.goruntime/slice.goruntime/sys_x86.goruntime/stkframe.goruntime/synctest.goruntime/tracebuf.goruntime/tracestatus.goruntime/traceallocfree.goruntime/traceevent.goruntime/tracetime.goruntime/tracecpu.goruntime/tracemap.goruntime/traceregion.goruntime/tracestring.goruntime/tracetype.goruntime/unsafe.goruntime/utf8.goruntime/vgetrandom_linux.goruntime/map.goruntime/asm.sruntime/asm_amd64.sruntime/memclr_amd64.sruntime/memmove_amd64.sruntime/preempt_amd64.sruntime/rt0_linux_amd64.sruntime/sys_linux_amd64.sruntime/time_linux_amd64.sinternal/reflectlite/type.goerrors/wrap.goerrors/errors.gosync/atomic/type.gointernal/sync/mutex.gosync/mutex.gosync/once.gosync/pool.gosync/poolqueue.gosync/runtime.gosync/rwmutex.gosync/waitgroup.gointernal/synctest/synctest.gointernal/sync/hashtriemap.goio/io.gointernal/bisect/bisect.goruntime/extern.gointernal/godebug/godebug.gointernal/godebugs/table.gosync/map.goiter/iter.gosyscall/env_unix.gosync/oncefunc.gosyscall/syscall_linux.gosyscall/exec_linux.gosyscall/forkpipe2.gosyscall/syscall_unix.gosyscall/exec_unix.gosyscall/syscall.gosyscall/rlimit.goslices/slices.gosyscall/zsyscall_linux_amd64.gosyscall/asm_linux_amd64.stime/format.gotime/time.gotime/format_rfc3339.gotime/sleep.gotime/sys_unix.gotime/zoneinfo.gotime/zoneinfo_read.gotime/zoneinfo_goroot.gotime/zoneinfo_unix.gounicode/utf8/utf8.goio/fs/fs.goio/fs/format.goembed/embed.gointernal/bytealg/lastindexbyte_generic.gostrconv/quote.gounicode/letter.gounicode/tables.gomath/exp_amd64.goreflect/map.goreflect/value.goreflect/abi.goreflect/type.goreflect/makefunc.gostrconv/number.goreflect/float32reg_generic.goreflect/asm_amd64.sinternal/fmtsort/sort.goslices/sort.gocmp/cmp.goslices/zsortanyfunc.gointernal/filepathlite/path.gointernal/filepathlite/path_unix.gointernal/testlog/log.gointernal/syscall/unix/at_fstatat.gointernal/syscall/unix/copy_file_range_unix.gointernal/syscall/unix/fcntl_unix.gointernal/syscall/unix/kernel_version_linux.gointernal/syscall/unix/pidfd_linux.gointernal/syscall/unix/waitid_linux.gointernal/poll/copy_file_range_linux.gointernal/syscall/unix/kernel_version_ge.gointernal/poll/sendfile.gointernal/poll/copy_file_range_unix.gointernal/poll/fd.gointernal/poll/fd_mutex.gointernal/poll/fd_posix.gointernal/poll/errno_unix.gointernal/poll/fd_poll_runtime.gointernal/poll/fd_unix.gointernal/poll/fd_unixjs.gointernal/poll/fstatat_unix.gointernal/poll/sendfile_unix.gointernal/poll/splice_linux.goos/error.goos/file.goos/pidfd_linux.goos/dir_unix.goos/dir.goos/dirent_linux.goos/env.goos/exec.goos/exec_linux.goos/exec_posix.gointernal/syscall/execenv/execenv_default.goos/exec_unix.goos/executable_procfs.goos/file_posix.goos/file_unix.goos/rawconn.goos/file_open_unix.gointernal/syscall/unix/nonblocking_unix.goos/types.goos/getwd.goos/types_unix.goos/pipe2_unix.goos/proc.goos/stat.goos/stat_linux.goos/stat_unix.gosyscall/syscall_linux_amd64.goos/statat.goos/tempfile.goos/statat_unix.goos/zero_copy_linux.goos/zero_copy_posix.gofmt/print.gofmt/format.gomath/rand/rand.gomath/rand/rng.gobytes/bytes.gocontext/context.gostrings/builder.gostrings/strings.gopath/filepath/path.gopath/filepath/path_unix.goos/exec/exec.goos/exec/lookpath.goos/exec/exec_unix.goos/exec/lp_unix.gointernal/syscall/unix/eaccess.go./main.goos/executable.go  0/     '*/ ,&=979   4     Kf  b_b  U KHG!= I@ u   mp]ZY%Z_ "= ] R  '  K * = H=  N '(g hU    *m ponX g8@AK (_mm K*  t;9    @       IB IB   '''0/99  +))) 3^   D  F   -p w  k# "`1 4#= D,   ; - ,KJIL&O R>Y Z        9" * + P,s""$3N   ''''9 _  d  %        #&  &t{     tq rm   ^cdab_ ^[\YZW   #   STST"  1M]_  (     qK< 6656. P0?/jjP >\ @?"H!o'nn   n:   )"  $$4 ""   "N    "4V &0^ <D  !&B&@/?10*/44,__6     __ 0/@/@/@/@/@/@/@&/@/@?2` 6 5  kl  $* X? T?  cd cj"% =pop      @?@ Oi2 72a Z4 %* 33 r63WI @O?P?P;?P?       $- v_    9cF ^p  #./   RUV QP KL#G'B    @ ^ /kJD^/2r@wp  #0/@&      9) 4;2&̮ ?tZ #           -        Z /C N6         /2     -     6   C"C * 0/@Y?        8 wy;T  .'&  3B E' TG (:   )/%$R/    %y |     % ,3878   mj &GH   Gn   .gh::>    b  ER  )Ag R%Bj/     j H 8 &   '(' ! :  '0/ :  )% : [/"[     :"781Ai  3iH g>94R  C     7( 34+56 Q)pQ `Ws4! +  NY$& ) +8;. OP" '(=,      STS T }~)4  34  - ! *      *    4   4$F U  :! +  NY Ld JI #* Y(    # 1 P    87   d 2wdd" m dJI' E 8 "   d 2sd"j Q   %P (E{P&  e @ %  x |"     7B 5BA03,0/   % " %    d   ;9      We  3e" @%x|@?P ?:d4 9;9V -;2E */1  2D! ( '            @A( '<  CD +  ;>   ;fe78   + ;>  1 ;78   "= 2 2^ R3           0*      +   C!"<; 6 $#-. 2 PO`+O`O`O`O`G_3G * *  3# ( ' =8          ( ' CD  ko p        1         3 ~3 T5        #   /(        L B e$ #$%#$#$##$     3 @?P O( 2  (0m ( m1PP- >A>A>  PP@C4 & B \!>B}+$^^$ #@-#P60uv  / L8/b6@  #? R 8?r> {(r *   (/0V( &. )(.   / Z5  ) ++     (  EY3(%2 #$Z3]|3 Z".  + < &7>=7   ?3 <  2   @ j }: $Z  -+W Z" oX "& `3]3 Z ( +* ,# *+ M +9&1   |dVsv.    dN80  *   !  + .* * D*   626  >* A*WG  4 I W/  ;W'  ^Q bkW b] ^g (RO RW VW N W^]XMNS NW(  dfHNE @EH5 ; G .]^i  rd  2"w5d8( {~J6$&%lVsv.^S  1         N #   E d      AH 'L  9 ?>4 f-E@$!(%&-1[-E (n   U   0 #& H ]D "? -M( Jp,'I(  i( @$?PD?P&?P ?P?PO(" %  ( $-(-( L  # 4f L $ 5 4l F'  E IJF#gU*AFF-_ _aF:G0  <  F #lY-<IF0 6P#" * O   j#  NOP (6EI"=#>P*k* 0#" D_aP     \  D)"?   >OP  W `   9d] 2  2 ,78  +.-  H !!Nux    H  V. y2- s 28 2 @?PO2 ! /.-009    (7B A  DC  "TILK  Z 2J2!B8s   "#  H @?P?P ?)   (=o6(5\n `_p _7 +  #] K   76X6 (      #] 3 5   '    Z > \ K            5 5 /G2&QBl 2-       '     Z ! ! >$\ M  % !  $  ^ @e % ! " Q          -    I!((\! Q     h19r $l   @9 N E       @EJ&m H   $! kY! E$lP"O C C.$5 PiO`O2                      =@K 8': #]  [^ I1i13}       = PiO`O3                      >>K 6%8 !_  ]` I2j24~       > PiO`O6                       AKadj [Z    I554      A 8B    m   :      9 XW b anm    ? ;7bb17B     ?    m =5      S #      $  H CK |}sw2sD~ bQ_ badK LUK$Z  Y M<<5      S#     $  H @?PO7cc      7-]7cc 0/@'?((e  ^ + +0 5 L O &#(8(4   '(  3*      )! Y<    TW\  i\  "Q!T  o22*            )! Y `_po<!  % V   x    # ( a ?<tJ<X](P!        % V Km(r   -*(  , t  \  Y  $      !   'C> =T!           I(4 (: I .A        -*   ' t    ! "!\$ #& %('(+Y  0)  "  )#(q(xo. 0h/@E/@ /,P 00    K+2+P x($$m " x+(# 4 *tbZ y    n<   w       1    .('(    &       AR  # &  #                   #  3/0/<           NA  )m "  x+(# 4 * M "!"#b&%('()&%,+Z./ 23y67:9:;@?P ?&[  -%<%M *   {\ #&         9(#S)I#3A )v&     {  \ 2QE   B7     "7      /22#2Q "      B  7  1 ,  `         Z        1!  N ""  #        *-2    ()!,   +J+&?`    Z       1 "!!$# $#N  (  . t               4!& '   r  F'/       }Vy  " +!j   a    475=< ;"   3c 6   (   S)+x],J(' H. t             4! &"!$#'&% &%()()( 'r,+ ,+F./ 0/@ /@/@ /@"/@ /)   )   9                  +   E    6?  #  Glw\[ =(|_(Vg+Y )     9 +  "!E 0/@ /@/@ /@)/@ /(   )   <                  2   K   6zrw{ ?  *-.%J;  G/0 ='}^'Wf/a )     < 2  "!K  +# b                 +                    2msp x DA;  v8  ba& GLE4  .    +>##< +K# b        + "!"! $#$# 0/@ /@/@ /@/@ /)   -   5               ,   A    6?  #   Glw\[ =(~b(Wk&V -     5  ,  "!A 0/@ /@/@ /@'/@ /)   ,   9                2   H   6zrw yA  (+,#H9  I/0 =(`(Xi+` ,     9 2  "!H  +# `                 +                    0our z B?9  t8  `_& EJC2  0    +?!"< +K# `        + "!"! $#$# $(# c                 4       !         ip   BA      8       $(<&#= (L# c        4  !"!"!$#"!    6)W  e          'e  " n  fko5    ! 0'-  k5t5NQ)W    e      !k    3)W  p          !i  "     5     VY^ G!J  k2t2N\)W    p      !i  7) }   %      #     P  [ !   +   ")tmTM  [?FM G   [# CB LCL#U,Ur   -> &SKCBAsY      7  ]'+E 7") W) }         #      P "![$!#$#"!&%+&% &%P*O`_    <*C0/GG- ! 9NNN 0/j>RK&??L      ?`Z_=>\<z+#<U    v                    x                                                                                                                                                            "        $             z%       '             (     0   ,&  9 +       2  :"        0H   S  $f  w%z      R   .  $  ?   =.@   X   5POV @  $  12 2"Dj 8$e%.    <C B KP  [V  '       < <BB T$Q  <R r M( '  " 91 5<R EF  & -(0r/o'2    ~ W+  I  0/   + 4[[   uzs  |Ubc ` >E  ?  p    || ttt t||                 ,* "u ******21  3 7 /h- 9^0/>$  0 0H/@/@/ .!._.O 0I/@/@/ .!/_.O $Q&7  >& PKO`.O`O`=_%l]00 =F%      +++++-----0/H. " :0#/(  P'O`O` O`3_(%   3 (DF(%  3 (  X0&     !   BR . 1" 0/`RB; `_p#o`6'rI' %U V          1 s h$76 % 0;/`0G 0G        +   u:@ L  <Un`O_ gP'2W:%P?O`Of 1 q79 (?j?/0   &  1G**Yn{H PFO]#-M3#`+_p_p_  ,  ILK \ " sqer z \ " !  !@2?P?W !C6I @?1T  e    00Te `_p7ovwW Xi43 )$  .? "       G  ;)\Uw i:@?v  |bT4`1vG.kl5G .-[0\<[1\klk l[\[%\-43,G .G .E &GnmH |uv        v      u   )  7)   "    _ #  z 7u     !+  H c1 J:56- 15 kH5 (  -0<0?g> $% !,$ %( )EvG. :    po=v[0\x 1 B+&    &*#61A<C9P<20x1B0/V2" @%?Pe?v(-H+43*G .       ) (h |(#*  P?O(v"[\L ;>'- ' ^"Lv[\O QT  'O 3vSG.4 ;< kl+[\[0\z ;< kl[#\eG .=  G .;sssvvl       **&srrvvl         )  5rrs s{  >_ (S4  0 8  8  #3-  5!$#& '; 20vc   N))00/v      )vG.G .y43 43DG .G ./[3\Z[6\klklk l[&\klT;  5TS" !T1 kG# $            / 7.#     _   )  7      .' UB-%-9V3 '8   q   D  /3Z5#e>"!"!  !$%%&(!x   =v4343e[#\p 6 B +& ?  0 3     66W<C@>m <2 e#p6B'vklklG.&     _  !8 'D&@?v< "  .0/v? %  10I/@/@/vklklI      f82 5IKK> K =a;* B" ) '<0R<a;* B0/@ 0t   7nk   0t  "F ?   * ( 3"   x"2 / PlO`#O`O G ;G ;G ;< ; -G ; h   h i n   5 X         - @@? W  G'`x_p_p_D ?^i \J NJl ,=gd   + af-  +[ '; ,=g ;<;<;iVVVKSTTSRJR :  lijg r[i        "1  !*    + < "0b/S  (<563 LaiN S `p_p _  %   h' - G 7&  #  *)  ('' # n#5:!} 8Z      O %cN:    ;#,5B!P"O Q 2 ' >P"O&W% 3' %D 1'  /4   H+*  "!E"! 7 "!G"!  '     5 $1 '     5 $1  1   J`J`#1  74#?$1   B#1  75F   75F J "  :;FG./67>' ?B% C"#*+23&'LKLQU"  A " YZ````````````VLC*D[W *AKLQPPPPPOPPRQ\G -/$A  4 (   #&$  *B ^>B A  0+  #1/. &  , ,   %^ZP o1$V* >  p0ooo   0 LE K1 Z b   ij_  `   D?k (  % Z   }  )Two#+HCCDC CDWCDCDUVC CD CDUV$0  '. -(\b1`F 7f=  DCL  ,ij':=N 6 <ij58 56 3F-N F    G $#*),+,+"'.-09>= @?FEHGHMHUPW<SZY$2CD)  22  3CD)   33   )_`_ G L &#/%A YZ %)*m$U)F#  A E2(       ^-`*D E n5  D     ( # 5,}5;  0#/ +   5   2 "  ! "b mZ  5 6 ? ^'Y8  5P   c| f          no :  1x & ! $   5(  12  F;2"K       ՟   8E(@A0f F G 7 ,       NY2" 5zz2 $g%&x%)M  $ +  ) <    ^9W96o($gx)M 0/ "     C ! B BB 'K         #  b?/618Q)& 'K,&' G  %   f      d _  J] 4   DC      9$#   3    3  )    p +*& #  f    d _  J] po xG7xxG /%%    g6  x   t/(t((7'( 0?(f(57*( .f*@@?k  Q & S@:?e  K # M `_p_p_pBo"L%    .'    (      B":C, "L%  poQ(C! 1 !"       ' (Q(u3t7B 3  =   &" UE &-     .     1G A-&" U poX2 C! 1 )"         ' 2X2z=t>L 9 G /'  S~2  lij g dad 03 f# 0 ~ }VB ;HE  6  00/@?dOQ+* M0#/)$9.C#(i  [00#/MPk` %M#J  j0 0/~%|~   30/@Q?6  ;x ^ PO`_H   !G(`f_p_pt_@nmnmz ;d  *  9  ! @3% v@ 0/b G $"T0@/@? g$3,5@X?P?j   bH"] 0//@? }   g  H }   GH  vE%ST 1 ST 1@     !   IJ  gh $O ;J ,O ;B %(&R  ;B  <R q ry   4 /6(_     @ PO`_+"  DSTST|q| psY Zs rc D     B? '<   S s8dy "  3G `j_p|_p_po'"uvouvuv>"uvQ p s  6-&  1N^] : 9 y  (C J 9   akuw ''"  @  !     A"QT 1[&[    [  \0/j ) p po j@?_`   * "TW"# " *   9 '9 ; ^ [ w  2j;@?@ ?NZY12412_  41 2ZYZY/1 212$1 Y;Y1 2 @?1 21 2 121212    %  l w    ' . #*                    #     c 9 6     DF   = @! v2   z-[ 1. g# 2 ?۾; N4_  4 /  "$       N0.j&&G "!H %&G" !        1 u&     ! PO`_"j3     %. H O "E"$/( #j<;< ;  @?@?@?@?)< ;<;<;  < ;<;[                     > dU     ,4/   j &"C)"$       )   E 6  [ ''j<;< ;  @?@ ?#12 12@q2d    8 H;  !    < ;<;          "          XK   ,   ^   +'B&''  G/   #     "B   6 !  %!j<;< ; L?1212@q2 H;<   < ;<;}        hU    d       dI2M ,  n a   )!CG$% !:  '    F  6  <      } D"j<;< ;  @?@ ?$12 12@q2 H;3*&@?|< ;<;7U              ^M   ZJI (   0   d    /":[08 "U  G6   " $     H 6 3*&| 7U (j<;< ; "H;KLQ12< ;<;  D;<; KL <;<;7       J      'tKA ';  "Q         7 0_/@&/j 5h3 PO)j2  opo +,;@?3 J   _ +(]3p (7tE2   3 <j]  HA O@q?jc 0!     !>Cc 00/j<!' @?PO(j  2  o"      2 % (t"(Z'H _j" UG\[/ .#    p "?  # ## #"   G/ .pSo$ A U?U@&?j=$# # (je<;<;&G" <?@?~< ;  ! $  %   ! $1 (m2g'L(N\e    ~  !  m& ^ Gj@?@?@ ?(j&       %%  F #LFK[[(j@? @?#  @?Y3]^+Bw*Y 3@E?7   G, 7pZoob)*b  y:Gj  H@q?P?P?P?b )*)*?@ ?@Y     ' Z6(   IL b )*?@ ?@2    ^/7$%   "@?P?P?b_? @ ? @       %$ B =   { _   ( `_p_p_p_pbbHGHG?@? @?@4?@?@  )*+, $5 6  S8$: S  9 (  vb     X^b+) *)**)-X)*+GH8$#K$#$ #$#$ #$##$#$ #$# $#Af    (;@  S   (            )iDYB+*   + 8K ( #  Afb8)*)#*G H-$#4$#$ #$#$ #         9D08 # -4 #   0/b )*)*)*3 +,3  E  . 3   3sb)* )*  Cj  (#GX  $ss     b )*  h.   4!    w 6b? @?@)*6), bH GAHG-?@,  /             S  .#    Y  A-,b)* 08/@O/@h/@ /@?b        !/  Y' 0r/@ /@ ?b%+,+,  <;b  ))  P   %       2bj)-XD) *) j  V% %2&2jD `_b0GHu$ #$#$# $# $ #$ #$#$# $#        ,    $ &,  oc0@         nb2?@?@GHE$ #$ #$#$#$#             7Bg r@2.   `w_pob2   </,$_b    ab               LC   $        ?%&     IJ    #$    12 :&K"   $-"( @? ^n       3  !!!!!!  :q n I ^2G ST2G h   P .     `_pbo^% &PS T    ! (  !(      " 75  _.L# P  /'^9LK(%&aST&%5  Vl % k 5{! f    % @  S     ( >  R {  g0&#s #q V " %@  "  ( > 3  %(*   _   7*     ji  !  X   t(s%(?"AM G:   "(PLO*&  (    X>_&(  *  F1   (  1     F |V,!  X_ L M L I X   Y  2Hc 2!8&!    .  d  2 PO,!"!"!" !"dG!"! "dG *)*;<;<&)+aT^ $  rrrvvvvs l1 W6O        + !,"zyzyzy!"zy>!"zy ! "!  yzy>vwzy-       7     7 8   2:9 `_ 125     "Y -B   >       @?P^?,$dG!"=!"! "!"dG *)*;<)*)*)dG (       pppvvppppp _ %k$ *       ( 0/,$dG!":!"dG A fc   _ ^]  %b2     A `o ,! ""z yz "!"!'y)  =Va 7 80  M  < /< ) "a@;?=<[% <e`_p#_.,   . @?P#O.V  4  +2 / 4"  "   G .C0 @ ?PS?P#O.  =..@T?.|{P  )e LqP@>?PO.{ #a 6*m\.l kQ  -m4  r QP.O`"O3. 2m,&2w `_po2.   28< 8R2 s  7   08~ O ( v6]  K  K,  M:  KH  KV  Kd  Mr  K  K  K  M  K  K  K  M  K  K  K  M  K  K  K  M  K  K  K  J  L    K  K    K  O  K  K  K  M  K  K  KK  K  N  K  H  H  H  H  H   X x d +  874z 8 OOQQ  O  O QQOOQQOOQ Q"!O$#O&%Q('Q*)O,+O.-Q0/Q21O43O65N87P:9<;Q>=O@?BAODCSFEQHGOJIOLKQNMQPOORQgT1SOVUOXWRZYg\7[^]L`_LbaLdcLfeLhgji\S0 0/@_?<29^G ^G '(&P               0)<Az<&N9    32'('(2-  :8 #2^G'()  )0E/2^G ^GA     J>    2&^G 6^GHG ) ^]K^G #^G x '(C'(bD+a 5t    Ve"     7 ! v  cl+ `Q>=7@  s|   " - gh uj (B$~D) 7   .C ) 2 & 6  )  K # x C bD+ 52K%('#. -Y ''     4 B`xw x w:    , #  @3 z U &  !     4  {|u b6!  $   ![? K   T-Uh4' 05   Vw 3 3 G5K# 2 #    ''     4  #$ !"  !!`(' * )"! f  w 2v%5     F7  v%@B?27   I77  0/?r    ?  ? PEO`pO`1_     1 F,0)1LmE  @s? 4)*NPO <1&   3  y!f N 0/ 4<?      4''  ' 2 P4+)*C   )   +C . :    '4)*,)*9)*$)*2         &&,9$2 +4,rqr q+rqrqrqr qrqOOFEFEFEFEFopo +,q*>)*)*_ #)*Y)* ) *lrqr Hqrqrqrq " ! ,+  +4  8  43)4  &       J     _ !;%:   K     : w   -  X  _  6     !$G    'u * DY*', + OO       *> "!_$##&%Y*' , -0 /2,143656787:9H<=>=>=>= @ ?BApao4x   h24  . 4G ! " 1 4B # 4 . 4A# Y Z !">! )* >U"/   3   ` T   >   X511 0      T`   - A    >  >"!M  `k_4  ;  wd ; `v_ 4$ }a ! @I? Vb!   0     M0 00 0.04"K*9<88     -  2  /VA 9< 8 `_po 4) *) *0     [<     b` "7  0 `D_p _p_pJo 4 ) *)     6 7 "   ) )v# o     )  >14f)*q  q&rqF EF EFEFopo +,qE % C) *) *) *\G \G !12"12*[\[\121 2121 2121"D 1)*)*)* )*pop G !")"s\G K\GH&qrqyd   &  =:J v _  8     1          -0 XU    * D  "  %     B\6  )# Q'   9         4( ,$     w1  u+ G(0>1ܰj,  &      E%C  " !$ %( )!,"343 4343 4343:9u=>=> =@CFEHG JILKL  ORQRQTQsV WKZ[H^]&`_bcdc > =eP;O4R& ?    4       9` W)%  PtO`O 4(rqrqrqrq8rqrq@rqr1q  4  @ M HG= (8@1' 4qr q1rqr q 3)v uvKL  R)*"r&|LI 3, *    &KR ;P  WZ    ; ]ltZR  1  3   L  R"& |  4]   *"!\G !" ;;&:t&%|9A     9uvuv[uvFY` a  &    0/@/@x?'uvuvuv!xw"xw K,xw5" !j"     "  s  x  P !!)                 "   2     w   t*=ya % {      "  5"!"!$ #j$<#$ #$#D &'* + \(6      T !"{  1BC.  3:78 N#  (j?9WGx(7 d6 + ,+,+,+,   d      6,6LK+ ,>LKL,K.-+ ,}LKZ+ ,+L K>+ ,LKW     5 *'# $B ghy gh X/  e   $-e 7A <          wz   +h/01 +,  X&    ghzy 5? || 0 6  >,  }Z + > W `_po6_Ju,7LKL-K .-e+ ,+ ,tL K0  W( }     -,/J4 9       gl 0 5_7-  e t 0 =6,  !     * ! (C<< <6,)*+, )*)*+0,+D7  !" $),)2<mF"     5)2<md&C)2<m ,)2<m R$][<< 0pUo6v  a,. c `_p_p_p_poF6.-.+,$+,+.-. -,)*+,+,) LK L!K2L I. -X <;b  ))           /  uF  = v  F#FjYd ]          "! !2  X 669 l -,M+,B-,  7 79   #"#   $U5ye$5 l  M  B   0I6&*-,8+,  -,+. -.+, -.-,) < ,-%  ;ab  ))   0        % I  *&         %$#$ #$#<$  %  6,    i5!  70/#d|( '%#]S#ndxmpYLKP mdxx#   n0/dFq, FE+,t*+))  w$  t @?P?P ?P?P?P?P4Od+,+ ,?F E +,p+,+,2FEV     C C          $" ;    m mm mmmmmmm   1   n m  %4#C+) 0  ?   p   2"$ C C  000/dX        mmm mmmmmm m  mm @' $(        00+dzYZcYZYZYZ9 @    T" f ehgf  RS AD:{NS ?  $2 @?P?POdGYZgY ZD      . 1 4?8S5 Gg D  )0;0/&dYZYZGYZE    &&, E @?Pa?P?dYZ$Y ZYZY ZY Z,    q ` JR$   ,  0%0/d"YZYZTY Zc  &    )  ;"1    9 0/@'?d.YZYZYZYZ,G = Z `_`ZYZYZ,G E   "      !h2M?     E PO`_d,G !,G {       !r ! {0t/dVYZYZYZYZYZ% )  _  (\V  % @=?P|? d,G ,G YZ%`+_,G  $    X     E  _J      %+  poo,d 7;<0 0   @   '     yyyyyyyp0q pq  ee eqq p eeee e  eee  p v,+ Z$ 70       @ '  ~6d1+,+,+,       & /0     . ,   30      /1   J      SD6I  6     "g   PO`_2d+,+,+ , +,+ ,FE+ ,2      *)     ) *) *)(  + 2;2x? 8     2 3dV  6       !3HV3 9 K <dD             " '  %    /     7<  g<( B- d   6% --d O  3z Vv   "L A    d+,++,+,+,+,< +,/+,`$! "+,   #      'F       $'2      _            >qQ .( +<     / `! " d' -9 &yi &- 9 IS         ?'"#            !"4+ )*       -    G#GS         ?     PO     + $-D303..# ";   R        4c-A G9   !      6WXetp )    3'3'7-        !9 0B/@=/@/@/@/@/@/@?{$'#$#w          #$'4 ! 6 rqp s  Y K9   { %   w 0x/@#/@ /@/@+/@K/@?(/XW [ L        7 C  -  .-     (%(/(:/ 6  G   )&XWvy` !  opo +,@          # J        _ (&ma!( &y   !   @@j?P?    / /AY% PO   opo +,$           J        _ gb        $ K0/,   I    ,wP,    I @?)% p opo +, 5 J           _    '(9A| (Q%    5 \  =  JG  334 ShOj  =7x          )  x `_p_poo .134  " i f"LJoBq'( &78I  Bq@.?P?P?j   ZI @9?P?PFO   4 98! @N?P?Pm %h    Qkc %h @A?PqO P  _g 08/@e? x J U\>} x PO [\ #   opo +,!(   Jv  _ )  ):[/  #    !r8ghghg h/0ghg hgh7     $H  G8     0/@?r';( (5  1  ' &s U8&;@??POrG*.VS."d.0g/rG* gh ;< )*G* s vvs 'w V |       %rG*OG*   '( G *G * 2'    G    A%% % O     !rG* G* - /  @?P,OrG*) H  #"D   _` 3C    h/r\g h'       K\ ' 3r   O  2X2P-O rG ' *  PO` _'r%/0 / 0212 G *6  e o           ' '%      6 &2rTG*W   ;> 8G*>  ^G!2   +G*%G* 8             `_             !         -2U2 8TW      > 8>  ^!  " !$#+&'%*+ 8  w00/r *  # (### !$#>&I&#(## #     V 2rJ8787+cT87 87  #$  JI  0/ #    # # $@?  :%        34s #**22PJ+cT    0/,r15656565h1565 62H       + +  H@.?0r gd gh:     /I3 /  :V/ -r156 21 2gh )ghgh\-212g 6.  1565 621562g62          S s |    #   &  %   )            &  PO` _(r,ghghvghgh;     S #    (tE (0tL0,I  ; PO` _2r6ghghghg6215621212ghC$     Si' l 2} 2!8tL86d  C=r15621212gh  =   0rghghlghgh   Tx        0D/@n?&r QVUZ M&bd&KG 0+/@g?&rgnmp F&I]&2.r]^]^r]^]^7     #)  +63  r       0/@?'      /'e\')9> po&o= )     + y`  0/@-?(  C       (*-( ._   )   )2)6/  02f1ZY&Z)YZ*Y AD34;)>U*Z O XY  ZW^OHGP  # )*          `_p_p$o%f[\[\[ \[\ [ \ >563       %%    `_po f[\"Z%Y ZYZYZYF ?j     +! |E "  F `ofL*G $p*G [ \"*G  854 $4   (" m a TL "r   "   3000/f  jcy lf"[\[\K--\O[\ [\[\\ g\[\ XU   P  (  JI <%   e; w! 9 O   X   PO`.O`_f:[\[\XU +     5 4   [m fW--\) #$opo +,?![ \4-.-.&-,4+,  -.-.-.)-.#-.-.-.#-.(-.-DB +,).' $-.-.-.@-.HCD G)*/ -.  (_-- \Z)Y[\--\@- .%-.f[ \ ZY;Z)Y(Z+Y -G.CZ+YF[\-[ -I.DC -.-.5-." $-.opo +,? -.2*-.-.-.-.-.#- .   J! _ -* %  &G! "  WXM<;ab  ))    X ! ""!! !KU      k"!! ! # !Oz   $ & %x #B  """" M                !      )     5            )  +  G  P +  C        I  Y  % C %? """"     $    J   _            " }|  " """" "  E   JNx/b$W)#  $    ! 4 &    ' *),+,+)#.-.-0/2121#0 3(6 96D; > A>=HI'NMNM$PORQ@TUV /S TS T S(ZY_\ ]`)_d ebc@ 'fh g ji;j)i(l+k nGmCp+oFrqtux uzIy|{ ~}5"$ v  v  ** W f #   po 8$   " 9 $+2 0^/@? f+*G #*G "       3M + # " f+,).tQL{!#*    & %x    ''!       C      tQL{#* `_p_f3  opo +,?[\[\A[\-[\[\   opo +,?$! J   8     _ +>    $ $ #$"        J  v    _ iB%KZ!3   A-   #$f[\[\ [\[\I[ \(                I 2L   ;+ =  0 /       #  .   -Q  $ O 2   &    =      '2 9h 2   8 0}/@!/@?    &+%  00/ Y Z +,+,+,7w x+ YZYZYZ!        " m  mmmmm     mk % /0(D         7      ! > 6       ' 5[jY# YZYZYZYZ#l "YY#  ]G :/G :FG :G :8IJq  *       1   'poI )84  / F   8Q@+? G (  0/N9 @ 00/ >2  @h?P O      r  J0/ G:I JG :IoJ#  R  [ f          R# @:?PY?G : IJG :9W  J   0  '    9     po       ?U  8#(  F%>3nB88Q-.$  L9  "   PO8)PO <9%                 I 9)  8-.#nmn+AB,mBAB ABopo +,mnm@-. -.-.-.-.XG:-.-. - . nm-.XG^+ AB,+A B ABopo +,+mnm% # J        _ &  1 ,  -  5$L J      _ b>/ ,#       @ :     "!$ '("+ . -. )   % $F8$.-.[\[\ -.-."-XG XG B ABA-XG BABopo +,mXG x"    XU       "  X U    F_ +'T+%     '6)  -Z J  v        _   A  F #Ou9F"s  L$ "   -  " #xp_o+8 M *R*pZo8#.[\-A#(  aA)#A0/@?%8VSV %7%HF8          X5  0/+8\Y    & #$ -8;>  C8&K ++ 1D 0:/@./@I?84   #   CR2" MQV4 28D43XG"XG XGbXG jXG -vu . -.-. 09~ v)u.%- . G)- .k BAB ABABABopo +,ma !  / 0 !       "BX        P54  &KR$    @          Jv  _   2   u 1%t2 8D"  < Jb j  $#&% *'~.-.  7%: 9< /<;)> =k@ ?DCHEFILKL Q" 2 PO`_O8Y Q-.- .M, +*)c- .9- ., +-.x"             ,              5O(=SO"HUY8      < ]  .      " !$#  a8,rqrqrq*rq   rqI  !   7 8       af  1   ` "     |Z,*   I @?(8 BAB AB ABAB ABopo +,mXGXG -J   _    #'<1l+'      - '8$-.;- .m,+- . - .;   !     '  8        * ''. #;             9 "   ^8S-.-. ^S PPO`_8    #  \ P?O`_8rjrF po '8Bnmnm%XG XG ^mn m nmnmb      !" Q U  X   c *'&0c '@B% 4+   =     ; po8=nmnmXG XG ^mn"mF      &  561         f!0A  4= *    D  " / N=8,XG XG nmnmn mDnmnm XG |XG D          $   E<4{$8$I: <,         0    D0`/@/8#XG |XG %!      ! c#  % 68BXG (XG onmnm0pmnm^!*( ! ! ]    =5 J5:Z 5*B ( o    0   ^ PO=8nmXG XG Mnmnmnmn mB"  " "    )  <4p:<  M     B 6 : I8#       )   A *   & m `x_p_p_pWo88nmnmXG XG ^mnmXG |XG #      ! #          " """  #    Q0I n8     +    E     i PO8nmXG XG  nmnm nmnm$" $  $    *8     8XG XG  '$ y R  # &  @]?PO8XG XG \* ( *& )   %$   \ PO`_(8:XG |3G!XG |3G  -.XG |3GXG |3GXG |3G XG|3GXG |3G XG |3G XG |XG @+'V) **+S) )) +%%) **+ ) **+ ) ** + )**+) ** +) ** +* ***( ,(B(::  !     " %&), /0 369:=@ CD GJ MN QT WXWZ [@ po.oooE8XG XG #XG XG m- "!"!  + -= 65 4+* QJI H?> Q#h_  ^UV   * - ) * - ) -  @W4  A! +  /     #     $ #  %    l ! 8XGHXG 2.,.   * .    H 2 `_po 8@XG (XG+/  + .,.  H5# @ (+ @?PO2n" 0! 5@/ 2ll(2"( #(n-<#;-.  ( %  , "  * H7c+67  !    - W(d M.( 3- <  F    4B    n  n"G &B"G &"G &I          *  7 ySe  B   #    D <n  @  6 4S% (#    ' L    a(  c (: 9    ! <   Y1<X D2M jj )=S  B,$        b#   :  /   ! < (n'  -     $.     !    # %(  "".S%( .D          ;   f 7   "  !  # ; (  G00 0 /n5 65 6h       a)$  h  on-. \,, !         ?*=>zy           .- .  8 :      B        )%    /     8        &  mb    1        &  -   aK   ؚO$    )  , $  -  4  1 ^       9     ! "!" !#&% & %( )*)* )G PqO`_n-.-.-.-.-.  .   -"E`[\x    po]o on-.                "  Y J  K n4 y$ .     z  }\ $ (n-.f gytm                        ,$              % (g%(> .>           &   " !=  $ #()#,  - .-21 .  ( (n !   -               "$             % (+c$~ % ( .<         @   [    ! # " ! "! "!1"   ( n   + +#$g   9  !g#! !:xpop 1  J !f!x  z+:434.34<o#popo poC434-34< opo43O434-<o 4< opo po4 3    ((  /V(' $345Y  K  Q  X ije+x   _d-. i jij+~     ` 5  @?@ 3 43 J  =  @K L  r   NC}f_HkM+ Iz+B       A     ).->.       -   D EJI D CDI(D CRQT    Y(.-   e7:<43/0/0 popo/0#/ 0Y   ,#   /0/ 0/0 /6 "*   ;      "      $     '9N7e7<    #Y  ,      $#$ #&% &   ))@T?(:_ 0 'i'='x_ C0 0 lL    S 0/@ /l4Gtt        I)K4Gt Ml(- + + ,7  in :M8  E X . 43 4  %PKL   %PI Z Y  6  $  -        +    7    :l?( <9%-     <= "     A *$( AU2        +   Q -KL5q   dx:< 1  ~? (   %         "!"$ )(% n1 p>     p? @?P'?P?PO(p   /#(v(}(n(.@ PO`O`O`_(p       G $  D  (e\[((BVr7ē2pB(           !   "      B(  0!/@ /@4/)p     %  (x&L( !=p*         e3*pp'2*   .12  p'2@2?&pg  %H# % O#?0V/@?<     yI/ ~ 0/<nm,  75>, 0/<nm+3+ 0/< nm): ) LPG-(lfD(3.(O .8X .q  <( PO` _<1 2JTG TG .     "K%7( =  .<%F FI   HIF%   M2h0j/@CB78NG= 8$78?   -?9?.m $?0:/@BB78NG78>   )~9M~>B7878787878<78"                < " ( $X   P=, 7!"!+,$+, $!#)NMNM N MNMNM , "!   .- &     <;b  ))  '  *    ? BG4     =  w"BB)!k h       !     !D!9:9:9: 9 :632T !  D 9:9:9:9:  pipi   HD9:LG =: 9:LG  /2 :D !7      p D#LG9 : 9:LG LGLG%&  n k ] k%$()  #    %h D?;<;< 9 : 9:9: 9:   rrrvvrrrrvvr rq  rrrq r r        D9:@9?D1!u1xJ 11! PO` O`%_%D#9:9:9:9:9:v9:9:h 0yfsxqBABArq f %( / ,%%;%#       ,h @\?PODLG@LG "f_E.        !    F@  "  2  .   !-';;F, !  .  ** * *! !-';;Fg'$'d !$" 90'$'A&"t+", MC&" P(O`-O`O`F_     0'Mj P _    "!$#  6 !IR 1z ;<*   #I;pM / L/    _ 9mF4 3434 3C 0D CD765=+F  CAD4 5 +C#@e?| Ol : bЀ1Ѐ π %1      Oz  CD0-  7.4 VV_ "5 R7-7/4`R_p_q@ ;/ r     N 8  21 A  - 6    + ;G" *   0/@ ?)( ')  > ))( ) =/  @ /     B  /    #  `_p o-?/ - D:N-38&=  pgo= >M         if i Mp,o oX    9LPnOx6! p%Sl0J/u  <[ * ] h,r"4  3  X  _  @?0GJ     p   - ;_ a L iK   a#Qw,r "          <?      a0 /(N   jr  P (c(    j $0/NU  6 4B N ) <  B  V08?NM!=' 1/NG % `V_p[_N/CDC DC DCDy  ehw s  wx  5G/ y ?0N[   -SUS NqXWXW344XWlXW(X'WBG O ^W BA   ,+ , 4KLQSP(OR/#$     L/ [q4l(' O    ]Ny '    dO# N    .  : : ' 41}   00N !  (a N     0S)N\[!\[  " #    ! M( (! @?P'?P?P4ON       !   e    u~&-'H `_pG_N >J Ul Sw  N`_   "&   ""  1     pJogooB6N$\[ !\[\[\[- ZY T\[             )     6B6x$ !      -     )( H p{ooo N`@6     ^E  2 NY`_-`_  .T  6"   "       i   Y- .T  @O? Ng  %`_NV UbVUV G    E   =J  b  @[?Nr$ b$+ `  !H( Nc CD      4( 787878     4H   /WO Oc `j_Nt   @" lS!l poNr .-  =+3r .Ng 0M. ! MTg 0  NTCD[?   ) ?d T[ 0/@,/@S/ NCDBG 6           5 "g  6 4NH   `_ XJWV`)W/`)W@XW ` WBG =DBG BG^W96  / (   !!     !   !      "e3x r3 H  JV!/ !@     9N NX W X WXW3XWXWXWKDX WXWX WXW  0      3      /   )N/E"!"      - (o*?(  "0/E N      )h+>=> =D> =>=d        A(u@^(+ D  h>=> =P> =>=     P  P!O`O`_h     C o PtO``_hIJ/('!( |    9 R ! | 8%hb>=>= .G ` _`_)*/0/ *(G ^=>=P  $       (**  / 2he~z3\GPMx]^!SA\ eLO8  q  /G)3K b         #"#3&%(',+,)M0/./2 565P0)/ hB  0'  h2  dh%BAZBA&` _ `_` _`_%3  ]  $/ ZK N      ^  U      % 0/@?h/ 0/=0(G (G /#0/=0 /0          "e *  ,    =   0/@ /@?h/0/A0/0/0/?0(G |[\[(G $/ 0            p$ 5 ?     $   %KK( LKV^ R P H&5RA GKLKKLK L~L7  2$$   # &  *)   *);f);fU_Pf34fU DA  ]    ~ 1   dr + &%(V  ^ R  &5RA G ~7 a&%KKOKLKKLK L~L8  $'    ~ & P1 a&%O ~8 -7 "  /  0d/@??     - A3eKKYQR&Q R Q(R;$ RQ    aQRS 3  ,   >      $       $  ' G  # 7  3e3R99, 9& ( ; $     aS 3 @?POQmnG @G @U    3_ @?CFQ  UP~O`.mng   , MG&;1.g,  lG @ <&; G @(  7 4   &K Y  &   P]O`_(&2G \XD 12 , /1  (!E,( |.&   @2G \ h :2 + (G \ d 0  (  PO`O`O`_);< * ' !) 3u=)//; , .N  5wzB5JB$##OBW$#@$s$#W?#eB"+!B!pJoA &#$ \+5cZA p}o 6g     ' DX6g%''    '   ' 0' 9< G \$ N       .   E>  @ ; t $QTUXWZ P OK  , % 8) PO) _kRQn(+q(. V;<;<;<KL&KLnKL)   UUUKSTTSRTW  z z( 5  z z zz " -F9 '  / M hLiL9z H *   D&) V"\Vk _ V(   P_VF :G =LKLu2  X_" %   FF    "RV  $ VKL #VPOP OP< H 9\P OPO:G P       ) u  :o]tt   \       VF;< POPO;<PO&P&O:G N PO:9    2 %ij i(fLK&LM%&&     LKZc|F   & &   N   V'  V- 0"/V,  $!   V  5-  V MN   0/VKLKL&KLMNMN w  ,6[&      VK L:G r qrq:G5          6.(*/       5@p?V:GH:G    &   } 7" H @[?V| 3 4+*' ( gC(i   0/@? V+P O3P O% _   %      t (+ 3 % _  V   .-KL2   @/CDC:G K LU:G 0JIJI                /   -0   ;%;     *     4 1 !T      2> .   2    F@/ o ;%;$ %('* )U, -0[  0,/@N? V KLKLkJV    8 EJ k0*/@?VS C*" poVF:G ); LV; F ) < R B$   ?; ;$PVl I[ b/VL + B 'VKLPOP OP+ #$#&$#$ #$opo +, O POPO KLzK L J      _   y ~ 'Z$\a '/ &      y ~9  :0 VKLcKLQ_ 2 _ _  6 cQ `y_po$VIKL ^ OPOzK LK LK LK L         m9  ~!p  ~$`a$ I s   ~  ~6  Q0a/$V=KLPO ^ O      J#$ea$= fVUK LK LKLKL'KLKL ; <K LD; <;TSK L K L/     4 TO      0   7 6  g/   C U  '      D ;      @tO V"M y"d  -0/"V;<*; <"UX Y V"_2)"oU( " B0/$VPOP ]=LKL@   $j^$| @0O/@/@?$V"KLd    $}O*$"d Vy |*0"z 1 |(V? & 2VLPOP O#PO"POPO7:# +1:b;1L #"7PO2  P*OV"%:"@?1V60706 V$#$ #$#$ #$opo +,O:G  KL":9 }K L :G :G  /Jv   _   _/DCPP        1X       ? _1  6+u) 2  <      "  " !$# &%b*' , -0 14 3/ ;V POP:! 9 L:G ,KLK L :G ;<%;<(=$ #$# $ #$opo +,OPOPOX L    _ X_        Jv  _  AA;@`%tTI; !    ,      %"!($#& %*'(+ . -. 36565X@{?V  %&  }p 0/@?      E D VG )  @?P%?POV@DCTKL H9>K LA:GKLK L :G  :G  KLL:G :G   '.   )  "(      !{Q    DC  ) 7q%@T  > A      L" #& )* +'4VP OPO PvG :9  B:G $:G ^OPON!    ! 5#  ! !*  H HHHHH *" "#   "# y   V$F" "(     i  E B $ N w  VE:G !:G"   " " BO E ! *V-POP O(:G P'O+K LBK p#$oL:G /#  ! #J   41#    o # S!!QX! &1->=B#  #m*(-kA *- ( '+ B     /$  VMN#@4C$ #$#.KLKL $#$ #$opo +,O%!!  4   q #J###%%%)** O$""" "" _ +#4 .      * VK LKLKL0&" """#$  J/% 0 PO V;<;<;L KL'   3% ####"h"  && U Q   V"$ #$#9KL KL $# $ #$opo +,O$#$oL:G  :G "DC4KL@4C( &J%%%%''' O' $$ $ $$ _   ( &&QX&& ( % ( # #''  4"1%J"9        ! $ %"('3*) .4/ VKLKLKLDCDC*%%  &&**$$$#(### N    LVKLKLK L+&'&&% %N L =V; <KLK L+ ' 'A&&% %?5:   @?P6?PO(VPOP O;<; &"   )     1   0 !   "!" !*v 0/@q/@/@R/@ /@d/@/@ /VW$ # $o LK L8K L KLK L:G = LcKLKLKL KL:G  ?@?@ :G :G  0:G =0C CHH. . .QX.+ Xw)  CC0 0Cs0- -. X.BB000xG11 00- 1"" - 1 )- 1% 00 - 0%   Vh>?#1    " !$ 'L.-./21 436 7, +< =@ A DC0F G= V| KL7KLG;<KLK L2#     2 / 007/  ~ ~$H&Hr\ 7G ~ ~ 1 0P/@#?V);<;K "!" !"**;<;<):G *:G )K:K: KLKL*K LEKLKL4KLK L:G=L:G 2KLKLK L:G =:G "KL :G :GQKLK LjK:K:K LK L:\K LK L*:G:G AKLK L7$ #$#'$ #$#$opo +,O>KLK L$ #$#$$#$#$opo +,OG:G \KLK L;<+ 9 p #$#$$#$#$opo +,O# 9 LK:KLS:G f;` #$#'$#$#$opo +,O$;<0 9 p #$#$$#$#$opo +,O4 3X200 23 2QX2 .  .CC3 q ;D D1 5??4223??2  , ?????r r r2  CB3 5)2 54L23, 55556 yC\56666" & 3    $jU8V@/ /VU   :%-'5X54 4A@55 ' 54 44 8887 x? 595( 6  *<7L67/8 89 9 94::9 99 9? ?8:6 :? ?* 7 3J222 1 1111 _ +) 67J766 66555 _ 0K)5 8? ?( 657?? 0  J888 77677 _ 1 0 6 8L7:: )4 7@@y3J444 33333 _ .= 922DD, J333 22222 _ -9B B a)Y> @  $)5y/7|-" 8 D  'T$-GxP!a -&\'R >-=)    )    $!) (  %>1436 7*: ;)@=DA FEHG*J KLK6NMPO,R UX[` a dcfe h kn o=r s"vu x {~A j  :\       7'  . $ G +    $ #  S &2' $  $ * /! @ ?P?P?P ?VZK:K:K L) 9 L-;== 88 8 88L780: :>> 0 7  T  $     - i!V; <% KL;<;<; 7 7 8 88HGyyy AA A7A A:X9AA 2 6 66 6-.#&  : :8r:: r8?Ra`@  555a R]rkZ5 : 56A A |.zw& % 1 K   * U ; 60  z0800/FV:G :G  :G V<55557 7 : <  9 < 8 <55F#!FnN+0    FVB ?@?@ (=5455--4n%" P%O`O`:O`4O`O`O V !:G K:G !:G$:G :G = && *; =  : =  :=: = : = /  ;M)'N  ! K  !$  0V KLK L,> == = =  !*  , 40#/V#KL9> >>   ^9.#9 BV $ #$#;<$#$#$#$#$#$opo +,OAKL :G ;? A? AY` .._`? o... 7 u uuuu uuu7= @x= @ p  5<?    %    ! $ %V:G&B>A & V$# $ #$#@$#$#.$#$ #$opo +,O ;<;<; >>>>>> >> _ 8 =>>=>$#?%& -.@J@?? 1 45>?? ?? _ 9AJ g/0\ @.   z6   %B V$ # ;` #$# Kp#KL$#$#$#$#$ #$ #$opo +, O ;<;<; ` #K L:G ; <;<; <;<:G #KLK LC@ @ ?J@@@1@ @0@ ??@@<<<<? ?? ?? _  8 =?>=>$#u @AXAA C- u uuuu uuu5? C 440  t4 :OTAX              &#( ), -6 7:9< t9/ C   VL5KK"KLKBD?5"???  k#5"B VKL&'$ #$# $#;<;<; <$ #$ #$opo +,!O dKLwK LD1A 66 BJBBB AA =@@=>$#AA AA AA _  ;32;551 v t5 ;`:b" ]X&'       ! ]"!$v t!& `_V$#$#;`#$#$ #$ #$opo +, O ;<;<; <0EBI JBBB  A)A>>A AA AA _  8 =AA=>$#A (5         0 0/V$#$# $ #$opo +,O!ECJCCvBA BB _ < "Z     !V/F! `_p^oV;<1  L KLKLKL K L(;<;<; <F77 BB 7   A EE)        AB@@ E E -.-  =BB=>$#C  O R$-)_6"C1          10$V_G>>WHW<Vc;<*;<;<$ #$#$$#O$#$# K LO$#$#KL$#$ #$#$opo +,LNH$!    DD DD DD   ,  ,@!FJFEF65 EE 1"EEEE GXF1EEEE  DEEEEEEEE _ XFs9Ac*$  O     O               NII P_VH0HCV:G =LK L :G  JG XGG_ H F I  H<      poV':G ";<$ #$K0:G $J G IFFF F   O-J  F J+ /[-@ ' "   0 $V$#$opo +,OKGGG _ B  p VK B K  %V$#'KGG   ,'K1 M  POV.$ #$#=$ #$opo +,OMKJJJvII II _ D B .=   V$ #$opo +,OM   I II _ C+ ;    QV=:G KLK L :G KL/KL6N L N LXLL_ L J N  ON+  Oi   )4U7 g=         poV$#$op #$#"$op#$ #$opo +,OKL ;<;<; <:G &ST K LK L4; <;<; <;<:G ]OLLJJLLL JK K KK _ E OA =JJ=>$#KM o  OOMXML_ M ! u uuuu uuu) K N   a 8!X~&"      #& ).+0 14 5> ?] `#_pzoV/pRBBBBBB0   [9/p !V8R (PBOVcR7:UR    ;  #<VEPOPO;V .0,/ V     Vl;<;< ;<;<;< ;< :G :G W####"""uuuuuu""""uuuuuu"T V"  #!  #S V! 5       &&  oVyX  GJI  Dq%TF(Y VY    YYYYYY #       <VKLKLdcoKLdcyYYY N "*#WW3WJIJIJItI VV   ZZ "   $   7 * VV%RQ o<  _R <=  Boy  0%/V\        %cD.  5 mVK;<;< ;<;<;< ;<,JK L\ uuuu uu uuuu uu   2 >. 6 \,[( X X   eW/ 8s]Bx(\ !      ,J 0G/^^   N@ 0/@ ? V"n&m+:G:G  ][ [    []Y ]  {' "&+  V>$ #$#$#$#$opo +,O& :G :G r qrqrq!;<$ #$#$#$ #%$#$opo +,O$#$#$#$opo +,!Oq:G :G ;< ;LB;< ;<;<;<;< ;<;<5;<4;<;<; '\ !]]xC! ]l  %5 )    M'XQW;o=%>W$ T ])>  &  MMG    !"!&#$#('* )%,+, 16347:9: !?qB C&F$EFEFEHGKHGHGJIJJIJIDL MiP)ORQ TW7ZY\] `_`_\[^] b cdcZY&fgji ZYZ%YZklkldYZYZY;n opYMr%sZYJE)V$#$# $ #$opo +,Oa_ J^^v]] ]] _ X%Z     DVeb- P6 R@?V};< ; <;< b  ,^^ ^ ^^^-}}    P_ Vb =  @? V$#$#$ #$opo +,Ob`J__v^^ ^^ _ Y "[      pvoV.;<b^^     W;r.<V:G:G c`b _ b G1I  \# V,KLKL:G KL;<;<":G :G 2:G :G c````     "` c <9   cc```` s` d` d* ` d  _ cG I ,$R h   "  2   PMO`O`x_V-K L:G &d  Q a X` c "Xe,  &  V:G H9:G3@ KL KL!:G =L KLEKL:G2:G K L $:G :G   *K :L< 9 L8KLOKL:G K L$;<:GYebedcc3d  !"ee)cXc eeD Ceec Xc ee: 9  c_daec ec_ de e b ed fef f feLcfre  \  b  cc    eXdd fd_ e vv cf*      g  !   E !$%2( ), -0 /$2 36 7:9 : 9*<=:ADC)F  G8JIONKP QT UX W \ ]^ V:G:G z  :9:G 7KLgeg+   3C=d g &     -.h g efd h   hh. %       &            * .  . PO` O`O`O`O`O`OV:KL;<i   Vf 9de $    z6tMT9`L_1V,Cj  iiii 0W'50o,C `_po?V8$#$#/$#$ #$opo +,OKL\j!hJggg ff f ff _ a Oi? LD?!+8/    \P_OVvj* fJ%  000V#c,  E       #&%,  . 1  GG 5fefeN yzq? $ b   % rg/u0J   z       n2|  5    G )"43 }     %("(" 0~/ G)$G <       w )$ G *G      NB  *  WO+  .WO+0[/@ /*P    -I*PgG)G ?@   P )  PO`OQ  *w"!w @ ts  w  H!X**Q   * pwoYwxw   P3Y0q/K   WXsU  jK  2[#B 7  `_po ^P H #rS  ^ PO`_  / 0O;NY G             g;rQ*n9 ;`M..    NU   %)        'D   = , rG A t 2  4 ~y D9$ U\@L 3 ,A A7@Ce'". -R 'k   ,     j A  Q @?P?PO2?$j" ,lg    ts\c!!! !  $          2' 2?$j"  PO`O`_.# EF   DC!#!&  G v  /03   _8 .#  0/   " '   " ' 4/E." W    D_  3 D-3"v/ E  "/.12/***********.*2-J ,! / .  1  2 D * * * * *  *  *  *  *" *$ *,.0*224-6- +    6 6 "/.  1 2/** *$!*(%*,)*0-*41*85*<9*@=*DA.HE*LI2PM-TQJ @?'  ,d.gT 1<i~glA?E6o >69&:i&     ,+Z{@?[    2 /:9JIV)U  $ + ,Y{ )[08/ZB   :*  Z /yz    / @?ZH(KK GH   O POP$:(  34   ~glA?E { ~!mlD`A(      "!$SVWZ? %#&$L  "    y   * '6;@O   65> uG%  H@D?PKZOP?k   #%k`;_ZOP7=: =73!Z@?    '}   %  0X R.@a?PTZ    6#3ik H :#V o1Z ?# ?@?@?@? @?@? ?#E? @?P%L.KLK OPKPTS OPT S.TSLKOPO LKPOPOP9OPOP OP$   (%  ? JOP?OPOLKP1  3  '21* O 78    *             $                6+     EYV          <  )    *  Y1   X5     -   YV 1 F"  1V q =7 #          #E % . & # ,+./21 432 1.65 87:?8787987BA DC$F EJ GP M(T% Q ^ [Jdc f e,hgjm1 j0Z$u   $A3  7* d  %*        "  G0WQ> 0;u     0 Z( +   0V/@_/@F/@/Z  ?r 6 12 12   ondGB"  r @O&Z;`t& r& Z%QRZ  1O ~%Z@t?P4?P3?P?P?P?P-?P?Z^?   2   -$ 3/   $ '7^@??P;?Z @6?@6? 6  6 1U 66PoO`Z+@4? + 4 wawy%+4Z    `_ Z       6 f6 PO`_ Zj,@9?  J[,9 # %,<,9 POZ  q "EPEOZ%@?%7G%%  =00@0}0/( >   /      )= :( >      /-< 2d }}~pP* .   EF8 Y25 2]Gd }*2 `_p_po-3$}   >} ~P-   $   *  -r-K?3    > P- `_poXQ         0   V.^TyJQ PO`(_X %-N      #   %  $  ) *JL$ $       PO`_XA H758G O/    C  A`7#I#A 5 O poXl 8748G M-     i  oe5!#I#l 4 M `_X+8G 88G7$        1>O+ 87  $ X8G   8G 5 RQE"! "!"!"!" !"opo +,M8G  878^ .-4@            J  _ ; G    c   H7 ?   |_;\9HCm    5 E    "#( ' &%*)8,+^ XH"!" !"! "!" !"opo +,M=-N) 8G F8G M   < ^8G8G @V J   _ AEL !        A "+     G S dTB>H     ")     !$#&  #( '< ^*+. /@2121V ?X[    RQQ RQ         )25 .   s9? $K?[Q   "X     >&+ _+       "jS3"@GWG"7X7     77X         TXT   TT `%_p_)X9=>=>=> =>a=>=>=>=v7.   2     2   [(]!8D(9  a   . X,  NM NVUVUm=> =>           X ",     "    .     W%  7 C,  !\   l #      -K  X%=>J5KK I &K NVU(VU1   "*(     5     0-.-: 4M 222 2       " ) >H   ? ai(   +0  9 6    (]t0 #R * M9   g(%5    &   1XKX'   [ g'   0000Q/XKNGMNKN=>= >7 c)W bU VXJ{.     !   j</       7  X8G =8GiH7s8G       "    ; Iu  =i  s X     |  L  % ,fW _5 AA2  ;             0 C ZS .- 7W _5 AA   J c-; -  -N %%W Xc               )     +,     $ / {)K   O"dZ# #f"Y N## dJ c  -;  -   - N    % % c 0/@? R R      !  sM R R .4:/   &&    4 @4k FK 4B,AM 9 AmFQ 6P^(K P [e+@d%r2` d+ xe2Zd(2 d2 @@?PU?P?PO)$ - 6  ?B9 :/)r4)LM / 0T/@*?"     "9Y"(8|(2!8 `_) 6(A6 ('i PeO`_  )&8 #?0yH5I 9:9": :9 :9:*,9:"x    $)&"  *, PO`O`O`$O` O`O`$O` O`O`6O`=&&%M  " @      %   ^  6  ? :7 :   B:Q     1   ~4)P$   GH  & -    !b  VP$# %   1  B  C   E5E   PE F>x'w S &: #      7 V  >'P1O`P  " ! ew .00/P+7  N +YH+7 06Pr     ]U d  * L;P%VUV U9V UV%UEFVUV U8V UVU EFV UVUC 9< !T mmn u`  ,43   p   "&,  S%+9 |- kG #   S:   N|*&hh:wo  $ -2   &   `O .   2%  " !"!C poo P*^]d     %i8$ d  F000 /&PGe    &G7 &~&32e P;  +* g'M K]PO`O/Pb   .>) .>PO`O8Pf  7>$ 7XBPO`O.Pd+0-A, -!='P   $   #$ ,+ 56%&1  7?6@@97 K*   proo (I r    (N&)(X?.I L 1L 12?12HDC` DC 5 121X     )0sv   51311J 7 ?H`   5   1$LDG DGP 0 2  `_poLDCDC  DC 9 ,DA>7  9  03.   9 ,bL#?@?@&    bb#& } 'L>ZYZYDG  &8DG DG )#EDG^YZY  '       .-+ 6        &  '&,A '->  &8   )  E  ' PLO`_"  , + . )(+"q^H" /   ' 0/@/@'/@?J?@ ?@? @M!#$       mN25s    p+oJV < +&`P_po4J% 5 K P5M4rH)4%5K J?@?@;  _8    ( 5; @?J.>FG  1 ! .Z _.= 0/J*  0/@?J? @FGFG;? @%?@?@FG%FGJ   !( F     0'   ; % % 0/@$?J?@ ?@?@>  "1H       >$g+, > mPJX? @FGFG? @?@?@?@?@FGQFG Z?@ ?@  &                  { d]stKN uv/ tsVU8y  * *      qj  Sb   P(qgFP<uX      d"!$ O *P?OJ0FG    F1 0  `_poJ\[\[:FG FG ="? @?@T?@FG  ?@FG^[\[@   =  1l       # = i? 9  1 " #  !$)*)@ &JX?@*?@? @FG?@FG)FG6?@N?@?@FGW "          3   =    $7.E &2"& X*     (6J!W P$O`_J?@?@?@?@?@# "!    "          /h   # OA+J?@ ?@?@?@8?@ FG %?@?@FE?@ ?@r    w  mt         E9      H) +LA+;,W1   8  %  ! #&%B po(% /   </: F+J? @3?@?@?@?@FG ?@FGFG ?@sFGoFGw (  9>M0     <Z # (Ca5DCJFEFE&   !] ^ ] ^ f   =C?5?+6.GQ +v> 3    sn"%:('+   JFG/?@?@.FG )    #   .    09/J    )"9 6yu @W?P?PPOJ     ,  E  878 "  X[ fmP Ɲ60/@#/Jc 5 6 `_p?_p_JE?@?@ FG.?@?@FGl   ;#;yS E   .  lJ2  @?POJEFG3? @-?@?@FGD     (  /cP ;"E3   (    0k/@?JFG8? @?@?@FG-   U8    `_pso(c J G d5 E      w    _  8(    5 E ;G dGd        I 4G dQG d $   X      , 9 c ^j' I4 Q   #/0 /3qr0     >  !A:  G       3   UK      >7 G!    ! 3  R  R x9S    Xw qS   ]   + J@??GdG d   +  O  [Gd0Gd   "1 0 );-{ .K%( &m( SpMo)' U  ( ^";(m'  J 3]2hE2202 6T0 2E2hpIo&~  % Z"7%f'G x2" $##2 9e2]D"2  % $G]^""   AB'  $   LG%= B)  -% uG  $=PGeY"  j&!e]^]^(] ^N] ^.   '4 1>CD)  sEQdcf ,      4   (    9 &h 7&. !e(  N .  ?]^]^]^] ^] ^ 4   s #     5, ECD Q Gs1<E 1c ?  `+_po?V   l_] Zv[? 80#] ^6    (*" # 6 @v?P?P?PO5        5 m=5A* ;;$  %<  , <  *3J W        '*s383$#4  <  q[%<  όBv.  ,   < #3] ^]#^]^]^]#^#                  T / 0u z ) * o z  &5;r{f  !_  3 tM7 x K-x    a Di z 5:' e3#3:g9 ##<B #   " %   "  E!!D% 7 m @\?P,?P*?PO  % ,  * $ P^" ,#7 ! CD! |(]^] ^`     #b ( ` 3]^]^]^J]^]%^L]^ ]^t   &  %L -!2&"2 J%L   tP.O`O0}   /Y3/ > `-LK v J  lk  ^gh"Z4  4-( <  7<n `- ! G:'    B       1+K   LG U ^p] ^]  -  ]^]^  1?I" (            %    # 3<3 ,#$        %>  F1=@G T! 2{J  |st *      )  1  #Y H  % 1 7+;   L G  &   -    >, 1HH  H =]^]^] ^{96= 3    #<9sy~ < { (9 ^]^b ]^ ]^I( +    ( 6  4($yV(2  9   b   I(  b" 5   *  = "3<  v*< ]o@5?P?P(  On)K O `Z_pl_pl_p _p _H)E] ^UV2?c   ,  ( ' F"d@-F~ ) 2?cO 9   *% E  .   'WKU  .    ,-62*V* 'D-214. 6.   T<      >$x T2  'U      .    (       OFidz IN`( #s `_p_p6_p_p_.WKsWK    3T'8.sH  % 3   "! &   2o 24 PO      7A`  900000-0']^9#  ] -    &W   1"/ '9#   - O7: ,    )Ya7  PO` O)c p   $ G*' (12d'w(c p  DQ%LQ`d_po2'2 l2t82H  %ad e:*          % .2  Ԍ H   Y     Q   P=OG  :5 :'0h/r6 j;70@/I J  G J            0/@]?4X &1$ :  #    ,        8%4E]4  RX I    '  =  Y [ #   4 PO`_ G J<G JGJP      ) $IH  <   P S0*     iu 0w/k$    X_%+`   / $  0/ {{   / *    R  "`___TSh  $%%@?   !$ -4   )  ?T + .   3                  @?\   -    e        GMR  \[  [  [ T S   $@L?m1DP\O)G   c  pwc1;)   G !@$ ' Ly| X~i_  +>    y_' b8  xw'IP{ _F#:F|#     !   @ $    ' L 3~( abq t$qr0/0/*qr q-%- q tqr0/0/!qr qt$3R       ji >,   ~        ji >, x }~3 3s9%A(  $*  %-  ! $#&$%&3`E~%Ev \ cdgE#<:Ep%K%Epdo)~=( uY( A )j  :\  R  C6 ?   "  =(+ugL(% j :\ PxO=   <63<04/! !   @# B! ! i^/  X X  !  IH S PF  r 8G= %E   G .$    MP*    ~  9RPA) 8 %    E    . @?    0`.-  |_BC     zzzGJ  z,+, popopopo +,+X\[_s_ 5       z zopo +,+  _ II  'zK1\ (10& -J0 &K1\ wz_b M! )  8G  M`,_'zb#& =&OpNozy>  Z Af z51a 16  &;651a>  'z# $#$ #(a6#$'   '('('0' -vQ'.     6'`,_zW# 8  *0/zg   H FT .z@_`1q1&  - T;&#-):@1q z2_`  G  Ab2 ~#z51N1&" &;& "51N# =z/ qpW1 (<1M <! </ W1 zX%,_` %, V I[gJ$X%,# 'zL "5 "M' -ZM'=.L " 2zT (= (M2 5`M28T ( 3zf +- +M2 4_M 2f + 2z qror0/0/'qr qp"!2        ji >," 2 72%8 ' "!2  z"_`  "(U "(0 FT0 "  "(Up[o(z$' kL' -z) q poror0/0/'qr qp %P#=-           ji >,  5 #7- }Z-%3)  '  %P#=-p>o)zv0( R",(^qz opi  ? }%0, ipno)z qp]   (/( s ( ]  z( q pqr0/0/'qr qp!$          ji >,     ?%*(  ' !$ @S?zop/o p  `_._ 9_>%f /   z1 H vG 2   3    #]/    v  (pKB   @dV+ =  +0"  * WXl k(p   s`   )5 1( E4(1Dtoo%(7pg  P   /$    0/@/1b   0 8' 0 06!  { t uf+i %&06! Z8 A#3      1]]\ ; k*s7#                  !   !   !     ,  m Z  -_ Z*ne1 .. ... ! .  { ` =#3         -YY  \    ;    k 8T} )# YF 0 7  Ff7 Tu   :    wM5 F  ,  L" 4)G2+    #     3 21 ,1 3 %F#tF"+OL8Ag  , . F M0 0 A   o `tA?|*! 10 %-\?`_p_p|/qr0/0/3qr0/%Krf      >  '$1 , &  3   4KuG|  & %/ C  ]G ]00|=aba b$  g0n)= $ 38  J 22F2 P O7D '%  L<DG!"a&36 GL<v" R  #   !   6 b C'<EW<$ (Ĕ ND!  ]  &  3 6     <@[? 1  l9# >1!G G  v  z ) !   z"B \\vAfz     y| }:B               ] D   8   m g Ɣ   $B        XXXAf   @A?!G LG L  X  H)(!   0/@/R6$PjO`_/%N |  5:z%$/% w<6 W =stst]A'm # qB`"9#                   "   0:      CY < [/\ <"B       B = =  =  = ' 3: #   B0B/@/@?"oB ZBaXP O  z000"% ] 46  : 9  "ut $! ! ; + Hs6ut"*"(@?@??@?        (? d("NWZu, /6/?D   kl ]T  + X7  I F %(l/@(&%W) T B"vnG%%nG %  ;#+;  ^ b% j~4 u$  "nG %#nG %  ! +{ !k;  \  `oAwH "   "jnG %!nG %     ;  b  _-r.Qi    0/@/@U?"# @)<   &  ! f# )      ".- ~    "'( * >  ^r% ^16 U     &g9%>b   ^/v Lp               t V(" H%&OXE nK?" H4i4    - C1S  TM   TM $E#  8N H      R7\$/0     !S   %VI&   !+mnmp  q $ RI   3 $ RI   D   G </(  W)#pV  X  #z' " &= b"V (m5Z6,[Sn H                   6  %  $#O       !"  !"n-\d '    0%?D/6  |n   z  "  @3 E   8,W<             7GG6       -  !(  & "%%      B1(MI#$ PO`O` O0-  0    '`"E0- c| (1 2   3878"        MPOP0        Q  >s O FF) i$A#       + @ j@<b Z '  rEB#6     ! B;  , +RG  { ~+Q l  3C[, +R   po121 2 1 q r0 ! 21opo +,J      _ S 'az %      !    DG d G d   _   I=     poVKL;<;<mZjXXXX# %  iWN:b V:G :G  LJ LJ L %    @?V,POPOP G :G ^OP&O:G ^OPO?66666  ? ; 66 6; 666 I,     &  V 55K L ? >AC5 N4$  N    ' 8   '+PnO f*G [\ [ \[\*G     ),   ug       0#/@?/ru/G(/] `g_p_rgh"   "r/0ghgh  9  r4!  E4r qrq3    3W E 34  0/@x?4\0/ 0/+0g/0/ , %     \ +g4\G \G        4( E4f!QBS 0#&$&(0(  ((                    0  0          0  $ +  ) < % ^ 9W&$$gxw    0  $ +  ) < ( ^ 9W&$$gx|   0%&0%&  0%& 0< 0 0  0     >0>>>             R0# $ RR   @c?PO*V       Y< M`vuvuvu vuvu vuopo +,O ;<; _G ; <;<; <;<_G 2 vuvu vu vuopo +,J)   "J^Wz!     _ 8 =Yj=>$# m u uuuu uuuu J~wx    _ I b,T2~ ;M      " #, /0/4 36 56 ;) pouv u vuvuv$vu vuopo +,O ;<; 2- J%, !  _ 8 ==> y =5          h=  (/8Hu .BX J ;4\  G +N 0L/@ %<  C@4    7](I(&,7($ZLH?_D- yeAklBABABB   g78+% .8t 0 ) AK   C#(05/? 7  PGOQ )I## PO`#      -  D F{ # v,    p,ooo*jxG /!xG /xG/  Z   &  ^  n!"      n Y`~qx*UK,YE<0<8 *<j !    0?/b  60k/  0  w=>I$0m/)  2(?>(  @?P?P ?PO*jKL * Jux- *ux wB GJ  + *2/* < ! "0;/@/@?j"  >: j4"   &0'/( X   @?((V~'$ '(  @[?P?N ba %c: & N0 /&>% %%`y_p_p_<5F  M L UX # 5V!3/*4@0?: 2  (PO` O`"O`3Ob)#*)"*)-X)*        -0   5 "  U  Ggb)*)"*#    #gg"# po#(0Q%AN # (7C.("Q'! #/ 8`K_ 4J[T!4 V{3 .V {VK LS|{ {   ( V TS|ww  0_/@    a+>@   CO  M@   { Y1[@-  {   1!-  #      E" M" 2    $      @?nG ^nG ^  (( "  :;  !'  PO<0 /%=$ $PO%O$0$A$$P$OQ ) 0//   $  0h/ L~ #cw"!   ! !Z8:  Zn P M 5  0  0 U!!" q!%( T  : j    ? ;  $     ' 0  -, @  ) 4)Y c nPM500U  q % T:j 0;/@P?(  (D[(X* P ?d &+} 7 7&+} 7 f *} 6 N  ( } <  }~F}     + 7/U   + 7 5 I     * 6 h 5- _b  ( <   25  cn. +  3     ?  J"( ? f^ G H  G H G H  G H1 &  7 7   &    7    A * 6 N  (  <   F$$'(!\ @?POO. } S) Y N y)$?.   S X PO`DO`_  o jg r qd F5 >% P &   <  ) *   11   W(3  0    45:&  ^'& 6!E  +++I=  <  iyePZYst    %    foC\ ++]Q z3P  292F s)$u (c4(8=8$WL  L<  L/ 0"/LC$AJW$  (KI  J$D   8$$ J  , #   (A 8[K>7V1Z FJ & "% F#7t F@?P'?Hl  )@1@ ]% wUDV9/&0/ q & ,1 2122121opo +,   -1 212 121opo +,% G dG dm  /0Ar 0/q r0/0&.2X.* +  4!  D8    > .       uJ   _     _J _  874  &  & Mt   6   $@   )   4       L     -     7b] @ D9 %% U D 9  &     '2   % &% &% -*'(' ,+,  436 7: ;m  >=A: => =>=&B.ADC2FEXHGHGHG.JI*L KL+ A x3 \ 2 o2",$  P!O      C@?   9  B$  B  B  B @?F F $  F  F  F  F"O8  z N         8                          T t ^49@T? tT to  yEH  r  KK  r  r  r   @r?   SK   r   r   r   r   r   r   @r?   r   r   r   r   r   r   @r?   r   r   r   r   3       #:   ;      8      dq  !&             P                      8                     `40/!_l& !jx, 3 0 (  .   *%& !      =  &0     @.?8      n  0 q $#$#$#$#   usu 9   B; B P#O`_  (0 /@?LL%".-/   6  %//' "% P/O!  !#`6_AA9(90#/%%0(/0T/+*<#0/F,  0_/p]@,-&0F/qG 0H/Y ; [0D/@/ww] ? _2 R!! 0l/@/!h 0O/` +) !!MMM04/E 5Q 0/L?2N&0+/VV,0A/!B  0/"!)o X  # P     +  t9 PTO`3_    Y 3   h3    Y"C ,  # 8! *0I/@? Q Q0#JX   PWO`O`_24 n\&    2]<2&4  n  k`<n H G      > > <]F6<.   NG!$HG  # INF i&  $W  4GF %   T <  %  0K/@@/@/  4 "  0$S     (jA`%  ,(   "  ."!0 $or  D DfK(".mn     )$   0|/@/) 3'(?"+/L(a. PO$  3'p g1 PoO`XO`O`LO`O"      +      G!s! g%I .0 0/q    Z ) 4%. 9 8!$ &$" *  i & Hr 0%   CLr$nn5$& j  < (  (  v  = ; (n$(o.k=     # beh     ' +!  ,    @?P ?PO     @=>T ;  ; . &+   poo)    R   r   H 2 &     *   (d00/4 (R r H 10  >     G -  > PO`bO` O  #     -       F!7 # -'l   "' 4  "0J// 1KRT *% ?/1@a? "  + "0tsxw x #k  -9 " + PO S     2+  @M S `_p(_p:o- L     K _ C f      tcb@3{ " QB,/, -L       K      2    0/@F/@?!    /"  '6   14 _  "@i  N !     /      d/ #*:  `s_p _pX_3 5 S !        !2Y25 S @M?)  @4 (W-% (D @ P " o E      4"  Pb%* T((Bi. PT@  X4    o +G nH : h  A1 Xe GG'q r#tt- YNM TYT  Y Z  1  & q MK Y x Zq1 1%   .  U  "E   LA L0((;F D##wp KMo#F'  ' ' <   Q       7 1%d; U3*%"c *   '   j q %  poeo4 *29 </zA B D%   "     #43J4   &9 ,  /  Y    % fTL4321@=  2% "KLG(\#( & %     f TP  0a/$k.4#I+0S/~~] +89% ;0M ?s>,%>&# P[    C$#       /!," "!,  "# P((cQ?Du<,P5R .*.% rvnnnn " $ w  r  s EP CDC @   a dBYd !0 !!R  '(1' (' (Ij )'0 M      1ptx1pp p!p` ?4S i ,`a\\\\7Bz-++E/E+M+E+E+E+K" (e(A"!4"!       ;           ' 7( 6&10c (ޠ.A4@   ( (         )   8  0 )^[ X ]fc  ((s+( ^W F } J0G'@$ IRI$# #B<U EEP@    ! & J =   LE F ? ##[?W>?j=ZA; 8 ;5>,F0·O0@m$u F  0 /( )D-y)6]a96a  qh N  >lilm=f ^  n V6~#^ xV  N vF ~  ((;     V*=2"(  )  ) !2))'!-+)&-! -%"-!)!$2#>  PO  #!)   "  4!    h(vH   #!)    y~ L& @I?%   `ni l  S :#(%    4&7<}4o  n] @&H8% p{oo%    5`       :9&k%  5 `}_p)o uv4ij) G"GEZ $;< l ,! %  ' +5 ! %    8 -& + FE)a$,! %   2' +5   & 0/ :=/"$3B :`  3' ) Y[' " 3 i  )12 rW 4. 2' ' )Y[ @v?PO2s Y&   2Q),2&ZBs Y @b?P"O2&  2c52& J  * n9 M .<%(' &   4   $*g"_g8 4  *P0 n0)/0h  /3"/ <5 0D/N E 355. 0/ 6c 0 26=& 0 "!0 zF0 Hc AP:O`__," R4PYO` O{.#   nI0[/@?x0+  47   @*6   G %   Ih%  + c-$N!  ,+'&0M/ #=v# CN ! *4a     E!8 U+38 /V [Bu7 EW4   h*P 4/  ' - /h 62PC 7h*   )   g  $##T8' + ,     =v"X $=vD /=vMv v   %    M P' $,    .5  %T%$L%$   L%$  E     "%  A #c"'   A*  "!!' $ 6.  |   `[$D2H[  >f   fo b_ VU%RO2E7'" g -529]i !  W1YV1P1n@mgj"GGc(61g8.- .. m G )BEA %$q E > ( V~JC (% ~" ='$ c      <;#M"<'$ c !B A*D  V  )      #  *D  V h1B ABA  *)F  )"    63E+1 ' 'pNo  @ %l  29x ((+("   " (rHJ( .05/@0/@ /#(     "}e"  1+K(  M d('('  ) !K-      "    < 343  .     x   " # x/#     1  !K  #(H?Gt_3C3W- K-I [  M d      ) !K po&o o,%J'  tP " 9' 6+>34 4 u/"   E   @%J     t, T0  `_p_ ,%M" '   ! @ %)  pxo 2# >8 5! R  #  PKO`6Ob2& *U !2 12 1 I LK(( B 9 J Ul% _D!   ;.2s.3"0 42 .2    3 :.3  e -: R5:"0J.2s.30E/@/6     5c/:5 7I @X@@ @@@@@ %  A  !      "  z&  &&P+O0j   /5 /WP+O`'O;2 10 }  ^ @$g; 0 0Q/@U/@/@/@/)2!,&,2# (:H(P)O`)O92 10   >&9 0 po o0    5'  0r  mt q   pw0&FQ<0 6 5'0  :  #  C(  :8T OV S  + RY:.XS::@# C(:   ?  &  K . ?- 2+ .  .nunmrq|{ / (? 1XXE?J& K . ? PO .3VaZY^]hg  $U!.3  H  )  h.  Ha  f_ b   -.5.-21<;c\H%#2vVBHN) h.H po o2    4'  2        2'EQ<2 8 4'2 `_) DB WPWXSTIJ (5Z&(DB 3 JL.mfmnij_` 28Y&2JL @~? *)    s*) PO) /B ( (/B `_3  26[&2 @~?# *7   "s"*7 4 EJ .  38W#3EJ `_3 BL          23\&2BL PO .*           $U!.*          2 `_) 1B         ("W&(1B         "   ( 3 @L! 2.Y&2@L G J`. F##8Y&FJ`  <  )  Q'  <     4  <2_V9<B) Q'< `_ 39 $W+39 2J HGV 5  (/4m6r,(J4g       L7 BDc Vpop p o   eo  0SS,@4_,_ G 8 ` F##)~F8 `+)X"  P @?PO,@P:@$!'&' ':Y6,2@P: <"   5                $   B  =B IJ  ?< K<"! ˌB      Kc *5<  $       <<]B  ,"   !     !, 3+ 8u+"  (=no@ % z     -Z  6 ) % % )   %   >" )*5o)0.U(  5>)FQPKd (% .=Fo@   = *(F< F<*YDe X3[ I$<8 B5Z--yy@@Z7 8   Z}  v2 ;    ;0  ~  R4pISK[CQ[CZ %0(9 :9<; VvuvV<S($g  9   = &  '%0 <; ?8.8+  0     0K! ! "@3F.Z  [F vP8  .8K<    8Q<D!WF     $  $ FL $   !   %  !+ GP  .chgcdhFhdHl rF^/X W@1 @  .q(tsqru(|{uvTF|EDF4 F> @ SX/>FLFPFQxw 2828   28 28 | $F F  ,F(F/!0F'I8TSTMS TST STS{  ,    +,mYPZF8ZWZ ,   L8BABLA8B,A     $   mGPHL8HEH  $ Z H--UJ "M mF` M mL`uZ%0H;&i }f o o `}  v2 ;       $*  !  %  !1  pI @ K[ @L 5 Q[   5  Z  N D0 / M  !" !. '30/0)3434 &!" !&D@ A    cll @ih$ R"Y ;d&" (   %!"               ( ;<    ;" QQ ()JZQ"(Y ;d/ [. $ -D )Rj      ; 2 7 ;,g#  #hp[o2M 2u//2<BP'O`O$28 ; %I2$,P   pNooo,oo<$  #\X      <:q/7<%B#\  Z5 %  \2 D >  ( %< J/P-1   5  s   *< N + -  B;&0  "    0/) !    (:q3(?! 0/) !   1%(:rS(?!pAo  9 BX    # ( Z{(7   cMNpyv op {|{ bifx  P _`or mnm  V   _b n^_ `gps ^   o    @n Е ߖ  + wڭ X* } `(  6,      &       f              3          )2t2Q N @0  ) `2-: W = !$ )4  P)  %&(O*  -+&%_`   &   U}@%$a%:56#-+   % 3+7%  4  f_ #)^\  *+:&_- ./(&5 ->S7  5'7% = P4O`O`O`gO`#O`O` O!"9I !%!h|&P7 & "1       2   !       8        " 8/q;I"7 4?>$7 oE?"   `0U8 nmv u ^]fF<-5  M@?< EVU -  JZ2( 8   wjif #o RQ fa-b5 EP   k^] Z #ctsHQ ZO-  .L6 ER  aTSP YjiZ @?-r8    zyv   %7- 8    -JX"MT&;-BL &3     C   U    "    JMQ!  -B "G     -4 a     J  (    (      ,  -(  "( p/oZT,9 4 G  %   A    B    9-:F  2H 2I  3  <'- w zq0r }  9   ,' _    6    4$   1     .  1    1   .    .   ;   P }?N 9 Ju J#   6  8; 42  8; 42;4<4/@  C     ! $ 2!4 ( 2  &5 . %& K'?      1U%    6 % l<  ")TH@q<- $w8`j<  %"BM'0 /I'Fs   "  M !  %  J (/ G *J(2P*G/G(TR'F "!"'D &%&'D#$#c(F'('U ,+,(S)*).-+.^-.k-($/212'F/"  <p%o9o6  5j*F5 Pot6?>;=;' # ,!$;< 3?o=B5 :G3>o-R4Y  y |    }       ( $E6E F M;o&(,    !  0=o .0;oqvS                 ; "!$#7 8&=%z(;'@J?P?3 2qR%2   =   ! =|"58#| ;p 'x 0=  < !@wSHTv<"!=| BBBBBBBAB# %. /&/  X#%   8 CeDl\v /Z%.  m : ( f ! f03/#3817 f m:oBP  !!!!;-T%C%%! ! !+%*!!!!!F*&&%  tsC @=23C6D  5'#;DC} :@5 .  #2K D* 58FA11Ey /' #$F"""""<(-)&"&&m" " "N&&(6"""""u " ($$$p o#x3kN      #   9  %& G       0/@?CC!pEo9&e $G\ 9p0o R QA 5 > |2&            '              '    4HJ             7HGG R_f*1>KZ,0=0     " >" 3"  1  :,   888=:  !    $"z        ML:C>##  1$!C3]6Q50XB5[8: ) z8&   ? eH<#  1B$J6Zf65 >$  50 0h00/*! $ 1= !   C "     _ 0[||A   0{/6HW&       |  $V  0  @  $V ::#  6  ( (-B92   0     5 #) W\  (.       * .    %( 8&7&( (1    T ( E(           ?((# "X%.J   +     0  ?( G) I (=/J!qI| (4 `_p_pe_po(h#    #| I(7*:6# ( .h# @B?P?P?)V&    &|(7*+&( V& @o?P?P?3 / 2(c2H 0/3%%z2j0%s2%0h/rJ6,& ]   @"G   # -    #    =    .      % ] -0}%\( ]"(~nc   Q J }n3 " P')?nP'J } _U !, J ; JI"" !@; 034   !533-- +, '- -    U ,)P6aiU%_OJp  [)S!/  U @?P?P?P ?PO )    "# #   B 9&)  YUO $Qdc.  1 X+ cpi hg d W   F/  QXW  NM R E  .  &$6 L 4  3C/   p  IL K  B- Q . :PO`%O[#!. F A %! PO dS P"  S+++++63++68  v  &N  &&(    #   D 3 K (8e     =  0 )   ; i^\$   Av8  3 H  rPO PKDC     ?5 ( % _xVp `t$ < E?:W H  "4_  (F+  l)  $&  $  %N J   - 0      >   0      >   0   ^  d-a( wY"D(" !tpF   $  &      l _)? * 0      A    #?w ?Uh  ,*/$V    1F  ,    v :   = 9 ~,('O &*&&& % ,   ?'  v $    y)" ! ? 33:4  -9 4  +   F $&&  @',  I t C ;, , RSIT   $  V 41     ,Mv: =9   &~,0//@?2 #   2  2S4%2}?L#2  2   ' <*p!" 52  %%%$/    S *+< >Pi= <52Pp *N$D|{ N$0'/&\  %1"  %I,  0D/@'?;wu  I2; 0i/@J8 W @?PO  @'   ~   6)+Ccq Q2p -      + {6",!",!,l )) +,+   - . - .-   + R  ,%# qM0+,+'#  0  0+ &@ S{,+y{6,  R  , ,0[ .,!X*   -* *** # ,+2 9: E) &   @  A  > 5$7,;, ",-  @  @ @.+ * nlu@;IZC;G;PF*'g vp~ %4} C   %  A4 ~  * ` _p_p>_po(  !    (S!( 7W 0T  =F >h  2PO Pg;  ##    o<$ Z2 g PO`c_*^*R '12*c* 0/@g/@?--    ;     <5!9--       1       ) F?" j D  + "    ,/       , * D ED F%##i{Q F"?"j  D + 2 Bk1 2 : C ( '/3   \     8p   "  ?  > L =-  3 $#< GD . - l$ !$-,O  1  -2f     z   |     + ,    !      ?  ju  ,6-  <d@*8" C3 6L ;    t2-    q    )7+ 4 /     'Clkz  3D    %FEV /      #2 / & kqq #!R\2 !jf2eګj3ɖ 3/Ik G Ba !   (   ' ( '/3\ 8" #p& '*), +.  /2 1?>4L3=21-436538<7G65D8 7. l  R)C<]   (     F; RUV  :M)TRD)&<      5c 0/@ /@O?3I        ~    A73A3'    j 0\/@T/@;/@v?2@@@    #' )6!% 2h2         0W/@/@4/@/@/@p?(=/*              6'(^(           j (@?PE?-   ,g5!,'d 0 09/* 9*i+D* PO`d_( _(V #52( d( @?P ?P>?P?P+?P?PpO,"7 1:   +>;  . ) * 69,1,:    7 I,0#/@ /&c&$$  %83 %KE pdoo)&  > 3:9;(8R() u0/*V&)')> @??P6?P?P^O*3*'   $$  , ! )$7*H r*3*  @b?P ?P??P?P+?P?PuO,E":(' ' "' &&+>;%% 0 +!& , ''8;&&,hg,     :  N, B00/ o  B\    B  * "4&      +# D  - # # 3  D 3 RD (K2          62W>3=2\  bot   0/H0(    0:/@?     *&&&&*J 3 *@*? )-'"  \@  @d-&'%&&J   \ $ +0/6( $[>V7t (--'  \@    @  s^  F:?F     <+:  >  6      C         b    /    /"$E:%?%% %$%%@? %%%%$#>?>=#                    6/0 &  && &&  && && &&  & &  && &&  && && &&  ' :34      ,)*'R ) HA B; <   ,)*'X / NG HA B ],)*'^ 5 TM NG H  8.9opij  $2$ $ $$ ..F; RUV-.../$ $ $$ ..F; RUV-...# u K $$$ $=$>78 44ef_` 7F6~  z  EnollD{F ##{h Z { (/#e;_]'#. F::?     F     &  +       ! "% * %& %& % ,+, -.1 6 12 12 1 87 < 78 78 7>=>=b@ ? @? B A/J I JI L KV SX SZ$YZYE\[\[^]^]086696666 0/@/@q/@ /@?F&>;>#F&o  q      F##F&& 3 / 2   # 667F`L_J~8$IV#&Q I  ,F&:$9!9        F 9#9## ,F0 L:<F Z&80/< (mZ Y    ! 5 ;8    / E% 8   Z  8a8k"--Z X#  ` Z&    ; d5 8 ^3" O a6" Z u;j8d~ 8g--Z`g     Z  P" WX[ :7 ZS15Z!U%N !"" *7  ;6  ,3^! U&0 ,8^! U&0 ,8^! U& O.-.-.-<YZfc/ 2/ ab &  * 0/ ab * ,/% F%    zk   z    Y&  ""oo#\m"J\ J\J` <I$b& f-K8d.Ji.J  i  . Q   :  f  0   6d22u%       `    }9POO`_   `>($&_8&0@$+ <[4  < 0/ c    ^=&W X WXW  )?=[ c  `J_pot*  b=%`e_p _ v'%! {R x+%    ' #  & 4)RM NMN)MNMNMNMNMNMNMNMNMNMNMNMNMNMNMN-MNM NMNMNMNf-     LYh;%& LYh;%& LYh;%& LYh;%& LYh;%LYh SV aVK #(+( )- f %*R#'(' (' (/'(' ((|H#    & #*-='('*)*+x7( Sj-9J(##  / (  d  R'~'v' 2 z  @V?Pm?PO*        st `_p_p'o*    ;< !, # /CD 0/@?* ! )*!2 I00/*     q N)9 $*E .      0 0'(# (@N:7' `9%!" 7T- @ 0/@/@>?,0M b a`m+ inm z*,", j,&$>, 0/@,/@B?,0QV~ B A@MK INM'"Z._,",.n, &B, L03(p  2g;22+C@r?(;7>=  : yx  |  0; 0a/@5/($  ECC VUX    / cd* EN$  EC [+($J&x-$   & 5-x  \$= &x-('' 7%3($  S  " T  )$    # $ =9'$,+  "   #w x )V;2 _j*gt72$ $  S   " #  ' +CC6($  E   &$    ,  I0% r $&  -$  %.%%(' .%,SEE&H05  _75rN3J5$  m`$  E  $:=  ' s'($J&  $  5) $   &   5 ) (*="uG$= &     5) ' \#(    2 d       )  ):5w!9;L     2 d '13,:F$F   #   [32j:  $ $      #V U6 5 > 32 *iIJ2&"$e:7 $F   #  [32,'r' '=@,I)% ?  5)<,  )N%G nq)lkn m no5T)]<(*=<!"e,; )%  )  5)<@'&'@?&XC>  % % D&X14+3X-.- .O'('(x c   .|{|  _.5 !-  .';<; 0  5 6FEF A "    5656 /0/0 2  F;HW2   OX''`3_XJz"=: @ ?:XAB?G9 9E? 2-)LD     #   + & )4/(N(&/(L'N' %F,L$!"!"!"9  $  # # $=' / #$>e#+ Z-h*t;+$$9 u/e   ' %F3)L$!"! "! '"B  $   ' , m n =' 8'5 65    _ f}~ *>HRC( T;y,E($$  'B ' l   'pKooLl # +,0'/@/Ld   M " ' -`&_p5_Lt #g$I-LN7  ;`._&Lc*%3 % 4F\:  -   -   : %.')  Q.$-2  c.o-:] li-lm nk-l  s       #$ EZ   g l'y z * Q     /! C F H& ##Q5& F_: - -:%)  Q$   co\FF% 0/&\O%$"%  @?  Ll  a$88:8888Z|{#zy$xw(3D(  $!&; Y*+(l `N_pofst* f=) `_p _ fv+%.  ^$V9 fx@`?DU I BP9O`OL  ^ O jx)& *DCFElklk)lkl$kl kl klklkl kl kC !  ! `'My3   <hyg4Pg  zg %  ^g &D .7 'adg fe l"        Cc!fu|4y!| +oPO PO87*)*    'l'E / Ef#( (,+c>N2)PPhLSh G c('w & * #  $    C!! DE  pklkl*. " tQ ,   9p@obnb&  r  `_p _5    !   V K&   "$)!''#  4[E4&q&'($!VK 30/  hghg/3658  * Q8^  / `_"6  in # !O,#"D!6  0*00>/  c%()o ?B|0   #- 0/L 0`J_L)KT#(,# Ky0K/@/ R ( ) ] @ R 3$Fn9m n mnm0j6H  )  $36 @  [9   bk I F @##e#` F09  0j "" !&!"!"! "!,"!" !" !" 2"!"!"!!"!"!"! "!"!P    !      2!    1  }q0      ,    2! P *0 0,)~Eij8   /(m/D(E8 55>'~9q l /k rij@k)l$   +, '8$ iS   C77QB")[Y(>:9  /     @)~ql  4'  p|o m&[5  + 4=  5  `/_p@_38 7#8 78 7_  - 2{J!21o # _ `t_p_p _* 8 787  {-)M%>)1U7  - p+o(43-'50 'J-  68 78787;8 3~< 9:       5Idy*5,C  ; ~ / 218- )'@=?P?1 0a!.0v po o><!D !- > <.Z]0<!" z a08 78D,{8  , >$  8I#@$ ,87'#    $# *'# po oGQ8 787~    F##.,=FQ ~P)O.QR;-3&-S; RF(/ `_pb_)QT   (73(}QT `_?- &       \[\[PU ^  +  " >z; J> W14343  B834 343 |        , u . E05?" 2-=0  .  | L4 343 434 3439 FEH EFC DCZv. '64" 12)=       < .+)  #O"+P  &'3()(  < s 4 34 3"343 43&"343  C",+ c&{"    5:(fhv   " &" ~-* 4) 4 743* \YZ))  ) ;gU:Cy%$-/ )     4 `_pq_p_1        2 0B/i",~\0 3 I_ o6G9]:9:39:"9:9:+9:9:"9:}~}~} ~}N~aCDA'-.-pCBo popo69o po-}o5poDa9 : 95popopo8}4~9C4~C.BECB86  0U\["  *3 '          N#   78   U\[d  !  U\[| &  % : 7+ <7   C*g  U\[@  ^~} }zy U\[ =C4< `4\6" D c    0E &;+7 AOw(q06G]3"+" Na   '   69   &   }# Da           !$4#&4'*' E./8 PO` O`6O` Od<    $ b)  !?>0P/@/@/ dj     o!** }n dnv uvu       %  ) * )*C3.OE:c n     0/dQRQRl  qnm9$ C2! d5X.WAUQV.P4C V&UVUQVEvuvu#USV5.,Q&,$4 &  QE #SB ;WS   "Lt.ns 5.AQ&P4 &    Q E    #S d'' O <Hp  nHiQ `f(n" <Hp:I& 6  80+/@ /C D!CD88     W E28 !8Q   )wx;k   2xwx3   '           ;(-"(;2 `d_p._p_T ,  '!*4- (T  )"*"<  ""w5>#*(    "" (!T  )%*%V  %%w 5>#-("   %% .)VB;< j i; P$X \O & 3V r(0y: (B   $X `t_p(_)X*, ((*!$( z  |I024 (Z7@?|;Z  Y KL Y&"D   ) N   + f c* @Li *) (|OJ ("gD   L `j_Z>-B K  5E05/@/@ /-ZV    ,1#,.:  )ZZYZYlZ  YKIL ZYZYSx; :EF!   f c|I   (Ao7I(69l  I S   *ZZYmAZ YKJL ZYZYbw v  ( f cUJ^    )OH)mA J b ``_p _p7_p _poZ    / . 4COHE(i>"*/& 0/"Zj!Bw) 0s/}\55>L&Y& .2|"l kl.kl kl-klknm)R&"%qr qnmfR$Qvu0vun mnmZRoQ"] li.lm nk-l s        ($ EZ     g l*y z * H     /! C 25&}H3& 2F" . -) %  f$   Zo|F&|D %%0Q/|[ (*7# /*00&! *0POPO#&%,+#&#0POPO$&%,+$)$ | {  | { @?0 /:P 7P7|//   /Y/F  ?C // 0z/P 7|13    1Y3J  HF 130/&H %0 0 11$ po;o*    #   #& * % ]3.$ i2*A  %& S !%&4%& L %&7%   6    2   2 '&&rz5j9[ C 5{C2A  N!4  D7 )*8  %& ,   %&)%&."  )     $(   n2po7M = 2J( 8,).0./*X 8   6*  +       6      ,    @?      # )               +YY6    %'+     6, pooN*     >W0]C   ?B WX'KL12 ?@ &  WZ   !(          % + @E[\ ]`    N ''ZNHC"# _ADDgA P/O`O` _2*    u        2= 2k8u P+O`g_(*9:;/:9 21 0(453 ( 2 /$ (@&?0*e/0 /M !Z* *     *M2: $et+  7Gt    8  %" at   YZ$Y b  YVUPO`fMl  & KZE--l,Z*Ƒe @(*b` _ `$_`!_ $!<>(MK#/D@( .)'  $!^>+(*#     <snk tgpeH .4# < @?*2`_`_7L 27 -<*>T!e% &%& %J&% &7%&%& %& ! ") / >' =   z.    J  %   &  K+     <K0 <K0 0 L       A   < &Q^w>g@@ $ <666B>!  J 7  0_/@? ;&/%&    8-m ;& 0/ " ,  )#3'    3 2 R0R2 5 A Q , '5  P((>.)P, =  5  <+)<@+?0    < /#/R<z3/  i    'A%  %   !  K ]2 x /oofU9[2'/ A   !    K   ] 8  x21+2%12 12 1      ;*6   1F  )  D     G  iT    k0(0&3:9\<f<g   ;*%  1F      @     @  i T C $#  "."pIo%} ' $S;$j `_0" !* *  ") * &,#$ & 5/=/ PO3    2:~2 ?3  >   W > >I(YK_  > 7WU 3@&%B&%I     %202@BI N&%  )&%*B?@9@2 1 >;   Fc T  ST-(#     A   W "*\ N (<xI{D''fEuo}k:]HK N*:9<  F c T     )>5A W ' *\ S ;9       *, *)* )& )&!% N %  ] e \    ; :  J[PzdOlU9bc:*9N        ]  T \  DW . "  &%2,121212 1 ='. F; RUV-../    S   h > *     $* Cf I %D rv([f)""Inh D/ W     S? > *,   $*  f.  Id T= "#h op S61 +3d)NKLOP  1 '[-   [- Aa>:78 A,,"'  bab g,   [/ls- ? RK A( `%_< </*  < < <N^,0       $  &     '     ,J    ) [:;BC  ./*+" #    >?& '2367FG b $.F; RUV-. $ .F; RUV-.  )  9 #0 #6oo P0'R0.G   &        Hi                                        "          ! 1   # ,           m  b  g  ?           '     '                     9  t H -<      )          {                  n         [  f -w   $   % %"% %      @     ]  *    3 '       >    ! 'a     '          [   *    T    >   $     T     EK  8  8  L  |       N  \ n=   f      U C   ;    8   L H  &  9& 0\  O  ,  [    B   W   I   L :: H \:&t+PiA\&jC0[&j:&._=IVI&";TV^Kv,` K v#~paM r,^L j/A f xFYi/Xbm H-<i       {               "!"!"#$[# & %&f%<( '('*$)* )* " + ,+,+.@-. -0/0]/ 2 12*121231|63*87878>7878 7|:9:!91< ;>=#@,?@? BABABABA FEFEFEH GJIJ[I LMN*M NM NMPT CPOP ORQT STS V$UV UVW'XTWX WX WZ8YZ8Y\L[\ [^]^]|`_`_`_`Nad\cMf!C'D CDCDC'D"effeDCfef eh ghUg_jKLKLiLKj;ijij8il klLkp mn mn mnmn mn mn9 qtOst,sv[uvuv uDrqrWqx wxIwz yzLy::H 0S                       I  -&%" .F; RUV-../      3 >S             &        .61  )0Y00/K K(#lKK:fQQ [21+2%1 2 12 1 <*     .`kbWF  <*%   .`$ [21+2%1 2 12 1 <*     .ZkbUF  <*%   .Z"  K&% 212 1&% 0    !      *   #$2MfGH   eb; 1 %A  .   % '* 49/  k:           N   .   &   . h ;, 1  *2 69)  D T    5A A2+ !      7 K F>H(0#(HLIlNIT:  K0"w aQ !7 %A9   ;   % A -3 &N  ;o *2 69 "! "!"#$@#$ #&T%& %!( '(5'(A'551  l 6" >   M 5m3tA5 y >  M ; 0/"!0'/@/q   ,.5 @p?P2?PO   = >?B 7 :9DCB_!15 42A  S 0f/@,/@?  _ `aH Y @ [feHQ#+,!.0?      G 0[/@5?!        !/u!  :? 0 0/h  G 1Z 0/@?(   #(4(< #         DI 7,0afQG ? #   - pWo'oo= (    DK  ;-6  TRI= 3 (<<)0"/ QQ @?PO " e    "     + le H   17" e     [   "   $"2+H"$ g)  $   . " (q93 ( W $.0p/     3 H,?N%,X -*+0 ?27: 9 6;Br7, 4l    & nu ` 0s/#}+X"Y, C3   H  *   1     =J  S  )  f    ,    ) P *)*) 8!() 7   +   O   P $ 1H  %#H*U} A*.N )t,>n + ?  m  G    PCB K P  [V  3       P((PV cV U$'P 577.  `_po% :o 2E$ F0'/SVUL  IDDK2'0 `    u        |'!8(+Y04  E  ("!"*!"!]"! " !0%   "& (E (.*]   i_G83"!"8!AV  1 & 7\W+&#7 1hyo3f-8A  F       * # B  N  +F+C ##OVeF.XzzL e w<B $ /F"!#YKc*     (   # $ /F"  D < < oEb6<m<*c# $ /F"    " D c J)"!" !." !" !"!"! " !" !?T A! "4C  %         "  : = ~} t!  !)  ;E ) j"/ .     ?T   !     4 WOX! %J&2E  %($ " 8C        !    ~}  J            ! p    ( 1 e6:/[ S"e4 9-5$! J&2   #! p  $ t  8 <  !!p#oo8or qnq} %  ST {$? <  (P[O`O)`8B0(' (oZ(`8 , ^f' ^R   }.;0' ^f I3<2.  2n?|{7ts  T 4343&*" S$&  8=J ? IH >t5 ? o\G7 ;W olH&(G 5$  oC )H&}G! `  &   -'6$)PW olH&  ' G `  P`O`O43=2P12) / LK+LK    h>j7+ "C> 0G1,K) CLD+  '\ [\qr?[ \qrqrqPOPO; ,   6ud6 ' ? ;@O?P?#;"l@' "15 2 )       i @k  2  +  "D> (0H1+3N)STE (/W P 9 :O    a/    6m ----IA  29  ;/1:  6; @ 1 -   (   #(*Q 5 1*// / / /K  %D2Z,;  '+ &wl/:=:81Y@9   MEImP 5MaN9C]')C$ #   (     -    *%K1 po    QTW T+Yba\[ \  |h:Pp 7,  C( X 8tf]^]    "   !. "   '   #S & #$ - 1 / ;2   4TXQVc\C @2 . h 7$*' E`  75qu-$X7<  :x$&xw xw xw0xw (<;*. &  21+  r/ 05 8,;>!uE FER  LQR): (* F<#GmI)D2 : A$@&  0    76 5 l klk l k.        /.     T6 7      !z" dc chgh Z" tK   p 6> rK@ |A ::_|y{F# u"D"        PO`_:LK LK&LKLK0LK &0  i&Av0): & 0N,,,,` 3 ,,6",#07/A 8   Z     1>$*02z#(40Q'0_ts00`_0X0#((+#=&, !*0  72 ,'# 4 08 #4 = #0 :'{" , :#04ro6     K L  K L   : #0h0 _70+ %0# ( #3  19CL=0(F,rLrX  #Wxf,2>z  Fu(u h\.L! G)y 1  $  *0 2z#(40Q'0_0 0"!$0#X&0%(#'(*()+,#+=,  `k_p _   !V&  X W X W   N M f;6   i RX ;. q  q$IJXJ@J`KXKK L `LL M xM` M (N NN(O`O O@O`8PP@P@QQQ HR@R`RPSS S`!T!@T!pT#T#T$0U`%`U%U%U(U)8V@)V*V*V*@W+W@+W+8X.X`0X`1@Y`2Y4Y5XZ7Z9[:p[;[A(\E\ H\M8]Q] U]`VP^`]^]_@c`_ h_i ``ix`i`m0aoaoaqHb@ub wcx`cxc@ydyhd zdze{He{e~fhff(g gg@@h`h hXiijhjj kxkk`8lll@m@mmHn@nnPoopXppq`qq@rprr s`xss`(t`t t@0u`uu8v vv@@www`Hxx xPy`yy`8zhzz`zz@({X{ {{{|H|@x| ||}8}h}}}`}@(~X~~ ~ ~`  `  `h @p `@  ȃ! @!x"Є"( ##؅$0$$$8% %@%@`%%%H&`&&P ''(X@)) +8+`,،,-p-/`/H`0@118244@:;<8=x=Б@>(>Cؒ@CCpCȓJ Kh`MMNX@NNO``OPQPST UHUYY8[[ș@\ \`]`aap bț@b `im؜t(u`y؝@{{p|Ȟ~ ~x П`0@@@X@P ``X`` @x@h` pȩ x@Ъ(`ث( ج`0@ 8@@خ`8  H@h@@pȲ@ x`г(  p@ȵ `xж`( ط08`@HX` h`Xh@ȿ@ ` h@ @p@(@``@  "#P$@%%P&@'@(X **`+`+, -h.K Kh`MM NhNS ZXZ@[`\@]]@^8 _x`__(``p`a@i i` jj@n nhoo`p(@qst `H `(@ `@X@P` X` `  HH@H p`@X` X p  8x (`H@` P@X P`p0@@(  0 @``H@PX@ 0 ("@$$0`%' (8)`*+@+-18@36`7H79:`<@<=x>>(@ A@B@CD FXGH`JPK`MNH^`_ `(`pd@f fx@g`h0@j klPmmoH ppp8@qqr(s@tv vxx |( (    @  @ ``    p @  x  8`@@P H@HHh(`@`X`p@ `@@`` X```h @px p   @0!!!@""" @# # # P$@$`$ P%`%%H&`& ' `'@' (x( (@!()!)`")"*@#h*$*$+`%p+%+%, )p,),* -`*h-+- ,.`,p.,. -/.`///10 2X020307X1@8182`9H2@:2;2`<(3 ?3`@3A04Ap4B4C5Ch5C5`D6Dp6H6 L7Lh7@M7N 8O`8`O8@P8PP9`S9S9UH:V:V:`XP;Y;`Z<[H<^<^<`0=@ap=b=b> c`>f>f?@gX?h?h?@j@@n@ n@@o8AoA pA r@BrBsBtPCwCxC@x(DyDzD`|@EEE0FpFF(G`GG@HxH HIhII@I@JJJHKKL`LL MpM M` NxNNO XOOOP XP`P@P`PQQR @R`R`RS``SS`TpTTUXUUU@HVV@V@@W@W@W HX`XX(Y YY8ZxZ Z`[h[ [\@p\\\@0]]@](^^@^`_`_ _@_ H```@aa`a`(bpbb`cXccc@ddd(e` e e@Hfff0g@gg(hhh 0ii i"8j"j#j &0k&k *k`* l*`l+l`,l,(m.m`.m`/n`0Hn0n1n1o2Xo3o 5o7Pp`8p8p 9@q9q>q@A8rCr`ErE(sFhsGsHt@HHt`HtHtH uHhuHuIu I@vMv Ow`RXwRwSwaHxax@bxcPycydyf z`fxzizj{@o`{q{ s|sh|@u|u}vX}@}} 8~`~~0`@@P `X h`@`xЄ@(؅0xp ȇ  x@Ј(xȉP@H X``@@X P@ (`ؑ0@8`@ @@ؔ x`Е0`8 X`  `   p H@@؜8@Xp "П@$(&&ؠ@'0'(,8 9@99`;p<=>X@@G HP JJK``L`M`Nh OȧO PQT8TTة`]8_b c8c dkPklmp@nȭn @oxpخq8ssد t0t uȰu w@yر`z8z{{(@}~@~ x ش 0xе0@@8 `P `@@(p@P` H PX``h``  @``H P80@@PX `  x@h h@h@h  x(  @ 0` h   0@   8@@@ P@X``p `0@!`"P##%`&&+``,@-2x56(9`:;8<=`>H@??B@B C G@GGH@L@M NX O`O PH RT`WP@YZ@`Pl@ll0lp m`mm``o`p tu x8y@zz({| }}``@ @P (@h H` x`( ``@P@X`@h @p` x( @0` @@P @`X`@h`p x @(`08 @ ` @   H    `P    X ` `@ph`p @ @x (`0@8@` x@( ` x ( 0@`8`@@@`08  @   H!@!!P" "`#H###@$`$@$$8%%% &@h&`& &('`'' 0(`((8) ))@**`*H+ ++P,,-H- - -(..@.`(//@/8000H11 1`022 23 h3@34x44(5X5 5`55 6@P6 6@6`6(7`7`77 8@8x8@88 9 P999(:p:`:: 0;` `; ; ; 8< < < =h= =>`X>>>@H???8@@@@(AxA@ABhBB@CXCCC@HDDD 8E E E E!@F!F!F"G@"`G`"G"G"G# H #hH@#H`#H#(I#XI#I#I$I $J@$HJ`$xJ&J 'J'(K'XK*K1K6L70L7xL7L7M8PM 8M@8M`8(N8pN8N9O 9HO@9O`9O9 P9hP9P9P:@Q:Q;Q@;R;`R<R<R<8S@=S=S=T >XT@>T>T ?0U`?xU?U?V?PV`@V@AVAWA`W@BWBXChX`CXCYDpY@DYDZD`ZDZEZ E [@E`[E[E\E@\F\ F\@F]`F@]F]F]G ^ G`^@G^`G^G _Gx_ H_`H `Hx`@I`I(aJaJa K0b`KbKb`L8cLc Mc@M@d`MdMdMHeNeNeNPf@OfOgOXg PgPhP`hQhQiQhi RiRjRpj SjS k@TxkUk`V0l WlWl@X@mXmXm@Y8n`Yn@Zn]@o ]o@]o`]Hp]p]p]Pq]q^r`Xr`rasb`s@bs`ctchtctdu`epufu`g viv jv`jw@kxw lw m8xox`ox p@y`pypy q0zqzrzt8{ u{@v{w |wx|x|`y(}{}}@0~~~8@ @`HP@X`@`` h@  x`؆@8@`H `P @XP ` H@ P@ `@(؏0Ȑ`P`ؑ  ؒ(@@ؓ8@`@`@H` ``X` P@`ؚ @xЛ` (    @  ` X   h@    p Ƞ  x С ( @ آ 0   8    @  ` H  ` @  ! 8! %  ' P( / 0 `2 `W  \ x` Ы`` ` xa Ь@b (b b ح@d 8d e f @g h `i @m @o o Pp `r  s hx Ȳ`z ( @ ` @ @  P @  `@   p ȷ  h  ` @ @  P @ ` X   x м (@ `@     8 `  @@ `  H `  X   `   h  (   8 @ ` @`   P   h  (    0   P   @ h  @ x  (  ! " 0"  # # 8$  %  ' @0 @0 5 @`6  7 @9 @: ; > HP Q S XT T W `W @X Y hZ `[  \ p\ ] `_ x_ ` 0``  a a @b @d d 8e f @f @`f f  g @`g g h @`h k @y H{ |  P `  p`  0   8 @  H   @ `   P  @ H @  P   H   P   X   `@   h `  p  (   0   8 @  @   0  ` 8`   @`  ` 0 p@  @ x  ( `   ` @  (@   8   @   H  @ P  ` X`  @ `  @ X   ` @   h`   p `  x @ ( `  0    8    H    ! P " @, . H .  0 0 P4 5 6 @`6 6 @7 0@9  : ; 8<  > ? @ ? @? `? H? ? @B PB C  E XG H  I ` J J K h@K L  Q pQ Q `R xR  S (S S S 0 T @T T 8U V  V @V V W H`W W W PX `X X X X Y !Y `!`Z !Z "Z h"[ "[ #[ p#[ #@] $a h$d $`d %g x%l %m 8&n &@o &@t P' v 'v (w `( (@ )@ `)` ) *` h* * +` p+ +@ , x, , (- - -@ 0. . . 8/ /@ / @0` 0 0 P1` 1 2 `2 2` 3 p3 3@ 4@ x4 4 (5 5 5` 6 x6 6@ (7 7 7 88 8@ 8 @9@ 9 9 P: : ; `;@ ; < @< <@ < P=@ = > p> >` (? ?` ? @@ p@ @  A@ xA A (B" B% B`& @C * C+ C , 8D 0 D0 D ; 0E`; E; E< 8F= FC FD 0GJ GK GO @HO H Q HQ 0I R IR IR 8J@S JS J@T @K`` K` K`a @La La Lb PMb Mb VO[c0033iloru8D330x0033@ILD3`]8DX33IVY{sx}8D3368D33 k >JXR8D33 (}(4nHT(8H338Dh33xD33  xD33` %xD33 @&);FO8D33 XVkoU/533aG0000 0  @3@&&) P3`.9<?JQxD33-Vbfjv~xD33@M z0033n 0033 8D33 ;8D33  xD33@  xD33`4 8D33R8D33v 00 %`!88 8 ;  !(B B E !N N R '#(1 1 4  `p# 1 1 E $V V Z -`%   %  ! %22 2 6  (<8 )S( @)p *~(  * *(  8D3+  8D3@+  0033+ BF/8D33.K !%iu34`0e8D33`1{'3-8D33`2@>Rf$444Q9?VEK8DD335bptn8DT337*  8Dd339g; 8D34:#04b|8D33;8  HE2 414A@Zhl$064K4EXIM<DN4j4 H HT\m4v4MX37y44QPEQfl44 U 8wT44`V @644`]5 (3DGVah8D43]O m!HTly8D44@c Cnh  8D!44 h   ! !!8D43i !!"!D!J!G!004"33`i [!f!m!!!!!00t"43iM 0!!!""""""55m #B#F#y#####00"34o (###8###8D55o (#$$CA$M$u$^$m$"# #5!5q 0$$$X%(%X%5%@%#%565@u[ d%r%v%%%%%8D953 wy %%% &&0033x &&/&H&N&Y&S&8D<#33x (l&x&|&-&&&L#(D53@y &&&-.&&&(S53y &&&-:&&&L#(Z53 z%(& ''-E'%','L#(e53zJ1'1{rP's'w'28''''8Dr53{'''2H,(8(G(O("X#r53~@\(((2mM)Y))q)y)d#t#@#{555)))2))**r53Y`***2 ,,~,C,K,##X#550, --2O-U-[-a-\$D53 q---2----00h$r53M-..26r.~....$$r55@...2v //!/00r53`'/J/N/2f/r/y//0033 ///2////00330/00260B0l0S0c0$$$55#000020010$$53IP1?1L121111%$%4%55s112118D331*2.22R22228D332 222228D33 2 33;w33333t%%%m45W 333;k(444X4>4K4%D%m43`444;4444&D&43y 5$5K5;5555L&X&(d&m45 56r6;B7N7i7a7&&p'm45777;V 88#88$(T0(34@#28@8Z8;`8888P(`(pp(33s8W9c9;<9999(((3659 : :;}::#:8D33@ (:::u:;:: ;;)()55 M;_;;;<</<%<)()m45I r<<<;K:=F=Z=O=t*(*m45z ===;p>|>>>0+@+P+56(>>?;????++p+66 @ @+@;IS@_@r@j@,433}@@@;e@@@@xD,63 A)AlA;ABB Bt*X&(,m45i(dBtBB;~aCmCCyC-X#(-6)6CCUD;^EjEEzEE...43@?FFF;>FJFRF043b[FrFF;FFFFxD 043F GG;*IIII@0L033LJ]J`J;yrJ}JJ&D43`(JJJ;+K7KOKGK,2<2pL243r zKKK;2L>LRLJL22p2-666`LLM;MM NNt33(343`zNN*O;PPPP44443 _QQQ;+KRRRxD\6S53@qSH>53( `afa;b*bEb8bt3<>(?53C bbPc;dddd@@@(@53`]deseze;eeee8DXA33eee;eeexD33 eee;eexD33eeeFeeexD33`ff fGf00(f'f+fG2f=fFfhAT665`DB B NfILSVfVfYfIybsfsfvfI`qVfVffIsfsffIG@VfVffIfffI ffgI@1g1g5gIVfVfigI1g1ggI~ffgI@1g1ggIh  h hhI1g1gEhIq.1g1gyhI>1g1ghINVfVfhI^ffhI$n1g1giI`~1g1gOiI,@ffiI1g1giI iiiIw  1g1giI  VfVf0jI: ` JjJjNjJhtA  ,jjjKx 5 jkkLpl|llll|ADA963  (lmmLGzmmmmmADAF6S6` mmmmQ8n%n5n-nDAAV633X!EnLnQAVn00 B0B !&]ndnQ?lnon004BDB@!vnnQCnn00!(nnnT@nnnnHBDTBX6p6 2"n ooTU.o:oBo8D33W"IoVoZoTqoooo8DB33"oooX7"Y xD33"lpxppYpp00B #pppYpp00 ##q qY. 8D33!6#qqqYf'q2q9q8D33@!N#>qUqZqYpnqzqq8D365"^#qqqY|qqq8D365"n#qqqYqqr8D34 #~#qqrYqqr8D34##r+r6rYPr\rjrdr8DB33$#rrvrYC033$#&zr~rYlnrxD33$#rrYxD33$#rrrYrrxD33%#rrYxD33 %#rrrYrrxD33@%$rrrY!rrxD33`%#$rrrY$rrxD33%4$rrrY'rrxD33%E$rrrY*rrxD33&W$rssY-ss sxD33`&h$%sq0sY0qBsexD33&{$%sqIsY5qBsexD33 '$[svssY:ssss&DC43'$[svssYJssss&D C43($sssYtt%t000C@)$0t?tBtYPt[t00)$btrttYWtttt00@C33 +%uu uYPt{G{YS{^{e{00E;((n{z{{Y>{{{{EFF66<({||Y||00=($|5|H|Yf}||||$0F33=(|||Y!|||0F43@>)|||Y!| }|0F43>")}%}p}Y~~~~FFF33C){||Y||00@C) !Y3>E8D33C)NY\YdinxD33C)sY ځ́H$H8H63J)3{>{:Y_S{^{e{00xI K)(GTlYт݂III66`M*{||Y||00M* 1YP[gbxDI33N5*zYxD33@NJ*Y$ȃσxD33N_*ԃY2 +;28D8J33O*FIMY^00`O*(aoYjDŽӄބHJTTJ63P* !YKQhYaLDJZ56Q+wY΅څ8D33S5+9YF~00J33TH+ȆˆYۆDC U^+ Y!"DTK 3Uu+'IfY1‡T`KlKY+ևYlLR]WDKHK33Y+,Y{TLL[G,-YEPYDDLPL[^,duzYD`L`633@\u,Y Ɖщ00\,؉Y  ,H6@$X&lL33],TswY,̊|LL33`a,ԊߊY[8D33a, Yf")8D63 b-.1Yz118D33@b/-7LPYTLL63`ik-CQUYˍ׍ߍLD33m-Y5ALMM3t-Y2ӎߎ33u-YDT`qT(M#3YIpxt00$b33|> YpRXh^tbDbm43>rYGrr00c73>YY2>F0033>TiYs8Dc33Q? YO[kc00cm43d?(yYBHXPccc666~? YHNq\"(d4dm47?Y34`?YxDtd33 ?Ya"0Cde @1<OYcp{DCte`%@Y;%400e64>@H[rY00e66y@Y"eqz004f33@Y^00Tf33@ (YR(!$tff33@~AY$1+00Ph33@A@U_Y{00ph33AY&DCAYF7CJ00h`AB0kYPtbDh#766 kB*5@Y~jv i33@ BYnz`ihii@BYDj j43BY 8DLj33@C5AY*$\j335C:YT`Klj33@C kYIUtdllk|kkZ54`DYnz$\l33`DEY,m+8m33 EEWYS0($m33 "EsY{$n33#F DY0C8o$F '2<Y1CM[TpTp5v4@%Fbm}YX\T$p46%F(Y-%\$DDp66&F(@KPY^irpT66@'FyYL#43@(FY*)8D33 *F3HLYYfr{8D33*GYg8Dp33`+GYt8D33+4G Y1<LE$(p33,XG SdhY|p5S6 -mG Ypp53.~G Y>TppKGY/LD33 KG( /YeLtDXt63`MGY 00tM H'4YqKReLDt33 N!H_jyY00tN;HY`i8uhuSH _ YO[hvxvv96 ZpI18YP\eDwwZIlw~YDwx@[I(Y8xD63`\I #YJYer@033]6{~YhxD33]JY00$x@^AJYDC _RJ*-Yy100Dx`_kJ*8Yy100Hx_J<M`Y600Lx``JY#1+00lx273`aJDmYxxXx;7273@iKYDSiKYBƉDC jKY00jK_Y#0zz@nLr}YhDC{nLYOT|o7LY;ƉDCoPL Y@p0T`K`prL;duY{ |33@qLY9EdQDCp|sLpY $||teM .B(Y@||}>73RN Y@p0T`K`{NYPt00NYaCOVDC4N*]YUy100NgyY$DP N*&Yy100`O*6Y1=UM33OY7S_q́@tPYf/y/8D33P*Y>J00PQaxY00܂PYBNmg,<33PwYp|DC\33@:QYA3?RKDC@SQeqYo DS fQ K^bY8D953xQ "YdDOaX665`Qm|Yzq8D܅33  RY4?NH33DReYR^wk@0\h33nRY   8D43R3 C c Y?    HS5I7R   YA I E 8D؇33 Sd z  Y    8D(665uSL \ j YH    00؈S   YmC O X 00 Tx   Y   0CT   Y  + # 8D33 ;T5 J e Y=-5؉L73LTXr|Y $P\cT(YJ|D63yT%;dYgDCT3Y,m+h34@T&5@Y^j|sp]D؋4I7TgY".YL0 S733VU"Y~,700 rU>AY00UOcY0&33UepY000`UY|0\VYD00P33@6V%Y2*`p(34`LWY-_k|43dWY00 {W4Y$p|33W /Yp$<33W( * . Yp |  ̔D63 X(   Y\!h!{!s!̔Dؔ63gX!!!YW!!!DC33 uX0!!N"Yg##K#)#=#HBD8U7b7X ###Y`$l$$$$H33Y$$%Y%%%%%0033>Y#&1&5&Y Q&TWYZ&i&l&Yq~&&&8Df73 zYf&&Y&&&8D33Y&&&Y,'8'M'?'E'00$33`Zb'''Yv(((((LDt365mZ( )%)YBy)))))8D33Z)))YyT*`*s*j*8DD33@[***Y**++8Dę33`\[+/+>+Yp+|++s8DS53 [+++Y+,, ,)$33[.,D,S,YJ,,,,8Dt33\,, -Ys---8DĚ33@m\--.Y6.B.U.M.DC63 \d.o..Y....0033\../Ym/y//DCD\//0Y00000X&33g]1I1a1YL 22?2'222365^ p222Y 33533)3m74`%^ W3k3w3Y33333LXm45=^(44-4Y44544x\Rv73V^ 55#5Y'A5E58Dm43@s^I5W5[5Y[55DC^556Y66666365@^27=7Y7Ys7778D073,_0778Y88888D74 T_99R9Y99998D33 _ :7:~:YX;;/;';8Dp466 _o;;;YE<Q<f<Y<_<8D33!`<<<YD=P=e=[=xD46`===Y]N>d>\>T%P46a>>>Y>>Q365`La>>.?Y???? 33`sa?@@Y>@I@P@C8Dܤ43aa@m@@YAA6A(A$43@agArAAYAAAA8D33aAAAY0B8B4B8D̥33"bKBbBmBYtBBB8D33GbBBBY9CAC=C8D,63kbdC{CCYZCC00|bCCCYCCDC@bCCDYIDODZDTD8D̦33 bmD|DDYDDDD8D33bDEEYIEUEcE\E8D 365'cvEEEYF F+FDC, tc\F`FFYFFF00ܧ43"cF GGYdJGVGjG`G8lx33@$csGGGY{GGG8D33$cGGGY/H:HJHCH8D33`%diHHHY/I;IMIEI8D(33'Kd{IIIY4IIII8D33 (vdIIIY@=JIJ[JSJ8D(33)dkJtJ{JY/HJJCH8Dh33`*d JJJYJJJ|AC43+dJKKYƉKDC+eK&K>KYKKKK00x63-'e KK?LYMM4M"M*M8Dm431eMMMY7MMNM00X33@3)f "N>NeNY~O!OCO-O:O8Dm476yfdOpOOYOOOO|AD63`7f PP'PY*DPOPVP \$Dxm437ggP}PPY6|QQQQQ8D6390hQRRYlTR`R}RiRsR8Dخ46:h RRRY{?SKSiSUS_S8D8m43<hSSSYSS8D33@<h TT-TYnTtTTzTT8DX33=8iTTTY$ TTT8DȰS565>WiTUUY5%U1U@U8U8DذS565>i LUPUcUY_UUU8Dm43@iUUUYV'V0V:V665 AiAVYV^VYVVVV$hX33@BjVVVYW!W=W+W3W|ADt43C@AuC0`63 pHuSu^uYwuuuDCl quuuYuuuu0063Gq uuuYvv+vv$v00m43aq6vFvJvY0vvvvv0043 qvvvYvw#wwwDC33q+wHwwY]yiyyyy$73@q00z@zlzY8{D{b{Q{Y{DC73`~r{{{Y||||T34r||}Y}}}}DC463 r}}~Y~~~~~DC63rLOZY&0043@sYC0033#sY\)000365?s8IoY!,m+63js\mY (!63s(auY>;Gd\4DT63sǃYe/H8D33`s &GY|dtZ54@s(ՄYJViaPR\R63sY00T33s6jY ,J;CT`Kt33tȇY. }|,m\Rt33,te<MY 00 LtpY ӈˈ$$33etY ʊ֊ފLDd44ytċYh ht}00D33tY 3?G00@tVfuY DCDt ɍڍލY8T45t';UYl ,m\R43uC`|Y׏@00<33Cu (FJYDPg~77{u-;YA7!)43v̓Yj 8D635v;DY".hKS$33v$4LYDCt765`wėYocoz8D33wĘ٘YÙؙ$d43wpYS_|43w Y<ntz8D4953`wŜYG8Dd64x0Yd?)8D46x (YUao}HTTm46 yY"-;4D64`.yBY]Y%ZvZ8D33Iy}Y9ݢ8D34@|y $eYN $(T33`ylYw˥$X&p33@Vz3DHYqw}8D43zYH 8D44`z$AEYj8D44`z§ƧY`hd8D33 zYĨ˨8D43!{֨ڨY "*&8D 43B{9=XY38D@43c{ȩ˩Yߩ`46`{Y0;B0033{IX_Ys~00p33`{Ys0033{Ǫ֪ݪY ee0033 {0*Y77@|(IYDCT|έޭY2%+0063|A]rYʮٮ43|Y,700|,?YwDSL365|ϯY 0033} *D_YݰѰDwm4I7 d}(3YB۱ı̱(0465@~YEAMH\033;~\zY#/=733`~nYo̳8$H33~ֳY T~/FY$033~0δڴY*>6 QP78 ~N]`Yny8D33 (̵Y@LbVe53  ӶY*"$(<`HZ53 <LOYS^e00@ 8lY·ηܷx88`/  Y;GQ8x34 =]kwYT|`{ǸָٸY!أ0033  Y<T`nh0083YǹιxD33`ǀչY $*@068D 33 [|Y6ֺĺ̺8D`33 ,YPƻֻ$284@\IY]YuxD33|YSνƽ 33*%=Y1=KE8Dp33  Y2{8D 33@!\YNأ8D33! $Y8DQK8D@33`"i\_YQr00"cptY8D365@#τY8D`33$ Y%AFPK8D33$aeY8D63`%<YN8D33%SY%*/00@%6SYVbr|@0P33 )rkYkk00 33))<Yn00`63*ӅYS00`*Y)Xkc$33+Y_ke8DS53 ,4YxD@33`,lY h8C`33,{||Y||00 -(GY$DCpL73.*GY8D 33/YKWdDC(1>Y14HDC(33 2RY9أDC(332g &1YCU\003|dYcAMi[aDC337YB8D@73@8ՈYU 8C348!,0Y^:EDC`9NotYe00@:Y$P\33;L):>YwuL00`<dSY ?83 ?*:?Y*gs}8Dr56`@YI00AYa 00A'7<YjR^gq8Dr56BщwYnn00C߉Y00?83CY%0063CY*/4DD64`D*;FJYDVaj8D33D:qY~DC63HWYz<BIDCt LsUdwY8LD46LYJ8D33@MYDP\dLD33NЊluxY100OY9Ɖ00`OYv$$p33@P%;HKY chm8D33P<rYaAMj\b D 33`SMYDSaoY%3 DD833Ux9QUY{8D33VY\033VYv |Al43`XÍ-ITY"#33YY833`ZYIU]DS[@ fY^juHX&F84^Y-DTK^.RY`Tt0`YuDC@aΎ$YLRaY$33b܎tYDCbY8D33 cYdp{$33f!Y0`63f4YPDC<@g[ Y%+608CL33hn=KRYnzT\hhY DCx@j %eY +#m43nҏoruY={~8D33 njYX00t@oFcnYz8D4I7oY0033 p(Y1KXn|$44Q8 r>YV8DT33rV04Yo`jv8l33sn}Y}8Dt33t`Y/;UM63wYDCx  Y|00@xّ9TY;DC33y#YZ{T 33z:Yow0033`|Y`Yj>Jlb0@33YAMc]`pS83Y=DCY^00Ē =Y5AcO\m465YHD ,m33'4<YrV\lc$33`+s~Yz00EY8D,33@^(Y+eq8D|r53uYEۆDC L/YOƉ00!=HYYjvr56Ym00Yq00@ǓYu mm0033ٓY00 33&3=YOZfa0063mz~Y0033zY00\832Y 00,33i",YP\uck00<33z|Y00c83޷Y0033 Y8C0L33”޷Y8D33 ה޷Y0033` Y&2-8h339EJY`lu8Dr5Yj8DY00 W Y_)00f4?BYj,L00uS]rYn0\KY00  Y $00X`+=gYTht@"4dY ,m33`˕eGJY@yR\033ܕeGWYDyR\033p_bYHpp00 juxYN0C`YUhYDC`9Ya00iYxGMZT33`wY33(7YYdwo$p33`Y$33Y7HADC[pY?$ o~Y00Y001&Y$33Y>8D33@  YIWh8D330sY`2%   64@)Y00 @@$Y   l83@xYCO^V8D l86@pY8C l83 ߚ{|Y%|#00`*37YAL00SbmYy8D L73HY 8D l83 b!6=YYdqk8D< l83|xY00L 33Yv00ś 1Y _kt!/DCl >73 ۛ|Y |00`Y$s00 33 Y, J00 >73 &,Y\    |  33(@ T  Y    \ls84@؜$ / 3 YFY ^ 0\c s YphY DC  YƉ 00@   ! Y    T33PFZY\8Dg_|33@Y00|&SY43ȝ|@Y |#00@ݝJWYQ  &:2T33`'zY 00h9Y CO_T NuY T@Y ID[ia00H33 ݞY 00Y  8D33/EpY) (4465"#9AYZ my330Yw  DC`L(2iY DC`c)>Y ~TqY 00&Y  +`pf76`&Y; &2VK8D33Y iuY  p33#&CY DC3Y h t   ,m\R63C &!"Y= #(/((I?+]+v+Y3++00)Z+',U,Y@-L-j-Z-`-T)33` l0--.Y>P.\.u.h.n.$*53 8...YT.....\$D+83@/Z>r>j>"+633 &}>>>Y>>>>00p743&>>Q?Y)@/@D@<@$7743 *?@YN,700`*Σ?@YD,700*@@@Y9 @00+@@@Y3 @00`,%@@AY+A6A=A00l8,DVAbAAYAAAA`8833.ee B"BYeLB009`.eBoBsBY~BB00`/eBoBBY~BB00`0ŤBBBYBBB0090eBoBBY~BB001GBYwy1001BBCY_3cCmCDC929BCCYE3CCDCL:3S D&DEDY1DDDV::33 5nDEjEY[FgFFyF,m#x;337F GGYFGRGcG[GDx==63`8إrG}GGYGGDC8GGGY3GG833 9GYpG009 GGeHYIIII===73>".JJJNJY8JJJJ$?33@A8JJJYYKKKKxD4?33C]:LLLeLYLL MMd@33`EkHMSMVMY`MkMDCErM }MYƉMDCFMMMYZNfNoN8D4A33GNNNY6NNNDC4BHӦeGNY?y00@HNOOYh OOO00DB`HNO$OYi OOO00TBHNO(OYj OOO00dBH-NO,OYk OOO00tBH9NO0OYl OOO00BH\NO4OYm OOO00BI~NO8OYn OOO00B I(ii8D33`*iiiY}BjHjTjNj00S63CjjjY,k8kSkBkLk8DS34@TkkkYl*lAl4l:lDCT33enlllYllll00 U33~lllY6m$m4m+m$(U64?m\mtmYdmmmmx{N{F{8DD\33RU{f{n{Y/H{{CH8DT\33h{{{Y/H{{CH8Dd\33 {{|YS|g|^|,m\R\33 h|||Y||||DS4]33|} }Y(}-};}4}8Dt]33@F}Q}U}YCc}n}JLD?83 u}}}YI}}}}DC]/}}}YS ~~&~~00]C2~C~H~Yj~~00X~~~Y!-600]f?KWY 8D]33@YDC]۰Y$0D<^8^33LamY L.6H^X^h^8I7 U\_YXgl8D335qx{Y`8D33 _Y*0033`"MY?0033MYG0033yYˁЁ00ՁYF 8x^33@,7aYP$^^ű҂Ye.oPbY8D4_330Y"ƒ΃׃߃_560 Y-0<WEM\$D_55bmY?ׄ_`33 0/Yz1;``(`58`YG00wYG00@ČԌY8Cpb33{||Y||00 Ȳ( %MY!?5bb83`Y40c@c662  (Y0ccd4I7L'?QYQ+8d34@h+0YbnvxD33+|YbnvxD33 ĒՒY  Xdddpd56`ֳ2@Y);38Dd33@ȔY1'3B:X\T`g74 RkYs DC h33+69Y KP00@UfoYNƉ00PhӖYV ,<3xD`h33IuY=C`Xpii@i63`ӷY ȘΘԘژjDj63Y 00Lj33`&MVY1ϙǙ\jhjXtj66J YY$p]Dj83{ -xYfrjj@j89  {YM'L<DDnTndn83n|Y0063-ڟY#/H8LDn?865DR\`Y^p|p]D63` ZYtϠȠLDo33 l֠ YZ`qgDD$o64 }{YAK00Do33 ʡסY00do63 Y&&100 ȹ8DHY5xTooYJ300oYX28=0oo%HSZYCjto8Co339{ʣYG*8200o63@IpW[Ypp00c bvY'Ѥݤlp|ppm44y "GYL#p43Y\hp}00p33@úǦY&G/:00,q665ٺm}Y˧ԧާDC|q63 Y-Vb|kuDCq63 Y@DCr33%6YXʪ$lrxr63J0MY̬ss33 "\(jY3+Nxu665@$sWtxYuuu365&*-0YFLIxDv33&Y\_Y"xD v33@'ŻY4Я֯ӯxD`v33'ڻ&YQtvvv43(ݰY 8DPw34,=WlYƳҳ D0xTx 9bPSY00@9rY`oYxD$y339̴Y>JYMR8D4y33`;YpDCy<Ǽ)-1Ypcg004z=rYHs8D33>Y^FRskDzTzdz33@*YD7zzz64@G_Y ٹ00{ Hr Yjv{{Z5I7 J(YAɺк{93J8պYE{C93KνHYI!,3| |,9K4`LX9FKYMS_g|$| G9g9`MmYF(46`NŻԻٻY! 8D0|365 O;,8=YS_h(4j9OUsY1ɼü@|365PgԼYJ1[vgoTP|\|33Q|Ydpy8D33TY33TžYG00|T`Ѿ$Y_<Hzck|| |n9q9`]Y,*;x}8 33_ CWiY DC}bEY0033 cd"7@YT_shmDC~33czY78D~33 dο(JYXd$D@~s99k #YqI_PV00P33k nYDC93lY&=06DC33m2 L]`Yp{أ0093@nZ(Y00s93no Yh0093@o0Y{D93pY[ 2"+8D94q=X{Y+<FH84s9{||Y||00so5@OYolw8D33 tYv P33t{||Y||00 u'*9Y]c`8DH33urY}`lx63w1Y?&"X#x33@yK:VfY33`zYsuD33z $+Y9DQKLC33{{||Y||00{XlxYxD$33@}Y$6-8CT33~=EPSY]h00@~boY/;ME8D33Y!  8D33 86QY<ԄP 93 bmvY~DS<;Y\33&RY*O;CF33Y>)̈334NY]GS~`l$X&64YX\TL43>gY2LX#X43@%9xY_(8H4I7Y*S_g004YK8D33 d "&Yc8l(33`Y38D33 EYݢxh X33 {Y|00`YXdtn33Yv ?'33@ 6FjY00FYPtLE8D\8I7W UcmYz|35Y8D8I7 Y#3*8D357JY8Dؓ8I7`^0ZwYT59y1_Y#F4"f79mY7Ch[t33Y33YE3 8DД33` %@EYRkwTZ56`D(YmXds{ 69 Y YtX&3I7Y8D33@Y+` 331=IYVkox8D033` Y DCP35` 4EIY/YdtbDm43-(kY8  ̖94 @5KPYxDC33Y 7Y  <96lORVYn00(qY$9 FY/T\0h8I7YJT(%38YRJVg_ؘT69(nYZtbD93' YdCOe[DC:5@<Y8D433u*pY,8eU^|Td33Y) 333FY 8D33 YH p]C35!&YgP\eDC64"mY 8D`63<49YYcvn$( ̚33V~Y\jܚ43s YY'.a8D33  5DOYeqx~L@ Z53@YJ&,T6>(:':(Y8Dx*:3 @ Y8X 9:ZYۆ$DCz 5EXY;8X ț9:@YDCX  Y\>CHM0043S^nYp0033)YM3*200F[YvDSX33@ bmqY} 0033!Y00ȝ@=0 YDPk^E$F:3JY( U:I70pY:\$D8`:3YJ8D83 !IYJ)X43(Yz  + (X#693 > N Yh s  | $33   Y+     8|] 33 >2 N  Y?    $ f+ 7 e Yjf/   "X#33@ i  Y9r00` 8r  Yr00 8   Y   00 Y 0 Yw 00$ 9  Y  8D33@ 29e  Y   8D33    Y, 8 K C 9I7 R _ l Y     33@;   Y)   D83X   Y3 8D33@u !Y>5ARL33   YYI 8D33eyYQ$3I7YX&)8D33@-<?YeOZa8D33!ftYw DT8I7AY5 Lt33a!(Y:FWQ33^Y&)8D33(hvY\Rs:5`Y+C6< D#У33OY&)8D332YmyY3I7 M Y":5`h .<FY]i~vQ35 Y*?28|AD033tY D\R33Y8D33WYQ8I7!,7:Y3FQX8D8I7`"#_lyY833#@YI|AD83#d#RYXХ33%Y+6B=`33&S`oYT&Y 47+ WhlYz xDZ53`,Yw8D33@-.@Y::2D YP`tZ535r`Y%1::q960BgY#/;fKW0569Y[ 00(33`:@/@DY[ag8D::;0sY2HDT:3<0! 1 5 YYI O U 8D:;=C` m x Yr     00ĩ;3`>c   Y   |A|] 56@? ! !Y!!!00?(%!8!!Y: ""C"!"+"HTԩ6 ;B"""YZ"""8C34B""Y\p""DCd C:##g#YOI$U$$c$k$D 33 GQ$%%Yk3%>%E%00PGnT%e%i%YPv%bxD 3;G}%%%Y&%%%%8D34H(%%a&Y/J'V''e'o'Ы;4L(((Y 5(@(S(I(N(`33@MZ(w((YC2{)))8Dp33 NC)W)`)Yf))))"̬33 O6E))Y]h00`OV )))Y***|ADܬ33 Pn%*A*M*Y****(443 R*+"+Y&k+w+++365T+++YH3,H,@,365`W],,,Yr,,,,D!;65@Y -#->-Y--8D33Z8---Ya.m... X@`N./-0Y2 22b2j2h@43l~pF3J3Y-pp00@lpF3Q3Y1pp00lX3c3g3Y]yq300lx333Yd3330033 mX3c33Yiyq300`mx333Yp3330033m3333Y< 44448D83`oF '4<4A4Yhy44448D(;3`pY444YhY5e5m5s5xD33ty555Y555u 33u566Y6666$,34 x(677YJ7V7f7`78DP3;3yv777Y777D8 33@z777Y7DC(z78,8YQL8X8k8a88D33{5r|88Yr00|U888Y4,989T9C9M9̱33 }p999YO99900l} ::':YAW:c:w:o:$ܲ33`eG:Yy00:::Y :::00 ::;Yo;{;;?DCL63eG;Yy00 r;;Yar00@{|;Y|00-;;;Y@;; <<8Dܳ33I<<"<Y,<7<00 b><R<V<Yj<v<0Ce~<<Y%y00@3{<<YS{^{00<<<Y<<<00  =*=-=Yl9=D=K=LD33P=a=t=Yf/== 00l33`==Y==009===Y=00^==YD8D33}> >>Y2>=>D>LD33`NO>R>Yd OOV>\033[>k>~>Y >>>>8 33>>Y ۆ??DC 4(?+?Yq,L00`?5?@?C?YW?b?i?8D33XNO>p?Ye OO00nz??Y[ɒ?̒LD\33@???Yb???xDl33???Yi???xD|33???Yp???xD33???Yw???xD33@???Y~???xD33-???Y???xD33G??@Y???xD̵33a??@Y???xDܵ33@{??@Y???xD33??+@Y???xD33??9@Y???xD 33G@J@YxD33 G@R@YxD33@rZ@]@YrrxD33`G@e@YxD338G@m@YxD33SG@u@YxD33nG@}@YxD33G@@YxD33G@@YxD33 G@@YxD33@G@@YxD33`@@@Y@A%AAAPR\R34G@4AYxD33 +G@BYWrJBrLD\33TQB\B_BY]LD33@oiBlBoBYcwBzBLD33` }BBYjBBxD33G@BYrxD33BYyxD33BYxD33{BBYxD33rZ@BYrrxD33 ,G@BYxD33@GrZ@BYrrxD33`bG@BYxD33}{BBYxD33G@BYxD33G@BYxD33G@BYxD33BBBY CCxD33@G@CYLD33`G@CYxD33:G@!CYxD33UG@)CYxD33pG@1CYxD33G@9CYxD33G@ACYxD33 QB\BICYLD33`QB\BSCYLD33QB\B]CY LD33QB\BgCYLD33 -QB\BqCYLD33`HG@{CYxD33cCCCYCCCLDl33CCCY*D DDD0033!D/DDYEEEE̶ܶ333F?FFYGG0G(G̸ܸ33@GGGYFGGG8D33B GGYbGG002 iGGYruC033VGGY \033~GGY \033GGGYHHH33`H,H0HYLHXHcH D#33  GGY \033@2kHHHYHH+8D33@GH%I@IYIIII((4D;XIIJY (J-J;J2J),33 iNJYJ]JY9jJoJ}JtJxDL33`72JJJYBJJJ&D43JJJYUJJJTT(33JJJYdJJJTT(33@JJJYt KKKNX&43K,K1KYXK^KeK)33oKzK}KYUK 8D33KKKY,-L9LaLRL\l|66}LLLYLL0033!LLLYLLL8D335LLLYMM8Dr5`HrMMYr00a"M>MKMY+MMMML#63r޷MYqM8D 33@޷MY8D33MMNY0NN8D33 %N0N3NY;NFNMN8D33`RN]NfNY+`MsN|NDC NNNY>uNu|AD43NNYNN8D,33 ,NNNYNNON&D<43AOOOY(O3O9q&D43VOO:OY(O3O9q&D43 y(DO[O`OYOOL&T65%NOOY|;NFNMNxD33OOOYOOO8D33@OOPYQRPXPdP^P00L43`PPPYwPPP0033PPPY<P QQQܻ83`6-Q4QYf>QIQ8D33WNQYQ\QYrQ}QQ00365@jQQQYFQR+0033@uNR"RY OO00`,RBRiRYRRRDCH33 SS#SYVkISYSPS0033dSgSvSYCSSS0033STTYVTTTT0033 TU2UYUUUUx33:'V2V6VY>VCVHV00H;3 HMVbVsVY) VVWWHXP l33X*W5W8WYBWMW8D33c*W5WRWYBWMW8D33\W<eWYmWxWW8D33@*W5WWYBWMW8D33\W<WYmWxWW8D33WWWYWWW8C33  WWWY)X5X=X0xDO;3`VXrXXY Y"Y/YTܿhYsYvYYYY00YYYYZ ZZTh 0ZIZeZYZZ[T @3&[/[Y-*F[K[DC|NT[_[h[YJ}[[[DC@h[[[Yl[[[00[[[Y[[00[[Y[00\ \Y-\0033>\I\P\Y\\a\f\00,m\x\\Y\\\DS<@N\\Y OO00`:\\\Yz\\DC O\\\Y\\DC_\] ]Y%]0]@]9]8DL33`gAI]X]YAx]]A8Dl33U]]]Y0]]]8D33 p]]]Y^^^8D33`]^'^Y^^3^^8D33]]:^Y^^^8D33]]B^Y^^^8D33 J^V^m^Y^^^E8D33^^^YK8D33^^^YY^ _G8D63(___Y^)_4_;_8D63`N__@_Yc)_4_;_8D63n__J_Yh)_4_;_8D63 T___c_Ymqo_e8D63v___Yv0=__B=8D 33^^_Y{^ _G8D63___Y___0033 ___Y```00, `+`.`YG7`00 7>`J`s`Y`aaDx=, 9aHaMaYfqa}aaa8D43(aa:bYccccc67dddY2d ede0033@,e3e6eYfj[jJkYOm[mmmm`ih 33 nnnYEnnnL@ Z53oKnnYK 8D33iin@  nA nrnA9D`nAvoA%oooA@1#q4q8qA @qqqA!D@LqqqA"D`XqqA#qDeqwqA$qDrqwqA%qD`qwrA&qDrwrA'qD r&r)rA(-rD8r&rFrA)-rDJr&rYrA*-rD@]r&rlrA+-rDpr&rrA,-rDB B rA rrrAX t;ii8sA` u;udSJuAEu(u D( 0Nu[u_uAFduou8 DH %0vuuuAGuuX Dh `50uuuAHuux D E0uuuAIuu D V0uuuAJuu D @g0uuuAKuu D x0uu vALuu D0vuvAMuuD(0#vu2vANuu8DH@07vuFvAOuuXDh0KvuZvAPuuxD0_vunvAQuuD0svuvARuuD@0vuvASuuD 0vuvATuuD 0vuvAUuuD(40vuvAVuu8DH@H0vuvAWuuXDh]0vuwAXuuxDr0 wuwAYuuD0 wu2wAZuuD@07wuJwA[uuD0OwubwA\uuD0gwuzwA]uuD( wA_83 iiwAk wwwAH|; .wwwAP!AooxA`3!N xAp};!\xxxAx~;"o'x'x*xA;@" BxA`"rrLxA"ZxZx]xAl"sxsxvxA}#xxxA; #==xA3@#iBiBxA;`#8 8 xA]#8 8 xA`#&8 8 xAc#>8 8 xAf#V8 8 xAi$n8 8 xAl $8 8 xAo@$8 8 xAr`$xxxA&wyyA/ 'yyyA9D'yA}'yyyB*#zzzC#13}}}D;6HwwE7YFt7uF337F:37FE8 xxFS3 8rrF]@8Ff`8 SFx(386F8;8@FH39rrXFX3 9 hFh;@9{{rFx`9*rrF9?qqF9U F39jF 9zÀF;:F,:$114F8;F QFC((@; qilFO8H;F[X;<F`;<8 8 Fh;<!!!Fp@=1(e3F=ESF0=WepsF8 >m  F&@@>}??F1>F> ?F~ H`?!F0;?rr7F8;??F@P?0OfZF`@G@AY:?ID8DX33A2 2Y2228D33A:\epY8Dh33@BWYs8Dx33BtƄYs8D33CτބYs8D33`CYLD365C$ Y/:MN8D33DALOYRWC03@D)\igYYj003D?(oY zD6DWiBiBzBYwBiB00DjiBiBzBYwBiB00Ey 2Y200 EiBiBzBYwBiB00@E\igYY8D3E\igYY8D3EiBiBzBYwBiB00EiBiBzBYwBiB00FiBiBzBYwBiB00 F iBiBzBYwBiB00@FiBiBzBYwBiB00`F.iBiBzBYwBiB00F>\igYY8D3FNrrYLD?8G[iBiBzBYwBiB00 GiiBiBzBYwBiB00@GziBiBzBYwBiB00`GiBiBzBYwBiB00G0YD;3GŅrrYЅՅڅxD33 H ߅̒Y>VLDS5`HYYxD33H &rY%l0033@I,7;Y?J.xD33I",7;Y?QZxD33J>rrrYrrxD33JYcynY2>qxD33 KpYx 0033`KYxD33KYņ̆xD33`LYx 0033L.9<Y?ӆچ0033 M{{Y0033@M&&rYlnr0033`M3 Y0033MLrrrYrrxD33McY xD33NY0033NYxD33Ni9Y&1:xD33@OYx 0033OGGJYMJ0033OY0033 P(P Y[fmxD33PEYx 0033P_YxD33Qtr~YxD33QYC033QYxD33 RYuxD33RYuxD33RY xD33 S0ynY2>LJxD33ST··҇Yև҇xD33@TrڇY8xD33U(H@(S(I(N(33`V(=EHgsz8D33 WH1y/8D33WB#&H94:?#:8D33@X~FUHXcj8D33XFUHXcj8D33Xo~L00@Y8 LI8D33`Y  щ܉L- AD 963@Z:(Z^L6ʊP`;;]DҊP8D63 ]^==ՊP=Պ8D33@]voo~P{~8D43`]P8D33]rrrPrxD33]rrrPrxD33]rrrPrxD33] PxD33^ ؊R_v8D33`> R8D33`\ w׋R8D33a~ !U@38Dp33b :ELU4YdpkxD33@b wUIɌ܌ҌP;365`c UM00c  UK&1800c= ARVUcl{ؘT46dN Uōԍ$33`e_ ߍUfw$33f UɎԎݎ8D433`g @ UZo{,mDP;33i U&1800 j 4U(ŏL00`j ЏUP!0E8>|AD43@kC TdtUpÐؐːѐ8D33 l UJZk+d33 m U";3P`p43o{ WhoU&33`o; ʒU ,m33 pX3(+U54q300`p?FUrjhT8D33pB[fmU8D34 q^U33qs ULXa 8DP33rnUM`t~8D33t•͕ЕUڕ^8D33 u'Uq}8D33@vU00wr Ur8D`33w 4@Uzp|;3xUۗ&D;3`y 8"7U;;{<0ޘjUXҚʚL`x;;6nbiUu#00@ U@$80p;6jaU%(;347bLU'u#00[[YUYxD33ixD33\gkUozxD33UxD33 {{UxD33@)UxD33`yynUɝԝxD33[u۝UߝxD33UxD339'x'xUxD33UxD33UxD33@rrrUrxD33` UxD33[u۝UߝxD33@`UxD33`ynUɝԝxD33 'x'xUxD33 ]UxD33@8&*Ȟߞ;3 xD33 y}k33`6 43@!m{Ģ83@("0Ӣԣܣ;3`b""&cϥɥ8D r53"8 @8D33 "DPh$,33`#Yئ8Dl33># xD33 \#xD33@#y2=MD8|33#^rv~"#33$ǧܧ$33$9HLbqzDC%ɨ0VCK,h<33 %~00`&ɩܩ|33 >&   LXph<963@h& ҪɪT965 & ٪ AD963&"&1800 @&2GO ȫЫ@P`43 & 1 LDZ5I7'1003'r(/800pQ'100@y'BBCCxD33'xD33'?uxD33'JynU`xD33(gry00(ҬDC7(&1D`S(i:KN[fT8<q(o~DC`(ĭȭ T(@JB|$633(I&100 (ɮ߮".Tj8(8&100@)`D`d8H(<.<@))pѯ߯nz۳TP\1<K<) !6B^Vr565@)(k˴״pHP<;`)*0amyDC665@*ɵH33`\*&)#100h*-=ATOZc(33@*hT϶߶,m`r56`*i7BI0063 *0Qٸ l_<;$+Zt'DD8`<+#,)&1800_+;MWTsDD8w+#V&1800+غDC`,0 ,58D33 2,=HSkv}00@33,DS,(2`p<3 - ټ'8D954-DHs`l00`'-tT9- &18Tm465@G-?PWnju|0033[-xξھp]D43` l-j|0033 - &>] L#\(}<9  -(ؿJVoaiL#\(p<8 -(\ $L#\( <8 -CObl(,33 -0v%1J<D<HT<8` - iL#\(tF89 -&9_kzt(r53 . +X&m43 .N>JQ?'0033@ $.dpa0043 2. L#(Z53  C.)<bbnu/0033 P. X& m43 a. DP_YL#(Z53 n.r~y/(,33 |. L#(<Z53 . ,XaaL#(L43 .)tbnu/00\33@ .COUL#(l33 .dpa00|43 .  9ETN Q(m43 .0gu;X&U73 .([grz<H<8  .OL#(33 /vIQ$p< / 700m43 ,/8?00<3 @/  I(J00m43` P/8#15_CIN00<3 a/0Ubu%00U73 n/0` /0 & /FUXcj8D33 /+T`tjؘT46! /FUXcj8D33! /(Wcpz55% 0(ĭ%?.88D54 ' 60Sae" Qr53( G0Ar53/ 0( <50 0@ >BXdq(<<2 0@yUp7?4Hh<<`W E1za3?S[$33 \ P18h*<4TH<=` n1[lo|8D3`` }140033` 1J/ DC33a 1 *3LC 35@b 1<MTep|w8D33b 1oK' 0033b 1(+ #L#e5=@d 1/37a]8D33d 2jny0033e 2'#00833f 2NZ^p]D0r5g 2p]D0r5h 3$I(+0033`i 31AELD33m ?3 gswp]D0895=@o M3['7.8Dh33o b3DORgZeMN8D33p z3l &. D365`r 3?TXz8D33 s 3 nz D35x 3p(8D33`z 32y}`33 4x|  365@ 481yu00p ==` R4)8D33 k4N'HB8D33@ 4(mvs8NHLP<9 5 #oK|AD963 %5 %7\=963@ P59@1J00P` r5 Qbf|AD963@ 5(0@`XdtP<5 5u?)"=33 59<D1J00` 5FnrDh 5os#8D33 U6APTCnz00 ^6ŏ00 h64#:8D33` ~64#:8D33 6&8DP33@ 6")0;B8D`33 6P IfmxD33 6????xD33@ 6[[YYxD33` 7Tĭ}%8Dr53 !7Tĭ%8D33 E7 #%y[ag8D(;3 e7 t%8D(;4 7% 5/8Dp33 7IQY'j00@ 7' 2:33@ 7BVZ'<33 7'@  8D33 8';?'0063 8rr'r0063 18'0063 E8' 8D33` ^8N' N8D33 x8'xD33@ 8'!8D33` 8(U'X7j8D33 82>E'2N28D33 8Ubm58D33` )95k8D33 <9w58D33 O9=Պ5Պ\033 e958D33 y95'298D@33 9FW5epw8Dp33 9$ ~5Z:MN8D33 95&2ZGO!=6 :5!I,8!=6 J:5% 0@!=6 X:!)51OgwP`p!=6 i:5BH!=6 {:w5Y\033 : 5\,@H$(TZ54@ :wR5\033` : Vbj5xZ54` :5xD33 :0Bz,=A= $; B68DE=V= X; H^B@IUn8DE=Z= ;B &833 ;2Y]B00H63 -<(TeiIp]D_=3 d<IJ0063 <I3bDC <qtM00 <w~O00 <O|VoPR33 =O/ C b O [ $(T834 =   O  @ $ 7 xT43 X=(x   O   8D93  u= & { O    8l=q= = O\$D(m43@ !> O\$D8m43 2>(#Oa^rHXP<6 |>OVxD33@ >OcT4I7 >oK"%OK 8D33 >/>OOu8D33 ?/>O!u8D33 ! F?OO8DWM8D,33" ?|ODC33" ?OI(0033 # @MOt8D33# =@O*y/8D33$ \@GdmOK00L33 % s@xO&ls=x= ' @8VlO 5#.@l=q=0 AjuxO7 00@0 AOW T435 .A.IQOq}lxr53`6 DAO8D33 7 `AOAQg`T@9 xAuO!TTr53: AO2xDr53; A0  @OmL\l_<8> B OX<Pm43P "C7O8r53Q nC   Oi u  } xD\953S C   OxO![!i!c!xD953T CiB!!O4!!xDr53T C!!*"OB""#"xDr53W CY#j#r#OY####X\|43W C###O###xDr53@X D###O$&$7$1$TTr53Y +DF$t$$O%%!%xDr53Z QDN%_%b%O r%}%%%xD<r53`[ fD%%%O %%%%xDLr53 \ D%%%O %%&xDr53\ D &$&4&O n&z&&&TT\r53] D&&&O% TZ'j'd'TTr53`_ D'''OY'S('N(8D<33_ Dw''Or8D33` D'''O|( (((8DL33`` =E("(*(OgsN(z8Dl33 a SEV(a(d(Ov(((38D|33a Ex(((O((((s=x=b E (((O2)>)Q)K)@33@d Ee)r)u)9Dz=d E)֨&O)))xD33e EFUOXcj8D33f FFUOXcj8D33@f "F)))O)))8D33`f 8F)**O,*7*>*أ8D 33f PFrrOM*xD3 g lF R* O ]*%Dm4`g FO?uxD33g FrrrOrxD33h F\\]JO]JxD33`h Fb*y**1*+*+$+@P xr53k G0X+,C-H//'0!053@y H01112222LtD53{ H`222>22HD{=| I0233O33433T`p=3 I@J4p4t4zG5f5}55== J@555A6f66o6w6=7` J666Af8r8888833 kK{9999998D33` K999999:8D34 K :::21:<:C:a8D33 >L ::N:91:<:C:a8D33 TL ::a:@1:<:C:a8D33 jL(u::::::::<dd0<8 L0:; ;;*;3;X&U73@ L9;J;M;Z;e;l;0043 Lq;;;;;;00 L;;;ɝ;0033 M(;< <<$<k@X&63 )M-<9<J<]<p<y<DCL ZM<<9<<D`LP` Mu<<<:<<T\h6 Mo~<;DC M=== =%=,=00h 5N0i3=6=u`0=3 NN9=W== h>t>>>)x43@ Nc> ?:?#????P=43 NO??>100@ uO??:100 O??00= O??<\033 O?@@G:@F@33 PO@e@i@u@@@$64 3P@@@AA8D63 UPA,A0ARA]AdA8D 33 PoAzA}AAA8D33 PoAzAAAA8D33 PAAA& BB-B!B$(T34 QJB`BhB@BBBB8DL6I7 @QBBBPC&C:C.C8Dl6I7 _Q WChClC7CCC$(T=4 xQCCCMCCCn"\R33@ QCDD[?DKD\DTD33 R&kDDDyDDDD8633 jRDD}100 R 7E/EhEEE FF,<j8Z53` USDVF100 yS ZFFFhWGcGGGG=Z53 SDGl100 TfGGHcHoHH{Ht;365 YTDH100 ~TxHHIWPPPQQQ8D33@ XWQ*Q-Qr%7QG00r53 xW0>QdQQLRRRRXhx==@ JY S"S&S1SlxD33 Z8SCSFSPS[S;_DD ;; ZbSxkSnSsS8D33 Z6xS xD33` ZSSS6ST%TDC8  [ATPTST69`TkTD`LP L[tTTT6:TTT\h6 [oT<6;DC@ [TT6!TTDC [TTT6EUU8D33@ [( UOUU6/V WIW0W8Wx   ==> Z]WW6?&1800  x]WW6WW8D r53 ]WXX6eX!X*X8D33 ]1X33@ a^^6f&100  Ca^^ _6%_1_:_DS  ]aK_N_6?N8D33@ ma R_c_r_6____$(T Z54 a___6_```|AD43 ap#`&`6.`p9`C0>3 a>`I`P`6\`g`s`n`|AD43 a z```6a a"aa$(X& Z53@ b__Ea6 _```|ADP43  ,bp#`]a6.`p9`C0>3` Ab>`I`ea6&\`g`s`n`|AD`43 Sb qaaa6aaa8D >3 _b(aaa6abbp93 rb!b2b?b6Vbebublb8D|33` bbbb60bbb8D33 b0bbb6c c cc`>; b +c6c>c6KcVcbc]c8D >3@ biczc}c6ccl8D33 bccc6XccccLD43` c(cdd6Sdcdpd(X#)>3 c xddd6ee+e#e >3 |cSeiee6eeeeL33 ceff63Hf\fvflfl33 4dfff6eg)g>g6gF`33 {dfggg6ggh hh33 dAhDh6N8D33 d8 HhOh6Yh8D<33 e`hch68D33 e$ghjh6Z:MN8D33 ! 1e rhhh6hhhh,DL}<3" Beh_i"j6kkl D\@, elll6+m?mSmKm" 33. e[mrmvm64mmmm8D63. eJmmm6~n'n33 0 fPn_njn6xnnn00Xh0 /fnnn6Xosoo$lx<4 `foo6100h5 yfooo6 oppT6 fp!p%p6.p=p00`6 fDpUpap6zpppp$(346 fWpp6 X!X*X8D33@7 fppp6 8qMq]qUq$(T44@9 fwqqq6qqq"V33 : fqqq6r+rBr:rDT33; +gVrjr~r6*rrrD33< [grr s6 7sLsDs)43 > zgesvszs6 sssV43? g8 ss6<8D33 ? gss6=sN8D33@? gwss68D33`? gss68D33? gss68D33? gs t-t6lt|ttt 0D44@B 0httt6ttDw33B Ihttt6*#uu|AD43C ]h"u@uau6;uuuu 44 E huv!v6Yevuvv#43G hvvv6|vv w0365H h,7;6w!w*wxD33 I h3w֨&6?wKwTwxD33 J h]whw26lwwwˈxD33J hxD33K iwww6wxD33@K 2iw6wwwxD33L Ii wwx6Lxy8y-y@P `;6 Q j y"S6&S1SlxD33Q |kyyy6yy3DD ;;Q kyy6yyyxD33`R kyyy6zzzuD 43R kPz'z6Q2z9zm8D06>3 S kDzOzZz6ezlzb8D@33S lwz~z6z8DP6>3S -lozz6z~8D`33S Ll zGJ6zzzxD=>3 T hl 6zzxDZ53@T lnzz6z{ {Np6>3T l{({8{6L{[{b{33U l zGJ6zzzxD=>3V l 6zzxDZ53 V mq{O|{6{{{|ADL>3V ,miBiBzB6{!|AD43V Nmyy{6zzzuD43W fmPz'z6Q2z9zm8D6>3`W mDzOzZz6ezlzb8D33W mwz~z6z8D6>3W mozz6z~8D33X m zGJ6zzzxD=>3`X m 6zzxDZ53X nq{O|{6{{{|ADL>3X 2niBiBzB6{!|AD43Y Tnnzz6z{ {N 6>3Y vn{({8{6L{[{b{P33`Z n zGJ6zzzxD=>3Z n 6zzxDZ53Z nrrr6rxD33[ n6xD33[ oxx{6{xD33[ o{{{i{{00[ ,o{{{iB%|5|A|K|$33@] Do S|p||i]||}}Z5Y>a oD}[}y}io}}}}46d o~~ ~i.~9~8D63`d o@~T~~iKWem$X33g %p0ixT]>n>l ;p KamiÚׁTZ5S6m gpie(F3?xD43n p Ydgiku$(TZ54@o p@iqDr>>@t pɃiAMzds$(T46 v p"iĄτ؄8D34v qi!-B:8D34w Kq(M{iֆކ$8>9 q%,iHW^00x@ qgswi8D33@ q ˇχi)Z5>` q8!%i7CP;3 q(Xeii/{P<3` q iV&͈وԈxD953 r itoZ54 r݉i~֊ )!Fx33` TriŋЋu8D>3 fr׋i 8D64@ xr ijv~8D>3 r iȌԌی8D53 r(i7LeW8Dx<> r iύۍxD}<3 r8*iHj>> r( !i&ː>>@ s0+HviL5_~vHX8h>3 (s`JNinh|H34 @s(36i:E00 cs(3Li:E00 s(3Pi:E00@ s(3Ti:E00 s Xǔiȕݕ}<4` t0Fi"D<>9 ;t i8#953 Wt hi2,8D\$33` wt0A\`izX\T>? t¡i$8D|$33 tKYmiϢǢ8D$33 t0 0i)uǦ$%8$%<3` t Χҧi$80P(t&&Z53 tS^bifr/xD33 tzUU8D34@ uǨ˨x8D&33@ 4u2GK{8D&33 euͩѩ!0(8D4'33 uK`cs~8D33 uȪԪު|AD43 u Acxxt''` ;wj1\033 \wp«n.`p9`\033 |wʫ"2KC''33@ w_bfm0033 wtX!X*XLD33 w (33 x1<OĄt}8Dd(34 &x|AD(43@ Hx!!7FZQ@0(33 {xae8D(33@ wخ8D$)33 xxxkSkSxD33 x[[YYxD33 xhw2%07xD33 y0@Ưӯ)װ(\$D4)53 +y8Vx|)G )D)?9@ y.9@7IX00 y4?_7ŏL00 yiy}9B$34 yɲͲ9K8D)33@ y"59gt8D)34 zӳ90IhV^X&)83@ z 9*ݴ**96? :z0"GK9#ʵ<*\H*?.? Kz(ӵ,9ŶѶX*h**<6 z;X9htP(*+43` zN9 :$0+++33 zwL00` z*WLxSMW8D,33 {ںL #c8 ,33@ {8IPL alys8Dp,r53 {wɻջ"\R,33  {N{N8D33@ { %$1?3 | [Y*0\$D1?3 |(5JWμ,,,P<=" R|!g޽ ,,33% h| pUfj_t{AC@?963`& |7QIF`-p-33 * |^l(ܿ$--+ |k)99DMxD365 , |XD--44 0 })8YR]fT-0 =}K uB5-.X.B?33 ; }?kŏ700.`; }o?zŏ00.; }N D.X33< }1;T..= ~R*PH.. /33C ]~n|``/p/33D ~ ///E?=J ~BV033K ~),@0<0L033O ZN2O00O w/[g~q8D033 Q yyyyyxD33Q yyyyyxD33 R  133R )))8D33R xD33@S 1YUxD33S k'`أxD33@T  /41(1R?`` o00D3` o$H3D833`a &p ^{00T3d3a As$2-00h3x3a V4?(N]dj0033b fb w (4  (4 4 @4 @4 4 4 4 4 4 4 4 4 4 4 4 4  4 4 05 4 ((5 4 4 5 ((5 4 4 `X6 pP7 @x5 4 ((5 6 80P6 4 4 4 5 5 4 4 4 x5 x5 84 4 5  5 5 4 5 4 4 4 4 4 4 ( 6 6 (( ; x5 88h6 0 4 HHp7 hh6  5  4 0 5 4 4 6 4 4 4 4 4 4 4 4 4 4 5 0x5 8(5 5 4 4 4 4 4  4 0(; @805 PH6 px5 `8 4  @;  4 (4 5 x5 808; px5 8 4 ((5 ( 5 8 4  x5 4 4 ((; ((5 4 04 4  7 0x5 @7 0x5 pp7 hh6 x5 4 ((x7 4 4 4 ( 5 `4 4 4 x5 x5 H8h6 ' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (     4 4 4 4 4 4 4 4 4 5 0x5 4 4 @4 H4 P4 X4 `4 h4 p4 x4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 x5 h 4 4 4 hH 5 H 5 5 X6 5 `6 P6 x`6 xp86 H8`5 5 5 4 4 005 4 HHh5 4 4 ((5 4 4 `( 4 ( 4 ( 4 ( 4 4 4 4  5  5  5 PHHh5 4 5 x5 4 x5 h 5 5 4 4 5 5 5 0x5  4 4 4 4 4 4 4  4 04 @ 4 ` 4 4 4 4 4 4 4 '?rt ooM`TWdo^oMTm0  t1tr$ 2 A [ j 4W 4 4* 4 DDG>GE~GdOwnnvG@1+NJk-k-! pnGwD@@" A@4 k O) PL `! b7 4 Bk- L ! 7" ? -] o { p] X {   qk ) QV `! b7 ; 0Gk- V ! 7( U#E (c V X W  !   K L M N 4 3k]- !h  ` 7 ; U% vC x;& (,)+*2< Q 1         (,** *0*8( )  U< w jL  (65(=5(V5m+ m$+m:+ (5(5Im2+mM+(a5(54wYka]a]+MzRY %%U>!<;`~0(>  **_>b!<;`0&5#(0>LFzFd!<;`c0(>Lb>IL`L`w!<;(>(F>T!`S0v(z`0!(F>T!`S0v(z`0!( F>T!`S0v(z `0!(*!Ljim!K! 22a>x!`w0@(LLzL`0!(gXs=>G!!1tGy>!<;`0L!>!n({>.JGzOx!<;`w0(v>uLt1S~G!><;`0GzxL>aGzYmGz>`0|(>Y]GLL!<;*GLiiC`0!<;@>`i0(>c>t(>`0L L !<0;(>(> MGLL!<;2(&>ha]GLL!<;A(5>+MRY35-8G>!<;`0LO>O>  n%%%M|RY"G*K>!<;`0L>z<`=0`s0&5>!<;>L+;I!MRY3G>>L!`K0>aJT+;I!MRY7GB>P!`O0>aJTM<RiY^^jyG>!`0z`0L(!((+;I!MRY3G>>L!`K0>~aJT+;I!MRY7GB>P!`O0>aJTM<RiY^^jyG>!`0z`0L(!((M<RiY^^jyG>!`0z `0L%r(!(+ MRYpGu>!`0L>+ MRY{G>!`0L">"@MRYHGPl>!`0L0z0`I0LXu!H((}P 9P P o  %p!$1!U4;;!/1!01!11!21 ".J|"i6 "J"&"4"<---$- %@M#%64%CJ%C[%RW[%W%%%6%7"&Xa&'('&e'O%%r'v'%%"'1g''g'uh(>(''ge('%%"%%"%%" 'g(e%%/e(L'T%%"(o(o%E%S4)J)r'iv'"(ro'g4)5J)=r'v''g%q%r"(b)}y)%%"    %%\r'uv%{%|"e('%Y%Z"%~%"'g'E'Fg'h(s>(t'o'pg'B%%" e(''g(e(>(%"%#"o*%'o**G *'*%%%B%C"%P%Q%^%x"%%"+/o+oz+++'J) ,/$J),$J),$J)J)X,Z  I-I-M^-tK^-K9+z+-o-- ..)6.4J.:z.EVz.QV.G.F!H1z.SV.T.]R.pR._.^.`.rR.s.XM.XMz.V.z.V.!1.M'z.Vz.V. . ! 1! 1z.8V.y!&1z.8V.z!1.8Mz.V.~!1.Mz.*V.!1.*M'x./R.0.M.Mz.0V.1.M.M 1/oL/O%%"+Ho+z+/C//X/F//&/[%1W[%AW[%jWk01!$41!?41!i40 ''0z1*0'+  C?+'T1Dj1GnT1YDj1nT1D1_%%18%%"1)%2%272Bw2=w2Q%2%272>B2P}2d}.3)NY3Ro3I.3*N3 93E93.93[93.93293E9*V * 4%4245o"5S*y >5yl"5* >5l%"s5'I5h#%2\55W#%2F4k5o5!5o4H5!55!B6RvR6P    B6Bv6ph6g6g6sa6h6g66]76g6g%%%&%F%L"%U%V"6a|7X7cB6XvB6pvB6{v7_7!7J_|7X7b7T7m %M#%77K_|7X7$7L %iM#%e787_|7X7p7`7 %M#%7)R8'7_|7X7g&R4%7N_8|7X&77_898V9P9}29(>(7_G9}9y7l9Q5:#%2I9U6.4|7iX%%7e_B6v]:K %%"B6'v%e%f"B6vB69v:Y[%W&:wd&1;9V4%J;d;;W;!R;KW;_;W; W;4;lW;lH<CG9_}G9u};W;;W<K6<g1<<{4%< = =:1<V6Ig<+ =&;W;Rw=e=={4%=4% > 1/>+:w=:4%;>;1/>k:w=r4%/>:w=(o>No>O;W4%;/>:w=' ' 'O>4 ?-w=%=74%L=K>]4 o>a7?<i<j{4%<%o>o>e = =;@W<Yo> =??2??'????+?'?=?#?G?j?m?9%%*9%E%F";R[%;W %gM#%h[%W[@M4%S;R[%W@*?;R8R9L9\29s(>(7_@AA#8&9 9829R(i>(j7y_@';A;^A1G[@M89929(>(7,_@rA[@M;RAdAB2A@@@@/BD7?#VBk6CgG9l}(>(({>(|   +oB+ez+5+oB+Rz+VBqk6gG98}4% CE4%|7@X4%^%3%kJCvrC4%6g%A%B"7[_%%6h%%"=?!|7*X<:Cn<k{(t>(uC D7DK7_WDfRtD[%WD1!%4D/D%K%V E\"1!s4 Ex"%%"4)J)/E|7&XbE\WDREWtD[%W7_(>(%%$1!*4@:E@ E" E"%%"4)J)y)%%"ES%%$@*ES Ew"%%"[%W+FN|7OX(i>(j Er"7_XFR|7SX(m>(n Et"7_[%%W[%(W7:6!B6v7y7 B6/vG9}GG G\GC\G\G\Gz\G\GJ\G\G\G\G\GS\G\G#\G\G\GZ\G\G* \G \G \Gc \G \G3 \G \G \Gj \G \G9 \G3\G\G\GA\G\G\Gz\G\GJ\G\G\G\G\G\G\GS\G\G\G\Gb\G\G$\G\GL\%8%9%}%~"G@'%%"G%%%4%5"( @%%%&%h%i"%%%%"%/%0%_%`"tQH%GcH   OH<6wgH';W;R&?HH??Iv.IPIB6hvB6vIXI.*"Jn )H* JYI@o*S@1!4`@@P@|70X7j_7$_JJJ 8F9@9X29u(>(7_K@-1!4*I K E"CJ<H{(S>(TBK`dKrwK|7X* KK^7_KKJKrA2ABA@@/BJK"?KjC<{* K,KK)*) K)L@(VoL(o@*MG"M? E"@M v@MAv "dK91!m4*t |7X89929(>(7_Mp* K<R6PR6PR6P%%%%"M)tM*@+'dA@f'yMK?MSJE IJ[ IJ[ IJ^ I1! 41!8 4L/ O% % "N 1! 4% % % % ",N`KK7_dKV|7,X7[_|7X7_`J)|7X,$|7X,$<*< 4O1!4ROpOq;* >5el7_,$OWOlOPN%%(PhAPj_P%0%1"O>A\B3A@A@A/BEA.B:A@H@H/BL@2@2%$%%P9*:F;;Pz%%"QQ%%%%"%"%#%S%T"MtM@'%%%D%E"1!41P*%%%%"%%%e%f"MMQ,'J IR6OPQX1EYQ,'Q=1E>JIR67PJ?I>5IlJZI>5el|7X7_>5l(3>(4*<(>(Q,'(m>(n*w(>(Q1E1!4ROR=ypObqDuD1!4RO"DCDRky!S>5~lJS>5l>5l!S>5l'(L@S=1,SBq7[Spq7S**@ @ LJ@K1c1 DL<@=>5lL)@. '%%%%P%Q"b)f_PjT%%TPN%%"< <{%W%`C%%W"4%;3W UZC<{.U1!4.U1!4JNI>5l89929&(=>(>7L_K8g9a929(>(7_8/9)9D29v(>(7_89929A(X>(Y7g_*R 4Oe1!4ROpOq;.U 1!4*s <>5l%%U;%N%O"%%UM]J)oJ)tJ)JIJ)%%"/E%%"PN.U$1!,4%?%@>5TlPMN VzU]J)J)J).U<1!D4>5Rl%_%`"L@%L=@6HVC<{L@bVMV{L@VV .V7KW~(WLL@LX@M+o@@ E"@.@'><*@V@VW C<{W=W>5l>5lC<`{UCZC_<`{W W=W@x@x>5:l(XMJ;'4%d;PX-: >34 ?&w==04%F=E>[4 o>_XPX: >4 7?X4%X6gX7;W<K6=g4%<<{{<<{J;84%.d;.?9w=G=I=Y>t4 o>xXw=Y=4%=X4%X6gY[Y_YE_7='4%,=,>L4 !Z<60gG9}=;R; W;R5Zh;HZ[ZWHZJZwZ:mZl DyZm DZ@@)[F)[@@z[=*g D D=[x(>(@!@%z['wW#\TZ, D- D7ZO@E@I%_%` Dy6h Dy>\%%"%%%E%F"(Z>([)[`*g*m%%\%E%=%>"Cd<a{6h%%"%2\U<]a-]]H] fHZ H]?fH]fZx]/B=0;5W;>R]b]|F]J]  X,6-g7/>8:w=/>:w=$^768g;pW4%H<;R4%1X^8o*N_QiJRIR6\PR6RPR6\PR6fPR6pPR6zPR6PR6PR6P1!4R6GPR6P,N.U1!41!4o*1!41!'4J?IJ?IJ?I,NQ1!j41!j41!t41!|4x_L;x_;,N,JLI1!4JIJIJIJI1!4J|IJ|IJ|I1!|41!|41!4L/O%%"J"I_1!4o*8o*85#%2*. JgIT`)JI`YJ I*% `FJRI_P899#29A(X>(Y7h_;J!I);J5IJ9IA;8`9X9t29(>(7_>5l>5,l>5=l>5Fl829,[%SW9j29(>(7_[%W1!41!64M1!41!41!4J3I1!n4 ;1!4;o* 1!$41!$4s;1!41!4;1! 4DKD1!4DMD1!4DDDBc"Vc@8R9L9\29s(>(7_JI1!74V;X;c9MHMH\;p;|;c|%%/E-%%*&4)AJ)P%j%k"%%%s%t"* 4d/E*  %%%3%4"%%%$%%"%%%1%<"d[MMcMAMAL/}O%%"%2%THeZ!^e d{eeeDu^ed%%"eD[% W%x%e^edef^ed%:%I"%e%t"fI8f8f8f8f8fB8B6XvUfUfgUfB6;vG9K}fJI`%Yf[J\I`fYf$pffP.z-g#JIf@ffEpKgi1!}4oggigeugg`Yh{f!J"I`+YJ^I`yYKg1!04ogROhyth;Kg1!:4og]euOhth;e-gJ Ieh(R6%P-g JIeh,R6)PKg1!4ogDiTOhZth;iNui5  .7- .  .-.iiWwj?^AGj[Y;A;jCwj?jCwj?wj?wj?@"';1!g41!o4j$@;A;^AG%K%L/Eq%%Bc%Vc@ /E.%V%W"AQ@!'4<<{d\k3@'k*An@9'L <`<W{89929( >( 7_[%W4%;`Rk ?w===>4 o>!7?HkQ lm :l4%l k- rC4%6g8^lw==4%=l3>PX,: >24 w=V>4 >4 l7>=4 9<<4{[@Ml>(d[%W[@ M@Al[@@ M[% W4% J% [% Wl 7>= 4 >= 4 lA 7? 7? 8 8' 9 m. 9c 29 ( >( 7 _l k 4%k l %*%+%Z%[" ^lw==4%=l >PX: >4 l 7?t7?7?;l 8@9:9Z29w(>(7_1!41!41!E41!z489929(>(7_BcVc@1!41!F4f5f;#\Z Dn[Z>57l D_Zs@i@m#\Z- D. D;ZO@E@In3%\%]%%"%%% % "4%Kn9o9o%%ooHX%J%K"o{X%%oX%8%9"%~oX%"< 6g4%K<K<P{Ap1Zp%> 1!4|7BX8`9Y7_929(>(7_fZfpb[%W%%d O;%\%]"8w9q929(>(7_Ab@)'<%f%g"%%8,9&96%b%c"29(>(7_%%Bc0Vc#@**q6!g6eg6Vg<<=qd%f%t%%"qq%%P%%"%%%0"JgIUgZC\<d{1!p41!4cMM*3 4OF1!h4ROhpOq;d* >5l:yY[%W8W8j9d9t29(>(7_rK1rY*ql>(;Rw=/Rr L;Wl>(ir 4%4%,X+6-gw=gdB6:vB6%vG9}B6vMMMG9+}88:949]29}(>(7_%P%%%"<"<#{d[4%X6gw=4%l>(r06Eh4%lW>(X|7FX%9%{JCRs4%-6g%\%]"7v_|7AX%4%iJCtrC4% 6g%:%;"7T_%+%,%J%K"|7X;W7c_%%6h%%"%"%#6>h%\%]"%A%B%v%w"|7XC#7b_7_%+%,%J%K"|7X4%.JC6|7<X4%Z%/%gJCrrC4% 6g%>%?"7X_%%6h%%"7|_%%%6%7"|7RX%%U;%N%O"%%%;%<"%9%:6Uh%%s"%%6h%%"Pz%%6h%E%4"%V%W6sh%%"%%6h%%"%%63h%`%Q"%e%f6h%%"%%6h%%"% % 6%h%C%D"tNX tX %%t.X tX %(%)"%X%Y"%v%w"%%%l%m"%?%@"%t%uB6bvG9c}fpfpe^ehdeW{e6a6h %%%f%g"%%"fp{e6afp{eflpfmp^ed{e^ed^ed{e_u{e^ed{eefpfph{h{^ed{e^e^d{e`uu<^^ed{eeu\u6^e*d{e+6gOv%kvvzHe!v)v^e d{eeeue'uvv)He!kv7 He!v)v7 v He !v )vvvvWvqeqeqfphP{Hei!^ed{eeue]h{efpfph{h{^ed{eef^e^d{eBe^f^ed{efph{8waTwC^esdeWnwskuv^{eW^ed{eeffypfzph{{h|{^ed{e^eAd{eB^ed{eeu;u<\u@6uZ^u6^ed{ew 1w\1wB6qv6~8xom_u[xG9}B6vzxCuG9$}B6Dv'_'`xo8xm_u[xzxuG9}G9}'B6vB6v'xizxu8xm_u[xG9}G9}B6vB6v'''(xE*eWxYx1*xx*xx*x:Y[%Wx,*xf_pf|pfUffZfG9_}B6{vx7*e.x0xa*x]x*xx*x:Y[%WPzP7zx[*xW6eyqf%phA{^ed{e8waTwC^ed{eetfpfp^ed{eh{yryG9}y^e d{e h:{yryveuG9}yh{ydzx7z>szxTwCUf+ww{]eyUfUfoUf{W''' D.%?%@ DM)[%%" D |` D%% |` D D)[)[%%"%E%F"-|@'3%m%n%]%{%%"%%" Dn|W|@q%%%7%8"|/@%\%l%%"}%2F%2F|7FX0}oI}oM7_ }V}t}+o} }gE5J#%29*d }%2}%2}}.%2%2|7X7 _%@%A%%"L @4P@Q|7xX`#'*7_LA@5>5Ql , Q#c v'v'eFececez-4vZeZeK4vex/*e&x(F`F1x *xf9f%E%F"%i%jfpf/ D6)[8)[9P"z%F%U"W/ DXza  DbP)[yAz1!4ep ff,fA>z1!?4eDpEfWDcDWa/ Dz  Dك Dك D)[ E")[V*Az1!4ep ff0f5/ D6z?  D@@L@S`)[agV*h7;Pz[%W4f E"%6%>@P E"%0%8"JIJ IJIJ#IJ:IJBIJIfd?>w=6=I4%^=]>t4 o>x7?X4%X6g;-Wf%f@3@9'7@ '%@R@%%@,*5%D%E"%%#f)fP<z%%F"%Q%X%s%t"OO4)BJ)J4)YJ)afufpffpO E"(yՆ{@|p!pcfhf,Rl%%%^%_"c|'c|Ç/>)$C$f3f$')*o3IVffdh),)=\t?''#C4<2{(N>(O5#h%2h(?>(@<{>( + z+o  4  D5 NN9CC|7uX<73_%(%)%%" ''ߍVfwO+)'h'w''VX{V}V}Mt}R+]oL/O%%"+o E"Mq%Mf% ES" E"%(%) R Q;#&c Q#%#%$" EC"%E%F%S%T|7X7$_7x_L@7_7_+o+?o+o|7/X7_|7#X7_"H,<P6Dg |7fXJ;{d;%Y%0)Ӑ41*=PX: >!4 o>\.^Lc dlLm .L dL %"%#"7<_0A"7B6@v)Ӑ41*Ӑ41*JC%\%]%{%|"Rs4%6gJCrC4%6g%%6h%%"L@%L|@t@@6* jq'*' * 4n* {L@L{@oL$@%{L@L@ݒ)!L9@e+of}t}q+lo +<&%V%W%v%w"<%%6+h%h%i"@L/QO%]%^"%1%2%'%(" :D DDD+;L/sO%%"”$ "!+~+J),$*  F@@/%eKU@{*\ %D%hC}<{{(>(/Eo*|7 X<%2%?7_%%" LK(Jo|7oX<7 _%%%j%"U 1[C  DHUUxyUL @%-%.1*%%"%%%l%m"—՗<t?tU?.<.&<"J< P^zF^_q>q>)s ɘۘ}  %E%F*S R6jP%%"=&\@&@&%E%FE]!>\љ1h*%%"ۘ l L@|7)X8X9R929(>(7_7%_{NLV@OL@(>((>('E\i)7\_{L @L@{L@L;@/'9R|7SX'h@@* * *\ 5*. >5El*u p5* *0 4dbV$M2&l|7+X'J'9JJ|7PX7_JK 08H99R29q(>(7_%%* (>(C* * %7%8"* cC<{%%%%z  |7$X@:O\ Ee"%q%r(>(C<{(>(%%"<-*\ c89929(>(7_78_<']!>\%%*%S%T"J}I>5l%%%%"*%*%+%E%F"BdzjAa|7(X</%:%N%:%;"Ciz)%v%w%%"7_%D%E%r%s" |71X%d%e7z_@922C4<;{%%"UR)S89K7\u7929(>(7_E@+J),$[%W78/9)n7\7929(>(7_s9++C-<4{%8%9%P%Q"z E")ff E5"xFpȞȞ E" E'"P8z,$$ E%"P6z|7X:%%,$%%"7_7%_J)<|7X7E_7_%%%0%1"zI%U%V"%@%q%%5!%%"5!%K%L%g%h"Bz|7X%7%87_x-%%"%%"%9%:7U_%%"7_CPCN9``Ci<p{Ÿ`.ffffC<{  Do*o*!$*%+%,CB<@{ߟJIPNo*JI%%"JI%.%/"%Q%R"* %%" BmzsL@_P{L1@*L@5!IC"< {N7%`%a* %%"8`9Z9o29(>(7_@ @ @&$ @@CE<C{<.9C<{PN%:%;XSq V\z%%"l0@|'L1!@4@@@@E@_P*PVN%X%Y%%"@Ǡ@JI,(b)Co*ao*a17*%U%VCt<k{%%"PN@17*%%"%A%B"7%%PN%%"17*&|@Ǡ|@#|aR6P* * R6 PR6 Pb) % % % % "b)I X 1h 7*y 8 9 9 29* (@ >(A 7P _ 1 7* 8 9 9 29B (X >(Y 7h _% % "P N% 15 7*F y)o _Pp O  E "8 9 9 29(.>(/7>_O~ E"@JI%%"PN_Pn89929(>(7 _y)V_PWO E"89929(>(7'_PZNPNXb@`Ǡb@jJbIb)O E"<%2\U]a-]]CC<A{H]IfHZvl7_P1H]"fHZ"HZGG%%%%"%%"HZ=ߟ?JBIJJI_1!4%M%N%%"%%"%% "%/%0"JIJI"7b)8-9'_P72999(>(7_o*<%L%M(P_hAPZj_Pq%%"U#]J)PCN VzJ)CJ)PPXN<%k%l(P~hAPyj_P%%"PN%%(P#hAPj_P5%w%x"<C<{%%%%,%X%YtU]J)J)J)%%"%%"%%"  8-9929(>(7_:H +,$Y J)#89929(/>(07?_88<9LT@U9x~29(>(7_:$H+,%$Y* J)0CB<J{%m%n{QU|]J)J)J)%%"{L@L@yݒ!L@KL@+Ho8|9v9:H+,$Y J)29(>(7_+Yz{L@LE@98&9<09R~T29(>(7_:H+,$Y J)8 99*29A(W>(X7f_N;< [%wW[%W7.U1!4>5l:-H+,.$Y3 J)<;f<M89929C)<&{'b(>(7&_CL<J{%%C$<"{(&>('%?%@"%&%'<F97* %%"29 ( >(!7/_98;959;29(>(7_29(>(7_%<%=CV<a{(e>(f%~%"\7i\7C8679^_79x29(>(7_\7:H+,$Y  J)%%BCb<`{(d>(eQU]J)J)J)%%"ɥ- |7IX<YL@(s>(t77c_-*.%2N[%W[%W89[%IWs929(>(7_L @4)yJ)y)F SJ)J)#F4SJ)?J)M%\%]TjPNTPN%%"%%"b)'b)'b)'%T%e4)sJ){y)y)y)_Pb).y):FdSJ)oJ)}FSJ)J)%%TPNT P)N%O%P"Jhij-k9l\m~no*#@#o*f[ZZ֧B\FCSJ)NJ)i֧~\FSJ)J)w[%uW6h%r%s%%" P( &8K9E9c29(>(7_* %6%7UUU=%%"1j*<8 99,?29(>(7_8f9`9p29(>(7_%G%HUtUU% % "  j   D 2 KS e ,N $,r $ <  -< p j,9 $N <  -8&9 9029G(^>(_7m_,$8 99*29P(i>(j7x_<<%%%8%9"@2@:=`\%%"N-w7%%"%%"%%"%%"L+@,%%"%%%0%E"%G%L"* C<{o*%%C2<0{o*2(>(%%"%%(>(z%P%""% %A*N JI@`Yb)O E$"@YC<{%%(>(4)J)%%"%%%%"CC%f%%%"o*o*CCEi:LA@95!*> 8F9@929(>(7_7LB@;jlq' *! %N%Oo*b=b\o*b@bC<?{C<{%:%;"<%e %f "%R%S%l%m"%D%C<{(>(/E%%%%"%%%%%&%=%>"%s%t"C<{%%(>(4)J)%%"%%"%%(P_hAPNj_Po%%"%%"%%"o* VQzU]J) VzJ)J)C*S @uZy[Z74O*1!64RO6pOMqL;<*3 [ZJZ7*J)WuJ)%%(PhAPj_P %P%Q"PNJ)PN V9z Ux]J)`J)eJ)nU]J)J) J)L}@*Q ''* ^-K^-Kx9x9TT2x9x9TT7KA{1!y4ì1!41!4Nx=Rx9WxxT1 1!4DD;;1!41!4DD@*x16x9596T4zTx1!4ì1!41!4@ 1189J9JTJ1!41!4DDX|%%ȭSpȭ\p%%"|"R6حt~ȭSp*! %%|"T6%y%z"%%%E%F" "@Jx%%*; %c%d"  D߮%  D&%9C  D~  Dů#  D@Efaftd?dt?t?ɥX!>\Y!B() ;|7X,7%%/%6%7",_$%d%e"zu 7;7%B%C%j%k"\~)7q_%U%%e%"(>(*L4(5oL@(?o%O%]"%e%i"  PXRP5g#%2)!)!r'fvr'{v'#'g''g'h'Q h(z >({ * 'd 'e g'? gB sBse('4'e('(?ܲ-#8ܲ# E"%/Eܲ2# E"%%"S8@&%@ E"%%"ܲ[#%d%e""c'>g@Mv%2F@Mv'?g"C6</{(>(65-D[`_r('hgʹ !("'h#g($?%V(&'mk*j,-F.Eʵ/m1*32DPbcp4q7|3}73bkq^жJqL@:k)mh*j0k,ivP473 E"*\Ln\O0)m*ejo*.O0o*1 evV  Z0)m*00ж0>0J)o*&!)m* 0!,o*3L3@Rc o*Q#! $ 7o*+=+\@+o*{o*0ϸ.1)m*O0CC<@{o)ml*n0o,mo*M%o*o*=\@ 0)m*ϸ.1N)mO*Y0U$ia0) )I)> uhp")n!1"  E'" E?" E"@'' E" &y'I"4u7Q7'U4%U^,6-g<`<Q{U%%JfU%%"%?%U%%"%*%+"%K%nU8t%%oX%%"4% B6)v889929(>(7_%}%%%"UU 8O8b9\9v29(>(7_^6g<5<0{%l%m8c%%"J%[%W4%%%%%"Uo>T'~+@z+oJbb(WULbbb/bJbebb5bLA(BoLM(Lo%WL(oL(o%% "NR[%W[%W=oCCe<{(.bV{V=LL(Uo !!#!#_P!ݒ!L@N +.oL@+oQ= #+ z+ Q #)L#@HV[Cr<p{L@xbVM%%"%<%b%%%[%\"ɥq+z+++zz+z+   @+Tf+zJK3o>7fkfJ;3o>#'+z+z+z;eW +  )1D)D4`7>7m'U `+oҾi}t}+o}V}St}X+co}-+oI[%W1*xZd+Z޿)|7*X7z_+o+&@J+y+|7CX5#%27:_@k+z++7d_+z+o-+o1+l+F$F$F'/+BBMdmd%%%J%]"(_%%%'%("%%%C%V"(Xߟ<J#IJ(I|7BX%5%jJCu%%%%"Rsj4%y6kg%%"7_o3IVqVgrR6PR6P74d(@g*R6&P*D '%%o*!%+%/'<%5%=|7o*x>(%%"%%" g R6PR6PR6+P)o*b%l%p'}%v%~47JQI>(eqMo*cxq>(v%%"%%"J>I`cY%,%0"|7XU_%d%e'x%y%z%2ߟ/JIJIxW>(R%z%{"l*%%"7_ <J{<{x>('%%%%"'%%<7x>(%%"R6PR6P**JIߟEJ*IJ/IR6EPR6[P<{'%%7x>(% %5"gJR6RPR6_Pߟ/JIJI*O o*@U%%o*S@SlN*%%"x2>(%%5%6"<F{'%%x>(%%"<07o* B7xU>(J%X%Y"ls*o%w%x"%%@7%%"U&%'%(g%%ߟrJSIJ[I%%"M`M <R{'[%\%]*e x>(%%"'J%K%L7x>(%%"'%%Y7xo>(g%r%s"%'%(''_w  D%%"(>(%%P%z%5%6" CS<P{%%%%" WX@#*s L@ Ÿ'.ffffC<{  D+1[0%%%=%>"%%%%U"U&l<<;{&l4%0 {,,a{/+oT]J)J)%++Wz+Qo_P3+Oo+$z+Co_P%+&*cV}V}t}+o}ffXk3`.4!51j+o}+Sz+o+B+[+  **LE@= 8&_PV}RV}ht}+oYl++ҾilH}+o+Uo}U}t<}O+Wo+I+lV\{;&}JV s$!A&LC@D_**! dpo*L:&Q}#L5@.L@Q#+o@iC<{+z Ҿ*im@@! G:*k $E$" O%%1%<%="W:*{ $$$y;%%%d%e"%t%u" 0Cs<q{(u>(v9B!>\ B/!>\08$C$$$c$%(%)%E%f"9!C8<6{(A>(BfLf:* (->(.(>(' T  D*<@(''vX*X+shY@s'Y'!&X*=Xn+snhX,+s,h Di[%W[ D>\(;B6vC2<0{ D<dF%$%8 DGdT%%">\Pz%%%&"(>((>( D`>\9 |7XC<{(!>("f*f(7>(87F_( >(!7/_#A<.A##U#A<JA<A**/{A}<AA99A@''binX*X+sh<<<A@)''X*X+shB,No**@(''kX*X+sh(>((R>(S%%(%%" Lo@p0} I} M   %  Ds?h" :x$$$ D+b$$]$\SP  12+o}V}6t}+o}@2+of%' 'V[X*wL@bV8M%4%Do$$nG%%"% %!%E%F"A`$:*+ Or$$<$$% %!%=%>" Ds:h $9$$ $N$7G DJT1Dk(7?tT1D7o>o>7o>?o>"R&}t%u%v%%"%%%%"h%i%j%%"oo!Z N1``````  ;?A?T1&DT1?DHHa-ia-i.I PI .I PI_ (  '/>0BJA81%+%c%%"8 9/@9X+sh29(>(7_%%(>(P,z%9%:"L@_*%%%%|70X%7%A%f%g"7_%%"7_N4 %%fff/fd$dE%j%k"* *M >5{lcMM1!41!,41!,47 _j~%%%<%="-kkkkkkkkkkkk0k0JIo* @ ~LJIJIJ0ILk_P8`9Y929(>(7_:H+,$Y J)%#%$1QU2]J)YJ)^J)i%w%x"89929(>(7_8;_P92|l9c29(>(7_:H+,$Y J)U ZC<{*#'' =<1*%i%j%%"%4%5"T1D&SRrL9%l.K+& <+6g<d<_{4%dJ;d;< 6g !* 4K}%%2b%2b%*%5f;ffSffwfP|zPzPz%%"fff'fՆ@ ,R:PVzPfz"Ն@$,$RJՆ@,R%%"Of]fpOffp%.%/"Oe Em"@` o*: E"9P|7XL(@)7_o*!$|7?X%F%P7%%"7_%%"7_ LY78&9 9) 'c899 K$"),&)3)!o*o*+4|"F6z?!>\@PK?!>\@j1n%%%%"K*$ HbS] NnXG@H<6 gHS]ENIW!OF&4774j77477 477 'x4f7F7sI)4D @@@+z+ z+zzaI'+ofhM*: c=|* s4d4  @@@J$f<fXJK?KbX*|7XXPz7_8v9p29(>(7_8g9a29(>(7_K%% %%"@TsphJJ|7JXK7_ 5_*,[,f 6'()zb~0b@~0 >  a` - @= {D]~ @> at H,t ,t  ,t 8, H- I=t ,~ @>   'A)   A_ 6Hx G  "A_ +Hx E = = = : : 9:U nC =)^)B^ - =)7^)H^)^~ ~@> %-) ? Xt/ x +b7 7x t/P03:|:c~7:ML [S%=[5%=j== ++++# ++ ) Y  +jc'~:0:5C = 0:> C&;==| :|X:> ` &c~]:0n:C|:" %! #=cq[=[%8>  @A @L jU> ]e M> 6] :&!C!H "-    @ZZ@Z @ " \&PC"w""Pw"lw"w"w"" "l"w""Mw":w"J"""?w"w" - =~ @> w"J 4 *) ?#]b 4 *"$?:$V#?b$sj,%/=%aV%=%@)&]& L- M=V&qV&q V%[=~ @> V%<= )(  (MC)`^r) ^`p(DC)W^r) ^ #c2c2c2c2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b"b"b"b"b"b"bbbbb`##?w@u ueEEA@@@@@@@0@ @@@pE):) )))72)72)72*&*O)(2*Q*);2)2 % Bbfv~*C*lC*C*o@*@) + - =~ @> (C)^r)^ - =~ @>  - =~ @> +4 +O=,rH,Fuu,@`,{,,s, )E2)E2*2C-~*:C-*=C--6 *@C-*3C-~-L -R-2-7-R-2 -M-J-6-R-9-2-6-7-H-R*@C--;*H@-B[- x/t/t//////`0!'0M Z0~o0k000qLH LH @pPPRQXTZ0~o0k0l V1*K0V 0S %1$ 0 V%1! 11*m%1 1K11m%1 Z0r~o0k0(0$*1*@1=12!242I2Y2l22!2V42WI2Xl2t22221`221`23y 23 %1( %1 %1 %1 0G11 4 (3Z0~333"3f33334*464/ *4B4*44E4@:4,E4:!AA A aAA@4t:4:4E4:4:4l:4$:4:4V:4:4e:4:4b4? E4g :4 X4 :4WX4 :4ii4 E4 :4d4E4:  F&<5* @<5<5F5*t@<5F5<5F5(F5RF5<5*@F5<50F5JF5`*@*@1'b 08 $"5`5 *r@5=#1>1' 6 6$6 B6 3R4)747`77 8188 z9$9e9218e9#@ 999$9C:93:he9H*@*|@*@ ;tA;_:r;>;;WA;:;6; ;9;;8<bP<t<F <<<<}<<&<<<!j9=%9=%9= %  A   =J =J H&b.I PI<<=m<9<=m=Z=Z=1J=1J 2%HuJ> ]>:Ld>&>&Z#?&>&Z^?yt?$>4?BpI&I>t???)42#@g?rt()zJ@m?E)82 e"ee@k @*ai1_    : v,%/<(J@J@J@e@@8%!@J@5J@j& B=J =yJ =J = J =J # 1L\GP?A"V(Az1AAX(z 8 `"Aa BeI1a_$BEBM^BC B-I1C_qBEUBVQBEBM   p@&H@&H %H P$H P0@ @%H PBTaBB<[~B*IbH=m=rmBB( <)   B B B B BB* CF A,VJ5C9ZC>ZA"V?1E_@f*agipBA"VCBN7>7ZC B>ZC B>ZAVA'V?[pA&A?p&(z(zCI?ADAbV?p&]>&?+p&A VJ>6 7BCEBGMBEBwMA'V?DpI&I]>}&?p& BIDrE'iEc@   DHrAbV5C9E{C4AVQD A!V081J>T F:AVF{G%  @@J>y CS4AWVJ>y GAVGG G AmVG (G G AVG(HViHViA~V*HV(HH?HH?dH,dH,AQV*H(HH?HH?*H(HH?HH?zHx(J> H/ ZCpktJ> H/ ZCQD AVQD H(zHQ (F :Hd`A1VH`AVHA`AV #bI bI/ ^JZI^JBI^JI EEJ'J"J'J'J'J'JQJ 'J'K 9DKB JBK,)K:K,)K:K,)K:*8C\ V $%$1Vm NpNr*RHVORgSXNiNk*SLV|R9gS;\C?XsH'H<k6ZgX&@E@9XZZZZ.    "  3 2"I"  "   \:v\C - =\\]] 1] \>]WL]ZL]Z~ @> \\]]  ]M[-xP ^Y-^7 a^5Sc^$Yc^5P ^?Y%c _*%%%! ?_E`_Ku_my_+_,u_/_5`G`N<`Z`Z`)2w`)_,`7`k)v2*c@""&(8C)E^`cajr*@r) ^Qa9eZ}aaI}a)a5}a aH- bz}a)a5}ab]-b5Fb[*b?1c%BcVYc(<hcWb1cc)"c+@ d4(1c>d)jNd*H1cz]dpmd>dydd6d818 @@a!@BJ  RKeEWeceeC W- =KeE~ @> Ke/EWeuKeEWeKeEWebdWeedCb{eC - =~ P @> Q ee$$%e ar^ =fc1ce CLf8e Ce e@CeC}afwfPfS1c- g9g0<1c-9g9,Mg0D]a?Ke)KQ:ngwg 8   hTrb}ab-hieCuh3h1eCuh3}ahaeC+i\H'Hi</6#gX@E@ *jabb]a ?]a?rb0}ab7-rb}a b@-,bbb]a ?]a?rb0}ab7-rb}a b@-  So?joFg~ojongjoMg   ~o4o=koKkoko[ pcpOpIwpGKwpBGpp;5qQ3q   HD _q5>Dsqojogq:<qX6jo!gC$4A#VH$` ^?'ysq8oJ> oksqooko<k-rs;sqooErgI@ oksqosq]o^?yJ> oksq`ooksqoo.kr:r#roksqoo7ksqoH./ ZCGCrxsqosqooksqUo CC4ADVsqYoJ> okoqko@ksqo H/ ZCeC4AVH`okq6ok-r/s;\okoXkoksqo  @ ^?yssH}/ ZC2jsH/ ZCErgI@  @^?-ys-sC`4AWVokokGG Gt HiHidH dH%^?HyJ> okokokJ> okH`sqookokC 4A Vsq] oJ>r A XF :'t@ *J> F:o kH `o kF:sqosqgoQDs J> oksqWooksqoJ>% oksqosqKosqosqooksqoG AVsqooksqWosqosqyoHR/ ZCX}C4AVGG JtQ`jtFfJt`ok-rs;okok-rs;ok    D@Edokq:6oksq ojtfJt`okjtf;q) 6oG koa kEr go kI @ o ksqosqookJt`sqIosqou^`uv`u`MuPnuS`Munnuj`Munu`~u.cu1`~ucu` u :vNNvCu#:  u<:vkNvGC - =w6w~ @>  - =~ I@> J - =~ X@> YgxG7xxx:wdyWytayayVyayo ]y%y y ;~o!;~o/,z,z  MXzpy Xz0pXz\py] y1 wz.;o[Xzpy  z)8z_y wz]. L LXzpy! z_y Xzpy wz.{.{"B{#^{)7r{G^{07{"y{;.|A|18<6XzPpyW Xzpz_y y wz:. |a|bL ab4 BBFBJB"*@*@R}5m} *@= ; }a}a   "~IP5~fLH~X_}Pa?_6t~,&@~mwP s,z%*@,zE8@~T~B> >,z9n4Lir{/.{B{#S??{: """&&.f>?/f/ g '' ' ' &,2O110Ot}̀̀׀H:̀̀r{q̀94̀̀v ̀ ̀ ׀ :׀? :׀ :` tb@  ! (08p (0# !(08(08@A (@  (08@HP (08@H (0`p  (  () $  (08  (08@HPX ( (08@H     9   ) (  (   ( i (   (  (& ( (/ (# (0 a   (0  (08@+    (0 (08@ (08@HPXX  ( (01    !  (08p  ( (  (08X (08@ (018 ( ()P   ( ( 9A (0| (1 (0 (! (08@HPX(08@HPX`h(  (   (  (0  (08 (0x (0>y ()*xO hph08@HPX ( (08 (aYIQ (< 9 (  (u (08   (0w  ( ( (3 (0  (    2 ;?DL XZ e n y     !     & 8>D X clt{         # .0 = I R[ ekou ~           " / 9 H R ^biq          ' 29 D V^ j z          "*-.;  $())**0134o         1 "X  #%'*,14         + : NTVVY jossx|        ! , ; F S c o x   ""##        $ , `` ` ``> l# ?m >yA`@ `+ @@ A2 @  `  v``[ + `+ v`d` `  P  ````` ` ` |b?*YN L @@M M ] =\ 9` W`J`w @ 2`` @ ``@ : Z<4z : `| ` ;[`Z3U{@ 6@E@ T R5 ; W }@~ 7 7  R` 5`` 8@ 9 {` `` = 4 9```68 X `~`K@OX` `  S8`` ```S N,`x ` a ,`BN@ `@y -``- .@7@ / ``@ `@ @`` @ `@@@` @`@@@`` `  ` ` `` `` `` `` ` ``` ` ` ` @` `@@@@@@@@  ` @ ` `  @`@   @@ @  GG F H JEFH I EI`@@ n gm Y8Y(YXYhYhYYxY`Y` ZYYYYYYYYYYY8YYYYYYZY`YYYYY Y@Y`Y Go buildinf:go1.26.4-X:nodwarf50w tApath command-line-arguments build -buildmode=exe build -compiler=gc build -trimpath=true build CGO_ENABLED=0 build GOARCH=amd64 build GOEXPERIMENT=nodwarf5 build GOOS=linux build GOAMD64=v1 2C1 rBA Go fipsinfo 89xmmà a); Ht;7S afrLrL-Z-ZffP=gQ=g-Z.Z[[x`MM`5 5 9f@rL@rLdff fR=g`=gxDiDijjjjPYYL-ZLcHfYHfrrRf%%`lf/none{EE E H   @af   /dev/urandom)LIhH.@IJJ H/proc/self/auxv JHJ` A`JFK zH HHIgf4 @LLef ffif         / _ 0"  /sys/kernel/mm/transparent_hugepage/hpage_pmd_size/A@9A_A`2DD DD  'pz|  @n_n!(O  `nn"C   0@P`p @`@  %&(*058@HJPU`jpef ffefifefffPffefpffpefffefef0ffffef`ef d'@Bʚ; TvHrN @zZƤ~o#]xEcd #NJ ';>{ 6V   5)14:\6 7 ;>fio$_jjZkbkUԝԭԺԼ:?EQՠ"% #(38:HJLPSXZ\^`cksx} !"#$%%&&''((()))*++,,,,,------....//////0001123333333333444444444455666677777888888888889999999999::::::;;;;;;;;;;;;;;;;<<<<<<<<<<<<<<<<=====>>>>>>>>>>>??????????@@@@@@@@@@@@@@@@@@@@@@AAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC#4DuӺ?c?yڌX?9?-^? h?:D?Kx? !? ?8G?2Sg?hz?:?Е1?z?G?g!?Kx?4&?̈Gj?TNK?sp (??P??2Ut?Uᢜ>?&m??l??sjbƈ?UϋE??0?_  ) 1 4 7 = ]  ) 1 4 ^  ) E I W  E I HIWYmq_XZ\^ +&---------.@00112ҧԧΩ'/7=?BESgu  VUU433$Ir]tVUU;J$9.ى%IqgffF]VUU$I@8433.*J$ qaVUzDy 0  C{ ?gfVUJ9o43]g%I33333333)\(\p= ףp= x&1|?5^I ~:pΈҲ qh N]h㈵9ahVyc{-1Fw$zՔ!"Kga*m.:BGkI> O{ͷu9 idW>Pb6-?C,z MY@1eoT5$E!@pG8w=_$A|AѤ䥬4 )TTpi;wwIYePr&ޭԔ],`yOoy.P9AZ.269GJxy}2:;=>ACDFHNEp+rv /`.1V(/8?HMY_ho&!*!+!2!!,} ,/,`,b,c,d,g,m,n,p,r,u,~,,,,,,,@NyBl".2ny}~ħŧǧɧЧ֧ا!,W":az*/37:HKwz~#3<?@BGOPTVWY[\`aefhiloqru} Eqsw{|}0_a/ay}s '07@EQW`gp}N!!60,_,a,e,f,l,s,v,,,,,,- -%-'---Am#/3oz|çȧʧѧק٧SpqAZ ~wzVY JM-0[^jp     9 < B G H K M Q Q Y ^ f v    9 < D G H K M U W \ c f w 9 < M U Z ] ] ` c f o w O T c f :?[lqMP]`Z]|6@S`s x+0;@@Dmpt|LP7;IM EHMP} ' 0 ^ p q t !!!&$@$J$`$s+v+,,'-----0-g-o-p----]...////0000111ƤФ+@ʧЧ٧,09@wŨΨ٨S_|٩ީ6@MPY\ª۪  kpװmp kpMP]37#-JPz'0co6@U`g8<<?  9 ? ?        5 8 : ? H P X `       5 9 U X r x       H      ' 0 9 `'0YpMRuGPvA DGHKMPPWW]cflptaDPY`l+0F;   8;FPYGP EPlp6:GPY`:>Y#$t$$C%//0/4@4U4DFFh8j@jijnjjjjjjkEkPkwk}kk@nnoJoOoooooooopՌ"22PRUUdgpjp|-0FP&)r{EV`x  FJ%**0m,0=@INOKPY^_q=$';BBGTWdg+0;@HPQ`ev{ GPY`S`mp|ߦ9@ JP#3J[_AJ{^C\Jw7]}Cw!cajUB@&n4QIUP"Iwq\-_Ɵ\hCJ9? 4iY3pjNѼ.+ʔב,$42j?+BhO" 9'½[%)<*jRz3jɊ;n!|[Qũi !1䵦S)4S2j.IYbQy8v8LgcUawĖ jbOFڐ!z2(3w Ǿrpi%OLsԴxn'1W/x $/[YI9-La]4ﰽ+VP9` 5Tpv ^7}-y|{"by8q"yD@PXr̔)AQF纱VIoh gRSr$L^ZE+;\xnWS^)NOjcDjP:滜3 5Z $"xE8N>NT/Sﳇ iC{ PLÞQG [~?"ҥa|E^PnhD6 )D.1=(iHfN`oQA'Ga}Bv<xI@wlFDq p[Gem`xqWn3bnGNR q8V$W|TSgTQY"R=:+8HL+P/hǟ ?\&Xk@ rRq65Jn\@0ǯxיXI qN/݅gpb#a "$#&&P{=!鮼 |Fbz?:7yEyRS@{(ڽ ]QGP27~ ?39>dd[מגX!h!1F{:=j+6g<^9*vvos1PY3$m4@qƤsfnKSA Erj0, XkE)j b\^9鸩NtHᮄ\4q:2J(R'o;.NF`g#'s$Aׯ*} }9,TtB%@f4YE" ڷ9BAVU'(d=koǡRlf*dcJ~Xac6 9s;ًiax=Wɝh:35RP-Dm[1ffe7QhTFp7)]((DiuN#CA)Oy}h UA?t'0FEh#9IZV6a=zlpJp@:ޕG5_Vٸb4IAS(S:oF%b(KcfqjQl2@z$Zf;ZdҀL+":XM=c/ˉ a 9] Ĕ&`ӛWfBX2b/8yY'V:ِK/\];5kvʃ&_BSv@+<]4rdtAxN>/wxRB@b+)N*8S|i{$WcI6k2\d|{g ?ƸG9ptyܠ#wnɷB3' 9[h'MlT: yg~ "I~EMe(]XlC]y2E߇yzVǣ(k 'j΍Bi-U’]7OC̳|<٫^b, ^h[8Cpj\˰'cA?ɨRT XT1a~uL DMk/`6%&Ն3rpͩQ$TZe( 夯$#%3|_B^2+@a d_+<~A>k ;YhIVuL6b* :g(`y!W+~$Q)uJ+%2H5'Mv:Dgw}5l<y5[k'[(c%{1%}B#%h~<_3Yq6*,29CҲ~ Gb_BG[Pc?IlAk"|Or$Z= G 5)=eX( U4+\Bx6,n rypr!li6[ylRb7ygݓx koQu4g$L&Ղu<Fu{⴪\?^%C=D(HM 9"l6#)\_*Tz8d 6G_ Z-ȸhǬ#C %dyZ%Z~=sꤏ<"yuх!=afNgy?*mURmG*mhP#] [w6^e}tr+*k%Csbk$<-0K#1 ] aNO3l6e%9m8+u~`q`l|=/iky* +۶+[$[?`~Ey1\3q4U^yuװw'C,f!*EInȱf=B G.aow]>:?qnGxį@xq$!j߶lN@gve RQ^q+zkA6y/+3C{]n^D ;,7)=O2O)ӄ 7V NܧV|$ZxeGD ]];be(jq0/v׭4xpەuCt92o@LmSЗŚSRYu$axmc*K"?7{F=~kvbk]vr!x:g嫂~4l@vs/ޚLЧ~wMmG=K12L =C&ss:y2nacfO4IDܾT^R A}ø@'YlDNGXn{,T\0{*] 0Gy}9Ӷ+p|F 6ڴkBvSy`CܘόdO2I#(7HPm vOsE}SBbYh+@`~ daUH1uyC;wonfh(4rU֑TTew>oGIUy\cb?9>g""m~cf~f78诤Gג߫jO2)RYtu ё|ؕ:S|۱sfFfhp$qKM C,Ue1X#HX 〽w'rPᰜ]HAq dx9dk/ ^BPg\9L(BI6!w_fQĩCQãQ(y$( [8 ưYJ)Xeި.8Ǎz̖ZSt;^sW~%1: 9AZ az yy/00911279HJwxxy~Oaa88  ~"3::+*;<==]>>(*?@?*?*ABCC=DDEEEGFOPP**QQ**RR**SS..TT22VW33YY66[[55\\OO``33aaKKcc11ee((ffDDhh//ii--jjDDkk))llAAoo--qq))rr++uu**}}))&&CC&&**&&''%%EETTpsvw{}t&%@?  ~P/ 0OP_`/1V0a```  З‰‰@@yy}}88A '(/078?@EHMQQSSUUWWYY[[]]__`ghopqJJruVVvwddxyz{pp|}~~   &!&!*!*!A+!+!2!2!N!N!`!o!p!!!!$$$$,/,00,_,`,a,b,b, c,c,d,d,e,e,f,f,g,l,m,m,n,n,o,o,p,p,r,s,u,v,~,,,,,,,,-%-'-'-----@m"/2oy|}}u~Z00ZZZZZZZZçħħŧŧZƧƧuǧʧЧѧ֧٧SS``p0h0h!: AZ'((O(pz'|'''  @   @n_n `nn!""CՏS`i2噜\ BU^asRxZGvR"J\cҾ(/)382tZ;S?;)?eefX$YJv>ᮺI- y]SoΊߙZsy,,+ؑiKyFq6NlHMDz%#rxjm 0O\5Q^3-#Gf+ނ5x,vU0 1̯!P;Lk<ܭ=*$Jx݅KbS 4mk3o=qԇh@drˌɩQhH;f%mtvWK`0K>~;Υ-^85A5]JBϹuLRzΕ CsIB `fNww&8G"U c^s 5U]_nUb/64!{+ջC#u-;eUkn6%!3GԜ niv,n% DH %CpdW*͖(W^j8>'u7kq.h3DJ~X1[D!jzLhrd)غ`YE=3)$ok0bЏVyԶӥijlwH<)).ޔ3%I q o(TM^J2qPa,n1'\":1ƚpH cm}x=M̻, NF`%!&8#XlN *o(,nG᮴ fEyۤ̂MȟP}r%kf5(Hf;^eC2@J6Vc؂j@>ԾhN"uO>DwZZS 6qU1(\Q>D[Z † yXfr9Mnb-@s]Ώ-!= h 4f|r#j9NNDGC bf'"bKɦq=`?wo"|!M8U+THj`FS*~OmBDt.9zc%C1SUX='~U5yc5u|&X4/UK<%oˋ#w"y^F_uv 6]I{fg΄Yy@'᷂X7 1 ?jgνߚgB`A֋$m\,mSx@I̮nsXHh[ڞjPu9-^zyBRmx;Ӧ{2_`d J&;\U\oJHH/W`&$ڔ;Wζ]yZ[lB,1r'0S*xPN1J<(d$5V6^F6w?nY{U(&t~Wω/3OH8oꖐ!v]?cZ SkuzmM(YIӽ`3\ٻ-qd4,9ϪMygAwGܠU`I,DrĆ9b7]"u(1:%˅t׋k62c}dqӨ1]MSf-bg{$cr`=ހmYGBx SatRVfQp[y͋l'.g2FqkSۣ󗿗φ(}Ͳ"al]=_ Wkyc1Ü;t60`wÜD۾;մD-HU-JM-uxF\]cxZb* 44|qzM=5]WF Y`t׬XҘK?p8+#Tw'Fc{,)UdBձL;wsj=J_ >*br{~T5*g8C#Oa1Ԕd~8<<Ӎ@^p8G EHP$vڍW $֭;Ԩ ץL L!Lϟ^+eṗtgi Gv;?ȄsA) w XRqhUyϴf@qՓ0U@HL/8'|jPZ;٦J0F.DcmJ.>vJ2NY'D)?@(0T|Y+ѹx>ݔX0t20:<6Rj㡌?'D巧`^:)ޥHtV֑f!d4[I%Οk4 ;i‡FB@OQ]= k)XQ* rGsۓVieg!YPҸ,S>ih0sUrsO:BANdP#僥b}$l9JFEr]ΖK2kO|de2?/nUraֽ{S ȅuE6__,tRA7#8H,Q;,ZH="sM_ Xf`>ѷ?̨&1ϻRpIFwӛa՟3ȂS|nk.d{ch isƣz=->!QaN\ ib OInH&ޓãۉZv:k\muZF)e 3R#X񗳻Yg+,.X}jt@8H۔WN¨PFlabMfנ w`2$^.t V$ `#ilūc?ʳks|0d|F]| ,k:Bzk.JSҘlDw`zdط{qJ|l_brIdG-]:ϛ= y4yxNJ`K69QX*rC(eN>'=z2)b"=s)f_R?Z}5&4*c&ϰR04`ɵݓg|A8?,Cx 6) LKK1ce^y }e5CJFM.?ENKP9ϛdq/^pÂz}LZN'sv]U&Noj:(&⻋6U ۲.tE+oOFkȒɋ ;˻zD7@n ܝYj B̶TW-#JFdeT-"G~)p$wV+~xY6vZU"RDhaέ[Agù?Br k`ŗgɟ`鸶 T8>G#g$h;#) v6!e rΛpDi>[’s0 ;HwHo^+Ʊ(J 682R l (c%_S#Y8Z~HW7yHQZ-D"'elE1kXd˞6-?/"=~Frwj[꺔R̆ŸG阥9'$bGט#?dҭ: 쎉>$0hS+Zꌤ-_U 例ػn*j[ duuRDZZE.g=Ķ{sk`MFULuZ(Ć&'vcJyY~S|R] X`Uqޝh馴n b!q&pUi " ŗ{`=;+*\jP|}[zB`w@gY78U7._߈f/Flk⼺;1a=;K##wl}9 ^U"S!J5uu\TT.wAP~Ғsi$$ ݇wÿ-dDKN^Jbڗ<> ;ZaнK'ꊭ캔9EJgCK,΁p1^_BMy%>;50CXn SnʋH~t}4Ud^wڝXv%Ɲ*J6QӮ"݃:R;uDB5yrj'm<u,8c$S{tP^d弄a}J2l1+]ϟCb.2:I62w‡ [Mľ泩yh.L٬:| K7\ 5$SKB.oe(ˈPo ̼E.D?$ H9iMZDs6A_p00 h1aw̫=|6+ BzՔLiv2=il7I?#GGŧSr3܀+eXѨN@a;On&1Zd ףp= ףp= ףp=@P$ (k@C*焑 1_.@v:k #NJbxz&n2xW ?h@aQYȥo: ' x9?@ 6PNg"E@|oMp+ŝ L67(lV߄2\l: @<{ΗK H½Ԇ PvD1P?U%O]7иʡZ'ƫ@=JCư͜mo\{2~#],n0b/5 7 E=!4"&E֕C)A+pL{QF@_v <$+v؈ji SﶓzEz h髤8Հ֘ErAqfcPG+ڦGQlN@< $g_ePKmAD!zǕh"! j+R-9oːDvj%p SG6E"&'Oe,Bb֪"~:MB+ާew 3;L/눟UcզIx%kqk<'zE9NFV:q헬uCNR='1cKcL$_E^jt>69uD+SD]ȩdLq`J:1FU݈AckMXd-~<슠p`~QԟYFKpl2#kEk0SFۄF|cgedn_O~`?~OIwm83^U ,ӿ\c*O/ss~Mg(Q5FƸTၲe B‹&B|Z"_FiYWXixu37/-dRk}{x #]g2cPMEF6@ f;PzBΨ?]δߌG76l3o#٨A]DG l*tY C/h7ȇwyTØE)^Tjzm)4'R fX_E.]^]dB!sCupv~IrSyJIjiEhcۇ֒PֶB<]ҩEś[[E# 26hhwld#D& C2vja5IDӨŹ bl _7hzÇ6dZk"!",TIIk*l=]S5Ǭ唔o:B9#wxrinSv* %úJhь[ei]_fX~8y/az?w/JXUg].8σS*\*a{tZ߈=9tauqGѹ]V7z": Ub+ `M1k{W_vI ~Z}AsXzdұȏ%زnY_F޻َ_o;#TX H{%J ,jV(ڔQ+"yB]D(+EWASJt:5u-/\B .|]|ں5ai%94›i~C.²ϻ^g}DKaxº22si*bd(u{}x5˲>DRs\adj:z®kE[rE='WTc? iyӄbMh, Xhx{REa75 .Vp|BǼ @v`]5ГjR5VCMĸS!{ZJpz3zr֨Y\L.YOt dpsyob>ԅ+EV݊.7J6+>mŇ7̶ȠԱ " @YJ^MK ж%:0ܵdD.$~sީq\]V G_,>%tukPw(N//t,4xT%k$M@T¶ Уr)s$ČV<t-qeez|/~~1Vxe>"t*U5k\(3_':VFs7h*,WЅ-Ciu+-gjs)b);B_򘢏{IwqBv/?s!6p$ Sӌ#c]ɞ@J286H|Y{>Cځo (1&|r}cca/<Jo?0:5_(ϧz^KD[cрyfQ6^Ub2ü@4õjȧ+GٍP4cQOع^3VnO 5G/ bbLBX'a'ͽ}瘜x8,ݬ@!Vc GxP]tlX RzRC 7ϖT%`|$ Pi *.G~tґATW3LGQ.GR?嘡c#wXD^/gHv Ws?5;Qe,OK X^~aB.'9'zխcyt8DZJټ"xR7Ho· "ƣJy©"MPu8A3Qa_(ׁ3ӼM"sǥl"k9 4k"hu)/@fSo: ZI`h#`^K[8B,8,מrF㴒Fj¢lbwRŅ$s 8ۢ:gmO˸ɥDm@e(3tsD;ϕ?S.R_P C4>&wdM Ɩ04x^_Lb%xr =A}wߺnW[47>Yb '6r ;~"6 UWʏ O:!*rbO∩EuϬ;듈Il3f0rj;|*h hۘsC:ԑy!C?HI6.iYkO j 9NDyF㌄@iN !]e!oguDid>qK@$Zf`ffY Y f`fffEg ?gf@-gfhYfHYYYY`fff f`fff f`fxY@fxYPfYXdfOOxYfxYfxYf7O+gP9O"YxdfYdfYdfxYf9OxY fyOxYpfxYfxYfxYf-oO Oi_OyOxYfxYfO?O!YJMDi@JMEiJMFiIM@g\MPCgMFiYfYfYf ZXOOOOOaO1YdfYdfYefxYpfxYfYDixYfO O#uO xYfxYfxYfxY fxY0flOOO#O6O`M`Yf`Yf`Yf`Yf`Yf`Yf`Y fO|OĶOxO ̀O|OqO YfYfYfGi MGi MGiMGiMGiMGiMGiM@ff fGiMGi MGiMzfqf}fmfpp@gff@gCC fefif33Hef f""EjO u`fAOfO_zO g==gfHHg66`Hi M MYY`HiM@M`Hi M MY rO nO @YhO lO yOŊO4Li~O,LiyOdLifOKioO KiAOKiOHLiOKilO Ki׊OKi~OXLibOKioO KirO Li OLimzOLi-dO LirO 0LihO PLilO LirO LifO`Li{zODLi<`OTLihO LioO LilO LiOOUOaOcOfOf f`fff f`fff f`fff f`fff f`fff f`fff f`fff f`fff fcO `Ol_O`O(aO-aO2aO`O7aOnbOtbOzbOcOcOcODhO RlO bO%OkO:OnO oO *lO oO QrO gO ́OcO4OHO\OOڢOOOOyO]rO vO ~OtO4dOrO O#OhO zOvO ,OzO~OOlO aO OԓOObOrO hO zO~OOOO7OOOOOόOO O ,O řO ڙO O O zO O ^O άO O ܱO pO O .O FO _O~OO O!O!O",O#OO#O$CO%O&O&O'O(O(HO)O*O*lO(OɆOvO +O+OzOچOO vO vOOOOOOOO!OƪOO&O!O vO"FOGO!OмODO:OOQOiO iO %iO .iO 7iO @iO IiO RiO [iO diO miO viO iO iO iO iO iO iO iO iO iO iO iO iO iO iO iO jO jO jO !jO *jO 3jO OڥO}O&OOO/OOOɉOO EOOnO O=OnO OcyO}O9yOlOOՍOOqyOyOTO-rO OyOnO O 7O%OۉOO2OOO!OOOJOyOuO bOO*OyO|ODOuO :fOO9rO OOʅOuO zOTOіOOO}OuO OyOO#OoO :O%^OԲO[OO&rO$O{O/_O%O1bO+5OyO»OOOOqOO>OkOqOEO(OO}OOO#=O OWO9O'O#|O-O" OGOErO OOpOۅOOOO OOO}OOYOxO}O4OڭO lO OO%OcOyO`O^OAOeO^OOcO^OOxO OeO^OIOcOlO eOeO|O^qO cOiqO cOxO cO\OcO^OQuO gO^O¥OxO tqO gOxnO gOqO gŌOgO^O@OgO^O]uO gO^O-OgO^OxO gOdOxO oO|O`O|OiuO _O^OcO_OgO_O^OfOeO^O rO kO nO kO ^OnO nO ^OsOqO qO nO ^OeOnO ^OxO nO gOnO ^OkO nO ^OuuO nO ^OeOnO ^OuO nO ^O_zOeO^OqOeO^OOeO^OOU_O^OnO U_O^OOnO ^OOqO ^OnO qO ^O|OqO ^OTOqO OqO ^OOqO .note.go.buildid.note.gnu.build-id.text.rodata.gopclntab.typelink.itablink.go.buildinfo.go.fipsinfo.go.module.noptrdata.data.bss.noptrbss.shstrtabmodule.tag.id3v2.php000064400000456312152233444720010263 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// /// // // module.tag.id3v2.php // // module for analyzing ID3v2 tags // // dependencies: module.tag.id3v1.php // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.tag.id3v1.php', __FILE__, true); class getid3_id3v2 extends getid3_handler { public $StartingOffset = 0; /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; // Overall tag structure: // +-----------------------------+ // | Header (10 bytes) | // +-----------------------------+ // | Extended Header | // | (variable length, OPTIONAL) | // +-----------------------------+ // | Frames (variable length) | // +-----------------------------+ // | Padding | // | (variable length, OPTIONAL) | // +-----------------------------+ // | Footer (10 bytes, OPTIONAL) | // +-----------------------------+ // Header // ID3v2/file identifier "ID3" // ID3v2 version $04 00 // ID3v2 flags (%ab000000 in v2.2, %abc00000 in v2.3, %abcd0000 in v2.4.x) // ID3v2 size 4 * %0xxxxxxx // shortcuts $info['id3v2']['header'] = true; $thisfile_id3v2 = &$info['id3v2']; $thisfile_id3v2['flags'] = array(); $thisfile_id3v2_flags = &$thisfile_id3v2['flags']; $this->fseek($this->StartingOffset); $header = $this->fread(10); if (substr($header, 0, 3) == 'ID3' && strlen($header) == 10) { $thisfile_id3v2['majorversion'] = ord($header[3]); $thisfile_id3v2['minorversion'] = ord($header[4]); // shortcut $id3v2_majorversion = &$thisfile_id3v2['majorversion']; } else { unset($info['id3v2']); return false; } if ($id3v2_majorversion > 4) { // this script probably won't correctly parse ID3v2.5.x and above (if it ever exists) $this->error('this script only parses up to ID3v2.4.x - this tag is ID3v2.'.$id3v2_majorversion.'.'.$thisfile_id3v2['minorversion']); return false; } $id3_flags = ord($header[5]); switch ($id3v2_majorversion) { case 2: // %ab000000 in v2.2 $thisfile_id3v2_flags['unsynch'] = (bool) ($id3_flags & 0x80); // a - Unsynchronisation $thisfile_id3v2_flags['compression'] = (bool) ($id3_flags & 0x40); // b - Compression break; case 3: // %abc00000 in v2.3 $thisfile_id3v2_flags['unsynch'] = (bool) ($id3_flags & 0x80); // a - Unsynchronisation $thisfile_id3v2_flags['exthead'] = (bool) ($id3_flags & 0x40); // b - Extended header $thisfile_id3v2_flags['experim'] = (bool) ($id3_flags & 0x20); // c - Experimental indicator break; case 4: // %abcd0000 in v2.4 $thisfile_id3v2_flags['unsynch'] = (bool) ($id3_flags & 0x80); // a - Unsynchronisation $thisfile_id3v2_flags['exthead'] = (bool) ($id3_flags & 0x40); // b - Extended header $thisfile_id3v2_flags['experim'] = (bool) ($id3_flags & 0x20); // c - Experimental indicator $thisfile_id3v2_flags['isfooter'] = (bool) ($id3_flags & 0x10); // d - Footer present break; } $thisfile_id3v2['headerlength'] = getid3_lib::BigEndian2Int(substr($header, 6, 4), 1) + 10; // length of ID3v2 tag in 10-byte header doesn't include 10-byte header length $thisfile_id3v2['tag_offset_start'] = $this->StartingOffset; $thisfile_id3v2['tag_offset_end'] = $thisfile_id3v2['tag_offset_start'] + $thisfile_id3v2['headerlength']; // create 'encoding' key - used by getid3::HandleAllTags() // in ID3v2 every field can have it's own encoding type // so force everything to UTF-8 so it can be handled consistantly $thisfile_id3v2['encoding'] = 'UTF-8'; // Frames // All ID3v2 frames consists of one frame header followed by one or more // fields containing the actual information. The header is always 10 // bytes and laid out as follows: // // Frame ID $xx xx xx xx (four characters) // Size 4 * %0xxxxxxx // Flags $xx xx $sizeofframes = $thisfile_id3v2['headerlength'] - 10; // not including 10-byte initial header if (!empty($thisfile_id3v2['exthead']['length'])) { $sizeofframes -= ($thisfile_id3v2['exthead']['length'] + 4); } if (!empty($thisfile_id3v2_flags['isfooter'])) { $sizeofframes -= 10; // footer takes last 10 bytes of ID3v2 header, after frame data, before audio } if ($sizeofframes > 0) { $framedata = $this->fread($sizeofframes); // read all frames from file into $framedata variable // if entire frame data is unsynched, de-unsynch it now (ID3v2.3.x) if (!empty($thisfile_id3v2_flags['unsynch']) && ($id3v2_majorversion <= 3)) { $framedata = $this->DeUnsynchronise($framedata); } // [in ID3v2.4.0] Unsynchronisation [S:6.1] is done on frame level, instead // of on tag level, making it easier to skip frames, increasing the streamability // of the tag. The unsynchronisation flag in the header [S:3.1] indicates that // there exists an unsynchronised frame, while the new unsynchronisation flag in // the frame header [S:4.1.2] indicates unsynchronisation. //$framedataoffset = 10 + ($thisfile_id3v2['exthead']['length'] ? $thisfile_id3v2['exthead']['length'] + 4 : 0); // how many bytes into the stream - start from after the 10-byte header (and extended header length+4, if present) $framedataoffset = 10; // how many bytes into the stream - start from after the 10-byte header // Extended Header if (!empty($thisfile_id3v2_flags['exthead'])) { $extended_header_offset = 0; if ($id3v2_majorversion == 3) { // v2.3 definition: //Extended header size $xx xx xx xx // 32-bit integer //Extended Flags $xx xx // %x0000000 %00000000 // v2.3 // x - CRC data present //Size of padding $xx xx xx xx $thisfile_id3v2['exthead']['length'] = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 4), 0); $extended_header_offset += 4; $thisfile_id3v2['exthead']['flag_bytes'] = 2; $thisfile_id3v2['exthead']['flag_raw'] = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, $thisfile_id3v2['exthead']['flag_bytes'])); $extended_header_offset += $thisfile_id3v2['exthead']['flag_bytes']; $thisfile_id3v2['exthead']['flags']['crc'] = (bool) ($thisfile_id3v2['exthead']['flag_raw'] & 0x8000); $thisfile_id3v2['exthead']['padding_size'] = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 4)); $extended_header_offset += 4; if ($thisfile_id3v2['exthead']['flags']['crc']) { $thisfile_id3v2['exthead']['flag_data']['crc'] = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 4)); $extended_header_offset += 4; } $extended_header_offset += $thisfile_id3v2['exthead']['padding_size']; } elseif ($id3v2_majorversion == 4) { // v2.4 definition: //Extended header size 4 * %0xxxxxxx // 28-bit synchsafe integer //Number of flag bytes $01 //Extended Flags $xx // %0bcd0000 // v2.4 // b - Tag is an update // Flag data length $00 // c - CRC data present // Flag data length $05 // Total frame CRC 5 * %0xxxxxxx // d - Tag restrictions // Flag data length $01 $thisfile_id3v2['exthead']['length'] = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 4), true); $extended_header_offset += 4; $thisfile_id3v2['exthead']['flag_bytes'] = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 1)); // should always be 1 $extended_header_offset += 1; $thisfile_id3v2['exthead']['flag_raw'] = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, $thisfile_id3v2['exthead']['flag_bytes'])); $extended_header_offset += $thisfile_id3v2['exthead']['flag_bytes']; $thisfile_id3v2['exthead']['flags']['update'] = (bool) ($thisfile_id3v2['exthead']['flag_raw'] & 0x40); $thisfile_id3v2['exthead']['flags']['crc'] = (bool) ($thisfile_id3v2['exthead']['flag_raw'] & 0x20); $thisfile_id3v2['exthead']['flags']['restrictions'] = (bool) ($thisfile_id3v2['exthead']['flag_raw'] & 0x10); if ($thisfile_id3v2['exthead']['flags']['update']) { $ext_header_chunk_length = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 1)); // should be 0 $extended_header_offset += 1; } if ($thisfile_id3v2['exthead']['flags']['crc']) { $ext_header_chunk_length = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 1)); // should be 5 $extended_header_offset += 1; $thisfile_id3v2['exthead']['flag_data']['crc'] = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, $ext_header_chunk_length), true, false); $extended_header_offset += $ext_header_chunk_length; } if ($thisfile_id3v2['exthead']['flags']['restrictions']) { $ext_header_chunk_length = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 1)); // should be 1 $extended_header_offset += 1; // %ppqrrstt $restrictions_raw = getid3_lib::BigEndian2Int(substr($framedata, $extended_header_offset, 1)); $extended_header_offset += 1; $thisfile_id3v2['exthead']['flags']['restrictions']['tagsize'] = ($restrictions_raw & 0xC0) >> 6; // p - Tag size restrictions $thisfile_id3v2['exthead']['flags']['restrictions']['textenc'] = ($restrictions_raw & 0x20) >> 5; // q - Text encoding restrictions $thisfile_id3v2['exthead']['flags']['restrictions']['textsize'] = ($restrictions_raw & 0x18) >> 3; // r - Text fields size restrictions $thisfile_id3v2['exthead']['flags']['restrictions']['imgenc'] = ($restrictions_raw & 0x04) >> 2; // s - Image encoding restrictions $thisfile_id3v2['exthead']['flags']['restrictions']['imgsize'] = ($restrictions_raw & 0x03) >> 0; // t - Image size restrictions $thisfile_id3v2['exthead']['flags']['restrictions_text']['tagsize'] = $this->LookupExtendedHeaderRestrictionsTagSizeLimits($thisfile_id3v2['exthead']['flags']['restrictions']['tagsize']); $thisfile_id3v2['exthead']['flags']['restrictions_text']['textenc'] = $this->LookupExtendedHeaderRestrictionsTextEncodings($thisfile_id3v2['exthead']['flags']['restrictions']['textenc']); $thisfile_id3v2['exthead']['flags']['restrictions_text']['textsize'] = $this->LookupExtendedHeaderRestrictionsTextFieldSize($thisfile_id3v2['exthead']['flags']['restrictions']['textsize']); $thisfile_id3v2['exthead']['flags']['restrictions_text']['imgenc'] = $this->LookupExtendedHeaderRestrictionsImageEncoding($thisfile_id3v2['exthead']['flags']['restrictions']['imgenc']); $thisfile_id3v2['exthead']['flags']['restrictions_text']['imgsize'] = $this->LookupExtendedHeaderRestrictionsImageSizeSize($thisfile_id3v2['exthead']['flags']['restrictions']['imgsize']); } if ($thisfile_id3v2['exthead']['length'] != $extended_header_offset) { $this->warning('ID3v2.4 extended header length mismatch (expecting '.intval($thisfile_id3v2['exthead']['length']).', found '.intval($extended_header_offset).')'); } } $framedataoffset += $extended_header_offset; $framedata = substr($framedata, $extended_header_offset); } // end extended header while (isset($framedata) && (strlen($framedata) > 0)) { // cycle through until no more frame data is left to parse if (strlen($framedata) <= $this->ID3v2HeaderLength($id3v2_majorversion)) { // insufficient room left in ID3v2 header for actual data - must be padding $thisfile_id3v2['padding']['start'] = $framedataoffset; $thisfile_id3v2['padding']['length'] = strlen($framedata); $thisfile_id3v2['padding']['valid'] = true; for ($i = 0; $i < $thisfile_id3v2['padding']['length']; $i++) { if ($framedata[$i] != "\x00") { $thisfile_id3v2['padding']['valid'] = false; $thisfile_id3v2['padding']['errorpos'] = $thisfile_id3v2['padding']['start'] + $i; $this->warning('Invalid ID3v2 padding found at offset '.$thisfile_id3v2['padding']['errorpos'].' (the remaining '.($thisfile_id3v2['padding']['length'] - $i).' bytes are considered invalid)'); break; } } break; // skip rest of ID3v2 header } $frame_header = null; $frame_name = null; $frame_size = null; $frame_flags = null; if ($id3v2_majorversion == 2) { // Frame ID $xx xx xx (three characters) // Size $xx xx xx (24-bit integer) // Flags $xx xx $frame_header = substr($framedata, 0, 6); // take next 6 bytes for header $framedata = substr($framedata, 6); // and leave the rest in $framedata $frame_name = substr($frame_header, 0, 3); $frame_size = getid3_lib::BigEndian2Int(substr($frame_header, 3, 3), 0); $frame_flags = 0; // not used for anything in ID3v2.2, just set to avoid E_NOTICEs } elseif ($id3v2_majorversion > 2) { // Frame ID $xx xx xx xx (four characters) // Size $xx xx xx xx (32-bit integer in v2.3, 28-bit synchsafe in v2.4+) // Flags $xx xx $frame_header = substr($framedata, 0, 10); // take next 10 bytes for header $framedata = substr($framedata, 10); // and leave the rest in $framedata $frame_name = substr($frame_header, 0, 4); if ($id3v2_majorversion == 3) { $frame_size = getid3_lib::BigEndian2Int(substr($frame_header, 4, 4), 0); // 32-bit integer } else { // ID3v2.4+ $frame_size = getid3_lib::BigEndian2Int(substr($frame_header, 4, 4), 1); // 32-bit synchsafe integer (28-bit value) } if ($frame_size < (strlen($framedata) + 4)) { $nextFrameID = substr($framedata, $frame_size, 4); if ($this->IsValidID3v2FrameName($nextFrameID, $id3v2_majorversion)) { // next frame is OK } elseif (($frame_name == "\x00".'MP3') || ($frame_name == "\x00\x00".'MP') || ($frame_name == ' MP3') || ($frame_name == 'MP3e')) { // MP3ext known broken frames - "ok" for the purposes of this test } elseif (($id3v2_majorversion == 4) && ($this->IsValidID3v2FrameName(substr($framedata, getid3_lib::BigEndian2Int(substr($frame_header, 4, 4), 0), 4), 3))) { $this->warning('ID3v2 tag written as ID3v2.4, but with non-synchsafe integers (ID3v2.3 style). Older versions of (Helium2; iTunes) are known culprits of this. Tag has been parsed as ID3v2.3'); $id3v2_majorversion = 3; $frame_size = getid3_lib::BigEndian2Int(substr($frame_header, 4, 4), 0); // 32-bit integer } } $frame_flags = getid3_lib::BigEndian2Int(substr($frame_header, 8, 2)); } if ((($id3v2_majorversion == 2) && ($frame_name == "\x00\x00\x00")) || ($frame_name == "\x00\x00\x00\x00")) { // padding encountered $thisfile_id3v2['padding']['start'] = $framedataoffset; $thisfile_id3v2['padding']['length'] = strlen($frame_header) + strlen($framedata); $thisfile_id3v2['padding']['valid'] = true; $len = strlen($framedata); for ($i = 0; $i < $len; $i++) { if ($framedata[$i] != "\x00") { $thisfile_id3v2['padding']['valid'] = false; $thisfile_id3v2['padding']['errorpos'] = $thisfile_id3v2['padding']['start'] + $i; $this->warning('Invalid ID3v2 padding found at offset '.$thisfile_id3v2['padding']['errorpos'].' (the remaining '.($thisfile_id3v2['padding']['length'] - $i).' bytes are considered invalid)'); break; } } break; // skip rest of ID3v2 header } if ($iTunesBrokenFrameNameFixed = self::ID3v22iTunesBrokenFrameName($frame_name)) { $this->warning('error parsing "'.$frame_name.'" ('.$framedataoffset.' bytes into the ID3v2.'.$id3v2_majorversion.' tag). (ERROR: IsValidID3v2FrameName("'.str_replace("\x00", ' ', $frame_name).'", '.$id3v2_majorversion.'))). [Note: this particular error has been known to happen with tags edited by iTunes (versions "X v2.0.3", "v3.0.1", "v7.0.0.70" are known-guilty, probably others too)]. Translated frame name from "'.str_replace("\x00", ' ', $frame_name).'" to "'.$iTunesBrokenFrameNameFixed.'" for parsing.'); $frame_name = $iTunesBrokenFrameNameFixed; } if (($frame_size <= strlen($framedata)) && ($this->IsValidID3v2FrameName($frame_name, $id3v2_majorversion))) { $parsedFrame = array(); $parsedFrame['frame_name'] = $frame_name; $parsedFrame['frame_flags_raw'] = $frame_flags; $parsedFrame['data'] = substr($framedata, 0, $frame_size); $parsedFrame['datalength'] = getid3_lib::CastAsInt($frame_size); $parsedFrame['dataoffset'] = $framedataoffset; $this->ParseID3v2Frame($parsedFrame); $thisfile_id3v2[$frame_name][] = $parsedFrame; $framedata = substr($framedata, $frame_size); } else { // invalid frame length or FrameID if ($frame_size <= strlen($framedata)) { if ($this->IsValidID3v2FrameName(substr($framedata, $frame_size, 4), $id3v2_majorversion)) { // next frame is valid, just skip the current frame $framedata = substr($framedata, $frame_size); $this->warning('Next ID3v2 frame is valid, skipping current frame.'); } else { // next frame is invalid too, abort processing //unset($framedata); $framedata = null; $this->error('Next ID3v2 frame is also invalid, aborting processing.'); } } elseif ($frame_size == strlen($framedata)) { // this is the last frame, just skip $this->warning('This was the last ID3v2 frame.'); } else { // next frame is invalid too, abort processing //unset($framedata); $framedata = null; $this->warning('Invalid ID3v2 frame size, aborting.'); } if (!$this->IsValidID3v2FrameName($frame_name, $id3v2_majorversion)) { switch ($frame_name) { case "\x00\x00".'MP': case "\x00".'MP3': case ' MP3': case 'MP3e': case "\x00".'MP': case ' MP': case 'MP3': $this->warning('error parsing "'.$frame_name.'" ('.$framedataoffset.' bytes into the ID3v2.'.$id3v2_majorversion.' tag). (ERROR: !IsValidID3v2FrameName("'.str_replace("\x00", ' ', $frame_name).'", '.$id3v2_majorversion.'))). [Note: this particular error has been known to happen with tags edited by "MP3ext (www.mutschler.de/mp3ext/)"]'); break; default: $this->warning('error parsing "'.$frame_name.'" ('.$framedataoffset.' bytes into the ID3v2.'.$id3v2_majorversion.' tag). (ERROR: !IsValidID3v2FrameName("'.str_replace("\x00", ' ', $frame_name).'", '.$id3v2_majorversion.'))).'); break; } } elseif (!isset($framedata) || ($frame_size > strlen($framedata))) { $this->error('error parsing "'.$frame_name.'" ('.$framedataoffset.' bytes into the ID3v2.'.$id3v2_majorversion.' tag). (ERROR: $frame_size ('.$frame_size.') > strlen($framedata) ('.(isset($framedata) ? strlen($framedata) : 'null').')).'); } else { $this->error('error parsing "'.$frame_name.'" ('.$framedataoffset.' bytes into the ID3v2.'.$id3v2_majorversion.' tag).'); } } $framedataoffset += ($frame_size + $this->ID3v2HeaderLength($id3v2_majorversion)); } } // Footer // The footer is a copy of the header, but with a different identifier. // ID3v2 identifier "3DI" // ID3v2 version $04 00 // ID3v2 flags %abcd0000 // ID3v2 size 4 * %0xxxxxxx if (isset($thisfile_id3v2_flags['isfooter']) && $thisfile_id3v2_flags['isfooter']) { $footer = $this->fread(10); if (substr($footer, 0, 3) == '3DI') { $thisfile_id3v2['footer'] = true; $thisfile_id3v2['majorversion_footer'] = ord($footer[3]); $thisfile_id3v2['minorversion_footer'] = ord($footer[4]); } if ($thisfile_id3v2['majorversion_footer'] <= 4) { $id3_flags = ord($footer[5]); $thisfile_id3v2_flags['unsynch_footer'] = (bool) ($id3_flags & 0x80); $thisfile_id3v2_flags['extfoot_footer'] = (bool) ($id3_flags & 0x40); $thisfile_id3v2_flags['experim_footer'] = (bool) ($id3_flags & 0x20); $thisfile_id3v2_flags['isfooter_footer'] = (bool) ($id3_flags & 0x10); $thisfile_id3v2['footerlength'] = getid3_lib::BigEndian2Int(substr($footer, 6, 4), 1); } } // end footer if (isset($thisfile_id3v2['comments']['genre'])) { $genres = array(); foreach ($thisfile_id3v2['comments']['genre'] as $key => $value) { foreach ($this->ParseID3v2GenreString($value) as $genre) { $genres[] = $genre; } } $thisfile_id3v2['comments']['genre'] = array_unique($genres); unset($key, $value, $genres, $genre); } if (isset($thisfile_id3v2['comments']['track_number'])) { foreach ($thisfile_id3v2['comments']['track_number'] as $key => $value) { if (strstr($value, '/')) { list($thisfile_id3v2['comments']['track_number'][$key], $thisfile_id3v2['comments']['totaltracks'][$key]) = explode('/', $thisfile_id3v2['comments']['track_number'][$key]); } } } if (!isset($thisfile_id3v2['comments']['year']) && !empty($thisfile_id3v2['comments']['recording_time'][0]) && preg_match('#^([0-9]{4})#', trim($thisfile_id3v2['comments']['recording_time'][0]), $matches)) { $thisfile_id3v2['comments']['year'] = array($matches[1]); } if (!empty($thisfile_id3v2['TXXX'])) { // MediaMonkey does this, maybe others: write a blank RGAD frame, but put replay-gain adjustment values in TXXX frames foreach ($thisfile_id3v2['TXXX'] as $txxx_array) { switch ($txxx_array['description']) { case 'replaygain_track_gain': if (empty($info['replay_gain']['track']['adjustment']) && !empty($txxx_array['data'])) { $info['replay_gain']['track']['adjustment'] = floatval(trim(str_replace('dB', '', $txxx_array['data']))); } break; case 'replaygain_track_peak': if (empty($info['replay_gain']['track']['peak']) && !empty($txxx_array['data'])) { $info['replay_gain']['track']['peak'] = floatval($txxx_array['data']); } break; case 'replaygain_album_gain': if (empty($info['replay_gain']['album']['adjustment']) && !empty($txxx_array['data'])) { $info['replay_gain']['album']['adjustment'] = floatval(trim(str_replace('dB', '', $txxx_array['data']))); } break; } } } // Set avdataoffset $info['avdataoffset'] = $thisfile_id3v2['headerlength']; if (isset($thisfile_id3v2['footer'])) { $info['avdataoffset'] += 10; } return true; } /** * @param string $genrestring * * @return array */ public function ParseID3v2GenreString($genrestring) { // Parse genres into arrays of genreName and genreID // ID3v2.2.x, ID3v2.3.x: '(21)' or '(4)Eurodisco' or '(51)(39)' or '(55)((I think...)' // ID3v2.4.x: '21' $00 'Eurodisco' $00 $clean_genres = array(); // hack-fixes for some badly-written ID3v2.3 taggers, while trying not to break correctly-written tags if (($this->getid3->info['id3v2']['majorversion'] == 3) && !preg_match('#[\x00]#', $genrestring)) { // note: MusicBrainz Picard incorrectly stores plaintext genres separated by "/" when writing in ID3v2.3 mode, hack-fix here: // replace / with NULL, then replace back the two ID3v1 genres that legitimately have "/" as part of the single genre name if (strpos($genrestring, '/') !== false) { $LegitimateSlashedGenreList = array( // https://github.com/JamesHeinrich/getID3/issues/223 'Pop/Funk', // ID3v1 genre #62 - https://en.wikipedia.org/wiki/ID3#standard 'Cut-up/DJ', // Discogs - https://www.discogs.com/style/cut-up/dj 'RnB/Swing', // Discogs - https://www.discogs.com/style/rnb/swing 'Funk / Soul', // Discogs (note spaces) - https://www.discogs.com/genre/funk+%2F+soul ); $genrestring = str_replace('/', "\x00", $genrestring); foreach ($LegitimateSlashedGenreList as $SlashedGenre) { $genrestring = str_ireplace(str_replace('/', "\x00", $SlashedGenre), $SlashedGenre, $genrestring); } } // some other taggers separate multiple genres with semicolon, e.g. "Heavy Metal;Thrash Metal;Metal" if (strpos($genrestring, ';') !== false) { $genrestring = str_replace(';', "\x00", $genrestring); } } if (strpos($genrestring, "\x00") === false) { $genrestring = preg_replace('#\(([0-9]{1,3})\)#', '$1'."\x00", $genrestring); } $genre_elements = explode("\x00", $genrestring); foreach ($genre_elements as $element) { $element = trim($element); if ($element) { if (preg_match('#^[0-9]{1,3}$#', $element)) { $clean_genres[] = getid3_id3v1::LookupGenreName($element); } else { $clean_genres[] = str_replace('((', '(', $element); } } } return $clean_genres; } /** * @param array $parsedFrame * * @return bool */ public function ParseID3v2Frame(&$parsedFrame) { // shortcuts $info = &$this->getid3->info; $id3v2_majorversion = $info['id3v2']['majorversion']; $parsedFrame['framenamelong'] = $this->FrameNameLongLookup($parsedFrame['frame_name']); if (empty($parsedFrame['framenamelong'])) { unset($parsedFrame['framenamelong']); } $parsedFrame['framenameshort'] = $this->FrameNameShortLookup($parsedFrame['frame_name']); if (empty($parsedFrame['framenameshort'])) { unset($parsedFrame['framenameshort']); } if ($id3v2_majorversion >= 3) { // frame flags are not part of the ID3v2.2 standard if ($id3v2_majorversion == 3) { // Frame Header Flags // %abc00000 %ijk00000 $parsedFrame['flags']['TagAlterPreservation'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x8000); // a - Tag alter preservation $parsedFrame['flags']['FileAlterPreservation'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x4000); // b - File alter preservation $parsedFrame['flags']['ReadOnly'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x2000); // c - Read only $parsedFrame['flags']['compression'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x0080); // i - Compression $parsedFrame['flags']['Encryption'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x0040); // j - Encryption $parsedFrame['flags']['GroupingIdentity'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x0020); // k - Grouping identity } elseif ($id3v2_majorversion == 4) { // Frame Header Flags // %0abc0000 %0h00kmnp $parsedFrame['flags']['TagAlterPreservation'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x4000); // a - Tag alter preservation $parsedFrame['flags']['FileAlterPreservation'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x2000); // b - File alter preservation $parsedFrame['flags']['ReadOnly'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x1000); // c - Read only $parsedFrame['flags']['GroupingIdentity'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x0040); // h - Grouping identity $parsedFrame['flags']['compression'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x0008); // k - Compression $parsedFrame['flags']['Encryption'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x0004); // m - Encryption $parsedFrame['flags']['Unsynchronisation'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x0002); // n - Unsynchronisation $parsedFrame['flags']['DataLengthIndicator'] = (bool) ($parsedFrame['frame_flags_raw'] & 0x0001); // p - Data length indicator // Frame-level de-unsynchronisation - ID3v2.4 if ($parsedFrame['flags']['Unsynchronisation']) { $parsedFrame['data'] = $this->DeUnsynchronise($parsedFrame['data']); } if ($parsedFrame['flags']['DataLengthIndicator']) { $parsedFrame['data_length_indicator'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], 0, 4), 1); $parsedFrame['data'] = substr($parsedFrame['data'], 4); } } // Frame-level de-compression if ($parsedFrame['flags']['compression']) { $parsedFrame['decompressed_size'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], 0, 4)); if (!function_exists('gzuncompress')) { $this->warning('gzuncompress() support required to decompress ID3v2 frame "'.$parsedFrame['frame_name'].'"'); } else { if ($decompresseddata = @gzuncompress(substr($parsedFrame['data'], 4))) { //if ($decompresseddata = @gzuncompress($parsedFrame['data'])) { $parsedFrame['data'] = $decompresseddata; unset($decompresseddata); } else { $this->warning('gzuncompress() failed on compressed contents of ID3v2 frame "'.$parsedFrame['frame_name'].'"'); } } } } if (!empty($parsedFrame['flags']['DataLengthIndicator'])) { if ($parsedFrame['data_length_indicator'] != strlen($parsedFrame['data'])) { $this->warning('ID3v2 frame "'.$parsedFrame['frame_name'].'" should be '.$parsedFrame['data_length_indicator'].' bytes long according to DataLengthIndicator, but found '.strlen($parsedFrame['data']).' bytes of data'); } } if (isset($parsedFrame['datalength']) && ($parsedFrame['datalength'] == 0)) { $warning = 'Frame "'.$parsedFrame['frame_name'].'" at offset '.$parsedFrame['dataoffset'].' has no data portion'; switch ($parsedFrame['frame_name']) { case 'WCOM': $warning .= ' (this is known to happen with files tagged by RioPort)'; break; default: break; } $this->warning($warning); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'UFID')) || // 4.1 UFID Unique file identifier (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'UFI'))) { // 4.1 UFI Unique file identifier // There may be more than one 'UFID' frame in a tag, // but only one with the same 'Owner identifier'. //
// Owner identifier $00 // Identifier $exploded = explode("\x00", $parsedFrame['data'], 2); $parsedFrame['ownerid'] = $exploded[0]; $parsedFrame['data'] = (isset($exploded[1]) ? $exploded[1] : ''); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'TXXX')) || // 4.2.2 TXXX User defined text information frame (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'TXX'))) { // 4.2.2 TXX User defined text information frame // There may be more than one 'TXXX' frame in each tag, // but only one with the same description. //
// Text encoding $xx // Description $00 (00) // Value $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_textencoding_terminator = $this->TextEncodingTerminatorLookup($frame_textencoding); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); $frame_textencoding_terminator = "\x00"; } $frame_terminatorpos = strpos($parsedFrame['data'], $frame_textencoding_terminator, $frame_offset); if (substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator), 1) === "\x00") { $frame_terminatorpos++; // strpos() fooled because 2nd byte of Unicode chars are often 0x00 } $parsedFrame['description'] = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $parsedFrame['description'] = $this->MakeUTF16emptyStringEmpty($parsedFrame['description']); $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); $parsedFrame['description'] = trim(getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $parsedFrame['description'])); $parsedFrame['data'] = substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator)); $parsedFrame['data'] = $this->RemoveStringTerminator($parsedFrame['data'], $frame_textencoding_terminator); if (!empty($parsedFrame['framenameshort']) && !empty($parsedFrame['data'])) { $commentkey = ($parsedFrame['description'] ? $parsedFrame['description'] : (isset($info['id3v2']['comments'][$parsedFrame['framenameshort']]) ? count($info['id3v2']['comments'][$parsedFrame['framenameshort']]) : 0)); if (!isset($info['id3v2']['comments'][$parsedFrame['framenameshort']]) || !array_key_exists($commentkey, $info['id3v2']['comments'][$parsedFrame['framenameshort']])) { $info['id3v2']['comments'][$parsedFrame['framenameshort']][$commentkey] = trim(getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $parsedFrame['data'])); } else { $info['id3v2']['comments'][$parsedFrame['framenameshort']][] = trim(getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $parsedFrame['data'])); } } //unset($parsedFrame['data']); do not unset, may be needed elsewhere, e.g. for replaygain } elseif ($parsedFrame['frame_name'][0] == 'T') { // 4.2. T??[?] Text information frame // There may only be one text information frame of its kind in an tag. //
// Text encoding $xx // Information $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); } $parsedFrame['data'] = (string) substr($parsedFrame['data'], $frame_offset); $parsedFrame['data'] = $this->RemoveStringTerminator($parsedFrame['data'], $this->TextEncodingTerminatorLookup($frame_textencoding)); $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); if (!empty($parsedFrame['framenameshort']) && !empty($parsedFrame['data'])) { // ID3v2.3 specs say that TPE1 (and others) can contain multiple artist values separated with / // This of course breaks when an artist name contains slash character, e.g. "AC/DC" // MP3tag (maybe others) implement alternative system where multiple artists are null-separated, which makes more sense // getID3 will split null-separated artists into multiple artists and leave slash-separated ones to the user switch ($parsedFrame['encoding']) { case 'UTF-16': case 'UTF-16BE': case 'UTF-16LE': $wordsize = 2; break; case 'ISO-8859-1': case 'UTF-8': default: $wordsize = 1; break; } $Txxx_elements = array(); $Txxx_elements_start_offset = 0; for ($i = 0; $i < strlen($parsedFrame['data']); $i += $wordsize) { if (substr($parsedFrame['data'], $i, $wordsize) == str_repeat("\x00", $wordsize)) { $Txxx_elements[] = substr($parsedFrame['data'], $Txxx_elements_start_offset, $i - $Txxx_elements_start_offset); $Txxx_elements_start_offset = $i + $wordsize; } } $Txxx_elements[] = substr($parsedFrame['data'], $Txxx_elements_start_offset, $i - $Txxx_elements_start_offset); foreach ($Txxx_elements as $Txxx_element) { $string = getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $Txxx_element); if (!empty($string)) { $info['id3v2']['comments'][$parsedFrame['framenameshort']][] = $string; } } unset($string, $wordsize, $i, $Txxx_elements, $Txxx_element, $Txxx_elements_start_offset); } } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'WXXX')) || // 4.3.2 WXXX User defined URL link frame (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'WXX'))) { // 4.3.2 WXX User defined URL link frame // There may be more than one 'WXXX' frame in each tag, // but only one with the same description //
// Text encoding $xx // Description $00 (00) // URL $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_textencoding_terminator = $this->TextEncodingTerminatorLookup($frame_textencoding); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); $frame_textencoding_terminator = "\x00"; } $frame_terminatorpos = strpos($parsedFrame['data'], $frame_textencoding_terminator, $frame_offset); if (substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator), 1) === "\x00") { $frame_terminatorpos++; // strpos() fooled because 2nd byte of Unicode chars are often 0x00 } $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); $parsedFrame['description'] = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); // according to the frame text encoding $parsedFrame['url'] = substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator)); // always ISO-8859-1 $parsedFrame['description'] = $this->RemoveStringTerminator($parsedFrame['description'], $frame_textencoding_terminator); $parsedFrame['description'] = $this->MakeUTF16emptyStringEmpty($parsedFrame['description']); if (!empty($parsedFrame['framenameshort']) && $parsedFrame['url']) { $info['id3v2']['comments'][$parsedFrame['framenameshort']][] = getid3_lib::iconv_fallback('ISO-8859-1', $info['id3v2']['encoding'], $parsedFrame['url']); } unset($parsedFrame['data']); } elseif ($parsedFrame['frame_name'][0] == 'W') { // 4.3. W??? URL link frames // There may only be one URL link frame of its kind in a tag, // except when stated otherwise in the frame description //
// URL $parsedFrame['url'] = trim($parsedFrame['data']); // always ISO-8859-1 if (!empty($parsedFrame['framenameshort']) && $parsedFrame['url']) { $info['id3v2']['comments'][$parsedFrame['framenameshort']][] = getid3_lib::iconv_fallback('ISO-8859-1', $info['id3v2']['encoding'], $parsedFrame['url']); } unset($parsedFrame['data']); } elseif ((($id3v2_majorversion == 3) && ($parsedFrame['frame_name'] == 'IPLS')) || // 4.4 IPLS Involved people list (ID3v2.3 only) (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'IPL'))) { // 4.4 IPL Involved people list (ID3v2.2 only) // http://id3.org/id3v2.3.0#sec4.4 // There may only be one 'IPL' frame in each tag //
// Text encoding $xx // People list strings $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); } $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($parsedFrame['encodingid']); $parsedFrame['data_raw'] = (string) substr($parsedFrame['data'], $frame_offset); // https://www.getid3.org/phpBB3/viewtopic.php?t=1369 // "this tag typically contains null terminated strings, which are associated in pairs" // "there are users that use the tag incorrectly" $IPLS_parts = array(); if (strpos($parsedFrame['data_raw'], "\x00") !== false) { $IPLS_parts_unsorted = array(); if (((strlen($parsedFrame['data_raw']) % 2) == 0) && ((substr($parsedFrame['data_raw'], 0, 2) == "\xFF\xFE") || (substr($parsedFrame['data_raw'], 0, 2) == "\xFE\xFF"))) { // UTF-16, be careful looking for null bytes since most 2-byte characters may contain one; you need to find twin null bytes, and on even padding $thisILPS = ''; for ($i = 0; $i < strlen($parsedFrame['data_raw']); $i += 2) { $twobytes = substr($parsedFrame['data_raw'], $i, 2); if ($twobytes === "\x00\x00") { $IPLS_parts_unsorted[] = getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $thisILPS); $thisILPS = ''; } else { $thisILPS .= $twobytes; } } if (strlen($thisILPS) > 2) { // 2-byte BOM $IPLS_parts_unsorted[] = getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $thisILPS); } } else { // ISO-8859-1 or UTF-8 or other single-byte-null character set $IPLS_parts_unsorted = explode("\x00", $parsedFrame['data_raw']); } if (count($IPLS_parts_unsorted) == 1) { // just a list of names, e.g. "Dino Baptiste, Jimmy Copley, John Gordon, Bernie Marsden, Sharon Watson" foreach ($IPLS_parts_unsorted as $key => $value) { $IPLS_parts_sorted = preg_split('#[;,\\r\\n\\t]#', $value); $position = ''; foreach ($IPLS_parts_sorted as $person) { $IPLS_parts[] = array('position'=>$position, 'person'=>$person); } } } elseif ((count($IPLS_parts_unsorted) % 2) == 0) { $position = ''; $person = ''; foreach ($IPLS_parts_unsorted as $key => $value) { if (($key % 2) == 0) { $position = $value; } else { $person = $value; $IPLS_parts[] = array('position'=>$position, 'person'=>$person); $position = ''; $person = ''; } } } else { foreach ($IPLS_parts_unsorted as $key => $value) { $IPLS_parts[] = array($value); } } } else { $IPLS_parts = preg_split('#[;,\\r\\n\\t]#', $parsedFrame['data_raw']); } $parsedFrame['data'] = $IPLS_parts; if (!empty($parsedFrame['framenameshort']) && !empty($parsedFrame['data'])) { $info['id3v2']['comments'][$parsedFrame['framenameshort']][] = $parsedFrame['data']; } } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'MCDI')) || // 4.4 MCDI Music CD identifier (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'MCI'))) { // 4.5 MCI Music CD identifier // There may only be one 'MCDI' frame in each tag //
// CD TOC if (!empty($parsedFrame['framenameshort']) && !empty($parsedFrame['data'])) { $info['id3v2']['comments'][$parsedFrame['framenameshort']][] = $parsedFrame['data']; } } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'ETCO')) || // 4.5 ETCO Event timing codes (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'ETC'))) { // 4.6 ETC Event timing codes // There may only be one 'ETCO' frame in each tag //
// Time stamp format $xx // Where time stamp format is: // $01 (32-bit value) MPEG frames from beginning of file // $02 (32-bit value) milliseconds from beginning of file // Followed by a list of key events in the following format: // Type of event $xx // Time stamp $xx (xx ...) // The 'Time stamp' is set to zero if directly at the beginning of the sound // or after the previous event. All events MUST be sorted in chronological order. $frame_offset = 0; $parsedFrame['timestampformat'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); while ($frame_offset < strlen($parsedFrame['data'])) { $parsedFrame['typeid'] = substr($parsedFrame['data'], $frame_offset++, 1); $parsedFrame['type'] = $this->ETCOEventLookup($parsedFrame['typeid']); $parsedFrame['timestamp'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); $frame_offset += 4; } unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'MLLT')) || // 4.6 MLLT MPEG location lookup table (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'MLL'))) { // 4.7 MLL MPEG location lookup table // There may only be one 'MLLT' frame in each tag //
// MPEG frames between reference $xx xx // Bytes between reference $xx xx xx // Milliseconds between reference $xx xx xx // Bits for bytes deviation $xx // Bits for milliseconds dev. $xx // Then for every reference the following data is included; // Deviation in bytes %xxx.... // Deviation in milliseconds %xxx.... $frame_offset = 0; $parsedFrame['framesbetweenreferences'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], 0, 2)); $parsedFrame['bytesbetweenreferences'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], 2, 3)); $parsedFrame['msbetweenreferences'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], 5, 3)); $parsedFrame['bitsforbytesdeviation'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], 8, 1)); $parsedFrame['bitsformsdeviation'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], 9, 1)); $parsedFrame['data'] = substr($parsedFrame['data'], 10); $deviationbitstream = ''; while ($frame_offset < strlen($parsedFrame['data'])) { $deviationbitstream .= getid3_lib::BigEndian2Bin(substr($parsedFrame['data'], $frame_offset++, 1)); } $reference_counter = 0; while (strlen($deviationbitstream) > 0) { $parsedFrame[$reference_counter]['bytedeviation'] = bindec(substr($deviationbitstream, 0, $parsedFrame['bitsforbytesdeviation'])); $parsedFrame[$reference_counter]['msdeviation'] = bindec(substr($deviationbitstream, $parsedFrame['bitsforbytesdeviation'], $parsedFrame['bitsformsdeviation'])); $deviationbitstream = substr($deviationbitstream, $parsedFrame['bitsforbytesdeviation'] + $parsedFrame['bitsformsdeviation']); $reference_counter++; } unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'SYTC')) || // 4.7 SYTC Synchronised tempo codes (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'STC'))) { // 4.8 STC Synchronised tempo codes // There may only be one 'SYTC' frame in each tag //
// Time stamp format $xx // Tempo data // Where time stamp format is: // $01 (32-bit value) MPEG frames from beginning of file // $02 (32-bit value) milliseconds from beginning of file $frame_offset = 0; $parsedFrame['timestampformat'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $timestamp_counter = 0; while ($frame_offset < strlen($parsedFrame['data'])) { $parsedFrame[$timestamp_counter]['tempo'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); if ($parsedFrame[$timestamp_counter]['tempo'] == 255) { $parsedFrame[$timestamp_counter]['tempo'] += ord(substr($parsedFrame['data'], $frame_offset++, 1)); } $parsedFrame[$timestamp_counter]['timestamp'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); $frame_offset += 4; $timestamp_counter++; } unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'USLT')) || // 4.8 USLT Unsynchronised lyric/text transcription (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'ULT'))) { // 4.9 ULT Unsynchronised lyric/text transcription // There may be more than one 'Unsynchronised lyrics/text transcription' frame // in each tag, but only one with the same language and content descriptor. //
// Text encoding $xx // Language $xx xx xx // Content descriptor $00 (00) // Lyrics/text $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_textencoding_terminator = $this->TextEncodingTerminatorLookup($frame_textencoding); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); $frame_textencoding_terminator = "\x00"; } if (strlen($parsedFrame['data']) >= (4 + strlen($frame_textencoding_terminator))) { // shouldn't be an issue but badly-written files have been spotted in the wild with not only no contents but also missing the required language field, see https://github.com/JamesHeinrich/getID3/issues/315 $frame_language = substr($parsedFrame['data'], $frame_offset, 3); $frame_offset += 3; $frame_terminatorpos = strpos($parsedFrame['data'], $frame_textencoding_terminator, $frame_offset); if (substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator), 1) === "\x00") { $frame_terminatorpos++; // strpos() fooled because 2nd byte of Unicode chars are often 0x00 } $parsedFrame['description'] = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $parsedFrame['description'] = $this->MakeUTF16emptyStringEmpty($parsedFrame['description']); $parsedFrame['data'] = substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator)); $parsedFrame['data'] = $this->RemoveStringTerminator($parsedFrame['data'], $frame_textencoding_terminator); $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); $parsedFrame['language'] = $frame_language; $parsedFrame['languagename'] = $this->LanguageLookup($frame_language, false); if (!empty($parsedFrame['framenameshort']) && !empty($parsedFrame['data'])) { $info['id3v2']['comments'][$parsedFrame['framenameshort']][] = getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $parsedFrame['data']); } } else { $this->warning('Invalid data in frame "'.$parsedFrame['frame_name'].'" at offset '.$parsedFrame['dataoffset']); } unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'SYLT')) || // 4.9 SYLT Synchronised lyric/text (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'SLT'))) { // 4.10 SLT Synchronised lyric/text // There may be more than one 'SYLT' frame in each tag, // but only one with the same language and content descriptor. //
// Text encoding $xx // Language $xx xx xx // Time stamp format $xx // $01 (32-bit value) MPEG frames from beginning of file // $02 (32-bit value) milliseconds from beginning of file // Content type $xx // Content descriptor $00 (00) // Terminated text to be synced (typically a syllable) // Sync identifier (terminator to above string) $00 (00) // Time stamp $xx (xx ...) $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_textencoding_terminator = $this->TextEncodingTerminatorLookup($frame_textencoding); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); $frame_textencoding_terminator = "\x00"; } $frame_language = substr($parsedFrame['data'], $frame_offset, 3); $frame_offset += 3; $parsedFrame['timestampformat'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['contenttypeid'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['contenttype'] = $this->SYTLContentTypeLookup($parsedFrame['contenttypeid']); $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); $parsedFrame['language'] = $frame_language; $parsedFrame['languagename'] = $this->LanguageLookup($frame_language, false); $timestampindex = 0; $frame_remainingdata = substr($parsedFrame['data'], $frame_offset); while (strlen($frame_remainingdata)) { $frame_offset = 0; $frame_terminatorpos = strpos($frame_remainingdata, $frame_textencoding_terminator); if ($frame_terminatorpos === false) { $frame_remainingdata = ''; } else { if (substr($frame_remainingdata, $frame_terminatorpos + strlen($frame_textencoding_terminator), 1) === "\x00") { $frame_terminatorpos++; // strpos() fooled because 2nd byte of Unicode chars are often 0x00 } $parsedFrame['lyrics'][$timestampindex]['data'] = substr($frame_remainingdata, $frame_offset, $frame_terminatorpos - $frame_offset); $frame_remainingdata = substr($frame_remainingdata, $frame_terminatorpos + strlen($frame_textencoding_terminator)); if (strlen($frame_remainingdata)) { // https://github.com/JamesHeinrich/getID3/issues/444 if (($timestampindex == 0) && (ord($frame_remainingdata[0]) != 0)) { // timestamp probably omitted for first data item } else { $parsedFrame['lyrics'][$timestampindex]['timestamp'] = getid3_lib::BigEndian2Int(substr($frame_remainingdata, 0, 4)); $frame_remainingdata = substr($frame_remainingdata, 4); } $timestampindex++; } } } unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'COMM')) || // 4.10 COMM Comments (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'COM'))) { // 4.11 COM Comments // There may be more than one comment frame in each tag, // but only one with the same language and content descriptor. //
// Text encoding $xx // Language $xx xx xx // Short content descrip. $00 (00) // The actual text if (strlen($parsedFrame['data']) < 5) { $this->warning('Invalid data (too short) for "'.$parsedFrame['frame_name'].'" frame at offset '.$parsedFrame['dataoffset']); } else { $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_textencoding_terminator = $this->TextEncodingTerminatorLookup($frame_textencoding); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); $frame_textencoding_terminator = "\x00"; } $frame_language = substr($parsedFrame['data'], $frame_offset, 3); $frame_offset += 3; $frame_terminatorpos = strpos($parsedFrame['data'], $frame_textencoding_terminator, $frame_offset); if (substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator), 1) === "\x00") { $frame_terminatorpos++; // strpos() fooled because 2nd byte of Unicode chars are often 0x00 } $parsedFrame['description'] = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $parsedFrame['description'] = $this->MakeUTF16emptyStringEmpty($parsedFrame['description']); $frame_text = (string) substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator)); $frame_text = $this->RemoveStringTerminator($frame_text, $frame_textencoding_terminator); $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); $parsedFrame['language'] = $frame_language; $parsedFrame['languagename'] = $this->LanguageLookup($frame_language, false); $parsedFrame['data'] = $frame_text; if (!empty($parsedFrame['framenameshort']) && !empty($parsedFrame['data'])) { $commentkey = ($parsedFrame['description'] ? $parsedFrame['description'] : (!empty($info['id3v2']['comments'][$parsedFrame['framenameshort']]) ? count($info['id3v2']['comments'][$parsedFrame['framenameshort']]) : 0)); if (!isset($info['id3v2']['comments'][$parsedFrame['framenameshort']]) || !array_key_exists($commentkey, $info['id3v2']['comments'][$parsedFrame['framenameshort']])) { $info['id3v2']['comments'][$parsedFrame['framenameshort']][$commentkey] = getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $parsedFrame['data']); } else { $info['id3v2']['comments'][$parsedFrame['framenameshort']][] = getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $parsedFrame['data']); } } } } elseif (($id3v2_majorversion >= 4) && ($parsedFrame['frame_name'] == 'RVA2')) { // 4.11 RVA2 Relative volume adjustment (2) (ID3v2.4+ only) // There may be more than one 'RVA2' frame in each tag, // but only one with the same identification string //
// Identification $00 // The 'identification' string is used to identify the situation and/or // device where this adjustment should apply. The following is then // repeated for every channel: // Type of channel $xx // Volume adjustment $xx xx // Bits representing peak $xx // Peak volume $xx (xx ...) $frame_terminatorpos = strpos($parsedFrame['data'], "\x00"); $frame_idstring = substr($parsedFrame['data'], 0, $frame_terminatorpos); if ($frame_idstring === "\x00") { $frame_idstring = ''; } $frame_remainingdata = substr($parsedFrame['data'], $frame_terminatorpos + strlen("\x00")); $parsedFrame['description'] = $frame_idstring; $RVA2channelcounter = 0; while (strlen($frame_remainingdata) >= 5) { $frame_offset = 0; $frame_channeltypeid = ord(substr($frame_remainingdata, $frame_offset++, 1)); $parsedFrame[$RVA2channelcounter]['channeltypeid'] = $frame_channeltypeid; $parsedFrame[$RVA2channelcounter]['channeltype'] = $this->RVA2ChannelTypeLookup($frame_channeltypeid); $parsedFrame[$RVA2channelcounter]['volumeadjust'] = getid3_lib::BigEndian2Int(substr($frame_remainingdata, $frame_offset, 2), false, true); // 16-bit signed $frame_offset += 2; $parsedFrame[$RVA2channelcounter]['bitspeakvolume'] = ord(substr($frame_remainingdata, $frame_offset++, 1)); if (($parsedFrame[$RVA2channelcounter]['bitspeakvolume'] < 1) || ($parsedFrame[$RVA2channelcounter]['bitspeakvolume'] > 4)) { $this->warning('ID3v2::RVA2 frame['.$RVA2channelcounter.'] contains invalid '.$parsedFrame[$RVA2channelcounter]['bitspeakvolume'].'-byte bits-representing-peak value'); break; } $frame_bytespeakvolume = ceil($parsedFrame[$RVA2channelcounter]['bitspeakvolume'] / 8); $parsedFrame[$RVA2channelcounter]['peakvolume'] = getid3_lib::BigEndian2Int(substr($frame_remainingdata, $frame_offset, $frame_bytespeakvolume)); $frame_remainingdata = substr($frame_remainingdata, $frame_offset + $frame_bytespeakvolume); $RVA2channelcounter++; } unset($parsedFrame['data']); } elseif ((($id3v2_majorversion == 3) && ($parsedFrame['frame_name'] == 'RVAD')) || // 4.12 RVAD Relative volume adjustment (ID3v2.3 only) (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'RVA'))) { // 4.12 RVA Relative volume adjustment (ID3v2.2 only) // There may only be one 'RVA' frame in each tag //
// ID3v2.2 => Increment/decrement %000000ba // ID3v2.3 => Increment/decrement %00fedcba // Bits used for volume descr. $xx // Relative volume change, right $xx xx (xx ...) // a // Relative volume change, left $xx xx (xx ...) // b // Peak volume right $xx xx (xx ...) // Peak volume left $xx xx (xx ...) // ID3v2.3 only, optional (not present in ID3v2.2): // Relative volume change, right back $xx xx (xx ...) // c // Relative volume change, left back $xx xx (xx ...) // d // Peak volume right back $xx xx (xx ...) // Peak volume left back $xx xx (xx ...) // ID3v2.3 only, optional (not present in ID3v2.2): // Relative volume change, center $xx xx (xx ...) // e // Peak volume center $xx xx (xx ...) // ID3v2.3 only, optional (not present in ID3v2.2): // Relative volume change, bass $xx xx (xx ...) // f // Peak volume bass $xx xx (xx ...) $frame_offset = 0; $frame_incrdecrflags = getid3_lib::BigEndian2Bin(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['incdec']['right'] = (bool) substr($frame_incrdecrflags, 6, 1); $parsedFrame['incdec']['left'] = (bool) substr($frame_incrdecrflags, 7, 1); $parsedFrame['bitsvolume'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_bytesvolume = ceil($parsedFrame['bitsvolume'] / 8); $parsedFrame['volumechange']['right'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); if ($parsedFrame['incdec']['right'] === false) { $parsedFrame['volumechange']['right'] *= -1; } $frame_offset += $frame_bytesvolume; $parsedFrame['volumechange']['left'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); if ($parsedFrame['incdec']['left'] === false) { $parsedFrame['volumechange']['left'] *= -1; } $frame_offset += $frame_bytesvolume; $parsedFrame['peakvolume']['right'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); $frame_offset += $frame_bytesvolume; $parsedFrame['peakvolume']['left'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); $frame_offset += $frame_bytesvolume; if ($id3v2_majorversion == 3) { $parsedFrame['data'] = substr($parsedFrame['data'], $frame_offset); if (strlen($parsedFrame['data']) > 0) { $parsedFrame['incdec']['rightrear'] = (bool) substr($frame_incrdecrflags, 4, 1); $parsedFrame['incdec']['leftrear'] = (bool) substr($frame_incrdecrflags, 5, 1); $parsedFrame['volumechange']['rightrear'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); if ($parsedFrame['incdec']['rightrear'] === false) { $parsedFrame['volumechange']['rightrear'] *= -1; } $frame_offset += $frame_bytesvolume; $parsedFrame['volumechange']['leftrear'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); if ($parsedFrame['incdec']['leftrear'] === false) { $parsedFrame['volumechange']['leftrear'] *= -1; } $frame_offset += $frame_bytesvolume; $parsedFrame['peakvolume']['rightrear'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); $frame_offset += $frame_bytesvolume; $parsedFrame['peakvolume']['leftrear'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); $frame_offset += $frame_bytesvolume; } $parsedFrame['data'] = substr($parsedFrame['data'], $frame_offset); if (strlen($parsedFrame['data']) > 0) { $parsedFrame['incdec']['center'] = (bool) substr($frame_incrdecrflags, 3, 1); $parsedFrame['volumechange']['center'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); if ($parsedFrame['incdec']['center'] === false) { $parsedFrame['volumechange']['center'] *= -1; } $frame_offset += $frame_bytesvolume; $parsedFrame['peakvolume']['center'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); $frame_offset += $frame_bytesvolume; } $parsedFrame['data'] = substr($parsedFrame['data'], $frame_offset); if (strlen($parsedFrame['data']) > 0) { $parsedFrame['incdec']['bass'] = (bool) substr($frame_incrdecrflags, 2, 1); $parsedFrame['volumechange']['bass'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); if ($parsedFrame['incdec']['bass'] === false) { $parsedFrame['volumechange']['bass'] *= -1; } $frame_offset += $frame_bytesvolume; $parsedFrame['peakvolume']['bass'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesvolume)); $frame_offset += $frame_bytesvolume; } } unset($parsedFrame['data']); } elseif (($id3v2_majorversion >= 4) && ($parsedFrame['frame_name'] == 'EQU2')) { // 4.12 EQU2 Equalisation (2) (ID3v2.4+ only) // There may be more than one 'EQU2' frame in each tag, // but only one with the same identification string //
// Interpolation method $xx // $00 Band // $01 Linear // Identification $00 // The following is then repeated for every adjustment point // Frequency $xx xx // Volume adjustment $xx xx $frame_offset = 0; $frame_interpolationmethod = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_idstring = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_idstring === "\x00") { $frame_idstring = ''; } $parsedFrame['description'] = $frame_idstring; $frame_remainingdata = substr($parsedFrame['data'], $frame_terminatorpos + strlen("\x00")); while (strlen($frame_remainingdata)) { $frame_frequency = getid3_lib::BigEndian2Int(substr($frame_remainingdata, 0, 2)) / 2; $parsedFrame['data'][$frame_frequency] = getid3_lib::BigEndian2Int(substr($frame_remainingdata, 2, 2), false, true); $frame_remainingdata = substr($frame_remainingdata, 4); } $parsedFrame['interpolationmethod'] = $frame_interpolationmethod; unset($parsedFrame['data']); } elseif ((($id3v2_majorversion == 3) && ($parsedFrame['frame_name'] == 'EQUA')) || // 4.12 EQUA Equalisation (ID3v2.3 only) (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'EQU'))) { // 4.13 EQU Equalisation (ID3v2.2 only) // There may only be one 'EQUA' frame in each tag //
// Adjustment bits $xx // This is followed by 2 bytes + ('adjustment bits' rounded up to the // nearest byte) for every equalisation band in the following format, // giving a frequency range of 0 - 32767Hz: // Increment/decrement %x (MSB of the Frequency) // Frequency (lower 15 bits) // Adjustment $xx (xx ...) $frame_offset = 0; $parsedFrame['adjustmentbits'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_adjustmentbytes = ceil($parsedFrame['adjustmentbits'] / 8); $frame_remainingdata = (string) substr($parsedFrame['data'], $frame_offset); while (strlen($frame_remainingdata) > 0) { $frame_frequencystr = getid3_lib::BigEndian2Bin(substr($frame_remainingdata, 0, 2)); $frame_incdec = (bool) substr($frame_frequencystr, 0, 1); $frame_frequency = bindec(substr($frame_frequencystr, 1, 15)); $parsedFrame[$frame_frequency]['incdec'] = $frame_incdec; $parsedFrame[$frame_frequency]['adjustment'] = getid3_lib::BigEndian2Int(substr($frame_remainingdata, 2, $frame_adjustmentbytes)); if ($parsedFrame[$frame_frequency]['incdec'] === false) { $parsedFrame[$frame_frequency]['adjustment'] *= -1; } $frame_remainingdata = substr($frame_remainingdata, 2 + $frame_adjustmentbytes); } unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'RVRB')) || // 4.13 RVRB Reverb (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'REV'))) { // 4.14 REV Reverb // There may only be one 'RVRB' frame in each tag. //
// Reverb left (ms) $xx xx // Reverb right (ms) $xx xx // Reverb bounces, left $xx // Reverb bounces, right $xx // Reverb feedback, left to left $xx // Reverb feedback, left to right $xx // Reverb feedback, right to right $xx // Reverb feedback, right to left $xx // Premix left to right $xx // Premix right to left $xx $frame_offset = 0; $parsedFrame['left'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 2)); $frame_offset += 2; $parsedFrame['right'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 2)); $frame_offset += 2; $parsedFrame['bouncesL'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['bouncesR'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['feedbackLL'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['feedbackLR'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['feedbackRR'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['feedbackRL'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['premixLR'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['premixRL'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'APIC')) || // 4.14 APIC Attached picture (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'PIC'))) { // 4.15 PIC Attached picture // There may be several pictures attached to one file, // each in their individual 'APIC' frame, but only one // with the same content descriptor //
// Text encoding $xx // ID3v2.3+ => MIME type $00 // ID3v2.2 => Image format $xx xx xx // Picture type $xx // Description $00 (00) // Picture data $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_textencoding_terminator = $this->TextEncodingTerminatorLookup($frame_textencoding); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); $frame_textencoding_terminator = "\x00"; } $frame_imagetype = null; $frame_mimetype = null; if ($id3v2_majorversion == 2 && strlen($parsedFrame['data']) > $frame_offset) { $frame_imagetype = substr($parsedFrame['data'], $frame_offset, 3); if (strtolower($frame_imagetype) == 'ima') { // complete hack for mp3Rage (www.chaoticsoftware.com) that puts ID3v2.3-formatted // MIME type instead of 3-char ID3v2.2-format image type (thanks xbhoffØpacbell*net) $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_mimetype = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_mimetype === "\x00") { $frame_mimetype = ''; } $frame_imagetype = strtoupper(str_replace('image/', '', strtolower($frame_mimetype))); if ($frame_imagetype == 'JPEG') { $frame_imagetype = 'JPG'; } $frame_offset = $frame_terminatorpos + strlen("\x00"); } else { $frame_offset += 3; } } if ($id3v2_majorversion > 2 && strlen($parsedFrame['data']) > $frame_offset) { $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_mimetype = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_mimetype === "\x00") { $frame_mimetype = ''; } $frame_offset = $frame_terminatorpos + strlen("\x00"); } $frame_picturetype = ord(substr($parsedFrame['data'], $frame_offset++, 1)); if ($frame_offset >= $parsedFrame['datalength']) { $this->warning('data portion of APIC frame is missing at offset '.($parsedFrame['dataoffset'] + 8 + $frame_offset)); } else { $frame_terminatorpos = strpos($parsedFrame['data'], $frame_textencoding_terminator, $frame_offset); if (substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator), 1) === "\x00") { $frame_terminatorpos++; // strpos() fooled because 2nd byte of Unicode chars are often 0x00 } $parsedFrame['description'] = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $parsedFrame['description'] = $this->MakeUTF16emptyStringEmpty($parsedFrame['description']); $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); if ($id3v2_majorversion == 2) { $parsedFrame['imagetype'] = isset($frame_imagetype) ? $frame_imagetype : null; } else { $parsedFrame['mime'] = isset($frame_mimetype) ? $frame_mimetype : null; } $parsedFrame['picturetypeid'] = $frame_picturetype; $parsedFrame['picturetype'] = $this->APICPictureTypeLookup($frame_picturetype); $parsedFrame['data'] = substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator)); $parsedFrame['datalength'] = strlen($parsedFrame['data']); $parsedFrame['image_mime'] = ''; $imageinfo = array(); if ($imagechunkcheck = getid3_lib::GetDataImageSize($parsedFrame['data'], $imageinfo)) { if (($imagechunkcheck[2] >= 1) && ($imagechunkcheck[2] <= 3)) { $parsedFrame['image_mime'] = image_type_to_mime_type($imagechunkcheck[2]); if ($imagechunkcheck[0]) { $parsedFrame['image_width'] = $imagechunkcheck[0]; } if ($imagechunkcheck[1]) { $parsedFrame['image_height'] = $imagechunkcheck[1]; } } } do { if ($this->getid3->option_save_attachments === false) { // skip entirely unset($parsedFrame['data']); break; } $dir = ''; if ($this->getid3->option_save_attachments === true) { // great /* } elseif (is_int($this->getid3->option_save_attachments)) { if ($this->getid3->option_save_attachments < $parsedFrame['data_length']) { // too big, skip $this->warning('attachment at '.$frame_offset.' is too large to process inline ('.number_format($parsedFrame['data_length']).' bytes)'); unset($parsedFrame['data']); break; } */ } elseif (is_string($this->getid3->option_save_attachments)) { $dir = rtrim(str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $this->getid3->option_save_attachments), DIRECTORY_SEPARATOR); if (!is_dir($dir) || !getID3::is_writable($dir)) { // cannot write, skip $this->warning('attachment at '.$frame_offset.' cannot be saved to "'.$dir.'" (not writable)'); unset($parsedFrame['data']); break; } } // if we get this far, must be OK if (is_string($this->getid3->option_save_attachments)) { $destination_filename = $dir.DIRECTORY_SEPARATOR.md5($info['filenamepath']).'_'.$frame_offset; if (!file_exists($destination_filename) || getID3::is_writable($destination_filename)) { file_put_contents($destination_filename, $parsedFrame['data']); } else { $this->warning('attachment at '.$frame_offset.' cannot be saved to "'.$destination_filename.'" (not writable)'); } $parsedFrame['data_filename'] = $destination_filename; unset($parsedFrame['data']); } else { if (!empty($parsedFrame['framenameshort']) && !empty($parsedFrame['data'])) { if (!isset($info['id3v2']['comments']['picture'])) { $info['id3v2']['comments']['picture'] = array(); } $comments_picture_data = array(); foreach (array('data', 'image_mime', 'image_width', 'image_height', 'imagetype', 'picturetype', 'description', 'datalength') as $picture_key) { if (isset($parsedFrame[$picture_key])) { $comments_picture_data[$picture_key] = $parsedFrame[$picture_key]; } } $info['id3v2']['comments']['picture'][] = $comments_picture_data; unset($comments_picture_data); } } } while (false); // @phpstan-ignore-line } } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'GEOB')) || // 4.15 GEOB General encapsulated object (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'GEO'))) { // 4.16 GEO General encapsulated object // There may be more than one 'GEOB' frame in each tag, // but only one with the same content descriptor //
// Text encoding $xx // MIME type $00 // Filename $00 (00) // Content description $00 (00) // Encapsulated object $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_textencoding_terminator = $this->TextEncodingTerminatorLookup($frame_textencoding); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); $frame_textencoding_terminator = "\x00"; } $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_mimetype = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_mimetype === "\x00") { $frame_mimetype = ''; } $frame_offset = $frame_terminatorpos + strlen("\x00"); $frame_terminatorpos = strpos($parsedFrame['data'], $frame_textencoding_terminator, $frame_offset); if (substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator), 1) === "\x00") { $frame_terminatorpos++; // strpos() fooled because 2nd byte of Unicode chars are often 0x00 } $frame_filename = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_filename === "\x00") { $frame_filename = ''; } $frame_offset = $frame_terminatorpos + strlen($frame_textencoding_terminator); $frame_terminatorpos = strpos($parsedFrame['data'], $frame_textencoding_terminator, $frame_offset); if (substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator), 1) === "\x00") { $frame_terminatorpos++; // strpos() fooled because 2nd byte of Unicode chars are often 0x00 } $parsedFrame['description'] = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $parsedFrame['description'] = $this->MakeUTF16emptyStringEmpty($parsedFrame['description']); $frame_offset = $frame_terminatorpos + strlen($frame_textencoding_terminator); $parsedFrame['objectdata'] = (string) substr($parsedFrame['data'], $frame_offset); $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); $parsedFrame['mime'] = $frame_mimetype; $parsedFrame['filename'] = $frame_filename; unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'PCNT')) || // 4.16 PCNT Play counter (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'CNT'))) { // 4.17 CNT Play counter // There may only be one 'PCNT' frame in each tag. // When the counter reaches all one's, one byte is inserted in // front of the counter thus making the counter eight bits bigger //
// Counter $xx xx xx xx (xx ...) $parsedFrame['data'] = getid3_lib::BigEndian2Int($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'POPM')) || // 4.17 POPM Popularimeter (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'POP'))) { // 4.18 POP Popularimeter // There may be more than one 'POPM' frame in each tag, // but only one with the same email address //
// Email to user $00 // Rating $xx // Counter $xx xx xx xx (xx ...) $frame_offset = 0; $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_emailaddress = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_emailaddress === "\x00") { $frame_emailaddress = ''; } $frame_offset = $frame_terminatorpos + strlen("\x00"); $frame_rating = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['counter'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset)); $parsedFrame['email'] = $frame_emailaddress; $parsedFrame['rating'] = $frame_rating; unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'RBUF')) || // 4.18 RBUF Recommended buffer size (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'BUF'))) { // 4.19 BUF Recommended buffer size // There may only be one 'RBUF' frame in each tag //
// Buffer size $xx xx xx // Embedded info flag %0000000x // Offset to next tag $xx xx xx xx $frame_offset = 0; $parsedFrame['buffersize'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 3)); $frame_offset += 3; $frame_embeddedinfoflags = getid3_lib::BigEndian2Bin(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['flags']['embededinfo'] = (bool) substr($frame_embeddedinfoflags, 7, 1); $parsedFrame['nexttagoffset'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); unset($parsedFrame['data']); } elseif (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'CRM')) { // 4.20 Encrypted meta frame (ID3v2.2 only) // There may be more than one 'CRM' frame in a tag, // but only one with the same 'owner identifier' //
// Owner identifier $00 (00) // Content/explanation $00 (00) // Encrypted datablock $frame_offset = 0; $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_ownerid = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $frame_offset = $frame_terminatorpos + strlen("\x00"); $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $parsedFrame['description'] = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $parsedFrame['description'] = $this->MakeUTF16emptyStringEmpty($parsedFrame['description']); $frame_offset = $frame_terminatorpos + strlen("\x00"); $parsedFrame['ownerid'] = $frame_ownerid; $parsedFrame['data'] = (string) substr($parsedFrame['data'], $frame_offset); unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'AENC')) || // 4.19 AENC Audio encryption (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'CRA'))) { // 4.21 CRA Audio encryption // There may be more than one 'AENC' frames in a tag, // but only one with the same 'Owner identifier' //
// Owner identifier $00 // Preview start $xx xx // Preview length $xx xx // Encryption info $frame_offset = 0; $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_ownerid = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_ownerid === "\x00") { $frame_ownerid = ''; } $frame_offset = $frame_terminatorpos + strlen("\x00"); $parsedFrame['ownerid'] = $frame_ownerid; $parsedFrame['previewstart'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 2)); $frame_offset += 2; $parsedFrame['previewlength'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 2)); $frame_offset += 2; $parsedFrame['encryptioninfo'] = (string) substr($parsedFrame['data'], $frame_offset); unset($parsedFrame['data']); } elseif ((($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'LINK')) || // 4.20 LINK Linked information (($id3v2_majorversion == 2) && ($parsedFrame['frame_name'] == 'LNK'))) { // 4.22 LNK Linked information // There may be more than one 'LINK' frame in a tag, // but only one with the same contents //
// ID3v2.3+ => Frame identifier $xx xx xx xx // ID3v2.2 => Frame identifier $xx xx xx // URL $00 // ID and additional data $frame_offset = 0; if ($id3v2_majorversion == 2) { $parsedFrame['frameid'] = substr($parsedFrame['data'], $frame_offset, 3); $frame_offset += 3; } else { $parsedFrame['frameid'] = substr($parsedFrame['data'], $frame_offset, 4); $frame_offset += 4; } $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_url = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_url === "\x00") { $frame_url = ''; } $frame_offset = $frame_terminatorpos + strlen("\x00"); $parsedFrame['url'] = $frame_url; $parsedFrame['additionaldata'] = (string) substr($parsedFrame['data'], $frame_offset); if (!empty($parsedFrame['framenameshort']) && $parsedFrame['url']) { $info['id3v2']['comments'][$parsedFrame['framenameshort']][] = getid3_lib::iconv_fallback_iso88591_utf8($parsedFrame['url']); } unset($parsedFrame['data']); } elseif (($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'POSS')) { // 4.21 POSS Position synchronisation frame (ID3v2.3+ only) // There may only be one 'POSS' frame in each tag // // Time stamp format $xx // Position $xx (xx ...) $frame_offset = 0; $parsedFrame['timestampformat'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['position'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset)); unset($parsedFrame['data']); } elseif (($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'USER')) { // 4.22 USER Terms of use (ID3v2.3+ only) // There may be more than one 'Terms of use' frame in a tag, // but only one with the same 'Language' //
// Text encoding $xx // Language $xx xx xx // The actual text $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); } $frame_language = substr($parsedFrame['data'], $frame_offset, 3); $frame_offset += 3; $parsedFrame['language'] = $frame_language; $parsedFrame['languagename'] = $this->LanguageLookup($frame_language, false); $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); $parsedFrame['data'] = (string) substr($parsedFrame['data'], $frame_offset); $parsedFrame['data'] = $this->RemoveStringTerminator($parsedFrame['data'], $this->TextEncodingTerminatorLookup($frame_textencoding)); if (!empty($parsedFrame['framenameshort']) && !empty($parsedFrame['data'])) { $info['id3v2']['comments'][$parsedFrame['framenameshort']][] = getid3_lib::iconv_fallback($parsedFrame['encoding'], $info['id3v2']['encoding'], $parsedFrame['data']); } unset($parsedFrame['data']); } elseif (($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'OWNE')) { // 4.23 OWNE Ownership frame (ID3v2.3+ only) // There may only be one 'OWNE' frame in a tag //
// Text encoding $xx // Price paid $00 // Date of purch. // Seller $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); } $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_pricepaid = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $frame_offset = $frame_terminatorpos + strlen("\x00"); $parsedFrame['pricepaid']['currencyid'] = substr($frame_pricepaid, 0, 3); $parsedFrame['pricepaid']['currency'] = $this->LookupCurrencyUnits($parsedFrame['pricepaid']['currencyid']); $parsedFrame['pricepaid']['value'] = substr($frame_pricepaid, 3); $parsedFrame['purchasedate'] = substr($parsedFrame['data'], $frame_offset, 8); if ($this->IsValidDateStampString($parsedFrame['purchasedate'])) { $parsedFrame['purchasedateunix'] = mktime (0, 0, 0, substr($parsedFrame['purchasedate'], 4, 2), substr($parsedFrame['purchasedate'], 6, 2), substr($parsedFrame['purchasedate'], 0, 4)); } $frame_offset += 8; $parsedFrame['seller'] = (string) substr($parsedFrame['data'], $frame_offset); $parsedFrame['seller'] = $this->RemoveStringTerminator($parsedFrame['seller'], $this->TextEncodingTerminatorLookup($frame_textencoding)); unset($parsedFrame['data']); } elseif (($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'COMR')) { // 4.24 COMR Commercial frame (ID3v2.3+ only) // There may be more than one 'commercial frame' in a tag, // but no two may be identical //
// Text encoding $xx // Price string $00 // Valid until // Contact URL $00 // Received as $xx // Name of seller $00 (00) // Description $00 (00) // Picture MIME type $00 // Seller logo $frame_offset = 0; $frame_textencoding = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_textencoding_terminator = $this->TextEncodingTerminatorLookup($frame_textencoding); if ((($id3v2_majorversion <= 3) && ($frame_textencoding > 1)) || (($id3v2_majorversion == 4) && ($frame_textencoding > 3))) { $this->warning('Invalid text encoding byte ('.$frame_textencoding.') in frame "'.$parsedFrame['frame_name'].'" - defaulting to ISO-8859-1 encoding'); $frame_textencoding_terminator = "\x00"; } $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_pricestring = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $frame_offset = $frame_terminatorpos + strlen("\x00"); $frame_rawpricearray = explode('/', $frame_pricestring); foreach ($frame_rawpricearray as $key => $val) { $frame_currencyid = substr($val, 0, 3); $parsedFrame['price'][$frame_currencyid]['currency'] = $this->LookupCurrencyUnits($frame_currencyid); $parsedFrame['price'][$frame_currencyid]['value'] = substr($val, 3); } $frame_datestring = substr($parsedFrame['data'], $frame_offset, 8); $frame_offset += 8; $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_contacturl = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $frame_offset = $frame_terminatorpos + strlen("\x00"); $frame_receivedasid = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_terminatorpos = strpos($parsedFrame['data'], $frame_textencoding_terminator, $frame_offset); if (substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator), 1) === "\x00") { $frame_terminatorpos++; // strpos() fooled because 2nd byte of Unicode chars are often 0x00 } $frame_sellername = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_sellername === "\x00") { $frame_sellername = ''; } $frame_offset = $frame_terminatorpos + strlen($frame_textencoding_terminator); $frame_terminatorpos = strpos($parsedFrame['data'], $frame_textencoding_terminator, $frame_offset); if (substr($parsedFrame['data'], $frame_terminatorpos + strlen($frame_textencoding_terminator), 1) === "\x00") { $frame_terminatorpos++; // strpos() fooled because 2nd byte of Unicode chars are often 0x00 } $parsedFrame['description'] = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $parsedFrame['description'] = $this->MakeUTF16emptyStringEmpty($parsedFrame['description']); $frame_offset = $frame_terminatorpos + strlen($frame_textencoding_terminator); $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_mimetype = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); $frame_offset = $frame_terminatorpos + strlen("\x00"); $frame_sellerlogo = substr($parsedFrame['data'], $frame_offset); $parsedFrame['encodingid'] = $frame_textencoding; $parsedFrame['encoding'] = $this->TextEncodingNameLookup($frame_textencoding); $parsedFrame['pricevaliduntil'] = $frame_datestring; $parsedFrame['contacturl'] = $frame_contacturl; $parsedFrame['receivedasid'] = $frame_receivedasid; $parsedFrame['receivedas'] = $this->COMRReceivedAsLookup($frame_receivedasid); $parsedFrame['sellername'] = $frame_sellername; $parsedFrame['mime'] = $frame_mimetype; $parsedFrame['logo'] = $frame_sellerlogo; unset($parsedFrame['data']); } elseif (($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'ENCR')) { // 4.25 ENCR Encryption method registration (ID3v2.3+ only) // There may be several 'ENCR' frames in a tag, // but only one containing the same symbol // and only one containing the same owner identifier //
// Owner identifier $00 // Method symbol $xx // Encryption data $frame_offset = 0; $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_ownerid = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_ownerid === "\x00") { $frame_ownerid = ''; } $frame_offset = $frame_terminatorpos + strlen("\x00"); $parsedFrame['ownerid'] = $frame_ownerid; $parsedFrame['methodsymbol'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['data'] = (string) substr($parsedFrame['data'], $frame_offset); } elseif (($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'GRID')) { // 4.26 GRID Group identification registration (ID3v2.3+ only) // There may be several 'GRID' frames in a tag, // but only one containing the same symbol // and only one containing the same owner identifier //
// Owner identifier $00 // Group symbol $xx // Group dependent data $frame_offset = 0; $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_ownerid = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_ownerid === "\x00") { $frame_ownerid = ''; } $frame_offset = $frame_terminatorpos + strlen("\x00"); $parsedFrame['ownerid'] = $frame_ownerid; $parsedFrame['groupsymbol'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['data'] = (string) substr($parsedFrame['data'], $frame_offset); } elseif (($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'PRIV')) { // 4.27 PRIV Private frame (ID3v2.3+ only) // The tag may contain more than one 'PRIV' frame // but only with different contents //
// Owner identifier $00 // The private data $frame_offset = 0; $frame_terminatorpos = strpos($parsedFrame['data'], "\x00", $frame_offset); $frame_ownerid = substr($parsedFrame['data'], $frame_offset, $frame_terminatorpos - $frame_offset); if ($frame_ownerid === "\x00") { $frame_ownerid = ''; } $frame_offset = $frame_terminatorpos + strlen("\x00"); $parsedFrame['ownerid'] = $frame_ownerid; $parsedFrame['data'] = (string) substr($parsedFrame['data'], $frame_offset); } elseif (($id3v2_majorversion >= 4) && ($parsedFrame['frame_name'] == 'SIGN')) { // 4.28 SIGN Signature frame (ID3v2.4+ only) // There may be more than one 'signature frame' in a tag, // but no two may be identical //
// Group symbol $xx // Signature $frame_offset = 0; $parsedFrame['groupsymbol'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $parsedFrame['data'] = (string) substr($parsedFrame['data'], $frame_offset); } elseif (($id3v2_majorversion >= 4) && ($parsedFrame['frame_name'] == 'SEEK')) { // 4.29 SEEK Seek frame (ID3v2.4+ only) // There may only be one 'seek frame' in a tag //
// Minimum offset to next tag $xx xx xx xx $frame_offset = 0; $parsedFrame['data'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); } elseif (($id3v2_majorversion >= 4) && ($parsedFrame['frame_name'] == 'ASPI')) { // 4.30 ASPI Audio seek point index (ID3v2.4+ only) // There may only be one 'audio seek point index' frame in a tag //
// Indexed data start (S) $xx xx xx xx // Indexed data length (L) $xx xx xx xx // Number of index points (N) $xx xx // Bits per index point (b) $xx // Then for every index point the following data is included: // Fraction at index (Fi) $xx (xx) $frame_offset = 0; $parsedFrame['datastart'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); $frame_offset += 4; $parsedFrame['indexeddatalength'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); $frame_offset += 4; $parsedFrame['indexpoints'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 2)); $frame_offset += 2; $parsedFrame['bitsperpoint'] = ord(substr($parsedFrame['data'], $frame_offset++, 1)); $frame_bytesperpoint = ceil($parsedFrame['bitsperpoint'] / 8); for ($i = 0; $i < $parsedFrame['indexpoints']; $i++) { $parsedFrame['indexes'][$i] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, $frame_bytesperpoint)); $frame_offset += $frame_bytesperpoint; } unset($parsedFrame['data']); } elseif (($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'RGAD')) { // Replay Gain Adjustment // http://privatewww.essex.ac.uk/~djmrob/replaygain/file_format_id3v2.html // There may only be one 'RGAD' frame in a tag //
// Peak Amplitude $xx $xx $xx $xx // Radio Replay Gain Adjustment %aaabbbcd %dddddddd // Audiophile Replay Gain Adjustment %aaabbbcd %dddddddd // a - name code // b - originator code // c - sign bit // d - replay gain adjustment $frame_offset = 0; $parsedFrame['peakamplitude'] = getid3_lib::BigEndian2Float(substr($parsedFrame['data'], $frame_offset, 4)); $frame_offset += 4; foreach (array('track','album') as $rgad_entry_type) { $rg_adjustment_word = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 2)); $frame_offset += 2; $parsedFrame['raw'][$rgad_entry_type]['name'] = ($rg_adjustment_word & 0xE000) >> 13; $parsedFrame['raw'][$rgad_entry_type]['originator'] = ($rg_adjustment_word & 0x1C00) >> 10; $parsedFrame['raw'][$rgad_entry_type]['signbit'] = ($rg_adjustment_word & 0x0200) >> 9; $parsedFrame['raw'][$rgad_entry_type]['adjustment'] = ($rg_adjustment_word & 0x0100); } $parsedFrame['track']['name'] = getid3_lib::RGADnameLookup($parsedFrame['raw']['track']['name']); $parsedFrame['track']['originator'] = getid3_lib::RGADoriginatorLookup($parsedFrame['raw']['track']['originator']); $parsedFrame['track']['adjustment'] = getid3_lib::RGADadjustmentLookup($parsedFrame['raw']['track']['adjustment'], $parsedFrame['raw']['track']['signbit']); $parsedFrame['album']['name'] = getid3_lib::RGADnameLookup($parsedFrame['raw']['album']['name']); $parsedFrame['album']['originator'] = getid3_lib::RGADoriginatorLookup($parsedFrame['raw']['album']['originator']); $parsedFrame['album']['adjustment'] = getid3_lib::RGADadjustmentLookup($parsedFrame['raw']['album']['adjustment'], $parsedFrame['raw']['album']['signbit']); $info['replay_gain']['track']['peak'] = $parsedFrame['peakamplitude']; $info['replay_gain']['track']['originator'] = $parsedFrame['track']['originator']; $info['replay_gain']['track']['adjustment'] = $parsedFrame['track']['adjustment']; $info['replay_gain']['album']['originator'] = $parsedFrame['album']['originator']; $info['replay_gain']['album']['adjustment'] = $parsedFrame['album']['adjustment']; unset($parsedFrame['data']); } elseif (($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'CHAP')) { // CHAP Chapters frame (ID3v2.3+ only) // http://id3.org/id3v2-chapters-1.0 // (10 bytes) // Element ID $00 // Start time $xx xx xx xx // End time $xx xx xx xx // Start offset $xx xx xx xx // End offset $xx xx xx xx // $frame_offset = 0; @list($parsedFrame['element_id']) = explode("\x00", $parsedFrame['data'], 2); $frame_offset += strlen($parsedFrame['element_id']."\x00"); $parsedFrame['time_begin'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); $frame_offset += 4; $parsedFrame['time_end'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); $frame_offset += 4; if (substr($parsedFrame['data'], $frame_offset, 4) != "\xFF\xFF\xFF\xFF") { // "If these bytes are all set to 0xFF then the value should be ignored and the start time value should be utilized." $parsedFrame['offset_begin'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); } $frame_offset += 4; if (substr($parsedFrame['data'], $frame_offset, 4) != "\xFF\xFF\xFF\xFF") { // "If these bytes are all set to 0xFF then the value should be ignored and the start time value should be utilized." $parsedFrame['offset_end'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); } $frame_offset += 4; if ($frame_offset < strlen($parsedFrame['data'])) { $parsedFrame['subframes'] = array(); while ($frame_offset < strlen($parsedFrame['data'])) { // $subframe = array(); $subframe['name'] = substr($parsedFrame['data'], $frame_offset, 4); $frame_offset += 4; $subframe['size'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); $frame_offset += 4; $subframe['flags_raw'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 2)); $frame_offset += 2; if ($subframe['size'] > (strlen($parsedFrame['data']) - $frame_offset)) { $this->warning('CHAP subframe "'.$subframe['name'].'" at frame offset '.$frame_offset.' claims to be "'.$subframe['size'].'" bytes, which is more than the available data ('.(strlen($parsedFrame['data']) - $frame_offset).' bytes)'); break; } $subframe_rawdata = substr($parsedFrame['data'], $frame_offset, $subframe['size']); $frame_offset += $subframe['size']; $subframe['encodingid'] = ord(substr($subframe_rawdata, 0, 1)); $subframe['text'] = substr($subframe_rawdata, 1); $subframe['encoding'] = $this->TextEncodingNameLookup($subframe['encodingid']); $encoding_converted_text = trim(getid3_lib::iconv_fallback($subframe['encoding'], $info['encoding'], $subframe['text'])); switch (substr($encoding_converted_text, 0, 2)) { case "\xFF\xFE": case "\xFE\xFF": switch (strtoupper($info['id3v2']['encoding'])) { case 'ISO-8859-1': case 'UTF-8': $encoding_converted_text = substr($encoding_converted_text, 2); // remove unwanted byte-order-marks break; default: // ignore break; } break; default: // do not remove BOM break; } switch ($subframe['name']) { case 'TIT2': $parsedFrame['chapter_name'] = $encoding_converted_text; $parsedFrame['subframes'][] = $subframe; break; case 'TIT3': $parsedFrame['chapter_description'] = $encoding_converted_text; $parsedFrame['subframes'][] = $subframe; break; case 'WXXX': @list($subframe['chapter_url_description'], $subframe['chapter_url']) = explode("\x00", $encoding_converted_text, 2); $parsedFrame['chapter_url'][$subframe['chapter_url_description']] = $subframe['chapter_url']; $parsedFrame['subframes'][] = $subframe; break; case 'APIC': if (preg_match('#^([^\\x00]+)*\\x00(.)([^\\x00]+)*\\x00(.+)$#s', $subframe['text'], $matches)) { list($dummy, $subframe_apic_mime, $subframe_apic_picturetype, $subframe_apic_description, $subframe_apic_picturedata) = $matches; $subframe['image_mime'] = trim(getid3_lib::iconv_fallback($subframe['encoding'], $info['encoding'], $subframe_apic_mime)); $subframe['picture_type'] = $this->APICPictureTypeLookup($subframe_apic_picturetype); $subframe['description'] = trim(getid3_lib::iconv_fallback($subframe['encoding'], $info['encoding'], $subframe_apic_description)); if (strlen($this->TextEncodingTerminatorLookup($subframe['encoding'])) == 2) { // the null terminator between "description" and "picture data" could be either 1 byte (ISO-8859-1, UTF-8) or two bytes (UTF-16) // the above regex assumes one byte, if it's actually two then strip the second one here $subframe_apic_picturedata = substr($subframe_apic_picturedata, 1); } $subframe['data'] = $subframe_apic_picturedata; unset($dummy, $subframe_apic_mime, $subframe_apic_picturetype, $subframe_apic_description, $subframe_apic_picturedata); unset($subframe['text'], $parsedFrame['text']); $parsedFrame['subframes'][] = $subframe; $parsedFrame['picture_present'] = true; } else { $this->warning('ID3v2.CHAP subframe #'.(count($parsedFrame['subframes']) + 1).' "'.$subframe['name'].'" not in expected format'); } break; default: $this->warning('ID3v2.CHAP subframe "'.$subframe['name'].'" not handled (supported: TIT2, TIT3, WXXX, APIC)'); break; } } unset($subframe_rawdata, $subframe, $encoding_converted_text); unset($parsedFrame['data']); // debatable whether this this be here, without it the returned structure may contain a large amount of duplicate data if chapters contain APIC } $id3v2_chapter_entry = array(); foreach (array('id', 'time_begin', 'time_end', 'offset_begin', 'offset_end', 'chapter_name', 'chapter_description', 'chapter_url', 'picture_present') as $id3v2_chapter_key) { if (isset($parsedFrame[$id3v2_chapter_key])) { $id3v2_chapter_entry[$id3v2_chapter_key] = $parsedFrame[$id3v2_chapter_key]; } } if (!isset($info['id3v2']['chapters'])) { $info['id3v2']['chapters'] = array(); } $info['id3v2']['chapters'][] = $id3v2_chapter_entry; unset($id3v2_chapter_entry, $id3v2_chapter_key); } elseif (($id3v2_majorversion >= 3) && ($parsedFrame['frame_name'] == 'CTOC')) { // CTOC Chapters Table Of Contents frame (ID3v2.3+ only) // http://id3.org/id3v2-chapters-1.0 // (10 bytes) // Element ID $00 // CTOC flags %xx // Entry count $xx // Child Element ID $00 /* zero or more child CHAP or CTOC entries */ // $frame_offset = 0; @list($parsedFrame['element_id']) = explode("\x00", $parsedFrame['data'], 2); $frame_offset += strlen($parsedFrame['element_id']."\x00"); $ctoc_flags_raw = ord(substr($parsedFrame['data'], $frame_offset, 1)); $frame_offset += 1; $parsedFrame['entry_count'] = ord(substr($parsedFrame['data'], $frame_offset, 1)); $frame_offset += 1; $terminator_position = null; for ($i = 0; $i < $parsedFrame['entry_count']; $i++) { $terminator_position = strpos($parsedFrame['data'], "\x00", $frame_offset); $parsedFrame['child_element_ids'][$i] = substr($parsedFrame['data'], $frame_offset, $terminator_position - $frame_offset); $frame_offset = $terminator_position + 1; } $parsedFrame['ctoc_flags']['ordered'] = (bool) ($ctoc_flags_raw & 0x01); $parsedFrame['ctoc_flags']['top_level'] = (bool) ($ctoc_flags_raw & 0x03); unset($ctoc_flags_raw, $terminator_position); if ($frame_offset < strlen($parsedFrame['data'])) { $parsedFrame['subframes'] = array(); while ($frame_offset < strlen($parsedFrame['data'])) { // $subframe = array(); $subframe['name'] = substr($parsedFrame['data'], $frame_offset, 4); $frame_offset += 4; $subframe['size'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 4)); $frame_offset += 4; $subframe['flags_raw'] = getid3_lib::BigEndian2Int(substr($parsedFrame['data'], $frame_offset, 2)); $frame_offset += 2; if ($subframe['size'] > (strlen($parsedFrame['data']) - $frame_offset)) { $this->warning('CTOS subframe "'.$subframe['name'].'" at frame offset '.$frame_offset.' claims to be "'.$subframe['size'].'" bytes, which is more than the available data ('.(strlen($parsedFrame['data']) - $frame_offset).' bytes)'); break; } $subframe_rawdata = substr($parsedFrame['data'], $frame_offset, $subframe['size']); $frame_offset += $subframe['size']; $subframe['encodingid'] = ord(substr($subframe_rawdata, 0, 1)); $subframe['text'] = substr($subframe_rawdata, 1); $subframe['encoding'] = $this->TextEncodingNameLookup($subframe['encodingid']); $encoding_converted_text = trim(getid3_lib::iconv_fallback($subframe['encoding'], $info['encoding'], $subframe['text']));; switch (substr($encoding_converted_text, 0, 2)) { case "\xFF\xFE": case "\xFE\xFF": switch (strtoupper($info['id3v2']['encoding'])) { case 'ISO-8859-1': case 'UTF-8': $encoding_converted_text = substr($encoding_converted_text, 2); // remove unwanted byte-order-marks break; default: // ignore break; } break; default: // do not remove BOM break; } if (($subframe['name'] == 'TIT2') || ($subframe['name'] == 'TIT3')) { if ($subframe['name'] == 'TIT2') { $parsedFrame['toc_name'] = $encoding_converted_text; } elseif ($subframe['name'] == 'TIT3') { $parsedFrame['toc_description'] = $encoding_converted_text; } $parsedFrame['subframes'][] = $subframe; } else { $this->warning('ID3v2.CTOC subframe "'.$subframe['name'].'" not handled (only TIT2 and TIT3)'); } } unset($subframe_rawdata, $subframe, $encoding_converted_text); } } return true; } /** * @param string $data * * @return string */ public function DeUnsynchronise($data) { return str_replace("\xFF\x00", "\xFF", $data); } /** * @param int $index * * @return string */ public function LookupExtendedHeaderRestrictionsTagSizeLimits($index) { static $LookupExtendedHeaderRestrictionsTagSizeLimits = array( 0x00 => 'No more than 128 frames and 1 MB total tag size', 0x01 => 'No more than 64 frames and 128 KB total tag size', 0x02 => 'No more than 32 frames and 40 KB total tag size', 0x03 => 'No more than 32 frames and 4 KB total tag size', ); return (isset($LookupExtendedHeaderRestrictionsTagSizeLimits[$index]) ? $LookupExtendedHeaderRestrictionsTagSizeLimits[$index] : ''); } /** * @param int $index * * @return string */ public function LookupExtendedHeaderRestrictionsTextEncodings($index) { static $LookupExtendedHeaderRestrictionsTextEncodings = array( 0x00 => 'No restrictions', 0x01 => 'Strings are only encoded with ISO-8859-1 or UTF-8', ); return (isset($LookupExtendedHeaderRestrictionsTextEncodings[$index]) ? $LookupExtendedHeaderRestrictionsTextEncodings[$index] : ''); } /** * @param int $index * * @return string */ public function LookupExtendedHeaderRestrictionsTextFieldSize($index) { static $LookupExtendedHeaderRestrictionsTextFieldSize = array( 0x00 => 'No restrictions', 0x01 => 'No string is longer than 1024 characters', 0x02 => 'No string is longer than 128 characters', 0x03 => 'No string is longer than 30 characters', ); return (isset($LookupExtendedHeaderRestrictionsTextFieldSize[$index]) ? $LookupExtendedHeaderRestrictionsTextFieldSize[$index] : ''); } /** * @param int $index * * @return string */ public function LookupExtendedHeaderRestrictionsImageEncoding($index) { static $LookupExtendedHeaderRestrictionsImageEncoding = array( 0x00 => 'No restrictions', 0x01 => 'Images are encoded only with PNG or JPEG', ); return (isset($LookupExtendedHeaderRestrictionsImageEncoding[$index]) ? $LookupExtendedHeaderRestrictionsImageEncoding[$index] : ''); } /** * @param int $index * * @return string */ public function LookupExtendedHeaderRestrictionsImageSizeSize($index) { static $LookupExtendedHeaderRestrictionsImageSizeSize = array( 0x00 => 'No restrictions', 0x01 => 'All images are 256x256 pixels or smaller', 0x02 => 'All images are 64x64 pixels or smaller', 0x03 => 'All images are exactly 64x64 pixels, unless required otherwise', ); return (isset($LookupExtendedHeaderRestrictionsImageSizeSize[$index]) ? $LookupExtendedHeaderRestrictionsImageSizeSize[$index] : ''); } /** * @param string $currencyid * * @return string */ public function LookupCurrencyUnits($currencyid) { $begin = __LINE__; /** This is not a comment! AED Dirhams AFA Afghanis ALL Leke AMD Drams ANG Guilders AOA Kwanza ARS Pesos ATS Schillings AUD Dollars AWG Guilders AZM Manats BAM Convertible Marka BBD Dollars BDT Taka BEF Francs BGL Leva BHD Dinars BIF Francs BMD Dollars BND Dollars BOB Bolivianos BRL Brazil Real BSD Dollars BTN Ngultrum BWP Pulas BYR Rubles BZD Dollars CAD Dollars CDF Congolese Francs CHF Francs CLP Pesos CNY Yuan Renminbi COP Pesos CRC Colones CUP Pesos CVE Escudos CYP Pounds CZK Koruny DEM Deutsche Marks DJF Francs DKK Kroner DOP Pesos DZD Algeria Dinars EEK Krooni EGP Pounds ERN Nakfa ESP Pesetas ETB Birr EUR Euro FIM Markkaa FJD Dollars FKP Pounds FRF Francs GBP Pounds GEL Lari GGP Pounds GHC Cedis GIP Pounds GMD Dalasi GNF Francs GRD Drachmae GTQ Quetzales GYD Dollars HKD Dollars HNL Lempiras HRK Kuna HTG Gourdes HUF Forints IDR Rupiahs IEP Pounds ILS New Shekels IMP Pounds INR Rupees IQD Dinars IRR Rials ISK Kronur ITL Lire JEP Pounds JMD Dollars JOD Dinars JPY Yen KES Shillings KGS Soms KHR Riels KMF Francs KPW Won KWD Dinars KYD Dollars KZT Tenge LAK Kips LBP Pounds LKR Rupees LRD Dollars LSL Maloti LTL Litai LUF Francs LVL Lati LYD Dinars MAD Dirhams MDL Lei MGF Malagasy Francs MKD Denars MMK Kyats MNT Tugriks MOP Patacas MRO Ouguiyas MTL Liri MUR Rupees MVR Rufiyaa MWK Kwachas MXN Pesos MYR Ringgits MZM Meticais NAD Dollars NGN Nairas NIO Gold Cordobas NLG Guilders NOK Krone NPR Nepal Rupees NZD Dollars OMR Rials PAB Balboa PEN Nuevos Soles PGK Kina PHP Pesos PKR Rupees PLN Zlotych PTE Escudos PYG Guarani QAR Rials ROL Lei RUR Rubles RWF Rwanda Francs SAR Riyals SBD Dollars SCR Rupees SDD Dinars SEK Kronor SGD Dollars SHP Pounds SIT Tolars SKK Koruny SLL Leones SOS Shillings SPL Luigini SRG Guilders STD Dobras SVC Colones SYP Pounds SZL Emalangeni THB Baht TJR Rubles TMM Manats TND Dinars TOP Pa'anga TRL Liras (old) TRY Liras TTD Dollars TVD Tuvalu Dollars TWD New Dollars TZS Shillings UAH Hryvnia UGX Shillings USD Dollars UYU Pesos UZS Sums VAL Lire VEB Bolivares VND Dong VUV Vatu WST Tala XAF Francs XAG Ounces XAU Ounces XCD Dollars XDR Special Drawing Rights XPD Ounces XPF Francs XPT Ounces YER Rials YUM New Dinars ZAR Rand ZMK Kwacha ZWD Zimbabwe Dollars */ return getid3_lib::EmbeddedLookup($currencyid, $begin, __LINE__, __FILE__, 'id3v2-currency-units'); } /** * @param string $currencyid * * @return string */ public function LookupCurrencyCountry($currencyid) { $begin = __LINE__; /** This is not a comment! AED United Arab Emirates AFA Afghanistan ALL Albania AMD Armenia ANG Netherlands Antilles AOA Angola ARS Argentina ATS Austria AUD Australia AWG Aruba AZM Azerbaijan BAM Bosnia and Herzegovina BBD Barbados BDT Bangladesh BEF Belgium BGL Bulgaria BHD Bahrain BIF Burundi BMD Bermuda BND Brunei Darussalam BOB Bolivia BRL Brazil BSD Bahamas BTN Bhutan BWP Botswana BYR Belarus BZD Belize CAD Canada CDF Congo/Kinshasa CHF Switzerland CLP Chile CNY China COP Colombia CRC Costa Rica CUP Cuba CVE Cape Verde CYP Cyprus CZK Czech Republic DEM Germany DJF Djibouti DKK Denmark DOP Dominican Republic DZD Algeria EEK Estonia EGP Egypt ERN Eritrea ESP Spain ETB Ethiopia EUR Euro Member Countries FIM Finland FJD Fiji FKP Falkland Islands (Malvinas) FRF France GBP United Kingdom GEL Georgia GGP Guernsey GHC Ghana GIP Gibraltar GMD Gambia GNF Guinea GRD Greece GTQ Guatemala GYD Guyana HKD Hong Kong HNL Honduras HRK Croatia HTG Haiti HUF Hungary IDR Indonesia IEP Ireland (Eire) ILS Israel IMP Isle of Man INR India IQD Iraq IRR Iran ISK Iceland ITL Italy JEP Jersey JMD Jamaica JOD Jordan JPY Japan KES Kenya KGS Kyrgyzstan KHR Cambodia KMF Comoros KPW Korea KWD Kuwait KYD Cayman Islands KZT Kazakstan LAK Laos LBP Lebanon LKR Sri Lanka LRD Liberia LSL Lesotho LTL Lithuania LUF Luxembourg LVL Latvia LYD Libya MAD Morocco MDL Moldova MGF Madagascar MKD Macedonia MMK Myanmar (Burma) MNT Mongolia MOP Macau MRO Mauritania MTL Malta MUR Mauritius MVR Maldives (Maldive Islands) MWK Malawi MXN Mexico MYR Malaysia MZM Mozambique NAD Namibia NGN Nigeria NIO Nicaragua NLG Netherlands (Holland) NOK Norway NPR Nepal NZD New Zealand OMR Oman PAB Panama PEN Peru PGK Papua New Guinea PHP Philippines PKR Pakistan PLN Poland PTE Portugal PYG Paraguay QAR Qatar ROL Romania RUR Russia RWF Rwanda SAR Saudi Arabia SBD Solomon Islands SCR Seychelles SDD Sudan SEK Sweden SGD Singapore SHP Saint Helena SIT Slovenia SKK Slovakia SLL Sierra Leone SOS Somalia SPL Seborga SRG Suriname STD São Tome and Principe SVC El Salvador SYP Syria SZL Swaziland THB Thailand TJR Tajikistan TMM Turkmenistan TND Tunisia TOP Tonga TRL Turkey TRY Turkey TTD Trinidad and Tobago TVD Tuvalu TWD Taiwan TZS Tanzania UAH Ukraine UGX Uganda USD United States of America UYU Uruguay UZS Uzbekistan VAL Vatican City VEB Venezuela VND Viet Nam VUV Vanuatu WST Samoa XAF Communauté Financière Africaine XAG Silver XAU Gold XCD East Caribbean XDR International Monetary Fund XPD Palladium XPF Comptoirs Français du Pacifique XPT Platinum YER Yemen YUM Yugoslavia ZAR South Africa ZMK Zambia ZWD Zimbabwe */ return getid3_lib::EmbeddedLookup($currencyid, $begin, __LINE__, __FILE__, 'id3v2-currency-country'); } /** * @param string $languagecode * @param bool $casesensitive * * @return string */ public static function LanguageLookup($languagecode, $casesensitive=false) { if (!$casesensitive) { $languagecode = strtolower($languagecode); } // http://www.id3.org/id3v2.4.0-structure.txt // [4. ID3v2 frame overview] // The three byte language field, present in several frames, is used to // describe the language of the frame's content, according to ISO-639-2 // [ISO-639-2]. The language should be represented in lower case. If the // language is not known the string "XXX" should be used. // ISO 639-2 - http://www.id3.org/iso639-2.html $begin = __LINE__; /** This is not a comment! XXX unknown xxx unknown aar Afar abk Abkhazian ace Achinese ach Acoli ada Adangme afa Afro-Asiatic (Other) afh Afrihili afr Afrikaans aka Akan akk Akkadian alb Albanian ale Aleut alg Algonquian Languages amh Amharic ang English, Old (ca. 450-1100) apa Apache Languages ara Arabic arc Aramaic arm Armenian arn Araucanian arp Arapaho art Artificial (Other) arw Arawak asm Assamese ath Athapascan Languages ava Avaric ave Avestan awa Awadhi aym Aymara aze Azerbaijani bad Banda bai Bamileke Languages bak Bashkir bal Baluchi bam Bambara ban Balinese baq Basque bas Basa bat Baltic (Other) bej Beja bel Byelorussian bem Bemba ben Bengali ber Berber (Other) bho Bhojpuri bih Bihari bik Bikol bin Bini bis Bislama bla Siksika bnt Bantu (Other) bod Tibetan bra Braj bre Breton bua Buriat bug Buginese bul Bulgarian bur Burmese cad Caddo cai Central American Indian (Other) car Carib cat Catalan cau Caucasian (Other) ceb Cebuano cel Celtic (Other) ces Czech cha Chamorro chb Chibcha che Chechen chg Chagatai chi Chinese chm Mari chn Chinook jargon cho Choctaw chr Cherokee chu Church Slavic chv Chuvash chy Cheyenne cop Coptic cor Cornish cos Corsican cpe Creoles and Pidgins, English-based (Other) cpf Creoles and Pidgins, French-based (Other) cpp Creoles and Pidgins, Portuguese-based (Other) cre Cree crp Creoles and Pidgins (Other) cus Cushitic (Other) cym Welsh cze Czech dak Dakota dan Danish del Delaware deu German din Dinka div Divehi doi Dogri dra Dravidian (Other) dua Duala dum Dutch, Middle (ca. 1050-1350) dut Dutch dyu Dyula dzo Dzongkha efi Efik egy Egyptian (Ancient) eka Ekajuk ell Greek, Modern (1453-) elx Elamite eng English enm English, Middle (ca. 1100-1500) epo Esperanto esk Eskimo (Other) esl Spanish est Estonian eus Basque ewe Ewe ewo Ewondo fan Fang fao Faroese fas Persian fat Fanti fij Fijian fin Finnish fiu Finno-Ugrian (Other) fon Fon fra French fre French frm French, Middle (ca. 1400-1600) fro French, Old (842- ca. 1400) fry Frisian ful Fulah gaa Ga gae Gaelic (Scots) gai Irish gay Gayo gdh Gaelic (Scots) gem Germanic (Other) geo Georgian ger German gez Geez gil Gilbertese glg Gallegan gmh German, Middle High (ca. 1050-1500) goh German, Old High (ca. 750-1050) gon Gondi got Gothic grb Grebo grc Greek, Ancient (to 1453) gre Greek, Modern (1453-) grn Guarani guj Gujarati hai Haida hau Hausa haw Hawaiian heb Hebrew her Herero hil Hiligaynon him Himachali hin Hindi hmo Hiri Motu hun Hungarian hup Hupa hye Armenian iba Iban ibo Igbo ice Icelandic ijo Ijo iku Inuktitut ilo Iloko ina Interlingua (International Auxiliary language Association) inc Indic (Other) ind Indonesian ine Indo-European (Other) ine Interlingue ipk Inupiak ira Iranian (Other) iri Irish iro Iroquoian uages isl Icelandic ita Italian jav Javanese jaw Javanese jpn Japanese jpr Judeo-Persian jrb Judeo-Arabic kaa Kara-Kalpak kab Kabyle kac Kachin kal Greenlandic kam Kamba kan Kannada kar Karen kas Kashmiri kat Georgian kau Kanuri kaw Kawi kaz Kazakh kha Khasi khi Khoisan (Other) khm Khmer kho Khotanese kik Kikuyu kin Kinyarwanda kir Kirghiz kok Konkani kom Komi kon Kongo kor Korean kpe Kpelle kro Kru kru Kurukh kua Kuanyama kum Kumyk kur Kurdish kus Kusaie kut Kutenai lad Ladino lah Lahnda lam Lamba lao Lao lat Latin lav Latvian lez Lezghian lin Lingala lit Lithuanian lol Mongo loz Lozi ltz Letzeburgesch lub Luba-Katanga lug Ganda lui Luiseno lun Lunda luo Luo (Kenya and Tanzania) mac Macedonian mad Madurese mag Magahi mah Marshall mai Maithili mak Macedonian mak Makasar mal Malayalam man Mandingo mao Maori map Austronesian (Other) mar Marathi mas Masai max Manx may Malay men Mende mga Irish, Middle (900 - 1200) mic Micmac min Minangkabau mis Miscellaneous (Other) mkh Mon-Kmer (Other) mlg Malagasy mlt Maltese mni Manipuri mno Manobo Languages moh Mohawk mol Moldavian mon Mongolian mos Mossi mri Maori msa Malay mul Multiple Languages mun Munda Languages mus Creek mwr Marwari mya Burmese myn Mayan Languages nah Aztec nai North American Indian (Other) nau Nauru nav Navajo nbl Ndebele, South nde Ndebele, North ndo Ndongo nep Nepali new Newari nic Niger-Kordofanian (Other) niu Niuean nla Dutch nno Norwegian (Nynorsk) non Norse, Old nor Norwegian nso Sotho, Northern nub Nubian Languages nya Nyanja nym Nyamwezi nyn Nyankole nyo Nyoro nzi Nzima oci Langue d'Oc (post 1500) oji Ojibwa ori Oriya orm Oromo osa Osage oss Ossetic ota Turkish, Ottoman (1500 - 1928) oto Otomian Languages paa Papuan-Australian (Other) pag Pangasinan pal Pahlavi pam Pampanga pan Panjabi pap Papiamento pau Palauan peo Persian, Old (ca 600 - 400 B.C.) per Persian phn Phoenician pli Pali pol Polish pon Ponape por Portuguese pra Prakrit uages pro Provencal, Old (to 1500) pus Pushto que Quechua raj Rajasthani rar Rarotongan roa Romance (Other) roh Rhaeto-Romance rom Romany ron Romanian rum Romanian run Rundi rus Russian sad Sandawe sag Sango sah Yakut sai South American Indian (Other) sal Salishan Languages sam Samaritan Aramaic san Sanskrit sco Scots scr Serbo-Croatian sel Selkup sem Semitic (Other) sga Irish, Old (to 900) shn Shan sid Sidamo sin Singhalese sio Siouan Languages sit Sino-Tibetan (Other) sla Slavic (Other) slk Slovak slo Slovak slv Slovenian smi Sami Languages smo Samoan sna Shona snd Sindhi sog Sogdian som Somali son Songhai sot Sotho, Southern spa Spanish sqi Albanian srd Sardinian srr Serer ssa Nilo-Saharan (Other) ssw Siswant ssw Swazi suk Sukuma sun Sudanese sus Susu sux Sumerian sve Swedish swa Swahili swe Swedish syr Syriac tah Tahitian tam Tamil tat Tatar tel Telugu tem Timne ter Tereno tgk Tajik tgl Tagalog tha Thai tib Tibetan tig Tigre tir Tigrinya tiv Tivi tli Tlingit tmh Tamashek tog Tonga (Nyasa) ton Tonga (Tonga Islands) tru Truk tsi Tsimshian tsn Tswana tso Tsonga tuk Turkmen tum Tumbuka tur Turkish tut Altaic (Other) twi Twi tyv Tuvinian uga Ugaritic uig Uighur ukr Ukrainian umb Umbundu und Undetermined urd Urdu uzb Uzbek vai Vai ven Venda vie Vietnamese vol Volapük vot Votic wak Wakashan Languages wal Walamo war Waray was Washo wel Welsh wen Sorbian Languages wol Wolof xho Xhosa yao Yao yap Yap yid Yiddish yor Yoruba zap Zapotec zen Zenaga zha Zhuang zho Chinese zul Zulu zun Zuni */ return getid3_lib::EmbeddedLookup($languagecode, $begin, __LINE__, __FILE__, 'id3v2-languagecode'); } /** * @param int $index * * @return string */ public static function ETCOEventLookup($index) { if (($index >= 0x17) && ($index <= 0xDF)) { return 'reserved for future use'; } if (($index >= 0xE0) && ($index <= 0xEF)) { return 'not predefined synch 0-F'; } if (($index >= 0xF0) && ($index <= 0xFC)) { return 'reserved for future use'; } static $EventLookup = array( 0x00 => 'padding (has no meaning)', 0x01 => 'end of initial silence', 0x02 => 'intro start', 0x03 => 'main part start', 0x04 => 'outro start', 0x05 => 'outro end', 0x06 => 'verse start', 0x07 => 'refrain start', 0x08 => 'interlude start', 0x09 => 'theme start', 0x0A => 'variation start', 0x0B => 'key change', 0x0C => 'time change', 0x0D => 'momentary unwanted noise (Snap, Crackle & Pop)', 0x0E => 'sustained noise', 0x0F => 'sustained noise end', 0x10 => 'intro end', 0x11 => 'main part end', 0x12 => 'verse end', 0x13 => 'refrain end', 0x14 => 'theme end', 0x15 => 'profanity', 0x16 => 'profanity end', 0xFD => 'audio end (start of silence)', 0xFE => 'audio file ends', 0xFF => 'one more byte of events follows' ); return (isset($EventLookup[$index]) ? $EventLookup[$index] : ''); } /** * @param int $index * * @return string */ public static function SYTLContentTypeLookup($index) { static $SYTLContentTypeLookup = array( 0x00 => 'other', 0x01 => 'lyrics', 0x02 => 'text transcription', 0x03 => 'movement/part name', // (e.g. 'Adagio') 0x04 => 'events', // (e.g. 'Don Quijote enters the stage') 0x05 => 'chord', // (e.g. 'Bb F Fsus') 0x06 => 'trivia/\'pop up\' information', 0x07 => 'URLs to webpages', 0x08 => 'URLs to images' ); return (isset($SYTLContentTypeLookup[$index]) ? $SYTLContentTypeLookup[$index] : ''); } /** * @param int $index * @param bool $returnarray * * @return array|string */ public static function APICPictureTypeLookup($index, $returnarray=false) { static $APICPictureTypeLookup = array( 0x00 => 'Other', 0x01 => '32x32 pixels \'file icon\' (PNG only)', 0x02 => 'Other file icon', 0x03 => 'Cover (front)', 0x04 => 'Cover (back)', 0x05 => 'Leaflet page', 0x06 => 'Media (e.g. label side of CD)', 0x07 => 'Lead artist/lead performer/soloist', 0x08 => 'Artist/performer', 0x09 => 'Conductor', 0x0A => 'Band/Orchestra', 0x0B => 'Composer', 0x0C => 'Lyricist/text writer', 0x0D => 'Recording Location', 0x0E => 'During recording', 0x0F => 'During performance', 0x10 => 'Movie/video screen capture', 0x11 => 'A bright coloured fish', 0x12 => 'Illustration', 0x13 => 'Band/artist logotype', 0x14 => 'Publisher/Studio logotype' ); if ($returnarray) { return $APICPictureTypeLookup; } return (isset($APICPictureTypeLookup[$index]) ? $APICPictureTypeLookup[$index] : ''); } /** * @param int $index * * @return string */ public static function COMRReceivedAsLookup($index) { static $COMRReceivedAsLookup = array( 0x00 => 'Other', 0x01 => 'Standard CD album with other songs', 0x02 => 'Compressed audio on CD', 0x03 => 'File over the Internet', 0x04 => 'Stream over the Internet', 0x05 => 'As note sheets', 0x06 => 'As note sheets in a book with other sheets', 0x07 => 'Music on other media', 0x08 => 'Non-musical merchandise' ); return (isset($COMRReceivedAsLookup[$index]) ? $COMRReceivedAsLookup[$index] : ''); } /** * @param int $index * * @return string */ public static function RVA2ChannelTypeLookup($index) { static $RVA2ChannelTypeLookup = array( 0x00 => 'Other', 0x01 => 'Master volume', 0x02 => 'Front right', 0x03 => 'Front left', 0x04 => 'Back right', 0x05 => 'Back left', 0x06 => 'Front centre', 0x07 => 'Back centre', 0x08 => 'Subwoofer' ); return (isset($RVA2ChannelTypeLookup[$index]) ? $RVA2ChannelTypeLookup[$index] : ''); } /** * @param string $framename * * @return string */ public static function FrameNameLongLookup($framename) { $begin = __LINE__; /** This is not a comment! AENC Audio encryption APIC Attached picture ASPI Audio seek point index BUF Recommended buffer size CNT Play counter COM Comments COMM Comments COMR Commercial frame CRA Audio encryption CRM Encrypted meta frame ENCR Encryption method registration EQU Equalisation EQU2 Equalisation (2) EQUA Equalisation ETC Event timing codes ETCO Event timing codes GEO General encapsulated object GEOB General encapsulated object GRID Group identification registration IPL Involved people list IPLS Involved people list LINK Linked information LNK Linked information MCDI Music CD identifier MCI Music CD Identifier MLL MPEG location lookup table MLLT MPEG location lookup table OWNE Ownership frame PCNT Play counter PIC Attached picture POP Popularimeter POPM Popularimeter POSS Position synchronisation frame PRIV Private frame RBUF Recommended buffer size REV Reverb RVA Relative volume adjustment RVA2 Relative volume adjustment (2) RVAD Relative volume adjustment RVRB Reverb SEEK Seek frame SIGN Signature frame SLT Synchronised lyric/text STC Synced tempo codes SYLT Synchronised lyric/text SYTC Synchronised tempo codes TAL Album/Movie/Show title TALB Album/Movie/Show title TBP BPM (Beats Per Minute) TBPM BPM (beats per minute) TCM Composer TCMP Part of a compilation TCO Content type TCOM Composer TCON Content type TCOP Copyright message TCP Part of a compilation TCR Copyright message TDA Date TDAT Date TDEN Encoding time TDLY Playlist delay TDOR Original release time TDRC Recording time TDRL Release time TDTG Tagging time TDY Playlist delay TEN Encoded by TENC Encoded by TEXT Lyricist/Text writer TFLT File type TFT File type TIM Time TIME Time TIPL Involved people list TIT1 Content group description TIT2 Title/songname/content description TIT3 Subtitle/Description refinement TKE Initial key TKEY Initial key TLA Language(s) TLAN Language(s) TLE Length TLEN Length TMCL Musician credits list TMED Media type TMOO Mood TMT Media type TOA Original artist(s)/performer(s) TOAL Original album/movie/show title TOF Original filename TOFN Original filename TOL Original Lyricist(s)/text writer(s) TOLY Original lyricist(s)/text writer(s) TOPE Original artist(s)/performer(s) TOR Original release year TORY Original release year TOT Original album/Movie/Show title TOWN File owner/licensee TP1 Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group TP2 Band/Orchestra/Accompaniment TP3 Conductor/Performer refinement TP4 Interpreted, remixed, or otherwise modified by TPA Part of a set TPB Publisher TPE1 Lead performer(s)/Soloist(s) TPE2 Band/orchestra/accompaniment TPE3 Conductor/performer refinement TPE4 Interpreted, remixed, or otherwise modified by TPOS Part of a set TPRO Produced notice TPUB Publisher TRC ISRC (International Standard Recording Code) TRCK Track number/Position in set TRD Recording dates TRDA Recording dates TRK Track number/Position in set TRSN Internet radio station name TRSO Internet radio station owner TS2 Album-Artist sort order TSA Album sort order TSC Composer sort order TSI Size TSIZ Size TSO2 Album-Artist sort order TSOA Album sort order TSOC Composer sort order TSOP Performer sort order TSOT Title sort order TSP Performer sort order TSRC ISRC (international standard recording code) TSS Software/hardware and settings used for encoding TSSE Software/Hardware and settings used for encoding TSST Set subtitle TST Title sort order TT1 Content group description TT2 Title/Songname/Content description TT3 Subtitle/Description refinement TXT Lyricist/text writer TXX User defined text information frame TXXX User defined text information frame TYE Year TYER Year UFI Unique file identifier UFID Unique file identifier ULT Unsynchronised lyric/text transcription USER Terms of use USLT Unsynchronised lyric/text transcription WAF Official audio file webpage WAR Official artist/performer webpage WAS Official audio source webpage WCM Commercial information WCOM Commercial information WCOP Copyright/Legal information WCP Copyright/Legal information WOAF Official audio file webpage WOAR Official artist/performer webpage WOAS Official audio source webpage WORS Official Internet radio station homepage WPAY Payment WPB Publishers official webpage WPUB Publishers official webpage WXX User defined URL link frame WXXX User defined URL link frame TFEA Featured Artist TSTU Recording Studio rgad Replay Gain Adjustment */ return getid3_lib::EmbeddedLookup($framename, $begin, __LINE__, __FILE__, 'id3v2-framename_long'); // Last three: // from Helium2 [www.helium2.com] // from http://privatewww.essex.ac.uk/~djmrob/replaygain/file_format_id3v2.html } /** * @param string $framename * * @return string */ public static function FrameNameShortLookup($framename) { $begin = __LINE__; /** This is not a comment! AENC audio_encryption APIC attached_picture ASPI audio_seek_point_index BUF recommended_buffer_size CNT play_counter COM comment COMM comment COMR commercial_frame CRA audio_encryption CRM encrypted_meta_frame ENCR encryption_method_registration EQU equalisation EQU2 equalisation EQUA equalisation ETC event_timing_codes ETCO event_timing_codes GEO general_encapsulated_object GEOB general_encapsulated_object GRID group_identification_registration IPL involved_people_list IPLS involved_people_list LINK linked_information LNK linked_information MCDI music_cd_identifier MCI music_cd_identifier MLL mpeg_location_lookup_table MLLT mpeg_location_lookup_table OWNE ownership_frame PCNT play_counter PIC attached_picture POP popularimeter POPM popularimeter POSS position_synchronisation_frame PRIV private_frame RBUF recommended_buffer_size REV reverb RVA relative_volume_adjustment RVA2 relative_volume_adjustment RVAD relative_volume_adjustment RVRB reverb SEEK seek_frame SIGN signature_frame SLT synchronised_lyric STC synced_tempo_codes SYLT synchronised_lyric SYTC synchronised_tempo_codes TAL album TALB album TBP bpm TBPM bpm TCM composer TCMP part_of_a_compilation TCO genre TCOM composer TCON genre TCOP copyright_message TCP part_of_a_compilation TCR copyright_message TDA date TDAT date TDEN encoding_time TDLY playlist_delay TDOR original_release_time TDRC recording_time TDRL release_time TDTG tagging_time TDY playlist_delay TEN encoded_by TENC encoded_by TEXT lyricist TFLT file_type TFT file_type TIM time TIME time TIPL involved_people_list TIT1 content_group_description TIT2 title TIT3 subtitle TKE initial_key TKEY initial_key TLA language TLAN language TLE length TLEN length TMCL musician_credits_list TMED media_type TMOO mood TMT media_type TOA original_artist TOAL original_album TOF original_filename TOFN original_filename TOL original_lyricist TOLY original_lyricist TOPE original_artist TOR original_year TORY original_year TOT original_album TOWN file_owner TP1 artist TP2 band TP3 conductor TP4 remixer TPA part_of_a_set TPB publisher TPE1 artist TPE2 band TPE3 conductor TPE4 remixer TPOS part_of_a_set TPRO produced_notice TPUB publisher TRC isrc TRCK track_number TRD recording_dates TRDA recording_dates TRK track_number TRSN internet_radio_station_name TRSO internet_radio_station_owner TS2 album_artist_sort_order TSA album_sort_order TSC composer_sort_order TSI size TSIZ size TSO2 album_artist_sort_order TSOA album_sort_order TSOC composer_sort_order TSOP performer_sort_order TSOT title_sort_order TSP performer_sort_order TSRC isrc TSS encoder_settings TSSE encoder_settings TSST set_subtitle TST title_sort_order TT1 content_group_description TT2 title TT3 subtitle TXT lyricist TXX text TXXX text TYE year TYER year UFI unique_file_identifier UFID unique_file_identifier ULT unsynchronised_lyric USER terms_of_use USLT unsynchronised_lyric WAF url_file WAR url_artist WAS url_source WCM commercial_information WCOM commercial_information WCOP copyright WCP copyright WOAF url_file WOAR url_artist WOAS url_source WORS url_station WPAY url_payment WPB url_publisher WPUB url_publisher WXX url_user WXXX url_user TFEA featured_artist TSTU recording_studio rgad replay_gain_adjustment */ return getid3_lib::EmbeddedLookup($framename, $begin, __LINE__, __FILE__, 'id3v2-framename_short'); } /** * @param string $encoding * * @return string */ public static function TextEncodingTerminatorLookup($encoding) { // http://www.id3.org/id3v2.4.0-structure.txt // Frames that allow different types of text encoding contains a text encoding description byte. Possible encodings: static $TextEncodingTerminatorLookup = array( 0 => "\x00", // $00 ISO-8859-1. Terminated with $00. 1 => "\x00\x00", // $01 UTF-16 encoded Unicode with BOM. All strings in the same frame SHALL have the same byteorder. Terminated with $00 00. 2 => "\x00\x00", // $02 UTF-16BE encoded Unicode without BOM. Terminated with $00 00. 3 => "\x00", // $03 UTF-8 encoded Unicode. Terminated with $00. 255 => "\x00\x00" ); return (isset($TextEncodingTerminatorLookup[$encoding]) ? $TextEncodingTerminatorLookup[$encoding] : "\x00"); } /** * @param int $encoding * * @return string */ public static function TextEncodingNameLookup($encoding) { // http://www.id3.org/id3v2.4.0-structure.txt // Frames that allow different types of text encoding contains a text encoding description byte. Possible encodings: static $TextEncodingNameLookup = array( 0 => 'ISO-8859-1', // $00 ISO-8859-1. Terminated with $00. 1 => 'UTF-16', // $01 UTF-16 encoded Unicode with BOM. All strings in the same frame SHALL have the same byteorder. Terminated with $00 00. 2 => 'UTF-16BE', // $02 UTF-16BE encoded Unicode without BOM. Terminated with $00 00. 3 => 'UTF-8', // $03 UTF-8 encoded Unicode. Terminated with $00. 255 => 'UTF-16BE' ); return (isset($TextEncodingNameLookup[$encoding]) ? $TextEncodingNameLookup[$encoding] : 'ISO-8859-1'); } /** * @param string $string * @param string $terminator * * @return string */ public static function RemoveStringTerminator($string, $terminator) { // Null terminator at end of comment string is somewhat ambiguous in the specification, may or may not be implemented by various taggers. Remove terminator only if present. // https://github.com/JamesHeinrich/getID3/issues/121 // https://community.mp3tag.de/t/x-trailing-nulls-in-id3v2-comments/19227 if (substr($string, -strlen($terminator), strlen($terminator)) === $terminator) { $string = substr($string, 0, -strlen($terminator)); } return $string; } /** * @param string $string * * @return string */ public static function MakeUTF16emptyStringEmpty($string) { if (in_array($string, array("\x00", "\x00\x00", "\xFF\xFE", "\xFE\xFF"))) { // if string only contains a BOM or terminator then make it actually an empty string $string = ''; } return $string; } /** * @param string $framename * @param int $id3v2majorversion * * @return bool|int */ public static function IsValidID3v2FrameName($framename, $id3v2majorversion) { switch ($id3v2majorversion) { case 2: return preg_match('#[A-Z][A-Z0-9]{2}#', $framename); case 3: case 4: return preg_match('#[A-Z][A-Z0-9]{3}#', $framename); } return false; } /** * @param string $numberstring * @param bool $allowdecimal * @param bool $allownegative * * @return bool */ public static function IsANumber($numberstring, $allowdecimal=false, $allownegative=false) { $pattern = '#^'; $pattern .= ($allownegative ? '\\-?' : ''); $pattern .= '[0-9]+'; $pattern .= ($allowdecimal ? '(\\.[0-9]+)?' : ''); $pattern .= '$#'; return preg_match($pattern, $numberstring); } /** * @param string $datestamp * * @return bool */ public static function IsValidDateStampString($datestamp) { if (!preg_match('#^[12][0-9]{3}[01][0-9][0123][0-9]$#', $datestamp)) { return false; } $year = substr($datestamp, 0, 4); $month = substr($datestamp, 4, 2); $day = substr($datestamp, 6, 2); if (($year == 0) || ($month == 0) || ($day == 0)) { return false; } if ($month > 12) { return false; } if ($day > 31) { return false; } if (($day > 30) && (($month == 4) || ($month == 6) || ($month == 9) || ($month == 11))) { return false; } if (($day > 29) && ($month == 2)) { return false; } return true; } /** * @param int $majorversion * * @return int */ public static function ID3v2HeaderLength($majorversion) { return (($majorversion == 2) ? 6 : 10); } /** * @param string $frame_name * * @return string|false */ public static function ID3v22iTunesBrokenFrameName($frame_name) { // iTunes (multiple versions) has been known to write ID3v2.3 style frames // but use ID3v2.2 frame names, right-padded using either [space] or [null] // to make them fit in the 4-byte frame name space of the ID3v2.3 frame. // This function will detect and translate the corrupt frame name into ID3v2.3 standard. static $ID3v22_iTunes_BrokenFrames = array( 'BUF' => 'RBUF', // Recommended buffer size 'CNT' => 'PCNT', // Play counter 'COM' => 'COMM', // Comments 'CRA' => 'AENC', // Audio encryption 'EQU' => 'EQUA', // Equalisation 'ETC' => 'ETCO', // Event timing codes 'GEO' => 'GEOB', // General encapsulated object 'IPL' => 'IPLS', // Involved people list 'LNK' => 'LINK', // Linked information 'MCI' => 'MCDI', // Music CD identifier 'MLL' => 'MLLT', // MPEG location lookup table 'PIC' => 'APIC', // Attached picture 'POP' => 'POPM', // Popularimeter 'REV' => 'RVRB', // Reverb 'RVA' => 'RVAD', // Relative volume adjustment 'SLT' => 'SYLT', // Synchronised lyric/text 'STC' => 'SYTC', // Synchronised tempo codes 'TAL' => 'TALB', // Album/Movie/Show title 'TBP' => 'TBPM', // BPM (beats per minute) 'TCM' => 'TCOM', // Composer 'TCO' => 'TCON', // Content type 'TCP' => 'TCMP', // Part of a compilation 'TCR' => 'TCOP', // Copyright message 'TDA' => 'TDAT', // Date 'TDY' => 'TDLY', // Playlist delay 'TEN' => 'TENC', // Encoded by 'TFT' => 'TFLT', // File type 'TIM' => 'TIME', // Time 'TKE' => 'TKEY', // Initial key 'TLA' => 'TLAN', // Language(s) 'TLE' => 'TLEN', // Length 'TMT' => 'TMED', // Media type 'TOA' => 'TOPE', // Original artist(s)/performer(s) 'TOF' => 'TOFN', // Original filename 'TOL' => 'TOLY', // Original lyricist(s)/text writer(s) 'TOR' => 'TORY', // Original release year 'TOT' => 'TOAL', // Original album/movie/show title 'TP1' => 'TPE1', // Lead performer(s)/Soloist(s) 'TP2' => 'TPE2', // Band/orchestra/accompaniment 'TP3' => 'TPE3', // Conductor/performer refinement 'TP4' => 'TPE4', // Interpreted, remixed, or otherwise modified by 'TPA' => 'TPOS', // Part of a set 'TPB' => 'TPUB', // Publisher 'TRC' => 'TSRC', // ISRC (international standard recording code) 'TRD' => 'TRDA', // Recording dates 'TRK' => 'TRCK', // Track number/Position in set 'TS2' => 'TSO2', // Album-Artist sort order 'TSA' => 'TSOA', // Album sort order 'TSC' => 'TSOC', // Composer sort order 'TSI' => 'TSIZ', // Size 'TSP' => 'TSOP', // Performer sort order 'TSS' => 'TSSE', // Software/Hardware and settings used for encoding 'TST' => 'TSOT', // Title sort order 'TT1' => 'TIT1', // Content group description 'TT2' => 'TIT2', // Title/songname/content description 'TT3' => 'TIT3', // Subtitle/Description refinement 'TXT' => 'TEXT', // Lyricist/Text writer 'TXX' => 'TXXX', // User defined text information frame 'TYE' => 'TYER', // Year 'UFI' => 'UFID', // Unique file identifier 'ULT' => 'USLT', // Unsynchronised lyric/text transcription 'WAF' => 'WOAF', // Official audio file webpage 'WAR' => 'WOAR', // Official artist/performer webpage 'WAS' => 'WOAS', // Official audio source webpage 'WCM' => 'WCOM', // Commercial information 'WCP' => 'WCOP', // Copyright/Legal information 'WPB' => 'WPUB', // Publishers official webpage 'WXX' => 'WXXX', // User defined URL link frame ); if (strlen($frame_name) == 4) { if ((substr($frame_name, 3, 1) == ' ') || (substr($frame_name, 3, 1) == "\x00")) { if (isset($ID3v22_iTunes_BrokenFrames[substr($frame_name, 0, 3)])) { return $ID3v22_iTunes_BrokenFrames[substr($frame_name, 0, 3)]; } } } return false; } } module.audio-video.flv.php000064400000064774152233444720011564 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio-video.flv.php // // module for analyzing Shockwave Flash Video files // // dependencies: NONE // // // ///////////////////////////////////////////////////////////////// // // // FLV module by Seth Kaufman // // // // * version 0.1 (26 June 2005) // // // // * version 0.1.1 (15 July 2005) // // minor modifications by James Heinrich // // // // * version 0.2 (22 February 2006) // // Support for On2 VP6 codec and meta information // // by Steve Webster // // // // * version 0.3 (15 June 2006) // // Modified to not read entire file into memory // // by James Heinrich // // // // * version 0.4 (07 December 2007) // // Bugfixes for incorrectly parsed FLV dimensions // // and incorrect parsing of onMetaTag // // by Evgeny Moysevich // // // // * version 0.5 (21 May 2009) // // Fixed parsing of audio tags and added additional codec // // details. The duration is now read from onMetaTag (if // // exists), rather than parsing whole file // // by Nigel Barnes // // // // * version 0.6 (24 May 2009) // // Better parsing of files with h264 video // // by Evgeny Moysevich // // // // * version 0.6.1 (30 May 2011) // // prevent infinite loops in expGolombUe() // // // // * version 0.7.0 (16 Jul 2013) // // handle GETID3_FLV_VIDEO_VP6FLV_ALPHA // // improved AVCSequenceParameterSetReader::readData() // // by Xander Schouwerwou // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } define('GETID3_FLV_TAG_AUDIO', 8); define('GETID3_FLV_TAG_VIDEO', 9); define('GETID3_FLV_TAG_META', 18); define('GETID3_FLV_VIDEO_H263', 2); define('GETID3_FLV_VIDEO_SCREEN', 3); define('GETID3_FLV_VIDEO_VP6FLV', 4); define('GETID3_FLV_VIDEO_VP6FLV_ALPHA', 5); define('GETID3_FLV_VIDEO_SCREENV2', 6); define('GETID3_FLV_VIDEO_H264', 7); define('H264_AVC_SEQUENCE_HEADER', 0); define('H264_PROFILE_BASELINE', 66); define('H264_PROFILE_MAIN', 77); define('H264_PROFILE_EXTENDED', 88); define('H264_PROFILE_HIGH', 100); define('H264_PROFILE_HIGH10', 110); define('H264_PROFILE_HIGH422', 122); define('H264_PROFILE_HIGH444', 144); define('H264_PROFILE_HIGH444_PREDICTIVE', 244); class getid3_flv extends getid3_handler { const magic = 'FLV'; /** * Break out of the loop if too many frames have been scanned; only scan this * many if meta frame does not contain useful duration. * * @var int */ public $max_frames = 100000; /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; $this->fseek($info['avdataoffset']); $FLVdataLength = $info['avdataend'] - $info['avdataoffset']; $FLVheader = $this->fread(5); $info['fileformat'] = 'flv'; $info['flv']['header']['signature'] = substr($FLVheader, 0, 3); $info['flv']['header']['version'] = getid3_lib::BigEndian2Int(substr($FLVheader, 3, 1)); $TypeFlags = getid3_lib::BigEndian2Int(substr($FLVheader, 4, 1)); if ($info['flv']['header']['signature'] != self::magic) { $this->error('Expecting "'.getid3_lib::PrintHexBytes(self::magic).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes($info['flv']['header']['signature']).'"'); unset($info['flv'], $info['fileformat']); return false; } $info['flv']['header']['hasAudio'] = (bool) ($TypeFlags & 0x04); $info['flv']['header']['hasVideo'] = (bool) ($TypeFlags & 0x01); $FrameSizeDataLength = getid3_lib::BigEndian2Int($this->fread(4)); $FLVheaderFrameLength = 9; if ($FrameSizeDataLength > $FLVheaderFrameLength) { $this->fseek($FrameSizeDataLength - $FLVheaderFrameLength, SEEK_CUR); } $Duration = 0; $found_video = false; $found_audio = false; $found_meta = false; $found_valid_meta_playtime = false; $tagParseCount = 0; $info['flv']['framecount'] = array('total'=>0, 'audio'=>0, 'video'=>0); $flv_framecount = &$info['flv']['framecount']; while ((($this->ftell() + 16) < $info['avdataend']) && (($tagParseCount++ <= $this->max_frames) || !$found_valid_meta_playtime)) { $ThisTagHeader = $this->fread(16); $PreviousTagLength = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 0, 4)); $TagType = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 4, 1)); $DataLength = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 5, 3)); $Timestamp = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 8, 3)); $LastHeaderByte = getid3_lib::BigEndian2Int(substr($ThisTagHeader, 15, 1)); $NextOffset = $this->ftell() - 1 + $DataLength; if ($Timestamp > $Duration) { $Duration = $Timestamp; } $flv_framecount['total']++; switch ($TagType) { case GETID3_FLV_TAG_AUDIO: $flv_framecount['audio']++; if (!$found_audio) { $found_audio = true; $info['flv']['audio']['audioFormat'] = ($LastHeaderByte >> 4) & 0x0F; $info['flv']['audio']['audioRate'] = ($LastHeaderByte >> 2) & 0x03; $info['flv']['audio']['audioSampleSize'] = ($LastHeaderByte >> 1) & 0x01; $info['flv']['audio']['audioType'] = $LastHeaderByte & 0x01; } break; case GETID3_FLV_TAG_VIDEO: $flv_framecount['video']++; if (!$found_video) { $found_video = true; $info['flv']['video']['videoCodec'] = $LastHeaderByte & 0x07; $FLVvideoHeader = $this->fread(11); $PictureSizeEnc = array(); if ($info['flv']['video']['videoCodec'] == GETID3_FLV_VIDEO_H264) { // this code block contributed by: moysevichØgmail*com $AVCPacketType = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 0, 1)); if ($AVCPacketType == H264_AVC_SEQUENCE_HEADER) { // read AVCDecoderConfigurationRecord $configurationVersion = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 4, 1)); $AVCProfileIndication = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 5, 1)); $profile_compatibility = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 6, 1)); $lengthSizeMinusOne = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 7, 1)); $numOfSequenceParameterSets = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 8, 1)); if (($numOfSequenceParameterSets & 0x1F) != 0) { // there is at least one SequenceParameterSet // read size of the first SequenceParameterSet //$spsSize = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 9, 2)); $spsSize = getid3_lib::LittleEndian2Int(substr($FLVvideoHeader, 9, 2)); // read the first SequenceParameterSet $sps = $this->fread($spsSize); if (strlen($sps) == $spsSize) { // make sure that whole SequenceParameterSet was red $spsReader = new AVCSequenceParameterSetReader($sps); $spsReader->readData(); $info['video']['resolution_x'] = $spsReader->getWidth(); $info['video']['resolution_y'] = $spsReader->getHeight(); } } } // end: moysevichØgmail*com } elseif ($info['flv']['video']['videoCodec'] == GETID3_FLV_VIDEO_H263) { $PictureSizeType = (getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 3, 2))) >> 7; $PictureSizeType = $PictureSizeType & 0x0007; $info['flv']['header']['videoSizeType'] = $PictureSizeType; switch ($PictureSizeType) { case 0: //$PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 5, 2)); //$PictureSizeEnc <<= 1; //$info['video']['resolution_x'] = ($PictureSizeEnc & 0xFF00) >> 8; //$PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 6, 2)); //$PictureSizeEnc <<= 1; //$info['video']['resolution_y'] = ($PictureSizeEnc & 0xFF00) >> 8; $PictureSizeEnc['x'] = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 4, 2)) >> 7; $PictureSizeEnc['y'] = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 5, 2)) >> 7; $info['video']['resolution_x'] = $PictureSizeEnc['x'] & 0xFF; $info['video']['resolution_y'] = $PictureSizeEnc['y'] & 0xFF; break; case 1: $PictureSizeEnc['x'] = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 4, 3)) >> 7; $PictureSizeEnc['y'] = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 6, 3)) >> 7; $info['video']['resolution_x'] = $PictureSizeEnc['x'] & 0xFFFF; $info['video']['resolution_y'] = $PictureSizeEnc['y'] & 0xFFFF; break; case 2: $info['video']['resolution_x'] = 352; $info['video']['resolution_y'] = 288; break; case 3: $info['video']['resolution_x'] = 176; $info['video']['resolution_y'] = 144; break; case 4: $info['video']['resolution_x'] = 128; $info['video']['resolution_y'] = 96; break; case 5: $info['video']['resolution_x'] = 320; $info['video']['resolution_y'] = 240; break; case 6: $info['video']['resolution_x'] = 160; $info['video']['resolution_y'] = 120; break; default: $info['video']['resolution_x'] = 0; $info['video']['resolution_y'] = 0; break; } } elseif ($info['flv']['video']['videoCodec'] == GETID3_FLV_VIDEO_VP6FLV_ALPHA) { /* contributed by schouwerwouØgmail*com */ if (!isset($info['video']['resolution_x'])) { // only when meta data isn't set $PictureSizeEnc['x'] = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 6, 2)); $PictureSizeEnc['y'] = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 7, 2)); $info['video']['resolution_x'] = ($PictureSizeEnc['x'] & 0xFF) << 3; $info['video']['resolution_y'] = ($PictureSizeEnc['y'] & 0xFF) << 3; } /* end schouwerwouØgmail*com */ } if (!empty($info['video']['resolution_x']) && !empty($info['video']['resolution_y'])) { $info['video']['pixel_aspect_ratio'] = $info['video']['resolution_x'] / $info['video']['resolution_y']; } } break; // Meta tag case GETID3_FLV_TAG_META: if (!$found_meta) { $found_meta = true; $this->fseek(-1, SEEK_CUR); $datachunk = $this->fread($DataLength); $AMFstream = new AMFStream($datachunk); $reader = new AMFReader($AMFstream); $eventName = $reader->readData(); $info['flv']['meta'][$eventName] = $reader->readData(); unset($reader); $copykeys = array('framerate'=>'frame_rate', 'width'=>'resolution_x', 'height'=>'resolution_y', 'audiodatarate'=>'bitrate', 'videodatarate'=>'bitrate'); foreach ($copykeys as $sourcekey => $destkey) { if (isset($info['flv']['meta']['onMetaData'][$sourcekey])) { switch ($sourcekey) { case 'width': case 'height': $info['video'][$destkey] = intval(round($info['flv']['meta']['onMetaData'][$sourcekey])); break; case 'audiodatarate': $info['audio'][$destkey] = getid3_lib::CastAsInt(round($info['flv']['meta']['onMetaData'][$sourcekey] * 1000)); break; case 'videodatarate': case 'frame_rate': default: $info['video'][$destkey] = $info['flv']['meta']['onMetaData'][$sourcekey]; break; } } } if (!empty($info['flv']['meta']['onMetaData']['duration'])) { $found_valid_meta_playtime = true; } } break; default: // noop break; } $this->fseek($NextOffset); } $info['playtime_seconds'] = $Duration / 1000; if ($info['playtime_seconds'] > 0) { $info['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / $info['playtime_seconds']; } if ($info['flv']['header']['hasAudio']) { $info['audio']['codec'] = self::audioFormatLookup($info['flv']['audio']['audioFormat']); $info['audio']['sample_rate'] = self::audioRateLookup($info['flv']['audio']['audioRate']); $info['audio']['bits_per_sample'] = self::audioBitDepthLookup($info['flv']['audio']['audioSampleSize']); $info['audio']['channels'] = $info['flv']['audio']['audioType'] + 1; // 0=mono,1=stereo $info['audio']['lossless'] = ($info['flv']['audio']['audioFormat'] ? false : true); // 0=uncompressed $info['audio']['dataformat'] = 'flv'; } if (!empty($info['flv']['header']['hasVideo'])) { $info['video']['codec'] = self::videoCodecLookup($info['flv']['video']['videoCodec']); $info['video']['dataformat'] = 'flv'; $info['video']['lossless'] = false; } // Set information from meta if (!empty($info['flv']['meta']['onMetaData']['duration'])) { $info['playtime_seconds'] = $info['flv']['meta']['onMetaData']['duration']; $info['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / $info['playtime_seconds']; } if (isset($info['flv']['meta']['onMetaData']['audiocodecid'])) { $info['audio']['codec'] = self::audioFormatLookup($info['flv']['meta']['onMetaData']['audiocodecid']); } if (isset($info['flv']['meta']['onMetaData']['videocodecid'])) { $info['video']['codec'] = self::videoCodecLookup($info['flv']['meta']['onMetaData']['videocodecid']); } return true; } /** * @param int $id * * @return string|false */ public static function audioFormatLookup($id) { static $lookup = array( 0 => 'Linear PCM, platform endian', 1 => 'ADPCM', 2 => 'mp3', 3 => 'Linear PCM, little endian', 4 => 'Nellymoser 16kHz mono', 5 => 'Nellymoser 8kHz mono', 6 => 'Nellymoser', 7 => 'G.711A-law logarithmic PCM', 8 => 'G.711 mu-law logarithmic PCM', 9 => 'reserved', 10 => 'AAC', 11 => 'Speex', 12 => false, // unknown? 13 => false, // unknown? 14 => 'mp3 8kHz', 15 => 'Device-specific sound', ); return (isset($lookup[$id]) ? $lookup[$id] : false); } /** * @param int $id * * @return int|false */ public static function audioRateLookup($id) { static $lookup = array( 0 => 5500, 1 => 11025, 2 => 22050, 3 => 44100, ); return (isset($lookup[$id]) ? $lookup[$id] : false); } /** * @param int $id * * @return int|false */ public static function audioBitDepthLookup($id) { static $lookup = array( 0 => 8, 1 => 16, ); return (isset($lookup[$id]) ? $lookup[$id] : false); } /** * @param int $id * * @return string|false */ public static function videoCodecLookup($id) { static $lookup = array( GETID3_FLV_VIDEO_H263 => 'Sorenson H.263', GETID3_FLV_VIDEO_SCREEN => 'Screen video', GETID3_FLV_VIDEO_VP6FLV => 'On2 VP6', GETID3_FLV_VIDEO_VP6FLV_ALPHA => 'On2 VP6 with alpha channel', GETID3_FLV_VIDEO_SCREENV2 => 'Screen video v2', GETID3_FLV_VIDEO_H264 => 'Sorenson H.264', ); return (isset($lookup[$id]) ? $lookup[$id] : false); } } class AMFStream { /** * @var string */ public $bytes; /** * @var int */ public $pos; /** * @param string $bytes */ public function __construct(&$bytes) { $this->bytes =& $bytes; $this->pos = 0; } /** * @return int */ public function readByte() { // 8-bit return ord(substr($this->bytes, $this->pos++, 1)); } /** * @return int */ public function readInt() { // 16-bit return ($this->readByte() << 8) + $this->readByte(); } /** * @return int */ public function readLong() { // 32-bit return ($this->readByte() << 24) + ($this->readByte() << 16) + ($this->readByte() << 8) + $this->readByte(); } /** * @return float|false */ public function readDouble() { return getid3_lib::BigEndian2Float($this->read(8)); } /** * @return string */ public function readUTF() { $length = $this->readInt(); return $this->read($length); } /** * @return string */ public function readLongUTF() { $length = $this->readLong(); return $this->read($length); } /** * @param int $length * * @return string */ public function read($length) { $val = substr($this->bytes, $this->pos, $length); $this->pos += $length; return $val; } /** * @return int */ public function peekByte() { $pos = $this->pos; $val = $this->readByte(); $this->pos = $pos; return $val; } /** * @return int */ public function peekInt() { $pos = $this->pos; $val = $this->readInt(); $this->pos = $pos; return $val; } /** * @return int */ public function peekLong() { $pos = $this->pos; $val = $this->readLong(); $this->pos = $pos; return $val; } /** * @return float|false */ public function peekDouble() { $pos = $this->pos; $val = $this->readDouble(); $this->pos = $pos; return $val; } /** * @return string */ public function peekUTF() { $pos = $this->pos; $val = $this->readUTF(); $this->pos = $pos; return $val; } /** * @return string */ public function peekLongUTF() { $pos = $this->pos; $val = $this->readLongUTF(); $this->pos = $pos; return $val; } } class AMFReader { /** * @var AMFStream */ public $stream; /** * @param AMFStream $stream */ public function __construct(AMFStream $stream) { $this->stream = $stream; } /** * @return mixed */ public function readData() { $value = null; $type = $this->stream->readByte(); switch ($type) { // Double case 0: $value = $this->readDouble(); break; // Boolean case 1: $value = $this->readBoolean(); break; // String case 2: $value = $this->readString(); break; // Object case 3: $value = $this->readObject(); break; // null case 6: return null; // Mixed array case 8: $value = $this->readMixedArray(); break; // Array case 10: $value = $this->readArray(); break; // Date case 11: $value = $this->readDate(); break; // Long string case 13: $value = $this->readLongString(); break; // XML (handled as string) case 15: $value = $this->readXML(); break; // Typed object (handled as object) case 16: $value = $this->readTypedObject(); break; // Long string default: $value = '(unknown or unsupported data type)'; break; } return $value; } /** * @return float|false */ public function readDouble() { return $this->stream->readDouble(); } /** * @return bool */ public function readBoolean() { return $this->stream->readByte() == 1; } /** * @return string */ public function readString() { return $this->stream->readUTF(); } /** * @return array */ public function readObject() { // Get highest numerical index - ignored // $highestIndex = $this->stream->readLong(); $data = array(); $key = null; while ($key = $this->stream->readUTF()) { $data[$key] = $this->readData(); } // Mixed array record ends with empty string (0x00 0x00) and 0x09 if (($key == '') && ($this->stream->peekByte() == 0x09)) { // Consume byte $this->stream->readByte(); } return $data; } /** * @return array */ public function readMixedArray() { // Get highest numerical index - ignored $highestIndex = $this->stream->readLong(); $data = array(); $key = null; while ($key = $this->stream->readUTF()) { if (is_numeric($key)) { $key = (int) $key; } $data[$key] = $this->readData(); } // Mixed array record ends with empty string (0x00 0x00) and 0x09 if (($key == '') && ($this->stream->peekByte() == 0x09)) { // Consume byte $this->stream->readByte(); } return $data; } /** * @return array */ public function readArray() { $length = $this->stream->readLong(); $data = array(); for ($i = 0; $i < $length; $i++) { $data[] = $this->readData(); } return $data; } /** * @return float|false */ public function readDate() { $timestamp = $this->stream->readDouble(); $timezone = $this->stream->readInt(); return $timestamp; } /** * @return string */ public function readLongString() { return $this->stream->readLongUTF(); } /** * @return string */ public function readXML() { return $this->stream->readLongUTF(); } /** * @return array */ public function readTypedObject() { $className = $this->stream->readUTF(); return $this->readObject(); } } class AVCSequenceParameterSetReader { /** * @var string */ public $sps; public $start = 0; public $currentBytes = 0; public $currentBits = 0; /** * @var int */ public $width; /** * @var int */ public $height; /** * @param string $sps */ public function __construct($sps) { $this->sps = $sps; } public function readData() { $this->skipBits(8); $this->skipBits(8); $profile = $this->getBits(8); // read profile if ($profile > 0) { $this->skipBits(8); $level_idc = $this->getBits(8); // level_idc $this->expGolombUe(); // seq_parameter_set_id // sps $this->expGolombUe(); // log2_max_frame_num_minus4 $picOrderType = $this->expGolombUe(); // pic_order_cnt_type if ($picOrderType == 0) { $this->expGolombUe(); // log2_max_pic_order_cnt_lsb_minus4 } elseif ($picOrderType == 1) { $this->skipBits(1); // delta_pic_order_always_zero_flag $this->expGolombSe(); // offset_for_non_ref_pic $this->expGolombSe(); // offset_for_top_to_bottom_field $num_ref_frames_in_pic_order_cnt_cycle = $this->expGolombUe(); // num_ref_frames_in_pic_order_cnt_cycle for ($i = 0; $i < $num_ref_frames_in_pic_order_cnt_cycle; $i++) { $this->expGolombSe(); // offset_for_ref_frame[ i ] } } $this->expGolombUe(); // num_ref_frames $this->skipBits(1); // gaps_in_frame_num_value_allowed_flag $pic_width_in_mbs_minus1 = $this->expGolombUe(); // pic_width_in_mbs_minus1 $pic_height_in_map_units_minus1 = $this->expGolombUe(); // pic_height_in_map_units_minus1 $frame_mbs_only_flag = $this->getBits(1); // frame_mbs_only_flag if ($frame_mbs_only_flag == 0) { $this->skipBits(1); // mb_adaptive_frame_field_flag } $this->skipBits(1); // direct_8x8_inference_flag $frame_cropping_flag = $this->getBits(1); // frame_cropping_flag $frame_crop_left_offset = 0; $frame_crop_right_offset = 0; $frame_crop_top_offset = 0; $frame_crop_bottom_offset = 0; if ($frame_cropping_flag) { $frame_crop_left_offset = $this->expGolombUe(); // frame_crop_left_offset $frame_crop_right_offset = $this->expGolombUe(); // frame_crop_right_offset $frame_crop_top_offset = $this->expGolombUe(); // frame_crop_top_offset $frame_crop_bottom_offset = $this->expGolombUe(); // frame_crop_bottom_offset } $this->skipBits(1); // vui_parameters_present_flag // etc $this->width = (($pic_width_in_mbs_minus1 + 1) * 16) - ($frame_crop_left_offset * 2) - ($frame_crop_right_offset * 2); $this->height = ((2 - $frame_mbs_only_flag) * ($pic_height_in_map_units_minus1 + 1) * 16) - ($frame_crop_top_offset * 2) - ($frame_crop_bottom_offset * 2); } } /** * @param int $bits */ public function skipBits($bits) { $newBits = $this->currentBits + $bits; $this->currentBytes += (int)floor($newBits / 8); $this->currentBits = $newBits % 8; } /** * @return int */ public function getBit() { $result = (getid3_lib::BigEndian2Int(substr($this->sps, $this->currentBytes, 1)) >> (7 - $this->currentBits)) & 0x01; $this->skipBits(1); return $result; } /** * @param int $bits * * @return int */ public function getBits($bits) { $result = 0; for ($i = 0; $i < $bits; $i++) { $result = ($result << 1) + $this->getBit(); } return $result; } /** * @return int */ public function expGolombUe() { $significantBits = 0; $bit = $this->getBit(); while ($bit == 0) { $significantBits++; $bit = $this->getBit(); if ($significantBits > 31) { // something is broken, this is an emergency escape to prevent infinite loops return 0; } } return (1 << $significantBits) + $this->getBits($significantBits) - 1; } /** * @return int */ public function expGolombSe() { $result = $this->expGolombUe(); if (($result & 0x01) == 0) { return -($result >> 1); } else { return ($result + 1) >> 1; } } /** * @return int */ public function getWidth() { return $this->width; } /** * @return int */ public function getHeight() { return $this->height; } } module.tag.apetag.php000064400000045204152233444720010567 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.tag.apetag.php // // module for analyzing APE tags // // dependencies: NONE // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } class getid3_apetag extends getid3_handler { /** * true: return full data for all attachments; * false: return no data for all attachments; * integer: return data for attachments <= than this; * string: save as file to this directory. * * @var int|bool|string */ public $inline_attachments = true; public $overrideendoffset = 0; /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; if (!getid3_lib::intValueSupported($info['filesize'])) { $this->warning('Unable to check for APEtags because file is larger than '.round(PHP_INT_MAX / 1073741824).'GB'); return false; } if (PHP_INT_MAX == 2147483647) { // https://github.com/JamesHeinrich/getID3/issues/439 $this->warning('APEtag flags may not be parsed correctly on 32-bit PHP'); } $id3v1tagsize = 128; $apetagheadersize = 32; $lyrics3tagsize = 10; if ($this->overrideendoffset == 0) { $this->fseek(0 - $id3v1tagsize - $apetagheadersize - $lyrics3tagsize, SEEK_END); $APEfooterID3v1 = $this->fread($id3v1tagsize + $apetagheadersize + $lyrics3tagsize); //if (preg_match('/APETAGEX.{24}TAG.{125}$/i', $APEfooterID3v1)) { if (substr($APEfooterID3v1, strlen($APEfooterID3v1) - $id3v1tagsize - $apetagheadersize, 8) == 'APETAGEX') { // APE tag found before ID3v1 $info['ape']['tag_offset_end'] = $info['filesize'] - $id3v1tagsize; //} elseif (preg_match('/APETAGEX.{24}$/i', $APEfooterID3v1)) { } elseif (substr($APEfooterID3v1, strlen($APEfooterID3v1) - $apetagheadersize, 8) == 'APETAGEX') { // APE tag found, no ID3v1 $info['ape']['tag_offset_end'] = $info['filesize']; } } else { $this->fseek($this->overrideendoffset - $apetagheadersize); if ($this->fread(8) == 'APETAGEX') { $info['ape']['tag_offset_end'] = $this->overrideendoffset; } } if (!isset($info['ape']['tag_offset_end'])) { // APE tag not found unset($info['ape']); return false; } // shortcut $thisfile_ape = &$info['ape']; $this->fseek($thisfile_ape['tag_offset_end'] - $apetagheadersize); $APEfooterData = $this->fread(32); if (!($thisfile_ape['footer'] = $this->parseAPEheaderFooter($APEfooterData))) { $this->error('Error parsing APE footer at offset '.$thisfile_ape['tag_offset_end']); return false; } if (isset($thisfile_ape['footer']['flags']['header']) && $thisfile_ape['footer']['flags']['header']) { $this->fseek($thisfile_ape['tag_offset_end'] - $thisfile_ape['footer']['raw']['tagsize'] - $apetagheadersize); $thisfile_ape['tag_offset_start'] = $this->ftell(); $APEtagData = $this->fread($thisfile_ape['footer']['raw']['tagsize'] + $apetagheadersize); } else { $thisfile_ape['tag_offset_start'] = $thisfile_ape['tag_offset_end'] - $thisfile_ape['footer']['raw']['tagsize']; $this->fseek($thisfile_ape['tag_offset_start']); $APEtagData = $this->fread($thisfile_ape['footer']['raw']['tagsize']); } $info['avdataend'] = $thisfile_ape['tag_offset_start']; if (isset($info['id3v1']['tag_offset_start']) && ($info['id3v1']['tag_offset_start'] < $thisfile_ape['tag_offset_end'])) { $this->warning('ID3v1 tag information ignored since it appears to be a false synch in APEtag data'); unset($info['id3v1']); foreach ($info['warning'] as $key => $value) { if ($value == 'Some ID3v1 fields do not use NULL characters for padding') { unset($info['warning'][$key]); sort($info['warning']); break; } } } $offset = 0; if (isset($thisfile_ape['footer']['flags']['header']) && $thisfile_ape['footer']['flags']['header']) { if ($thisfile_ape['header'] = $this->parseAPEheaderFooter(substr($APEtagData, 0, $apetagheadersize))) { $offset += $apetagheadersize; } else { $this->error('Error parsing APE header at offset '.$thisfile_ape['tag_offset_start']); return false; } } // shortcut $info['replay_gain'] = array(); $thisfile_replaygain = &$info['replay_gain']; for ($i = 0; $i < $thisfile_ape['footer']['raw']['tag_items']; $i++) { $value_size = getid3_lib::LittleEndian2Int(substr($APEtagData, $offset, 4)); $offset += 4; $item_flags = getid3_lib::LittleEndian2Int(substr($APEtagData, $offset, 4)); $offset += 4; if (strstr(substr($APEtagData, $offset), "\x00") === false) { $this->error('Cannot find null-byte (0x00) separator between ItemKey #'.$i.' and value. ItemKey starts '.$offset.' bytes into the APE tag, at file offset '.($thisfile_ape['tag_offset_start'] + $offset)); return false; } $ItemKeyLength = strpos($APEtagData, "\x00", $offset) - $offset; $item_key = strtolower(substr($APEtagData, $offset, $ItemKeyLength)); // shortcut $thisfile_ape['items'][$item_key] = array(); $thisfile_ape_items_current = &$thisfile_ape['items'][$item_key]; $thisfile_ape_items_current['offset'] = $thisfile_ape['tag_offset_start'] + $offset; $offset += ($ItemKeyLength + 1); // skip 0x00 terminator $thisfile_ape_items_current['data'] = substr($APEtagData, $offset, $value_size); $offset += $value_size; $thisfile_ape_items_current['flags'] = $this->parseAPEtagFlags($item_flags); switch ($thisfile_ape_items_current['flags']['item_contents_raw']) { case 0: // UTF-8 case 2: // Locator (URL, filename, etc), UTF-8 encoded $thisfile_ape_items_current['data'] = explode("\x00", $thisfile_ape_items_current['data']); break; case 1: // binary data default: break; } switch (strtolower($item_key)) { // http://wiki.hydrogenaud.io/index.php?title=ReplayGain#MP3Gain case 'replaygain_track_gain': if (preg_match('#^([\\-\\+][0-9\\.,]{8})( dB)?$#', $thisfile_ape_items_current['data'][0], $matches)) { $thisfile_replaygain['track']['adjustment'] = (float) str_replace(',', '.', $matches[1]); // float casting will see "0,95" as zero! $thisfile_replaygain['track']['originator'] = 'unspecified'; } else { $this->warning('MP3gainTrackGain value in APEtag appears invalid: "'.$thisfile_ape_items_current['data'][0].'"'); } break; case 'replaygain_track_peak': if (preg_match('#^([0-9\\.,]{8})$#', $thisfile_ape_items_current['data'][0], $matches)) { $thisfile_replaygain['track']['peak'] = (float) str_replace(',', '.', $matches[1]); // float casting will see "0,95" as zero! $thisfile_replaygain['track']['originator'] = 'unspecified'; if ($thisfile_replaygain['track']['peak'] <= 0) { $this->warning('ReplayGain Track peak from APEtag appears invalid: '.$thisfile_replaygain['track']['peak'].' (original value = "'.$thisfile_ape_items_current['data'][0].'")'); } } else { $this->warning('MP3gainTrackPeak value in APEtag appears invalid: "'.$thisfile_ape_items_current['data'][0].'"'); } break; case 'replaygain_album_gain': if (preg_match('#^([\\-\\+][0-9\\.,]{8})( dB)?$#', $thisfile_ape_items_current['data'][0], $matches)) { $thisfile_replaygain['album']['adjustment'] = (float) str_replace(',', '.', $matches[1]); // float casting will see "0,95" as zero! $thisfile_replaygain['album']['originator'] = 'unspecified'; } else { $this->warning('MP3gainAlbumGain value in APEtag appears invalid: "'.$thisfile_ape_items_current['data'][0].'"'); } break; case 'replaygain_album_peak': if (preg_match('#^([0-9\\.,]{8})$#', $thisfile_ape_items_current['data'][0], $matches)) { $thisfile_replaygain['album']['peak'] = (float) str_replace(',', '.', $matches[1]); // float casting will see "0,95" as zero! $thisfile_replaygain['album']['originator'] = 'unspecified'; if ($thisfile_replaygain['album']['peak'] <= 0) { $this->warning('ReplayGain Album peak from APEtag appears invalid: '.$thisfile_replaygain['album']['peak'].' (original value = "'.$thisfile_ape_items_current['data'][0].'")'); } } else { $this->warning('MP3gainAlbumPeak value in APEtag appears invalid: "'.$thisfile_ape_items_current['data'][0].'"'); } break; case 'mp3gain_undo': if (preg_match('#^[\\-\\+][0-9]{3},[\\-\\+][0-9]{3},[NW]$#', $thisfile_ape_items_current['data'][0])) { list($mp3gain_undo_left, $mp3gain_undo_right, $mp3gain_undo_wrap) = explode(',', $thisfile_ape_items_current['data'][0]); $thisfile_replaygain['mp3gain']['undo_left'] = intval($mp3gain_undo_left); $thisfile_replaygain['mp3gain']['undo_right'] = intval($mp3gain_undo_right); $thisfile_replaygain['mp3gain']['undo_wrap'] = (($mp3gain_undo_wrap == 'Y') ? true : false); } else { $this->warning('MP3gainUndo value in APEtag appears invalid: "'.$thisfile_ape_items_current['data'][0].'"'); } break; case 'mp3gain_minmax': if (preg_match('#^[0-9]{3},[0-9]{3}$#', $thisfile_ape_items_current['data'][0])) { list($mp3gain_globalgain_min, $mp3gain_globalgain_max) = explode(',', $thisfile_ape_items_current['data'][0]); $thisfile_replaygain['mp3gain']['globalgain_track_min'] = intval($mp3gain_globalgain_min); $thisfile_replaygain['mp3gain']['globalgain_track_max'] = intval($mp3gain_globalgain_max); } else { $this->warning('MP3gainMinMax value in APEtag appears invalid: "'.$thisfile_ape_items_current['data'][0].'"'); } break; case 'mp3gain_album_minmax': if (preg_match('#^[0-9]{3},[0-9]{3}$#', $thisfile_ape_items_current['data'][0])) { list($mp3gain_globalgain_album_min, $mp3gain_globalgain_album_max) = explode(',', $thisfile_ape_items_current['data'][0]); $thisfile_replaygain['mp3gain']['globalgain_album_min'] = intval($mp3gain_globalgain_album_min); $thisfile_replaygain['mp3gain']['globalgain_album_max'] = intval($mp3gain_globalgain_album_max); } else { $this->warning('MP3gainAlbumMinMax value in APEtag appears invalid: "'.$thisfile_ape_items_current['data'][0].'"'); } break; case 'tracknumber': if (is_array($thisfile_ape_items_current['data'])) { foreach ($thisfile_ape_items_current['data'] as $comment) { $thisfile_ape['comments']['track_number'][] = $comment; } } break; case 'cover art (artist)': case 'cover art (back)': case 'cover art (band logo)': case 'cover art (band)': case 'cover art (colored fish)': case 'cover art (composer)': case 'cover art (conductor)': case 'cover art (front)': case 'cover art (icon)': case 'cover art (illustration)': case 'cover art (lead)': case 'cover art (leaflet)': case 'cover art (lyricist)': case 'cover art (media)': case 'cover art (movie scene)': case 'cover art (other icon)': case 'cover art (other)': case 'cover art (performance)': case 'cover art (publisher logo)': case 'cover art (recording)': case 'cover art (studio)': // list of possible cover arts from https://github.com/mono/taglib-sharp/blob/taglib-sharp-2.0.3.2/src/TagLib/Ape/Tag.cs if (is_array($thisfile_ape_items_current['data'])) { $this->warning('APEtag "'.$item_key.'" should be flagged as Binary data, but was incorrectly flagged as UTF-8'); $thisfile_ape_items_current['data'] = implode("\x00", $thisfile_ape_items_current['data']); } list($thisfile_ape_items_current['filename'], $thisfile_ape_items_current['data']) = explode("\x00", $thisfile_ape_items_current['data'], 2); $thisfile_ape_items_current['data_offset'] = $thisfile_ape_items_current['offset'] + strlen($thisfile_ape_items_current['filename']."\x00"); $thisfile_ape_items_current['data_length'] = strlen($thisfile_ape_items_current['data']); do { $thisfile_ape_items_current['image_mime'] = ''; $imageinfo = array(); $imagechunkcheck = getid3_lib::GetDataImageSize($thisfile_ape_items_current['data'], $imageinfo); if (($imagechunkcheck === false) || !isset($imagechunkcheck[2])) { $this->warning('APEtag "'.$item_key.'" contains invalid image data'); break; } $thisfile_ape_items_current['image_mime'] = image_type_to_mime_type($imagechunkcheck[2]); if ($this->inline_attachments === false) { // skip entirely unset($thisfile_ape_items_current['data']); break; } if ($this->inline_attachments === true) { // great } elseif (is_int($this->inline_attachments)) { if ($this->inline_attachments < $thisfile_ape_items_current['data_length']) { // too big, skip $this->warning('attachment at '.$thisfile_ape_items_current['offset'].' is too large to process inline ('.number_format($thisfile_ape_items_current['data_length']).' bytes)'); unset($thisfile_ape_items_current['data']); break; } } elseif (is_string($this->inline_attachments)) { $this->inline_attachments = rtrim(str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $this->inline_attachments), DIRECTORY_SEPARATOR); if (!is_dir($this->inline_attachments) || !getID3::is_writable($this->inline_attachments)) { // cannot write, skip $this->warning('attachment at '.$thisfile_ape_items_current['offset'].' cannot be saved to "'.$this->inline_attachments.'" (not writable)'); unset($thisfile_ape_items_current['data']); break; } } // if we get this far, must be OK if (is_string($this->inline_attachments)) { $destination_filename = $this->inline_attachments.DIRECTORY_SEPARATOR.md5($info['filenamepath']).'_'.$thisfile_ape_items_current['data_offset']; if (!file_exists($destination_filename) || getID3::is_writable($destination_filename)) { file_put_contents($destination_filename, $thisfile_ape_items_current['data']); } else { $this->warning('attachment at '.$thisfile_ape_items_current['offset'].' cannot be saved to "'.$destination_filename.'" (not writable)'); } $thisfile_ape_items_current['data_filename'] = $destination_filename; unset($thisfile_ape_items_current['data']); } else { if (!isset($info['ape']['comments']['picture'])) { $info['ape']['comments']['picture'] = array(); } $comments_picture_data = array(); foreach (array('data', 'image_mime', 'image_width', 'image_height', 'imagetype', 'picturetype', 'description', 'datalength') as $picture_key) { if (isset($thisfile_ape_items_current[$picture_key])) { $comments_picture_data[$picture_key] = $thisfile_ape_items_current[$picture_key]; } } $info['ape']['comments']['picture'][] = $comments_picture_data; unset($comments_picture_data); } } while (false); // @phpstan-ignore-line break; default: if (is_array($thisfile_ape_items_current['data'])) { foreach ($thisfile_ape_items_current['data'] as $comment) { $thisfile_ape['comments'][strtolower($item_key)][] = $comment; } } break; } } if (empty($thisfile_replaygain)) { unset($info['replay_gain']); } return true; } /** * @param string $APEheaderFooterData * * @return array|false */ public function parseAPEheaderFooter($APEheaderFooterData) { // http://www.uni-jena.de/~pfk/mpp/sv8/apeheader.html // shortcut $headerfooterinfo = array(); $headerfooterinfo['raw'] = array(); $headerfooterinfo_raw = &$headerfooterinfo['raw']; $headerfooterinfo_raw['footer_tag'] = substr($APEheaderFooterData, 0, 8); if ($headerfooterinfo_raw['footer_tag'] != 'APETAGEX') { return false; } $headerfooterinfo_raw['version'] = getid3_lib::LittleEndian2Int(substr($APEheaderFooterData, 8, 4)); $headerfooterinfo_raw['tagsize'] = getid3_lib::LittleEndian2Int(substr($APEheaderFooterData, 12, 4)); $headerfooterinfo_raw['tag_items'] = getid3_lib::LittleEndian2Int(substr($APEheaderFooterData, 16, 4)); $headerfooterinfo_raw['global_flags'] = getid3_lib::LittleEndian2Int(substr($APEheaderFooterData, 20, 4)); $headerfooterinfo_raw['reserved'] = substr($APEheaderFooterData, 24, 8); $headerfooterinfo['tag_version'] = $headerfooterinfo_raw['version'] / 1000; if ($headerfooterinfo['tag_version'] >= 2) { $headerfooterinfo['flags'] = $this->parseAPEtagFlags($headerfooterinfo_raw['global_flags']); } return $headerfooterinfo; } /** * @param int $rawflagint * * @return array */ public function parseAPEtagFlags($rawflagint) { // "Note: APE Tags 1.0 do not use any of the APE Tag flags. // All are set to zero on creation and ignored on reading." // http://wiki.hydrogenaud.io/index.php?title=Ape_Tags_Flags $flags = array(); $flags['header'] = (bool) ($rawflagint & 0x80000000); $flags['footer'] = (bool) ($rawflagint & 0x40000000); $flags['this_is_header'] = (bool) ($rawflagint & 0x20000000); $flags['item_contents_raw'] = ($rawflagint & 0x00000006) >> 1; $flags['read_only'] = (bool) ($rawflagint & 0x00000001); $flags['item_contents'] = $this->APEcontentTypeFlagLookup($flags['item_contents_raw']); return $flags; } /** * @param int $contenttypeid * * @return string */ public function APEcontentTypeFlagLookup($contenttypeid) { static $APEcontentTypeFlagLookup = array( 0 => 'utf-8', 1 => 'binary', 2 => 'external', 3 => 'reserved' ); return (isset($APEcontentTypeFlagLookup[$contenttypeid]) ? $APEcontentTypeFlagLookup[$contenttypeid] : 'invalid'); } /** * @param string $itemkey * * @return bool */ public function APEtagItemIsUTF8Lookup($itemkey) { static $APEtagItemIsUTF8Lookup = array( 'title', 'subtitle', 'artist', 'album', 'debut album', 'publisher', 'conductor', 'track', 'composer', 'comment', 'copyright', 'publicationright', 'file', 'year', 'record date', 'record location', 'genre', 'media', 'related', 'isrc', 'abstract', 'language', 'bibliography' ); return in_array(strtolower($itemkey), $APEtagItemIsUTF8Lookup); } } module.audio.mp3.php000064400000321004152233444720010346 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio.mp3.php // // module for analyzing MP3 files // // dependencies: NONE // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } class getid3_mp3 extends getid3_handler { /** * Forces getID3() to scan the file byte-by-byte and log all the valid audio frame headers - extremely slow, * unrecommended, but may provide data from otherwise-unusable files. * * @var bool */ public $allow_bruteforce = false; /** * number of frames to scan to determine if MPEG-audio sequence is valid * Lower this number to 5-20 for faster scanning * Increase this number to 50+ for most accurate detection of valid VBR/CBR mpeg-audio streams * * @var int */ public $mp3_valid_check_frames = 50; /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; $initialOffset = $info['avdataoffset']; if (!$this->getOnlyMPEGaudioInfo($info['avdataoffset'])) { if ($this->allow_bruteforce) { $this->error('Rescanning file in BruteForce mode'); $this->getOnlyMPEGaudioInfoBruteForce(); } } if (isset($info['mpeg']['audio']['bitrate_mode'])) { $info['audio']['bitrate_mode'] = strtolower($info['mpeg']['audio']['bitrate_mode']); } $CurrentDataLAMEversionString = null; if (((isset($info['id3v2']['headerlength']) && ($info['avdataoffset'] > $info['id3v2']['headerlength'])) || (!isset($info['id3v2']) && ($info['avdataoffset'] > 0) && ($info['avdataoffset'] != $initialOffset)))) { $synchoffsetwarning = 'Unknown data before synch '; if (isset($info['id3v2']['headerlength'])) { $synchoffsetwarning .= '(ID3v2 header ends at '.$info['id3v2']['headerlength'].', then '.($info['avdataoffset'] - $info['id3v2']['headerlength']).' bytes garbage, '; } elseif ($initialOffset > 0) { $synchoffsetwarning .= '(should be at '.$initialOffset.', '; } else { $synchoffsetwarning .= '(should be at beginning of file, '; } $synchoffsetwarning .= 'synch detected at '.$info['avdataoffset'].')'; if (isset($info['audio']['bitrate_mode']) && ($info['audio']['bitrate_mode'] == 'cbr')) { if (!empty($info['id3v2']['headerlength']) && (($info['avdataoffset'] - $info['id3v2']['headerlength']) == $info['mpeg']['audio']['framelength'])) { $synchoffsetwarning .= '. This is a known problem with some versions of LAME (3.90-3.92) DLL in CBR mode.'; $info['audio']['codec'] = 'LAME'; $CurrentDataLAMEversionString = 'LAME3.'; } elseif (empty($info['id3v2']['headerlength']) && ($info['avdataoffset'] == $info['mpeg']['audio']['framelength'])) { $synchoffsetwarning .= '. This is a known problem with some versions of LAME (3.90 - 3.92) DLL in CBR mode.'; $info['audio']['codec'] = 'LAME'; $CurrentDataLAMEversionString = 'LAME3.'; } } $this->warning($synchoffsetwarning); } if (isset($info['mpeg']['audio']['LAME'])) { $info['audio']['codec'] = 'LAME'; if (!empty($info['mpeg']['audio']['LAME']['long_version'])) { $info['audio']['encoder'] = rtrim($info['mpeg']['audio']['LAME']['long_version'], "\x00"); } elseif (!empty($info['mpeg']['audio']['LAME']['short_version'])) { $info['audio']['encoder'] = rtrim($info['mpeg']['audio']['LAME']['short_version'], "\x00"); } } $CurrentDataLAMEversionString = (!empty($CurrentDataLAMEversionString) ? $CurrentDataLAMEversionString : (isset($info['audio']['encoder']) ? $info['audio']['encoder'] : '')); if (!empty($CurrentDataLAMEversionString) && (substr($CurrentDataLAMEversionString, 0, 6) == 'LAME3.') && !preg_match('[0-9\)]', substr($CurrentDataLAMEversionString, -1))) { // a version number of LAME that does not end with a number like "LAME3.92" // or with a closing parenthesis like "LAME3.88 (alpha)" // or a version of LAME with the LAMEtag-not-filled-in-DLL-mode bug (3.90-3.92) // not sure what the actual last frame length will be, but will be less than or equal to 1441 $PossiblyLongerLAMEversion_FrameLength = 1441; // Not sure what version of LAME this is - look in padding of last frame for longer version string $PossibleLAMEversionStringOffset = $info['avdataend'] - $PossiblyLongerLAMEversion_FrameLength; $this->fseek($PossibleLAMEversionStringOffset); $PossiblyLongerLAMEversion_Data = $this->fread($PossiblyLongerLAMEversion_FrameLength); switch (substr($CurrentDataLAMEversionString, -1)) { case 'a': case 'b': // "LAME3.94a" will have a longer version string of "LAME3.94 (alpha)" for example // need to trim off "a" to match longer string $CurrentDataLAMEversionString = substr($CurrentDataLAMEversionString, 0, -1); break; } if (($PossiblyLongerLAMEversion_String = strstr($PossiblyLongerLAMEversion_Data, $CurrentDataLAMEversionString)) !== false) { if (substr($PossiblyLongerLAMEversion_String, 0, strlen($CurrentDataLAMEversionString)) == $CurrentDataLAMEversionString) { $PossiblyLongerLAMEversion_NewString = substr($PossiblyLongerLAMEversion_String, 0, strspn($PossiblyLongerLAMEversion_String, 'LAME0123456789., (abcdefghijklmnopqrstuvwxyzJFSOND)')); //"LAME3.90.3" "LAME3.87 (beta 1, Sep 27 2000)" "LAME3.88 (beta)" if (empty($info['audio']['encoder']) || (strlen($PossiblyLongerLAMEversion_NewString) > strlen($info['audio']['encoder']))) { if (!empty($info['audio']['encoder']) && !empty($info['mpeg']['audio']['LAME']['short_version']) && ($info['audio']['encoder'] == $info['mpeg']['audio']['LAME']['short_version'])) { if (preg_match('#^LAME[0-9\\.]+#', $PossiblyLongerLAMEversion_NewString, $matches)) { // "LAME3.100" -> "LAME3.100.1", but avoid including "(alpha)" and similar $info['mpeg']['audio']['LAME']['short_version'] = $matches[0]; } } $info['audio']['encoder'] = $PossiblyLongerLAMEversion_NewString; } } } } if (!empty($info['audio']['encoder'])) { $info['audio']['encoder'] = rtrim($info['audio']['encoder'], "\x00 "); } switch (isset($info['mpeg']['audio']['layer']) ? $info['mpeg']['audio']['layer'] : '') { case 1: case 2: $info['audio']['dataformat'] = 'mp'.$info['mpeg']['audio']['layer']; break; } if (isset($info['fileformat']) && ($info['fileformat'] == 'mp3')) { switch ($info['audio']['dataformat']) { case 'mp1': case 'mp2': case 'mp3': $info['fileformat'] = $info['audio']['dataformat']; break; default: $this->warning('Expecting [audio][dataformat] to be mp1/mp2/mp3 when fileformat == mp3, [audio][dataformat] actually "'.$info['audio']['dataformat'].'"'); break; } } if (empty($info['fileformat'])) { unset($info['fileformat']); unset($info['audio']['bitrate_mode']); unset($info['avdataoffset']); unset($info['avdataend']); return false; } $info['mime_type'] = 'audio/mpeg'; $info['audio']['lossless'] = false; // Calculate playtime if (!isset($info['playtime_seconds']) && isset($info['audio']['bitrate']) && ($info['audio']['bitrate'] > 0)) { // https://github.com/JamesHeinrich/getID3/issues/161 // VBR header frame contains ~0.026s of silent audio data, but is not actually part of the original encoding and should be ignored $xingVBRheaderFrameLength = ((isset($info['mpeg']['audio']['VBR_frames']) && isset($info['mpeg']['audio']['framelength'])) ? $info['mpeg']['audio']['framelength'] : 0); $info['playtime_seconds'] = ($info['avdataend'] - $info['avdataoffset'] - $xingVBRheaderFrameLength) * 8 / $info['audio']['bitrate']; } $info['audio']['encoder_options'] = $this->GuessEncoderOptions(); return true; } /** * @return string */ public function GuessEncoderOptions() { // shortcuts $info = &$this->getid3->info; $thisfile_mpeg_audio = array(); $thisfile_mpeg_audio_lame = array(); if (!empty($info['mpeg']['audio'])) { $thisfile_mpeg_audio = &$info['mpeg']['audio']; if (!empty($thisfile_mpeg_audio['LAME'])) { $thisfile_mpeg_audio_lame = &$thisfile_mpeg_audio['LAME']; } } $encoder_options = ''; static $NamedPresetBitrates = array(16, 24, 40, 56, 112, 128, 160, 192, 256); if (isset($thisfile_mpeg_audio['VBR_method']) && ($thisfile_mpeg_audio['VBR_method'] == 'Fraunhofer') && !empty($thisfile_mpeg_audio['VBR_quality'])) { $encoder_options = 'VBR q'.$thisfile_mpeg_audio['VBR_quality']; } elseif (!empty($thisfile_mpeg_audio_lame['preset_used']) && isset($thisfile_mpeg_audio_lame['preset_used_id']) && (!in_array($thisfile_mpeg_audio_lame['preset_used_id'], $NamedPresetBitrates))) { $encoder_options = $thisfile_mpeg_audio_lame['preset_used']; } elseif (!empty($thisfile_mpeg_audio_lame['vbr_quality'])) { static $KnownEncoderValues = array(); if (empty($KnownEncoderValues)) { //$KnownEncoderValues[abrbitrate_minbitrate][vbr_quality][raw_vbr_method][raw_noise_shaping][raw_stereo_mode][ath_type][lowpass_frequency] = 'preset name'; $KnownEncoderValues[0xFF][58][1][1][3][2][20500] = '--alt-preset insane'; // 3.90, 3.90.1, 3.92 $KnownEncoderValues[0xFF][58][1][1][3][2][20600] = '--alt-preset insane'; // 3.90.2, 3.90.3, 3.91 $KnownEncoderValues[0xFF][57][1][1][3][4][20500] = '--alt-preset insane'; // 3.94, 3.95 $KnownEncoderValues['**'][78][3][2][3][2][19500] = '--alt-preset extreme'; // 3.90, 3.90.1, 3.92 $KnownEncoderValues['**'][78][3][2][3][2][19600] = '--alt-preset extreme'; // 3.90.2, 3.91 $KnownEncoderValues['**'][78][3][1][3][2][19600] = '--alt-preset extreme'; // 3.90.3 $KnownEncoderValues['**'][78][4][2][3][2][19500] = '--alt-preset fast extreme'; // 3.90, 3.90.1, 3.92 $KnownEncoderValues['**'][78][4][2][3][2][19600] = '--alt-preset fast extreme'; // 3.90.2, 3.90.3, 3.91 $KnownEncoderValues['**'][78][3][2][3][4][19000] = '--alt-preset standard'; // 3.90, 3.90.1, 3.90.2, 3.91, 3.92 $KnownEncoderValues['**'][78][3][1][3][4][19000] = '--alt-preset standard'; // 3.90.3 $KnownEncoderValues['**'][78][4][2][3][4][19000] = '--alt-preset fast standard'; // 3.90, 3.90.1, 3.90.2, 3.91, 3.92 $KnownEncoderValues['**'][78][4][1][3][4][19000] = '--alt-preset fast standard'; // 3.90.3 $KnownEncoderValues['**'][88][4][1][3][3][19500] = '--r3mix'; // 3.90, 3.90.1, 3.92 $KnownEncoderValues['**'][88][4][1][3][3][19600] = '--r3mix'; // 3.90.2, 3.90.3, 3.91 $KnownEncoderValues['**'][67][4][1][3][4][18000] = '--r3mix'; // 3.94, 3.95 $KnownEncoderValues['**'][68][3][2][3][4][18000] = '--alt-preset medium'; // 3.90.3 $KnownEncoderValues['**'][68][4][2][3][4][18000] = '--alt-preset fast medium'; // 3.90.3 $KnownEncoderValues[0xFF][99][1][1][1][2][0] = '--preset studio'; // 3.90, 3.90.1, 3.90.2, 3.91, 3.92 $KnownEncoderValues[0xFF][58][2][1][3][2][20600] = '--preset studio'; // 3.90.3, 3.93.1 $KnownEncoderValues[0xFF][58][2][1][3][2][20500] = '--preset studio'; // 3.93 $KnownEncoderValues[0xFF][57][2][1][3][4][20500] = '--preset studio'; // 3.94, 3.95 $KnownEncoderValues[0xC0][88][1][1][1][2][0] = '--preset cd'; // 3.90, 3.90.1, 3.90.2, 3.91, 3.92 $KnownEncoderValues[0xC0][58][2][2][3][2][19600] = '--preset cd'; // 3.90.3, 3.93.1 $KnownEncoderValues[0xC0][58][2][2][3][2][19500] = '--preset cd'; // 3.93 $KnownEncoderValues[0xC0][57][2][1][3][4][19500] = '--preset cd'; // 3.94, 3.95 $KnownEncoderValues[0xA0][78][1][1][3][2][18000] = '--preset hifi'; // 3.90, 3.90.1, 3.90.2, 3.91, 3.92 $KnownEncoderValues[0xA0][58][2][2][3][2][18000] = '--preset hifi'; // 3.90.3, 3.93, 3.93.1 $KnownEncoderValues[0xA0][57][2][1][3][4][18000] = '--preset hifi'; // 3.94, 3.95 $KnownEncoderValues[0x80][67][1][1][3][2][18000] = '--preset tape'; // 3.90, 3.90.1, 3.90.2, 3.91, 3.92 $KnownEncoderValues[0x80][67][1][1][3][2][15000] = '--preset radio'; // 3.90, 3.90.1, 3.90.2, 3.91, 3.92 $KnownEncoderValues[0x70][67][1][1][3][2][15000] = '--preset fm'; // 3.90, 3.90.1, 3.90.2, 3.91, 3.92 $KnownEncoderValues[0x70][58][2][2][3][2][16000] = '--preset tape/radio/fm'; // 3.90.3, 3.93, 3.93.1 $KnownEncoderValues[0x70][57][2][1][3][4][16000] = '--preset tape/radio/fm'; // 3.94, 3.95 $KnownEncoderValues[0x38][58][2][2][0][2][10000] = '--preset voice'; // 3.90.3, 3.93, 3.93.1 $KnownEncoderValues[0x38][57][2][1][0][4][15000] = '--preset voice'; // 3.94, 3.95 $KnownEncoderValues[0x38][57][2][1][0][4][16000] = '--preset voice'; // 3.94a14 $KnownEncoderValues[0x28][65][1][1][0][2][7500] = '--preset mw-us'; // 3.90, 3.90.1, 3.92 $KnownEncoderValues[0x28][65][1][1][0][2][7600] = '--preset mw-us'; // 3.90.2, 3.91 $KnownEncoderValues[0x28][58][2][2][0][2][7000] = '--preset mw-us'; // 3.90.3, 3.93, 3.93.1 $KnownEncoderValues[0x28][57][2][1][0][4][10500] = '--preset mw-us'; // 3.94, 3.95 $KnownEncoderValues[0x28][57][2][1][0][4][11200] = '--preset mw-us'; // 3.94a14 $KnownEncoderValues[0x28][57][2][1][0][4][8800] = '--preset mw-us'; // 3.94a15 $KnownEncoderValues[0x18][58][2][2][0][2][4000] = '--preset phon+/lw/mw-eu/sw'; // 3.90.3, 3.93.1 $KnownEncoderValues[0x18][58][2][2][0][2][3900] = '--preset phon+/lw/mw-eu/sw'; // 3.93 $KnownEncoderValues[0x18][57][2][1][0][4][5900] = '--preset phon+/lw/mw-eu/sw'; // 3.94, 3.95 $KnownEncoderValues[0x18][57][2][1][0][4][6200] = '--preset phon+/lw/mw-eu/sw'; // 3.94a14 $KnownEncoderValues[0x18][57][2][1][0][4][3200] = '--preset phon+/lw/mw-eu/sw'; // 3.94a15 $KnownEncoderValues[0x10][58][2][2][0][2][3800] = '--preset phone'; // 3.90.3, 3.93.1 $KnownEncoderValues[0x10][58][2][2][0][2][3700] = '--preset phone'; // 3.93 $KnownEncoderValues[0x10][57][2][1][0][4][5600] = '--preset phone'; // 3.94, 3.95 } if (isset($KnownEncoderValues[$thisfile_mpeg_audio_lame['raw']['abrbitrate_minbitrate']][$thisfile_mpeg_audio_lame['vbr_quality']][$thisfile_mpeg_audio_lame['raw']['vbr_method']][$thisfile_mpeg_audio_lame['raw']['noise_shaping']][$thisfile_mpeg_audio_lame['raw']['stereo_mode']][$thisfile_mpeg_audio_lame['ath_type']][$thisfile_mpeg_audio_lame['lowpass_frequency']])) { $encoder_options = $KnownEncoderValues[$thisfile_mpeg_audio_lame['raw']['abrbitrate_minbitrate']][$thisfile_mpeg_audio_lame['vbr_quality']][$thisfile_mpeg_audio_lame['raw']['vbr_method']][$thisfile_mpeg_audio_lame['raw']['noise_shaping']][$thisfile_mpeg_audio_lame['raw']['stereo_mode']][$thisfile_mpeg_audio_lame['ath_type']][$thisfile_mpeg_audio_lame['lowpass_frequency']]; } elseif (isset($KnownEncoderValues['**'][$thisfile_mpeg_audio_lame['vbr_quality']][$thisfile_mpeg_audio_lame['raw']['vbr_method']][$thisfile_mpeg_audio_lame['raw']['noise_shaping']][$thisfile_mpeg_audio_lame['raw']['stereo_mode']][$thisfile_mpeg_audio_lame['ath_type']][$thisfile_mpeg_audio_lame['lowpass_frequency']])) { $encoder_options = $KnownEncoderValues['**'][$thisfile_mpeg_audio_lame['vbr_quality']][$thisfile_mpeg_audio_lame['raw']['vbr_method']][$thisfile_mpeg_audio_lame['raw']['noise_shaping']][$thisfile_mpeg_audio_lame['raw']['stereo_mode']][$thisfile_mpeg_audio_lame['ath_type']][$thisfile_mpeg_audio_lame['lowpass_frequency']]; } elseif ($info['audio']['bitrate_mode'] == 'vbr') { // http://gabriel.mp3-tech.org/mp3infotag.html // int Quality = (100 - 10 * gfp->VBR_q - gfp->quality)h $LAME_V_value = 10 - ceil($thisfile_mpeg_audio_lame['vbr_quality'] / 10); $LAME_q_value = 100 - $thisfile_mpeg_audio_lame['vbr_quality'] - ($LAME_V_value * 10); $encoder_options = '-V'.$LAME_V_value.' -q'.$LAME_q_value; } elseif ($info['audio']['bitrate_mode'] == 'cbr') { $encoder_options = strtoupper($info['audio']['bitrate_mode']).ceil($info['audio']['bitrate'] / 1000); } else { $encoder_options = strtoupper($info['audio']['bitrate_mode']); } } elseif (!empty($thisfile_mpeg_audio_lame['bitrate_abr'])) { $encoder_options = 'ABR'.$thisfile_mpeg_audio_lame['bitrate_abr']; } elseif (!empty($info['audio']['bitrate'])) { if ($info['audio']['bitrate_mode'] == 'cbr') { if ($info['audio']['bitrate'] == 'free') { $encoder_options = strtoupper($info['audio']['bitrate_mode']); } else { $encoder_options = strtoupper($info['audio']['bitrate_mode']).round($info['audio']['bitrate'] / 1000); } } else { $encoder_options = strtoupper($info['audio']['bitrate_mode']); } } if (!empty($thisfile_mpeg_audio_lame['bitrate_min'])) { $encoder_options .= ' -b'.$thisfile_mpeg_audio_lame['bitrate_min']; } if (isset($thisfile_mpeg_audio['bitrate']) && ($thisfile_mpeg_audio['bitrate'] === 'free')) { $encoder_options .= ' --freeformat'; } if (!empty($thisfile_mpeg_audio_lame['encoding_flags']['nogap_prev']) || !empty($thisfile_mpeg_audio_lame['encoding_flags']['nogap_next'])) { $encoder_options .= ' --nogap'; } if (!empty($thisfile_mpeg_audio_lame['lowpass_frequency'])) { $ExplodedOptions = explode(' ', $encoder_options, 4); if ($ExplodedOptions[0] == '--r3mix') { $ExplodedOptions[1] = 'r3mix'; } switch ($ExplodedOptions[0]) { case '--preset': case '--alt-preset': case '--r3mix': if ($ExplodedOptions[1] == 'fast') { $ExplodedOptions[1] .= ' '.$ExplodedOptions[2]; } switch ($ExplodedOptions[1]) { case 'portable': case 'medium': case 'standard': case 'extreme': case 'insane': case 'fast portable': case 'fast medium': case 'fast standard': case 'fast extreme': case 'fast insane': case 'r3mix': static $ExpectedLowpass = array( 'insane|20500' => 20500, 'insane|20600' => 20600, // 3.90.2, 3.90.3, 3.91 'medium|18000' => 18000, 'fast medium|18000' => 18000, 'extreme|19500' => 19500, // 3.90, 3.90.1, 3.92, 3.95 'extreme|19600' => 19600, // 3.90.2, 3.90.3, 3.91, 3.93.1 'fast extreme|19500' => 19500, // 3.90, 3.90.1, 3.92, 3.95 'fast extreme|19600' => 19600, // 3.90.2, 3.90.3, 3.91, 3.93.1 'standard|19000' => 19000, 'fast standard|19000' => 19000, 'r3mix|19500' => 19500, // 3.90, 3.90.1, 3.92 'r3mix|19600' => 19600, // 3.90.2, 3.90.3, 3.91 'r3mix|18000' => 18000, // 3.94, 3.95 ); if (!isset($ExpectedLowpass[$ExplodedOptions[1].'|'.$thisfile_mpeg_audio_lame['lowpass_frequency']]) && ($thisfile_mpeg_audio_lame['lowpass_frequency'] < 22050) && (round($thisfile_mpeg_audio_lame['lowpass_frequency'] / 1000) < round($thisfile_mpeg_audio['sample_rate'] / 2000))) { $encoder_options .= ' --lowpass '.$thisfile_mpeg_audio_lame['lowpass_frequency']; } break; default: break; } break; } } if (isset($thisfile_mpeg_audio_lame['raw']['source_sample_freq'])) { if (($thisfile_mpeg_audio['sample_rate'] == 44100) && ($thisfile_mpeg_audio_lame['raw']['source_sample_freq'] != 1)) { $encoder_options .= ' --resample 44100'; } elseif (($thisfile_mpeg_audio['sample_rate'] == 48000) && ($thisfile_mpeg_audio_lame['raw']['source_sample_freq'] != 2)) { $encoder_options .= ' --resample 48000'; } elseif ($thisfile_mpeg_audio['sample_rate'] < 44100) { switch ($thisfile_mpeg_audio_lame['raw']['source_sample_freq']) { case 0: // <= 32000 // may or may not be same as source frequency - ignore break; case 1: // 44100 case 2: // 48000 case 3: // 48000+ $ExplodedOptions = explode(' ', $encoder_options, 4); switch ($ExplodedOptions[0]) { case '--preset': case '--alt-preset': switch ($ExplodedOptions[1]) { case 'fast': case 'portable': case 'medium': case 'standard': case 'extreme': case 'insane': $encoder_options .= ' --resample '.$thisfile_mpeg_audio['sample_rate']; break; default: static $ExpectedResampledRate = array( 'phon+/lw/mw-eu/sw|16000' => 16000, 'mw-us|24000' => 24000, // 3.95 'mw-us|32000' => 32000, // 3.93 'mw-us|16000' => 16000, // 3.92 'phone|16000' => 16000, 'phone|11025' => 11025, // 3.94a15 'radio|32000' => 32000, // 3.94a15 'fm/radio|32000' => 32000, // 3.92 'fm|32000' => 32000, // 3.90 'voice|32000' => 32000); if (!isset($ExpectedResampledRate[$ExplodedOptions[1].'|'.$thisfile_mpeg_audio['sample_rate']])) { $encoder_options .= ' --resample '.$thisfile_mpeg_audio['sample_rate']; } break; } break; case '--r3mix': default: $encoder_options .= ' --resample '.$thisfile_mpeg_audio['sample_rate']; break; } break; } } } if (empty($encoder_options) && !empty($info['audio']['bitrate']) && !empty($info['audio']['bitrate_mode'])) { //$encoder_options = strtoupper($info['audio']['bitrate_mode']).ceil($info['audio']['bitrate'] / 1000); $encoder_options = strtoupper($info['audio']['bitrate_mode']); } return $encoder_options; } /** * @param int $offset * @param array $info * @param bool $recursivesearch * @param bool $ScanAsCBR * @param bool $FastMPEGheaderScan * * @return bool */ public function decodeMPEGaudioHeader($offset, &$info, $recursivesearch=true, $ScanAsCBR=false, $FastMPEGheaderScan=false) { static $MPEGaudioVersionLookup; static $MPEGaudioLayerLookup; static $MPEGaudioBitrateLookup; static $MPEGaudioFrequencyLookup; static $MPEGaudioChannelModeLookup; static $MPEGaudioModeExtensionLookup; static $MPEGaudioEmphasisLookup; if (empty($MPEGaudioVersionLookup)) { $MPEGaudioVersionLookup = self::MPEGaudioVersionArray(); $MPEGaudioLayerLookup = self::MPEGaudioLayerArray(); $MPEGaudioBitrateLookup = self::MPEGaudioBitrateArray(); $MPEGaudioFrequencyLookup = self::MPEGaudioFrequencyArray(); $MPEGaudioChannelModeLookup = self::MPEGaudioChannelModeArray(); $MPEGaudioModeExtensionLookup = self::MPEGaudioModeExtensionArray(); $MPEGaudioEmphasisLookup = self::MPEGaudioEmphasisArray(); } if ($this->fseek($offset) != 0) { $this->error('decodeMPEGaudioHeader() failed to seek to next offset at '.$offset); return false; } //$headerstring = $this->fread(1441); // worst-case max length = 32kHz @ 320kbps layer 3 = 1441 bytes/frame $headerstring = $this->fread(226); // LAME header at offset 36 + 190 bytes of Xing/LAME data // MP3 audio frame structure: // $aa $aa $aa $aa [$bb $bb] $cc... // where $aa..$aa is the four-byte mpeg-audio header (below) // $bb $bb is the optional 2-byte CRC // and $cc... is the audio data $head4 = substr($headerstring, 0, 4); $head4_key = getid3_lib::PrintHexBytes($head4, true, false, false); static $MPEGaudioHeaderDecodeCache = array(); if (isset($MPEGaudioHeaderDecodeCache[$head4_key])) { $MPEGheaderRawArray = $MPEGaudioHeaderDecodeCache[$head4_key]; } else { $MPEGheaderRawArray = self::MPEGaudioHeaderDecode($head4); $MPEGaudioHeaderDecodeCache[$head4_key] = $MPEGheaderRawArray; } static $MPEGaudioHeaderValidCache = array(); if (!isset($MPEGaudioHeaderValidCache[$head4_key])) { // Not in cache //$MPEGaudioHeaderValidCache[$head4_key] = self::MPEGaudioHeaderValid($MPEGheaderRawArray, false, true); // allow badly-formatted freeformat (from LAME 3.90 - 3.93.1) $MPEGaudioHeaderValidCache[$head4_key] = self::MPEGaudioHeaderValid($MPEGheaderRawArray, false, false); } // shortcut if (!isset($info['mpeg']['audio'])) { $info['mpeg']['audio'] = array(); } $thisfile_mpeg_audio = &$info['mpeg']['audio']; if ($MPEGaudioHeaderValidCache[$head4_key]) { $thisfile_mpeg_audio['raw'] = $MPEGheaderRawArray; } else { $this->warning('Invalid MPEG audio header ('.getid3_lib::PrintHexBytes($head4).') at offset '.$offset); return false; } if (!$FastMPEGheaderScan) { $thisfile_mpeg_audio['version'] = $MPEGaudioVersionLookup[$thisfile_mpeg_audio['raw']['version']]; $thisfile_mpeg_audio['layer'] = $MPEGaudioLayerLookup[$thisfile_mpeg_audio['raw']['layer']]; $thisfile_mpeg_audio['channelmode'] = $MPEGaudioChannelModeLookup[$thisfile_mpeg_audio['raw']['channelmode']]; $thisfile_mpeg_audio['channels'] = (($thisfile_mpeg_audio['channelmode'] == 'mono') ? 1 : 2); $thisfile_mpeg_audio['sample_rate'] = $MPEGaudioFrequencyLookup[$thisfile_mpeg_audio['version']][$thisfile_mpeg_audio['raw']['sample_rate']]; $thisfile_mpeg_audio['protection'] = !$thisfile_mpeg_audio['raw']['protection']; $thisfile_mpeg_audio['private'] = (bool) $thisfile_mpeg_audio['raw']['private']; $thisfile_mpeg_audio['modeextension'] = $MPEGaudioModeExtensionLookup[$thisfile_mpeg_audio['layer']][$thisfile_mpeg_audio['raw']['modeextension']]; $thisfile_mpeg_audio['copyright'] = (bool) $thisfile_mpeg_audio['raw']['copyright']; $thisfile_mpeg_audio['original'] = (bool) $thisfile_mpeg_audio['raw']['original']; $thisfile_mpeg_audio['emphasis'] = $MPEGaudioEmphasisLookup[$thisfile_mpeg_audio['raw']['emphasis']]; $info['audio']['channels'] = $thisfile_mpeg_audio['channels']; $info['audio']['sample_rate'] = $thisfile_mpeg_audio['sample_rate']; if ($thisfile_mpeg_audio['protection']) { $thisfile_mpeg_audio['crc'] = getid3_lib::BigEndian2Int(substr($headerstring, 4, 2)); } } if ($thisfile_mpeg_audio['raw']['bitrate'] == 15) { // http://www.hydrogenaudio.org/?act=ST&f=16&t=9682&st=0 $this->warning('Invalid bitrate index (15), this is a known bug in free-format MP3s encoded by LAME v3.90 - 3.93.1'); $thisfile_mpeg_audio['raw']['bitrate'] = 0; } $thisfile_mpeg_audio['padding'] = (bool) $thisfile_mpeg_audio['raw']['padding']; $thisfile_mpeg_audio['bitrate'] = $MPEGaudioBitrateLookup[$thisfile_mpeg_audio['version']][$thisfile_mpeg_audio['layer']][$thisfile_mpeg_audio['raw']['bitrate']]; if (($thisfile_mpeg_audio['bitrate'] == 'free') && ($offset == $info['avdataoffset'])) { // only skip multiple frame check if free-format bitstream found at beginning of file // otherwise is quite possibly simply corrupted data $recursivesearch = false; } // For Layer 2 there are some combinations of bitrate and mode which are not allowed. if (!$FastMPEGheaderScan && ($thisfile_mpeg_audio['layer'] == '2')) { $info['audio']['dataformat'] = 'mp2'; switch ($thisfile_mpeg_audio['channelmode']) { case 'mono': if (($thisfile_mpeg_audio['bitrate'] == 'free') || ($thisfile_mpeg_audio['bitrate'] <= 192000)) { // these are ok } else { $this->error($thisfile_mpeg_audio['bitrate'].'kbps not allowed in Layer 2, '.$thisfile_mpeg_audio['channelmode'].'.'); return false; } break; case 'stereo': case 'joint stereo': case 'dual channel': if (($thisfile_mpeg_audio['bitrate'] == 'free') || ($thisfile_mpeg_audio['bitrate'] == 64000) || ($thisfile_mpeg_audio['bitrate'] >= 96000)) { // these are ok } else { $this->error(intval(round($thisfile_mpeg_audio['bitrate'] / 1000)).'kbps not allowed in Layer 2, '.$thisfile_mpeg_audio['channelmode'].'.'); return false; } break; } } if ($info['audio']['sample_rate'] > 0) { $thisfile_mpeg_audio['framelength'] = self::MPEGaudioFrameLength($thisfile_mpeg_audio['bitrate'], $thisfile_mpeg_audio['version'], $thisfile_mpeg_audio['layer'], (int) $thisfile_mpeg_audio['padding'], $info['audio']['sample_rate']); } $nextframetestoffset = $offset + 1; if ($thisfile_mpeg_audio['bitrate'] != 'free') { $info['audio']['bitrate'] = $thisfile_mpeg_audio['bitrate']; if (isset($thisfile_mpeg_audio['framelength'])) { $nextframetestoffset = $offset + $thisfile_mpeg_audio['framelength']; } else { $this->error('Frame at offset('.$offset.') is has an invalid frame length.'); return false; } } $ExpectedNumberOfAudioBytes = 0; //////////////////////////////////////////////////////////////////////////////////// // Variable-bitrate headers if (substr($headerstring, 4 + 32, 4) == 'VBRI') { // Fraunhofer VBR header is hardcoded 'VBRI' at offset 0x24 (36) // specs taken from http://minnie.tuhs.org/pipermail/mp3encoder/2001-January/001800.html $thisfile_mpeg_audio['bitrate_mode'] = 'vbr'; $thisfile_mpeg_audio['VBR_method'] = 'Fraunhofer'; $info['audio']['codec'] = 'Fraunhofer'; $SideInfoData = substr($headerstring, 4 + 2, 32); $FraunhoferVBROffset = 36; $thisfile_mpeg_audio['VBR_encoder_version'] = getid3_lib::BigEndian2Int(substr($headerstring, $FraunhoferVBROffset + 4, 2)); // VbriVersion $thisfile_mpeg_audio['VBR_encoder_delay'] = getid3_lib::BigEndian2Int(substr($headerstring, $FraunhoferVBROffset + 6, 2)); // VbriDelay $thisfile_mpeg_audio['VBR_quality'] = getid3_lib::BigEndian2Int(substr($headerstring, $FraunhoferVBROffset + 8, 2)); // VbriQuality $thisfile_mpeg_audio['VBR_bytes'] = getid3_lib::BigEndian2Int(substr($headerstring, $FraunhoferVBROffset + 10, 4)); // VbriStreamBytes $thisfile_mpeg_audio['VBR_frames'] = getid3_lib::BigEndian2Int(substr($headerstring, $FraunhoferVBROffset + 14, 4)); // VbriStreamFrames $thisfile_mpeg_audio['VBR_seek_offsets'] = getid3_lib::BigEndian2Int(substr($headerstring, $FraunhoferVBROffset + 18, 2)); // VbriTableSize $thisfile_mpeg_audio['VBR_seek_scale'] = getid3_lib::BigEndian2Int(substr($headerstring, $FraunhoferVBROffset + 20, 2)); // VbriTableScale $thisfile_mpeg_audio['VBR_entry_bytes'] = getid3_lib::BigEndian2Int(substr($headerstring, $FraunhoferVBROffset + 22, 2)); // VbriEntryBytes $thisfile_mpeg_audio['VBR_entry_frames'] = getid3_lib::BigEndian2Int(substr($headerstring, $FraunhoferVBROffset + 24, 2)); // VbriEntryFrames $ExpectedNumberOfAudioBytes = $thisfile_mpeg_audio['VBR_bytes']; $previousbyteoffset = $offset; for ($i = 0; $i < $thisfile_mpeg_audio['VBR_seek_offsets']; $i++) { $Fraunhofer_OffsetN = getid3_lib::BigEndian2Int(substr($headerstring, $FraunhoferVBROffset, $thisfile_mpeg_audio['VBR_entry_bytes'])); $FraunhoferVBROffset += $thisfile_mpeg_audio['VBR_entry_bytes']; $thisfile_mpeg_audio['VBR_offsets_relative'][$i] = ($Fraunhofer_OffsetN * $thisfile_mpeg_audio['VBR_seek_scale']); $thisfile_mpeg_audio['VBR_offsets_absolute'][$i] = ($Fraunhofer_OffsetN * $thisfile_mpeg_audio['VBR_seek_scale']) + $previousbyteoffset; $previousbyteoffset += $Fraunhofer_OffsetN; } } else { // Xing VBR header is hardcoded 'Xing' at a offset 0x0D (13), 0x15 (21) or 0x24 (36) // depending on MPEG layer and number of channels $VBRidOffset = self::XingVBRidOffset($thisfile_mpeg_audio['version'], $thisfile_mpeg_audio['channelmode']); $SideInfoData = substr($headerstring, 4 + 2, $VBRidOffset - 4); if ((substr($headerstring, $VBRidOffset, strlen('Xing')) == 'Xing') || (substr($headerstring, $VBRidOffset, strlen('Info')) == 'Info')) { // 'Xing' is traditional Xing VBR frame // 'Info' is LAME-encoded CBR (This was done to avoid CBR files to be recognized as traditional Xing VBR files by some decoders.) // 'Info' *can* legally be used to specify a VBR file as well, however. // http://www.multiweb.cz/twoinches/MP3inside.htm //00..03 = "Xing" or "Info" //04..07 = Flags: // 0x01 Frames Flag set if value for number of frames in file is stored // 0x02 Bytes Flag set if value for filesize in bytes is stored // 0x04 TOC Flag set if values for TOC are stored // 0x08 VBR Scale Flag set if values for VBR scale is stored //08..11 Frames: Number of frames in file (including the first Xing/Info one) //12..15 Bytes: File length in Bytes //16..115 TOC (Table of Contents): // Contains of 100 indexes (one Byte length) for easier lookup in file. Approximately solves problem with moving inside file. // Each Byte has a value according this formula: // (TOC[i] / 256) * fileLenInBytes // So if song lasts eg. 240 sec. and you want to jump to 60. sec. (and file is 5 000 000 Bytes length) you can use: // TOC[(60/240)*100] = TOC[25] // and corresponding Byte in file is then approximately at: // (TOC[25]/256) * 5000000 //116..119 VBR Scale // should be safe to leave this at 'vbr' and let it be overriden to 'cbr' if a CBR preset/mode is used by LAME // if (substr($headerstring, $VBRidOffset, strlen('Info')) == 'Xing') { $thisfile_mpeg_audio['bitrate_mode'] = 'vbr'; $thisfile_mpeg_audio['VBR_method'] = 'Xing'; // } else { // $ScanAsCBR = true; // $thisfile_mpeg_audio['bitrate_mode'] = 'cbr'; // } $thisfile_mpeg_audio['xing_flags_raw'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOffset + 4, 4)); $thisfile_mpeg_audio['xing_flags']['frames'] = (bool) ($thisfile_mpeg_audio['xing_flags_raw'] & 0x00000001); $thisfile_mpeg_audio['xing_flags']['bytes'] = (bool) ($thisfile_mpeg_audio['xing_flags_raw'] & 0x00000002); $thisfile_mpeg_audio['xing_flags']['toc'] = (bool) ($thisfile_mpeg_audio['xing_flags_raw'] & 0x00000004); $thisfile_mpeg_audio['xing_flags']['vbr_scale'] = (bool) ($thisfile_mpeg_audio['xing_flags_raw'] & 0x00000008); if ($thisfile_mpeg_audio['xing_flags']['frames']) { $thisfile_mpeg_audio['VBR_frames'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOffset + 8, 4)); //$thisfile_mpeg_audio['VBR_frames']--; // don't count header Xing/Info frame } if ($thisfile_mpeg_audio['xing_flags']['bytes']) { $thisfile_mpeg_audio['VBR_bytes'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOffset + 12, 4)); } //if (($thisfile_mpeg_audio['bitrate'] == 'free') && !empty($thisfile_mpeg_audio['VBR_frames']) && !empty($thisfile_mpeg_audio['VBR_bytes'])) { //if (!empty($thisfile_mpeg_audio['VBR_frames']) && !empty($thisfile_mpeg_audio['VBR_bytes'])) { if (!empty($thisfile_mpeg_audio['VBR_frames'])) { $used_filesize = 0; if (!empty($thisfile_mpeg_audio['VBR_bytes'])) { $used_filesize = $thisfile_mpeg_audio['VBR_bytes']; } elseif (!empty($info['filesize'])) { $used_filesize = $info['filesize']; $used_filesize -= (isset($info['id3v2']['headerlength']) ? intval($info['id3v2']['headerlength']) : 0); $used_filesize -= (isset($info['id3v1']) ? 128 : 0); $used_filesize -= (isset($info['tag_offset_end']) ? $info['tag_offset_end'] - $info['tag_offset_start'] : 0); $this->warning('MP3.Xing header missing VBR_bytes, assuming MPEG audio portion of file is '.number_format($used_filesize).' bytes'); } $framelengthfloat = $used_filesize / $thisfile_mpeg_audio['VBR_frames']; if ($thisfile_mpeg_audio['layer'] == '1') { // BitRate = (((FrameLengthInBytes / 4) - Padding) * SampleRate) / 12 //$info['audio']['bitrate'] = ((($framelengthfloat / 4) - intval($thisfile_mpeg_audio['padding'])) * $thisfile_mpeg_audio['sample_rate']) / 12; $info['audio']['bitrate'] = ($framelengthfloat / 4) * $thisfile_mpeg_audio['sample_rate'] * (2 / $info['audio']['channels']) / 12; } else { // Bitrate = ((FrameLengthInBytes - Padding) * SampleRate) / 144 //$info['audio']['bitrate'] = (($framelengthfloat - intval($thisfile_mpeg_audio['padding'])) * $thisfile_mpeg_audio['sample_rate']) / 144; $info['audio']['bitrate'] = $framelengthfloat * $thisfile_mpeg_audio['sample_rate'] * (2 / $info['audio']['channels']) / 144; } $thisfile_mpeg_audio['framelength'] = (int) floor($framelengthfloat); } if ($thisfile_mpeg_audio['xing_flags']['toc']) { $LAMEtocData = substr($headerstring, $VBRidOffset + 16, 100); for ($i = 0; $i < 100; $i++) { $thisfile_mpeg_audio['toc'][$i] = ord($LAMEtocData[$i]); } } if ($thisfile_mpeg_audio['xing_flags']['vbr_scale']) { $thisfile_mpeg_audio['VBR_scale'] = getid3_lib::BigEndian2Int(substr($headerstring, $VBRidOffset + 116, 4)); } // http://gabriel.mp3-tech.org/mp3infotag.html if (substr($headerstring, $VBRidOffset + 120, 4) == 'LAME') { // shortcut $thisfile_mpeg_audio['LAME'] = array(); $thisfile_mpeg_audio_lame = &$thisfile_mpeg_audio['LAME']; $thisfile_mpeg_audio_lame['long_version'] = substr($headerstring, $VBRidOffset + 120, 20); $thisfile_mpeg_audio_lame['short_version'] = substr($thisfile_mpeg_audio_lame['long_version'], 0, 9); //$thisfile_mpeg_audio_lame['numeric_version'] = str_replace('LAME', '', $thisfile_mpeg_audio_lame['short_version']); $thisfile_mpeg_audio_lame['numeric_version'] = ''; if (preg_match('#^LAME([0-9\\.a-z]*)#', $thisfile_mpeg_audio_lame['long_version'], $matches)) { $thisfile_mpeg_audio_lame['short_version'] = $matches[0]; $thisfile_mpeg_audio_lame['numeric_version'] = $matches[1]; } if (strlen($thisfile_mpeg_audio_lame['numeric_version']) > 0) { foreach (explode('.', $thisfile_mpeg_audio_lame['numeric_version']) as $key => $number) { $thisfile_mpeg_audio_lame['integer_version'][$key] = intval($number); } //if ($thisfile_mpeg_audio_lame['short_version'] >= 'LAME3.90') { if ((($thisfile_mpeg_audio_lame['integer_version'][0] * 1000) + $thisfile_mpeg_audio_lame['integer_version'][1]) >= 3090) { // cannot use string version compare, may have "LAME3.90" or "LAME3.100" -- see https://github.com/JamesHeinrich/getID3/issues/207 // extra 11 chars are not part of version string when LAMEtag present unset($thisfile_mpeg_audio_lame['long_version']); // It the LAME tag was only introduced in LAME v3.90 // https://wiki.hydrogenaud.io/index.php/LAME#VBR_header_and_LAME_tag // https://hydrogenaud.io/index.php?topic=9933 // Offsets of various bytes in http://gabriel.mp3-tech.org/mp3infotag.html // are assuming a 'Xing' identifier offset of 0x24, which is the case for // MPEG-1 non-mono, but not for other combinations $LAMEtagOffsetContant = $VBRidOffset - 0x24; // shortcuts $thisfile_mpeg_audio_lame['RGAD'] = array('track'=>array(), 'album'=>array()); $thisfile_mpeg_audio_lame_RGAD = &$thisfile_mpeg_audio_lame['RGAD']; $thisfile_mpeg_audio_lame_RGAD_track = &$thisfile_mpeg_audio_lame_RGAD['track']; $thisfile_mpeg_audio_lame_RGAD_album = &$thisfile_mpeg_audio_lame_RGAD['album']; $thisfile_mpeg_audio_lame['raw'] = array(); $thisfile_mpeg_audio_lame_raw = &$thisfile_mpeg_audio_lame['raw']; // byte $9B VBR Quality // This field is there to indicate a quality level, although the scale was not precised in the original Xing specifications. // Actually overwrites original Xing bytes unset($thisfile_mpeg_audio['VBR_scale']); $thisfile_mpeg_audio_lame['vbr_quality'] = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0x9B, 1)); // bytes $9C-$A4 Encoder short VersionString $thisfile_mpeg_audio_lame['short_version'] = substr($headerstring, $LAMEtagOffsetContant + 0x9C, 9); // byte $A5 Info Tag revision + VBR method $LAMEtagRevisionVBRmethod = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xA5, 1)); $thisfile_mpeg_audio_lame['tag_revision'] = ($LAMEtagRevisionVBRmethod & 0xF0) >> 4; $thisfile_mpeg_audio_lame_raw['vbr_method'] = $LAMEtagRevisionVBRmethod & 0x0F; $thisfile_mpeg_audio_lame['vbr_method'] = self::LAMEvbrMethodLookup($thisfile_mpeg_audio_lame_raw['vbr_method']); $thisfile_mpeg_audio['bitrate_mode'] = substr($thisfile_mpeg_audio_lame['vbr_method'], 0, 3); // usually either 'cbr' or 'vbr', but truncates 'vbr-old / vbr-rh' to 'vbr' // byte $A6 Lowpass filter value $thisfile_mpeg_audio_lame['lowpass_frequency'] = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xA6, 1)) * 100; // bytes $A7-$AE Replay Gain // https://web.archive.org/web/20021015212753/http://privatewww.essex.ac.uk/~djmrob/replaygain/rg_data_format.html // bytes $A7-$AA : 32 bit floating point "Peak signal amplitude" if ($thisfile_mpeg_audio_lame['short_version'] >= 'LAME3.94b') { // LAME 3.94a16 and later - 9.23 fixed point // ie 0x0059E2EE / (2^23) = 5890798 / 8388608 = 0.7022378444671630859375 $thisfile_mpeg_audio_lame_RGAD['peak_amplitude'] = (float) ((getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xA7, 4))) / 8388608); } else { // LAME 3.94a15 and earlier - 32-bit floating point // Actually 3.94a16 will fall in here too and be WRONG, but is hard to detect 3.94a16 vs 3.94a15 $thisfile_mpeg_audio_lame_RGAD['peak_amplitude'] = getid3_lib::LittleEndian2Float(substr($headerstring, $LAMEtagOffsetContant + 0xA7, 4)); } if ($thisfile_mpeg_audio_lame_RGAD['peak_amplitude'] == 0) { unset($thisfile_mpeg_audio_lame_RGAD['peak_amplitude']); } else { $thisfile_mpeg_audio_lame_RGAD['peak_db'] = getid3_lib::RGADamplitude2dB($thisfile_mpeg_audio_lame_RGAD['peak_amplitude']); } $thisfile_mpeg_audio_lame_raw['RGAD_track'] = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xAB, 2)); $thisfile_mpeg_audio_lame_raw['RGAD_album'] = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xAD, 2)); if ($thisfile_mpeg_audio_lame_raw['RGAD_track'] != 0) { $thisfile_mpeg_audio_lame_RGAD_track['raw']['name'] = ($thisfile_mpeg_audio_lame_raw['RGAD_track'] & 0xE000) >> 13; $thisfile_mpeg_audio_lame_RGAD_track['raw']['originator'] = ($thisfile_mpeg_audio_lame_raw['RGAD_track'] & 0x1C00) >> 10; $thisfile_mpeg_audio_lame_RGAD_track['raw']['sign_bit'] = ($thisfile_mpeg_audio_lame_raw['RGAD_track'] & 0x0200) >> 9; $thisfile_mpeg_audio_lame_RGAD_track['raw']['gain_adjust'] = $thisfile_mpeg_audio_lame_raw['RGAD_track'] & 0x01FF; $thisfile_mpeg_audio_lame_RGAD_track['name'] = getid3_lib::RGADnameLookup($thisfile_mpeg_audio_lame_RGAD_track['raw']['name']); $thisfile_mpeg_audio_lame_RGAD_track['originator'] = getid3_lib::RGADoriginatorLookup($thisfile_mpeg_audio_lame_RGAD_track['raw']['originator']); $thisfile_mpeg_audio_lame_RGAD_track['gain_db'] = getid3_lib::RGADadjustmentLookup($thisfile_mpeg_audio_lame_RGAD_track['raw']['gain_adjust'], $thisfile_mpeg_audio_lame_RGAD_track['raw']['sign_bit']); if (!empty($thisfile_mpeg_audio_lame_RGAD['peak_amplitude'])) { $info['replay_gain']['track']['peak'] = $thisfile_mpeg_audio_lame_RGAD['peak_amplitude']; } $info['replay_gain']['track']['originator'] = $thisfile_mpeg_audio_lame_RGAD_track['originator']; $info['replay_gain']['track']['adjustment'] = $thisfile_mpeg_audio_lame_RGAD_track['gain_db']; } else { unset($thisfile_mpeg_audio_lame_RGAD['track']); } if ($thisfile_mpeg_audio_lame_raw['RGAD_album'] != 0) { $thisfile_mpeg_audio_lame_RGAD_album['raw']['name'] = ($thisfile_mpeg_audio_lame_raw['RGAD_album'] & 0xE000) >> 13; $thisfile_mpeg_audio_lame_RGAD_album['raw']['originator'] = ($thisfile_mpeg_audio_lame_raw['RGAD_album'] & 0x1C00) >> 10; $thisfile_mpeg_audio_lame_RGAD_album['raw']['sign_bit'] = ($thisfile_mpeg_audio_lame_raw['RGAD_album'] & 0x0200) >> 9; $thisfile_mpeg_audio_lame_RGAD_album['raw']['gain_adjust'] = $thisfile_mpeg_audio_lame_raw['RGAD_album'] & 0x01FF; $thisfile_mpeg_audio_lame_RGAD_album['name'] = getid3_lib::RGADnameLookup($thisfile_mpeg_audio_lame_RGAD_album['raw']['name']); $thisfile_mpeg_audio_lame_RGAD_album['originator'] = getid3_lib::RGADoriginatorLookup($thisfile_mpeg_audio_lame_RGAD_album['raw']['originator']); $thisfile_mpeg_audio_lame_RGAD_album['gain_db'] = getid3_lib::RGADadjustmentLookup($thisfile_mpeg_audio_lame_RGAD_album['raw']['gain_adjust'], $thisfile_mpeg_audio_lame_RGAD_album['raw']['sign_bit']); if (!empty($thisfile_mpeg_audio_lame_RGAD['peak_amplitude'])) { $info['replay_gain']['album']['peak'] = $thisfile_mpeg_audio_lame_RGAD['peak_amplitude']; } $info['replay_gain']['album']['originator'] = $thisfile_mpeg_audio_lame_RGAD_album['originator']; $info['replay_gain']['album']['adjustment'] = $thisfile_mpeg_audio_lame_RGAD_album['gain_db']; } else { unset($thisfile_mpeg_audio_lame_RGAD['album']); } if (empty($thisfile_mpeg_audio_lame_RGAD)) { unset($thisfile_mpeg_audio_lame['RGAD']); } // byte $AF Encoding flags + ATH Type $EncodingFlagsATHtype = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xAF, 1)); $thisfile_mpeg_audio_lame['encoding_flags']['nspsytune'] = (bool) ($EncodingFlagsATHtype & 0x10); $thisfile_mpeg_audio_lame['encoding_flags']['nssafejoint'] = (bool) ($EncodingFlagsATHtype & 0x20); $thisfile_mpeg_audio_lame['encoding_flags']['nogap_next'] = (bool) ($EncodingFlagsATHtype & 0x40); $thisfile_mpeg_audio_lame['encoding_flags']['nogap_prev'] = (bool) ($EncodingFlagsATHtype & 0x80); $thisfile_mpeg_audio_lame['ath_type'] = $EncodingFlagsATHtype & 0x0F; // byte $B0 if ABR {specified bitrate} else {minimal bitrate} $thisfile_mpeg_audio_lame['raw']['abrbitrate_minbitrate'] = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB0, 1)); if ($thisfile_mpeg_audio_lame_raw['vbr_method'] == 2) { // Average BitRate (ABR) $thisfile_mpeg_audio_lame['bitrate_abr'] = $thisfile_mpeg_audio_lame['raw']['abrbitrate_minbitrate']; } elseif ($thisfile_mpeg_audio_lame_raw['vbr_method'] == 1) { // Constant BitRate (CBR) // ignore } elseif ($thisfile_mpeg_audio_lame['raw']['abrbitrate_minbitrate'] > 0) { // Variable BitRate (VBR) - minimum bitrate $thisfile_mpeg_audio_lame['bitrate_min'] = $thisfile_mpeg_audio_lame['raw']['abrbitrate_minbitrate']; } // bytes $B1-$B3 Encoder delays $EncoderDelays = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB1, 3)); $thisfile_mpeg_audio_lame['encoder_delay'] = ($EncoderDelays & 0xFFF000) >> 12; $thisfile_mpeg_audio_lame['end_padding'] = $EncoderDelays & 0x000FFF; // byte $B4 Misc $MiscByte = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB4, 1)); $thisfile_mpeg_audio_lame_raw['noise_shaping'] = ($MiscByte & 0x03); $thisfile_mpeg_audio_lame_raw['stereo_mode'] = ($MiscByte & 0x1C) >> 2; $thisfile_mpeg_audio_lame_raw['not_optimal_quality'] = ($MiscByte & 0x20) >> 5; $thisfile_mpeg_audio_lame_raw['source_sample_freq'] = ($MiscByte & 0xC0) >> 6; $thisfile_mpeg_audio_lame['noise_shaping'] = $thisfile_mpeg_audio_lame_raw['noise_shaping']; $thisfile_mpeg_audio_lame['stereo_mode'] = self::LAMEmiscStereoModeLookup($thisfile_mpeg_audio_lame_raw['stereo_mode']); $thisfile_mpeg_audio_lame['not_optimal_quality'] = (bool) $thisfile_mpeg_audio_lame_raw['not_optimal_quality']; $thisfile_mpeg_audio_lame['source_sample_freq'] = self::LAMEmiscSourceSampleFrequencyLookup($thisfile_mpeg_audio_lame_raw['source_sample_freq']); // byte $B5 MP3 Gain $thisfile_mpeg_audio_lame_raw['mp3_gain'] = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB5, 1), false, true); $thisfile_mpeg_audio_lame['mp3_gain_db'] = (getid3_lib::RGADamplitude2dB(2) / 4) * $thisfile_mpeg_audio_lame_raw['mp3_gain']; $thisfile_mpeg_audio_lame['mp3_gain_factor'] = pow(2, ($thisfile_mpeg_audio_lame['mp3_gain_db'] / 6)); // bytes $B6-$B7 Preset and surround info $PresetSurroundBytes = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB6, 2)); // Reserved = ($PresetSurroundBytes & 0xC000); $thisfile_mpeg_audio_lame_raw['surround_info'] = ($PresetSurroundBytes & 0x3800); $thisfile_mpeg_audio_lame['surround_info'] = self::LAMEsurroundInfoLookup($thisfile_mpeg_audio_lame_raw['surround_info']); $thisfile_mpeg_audio_lame['preset_used_id'] = ($PresetSurroundBytes & 0x07FF); $thisfile_mpeg_audio_lame['preset_used'] = self::LAMEpresetUsedLookup($thisfile_mpeg_audio_lame); if (!empty($thisfile_mpeg_audio_lame['preset_used_id']) && empty($thisfile_mpeg_audio_lame['preset_used'])) { $this->warning('Unknown LAME preset used ('.$thisfile_mpeg_audio_lame['preset_used_id'].') - please report to info@getid3.org'); } if (($thisfile_mpeg_audio_lame['short_version'] == 'LAME3.90.') && !empty($thisfile_mpeg_audio_lame['preset_used_id'])) { // this may change if 3.90.4 ever comes out $thisfile_mpeg_audio_lame['short_version'] = 'LAME3.90.3'; } // bytes $B8-$BB MusicLength $thisfile_mpeg_audio_lame['audio_bytes'] = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xB8, 4)); $ExpectedNumberOfAudioBytes = (($thisfile_mpeg_audio_lame['audio_bytes'] > 0) ? $thisfile_mpeg_audio_lame['audio_bytes'] : $thisfile_mpeg_audio['VBR_bytes']); // bytes $BC-$BD MusicCRC $thisfile_mpeg_audio_lame['music_crc'] = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xBC, 2)); // bytes $BE-$BF CRC-16 of Info Tag $thisfile_mpeg_audio_lame['lame_tag_crc'] = getid3_lib::BigEndian2Int(substr($headerstring, $LAMEtagOffsetContant + 0xBE, 2)); // LAME CBR if (($thisfile_mpeg_audio_lame_raw['vbr_method'] == 1) && ($thisfile_mpeg_audio['bitrate'] !== 'free')) { $thisfile_mpeg_audio['bitrate_mode'] = 'cbr'; $thisfile_mpeg_audio['bitrate'] = self::ClosestStandardMP3Bitrate($thisfile_mpeg_audio['bitrate']); $info['audio']['bitrate'] = $thisfile_mpeg_audio['bitrate']; //if (empty($thisfile_mpeg_audio['bitrate']) || (!empty($thisfile_mpeg_audio_lame['bitrate_min']) && ($thisfile_mpeg_audio_lame['bitrate_min'] != 255))) { // $thisfile_mpeg_audio['bitrate'] = $thisfile_mpeg_audio_lame['bitrate_min']; //} } } } } } else { // not Fraunhofer or Xing VBR methods, most likely CBR (but could be VBR with no header) $thisfile_mpeg_audio['bitrate_mode'] = 'cbr'; if ($recursivesearch) { $thisfile_mpeg_audio['bitrate_mode'] = 'vbr'; if ($this->RecursiveFrameScanning($offset, $nextframetestoffset, true)) { $recursivesearch = false; $thisfile_mpeg_audio['bitrate_mode'] = 'cbr'; } if ($thisfile_mpeg_audio['bitrate_mode'] == 'vbr') { $this->warning('VBR file with no VBR header. Bitrate values calculated from actual frame bitrates.'); } } } } if (($ExpectedNumberOfAudioBytes > 0) && ($ExpectedNumberOfAudioBytes != ($info['avdataend'] - $info['avdataoffset']))) { if ($ExpectedNumberOfAudioBytes > ($info['avdataend'] - $info['avdataoffset'])) { if ($this->isDependencyFor('matroska') || $this->isDependencyFor('riff')) { // ignore, audio data is broken into chunks so will always be data "missing" } elseif (($ExpectedNumberOfAudioBytes - ($info['avdataend'] - $info['avdataoffset'])) == 1) { $this->warning('Last byte of data truncated (this is a known bug in Meracl ID3 Tag Writer before v1.3.5)'); } else { $this->warning('Probable truncated file: expecting '.$ExpectedNumberOfAudioBytes.' bytes of audio data, only found '.($info['avdataend'] - $info['avdataoffset']).' (short by '.($ExpectedNumberOfAudioBytes - ($info['avdataend'] - $info['avdataoffset'])).' bytes)'); } } else { if ((($info['avdataend'] - $info['avdataoffset']) - $ExpectedNumberOfAudioBytes) == 1) { // $prenullbytefileoffset = $this->ftell(); // $this->fseek($info['avdataend']); // $PossibleNullByte = $this->fread(1); // $this->fseek($prenullbytefileoffset); // if ($PossibleNullByte === "\x00") { $info['avdataend']--; // $this->warning('Extra null byte at end of MP3 data assumed to be RIFF padding and therefore ignored'); // } else { // $this->warning('Too much data in file: expecting '.$ExpectedNumberOfAudioBytes.' bytes of audio data, found '.($info['avdataend'] - $info['avdataoffset']).' ('.(($info['avdataend'] - $info['avdataoffset']) - $ExpectedNumberOfAudioBytes).' bytes too many)'); // } } else { $this->warning('Too much data in file: expecting '.$ExpectedNumberOfAudioBytes.' bytes of audio data, found '.($info['avdataend'] - $info['avdataoffset']).' ('.(($info['avdataend'] - $info['avdataoffset']) - $ExpectedNumberOfAudioBytes).' bytes too many)'); } } } if (($thisfile_mpeg_audio['bitrate'] == 'free') && empty($info['audio']['bitrate'])) { if (($offset == $info['avdataoffset']) && empty($thisfile_mpeg_audio['VBR_frames'])) { $framebytelength = $this->FreeFormatFrameLength($offset, true); if ($framebytelength > 0) { $thisfile_mpeg_audio['framelength'] = $framebytelength; if ($thisfile_mpeg_audio['layer'] == '1') { // BitRate = (((FrameLengthInBytes / 4) - Padding) * SampleRate) / 12 $info['audio']['bitrate'] = ((($framebytelength / 4) - intval($thisfile_mpeg_audio['padding'])) * $thisfile_mpeg_audio['sample_rate']) / 12; } else { // Bitrate = ((FrameLengthInBytes - Padding) * SampleRate) / 144 $info['audio']['bitrate'] = (($framebytelength - intval($thisfile_mpeg_audio['padding'])) * $thisfile_mpeg_audio['sample_rate']) / 144; } } else { $this->error('Error calculating frame length of free-format MP3 without Xing/LAME header'); } } } if (isset($thisfile_mpeg_audio['VBR_frames']) ? $thisfile_mpeg_audio['VBR_frames'] : '') { switch ($thisfile_mpeg_audio['bitrate_mode']) { case 'vbr': case 'abr': $bytes_per_frame = 1152; if (($thisfile_mpeg_audio['version'] == '1') && ($thisfile_mpeg_audio['layer'] == 1)) { $bytes_per_frame = 384; } elseif ((($thisfile_mpeg_audio['version'] == '2') || ($thisfile_mpeg_audio['version'] == '2.5')) && ($thisfile_mpeg_audio['layer'] == 3)) { $bytes_per_frame = 576; } $thisfile_mpeg_audio['VBR_bitrate'] = (isset($thisfile_mpeg_audio['VBR_bytes']) ? (($thisfile_mpeg_audio['VBR_bytes'] / $thisfile_mpeg_audio['VBR_frames']) * 8) * ($info['audio']['sample_rate'] / $bytes_per_frame) : 0); if ($thisfile_mpeg_audio['VBR_bitrate'] > 0) { $info['audio']['bitrate'] = $thisfile_mpeg_audio['VBR_bitrate']; $thisfile_mpeg_audio['bitrate'] = $thisfile_mpeg_audio['VBR_bitrate']; // to avoid confusion } break; } } // End variable-bitrate headers //////////////////////////////////////////////////////////////////////////////////// if ($recursivesearch) { if (!$this->RecursiveFrameScanning($offset, $nextframetestoffset, $ScanAsCBR)) { return false; } if (!empty($this->getid3->info['mp3_validity_check_bitrates']) && !empty($thisfile_mpeg_audio['bitrate_mode']) && ($thisfile_mpeg_audio['bitrate_mode'] == 'vbr') && !empty($thisfile_mpeg_audio['VBR_bitrate'])) { // https://github.com/JamesHeinrich/getID3/issues/287 if (count(array_keys($this->getid3->info['mp3_validity_check_bitrates'])) == 1) { list($cbr_bitrate_in_short_scan) = array_keys($this->getid3->info['mp3_validity_check_bitrates']); $deviation_cbr_from_header_bitrate = abs($thisfile_mpeg_audio['VBR_bitrate'] - $cbr_bitrate_in_short_scan) / $cbr_bitrate_in_short_scan; if ($deviation_cbr_from_header_bitrate < 0.01) { // VBR header bitrate may differ slightly from true bitrate of frames, perhaps accounting for overhead of VBR header frame itself? // If measured CBR bitrate is within 1% of specified bitrate in VBR header then assume that file is truly CBR $thisfile_mpeg_audio['bitrate_mode'] = 'cbr'; //$this->warning('VBR header ignored, assuming CBR '.round($cbr_bitrate_in_short_scan / 1000).'kbps based on scan of '.$this->mp3_valid_check_frames.' frames'); } } } if (isset($this->getid3->info['mp3_validity_check_bitrates'])) { unset($this->getid3->info['mp3_validity_check_bitrates']); } } //if (false) { // // experimental side info parsing section - not returning anything useful yet // // $SideInfoBitstream = getid3_lib::BigEndian2Bin($SideInfoData); // $SideInfoOffset = 0; // // if ($thisfile_mpeg_audio['version'] == '1') { // if ($thisfile_mpeg_audio['channelmode'] == 'mono') { // // MPEG-1 (mono) // $thisfile_mpeg_audio['side_info']['main_data_begin'] = substr($SideInfoBitstream, $SideInfoOffset, 9); // $SideInfoOffset += 9; // $SideInfoOffset += 5; // } else { // // MPEG-1 (stereo, joint-stereo, dual-channel) // $thisfile_mpeg_audio['side_info']['main_data_begin'] = substr($SideInfoBitstream, $SideInfoOffset, 9); // $SideInfoOffset += 9; // $SideInfoOffset += 3; // } // } else { // 2 or 2.5 // if ($thisfile_mpeg_audio['channelmode'] == 'mono') { // // MPEG-2, MPEG-2.5 (mono) // $thisfile_mpeg_audio['side_info']['main_data_begin'] = substr($SideInfoBitstream, $SideInfoOffset, 8); // $SideInfoOffset += 8; // $SideInfoOffset += 1; // } else { // // MPEG-2, MPEG-2.5 (stereo, joint-stereo, dual-channel) // $thisfile_mpeg_audio['side_info']['main_data_begin'] = substr($SideInfoBitstream, $SideInfoOffset, 8); // $SideInfoOffset += 8; // $SideInfoOffset += 2; // } // } // // if ($thisfile_mpeg_audio['version'] == '1') { // for ($channel = 0; $channel < $info['audio']['channels']; $channel++) { // for ($scfsi_band = 0; $scfsi_band < 4; $scfsi_band++) { // $thisfile_mpeg_audio['scfsi'][$channel][$scfsi_band] = substr($SideInfoBitstream, $SideInfoOffset, 1); // $SideInfoOffset += 2; // } // } // } // for ($granule = 0; $granule < (($thisfile_mpeg_audio['version'] == '1') ? 2 : 1); $granule++) { // for ($channel = 0; $channel < $info['audio']['channels']; $channel++) { // $thisfile_mpeg_audio['part2_3_length'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 12); // $SideInfoOffset += 12; // $thisfile_mpeg_audio['big_values'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 9); // $SideInfoOffset += 9; // $thisfile_mpeg_audio['global_gain'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 8); // $SideInfoOffset += 8; // if ($thisfile_mpeg_audio['version'] == '1') { // $thisfile_mpeg_audio['scalefac_compress'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 4); // $SideInfoOffset += 4; // } else { // $thisfile_mpeg_audio['scalefac_compress'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 9); // $SideInfoOffset += 9; // } // $thisfile_mpeg_audio['window_switching_flag'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 1); // $SideInfoOffset += 1; // // if ($thisfile_mpeg_audio['window_switching_flag'][$granule][$channel] == '1') { // // $thisfile_mpeg_audio['block_type'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 2); // $SideInfoOffset += 2; // $thisfile_mpeg_audio['mixed_block_flag'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 1); // $SideInfoOffset += 1; // // for ($region = 0; $region < 2; $region++) { // $thisfile_mpeg_audio['table_select'][$granule][$channel][$region] = substr($SideInfoBitstream, $SideInfoOffset, 5); // $SideInfoOffset += 5; // } // $thisfile_mpeg_audio['table_select'][$granule][$channel][2] = 0; // // for ($window = 0; $window < 3; $window++) { // $thisfile_mpeg_audio['subblock_gain'][$granule][$channel][$window] = substr($SideInfoBitstream, $SideInfoOffset, 3); // $SideInfoOffset += 3; // } // // } else { // // for ($region = 0; $region < 3; $region++) { // $thisfile_mpeg_audio['table_select'][$granule][$channel][$region] = substr($SideInfoBitstream, $SideInfoOffset, 5); // $SideInfoOffset += 5; // } // // $thisfile_mpeg_audio['region0_count'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 4); // $SideInfoOffset += 4; // $thisfile_mpeg_audio['region1_count'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 3); // $SideInfoOffset += 3; // $thisfile_mpeg_audio['block_type'][$granule][$channel] = 0; // } // // if ($thisfile_mpeg_audio['version'] == '1') { // $thisfile_mpeg_audio['preflag'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 1); // $SideInfoOffset += 1; // } // $thisfile_mpeg_audio['scalefac_scale'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 1); // $SideInfoOffset += 1; // $thisfile_mpeg_audio['count1table_select'][$granule][$channel] = substr($SideInfoBitstream, $SideInfoOffset, 1); // $SideInfoOffset += 1; // } // } //} return true; } /** * @param int $offset * @param int $nextframetestoffset * @param bool $ScanAsCBR * * @return bool */ public function RecursiveFrameScanning(&$offset, &$nextframetestoffset, $ScanAsCBR) { $info = &$this->getid3->info; $firstframetestarray = array('error' => array(), 'warning'=> array(), 'avdataend' => $info['avdataend'], 'avdataoffset' => $info['avdataoffset']); $this->decodeMPEGaudioHeader($offset, $firstframetestarray, false); $info['mp3_validity_check_bitrates'] = array(); for ($i = 0; $i < $this->mp3_valid_check_frames; $i++) { // check next (default: 50) frames for validity, to make sure we haven't run across a false synch if (($nextframetestoffset + 4) >= $info['avdataend']) { // end of file return true; } $nextframetestarray = array('error' => array(), 'warning' => array(), 'avdataend' => $info['avdataend'], 'avdataoffset'=>$info['avdataoffset']); if ($this->decodeMPEGaudioHeader($nextframetestoffset, $nextframetestarray, false)) { getid3_lib::safe_inc($info['mp3_validity_check_bitrates'][intval($nextframetestarray['mpeg']['audio']['bitrate'])]); if ($ScanAsCBR) { // force CBR mode, used for trying to pick out invalid audio streams with valid(?) VBR headers, or VBR streams with no VBR header if (!isset($nextframetestarray['mpeg']['audio']['bitrate']) || !isset($firstframetestarray['mpeg']['audio']['bitrate']) || ($nextframetestarray['mpeg']['audio']['bitrate'] != $firstframetestarray['mpeg']['audio']['bitrate'])) { return false; } } // next frame is OK, get ready to check the one after that if (isset($nextframetestarray['mpeg']['audio']['framelength']) && ($nextframetestarray['mpeg']['audio']['framelength'] > 0)) { $nextframetestoffset += (int) $nextframetestarray['mpeg']['audio']['framelength']; } else { $this->error('Frame at offset ('.$offset.') is has an invalid frame length.'); return false; } } elseif (!empty($firstframetestarray['mpeg']['audio']['framelength']) && (($nextframetestoffset + $firstframetestarray['mpeg']['audio']['framelength']) > $info['avdataend'])) { // it's not the end of the file, but there's not enough data left for another frame, so assume it's garbage/padding and return OK return true; } else { // next frame is not valid, note the error and fail, so scanning can contiue for a valid frame sequence $this->warning('Frame at offset ('.$offset.') is valid, but the next one at ('.$nextframetestoffset.') is not.'); return false; } } return true; } /** * @param int $offset * @param bool $deepscan * * @return int|false */ public function FreeFormatFrameLength($offset, $deepscan=false) { $info = &$this->getid3->info; $this->fseek($offset); $MPEGaudioData = $this->fread(32768); $SyncPattern1 = substr($MPEGaudioData, 0, 4); // may be different pattern due to padding $SyncPattern2 = $SyncPattern1[0].$SyncPattern1[1].chr(ord($SyncPattern1[2]) | 0x02).$SyncPattern1[3]; if ($SyncPattern2 === $SyncPattern1) { $SyncPattern2 = $SyncPattern1[0].$SyncPattern1[1].chr(ord($SyncPattern1[2]) & 0xFD).$SyncPattern1[3]; } $framelength = false; $framelength1 = strpos($MPEGaudioData, $SyncPattern1, 4); $framelength2 = strpos($MPEGaudioData, $SyncPattern2, 4); if ($framelength1 > 4) { $framelength = $framelength1; } if (($framelength2 > 4) && ($framelength2 < $framelength1)) { $framelength = $framelength2; } if (!$framelength) { // LAME 3.88 has a different value for modeextension on the first frame vs the rest $framelength1 = strpos($MPEGaudioData, substr($SyncPattern1, 0, 3), 4); $framelength2 = strpos($MPEGaudioData, substr($SyncPattern2, 0, 3), 4); if ($framelength1 > 4) { $framelength = $framelength1; } if (($framelength2 > 4) && ($framelength2 < $framelength1)) { $framelength = $framelength2; } if (!$framelength) { $this->error('Cannot find next free-format synch pattern ('.getid3_lib::PrintHexBytes($SyncPattern1).' or '.getid3_lib::PrintHexBytes($SyncPattern2).') after offset '.$offset); return false; } else { $this->warning('ModeExtension varies between first frame and other frames (known free-format issue in LAME 3.88)'); $info['audio']['codec'] = 'LAME'; $info['audio']['encoder'] = 'LAME3.88'; $SyncPattern1 = substr($SyncPattern1, 0, 3); $SyncPattern2 = substr($SyncPattern2, 0, 3); } } if ($deepscan) { $ActualFrameLengthValues = array(); $nextoffset = $offset + $framelength; while ($nextoffset < ($info['avdataend'] - 6)) { $this->fseek($nextoffset - 1); $NextSyncPattern = $this->fread(6); if ((substr($NextSyncPattern, 1, strlen($SyncPattern1)) == $SyncPattern1) || (substr($NextSyncPattern, 1, strlen($SyncPattern2)) == $SyncPattern2)) { // good - found where expected $ActualFrameLengthValues[] = $framelength; } elseif ((substr($NextSyncPattern, 0, strlen($SyncPattern1)) == $SyncPattern1) || (substr($NextSyncPattern, 0, strlen($SyncPattern2)) == $SyncPattern2)) { // ok - found one byte earlier than expected (last frame wasn't padded, first frame was) $ActualFrameLengthValues[] = ($framelength - 1); $nextoffset--; } elseif ((substr($NextSyncPattern, 2, strlen($SyncPattern1)) == $SyncPattern1) || (substr($NextSyncPattern, 2, strlen($SyncPattern2)) == $SyncPattern2)) { // ok - found one byte later than expected (last frame was padded, first frame wasn't) $ActualFrameLengthValues[] = ($framelength + 1); $nextoffset++; } else { $this->error('Did not find expected free-format sync pattern at offset '.$nextoffset); return false; } $nextoffset += $framelength; } if (count($ActualFrameLengthValues) > 0) { $framelength = intval(round(array_sum($ActualFrameLengthValues) / count($ActualFrameLengthValues))); } } return $framelength; } /** * @return bool */ public function getOnlyMPEGaudioInfoBruteForce() { $MPEGaudioHeaderDecodeCache = array(); $MPEGaudioHeaderValidCache = array(); $MPEGaudioHeaderLengthCache = array(); $MPEGaudioVersionLookup = self::MPEGaudioVersionArray(); $MPEGaudioLayerLookup = self::MPEGaudioLayerArray(); $MPEGaudioBitrateLookup = self::MPEGaudioBitrateArray(); $MPEGaudioFrequencyLookup = self::MPEGaudioFrequencyArray(); $MPEGaudioChannelModeLookup = self::MPEGaudioChannelModeArray(); $MPEGaudioModeExtensionLookup = self::MPEGaudioModeExtensionArray(); $MPEGaudioEmphasisLookup = self::MPEGaudioEmphasisArray(); $LongMPEGversionLookup = array(); $LongMPEGlayerLookup = array(); $LongMPEGbitrateLookup = array(); $LongMPEGpaddingLookup = array(); $LongMPEGfrequencyLookup = array(); $Distribution = array(); $Distribution['bitrate'] = array(); $Distribution['frequency'] = array(); $Distribution['layer'] = array(); $Distribution['version'] = array(); $Distribution['padding'] = array(); $info = &$this->getid3->info; $this->fseek($info['avdataoffset']); $max_frames_scan = 5000; $frames_scanned = 0; $previousvalidframe = $info['avdataoffset']; while ($this->ftell() < $info['avdataend']) { set_time_limit(30); $head4 = $this->fread(4); if (strlen($head4) < 4) { break; } if ($head4[0] != "\xFF") { for ($i = 1; $i < 4; $i++) { if ($head4[$i] == "\xFF") { $this->fseek($i - 4, SEEK_CUR); continue 2; } } continue; } if (!isset($MPEGaudioHeaderDecodeCache[$head4])) { $MPEGaudioHeaderDecodeCache[$head4] = self::MPEGaudioHeaderDecode($head4); } if (!isset($MPEGaudioHeaderValidCache[$head4])) { $MPEGaudioHeaderValidCache[$head4] = self::MPEGaudioHeaderValid($MPEGaudioHeaderDecodeCache[$head4], false, false); } if ($MPEGaudioHeaderValidCache[$head4]) { if (!isset($MPEGaudioHeaderLengthCache[$head4])) { $LongMPEGversionLookup[$head4] = $MPEGaudioVersionLookup[$MPEGaudioHeaderDecodeCache[$head4]['version']]; $LongMPEGlayerLookup[$head4] = $MPEGaudioLayerLookup[$MPEGaudioHeaderDecodeCache[$head4]['layer']]; $LongMPEGbitrateLookup[$head4] = $MPEGaudioBitrateLookup[$LongMPEGversionLookup[$head4]][$LongMPEGlayerLookup[$head4]][$MPEGaudioHeaderDecodeCache[$head4]['bitrate']]; $LongMPEGpaddingLookup[$head4] = (bool) $MPEGaudioHeaderDecodeCache[$head4]['padding']; $LongMPEGfrequencyLookup[$head4] = $MPEGaudioFrequencyLookup[$LongMPEGversionLookup[$head4]][$MPEGaudioHeaderDecodeCache[$head4]['sample_rate']]; $MPEGaudioHeaderLengthCache[$head4] = self::MPEGaudioFrameLength( $LongMPEGbitrateLookup[$head4], $LongMPEGversionLookup[$head4], $LongMPEGlayerLookup[$head4], $LongMPEGpaddingLookup[$head4], $LongMPEGfrequencyLookup[$head4]); } if ($MPEGaudioHeaderLengthCache[$head4] > 4) { $WhereWeWere = $this->ftell(); $this->fseek($MPEGaudioHeaderLengthCache[$head4] - 4, SEEK_CUR); $next4 = $this->fread(4); if ($next4[0] == "\xFF") { if (!isset($MPEGaudioHeaderDecodeCache[$next4])) { $MPEGaudioHeaderDecodeCache[$next4] = self::MPEGaudioHeaderDecode($next4); } if (!isset($MPEGaudioHeaderValidCache[$next4])) { $MPEGaudioHeaderValidCache[$next4] = self::MPEGaudioHeaderValid($MPEGaudioHeaderDecodeCache[$next4], false, false); } if ($MPEGaudioHeaderValidCache[$next4]) { $this->fseek(-4, SEEK_CUR); $Distribution['bitrate'][$LongMPEGbitrateLookup[$head4]] = isset($Distribution['bitrate'][$LongMPEGbitrateLookup[$head4]]) ? ++$Distribution['bitrate'][$LongMPEGbitrateLookup[$head4]] : 1; $Distribution['layer'][$LongMPEGlayerLookup[$head4]] = isset($Distribution['layer'][$LongMPEGlayerLookup[$head4]]) ? ++$Distribution['layer'][$LongMPEGlayerLookup[$head4]] : 1; $Distribution['version'][$LongMPEGversionLookup[$head4]] = isset($Distribution['version'][$LongMPEGversionLookup[$head4]]) ? ++$Distribution['version'][$LongMPEGversionLookup[$head4]] : 1; $Distribution['padding'][intval($LongMPEGpaddingLookup[$head4])] = isset($Distribution['padding'][intval($LongMPEGpaddingLookup[$head4])]) ? ++$Distribution['padding'][intval($LongMPEGpaddingLookup[$head4])] : 1; $Distribution['frequency'][$LongMPEGfrequencyLookup[$head4]] = isset($Distribution['frequency'][$LongMPEGfrequencyLookup[$head4]]) ? ++$Distribution['frequency'][$LongMPEGfrequencyLookup[$head4]] : 1; if (++$frames_scanned >= $max_frames_scan) { $pct_data_scanned = getid3_lib::SafeDiv($this->ftell() - $info['avdataoffset'], $info['avdataend'] - $info['avdataoffset']); $this->warning('too many MPEG audio frames to scan, only scanned first '.$max_frames_scan.' frames ('.number_format($pct_data_scanned * 100, 1).'% of file) and extrapolated distribution, playtime and bitrate may be incorrect.'); foreach ($Distribution as $key1 => $value1) { foreach ($value1 as $key2 => $value2) { $Distribution[$key1][$key2] = $pct_data_scanned ? round($value2 / $pct_data_scanned) : 1; } } break; } continue; } } unset($next4); $this->fseek($WhereWeWere - 3); } } } foreach ($Distribution as $key => $value) { ksort($Distribution[$key], SORT_NUMERIC); } ksort($Distribution['version'], SORT_STRING); $info['mpeg']['audio']['bitrate_distribution'] = $Distribution['bitrate']; $info['mpeg']['audio']['frequency_distribution'] = $Distribution['frequency']; $info['mpeg']['audio']['layer_distribution'] = $Distribution['layer']; $info['mpeg']['audio']['version_distribution'] = $Distribution['version']; $info['mpeg']['audio']['padding_distribution'] = $Distribution['padding']; if (count($Distribution['version']) > 1) { $this->error('Corrupt file - more than one MPEG version detected'); } if (count($Distribution['layer']) > 1) { $this->error('Corrupt file - more than one MPEG layer detected'); } if (count($Distribution['frequency']) > 1) { $this->error('Corrupt file - more than one MPEG sample rate detected'); } $bittotal = 0; foreach ($Distribution['bitrate'] as $bitratevalue => $bitratecount) { if ($bitratevalue != 'free') { $bittotal += ($bitratevalue * $bitratecount); } } $info['mpeg']['audio']['frame_count'] = array_sum($Distribution['bitrate']); if ($info['mpeg']['audio']['frame_count'] == 0) { $this->error('no MPEG audio frames found'); return false; } $info['mpeg']['audio']['bitrate'] = ($bittotal / $info['mpeg']['audio']['frame_count']); $info['mpeg']['audio']['bitrate_mode'] = ((count($Distribution['bitrate']) > 0) ? 'vbr' : 'cbr'); $info['mpeg']['audio']['sample_rate'] = getid3_lib::array_max($Distribution['frequency'], true); $info['audio']['bitrate'] = $info['mpeg']['audio']['bitrate']; $info['audio']['bitrate_mode'] = $info['mpeg']['audio']['bitrate_mode']; $info['audio']['sample_rate'] = $info['mpeg']['audio']['sample_rate']; $info['audio']['dataformat'] = 'mp'.getid3_lib::array_max($Distribution['layer'], true); $info['fileformat'] = $info['audio']['dataformat']; return true; } /** * @param int $avdataoffset * @param bool $BitrateHistogram * * @return bool */ public function getOnlyMPEGaudioInfo($avdataoffset, $BitrateHistogram=false) { // looks for synch, decodes MPEG audio header $info = &$this->getid3->info; static $MPEGaudioVersionLookup; static $MPEGaudioLayerLookup; static $MPEGaudioBitrateLookup; if (empty($MPEGaudioVersionLookup)) { $MPEGaudioVersionLookup = self::MPEGaudioVersionArray(); $MPEGaudioLayerLookup = self::MPEGaudioLayerArray(); $MPEGaudioBitrateLookup = self::MPEGaudioBitrateArray(); } $this->fseek($avdataoffset); $sync_seek_buffer_size = min(128 * 1024, $info['avdataend'] - $avdataoffset); if ($sync_seek_buffer_size <= 0) { $this->error('Invalid $sync_seek_buffer_size at offset '.$avdataoffset); return false; } $header = $this->fread($sync_seek_buffer_size); $sync_seek_buffer_size = strlen($header); $SynchSeekOffset = 0; $SyncSeekAttempts = 0; $SyncSeekAttemptsMax = 1000; $FirstFrameThisfileInfo = null; while ($SynchSeekOffset < $sync_seek_buffer_size) { if ((($avdataoffset + $SynchSeekOffset) < $info['avdataend']) && !$this->feof()) { if ($SynchSeekOffset > $sync_seek_buffer_size) { // if a synch's not found within the first 128k bytes, then give up $this->error('Could not find valid MPEG audio synch within the first '.round($sync_seek_buffer_size / 1024).'kB'); if (isset($info['audio']['bitrate'])) { unset($info['audio']['bitrate']); } if (isset($info['mpeg']['audio'])) { unset($info['mpeg']['audio']); } if (empty($info['mpeg'])) { unset($info['mpeg']); } return false; } } if (($SynchSeekOffset + 1) >= strlen($header)) { $this->error('Could not find valid MPEG synch before end of file'); return false; } if (($header[$SynchSeekOffset] == "\xFF") && ($header[($SynchSeekOffset + 1)] > "\xE0")) { // possible synch detected if (++$SyncSeekAttempts >= $SyncSeekAttemptsMax) { // https://github.com/JamesHeinrich/getID3/issues/286 // corrupt files claiming to be MP3, with a large number of 0xFF bytes near the beginning, can cause this loop to take a very long time // should have escape condition to avoid spending too much time scanning a corrupt file // if a synch's not found within the first 128k bytes, then give up $this->error('Could not find valid MPEG audio synch after scanning '.$SyncSeekAttempts.' candidate offsets'); if (isset($info['audio']['bitrate'])) { unset($info['audio']['bitrate']); } if (isset($info['mpeg']['audio'])) { unset($info['mpeg']['audio']); } if (empty($info['mpeg'])) { unset($info['mpeg']); } return false; } $FirstFrameAVDataOffset = null; if (!isset($FirstFrameThisfileInfo) && !isset($info['mpeg']['audio'])) { $FirstFrameThisfileInfo = $info; $FirstFrameAVDataOffset = $avdataoffset + $SynchSeekOffset; if (!$this->decodeMPEGaudioHeader($FirstFrameAVDataOffset, $FirstFrameThisfileInfo, false)) { // if this is the first valid MPEG-audio frame, save it in case it's a VBR header frame and there's // garbage between this frame and a valid sequence of MPEG-audio frames, to be restored below unset($FirstFrameThisfileInfo); } } $dummy = $info; // only overwrite real data if valid header found if ($this->decodeMPEGaudioHeader($avdataoffset + $SynchSeekOffset, $dummy, true)) { $info = $dummy; $info['avdataoffset'] = $avdataoffset + $SynchSeekOffset; switch (isset($info['fileformat']) ? $info['fileformat'] : '') { case '': case 'id3': case 'ape': case 'mp3': $info['fileformat'] = 'mp3'; $info['audio']['dataformat'] = 'mp3'; break; } if (isset($FirstFrameThisfileInfo) && isset($FirstFrameThisfileInfo['mpeg']['audio']['bitrate_mode']) && ($FirstFrameThisfileInfo['mpeg']['audio']['bitrate_mode'] == 'vbr')) { if (!(abs($info['audio']['bitrate'] - $FirstFrameThisfileInfo['audio']['bitrate']) <= 1)) { // If there is garbage data between a valid VBR header frame and a sequence // of valid MPEG-audio frames the VBR data is no longer discarded. $info = $FirstFrameThisfileInfo; $info['avdataoffset'] = $FirstFrameAVDataOffset; $info['fileformat'] = 'mp3'; $info['audio']['dataformat'] = 'mp3'; $dummy = $info; unset($dummy['mpeg']['audio']); $GarbageOffsetStart = $FirstFrameAVDataOffset + $FirstFrameThisfileInfo['mpeg']['audio']['framelength']; $GarbageOffsetEnd = $avdataoffset + $SynchSeekOffset; if ($this->decodeMPEGaudioHeader($GarbageOffsetEnd, $dummy, true, true)) { $info = $dummy; $info['avdataoffset'] = $GarbageOffsetEnd; $this->warning('apparently-valid VBR header not used because could not find '.$this->mp3_valid_check_frames.' consecutive MPEG-audio frames immediately after VBR header (garbage data for '.($GarbageOffsetEnd - $GarbageOffsetStart).' bytes between '.$GarbageOffsetStart.' and '.$GarbageOffsetEnd.'), but did find valid CBR stream starting at '.$GarbageOffsetEnd); } else { $this->warning('using data from VBR header even though could not find '.$this->mp3_valid_check_frames.' consecutive MPEG-audio frames immediately after VBR header (garbage data for '.($GarbageOffsetEnd - $GarbageOffsetStart).' bytes between '.$GarbageOffsetStart.' and '.$GarbageOffsetEnd.')'); } } } if (isset($info['mpeg']['audio']['bitrate_mode']) && ($info['mpeg']['audio']['bitrate_mode'] == 'vbr') && !isset($info['mpeg']['audio']['VBR_method'])) { // VBR file with no VBR header $BitrateHistogram = true; } if ($BitrateHistogram) { $info['mpeg']['audio']['stereo_distribution'] = array('stereo'=>0, 'joint stereo'=>0, 'dual channel'=>0, 'mono'=>0); $info['mpeg']['audio']['version_distribution'] = array('1'=>0, '2'=>0, '2.5'=>0); if ($info['mpeg']['audio']['version'] == '1') { if ($info['mpeg']['audio']['layer'] == 3) { $info['mpeg']['audio']['bitrate_distribution'] = array('free'=>0, 32000=>0, 40000=>0, 48000=>0, 56000=>0, 64000=>0, 80000=>0, 96000=>0, 112000=>0, 128000=>0, 160000=>0, 192000=>0, 224000=>0, 256000=>0, 320000=>0); } elseif ($info['mpeg']['audio']['layer'] == 2) { $info['mpeg']['audio']['bitrate_distribution'] = array('free'=>0, 32000=>0, 48000=>0, 56000=>0, 64000=>0, 80000=>0, 96000=>0, 112000=>0, 128000=>0, 160000=>0, 192000=>0, 224000=>0, 256000=>0, 320000=>0, 384000=>0); } elseif ($info['mpeg']['audio']['layer'] == 1) { $info['mpeg']['audio']['bitrate_distribution'] = array('free'=>0, 32000=>0, 64000=>0, 96000=>0, 128000=>0, 160000=>0, 192000=>0, 224000=>0, 256000=>0, 288000=>0, 320000=>0, 352000=>0, 384000=>0, 416000=>0, 448000=>0); } } elseif ($info['mpeg']['audio']['layer'] == 1) { $info['mpeg']['audio']['bitrate_distribution'] = array('free'=>0, 32000=>0, 48000=>0, 56000=>0, 64000=>0, 80000=>0, 96000=>0, 112000=>0, 128000=>0, 144000=>0, 160000=>0, 176000=>0, 192000=>0, 224000=>0, 256000=>0); } else { $info['mpeg']['audio']['bitrate_distribution'] = array('free'=>0, 8000=>0, 16000=>0, 24000=>0, 32000=>0, 40000=>0, 48000=>0, 56000=>0, 64000=>0, 80000=>0, 96000=>0, 112000=>0, 128000=>0, 144000=>0, 160000=>0); } $dummy = array('error'=>$info['error'], 'warning'=>$info['warning'], 'avdataend'=>$info['avdataend'], 'avdataoffset'=>$info['avdataoffset']); $synchstartoffset = $info['avdataoffset']; $this->fseek($info['avdataoffset']); // you can play with these numbers: $max_frames_scan = 50000; $max_scan_segments = 10; // don't play with these numbers: $FastMode = false; $SynchErrorsFound = 0; $frames_scanned = 0; $this_scan_segment = 0; $frames_scan_per_segment = ceil($max_frames_scan / $max_scan_segments); $pct_data_scanned = 0; for ($current_segment = 0; $current_segment < $max_scan_segments; $current_segment++) { $frames_scanned_this_segment = 0; $scan_start_offset = array(); if ($this->ftell() >= $info['avdataend']) { break; } $scan_start_offset[$current_segment] = max($this->ftell(), $info['avdataoffset'] + round($current_segment * (($info['avdataend'] - $info['avdataoffset']) / $max_scan_segments))); if ($current_segment > 0) { $this->fseek($scan_start_offset[$current_segment]); $buffer_4k = $this->fread(4096); for ($j = 0; $j < (strlen($buffer_4k) - 4); $j++) { if (($buffer_4k[$j] == "\xFF") && ($buffer_4k[($j + 1)] > "\xE0")) { // synch detected if ($this->decodeMPEGaudioHeader($scan_start_offset[$current_segment] + $j, $dummy, false, false, $FastMode)) { $calculated_next_offset = $scan_start_offset[$current_segment] + $j + $dummy['mpeg']['audio']['framelength']; if ($this->decodeMPEGaudioHeader($calculated_next_offset, $dummy, false, false, $FastMode)) { $scan_start_offset[$current_segment] += $j; break; } } } } } $synchstartoffset = $scan_start_offset[$current_segment]; while (($synchstartoffset < $info['avdataend']) && $this->decodeMPEGaudioHeader($synchstartoffset, $dummy, false, false, $FastMode)) { $FastMode = true; $thisframebitrate = $MPEGaudioBitrateLookup[$MPEGaudioVersionLookup[$dummy['mpeg']['audio']['raw']['version']]][$MPEGaudioLayerLookup[$dummy['mpeg']['audio']['raw']['layer']]][$dummy['mpeg']['audio']['raw']['bitrate']]; if (empty($dummy['mpeg']['audio']['framelength'])) { $SynchErrorsFound++; $synchstartoffset++; } else { getid3_lib::safe_inc($info['mpeg']['audio']['bitrate_distribution'][$thisframebitrate]); getid3_lib::safe_inc($info['mpeg']['audio']['stereo_distribution'][$dummy['mpeg']['audio']['channelmode']]); getid3_lib::safe_inc($info['mpeg']['audio']['version_distribution'][$dummy['mpeg']['audio']['version']]); $synchstartoffset += $dummy['mpeg']['audio']['framelength']; } $frames_scanned++; if ($frames_scan_per_segment && (++$frames_scanned_this_segment >= $frames_scan_per_segment)) { $this_pct_scanned = getid3_lib::SafeDiv($this->ftell() - $scan_start_offset[$current_segment], $info['avdataend'] - $info['avdataoffset']); if (($current_segment == 0) && (($this_pct_scanned * $max_scan_segments) >= 1)) { // file likely contains < $max_frames_scan, just scan as one segment $max_scan_segments = 1; $frames_scan_per_segment = $max_frames_scan; } else { $pct_data_scanned += $this_pct_scanned; break; } } } } if ($pct_data_scanned > 0) { $this->warning('too many MPEG audio frames to scan, only scanned '.$frames_scanned.' frames in '.$max_scan_segments.' segments ('.number_format($pct_data_scanned * 100, 1).'% of file) and extrapolated distribution, playtime and bitrate may be incorrect.'); foreach ($info['mpeg']['audio'] as $key1 => $value1) { if (!preg_match('#_distribution$#i', $key1)) { continue; } foreach ($value1 as $key2 => $value2) { $info['mpeg']['audio'][$key1][$key2] = round($value2 / $pct_data_scanned); } } } if ($SynchErrorsFound > 0) { $this->warning('Found '.$SynchErrorsFound.' synch errors in histogram analysis'); //return false; } $bittotal = 0; $framecounter = 0; foreach ($info['mpeg']['audio']['bitrate_distribution'] as $bitratevalue => $bitratecount) { $framecounter += $bitratecount; if ($bitratevalue != 'free') { $bittotal += ($bitratevalue * $bitratecount); } } if ($framecounter == 0) { $this->error('Corrupt MP3 file: framecounter == zero'); return false; } $info['mpeg']['audio']['frame_count'] = getid3_lib::CastAsInt($framecounter); $info['mpeg']['audio']['bitrate'] = ($bittotal / $framecounter); $info['audio']['bitrate'] = $info['mpeg']['audio']['bitrate']; // Definitively set VBR vs CBR, even if the Xing/LAME/VBRI header says differently $distinct_bitrates = 0; foreach ($info['mpeg']['audio']['bitrate_distribution'] as $bitrate_value => $bitrate_count) { if ($bitrate_count > 0) { $distinct_bitrates++; } } if ($distinct_bitrates > 1) { $info['mpeg']['audio']['bitrate_mode'] = 'vbr'; } else { $info['mpeg']['audio']['bitrate_mode'] = 'cbr'; } $info['audio']['bitrate_mode'] = $info['mpeg']['audio']['bitrate_mode']; } break; // exit while() } } $SynchSeekOffset++; if (($avdataoffset + $SynchSeekOffset) >= $info['avdataend']) { // end of file/data if (empty($info['mpeg']['audio'])) { $this->error('could not find valid MPEG synch before end of file'); if (isset($info['audio']['bitrate'])) { unset($info['audio']['bitrate']); } if (isset($info['mpeg']['audio'])) { unset($info['mpeg']['audio']); } if (isset($info['mpeg']) && (!is_array($info['mpeg']) || empty($info['mpeg']))) { unset($info['mpeg']); } return false; } break; } } $info['audio']['channels'] = $info['mpeg']['audio']['channels']; if ($info['audio']['channels'] < 1) { $this->error('Corrupt MP3 file: no channels'); return false; } $info['audio']['channelmode'] = $info['mpeg']['audio']['channelmode']; $info['audio']['sample_rate'] = $info['mpeg']['audio']['sample_rate']; return true; } /** * @return array */ public static function MPEGaudioVersionArray() { static $MPEGaudioVersion = array('2.5', false, '2', '1'); return $MPEGaudioVersion; } /** * @return array */ public static function MPEGaudioLayerArray() { static $MPEGaudioLayer = array(false, 3, 2, 1); return $MPEGaudioLayer; } /** * @return array */ public static function MPEGaudioBitrateArray() { static $MPEGaudioBitrate; if (empty($MPEGaudioBitrate)) { $MPEGaudioBitrate = array ( '1' => array( 1 => array('free', 32000, 64000, 96000, 128000, 160000, 192000, 224000, 256000, 288000, 320000, 352000, 384000, 416000, 448000), 2 => array('free', 32000, 48000, 56000, 64000, 80000, 96000, 112000, 128000, 160000, 192000, 224000, 256000, 320000, 384000), 3 => array('free', 32000, 40000, 48000, 56000, 64000, 80000, 96000, 112000, 128000, 160000, 192000, 224000, 256000, 320000) ), '2' => array( 1 => array('free', 32000, 48000, 56000, 64000, 80000, 96000, 112000, 128000, 144000, 160000, 176000, 192000, 224000, 256000), 2 => array('free', 8000, 16000, 24000, 32000, 40000, 48000, 56000, 64000, 80000, 96000, 112000, 128000, 144000, 160000), ), ); $MPEGaudioBitrate['2'][3] = $MPEGaudioBitrate['2'][2]; $MPEGaudioBitrate['2.5'] = $MPEGaudioBitrate['2']; } return $MPEGaudioBitrate; } /** * @return array */ public static function MPEGaudioFrequencyArray() { static $MPEGaudioFrequency; if (empty($MPEGaudioFrequency)) { $MPEGaudioFrequency = array ( '1' => array(44100, 48000, 32000), '2' => array(22050, 24000, 16000), '2.5' => array(11025, 12000, 8000) ); } return $MPEGaudioFrequency; } /** * @return array */ public static function MPEGaudioChannelModeArray() { static $MPEGaudioChannelMode = array('stereo', 'joint stereo', 'dual channel', 'mono'); return $MPEGaudioChannelMode; } /** * @return array */ public static function MPEGaudioModeExtensionArray() { static $MPEGaudioModeExtension; if (empty($MPEGaudioModeExtension)) { $MPEGaudioModeExtension = array ( 1 => array('4-31', '8-31', '12-31', '16-31'), 2 => array('4-31', '8-31', '12-31', '16-31'), 3 => array('', 'IS', 'MS', 'IS+MS') ); } return $MPEGaudioModeExtension; } /** * @return array */ public static function MPEGaudioEmphasisArray() { static $MPEGaudioEmphasis = array('none', '50/15ms', false, 'CCIT J.17'); return $MPEGaudioEmphasis; } /** * @param string $head4 * @param bool $allowBitrate15 * * @return bool */ public static function MPEGaudioHeaderBytesValid($head4, $allowBitrate15=false) { return self::MPEGaudioHeaderValid(self::MPEGaudioHeaderDecode($head4), false, $allowBitrate15); } /** * @param array $rawarray * @param bool $echoerrors * @param bool $allowBitrate15 * * @return bool */ public static function MPEGaudioHeaderValid($rawarray, $echoerrors=false, $allowBitrate15=false) { if (!isset($rawarray['synch']) || ($rawarray['synch'] & 0x0FFE) != 0x0FFE) { return false; } static $MPEGaudioVersionLookup; static $MPEGaudioLayerLookup; static $MPEGaudioBitrateLookup; static $MPEGaudioFrequencyLookup; static $MPEGaudioChannelModeLookup; static $MPEGaudioModeExtensionLookup; static $MPEGaudioEmphasisLookup; if (empty($MPEGaudioVersionLookup)) { $MPEGaudioVersionLookup = self::MPEGaudioVersionArray(); $MPEGaudioLayerLookup = self::MPEGaudioLayerArray(); $MPEGaudioBitrateLookup = self::MPEGaudioBitrateArray(); $MPEGaudioFrequencyLookup = self::MPEGaudioFrequencyArray(); $MPEGaudioChannelModeLookup = self::MPEGaudioChannelModeArray(); $MPEGaudioModeExtensionLookup = self::MPEGaudioModeExtensionArray(); $MPEGaudioEmphasisLookup = self::MPEGaudioEmphasisArray(); } if (isset($MPEGaudioVersionLookup[$rawarray['version']])) { $decodedVersion = $MPEGaudioVersionLookup[$rawarray['version']]; } else { echo ($echoerrors ? "\n".'invalid Version ('.$rawarray['version'].')' : ''); return false; } if (isset($MPEGaudioLayerLookup[$rawarray['layer']])) { $decodedLayer = $MPEGaudioLayerLookup[$rawarray['layer']]; } else { echo ($echoerrors ? "\n".'invalid Layer ('.$rawarray['layer'].')' : ''); return false; } if (!isset($MPEGaudioBitrateLookup[$decodedVersion][$decodedLayer][$rawarray['bitrate']])) { echo ($echoerrors ? "\n".'invalid Bitrate ('.$rawarray['bitrate'].')' : ''); if ($rawarray['bitrate'] == 15) { // known issue in LAME 3.90 - 3.93.1 where free-format has bitrate ID of 15 instead of 0 // let it go through here otherwise file will not be identified if (!$allowBitrate15) { return false; } } else { return false; } } if (!isset($MPEGaudioFrequencyLookup[$decodedVersion][$rawarray['sample_rate']])) { echo ($echoerrors ? "\n".'invalid Frequency ('.$rawarray['sample_rate'].')' : ''); return false; } if (!isset($MPEGaudioChannelModeLookup[$rawarray['channelmode']])) { echo ($echoerrors ? "\n".'invalid ChannelMode ('.$rawarray['channelmode'].')' : ''); return false; } if (!isset($MPEGaudioModeExtensionLookup[$decodedLayer][$rawarray['modeextension']])) { echo ($echoerrors ? "\n".'invalid Mode Extension ('.$rawarray['modeextension'].')' : ''); return false; } if (!isset($MPEGaudioEmphasisLookup[$rawarray['emphasis']])) { echo ($echoerrors ? "\n".'invalid Emphasis ('.$rawarray['emphasis'].')' : ''); return false; } // These are just either set or not set, you can't mess that up :) // $rawarray['protection']; // $rawarray['padding']; // $rawarray['private']; // $rawarray['copyright']; // $rawarray['original']; return true; } /** * @param string $Header4Bytes * * @return array|false */ public static function MPEGaudioHeaderDecode($Header4Bytes) { // AAAA AAAA AAAB BCCD EEEE FFGH IIJJ KLMM // A - Frame sync (all bits set) // B - MPEG Audio version ID // C - Layer description // D - Protection bit // E - Bitrate index // F - Sampling rate frequency index // G - Padding bit // H - Private bit // I - Channel Mode // J - Mode extension (Only if Joint stereo) // K - Copyright // L - Original // M - Emphasis if (strlen($Header4Bytes) != 4) { return false; } $MPEGrawHeader = array(); $MPEGrawHeader['synch'] = (getid3_lib::BigEndian2Int(substr($Header4Bytes, 0, 2)) & 0xFFE0) >> 4; $MPEGrawHeader['version'] = (ord($Header4Bytes[1]) & 0x18) >> 3; // BB $MPEGrawHeader['layer'] = (ord($Header4Bytes[1]) & 0x06) >> 1; // CC $MPEGrawHeader['protection'] = (ord($Header4Bytes[1]) & 0x01); // D $MPEGrawHeader['bitrate'] = (ord($Header4Bytes[2]) & 0xF0) >> 4; // EEEE $MPEGrawHeader['sample_rate'] = (ord($Header4Bytes[2]) & 0x0C) >> 2; // FF $MPEGrawHeader['padding'] = (ord($Header4Bytes[2]) & 0x02) >> 1; // G $MPEGrawHeader['private'] = (ord($Header4Bytes[2]) & 0x01); // H $MPEGrawHeader['channelmode'] = (ord($Header4Bytes[3]) & 0xC0) >> 6; // II $MPEGrawHeader['modeextension'] = (ord($Header4Bytes[3]) & 0x30) >> 4; // JJ $MPEGrawHeader['copyright'] = (ord($Header4Bytes[3]) & 0x08) >> 3; // K $MPEGrawHeader['original'] = (ord($Header4Bytes[3]) & 0x04) >> 2; // L $MPEGrawHeader['emphasis'] = (ord($Header4Bytes[3]) & 0x03); // MM return $MPEGrawHeader; } /** * @param int|string $bitrate * @param string $version * @param string $layer * @param bool $padding * @param int $samplerate * * @return int|false */ public static function MPEGaudioFrameLength(&$bitrate, &$version, &$layer, $padding, &$samplerate) { static $AudioFrameLengthCache = array(); if (!isset($AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate])) { $AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate] = false; if ($bitrate != 'free') { if ($version == '1') { if ($layer == '1') { // For Layer I slot is 32 bits long $FrameLengthCoefficient = 48; $SlotLength = 4; } else { // Layer 2 / 3 // for Layer 2 and Layer 3 slot is 8 bits long. $FrameLengthCoefficient = 144; $SlotLength = 1; } } else { // MPEG-2 / MPEG-2.5 if ($layer == '1') { // For Layer I slot is 32 bits long $FrameLengthCoefficient = 24; $SlotLength = 4; } elseif ($layer == '2') { // for Layer 2 and Layer 3 slot is 8 bits long. $FrameLengthCoefficient = 144; $SlotLength = 1; } else { // layer 3 // for Layer 2 and Layer 3 slot is 8 bits long. $FrameLengthCoefficient = 72; $SlotLength = 1; } } // FrameLengthInBytes = ((Coefficient * BitRate) / SampleRate) + Padding if ($samplerate > 0) { $NewFramelength = ($FrameLengthCoefficient * $bitrate) / $samplerate; $NewFramelength = floor($NewFramelength / $SlotLength) * $SlotLength; // round to next-lower multiple of SlotLength (1 byte for Layer 2/3, 4 bytes for Layer I) if ($padding) { $NewFramelength += $SlotLength; } $AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate] = (int) $NewFramelength; } } } return $AudioFrameLengthCache[$bitrate][$version][$layer][$padding][$samplerate]; } /** * @param float|int $bit_rate * * @return int|float|string */ public static function ClosestStandardMP3Bitrate($bit_rate) { static $standard_bit_rates = array (320000, 256000, 224000, 192000, 160000, 128000, 112000, 96000, 80000, 64000, 56000, 48000, 40000, 32000, 24000, 16000, 8000); static $bit_rate_table = array (0=>'-'); $round_bit_rate = intval(round($bit_rate, -3)); if (!isset($bit_rate_table[$round_bit_rate])) { if ($round_bit_rate > max($standard_bit_rates)) { $bit_rate_table[$round_bit_rate] = round($bit_rate, 2 - strlen($bit_rate)); } else { $bit_rate_table[$round_bit_rate] = max($standard_bit_rates); foreach ($standard_bit_rates as $standard_bit_rate) { if ($round_bit_rate >= $standard_bit_rate + (($bit_rate_table[$round_bit_rate] - $standard_bit_rate) / 2)) { break; } $bit_rate_table[$round_bit_rate] = $standard_bit_rate; } } } return $bit_rate_table[$round_bit_rate]; } /** * @param string $version * @param string $channelmode * * @return int */ public static function XingVBRidOffset($version, $channelmode) { static $XingVBRidOffsetCache = array(); if (empty($XingVBRidOffsetCache)) { $XingVBRidOffsetCache = array ( '1' => array ('mono' => 0x15, // 4 + 17 = 21 'stereo' => 0x24, // 4 + 32 = 36 'joint stereo' => 0x24, 'dual channel' => 0x24 ), '2' => array ('mono' => 0x0D, // 4 + 9 = 13 'stereo' => 0x15, // 4 + 17 = 21 'joint stereo' => 0x15, 'dual channel' => 0x15 ), '2.5' => array ('mono' => 0x15, 'stereo' => 0x15, 'joint stereo' => 0x15, 'dual channel' => 0x15 ) ); } return $XingVBRidOffsetCache[$version][$channelmode]; } /** * @param int $VBRmethodID * * @return string */ public static function LAMEvbrMethodLookup($VBRmethodID) { static $LAMEvbrMethodLookup = array( 0x00 => 'unknown', 0x01 => 'cbr', 0x02 => 'abr', 0x03 => 'vbr-old / vbr-rh', 0x04 => 'vbr-new / vbr-mtrh', 0x05 => 'vbr-mt', 0x06 => 'vbr (full vbr method 4)', 0x08 => 'cbr (constant bitrate 2 pass)', 0x09 => 'abr (2 pass)', 0x0F => 'reserved' ); return (isset($LAMEvbrMethodLookup[$VBRmethodID]) ? $LAMEvbrMethodLookup[$VBRmethodID] : ''); } /** * @param int $StereoModeID * * @return string */ public static function LAMEmiscStereoModeLookup($StereoModeID) { static $LAMEmiscStereoModeLookup = array( 0 => 'mono', 1 => 'stereo', 2 => 'dual mono', 3 => 'joint stereo', 4 => 'forced stereo', 5 => 'auto', 6 => 'intensity stereo', 7 => 'other' ); return (isset($LAMEmiscStereoModeLookup[$StereoModeID]) ? $LAMEmiscStereoModeLookup[$StereoModeID] : ''); } /** * @param int $SourceSampleFrequencyID * * @return string */ public static function LAMEmiscSourceSampleFrequencyLookup($SourceSampleFrequencyID) { static $LAMEmiscSourceSampleFrequencyLookup = array( 0 => '<= 32 kHz', 1 => '44.1 kHz', 2 => '48 kHz', 3 => '> 48kHz' ); return (isset($LAMEmiscSourceSampleFrequencyLookup[$SourceSampleFrequencyID]) ? $LAMEmiscSourceSampleFrequencyLookup[$SourceSampleFrequencyID] : ''); } /** * @param int $SurroundInfoID * * @return string */ public static function LAMEsurroundInfoLookup($SurroundInfoID) { static $LAMEsurroundInfoLookup = array( 0 => 'no surround info', 1 => 'DPL encoding', 2 => 'DPL2 encoding', 3 => 'Ambisonic encoding' ); return (isset($LAMEsurroundInfoLookup[$SurroundInfoID]) ? $LAMEsurroundInfoLookup[$SurroundInfoID] : 'reserved'); } /** * @param array $LAMEtag * * @return string */ public static function LAMEpresetUsedLookup($LAMEtag) { if ($LAMEtag['preset_used_id'] == 0) { // no preset used (LAME >=3.93) // no preset recorded (LAME <3.93) return ''; } $LAMEpresetUsedLookup = array(); ///// THIS PART CANNOT BE STATIC . for ($i = 8; $i <= 320; $i++) { switch ($LAMEtag['vbr_method']) { case 'cbr': $LAMEpresetUsedLookup[$i] = '--alt-preset '.$LAMEtag['vbr_method'].' '.$i; break; case 'abr': default: // other VBR modes shouldn't be here(?) $LAMEpresetUsedLookup[$i] = '--alt-preset '.$i; break; } } // named old-style presets (studio, phone, voice, etc) are handled in GuessEncoderOptions() // named alt-presets $LAMEpresetUsedLookup[1000] = '--r3mix'; $LAMEpresetUsedLookup[1001] = '--alt-preset standard'; $LAMEpresetUsedLookup[1002] = '--alt-preset extreme'; $LAMEpresetUsedLookup[1003] = '--alt-preset insane'; $LAMEpresetUsedLookup[1004] = '--alt-preset fast standard'; $LAMEpresetUsedLookup[1005] = '--alt-preset fast extreme'; $LAMEpresetUsedLookup[1006] = '--alt-preset medium'; $LAMEpresetUsedLookup[1007] = '--alt-preset fast medium'; // LAME 3.94 additions/changes $LAMEpresetUsedLookup[1010] = '--preset portable'; // 3.94a15 Oct 21 2003 $LAMEpresetUsedLookup[1015] = '--preset radio'; // 3.94a15 Oct 21 2003 $LAMEpresetUsedLookup[320] = '--preset insane'; // 3.94a15 Nov 12 2003 $LAMEpresetUsedLookup[410] = '-V9'; $LAMEpresetUsedLookup[420] = '-V8'; $LAMEpresetUsedLookup[440] = '-V6'; $LAMEpresetUsedLookup[430] = '--preset radio'; // 3.94a15 Nov 12 2003 $LAMEpresetUsedLookup[450] = '--preset '.(($LAMEtag['raw']['vbr_method'] == 4) ? 'fast ' : '').'portable'; // 3.94a15 Nov 12 2003 $LAMEpresetUsedLookup[460] = '--preset '.(($LAMEtag['raw']['vbr_method'] == 4) ? 'fast ' : '').'medium'; // 3.94a15 Nov 12 2003 $LAMEpresetUsedLookup[470] = '--r3mix'; // 3.94b1 Dec 18 2003 $LAMEpresetUsedLookup[480] = '--preset '.(($LAMEtag['raw']['vbr_method'] == 4) ? 'fast ' : '').'standard'; // 3.94a15 Nov 12 2003 $LAMEpresetUsedLookup[490] = '-V1'; $LAMEpresetUsedLookup[500] = '--preset '.(($LAMEtag['raw']['vbr_method'] == 4) ? 'fast ' : '').'extreme'; // 3.94a15 Nov 12 2003 return (isset($LAMEpresetUsedLookup[$LAMEtag['preset_used_id']]) ? $LAMEpresetUsedLookup[$LAMEtag['preset_used_id']] : 'new/unknown preset: '.$LAMEtag['preset_used_id'].' - report to info@getid3.org'); } } module.audio-video.matroska.php000060000000332620152233444720012572 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // see readme.txt for more details // ///////////////////////////////////////////////////////////////// // // // module.audio-video.matriska.php // // module for analyzing Matroska containers // // dependencies: NONE // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers exit; } define('EBML_ID_CHAPTERS', 0x0043A770); // [10][43][A7][70] -- A system to define basic menus and partition data. For more detailed information, look at the Chapters Explanation. define('EBML_ID_SEEKHEAD', 0x014D9B74); // [11][4D][9B][74] -- Contains the position of other level 1 elements. define('EBML_ID_TAGS', 0x0254C367); // [12][54][C3][67] -- Element containing elements specific to Tracks/Chapters. A list of valid tags can be found . define('EBML_ID_INFO', 0x0549A966); // [15][49][A9][66] -- Contains miscellaneous general information and statistics on the file. define('EBML_ID_TRACKS', 0x0654AE6B); // [16][54][AE][6B] -- A top-level block of information with many tracks described. define('EBML_ID_SEGMENT', 0x08538067); // [18][53][80][67] -- This element contains all other top-level (level 1) elements. Typically a Matroska file is composed of 1 segment. define('EBML_ID_ATTACHMENTS', 0x0941A469); // [19][41][A4][69] -- Contain attached files. define('EBML_ID_EBML', 0x0A45DFA3); // [1A][45][DF][A3] -- Set the EBML characteristics of the data to follow. Each EBML document has to start with this. define('EBML_ID_CUES', 0x0C53BB6B); // [1C][53][BB][6B] -- A top-level element to speed seeking access. All entries are local to the segment. define('EBML_ID_CLUSTER', 0x0F43B675); // [1F][43][B6][75] -- The lower level element containing the (monolithic) Block structure. define('EBML_ID_LANGUAGE', 0x02B59C); // [22][B5][9C] -- Specifies the language of the track in the Matroska languages form. define('EBML_ID_TRACKTIMECODESCALE', 0x03314F); // [23][31][4F] -- The scale to apply on this track to work at normal speed in relation with other tracks (mostly used to adjust video speed when the audio length differs). define('EBML_ID_DEFAULTDURATION', 0x03E383); // [23][E3][83] -- Number of nanoseconds (i.e. not scaled) per frame. define('EBML_ID_CODECNAME', 0x058688); // [25][86][88] -- A human-readable string specifying the codec. define('EBML_ID_CODECDOWNLOADURL', 0x06B240); // [26][B2][40] -- A URL to download about the codec used. define('EBML_ID_TIMECODESCALE', 0x0AD7B1); // [2A][D7][B1] -- Timecode scale in nanoseconds (1.000.000 means all timecodes in the segment are expressed in milliseconds). define('EBML_ID_COLOURSPACE', 0x0EB524); // [2E][B5][24] -- Same value as in AVI (32 bits). define('EBML_ID_GAMMAVALUE', 0x0FB523); // [2F][B5][23] -- Gamma Value. define('EBML_ID_CODECSETTINGS', 0x1A9697); // [3A][96][97] -- A string describing the encoding setting used. define('EBML_ID_CODECINFOURL', 0x1B4040); // [3B][40][40] -- A URL to find information about the codec used. define('EBML_ID_PREVFILENAME', 0x1C83AB); // [3C][83][AB] -- An escaped filename corresponding to the previous segment. define('EBML_ID_PREVUID', 0x1CB923); // [3C][B9][23] -- A unique ID to identify the previous chained segment (128 bits). define('EBML_ID_NEXTFILENAME', 0x1E83BB); // [3E][83][BB] -- An escaped filename corresponding to the next segment. define('EBML_ID_NEXTUID', 0x1EB923); // [3E][B9][23] -- A unique ID to identify the next chained segment (128 bits). define('EBML_ID_CONTENTCOMPALGO', 0x0254); // [42][54] -- The compression algorithm used. Algorithms that have been specified so far are: define('EBML_ID_CONTENTCOMPSETTINGS', 0x0255); // [42][55] -- Settings that might be needed by the decompressor. For Header Stripping (ContentCompAlgo=3), the bytes that were removed from the beggining of each frames of the track. define('EBML_ID_DOCTYPE', 0x0282); // [42][82] -- A string that describes the type of document that follows this EBML header ('matroska' in our case). define('EBML_ID_DOCTYPEREADVERSION', 0x0285); // [42][85] -- The minimum DocType version an interpreter has to support to read this file. define('EBML_ID_EBMLVERSION', 0x0286); // [42][86] -- The version of EBML parser used to create the file. define('EBML_ID_DOCTYPEVERSION', 0x0287); // [42][87] -- The version of DocType interpreter used to create the file. define('EBML_ID_EBMLMAXIDLENGTH', 0x02F2); // [42][F2] -- The maximum length of the IDs you'll find in this file (4 or less in Matroska). define('EBML_ID_EBMLMAXSIZELENGTH', 0x02F3); // [42][F3] -- The maximum length of the sizes you'll find in this file (8 or less in Matroska). This does not override the element size indicated at the beginning of an element. Elements that have an indicated size which is larger than what is allowed by EBMLMaxSizeLength shall be considered invalid. define('EBML_ID_EBMLREADVERSION', 0x02F7); // [42][F7] -- The minimum EBML version a parser has to support to read this file. define('EBML_ID_CHAPLANGUAGE', 0x037C); // [43][7C] -- The languages corresponding to the string, in the bibliographic ISO-639-2 form. define('EBML_ID_CHAPCOUNTRY', 0x037E); // [43][7E] -- The countries corresponding to the string, same 2 octets as in Internet domains. define('EBML_ID_SEGMENTFAMILY', 0x0444); // [44][44] -- A randomly generated unique ID that all segments related to each other must use (128 bits). define('EBML_ID_DATEUTC', 0x0461); // [44][61] -- Date of the origin of timecode (value 0), i.e. production date. define('EBML_ID_TAGLANGUAGE', 0x047A); // [44][7A] -- Specifies the language of the tag specified, in the Matroska languages form. define('EBML_ID_TAGDEFAULT', 0x0484); // [44][84] -- Indication to know if this is the default/original language to use for the given tag. define('EBML_ID_TAGBINARY', 0x0485); // [44][85] -- The values of the Tag if it is binary. Note that this cannot be used in the same SimpleTag as TagString. define('EBML_ID_TAGSTRING', 0x0487); // [44][87] -- The value of the Tag. define('EBML_ID_DURATION', 0x0489); // [44][89] -- Duration of the segment (based on TimecodeScale). define('EBML_ID_CHAPPROCESSPRIVATE', 0x050D); // [45][0D] -- Some optional data attached to the ChapProcessCodecID information. For ChapProcessCodecID = 1, it is the "DVD level" equivalent. define('EBML_ID_CHAPTERFLAGENABLED', 0x0598); // [45][98] -- Specify wether the chapter is enabled. It can be enabled/disabled by a Control Track. When disabled, the movie should skip all the content between the TimeStart and TimeEnd of this chapter. define('EBML_ID_TAGNAME', 0x05A3); // [45][A3] -- The name of the Tag that is going to be stored. define('EBML_ID_EDITIONENTRY', 0x05B9); // [45][B9] -- Contains all information about a segment edition. define('EBML_ID_EDITIONUID', 0x05BC); // [45][BC] -- A unique ID to identify the edition. It's useful for tagging an edition. define('EBML_ID_EDITIONFLAGHIDDEN', 0x05BD); // [45][BD] -- If an edition is hidden (1), it should not be available to the user interface (but still to Control Tracks). define('EBML_ID_EDITIONFLAGDEFAULT', 0x05DB); // [45][DB] -- If a flag is set (1) the edition should be used as the default one. define('EBML_ID_EDITIONFLAGORDERED', 0x05DD); // [45][DD] -- Specify if the chapters can be defined multiple times and the order to play them is enforced. define('EBML_ID_FILEDATA', 0x065C); // [46][5C] -- The data of the file. define('EBML_ID_FILEMIMETYPE', 0x0660); // [46][60] -- MIME type of the file. define('EBML_ID_FILENAME', 0x066E); // [46][6E] -- Filename of the attached file. define('EBML_ID_FILEREFERRAL', 0x0675); // [46][75] -- A binary value that a track/codec can refer to when the attachment is needed. define('EBML_ID_FILEDESCRIPTION', 0x067E); // [46][7E] -- A human-friendly name for the attached file. define('EBML_ID_FILEUID', 0x06AE); // [46][AE] -- Unique ID representing the file, as random as possible. define('EBML_ID_CONTENTENCALGO', 0x07E1); // [47][E1] -- The encryption algorithm used. The value '0' means that the contents have not been encrypted but only signed. Predefined values: define('EBML_ID_CONTENTENCKEYID', 0x07E2); // [47][E2] -- For public key algorithms this is the ID of the public key the data was encrypted with. define('EBML_ID_CONTENTSIGNATURE', 0x07E3); // [47][E3] -- A cryptographic signature of the contents. define('EBML_ID_CONTENTSIGKEYID', 0x07E4); // [47][E4] -- This is the ID of the private key the data was signed with. define('EBML_ID_CONTENTSIGALGO', 0x07E5); // [47][E5] -- The algorithm used for the signature. A value of '0' means that the contents have not been signed but only encrypted. Predefined values: define('EBML_ID_CONTENTSIGHASHALGO', 0x07E6); // [47][E6] -- The hash algorithm used for the signature. A value of '0' means that the contents have not been signed but only encrypted. Predefined values: define('EBML_ID_MUXINGAPP', 0x0D80); // [4D][80] -- Muxing application or library ("libmatroska-0.4.3"). define('EBML_ID_SEEK', 0x0DBB); // [4D][BB] -- Contains a single seek entry to an EBML element. define('EBML_ID_CONTENTENCODINGORDER', 0x1031); // [50][31] -- Tells when this modification was used during encoding/muxing starting with 0 and counting upwards. The decoder/demuxer has to start with the highest order number it finds and work its way down. This value has to be unique over all ContentEncodingOrder elements in the segment. define('EBML_ID_CONTENTENCODINGSCOPE', 0x1032); // [50][32] -- A bit field that describes which elements have been modified in this way. Values (big endian) can be OR'ed. Possible values: define('EBML_ID_CONTENTENCODINGTYPE', 0x1033); // [50][33] -- A value describing what kind of transformation has been done. Possible values: define('EBML_ID_CONTENTCOMPRESSION', 0x1034); // [50][34] -- Settings describing the compression used. Must be present if the value of ContentEncodingType is 0 and absent otherwise. Each block must be decompressable even if no previous block is available in order not to prevent seeking. define('EBML_ID_CONTENTENCRYPTION', 0x1035); // [50][35] -- Settings describing the encryption used. Must be present if the value of ContentEncodingType is 1 and absent otherwise. define('EBML_ID_CUEREFNUMBER', 0x135F); // [53][5F] -- Number of the referenced Block of Track X in the specified Cluster. define('EBML_ID_NAME', 0x136E); // [53][6E] -- A human-readable track name. define('EBML_ID_CUEBLOCKNUMBER', 0x1378); // [53][78] -- Number of the Block in the specified Cluster. define('EBML_ID_TRACKOFFSET', 0x137F); // [53][7F] -- A value to add to the Block's Timecode. This can be used to adjust the playback offset of a track. define('EBML_ID_SEEKID', 0x13AB); // [53][AB] -- The binary ID corresponding to the element name. define('EBML_ID_SEEKPOSITION', 0x13AC); // [53][AC] -- The position of the element in the segment in octets (0 = first level 1 element). define('EBML_ID_STEREOMODE', 0x13B8); // [53][B8] -- Stereo-3D video mode. define('EBML_ID_OLDSTEREOMODE', 0x13B9); // [53][B9] -- Bogus StereoMode value used in old versions of libmatroska. DO NOT USE. (0: mono, 1: right eye, 2: left eye, 3: both eyes). define('EBML_ID_PIXELCROPBOTTOM', 0x14AA); // [54][AA] -- The number of video pixels to remove at the bottom of the image (for HDTV content). define('EBML_ID_DISPLAYWIDTH', 0x14B0); // [54][B0] -- Width of the video frames to display. define('EBML_ID_DISPLAYUNIT', 0x14B2); // [54][B2] -- Type of the unit for DisplayWidth/Height (0: pixels, 1: centimeters, 2: inches). define('EBML_ID_ASPECTRATIOTYPE', 0x14B3); // [54][B3] -- Specify the possible modifications to the aspect ratio (0: free resizing, 1: keep aspect ratio, 2: fixed). define('EBML_ID_DISPLAYHEIGHT', 0x14BA); // [54][BA] -- Height of the video frames to display. define('EBML_ID_PIXELCROPTOP', 0x14BB); // [54][BB] -- The number of video pixels to remove at the top of the image. define('EBML_ID_PIXELCROPLEFT', 0x14CC); // [54][CC] -- The number of video pixels to remove on the left of the image. define('EBML_ID_PIXELCROPRIGHT', 0x14DD); // [54][DD] -- The number of video pixels to remove on the right of the image. define('EBML_ID_FLAGFORCED', 0x15AA); // [55][AA] -- Set if that track MUST be used during playback. There can be many forced track for a kind (audio, video or subs), the player should select the one which language matches the user preference or the default + forced track. Overlay MAY happen between a forced and non-forced track of the same kind. define('EBML_ID_MAXBLOCKADDITIONID', 0x15EE); // [55][EE] -- The maximum value of BlockAddID. A value 0 means there is no BlockAdditions for this track. define('EBML_ID_WRITINGAPP', 0x1741); // [57][41] -- Writing application ("mkvmerge-0.3.3"). define('EBML_ID_CLUSTERSILENTTRACKS', 0x1854); // [58][54] -- The list of tracks that are not used in that part of the stream. It is useful when using overlay tracks on seeking. Then you should decide what track to use. define('EBML_ID_CLUSTERSILENTTRACKNUMBER', 0x18D7); // [58][D7] -- One of the track number that are not used from now on in the stream. It could change later if not specified as silent in a further Cluster. define('EBML_ID_ATTACHEDFILE', 0x21A7); // [61][A7] -- An attached file. define('EBML_ID_CONTENTENCODING', 0x2240); // [62][40] -- Settings for one content encoding like compression or encryption. define('EBML_ID_BITDEPTH', 0x2264); // [62][64] -- Bits per sample, mostly used for PCM. define('EBML_ID_CODECPRIVATE', 0x23A2); // [63][A2] -- Private data only known to the codec. define('EBML_ID_TARGETS', 0x23C0); // [63][C0] -- Contain all UIDs where the specified meta data apply. It is void to describe everything in the segment. define('EBML_ID_CHAPTERPHYSICALEQUIV', 0x23C3); // [63][C3] -- Specify the physical equivalent of this ChapterAtom like "DVD" (60) or "SIDE" (50), see complete list of values. define('EBML_ID_TAGCHAPTERUID', 0x23C4); // [63][C4] -- A unique ID to identify the Chapter(s) the tags belong to. If the value is 0 at this level, the tags apply to all chapters in the Segment. define('EBML_ID_TAGTRACKUID', 0x23C5); // [63][C5] -- A unique ID to identify the Track(s) the tags belong to. If the value is 0 at this level, the tags apply to all tracks in the Segment. define('EBML_ID_TAGATTACHMENTUID', 0x23C6); // [63][C6] -- A unique ID to identify the Attachment(s) the tags belong to. If the value is 0 at this level, the tags apply to all the attachments in the Segment. define('EBML_ID_TAGEDITIONUID', 0x23C9); // [63][C9] -- A unique ID to identify the EditionEntry(s) the tags belong to. If the value is 0 at this level, the tags apply to all editions in the Segment. define('EBML_ID_TARGETTYPE', 0x23CA); // [63][CA] -- An informational string that can be used to display the logical level of the target like "ALBUM", "TRACK", "MOVIE", "CHAPTER", etc (see TargetType). define('EBML_ID_TRACKTRANSLATE', 0x2624); // [66][24] -- The track identification for the given Chapter Codec. define('EBML_ID_TRACKTRANSLATETRACKID', 0x26A5); // [66][A5] -- The binary value used to represent this track in the chapter codec data. The format depends on the ChapProcessCodecID used. define('EBML_ID_TRACKTRANSLATECODEC', 0x26BF); // [66][BF] -- The chapter codec using this ID (0: Matroska Script, 1: DVD-menu). define('EBML_ID_TRACKTRANSLATEEDITIONUID', 0x26FC); // [66][FC] -- Specify an edition UID on which this translation applies. When not specified, it means for all editions found in the segment. define('EBML_ID_SIMPLETAG', 0x27C8); // [67][C8] -- Contains general information about the target. define('EBML_ID_TARGETTYPEVALUE', 0x28CA); // [68][CA] -- A number to indicate the logical level of the target (see TargetType). define('EBML_ID_CHAPPROCESSCOMMAND', 0x2911); // [69][11] -- Contains all the commands associated to the Atom. define('EBML_ID_CHAPPROCESSTIME', 0x2922); // [69][22] -- Defines when the process command should be handled (0: during the whole chapter, 1: before starting playback, 2: after playback of the chapter). define('EBML_ID_CHAPTERTRANSLATE', 0x2924); // [69][24] -- A tuple of corresponding ID used by chapter codecs to represent this segment. define('EBML_ID_CHAPPROCESSDATA', 0x2933); // [69][33] -- Contains the command information. The data should be interpreted depending on the ChapProcessCodecID value. For ChapProcessCodecID = 1, the data correspond to the binary DVD cell pre/post commands. define('EBML_ID_CHAPPROCESS', 0x2944); // [69][44] -- Contains all the commands associated to the Atom. define('EBML_ID_CHAPPROCESSCODECID', 0x2955); // [69][55] -- Contains the type of the codec used for the processing. A value of 0 means native Matroska processing (to be defined), a value of 1 means the DVD command set is used. More codec IDs can be added later. define('EBML_ID_CHAPTERTRANSLATEID', 0x29A5); // [69][A5] -- The binary value used to represent this segment in the chapter codec data. The format depends on the ChapProcessCodecID used. define('EBML_ID_CHAPTERTRANSLATECODEC', 0x29BF); // [69][BF] -- The chapter codec using this ID (0: Matroska Script, 1: DVD-menu). define('EBML_ID_CHAPTERTRANSLATEEDITIONUID', 0x29FC); // [69][FC] -- Specify an edition UID on which this correspondance applies. When not specified, it means for all editions found in the segment. define('EBML_ID_CONTENTENCODINGS', 0x2D80); // [6D][80] -- Settings for several content encoding mechanisms like compression or encryption. define('EBML_ID_MINCACHE', 0x2DE7); // [6D][E7] -- The minimum number of frames a player should be able to cache during playback. If set to 0, the reference pseudo-cache system is not used. define('EBML_ID_MAXCACHE', 0x2DF8); // [6D][F8] -- The maximum cache size required to store referenced frames in and the current frame. 0 means no cache is needed. define('EBML_ID_CHAPTERSEGMENTUID', 0x2E67); // [6E][67] -- A segment to play in place of this chapter. Edition ChapterSegmentEditionUID should be used for this segment, otherwise no edition is used. define('EBML_ID_CHAPTERSEGMENTEDITIONUID', 0x2EBC); // [6E][BC] -- The edition to play from the segment linked in ChapterSegmentUID. define('EBML_ID_TRACKOVERLAY', 0x2FAB); // [6F][AB] -- Specify that this track is an overlay track for the Track specified (in the u-integer). That means when this track has a gap (see SilentTracks) the overlay track should be used instead. The order of multiple TrackOverlay matters, the first one is the one that should be used. If not found it should be the second, etc. define('EBML_ID_TAG', 0x3373); // [73][73] -- Element containing elements specific to Tracks/Chapters. define('EBML_ID_SEGMENTFILENAME', 0x3384); // [73][84] -- A filename corresponding to this segment. define('EBML_ID_SEGMENTUID', 0x33A4); // [73][A4] -- A randomly generated unique ID to identify the current segment between many others (128 bits). define('EBML_ID_CHAPTERUID', 0x33C4); // [73][C4] -- A unique ID to identify the Chapter. define('EBML_ID_TRACKUID', 0x33C5); // [73][C5] -- A unique ID to identify the Track. This should be kept the same when making a direct stream copy of the Track to another file. define('EBML_ID_ATTACHMENTLINK', 0x3446); // [74][46] -- The UID of an attachment that is used by this codec. define('EBML_ID_CLUSTERBLOCKADDITIONS', 0x35A1); // [75][A1] -- Contain additional blocks to complete the main one. An EBML parser that has no knowledge of the Block structure could still see and use/skip these data. define('EBML_ID_CHANNELPOSITIONS', 0x347B); // [7D][7B] -- Table of horizontal angles for each successive channel, see appendix. define('EBML_ID_OUTPUTSAMPLINGFREQUENCY', 0x38B5); // [78][B5] -- Real output sampling frequency in Hz (used for SBR techniques). define('EBML_ID_TITLE', 0x3BA9); // [7B][A9] -- General name of the segment. define('EBML_ID_CHAPTERDISPLAY', 0x00); // [80] -- Contains all possible strings to use for the chapter display. define('EBML_ID_TRACKTYPE', 0x03); // [83] -- A set of track types coded on 8 bits (1: video, 2: audio, 3: complex, 0x10: logo, 0x11: subtitle, 0x12: buttons, 0x20: control). define('EBML_ID_CHAPSTRING', 0x05); // [85] -- Contains the string to use as the chapter atom. define('EBML_ID_CODECID', 0x06); // [86] -- An ID corresponding to the codec, see the codec page for more info. define('EBML_ID_FLAGDEFAULT', 0x08); // [88] -- Set if that track (audio, video or subs) SHOULD be used if no language found matches the user preference. define('EBML_ID_CHAPTERTRACKNUMBER', 0x09); // [89] -- UID of the Track to apply this chapter too. In the absense of a control track, choosing this chapter will select the listed Tracks and deselect unlisted tracks. Absense of this element indicates that the Chapter should be applied to any currently used Tracks. define('EBML_ID_CLUSTERSLICES', 0x0E); // [8E] -- Contains slices description. define('EBML_ID_CHAPTERTRACK', 0x0F); // [8F] -- List of tracks on which the chapter applies. If this element is not present, all tracks apply define('EBML_ID_CHAPTERTIMESTART', 0x11); // [91] -- Timecode of the start of Chapter (not scaled). define('EBML_ID_CHAPTERTIMEEND', 0x12); // [92] -- Timecode of the end of Chapter (timecode excluded, not scaled). define('EBML_ID_CUEREFTIME', 0x16); // [96] -- Timecode of the referenced Block. define('EBML_ID_CUEREFCLUSTER', 0x17); // [97] -- Position of the Cluster containing the referenced Block. define('EBML_ID_CHAPTERFLAGHIDDEN', 0x18); // [98] -- If a chapter is hidden (1), it should not be available to the user interface (but still to Control Tracks). define('EBML_ID_FLAGINTERLACED', 0x1A); // [9A] -- Set if the video is interlaced. define('EBML_ID_CLUSTERBLOCKDURATION', 0x1B); // [9B] -- The duration of the Block (based on TimecodeScale). This element is mandatory when DefaultDuration is set for the track. When not written and with no DefaultDuration, the value is assumed to be the difference between the timecode of this Block and the timecode of the next Block in "display" order (not coding order). This element can be useful at the end of a Track (as there is not other Block available), or when there is a break in a track like for subtitle tracks. define('EBML_ID_FLAGLACING', 0x1C); // [9C] -- Set if the track may contain blocks using lacing. define('EBML_ID_CHANNELS', 0x1F); // [9F] -- Numbers of channels in the track. define('EBML_ID_CLUSTERBLOCKGROUP', 0x20); // [A0] -- Basic container of information containing a single Block or BlockVirtual, and information specific to that Block/VirtualBlock. define('EBML_ID_CLUSTERBLOCK', 0x21); // [A1] -- Block containing the actual data to be rendered and a timecode relative to the Cluster Timecode. define('EBML_ID_CLUSTERBLOCKVIRTUAL', 0x22); // [A2] -- A Block with no data. It must be stored in the stream at the place the real Block should be in display order. define('EBML_ID_CLUSTERSIMPLEBLOCK', 0x23); // [A3] -- Similar to Block but without all the extra information, mostly used to reduced overhead when no extra feature is needed. define('EBML_ID_CLUSTERCODECSTATE', 0x24); // [A4] -- The new codec state to use. Data interpretation is private to the codec. This information should always be referenced by a seek entry. define('EBML_ID_CLUSTERBLOCKADDITIONAL', 0x25); // [A5] -- Interpreted by the codec as it wishes (using the BlockAddID). define('EBML_ID_CLUSTERBLOCKMORE', 0x26); // [A6] -- Contain the BlockAdditional and some parameters. define('EBML_ID_CLUSTERPOSITION', 0x27); // [A7] -- Position of the Cluster in the segment (0 in live broadcast streams). It might help to resynchronise offset on damaged streams. define('EBML_ID_CODECDECODEALL', 0x2A); // [AA] -- The codec can decode potentially damaged data. define('EBML_ID_CLUSTERPREVSIZE', 0x2B); // [AB] -- Size of the previous Cluster, in octets. Can be useful for backward playing. define('EBML_ID_TRACKENTRY', 0x2E); // [AE] -- Describes a track with all elements. define('EBML_ID_CLUSTERENCRYPTEDBLOCK', 0x2F); // [AF] -- Similar to SimpleBlock but the data inside the Block are Transformed (encrypt and/or signed). define('EBML_ID_PIXELWIDTH', 0x30); // [B0] -- Width of the encoded video frames in pixels. define('EBML_ID_CUETIME', 0x33); // [B3] -- Absolute timecode according to the segment time base. define('EBML_ID_SAMPLINGFREQUENCY', 0x35); // [B5] -- Sampling frequency in Hz. define('EBML_ID_CHAPTERATOM', 0x36); // [B6] -- Contains the atom information to use as the chapter atom (apply to all tracks). define('EBML_ID_CUETRACKPOSITIONS', 0x37); // [B7] -- Contain positions for different tracks corresponding to the timecode. define('EBML_ID_FLAGENABLED', 0x39); // [B9] -- Set if the track is used. define('EBML_ID_PIXELHEIGHT', 0x3A); // [BA] -- Height of the encoded video frames in pixels. define('EBML_ID_CUEPOINT', 0x3B); // [BB] -- Contains all information relative to a seek point in the segment. define('EBML_ID_CRC32', 0x3F); // [BF] -- The CRC is computed on all the data of the Master element it's in, regardless of its position. It's recommended to put the CRC value at the beggining of the Master element for easier reading. All level 1 elements should include a CRC-32. define('EBML_ID_CLUSTERBLOCKADDITIONID', 0x4B); // [CB] -- The ID of the BlockAdditional element (0 is the main Block). define('EBML_ID_CLUSTERLACENUMBER', 0x4C); // [CC] -- The reverse number of the frame in the lace (0 is the last frame, 1 is the next to last, etc). While there are a few files in the wild with this element, it is no longer in use and has been deprecated. Being able to interpret this element is not required for playback. define('EBML_ID_CLUSTERFRAMENUMBER', 0x4D); // [CD] -- The number of the frame to generate from this lace with this delay (allow you to generate many frames from the same Block/Frame). define('EBML_ID_CLUSTERDELAY', 0x4E); // [CE] -- The (scaled) delay to apply to the element. define('EBML_ID_CLUSTERDURATION', 0x4F); // [CF] -- The (scaled) duration to apply to the element. define('EBML_ID_TRACKNUMBER', 0x57); // [D7] -- The track number as used in the Block Header (using more than 127 tracks is not encouraged, though the design allows an unlimited number). define('EBML_ID_CUEREFERENCE', 0x5B); // [DB] -- The Clusters containing the required referenced Blocks. define('EBML_ID_VIDEO', 0x60); // [E0] -- Video settings. define('EBML_ID_AUDIO', 0x61); // [E1] -- Audio settings. define('EBML_ID_CLUSTERTIMESLICE', 0x68); // [E8] -- Contains extra time information about the data contained in the Block. While there are a few files in the wild with this element, it is no longer in use and has been deprecated. Being able to interpret this element is not required for playback. define('EBML_ID_CUECODECSTATE', 0x6A); // [EA] -- The position of the Codec State corresponding to this Cue element. 0 means that the data is taken from the initial Track Entry. define('EBML_ID_CUEREFCODECSTATE', 0x6B); // [EB] -- The position of the Codec State corresponding to this referenced element. 0 means that the data is taken from the initial Track Entry. define('EBML_ID_VOID', 0x6C); // [EC] -- Used to void damaged data, to avoid unexpected behaviors when using damaged data. The content is discarded. Also used to reserve space in a sub-element for later use. define('EBML_ID_CLUSTERTIMECODE', 0x67); // [E7] -- Absolute timecode of the cluster (based on TimecodeScale). define('EBML_ID_CLUSTERBLOCKADDID', 0x6E); // [EE] -- An ID to identify the BlockAdditional level. define('EBML_ID_CUECLUSTERPOSITION', 0x71); // [F1] -- The position of the Cluster containing the required Block. define('EBML_ID_CUETRACK', 0x77); // [F7] -- The track for which a position is given. define('EBML_ID_CLUSTERREFERENCEPRIORITY', 0x7A); // [FA] -- This frame is referenced and has the specified cache priority. In cache only a frame of the same or higher priority can replace this frame. A value of 0 means the frame is not referenced. define('EBML_ID_CLUSTERREFERENCEBLOCK', 0x7B); // [FB] -- Timecode of another frame used as a reference (ie: B or P frame). The timecode is relative to the block it's attached to. define('EBML_ID_CLUSTERREFERENCEVIRTUAL', 0x7D); // [FD] -- Relative position of the data that should be in position of the virtual block. /** * Matroska constants */ define('MATROSKA_DEFAULT_TIMECODESCALE', 1000000); /** * Matroska scan modes are internal state flags for how much of the file we are scanning */ define('MATROSKA_SCAN_HEADER', 0); define('MATROSKA_SCAN_WHOLE_FILE', 1); define('MATROSKA_SCAN_FIRST_CLUSTER', 2); define('MATROSKA_SCAN_LAST_CLUSTER', 3); /** * @tutorial http://www.matroska.org/technical/specs/index.html * * @todo Rewrite EBML parser to reduce it's size and honor default element values * @todo After rewrite implement stream size calculation, that will provide additional useful info and enable AAC/FLAC audio bitrate detection */ class getid3_matroska extends getid3_handler { /** * If true, do not return information about CLUSTER chunks, since there's a lot of them * and they're not usually useful [default: TRUE]. * * @var bool */ public $hide_clusters = true; /** * True to parse the whole file, not only header [default: FALSE]. * * @var bool */ public $parse_whole_file = false; /* * Private parser settings/placeholders. */ private $EBMLbuffer = ''; private $EBMLbuffer_offset = 0; private $EBMLbuffer_length = 0; private $current_offset = 0; private $unuseful_elements = array(EBML_ID_CRC32, EBML_ID_VOID); private $scan_mode = MATROSKA_SCAN_HEADER; /** * @return bool */ public function Analyze() { $info = &$this->getid3->info; $this->scan_mode = $this->parse_whole_file ? MATROSKA_SCAN_WHOLE_FILE : MATROSKA_SCAN_HEADER; // parse container try { $this->parseEBML($info); } catch (Exception $e) { $this->error('EBML parser: '.$e->getMessage()); } $this->playtimeFromMetadata($info); // If there was no duration metadata, this might be an incomplete file or a streaming file // We need Cluster information so we can use their timecodes to estimate playtime. if (!isset($info['playtime_seconds']) && !$this->parse_whole_file) { // Scan the start and end of file for Clusters to estimate duration $this->scanStartEndForClusters($info); } if (isset($info['matroska']['cluster']) && is_array($info['matroska']['cluster'])) { if (!isset($info['playtime_seconds']) && !empty($info['matroska']['cluster'])) { // estimate playtime using clusters if not yet known $this->calculatePlaytimeFromClusters($info); } // Remove cluster information from output if hide_clusters is true // These could have been set during scanStartEndForClusters() if ($this->hide_clusters) { unset($info['matroska']['cluster']); } } // extract tags if (isset($info['matroska']['tags']) && is_array($info['matroska']['tags'])) { foreach ($info['matroska']['tags'] as $key => $infoarray) { $this->ExtractCommentsSimpleTag($infoarray); } } // process tracks if (isset($info['matroska']['tracks']['tracks']) && is_array($info['matroska']['tracks']['tracks'])) { foreach ($info['matroska']['tracks']['tracks'] as $key => $trackarray) { $track_info = array(); $track_info['dataformat'] = self::CodecIDtoCommonName($trackarray['CodecID']); $track_info['default'] = (isset($trackarray['FlagDefault']) ? $trackarray['FlagDefault'] : true); if (isset($trackarray['Name'])) { $track_info['name'] = $trackarray['Name']; } switch ($trackarray['TrackType']) { case 1: // Video $track_info['resolution_x'] = $trackarray['PixelWidth']; $track_info['resolution_y'] = $trackarray['PixelHeight']; $track_info['display_unit'] = self::displayUnit(isset($trackarray['DisplayUnit']) ? $trackarray['DisplayUnit'] : 0); $track_info['display_x'] = (isset($trackarray['DisplayWidth']) ? $trackarray['DisplayWidth'] : $trackarray['PixelWidth']); $track_info['display_y'] = (isset($trackarray['DisplayHeight']) ? $trackarray['DisplayHeight'] : $trackarray['PixelHeight']); if (isset($trackarray['PixelCropBottom'])) { $track_info['crop_bottom'] = $trackarray['PixelCropBottom']; } if (isset($trackarray['PixelCropTop'])) { $track_info['crop_top'] = $trackarray['PixelCropTop']; } if (isset($trackarray['PixelCropLeft'])) { $track_info['crop_left'] = $trackarray['PixelCropLeft']; } if (isset($trackarray['PixelCropRight'])) { $track_info['crop_right'] = $trackarray['PixelCropRight']; } if (!empty($trackarray['DefaultDuration'])) { $track_info['frame_rate'] = round(1000000000 / $trackarray['DefaultDuration'], 3); } if (isset($trackarray['CodecName'])) { $track_info['codec'] = $trackarray['CodecName']; } switch ($trackarray['CodecID']) { case 'V_MS/VFW/FOURCC': getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio-video.riff.php', __FILE__, true); $parsed = getid3_riff::ParseBITMAPINFOHEADER($trackarray['CodecPrivate']); $track_info['codec'] = getid3_riff::fourccLookup($parsed['fourcc']); $info['matroska']['track_codec_parsed'][$trackarray['TrackNumber']] = $parsed; break; /*case 'V_MPEG4/ISO/AVC': $h264['profile'] = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], 1, 1)); $h264['level'] = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], 3, 1)); $rn = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], 4, 1)); $h264['NALUlength'] = ($rn & 3) + 1; $rn = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], 5, 1)); $nsps = ($rn & 31); $offset = 6; for ($i = 0; $i < $nsps; $i ++) { $length = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], $offset, 2)); $h264['SPS'][] = substr($trackarray['CodecPrivate'], $offset + 2, $length); $offset += 2 + $length; } $npps = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], $offset, 1)); $offset += 1; for ($i = 0; $i < $npps; $i ++) { $length = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], $offset, 2)); $h264['PPS'][] = substr($trackarray['CodecPrivate'], $offset + 2, $length); $offset += 2 + $length; } $info['matroska']['track_codec_parsed'][$trackarray['TrackNumber']] = $h264; break;*/ } if (isset($trackarray['TrackUID'])) { $info['video']['streams'][$trackarray['TrackUID']] = $track_info; } else { $this->warning('Missing mandatory TrackUID for video track'); } break; case 2: // Audio $track_info['sample_rate'] = (isset($trackarray['SamplingFrequency']) ? $trackarray['SamplingFrequency'] : 8000.0); $track_info['channels'] = (isset($trackarray['Channels']) ? $trackarray['Channels'] : 1); $track_info['language'] = (isset($trackarray['Language']) ? $trackarray['Language'] : 'eng'); if (isset($trackarray['BitDepth'])) { $track_info['bits_per_sample'] = $trackarray['BitDepth']; } if (isset($trackarray['CodecName'])) { $track_info['codec'] = $trackarray['CodecName']; } switch ($trackarray['CodecID']) { case 'A_PCM/INT/LIT': case 'A_PCM/INT/BIG': $track_info['bitrate'] = $track_info['sample_rate'] * $track_info['channels'] * $trackarray['BitDepth']; break; case 'A_AC3': case 'A_EAC3': case 'A_DTS': case 'A_MPEG/L3': case 'A_MPEG/L2': case 'A_FLAC': $module_dataformat = ($track_info['dataformat'] == 'mp2' ? 'mp3' : ($track_info['dataformat'] == 'eac3' ? 'ac3' : $track_info['dataformat'])); getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.'.$module_dataformat.'.php', __FILE__, true); if (!isset($info['matroska']['track_data_offsets'][$trackarray['TrackNumber']])) { $this->warning('Unable to parse audio data ['.basename(__FILE__).':'.__LINE__.'] because $info[matroska][track_data_offsets]['.$trackarray['TrackNumber'].'] not set'); break; } // create temp instance $getid3_temp = new getID3(); if ($track_info['dataformat'] != 'flac') { $getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp); } $getid3_temp->info['avdataoffset'] = $info['matroska']['track_data_offsets'][$trackarray['TrackNumber']]['offset']; if ($track_info['dataformat'][0] == 'm' || $track_info['dataformat'] == 'flac') { $getid3_temp->info['avdataend'] = $info['matroska']['track_data_offsets'][$trackarray['TrackNumber']]['offset'] + $info['matroska']['track_data_offsets'][$trackarray['TrackNumber']]['length']; } // analyze $class = 'getid3_'.$module_dataformat; $header_data_key = $track_info['dataformat'][0] == 'm' ? 'mpeg' : $track_info['dataformat']; $getid3_audio = new $class($getid3_temp, __CLASS__); if ($track_info['dataformat'] == 'flac') { $getid3_audio->AnalyzeString($trackarray['CodecPrivate']); } else { $getid3_audio->Analyze(); } if (!empty($getid3_temp->info[$header_data_key])) { $info['matroska']['track_codec_parsed'][$trackarray['TrackNumber']] = $getid3_temp->info[$header_data_key]; if (isset($getid3_temp->info['audio']) && is_array($getid3_temp->info['audio'])) { foreach ($getid3_temp->info['audio'] as $sub_key => $value) { $track_info[$sub_key] = $value; } } } else { $this->warning('Unable to parse audio data ['.basename(__FILE__).':'.__LINE__.'] because '.$class.'::Analyze() failed at offset '.$getid3_temp->info['avdataoffset']); } // copy errors and warnings if (!empty($getid3_temp->info['error'])) { foreach ($getid3_temp->info['error'] as $newerror) { $this->warning($class.'() says: ['.$newerror.']'); } } if (!empty($getid3_temp->info['warning'])) { foreach ($getid3_temp->info['warning'] as $newerror) { $this->warning($class.'() says: ['.$newerror.']'); } } unset($getid3_temp, $getid3_audio); break; case 'A_AAC': case 'A_AAC/MPEG2/LC': case 'A_AAC/MPEG2/LC/SBR': case 'A_AAC/MPEG4/LC': case 'A_AAC/MPEG4/LC/SBR': $this->warning($trackarray['CodecID'].' audio data contains no header, audio/video bitrates can\'t be calculated'); break; case 'A_VORBIS': if (!isset($trackarray['CodecPrivate'])) { $this->warning('Unable to parse audio data ['.basename(__FILE__).':'.__LINE__.'] because CodecPrivate data not set'); break; } $vorbis_offset = strpos($trackarray['CodecPrivate'], 'vorbis', 1); if ($vorbis_offset === false) { $this->warning('Unable to parse audio data ['.basename(__FILE__).':'.__LINE__.'] because CodecPrivate data does not contain "vorbis" keyword'); break; } $vorbis_offset -= 1; getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.ogg.php', __FILE__, true); // create temp instance $getid3_temp = new getID3(); // analyze $getid3_ogg = new getid3_ogg($getid3_temp); $oggpageinfo['page_seqno'] = 0; $getid3_ogg->ParseVorbisPageHeader($trackarray['CodecPrivate'], $vorbis_offset, $oggpageinfo); if (!empty($getid3_temp->info['ogg'])) { $info['matroska']['track_codec_parsed'][$trackarray['TrackNumber']] = $getid3_temp->info['ogg']; if (isset($getid3_temp->info['audio']) && is_array($getid3_temp->info['audio'])) { foreach ($getid3_temp->info['audio'] as $sub_key => $value) { $track_info[$sub_key] = $value; } } } // copy errors and warnings if (!empty($getid3_temp->info['error'])) { foreach ($getid3_temp->info['error'] as $newerror) { $this->warning('getid3_ogg() says: ['.$newerror.']'); } } if (!empty($getid3_temp->info['warning'])) { foreach ($getid3_temp->info['warning'] as $newerror) { $this->warning('getid3_ogg() says: ['.$newerror.']'); } } if (!empty($getid3_temp->info['ogg']['bitrate_nominal'])) { $track_info['bitrate'] = $getid3_temp->info['ogg']['bitrate_nominal']; } unset($getid3_temp, $getid3_ogg, $oggpageinfo, $vorbis_offset); break; case 'A_MS/ACM': getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio-video.riff.php', __FILE__, true); $parsed = getid3_riff::parseWAVEFORMATex($trackarray['CodecPrivate']); foreach ($parsed as $sub_key => $value) { if ($sub_key != 'raw') { $track_info[$sub_key] = $value; } } $info['matroska']['track_codec_parsed'][$trackarray['TrackNumber']] = $parsed; break; default: $this->warning('Unhandled audio type "'.(isset($trackarray['CodecID']) ? $trackarray['CodecID'] : '').'"'); break; } if (isset($trackarray['TrackUID'])) { $info['audio']['streams'][$trackarray['TrackUID']] = $track_info; } else { $this->warning('Missing mandatory TrackUID for audio track'); } break; } } if (!empty($info['video']['streams'])) { $info['video'] = self::getDefaultStreamInfo($info['video']['streams']); } if (!empty($info['audio']['streams'])) { $info['audio'] = self::getDefaultStreamInfo($info['audio']['streams']); } } // process attachments if (isset($info['matroska']['attachments']) && $this->getid3->option_save_attachments !== getID3::ATTACHMENTS_NONE) { foreach ($info['matroska']['attachments'] as $i => $entry) { if (strpos($entry['FileMimeType'], 'image/') === 0 && !empty($entry['FileData'])) { $info['matroska']['comments']['picture'][] = array('data' => $entry['FileData'], 'image_mime' => $entry['FileMimeType'], 'filename' => $entry['FileName']); } } } // determine mime type if (!empty($info['video']['streams'])) { $info['mime_type'] = ($info['matroska']['doctype'] == 'webm' ? 'video/webm' : 'video/x-matroska'); } elseif (!empty($info['audio']['streams'])) { $info['mime_type'] = ($info['matroska']['doctype'] == 'webm' ? 'audio/webm' : 'audio/x-matroska'); } elseif (isset($info['mime_type'])) { unset($info['mime_type']); } // use _STATISTICS_TAGS if available to set audio/video bitrates if (!empty($info['matroska']['tags'])) { $_STATISTICS_byTrackUID = array(); foreach ($info['matroska']['tags'] as $key1 => $value1) { if (!empty($value1['Targets']['TagTrackUID'][0]) && !empty($value1['SimpleTag'])) { foreach ($value1['SimpleTag'] as $key2 => $value2) { if (!empty($value2['TagName']) && isset($value2['TagString'])) { $_STATISTICS_byTrackUID[$value1['Targets']['TagTrackUID'][0]][$value2['TagName']] = $value2['TagString']; } } } } foreach (array('audio','video') as $avtype) { if (!empty($info[$avtype]['streams'])) { foreach ($info[$avtype]['streams'] as $trackUID => $trackdata) { if (!isset($trackdata['bitrate']) && !empty($_STATISTICS_byTrackUID[$trackUID]['BPS'])) { $info[$avtype]['streams'][$trackUID]['bitrate'] = (int) $_STATISTICS_byTrackUID[$trackUID]['BPS']; @$info[$avtype]['bitrate'] += $info[$avtype]['streams'][$trackUID]['bitrate']; } } } } } return true; } /** * @param array $info */ private function parseEBML(&$info) { // http://www.matroska.org/technical/specs/index.html#EBMLBasics $this->current_offset = $info['avdataoffset']; while ($this->getEBMLelement($top_element, $info['avdataend'])) { switch ($top_element['id']) { case EBML_ID_EBML: $info['matroska']['header']['offset'] = $top_element['offset']; $info['matroska']['header']['length'] = $top_element['length']; while ($this->getEBMLelement($element_data, $top_element['end'], true)) { switch ($element_data['id']) { case EBML_ID_EBMLVERSION: case EBML_ID_EBMLREADVERSION: case EBML_ID_EBMLMAXIDLENGTH: case EBML_ID_EBMLMAXSIZELENGTH: case EBML_ID_DOCTYPEVERSION: case EBML_ID_DOCTYPEREADVERSION: $element_data['data'] = getid3_lib::BigEndian2Int($element_data['data']); break; case EBML_ID_DOCTYPE: $element_data['data'] = getid3_lib::trimNullByte($element_data['data']); $info['matroska']['doctype'] = $element_data['data']; $info['fileformat'] = $element_data['data']; break; default: $this->unhandledElement('header', __LINE__, $element_data); break; } unset($element_data['offset'], $element_data['end']); $info['matroska']['header']['elements'][] = $element_data; } break; case EBML_ID_SEGMENT: $info['matroska']['segment'][0]['offset'] = $top_element['offset']; $info['matroska']['segment'][0]['length'] = $top_element['length']; while ($this->getEBMLelement($element_data, $top_element['end'])) { if ($element_data['id'] != EBML_ID_CLUSTER || !$this->hide_clusters) { // collect clusters only if required $info['matroska']['segments'][] = $element_data; } switch ($element_data['id']) { case EBML_ID_SEEKHEAD: // Contains the position of other level 1 elements. while ($this->getEBMLelement($seek_entry, $element_data['end'])) { switch ($seek_entry['id']) { case EBML_ID_SEEK: // Contains a single seek entry to an EBML element while ($this->getEBMLelement($sub_seek_entry, $seek_entry['end'], true)) { switch ($sub_seek_entry['id']) { case EBML_ID_SEEKID: $seek_entry['target_id'] = self::EBML2Int($sub_seek_entry['data']); $seek_entry['target_name'] = self::EBMLidName($seek_entry['target_id']); break; case EBML_ID_SEEKPOSITION: $seek_entry['target_offset'] = $element_data['offset'] + getid3_lib::BigEndian2Int($sub_seek_entry['data']); break; default: $this->unhandledElement('seekhead.seek', __LINE__, $sub_seek_entry); } break; } if (!isset($seek_entry['target_id'])) { $this->warning('seek_entry[target_id] unexpectedly not set at '.$seek_entry['offset']); break; } if (($seek_entry['target_id'] != EBML_ID_CLUSTER) || !$this->hide_clusters) { // collect clusters only if required $info['matroska']['seek'][] = $seek_entry; } break; default: $this->unhandledElement('seekhead', __LINE__, $seek_entry); break; } } break; case EBML_ID_TRACKS: // A top-level block of information with many tracks described. $info['matroska']['tracks'] = $element_data; while ($this->getEBMLelement($track_entry, $element_data['end'])) { switch ($track_entry['id']) { case EBML_ID_TRACKENTRY: //subelements: Describes a track with all elements. while ($this->getEBMLelement($subelement, $track_entry['end'], array(EBML_ID_VIDEO, EBML_ID_AUDIO, EBML_ID_CONTENTENCODINGS, EBML_ID_CODECPRIVATE))) { switch ($subelement['id']) { case EBML_ID_TRACKUID: $track_entry[$subelement['id_name']] = getid3_lib::PrintHexBytes($subelement['data'], true, false); break; case EBML_ID_TRACKNUMBER: case EBML_ID_TRACKTYPE: case EBML_ID_MINCACHE: case EBML_ID_MAXCACHE: case EBML_ID_MAXBLOCKADDITIONID: case EBML_ID_DEFAULTDURATION: // nanoseconds per frame $track_entry[$subelement['id_name']] = getid3_lib::BigEndian2Int($subelement['data']); break; case EBML_ID_TRACKTIMECODESCALE: $track_entry[$subelement['id_name']] = getid3_lib::BigEndian2Float($subelement['data']); break; case EBML_ID_CODECID: case EBML_ID_LANGUAGE: case EBML_ID_NAME: case EBML_ID_CODECNAME: $track_entry[$subelement['id_name']] = getid3_lib::trimNullByte($subelement['data']); break; case EBML_ID_CODECPRIVATE: $track_entry[$subelement['id_name']] = $this->readEBMLelementData($subelement['length'], true); break; case EBML_ID_FLAGENABLED: case EBML_ID_FLAGDEFAULT: case EBML_ID_FLAGFORCED: case EBML_ID_FLAGLACING: case EBML_ID_CODECDECODEALL: $track_entry[$subelement['id_name']] = (bool) getid3_lib::BigEndian2Int($subelement['data']); break; case EBML_ID_VIDEO: while ($this->getEBMLelement($sub_subelement, $subelement['end'], true)) { switch ($sub_subelement['id']) { case EBML_ID_PIXELWIDTH: case EBML_ID_PIXELHEIGHT: case EBML_ID_PIXELCROPBOTTOM: case EBML_ID_PIXELCROPTOP: case EBML_ID_PIXELCROPLEFT: case EBML_ID_PIXELCROPRIGHT: case EBML_ID_DISPLAYWIDTH: case EBML_ID_DISPLAYHEIGHT: case EBML_ID_DISPLAYUNIT: case EBML_ID_ASPECTRATIOTYPE: case EBML_ID_STEREOMODE: case EBML_ID_OLDSTEREOMODE: $track_entry[$sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_subelement['data']); break; case EBML_ID_FLAGINTERLACED: $track_entry[$sub_subelement['id_name']] = (bool)getid3_lib::BigEndian2Int($sub_subelement['data']); break; case EBML_ID_GAMMAVALUE: $track_entry[$sub_subelement['id_name']] = getid3_lib::BigEndian2Float($sub_subelement['data']); break; case EBML_ID_COLOURSPACE: $track_entry[$sub_subelement['id_name']] = getid3_lib::trimNullByte($sub_subelement['data']); break; default: $this->unhandledElement('track.video', __LINE__, $sub_subelement); break; } } break; case EBML_ID_AUDIO: while ($this->getEBMLelement($sub_subelement, $subelement['end'], true)) { switch ($sub_subelement['id']) { case EBML_ID_CHANNELS: case EBML_ID_BITDEPTH: $track_entry[$sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_subelement['data']); break; case EBML_ID_SAMPLINGFREQUENCY: case EBML_ID_OUTPUTSAMPLINGFREQUENCY: $track_entry[$sub_subelement['id_name']] = getid3_lib::BigEndian2Float($sub_subelement['data']); break; case EBML_ID_CHANNELPOSITIONS: $track_entry[$sub_subelement['id_name']] = getid3_lib::trimNullByte($sub_subelement['data']); break; default: $this->unhandledElement('track.audio', __LINE__, $sub_subelement); break; } } break; case EBML_ID_CONTENTENCODINGS: while ($this->getEBMLelement($sub_subelement, $subelement['end'])) { switch ($sub_subelement['id']) { case EBML_ID_CONTENTENCODING: while ($this->getEBMLelement($sub_sub_subelement, $sub_subelement['end'], array(EBML_ID_CONTENTCOMPRESSION, EBML_ID_CONTENTENCRYPTION))) { switch ($sub_sub_subelement['id']) { case EBML_ID_CONTENTENCODINGORDER: case EBML_ID_CONTENTENCODINGSCOPE: case EBML_ID_CONTENTENCODINGTYPE: $track_entry[$sub_subelement['id_name']][$sub_sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_sub_subelement['data']); break; case EBML_ID_CONTENTCOMPRESSION: while ($this->getEBMLelement($sub_sub_sub_subelement, $sub_sub_subelement['end'], true)) { switch ($sub_sub_sub_subelement['id']) { case EBML_ID_CONTENTCOMPALGO: $track_entry[$sub_subelement['id_name']][$sub_sub_subelement['id_name']][$sub_sub_sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_sub_sub_subelement['data']); break; case EBML_ID_CONTENTCOMPSETTINGS: $track_entry[$sub_subelement['id_name']][$sub_sub_subelement['id_name']][$sub_sub_sub_subelement['id_name']] = $sub_sub_sub_subelement['data']; break; default: $this->unhandledElement('track.contentencodings.contentencoding.contentcompression', __LINE__, $sub_sub_sub_subelement); break; } } break; case EBML_ID_CONTENTENCRYPTION: while ($this->getEBMLelement($sub_sub_sub_subelement, $sub_sub_subelement['end'], true)) { switch ($sub_sub_sub_subelement['id']) { case EBML_ID_CONTENTENCALGO: case EBML_ID_CONTENTSIGALGO: case EBML_ID_CONTENTSIGHASHALGO: $track_entry[$sub_subelement['id_name']][$sub_sub_subelement['id_name']][$sub_sub_sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_sub_sub_subelement['data']); break; case EBML_ID_CONTENTENCKEYID: case EBML_ID_CONTENTSIGNATURE: case EBML_ID_CONTENTSIGKEYID: $track_entry[$sub_subelement['id_name']][$sub_sub_subelement['id_name']][$sub_sub_sub_subelement['id_name']] = $sub_sub_sub_subelement['data']; break; default: $this->unhandledElement('track.contentencodings.contentencoding.contentcompression', __LINE__, $sub_sub_sub_subelement); break; } } break; default: $this->unhandledElement('track.contentencodings.contentencoding', __LINE__, $sub_sub_subelement); break; } } break; default: $this->unhandledElement('track.contentencodings', __LINE__, $sub_subelement); break; } } break; default: $this->unhandledElement('track', __LINE__, $subelement); break; } } $info['matroska']['tracks']['tracks'][] = $track_entry; break; default: $this->unhandledElement('tracks', __LINE__, $track_entry); break; } } break; case EBML_ID_INFO: // Contains miscellaneous general information and statistics on the file. $info_entry = array(); while ($this->getEBMLelement($subelement, $element_data['end'], true)) { switch ($subelement['id']) { case EBML_ID_TIMECODESCALE: $info_entry[$subelement['id_name']] = getid3_lib::BigEndian2Int($subelement['data']); break; case EBML_ID_DURATION: $info_entry[$subelement['id_name']] = getid3_lib::BigEndian2Float($subelement['data']); break; case EBML_ID_DATEUTC: $info_entry[$subelement['id_name']] = getid3_lib::BigEndian2Int($subelement['data']); $info_entry[$subelement['id_name'].'_unix'] = self::EBMLdate2unix($info_entry[$subelement['id_name']]); break; case EBML_ID_SEGMENTUID: case EBML_ID_PREVUID: case EBML_ID_NEXTUID: $info_entry[$subelement['id_name']] = getid3_lib::trimNullByte($subelement['data']); break; case EBML_ID_SEGMENTFAMILY: $info_entry[$subelement['id_name']][] = getid3_lib::trimNullByte($subelement['data']); break; case EBML_ID_SEGMENTFILENAME: case EBML_ID_PREVFILENAME: case EBML_ID_NEXTFILENAME: case EBML_ID_TITLE: case EBML_ID_MUXINGAPP: case EBML_ID_WRITINGAPP: $info_entry[$subelement['id_name']] = getid3_lib::trimNullByte($subelement['data']); $info['matroska']['comments'][strtolower($subelement['id_name'])][] = $info_entry[$subelement['id_name']]; break; case EBML_ID_CHAPTERTRANSLATE: $chaptertranslate_entry = array(); while ($this->getEBMLelement($sub_subelement, $subelement['end'], true)) { switch ($sub_subelement['id']) { case EBML_ID_CHAPTERTRANSLATEEDITIONUID: $chaptertranslate_entry[$sub_subelement['id_name']][] = getid3_lib::BigEndian2Int($sub_subelement['data']); break; case EBML_ID_CHAPTERTRANSLATECODEC: $chaptertranslate_entry[$sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_subelement['data']); break; case EBML_ID_CHAPTERTRANSLATEID: $chaptertranslate_entry[$sub_subelement['id_name']] = getid3_lib::trimNullByte($sub_subelement['data']); break; default: $this->unhandledElement('info.chaptertranslate', __LINE__, $sub_subelement); break; } } $info_entry[$subelement['id_name']] = $chaptertranslate_entry; break; default: $this->unhandledElement('info', __LINE__, $subelement); break; } } $info['matroska']['info'][] = $info_entry; break; case EBML_ID_CUES: // A top-level element to speed seeking access. All entries are local to the segment. Should be mandatory for non "live" streams. if ($this->hide_clusters) { // do not parse cues if hide clusters is "ON" till they point to clusters anyway $this->current_offset = $element_data['end']; break; } $cues_entry = array(); while ($this->getEBMLelement($subelement, $element_data['end'])) { switch ($subelement['id']) { case EBML_ID_CUEPOINT: $cuepoint_entry = array(); while ($this->getEBMLelement($sub_subelement, $subelement['end'], array(EBML_ID_CUETRACKPOSITIONS))) { switch ($sub_subelement['id']) { case EBML_ID_CUETRACKPOSITIONS: $cuetrackpositions_entry = array(); while ($this->getEBMLelement($sub_sub_subelement, $sub_subelement['end'], true)) { switch ($sub_sub_subelement['id']) { case EBML_ID_CUETRACK: case EBML_ID_CUECLUSTERPOSITION: case EBML_ID_CUEBLOCKNUMBER: case EBML_ID_CUECODECSTATE: $cuetrackpositions_entry[$sub_sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_sub_subelement['data']); break; default: $this->unhandledElement('cues.cuepoint.cuetrackpositions', __LINE__, $sub_sub_subelement); break; } } $cuepoint_entry[$sub_subelement['id_name']][] = $cuetrackpositions_entry; break; case EBML_ID_CUETIME: $cuepoint_entry[$sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_subelement['data']); break; default: $this->unhandledElement('cues.cuepoint', __LINE__, $sub_subelement); break; } } $cues_entry[] = $cuepoint_entry; break; default: $this->unhandledElement('cues', __LINE__, $subelement); break; } } $info['matroska']['cues'] = $cues_entry; break; case EBML_ID_TAGS: // Element containing elements specific to Tracks/Chapters. $tags_entry = array(); while ($this->getEBMLelement($subelement, $element_data['end'], false)) { switch ($subelement['id']) { case EBML_ID_TAG: $tag_entry = array(); while ($this->getEBMLelement($sub_subelement, $subelement['end'], false)) { switch ($sub_subelement['id']) { case EBML_ID_TARGETS: $targets_entry = array(); while ($this->getEBMLelement($sub_sub_subelement, $sub_subelement['end'], true)) { switch ($sub_sub_subelement['id']) { case EBML_ID_TARGETTYPEVALUE: $targets_entry[$sub_sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_sub_subelement['data']); $targets_entry[strtolower($sub_sub_subelement['id_name']).'_long'] = self::TargetTypeValue($targets_entry[$sub_sub_subelement['id_name']]); break; case EBML_ID_TARGETTYPE: $targets_entry[$sub_sub_subelement['id_name']] = $sub_sub_subelement['data']; break; case EBML_ID_TAGTRACKUID: case EBML_ID_TAGEDITIONUID: case EBML_ID_TAGCHAPTERUID: case EBML_ID_TAGATTACHMENTUID: $targets_entry[$sub_sub_subelement['id_name']][] = getid3_lib::PrintHexBytes($sub_sub_subelement['data'], true, false); break; default: $this->unhandledElement('tags.tag.targets', __LINE__, $sub_sub_subelement); break; } } $tag_entry[$sub_subelement['id_name']] = $targets_entry; break; case EBML_ID_SIMPLETAG: $tag_entry[$sub_subelement['id_name']][] = $this->HandleEMBLSimpleTag($sub_subelement['end']); break; default: $this->unhandledElement('tags.tag', __LINE__, $sub_subelement); break; } } $tags_entry[] = $tag_entry; break; default: $this->unhandledElement('tags', __LINE__, $subelement); break; } } $info['matroska']['tags'] = $tags_entry; break; case EBML_ID_ATTACHMENTS: // Contain attached files. while ($this->getEBMLelement($subelement, $element_data['end'])) { switch ($subelement['id']) { case EBML_ID_ATTACHEDFILE: $attachedfile_entry = array(); while ($this->getEBMLelement($sub_subelement, $subelement['end'], array(EBML_ID_FILEDATA))) { switch ($sub_subelement['id']) { case EBML_ID_FILEDESCRIPTION: case EBML_ID_FILENAME: case EBML_ID_FILEMIMETYPE: $attachedfile_entry[$sub_subelement['id_name']] = $sub_subelement['data']; break; case EBML_ID_FILEDATA: $attachedfile_entry['data_offset'] = $this->current_offset; $attachedfile_entry['data_length'] = $sub_subelement['length']; $attachedfile_entry[$sub_subelement['id_name']] = $this->saveAttachment( $attachedfile_entry['FileName'], $attachedfile_entry['data_offset'], $attachedfile_entry['data_length']); $this->current_offset = $sub_subelement['end']; break; case EBML_ID_FILEUID: $attachedfile_entry[$sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_subelement['data']); break; default: $this->unhandledElement('attachments.attachedfile', __LINE__, $sub_subelement); break; } } $info['matroska']['attachments'][] = $attachedfile_entry; break; default: $this->unhandledElement('attachments', __LINE__, $subelement); break; } } break; case EBML_ID_CHAPTERS: while ($this->getEBMLelement($subelement, $element_data['end'])) { switch ($subelement['id']) { case EBML_ID_EDITIONENTRY: $editionentry_entry = array(); while ($this->getEBMLelement($sub_subelement, $subelement['end'], array(EBML_ID_CHAPTERATOM))) { switch ($sub_subelement['id']) { case EBML_ID_EDITIONUID: $editionentry_entry[$sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_subelement['data']); break; case EBML_ID_EDITIONFLAGHIDDEN: case EBML_ID_EDITIONFLAGDEFAULT: case EBML_ID_EDITIONFLAGORDERED: $editionentry_entry[$sub_subelement['id_name']] = (bool)getid3_lib::BigEndian2Int($sub_subelement['data']); break; case EBML_ID_CHAPTERATOM: $chapteratom_entry = array(); while ($this->getEBMLelement($sub_sub_subelement, $sub_subelement['end'], array(EBML_ID_CHAPTERTRACK, EBML_ID_CHAPTERDISPLAY))) { switch ($sub_sub_subelement['id']) { case EBML_ID_CHAPTERSEGMENTUID: case EBML_ID_CHAPTERSEGMENTEDITIONUID: $chapteratom_entry[$sub_sub_subelement['id_name']] = $sub_sub_subelement['data']; break; case EBML_ID_CHAPTERFLAGENABLED: case EBML_ID_CHAPTERFLAGHIDDEN: $chapteratom_entry[$sub_sub_subelement['id_name']] = (bool)getid3_lib::BigEndian2Int($sub_sub_subelement['data']); break; case EBML_ID_CHAPTERUID: case EBML_ID_CHAPTERTIMESTART: case EBML_ID_CHAPTERTIMEEND: $chapteratom_entry[$sub_sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_sub_subelement['data']); break; case EBML_ID_CHAPTERTRACK: $chaptertrack_entry = array(); while ($this->getEBMLelement($sub_sub_sub_subelement, $sub_sub_subelement['end'], true)) { switch ($sub_sub_sub_subelement['id']) { case EBML_ID_CHAPTERTRACKNUMBER: $chaptertrack_entry[$sub_sub_sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_sub_sub_subelement['data']); break; default: $this->unhandledElement('chapters.editionentry.chapteratom.chaptertrack', __LINE__, $sub_sub_sub_subelement); break; } } $chapteratom_entry[$sub_sub_subelement['id_name']][] = $chaptertrack_entry; break; case EBML_ID_CHAPTERDISPLAY: $chapterdisplay_entry = array(); while ($this->getEBMLelement($sub_sub_sub_subelement, $sub_sub_subelement['end'], true)) { switch ($sub_sub_sub_subelement['id']) { case EBML_ID_CHAPSTRING: case EBML_ID_CHAPLANGUAGE: case EBML_ID_CHAPCOUNTRY: $chapterdisplay_entry[$sub_sub_sub_subelement['id_name']] = $sub_sub_sub_subelement['data']; break; default: $this->unhandledElement('chapters.editionentry.chapteratom.chapterdisplay', __LINE__, $sub_sub_sub_subelement); break; } } $chapteratom_entry[$sub_sub_subelement['id_name']][] = $chapterdisplay_entry; break; default: $this->unhandledElement('chapters.editionentry.chapteratom', __LINE__, $sub_sub_subelement); break; } } $editionentry_entry[$sub_subelement['id_name']][] = $chapteratom_entry; break; default: $this->unhandledElement('chapters.editionentry', __LINE__, $sub_subelement); break; } } $info['matroska']['chapters'][] = $editionentry_entry; break; default: $this->unhandledElement('chapters', __LINE__, $subelement); break; } } break; case EBML_ID_CLUSTER: // The lower level element containing the (monolithic) Block structure. $cluster_entry = array(); while ($this->getEBMLelement($subelement, $element_data['end'], array(EBML_ID_CLUSTERSILENTTRACKS, EBML_ID_CLUSTERBLOCKGROUP, EBML_ID_CLUSTERSIMPLEBLOCK))) { switch ($subelement['id']) { case EBML_ID_CLUSTERTIMECODE: case EBML_ID_CLUSTERPOSITION: case EBML_ID_CLUSTERPREVSIZE: $cluster_entry[$subelement['id_name']] = getid3_lib::BigEndian2Int($subelement['data']); break; case EBML_ID_CLUSTERSILENTTRACKS: $cluster_silent_tracks = array(); while ($this->getEBMLelement($sub_subelement, $subelement['end'], true)) { switch ($sub_subelement['id']) { case EBML_ID_CLUSTERSILENTTRACKNUMBER: $cluster_silent_tracks[] = getid3_lib::BigEndian2Int($sub_subelement['data']); break; default: $this->unhandledElement('cluster.silenttracks', __LINE__, $sub_subelement); break; } } $cluster_entry[$subelement['id_name']][] = $cluster_silent_tracks; break; case EBML_ID_CLUSTERBLOCKGROUP: $cluster_block_group = array('offset' => $this->current_offset); while ($this->getEBMLelement($sub_subelement, $subelement['end'], array(EBML_ID_CLUSTERBLOCK))) { switch ($sub_subelement['id']) { case EBML_ID_CLUSTERBLOCK: $cluster_block_group[$sub_subelement['id_name']] = $this->HandleEMBLClusterBlock($sub_subelement, EBML_ID_CLUSTERBLOCK, $info); break; case EBML_ID_CLUSTERREFERENCEPRIORITY: // unsigned-int case EBML_ID_CLUSTERBLOCKDURATION: // unsigned-int $cluster_block_group[$sub_subelement['id_name']] = getid3_lib::BigEndian2Int($sub_subelement['data']); break; case EBML_ID_CLUSTERREFERENCEBLOCK: // signed-int $cluster_block_group[$sub_subelement['id_name']][] = getid3_lib::BigEndian2Int($sub_subelement['data'], false, true); break; case EBML_ID_CLUSTERCODECSTATE: $cluster_block_group[$sub_subelement['id_name']] = getid3_lib::trimNullByte($sub_subelement['data']); break; default: $this->unhandledElement('clusters.blockgroup', __LINE__, $sub_subelement); break; } } $cluster_entry[$subelement['id_name']][] = $cluster_block_group; break; case EBML_ID_CLUSTERSIMPLEBLOCK: $cluster_entry[$subelement['id_name']][] = $this->HandleEMBLClusterBlock($subelement, EBML_ID_CLUSTERSIMPLEBLOCK, $info); break; default: $this->unhandledElement('cluster', __LINE__, $subelement); break; } $this->current_offset = $subelement['end']; } if (!$this->hide_clusters || $this->playtimeFromMetadata($info) === false) { $info['matroska']['cluster'][] = $cluster_entry; } if ($this->scan_mode === MATROSKA_SCAN_FIRST_CLUSTER) { // Stop parsing after finding first cluster return; } // check to see if all the data we need exists already, if so, break out of the loop if ($this->scan_mode === MATROSKA_SCAN_HEADER) { if (isset($info['matroska']['info']) && is_array($info['matroska']['info'])) { if (isset($info['matroska']['tracks']['tracks']) && is_array($info['matroska']['tracks']['tracks'])) { if (count($info['matroska']['track_data_offsets']) == count($info['matroska']['tracks']['tracks'])) { return; } } } } break; default: $this->unhandledElement('segment', __LINE__, $element_data); break; } } break; default: $this->unhandledElement('root', __LINE__, $top_element); break; } } } /** * @param int $min_data * * @return bool */ private function EnsureBufferHasEnoughData($min_data=1024) { if (($this->current_offset - $this->EBMLbuffer_offset) >= ($this->EBMLbuffer_length - $min_data)) { $read_bytes = max($min_data, $this->getid3->fread_buffer_size()); try { $this->fseek($this->current_offset); $this->EBMLbuffer_offset = $this->current_offset; $this->EBMLbuffer = $this->fread($read_bytes); $this->EBMLbuffer_length = strlen($this->EBMLbuffer); } catch (getid3_exception $e) { $this->warning('EBML parser: '.$e->getMessage()); return false; } if ($this->EBMLbuffer_length == 0 && $this->feof()) { return $this->error('EBML parser: ran out of file at offset '.$this->current_offset); } } return true; } /** * @return int|float|false */ private function readEBMLint() { $actual_offset = $this->current_offset - $this->EBMLbuffer_offset; // get length of integer $first_byte_int = ord($this->EBMLbuffer[$actual_offset]); if (0x80 & $first_byte_int) { $length = 1; } elseif (0x40 & $first_byte_int) { $length = 2; } elseif (0x20 & $first_byte_int) { $length = 3; } elseif (0x10 & $first_byte_int) { $length = 4; } elseif (0x08 & $first_byte_int) { $length = 5; } elseif (0x04 & $first_byte_int) { $length = 6; } elseif (0x02 & $first_byte_int) { $length = 7; } elseif (0x01 & $first_byte_int) { $length = 8; } else { throw new Exception('invalid EBML integer (leading 0x00) at '.$this->current_offset); } // read $int_value = self::EBML2Int(substr($this->EBMLbuffer, $actual_offset, $length)); $this->current_offset += $length; return $int_value; } /** * @param int $length * @param bool $check_buffer * * @return string|false */ private function readEBMLelementData($length, $check_buffer=false) { if ($check_buffer && !$this->EnsureBufferHasEnoughData($length)) { return false; } $data = substr($this->EBMLbuffer, $this->current_offset - $this->EBMLbuffer_offset, $length); $this->current_offset += $length; return $data; } /** * @param array $element * @param int $parent_end * @param array|bool $get_data * * @return bool */ private function getEBMLelement(&$element, $parent_end, $get_data=false) { if ($this->current_offset >= $parent_end) { return false; } if (!$this->EnsureBufferHasEnoughData()) { $this->current_offset = PHP_INT_MAX; // do not exit parser right now, allow to finish current loop to gather maximum information return false; } $element = array(); // set offset $element['offset'] = $this->current_offset; // get ID $element['id'] = $this->readEBMLint(); // get name $element['id_name'] = self::EBMLidName($element['id']); // get length $element['length'] = $this->readEBMLint(); // get end offset $element['end'] = $this->current_offset + $element['length']; // get raw data $dont_parse = (in_array($element['id'], $this->unuseful_elements) || $element['id_name'] == dechex($element['id'])); if (($get_data === true || (is_array($get_data) && !in_array($element['id'], $get_data))) && !$dont_parse) { $element['data'] = $this->readEBMLelementData($element['length'], $element); } return true; } /** * @param string $type * @param int $line * @param array $element */ private function unhandledElement($type, $line, $element) { // warn only about unknown and missed elements, not about unuseful if (!in_array($element['id'], $this->unuseful_elements)) { $this->warning('Unhandled '.$type.' element ['.basename(__FILE__).':'.$line.'] ('.$element['id'].'::'.$element['id_name'].' ['.$element['length'].' bytes]) at '.$element['offset']); } // increase offset for unparsed elements if (!isset($element['data'])) { $this->current_offset = $element['end']; } } /** * @param array $SimpleTagArray * * @return bool */ private function ExtractCommentsSimpleTag($SimpleTagArray) { if (!empty($SimpleTagArray['SimpleTag'])) { foreach ($SimpleTagArray['SimpleTag'] as $SimpleTagKey => $SimpleTagData) { if (!empty($SimpleTagData['TagName']) && !empty($SimpleTagData['TagString'])) { $this->getid3->info['matroska']['comments'][strtolower($SimpleTagData['TagName'])][] = $SimpleTagData['TagString']; } if (!empty($SimpleTagData['SimpleTag'])) { $this->ExtractCommentsSimpleTag($SimpleTagData); } } } return true; } /** * @param int $parent_end * * @return array */ private function HandleEMBLSimpleTag($parent_end) { $simpletag_entry = array(); while ($this->getEBMLelement($element, $parent_end, array(EBML_ID_SIMPLETAG))) { switch ($element['id']) { case EBML_ID_TAGNAME: case EBML_ID_TAGLANGUAGE: case EBML_ID_TAGSTRING: case EBML_ID_TAGBINARY: $simpletag_entry[$element['id_name']] = $element['data']; break; case EBML_ID_SIMPLETAG: $simpletag_entry[$element['id_name']][] = $this->HandleEMBLSimpleTag($element['end']); break; case EBML_ID_TAGDEFAULT: $simpletag_entry[$element['id_name']] = (bool)getid3_lib::BigEndian2Int($element['data']); break; default: $this->unhandledElement('tag.simpletag', __LINE__, $element); break; } } return $simpletag_entry; } /** * @param array $element * @param int $block_type * @param array $info * * @return array */ private function HandleEMBLClusterBlock($element, $block_type, &$info) { // http://www.matroska.org/technical/specs/index.html#block_structure // http://www.matroska.org/technical/specs/index.html#simpleblock_structure $block_data = array(); $block_data['tracknumber'] = $this->readEBMLint(); $block_data['timecode'] = getid3_lib::BigEndian2Int($this->readEBMLelementData(2), false, true); $block_data['flags_raw'] = getid3_lib::BigEndian2Int($this->readEBMLelementData(1)); if ($block_type == EBML_ID_CLUSTERSIMPLEBLOCK) { $block_data['flags']['keyframe'] = (($block_data['flags_raw'] & 0x80) >> 7); //$block_data['flags']['reserved1'] = (($block_data['flags_raw'] & 0x70) >> 4); } else { //$block_data['flags']['reserved1'] = (($block_data['flags_raw'] & 0xF0) >> 4); } $block_data['flags']['invisible'] = (bool)(($block_data['flags_raw'] & 0x08) >> 3); $block_data['flags']['lacing'] = (($block_data['flags_raw'] & 0x06) >> 1); // 00=no lacing; 01=Xiph lacing; 11=EBML lacing; 10=fixed-size lacing if ($block_type == EBML_ID_CLUSTERSIMPLEBLOCK) { $block_data['flags']['discardable'] = (($block_data['flags_raw'] & 0x01)); } else { //$block_data['flags']['reserved2'] = (($block_data['flags_raw'] & 0x01) >> 0); } $block_data['flags']['lacing_type'] = self::BlockLacingType($block_data['flags']['lacing']); // Lace (when lacing bit is set) if ($block_data['flags']['lacing'] > 0) { $block_data['lace_frames'] = getid3_lib::BigEndian2Int($this->readEBMLelementData(1)) + 1; // Number of frames in the lace-1 (uint8) if ($block_data['flags']['lacing'] != 0x02) { for ($i = 1; $i < $block_data['lace_frames']; $i ++) { // Lace-coded size of each frame of the lace, except for the last one (multiple uint8). *This is not used with Fixed-size lacing as it is calculated automatically from (total size of lace) / (number of frames in lace). if ($block_data['flags']['lacing'] == 0x03) { // EBML lacing $block_data['lace_frames_size'][$i] = $this->readEBMLint(); // TODO: read size correctly, calc size for the last frame. For now offsets are deteminded OK with readEBMLint() and that's the most important thing. } else { // Xiph lacing $block_data['lace_frames_size'][$i] = 0; do { $size = getid3_lib::BigEndian2Int($this->readEBMLelementData(1)); $block_data['lace_frames_size'][$i] += $size; } while ($size == 255); } } if ($block_data['flags']['lacing'] == 0x01) { // calc size of the last frame only for Xiph lacing, till EBML sizes are now anyway determined incorrectly $block_data['lace_frames_size'][] = $element['end'] - $this->current_offset - array_sum($block_data['lace_frames_size']); } } } if (!isset($info['matroska']['track_data_offsets'][$block_data['tracknumber']])) { $info['matroska']['track_data_offsets'][$block_data['tracknumber']]['offset'] = $this->current_offset; $info['matroska']['track_data_offsets'][$block_data['tracknumber']]['length'] = $element['end'] - $this->current_offset; //$info['matroska']['track_data_offsets'][$block_data['tracknumber']]['total_length'] = 0; } //$info['matroska']['track_data_offsets'][$block_data['tracknumber']]['total_length'] += $info['matroska']['track_data_offsets'][$block_data['tracknumber']]['length']; //$info['matroska']['track_data_offsets'][$block_data['tracknumber']]['duration'] = $block_data['timecode'] * ((isset($info['matroska']['info'][0]['TimecodeScale']) ? $info['matroska']['info'][0]['TimecodeScale'] : 1000000) / 1000000000); // set offset manually $this->current_offset = $element['end']; return $block_data; } /** * @param string $EBMLstring * * @return int|float|false */ private static function EBML2Int($EBMLstring) { // http://matroska.org/specs/ // Element ID coded with an UTF-8 like system: // 1xxx xxxx - Class A IDs (2^7 -2 possible values) (base 0x8X) // 01xx xxxx xxxx xxxx - Class B IDs (2^14-2 possible values) (base 0x4X 0xXX) // 001x xxxx xxxx xxxx xxxx xxxx - Class C IDs (2^21-2 possible values) (base 0x2X 0xXX 0xXX) // 0001 xxxx xxxx xxxx xxxx xxxx xxxx xxxx - Class D IDs (2^28-2 possible values) (base 0x1X 0xXX 0xXX 0xXX) // Values with all x at 0 and 1 are reserved (hence the -2). // Data size, in octets, is also coded with an UTF-8 like system : // 1xxx xxxx - value 0 to 2^7-2 // 01xx xxxx xxxx xxxx - value 0 to 2^14-2 // 001x xxxx xxxx xxxx xxxx xxxx - value 0 to 2^21-2 // 0001 xxxx xxxx xxxx xxxx xxxx xxxx xxxx - value 0 to 2^28-2 // 0000 1xxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx - value 0 to 2^35-2 // 0000 01xx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx - value 0 to 2^42-2 // 0000 001x xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx - value 0 to 2^49-2 // 0000 0001 xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx - value 0 to 2^56-2 $first_byte_int = ord($EBMLstring[0]); if (0x80 & $first_byte_int) { $EBMLstring[0] = chr($first_byte_int & 0x7F); } elseif (0x40 & $first_byte_int) { $EBMLstring[0] = chr($first_byte_int & 0x3F); } elseif (0x20 & $first_byte_int) { $EBMLstring[0] = chr($first_byte_int & 0x1F); } elseif (0x10 & $first_byte_int) { $EBMLstring[0] = chr($first_byte_int & 0x0F); } elseif (0x08 & $first_byte_int) { $EBMLstring[0] = chr($first_byte_int & 0x07); } elseif (0x04 & $first_byte_int) { $EBMLstring[0] = chr($first_byte_int & 0x03); } elseif (0x02 & $first_byte_int) { $EBMLstring[0] = chr($first_byte_int & 0x01); } elseif (0x01 & $first_byte_int) { $EBMLstring[0] = chr($first_byte_int & 0x00); } return getid3_lib::BigEndian2Int($EBMLstring); } /** * @param int $EBMLdatestamp * * @return float */ private static function EBMLdate2unix($EBMLdatestamp) { // Date - signed 8 octets integer in nanoseconds with 0 indicating the precise beginning of the millennium (at 2001-01-01T00:00:00,000000000 UTC) // 978307200 == mktime(0, 0, 0, 1, 1, 2001) == January 1, 2001 12:00:00am UTC return round(($EBMLdatestamp / 1000000000) + 978307200); } /** * @param int $target_type * * @return string|int */ public static function TargetTypeValue($target_type) { // http://www.matroska.org/technical/specs/tagging/index.html static $TargetTypeValue = array(); if (empty($TargetTypeValue)) { $TargetTypeValue[10] = 'A: ~ V:shot'; // the lowest hierarchy found in music or movies $TargetTypeValue[20] = 'A:subtrack/part/movement ~ V:scene'; // corresponds to parts of a track for audio (like a movement) $TargetTypeValue[30] = 'A:track/song ~ V:chapter'; // the common parts of an album or a movie $TargetTypeValue[40] = 'A:part/session ~ V:part/session'; // when an album or episode has different logical parts $TargetTypeValue[50] = 'A:album/opera/concert ~ V:movie/episode/concert'; // the most common grouping level of music and video (equals to an episode for TV series) $TargetTypeValue[60] = 'A:edition/issue/volume/opus ~ V:season/sequel/volume'; // a list of lower levels grouped together $TargetTypeValue[70] = 'A:collection ~ V:collection'; // the high hierarchy consisting of many different lower items } return (isset($TargetTypeValue[$target_type]) ? $TargetTypeValue[$target_type] : $target_type); } /** * @param int $lacingtype * * @return string|int */ public static function BlockLacingType($lacingtype) { // http://matroska.org/technical/specs/index.html#block_structure static $BlockLacingType = array(); if (empty($BlockLacingType)) { $BlockLacingType[0x00] = 'no lacing'; $BlockLacingType[0x01] = 'Xiph lacing'; $BlockLacingType[0x02] = 'fixed-size lacing'; $BlockLacingType[0x03] = 'EBML lacing'; } return (isset($BlockLacingType[$lacingtype]) ? $BlockLacingType[$lacingtype] : $lacingtype); } /** * @param string $codecid * * @return string */ public static function CodecIDtoCommonName($codecid) { // http://www.matroska.org/technical/specs/codecid/index.html static $CodecIDlist = array(); if (empty($CodecIDlist)) { $CodecIDlist['A_AAC'] = 'aac'; $CodecIDlist['A_AAC/MPEG2/LC'] = 'aac'; $CodecIDlist['A_AC3'] = 'ac3'; $CodecIDlist['A_EAC3'] = 'eac3'; $CodecIDlist['A_DTS'] = 'dts'; $CodecIDlist['A_FLAC'] = 'flac'; $CodecIDlist['A_MPEG/L1'] = 'mp1'; $CodecIDlist['A_MPEG/L2'] = 'mp2'; $CodecIDlist['A_MPEG/L3'] = 'mp3'; $CodecIDlist['A_PCM/INT/LIT'] = 'pcm'; // PCM Integer Little Endian $CodecIDlist['A_PCM/INT/BIG'] = 'pcm'; // PCM Integer Big Endian $CodecIDlist['A_QUICKTIME/QDMC'] = 'quicktime'; // Quicktime: QDesign Music $CodecIDlist['A_QUICKTIME/QDM2'] = 'quicktime'; // Quicktime: QDesign Music v2 $CodecIDlist['A_VORBIS'] = 'vorbis'; $CodecIDlist['V_MPEG1'] = 'mpeg'; $CodecIDlist['V_THEORA'] = 'theora'; $CodecIDlist['V_REAL/RV40'] = 'real'; $CodecIDlist['V_REAL/RV10'] = 'real'; $CodecIDlist['V_REAL/RV20'] = 'real'; $CodecIDlist['V_REAL/RV30'] = 'real'; $CodecIDlist['V_QUICKTIME'] = 'quicktime'; // Quicktime $CodecIDlist['V_MPEG4/ISO/AP'] = 'mpeg4'; $CodecIDlist['V_MPEG4/ISO/ASP'] = 'mpeg4'; $CodecIDlist['V_MPEG4/ISO/AVC'] = 'h264'; $CodecIDlist['V_MPEG4/ISO/SP'] = 'mpeg4'; $CodecIDlist['V_VP8'] = 'vp8'; $CodecIDlist['V_MS/VFW/FOURCC'] = 'vcm'; // Microsoft (TM) Video Codec Manager (VCM) $CodecIDlist['A_MS/ACM'] = 'acm'; // Microsoft (TM) Audio Codec Manager (ACM) } return (isset($CodecIDlist[$codecid]) ? $CodecIDlist[$codecid] : $codecid); } /** * @param int $value * * @return string */ private static function EBMLidName($value) { static $EBMLidList = array(); if (empty($EBMLidList)) { $EBMLidList[EBML_ID_ASPECTRATIOTYPE] = 'AspectRatioType'; $EBMLidList[EBML_ID_ATTACHEDFILE] = 'AttachedFile'; $EBMLidList[EBML_ID_ATTACHMENTLINK] = 'AttachmentLink'; $EBMLidList[EBML_ID_ATTACHMENTS] = 'Attachments'; $EBMLidList[EBML_ID_AUDIO] = 'Audio'; $EBMLidList[EBML_ID_BITDEPTH] = 'BitDepth'; $EBMLidList[EBML_ID_CHANNELPOSITIONS] = 'ChannelPositions'; $EBMLidList[EBML_ID_CHANNELS] = 'Channels'; $EBMLidList[EBML_ID_CHAPCOUNTRY] = 'ChapCountry'; $EBMLidList[EBML_ID_CHAPLANGUAGE] = 'ChapLanguage'; $EBMLidList[EBML_ID_CHAPPROCESS] = 'ChapProcess'; $EBMLidList[EBML_ID_CHAPPROCESSCODECID] = 'ChapProcessCodecID'; $EBMLidList[EBML_ID_CHAPPROCESSCOMMAND] = 'ChapProcessCommand'; $EBMLidList[EBML_ID_CHAPPROCESSDATA] = 'ChapProcessData'; $EBMLidList[EBML_ID_CHAPPROCESSPRIVATE] = 'ChapProcessPrivate'; $EBMLidList[EBML_ID_CHAPPROCESSTIME] = 'ChapProcessTime'; $EBMLidList[EBML_ID_CHAPSTRING] = 'ChapString'; $EBMLidList[EBML_ID_CHAPTERATOM] = 'ChapterAtom'; $EBMLidList[EBML_ID_CHAPTERDISPLAY] = 'ChapterDisplay'; $EBMLidList[EBML_ID_CHAPTERFLAGENABLED] = 'ChapterFlagEnabled'; $EBMLidList[EBML_ID_CHAPTERFLAGHIDDEN] = 'ChapterFlagHidden'; $EBMLidList[EBML_ID_CHAPTERPHYSICALEQUIV] = 'ChapterPhysicalEquiv'; $EBMLidList[EBML_ID_CHAPTERS] = 'Chapters'; $EBMLidList[EBML_ID_CHAPTERSEGMENTEDITIONUID] = 'ChapterSegmentEditionUID'; $EBMLidList[EBML_ID_CHAPTERSEGMENTUID] = 'ChapterSegmentUID'; $EBMLidList[EBML_ID_CHAPTERTIMEEND] = 'ChapterTimeEnd'; $EBMLidList[EBML_ID_CHAPTERTIMESTART] = 'ChapterTimeStart'; $EBMLidList[EBML_ID_CHAPTERTRACK] = 'ChapterTrack'; $EBMLidList[EBML_ID_CHAPTERTRACKNUMBER] = 'ChapterTrackNumber'; $EBMLidList[EBML_ID_CHAPTERTRANSLATE] = 'ChapterTranslate'; $EBMLidList[EBML_ID_CHAPTERTRANSLATECODEC] = 'ChapterTranslateCodec'; $EBMLidList[EBML_ID_CHAPTERTRANSLATEEDITIONUID] = 'ChapterTranslateEditionUID'; $EBMLidList[EBML_ID_CHAPTERTRANSLATEID] = 'ChapterTranslateID'; $EBMLidList[EBML_ID_CHAPTERUID] = 'ChapterUID'; $EBMLidList[EBML_ID_CLUSTER] = 'Cluster'; $EBMLidList[EBML_ID_CLUSTERBLOCK] = 'ClusterBlock'; $EBMLidList[EBML_ID_CLUSTERBLOCKADDID] = 'ClusterBlockAddID'; $EBMLidList[EBML_ID_CLUSTERBLOCKADDITIONAL] = 'ClusterBlockAdditional'; $EBMLidList[EBML_ID_CLUSTERBLOCKADDITIONID] = 'ClusterBlockAdditionID'; $EBMLidList[EBML_ID_CLUSTERBLOCKADDITIONS] = 'ClusterBlockAdditions'; $EBMLidList[EBML_ID_CLUSTERBLOCKDURATION] = 'ClusterBlockDuration'; $EBMLidList[EBML_ID_CLUSTERBLOCKGROUP] = 'ClusterBlockGroup'; $EBMLidList[EBML_ID_CLUSTERBLOCKMORE] = 'ClusterBlockMore'; $EBMLidList[EBML_ID_CLUSTERBLOCKVIRTUAL] = 'ClusterBlockVirtual'; $EBMLidList[EBML_ID_CLUSTERCODECSTATE] = 'ClusterCodecState'; $EBMLidList[EBML_ID_CLUSTERDELAY] = 'ClusterDelay'; $EBMLidList[EBML_ID_CLUSTERDURATION] = 'ClusterDuration'; $EBMLidList[EBML_ID_CLUSTERENCRYPTEDBLOCK] = 'ClusterEncryptedBlock'; $EBMLidList[EBML_ID_CLUSTERFRAMENUMBER] = 'ClusterFrameNumber'; $EBMLidList[EBML_ID_CLUSTERLACENUMBER] = 'ClusterLaceNumber'; $EBMLidList[EBML_ID_CLUSTERPOSITION] = 'ClusterPosition'; $EBMLidList[EBML_ID_CLUSTERPREVSIZE] = 'ClusterPrevSize'; $EBMLidList[EBML_ID_CLUSTERREFERENCEBLOCK] = 'ClusterReferenceBlock'; $EBMLidList[EBML_ID_CLUSTERREFERENCEPRIORITY] = 'ClusterReferencePriority'; $EBMLidList[EBML_ID_CLUSTERREFERENCEVIRTUAL] = 'ClusterReferenceVirtual'; $EBMLidList[EBML_ID_CLUSTERSILENTTRACKNUMBER] = 'ClusterSilentTrackNumber'; $EBMLidList[EBML_ID_CLUSTERSILENTTRACKS] = 'ClusterSilentTracks'; $EBMLidList[EBML_ID_CLUSTERSIMPLEBLOCK] = 'ClusterSimpleBlock'; $EBMLidList[EBML_ID_CLUSTERTIMECODE] = 'ClusterTimecode'; $EBMLidList[EBML_ID_CLUSTERTIMESLICE] = 'ClusterTimeSlice'; $EBMLidList[EBML_ID_CODECDECODEALL] = 'CodecDecodeAll'; $EBMLidList[EBML_ID_CODECDOWNLOADURL] = 'CodecDownloadURL'; $EBMLidList[EBML_ID_CODECID] = 'CodecID'; $EBMLidList[EBML_ID_CODECINFOURL] = 'CodecInfoURL'; $EBMLidList[EBML_ID_CODECNAME] = 'CodecName'; $EBMLidList[EBML_ID_CODECPRIVATE] = 'CodecPrivate'; $EBMLidList[EBML_ID_CODECSETTINGS] = 'CodecSettings'; $EBMLidList[EBML_ID_COLOURSPACE] = 'ColourSpace'; $EBMLidList[EBML_ID_CONTENTCOMPALGO] = 'ContentCompAlgo'; $EBMLidList[EBML_ID_CONTENTCOMPRESSION] = 'ContentCompression'; $EBMLidList[EBML_ID_CONTENTCOMPSETTINGS] = 'ContentCompSettings'; $EBMLidList[EBML_ID_CONTENTENCALGO] = 'ContentEncAlgo'; $EBMLidList[EBML_ID_CONTENTENCKEYID] = 'ContentEncKeyID'; $EBMLidList[EBML_ID_CONTENTENCODING] = 'ContentEncoding'; $EBMLidList[EBML_ID_CONTENTENCODINGORDER] = 'ContentEncodingOrder'; $EBMLidList[EBML_ID_CONTENTENCODINGS] = 'ContentEncodings'; $EBMLidList[EBML_ID_CONTENTENCODINGSCOPE] = 'ContentEncodingScope'; $EBMLidList[EBML_ID_CONTENTENCODINGTYPE] = 'ContentEncodingType'; $EBMLidList[EBML_ID_CONTENTENCRYPTION] = 'ContentEncryption'; $EBMLidList[EBML_ID_CONTENTSIGALGO] = 'ContentSigAlgo'; $EBMLidList[EBML_ID_CONTENTSIGHASHALGO] = 'ContentSigHashAlgo'; $EBMLidList[EBML_ID_CONTENTSIGKEYID] = 'ContentSigKeyID'; $EBMLidList[EBML_ID_CONTENTSIGNATURE] = 'ContentSignature'; $EBMLidList[EBML_ID_CRC32] = 'CRC32'; $EBMLidList[EBML_ID_CUEBLOCKNUMBER] = 'CueBlockNumber'; $EBMLidList[EBML_ID_CUECLUSTERPOSITION] = 'CueClusterPosition'; $EBMLidList[EBML_ID_CUECODECSTATE] = 'CueCodecState'; $EBMLidList[EBML_ID_CUEPOINT] = 'CuePoint'; $EBMLidList[EBML_ID_CUEREFCLUSTER] = 'CueRefCluster'; $EBMLidList[EBML_ID_CUEREFCODECSTATE] = 'CueRefCodecState'; $EBMLidList[EBML_ID_CUEREFERENCE] = 'CueReference'; $EBMLidList[EBML_ID_CUEREFNUMBER] = 'CueRefNumber'; $EBMLidList[EBML_ID_CUEREFTIME] = 'CueRefTime'; $EBMLidList[EBML_ID_CUES] = 'Cues'; $EBMLidList[EBML_ID_CUETIME] = 'CueTime'; $EBMLidList[EBML_ID_CUETRACK] = 'CueTrack'; $EBMLidList[EBML_ID_CUETRACKPOSITIONS] = 'CueTrackPositions'; $EBMLidList[EBML_ID_DATEUTC] = 'DateUTC'; $EBMLidList[EBML_ID_DEFAULTDURATION] = 'DefaultDuration'; $EBMLidList[EBML_ID_DISPLAYHEIGHT] = 'DisplayHeight'; $EBMLidList[EBML_ID_DISPLAYUNIT] = 'DisplayUnit'; $EBMLidList[EBML_ID_DISPLAYWIDTH] = 'DisplayWidth'; $EBMLidList[EBML_ID_DOCTYPE] = 'DocType'; $EBMLidList[EBML_ID_DOCTYPEREADVERSION] = 'DocTypeReadVersion'; $EBMLidList[EBML_ID_DOCTYPEVERSION] = 'DocTypeVersion'; $EBMLidList[EBML_ID_DURATION] = 'Duration'; $EBMLidList[EBML_ID_EBML] = 'EBML'; $EBMLidList[EBML_ID_EBMLMAXIDLENGTH] = 'EBMLMaxIDLength'; $EBMLidList[EBML_ID_EBMLMAXSIZELENGTH] = 'EBMLMaxSizeLength'; $EBMLidList[EBML_ID_EBMLREADVERSION] = 'EBMLReadVersion'; $EBMLidList[EBML_ID_EBMLVERSION] = 'EBMLVersion'; $EBMLidList[EBML_ID_EDITIONENTRY] = 'EditionEntry'; $EBMLidList[EBML_ID_EDITIONFLAGDEFAULT] = 'EditionFlagDefault'; $EBMLidList[EBML_ID_EDITIONFLAGHIDDEN] = 'EditionFlagHidden'; $EBMLidList[EBML_ID_EDITIONFLAGORDERED] = 'EditionFlagOrdered'; $EBMLidList[EBML_ID_EDITIONUID] = 'EditionUID'; $EBMLidList[EBML_ID_FILEDATA] = 'FileData'; $EBMLidList[EBML_ID_FILEDESCRIPTION] = 'FileDescription'; $EBMLidList[EBML_ID_FILEMIMETYPE] = 'FileMimeType'; $EBMLidList[EBML_ID_FILENAME] = 'FileName'; $EBMLidList[EBML_ID_FILEREFERRAL] = 'FileReferral'; $EBMLidList[EBML_ID_FILEUID] = 'FileUID'; $EBMLidList[EBML_ID_FLAGDEFAULT] = 'FlagDefault'; $EBMLidList[EBML_ID_FLAGENABLED] = 'FlagEnabled'; $EBMLidList[EBML_ID_FLAGFORCED] = 'FlagForced'; $EBMLidList[EBML_ID_FLAGINTERLACED] = 'FlagInterlaced'; $EBMLidList[EBML_ID_FLAGLACING] = 'FlagLacing'; $EBMLidList[EBML_ID_GAMMAVALUE] = 'GammaValue'; $EBMLidList[EBML_ID_INFO] = 'Info'; $EBMLidList[EBML_ID_LANGUAGE] = 'Language'; $EBMLidList[EBML_ID_MAXBLOCKADDITIONID] = 'MaxBlockAdditionID'; $EBMLidList[EBML_ID_MAXCACHE] = 'MaxCache'; $EBMLidList[EBML_ID_MINCACHE] = 'MinCache'; $EBMLidList[EBML_ID_MUXINGAPP] = 'MuxingApp'; $EBMLidList[EBML_ID_NAME] = 'Name'; $EBMLidList[EBML_ID_NEXTFILENAME] = 'NextFilename'; $EBMLidList[EBML_ID_NEXTUID] = 'NextUID'; $EBMLidList[EBML_ID_OUTPUTSAMPLINGFREQUENCY] = 'OutputSamplingFrequency'; $EBMLidList[EBML_ID_PIXELCROPBOTTOM] = 'PixelCropBottom'; $EBMLidList[EBML_ID_PIXELCROPLEFT] = 'PixelCropLeft'; $EBMLidList[EBML_ID_PIXELCROPRIGHT] = 'PixelCropRight'; $EBMLidList[EBML_ID_PIXELCROPTOP] = 'PixelCropTop'; $EBMLidList[EBML_ID_PIXELHEIGHT] = 'PixelHeight'; $EBMLidList[EBML_ID_PIXELWIDTH] = 'PixelWidth'; $EBMLidList[EBML_ID_PREVFILENAME] = 'PrevFilename'; $EBMLidList[EBML_ID_PREVUID] = 'PrevUID'; $EBMLidList[EBML_ID_SAMPLINGFREQUENCY] = 'SamplingFrequency'; $EBMLidList[EBML_ID_SEEK] = 'Seek'; $EBMLidList[EBML_ID_SEEKHEAD] = 'SeekHead'; $EBMLidList[EBML_ID_SEEKID] = 'SeekID'; $EBMLidList[EBML_ID_SEEKPOSITION] = 'SeekPosition'; $EBMLidList[EBML_ID_SEGMENT] = 'Segment'; $EBMLidList[EBML_ID_SEGMENTFAMILY] = 'SegmentFamily'; $EBMLidList[EBML_ID_SEGMENTFILENAME] = 'SegmentFilename'; $EBMLidList[EBML_ID_SEGMENTUID] = 'SegmentUID'; $EBMLidList[EBML_ID_SIMPLETAG] = 'SimpleTag'; $EBMLidList[EBML_ID_CLUSTERSLICES] = 'ClusterSlices'; $EBMLidList[EBML_ID_STEREOMODE] = 'StereoMode'; $EBMLidList[EBML_ID_OLDSTEREOMODE] = 'OldStereoMode'; $EBMLidList[EBML_ID_TAG] = 'Tag'; $EBMLidList[EBML_ID_TAGATTACHMENTUID] = 'TagAttachmentUID'; $EBMLidList[EBML_ID_TAGBINARY] = 'TagBinary'; $EBMLidList[EBML_ID_TAGCHAPTERUID] = 'TagChapterUID'; $EBMLidList[EBML_ID_TAGDEFAULT] = 'TagDefault'; $EBMLidList[EBML_ID_TAGEDITIONUID] = 'TagEditionUID'; $EBMLidList[EBML_ID_TAGLANGUAGE] = 'TagLanguage'; $EBMLidList[EBML_ID_TAGNAME] = 'TagName'; $EBMLidList[EBML_ID_TAGTRACKUID] = 'TagTrackUID'; $EBMLidList[EBML_ID_TAGS] = 'Tags'; $EBMLidList[EBML_ID_TAGSTRING] = 'TagString'; $EBMLidList[EBML_ID_TARGETS] = 'Targets'; $EBMLidList[EBML_ID_TARGETTYPE] = 'TargetType'; $EBMLidList[EBML_ID_TARGETTYPEVALUE] = 'TargetTypeValue'; $EBMLidList[EBML_ID_TIMECODESCALE] = 'TimecodeScale'; $EBMLidList[EBML_ID_TITLE] = 'Title'; $EBMLidList[EBML_ID_TRACKENTRY] = 'TrackEntry'; $EBMLidList[EBML_ID_TRACKNUMBER] = 'TrackNumber'; $EBMLidList[EBML_ID_TRACKOFFSET] = 'TrackOffset'; $EBMLidList[EBML_ID_TRACKOVERLAY] = 'TrackOverlay'; $EBMLidList[EBML_ID_TRACKS] = 'Tracks'; $EBMLidList[EBML_ID_TRACKTIMECODESCALE] = 'TrackTimecodeScale'; $EBMLidList[EBML_ID_TRACKTRANSLATE] = 'TrackTranslate'; $EBMLidList[EBML_ID_TRACKTRANSLATECODEC] = 'TrackTranslateCodec'; $EBMLidList[EBML_ID_TRACKTRANSLATEEDITIONUID] = 'TrackTranslateEditionUID'; $EBMLidList[EBML_ID_TRACKTRANSLATETRACKID] = 'TrackTranslateTrackID'; $EBMLidList[EBML_ID_TRACKTYPE] = 'TrackType'; $EBMLidList[EBML_ID_TRACKUID] = 'TrackUID'; $EBMLidList[EBML_ID_VIDEO] = 'Video'; $EBMLidList[EBML_ID_VOID] = 'Void'; $EBMLidList[EBML_ID_WRITINGAPP] = 'WritingApp'; } return (isset($EBMLidList[$value]) ? $EBMLidList[$value] : dechex($value)); } /** * @param int $value * * @return string */ public static function displayUnit($value) { // http://www.matroska.org/technical/specs/index.html#DisplayUnit static $units = array( 0 => 'pixels', 1 => 'centimeters', 2 => 'inches', 3 => 'Display Aspect Ratio'); return (isset($units[$value]) ? $units[$value] : 'unknown'); } /** * @param array $streams * * @return array */ private static function getDefaultStreamInfo($streams) { $stream = array(); foreach (array_reverse($streams) as $stream) { if ($stream['default']) { break; } } $unset = array('default', 'name'); foreach ($unset as $u) { if (isset($stream[$u])) { unset($stream[$u]); } } $info = $stream; $info['streams'] = $streams; return $info; } /** * @param array $info * * @return float|bool Duration when present in metadata or false */ private function playtimeFromMetadata(&$info) { if (isset($info['matroska']['info']) && is_array($info['matroska']['info'])) { foreach ($info['matroska']['info'] as $infoarray) { if (isset($infoarray['Duration'])) { // TimecodeScale is how many nanoseconds each Duration unit is $info['playtime_seconds'] = $infoarray['Duration'] * ((isset($infoarray['TimecodeScale']) ? $infoarray['TimecodeScale'] : MATROSKA_DEFAULT_TIMECODESCALE) / 1000000000); return $info['playtime_seconds']; } } } return false; } /** * @param int $offset New starting offset for the buffer * * @return void */ private function resetParserBuffer($offset) { $this->current_offset = $offset; $this->EBMLbuffer = ''; $this->EBMLbuffer_offset = 0; $this->EBMLbuffer_length = 0; } /** * Scan start and end of file for cluster information when Duration is missing * Only use this if no Duration was found in the Info element and we are not in parse_whole_file mode * * @param array $info * * @return void */ private function scanStartEndForClusters(&$info) { // Scan beginning of file for first cluster $this->resetParserBuffer($info['avdataoffset']); $this->scan_mode = MATROSKA_SCAN_FIRST_CLUSTER; try { $this->parseEBML($info); } catch (Exception $e) { $this->error('EBML parser (start of file): '.$e->getMessage()); } // Scan end of file for last cluster if (is_array($info['matroska']['cluster']) && !empty($info['matroska']['cluster'])) { // Scan maximum 1MB window before EOF $this->resetParserBuffer(max(0, $info['avdataend'] - (1024 * 1024))); $this->scan_mode = MATROSKA_SCAN_LAST_CLUSTER; try { $this->parseEBML($info); } catch (Exception $e) { $this->error('EBML parser (end of file): '.$e->getMessage()); } } // Reset to header parsing mode (this method is only called during header-only parsing) $this->scan_mode = MATROSKA_SCAN_HEADER; } /** * Fetch TimecodeScale from Info element * * @param array $info * * @return int TimecodeScale value */ private function getTimecodeScale(&$info) { $timecodeScale = MATROSKA_DEFAULT_TIMECODESCALE; if (isset($info['matroska']['info']) && is_array($info['matroska']['info'])) { foreach ($info['matroska']['info'] as $infoarray) { if (isset($infoarray['TimecodeScale'])) { $timecodeScale = $infoarray['TimecodeScale']; break; } } } return $timecodeScale; } /** * Calculate duration from scanned cluster timecodes * * @param array $info * * @return void */ private function calculatePlaytimeFromClusters(&$info) { $minTimecode = null; $maxTimecode = null; if (isset($info['matroska']['cluster']) && is_array($info['matroska']['cluster'])) { foreach ($info['matroska']['cluster'] as $cluster) { if (isset($cluster['ClusterTimecode'])) { if ($minTimecode === null || $cluster['ClusterTimecode'] < $minTimecode) { $minTimecode = $cluster['ClusterTimecode']; } if ($maxTimecode === null || $cluster['ClusterTimecode'] > $maxTimecode) { $maxTimecode = $cluster['ClusterTimecode']; } } } } if ($maxTimecode !== null && $minTimecode !== null && $maxTimecode > $minTimecode) { $info['playtime_seconds'] = ($maxTimecode - $minTimecode) * ($this->getTimecodeScale($info) / 1000000000); } } } getid3.lib.php000060000000154113152233444720007204 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // // // getid3.lib.php - part of getID3() // // see readme.txt for more details // // /// ///////////////////////////////////////////////////////////////// if (!defined('GETID3_LIBXML_OPTIONS') && defined('LIBXML_VERSION')) { if (LIBXML_VERSION >= 20621) { define('GETID3_LIBXML_OPTIONS', LIBXML_NONET | LIBXML_NOWARNING | LIBXML_COMPACT); } else { define('GETID3_LIBXML_OPTIONS', LIBXML_NONET | LIBXML_NOWARNING); } } // Available since PHP 7.0 (2015-Dec-03 https://www.php.net/ChangeLog-7.php) if (!defined('PHP_INT_MIN')) { define('PHP_INT_MIN', ~PHP_INT_MAX); } class getid3_lib { /** * @param string $string * @param bool $hex * @param bool $spaces * @param string|bool $htmlencoding * * @return string */ public static function PrintHexBytes($string, $hex=true, $spaces=true, $htmlencoding='UTF-8') { $returnstring = ''; for ($i = 0; $i < strlen($string); $i++) { if ($hex) { $returnstring .= str_pad(dechex(ord($string[$i])), 2, '0', STR_PAD_LEFT); } else { $returnstring .= ' '.(preg_match("#[\x20-\x7E]#", $string[$i]) ? $string[$i] : '¤'); } if ($spaces) { $returnstring .= ' '; } } if (!empty($htmlencoding)) { if ($htmlencoding === true) { $htmlencoding = 'UTF-8'; // prior to getID3 v1.9.0 the function's 4th parameter was boolean } $returnstring = htmlentities($returnstring, ENT_QUOTES, $htmlencoding); } return $returnstring; } /** * Truncates a floating-point number at the decimal point. * * @param float $floatnumber * * @return float|int returns int (if possible, otherwise float) */ public static function trunc($floatnumber) { if ($floatnumber >= 1) { $truncatednumber = floor($floatnumber); } elseif ($floatnumber <= -1) { $truncatednumber = ceil($floatnumber); } else { $truncatednumber = 0; } if (self::intValueSupported($truncatednumber)) { $truncatednumber = (int) $truncatednumber; } return $truncatednumber; } /** * @param int|null $variable * @param-out int $variable * @param int $increment * * @return bool */ public static function safe_inc(&$variable, $increment=1) { if (isset($variable)) { $variable += $increment; } else { $variable = $increment; } return true; } /** * @param int|float $floatnum * * @return int|float */ public static function CastAsInt($floatnum) { // convert to float if not already $floatnum = (float) $floatnum; // convert a float to type int, only if possible if (self::trunc($floatnum) == $floatnum) { // it's not floating point if (self::intValueSupported($floatnum)) { // it's within int range $floatnum = (int) $floatnum; } } return $floatnum; } /** * @param int $num * * @return bool */ public static function intValueSupported($num) { // really should be <= and >= but trying "(int)9.2233720368548E+18" results in PHP warning "The float 9.2233720368548E+18 is not representable as an int, cast occurred" return (($num < PHP_INT_MAX) && ($num > PHP_INT_MIN)); } /** * Perform a division, guarding against division by zero * * @param float|int $numerator * @param float|int $denominator * @param float|int $fallback * @return float|int */ public static function SafeDiv($numerator, $denominator, $fallback = 0) { return $denominator ? $numerator / $denominator : $fallback; } /** * @param string $fraction * * @return float */ public static function DecimalizeFraction($fraction) { list($numerator, $denominator) = explode('/', $fraction); return (int) $numerator / ($denominator ? $denominator : 1); } /** * @param string $binarynumerator * * @return float */ public static function DecimalBinary2Float($binarynumerator) { $numerator = self::Bin2Dec($binarynumerator); $denominator = self::Bin2Dec('1'.str_repeat('0', strlen($binarynumerator))); return ($numerator / $denominator); } /** * @link http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/binary.html * * @param string $binarypointnumber * @param int $maxbits * * @return array */ public static function NormalizeBinaryPoint($binarypointnumber, $maxbits=52) { if (strpos($binarypointnumber, '.') === false) { $binarypointnumber = '0.'.$binarypointnumber; } elseif ($binarypointnumber[0] == '.') { $binarypointnumber = '0'.$binarypointnumber; } $exponent = 0; while (($binarypointnumber[0] != '1') || (substr($binarypointnumber, 1, 1) != '.')) { if (substr($binarypointnumber, 1, 1) == '.') { $exponent--; $binarypointnumber = substr($binarypointnumber, 2, 1).'.'.substr($binarypointnumber, 3); } else { $pointpos = strpos($binarypointnumber, '.'); $exponent += ($pointpos - 1); $binarypointnumber = str_replace('.', '', $binarypointnumber); $binarypointnumber = $binarypointnumber[0].'.'.substr($binarypointnumber, 1); } } $binarypointnumber = str_pad(substr($binarypointnumber, 0, $maxbits + 2), $maxbits + 2, '0', STR_PAD_RIGHT); return array('normalized'=>$binarypointnumber, 'exponent'=>(int) $exponent); } /** * @link http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/binary.html * * @param float $floatvalue * * @return string */ public static function Float2BinaryDecimal($floatvalue) { $maxbits = 128; // to how many bits of precision should the calculations be taken? $intpart = self::trunc($floatvalue); $floatpart = abs($floatvalue - $intpart); $pointbitstring = ''; while (($floatpart != 0) && (strlen($pointbitstring) < $maxbits)) { $floatpart *= 2; $pointbitstring .= (string) self::trunc($floatpart); $floatpart -= self::trunc($floatpart); } $binarypointnumber = decbin($intpart).'.'.$pointbitstring; return $binarypointnumber; } /** * @link http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/ieee-expl.html * * @param float $floatvalue * @param int $bits * * @return string|false */ public static function Float2String($floatvalue, $bits) { $exponentbits = 0; $fractionbits = 0; switch ($bits) { case 32: $exponentbits = 8; $fractionbits = 23; break; case 64: $exponentbits = 11; $fractionbits = 52; break; default: return false; } if ($floatvalue >= 0) { $signbit = '0'; } else { $signbit = '1'; } $normalizedbinary = self::NormalizeBinaryPoint(self::Float2BinaryDecimal($floatvalue), $fractionbits); $biasedexponent = pow(2, $exponentbits - 1) - 1 + $normalizedbinary['exponent']; // (127 or 1023) +/- exponent $exponentbitstring = str_pad(decbin($biasedexponent), $exponentbits, '0', STR_PAD_LEFT); $fractionbitstring = str_pad(substr($normalizedbinary['normalized'], 2), $fractionbits, '0', STR_PAD_RIGHT); return self::BigEndian2String(self::Bin2Dec($signbit.$exponentbitstring.$fractionbitstring), $bits % 8, false); } /** * @param string $byteword * * @return float|false */ public static function LittleEndian2Float($byteword) { return self::BigEndian2Float(strrev($byteword)); } /** * ANSI/IEEE Standard 754-1985, Standard for Binary Floating Point Arithmetic * * @link https://web.archive.org/web/20120325162206/http://www.psc.edu/general/software/packages/ieee/ieee.php * @link http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/ieee.html * * @param string $byteword * * @return float|false */ public static function BigEndian2Float($byteword) { $bitword = self::BigEndian2Bin($byteword); if (!$bitword) { return 0; } $signbit = $bitword[0]; $floatvalue = 0; $exponentbits = 0; $fractionbits = 0; switch (strlen($byteword) * 8) { case 32: $exponentbits = 8; $fractionbits = 23; break; case 64: $exponentbits = 11; $fractionbits = 52; break; case 80: // 80-bit Apple SANE format // http://www.mactech.com/articles/mactech/Vol.06/06.01/SANENormalized/ $exponentstring = substr($bitword, 1, 15); $isnormalized = intval($bitword[16]); $fractionstring = substr($bitword, 17, 63); $exponent = pow(2, self::Bin2Dec($exponentstring) - 16383); $fraction = $isnormalized + self::DecimalBinary2Float($fractionstring); $floatvalue = $exponent * $fraction; if ($signbit == '1') { $floatvalue *= -1; } return $floatvalue; default: return false; } $exponentstring = substr($bitword, 1, $exponentbits); $fractionstring = substr($bitword, $exponentbits + 1, $fractionbits); $exponent = self::Bin2Dec($exponentstring); $fraction = self::Bin2Dec($fractionstring); if (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction != 0)) { // Not a Number $floatvalue = NAN; } elseif (($exponent == (pow(2, $exponentbits) - 1)) && ($fraction == 0)) { if ($signbit == '1') { $floatvalue = -INF; } else { $floatvalue = INF; } } elseif (($exponent == 0) && ($fraction == 0)) { if ($signbit == '1') { $floatvalue = -0.0; } else { $floatvalue = 0.0; } } elseif (($exponent == 0) && ($fraction != 0)) { // These are 'unnormalized' values $floatvalue = pow(2, (-1 * (pow(2, $exponentbits - 1) - 2))) * self::DecimalBinary2Float($fractionstring); if ($signbit == '1') { $floatvalue *= -1; } } elseif ($exponent != 0) { $floatvalue = pow(2, ($exponent - (pow(2, $exponentbits - 1) - 1))) * (1 + self::DecimalBinary2Float($fractionstring)); if ($signbit == '1') { $floatvalue *= -1; } } return (float) $floatvalue; } /** * @param string $byteword * @param bool $synchsafe * @param bool $signed * * @return int|float|false * @throws Exception */ public static function BigEndian2Int($byteword, $synchsafe=false, $signed=false) { $intvalue = 0; $bytewordlen = strlen($byteword); if ($bytewordlen == 0) { return false; } for ($i = 0; $i < $bytewordlen; $i++) { if ($synchsafe) { // disregard MSB, effectively 7-bit bytes //$intvalue = $intvalue | (ord($byteword{$i}) & 0x7F) << (($bytewordlen - 1 - $i) * 7); // faster, but runs into problems past 2^31 on 32-bit systems $intvalue += (ord($byteword[$i]) & 0x7F) * pow(2, ($bytewordlen - 1 - $i) * 7); } else { $intvalue += ord($byteword[$i]) * pow(256, ($bytewordlen - 1 - $i)); } } if ($signed && !$synchsafe) { // synchsafe ints are not allowed to be signed if ($bytewordlen <= PHP_INT_SIZE) { $signMaskBit = 0x80 << (8 * ($bytewordlen - 1)); if ($intvalue & $signMaskBit) { $intvalue = 0 - ($intvalue & ($signMaskBit - 1)); } } else { throw new Exception('ERROR: Cannot have signed integers larger than '.(8 * PHP_INT_SIZE).'-bits ('.strlen($byteword).') in self::BigEndian2Int()'); } } return self::CastAsInt($intvalue); } /** * @param string $byteword * @param bool $signed * * @return int|float|false */ public static function LittleEndian2Int($byteword, $signed=false) { return self::BigEndian2Int(strrev($byteword), false, $signed); } /** * @param string $byteword * * @return string */ public static function LittleEndian2Bin($byteword) { return self::BigEndian2Bin(strrev($byteword)); } /** * @param string $byteword * * @return string */ public static function BigEndian2Bin($byteword) { $binvalue = ''; $bytewordlen = strlen($byteword); for ($i = 0; $i < $bytewordlen; $i++) { $binvalue .= str_pad(decbin(ord($byteword[$i])), 8, '0', STR_PAD_LEFT); } return $binvalue; } /** * @param int $number * @param int $minbytes * @param bool $synchsafe * @param bool $signed * * @return string * @throws Exception */ public static function BigEndian2String($number, $minbytes=1, $synchsafe=false, $signed=false) { if ($number < 0) { throw new Exception('ERROR: self::BigEndian2String() does not support negative numbers'); } $maskbyte = (($synchsafe || $signed) ? 0x7F : 0xFF); $intstring = ''; if ($signed) { if ($minbytes > PHP_INT_SIZE) { throw new Exception('ERROR: Cannot have signed integers larger than '.(8 * PHP_INT_SIZE).'-bits in self::BigEndian2String()'); } $number = $number & (0x80 << (8 * ($minbytes - 1))); } while ($number != 0) { $quotient = ($number / ($maskbyte + 1)); $intstring = chr(ceil(($quotient - floor($quotient)) * $maskbyte)).$intstring; $number = floor($quotient); } return str_pad($intstring, $minbytes, "\x00", STR_PAD_LEFT); } /** * @param int|string $number * * @return string */ public static function Dec2Bin($number) { if (!is_numeric($number)) { // https://github.com/JamesHeinrich/getID3/issues/299 trigger_error('TypeError: Dec2Bin(): Argument #1 ($number) must be numeric, '.gettype($number).' given', E_USER_WARNING); return ''; } $bytes = array(); while ($number >= 256) { $bytes[] = (int) (($number / 256) - (floor($number / 256))) * 256; $number = floor($number / 256); } $bytes[] = (int) $number; $binstring = ''; foreach ($bytes as $i => $byte) { $binstring = (($i == count($bytes) - 1) ? decbin($byte) : str_pad(decbin($byte), 8, '0', STR_PAD_LEFT)).$binstring; } return $binstring; } /** * @param string $binstring * @param bool $signed * * @return int|float */ public static function Bin2Dec($binstring, $signed=false) { $signmult = 1; if ($signed) { if ($binstring[0] == '1') { $signmult = -1; } $binstring = substr($binstring, 1); } $decvalue = 0; for ($i = 0; $i < strlen($binstring); $i++) { $decvalue += ((int) substr($binstring, strlen($binstring) - $i - 1, 1)) * pow(2, $i); } return self::CastAsInt($decvalue * $signmult); } /** * @param string $binstring * * @return string */ public static function Bin2String($binstring) { // return 'hi' for input of '0110100001101001' $string = ''; $binstringreversed = strrev($binstring); for ($i = 0; $i < strlen($binstringreversed); $i += 8) { $string = chr(self::Bin2Dec(strrev(substr($binstringreversed, $i, 8)))).$string; } return $string; } /** * @param int $number * @param int $minbytes * @param bool $synchsafe * * @return string */ public static function LittleEndian2String($number, $minbytes=1, $synchsafe=false) { $intstring = ''; while ($number > 0) { if ($synchsafe) { $intstring = $intstring.chr($number & 127); $number >>= 7; } else { $intstring = $intstring.chr($number & 255); $number >>= 8; } } return str_pad($intstring, $minbytes, "\x00", STR_PAD_RIGHT); } /** * @param mixed $array1 * @param mixed $array2 * * @return array|false */ public static function array_merge_clobber($array1, $array2) { // written by kcØhireability*com // taken from http://www.php.net/manual/en/function.array-merge-recursive.php if (!is_array($array1) || !is_array($array2)) { return false; } $newarray = $array1; foreach ($array2 as $key => $val) { if (is_array($val) && isset($newarray[$key]) && is_array($newarray[$key])) { $newarray[$key] = self::array_merge_clobber($newarray[$key], $val); } else { $newarray[$key] = $val; } } return $newarray; } /** * @param mixed $array1 * @param mixed $array2 * * @return array|false */ public static function array_merge_noclobber($array1, $array2) { if (!is_array($array1) || !is_array($array2)) { return false; } $newarray = $array1; foreach ($array2 as $key => $val) { if (is_array($val) && isset($newarray[$key]) && is_array($newarray[$key])) { $newarray[$key] = self::array_merge_noclobber($newarray[$key], $val); } elseif (!isset($newarray[$key])) { $newarray[$key] = $val; } } return $newarray; } /** * @param mixed $array1 * @param mixed $array2 * * @return array|false|null */ public static function flipped_array_merge_noclobber($array1, $array2) { if (!is_array($array1) || !is_array($array2)) { return false; } # naturally, this only works non-recursively $newarray = array_flip($array1); foreach (array_flip($array2) as $key => $val) { if (!isset($newarray[$key])) { $newarray[$key] = count($newarray); } } return array_flip($newarray); } /** * @param array $theArray * * @return bool */ public static function ksort_recursive(&$theArray) { ksort($theArray); foreach ($theArray as $key => $value) { if (is_array($value)) { self::ksort_recursive($theArray[$key]); } } return true; } /** * @param string $filename * @param int $numextensions * * @return string */ public static function fileextension($filename, $numextensions=1) { if (strstr($filename, '.')) { $reversedfilename = strrev($filename); $offset = 0; for ($i = 0; $i < $numextensions; $i++) { $offset = strpos($reversedfilename, '.', $offset + 1); if ($offset === false) { return ''; } } return strrev(substr($reversedfilename, 0, $offset)); } return ''; } /** * @param int $seconds * * @return string */ public static function PlaytimeString($seconds) { $sign = (($seconds < 0) ? '-' : ''); $seconds = round(abs($seconds)); $H = (int) floor( $seconds / 3600); $M = (int) floor(($seconds - (3600 * $H) ) / 60); $S = (int) round( $seconds - (3600 * $H) - (60 * $M) ); return $sign.($H ? $H.':' : '').($H ? str_pad($M, 2, '0', STR_PAD_LEFT) : intval($M)).':'.str_pad($S, 2, 0, STR_PAD_LEFT); } /** * @param int $macdate * * @return int|float */ public static function DateMac2Unix($macdate) { // Macintosh timestamp: seconds since 00:00h January 1, 1904 // UNIX timestamp: seconds since 00:00h January 1, 1970 return self::CastAsInt($macdate - 2082844800); } /** * @param string $rawdata * * @return float */ public static function FixedPoint8_8($rawdata) { return self::BigEndian2Int(substr($rawdata, 0, 1)) + (float) (self::BigEndian2Int(substr($rawdata, 1, 1)) / pow(2, 8)); } /** * @param string $rawdata * * @return float */ public static function FixedPoint16_16($rawdata) { return self::BigEndian2Int(substr($rawdata, 0, 2)) + (float) (self::BigEndian2Int(substr($rawdata, 2, 2)) / pow(2, 16)); } /** * @param string $rawdata * * @return float */ public static function FixedPoint2_30($rawdata) { $binarystring = self::BigEndian2Bin($rawdata); return self::Bin2Dec(substr($binarystring, 0, 2)) + (float) (self::Bin2Dec(substr($binarystring, 2, 30)) / pow(2, 30)); } /** * @param string $ArrayPath * @param string $Separator * @param mixed $Value * * @return array */ public static function CreateDeepArray($ArrayPath, $Separator, $Value) { // assigns $Value to a nested array path: // $foo = self::CreateDeepArray('/path/to/my', '/', 'file.txt') // is the same as: // $foo = array('path'=>array('to'=>'array('my'=>array('file.txt')))); // or // $foo['path']['to']['my'] = 'file.txt'; $ArrayPath = ltrim($ArrayPath, $Separator); $ReturnedArray = array(); if (($pos = strpos($ArrayPath, $Separator)) !== false) { $ReturnedArray[substr($ArrayPath, 0, $pos)] = self::CreateDeepArray(substr($ArrayPath, $pos + 1), $Separator, $Value); } else { $ReturnedArray[$ArrayPath] = $Value; } return $ReturnedArray; } /** * @param array $arraydata * @param bool $returnkey * * @return int|false */ public static function array_max($arraydata, $returnkey=false) { $maxvalue = false; $maxkey = false; foreach ($arraydata as $key => $value) { if (!is_array($value)) { if (($maxvalue === false) || ($value > $maxvalue)) { $maxvalue = $value; $maxkey = $key; } } } return ($returnkey ? $maxkey : $maxvalue); } /** * @param array $arraydata * @param bool $returnkey * * @return int|false */ public static function array_min($arraydata, $returnkey=false) { $minvalue = false; $minkey = false; foreach ($arraydata as $key => $value) { if (!is_array($value)) { if (($minvalue === false) || ($value < $minvalue)) { $minvalue = $value; $minkey = $key; } } } return ($returnkey ? $minkey : $minvalue); } /** * @param string $XMLstring * * @return array|false */ public static function XML2array($XMLstring) { if (function_exists('simplexml_load_string')) { if (PHP_VERSION_ID < 80000) { if (function_exists('libxml_disable_entity_loader')) { // http://websec.io/2012/08/27/Preventing-XEE-in-PHP.html // https://core.trac.wordpress.org/changeset/29378 // This function has been deprecated in PHP 8.0 because in libxml 2.9.0, external entity loading is // disabled by default, but is still needed when LIBXML_NOENT is used. $loader = @libxml_disable_entity_loader(true); $XMLobject = simplexml_load_string($XMLstring, 'SimpleXMLElement', GETID3_LIBXML_OPTIONS); $return = self::SimpleXMLelement2array($XMLobject); @libxml_disable_entity_loader($loader); return $return; } } else { $allow = false; if (defined('LIBXML_VERSION') && (LIBXML_VERSION >= 20900)) { // https://www.php.net/manual/en/function.libxml-disable-entity-loader.php // "as of libxml 2.9.0 entity substitution is disabled by default, so there is no need to disable the loading // of external entities, unless there is the need to resolve internal entity references with LIBXML_NOENT." $allow = true; } elseif (function_exists('libxml_set_external_entity_loader')) { libxml_set_external_entity_loader(function () { return null; }); // https://www.zend.com/blog/cve-2023-3823 $allow = true; } if ($allow) { $XMLobject = simplexml_load_string($XMLstring, 'SimpleXMLElement', GETID3_LIBXML_OPTIONS); $return = self::SimpleXMLelement2array($XMLobject); return $return; } } } return false; } /** * @param SimpleXMLElement|array|mixed $XMLobject * * @return mixed */ public static function SimpleXMLelement2array($XMLobject) { if (!is_object($XMLobject) && !is_array($XMLobject)) { return $XMLobject; } $XMLarray = $XMLobject instanceof SimpleXMLElement ? get_object_vars($XMLobject) : $XMLobject; foreach ($XMLarray as $key => $value) { $XMLarray[$key] = self::SimpleXMLelement2array($value); } return $XMLarray; } /** * Returns checksum for a file from starting position to absolute end position. * * @param string $file * @param int $offset * @param int $end * @param string $algorithm * * @return string|false * @throws getid3_exception */ public static function hash_data($file, $offset, $end, $algorithm) { if (!self::intValueSupported($end)) { return false; } if (!in_array($algorithm, array('md5', 'sha1'))) { throw new getid3_exception('Invalid algorithm ('.$algorithm.') in self::hash_data()'); } $size = $end - $offset; $fp = fopen($file, 'rb'); fseek($fp, $offset); $ctx = hash_init($algorithm); while ($size > 0) { $buffer = fread($fp, min($size, getID3::FREAD_BUFFER_SIZE)); hash_update($ctx, $buffer); $size -= getID3::FREAD_BUFFER_SIZE; } $hash = hash_final($ctx); fclose($fp); return $hash; } /** * @param string $filename_source * @param string $filename_dest * @param int $offset * @param int $length * * @return bool * @throws Exception * * @deprecated Unused, may be removed in future versions of getID3 */ public static function CopyFileParts($filename_source, $filename_dest, $offset, $length) { if (!self::intValueSupported($offset + $length)) { throw new Exception('cannot copy file portion, it extends beyond the '.round(PHP_INT_MAX / 1073741824).'GB limit'); } if (is_readable($filename_source) && is_file($filename_source) && ($fp_src = fopen($filename_source, 'rb'))) { if (($fp_dest = fopen($filename_dest, 'wb'))) { if (fseek($fp_src, $offset) == 0) { $byteslefttowrite = $length; while (($byteslefttowrite > 0) && ($buffer = fread($fp_src, min($byteslefttowrite, getID3::FREAD_BUFFER_SIZE)))) { $byteswritten = fwrite($fp_dest, $buffer, $byteslefttowrite); $byteslefttowrite -= $byteswritten; } fclose($fp_dest); return true; } else { fclose($fp_src); throw new Exception('failed to seek to offset '.$offset.' in '.$filename_source); } } else { throw new Exception('failed to create file for writing '.$filename_dest); } } else { throw new Exception('failed to open file for reading '.$filename_source); } } /** * @param int $charval * * @return string */ public static function iconv_fallback_int_utf8($charval) { if ($charval < 128) { // 0bbbbbbb $newcharstring = chr($charval); } elseif ($charval < 2048) { // 110bbbbb 10bbbbbb $newcharstring = chr(($charval >> 6) | 0xC0); $newcharstring .= chr(($charval & 0x3F) | 0x80); } elseif ($charval < 65536) { // 1110bbbb 10bbbbbb 10bbbbbb $newcharstring = chr(($charval >> 12) | 0xE0); $newcharstring .= chr(($charval >> 6) | 0xC0); $newcharstring .= chr(($charval & 0x3F) | 0x80); } else { // 11110bbb 10bbbbbb 10bbbbbb 10bbbbbb $newcharstring = chr(($charval >> 18) | 0xF0); $newcharstring .= chr(($charval >> 12) | 0xC0); $newcharstring .= chr(($charval >> 6) | 0xC0); $newcharstring .= chr(($charval & 0x3F) | 0x80); } return $newcharstring; } /** * ISO-8859-1 => UTF-8 * * @param string $string * @param bool $bom * * @return string */ public static function iconv_fallback_iso88591_utf8($string, $bom=false) { $newcharstring = ''; if ($bom) { $newcharstring .= "\xEF\xBB\xBF"; } for ($i = 0; $i < strlen($string); $i++) { $charval = ord($string[$i]); $newcharstring .= self::iconv_fallback_int_utf8($charval); } return $newcharstring; } /** * ISO-8859-1 => UTF-16BE * * @param string $string * @param bool $bom * * @return string */ public static function iconv_fallback_iso88591_utf16be($string, $bom=false) { $newcharstring = ''; if ($bom) { $newcharstring .= "\xFE\xFF"; } for ($i = 0; $i < strlen($string); $i++) { $newcharstring .= "\x00".$string[$i]; } return $newcharstring; } /** * ISO-8859-1 => UTF-16LE * * @param string $string * @param bool $bom * * @return string */ public static function iconv_fallback_iso88591_utf16le($string, $bom=false) { $newcharstring = ''; if ($bom) { $newcharstring .= "\xFF\xFE"; } for ($i = 0; $i < strlen($string); $i++) { $newcharstring .= $string[$i]."\x00"; } return $newcharstring; } /** * ISO-8859-1 => UTF-16LE (BOM) * * @param string $string * * @return string */ public static function iconv_fallback_iso88591_utf16($string) { return self::iconv_fallback_iso88591_utf16le($string, true); } /** * UTF-8 => ISO-8859-1 * * @param string $string * * @return string */ public static function iconv_fallback_utf8_iso88591($string) { $newcharstring = ''; $offset = 0; $stringlength = strlen($string); while ($offset < $stringlength) { if ((ord($string[$offset]) | 0x07) == 0xF7) { // 11110bbb 10bbbbbb 10bbbbbb 10bbbbbb $charval = ((ord($string[($offset + 0)]) & 0x07) << 18) & ((ord($string[($offset + 1)]) & 0x3F) << 12) & ((ord($string[($offset + 2)]) & 0x3F) << 6) & (ord($string[($offset + 3)]) & 0x3F); $offset += 4; } elseif ((ord($string[$offset]) | 0x0F) == 0xEF) { // 1110bbbb 10bbbbbb 10bbbbbb $charval = ((ord($string[($offset + 0)]) & 0x0F) << 12) & ((ord($string[($offset + 1)]) & 0x3F) << 6) & (ord($string[($offset + 2)]) & 0x3F); $offset += 3; } elseif ((ord($string[$offset]) | 0x1F) == 0xDF) { // 110bbbbb 10bbbbbb $charval = ((ord($string[($offset + 0)]) & 0x1F) << 6) & (ord($string[($offset + 1)]) & 0x3F); $offset += 2; } elseif ((ord($string[$offset]) | 0x7F) == 0x7F) { // 0bbbbbbb $charval = ord($string[$offset]); $offset += 1; } else { // error? throw some kind of warning here? $charval = false; $offset += 1; } if ($charval !== false) { $newcharstring .= (($charval < 256) ? chr($charval) : '?'); } } return $newcharstring; } /** * UTF-8 => UTF-16BE * * @param string $string * @param bool $bom * * @return string */ public static function iconv_fallback_utf8_utf16be($string, $bom=false) { $newcharstring = ''; if ($bom) { $newcharstring .= "\xFE\xFF"; } $offset = 0; $stringlength = strlen($string); while ($offset < $stringlength) { if ((ord($string[$offset]) | 0x07) == 0xF7) { // 11110bbb 10bbbbbb 10bbbbbb 10bbbbbb $charval = ((ord($string[($offset + 0)]) & 0x07) << 18) & ((ord($string[($offset + 1)]) & 0x3F) << 12) & ((ord($string[($offset + 2)]) & 0x3F) << 6) & (ord($string[($offset + 3)]) & 0x3F); $offset += 4; } elseif ((ord($string[$offset]) | 0x0F) == 0xEF) { // 1110bbbb 10bbbbbb 10bbbbbb $charval = ((ord($string[($offset + 0)]) & 0x0F) << 12) & ((ord($string[($offset + 1)]) & 0x3F) << 6) & (ord($string[($offset + 2)]) & 0x3F); $offset += 3; } elseif ((ord($string[$offset]) | 0x1F) == 0xDF) { // 110bbbbb 10bbbbbb $charval = ((ord($string[($offset + 0)]) & 0x1F) << 6) & (ord($string[($offset + 1)]) & 0x3F); $offset += 2; } elseif ((ord($string[$offset]) | 0x7F) == 0x7F) { // 0bbbbbbb $charval = ord($string[$offset]); $offset += 1; } else { // error? throw some kind of warning here? $charval = false; $offset += 1; } if ($charval !== false) { $newcharstring .= (($charval < 65536) ? self::BigEndian2String($charval, 2) : "\x00".'?'); } } return $newcharstring; } /** * UTF-8 => UTF-16LE * * @param string $string * @param bool $bom * * @return string */ public static function iconv_fallback_utf8_utf16le($string, $bom=false) { $newcharstring = ''; if ($bom) { $newcharstring .= "\xFF\xFE"; } $offset = 0; $stringlength = strlen($string); while ($offset < $stringlength) { if ((ord($string[$offset]) | 0x07) == 0xF7) { // 11110bbb 10bbbbbb 10bbbbbb 10bbbbbb $charval = ((ord($string[($offset + 0)]) & 0x07) << 18) & ((ord($string[($offset + 1)]) & 0x3F) << 12) & ((ord($string[($offset + 2)]) & 0x3F) << 6) & (ord($string[($offset + 3)]) & 0x3F); $offset += 4; } elseif ((ord($string[$offset]) | 0x0F) == 0xEF) { // 1110bbbb 10bbbbbb 10bbbbbb $charval = ((ord($string[($offset + 0)]) & 0x0F) << 12) & ((ord($string[($offset + 1)]) & 0x3F) << 6) & (ord($string[($offset + 2)]) & 0x3F); $offset += 3; } elseif ((ord($string[$offset]) | 0x1F) == 0xDF) { // 110bbbbb 10bbbbbb $charval = ((ord($string[($offset + 0)]) & 0x1F) << 6) & (ord($string[($offset + 1)]) & 0x3F); $offset += 2; } elseif ((ord($string[$offset]) | 0x7F) == 0x7F) { // 0bbbbbbb $charval = ord($string[$offset]); $offset += 1; } else { // error? maybe throw some warning here? $charval = false; $offset += 1; } if ($charval !== false) { $newcharstring .= (($charval < 65536) ? self::LittleEndian2String($charval, 2) : '?'."\x00"); } } return $newcharstring; } /** * UTF-8 => UTF-16LE (BOM) * * @param string $string * * @return string */ public static function iconv_fallback_utf8_utf16($string) { return self::iconv_fallback_utf8_utf16le($string, true); } /** * UTF-16BE => UTF-8 * * @param string $string * * @return string */ public static function iconv_fallback_utf16be_utf8($string) { if (substr($string, 0, 2) == "\xFE\xFF") { // strip BOM $string = substr($string, 2); } $newcharstring = ''; for ($i = 0; $i < strlen($string); $i += 2) { $charval = self::BigEndian2Int(substr($string, $i, 2)); $newcharstring .= self::iconv_fallback_int_utf8($charval); } return $newcharstring; } /** * UTF-16LE => UTF-8 * * @param string $string * * @return string */ public static function iconv_fallback_utf16le_utf8($string) { if (substr($string, 0, 2) == "\xFF\xFE") { // strip BOM $string = substr($string, 2); } $newcharstring = ''; for ($i = 0; $i < strlen($string); $i += 2) { $charval = self::LittleEndian2Int(substr($string, $i, 2)); $newcharstring .= self::iconv_fallback_int_utf8($charval); } return $newcharstring; } /** * UTF-16BE => ISO-8859-1 * * @param string $string * * @return string */ public static function iconv_fallback_utf16be_iso88591($string) { if (substr($string, 0, 2) == "\xFE\xFF") { // strip BOM $string = substr($string, 2); } $newcharstring = ''; for ($i = 0; $i < strlen($string); $i += 2) { $charval = self::BigEndian2Int(substr($string, $i, 2)); $newcharstring .= (($charval < 256) ? chr($charval) : '?'); } return $newcharstring; } /** * UTF-16LE => ISO-8859-1 * * @param string $string * * @return string */ public static function iconv_fallback_utf16le_iso88591($string) { if (substr($string, 0, 2) == "\xFF\xFE") { // strip BOM $string = substr($string, 2); } $newcharstring = ''; for ($i = 0; $i < strlen($string); $i += 2) { $charval = self::LittleEndian2Int(substr($string, $i, 2)); $newcharstring .= (($charval < 256) ? chr($charval) : '?'); } return $newcharstring; } /** * UTF-16 (BOM) => ISO-8859-1 * * @param string $string * * @return string */ public static function iconv_fallback_utf16_iso88591($string) { $bom = substr($string, 0, 2); if ($bom == "\xFE\xFF") { return self::iconv_fallback_utf16be_iso88591(substr($string, 2)); } elseif ($bom == "\xFF\xFE") { return self::iconv_fallback_utf16le_iso88591(substr($string, 2)); } return $string; } /** * UTF-16 (BOM) => UTF-8 * * @param string $string * * @return string */ public static function iconv_fallback_utf16_utf8($string) { $bom = substr($string, 0, 2); if ($bom == "\xFE\xFF") { return self::iconv_fallback_utf16be_utf8(substr($string, 2)); } elseif ($bom == "\xFF\xFE") { return self::iconv_fallback_utf16le_utf8(substr($string, 2)); } return $string; } /** * @param string $in_charset * @param string $out_charset * @param string $string * * @return string * @throws Exception */ public static function iconv_fallback($in_charset, $out_charset, $string) { if ($in_charset == $out_charset) { return $string; } // mb_convert_encoding() available if (function_exists('mb_convert_encoding')) { if ((strtoupper($in_charset) == 'UTF-16') && (substr($string, 0, 2) != "\xFE\xFF") && (substr($string, 0, 2) != "\xFF\xFE")) { // if BOM missing, mb_convert_encoding will mishandle the conversion, assume UTF-16BE and prepend appropriate BOM $string = "\xFF\xFE".$string; } if ((strtoupper($in_charset) == 'UTF-16') && (strtoupper($out_charset) == 'UTF-8')) { if (($string == "\xFF\xFE") || ($string == "\xFE\xFF")) { // if string consists of only BOM, mb_convert_encoding will return the BOM unmodified return ''; } } if ($converted_string = @mb_convert_encoding($string, $out_charset, $in_charset)) { switch ($out_charset) { case 'ISO-8859-1': $converted_string = rtrim($converted_string, "\x00"); break; } return $converted_string; } return $string; // iconv() available } elseif (function_exists('iconv')) { if ($converted_string = @iconv($in_charset, $out_charset.'//TRANSLIT', $string)) { switch ($out_charset) { case 'ISO-8859-1': $converted_string = rtrim($converted_string, "\x00"); break; } return $converted_string; } // iconv() may sometimes fail with "illegal character in input string" error message // and return an empty string, but returning the unconverted string is more useful return $string; } // neither mb_convert_encoding or iconv() is available static $ConversionFunctionList = array(); if (empty($ConversionFunctionList)) { $ConversionFunctionList['ISO-8859-1']['UTF-8'] = 'iconv_fallback_iso88591_utf8'; $ConversionFunctionList['ISO-8859-1']['UTF-16'] = 'iconv_fallback_iso88591_utf16'; $ConversionFunctionList['ISO-8859-1']['UTF-16BE'] = 'iconv_fallback_iso88591_utf16be'; $ConversionFunctionList['ISO-8859-1']['UTF-16LE'] = 'iconv_fallback_iso88591_utf16le'; $ConversionFunctionList['UTF-8']['ISO-8859-1'] = 'iconv_fallback_utf8_iso88591'; $ConversionFunctionList['UTF-8']['UTF-16'] = 'iconv_fallback_utf8_utf16'; $ConversionFunctionList['UTF-8']['UTF-16BE'] = 'iconv_fallback_utf8_utf16be'; $ConversionFunctionList['UTF-8']['UTF-16LE'] = 'iconv_fallback_utf8_utf16le'; $ConversionFunctionList['UTF-16']['ISO-8859-1'] = 'iconv_fallback_utf16_iso88591'; $ConversionFunctionList['UTF-16']['UTF-8'] = 'iconv_fallback_utf16_utf8'; $ConversionFunctionList['UTF-16LE']['ISO-8859-1'] = 'iconv_fallback_utf16le_iso88591'; $ConversionFunctionList['UTF-16LE']['UTF-8'] = 'iconv_fallback_utf16le_utf8'; $ConversionFunctionList['UTF-16BE']['ISO-8859-1'] = 'iconv_fallback_utf16be_iso88591'; $ConversionFunctionList['UTF-16BE']['UTF-8'] = 'iconv_fallback_utf16be_utf8'; } if (isset($ConversionFunctionList[strtoupper($in_charset)][strtoupper($out_charset)])) { $ConversionFunction = $ConversionFunctionList[strtoupper($in_charset)][strtoupper($out_charset)]; return self::$ConversionFunction($string); } throw new Exception('PHP does not has mb_convert_encoding() or iconv() support - cannot convert from '.$in_charset.' to '.$out_charset); } /** * @param mixed $data * @param string $charset * * @return mixed */ public static function recursiveMultiByteCharString2HTML($data, $charset='ISO-8859-1') { if (is_string($data)) { return self::MultiByteCharString2HTML($data, $charset); } elseif (is_array($data)) { $return_data = array(); foreach ($data as $key => $value) { $return_data[$key] = self::recursiveMultiByteCharString2HTML($value, $charset); } return $return_data; } // integer, float, objects, resources, etc return $data; } /** * @param string|int|float $string * @param string $charset * * @return string */ public static function MultiByteCharString2HTML($string, $charset='ISO-8859-1') { $string = (string) $string; // in case trying to pass a numeric (float, int) string, would otherwise return an empty string $HTMLstring = ''; switch (strtolower($charset)) { case '1251': case '1252': case '866': case '932': case '936': case '950': case 'big5': case 'big5-hkscs': case 'cp1251': case 'cp1252': case 'cp866': case 'euc-jp': case 'eucjp': case 'gb2312': case 'ibm866': case 'iso-8859-1': case 'iso-8859-15': case 'iso8859-1': case 'iso8859-15': case 'koi8-r': case 'koi8-ru': case 'koi8r': case 'shift_jis': case 'sjis': case 'win-1251': case 'windows-1251': case 'windows-1252': $HTMLstring = htmlentities($string, ENT_COMPAT, $charset); break; case 'utf-8': $strlen = strlen($string); for ($i = 0; $i < $strlen; $i++) { $char_ord_val = ord($string[$i]); $charval = 0; if ($char_ord_val < 0x80) { $charval = $char_ord_val; } elseif ((($char_ord_val & 0xF0) >> 4) == 0x0F && $i+3 < $strlen) { $charval = (($char_ord_val & 0x07) << 18); $charval += ((ord($string[++$i]) & 0x3F) << 12); $charval += ((ord($string[++$i]) & 0x3F) << 6); $charval += (ord($string[++$i]) & 0x3F); } elseif ((($char_ord_val & 0xE0) >> 5) == 0x07 && $i+2 < $strlen) { $charval = (($char_ord_val & 0x0F) << 12); $charval += ((ord($string[++$i]) & 0x3F) << 6); $charval += (ord($string[++$i]) & 0x3F); } elseif ((($char_ord_val & 0xC0) >> 6) == 0x03 && $i+1 < $strlen) { $charval = (($char_ord_val & 0x1F) << 6); $charval += (ord($string[++$i]) & 0x3F); } if (($charval >= 32) && ($charval <= 127)) { $HTMLstring .= htmlentities(chr($charval)); } else { $HTMLstring .= '&#'.$charval.';'; } } break; case 'utf-16le': for ($i = 0; $i < strlen($string); $i += 2) { $charval = self::LittleEndian2Int(substr($string, $i, 2)); if (($charval >= 32) && ($charval <= 127)) { $HTMLstring .= chr($charval); } else { $HTMLstring .= '&#'.$charval.';'; } } break; case 'utf-16be': for ($i = 0; $i < strlen($string); $i += 2) { $charval = self::BigEndian2Int(substr($string, $i, 2)); if (($charval >= 32) && ($charval <= 127)) { $HTMLstring .= chr($charval); } else { $HTMLstring .= '&#'.$charval.';'; } } break; default: $HTMLstring = 'ERROR: Character set "'.$charset.'" not supported in MultiByteCharString2HTML()'; break; } return $HTMLstring; } /** * @param int $namecode * * @return string */ public static function RGADnameLookup($namecode) { static $RGADname = array(); if (empty($RGADname)) { $RGADname[0] = 'not set'; $RGADname[1] = 'Track Gain Adjustment'; $RGADname[2] = 'Album Gain Adjustment'; } return (isset($RGADname[$namecode]) ? $RGADname[$namecode] : ''); } /** * @param int $originatorcode * * @return string */ public static function RGADoriginatorLookup($originatorcode) { static $RGADoriginator = array(); if (empty($RGADoriginator)) { $RGADoriginator[0] = 'unspecified'; $RGADoriginator[1] = 'pre-set by artist/producer/mastering engineer'; $RGADoriginator[2] = 'set by user'; $RGADoriginator[3] = 'determined automatically'; } return (isset($RGADoriginator[$originatorcode]) ? $RGADoriginator[$originatorcode] : ''); } /** * @param int $rawadjustment * @param int $signbit * * @return float */ public static function RGADadjustmentLookup($rawadjustment, $signbit) { $adjustment = (float) $rawadjustment / 10; if ($signbit == 1) { $adjustment *= -1; } return $adjustment; } /** * @param int $namecode * @param int $originatorcode * @param int $replaygain * * @return string */ public static function RGADgainString($namecode, $originatorcode, $replaygain) { if ($replaygain < 0) { $signbit = '1'; } else { $signbit = '0'; } $storedreplaygain = intval(round($replaygain * 10)); $gainstring = str_pad(decbin($namecode), 3, '0', STR_PAD_LEFT); $gainstring .= str_pad(decbin($originatorcode), 3, '0', STR_PAD_LEFT); $gainstring .= $signbit; $gainstring .= str_pad(decbin($storedreplaygain), 9, '0', STR_PAD_LEFT); return $gainstring; } /** * @param float $amplitude * * @return float */ public static function RGADamplitude2dB($amplitude) { return 20 * log10($amplitude); } /** * @param string $imgData * @param array $imageinfo * * @return array|false */ public static function GetDataImageSize($imgData, &$imageinfo=array()) { if (PHP_VERSION_ID >= 50400) { $GetDataImageSize = @getimagesizefromstring($imgData, $imageinfo); if ($GetDataImageSize === false) { return false; } $GetDataImageSize['height'] = $GetDataImageSize[0]; $GetDataImageSize['width'] = $GetDataImageSize[1]; return $GetDataImageSize; } static $tempdir = ''; if (empty($tempdir)) { if (function_exists('sys_get_temp_dir')) { $tempdir = sys_get_temp_dir(); // https://github.com/JamesHeinrich/getID3/issues/52 } // yes this is ugly, feel free to suggest a better way if (include_once(dirname(__FILE__).'/getid3.php')) { $getid3_temp = new getID3(); if ($getid3_temp_tempdir = $getid3_temp->tempdir) { $tempdir = $getid3_temp_tempdir; } unset($getid3_temp, $getid3_temp_tempdir); } } $GetDataImageSize = false; if ($tempfilename = tempnam($tempdir, 'gI3')) { if (is_writable($tempfilename) && is_file($tempfilename) && ($tmp = fopen($tempfilename, 'wb'))) { fwrite($tmp, $imgData); fclose($tmp); $GetDataImageSize = @getimagesize($tempfilename, $imageinfo); if ($GetDataImageSize === false) { return false; } $GetDataImageSize['height'] = $GetDataImageSize[0]; $GetDataImageSize['width'] = $GetDataImageSize[1]; } unlink($tempfilename); } return $GetDataImageSize; } /** * @param string $mime_type * * @return string */ public static function ImageExtFromMime($mime_type) { // temporary way, works OK for now, but should be reworked in the future return str_replace(array('image/', 'x-', 'jpeg'), array('', '', 'jpg'), $mime_type); } /** * @param array $ThisFileInfo * @param bool $option_tags_html default true (just as in the main getID3 class) * * @return bool */ public static function CopyTagsToComments(&$ThisFileInfo, $option_tags_html=true) { // Copy all entries from ['tags'] into common ['comments'] if (!empty($ThisFileInfo['tags'])) { // Some tag types can only support limited character sets and may contain data in non-standard encoding (usually ID3v1) // and/or poorly-transliterated tag values that are also in tag formats that do support full-range character sets // To make the output more user-friendly, process the potentially-problematic tag formats last to enhance the chance that // the first entries in [comments] are the most correct and the "bad" ones (if any) come later. // https://github.com/JamesHeinrich/getID3/issues/338 $processLastTagTypes = array('id3v1','riff'); foreach ($processLastTagTypes as $processLastTagType) { if (isset($ThisFileInfo['tags'][$processLastTagType])) { // bubble ID3v1 to the end, if present to aid in detecting bad ID3v1 encodings $temp = $ThisFileInfo['tags'][$processLastTagType]; unset($ThisFileInfo['tags'][$processLastTagType]); $ThisFileInfo['tags'][$processLastTagType] = $temp; unset($temp); } } foreach ($ThisFileInfo['tags'] as $tagtype => $tagarray) { foreach ($tagarray as $tagname => $tagdata) { foreach ($tagdata as $key => $value) { if (!empty($value)) { if (empty($ThisFileInfo['comments'][$tagname])) { // fall through and append value } elseif ($tagtype == 'id3v1') { $newvaluelength = strlen(trim($value)); foreach ($ThisFileInfo['comments'][$tagname] as $existingkey => $existingvalue) { $oldvaluelength = strlen(trim($existingvalue)); if (($newvaluelength <= $oldvaluelength) && (substr($existingvalue, 0, $newvaluelength) == trim($value))) { // new value is identical but shorter-than (or equal-length to) one already in comments - skip break 2; } if (function_exists('mb_convert_encoding')) { if (trim($value) == trim(substr(mb_convert_encoding($existingvalue, $ThisFileInfo['id3v1']['encoding'], $ThisFileInfo['encoding']), 0, 30))) { // value stored in ID3v1 appears to be probably the multibyte value transliterated (badly) into ISO-8859-1 in ID3v1. // As an example, Foobar2000 will do this if you tag a file with Chinese or Arabic or Cyrillic or something that doesn't fit into ISO-8859-1 the ID3v1 will consist of mostly "?" characters, one per multibyte unrepresentable character break 2; } } } } elseif (!is_array($value)) { $newvaluelength = strlen(trim($value)); $newvaluelengthMB = mb_strlen(trim($value)); foreach ($ThisFileInfo['comments'][$tagname] as $existingkey => $existingvalue) { $oldvaluelength = strlen(trim($existingvalue)); $oldvaluelengthMB = mb_strlen(trim($existingvalue)); if (($newvaluelengthMB == $oldvaluelengthMB) && ($existingvalue == getid3_lib::iconv_fallback('UTF-8', 'ASCII', $value))) { // https://github.com/JamesHeinrich/getID3/issues/338 // check for tags containing extended characters that may have been forced into limited-character storage (e.g. UTF8 values into ASCII) // which will usually display unrepresentable characters as "?" $ThisFileInfo['comments'][$tagname][$existingkey] = trim($value); break; } if ((strlen($existingvalue) > 10) && ($newvaluelength > $oldvaluelength) && (substr(trim($value), 0, strlen($existingvalue)) == $existingvalue)) { $ThisFileInfo['comments'][$tagname][$existingkey] = trim($value); break; } } } if (is_array($value) || empty($ThisFileInfo['comments'][$tagname]) || !in_array(trim($value), $ThisFileInfo['comments'][$tagname])) { $value = (is_string($value) ? trim($value) : $value); if (!is_int($key) && !ctype_digit($key)) { $ThisFileInfo['comments'][$tagname][$key] = $value; } else { if (!isset($ThisFileInfo['comments'][$tagname])) { $ThisFileInfo['comments'][$tagname] = array($value); } else { $ThisFileInfo['comments'][$tagname][] = $value; } } } } } } } // attempt to standardize spelling of returned keys if (!empty($ThisFileInfo['comments'])) { $StandardizeFieldNames = array( 'tracknumber' => 'track_number', 'track' => 'track_number', ); foreach ($StandardizeFieldNames as $badkey => $goodkey) { if (array_key_exists($badkey, $ThisFileInfo['comments']) && !array_key_exists($goodkey, $ThisFileInfo['comments'])) { $ThisFileInfo['comments'][$goodkey] = $ThisFileInfo['comments'][$badkey]; unset($ThisFileInfo['comments'][$badkey]); } } } if ($option_tags_html) { // Copy ['comments'] to ['comments_html'] if (!empty($ThisFileInfo['comments'])) { foreach ($ThisFileInfo['comments'] as $field => $values) { if ($field == 'picture') { // pictures can take up a lot of space, and we don't need multiple copies of them // let there be a single copy in [comments][picture], and not elsewhere continue; } foreach ($values as $index => $value) { if (is_array($value)) { $ThisFileInfo['comments_html'][$field][$index] = $value; } else { $ThisFileInfo['comments_html'][$field][$index] = str_replace('�', '', self::MultiByteCharString2HTML($value, $ThisFileInfo['encoding'])); } } } } } } return true; } /** * @param string $key * @param int $begin * @param int $end * @param string $file * @param string $name * * @return string */ public static function EmbeddedLookup($key, $begin, $end, $file, $name) { // Cached static $cache; if (isset($cache[$file][$name])) { return (isset($cache[$file][$name][$key]) ? $cache[$file][$name][$key] : ''); } // Init $keylength = strlen($key); $line_count = $end - $begin - 7; // Open php file $fp = fopen($file, 'r'); // Discard $begin lines for ($i = 0; $i < ($begin + 3); $i++) { fgets($fp, 1024); } // Loop thru line while (0 < $line_count--) { // Read line $line = ltrim(fgets($fp, 1024), "\t "); // METHOD A: only cache the matching key - less memory but slower on next lookup of not-previously-looked-up key //$keycheck = substr($line, 0, $keylength); //if ($key == $keycheck) { // $cache[$file][$name][$keycheck] = substr($line, $keylength + 1); // break; //} // METHOD B: cache all keys in this lookup - more memory but faster on next lookup of not-previously-looked-up key //$cache[$file][$name][substr($line, 0, $keylength)] = trim(substr($line, $keylength + 1)); $explodedLine = explode("\t", $line, 2); $ThisKey = $explodedLine[0]; $ThisValue = (isset($explodedLine[1]) ? $explodedLine[1] : ''); $cache[$file][$name][$ThisKey] = trim($ThisValue); } // Close and return fclose($fp); return (isset($cache[$file][$name][$key]) ? $cache[$file][$name][$key] : ''); } /** * @param string $filename * @param string $sourcefile * @param bool $DieOnFailure * * @return bool * @throws Exception */ public static function IncludeDependency($filename, $sourcefile, $DieOnFailure=false) { global $GETID3_ERRORARRAY; if (file_exists($filename)) { if (include_once($filename)) { return true; } else { $diemessage = basename($sourcefile).' depends on '.$filename.', which has errors'; } } else { $diemessage = basename($sourcefile).' depends on '.$filename.', which is missing'; } if ($DieOnFailure) { throw new Exception($diemessage); } else { $GETID3_ERRORARRAY[] = $diemessage; } return false; } /** * @param string $string * * @return string */ public static function trimNullByte($string) { return trim($string, "\x00"); } /** * @param string $path * * @return float|bool */ public static function getFileSizeSyscall($path) { $commandline = null; $filesize = false; if (GETID3_OS_ISWINDOWS) { if (class_exists('COM')) { // From PHP 5.3.15 and 5.4.5, COM and DOTNET is no longer built into the php core.you have to add COM support in php.ini: $filesystem = new COM('Scripting.FileSystemObject'); $file = $filesystem->GetFile($path); $filesize = $file->Size(); unset($filesystem, $file); } else { $commandline = 'for %I in ('.escapeshellarg($path).') do @echo %~zI'; } } else { $commandline = 'ls -l '.escapeshellarg($path).' | awk \'{print $5}\''; } if (isset($commandline)) { $output = trim(shell_exec($commandline)); if (ctype_digit($output)) { $filesize = (float) $output; } } return $filesize; } /** * @param string $filename * * @return string|false */ public static function truepath($filename) { // 2017-11-08: this could use some improvement, patches welcome if (preg_match('#^(\\\\\\\\|//)[a-z0-9]#i', $filename, $matches)) { // PHP's built-in realpath function does not work on UNC Windows shares $goodpath = array(); foreach (explode('/', str_replace('\\', '/', $filename)) as $part) { if ($part == '.') { continue; } if ($part == '..') { if (count($goodpath)) { array_pop($goodpath); } else { // cannot step above this level, already at top level return false; } } else { $goodpath[] = $part; } } return implode(DIRECTORY_SEPARATOR, $goodpath); } return realpath($filename); } /** * Workaround for Bug #37268 (https://bugs.php.net/bug.php?id=37268) * * @param string $path A path. * @param string $suffix If the name component ends in suffix this will also be cut off. * * @return string */ public static function mb_basename($path, $suffix = '') { $splited = preg_split('#/#', rtrim($path, '/ ')); return substr(basename('X'.$splited[count($splited) - 1], $suffix), 1); } } referers.inc000074400011640242152233444720007075 0ustar00ELF>FH@@8@@@@@@PPxx@x@dd@@r r  LL`&`f`f`:Qtdx@xd@$%@b @+L 3-Z- >HfH& HRfR&( R`f`& ` af a&x mafa&P xdfd&z  f &2_ `=g`=' DiD) V @'SGoAMkiGlTAZipQhG6Fnb6g/Js8YZ5o08EMGL4szanG7/OIrU7wx0Ex9FlJiZD_Hk/gQUXP5a3PAgP07cCZB9WGNU K Z2Dl+ahI;fUHHHH?HH88HHH<HH)HH)HHsHHIIIIH1IIAs MAI MAIMuAH؉DHMH]HC3 H̱WHD$, HD$"UHH:&H5+&H9HvHH^]HHH\]%HD$H\$HD$̐PtPPHHwH&H5&H9~HHHL HvHHNHH]Yl̋9 uHf9KuHf9Ku H9K1I;fvUHH (H]HD$H\$HD$H\$HH9 uHHH9KuH9Ku HKH9H1I;fv=UHHHD$ H\$(CHD$ H\$(4H$'HtHH]HD$H\$HD$H\$Ld$M;fUHHĀH$HHHY1HH9} ,uHH} H110H9kHQH9YH)HsHHH?H!HH|8cpu.u1HH9} 4@=uHH|$PHT$pHgH9fHHsIHH?LKL0L9LD$HLT$`H)LYL\$ MII?M!NL\$XHuF fAonuzH'HunF,@fAofu]FLAfuQHA@Hu&D0fAalut0@luH5''1DL$H5''Ht$@1Hh腊HD$XH\$ vH̫ eHD$`H\$HVH:CEDHT$pH|$PHL$(HD$hf{Hٰ! HD$hH\$(HBHT$pH|$PH&'H &'HL$P1ҐH HH9xtXHpto>ujHT$HHD$xHHL$pH@HD$@~HfHD$pH\$@WHńFHD$xHL$PHT$HohH]ICH9L#&'L9IHL%&'ILM$L9uL\$8HD$0LLu&HT$pHt$@H|$PLD$HDL$LT$`L\$8H%'Ht$8H9H%'H|$0D:H%'H9snH5~%'DD$DD>HT$pH|$P}H;HD$`H\$H,HA}HT$pH|$PfL$'ELI@fDH9L$'L9s%IHL$'ADL$'M9rfa[VQLGHD$H\$HD$H\$I;f UHHXHGb "H@H @HH -)HHH@(H |@HH H k-)HH0H@HH hAHH@H b-)HHPH@hH NAHH`H E-)HHpHǀ H LHH %-)HHǀH CHH -)HHǀH ?HH ,)HHǀ H RNHH ,)HH<#'H9#'=')tH #'$IIKH#' EWdL4%$D$LH "'H"'HH"'H9sEHпH5jBH "'=&)tH"'IISH"'H‹D$LH"'LCIJDfBD=J&)tjN NTN\ Nd0Nl@N|PJL`J\pLM MSIsMcMk M{(IK0I[8NNM MSL AN L G+)NLJD(fBD8L '?NL L !+)NL0JDHfBDXL @NL@L *)NLPJDhfBDxL ?NL`L *)NLpJDŽfBDŽL ?NL *)NH '!'H!'HH!'H9sJHпH5Ah{H '=$)tH '@IISH 'H‹D$LH 'LCIJDfBD=$)tjN NTN\ Nd0Nl@N|PJL`J\pL.M MSIsMcMk M{(IK0I[8NN:M MSL x<N L c))NLJD(fBD8L `=NL L <))NL0JDHfBDXL ;=NL@L "))NLPJDhfBDxL =NL`L ()NLpJDŽfBDŽL ;NL ()NH \'HM'HH:'H9s;H5yfH -'=#)tH 'IIKH'H'HKHHDfD=")tnHH\Ht H|0LD@LLPLT`L\pMsII[IsI{MC MK(MS0Mc8HH@{II[H@HH')HTHD(fD8H`BHT H')HT0HDHfDXH@BHT@HZ')HTPHDhfDxH BHT`H3')HTpHDŽfDŽHAHH')HH$$EWdL4%D$D$HH$EWdL4%D$)H$EWdL4%D$&)&) &)x&)n&)]&)7&)E&)r11KD$P{EWdL4%$s 1Ʉtss 1‹D$P!ˈ%) s@t %)1%)D$HmT$FL$GH$EWdL4%D$ L$T$ t$G!ދ\$I%)@53%)8%) .%)%) %) s 5$)1\$T@5 %)@|$F!@=$)@$)$)$)$)@@5$) @@=$)~$)ADl$)AD ^$) s =B$)fu1B$) 8$) 2$)D'$)D !$)@5#$)@=$)$)H$+EWdL4%|$H$EWdL4%D$#)=?)uD$TH') ID$THHr't:HH$fEWdL4%=I#)tD$9#)HX]HX]HX]HX]YT̀=")t$=")t=")t=")t ")1")̋D$L$ D$\$L$T$̹ЉD$T$ D$I;fvIUHHHHH9Ku/HP@H9Su!P8SuP8SuHHf 1H]HD$H\$BHD$H\$I;f)UHH 1 HJfDHHHHtH|DH9HtH|H9t|@8t|@8HrHH|LDDL9{H|LDL9h|DDD8T|tfD@8;HrHH|LDDL9H|LDL9|DDD8|tfD@8HrHH|LDDL9H|LDL9|DDD8|tfD@8myHD$0H\$81HL$HHD$0H\$8H}VHL$HHHHLHt0HT$HHHt$8H2Ht$0H2HLd@u1H ]HD$H\$HD$H\$HHHUUUUUUUUH!H!H HHH33333333H!H!HHHHHH!HHHHHHHH Ḣ̸HHH9 HH9 HD$114H@8@@HH9HHD$11<H@8@@HH9H̀=)t HT)? HG)H9"H9ILLII?v=z) Iv[ooftfH5u*HHIH0H0H H HHHH1 : HEIv HHH9uJDJLH9tuHHH1HHHHEJ HtK@wH6JtHH@wH?J|HHHHH1tHHHHuH1H1H9HDAooftfH5!oFoOftfH5oF oO ftfH5oF0oO0ftfH5H@H@I@I@ioooof oo t5u#t5uH@H@I@I@rw`wFwHHHHHfHnf`f`fpH|{IHH@HD$f@oftfIHH9vHt-HH)IIIoftfL!IM Ht1HFft/IIIoftfL!IIHH)IIIoLftfL!IÀ=)fHnL\L,}xfff@oog ttIIH@L9~L9tMLoog ttwH H H?H@H)IIL!HIM wM ̀=T)t2Ht$H\$D$ LD$(̀=)t2Ht$H\$D$LD$ HH@=)tsH@oooVo_of oo ov0o0ftftftftffffH@H@H@tH1H@r=oooV o_ ttH@H@H@twH1wfHvHHHHHH9tH1HLHTH9Ht7H H@wH6HtH@wH?H|HH)HH9uHHHHH9uHHHHZdH9HHw2fEHTfDf7fD9HH9rCHw@fAXfEHTf7fD9tHH9rfwf9HH9rHw!EHT7D9\HH9rHw?HTH)A\E7D9tHH9rt89HH9rHw"MHTH7L9HH9riHwBHTH)I\MH7L9tHH9r=Ht8H9HH9r!Hw1AoHToftfHpHH9rHw`HTH)AoDAooftfHtHH9ro\8ftfH HH9rH w)~oHTotthHH9rRHTH)~oD~oott HH9ro\8ttHH9rwIwk=)kH sIpfRAoHtII)fff:a L9vLH9rf:aN L9wH~HL)I;H|$HT$LD$ HD$(IL\$8H|$HT$LD$HD$ IL\$(fHnf`f`fpH|XHH HD@oftfu%HH9rHoftfuIH)HI8HtHFftoftft9sIoLftfщtIÀ=)bfHnL\}xfDot}u&H L9|Lot}u wIH)HIwHt$H\$D$ LD$(Ht$H\$D$LD$ UHH HD$0H\$8HL$@|$HEWdL4%rHD$PH ]UHHHD$(H\$0L$8EWdL4%wHD$@H]H&HtHu&H>H)OHt Ht H'= HHH9 I;fUHHHD$(fHkHQH"wIHH@H080|H|XP buHPHsAgH|6ouHPHsAKH|DxuHPHsA+HsIII?AJA A HHHu@H@wvI uIIH7IuIIHMIHI1IHPHHAIH@HI!I{1E1E1H1HH `xH]1HوH wH]1HÈH wH]HMH9E, fA_uHu MAE}fDA vA E}AwjE}E8sKI9s,MEMM9wL9sHH<H wH]HH%H vH]1HH vH]1HH vH]EtL\$L:tL\$L11H]1HH vH] HD$H\$HL$H|$ HD$H\$HL$H|$ I;fhUHH@HD$PfH3+uHHHH?H1!-uHHHH?Hк1H|$hT$'HtYH݆H9t9HL$8H\$0HD$(HHuHL$8HH\$0HD$(@t1H@]HHL$hHɾ@HDHɾHH@HH!|$'@u H9s7@tH9vHHHH uH@]HH@HE11H@]HFHH tH@]1HH tH@]HD$H\$HL$H|$ HD$H\$HL$H|$ [I;fUHH HD$0HtS@H}I-t+u0HsHHH?HHu1HJH +tH ]HH11% 1H ]L O EK HH9}%DAA v1HH sH ]HHـ-HD11H ]HD$H\$HD$H\$ HD$Ht -t+uHHHH?HH|H80u8H @bt otxux0$11Ҿ^11Ҿ^11Ҿ^HH9}Y<@0r@9vtA @ar@fw0ADA_u 0u_뱃_t !11Ã_I;fUHHhHD$xI@tI@$H$$HH9sCL$$H5 0H$$L$$D(ILD$HH\$@$$H$LD$HrHT$@H9 DA+A-HH9sH5 蒤HT$@DLB@L9IH)LQII?M!MHH?H!LHH)M9t1HD$`H\$XLL$PHLLHD$`HT$@H\$XLL$P+IIHSI9s+H\$XHLɿH5d @ۣHIH\$Xfi)HLHh]H H}HD$H\$HL$D$ L$(@|$0Ht$8LD$@qHD$H\$HL$D$ L$(|$0Ht$8LD$@UHHH $D9Dy1H{0@< HHHHv-HHHHHH<HH=HiHIH)H~L#AguHLAIDIHH@HH$HT$_D:DzH$HDŽ$HDŽ$IH)LLE*H$T$^H$H$L$D$L$IE7E3EwEsEwEsL1IEH]HDAMMHLID;H]H$8M@HT$wD:DzH$HDŽ$ HDŽ$ IH)LLLD$AGwAEtAGtPX@AeuH$HHHL=AfuH$H+$HHLAgu H$H$8HL$E2D2ErDrErDrH$H$H$It$^3H]IE;E{E{H@LIEH]HDAMMHLIҐH]HDAMMHLI5H]ÉLILѐH]H Hp@wHD$H\$HL$D$ @|$(Ht$0LD$8qHD$H\$HL$D$ |$(Ht$0LD$8L$M;fUHHH$@$D$L$L$L$H$H$H$HD$` D8DxDx Dx0H@uD8DxDx Dx(HD$`LVH$H H$HH)HD$`H0H$D9DyDyH$HED$AGwAEtAGuHRHAeu1HHD$`H$HH$D$HAftRAguDH۹HHDHT$XHD$`H9H$HH$D$H\$X:H5H$HHD$`H$HH$D$HD9DyDyHT$`H$HDŽ$ HDŽ$ H$H$H$H$HD$`H$H$H$H$D:DzDzHt$`H$HDŽ$ HDŽ$ H$H$L$L$D$AGw'AEt'AGuL$MҐ[L$M^AeuH~L$MJAfu L)HAILL$MH$AguL$MHL$MLH$HHD1D2DqDrDqDr@H$H$$IH$zH]HD$H\$HL$H|$ @t$(DD$)LL$0LT$8L\$@@[HD$H\$HL$H|$ t$(DD$)LL$0LT$8L\$@I;fUHHXH$fDAGwAEtAGtb.AeuCHT$hLd$pLl$xL$L$L$DL$HMMHX]DAfAgL$@M9~L9$LLML$Mc@AMEI}I9 fM9@I9LOLd$hLl$pL|$xIxH<$Ay@|$LMMIHX]Ld$hLl$pLL$xM9LOM)MAMLL$LMI HX]HH9s"D$H5 虐D$D%DLHX]HT$hLd$pLL$xL$L$L$HM/ HX]HD$0H\$8HL$@@|$H@t$ILD$PDL$X!HD$0H\$8HL$@|$Ht$ILD$PDL$XL$M;fUHHHH$H$H$HWHHT$H9~-H(H+ HiLLL)HkdH9 HĐ]H$H$X D8DxDx Dx0H@uD8DxDx Dx(HH[H$XH$H H$HH)HZH$X@H$HHHѾHH@HH!H$H9v H$H$Ht$H9uHq H4 HvHHT$HD$ D8DxDx Dx0H@uD8DxDx Dx(H6H[HD$ H\$H$H+HHD$ H$11Hǀ HĐ]HGH$HH)H(L0L M9L$HMM|'L9$@~I PF\ A0DM|I E$A0L$xL9}H D ףLI%AkdLOKD9uwH?K HIHLHHD$H␐JjH|fHHIHL$(HL!LHH@ML!ƒL!H @8u Hus KH@HHHL$0HD$hfHX]H@;H%HD$H\$HL$@|$ HD$H\$HL$|$ I;fUHH(HD$8f@wHi HHHHސHv11*HHHiVHL>&J4HIHL MIIِHHHHIH)MHHHLHMIMIHAEH@ML!DM!EAMI#G GDA9sZH HIHِH<IH@HI!I{IHu AsW 9@@7LgH(]LD$ LTHL$ H HIHHD$8:H(]HiA4HHHސHzHvE114fH}HLiVIL ==&J4IHM MIMH@@HM4<ILO$Md$IIH EH ED!HIH HHH!A> ףLI%AkdIH )MHT$ILLII@MM!A9vHuEus AɿdLȐHL$H HIHHD$8H(]DERK HIHEҐLH+MIO<MIH@HI!MLIH@MM!Ar Eu.r(LcHL$H HIHHD$8IH(]AD)DWAMI#G,$GlEG G< E9ukDK HIHِIH|hIHOM@IH@ML!M|CLIH@MM!f@8u EuAsGHL %M9IML9I9r H1 HH׺Li5IVIO MIIMHLAIIHMI)M{Lx H@MM!IL!MAEL IL c%OML9r9HHHHHL$O$ILY I9AEL f HHHAfuHq LD$`IM9HHH H!HHII9uIUHKTHA HtZHqI9woHL$(Ll$ HLHHHu ףMI%EkdD)D 6LS46vLG B4L9!DL;LKL9w 46vHHCLB4H9@t;HTHLÃdrLH> ףHH%kd)<LCRL YA<9B L9ve@|H{H9wPHs<L'B<H9v.@|@ rHsBH9v TH]f;61,]%HH!"KgHH81H!"KgHH8HHHHa*@H9vH~:pΈHHHrH\(\H9HCHCHHH?HH9@HC@H UHHtsHH.HuH kNHu<H :fDHu H  HuH  H 2HH]@;I;fvHUHH@H\$XHuHA(HcH\$8HcIcHE1MHfHH@]ÉD$H\$HL$H|$ t$(DD$,D$H\$HL$H|$ t$(DD$,pI;fv5UHH@HD$8HHE1MHÜNHH@]HD$H\$L$rHD$H\$L$I;fv@UHH@H\$XHuHA(H\$8H1IIHHHHH@]HD$H\$HL$H|$ HD$H\$HL$H|$ I;fv@UHH@H\$XHuH(H\$8HE1MHHøcHH@]HD$H\$HL$H|$ Ht$({HD$H\$HL$H|$ Ht$(f{IHHHH=vHHHHHHI;fUHHHHD$XHL$hH$H\$HL$D$ LEWdL4%HL$ H|NHT$hH9rZHD$(H\$X @,HtHW&H W&1HH]11HH]HW&H W&1HH]lHD$H\$HL$7HD$H\$HL$#Ld$M;fwUHHH$H$H$H$H\$HL$D$ VEWdL4%H\$ @HH$H9H$fD$umaD$wxH$H|$uIؤHH$HHH$H9H$H)H)HCH$HHHH?H!H$HH$H$HT$H\$D$ f{EWdL4%HD$ fHH$H9H$HD$UH$H$ @5Hu|HD$xHD$5H$H$ @fHtHU&H U&W1HĠ]HT$xWH*WH*^11HĠ]HmU&H nU&W1HĠ]HQU&H RU&W1HĠ]W111HĠ]H#U&H $U&W1HĠ]ɨĨ@軨HD$H\$HL$膋HD$H\$HL$RLd$M;fUHHL$H$H$H$D:DzDz Dz0H$H$L$L$L$HDŽ$HDŽ$1 H$HHD$8H HD$XH$fH9)T&u!H (T&kHD$XH$H9T&u"H T&A=HD$XH$HH$H}(H$H$DH9kH$'H$DH9FH$HHHHD$0HL$(HT$xH$HL$HD$D$:@;EWdL4%HD$ fHNHL$0H9HPH\$(H9HD$PH)H\$pH)HL$hHAHD$HHKHL$@HHH?H!HT$xHH$H$HL$H\$D$:蛩EWdL4%H\$ fHHL$HH9$HSHt$@H9 Ht$pH)LD$hI)III?I!H$JH$FA/HL$I9Ht$@H$H|$PDHuLH|$x?0uBI9LHOH$H9gHL$`HH$HL$`L$@uH$L$HL$8H$HT$@H9HOH$H$H9tHD$pHHrHD$p11H]H Q&H=Q&11H]H P&H=P&11H]H P&H=P&11H]H P&H=P&11H]HH11H]HD$8HuH ZP&H=[P&11H]û11H]11HL$XH$H]Dۣ֣ѣ̣ǣHD$H\$HL$H|$ Ht$(LD$0LL$8LT$@yHD$H\$HL$H|$ Ht$(LD$0LL$8LT$@I;fUHH@HD$P HHHHHL$(H\$0HD$8H$H\$HL$D$,nEWdL4%HD$ H|hHL$(H9HPH\$0H9r~H)HHHH?H!H)HL$8HHlf9cpayu@SH@]HL$0HuHL$8f9cpu yu1ɉH@]1H@]XSHD$H\$HL$HD$H\$HL$L$pM;fT UHHL$pL$hL$`L$XH$PH$HH$@H$D:DzDz Dz0H$H$H$ H$H$(H$H$H$HDŽ$HDŽ$H$HHD$`H$H9M&u H M&uEHD$`H$H9M&u&H M&躡HD$`H$DH\H$H}#H$H$H9 H$"H$H9 H$HHH19Ht$PH)H)HFHHH?H!H$HHJH$HHHL$HH$HD$PH}UH$H$HL$HD$D$ pEWdL4%HD$ HHHHT$HH9b H$HL$HD$D$ #EWdL4%HD$ HHT$PH9HoH$>/[HHH\$HH9HD$XH)H$H)H$HBH$HSHT$HHHH?H!H1H$H$HT$H\$D$ gEWdL4%HD$ HH$@H9HPH\$HH9HD$xH$H)H$H)HHHH?H!H$HHH)HyHHH?HH!HHH$H$Ht$HH$Ht$H|$D$ 蛡EWdL4%HD$ fHHPHt$HH9H$H9 H$<H)Df -M|@ >HL$hH)H$HFHD$HHH$HHH?H!HT$pH H$H $HD$Ht$D$ ˠEWdL4%HD$ HH$H9KHPLL$HL94LL$hI)MQMII?I!H$H)L$ML$pI$@Hu$HL$pH$4 cgrou L fuptH$`H$XH$hDL$H$L$L$HBHD$HHD$L\$D$ D軟EWdL4%HD$ fHJHPHt$HH9/H$H)H$H)HHHHH?H!H$HH$`H$XH$ho@IHu5HT$pL$EAcgrouETfAupu ATf2t H$`H$XH$hH$H\$XHL$PHHIHHT$PH9@HuH$`H$XDH$`H9~/HD$8H$XHH$ H$`HD$8t H$X1.H9uH$X}H$X<@/@@H9RH$hIH)H?L!IL)LIuI~LHLHIL LHILH$LL$@I}>HH*H$XH$H$hLL$@H$`t1Iu ~/„AHHH$h&HH1H]HE&H E&1H]HE&H E&1H]HqE&H rE&1H]HXE&H YE&1H]H?E&H @E&1H]H&E&H 'E&1H]ÐH$H$HD$xHD$H$HD$D$\EWdL4%HD$ H@H\$xHH)HD$@H H$HH9H9=H\$0H$H)L$PIM)I?I!L$@MH9HLL$M9t(LLH譛H\$0Ht$xL$PL$@LLH$L$Hu#HT$0H9H$11H]1H]HC&H C&1H]1H]HC&H C&1H]HC&H C&1H]HC&H C&1H]H-D H V-f֖ۖі̖ǖ–f軖HD$ H\$(HL$0H|$8Ht$@LD$HLL$PLT$XL\$`hyHD$ H\$(HL$0H|$8Ht$@LD$HLL$PLT$XL\$`6UHHD$H|$(11 LfH9H9H9DA\tH9DHLALAL9~aE1E1 EO II}*NMRNL9ET;AAvMIWH9veD HLANHA&H A&H]HA&H A&H]H11]HA&H A&H]HA&H A&H]D I;fUHH@Ht Hu\1HHIIj&H5|>&11HH`]HH11H`]11HHHH`]趑H誑H,'蔑菑H胑H\$xHHD$x;HȽD1H5%D{'HD$H\$HL$sHD$H\$HL$I;fUHH Ht HHH ]HL$HHukH|WHD$HD$fHtH<&H <&W1H ]HT$WH*WH*^11H ]W111H ]Hd<&H e<&W1H ]Ha&HD$H\$HL$rHD$H\$HL$I;fUHHhH\$(D;D{D{ D{0@H1Hu9fH@twEHù@HD$(FHh]H;&H ;&1Hh]H;&H ;&1Hh]H@'HD$qHD$QI;fUHHhH\$(D;D{D{ D{0@H1HuH}LD$0Mt1.$11H@]H1&H1&H@]H}H1&H1&H@]11H@]H1&H1&H@]H]1&H^1&H@]˄Ƅ軄趄HD$gHD$aUHHt HXH])I;fUHHHHD$XH\$`H|$pHuHn1HHL$@a&HL$@HAHD$`HHHHH$I$I$HHHHHDH9HH HʐHHHDHHHѾHHHpfHT$XHzPIHIpIHT$pfH9w=H\$ Ht$0Hֿ@HD׈Q ڈQ!H2/HHg3HD$81/HHH]HHH]HHH]HHH]HHJHHT$0H9}[HL$(HD$ H1HHT$@z HHD$Xf=4(u HT$(Ht$8HT$(Ht$8L3IMCHv6=(uHL$@HL$@HYII[HAHQHHH]节HD$H\$HL$H|$ PeHD$H\$HL$H|$ I;f/UHH S8P -HD$0H\$8HL$@H|$HHPH HL$H-H1HT$0HrH|$1ɐIIH9H LBM@H9IH=(tL}MMSLO MRI9e=(tNL}MIKNM9HoIXfZ ÈZ Z!ˈZ!H=b(ftHZu}II[HBHzHHL$@H\$8H|$HHSHQP Y)HˉѾH搀@HH!1IHH9})HsHL@=(tM |IMKH S)ѺH@HH!HsHwH W)ѺH␀@HH!1HM@sLD>HD$ LùH0]1H1H0]HD$H\$HL$H|$ X`HD$H\$HL$H|$ @I;fUHHPHD$`H\$hH|$xHpHt$@H6HL$fHnf`pfHnftf@*Ht$ LFL!HD$`HL$H\$hH|$xfHHt$ LCXLL$@DShLL\$0MO$Md$AsOdLd$8HK0HQH HLфwHT$hrhsHB0H\$8HL$xDHT$hHJXH\$0HHJ`H\$@RhH4HvsHtHHP]HT$@H2fHnfH(LCXDKhHHt$0LMMRAsUHT$HLD$(HC0=(u HT$HHt$(HT$HHt$(H|wII{HDH\$hH|$xIHC0LHHT$hHrXH|$0HHr`LD$@DJhNMRAsPLD$HHt$(HB8=Q(u HL$HHT$(HL$HHT$(H\ OwII[HD H|$0IHL$@HT$9HL$`HLHP]HA5L1HP]HD$H\$HL$H|$ k]HD$H\$HL$H|$ 2I;fvWUHHHD$ HC@;HL$ =m(tHQvIISHAHHH]HD$H\$\HD$H\$I;fZUHHPHD$`H\$hHػ11s HD$0HT$`HrHt$@1HHHt$@<fD@ǀuH|$hLGXLDOhM0MRAsMT0HL$(L_`MM0M[AsM\0L\$HLT$8HOHH1HZLHH\$hHH|$8Ht$HHD$0HD$0HL$(HT$`KH$H(= (u HT$`Ht$0%HHT$`HZMuHt$0I3IKICI[H0HBHBB B!@HP]HD$H\$M[HD$H\${I;fUHH@HH\$XHt'HH8HP@HT$(1Hx@uH HtHS11H@]H HtLHIHSHyt-q@ tHHWH@]HHFH@]HxHH@]11H@]ÍQfw 11H@]Àu HD$P1,HH9H@]11H@]HL$HHD$PH\$XH9H@v#HL$H@0HHHHtH@]11H@]HL$8HHD$ HHT$(H\$XH9}THD$ HL$8HHQHT$0HIHL$D{QuHL$XHT$H HD$0@;HtH@]11H@]HD$H\$7YHD$H\$I;fv,UHH(IHH1HH(]HD$XHD$I;f UHH(HPHT$ H2fHnf`pfHnftf@LFL!Ht.LCXLMELA9uHK`LHH@H(]fѐHuAHD$8H\$@|$PHL$fT$Hn<5 HD$8HL$T$H\$@|$PHsXLD$ HA@IDHB|HsXHHs`H\$ H4Hv HHH(]HD$H\$HL$|$ WHD$H\$HL$|$ I;f UHH(HPHT$ H2fHnf`pfHnftf@LFL!Ht.LCXLMMLI9uHK`LHH@H(]fѐHuCHD$8H\$@H|$PHL$fT$H ;5o HD$8HL$T$H\$@H|$PHsXLD$ HA@IDHJ|HsXHHs`H\$ H4Hv HHH(]HD$H\$HL$H|$ 1VHD$H\$HL$H|$ I;f&UHH(HPHT$ H2fHnf`pfHnftf@LFL!Ht.LCXLMMLI9uHK`LHH@H(]fѐHuCHD$8H\$@H|$PHL$fT$H95HD$8HL$T$H\$@H|$PHsXLD$ HA@IDH=r(tNLnI;MKJ|HsXHHs`H\$ H4Hv HHH(]HD$H\$HL$H|$ THD$H\$HL$H|$ I;fUHHXHL$xH$HpHt$HH{XH|$ H$@~LLN1ɺHSHH HXHD$xHL$HH1HD$HH|$ 1 HHHH}_@8uL$L9At1:HT$8HL$@Ht$(HD$xHLoHL$@HT$8Ht$(H|$ HD$tHAHX]1HX]ILRIHLH}tArFL$M9QtE16L\$xM!M,$M9+tE1ҐOdOTM9tE1 AE1EtHHIHLfuHtTH$HH|2H\2H9uHt$PHT$0HD$x%nu1HX]HL$PHT$0H H@HX]1HX]HD$H\$HL$H|$ D{RHD$H\$HL$H|$ I;fUHHPHD$`H\$hH$H|$xHPHT$@HHL$ fHnf`pfHnftfLBL!HLCXLL$@LMO\OdI9uHT$(LT$8LD$0LL$HHLHmu#HD$`HL$ HT$(H\$hH$H|$xHL$HH$H\$0HT =~(u Ht$xfHTjHt$xI3ISHt HL$hHQXH\$8HHQ`HL$@H H@HP]HT$@HfHnfHu7fT$HK55HD$`HL$ T$H\$hH$H|$xLCXLL$@HA@IDLKt=~(tKtjI;IsK|HsXHHs`H\$@H4Hv HHHP]HD$H\$HL$H|$ Ht$(CPHD$H\$HL$H|$ Ht$(I;fUHH HD$0H\$8HL$@@|$HH .HL$@HHL$HHHL$8HHBHwM@sLD>HD$@LùHP]1H1HP]HD$H\$HL$H|$ ELHD$H\$HL$H|$ ,I;fUHH0fxdHPIHH!E1I HIH!ILSPLLPLT$(MfInfD@MtHD$@LD$ HSXDKhML\$IM$Md$As'=x(tMLLdI;MKIJ|2H\$HHt$`HC0LH*HD$@H\$HHt$`LD$ L\$HSXIHS`H|$(DKhL:MRAs'=ex(tHL:LvdI3IKIHt:HC8LHHD$@LD$ L\$HfHfHD$(AFH0]Ht HaHD$H\$HL$H|$ Ht$(mJHD$H\$HL$H|$ Ht$(/I;fKUHHXpH1 HX]HVH9PHT$(HsPHHpHt$PH6fHnf@HHL$xHLHt$ HH~LCXLL$PDShH!H|$ HLK4HvAsKtHt$@HK0HQH HHфuHL$hH|$(LD$p|HL$pHQHH Ht$xH^HD$@HL$hHqHH!H|$(LD$p1J H@H!HH9+MHPLLIM fInfDȐMt!IHHDTEDTIHt$PH6HfHnfHnftf@Ht'HHH[DDADDZHR11 HNfH9HHHH Ls =r(HKPHHHH fHnf=dr(tH/Ht$8HT$0ZHT$0H\$pHt$8=2r(HHD$hHdH H PDH91 HX]HJH9Hr_HHHsXLrHKPHHHHL$HH fHnf#HqH!HH|$HxfxHHuHX]fddd dHD$H\$HL$FHD$H\$HL$I;fUHH=t(tHP`IISHXHH9fHy HQH11HT$H$=s(tHp_I IsHD$ HL$0HHmHL$ HA @[HL$ HA(HD$0P Q8H$HQ@=Ws(uH\$HQPe_H\$IISHYPH@(HA0H]H]HD$H\$HL$EHD$H\$HL$I;fUHHHD$(H\$0HL$8HPHpHHHHt$(H~0LFI9x(uHNHI0HQH HD$0Hфt 1H1H]HT$(HrH~XLD$8LLF`HRPvhI<HsI|HD$0HH]ùH]HD$H\$HL$DHD$H\$HL$I;f]UHH@HPHtqz"uSHD$PHp@Hx8J @@8t~)H@HHH!Hp@HP(HH!HP(HPR P8NH&H@]Ã=Mq(tHHP@[]I ISD8H@]DxHH@XHP@HpH~H9[HxHuFL@(LHH!HVHHrH9t H)I)L@(=p(tHpH\IIsHPHHPHJHHpXH9LHx HH!HHtHxPu1HL@M@PLLB=lp(tHPP\MISL@PHL$0HPP<@ǀuUHxLGXLDOhMMRAsMTLXHI{LH%DHD$PHL$0H@X1HHpXH9Hx HH!HHtHxPu:HL@HLHMIPLMH=o(tHxP[M I{LHPDHurHPPHfHnfHtHHHH! HH\$0@HuHxXH)HwHpXAHIH)HxXHxXH9%HIHpH~XILHPDVhM9M[AfsN\L`HI|$VLD$HT$(LL%HT$(HrH!Hu#HD$PHpXH|$H)HHpXH\$0HH|$H)HD$PHpXH\$0qHPJ HPHR)ѺH@HH!HP@=)n(HPHHpP6ZIIsIHD$PfHO`LH H[AsH\H@X=m(tHHP)ZMIKI[ISLHXH@]Ã=m(tHHPYI ISD8H@]HT$(LD$IHD$PHN`HI H[AsJ\ HJH!HuHHXL)HHHX HL)HHX='m(t!HHPLvYI3IKI[ISILHXH@]H@XHPXHFHp HHpP<2@ǀuHXH{XHDChL >MIAsLL>LPIzHT$ LL$8LLu|Ht$PH~0LFI9x(t1!HNHI0HQH HD$8HуHt$Pu HfDHFHHXHT$ HHH`HVP@hHH[sH\HD$8,Ht$P%HK`HHHRAsHT1HLHHFX=k(t HHVDXIIKI[ISHH^H@]Ã=k(tHHPWI ISD8H@]HD$>HD$I;fv0UHH P<fw@[H ]0H ]HD$H\$HL$=HD$H\$HL$I;fUHHpH$H$H$x@|$.@|$/HػH2HD$PH$H|$/HD$HL$.ٺH␀@HH!HT$0H$L$1HH9NHL$@MHPLLNLL$`1HHsLL$`EA€uIxXHEPhNM[AsN\H\$8M``LN$Md$AsNdLd$hL\$XIPHH H$H^LHL$0HHL$HHt$PHDH$H|$XHt$hHHHHD$HHL$@HT$0H\$8H$L$$HHL$PHH$H$HBHp]HD$H\$HL$;HD$H\$HL$I;fUHHXHD$hH\$pHL$xHHxHH)HT$hfzvHD$8Ht$p1oH\$xK p)H搀@HH!1 IHH9})HxHLC=Ih(tM [TIMKHBHX]HH9JrHL$0H~PHHzH|$H1fHHsH|$HDAuLFXLDNhM8MRAsMT8H\$(L^`MM8M[AsM\8L\$PLT$@HVHH Ht$xH^LH\$pHH|$@Ht$PHD$8HD$8HL$0HT$hH\$(Ht$pMHD$H\$HL$f|$ 9HD$H\$HL$|$ 9I;fUHH`H H;HD$pH\$xH${"t#H!HD$pH$H\$xHPHH2H[HHL$xHqHtfHu1q!HʉHHHHHHIH HL$PHqHt$@HHH!H|$ LD$pL$1DH\$pH$HHHDtHػH`]HB|(1H`]ËPhr11H@0H@;HuH|(1H`]H@[HH@H!HHT$(HD$0MPPLLQfHnf`pLT$XMfInftfDE3LT$8MZM!HD$0HL$PHT$(Ht$@H|$ LD$pL$Mt_LT$8MXXLd$XEhhMMO<#ML|$HAsO\#MIH0HQH LLk4LT$XMIfInfInftfDEM-HL$pHQ`IhHt$HH<sH<HH`]Hz(1H`]HD$H\$HL$6HD$H\$HL$Ld$M;f|UHHfDHBH$H$H${"t)HAH$H$H$HPHH2H[HfHD$PH$q"@q"HyuHH$HD$PH$HyH9r$HH$DHD$PH$H$H$HHHnH$z"fu)H$H^%H$H$J"J"Hİ]H:HD$PH$Hyu1q!HʉHHHHHHqH4Ht$xH~H|$@IHH!MALD$ H$L$1E1E1IH@H!ILL$PLd$0HD$(H$L\$XLkPLLnfInf`pL$MmfInftfDEPLl$8M}M!HD$(H$H$H$Ht$xH|$@LD$ LL$PL$L\$XLd$0MteLl$8L{XL$DChILK4HvHt$pAsODIL$HK0HQH LLфKL$M}IfInfInftfDEMu,HfDMIEMMMEHtH$VfVMf~]H$rhs!HB0H$H$H$HJ`RhHt$pH<1sH<H$I<L\$HHSXIH$DKhL$Md$Ld$hAsdHT$`H$HC0v=_(uH$Ht$`H$Ht$`H|KII{HDH$L$IHC0LLH$Hr`zhLD$hN sDHt$`HB8=F_(u HL$`HT$hHL$`HT$hH4 EKIIsH IH$HT$HHt$ @4HL$xQfQfH$Hy"u.L$HYDH$L$Q"Q"LHİ]H ^%HtHIHV%H6HD$H\$HL$1HD$H\$HL$MI;fUHHHH;{"H{u#HSHfHnfӐHpXHYHD$(H\$0L$8L$HPHH H[HD$HL$0Hyu1Q!HˉHHHHHHIH HQHHH!Ѓt$8H|$(E19HP!D1H]Hs(H]IH@H!ILOPLLIMfHnf`pfInftfDАEMZM!Mt"L_XMMGd O M[A9u(IfInftfDEҐMkHO`I H]Hr(H]HHHt9 usHH`H H]Hr(H]HD$H\$L$.HD$H\$L$fI;fUHHHH;{"H{u$HSH2fHnf֐HxX@HeHD$(H\$0L$8L$HPHH H[HD$HL$0Hyu1Q!HˉHHHHHHIH HQHHH!Ѓ|$8LD$(1=H0!D11H]Hq(1H]HH@H!HMHPLLIMfHnf`pfInftfDАEMZM!Mt"MXXMMGd O M[A9u(IfInftfDEҐMkIH`I H]Hp(1H]HHfHt9 usHH`H H]Hp(1H]HD$H\$L$,HD$H\$L$I;fPUHH`HHD$pH\$x${"t$HVfHD$p$H\$xL$$HPHH H[HD$$HD$8HL$xq"@q"HyuHH\$pHD$8HL$xHyH9rHH\$p#HD$8HL$xjH\$p$HHHfHT$xz"u HD$XHZHD$XHT$xJ"J"H`]HwHD$8HL$xHyu1Q!HˉHHHHHHqHHrHHH!IH|$(D$H\$pE1E1E1IH@H!ILkPLLjfHnf`pLl$PM}fInftfDEII!H|$(LD$8MtLCXILC|(D9ufDMxMGD=AuMMEMELD$8MMLMtLT$PrfrMfzu3HT$@L\$0HHL$xHT$@H\$pH|$(D$L\$0fz{HS`LJ*HRGHsXILD$PFLHsXIHs`LD$PC<zfz:f:HI0HRy"u HT$HH|CHL$xHT$HY"Y"HH`]H %HtHIH%HgHD$H\$L$3)HD$H\$L$D{I;fUHHHH;{"H{u#HSHfHnfӐHpXHSHD$(H\$0HL$8HL$HPHH H[HD$fHL$0Hyu1Q!HˉHHHHHHIH HQHHH!ЃHt$8H|$(E14Hk!1H]Hk(H]IH@H!ILOPLLIMfHnf`pfInftfDАEMZM!MtL_XMMOd I9uې)IfInftfDEҐMqK H@H]H k(H]HHHtH9 usHBH]Hj(H]HD$H\$HL$'HD$H\$HL$I;fUHHHH;{"H{u$HSH2fHnf֐HxX@H]HD$(H\$0HL$8HL$HPHH H[HD$HL$0Hyu1Q!HˉHHHHHHIH HQHHH!ЃH|$8LD$(19Hl!11H]Hi(1H]HH@H!HMHPLLIMfHnf`pfInftfDАEMZM!MtMXXMMOd fI9u(IfInftfDEҐMqK H@H]Hi(1H]HHHtH9 usHBH]Hh(1H]HD$H\$HL$%HD$H\$HL$I;fPUHH`HHD$pH\$xH${"t$H[HD$pH$H\$xHL$(HPHH H[HD$(HD$8HL$xq"@q"HyuHH\$p HD$8HL$xHyH9rHH\$paHD$8HL$xhH\$pH$HHHHT$xz"u HD$XHңHD$XHT$xJ"J"H`]HHD$8HL$xHyu1Q!HˉHHHHHHqHHrHHH!IH|$ L$H\$pE1E1E1IH@H!ILkPLLjfHnf`pLl$PM}fInftfDEII!H|$ LD$8MtLCXILK|(L9ufDMxMGD=AuMMEMELD$8MMLMtLT$PrfrMfzu3HT$@L\$0H)HL$xHT$@H\$pH|$ L$L\$0fz{HS`LJ*HRGHsXILD$PNLHsXIHs`LD$PC<zfz:f:HI0HRy"u HT$HHHL$xHT$HY"Y"HH`]H %HtHIH%HHD$H\$HL$r!HD$H\$HL${I;f<UHHPHHD$`H\$hHL$p{"t$H@HD$`HL$pH\$hHL$8HPHH H[HD$8HD$(HL$hq"@q"HyuHH\$`lHD$(HL$hHyH9rHH\$`HD$(HL$hkH\$`H|$pHHHD[HT$hz"u HD$HH3HD$HHT$hJ"J"HP]HHD$(HL$hHyu1Q!HˉHHHHHHqHHrHHH!IH|$ LL$pH\$`E1E1E1IH@H!ILkPLLjfHnf`pLl$@M}fInftfDEII!H|$ LD$(MtLCXILK|(L9udfDMxMGD=AuMMEMELD$(MMIMtLT$@rfrMfzHS`LJ*HRkHsXILD$@=L(tNTL@8M MSINLHsXIHs`LD$@C<zfz:f:HJHRy"u!HT$0H5HL$hHT$0Y"Y"HHP]H G%HtHIH?%H@HD$H\$HL$HD$H\$HL$I;ffUHHxH$fDHH;{"H{H$H$H$H$HL$XH|$`HPHH H[HD$XH$Hyu1Q!HˉHHHHHHqHHT$PHrHt$@HHH!H|$ H$L$1_HHHEDHtHx]Hn`(Hx]H!W1Hx]HH`(Hx]HH@H!HH\$0HD$(MHPLLJfHnf`pLL$hM fInftfDEMQM!MtxMPXL\$hMMOdOlI9uLL$8LT$HL\$pH$LF7umHD$(H$HT$PH\$0Ht$@H|$ L$LL$8{LL$hM IfInfInftfDEfDMHL$pHT$HH H@Hx]H_(Hx]HD$H\$HL$H|$ 7HD$H\$HL$H|$ [I;fsUHHxH$fDHH;{"H{H$H$H$H$HL$XH|$`HPHH H[HD$XH$Hyu1Q!HˉHHHHHHqHHT$PHrHt$@HHH!H|$ H$L$1jHHHDHt Hx]H](1Hx]H !11Hx]H](1Hx]HH@H!HH\$0HD$(MHPLLJfHnf`pLL$hM fInftfDE MQM!ѐMtxMPXL\$hMMOdOlI9uLL$8LT$HL\$pH$Lz4ugHD$(H$HT$PH\$0Ht$@H|$ L$LL$8zLL$hM IfInfInftfDEMHL$pHT$HH H@Hx]HK\(1Hx]HD$H\$HL$H|$ jHD$H\$HL$H|$ QLd$M;f?UHHH$HH$H$H$H${"t4HחH$H$H$H$H$H$HPHH H[H$HD$XH$q"@q"HyuHH$'HD$XH$HyH9r"HH$yHD$XH$H$H$H$HHHH$z"u)H$HӖH$H$J"J"Hĸ]HHD$XH$Hyu1Q!HˉHHHHHHqHHT$xHrHt$HHHH!IH|$(L$H$E1E1E1IH@H!ILd$8HD$0L$L\$`LkPLLjfHnf`pL$MmfInftfDEM}M!H$LD$XML{XL$L$IHL$pLKLODL9uLl$@L|$hH$LL0HD$0HT$xH$Ht$HH|$(L$L$L\$`Ld$8Ll$@@L$M}fInfDfMMGD=AuMMEMELD$XMMMtL$rfrMfzu4L\$PH[H$HT$xH$H|$(L$L\$PfzH$H$Ht$hHT=A(u H$HT1-H$I;ISH|H$HQXHt$pHHQ`H$H HIHH$@HsXIL$NL=A(u LL$ML0L"-L$MMKNTHsXHHs`L$A<zfz:f:HI0HRy"u)H$H1H$H$Y"Y"HHĸ]H ;%HtHIH3%HHD$H\$HL$H|$ HD$H\$HL$H|$ D{I;fv:UHH(Ht'HHH1HRH(]!~HD$VHD$I;fv&UHHHP(H9S(t1 $z-H]HD$H\$HD$H\$f9 uCHf9Ku9Hf9Ku/H8Ku&HHH9KuHHH9Ku HHH9K1ɉ1I;fUHHHHfH9KHSH9Pu{HP H9S uqHS0H9P0ugP88S8u^P98S9uUHD$(H\$0HHq,tL9L9Ld$`HHHH$H$H$H\$pHt$hH$DD$/DL$,LT$0L\$PLd$`IMIIM9M9|H)HIHH?I!I\H?HHLH} HHx]HL$hHH@Hx]HD$hHx]HHx]HHx]f{MM9L9L\$XF$A8L9LT$HL)HHH?IRH!HH$HL$@t$EWdL4%HD$fHxHT$HLMRH$H$H$H\$pt$.H$DD$-LL$8L\$XMbL9MLT$hFlE8uM,:L9+fDM9Ld$`LHH@H$H$H$H\$pt$.H$DD$-LL$8LT$hL\$XLd$`IMjI?I=O,*MmIM9uL)HHHH?I!LH$H\$HL$H|$EWdL4%HD$ H|HL$hHH@Hx]HHx]HD$hHx]HHx]HHx]D[VQLGHD$H\$HL$H|$ HD$H\$HL$H|$ I;fUHH@H\$XH|$h11Di“D CHH9HAAEEEIIHEELH1E1EiГD3GHH9~ H9wNH|$hHL$`H\$XHD$8DL$T$D9uLfDH9DD$ HHHd@u'HD$8HL$`T$H\$XH|$hDD$ DL$H1H@]ICfH9EiDEII)FEE)D9usIL)IHH?IL!HL9t1FL\$0DD$$LT$(HLHL$`T$H\$XHt$8H|$hDD$$DL$LT$(L\$0TIILH@]HH@]HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(I;fnUHHPD|$8fD|$HHD$`D$HF&HHD$`1Hg (3Äu3H$&HH ?"(H9uH&H HxH1HD$(H (HD$0HD$(HD$8D$H&HH !(HHHD$H!(HD$ HD$HD$@HHD$HD$HD$`H 4&Ht6H &HHHH L H5&HttHHD$`D$D$HT$@HD$HT$8HHP]=HP]HD$HD$qHB1HHB1ɇI;fv0UHHGHtH&H H{H]I;fv|UHHHD$HHT$(Ht$0H|$8LD$@LHHHLH1L$HT$Hǂ(H H H]HD$(HD$(jI;fUHH(r( uBHHHHHHHHǀ(HD$(H(HH[H Ht$(H ( u dž$H]HD$"HD$8I;fUHH@HD$PHT$D:Dz1HtHH}PHL$8fHD$PHL$8HT$ $9wDFD AH4D9v뢄HD2D6DrDvH1HPHT$Pǂ(H H H@]HD$DHD$UHHexpafHnfpnd 3fHnfp2-byfHnfpte kfHnfp $L$L$L$ Do$$8fHnfppfHnfpD@fInfpDH fInfpDPfMnfEpDXfMnfEpD`fMnfEpDhfMnfEpfLnfLnDffDfEofArfArfEfEfAfDofAr frfAffDfEofArfArfEfEfAfDofArfrfAc@ffDfEofArfArfEfEfAfDofAr frfAffDfEofArfArfEfEfAfDofArfrfADoffDfAofrfArfDfEfAfofr frfffDfAofrfArfDfEfAfofrfrfffDfAofrfArfDfEfAfofr frfffDfAofrfArfDfEfAfofrfrfffDfAofrfArfDfEfAfofr frfffDfAofrfArfDfEfAfofrfrfDffDfAofrfArfDfEfAfofr frfffDfAofrfArfDfEfAfofrfrfoc@ffDfEofArfArfEfEfAfDofAr frfAffDfEofArfArfEfEfAfDofArfrfAffDfEofArfArfEfEfAfDofAr frfAffDfEofArfArfEfEfAfDofArfrfAKS [0DDDfHnfpfHnfpfInfpfInfpfMnfEpfMnfEpfMnfEpfMnfEpfffffEfEfEfEc@kPs`{pDDDDfLnH]I;fvUHH,H]HD$H\$HD$H\$I;feUHHHH=(Hֱ%=/(tH &AIIKH&H%=(tH t&IIKHa&H%=(tH R&IIKH?&H%=(tH 0&IIKH&Hn%=(tH &IIKH &HT%=](tH $&oIIKH&H4%H$=v(t$$d$H$Hs(HlHU(H~#HO(H]I;fv UHHH r H@{UI;fvUHHhH]HD$H\$HD$H\$I;fvUHHHHHH[H]HD$H\$HD$H\$I;fUHHW.uf{J.u{3H\$0MHL$0H1H!VjnuH1HckRHH]ùH]H!VjnuH1HckRHH]HD$H\$$HD$H\$UI;fUHHWf.u{Kf.u{3H\$0茦HL$0H1H!VjnuH1HckRHH]ùH]H!VjnuH1HckRHH]HD$H\$cHD$H\$TI;fv.UHHHD$ fHL$ HHHRH]HD$H\$fHD$H\$I;fv.UHHHD$ HL$ HHHH]HD$H\$fHD$H\$I;fUHH(HHtuHRHztsr@ t0HpH!VjnuH1HHuzHckRHH(]HpH!VjnuH1HHEzHckRHH(]HH(]HD(HH1Ho%f軂HHQn ̔HD$H\$HD$H\$ ̸8 f9 ̋9 HH9 HH9 u HHH9K1ɉ .! f.!H[.!.!!H[f.!f.!!I;fv'UHHHHH9Kt1 HH9H]HD$H\$HD$H\$I;fv-UHHHH9t1HpHKHHSH]HD$H\$[HD$H\$I;fv-UHHHH9t1HpHKHH3H]HD$H\$HD$H\$I;fUHH(Ht5HPDHt2p@ t H9H(]H2HHH(]øH(]D%HH1H{"fHHj wHD$H\$HL$BHD$H\$HL$NI;fUHH(Ht5H@HPHt2p@ t H9H(]H2HHH(]øH(]$HH1H,{!~HH="'ft#LPMYPMaXLjMICI[McH@IAPIAXHD$8MAEIy`t+HgٿH\$@dHD$8HT$HH9@{='tH@xI Hǂ@ƂH==X'tHJI3L$/HǂHP0H~HL$0H)HлzxHD$8L$/='t HPXIH@X1HH`gL$/H`]HY0HA(QHHYHL$xorHT$pHr0HHr0H9ruHB0HHD$@tH`]LLD$PHL$XHHHL$xH|$PH`]HL$pyuH\腃HX Hwv~H'daHD$@sHX HGv~HD$H\$L$H|$ iHD$H\$L$H|$ I;fvUHHHBHhsH]wI;fhUHH8H\$PH|$`Ht$hL@`MtEM9tHHHsH=HHH\+HH|HHHH)ʈP)HH)ʈP*H@H]H< 9H 9HD$HD$fLd$M;f*UHHH$PHt$D>D~D~ D~0D~91D< HHI|H$H$H$H$xfu@+D$h1x@@HILLOMAL GFT IIM}Mt@H|D$*x@HILLGMII?I!J| IAMOL L9t9HLL8H$H$H$H$Ht$A1 HfDH9qD@*D;L9|HDD8+MM[II{MM@MII?M!IUNDEA3MAL$L= H$F<>G<(IIHt$M}MtBD*LB&IILRMII?M!NDIMOLu M9tTH$Dd$gLLLH$H$H$H$Ht$H$ADd$gED$A^vA.LM@(LII7FdF}H<H(LHI BDF H H[)fHIHI H$Hzt1HfB)HĘ]D HHI|H$1r Hr H<0H9|z*H9|H:HfDHsdH40HvDD+HsKHD$xt+D8rDH$HH[HRH HHD$xH$H$r֞ўHIŞHI蹞HI譞HI衞蛞HI菞芞HI{vHIjIxfDHDD%Ht$ 1HHHH]HH9v4H|HtHL$HL$8HHT$8HD$0HL$HT$(Ht$ HHH9Ju9=&'tHHB>%UHD$0H 1>%HH'>%HD$XpHc>'D-Hj 3-HD$hyHD$HHHHsR3VH!ʾ HH!HH|LM@H9t HuIH@Ld$M;fUHHHHQtNQHHw:H5[$HQH2HQ@,HQ8&HQP HQpHQ8HQ8HQPHQ01H0H~@DBIHH$$Ht$xHL$hHT$`LD$XH|$DJLL$HE1E1E1:LQHL$hHT$`$Ht$xH|$LD$XLL$HILd$(H$I9hLn@fM9LT$ L$Ld$(HN8H$B\H,HD$PHL$ H$HD$x荿H$DoH$H\$8H$HuHL$xHA0oH\$0HD$pHL$(HT$(HHD$pH\$0HHT$HfH9HL$(HHL$@HT$X HD$hH$HL$@HT$X\ HD$hQHL$PH9t15H$oHL$8H9t1HH$ؑHL$8HL$PJH$HuHL$`HD$hcnH$t HT$0 HT$0H9t1HH\$pcHT$0u HL$PHL$@HT$X\ HD$h8HL$ Hu$H$$t3='u H$H$H|II{HDH$H$UtLX11HĠ]H$H\$8HĠ]UPHDHD$\$uHD$\$&I;fUHH8HM'DH d%Ht HHI11HL$HT$(1HH9~[HD$ HHHt$0HH\$1/H|$HH|$HHD$ HL$HT$(H\$Ht$0H9|띐H'H8]8t3I;f|UHHHD$ H\$(HL$0H8 3>=L'u/HL$0HHL$ HHHL$(HHDxHHa "VHL$0I HT$ ISHt$(IsHD$H\$HL$sHD$H\$HL$RI;fUHHH\$0HL$8@HtmHPHT$Hk f=='u.HL$8HHL$HHHL$0HHDxHH "芌HL$8I HT$ISHt$0Is1HD$H\$HL$rHD$H\$HL$BI;fvJUHH HD$0H\$8HHùHHD$HHL$8HD$0{HD$H ]HD$H\$ArHD$H\$I;fvDUHH HD$0H\$8HH1HxHD$HT$0H H\$8衒HD$H ]HD$H\$qHD$H\$I;fhUHH0HD$@Hux 1"H\$HHPHH! H\$HHHD$@IV0HhH/dxdvHI(~I1IHIIH1IhIIv0LhI8H(~H1IIHH1LhIuSLD$(HL$L='tHD$ HHD$@GHD$ HHD$(HT$@H HD$H0]HH0]HH0]H :HL$@HI='uHHDxHH X蓉I HD$H\$@pHD$H\$lI;fUHH8HHHHT$(HƸHHVHHHH9LD$(1IyHL9}IH?tHH\$PHL$XHt$0HHRHHHDHHH@HH!HD$HHD$ HHHB1۹ HT$ HHt$HHHHHQHH9HT$0H\$ H|$(1HHH9}LMtME@I!QHT$PzH! IxH!fH9s)IHLLMuHT9HT$XHT9HH8]荋MBI!I9s&MIM\MuLRNLNTfdVHD$H\$HL$ nHD$H\$HL$I;fUHHPHPHHT$ HHgHQH@H9SHL$HH\$h11Ht$(HHL$HH\$hHHHt$ H9}+HD$(HDHtHL$HH\$hHt$(HMF0MhI/dxdvK I(~I1HIIH1MhHMF0MhKI(~I1IIIH1MhIu`LT$@H|$8Ht$(LH='tHD$0HHD$H&HD$0HHD$@HT$HH HD$(H\$8HP]HHHP]HHHP]@HD$H\$&lHD$H\$7I;fUHH8HHHHT$(HƸHHVHIHH9LL$(1MBHL9}MI8tHH\$PHL$XH|$`Ht$0HHRHHHDHHH@HH!HT$HrHt$ HRH@HH 1۹ HT$ HHt$HHHHHQHH9HT$0H\$ H|$(1HHH9}LMtME@I!VHT$PzH!HH!H9s2LNLfMuJTHT$XJTHT$`JTHH8]tII!I9s.O@N\MuLBLZNLNDN\@W6HD$H\$HL$H|$ iHD$H\$HL$H|$ I;fvUHHH+&aiI;fv]UHHHD$ H\$(HKHHKHH+HL$ HT$(HHHHHH1ÄtH]HD$H\$iHD$H\$HHHt&HHH HHHH„tH1I;fvMUHHHD$(HH1Hf HuHD$(fH]H2"$.HD$chHD$I;fvzUHHxtZHt HHH1HHQHHtxt$Ht HPH1HHHHH]HHHD$H\$gHD$H\$bI;fUHHHHtUxftfHt HPH1HrH0HBHHtxt(Ht HXH1HHH]1H]HHHD$fHD$QI;fUHHHH9tdxftiHt HHH1HHt HXH1HYHHt H@H1@HtHrHtHHD9H]fH]HA HD$H\$4fHD$H\$EI;fvvUHHuf;H]É\$H} ;D$PH @H eHD$eHD$pI;fUHH(IV0LH92HD$8Ht$ H)%H:HHEHL$Ht$ HV0ƂHD$8HL$uBHV0Ƃ1yHj)%HHtH$HD${EWdL4%H(]H rHD$dHD$fUHH0HD$@Lt$(H}H(%H:HEH\$ u*H\$HEWdL4%H$H\$HHHD$H0]HH)HHx(%H:tH~HT$(HR0ƂHD$@H1MH>(%HHtH$HD$zEWdL4%HL$(HQ0ƂHT$@u/[EWdL4%H$HL$DH9GHT$@ H0]HT$(Hr0ƆHD$@H\$ uKHT$(HR0ƂH1苐H|'%HHtH$HD$yEWdL4%땸H0]I;fv@UHHIN0LH9t Hu H]H D;HD$H\$kbHD$H\$I;fv`UHHIN0LH9t6HD$(H\$0HD$(H\$0D$@D$H]H) @HD$H\$aHD$H\${UHH HD$0IV0HT$0HT$0Hȅ})H0HHӎHL$0H|иH ]1H ]I;fUHH$fDHDH $AHuH]HD$Hc "HD$8H HD$f{H.*D[vHD6DHDo}I`$I;fvUHH,H]HD$`HD$I;fUHHPIN0@‰t;HD$`Lt$@L='HHOHt$(11E1E1E1tHP]IHLH\$ rXf@t9IHHIHILDHLL"AEtuHL@u:r3IHILI$A@Et LLL@|$LD$0DL$@uEuL %L9DT$I9|TL^M9&EWdL4%HD$`LHL$@HHt$(LD$0H\$ DT$DL$|$$tEWdL4%HD$`LHL$@HHt$(LD$0H\$ DT$DL$|$EudHT$uEWdL4%HD$@HH0H$HH@0HVHL$@HT$Ht$(|$LD$0DL$HHD$`IHHuE1L%MII9tLZMHQ0LHQ0HMAI ILI@IEILI„t:H\$8HVHL$@HQ0HAH\$8Ht$(LT$`E11HQ0HǂMLA7HA0Ht5HD$HxEWdL4%H$HL$ H)HHL$HHHP]HA0Ht5HD$H1EWdL4%H$HL$ H)HHL$HHHP]HO8/H fHD$[HD$I;fvUHH,H]HD$[HD$I;fUHH(Lt$ Hz'fH1YI~0I/dxdvLhI(~M1HLHIH1ЉLhH9EމHH HȄtHD$8H11҆11}t-HL$ HA0IV0utHAXHL$ HQ0HQ0|utHAH(]H6 :H )HHHtZ rTHu%HT$BrEWdL4%H $HD$8HT$HHHHHH„t 1@0H11H؉HD$YHD$/I;fUHH0HIv0H/dxdvHhI(~I1IHIIH1ЉHH Hh҄uVtAsH5%I9t H0]MItlA reLT$LIM@@tLT$HtDLIMuE1 H= %IHL9tIzIL14H0]1fMHLIMu1H5%HHL9tIrHHt HHH8rH5ǜ%I9uH HuHHj1DH9uLIHȁI MSHt#0uH0)H0]HHHIHuH9tLHHHH1HIHLYIHIHuLL$(HT$ Ht$HHH)IIHH)HHH?HHIF0HHPHT$ LL$(LT$VHD$\$HL$WHD$\$HL$3HtIH=t4H| H9#% H H q#%HHH\HАH H I;fUHHH9'|_HPHH|NHHHԁ'HHH@HH!H|'HHH@HH!H5'H)'HH]諚覚HI& HD$UHD$D[I;fUHH8f=j$fDH'HfHHHrfH7HȀ'HrHH@v H'H='@1HHDRH$4@v1H5$H+zhH>H| H=u$H9~tHJhHD$0H\$84HT$ Ht$0džDGDuAtIFt$@t 111t 111豜HT$ HZhHD$8H@]HD$H\$.EHD$H\$@;I;fUHHHIV0IV0ǂHHtHv8H5p'H=wHxHLŕ$A<8$HHH=L$A<8HD?L&$AHD$H\$I;fHUHHHIV0IV0ǂHHtHv8H5j'HxHw*HxHHLl$A<8%HHHL$A<8HDD?L ˏ$AUHHHIV0IV0ǂHHtHv8H5HL$(H)H>H| H=҄$H9~tHD$0H\$8HL$(HT$Ht$0džDGDuAtIF111(t 111L$ht!HL$ydtHD$(H\$86HL$HL$IF0IF0HD$@HT$`Ht3Hzt,HHtH[8He'HHSHQhHSOHD$@QuAtIFHD$8H\$(HH]HD$H\$L$8HD$H\$L$I;fUHH=j'tXDHt4Hu*HuHHDHH 'H]À=g'tH g'I9uHf'1H]HD$H\$8HD$H\$GI;fUHH(=f'tHf'I9uHf'=t%HD$8H\$@=t%u11"HL$H;9HL$HHHHD$8H\$@HtoHt$ HHHHHT$ Pv NP H 1ۆYuAtIFHD$8H\$@=ci'tHu HH(]HD$H\$HL$6HD$H\$HL$I;fvFUHHIN0HHu Lt$HL$HH)HH}HzH]HD$j6HD$I;fv{UHH H HL$6H)HHHT$HHGHfSHL$H\$H9s'AtH\$HF3HL$H\$H ]HD$H\$5HD$H\$aI;fv%UHHHHùH@H]HD$5HD$I;fUHH HHtHR8Ha'HtqH5$HrH5$Hu H@Hu16HD$0H\$8HL$@HT$HgHcHD$0HT$H\$8HHL$@H2%H ]H_8HD$H\$HL$4HD$H\$HL$%H=~ HIN0H/dxdvHhH(~H1HHHHH1ЉHH WH*fH~HH4HIH/MIAI,AWH*WI*HhH i$B \X\YQYX y\Wf.vWWH*YY,1UHH8HD$HHHT$HT$HT$HD$ H\$(HL$0HD$H$1EWdL4%HD$H8]I;fv0UHH HBHZHJ HRHT$HT$HH ]E2I;fUHHHH|DHt HSHTH vD0H=HD$XHL$hH\$ IV0IV0HT$0HtHHt H+H2`'f;HD$XHL$hHT$0H\$ H5`'Ht$8LFNM@HH\$(I!NLFIwH>uXH'H < LHT$8HHHH {LHH]H>LFN LNDEQLDAuAftIFH|$@HB_'H9uH,_'HD$XHL$hH|$@HɆ'H9t%HHIH\$XHH'{IH|$@HHH]H~\'H HH H5n\'HtH|$ HLD$(L!HzHD$XHL$hHHT$0H ^'H9tH ;Hb^'H #H * Hp HD$H\$HL$cmHD$H\$HL$/I;fUHH@Ht$pHHHRHH!L L9HLH0['LPM MIHL!I9sjxt`HD$PHT$0H\$(HL)HT$8LHHHLLHT$PHBH\$8HWh'ILrOHD$PHT$0H\$(HXHH@]1H@]HD$H\$HL$H|$ Ht$(LD$0 /HD$H\$HL$H|$ Ht$(LD$0UHH HHHH1GH ]UHH HPHHHH#H ]UHH Ht$P=['t@Ht;Hxt4Hr.H\$8HL$@H|$HHHH1HL$@H\$8H|$HHHHNHT$P1HH }YHHHHH)HH@tHƒ=0['tHAGIIsHH ]UHH =Z't*HHHt!HD$0H\$8HH1HD$0H\$8HHHKH ]UHH8HD$HH\$PHL$XHHhHPH)Ӌp\HH HHH\$0aHt$PHT$0H9uHT$XLL$HI9Qhu H8]HT$XII)L2LH8]UHH PbHxhvlt HHH HHt>r@uHr HT$H\$HapHT$H\$HHHHH ]1HH1H ]H\$8 H\$8H1HH ]1HH1H ]UHHPbuESuHS fH\$ HL$(HoHL$(H\$ HHHHHHH]1HH1H]UHH H|$HHt$PH|$HLːHHHLGIL9r LLHHHH9WuHW .HL$HD$HDnHL$Ht$PH|$HHD$IH)HMHL9sPMI)IIHLAIHMXII@MM!MBII@MM!IL!HM1HH1HH ]1HH1HH ]HHH4H ]UHH0H|$XH3I99fDHLL9r=H)LMHLH1IIHH)HHHHHHLD$hH|$(IH)H9wwYwLD@uHw HT$ HgmHT$ H|$(LD$hHƄI9v H6H1HH1H0]DOAuLO =H\$ Ht$LT$HT$HmHT$H\$ Ht$H|$(LD$hLT$IHL)HHAIH@MM!IM#1LHLLM9sKHL)HHAIIILQIH@MM!MCLII@MM!IL!HHH0]HHHAILH@HI!IL!M9sJHL)HHHIILIIH@MI!IrLHI@ML!HH!H1H0]1HH1H0]lUHH`HH H H=T'HHHH@r13Ld&AIDHtII AJ1DHu!HK%Ht LHR1E11@rc@u H9BwH9BpwH`]HD$pH\$xH$Iv0HHt$XHtHHH HH9HT$xH*H`]MP%MIMP%MM$MMD$HT$pL$I4fHHT$pIH)LL$xM1L\$XMP%IM9X%sH|$PHL$8H\$0HD$(LD$HLT$@FAHD$(HL$8HT$pH\$0H|$PLD$HLL$xLT$@L\$X1H`]LP%MILP%LMHT$pL$I4fHtHT$XLP%IDL9X%sH|$PHL$8Ht$HH\$0HD$(@HD$(HL$8HT$XH\$0Ht$HH|$PhHH9~9M ML9rI9vHL)I(D H`]H>I%Ht LHRf1E11HH9~8M MfL9rI9vHL)I8D; H`]H`]H (UHH`HH H Hc=[Q'Iv0HIIII@rE1-L &AOMtHH %MHfE1HD$pHT$@H$Ht$X@HtHHL3HLD!H`]MP%MIMP%M M HT$pL$I4fHtvHT$pH)LD$@N LT$XMP%IM9X%sH|$PHL$8H\$0LL$HHD$(R>HD$(HL$8HT$pH\$0H|$PLD$@LL$HLT$XRH`]HU (NI;fUHHHD$ PbDu"u 1v@u HxhvxetHtHD?HD$ HPhHHw!XbHPH€xdHH]HHH9HD$ HD$f!HD$1HH Hu1HPhH@HHHHHFHHH HPhHpHH HHH7H)HpHHHFHHP H HphHxIHILNI)IwIH)HH HHʃ?HH<2M ؐIH[H@vLLBIHHRI1HHHAIHH@HL!HH#HHI@HH!H !IHHHH@HH!HH!HUHHWuHW 3HD$H\$ HL$(H|$0H-dHL$(H\$ H|$0HHD$H7HHtHII:HHH@HH!HHHhHpLALIwLH)HHI؃?HL H I@vsL[IHH[LIHLAIILIIIMI4HvI@MM!M#I MM!H@HI!IL#.M L.2HHLHI4H@ML!HHHH#H HHH]IHIHMIMLH@MM!L LLH9wHH@H HHH8I;fUHHP0p2f9t%HD$(ft$Hx8HA@IDHHR@H[HHHH3H]øH]H?9HD$xHD$NI;fUHH@HD$PH\$XHL$`H|$hH @{HD$X,HD$PHHcL$'eD蛝H\ *D$'HD$8HD$PHHpHL$0H@HD$([Hx HD$(D[Ht ʧHD$0D;H}t 誧HD$8D軡V,GHD$`fHu IN0Ɓ"H>@趜H EHD$`軣H_ *HD$hD蛣H_  ŜHZc HL$`H|$hjjD;Hŧ ʦ腜DHD$H\$HL$H|$ BHD$H\$HL$H|$ UHH0HD$@H\$HHL$PHHHMF0MLD$(AIHAAH1HHI9-fEuHrzuH8AHDHL$Ht$ DT$HHT$HuaIP%HI9X%s/4HD$@HL$HT$H\$HHt$ LD$(LL$PDT$IP%IIMP%HHxH<MP%IDM9X%s8H|$m4HD$@HL$HT$H\$HHt$ H|$LD$(LL$PDT$MP%MIMP%HIHISEH0]UHHXHHD$hH98"=E'tJH\$pHL$xPuHP Y\HL$xH\$pHHD$hIv0HHt$P1E1HX]H@H9xH?u DHAAsL LLP%IfDL9X%sKH|$DD$LL$HLT$@HT$03HD$hHL$xHT$0H\$pHt$PH|$DD$LL$HLT$@LP%MILP%M M M MK=HX]H$YHD$8H\$(HL$hH HL$ ֘H (eHD$8H\$(VHl EHD$ [HM *H$f;趚јH $D[H )JI;fUHH0HD$@HHCHHD$HHD$ H k'@HT$ H@wGHD$(HL$HHD$@pH\$(HL$ fuH0]H H@2HD$H\$HD$H\$9UHH11LLHLHHHHs8ILHArH0H1(Hu 111E1HLEMAIHIIH@MM!M AfrLH9wLSHHH)LWIIL)IHt#D+HOHIHIIZL H4I)LI2;HHHIHMSH@ML!H AHHMMwɃfHv0HHH!HHHHH@ML!H HHH)HHރHHHEL ڐHIH9rvH)IHHH@ML!IHHuHuH9)L$H4?H9w HH I)HHLL9w6HHHHLH@ML!I DIIHIsMv4LHH<H@ML!HH!HHH@HH!I HILHrHIHIII!L H< LH@vHt7HƸ9H1HHȺHH@ML!HH!HH @WHLEMAIHIIH@MM!L ArLD!HHHHw]EIHIL ҐHHIHLfH9rAMvA9HHHH I4IHIIHTI;fUHH HD$HHD$HD$HD$HD$H$!EWdL4%1HL$H>%HT0HH=|H\$Hu HHu1HcHT$H HD$H ]0KI;fvSUHHHJHL$H`%H7'OcHL$H &H2%-H]"fI;f?UHH0fHHT0r`ff9r2u HDŽpHpHHD$@HL$(H5#=%H95&9rXn\$HHT$ H IHH5&H1H! HW')HL$ Q`qfH)HT$t$H@HH4Hv@H@uHT$@HZ(HX(HB(H&HHP`f9P2tiHD$ &PXP`fPfP`HphHHX H H)HT$@HJHF'fHT$@HBHt$(H|$ H|0H0]H hHYk WHϐ FH D5H{ ($Hx+HD$\$IHD$\$I;fUHH@H H9dH\$XL$`HH ɈL$HHHD$(HH HD$8gH%H\$(L$!HHD$ HKU'&HL$8HH0HH8H)U'd'L$`HL$0HL$8H2F'H HL$ HY H HD'1*HL$0DHsgH IH&H5&H HIXHҺ(HEHH\$ HD$ HHHT$XHHHp;HD$ H@]H)HUi SHDi BHD$H\$L$n HD$H\$L$:I;fUHHHHD$XHHHL$@H@&T$11HHt$8HH|0L8%L9tH\$0H|$(O`WffGfH)HL$ H{S'$L$L$HL$0HH HI@HT$ HHFS'%H\$(HKhHT$ HHPD'H L$9KXtK2S`)HShHHt$8H)Ht$8Ht$8HL$0H IHH&H THL$0H8%Ht$XHT0HT$HL7%Ht$8HL$@DxHR' $HL$XHQ(HP(HA(HlR'$HL$XHpD9DyDy Dy0H@uH4B'H\$8HL$@eHH]HD$U HD$ I;fUHH &9t2Y9u1HD$(HD$( &HT$(H]H]ÉL$T$藋Hf &D$;H  D$!蛍趋Hb EHD$z HD$0I;ftUHHhHDHDGHD$xHX$ H 1c=E%u11 HtYHD$X8HL$XPv ʉP H 1ۆZuAtIFD$D$ 6&L$Hɹ(HEHL$HHT$xHH@%DHu1HD$@=E%u11 HHD$@HtbHL$PHHL$PPv ʉPH 1@2ruAtIFHD$@H2P`H9t4X0f9t+f"HD$@HH8P0HˉHHX8Hh]H 2?1%u!pH=&1%7@@tӋ5&5&t$D$T$T$dHD$(HȋT$HHD$(JHɹ(HEHT$xH H@HtKHD$@HHD$GHD$8tHD$8;K\$L$H_0%B1HD$@&HD$(T$HD$(HȋT$HHD$(JHɹ(HEHT$xH H@XHHD$@HHD$oFHD$0tHD$0JHD$0H\$0f9C2uHL$xHT$HH H@XWfC0\$L$H/%A1HD$@M\$L$He/%A=UB%u11H\$ HtXHD$`DHL$`Pv ʉP H 1ۆZuAtIFHD$xLHtHT$ H1Hh]HD"HD$HD$nI;fUHHf{` =&QsX9u y{X9 ʇKXft`S2s`H)H~'Hɹ(HEHH@I:Hɹ(HEHH@X"fH\$HD$1HH]HJ $趷HD$H\$HD$H\$I;fv`UHH HHDs9H5ZS$H% zHtHD$HD$H ]1H ]HD{ HD$PHD$I;fUHH H &HL$H&H\$1+HD$HH 2H+HD$HHL$H\$H9|H &HL$H&H\$1+HD$HH HߜHD$HHL$H\$H9|$-'H ]@;I;fUHH 6%9 6%uKH Q5%Hu) 6%6%9wH -6%H.6%12u ,'H]Hw 蛵HH9} H46tH9}1OI;fUHH H|$HfD@H&HHHH@HHt>HHH%H)HHHHHپH=s9H 11@Ht@t H ]@11H ]1H ]HH@fHD$0H\$8HL$@gbH 9HD$0g肄f蛂6H ŌHD$8;HHE 誌HD$@DH]E 芌EHrF HL$8H|$@H~E HL$0HIF0ƀ"H+ 葳HD$H\$HL$H|$ @t$(LD$0HD$H\$HL$H|$ t$(LD$0I;fUHHHD$(1H D%蒊IF0HHT$(H HXHD$HD$1DIF0HHD$*`H ?D%H]HD$HD$[L$M;fUHHHL$HD9DyDy Dy0H@fuD9DyDy HDŽ$D$'HDŽ$H H$H$H$H$H$HL$'H$HL$HH$H$; H$~OH@ ):ˁH$H2H$xHL$H110H]H$HH$pHH$xH$`H98H$pH$H$HqH$hHyH$`LL$X~uH1f蛖 H]M H^0H聖HZG H$H$H$(H$H$`H9t@Htv~豀~H$(H@0[?H$H$PF~H\] ՈH$H$PD軈HB 誈H$`f6Q~H$XsUH$hxu!}Ho @[~}H 0;}H$Xs*}H~ =}H$XHsLsFH$hxuC}H -҇}&}HP ?赇p} }Fa}H$hH$H|HA {H$H$fHWA UH$Hȃ~|H$(H@(jHXH$@H$8H$(HJ(H$H$ HcH$0H$8ZH$@SH$H\$0|Ht? 襆H$H\$0蓆H? 肆f;|H$8H$@RHD$@H$(HR(H$H{HB 5H$H$ DH| H$0f蛀H> H$HHT$@H)Up}{SH$(H@(H$H{H;L @蛅H$HHB> f{6{zHV D[{H$(H@ DHUH$@H$8H$(HJ H$H$HcH$0H$8ZH$@QH$H\$()zH= 踄H$H\$(覄H= 蕄PzH$8H$@PHD$8H$(HR H$HyH@ JH$H$5H$H$0~H< H$HHT$8H)q{yH$(H@ H$H)yHTJ 踃H$H+H_< 蚃Uyx&{Ay|$'uH 8ɪxH٫ "SyH2DI;f6UHHHqHz LBLJHR@@t@t HH]HD$XHL$hHT$@LD$0LL$8H|$(=('~FH\$`xH $藂HD$X HS; {6xHL$hH\$`HHT$HL$H\$ HD$l==('~wywH&HL$XHHHH@HHtNHHHHH)HHHHHHH H11Ht{ HT$@H@H9rHDH9sHHtAHT$0HH2}#s]H[Ht$(H HDHL$hHLHHL$81HH]øHH]øHH]H[HYHHH]H2HH@HD$H\$HL$HD$H\$HL$I;fvVUHH(LBEHAt*Au0IPH >$H1Hf蛻HZHL*H(]HD$:HD$I;fKUHH`HD$pH5z&Ht$XH=v&H|$P1HH9LL &AI@HL$HOLD$8A1HH}M ME EtHT$0DL$1HYLHsIHAAEtHL$@LOL\$(M:Ll$ MeHD$pHL$@HT$0HHt$XH|$PLD$8DL$LT$HL\$(MtLd$ H0I{I|$LLHHքuH`]H`]H@HD$aHD$I;f=UHHHHtyH\$0HD$(H^Ht\HD$HHxHL$@IN0IN0HL$8K5HL$HIHT$0H)HT$HD$@ʑHL$HH\$HH]HH]HH2@Ht-H~H9u ~tH9wuۀ~v Ht$(211HD$ Hu^H&HIHHHH@H H΁HڄHH2H HD$@SHL$8ZuAtIFHL$ fHtfHZ'譐H 'H+ 'H 'H 'HT$ H H'H 'Ӕ="'tHD$0H\$(ۊHH]HH]H@c HH:Ht5LGI9uu H9w0tI9I9wuԀvHH11HHD$H\$HD$H\$I;fUHHHH\$`HL$hH|$pHD$XIV0IV0HT$HHt$@L5MH|$8HL$0H\$(D@HEt L@HE1EH@;HuLHH D'袻HD$ HD$ HT$XHHHXHHStHD$ HL$@H5HL$0HT$H\$(Ht$@H|$8IHD$XEHIO I='t.OT O\(Od0MIMSIKMkI{ Mc(K\ KL(K|0AHyAxu4LʄHL$@Hǁ5Ht$XHVHT$HH5HuAtIFHH] HD$H\$HL$H|$ HD$H\$HL$H|$ I;fUHH(HD$8HD$8HؐHHHtHQHHHStHHD$ DHT$8HJHvHD$ nLMMLHH\$ . @H@軃H(]HD$HD$Ld$M;f&UHHH$IV0H<%H$L5%LD$xMN0L$1111E1ҐHLLT$0Ht$@H|$8fL9LMM5MIǃ5HtD[fIeHL$pLd$PH\$hO,[IMIII?M!E|$N,+Mm E9v}D|$,E)DL$,I@M9L\$HKM)MGHI?L!I<H H0 LLL@[H\$hCHT$HLD$PA)P8I|$ HR0 LLپ"H\$hSLD$PAPSA@{ftH|$8H$HH|$8HE1H\$PMtBAxtHt$@9H|$`H\$XH$H@LHt$@HH\$XH|$`Ht$@H$HL$pH$LD$xL$LT$0IfIIIIDHt)蔀H|$8HH$Ht$@L$LT$0HtHHxfHHLH9 %u@HHAHAuAtIFHĐ]H7 4;HD$aHD$I;f-UHH HD$0HHD$HL$0HQ@H9vH9v H)H1҅t<5'AAN)9Gօv t!HD$D$1+HD$όH ]Ht$HH\$D$9s'H@HtHH뼐HD$yHD$H ]HD$@HD$I;fUHHHD$(HHD$趇HL$(1ۇ5'N)9Gޅu u\$v HD$贋1D$ H=DD$ L$9rH]HD$fHD$1I;fUHH0#HH2%H 1ɇHHHn%I}H"%fLt$(IN0HL$(HI0LHH%ruAtIFHD$1:HD HD(HD0H HLHL$HHD$HO%pH9}THHL$H4IHT H|(LD0=B'ftLL(LT0L\ MgM#MKMSjLt$ IN0HL$ HI0LH1@2r}AnIFahBf;UHHHD$(H|$@HL$8HHH{HD$(H 'HHH\$8HL$@H]UHHHD$(H\$0HHHT$HHHL$H'H HD$(H\$0VH]I;fUHH@H|$hH\$XHL$`HH\$0HHHHt{H\$`HKHtbHL$XH4 HH<HHH!H\$ HHL$8H)Ht$(HH)ѐHH\$(Hv HD$8HD$ H\$XH@]H\$0H@]11H@]HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(I;fvEUHH H|$HHD$0H\$8Ht$PHHD$0H\$8HL$HH|$Pf;H ]HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(yUHH0HL$PHD$@H\$HHù"E11 H@H uBH\$ 0dH @nvd$EWdL4%H\$ H u5cH ;{n6d$EWdL4%1H0]HD$(H\$@HL$HH|$PHD$(H0]I;fUHH HL  'IɐLLv+$='t tHD$0H\$8t[H$H\$D$[EWdL4%|$uHD$0H\$8H +$HD$0H\$8H$H\$D$ EWdL4%|$u HD$0H\$8YE1H*$DHD$0H\$82E1HuHtH\$8H M) {HD$0H\$8='~91ɿ2E1HT$0H9u!HuH\$8H ) /H ]H 4ؓHU ǓHD$H\$HD$H\$(I;fUHH ='H ]HD$0H\$82E1H tp H$`H me EH=&t HPIHZHPHo H$`H q !H=&t HPIHhZHP11H DH~HL$HHo H$`H [ 薨HT$HH='&t HPIH ZHPHFo H$`H d MH=&u L$`#Hd$LPML$`MSISHYHPL6$H$L$L$1H@HL9L$D2E3DrEsDr Es Dr0Es0$PuH$XH$H$H$ 1Ha L A[H$HHH'n H@;H=&t HPIHUHPH$H$XL$&Hh]Bf;6HHCI;fUHH={&HD$(H\$0HL$8H|$@Ht$HHG&^H C&HtyeuqH=8&uC1H 'H&H-&HH &H&=E&u1>H &HQH&H&HQH &H &QHeYH=N&uH\$@Ht$HH|$(LL$0NH\Ht0H|8LD fLL$0M I[H\$@I[IsHt$HIs I{(H|$(I{0MC8LLLD$8LD(H\0Ht8H| H#&H&aH& H]HeSHHHHHHH)HB$ H& HH@|HF pHD$H\$HL$H|$ Ht$(¼HD$H\$HL$H|$ Ht$(I;fv=UHH <&u%1H /&t HhVH]XI;fv-UHHH`H& H]HD$H\$HD$H\$I;fvOUHHHq&[H }&HL$H y&HL$HK&_HD$H\$H]膻L$M;fUHHL$H&M[=&u H$H 3$H$IIKH$H&j_11H$HD$8H&ZH &H&Ht:HL$@H $HL$hHd&_HD$@HL$8H$DH\QH5& nHD$8H$aH$HL$PHHHL$HH&CZL$0H &H &HT$@HJH&H&s^HD$HHL$PH$HHD$@pt$0*D:HD8t$4yHȋ\$0HL$XH$NHet$4HH$11 xT$3tD$2H$HH]HDH9LMH8EDd&E9IuHD$pL$ H &q=&u H$H$H胾IIsHHD$pH$H$H|$xN H;H$AEWdL4%&T$R$ &9} >$H&Hd$HQ$HD$`H$HEWdL4%H$HD$XH$D$8D|$@HD$PHH$HD$8H$H$H$芢EWdL4%HD$PH$H$H ;H$ZEWdL4%0H c$H\$XHc &Hd&H$H$DD$4jHL$XH&3HD$`Ht 1HD$` 8$t&.$1H"$ Hh:BHD$`H& &u a&$$;xH &IF0IF0H$EWdL4%HcT$H $H+L$HHH $H $HH$HD$XH$HD$8H$H$H$ϠEWdL4%HN#11tH$Qu&AtIFHT$`HHT$`HHT$`Ht H$9ןH$11&tT$3tD$2H$HH]DT$4DHD$hIcH$B#Hc -H$d(HY -HD$h'Hb -D$4'*%E#H  TnH]HD$H\$L$HD$H\$L$@;I;fvkUHH8LBLD$(HRHT$0AIHIxIp1 cHT$0HLD$(M@L)HF$LL$$HH&0H8]誟I;fv8UHHHJHL$@;^HT$HZHJHzH]f[I;fv3UHHBHJ=%&tH7I ISH]fLd$M;fUHHH$111 nnQHǀHzHD$hHD$8HD$pHD$hH$f蛝EWdL4%H#11f[q=&I$9z$uGH$Hu1^$D[$A9wH$L$11H#111 m$&H6HT$xƄ$ H25H$HT$xH$謜EWdL4%=&tH"#11epD&uEWdL4%H$HD$0H$IN0Hǁ=&tH IH6 HD$8D|$@HD$PHHD$hHD$8HD$pHD$hH$EWdL4%HD$PHX$HY$D$/HHD$XHD$/HD$`HD$XH$蘛EWdL4%D$/u=$tn=$uet &$IF0Hǀ=&mH I YH$11nHĐ]f1H 5&H&1HL$0,CN$9Hs$11nHc &=e$H&H\$0D$8H\$@HL$HH|$PHĐ]ÃbHL9}L E fEtL9}1ƛAI;fvuUHH0HBHD$(EWdL4%Hc@$H $HT$(H+JHH $H $HJHzHr1]HL$(H+AH#$H0]D蛚vI;fUHH0HJHL$(H$HT$ H$H\$1HD$HHL$(HT$ H\$H9}1HD$HHD$蚶HD$HX(uHD$(H0]lI;fv8UHHHJHL$@{XHT$HZHJHzH]f蛙I;fvSUHH HrHt$JIV0HHD$RHD$cHD$ NH ]"fI;fUHHuVQv?Qw H@JwH@HtHA %|H]øH]1H]øH]HT$HJHHt"HL$HA`{@t۸H]1H]HD$@ۘHD$1I;fUHH0 C$L$ Ht$He$L$ HH95H5$H9bHT$H\$H j$HtHL$HH|$HHL$HHL$ HHT$H9H,$H9HL$ H$HHD$(YtH $HT$fH9H$H4H|$ H9=&tH %I3IKH4H $H9sfH $=&uHt$(HHt$(I3I[H4HHD$9sH$H $H0]C;61,AI;fUUHH0H $H9 $t/uH$H+$H$H$1H0]øH0]HT$HH5^$H9}pH5$fH9HT$H5s$HHD$( JHT$(f@t@u H@zw@wH@GH $H)H $1H $H $H0]HT$HB f{aHL$HQHHu+HT$ HB`ZaHL$ HQHHu ²蛕L$@M;f UHH8H$PH$HH$@D$?H5&&uˆz&H;&H$EWdL4%IF0H $H$IF0Hǀ=,&tHIH$H? Hƀ"HH$f{MHH$H$H$H$H$˒EWdL4%D$%HH$(HT$%H$0H$(H$茒EWdL4%H$Ƃ"H$H=$u11eDHt_H$ΙH$Pv ʉPH 1@2ruAtIFH$Hǁ=&ftH蒬IHǁ=ѽ& H&H&H)H$yEWdL4%EWdL4%H$H$(Hiʚ;HcHH$H$@HH)Hv$Hg$H @&HHHS&HH6&H G$H5(&H &H &HH#$H&H$HHH)Hc$HH 4$H 5$H$謬H$H+$WH*H7$WH*^&1H a&H1H \&H1H o$H=$ti&H$1Q&H$H$5HO&kH&H$!&QHH:R)э IH& tŐ$uPH5Ѻ$„t؋O&O&t$%@tJ @t, $$=$tH'f/D$>H H$HD$>H$H$H$D$?$H$@H$H$HH$H$PH$ H$H$f蛎EWdL4%IH&H$tEWdL4%=&~H=&T1HH H$Ƅ$"H&H$H$H$EWdL4%$uHF$$=k&1Y&$8HD$&D8DxH$H+g&HHil7HHHH sH|THHHHHH4H4H)H.Hs0@t &HqHuD %.fH$8H,H$H0T&2&H$0H\&HHHH$H$H$(H H$0fHC jH$H$(UH DH$H)&|$>tuH[5 @VH DH,$H$D9DyH $H$H $H$H $H$1rHH)HD$&HHHHHD$`gH$H$(H$H$(f;H$HH$H}_H$H̀H$fHeH$PJHw H$PH$@)HB D[H&H &H&HѐH&H$XD;D{D{Hc$H5$H+5$HH$XH$`H$hH$pHcp$H $H+ ~$HH$x1fHD$&HtHHHD$@H$H$(/ H$H$(u H$HfHH$HHHXH$Ht9Hb H R H$H$2 H "f H$H&HH$0H&H m$HH$ H b$HH$H W$HH$H t&HH$HH$Hc$H$P Hx wH$ H6 YH$lH ;H$NHb fH$.H fH$0H fH$H fH$PNH| fV =g$t H w2   # =&~5|IN0ZuH&--=&fDH)ؐH $H$Hl$H5m$HHL1LAI5HH9|H$H$H$ HE H$4HB H$H$H)HHL@H J H$'H ز$H$H$H$D=$= &tH$IH$Hd$@+H$1/H$(H$HH$HH$(HH$H9|H&gH=@vHH$舅EWdL4%H#11JYH#119YH$~uAtIFH8]躣赣Hxj 5D:H 3:H9% ":D$H\$HL$H|$ ID$H\$HL$H|$ I;fvSUHH HrHt$JIV0HHD$>HD$OHD$ :H ]"fI;fvEUHH(HBZHJ Hz(Hr0HRT$DM$DC$GH(]谄I;fUHHH $HRHT$H $= &~H肅HT$=N&~ /HT$1H& &u &H$ HL$H]f[I;fvUHHHBI H]軃I;fAUHH( &9 &~ZIN0IN0HL$H sHL$ruAtIFHD$ fH(]HD$ 1l&HD$ &9 y&IN0IN0HL$H^ MH H=&uHL$ 谜HL$ I HH@۱HL$ZfD_AQIFCH(]I;fvUHHHB)H]I;f!UHHxH$Lt$HIN0Hǁ=˯&tHf軛IHt HH {LHL$HHQ0Hǂ=&tHrI3HD$XHǂHHIN0IN0HHH$H"rHH\$X 15IV0IV0LD$XIPHT$HLJ0M==&DAI@LL$P;EWdL4%H$HD$0HL$PHHH@u5H8H=@uHH!H=H81҈T$'HHD$`HD$HHD$hHD$PHD$pHD$`H$AEWdL4%莰EWdL4%HD$PH@H $HL$(HD$0HH)HT$8H5&H͌D$'tHD$PH8HL$(jHD$PH@uHL$8H0Hǀ@AHD$XHHZuAtIF1ɐHHXH( 3AI@HD$@nH f HD$@HB &63HD$kHD$I;fsUHH@HrHt$(HBHD$0-8HD$(H@Ht>HtHHX>HX >@HXHD$8=HL$0HD$(HD$H\$L$ HtuH$HL$T$ Ht6&H?6&H(6&H Y6&HZ6&=&tH :6&IIKH'6&1HE5&H 1H@5&H H3%@1H $ HL$@HuFH{3%H4&Hb3%f[H Ğ$HL$(H$HT$ 1oH$=$t$H$1۹M!Hd$@1H0]HD$H HA8AkHD$HHL$(HT$ H9|eDHu51.uY&QHH:R)э IHӟ& tCdH0]H@ )(HD$HD$I;fUHHH bH1%H %4&HL$H 4&HL$H1%HL$HT$1f0HބHD;D{D{ D{0H@uHH9}HH5V3&H@rH$H'&H8$H]H@DI;foUHH0H$HtHH f$HL$(Hb$HT$11HHH9}8H4=Ƞ&tHD$Ht$ H1 HD$HL$(HT$Ht$ 뻐HS$.H O$ HAHHtHQ=j&tHY@[Iу=O&tH $AI H$H$%H$H $HA HHtHQ =&tHY IfЃ=ן&tH $ɋI H$H$H0]Brf{UHHD$Hr#HHil7HHHH{HHHHLOM9uL9v(D7.LOH9vH0>H)H7H)]蓍莍艍I;fvsUHHH12@@tA8Zt+HT$\$0HHL$0HT$JBH]H3G -#HL /#HD$\$HL$oHD$\$HL$D[I;fUHHxtdHP8@H9*HD$(H\$0HH)HcPDH1ې;HD$(H\$0HX8@1ɇfuH]H "HK /"HD$H\$oHD$H\$TI;fvqUHHH1„uH]Àyu5HL$Hc1HT$ uH]H ;"H *"HD$H\$ZnHD$H\$kI;fUHHPHP8fH9HH)HcPDHHHP8HP HtHHHP HאHP0HtIHHP0IЀxuFHD$`H\$hHt$MN0AL r$LL$HLn$LT$8M^0L\$@1eHP]ÀxtWH* YH,HL)H)HH+HP]HL$0HHD$`H\$hHt$LL$HLT$8L\$@L9HL$0LD$ H|$(IɄH8v<w u LD$ H|$(HT$ LH|$(<wHT$(H<LD$ v<u\Hg$HHHT$ L2H|$(OADJEAIFH HD$H\$:lHD$H\$HPHpH)HH)H~5H9r-H)HHHHHHHtHH &H@H}IH)H9wH@HII)L)HpHtHu H1ɆI;fUHHH12@@HT$L$8HL$8HT$JDHcHiʚ;HJHrH9vHJHJ@1 &J@ s HJ1@11ɇ uH]H8 HK3 ({HD$H\$L$jHD$H\$L$1HАHHH=tmHH!HH!H HH)H9HLHt3IH=II!I ѐHHL @@tLH1H1HI;fAUHHHАHHH=8HH1H:ADEtHH!HH!H HH)H9ֺHLHtTuHʙ&H:SwH&H#u*H$HHH&HH]H]HK 3\$0HT$H% ;D$0NHg fHD$1HXV >VHD$\$HL$hHD$\$HL$I;fUHH H7$H58$1$H<H AD@HAH9|H $HL$H# H5HL$HQH5؏$H=ُ$1E1HH9}|L ސEfDAuEAA v(I9s_=&tNM MSN I말H9s2=Ԕ&tLM MSL H|HzHH ]d@[5gI;fUHD=›$H$Ht HH@111HH9~^HHH+HH@H95q$}H5h$HH+HHH9O$}HF$H&&H &&HO&&HP&&=&tH/&&I ISH &&HH$=$uLH!$H $H+$H,$=m&tH $@{I ISH $H$A@{H$H $=&&tH Ś$8IIKH$H={$H$He$1H #$H:$H;$H<$HE$HH $F$H$H :$H $@($H$ @$H$@$]DdI;fUHH0 `$^$f9w/HD$H HL$ HL$HL$(HD$ H0]ÉL$T$D;D$Hͪ @D$HI @VH} @d6I;fUHH(HJHH9$~tHBHH(]H(]HD$8HL$ HHL$D$KH HD$8PHC @HD$H4 DHD$ H D{D$Q 'H HD$KbHD$Ld$M;fNUHHH$$$HD$89$w89$v0H$Ht LHR1E1LD$xHT$01D9N$w39J$v+Hن$Ht LHR1E1HT$(LD$p1u H&u H$,$9r9$v)1і$99ǖ$H5ʖ$)H9H$HڐtuHuH)$HH 3H$H$HL$8H$H$H$H$f_EWdL4%H&HH$_EWdL4%1Ht&HL$8HtH$t HD$8{HD$8HĠ]}$HD$h$HD$`$HD$XZH HD$h@H HD$`DHY HD$XDH] EHS HT$HDBEH K@HH &H1H'HT$HHRH$$Hu1HT$@DBEHKHH &H1H7'HT$@HH$$Hu1mHt$PILLM)H8@$)LHL:HD$8Ht$PHH$$HT$($LD$pH9Hp&Ht$PILLM)H(ē$)LHLHD$8Ht$PHH$$HT$0$LD$xH9H&}HD$\$L$q^HD$\$L${I;fUHH@HBIv0HHzHRH9uDAAfE1HD$ H|$8HT$(Ht$DD$fEtHHD$ @uuHT$ uyL$\$HD$0HH\$(HL$8HHL$ ƁHD$0\$L$L$ftHD$H@]HD$ ƀH@]H @u\I;fvYUHH0HHH9w1H0]HH LIH)HM9HBHT$(H1L$HD$(H0]HD$H\$HL$H|$ Ht$(\HD$H\$HL$H|$ Ht$(eI;fUHHXH=$D;H 4$6$HL$@T$HH$$H$bHL$@Ht1)HX]HL$PHHYf[pHD$PD8HHuHL$@HL$ L$HL$HD$H$HL$ HL$(HT$HT$0\$\$8DHt*H $HHL$(H q$ s$L$8 i$H@$HX]8[I;fUHHxH&HH?HH8HD$PIF0HHXH\$X;HD$(HD$PHD$(WH*H-&fHnYH,HL$PHHH@t/=|&uHD$PHD$PHhIIKH~EWdL4%HD$PH@0HH$HL$ HH)HD$8H(HL$0u"H\$H8HٻHD$8H\$H(H~)H &H H~&HL$8Hǁ(H@]HǀH@]HD$H\$胋HD$H\$I;fv\UHHHQ$H M$W$D=?$E$HL$T$HD$RTH$$H]MI;fUHH(H͂$D{ -x&Lt$ H$L$D $IdžL$Mt MM MLt$LT$ Lo$q$L&M~;LN$HO$D P$Ht 1ɐHH$21H(]ÐHzH$H(]ÐHہ$H(]{LI;fiUHH(H=$t8WH*H &fHnYH,HL$H`$HD$6H |&HH(]Ht$ HǂH11f{HD$ H$HfDHHt&HH5$fHu H$ $HHH}HHǂH $Ht HHHѐH$HːH$$1H~+WH*H ԃ&fHnYH,ȐH~&H H@$SH(]HD$JHD$yL$pM;fUHHH$ wt*ZsD LfDH9LHhMuLH8LPM)HR0HL5H5Hxht1`t1St1Eu.fH/L #At1H$ L$u ƀf9yH$H$ L$H$D>D~D~ D~0D~@HLHH$L$HxPt HPH #H߻H$HT$8D:DzDz Dz0Dz@DzPHHHHE1H& u 1H]ÐH$HH$KH H$MHҒ H$H fH$)DH HD$8H$H$ YHD$8H|$HuH$LB( L$1L$fu M@ L$H$HHxt-HH #H$ H$ H$H$Hx t-H H E#H$ H$H$L$A8AH$H #H$ H$H$@HZ HtH$1|H$H$1KH$H$}HtzH$H)H$Ht#DA9vHRDJED9rHR1HtLBMtE1ɐLJMHҍ#qHHH$H@7H$HuH$u'H$uH$uH$H]H HHHt.L9@wL9HwL9wL9v1AI H8H$McAt HLH$ H$rHLH$ H$ H/AbH\ H$HH$Hy :H$H2 H$.H fH$H: 3L$4HH$H H$H H$HY gD$4H DHD$H\$ HD$H\$I;f UHHPHHt z(AHAt z(1HD$`H\$hHL$p{E@1zHt$@LD$0~DH|$HL$,HcHLD$`I@8H)HH|$pHt$hH L$,Ht$@H|$HLD$0~,HT$`HB@HcHHH|$pHt$hY Ht$@LD$0HT$`Hz8D1DD$+T$*LH8Mt9LP(M)Mv-LHHL1 HD$`HL$pT$*H\$hDD$+uHt HT$`HR@H1H|$pHt$hH; D$+u D$*t HD$h@ HD$h@HP]HP]HGDI9~HHD H LR8E|LR@McK H9Z(wH|$8HD$hyHT$`Ht$@H|$8LD$0HD$H\$HL$yAHD$H\$HL$̀=:v$t u$u$#H u$ u$9Ë u$9v!qH=u$7@@t݉Ȼ11I;fMUHH`='n&&IN0HHQ0HHfH t/s H=RHL5IEL 1IHD$pH\$xHL$HH|$PHHT$XD t$Dt$E9v;Ht$LD$ ADL$mHL$HHT$XH\$xHIHD$pH|$Pt2sA&D $EtA`5AE1EHt$@LD$ H=r$u(NHD$pHL$HHT$XH\$xHt$@H|$PLD$ LHMt%MQMtMZMYIqOLE1MDHD9HuE1EANT DHMt E1D;Ht1dHD$pHt1ɐGYZHD$pHt1&HD$(HD$pHu HD$pH#HHD$(HHHHHHHT$XH\$xHt$@H|$PLD$ IIHD$pHL$HE1MuM;HL'% HL6H\$pQt!ƃQ=h&uHu&0CH\$pHH@HH5Kv&HHL$xrHD$@%HHHL$@H)D[HL$xH\$p1HHHǃHH|$ H)HIHT$PHu1*H|$8HD$0HHL$xHT$PH\$pH|$8HD$0@u1HǠ:HT$Pf.HL$xHT$PHD$@H|$ HHHD$pHHH~2Hcu&H sHHH)HD$pHǀHH`]HYHHL$HHT$XH\$xHt$H|$PLD$ DL$t3sA)Dʁ$fEtA`5AE1ҐEiL$HD$pYHT$PHu1 HHT$PuAH\$pQCƃQ=f&/Hs& AHT$PH\$pHD$pH\$xHt$HD$pHL$HHT$XH\$xHt$H|$PLD$ @H JHD$H\$z;HD$H\$I;fUHH0=h&HD$@H\$HHHIV0HHHT$( HHT$(H\$Ht1@5v HL$@HIF0ƀ"H QH?MH) #4HD$H\$HL$H|$ Ht$(LD$0P0HD$H\$HL$H|$ Ht$(LD$0MI;fUHH`H$H$H\$xHD$pHHHfH@r1'H5%HHtH H H1HT$ bHD$pH\$xHt H$U萱HD$ HHHpHL$PHbHL$HHHhHL$@H@HD$HV 舻HD$H jHD$PD۷Hb JHD$HD[H *HD$@D;H8 ŰHD$ HcHz#H9~>Hf#HH HL$XHDHD$8*HD$XH\$8軺Vq=L$H1{ 蕺D$訴HJs w2HD$ HHh@c<uHuH$HA HH$HD$(11&蒯HEx !ۯH`]HH90HrHqH9v HH9rHT$0t!-H u 軹vHT$0H$HHHD$PHr 船HD$pH\$xyHr hHD$0{H\s JHD$PD軵H$HL$0H9u$@{H s  ŮD[薰豮HD$(H$HT$01t/H t 軸vH`]HD$H\$HL$H|$ 7,HD$H\$HL$H|$ UHH=V&=V&@lHPhHpH)H\HHfHw+HH#HfDH?HHR@HXHHH#H3HH HHٿ@:HPhHHw&H#HPH€H?H@:HHHU%HHHH@seHڄHHH HH@u@:IN0HHHPhHH]H@GH?GH?GH 2fH , I;fUHHXH R$HL$PHR$HT$@1HH9HHs8HtH~HtHD$8Ht$0HXH\$HH2u3HT$0HB1HHT$0HBHHt$HI1HfHD$8HL$PHT$@uHX]Ð{)6I;fvSUHHHt4t'D8DxDx Dx0Dx@DxPDx`DxpXH]H #HD$\$L$(HD$\$L$̐P?u8HH?HHHHljދ 2uu@u0HHO?HHHދ 2u1I;f~UHHP2HHpHƀH1'LD@IM!LWHMDL ;LH9sHHHrXbHH]DHD$H\$'HD$H\$ZI;fuUHH =R&$HHHH@r1 H5%HHHH%HH HHAA AHH%Hr@HH)HDL#A HH HfHσIȉAAH?wH HI@@1fDAD Jt1HfHD0H/x# JH@H ]H\$8HD$LD$HbfHD$8HHL$HL$H =P&uxH Z$H\$83H9HY$HrA )|lHY$HcH9vQH Y$H 9ƃQH\$8ƃPH ]øH ]1H ]1H ]1H ]pBifBHDZBH?NBHDBBHD$H\$%HD$H\$cI;fUHHH9Hu1 HT HHHD$ HXHHuuHX$H\$ 3H9vsHX$Hs@ )х|BHX$Hc۾H9v'H jX$H !11H]H]HH]MAhCAHD$$HD$I;fUHHH)Dt@H\@tGHHHH@HǀX+GكvbHeHD$ H\$(HL$ Q1)t@H\$(H\AH]H 1H]ÐHIHtQ q$9tHuf;H]HD$H\$"HD$H\$I;fUHH HD$0\$8HǀHu%HL$0HHHȋ\$8HHudHL$0HI( =GrHD$HËL$8HD$0{t+HD$0HHT$HHQHH ]H ]H .HD$\$!HD$\$I;fUHH9Pr_S s$)֍s(9r1.1H]Í4:DAENDDK(AA!Hs0N9w֍9S$H]H "HD$H\$L$!HD$H\$L$NI;fUHH HHt HD$0H\$8 1H ]HD$0HL$HQHT$HqHuBHL$Ht0HD$HT$8H@@tHt$H@>1H ]H ]HD$H\$5 HD$H\$FI;fUHHH9tLK S$)ʉ)օtX9s(s IځG1DDK(AE!LC0OLD9rߍ<I{ t1H]AApu1 IHAHH]H) HD$H\$CHD$H\$I;f-UHH=I&H+H HI@HtQ q$9tHHD$(H(S$賾HD$(HSHL$HS$H豷HD$H D&H+ D&H D&H D&HT$H HD&HJHD$(HuHǀH1THL$(HǁHR$vH]HO $@H 'HD$@HD$I;fUHH(D$8HR$蛽HC&oHD$ HHQ$;HQ$H H&HT$89BэJu8Ht$ V(HHr&H z 8HT$ HB0HH(]H "D$@D$2I;fv~UHHHD$(HP0X(HHH Xr&7= J&uHD$(HD$(HH05I H@0HH1҆1HH1ɇH 1ɇH$@(D8H]HD$RHD$hI;fUHH HP$D=F&uH P$HtHjP$UH ]HHtbHQ@q@tHL$HT$HAP$HHD$H (B&H+ A&H B&H A&HT$H HA&HT$떐HO$׿H ]l'I;fUHH8IN0HH/dxdvHhH(~H1HHIHHh D$H1Ѕ1H5D$1fDH9H\$0LD$(H5D$41T$L$|$ DL$$DΉT$L$|$ t$$t1 ‰T$7"Ɖ1T$ L$9L$H oN$T$ fDH9H HN$H gH B$T$ H9H B$H fI9=@t$HCHpHu[L$ )х|RHM$HcH9v7H M$H !9H\$0t$LD$(DH8]1H8]6^{6v6Q^l6G^B^HD$7HD$Ld$M;fwUHHHHHr@9@LIDLJ?Lj#GBE1EAH%fDȐI?LD IHȉAAEuFD"L@=qJ&~ KHxAMILHHH]H]H$HL$8@t$7L$L$H5p#B4HiH H$H|$@D?DD D0D@DPD`DpHHQHOH$HHH$H@=*B&H$IfAEfDL9H$HD$8HL8ADL$7IHH$HLHL$@H$H$HH=H&~$H$H HXH$H`H8HcАHH$H$1qH$=H&~L$OJhJpHD$8Ht$@H]H]H$HH$H$H$H9}OH$HH$ouH$1H9HtHH$I1HِH]H2H?2HD2Hs [HD$H\$HD$H\$[I;fvUHH(H%HHHH@8HHH%DH IHAAHHEuDLL$ H|$PAHHHL$M?&11LHFH9HHHMMM\@IM!IM!HMDMDIM!LMtM t E1MHt$H\$Lh'HL$>&H\$Ht$H|$PLL$ IDGHH(] 1H@1HD$f\$HL$H|$ HD$\$HL$H|$ NI;fUHHXH\$pH$HHLAIHFHHHHH$HHHIIDHHRHH=&t 1HHD$0H&H$HHD$0Ht$p1OIHH9}PHA@IDIHAILA L8AH@HL!HH!IrH8fHHL$HHT$P1HfH9}iH4H6HtHD$@Ht$8Hfu,HD$81HhHtHH$I1H+HD$@HL$HHT$PH$HX]HD.H.HD$H\$HL$H|$ HD$H\$HL$H|$ Ld$M;fUHHH$H$f$H$H$1E1IQLD$@HIHDNI9iL$H$D;&Et E1MZL\$XL$$H$H$H$H$LD$@L$D*;&L\$XIH$Ld$HLLLSIMFL$E1ZL$IH$$H$H$H$L$Ld$HL$MIH$MM9L$L$L\$xI˾@HDHL$PHHt$pHHH HL$`HHL%H$HHHt$PH@HLD$pI!IHt$xL!LIMDJHRHH9&t E1L+Ht$hHD$0u"9&H$Ht$hIHD$0LL$`L$1NHcHHHHHHHHH ףp= ףHHH HHHAH9HBHQHHHYA HYxHH ؏YH| WH*HƒHH WH*XY f.vH,\H,H?HAI;fv]UHH H[4 @Huf8ofuxfu H ]ù SHt dH ]H ]I;fUHH H@ f?HtHuf8ofuxfuHH ]H\$HD$5@tH ]nH4C D[yHD$H\$LypoH ?葠FUHH HȐHHH @9}4|9ZHcH H HHH„tH ]1H ]HT$HL$nH1 @xHD$Hc.sH3 f{xHD$Hcs p$nH} 賟I;fUHH HȐHQHH |(HcH H HHH„tH ]H\$HL$;mH0 wHD$Hcf[rH3 wHD$Hcf;r6oQmH| D۞HD$HD$&I;fUHHHH|(HcH H HHHtH]É\$0HL$flH/ vHD$HcqH02 vD$0HckqfnlH{ HD$\$AHD$\$3I;fUHH( $H!&=&tH!&f=&$u11gHtYHD$ HL$ Pv ʉP H 1ۆZuAtIFH"!&fH\$EH!&H c!&H\$H(]n& WH* Yf.vH,\H,H?H5!&H9wHH5U&H H5H&HHH| WH*HHڃHH WH*XH| WH*HʃHH WH*XH 4N&^H| WH*HʃHH WH*XYf.v H,f\H,H?HHHHHe&H HIHH!ʐH &H &HH9s H)H9 6&vHH 5&H H(&HÐHH &HI;fUHHHxq=&u Lt$HT$HHLIIKHD$(HPHk f=&uHL$(HL$(HQIISHA=U&tHP(HX8IIKI[H|HP(HD HP0HH8HA0HD2D0DrDpDr Dp Dr(Dp(HMbP?HA(Hyxu =&t HAxIHw|HAxHu'=&tHIHQ|HHfu&=w&tHiIH'|HH]Hȑ 衙HD$HD$LI;fv`UHH HD$0襅LH\$0H9Ku&CHC 藙H ]H .DHD$PHD$I;fvqUHHHD$(%HD$(xtD1ɇH@HD$D$HHHǁHL$D$HD$[HD$(/H]HD$@HD$qI;fUHH`HD$pD$x{LHD$pH9HAL$xf.v -L$X@(^H,HL$HHxpt膈HL$pHQpH HD$HEWdL4%HD$pH@H $HL$8HT$HH111E1IZH\$pCHv}ʗEWdL4%H$HL$8H)HD$@HD$p{HD$pH@WHD$pHD$@HL$pHYhH~*D$XH,HH9} HAhH)HYhH`]WH*L$XXD$PHHfW*T$PYL$X^HD$pH0 _HL$pA(u$HMbP?HQ(H*HQhHXH`]H~ /AHD$D$pHD$D$DI;fv+UHHHD$%HD$@uH]HD$HD$I;f|UHH HD$0LHD$0H9H? W1H tf.D$HD$HD$0HHЄHL$0HQxH HuaH &HHH1HH| WH*HHH WH*X͂YL$XWH*L$XHHL$HHr'H= &HL$T$ H@Hv H9  &w HH ]H .5p%H -@HD$PHD$fI;fvpUHHHD$ H $HD$ Hz Hi $DH] $HuHL $'H M%HH1 $,HD$DHD$qI;fUHHHHD$XH\$`HL$h@|$pHD$HD$XHH\$`|$pH9\$H# HtoH HL$HL$HL$ HL$XHL$(HD$0H\$8HD$`HD$@HD$H$yEWdL4%HT$hHu1 HHT$h]HD$HH]HD$H\$HL$@|$ HD$H\$HL$|$ I;fv7UHH(HBHZHJ Hz(HRHT$ H+:HT$ HH(]I;fUHH(HD$8H\$@L$H_H&H &H&H&HHSHD$ HL$HT$@{_Hh%  jHD$8H dH`F iHD$@H cHS iHD$ H cH0 iHD$HkdHL$1HcH& i;_D$Hu2= $tI^H~S Si_d $%D^H4- *i^D{^`^IF0QuH&H(]{!HD$H\$L$gHD$H\$L$3I;fUHHpH$H$H$H$H H|$8H l&H HL$0H{H$HHhH$HH\$8H<HT$0HһHDH$H9Hp`H4H?s HH9HH H H\$ LDxAHHt$hJH$HcHuH$H$ HD$HH\$(HH H$HHHt$`HHHt$PHt$ H$HtxH|$hH7HHH$H\$PHL$(艇H$H~H$1DHD$PHH\$(HH HH H\$XH HHt$@H=&H7HHWH&H\$XH&H\$@uH!&)HL$@HHL$XHHH!&H$HyHH$HxH\$`H9v Ht$PHxHL$(HH Ht$`Ht$ HTxHt$hH2H\$HTH$H\$PHL$(16HT$ H$HTxHt$hH2H@@H\$HHL$(FH$HQ}HD$`Hp]H H$H&}1Hp]H HD$H\$HL$H|$ HD$H\$HL$H|$ :I;ftUHHHwsHtgfHu(HUUUUUUUUH!HUUUUUUUUHH H HHHwwwwwwwwH!HwwwwwwwwHH H HDH]Hw^Hu)HH!HHH H HHHH!HHH H HWH u+HH!HHH H H,fDH@uFHH?HH<H H ֐HHKHHH@HH!HH)H HH]H"- 裊HD$H\$HD$H\$dI;fUHH@HL$`HQDHHH@I@HuHHHRHHސH!HHHD$PHL$8HH\$ HHD$PHL$8HT$`H\$ H|BHH H L@HHHtHL$ HHD$PHL$8HT$`H\$ HH H L@HHbHHHT$ HHHIIDLOILWIHLHH HIHHRI@ML!HtHIDHHHHT$(HL$0HH"1HH@]Ht$HHT$(HHL$0fH|RHt$H|$HL$PHH D@H\$`HHHDHHT$H)HJ@HtHT$(HHL$0H5:&LD$8L9IIGIH)H vL@H95 &s:H L1MRHI!@L9rM)H!ΐL9rH)HH HHHHHH@]d@[UHX9 `HD$`ZX1VH1 D軇UH9 E`HD$`[ZWUH| !D{HD$H\$HL$H|$ HD$H\$HL$H|$ I;fUHHLHP0fH|)H5#HHIHIp0„t HII@8H|H#HIP8„tH#IP@AXLL謫H]HD$\$HL$HD$\$HL$@;I;fv8UHH HHڐHp(HHtH9vHP(H ]HD$H\$HL$H|$ IHD$H\$HL$H|$ UHHH0tHH8HH}HHHHHH9=#tD@HLH(IHI11]HDI9L`L9 L M$M$$MIAtȄuDMI DE9u$fAsIAfAAE1 fAAEtL9t1HHH| H?kIH?HLHC?H HH]ÐHH| H#HHH„t11]Hػ]HؐH1H9|HHH@@tHI;fUHH(HPH9HD$8H\$@HHڐHHHHH IH?fDD$fT$t$ @|$$PHHD$HˉHT$8HrH|$@H9s-HL$T$ \$$HH H H HHH(]fHD$H\$HL$HD$H\$HL$I;f4UHH(HPH9HD$8H\$@HL$HH|$PHHڐHHHIH MIA?fDL$fT$t$ DD$$HHHD$HHT$8HrH|$@H9HL$\$ t$$LD$HLL$POM@I IHLHH H H JHHHHHB@fH9sHJ@HB8HHؐHHL@H9sHߐHz8H(]hcHD$H\$HL$H|$ )HD$H\$HL$H|$ @HHH0HHHHX@HHLH9sHېHX0H x#HH@UHHHHH9HH ِH HHH΁HH IHI>fDD$fL$T$@|$ HHfH9s6HL$HH A>II H L HؐHH]D;6I;fUHHH4Hw/9HtfPHffu HHH]H\$0fT$YNH1 XD$RHv XHD$0DRVPqNH "DHD$H\$L$'HD$H\$L$I;fUHHH9w%9HtfPH)fHHH]H\$0fT$rMH0 XD$RH WHD$0QvOMH` DHD$H\$L$GHD$H\$L$4\Yh(Xf.@\f.f.Hf.ΐwH f.wxEWfD.fu{lDHfE.u{]Y^YA^\YXXh(f.uz\f.u zf.u{H@(@0@1ÐH@(@1@1I;fUHHH9DH9XHPtHP(H\$0HT$H HtCHyuSHH Ht H@ v-HT$H\$0HHAHHAH P-DxHL$HH\$0HHAH=sH\ HAH]HSH^ |HD$H\$L$HD$H\$L$I;fUHH8HD$HHL$ D9HHHL$ HH(HL$0HL$(1HHHt H>HtHuIL@ Mt0HT$Ht$H|$L.HD$HHL$0HT$Ht$H|$Hx HH>HtHWLBLGIs9HDH9H8]HH HtH".HL$HHA 11H8]H@HD$HD$I;f(UHHHD$(H\$0HL$8HP8Hu,q+H@HL$(HA0HA8HL$8H\$0HHD$(HrH~iH8LFIH)I?IB| B|$9H?u9HT$+H@HL$HAHL$(HA8LL$0HHHL$8IHZH?s0HHHHrH0I)DL qt$HL(H@@H]H?H )[zH?HD$H\$HL$zHD$H\$HL$I;fUHH@HHL$`HH?HHHL$8H?HD$H\$0HHHL$(H4 Hv Ht$ HzH>uHS1HHL$`Ht$8H)HHHcHT$(Ht$H|$0Ht0HD8HD$ H@]HH1H@]H?HD$H\$HL$pHD$H\$HL$I;f?UHHHD$ @L$#T$ HD$ L$fDT$ HRHr0HHHɹ(HEH l/HHHɹ(HEH ;H] B#T$ D 4# +#كsH #Ät1H]Ð #Hؐ9sHÉH5#tHHH]HD$HD$I;fmUHH09h%tFHؐʁɁJHÉ tс=%H%HHHD$(H&%HD$H*%H)HHL$ %D$DHk OHD$(IHl$ gOHD$ f{IHpI JOHD$D[IH  *OD$@[GH ODH#H0]H0]Hwz #;vHh 1*vHD$\$L$WHD$\$L$dI;fUHH0)Hu # %L$1qH@HH%H4HvHHRXHT$(HPHT$ Hɹ(HEHL$HHL$HT$(H L$HD$ H=|H#f;fH0]Hۖ ,@uUI;feUHH0HD$@=%fu Lt$(HT$(H #LIIKH#H#`#HD$@H[oHZH# t1HAHD$ HtEHHL$ HHeffffffHH?HH9r{THL$ oT%)uH#-`#fD=u/#HYH# t>H#;dS%HD$ǿHD$f{I;fvcUHHxtCKXP@9u)HKXtHػH]11H]11H]HP rHD$H\$(HD$H\$yI;f-UHH@Lt$8IN0#uPH#„t؋Q}%G}%T$D$tHL$8HI0HH@]H{$3HtpHctPX\$9tۍs9tHHD$HD$(tHH HL$0HD$(1tHL$0H|%HH211Ґ;#uƁH=#7@@tхHT$HL$0\$L$H~#T$t6=%~HWH$EWdL4%H# HL$8HI0HD$0H@]ÈL$T$$\$ >HN ID$fCH jID$$CHP PID$ gC@f>Hd pļ@I;fUHH(IN0uu LH9Hؐ 4#ʁu$rHÉH=#7„tЋz% z%HH\$ T$D$uoHD$mHD$u\$L$H#H\$ @HD$1ې{\$L$H#H(]ZEWdL4%H\$ CXL$9t9uH(]HRq ";oHD$pHD$L$`M;fUHHIV0uu LH92HuH5y%t$ @zc@@DFD9BX$0HT$@DD$$=#u11!cHT$@t$ DD$$HH$0HH$HR H HHH9H$Pv ΉPH 1@>~uAtIFHT$@$0t$ DD$$Hz LLx%I:HH$DRbDT$LZhL\$8L$H$L$0DT$L$M@Mh IAH1IHILaLihIN< Iw'IHIĀA$H? IHR@LaHA$IHLAILAAAtjAytL$IH$0IH$H$HAALLLWt$ H$DD$$L\$8Ld$@NM MtM9QsAyuː11LT$h HIt$HHH$H$HL$Wt$ H$DD$$LT$hL\$8Ld$@H$HMHPL9r?DHtmHucH="w%HJIIII@ H IAJ<τIJ<'HAAAD =X#u =b%trHzhHHwHzHǀH@HzHH$Ƅ$HDŽ$Hz@H$Ƅ$HDŽ$1EHzhHfHw-HZHH苎HT$@$0t$ DD$$DT$L\$8J0fDf9J2vnHzHAIB<Lb@A$G$ AA!AEt5LL$HHf; HT$@$0t$ DD$$LL$HDT$L\$8IIJ2HHHL$(11LHH|$pH9siLJHAM D%%EtMHD$PL7HL$(HT$@$0t$ H|$pDD$$DT$L\$8D%U%IHD$PJ`A)fD9fL$fz`fB0fB4=[#t!MN0MDLjhMAMHJHHJ@B2WHL$@HAHHyPtH@{#HL$@H1謖H\$@Kc~SXt$$9oL$ q9Nq9CʇKX{e@$0HL$pDfvSL$HH IHH5t%H 1HIXHҺ(HEH s1H]HC HHKcHs%H1Hd H$H$H$H$裲EWdL4%1H]L$f|$fw$0@L$CdH%L$HHDH HpT$H$HHK%H\$@HKhH$HH Z%H$0ɋT$ t$qHL$pff9K2uQHCH vHH5s%H 1HIXHҺ(HEH fHH vHH5r%H HIHҺ(HEHfHH$H$Ho$H$H$H$۰EWdL4%H]$0uXL$fuYfHH vHH5r%H 1HIXHҺ(HEH f1H]H%HhHL$8H`Ha%H\$8H ~%HH=w%~,HL$@HApHAHHِHU%H 3JHH$HD$@H$Hn$H$H$H$蔯EWdL4%H]H HHHDHfH *jdHZ YdH$CXH$;2H' <H$f6H <H$f6H <D$ 6462Hu 'cfDL$H$H$B2HD$x1H *<HD$xD;6H  <H$f6H- ;D$D5H ;H$f5V3q1HG[ DbHz2HHH9HzH<9LJ@AF ADtHL$XHHL$XHT$@$0t$ DD$$DT$L\$8H$Hz2H9H$D$?D=z0H9$r$L$E AHJhHHJ=*#HD$`HL$0=#fu1E16үHL$0HT$@t$ DD$$DT$L\$8HIHD$`$0HL$LHdNH$Pv ΉPH 1@>~uAtIFHD$`HL$0HT$@$0t$ DD$$DT$L\$8=D%t1q$@uH$Ƅ$ @$H$$@uH$Ƅ$3@$$9ᆳHL9rH@H$HHPL9DHAMl$I\@AtH$HH$HH$H$HLEKt$ H$DD$$LT$hL\$8Ld$@DeH?O*@H$BXH$-H" f[8H$n2H= f;8H$N2H f8D$ 22/-HaA W_HF F_HD$\$wHD$\$I;fUHH8HBHD$ HBHD$藬t?讬HD$0H\$(@;t#HD$0H\$(HL$IHD$0H\$(4HD$ JHD$ H\$13HD$ NH8]"f[I;fUHH8HBHD$ HBHD$׫t?HD$0H\$(@{t#HD$0H\$(HL$#IHD$0H\$(tHD$ IHD$ H\$173HD$ -NH8]bf[I;fvzUHHHJHQH5%H9uIHL$H g$IH%H\$6H%H\$F8Hf$MH]Hd $!]軨vI;fUHHpH$*H$HHhHL$8@0HD$0*Hd $Q5H$HH4H *5HD$8D;/H 5HD$0D/H Q4*H$HHhHHwHHHH@HHHHL$@D$HHD$PHH@HL$XD$`HD$h1fHD$hHL$ HH$P2DH9HL$ HPhHHPHT$()HD$(0)H$H0HT$ H9sHL$X\$` L$t!P)H{ @3)/)H` 3v)HD$@L$Ht%D(H 3E)(H j3%)HD$@L$Ht D$1D$@t(Ht &3({(*(D$t-H$HZhHHGHD$(1DL$Hu HD$@D$HɈL$HHD$PL$`uHD$XD$`@ɈL$`H@ @YHD$HD$I;fUHH0d%Wf.uHD$@H\$H=#u11YHHHD$@H\$HHt{HT$ HHԭHL$ Pv ʉPH 1@2ruAtIFHD$@H\$HH0]HD$@H\$HH c%HB%H5c%HH)HH9HHGH| WH*HƒHH WH*XHL$ c%YH,H)HT$HHT$H\$HHt$@H=hc%H)H9}-HtH Vc%HT$H9tCHKc%=4#u11HtYHD$((HL$(Pv BP H 1҆PuAtIFH0]HD$H\$HD$H\$̐ #u Hb%sH %H)HHSb%HCb%H)H= HLHHAb%.WH*WH*^"b%H b%Hb%HI;fv4UHHD$HL$HA HuHL$HA]HD$ۢHD$I;fUHHHD$ H\$(HHHtoHyu^HPHPHHHJHu>HL$HHL$ ƁP9HL$ HAHT$HH\$(HH@1HHL$ HQHH\$(1HJHs$H\HB@t=%uƀQH]HHD$H\$ǡHD$H\$I;fUHHHH\$`HtAHD$XHPHu/H|$pH\$`HL$hBHL$XHQHHL$hH\$`H|$p1'HH]LJL)IIMII?M!LL)HH|$8HL$0H\$@AHzHL$XƁPHL$XHQHQHAHHL$0H\$@H|$8LBItMMIII?M!NM@L9LLL9:HT$ LL$(@t$LHLHD$XHL$0HT$ H\$@t$H|$8LL$(@t=%uƀQHH]H*HD$H\$HL$H|$ HD$H\$HL$H|$ 7I;fUHHHD$(HHDHuvHL$(HQHHHyfuOHHHPHHHPHyu8HL$f;HtHD$HD$gHL$HT$(HJ1H]HQHZHYHs HDH]HDHD$HD$&I;f{UHHHD$ HPDHtdHzuHHL$ HfHL$ ƁPHAHAHxu HD$ HD$ ƀPH@P+PwH0@1Ʉu]X+XtHb{HD$ )х|}H#Hc۾H9vbH #H 1ƀPH@HtHU#H Hǀ@HHHtH%H HǀHH]覺!HRHtr z$9tHD"HD$QHD$gI;fUHHHHHtoHD$HPHzu'Hy~HFHL$HAƁP(H]HfHL$ƁPHL$HA=y%uƁQH]H]HD$覜HD$[HHHtHyuHHHyt11H+Hw H01ÐHIHtQ Y$9tHI;fUHHHH=n#u1fH_#2Ht HxfHHD$H=~#tJHk#;Hg#H\$HtHV#(H\$HU#H*H/#?H|$ujH+HD$8HD$HD$@HD$8H$ΙEWdL4%H|$H#';H\$H#)H#h?11HH]HHD$(HHwPHD$HT$(HL$ HL$HIHHD$0H@1HL$HuHD$0HD$0HD$ HH@ ;NH *Nd@;I;fv5UHH HRHT$HW$HT$HH ]D[I;fv7UHHHxuHH(#;0H]H dMHD$虙HD$I;fv7UHHHxtHH#/H]HJ MHD$9HD$I;fvAUHHH+#0HtHxtH]1H]H LԘI;fUHH HD$0HL$0HQHH?HHH)HYHPHYHs2HD$HHH[HHHD$0HD$H ]HXHD$-HD$cI;fUHHH#D7H=#HJ#H #Hu"H}#(MH<>HM9wMLl$hHt$PL\$`LD$@L$H$LL$XE1IH$LT$pfM9K'H$fM9VEE1HIH$1E1E11E1E1LD$@L$Ht$h#HL$hDHtH\$@H1H$HH$H$GHt1[H$H$uH$'1HĠ]HD$XH$H$uGHHL$XH\$@HD$hHL$XH$HuH$HH$H$"'H\$@HL$XL$HD$hHl%D%Et1E1!L%IMI)L9IBAL%%ItXfHvDL-$%L=-%MIM9sM)L9IGH9HBL$M%L$ML$M L$MH\$@HD$hL$HD\$7HT$`觱EWdL4%H$HD$8H$H8H=HT$xu#HH!I`I L8H$HH\$`H _|$7譡H?%HEWdL4%H $HT$x@u&HL$HH$H8@HL$HHT$8H)Hw%H HD$hH\$@L$$$HL$IH$LH$H H\$PHT$@Ht=HD$hHHHT$pHg%H 腠H6%H\$pԘHT$@H\$PH)H %H踘$uH%H\$P蛘H%OHL$@HHHHP$uHL$PHHf"u HL$PHHu HL$PHH Hu%谙=z#=l#u11/HtgH$H$H$Pv NP H 1ۆYuAtIFH$HĠ]HQ +2HHD$H\$L$@|$HD$H\$L$|$I;fUHH(HD$8H\$@L$H@|$IHt$PLD$XLL$`HHL[ HD$8H\$PHL$X'=s%uHL$XHL$XHH Ht$`DH9tt H|$@GdH|$@T$Hft!HG(fG2HwcAD \$I_bHH uHGhfG2G\tHHDL|"EXLGhMHIAAMFIw@u HHIL)Mj1IfG2H#"W\fG0fG4HG8G2DHL$@HAHA2HcHL$ DH|$@HG@HOhW2HHOHOpHD$8@OXHT$ HL$XH_HD$8T$HHD$@HHH;%HHHH@stHڄHHH4HH @>H@hHH=wHH @8HD$8HL$XH`D軒H(]H@)HDHD$H\$L$@|$Ht$ LD$(LL$0{HD$H\$L$|$Ht$ LD$(LL$0Ld$M;fGUHHĀHHT$hL%HHH L OMRIM!L9rL9H$H\$HHH0W)HSHL$ML9uHIHT$h1DII)Mu1HT$xH\$PLL$@LH %H= ;HT%ϓHT$@HPH=%xH$HPHHHL$@#HT$xH\$PL$HD$@IIIIHT$hHu%H+ %H /%H %HT$8H H%H!%H%aH %H+ k%H %H t%HT$8H He%HՇ%WHHHH{H% H %H+ [%H %H d%HT$8H HU%H|%/H(]H xHD$H\$HL$]HD$H\$HL$oI;fUHH8H w%HP?HHtHHHHHtH15HHH@Hv1H)HTH HIHHt$0H\$(Hߋ%H %HtHH\$0HH H\$0t Ht$(1ɐ>HT$(HHHHv1fH)HH HIfDHHH [%HtHHt$0HHHt$0@t H|$(18HT$(HHHfHv1H)HH HIHHtHH Ht12HH8HHv1H)HH HIHHL$H v%HHH k%HHO%HD$H8]HL$H ;%HHH0%H%zHD$H8]HL$ H%[HD$ H8]HH8]H HwHwHwHwHD$ZHD$I;fUHHHe%D[H t%HtHP%HuGH D%H M%H N%H 7%H 8%1H'%H H %fH]HHYHuHQH %H %YTI;fUHH0H=%Ht!H|$ HWH% 1HHD$ KHx%H%H 6tHt%HD$(HC%;HD$(D8H0]HV  YPI;f|UHH H"HH\$8@|$H=#%tH 5rI ISHD$0HL$@H HHOcHD$0\$HD'H ,"HD$0Hx=%uHt$8HqHt$8I3ISHH\$HHL$@裄HT$0H(t$H@1H ]HT$H1 JHL$HH@HH!@{H  DHD* +D; HD$H\$HL$@|$ aWHD$H\$HL$|$ HI;f|UHHhHD$xH$HHT$`H H?HHL$0HH\$(HHHT$Pw'HT$xH HD$`H\$(HL$0HT$xH(HH|$PIHH\$0II@HtH9vHH|$HILL$@L9sLHD$(_HL$xHHHHHHFcHD$xHxHHHT$PH9vH\$(HxH\$(HL$H7HTxHH2H@@1۹6HL$8HHD$xH\$(HT$@H9HH H Ht$8LDxMuHL$ H H @;pHtyHT$x1u/HD$X0t v vHD$XHT$xHt$ HDxHHHt$8@H$H 1Hh]HH H DqHD$H\$HL$THD$H\$HL$RI;fTUHH`HD$pH$[HD$p0u[ƀ0H\$0D;D{D{H HL$PHZfHq$lHL$pHHHt$(1HG$BH`]HHH9HD$ HT$XH:ILLJLL$H#?H|$HDxotH|$HHD$ HL$pHT$XHt$(ILL$IOI#L9mfH rH`]H CpHD$XHD$Ld$M;fNUHHH$H HIIL$MIL$ILH$IHL9@H$@uHphHt$0LX`L$aLI#HX`I @$H$HPhHT$8JTxHH v6HL$8H$fH9H$HH$LGpH$I9xLJL9fLW`I)II)IPHIH?L!JLID$Eu 1HIL+oHL$8H$H$H$THHhDL9=HH`LI#J I  HL$(JLxHHT5HL$(H9t'H$HrhL$L9Hr`J Hİ]H$L$ HLMHiaHD$PL 8"I IHMIL%"MlLl$HL=P"I|H|$@H@HI!H!ILD$`1LHH|$@LD$`L ؝"L$L$L%"Ll$HL="Ht$xHD$PfL99Ht$XL$'H@L|(LHLd$XM\$L\$xILTH@MM!L!M9I9rxH\$pI)I)LIHI?I!K:LeHT$pH$LDHLL$XM9s+NʐI9tJʸD$'Hİ]5l0l+l&lH llH$IH#fDH sLHLxIAJ3HL$8H$H9vH$HH$kH @kI@LHI9DfvkqklkH D[kL$ILAH$H$Ht$0L$L$fDI9ZLI I s7HL$hJTxHH(2HL$hHT$0H9zjH jHD$H\$HL$@|$ @t$!MHD$H\$HL$|$ t$!gLd$M;fUHHH$H$H$H H4 H HIHHIHH|$hILIHIA??I LT$`H H9MI#I -LL$XHt$PHL$HIHHL$@HH$JTxHT$xIAL\$8JH@@L.HD$0HT$8Ht$xHH\$`HL$@5H$H\$hHL$@{HT$hHHD$0"LI#I HH$L)HHL$@JTxHT$xHHt$8H2H@@L.HD$0HT$8Ht$xHH\$`HL$@l4H$H\$hHL$@zHD$0HD$ H$H$H$GHD$ H HĈ]H IhHT$ HT$pD:DzDz Dz0H$H\$(tzHT$(HHD$ HD$ Ht$PH9HH fH $H|$(H$HTxHT$xHH|$8HH@@HD$p1۹,HT$ HHt$8H|$xH1 HHH|HT$XHH#H HL$HHHL$@H$HTxHT$xHH|$8H:H@@1I,HD$0HT$xHt$8H1HL$@2H$H\$PHL$@3yHT$0Ht$ HD+H fH fH fHD$H\$HL$bIHD$H\$HL$I;fUHHHHـ1u0HF%Ht$HDH@s4H Ht HH]HTtH]H"H]H@eHD$H\$HHD$H\$XL$XM;f UHH H$0H$8H5"H="H$H$H5 H$H$H$111H%H$HH$0H$HH@H3H|$pLJ"M ILAIHO$RNlL="Ks1QfH u H HH ށH*H HH@IJHH%HL$HHH\$hHt$ H|$`1HP]H@HtQH9zuH9ruH9Z uHT$(HАHL$xH9tHL$HHT$(H\$hHt$ H|$`HT$p1HH\$xfHD$8qHL$xH9HOHL$pH9tHHHH 3HL$ HT$8HJHL$hHJ HL$`Hu H06#Hu H16#H 6#HL$HHHHHZHHHH=%f;HD$8HP]HH9~-H%H HL$H2<%EHD$:D$ 1HD$腴H<%wH] GI;fUHHHs|HL$H3#bHT$H*HL$HHHH[0H4Hv H| H8H|(HxH|0HxHxH|8HxD>D;HT$HRHuH],D$[D$RI;fUHHpHH`H5NA%Hc@H9PH$H$H$HH9%H$LDJAMI!G ID)L9T$4HH$HLAHD$8@T$4HHD$HHHT$@HD<%HHD$P%HL$@HT$HHD H$H\ 0HD$Pf[H HL$XH$HL$`HL$8HL$hHL$XH $J EWdL4%Hp]Hp]***HD$H\$HL$ HD$H\$HL$9I;fvUHHHZHBeH] I;fUHH(H\$@ 7%L$ YL$ QHH!R)HsQHD$HHL$H :%HHD$ 讬HL$HT$HD (H\$@H\ 8HD$ H(])HD$H\$k HD$H\$;HH9IN0HhH/dxdvHH(~H1IHIHH1ЉHLhIN0HhH7H(~H1HIHH1ЉH11HLhL91Ʉt1øI;fRUHH@==%HL$`HHD$PH\$XH|$hLt$8IV0IV0HT$0=[=%uH tcLMt2LL$8M9t(HHHLHHHHHHHqLDMt{MM9tsHLM@@MLIMI0MIY`LHHIxHHH?LHHGHPB'HL$0HHHHL$`HH)HHHHHHT$0HH9wZHH\$XHLD$hHD$PHT$0DEQDAuAtIFH@]H@]&&&fHn 誕HD$`D;VHz HD$H\$HL$H|$ HD$H\$HL$H|$ rI;fUHH`H$H$11HH9wHnLCHH9LHHT$ @t$H\$XHD$8I@HD$(HL$([HD$@H\$HHL$PHD$8L$HT$ -HT$ HD$0HD$@HnHHD$0L$HT$ H}LD$@MtE@(&E1!LD$PALcIIGDD$DAu tt lH~HL$L$1L$DI9~vVLWL$MHL$I9%H\$XH$H$}HH`]HH`];$H/$*$HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(I;fvlUHHIN0H/dxdvHhH(~H1HHH1ЉHH HhuM6EWdL4%H$H]1H]II;fyUHHH۹HLـx1QH\$HH HfDHIV0HhH/dxdvHI(~I1ILIHH1ЉHIhIv0LhI8I(~I1ILIIH1ЉL11HLhIv0LhI8I(~I1ILIIH1ЉHLhIv0LhI:H(~H1IHHIH1ЉH11HLhL9rII(IY(H]H]ILL$L[HL$HT$HJ H]HX(H]HD$H\$HD$H\$@[I;fUHHH=6%@0HxHD$XHHHHD$HL$XHHT$HT$PHT$HL$ LHL$(HL$HL$0HD$8HD$@HD$H$kEWdL4%HD$HL$XHQH9}sHIHHH]HH]  HD$HD$Ld$M;fUHHHJHrLJ0L$HZLJ L$HR(H$HD$0D8DxDx Dx0Dx@DxP1A gH$HzHrILBHrHHHHH?I HD$0H$$HPL$IHĨ]I;f1UHHXIV0IV0@1Lc 4%1HL9} LP@L9LPMMuLLH LP(Dx @0H.%HpfH9HD$hHT$PLT$@H\$HHPLHAHHD$@H~5H@HD$0HHT$8H\$HHL$0HAlHD$h@1HD$PQuAtIFHX]kfHD$;HD$I;fUHH8HL$XHD$HH\$PLD$pL1A HD$0H,%ҠHT$pHu6HL$PH\$HH9~1WH*WH*^HT$0XHJHHL$PH\$HHuWH*HT$0XHHJJHL$0XHYH ,%蛤H8]HD$H\$HL$H|$ Ht$(LD$0HD$H\$HL$H|$ Ht$(LD$0I;fvCUHH(IV0HHt11HH5\/H(]H@ ,XHD$HD$I;fMUHH(H\$@DAt!A tHD$8Ht$XHL$HH\$@H|$P H(]HАD|AAMF0AMF0H1AD|AEtALD$ HHt$8|HL$HHH\$@Ht$XH|$PLD$ AEEZEACA5IF(HHHL$HHT$8H\$@Ht$XH|$PAH(]HD$H\$HL$H|$ Ht$( HD$H\$HL$H|$ Ht$(mI;feUHHHHD$XH|$pHL$hH\$`1sHD$Xu HxhH"H H"H9HL$HAHT$HD$ HL$(HD$hHD$8HD$pHD$@HD$`HD$0HD$H$EWdL4%HZ"Ht=H V"HT$H9s=HL$XH`=H*%tHf[I I[H HH]HH]HH]HHD$h~H HD$ 舀~H8 &2HD$H\$HL$H|$ XHD$H\$HL$H|$ @[I;fvRUHH8LRL?"M9v4HrLB LJ(HJH"ORJD~D~ D~0D~8LLD$HH\$XHL$`HD$PLHD$hH$HD$pHT$x@$HD$@H$H4$EWdL4%$T$'Ht$(LD$8LL$0tLLH:HD$@HĐ]HD$H\$HL$@|$ HD$H\$HL$|$ ZI;fUHHXHJLt$HI^0Hr(Ht$8Hz0H|$0LB@LD$PHB LJR8T$/ƃ"IdžI=$%tIM IKHD$@HL$HLHD$8H\$01H|$@1L$/tHD$@H\HD$HHH0Ɓ"HHT$PH D=I$%tH;I HǀHX]"fI;fvAUHHHHHH9H98uH]H <HD$H\$JHD$H\$I;fUHHHH4 LI9rL L:M9sI9 1HH]s L :LM9wHH9IHL IMMHL M9r LѐL9wM9rIpII@]HqH9}+H9s+HHH4IM LL9vH]H]I;fUHHHD$ H\$(@Hu!HL$ HyH HH]HL$ HQHpH9veH HH<ILLL$(OHt1I9rLL9vLȻH]fH9}HHH]11H]94HD$H\$HD$H\$I;fUHHXHH4HH9v HH)H1H\$HH|$@H!HD$hHt$8HT$0H~0HT$hHrHxH9H2HHt>H|$HH9@ HT$hH|$H1LBL L9}IHMLd$@M9AILd$@E1fE@M9^IrMIOlI9@HMl1HJI9%H2LBM)MII?M!MSJIM)L9IIII?M!JH9tIHH!HT$hH|$HLd$@HBHJHH9HJHD$0HL$8H9DE0@t(IBI9hHMdHD$0HL$8H9Et#M9:IK<HD$0HL$8H9LT$(HBIpH9HrMJfI9LLjM)M}III?M!M)K;I9IpIMII?M!K\I9@@J fH94HHT$hH|$HLL$(Ld$@HD$ LD$LL$PHrH4HrHHHJ HbHT$hHHrHL$(H9Ht$ H9H\$PH9t&HHH[HL$(HT$hH\$PHt$ HzLAL9L LRI)H)HIIII?M!KLD$I)IH)LIH?L!HI9ILH9tHHHT$hHt$(H|$HILd$@HBI9s2HIJ<NdHD$0HL$8H9vI)E1LbHX]       f      f  1pH=` DzHD$H1wHO3 DzHD$@wHg3 D{z6pH )šHD$H\$HL$HD$H\$HL$I;fUHHHSH9P~%蹀Ht$HH]HD$!HD$I;fUHH HH HH 9 HPH9vJHPH ʐHHt6StUSt9HD$01H1ɇKH%HD$01HH 1HHH ]H 1H 4 HT$HL$jH3 uHD$DoH9 juHD${olkH! #D蛜HD$HD$I;fvIUHHHtH]H3"HHBڸH >%H]HD$gHD$fI;f~UHHHHAtH]H HD$iH|Q VtHD$lnH8 ;t1TnkiHj yHD$HD$dUHHH\$0HHHHD$fH~H9H} HKH9H]fhHD sHD$DmH, jsHD$0DmjiH] D蛚UHHIN0HHtd5JrCHD$(H {HD$( ʻHH!R)HiɐHH]ÉL$hHC rD$l$j@;hH\ ʙUHHIN0HHtd5sH "H]ÉD$sgHhC rD$ligHB\ ;̄t!H %H%H5%H=%1111L2HHHH5%L %HL@HxHP Hp(LH0J HH8H+x*#Hc %HHn*#HXPH /#HP@HHH@HPPHX HX8HH)HPHHHHHHHUHHIF0 ~HH`%HP%H]H~H$EWdL4%H]I;fUHHHH`%HP%H)HHHD$XHt$0HǀP%=c%uHXH\$@11A1$HL$8H`%DHL$8HHD$XHt$0H9|HP%HH]HH9L`%IrHL$8LD$ HT$(LD蛻tHD$XHL$8H\$@Ht$0HT$(HD$ 1HMHuHD$XHL$8H\$@Ht$0HT$(nHShHHw+HHHsHƀH?HHR@HsHIIJDDtHD$XHL$8H\$@Ht$0HT$(@2HKH$HHH@H@HHHD2H AAH2HEuD Sbt3Ht$XLLChLHHL$8H\$@Ht$0HT$(;HT$(Ht$0H9soH\$XH`%HHHL$8H\$@ fDHw2H`%HHHѿf?HD$XHP%HH]HYTH@HH?;H/HD$DHD$H8ʃHLщуHHXLʁ ːHNHʃ HƉNtHʁpHt9tÉL@@8t9IAx@@u ApHt9tI;fvRUHH %u:H % %uH %H %H]I;fv{UHHHD$ H\$(HC0HD$wHD$(HHHHHzHD$诃HD$ BHD$ HHHT$(H HP膃H]HD$H\$HD$H\$aUHHD$rtu1҃wtu=1HtHHH@HtHHH@D$H]HHK(fDHt4HHȿH{(ADEtHu1Ht L$H1HsHHS Ht/HHпH{ AEtHu1HtL$ Hƿ1HHH tH% I;fvCUHH HKHgHT$HD$HL$HD$H$EWdL4%H ]HD$H\$HHD$H\$I;fv%UHHHZHBD蛈H]PI;f<UHH(HP wu HP(HHƸE1LAfDELAL ADEuLIItuYDNAs@ruArwfwuAsrruAs1Hu+HT$ HuHӹ HT$ E1LIwIH(]øH(]Hq nH W f[HD$\$L$HD$\$L$I;fUHH HD$0A{HD$0Hxu#H 0%@蛧HT$01BHHHL$H HH[HD$H ]E8HDŽHzH<HrHKHHH H4H<HpLM=%tLLpL M MSD?HDŽ=%wHLI;MKVH)HD$1HD$I;fUHH`#1HHIIJ#"H "1۹HHIIJ@HHD$<D$DH%HT$@Hc#"HcH|$PHt$HHD$'-H@]IH!HRLLI9t)IPMuHL$(H_"zGHL$(HHD$0 H|H\HtHHuHSH'RH HT$0H =q$tHJIIKHBHUHSHQH HT$0H =/$tHJDIIKHBH H@]HD$蛴HD$qI;fUHHHD$ HHDHtMHHL$ HQzYfDzZu#5H8O{@66HL$ HȀxZ@5H J@6HD$ HHXH1HD$ HXtIxYu%t?u5H @@5T5H_> ?565q75H]H]H]HD$OHD$HqW I;fAUHHLt$HT$HPHT$ =T$tHp iIIsHP x[=-$tHP(BI ISHH(HT$HHtv=$tHI3HǂHHP@HSHʃ=$tHpHIIsHPHHSHу=$tHPP@I ISHHPH]HT$Hr =z$t(HxLB LH8I3I{ICMCIK MK(HpHB HX0HH8H]HD$H\$HL$HD$H\$HL$I;f<UHH Lt$x[uI9F xXHD$0HD$0HHHHtAui=$tHHHI H@HHHD$HD$0HL$HQ(HtHX(@H9Zuzu1uO4vH~HHPHDH ]HZH\$HRHP@HHHD$H ]11H ]HoJ肮H 1dH DdHD$PHD$I;fvjUHH0D$Hx0u D$1H0]H rHL$LHL$HD$ HD$HD$(HD$H$hEWdL4%D$H0]HD$ƯHD${Ld$M;f?UHHHrLN(LRL$MtMIE1L$HRH$HD$0D8DxDx Dx0Dx@DxPHZ0HJ81E1{Q HD$0WH|$@H$H9T$Xt H\$0HL$8H|$hH$tHD$PH$HA0HD$X=$tHQ(,IISHA(HD$`=$tHQ8 IISHA8H$HĨ]H$H@0HĨ]譭I;fUHH8{+w1$ST@1HL$H@t$HA@,x ?HD$@H؉qHL$@I HHT$HHt$HL$A8HRHt!Hz H9szZtHJ1H\$H\$=k$u HHt$`Ht$`LF pIMCHHV fu džHrH|$t|HL$ Hp oHL$HHQ@HHQHHY(H)HPHQPHI(H)HP=$uHL$`HL$`HD۾IISHHH|$HL$ HtHHD$8H9rFH9~r@H~8HN@HFXHD$(HHF`HF8H$ۢEWdL4%HP]HFHD$0&H )1HD$@-H 1HD$8D{-H 0HD$0D[-H 0&H XHS XH WHD$'HD$f;UHH0Lt$IN0HT$@uHTHD$HD$HD$HD$8HD$ HT$(HD$H$(EWdL4%1HH0]I;fUHH8HBHD$(HJHL$ HRHT$0=$t$EWdL4%HD$0H\$(HL$ 1St 脞$xEWdL4%H8]D;VUHH@HL$PD$HHT$HD$HD$HD$ LHD$(HD$HHD$0HL$8HD$H$EWdL4%|$t ϝH9H$@軠EWdL4%1HH@]I;fUHHHHBHD$@HBHD$8HB HD$(HB(HD$ HBHD$0{t'HD$0Ht"Hl$ HD$0HD$0H @H9u HPHR1HD$8H\$(HL$ HHT$@HH]覠AI;fXUHHLt$H=$u"H{ .h-##HL$HQ0HQ0} ǂHI0 teu?ǁ r"H+ -"$EWdL4%$EWdL4%1H]ǁ "Hd ,["1H]ǁ H$ H'$ @=#$ =$~  )NH]ٟI;fhUHHpH$H$H$H$SAr1E1H4RL"MLItHt9Ht$8LL$X!H^ +HD$XH\$8+;!,T$4 H+ @[+D$4' !H$HHL$PHHL$HHHD$@{ H  +HD$PD{'H *HD$HD['H *HD$@D;'H *e H$H$H$H$:!Iv0DAvAA"@uAAACT$05L@0I9AE DT$/I9uo}A[H0 )H$H$1H$1CYH$T$0H$DT$/Zf;!VH$pH$H$1H$1XH$T$0H$DT$/=$uG@Eu&Ht9H HL$`H|$hH\$`;vT$0G$HF3!vT$0H$@HS$ t H$mH$H|$0LD$ t$HL$(T$H\$` A HL$Pt$H\$hT$HujEWdL4%L$I'LD$HHEWdL4%HD$HH9$}#$ ĠEWdL4%LD$HȿEWdL4%EWdL4%L$IH$fǀHH HP1L$Hp]11Hp]Lt$XHL$@HHD$8Y H H$[H HD$8DH HD$@D6 Q HD$XHL$@HHD$8 H [HD$XHV D;HD$8QH DHD$@1 HL V<HN 'E<HD$HD$I;fUHH@HD$PuZL$HD$8tv u3فK7T$tHD$81۹3H@]H@]Lt$0HL$(HHD$ D{ H  HD$8D{H HD$ D H HD$(D V q HD$0HL$(HHD$ H/ {HD$0Hv D[HD$ q H D;HD$(Q H v:HD$\$L$裆HD$\$L$/UHHHlLt$L@HL$ƁH]I;fUHHHdfD$HdL$L$HdkL$HcH@H !H wH]H Hs!& H] J9脅@;I;fUHHPHP0HH9HHuHu;Hu-u#DHt11 111҄+HH9r H)ѐH9 !v 11HP]H\$hHD;cHH\$@HD$81H|$h;HT$8z+w H|$@1(rt0H|$@AH@AAEIL!Hnr)f@WD$$H\$0HHHL$hfd}HtP"11HcfHXHTHu11f H؉H|Hruntime.H91҄t1H}1'H\$(HD$HH ʞH\$(HD$HuH|Hreflect.H91Ʉt 11HP]ËL$$tJw2H\$0HHL$hH9w|H)fDHwmHP]øH\$hHP]HL$8HD$@HøHP]11HP]11HP]11HP]11HP]11HP]H ;6H菟HD$H\$HL$H|$ UHD$H\$HL$H|$ I;fUHH HfDHP0HH(>Ht Hdž(>HHD$0Ht$HA"!H<"HD$H!"%HD$0Ht$HT$H5H׹HHH ]HnD &5HD$萾HD$&UHH(HtvHH0HH(>t@HD$8HL$HfHD$HL$ HD$H$nEWdL4%HD$8HL$HH(>HǀH(]Ha 2g4I;fvUHHHBH5!H]I;fvvUHHH@t^HD$H"5 HL$H@Hګ"H+"H̫"H"HH"Hǁ@Ho"J$H]HD$HD$pI;fMUHH(HD$8HL$HH\$@Zd$uHT$HHt$8H|$@1^IN0ZuH$#H(]Lp$MMI?I7MIM)L-N$K!LH9~H ;$HLMI?I!LN$MH9rkIIH)IH)H?L!HI9LODL9hLd$ LL$LLbHT$HHt$8LL$L$L\$@Ld$ f,薛H芛HD$H\$HL$U~HD$H\$HL$I;fvJUHHIN0ZuHL$H6$HL$H]}I;fv5UHHIN0ZuH$ "H]D}I;fUHH(HD$8fHH\$@HD$8LDHHHHz0 tHHH)III?L!H>Ht$@H9HLH\$8H9tHT$ HL$蓝HL$HT$ HHHH9r)HH(]ÐHD$8H\$@VH(]H(]襙HD$H\$HL$p|HD$H\$HL$I;fvUHHHH]|I;fvUHHHAH]{I;fv8UHHtH fH~ H]ÈD$y{D$I;fv?UHHPHD$8D8Dx1۹gHA@ƬHP]D${D$I;fvLUHHHHD$9HD$@ZHD$91۹gHA Y4HH]D$zD$I;fvJUHHxHD$ED8DxDx Dx#1۹3gHA蛢Hx]D$L$@zD$L$I;fvLUHHhHD$GD8DxDxZZ1۹!gHA@4Hh]D$L$ fyD$L$ I;fvZUHH8HT$$D:DzHHHHw$HHHHH?H!HD$HH8]AHD$yHD$I;fUHH8HD$HHHHT$$D:DzHHHLHлHHHT$HH}HPHs9D#-HHw$HJHHH?H!HD$HH8]芕腕HD$ZxHD$PLd$M;fUHHĀHT$D:DzDz Dz0Dz@DzPDzTc HHHH~,H΃H= <@|HsHzHH9@t HrHds[DxHrHds@D0HHdw$HNHHH?H!HD4HH]Hd胔HdwHdkD$H\$HL$7wD$H\$HL$I;fv%UHHHC$HH]HD$vHD$I;fUHHhH$HD$x{D$$"HD$$H$1fHD$0H$H9HT$x4HxHH)HT$xHH$H|$0 R t u|fD$"\nHD$"HfD$\tHD$H%D] ="t\u!D$&\@t$'HD$&HL)DFA^}JH HT$HHD$PHcHT$(HD$HHL$PH1HL$(%DHm HT$8HD$@HcHT$(HD$8HL$@H1HL$(xH HT$XHD$`HcHT$(HD$XHL$`Hg1HL$(3@t$%HD$%H:fD$ \rHD$ HِD$%"HD$%H@IV0~@D@uH$Hh]HD$H\$7tHD$H\$HI;fv%UHHHC$HH]HD$sHD$I;fv%UHHH$Hf{H]HD$sHD$I;fv*UHH(HD$8HD$H\$ HD$HH(]HD$H\$asHD$H\$I;fUHH(H\$ HL$HD$8H\$@HL$HH @[HD$ H۷ D;HD$H DHL$8H$@[H(]HD$H\$HL$rHD$H\$HL$-Ld$M;f UHHfDּ$D$'IF0HD$hHHǀ8H!ʚ;H!5w$H H$spEWdL4%IF0IF0LHIF0IHD$hH ծ"H9H臡EWdL4%H$Hם$H=ϣ$tIH 7$($H !HL$`H!HT$01#HD$PH;HD$PHHL$`HT$0H9|D$&HHD$pHD$&HD$xHD$pH$D$'2-H1@[=4$tH "FIIKH"=Y$ttH=ϕ"H="H="H=ݕ"H=o"H"fH|HKHF"1@H D!HL$@Hȷ!HHHD$8HHT$XHH\$(1*Ht$PHHt$PHHD$8HL$@HT$XH\$(H9|H9u$H"wD$&-=G$u*==$u!HHЋQ$t"1D$'H$HHĈ]Ë)$t11۹f[#1y$觜EWdL4%1HD$HHKlHD$HHH=}$uѐ|H "H/ %y"H h"H W"H F"H 5"H] $"HL "護HĈ]@;nI;fvUHHB8t舫]amI;fv^UH=/$t%H"H "H"SIIKISHHr"HHl"HHf"]wmI;fvUHHHH]:mI;fUHH(=g$u Lt$ HT$ H "mLIIKH""赜EWdL4%H$1H`" e"ufLS"AH@H1"  =r$~@H eDaH $l@UHHH9iH]UHHAu x"HiH]H]UHHXIN0IN0HH u!HL$@HT$PH"a HL$PH H~H9L ID=$t ML脄M IDH H9rQH HP Hu-ZuAtIFHX]H/: *f{ևчHTH HfH9 H"HLB=ؗ$tL "LRMMKMSL|"HBL H HH I9sPHT$HLH5c8HT$PH =c$tL uIMCH HHT$HH =1$LDAIMCḪ"HL$PH H@ 3HL$PH H HH H9sVHD$HHHѿH5/cJ7HT$PH =$tH 詂IIKH HHHD$HH =b$ftHTtIISHDHHL$@UHH`HP Hx<HxHxHxHfDpHP`HQI@*HD$pIV0IV0HT$@LLD$XM M9 u 11ېI I HM H9sSLȿH5a5HT$XH =4$tH FIIKH IIHD$pHT$@I =$tILIIKIDHuAtIFH`]LI I HfH9|I LL=$t LTxMHDHI fH9I Ht&=B$ftHsUM IsLKoLfeHL$PH\$HHȫ"HL$HH"=$uH\$P$HYH5"5II[H\$PI[IsHQH~"Hn" HD$pHT$@LD$XPH99 +@H H! $H H~ H( &H< uI;fvUHHH! $A{eI;fvUHHH( ;eI;fv UHHH HD @dUHHH 1HL$LHL$HD$ZH]I;fUHHHHBHD$@HHL$8HHHL$0H@8HD$(&Ht !HD$8+HD$0HV HD$(DH j%H|$@HG0ƀ"HG@H_8HOX1fHM D{cUHHH\ FH]UHHH1H"LH2„t$Ht$HObzEWdL4%Ht$H P"H9u$HE $zEWdL4%$d:EWdL4%H*# %{vzEWdL4%H]I;f<UHHHHD$XHŽ$eH ^"HO"HH="H9s;H5 70H 0"=$tH "{IIKH"H"=_$uHT$XHLl{HT$XIIKHTHvaH"H9"t*=$tH\$@H"KH\$@H "HH "H$H Hڍ$fHH]~H @HD$PaHD$I;fv{UHH HD$0H|$@H "HL$H"HT$1%HD$HHT$0H HD$HHL$HT$H9|֐H#$&H ]HD$`HD$kI;fveUHH HD$0H $HL$H"H\$10HT$HHӐHHHT$HHD$0HL$H\$@H9wH ]HD$+`HD$I;f UHH1Hq"5ۊ$40vHcHHu߉D$1 L$ D$9L$ H4"$ IHcHHD$觩HHT$HHH9wgH|HGODEBUG=H91҄tHaHr1HPHHH?H|$H11HHH]D|@HtQ _Ld$M;fUHHH$H$ `,"H)"pLt$x2"'HH $HkL$FH$H\$htq HJ$H!HD$X5HL$XHHHu1HHHo$H HID9HH|1HHH$HD9HH#|.H$H\$h{]$]$$Q$$E$$9$B|HD$xH@0Hmh{趚HD$xH@0Hx$HD$HD$D$EWdL4%HD$xH@0H@xHs$=$t 11sf[D$FuH 聯 q@mH"H"HH"H"=!t H9!ώ$Ht$xHv0Ht$pHcHL$PH#H{)HT$PHt$pHH=$tHuIISH^$HcHL$HHȈHD)HT$HHt$pHH=<$tHNuIIKHH"臋EWdL4%H$H ֟"HH&  HuH~ " :$荂HH"H=""u4H ""=l$tH!"[tIH H!"H=z""fu1Hk""=,$tHS""tIH=""HĈ]H- +SI@H"Hт"H9IHLLHI |LD$hHD$`L$GHH @utTH"LD$hI9Hk"LL$`JD =f$t M[sML N PLD$hL$GAH %"HfH9sAHпH5'H "=$tH " sIIKH́"HHˁ"HCHHD=$t H rI H  H f;Vv0Y+I;fUHHH"H+" $)ȋ ƃ$)ȋ z"9|H]ÉL$H %D$HcHa H R XgI;fvFUHHH "HQH9HL$Hޜ"1HD$H]H  /XI;fUHH8HD$HH\$PIV0LH92tH HfGH2"HL$PH|HT$HH0HL$HHH= !HD$0H\$HHD$H=ل$uHT$0HpHT$0IIKHL=$uH\$HH\$HHKHpIIKHCH=o$tHH0pIIKHX0HKHHtHH HQH S{"=4$tH`FpI ISH`=$tH{"BH\$HH {"HH"=&$uHT$H=H. =ƒ$fuHT$HHT$HHPoIIsHP5v$VHcHL$(HׂH/#HT$(Ht$HHH=P$tHboIISH$HcHL$ H|H"HT$ Ht$HHH=$tHoIIKHH8]HD$H\$dUHD$H\$5I;fvRUHH~"H ~"H}"H0H8=l$tH({nIIsH(H]HD$THD$I;fv1UHD0=$tH(mI Hǀ(]HD$@{THD$I;faUHHPHD$`Iv0Iv0 H\$hL$pHt$@=ސ"u11UHHHD$`HT$ H|$8fH\$ HthHD$8HL$`H|$hfeHT$8Pv ΉPH 1@>~uAtIFHT$@HH\$`L$pNHT$@~uAtIFHP]Lt$HHL$0HHD$(H AHD$`H< &HD$(;H  HD$0DHD$HHL$0HHD$(-Ho HD$H1H DHD$(HV D{HD$0 'H HD$H\$L$QHD$H\$L$nI;fUHHH ;|$=$1@$EWdL4%H]$EWdL4%HD$HH}(HD$"H v"gu$wEWdL4%E$YEWdL4%H]PI;fUHH0HD$@\$HL$Lvځ9uHHÉ@@t1IF0QuAtIFH0]H 'f{HD$@H D[D$HH @;D$LLt$ HD$@HL$HHD$[H HD$@D[H HD$DH HD$D6QHD$ HL$HHD$H [HD$ HV D;HD$QH DHD$1HV2 4VQH! +DHD$@QHc DD$H0HK @D$L+FLt$(HD$@HL$HHD$H JHD$@DH@ *HD$D;H  HD$DHD$(HL$HHD$-Ho HD$(1H DHD$HV D{HD$ 'H3 7HD$\$L$LHD$\$L$I;fUHH\$(L$,tfvSw8ځ9u,HÉtIN0LH]H !D$(H] D$,1H %DHD$\$L$KHD$\$L$UHHXHD$h\$pL$t r  r9u (HD$\$L$UEHD$\$L$cI;fUHH@D$PHT$8H.!111 *HT$8DHIF0HH G&"H\H H=0r$tHB^I ISHHmHD$(D$PD$0HD$(H$CEWdL4%s$Hs$H s$H= s$H@]f{aD$QDD$I;fv2UHHBIr$Hr$H r$H=r$H]cCI;fUHHHHHT$D$ H\$(HL$0H|$8HD$H$ABEWdL4%IF0IF0Hǀ=p$tH\IHD$@HǀH!1@HT$@~uAtIFHH]ÈD$H\$HL$H|$ CD$H\$HL$H|$ I;fv%UHH(ZHJHzHr 1;H(]BI;fv4UHH(D$8H!111 D$8,H(]ÈD$f[BD$I;fv%UHH -H=!11ɐ{H ]ÈD$H\$HL$H|$ fAD$H\$HL$H|$ Ld$M;fUHH$IV0H!=n~"u111CHtcHD$`$HHT$`Pv NPH 1@1quAtIFIN0SLt$pHj"@pEWdL4% k$H$HT$8 %"H" HL$pHQ0HBHI0HHT$8H5 څ"H Wi"H$HPi"H\$X1HD$PHH$HT$8H\$XH9}AHD$PH"f@tH$|$$J\$$فH$Q렐oEWdL4%H$HD$0>HD$h@DoEWdL4%H$HL$hH5 "HD$0Hu "L$$H"L$$D[oEWdL4%H$H\$(HD$8HH)$tuH "HH"H=m"u#Hg"H5g"H|$(111E1f1)H HD$@@5|i$@t5HL$HHT$xHj$Hj$HD$@HL$HHT$xHu:IV0H$H\$8HL$(H|$@HĐ]HHːIǁ5IM)LH@H9}=L M5AyA.IEL%R MEMuHu(LM HHL+H4"tH"@H tD$zD$DI;fjUHH`HD$pHL$8\$IV0IV0HT$H5 h$t31fL$HD$ \$(HD$ CL$t H#h$ Hf" g$g$t g$щȐ{HD$P1H" "t1H " H"H"HD$PHD$XHtVHPHp0HT$XHt1H@0H<HXHH#HH1HL$pHukEWdL4%H$HHL$0HT$8HH)T$tuHɐ"[ Hʕ"M=x"u11Y=HtYHD$@CHL$@Pv BP H 1҆PuAtIFHD$HQuAtIFHD$0H`]H %HD$\$HL$H|$ Ht$(:HD$\$HL$H|$ Ht$(QUHH Lt$IHu>INHL$fHu HD$@HL$HT$HJH\$H)HH HHT$D$HHHBHB+D$H ]I;fUHHIN0LH9HT$IVHHD$ IF@HD$(IF8w7EWdL4%rHv"HL$H9A0uHv"HL$HY0HHtHHv"HL$HQ0H9t HlHL$HI0HǁCH]H 59I;fv5UHH=c$t=c$fu c$R 1 H]D8I;fUHH IN0Hu"H9D$0HL$:{=IN0HA@HD$HHHHt5HHYL=e$uHD$HD$HHHQI H@HHL$H11Hi|"HD$H p\"H`HH/H9uH`=-e$tHCQII[HH |"=d$t"HH|"JQI ISICI[HH|"H{"@HL$H@Hb$HHH;"H H{{"H{"jHa{"[L$0tHL$H ]HD$HH$gdEWdL4%H ]H% c{Hz"H{"ےHz"Lt$IF0HXHD$H@0HǀXH D$'6D$f[Ld$M;f UHHĀH$Lt$XIN0IN0HHT$XHR0HT$HHL$xH z"={"v`$ȉz"=b$u H$Hz"NH$I ICH z"H^"H^"H\$x1HH9}H =^$uHL$` JHL$`I HD$0HH\$h;=[$t4^=^$uHL$0HL$0HJIISH1@^=m^$uHL$0HL$0HwJIISHH=A^$tHZ0UJI I[HJ0HT$ HZ0HHt$XH9u苊HL$0HT$ HR0suAtIFH_$JHD$0HH]HL$(HL$(HDu=HL$(H=]$tHIII[HHD$(HT$(f량L$HD$=l"u l"tHD$(WKHD$L$u6HHD$8HD$(HD$@HD$8H$&.EWdL4%HD$HL$(HHL$(=\$tH t"HIIKHt"Hs"HD$H\$HL$1/HD$H\$HL$fI;fv%UHHHJH H HHY[CH]0.UHH@D$P=UY$t4=0Y$u+H, *P$\EWdL4%HD$ $HD$HD$ HD$D$^EWdL4%1/LHD$8 HL$ HHxHH$EEWdL4%H\$PHD$8L$PKSHD$8ƀz+EWdL4%fD$Pt11=j"u11 B/HD$PH\$(HL$0HT$8H H5r"HT$8t t$P@H=q"7t$P@utH\$(HtjHHD$0FHT$0Pv FP H 1ɆHuAtIFHT$8t$P@H@]I;fvNUHH1H `W$v$1)IW$u,H]ÉL$fL$$9wG,I;f7UHH(11HHD$YHD$ H EHHP@HPHHP8H@XHHpHHp@HppHPhHP8H1۹ =Y$u HD$ HT$HD$ HH0EHT$IIKHP0=X$tHDIIKHfǂHHHHuo"H HHHo" HD$H(]*UHHHIV0HT$@t11f=g"u11 J,HT$@H\$0HD$8H HT$@HƆH=o"7uH5n"ugH\$0Ht]HD$8CHL$8Pv ʉP H 1ۆZuAtIFHT$@HHD9=f"u f"t+Hm"HD$@EHm"HT$@ƂHJxHL$(1*D[.IN0HA@H$@EWdL4%HD$@HD9Dyƀ!H#T$ HL$(HL$ $HL$ HL$HD$D$tYEWdL4%HH]UHHD$ 1D$ L$HU$Ht}Hu:u6uHVS$ $VEWdL4%HH5T$H>@Ɛ@u@]EWdL4%D$k]EWdL4%D$KHH]UHH1HR$ HhHR$HT$H HhHH]UHHHD$HL$HhH"R$HS$H H]I;f]UHH H\$8IV0LHHHHT$8HH'S$HPxLHHJ0HHD$ufHU$=U$DH U$HT$HhHU$=U$tU$HU$#HzU$IN0ZfuAtIFH ]{IN0ZuAtIFH ]H *zHD$H\$HL$%HD$H\$HL$qI;fUHH0=P$D|$HD$(H=BJ"HHHL$HT$ H "HL$(HT$H J"H $HL$HL$;EWdL4%HT$H0]HD$@HT$HD$@UHzT$H0]H [HD$$HD$I;fUHH IV0IV01H5S$>@@u-HuAtIFH ]HT$H[1HfHT$~uAtIFH ]#@;I;fUHHHg"D{ h"Hg"f/R$HR$HR$fHR$诽HgR$"fHUR$H QR$HtHL$H;R$H+R$FHD$!HhHL$HǀhBHD$Hu" I;fUHH IN0HDLt$Hf"GHL$HA0ٜHf"Lt$IF0HX蔼HL$HI0HǁXHL$HI0HxHL$HI0HǁH ]H D{HF jH. Y!IF0ƀI;fUHH8\$PL$QIV0IV0HT$ u'HD$HHe"HD$HL$QHT$ \$PHuf11HHD$(HDe"7Ht Le"HtYL$QfuHD$0He" HD$0HL$P@HT$(+HD$Hd"D$PH ۹HEH\$(HL$D$QtH~d"HD$ Q@uAtIFH8]L$QuH1d",HD$ QuAtIFH8]ÈHXHT$(HHXHL$ ZuAtIFH8]ËL DA9u@9u MyHp H Hݝ DH: $HD$\$L$HD$\$L$CI;fUHHH DA9u9HH=c"=["ft ["„t?HT"H5T"H9t T"t HIY"1Ht1ۉH]HD$(=H$tHD$(vb"5lb"uAH1H^b"2„t%1H5Hb"HȻ1@H]ÐHa"g b"+HD$(`5tVH1`5@@t>Hb"HHfӋ b"Yb"uH{b"۶HL$(HH=a"a"5G$9u.Ha"Ht"Ha"HD$(1ۉIH]ÐH5H5Ht HtH9HHT$H1H`"HD$Ht!H]ÐH`"HD$(1ۉH]HD$(@KEWdL4%H$HL$(H5Da"H ;a"uH3a"軵H2`"-H]HD$(1ۉYH]1ۉJH]HD$HD$I;fRUHHHIN0HH!HH9Lt$8Ht u$wLt$0IF0HX荵HL$0HI0HǁXHL$8HQ0HӁu*HI0HqHL$8HI0HǁHH]É\$bH, +D$H $զ萜HD$8H@0HHD$@Lt$(HL$ HHD$H' 膦HD$@Hd jHD$D{H< JHD$ D[֝HD$(HL$ HHD$mH HD$(qHc DۥHD$H D軥HD$ џLgH H !@I;f}UHHHI9N0tVHu;HL$trHL$HXHH臲H]H KH :HD$oHD$eI;fUHH ]"IN0t!ƁH\" ɅqHD$HW\"HD$@GEWdL4%H$HL$H5 ]"H ]"u H\"脱H["H]H :H )cI;fUHH8HD$H\$PIV0HT$0=9!t'11HH5D{HD$HHT$0\$P=CD$tHU0IIsH=D$tHp030IIsHP0ƀHT$HHǂƂH2HƠHrt$P@tHL$0HL$0HF=@$t?=H$t6@tt@u ƁtƁ["9t PHT$H=R"u11 yHT$HHt^HD$(%#HL$(Pv BP H 1҆PuAtIFHT$HHB8H$DEWdL4%H8]HD$\$CHD$\$L$M;fjUHHIF0H$x2H$xH%Z"H$`5tfH$Hh511D=mQ"t uQ"H$t&H$ϰH H$H$=?$t+H$HHK$H HH$H$ H$ri fS\2H=X"H=X"س=X"u14H X"Ht$HHmX"Hu HeX" gX"H$HHW"H$HHH$ H$H$5>$ u\H H5=$>@@t H5"7"f1Ht,H1۹訾H$ H$H$HH5LA"@Hvg5 B"v-5B"==$ADAAN9@@t$H@"L)H$ H$H$H5!H6Ht7H4$HD$3)EWdL4%H$ H$H$H Ht!H$1H @H$1@H$xHAH=V"tnHV"躱H$H$H$$HU"H$H H$ H$H$5<$t5Z<$@1@t&H5|U"HtH={U"7@11@tO1:H$$1HFU"H$@H H$ H$H$H$xt'5UU"=IU"Dv;$A)A9@@u%ƀH= U"71H=U"7HHV @tH$x.DHtH$HtH9| H$HH$xH$HH$H$ =:$u1bH@u$H$xH$ H$H$1.HQG$"H$ H$H$H$x@t)H<$YH H G$d#H$xH$H$H$H 8"H$H 8"H$H 7"H$H 7"H$XH 7"HL$pH 7"HL$xH"S"f軮 S"uH$`5ftHR"H$xH=;S"*H$xt1f S"Ät@ƂHR" 1HR" HR"{H$xgH$H9 HH$ gH$ H6R"1H$xT$?*ƁH=WR"7΅ HQ"臭H=?R"t1HHQ"@軱H$H$H$H$H$L$Ht8dH$xƀHQ" 1HQ" $@H=H$H$H$H$XHt$pLD$xL$D;H$xT$?H$5B7$t(57$wHt1H=P"H7H@11@H5P"HHH@HtWH$ Hu7H$ ;EWdL4%H$H$xT$?H$ HH)HHLf 1HH=}8$HEH!5L$@H$$h;EWdL4%H $H$ 1HO"HHO"H H=8$tH$ufH$x7HO"DH$ NH$`H]O"XH$`H8aH$HL$?t2H$xƀH_O" 1HUO" H$x1ۉH]1۹H]H$=-G"u11 HH$H$@H\$`iH\$`@HtiH$@H$1dH$@Pv ΉPH 1@>~uAtIFH$1۹H]H$hH$`H$xƁHN" 1HN" H$hHǁ@=F"u11 H\$HH$(H$MH\$HHtiH$(H$1LH$(Pv ΉPH 1@>~uAtIFH$1ۉH]H$pӃH$H$H$$HL"覬H$HH$pH$D車H$H$p@^H$xƁHL" 1HL" H$1ۉH]H$HtHH$$H$L$@ft H2$ =9D"u11H\$hH$PH$wH\$hHtiH$PH$1vH$PPv ΉPH 1@>~uAtIFH$1ۉH]H$" L$@t~uAftIFH$1ۉH]1H]ÉL$DH$HtHH$$H$D L$Dt H/$ =OA"u11H\$XH$8H$莸H\$XHtiH$8H$1H$8Pv ΉPH 1@>~uAtIFH$1ۉH]H$H$QH$u"H$1ۉH]É1H]HQ %3H@ %"H (Hǻ #DHT H %ٶH (ȶHy !跶H 覶9t)Hx@@tH111@vI;fUHH H=&G"u IN0H H ]ËH 9u9u{Huv ,$t &-$1ɄtQH JF"fHtC1t+HD$\$Ht.L$ HD$XL$ t H,$ H ]1H ]øH ]DI;fUHH`IV0HHT$X111 HLHHMF0MhI/dxdvMI(~M1HLIIMhD*"H1АE71AL *"EA1AI9HL$0L *"E HADl$1T$ DD$$D\$(D|$,DET$ DD$$D\$(DL$,tE1!‰T$ C EA1AT$(T$ 9T$$E"H)"DD$(L9LH("JI9eHu-H)"EAL9H("JD1DL$HD$PH\$H@t$Hh5H1KHtHT$HHtH9| HT$HHӄtDHT$XL MtHLE1L AHE1EDL$DL$I/dxdvLd$XDl$HljHD$PHL$0H("DD$(EAfL9H'"JDfD1H\$@@t$H|$8HDLfۄHuYHL$0H\$@t$H|$8DL$I/dxdvLd$XDl$HH11H`]1HH߾1H`]1HL$8H|$@t$H`]aDD9t&DN˜DHDAEt1 E11@Mu HȹHt$LH`]BBfBHD$HD$&I;fUHHHD$ H|$81fHJH9~[HLH9H s13AEM EE9uA9uM1Ƀt1H]ÐHiA"1f|HtHD$HHA"CHD$H]ÐH/A"*1H]fHD$H\$HL$H|$ Ht$(LD$0HD$H\$HL$H|$ Ht$(LD$0UHHD$H|$(1HIHDH9~]HLH9vSH s=AI5M5MtHt @I9LHt MtL9|LLɐL]I;fGUHH( `&$tH L4$HH 9| 11H(]1D}H?"e1zH=&$t$HD$H\$H2$su,HD$H\$DwHr?"m11H(]H'$Ht+HD$ HD?"@;HL$ HYHD$H(]HD$H\$8wH?" Hc2$11H(]ÐH>"11H(]11H(]jI;fv2UHH >"HuH >"fHtH9~ "芯]HD$HD$I;fvaUHHIN0t:ƁH>" Ʌ| "H]H- !kH ZI;fUHHxH8t8H$=)6"u11HH$H\$(HL$`H1Hx]Ht$hHH$HL$`Ht9HT$hHл5H\$(HtHD$`HL$h1: H\$(HtJPv ʉPH 1@:zuAtIFHPHL$0Ht$8T$@H@IN0HHtD|$HD$X <"T$$H<"&HL$8T$@Ht~uAtIFIN0H1Hq0IN01HHL$@HHu HD$HH+H2HHD$`փ=$uHT$@"HT$@HH I3I{Dt HD$HH=$."u11H\$ HD$0HD$`iHD$H@Ht 6[HD$HH\$ HtdHD$0HL$`SHT$0Pv NPH 1@1quAtIFHD$`THD$HHt ZDHP]HD$kHD$aI;fUHHHHD$X\$`HP0HHT$@=,"u11HT$@HHHD$X\$`HL$Ht$0Ht0tHH˹HH˹@HD$XHT$fHtRHT$0Pv ΉPH 1@>~uAtIFIV0H1Hr0IV01HT$`t ^4"1҄tHD$@H\$XnbHJ3"HL$XHǁH3"Ht HHHʐH p3"HӐHm3"o3"H2"=$$tHH]Lt$8HL$(HHD$ pH@` @zHD$XzH8 D{zHD$ tHRd D[zHD$(qtqpHD$8HL$(HHD$ oH_ zHD$8yH 8 yHD$ tHd yHD$(slqoHG HD$\$GHD$\$I;fvUHH1H]HD$HD$I;fUHHHH0uSuFHu8Hzu'HHtf11 111Ʉu$HD$ H8H$6EWdL4%HD$ 1fH]HD$+HD$AI;fUHHXHD$ht)H@@D{HWP)HD$h 1=z("u11f;H\$ HD$@Ht 1DIV0H1Hr0IV01HHD$h  膚HT$ HtRHD$@Pv ɉP H 1҆Q@uAtIF$HX]ËHH؉CHD$PH\$8lH %wHD$PH\$8wH\ vlH5P ;Hi *Lt$HHL$0HHD$(lH5\ vHD$h vH4 yvHD$(pHP` [vHD$0qpmlHD$HHL$0HHD$(kH[ vHD$HuH 4 uHD$( pH` uHD$0olmkHC HD$&HD$!I;f UHH0HD$@=%"fu11 HHD$@H\$HL$ HP0HHT$(HtHȹHD$@HT$fHtRHT$ Pv ΉPH 1@>~uAtIFIV0H1Hr0IV01HHD$(H\$@17hrH0]HD$"HD$I;fUHH=$"u11yHtXHD$jHL$Pv ʉP H 1ۆZuAtIFH~pH]eD[I;fvUHH-hH]HD$HD$I;fUHH0HD$@IV0HT$ HHT$(HD$@HH+PHt$(Ht@H5H<H5H HH?r'H $H9Hdž5 H $H1tH*" =$uH\$@H\$@HK0I HC0HHHǃHT$ Hǂƃƃ=C$tNHs(H{ LLL`LhLLI3I{MCMKMS IC(Mc0D{ DHǃƃHǃD`Hǃƃǃ=$tQH~BH5$HWH*fHnYH,H=}$H7HǃHHHHL$Iv0HH~0Iv0Ht u?HD$(HL$Ht$HD$ HH8H$dEWdL4%H0]Ét$(fHco pD$jIhdfHD$ tH HH= 5ԗHD$ HD$@UHHIV0LH92t9H9rHt3HF@H^8HFXHN`H~PuH]ÐH4 SH~ BUHH`HD$pH\$xH$Lt$(IV0IFAƆIV0HvIV0H`5t9HT$0H}H$EWdL4%HD$pH$HT$0H\$xHt$(Hv0HHT$xHD$(HPhHt$pHppH$HxxH9wH9PsCH HL$PHD$XHD$PH$EWdL4%HD$(HT$xHt$pH$L@xMtL9wL9@sCH HL$PHD$XHD$PH$EWdL4%HD$(HT$xHt$pH$="u11HT$xHt$pH$HHD$(H\$HL$ HtiH#HD$8H\$HHL$@HD$8H$&EWdL4%HD$pH\$xH$HD$(HL$ HT$xH\$Ht$pH$D&"EtiHnHD$8H\$HHL$@HD$8H$EWdL4%HD$pH\$xH$-HD$(HL$ HT$xH\$Ht$pH$Hu(IAEAEtH6LHT$HHL$ HT$xHt$pH$LD$(tIPv ȉP H 1ۆXuAtIF%"tH\$(HtxH0Ht$xHD$0pHT$0DPEv AHP H 1ۆYuAtIFHD$@HT$HHL$hH5HL$8ZuAtIFHP]HFg Hg wHD$H\$HL$@|$ @t$!HD$H\$HL$|$ t$!L$hM;fjUHHa#~ Hu 1H]H$ H(Ht H>Hv11H$H$9LHcH$HZ HH$fHH$HHHH?(HH H$H$mHL$(D9DyDy Dy0H@uD9H$ 1HL$(2HH$HHH;H$H22ILOH\$(H9t$H$ILH$H$H$D:DzDzH$H$H$H$ HH$H H$=#tH H$H衚H$H$D2D1DrDqDrDqHiH$HHHH=r#u H$aH$I HH]HD$HD$pI;fUHHpHKHHH)ы=!@H9t?H$H$HHDH$D9HAH$HH HH @|D|$D$ D|$XD$hHp]à ~H HtHH H9u*HT$XHHʐHL$XH|$`uHT$`D$hHT$HHʐHL$H|$uHT$D$ uHS "VgHL$XHT$`\$hHL$@HT$H\$PHt$H > "HHL$@H + "L$P ) "HL$HT$\$ HL$(HT$0\$8Ht$H "HHL$(H "L$8 "H "kHf ezHD$H\$HD$H\$I;fUHH HD$0HV "jHD$0H HH=< "uH=B "H "@fHL$0H HH }H "HtHH " "HuH "HtHH " "Huf4HtHH HHL$HHtCHYH)Ӌ}!H9t1HHD$HL$HD$H$EWdL4%HL$H9uBHzHD$HL$HD$H$EWdL4%HD$HHHHHHH ]1H ]HD$HD$:I;fv1UHHHJHL$![HL$HHYH]I;fv6UHHHJHL$HHYfHL$D9HAH]@{I;fYUHHhD|$D$D|$PD$`H Ht|@HtHH H9u*HT$PHHʐHL$PH|$XuHT$XD$`HT$HHʐHL$H|$uHT$D$xH9";cHL$PHT$X\$`HL$8HT$@\$HHt$H #"HHL$8H "L$H "HL$HT$\$HL$ HT$(\$0Ht$H "HHL$ H "L$0 "H"gHh]HD$HD$UHHLt$IF0uHXH$EWdL4%HD$H@0IF0uuHǀIdžH]I;fvUHHH >uI;fv UH]I;fv UH]I;fv UH]jI;fv UH]JI;fv UH]*I;fv UH] I;fv UH]L$M;fUHH1#CHtu HĠ]H$H$H$IV0HT$0D:DzDz Dz0Dz@DzPL$AE9EyEy Ey0I@Au䃾H~gLMtRIyptFIyht:DLEu'HPHtH;t11\1U1NHH H@Ht+LMtHHLHA 1aHAHHHHa1 HĠ]fH@H$HpHHHH?H!HHD$01HmH$HHH$fDH9#wH9#vHHHАH9/!s H.HHH$H$HtHEHH$HHH$D#EL$MtMH0MtMMt I`E1H@H$HG"LH$H׾@oH$Ht(LJ0MtMMMIEE1E1E1E1HLLH$H$A@IF0HĠ]H@H@H$HH^pHNhH1A_H$HH }L ːMuH w_L$L9t?H$HHLHH$H$HT$0H$H$LPIQH HD$H\$HL$H|$ Ht$(諼HD$H\$HL$H|$ Ht$(I;f\UHH\$(X@Hǀ Hǀ H H=#t"H HxhI IsISI{HD$ H H@pH@x HPhHP%AHL$ Hy8tT$(0T$(uH5#HHq8̩HL$ HA8T$()|QH!HcһH9v6Hy!H HS!H9vH?!H!H]ZUH @nHD$\$ HD$\${I;fUHHX!9tCɉHȘH^!HHʐH J!H=J!fuH?!H Ht?H"!HHʐH !H= !uH!!Hǀ HD$hIN0HHh5Hh59 #HD$hHpǚHD$hH HD$@]HD$hHǀ Hǀ = #uHt$@#H H/Ht$@I3IKISH HǀHHD$8Z]HL$hHApHAx =#uHT$8HAhHT$8IICHQhHHD$HHL$PHD$HH$f{EWdL4%HD$hHH8H5HD$0H3HD$ HL$(HD$ H$;EWdL4%HD$hH@8HD$hHǀ(H !H5H !Hǀ5H5Hm"H Hǀ5HD$07HD$h@HX]ÉL$HD$hHcHD$9H jDHD$D>HN JDD$a>;9HU` kHD$躷HD$I;fvQUHHHBHD$DHD$zHt".WH#H\$f Ht"o[H]褶I;fUHHHJ11H HG#H+#H9#H#HH#HH9 ~ H=rMHǁ H@HL$H%t"DVHD$Ht"Ht"ZH]H;L$XM;f9 UHH !#  $0T$D=!u11讷T$DH$0HtfH$Hȉ臸H$Pv FP H 1ɆHuAtIFoEWdL4%H!H $HtT$DHcHH)HH5!T$DHH$H=!H5!D$0A9H#UH !$09HcfDH9 H5!HcH$HSHH$H=!H5!HH$HSWH$Hm!Hn!=#u H$HD!H$I3ISH5)!$0H5K!DBAAFE@ADD$LH=!D9| McL9s= H !IcH$H|w$0DD$LH$IHL !H5!=(#tH5!:I;IsH=!H5!H=!D9| McL9s=V H !IcH$H$0DD$LH$IHL e!H5f!=#tH5F!I;IsH=3!H5D!H=-!D9| IcH9s8 H !IcH$Hje$0H$HHH !H5!=#tH !-I;IKH=!H6#VT$DH$D$0%H$H0T$X‹D$DH$D$0A9H !HcH9T$XH$H !H HuHT O|T$XHH$HȉvH !H$H9H5!Hր=%#DAH$H$EHH$L$IV0HDH,HD9H=+!u11H$D$0HD$DHH\$`H$HȹH$HR0HH$H\$`.H$Pv NP H 1ۆYuAtIFD$DH$D$0H$HQ0HHB0(BIN0HHA8H$HQ0HǂH=!H !HH@0@=!u11蓱HteH$AH$Pv ʉPH E1DDBDuAtIFH#$0D$TH :!HD$TT$D9}H $!HcH9w@L !$0D9HcH$H# OH !H$H9H!H!$0DFAAFE@ADD$HH=!D9| McL9s7MH !IcH\$xH $0DD$HHT$xIHL g!Hh!=#tHG!I;ISH=4!H]!H=F!D9| McL9s7H 5!IcH\$pH艵$0DD$HHT$pIHL !H!==#tH!OI;ISH=!H!H=!D9| IcH9s2:H !IcH\$hH $0HL$hHHH !H!=#tH n!I;IKH=[!H#Q$0T$DDAL$111AH$EIL!McM9L!OMY0MM9tABEEM EE9uE9uMu IBLMZ`MtME1@Mu1`DD$PL$H$H$L2'$0T$DH$H$DD$PL$L$HH$HtIz0IZLDIrLH$HC0L$LCH$$0T$DH$Ht6H$H$HNH$H!CHt !됃=/#wH$4HHH$H$'$0T$DH$H$Huǐ !H !G9ΉA1ȉD…uuH !L!IH!L9s\|$\LÿH5;xH !=#tH!IISHt!T$D$0|$\IH$L[!B|LH5>#χ>9tH#H$>H$HH ]ÐH$HC0L$LC$0T$DH$HH$H$HH$H#jt:H$HIH$H!BDHp !eH$$0T$DH$f{vqlgbf[VQLGH=0 \D$ D$I;fUHH=!fu11sHtYHD$DHL$Pv BP H 1҆PuAtIFH]HD$eHD$[I;fvNUHHHD$hHL$HQ0H=q#tHY`II[HQ`HA8貝H]HD$HD$UHH HD$0Lt$IN0Hft"HBH$EWdL4%HD$0Hx0uxt1H hHL$HD$HD$H$ХEWdL4%HD$0HL$HQ0HHHA0HC0CH ]I;fUHH(HBHH0HL$ HHHL$@HD${(H9 3HD$ D-HtG2HD$D{-H 2HD$D,V*q(H{) DY1d菥*I;fUHH =!u11虧HtkHD$IV0H@HT$Pv FPf H 1ɆHuAtIF$H ]yTI;f2UHH8IN0HHHL$0H\$(HS0HT$H9uE{u?Lt$ H#įHL$ HI0HǁHD$(H@0@H8]ËCHD$&H_ 1HD$00H f0HD$(q0H D0HD$Q-H D0HD$*L(g&H2 WHv# W@I;fvFUHHD$HE!DCL$ U!~(H!HH]ÉD$諣D$I;fUHHX='#=# >#w=#t1!=#t #v11 !!!H5!H+5!H)))9HD$ H HL$HHL$ HL$PHD$HAH|$ uH!GH݇ 6H=p#t-HH9|H S!HT!1H># fHHD$@H!:DHt !HtMHXH!ƀHT$@HHȐ;HX]HX]HX]HX]ÐH:!5FH0 UH!FH^0 eUHfH9}HHx5tHX]ÐH!EHb %HX]H|$8L$T$\$ #H7 -D$HcHD$0HD$8HcHD$8D$HcHD$(D$Hc(H V-HD$0'H ;-HD$8'H D-HD$('$"H!DHD HT肠fI;fUHH(HD$8HJHL$ 1~u6HD$8ʁtvt uHD$ HH(]H(]ÉHL$HHD$!H6 0,HD$F&HA ,HD$+&#!H!CH BSHD$מHD$ I;foUHHpH!D;?!H!C1111%H\$PH!gCHD$`HL$PHT$X\$ HL$PHT$XHD$`DHu H2@Ɖ''G؉\$ $EWdL4%{EWdL4%H$=#$ !t !H#91ɄuD$ HL$`!HD$(H!6> x!t !#9uD$ HL$`f(HL$(H9D$ HL$`H)HD$hH%! H"!fBH HH?HHHL$hH9HOH!:D$H!{=1H! H!L$t 1 D$ HL$`HL$`D$ H!AD$ HL$`HL$`D$ H!=EWdL4%H pa!H H$HD$hHt$H $HD$赳EWdL4%HD$hH !y#HyHH9~mHHH!H1HD$@\$HHt=L$@[HD$@ѢGL$ft HD# HD$h=L#t HL$XHʚ;H9|,HD$hHHL$XHL$Xj!tHG!袶HD$hD$$H\$h1#HL$`HT$$ҺHEHL$`to]!teH@!;1H@! HD$0D$8H !HǁHL$0D$8HD$0ǡH!?HL$`N#~9HcHi@BH\$PHHt$hH9=#H\$hH\$Pf{I;fhUHH`HD$pH@#:11HHL$8f@H9Q!8HHD$P@@tHT$/tHT$PHT$PDBDJM9upDBHt$pHr(HHD$8HD$8HD$8ZH#M9HD$@HL$8H#=HD$8H`]DDL DE9uߐE9u$MuD!D !EEAE1E1Et4LB(ILL$pM9}GHD$8D2HD$X|$4T$01;HD$X\$0L$4GHD$PyHD$8HHD$DHD$zI;fUHH(xHP0HLMAفAAA HD$8HT$ LD$\$L$LJtPHD$HP0H\$ H9uHHL$8H9t\$L$F11111H(]Ë|$H(]11111H(]11111H(]11111H(]11111H(]11111H(]HD$HD$I;fvVUHH0HD$@H\$HHL$PHL$(tEWdL4%HT$(L$L5 !H0]HD$H\$HL$|$ lHD$H\$HL$|$ tI;fUHH0HD$@H\$HHL$Pt HL$(H\$ =!u11t$`菗HL$(t$`HHH\$ HA0HǃqDHtiHT$HHKHT$Pv FP H 1ɆHuAtIFHL$(H\$ uH!AH0]H[ 'fHHD$H\$HL$|$ t$(HD$H\$HL$|$ t$(@I;fviUHH(H {!HL$ Hw!HT$11HH9}3H4~uHD$\$H1\$ HD$HL$ HT$ʼnH(]LI;fUHHHH0HI9N0HHtnH9titOƂHB= #u,ƀ51t HȻH]1H]1H]1H]HD$肓HD$8Ld$M;fm UHH$EWdL4%H$HD$ H=#uH#Hi!3 !HcH$H t!H+ }!HcHL$x !HcHL$p !HL$hH 3#HT$ H)H4ׂCHHHH?H)HT$`Hc !HL$XHc P!HL$P6H HD$`[H" Hc'#;H H$fH jHD$xDH JHD$pDH *HD$hD;H HD$XDHD HD$PD{$!D$!D$Hc!H$Hc!HD$xH D$RH aH$H CHD$xH{ (D$$Hp!H$Hi!H\$H1HA$H$H\$HH9uHD$(H4‹|$DDD$H$FHD$hFHD$@FHD$8H bHD$(H GHD$hf[Hw *HD$@D;H HD$8DH H$HH0Ht-HH$DH$NiH LD$L$)ȉD$H$Hc H$Hx5HD$0H ED$[H *H$fHb HD$0DHL$(Bf;HD$(Hu'H q D$L$)fVH!HHL$(H9HN aHL$(iH 3H!H$H !HL$H1OHT$0HЋ@HD$hYHD$hED;HT$0HH$HL$HH9|H D[$t H !:H}!x1Hİ]DH$H`HH$HHH$H$xHG H$H H$Ht$HcH$'H$ZuH fV Hd D{6H$HHt$HHD$h HD$hgf H) ( H$HcH$HL$hHH$HHL$HHcHL$xHc HL$pL$D$ H H$5H HD$hH iH$H\$HWH FHD$xH *HD$pDH D$DH D$DH  H$HHt*HHD$hD HD$hL  Hr q, H$(HR!M.Hİ]ÈD$ۉD$qI;fv7UHH=ӻ#uHBN!f*H]H#)H]{I;f_UHHH=#u Lt$@HT$@H J!譢LIIKH4!M 8! #He!D(!HK!F-D$'H\$8HL$0H|$(FHհ!D( հ!L!AHL"H! < ED$'H\$8HL$0H|$(H!N(!T$&H!,T$&D$'H\$8HL$0H|$(EHH]HD $;I;f!UHH(HE#D'H!' #L$ 2!L$H!+L$D1豮D$H#@+L$T$9ze!tjHH!3'L$ M!1H>! HD$D$ H !HǁHL$D$ HD$eH!7+H(]H(]ÐHB#f+H(]谆I;fUHHD$(D$H!v&L$8 C! 7!L$(}H 3!5!T$Ht>HH5!HǁH !Ht HH5!H!!D=!!HC!;*D$@H,!'*H!*H]H]ÉD$11ۉِ;dD$ȅt ;!1fuɈD$qD$I;fv(UHHHH!!H]HD$(HD$I;fvIUHHHpuHxu1H]HD$ HHO! \!HD$ H]HD$DŽHD$fUHHD<$D$U!tc5_#9O…Ѓu1ҐPH!9OHt$HH!Hu H! !Q11H1H]ÐLL$D$~`H5!Ht%LL!Mu H! !HdžLD$Mt IIIH4$MH$HL$|$H]I;fUHHH DA9u9LH<Hu!HD$ EWdL4%H$HD$ 5uH)хH!HcH9Hث!H!:)хH!HcH9vzH t!H 9H !HHHH!H5 !H8H=u$HH!H?H8HH]HK (5,"fH: #5HD$H\$ځHD$H\$KI;f5UHH(HO!HHT$ HugEWdL4%H$HT$ )H5d!HcAAH9H5@!H4D  )|}H5!HcAAH9v`HD$H5ک!L8H4AD!HRHu!H5p!HLHT$ HD$HHH(]豝,觝"HD$wHD$I;fv/UHHHtH]ÐH! 1H]HD$!HD$I;fUHH ubHD$0H\$ HD$0H\$)@rtH ]@ύWHȘH ]HHH HHHH AEtHt HHlH ]HD$H\$L$f;HD$H\$L$'L$HM;flUHH0HT$(D:DzDz Dz0H@fuDz)14 @HHt(rHƉt H$(11H0]HL(HT(H=rHL$(H$(HL$HT$D$ H!+HL$T$ Ht=HHt$HǁH !Ht HH5!H!!D|$D$ H'!""H0]H!" c1HD$H\$L$|$}HD$H\$L$|$T̐H;tDJWH3Ht5)ʁs+DHtHHHuHCK봉ׇUHH D|$D$H HtUHH1H @@t>HǂHt$HtHHf H֐HT$HH|$D$H)…t%wD$@@tϋt$1 HD$H\$L$H ]ÐLL$D$9s><0@HHLJLD$Mt IIIH|$MHD$H\$L$H ]I;fmUHHHD$ H\$(L$0@|$4H)AA)E@H Hxu]Hp0HtTHT$HHtt1$YEWdL4%HD$ L$0HT$H\$(|$4HHE1L AEHhHD{7H$HHL$pHT$XH\$ H$H|$0uHHuBImemprofiL9u3ylerau*fy teu"HuHuH H$L!LD$xL !LL$H1 HL9MMZI9uHD$@LT$`IHLRju-HD$@HL$pHT$XH\$ H$H|$0LD$xLL$HHD$XH\$ HsHt H$2H$HtHt$`Ht$`H~Ht HvHtHD$@HL$pHT$XH\$ H$H|$0LD$xLL$H =# HĈ]HC f/k*k%kDkHH|94@,uH|*@H9w@HrH9r0H)HHHH?H!H1H1HHHHfjjHD$H\$HL$MHD$H\$HL$UH=z#t HfI H]UHHH=qz#tHfI ISH]HH$0H$8H$HD$XL$HL$HHKH$H=]s#w1Gb_EWdL4%H$HL$HH$H$8H$HD$XHH$0Ht$8E1E1AML$LT$@I9MIM,MaLd$xMm`MtnM9thLL$pD\$4H!! .H$0HL$HH$H$8Ht$8H$HD$XLL$pLT$@D\$4Ld$xE1M Mi MtKD\$5LL'HL$HH$H$8Ht$8H$HD$XLT$@D\$5Ld$xMJEM~0IhH/dxdvHH(~H1HHH1ЉIH IhfDH9D,SI9fF,SfD$SH$0H$Ht$8Mu=r#tNlE^M+EJDKI9L$It EtA,AD\$1E1f fF,bMgM9F,cI95IN,(L$M"D\$6fFbD\$1L$IHt$8M~PIt$HI9DrDI9fD\$6INM9v@M9rHt$8D\$1F,{fDM99|MbfDHt$HH)ft HL$H)H 7HH?HHHHH\$hHH@HD$(x8L$`t%HL$@^HD$0HH]HH]HH]H\$hHPHL$(y8uIN0uLH9t̐H@)H؋trHÉ1@@tҐHuHC8HH WHD$\$HL$+HD$\$HL$I;fUHH =X#u Lt$Ht$HDLI3ISH1=zX#tHQDIISHYHHY =TX#t&L@LILQDI MCMKMSH@DyfA>HpL@1LHLLMMKIMP L9tsIPIP@=W#tHCI ICHA@8A8I@(HA(I@@=W#tHQ@CIISHA@I@=}W#tHQCIISHAIP=\W#tHYqCII[HQHt=:W#tHP@OCI ISHH@HAHt=W#tHP@)CI ISHH@=V#tHAH CMICLAHI@P=V#tHQPBIISHAPHu=V#tHAPBMICLAPA@>fA>ftfA>=V#ft$I@@IHIPIXPBIIKISI[I@@ExI@PDI@PHt$=+V#tHPHD;BI ISHHH=V#tI@HBI ICIHH=U#tI@PHQHBI ICISIHPHAHA@>ftfA@>H ]IV0H/dxdvHhI(~I1IHIIH1ЃIhA8=fU#tHQ@H>AIISIKI{LL$HL$@HY@H HL$@LL$HY@Ht*S89Q8s"H9KtH9KuLLf;H ]HQHDHD$H\$HL$@|$ a'HD$H\$HL$|$ I;fPUHH(HPHpH2HHHLF L9tsHVHVHD$8Ht$H~(u1.HT$ >EWdL4%H$HT$ Ht$HHD$8H~HHu HL$=S#tL@I;MCH:V8W8HV@=S#tLG@?IMCHW@HV=S#tLG?IMCHWfHt=S#tLB@?I;MCHz@HV=sS#tLG?IMCHWHt=QS#tLB@f?I;MCHz@HHt&HVP=)S#tLGP;?IMCHWP=S#t HWP>IHGPV>fW>fvfW>HO(HVPHz(HJ(=R#tHVHLFP>IMCD~H 11HH(]H=R#tL@LN@f>MMKHǂ@HF@=YR#t HVN>IHF1HV =6R#tHVLFG>IMCD~F8HHHH(]HD$8HL$Ht$HVHu H~t-HtH~Ht89z8w HHHV@HtDH9ru=Q#t Hz=I;HB<=Q#t Hzy=I;HB=eQ#t HPZ=IH@H~(HD$H\$#HD$H\$I;fUHHHKHS@Hq=P#t(HyLC@LK=II{IKMCIs MK(HYHK@HsDHt=P#tH~@<II{H^@=P#tHq@<IIsHQ@HtMH9Zu=nP#tHB<I ICHJGH9ZuG=IP#tHB[<I ICHJ=%P#tHP:<I ISHHH]H@ XHD$H\$"HD$H\$I;fUHHHKHS@Hq=O#t(HyLC@LK(<II{IKMCIs MK(HYHK@HsDHt=TO#tH~@i;II{H^@=7O#tHq@L;IIsHQ@HtMH9Zu=O#tHB#;I ICHJGH9ZuG=N#tHB:I ICHJ=N#tHP:I ISHHH]H HD$H\$(!HD$H\$Ld$M;fUHHH$=R#lK#HT$8D:DzDz Dz0Dz@D$8 Go:D$< HT8HJAJLLH9t.H$H$HHLAH$H$H$LD$8L$H$1HIɻAMVS֐HuH J#HĘ]HĘ]HD$H\$HL$H|$ HD$H\$HL$H|$ Ld$M;fUHHH$H@HH$%HOj 贫H$'Bf[H$H@HH$ڠH j iH$ۧH$H@HH$萠Hi @H$莧詢ĠH$H@HH$CHi ҪH$ED[vH$H@H@hHD$xHAi 芪HD$xD1H$H@H@pHD$p趟Hi EHD$p軦֡H$H@H@xHD$hvHh HD$h{薡豟H$H@HHD$`3Hh ©HD$`8SnH$H@H@(HD$XHUh 肩HD$X.H$H@H@0HD$P賞Hh BHD$P踥ӠH$H@H@8HD$HsHg HD$Hx蓠讞H$H@H@@HD$@3Hg ¨HD$@8SnH$H@H@HHD$8Hqg 肨HD$8.H$H@H@PHD$0賝H8g BHD$0踤ӟH$H@H@XHD$(sHf HD$(x蓟讝H$H@H@`HD$ 3Hf §HD$ 8SnH$H@HHD$Hf @{HD$ 'H$H@HHD$詜HJf 8HD$讣ɞH$H@H$cH f H$eD{薜H$H@H$He 褦H$2MH$H@H$̛He [H$΢HĨ]HD$HD$'I;fUHH HD$0HPHH\$HHHH~tBH2HL$0HQHHHӐHt$H2HQHHIHHs2HL$0HIHH ]HD$\$HL$ HD$\$HL$7UHHPupC#=gC#tf =WC#t uHP]1DAnH@H5!<օtr׉D$HT$@HS#HHT$HD|$ D|$01HL$ #t-HGPHD$ HHT$(Hp!H\$ HXH0]UHHhH$H$D$xHT$xHT$ HsHH9wH9Vv1Hh]HD$@D8DxH$HD$cFEWdL4%D$HHt$@H\$ H9LD$PLH9Lt$`H$HtIIV0HRHHHRHHQIV0HRHHRHQIV0HRHHRHQIV0HRHHHQ HL$@HT$`HZ0H[HH HZ0H[HHt$PHHsHZ0H[HHHKHR0HRHHJHh]H\$ H$H1@H9H9^HVH+H\$(D;D{HT$8H H HL$(Lt$XH$HtIIV0HRHHHRHHQIV0HRHHRHQIV0HRHHRHQIV0HRHHHQ HL$(HT$XHZ0H[HH HZ0H[HHt$8HHsHZ0H[HHHKHR0HRHHJHh]Å@NjD$xH H21Hh]UHH D$0H\$8HL$@@|$HH$&EWdL4%!D$Hu#D$0H\$8HL$@ DH ]ËD$0HD$dHhX HD$ Hx )ؚ蓐Hi "I;fBUHH`Iv0H\$PHL$XL I8t#HtMLM9uMFM9AAE1E1D$pH$Ht$@DD$+uAHb2!fHt3H2HH\$PHքuD$pHt$@H$DD$+H`]à u7H$2!Ht+H HфuD$pHt$@H$DD$+H`]Ã!u1=?#u(Eu#HH\$PDD$pHt$@H$AsH IHX! HT$PRt#tsu H9tL$Ht4謇H $;H$HH$HL$`$tupH1#H$H[HHHD$H1HH)HrH\$(Hw 誑eHD$HD$X1N-HHD$`Hp]HL$0HD$8ʆňHD$8ۍHL$0HHD$XHT$(@H9s Hr茆Ljf!ID$H\$HL$H|$ D$H\$HL$H|$ UHHD$ L$ fHAH9#H1҇ $@2EWdL4%9EWdL4%9EWdL4%9EWdL4%D$ 1#HHH IH5Z HtH\$0HT$Hu sH]ÉD$( D$(H\$@;=u-#t HD$H=a-#t)HD$HuHD$0H@t@tH]ËD$($I1EWdL4%$0EWdL4%HD$(S;H]H]ÉD$H\$9D$H\$I;f<UHH D$0H\$8HL$@軃HK JD$0@[H **HD$@H@HHHL$H@HD$fHs HD$kFHD$[HG ʍ腃HD$@HHHL$H@HD$Hq_ 薍HD$ HD$fH6J jHD$8DۉH 9D蛴D$H\$HL$D$H\$HL$UHHHD$ H\$(=/+#uC= +#u:H8 *$-EWdL4%{HxHD$ .uHD$ H\$(6H]UHH ALH5F;#H4H6H~uAtIFHL$`HT$@Hs H1lH5"HHHH@.H4H H@sc@=#uH!rH\$(HK HL$8H'#HL$8HHHHDHHɹHDH#sPHH W'#HH\$(xH8'#!H)ؐH5"#HHHv Hx]Hx]H#HCHD$ -kHD$ CrmHD$`1uLmgkH{K H@JHDHwHT$pHR0HHL$0fHt HtKH\$HH #HHD$hƈHD$0\$HD$h Hv8Hs^HHHr&Ht$HHT$PH0HD$@HL$0HT$PHt$HHHHHHTOHk ۛHD$H\$K%HD$H\${I;fUHHPH\$hHt$8HHD$0LLILQLcL\$(HIE1fMeM9Ld$ MILcE$$ H\$hL\$(EtEA\$MA!JHD$0Ht$8L\$(NL\$Ht"MkIs=5#uZLl$ Ll$ M9rM9sH9v-Ht$LLH3@@tHD$0Ht$8DaMNUHP]H\$HIN0Ɓ"_H?HD$@H\$@[hH& rHD$@H\$rH, rHD$HD;rH]+ rHD$Do6jQhHڊ DۙHD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(fI;fUHHhHxH$HH@HP8H)HpHt$8H8H|$0HuH H9 wH9Kv LCLH HD$x1Ht$@LD$(D$HH\$PL$XH|$`L$H~( JgH$fcH *gH$fcH@  gH$f{cHwMFL9r( HH9HH2H\2H`]Lː[HD$@H\$HT$XL$E1ɐ*11H`]H)III?I!HLI)ILM9~wLLZL9IIOL9tLd$8HL$HLL$0HT$PHt$(H|$ HLH-HD$@HL$HHT$PH\$Ht$(H|$ L$LL$0Ld$8dH`]MHH` sHD$H\$HL$H|$ fHD$H\$HL$H|$ I;fv>UHH@H\$XH|$hHL$(H\$ Ht$8H|$0H\$ HH@]HD$H\$HL$H|$ Ht$({HD$H\$HL$H|$ Ht$(f{I;fvPUHHPH\$hH|$xL$HL$(H\$ Ht$8H|$0LL$HLD$@H\$ HHP]HD$H\$HL$H|$ Ht$(LD$0LL$8¾HD$H\$HL$H|$ Ht$(LD$0LL$8ZI;fveUHH`H\$xH$L$L$HL$(H\$ Ht$8H|$0LL$HLD$@L\$XLT$PH\$ H;H`]HD$H\$HL$H|$ Ht$(LD$0LL$8LT$@L\$HHD$H\$HL$H|$ Ht$(LD$0LL$8LT$@L\$H1I;fUHHpH$H$L$L$HL$(H\$ Ht$8H|$0LL$HLD$@L\$XLT$PH$HT$hH$HT$`H\$ H:Hp]HD$H\$ HL$(H|$0Ht$8LD$@LL$HLT$PL\$XHD$H\$ HL$(H|$0Ht$8LD$@LL$HLT$PL\$XI;fUHH HDHu. HHHHfDHH ]H\$8HL$@fHtH ~H11ZHL$@H\$8HD$H\$@H|0HD$HHH9wH ]11H ]HtHD$H\$HL$軻HD$H\$HL$I;fUHHHtH wfHvW -H\$0H11YH|$0H|/HHH9wHHHHHH]Ht.i$@;H /HD$H\$@HD$H\$LI;fUHH0H\$HHt@H D8DxHʾ HL$PH:HT$PHHH\$HH9HHLH9t&Ht$ HD$(HL$H$HD$(HL$Ht$ HHH0]HD$H\$HL$5HD$H\$HL$AI;fUHH(Hu(H\$@11uXHHHrGH\$@HHD$ HcH9ӺHEڹHHfHwHHD$ H(]fHtHD$H\$聹HD$H\$RI;f UHH@HD$PHD$(D|$0H=w]H=w,HPHH5; HDH5 VfAHHH5l HDs~H5 VHH9vHHHT$H11,WH\$PHL$fH9t"HD$ H)HHHHD$ HL$H\$PH\$0HL$8HD$(H@]HDxHDlHD$AHD$I;fUHH(HD$8fHTr@ DBHTrD@ vriucH|STKwDGu"Ku)Mu Tu1Ҿ11H(]11H(]11H(]H˹ @HuH} 11H(]ûH(]11H(]ù @HuH} 11H(]ûH(]11H(]HH H9|Ht$ H @NHuH} 11H(]HL$ HtPHHH1HH9w+HHH9s 11H(]HȻH(]11H(]@;HD$H\$+HD$H\$UHH8HtHHH1$1H8]H\$ Ht$0HHt$(HHT$(HL$ HD$0H$HL$D$6EWdL4%HD$@HtHL$(HH8]UHHHϗ 3XH]L$XM;fTUHH H$H$0D:DzDz Dz0Dz@DzH HH$0Hp(L@ HLHM.HHDHt H@IDHHHHHHH?IyLHxHpHك="tHI I[HLD$XLfےHDH= )H=4 HD$XlH$HQ(H4Hy0LA H9sUH$H$H$LHHHH5c@軁H$IHHH$H$H$H$L$IH)HL)H?MkXI!KHHHbHrVH$H$HS(H$HS0="u H$HS H$I3ISHs f'H$HD$xH\$p@{ HD$`HL$XH9H)HL$XHD$xH\$p豓H$H$H$}1HtPD@$DH(fDAA*HcHHDTDD D DDD$H} HD$xDL$GT$LH\$PH$HHH$HH$Hz~H2HxH9>tr}H$Htv(+1'H$Lc@IIB4@ut$G@ t@t @bHzH$T$LH\$PDD$H1H$Hu11H؉K DD$HHIcH$HgMIHHHH1H$D9DyDy Dy0Dy@DyHHT$XH$H$H$H$H$HT$`H$H$H$HT$xH$HT$pH$H$HS0Hs(HHC H9sPHHѿH5_;~H$HJ0="tHr fIIsHB H$HHHs(HkXHHR=K"t/H$H_HH$H$H$D1D2DqDrDq Dr Dq0Dr0Dq@Dr@DqHDrHH}HuqE0D2EpDrEp Dr Ep0Dr0Ep@Dr@EpHDrHH@(H@0HP8=w"tHp IIsHP H 1H ]E0D2EpDrEp Dr Ep0Dr0Ep@Dr@EpHDrHHP(fDHHH HX8HXHP8="tUH$H$H$Hp IIsH]H$H$H$H$D1D3DqDsDq Ds Dq0Ds0Dq@Ds@DqHDsHH@(H@0HP E0D2EpDrEp Dr Ep0Dr0Ep@Dr@EpHDrHHP(HHp L@0IHHP(L@0II?AXI0="tHp IIsHP H$xHp(HHuHBHt$hH$H$0H1H$PH$XHcH$`HT$hHH ]HHHD$`谬HD$`L$pM;fPUHHH$HL$hD9DyDy Dy(HD$hHH|$pu H$t111)11HH]HD$hHD$HHL$@HT$`HD$HHT$`HHL$XH$SH$H\$PHD$p;H$D9DyDy Dy0Dy@DyHH$H$H$H$Ht$PH$H$H$H\$xH$H$H$H\$HHt$XH9rHD$`2HD$`HٿHH5oZ*yH$HHH$HD$`Ht$@H\$HHkXH<H=R"t>H$H!ZH|HD$`H$H$H\$HHt$@H$D1D7DqDwDq Dw Dq0Dw0Dq@Dw@DqHDwHH$>HD$hHD$hHD$`H\$@HL$HH]HD$4HD$I;fUHH`H'BtHD$XH HHHSuHL$PHPHXHLH9sFLHѿH5awHT$XHJ="tLIMCHHL$PIHHXIL 9("nH(H9"ZHH+H\$@H诒HL$P =}"tH(IISH(HH+H\$HH bHL$P0HT$HHt$@H=#"tL85IMCH8L"IHD$XHHP1HH9}'H4ـtH1HHH9sHD$XH HH`]AUHH(HHXH4 @H~ HPE1HH(]IyII9}.ILL_I9wI9wLcM9uI9uH_H4 L)H@H9vHT$ Ht$HL$')H 3HD$,0H 3HD$ 0HD{3HD$/ +')HX !ZI;fvHUHHt,HHHcH9v*HHHHD$HHD$H]11H]HD$\$脦HD$\$I;fv[UHHt H H@H]HHHtHQpHtHqhH9wHH9s1HH]HD$HD$Ld$M;f}UHHt:HHMF0AMF0MMQMMuE11H]MEEQEAuAtIFfDHLCXAM95$H$@$H|$HL$H$H$HKPHS`L)HT$hHH?L!ʋ0M)LD$`HH$H؉HD$XD$4HL$hHT$`H${@t ^"t1H]1ɋ H؉lHD$@"&H[@ 0HD$@'-B(f[&H WHHHHHL$hHT$`H$HD$PH$H$H9D$XAH$H\$`HL$hH|$XHt$4 fD@<HT$XH$H9wIN0IN0HHzHHIV0H/dxdvHhH(~H1HIHH1ЉHH HRLhH|$HHAIEL9ML9L9L9M MTM\T$4H9$99H\$PH9H\$PHruAtIFD$4H]ËE"x$DcH$H\$xH$H$YH$KH$H\$8HL$XHL$p#Hj_ $[.H$H\$8I.Hb8.HD$p*H f.H$*H~f-H$H\$xH$A.{%#H$HHXH$fH9`HpPHx`H)H|$hHH?H!L$AH)HL$`H >H$HD$XD$4HD$hHL$`H$1H]HL$hH\$`H$HD$XH$"Ha-HcD$4'H ,H$h)$"HD$hHL$`H$HD$hHL$`H$H$H$D;H9D$XAH$H\$`HL$hH|$XHt$4Q@#H; S IfI^ORHAAMEO$ M$OHL$`HDHD$8D$0HD$HHL$@HT$`1t$0|$49LHHHىHD$HHL$@HT$`\$4HL$PHD$XH9D$8AHD$`H\$@HL$HH|$8Ht$0@uD$4Hh]f蛹HD$H\$kHD$H\$I;fv.UHH(9Hw H(]ÉʋL,2H(]HD$H\$L$H|$ HD$H\$L$H|$ I;fv)UHH(9Hw H(]ÉʋL,H(]HD$H\$L$H|$ @t$(tHD$H\$L$H|$ t$(I;fv1UHH(9Hw1H(]ÉʋL,/H(]HD$H\$L$H|$ HD$H\$L$H|$ UHHD$H8uEu 11H1]s 1E1E1AAуAD1L9L)L)HHH?I!JHB4s 11E18H9w H7H)H)HHH?H!Hп]"qLDH9s,D EAIˉAD`E A€uLDD۶ֶDALH9v/DEAIDAE AÀuLADʐ薶葶I;fUHH8|pHPHcɐHsgHD$HHH HIHc HL$0HHHH HL$0H<H|$(HL$HHHY1'HD$(H8]1H8]HHD$H\$L$谘HD$H\$L$f;I;fUHH@u)fH/}H 1,@t uH1H1uH/ t uH9Xhu@qH1T$Ht$L$8u HuH@]HD$P7HL$HD$PHHxL$T$8tt HHHxx}H HD$PH}Ho HD$P@[HD$ HD$P;HL$ Ht6HHD$(HL$0HD$8HD$(H$xEWdL4%H@]H/H/HD$H\$L$|$赖HD$H\$L$|$I;fv%UHHHZHBDAH]谕I;fv.UHHHD$%6HD$Hr:H]HD$HD$I;fUHH0HD$@5HD$@HHHH|_HD$HD$@9HL$Ht:H`HD$HL$ HD$(HD$H$@ۓEWdL4%H0]Hi HHD$,HD$BI;fv%UHHHZHBD@H]PH HH~1HHHH@HP8HtHtH9HѐH~ H9HP|H@XHH`HtHH@XI;fUHH@HD$PH\$XL$`HH5HtYHD$HHxHL$(IN0IN0HL$ iHL$PHT$H+JHL$HD$(3HL$HH\$ 1H@]HH2Ht=H~H9u ~ tH9w)u߀~ vHL$XH9NHDHt$`f@u1HT$0H"a3Hr"HD$8H"7HL$XHT$8HJB HL$HJHL$0HHHH JR"HT$HRHHHH@H HցHلHHHHHD$HD$(D6HL$ ZuAtIFHD$H@]H@xHD$H\$L$DHD$H\$L$I;f(UHH(HD$8H\$@HHHځH HHH HL$ H9HށH9u HH(]Ht$Ht$jHp 0HD$8oHdHD$@QHDHD$1HDHD$ HD{HD$ 'HDH/HD$H\$@ېHD$H\$I;fUHHHHHHHyHQH9P DubtUP HyvyHL$HQHpHrH1nHL$Hyu 1HQ0 HQHRHQ0H]1H]ÃP Q$HDH] H CHD$ɏHD$@I;fv5UHH8HhHpH111E1IH8]HD$H\$VHD$H\$I;fvkUHH0HD$@H\$HHJH9uHjHT$HL$HD$HD$H$͊EWdL4%HD$03,H ]HD$#HD$YI;fvUHHHZHB1#H]8I;f'UHHHD$( "L$ux tHP+HD$(f{+L$tHD$(L$HD$(P t!ӃP uX HPHZ$HxH@…ux tH@@Hx u XX~T$H HP P/L$tT$7HD$(x uT$%HP%/HL$(y tHA8豽T$ ‰H]ÐHJ P>HD$腊HD$I;fRUHHHx9HHH H9AH="tHQHD{IHAHHHHQH~5HpHHLDHLF=D"tLZIMCHHHPH9HPHHHD:="t L:MH:HPfH9rSHpH~HD$(HL$1HD$(HL$Hxu1HP0 HPHRHP0Hu1HH8H]C;H <%HD$HD$I;fUHH@Ht$pLD$x@H\H@HD$PH\$XHL$`H|$hL$LD$xHt$p"T$ux tHPj(HD$P[(L$tHD$PL$HD$PHP Ht$`Hp Ht$hHtP="fuH|$x!Hx(L@8ʡI3I{H|$xI{MCHp(Ht$pHp0Hx8H$Hp@HpHH|$XHxD@ @AtXAD@ AtL@HAEH$D@ AD@ L@HM@8MtfI9~D@ LHEL@H11D@ Au*Hx~x t x AHHAHHA@Etx tuMMMAuWI9zP}X@t$HHT$ D$(HD$0LT$8HD$ H$D;EWdL4%D$H@]ÅɐDL$\$ux tH@@Hu PX~@t$H HP *L$tL$HD$PL$THD$Px uL$L$;HHPHL$H@8L$ ȈD$HD$f[*L$HD$PL$L$t@[L$T$tHD$XcL$H@]Hr> #e9HؐMH8MtI9|HLIx8AEtHػH7 !f9H  9HD$H\$HL$H|$ Ht$(LD$0LL$8!HD$H\$HL$H|$ Ht$(LD$0LL$8I;fvIUHH(HJHBzu$x tHD$HL$ HP )HD$HL$ HYP H(]I;fUHH0HD$@IN0IN0HL$ x tIHHHHh5HT$(H$HD$(HD$@#HD$@H uHx~x ft x  1Ʉx t=IN0H/dxdvHhH(~H1HHHHH1HhCHK K HKHD$(HP8Hp0Ht HtH9HHL$HuH9ˆT$HD$@L$HT$11HT$L$H HP @['HD$(HHH G'HL$ ZuAtIFL$t HD$HH0]HO )Q6HD$膂HD$I;fUHHHHD$XLt$8fHD$XHHHHT$8sHpHHHH4DF@AHxpHHH @H9AHEYHL$(HQHT$@H!HD$(D$HD$(H HT$@ %L$fD:H|$ Ht$0HL$HY!HD$0H }H ="t HHH菚I H@HHT$XJ$HJH\$ H9vpHJHt$HD1=M"t H<1BI;H1HJH9r3HZH HP %uHH]HH]HH]HH]趝豝HD;4薝HD$kHD$I;fUHH(HKHtHD$8H\$@HL$HS1H(]HHƐH9}lH:=o"t LGHdMHGHDG At ADG Ht$HT$ ADG HHD$8HL$HT$ H\$@Ht$D{="t HKI HC1ɇK$1HK01HK81ɇK HHH 9HD$H\$XHD$H\$I;fUHH@uHH8Ht8H93HH8HP0HtHtfH9HHD$PHH01HH811 H@]HOHpH9.HpHHL1I9@HEHAtHt$8H|$(LD$0HL$ T$LD{HD$0H fHT$PJ$H H HJHYH9hHrHHL3LLLT$(I9AHL$ LL=Y"tL 1nMMKLHJH9HJHD=""ft H4 I3HHJfDH9Hz="t HHHI H@HIJ8t)HXHt$ H|$8H\7X X HL$( HL$(\$\$HL$H HP z!HD$PH|$T$)t f[ HD$PHxu 1HH0 HHHIHH0H@]@ۙHci0HX0賙HD$H\$L$@{|HD$H\$L$'I;fUHH8HP8Hp0@Ht HtH9HHHD$HHL$XHu+HT$ EWdL4%H$HD$HHL$XHT$ p$`I~0HHh5@H9uHcx HH9@1H\$0H9}@uHH1H8]Ð@{HD$HHxu 11H\$011H11H8]øD$HT$HHzt1HH\$0HL$XfHtҺHOD$HHT$H1Iv0HHh5H9uHPHx L@(LH8LP0LX@H)H~-IHIHHHPHJ/HHHLI1Ld$hH$Ht$`LD$PL\$(H\$0LL$XLT$8IT$A|$ @t[AA|$ HuAEl$ IT$Hz$LH$H\$0Ht$`LD$PLL$XLT$8L\$(Ld$h "T$$@u&A|$ tI|$ uA|$XDž AL$ IT$ LHD$`HtHHH HD$`H$HteILt$H=v"tI舐I3ISH\$HHHcT$$HD$`H$ADD$$EtHL$P^LL$hAy uHL$PKIAPfHL$hHy uqXHt$(H9q@LD$PL MELH1HD$8H\$XH|$0HHL$(f֋t$$t H$H-HD$hx u H$HHPgH$Hu HD$`HTLt$@LYHT$@=+"u HD$`HHI HD$`HHǂtHp]H ;)H *)H' !)H)HD$H\$HL$rHD$H\$HL$[I;fUHHH"DH H 1HHH9}AH4HtH5H5Ht HtH9HHH9HHLHHEH\$H"HD$H]RtMI;fUHHHHH9HPHHH|LH H2HH~dHFHH9HHLLHI9f|3EPD9Pv)H9scHLL2="tL 2IMKH9s5HH2L9t"H|2=͠"tH2MICL2H]lgbH&KH&HD$H\$ sHD$H\$I;fUHH HHH9HHHsH9~6H9HpHHLDHMLD$HT$H@H ]HLMHLHHLOL9LWL9LLfDL9FM98IH)I)HHIH?I!JIzMIE1I IGILL$I9}7ILHHM9|DPD9RvLT$M,MmMHLT$MfI9LIJ.J|.H9s}HH|=Ҟ"H<MDۊII{MH9s5HHH9t"LD="tH裊IICHH ]-LMD H$H}$HD$H\$pHD$H\$I;fvLUHHHHH~HD$(HH H]HL$HHL$HHD$(H}H]HD$DpHD$I;fUHH0HD$@H\$Hx t-IH9K`t HC +DHD$@H\$HHf蕟EWdL4%H $HD$@x t IHJPP uHXHtH9}HHH0]HzHT$HD$HL$ HD$HHD$(HD$H$mEWdL4%H0]H0]HD$H\$ oHD$H\$I;fv%UHHHZHrHBHN`fH]nI;fUHH HH HL$y t(HP`I9tHQB +DHL$HKHD$x f@ H t tHx~H HHHQ$H uHx~x t x  1҈T$HP 2L$tHD$@;H ]ÐH]c!HD$mHD$I;fUHHH@ HD$[ HD$x tOH tHQP u"H tuH HHHQ$H HP gH]ÐH HD$lHD$ZI;f UHH0HJHL$(HHL$ JL$H H HT$ H HT$t2HT$(HHHH Hu|H= u`H~ Ht0QH H0]HH H "AHj Hu 1H˨ H H]Q 6{HQ 6jk@I;fvEUHHHJHL$H [ HL$H H H fH]jI;ftUHHPHJHL$HRHT$HHH:EHHH@ @tHHHHH\$8HT$0HH H(HL$@H HL$@D$ 1HH}6HT HtHD$HH\$VHL$HT$@HHHH HL$0HT$8HH=t"tH1HH裃IIsI{HHǂHHHD$HHL$HT$0H8dEWdL4%HD$HHL$HP]fhvI;fvSUHH HrHt$JIV0HHD$K"HD$A3HD$mH ]hfLd$M;fUHHHJHHHHHHRHH)HWH HHvHAIDIЃHDŽӨHIHHRI)JHE1D f,H$HD$@D8DxDxH\$@HD$PH (HL$pH\$xH$H$HD$pH$D{fEWdL4%H|$HH$HJHZHHH9s8H5;5H$HJ="tH2IIsHHZHHH[؃=ؔ"t H\$hHHL$@D8H\$hHD$@D0D3DpDsDpDsHĘ]HĘ]HD$yfHD$I;fUHHHHrHt$0Iv0HHD$(HrHt$@HRHT$ #HD$0 L$\$HHt$@HVHP0HtHR@HVHD$8V V$V%HT$ HHEH H 1H\$0@HT$@HBHD$8L$\$HD$('HH]Ð;eI;fUHH`HD$pHB 1~HL$0HT$XH2HzHÃHHLɠ ILD$PLALD$8HҺAIELo IH裙HT$0Ht$PHHT$XHHD$pHL$8fHxHG 1HL$(HT$XH2HzHÃHQHT$8HAIEAAMEL  LHT$HHМ JHHT$(Ht$HHHT$XHHD$pHL$8HnHO> 1HL$ HT$XH2HzHÃHQHT$8HAIEAAMEL LHT$@H0 JHdHT$ Ht$@HHT$XHHD$pHL$8HnH`]HD$cHD$̐H @ H1 H9t  t H 1HtHH 1H„tH1HI;fvFUHHHD$ HEHL$ HA1՜HL$ HAǗHL$ HH]HD$bHD$I;fvIUHH HD$0HHD$HL$0HAHt H\$裦HD$H ]HD$bHD$fI;fveUHHHD$ HHD$;HL$ HA="tHQD{{IHA˖HD$D[H]HD$aHD$I;fUHHHHD$XHL$hUXHT$hHrH+5 DBcAu DJbMAH|$0D?DH Ht$0HR HT$8LL$@I[HH]HD$H\$HL$9aHD$H\$HL$EI;fvWUHH8HD$HHL$XWHT$XHRH+ H HT$0H|$0IZH8]HD$H\$HL$`HD$H\$HL${I;fUHH`HD$pH$H$H\$@VHD$XH\$8H$H+$ HHT$0HT$@HHEH5 HH$qHT$0HT$HHD$PHD$XH\$8H|$HIYH`]HD$H\$HL$H|$ _HD$H\$HL$H|$ I;fvSUHH8HD$HHL$XUHT$XH+E HHT$0H|$0IXH8]HD$H\$HL$_HD$H\$HL$I;fUHH@HD$PHW@HugHL$`H|$hbUHT$`H+ H HT$0HT$hHHHDHHT$8H|$0I:XH@]H2( (#HD$H\$HL$H|$ I^HD$H\$HL$H|$ 0I;fvSUHH8HD$HHL$XTHT$XH+ H HT$0H|$0IWH8]HD$H\$HL$]HD$H\$HL$Ld$M;fUHHLH9uHz0H9Hu(@HuHNhHtHVpHV@HN8HHH$H$D$HT$xHL$pH\$ D;D{D{ D{0D{8HT$0HL$HHuHH HL$0HKHL$HHD$0m;H HD$ H\$(H$HPHHL$E8ExEx Ex0Ex@ExPL$LT$ E2E1ErEqEr Eq Er0Eq0Er8Eq8H$H$$$H$E0D0EpDpEp Dp Ep0Dp0Ep@Dp@EpPDpPHT$xH9T$0uHt$pH9t$HuH9Wpu H9wh1һmH]$H$HHD$hHD$0HD$x0H @HD$hHDH$H f{HD$x 'H$HXHHL$ 16$@t.H$D8DxDx Dx0Dx@DxPH]Hخ [H^0 ,JHD$H\$HL$H|$ Ht$(DD$0fZHD$H\$HL$H|$ Ht$(DD$0I;fUHHXHz$DB(DJ)AuAtAHD$hLPHx00\$pDXYALXHMc0M9$M$MM9c0A t1AMؐLXHMX8LX(MPIL@PA_L\$PLِLXHHI@HHH7HL$hHHYHT$PHrXDH)Hq Hr8Hq(HPHHQPHIH\$pLT$8HT$@DL$/HxJHLӾ HcLD$hIP(HIP0L\$pDL$/HT$@LT$8At H@ HAt,t HYftHYuH@ fHx uHH0HH HH HH0HQHP8H9P(sHHH8HH0HH@HHHHxXu5Hy u H@"H@HL$hHR HHRHQHX]HX]HuR11HD$0HL$HH ')HD$HH\$0H @[ ZL谰HHHD$\$L$vWHD$\$L$"I;fUHHhHH HPfDHHD$xHT$PHPHHH\$HHT$`H5HHT$xHrfH9r uHz(H9z0Ht$H~(@t @t@u zY@zY zY@zYv(@rXHHZHr HrHB Hr0Hr(HB0H1ۉ;Hh]HD$xHYu(Ht$`H~0tH|$H(u1H|$H Ht$`H|$HtL$'Hu11_HD$P(Ht$`HHD$xH\$(HT$XHHL$@H@ HD$8H &HD$@;Hu HD$XH\$(H HD$8D[vHD$`HHXHHL$x161D$'HD$xtH@ Hh]Hh]HHt$8H|$0HTHD$8H9HD$0HD$`HHXHD$xHx(HHH0HúQHD$THD$I;f!UHH0H@HYfuHHHH@(HH9uH0]HL$(HD$ HT$HHD$H6 PHD$fH 5HD$ HHD$HD$(HHL$ H@HD$KHHD$ PHf@HD$1LgH& #HD$+SHD$I;fvLUHHHYu'HD$ HHHHHL$ HQH9r HH@H]HBH]HD$RHD$I;fUHH H\$8H=w t`H=w tVHz(uMHPPH|DHpHLPI9v\H\$8HL$@HHH4HHPPHN5HL$@H\$81f 1H ]HH9~HHuH ]HH ]oHD$H\$HL$H|$ QHD$H\$HL$H|$ L$M;feUHHhH$xH$H$H$HT$0AD:DzDz Dz0H@Au1:HL$ HH$xH$H$H$HT$ H$HH9HxHT$ H$HHPH$@HH$8H\$0 HHD$(H$xH$@HH$81H$xL$LL$ L$HADZXH$PH$XH$`E1L$HLL$ H$PH$XH$`Eu;H$PH詶H$xL$LL$ L$HHM9H}L$PMtE[(*E1%L$`ALcI]IG#Au)DbXA tAtAtL$DM~IL$fDM9LgL$OdIMM9H$LI)IHI?L!LL)L$I9H|$(H ~H9HLH\$0H9tQH$0HHHdoH$0H$xH\$0H$L$L$L$HL\$ L+L#HHh]H bkf[kVkHJkHD$H\$HL$H|$ Ht$( NHD$H\$HL$H|$ Ht$(MI;f(UHHPP+w1#pt@AH@AAEIL!HtlHL$pHt$Hw1#PTDAH@AAEIL!HT$@HT$@HtD$$\$!11HP]ÉHT$@LHS@t$"LD$HF LQLT$0AaAu^@u!Hّ*D{H  HD$@T$$\$!LT$0t$"Augf@u 6HtD{HđD[HD$@T$$\$!LT$0t$"=DL$#HL$8@uLHVD$$HL$8HT$@\$!t$"LD$HDL$#LT$0fIB|LT$pO @s!DgA߉IA@MM!IM!L\$(/HD$(ED{HD$@HT$$\$!t$#@8v DL$"HcL$"AAEL<AAADAADuKHN;HD$@T$$\$!t$#DL$"T$$\$!t$#DL$"@8wAqDLT$8IAtqDA@u,HjvHHDVHD$@T$$\$!t$"LT$0H[HD$@T$$\$!LT$0t$"1HP]HHfHfHD$H\$HL$H|$ IHD$H\$HL$H|$ I;fUHH H\$8HD$0H$H\$D$[iEWdL4%H\$H|LD$8IPHD$0HD$0H\$811HIH ]HI9vRD A]uH9L11HIH ]I)IMII?HL!H4H H ]eHD$H\$HHD$H\$I;fUHH@HD$PHuGHruntime.H9u8xgopau/fx niu'xcu!Hg"H@]HD$8HL$0Ht$(H\$ H|$LD$HD$8H\$ %HD$0H\$HD$(H\$H@]HD$H\$GHD$H\$I;fUHH@HD$PH HD$0%Hu15H\$(HD$8PH$x(H؉Ht$PE1E1H\$(HD$8t HT$PHtHHL$06H@]HD$FHD$[I;fUHHPHL$pH|$xHD$@H\$85H @{HD$@Hu11XHD$8[HHHL$xHt&HpHD$x!HD$@HD$8D۝HL$pH9HH)HD$@H\$8Hѿ%HD$HL$$H\$0f[HHD$HH\$0H<D$$Hc[vHD$@HD$8EHL$pH9sHHL$@HD$8*HD$(DH?jHD$pHL$(H)HP]HD$H\$HL$H|$ DHD$H\$HL$H|$ I;fvHUHH(HW0LpMt HhHxL11HH(]þ8H(]HD$H\$HL$H|$ 9DHD$H\$HL$H|$ L$xM;fUHHH$(=n" LG0MAHHhMPMI9H$H$H$ @$0ALHO0HPH$D1D0DqDpDq Dp Dq0Dp0H@H@uHO0HPHHO01҇LH$"H$H$ H$$0H$(DAAu HGpH_hLG0MtMMt IIIكH\$(D;D{D{ D{0D{@D{PH$D:DzDz Dz(LsL$H$H$L$H$H$@$H$1HuH$H$H$(H$(H(HtHLAL$1H]H$H$L$D2E0DrEpDrEpH$H$H$H$H$1 H$H(H$HL$L9wH]HD$H\$HL$H|$ @t$(AHD$H\$HL$H|$ t$(Ld$M;fUHH$HZHJHz Hr(DB0HBH$H$$1ɿ2f[H2H$H$HT$0H$D0D2DpDrDp Dr Dp0Dr0Dp@Dr@DpPDrP$1H$HH)HpH~qH$H$HH)H$H; H$HHD$0$2bfHD$0$2GH$Hĸ]Hĸ]ÈD$>D$ZL$(M;fMUHHPH$pH$xHD$hHD$pH ZH$ H$pH$(H$xH$0HL$hH$8HL$pH$@HHHIv0"@uC։H$`$hH$H|$oT$4|HL9H$`HH@H$H$H$HH$謼H;葼HDH$H\$x HjD$8Hc觼D$4cH$H$aH$`H9AvkH$H$;HD$PH$`HIH$fۻH?jH$HL$PH)H$`H$HHP0Htr H9tT$<HA0H$HA(H$HAH$NH7fH$NH fH$.HfH$IH$HH$`T$<к &H$`t$4H|$XD$hOHH$ H/HH$D9DyDy Dy(H H$1111HD$pHD$h1HP]H\$pHD$hHP]HfH99H$HԈH=\ tFH=M] tu1HzHR HHHH~ HH1H1I;fUHH`H|$PHD$pH\$xH$H$H$袷H1HD$PGHh{ѷHD$pHD$XHL$xHL$H1HT$0HHD$XHL$HH9}HT$0HHD$(HD$@H\$8DHtPDH$DP( E1E111L\$0M@H؉DDE1@tHD$@H\$8HL$(jH|$x2u 趶HEDH$nHu1/H\$ HD$@PH$x(H؉1E1"H\$ HD$@tH$tH$1H`]HD$H\$HL$H|$ Ht$(T4HD$H\$HL$H|$ Ht$(I;fUHHhH$H\$@HD$8t$$HD$HH\$PHL$XH1T$$}HT$HHt Ht$PR:114Ht$XHcf@H(HH|$PTHHD$`L$ H\$0Hu11HD{HHHHH|蔿OH3yHD$`H\$0jHYL$ HcHL$8HD$@׊H$H9sJHL$8HD$@蹊HD$(oHwH$HL$(H)f衴;v葴Hh]H@{OHD$H\$HL$F2HD$H\$HL$Ld$M;fUHHHJHrLJ L$LJ(L$LJ0L$LJ8L$LJ@L$HZHD$0D8DxDx Dx0Dx@DxP1AHD$0H$H$H$H$H$HHĸ]0'Ld$M;fUHHH$H$H$H$HT$0D:DzDz Dz0Dz@DzPHHHHAH%HD$0H$H$H$H$HĐ]HD$H\$HL$H|$ Ht$(t0HD$H\$HL$H|$ Ht$(I;fvPUHH IV0r*DHt H9t HH9u H ]DEpH ]HD$\$L$@|$Ht$ DD$(DL$)/HD$\$L$|$Ht$ DD$(DL$)[I;fWUHH0 yIV0D"EuCAfA @uA tAt@At1H0]Ã@DHu11@t$X t$XfDHu6Hruntime.H9u'xgopaufx niuxcu@u H0]HD$(H\$ H$H\$D$.'OEWdL4%H|$|4H\$ H|"Hruntime.HD$(H9t 1H0]øH0]øH0]HD$\$L$@|$@t$ DD$!-HD$\$L$|$t$ DD$!YUHHD$H|Hruntime.H91Ʉt%HHKHHH?HsH<1]HHD>A.uH|nH9LFfDL9H)HSHHH?L!HH|KDA(u@L*u6L>)u,HHHH?HH1H1 H1H1Ht0 Ar(fZw!HuAr Z11ɉ]IIILd$M;fUHH |vIV0"uCʉːʁ sցHH= LHTֺLqt uG@t6fD@/rL{!HH L:HT:H$HT$0LD$ht$$L$ \$tuYHu1MP[EWdL4%H$H$H+HH@GO?LIHHH"H?H)HH1H|$(HHD$`ҬHQ aHD$`wH$HH0Htr H9tL$f{Hhq H$f{趬H$HH0Ht^H$HHD$X,Ho軶HD$XQHqD蛶H$IHysq,ǫHoVHD$hH\$0GD$ u"蔫H;{ #۫D$ T$$ shHOu貫D$ H$HH/H=w47@t]Ht$0H }1&HT$hHH@Hz xDH$u#ǪHP} VH$HD$(@H~>薪Hm%HD$(軯H.v ŪH$Ht%NH f۴薪H$HHt6H@HHD$`H裴HD$`蹮TH$H`tZ"1tDH`HHHt1HL$8HHD$p詩Hby 8HD$p17腩HfmϩHĘ]H$H HJHHT$8H9HL$@H$HH$HHHL$PHHHL$xH@HD$H H$H\$P[H=l芳HD$xH\$H;6HD$8HHHT$@H9Q貨HkAHD$8HT$@&臨HkѨH/DCHD$&HD$I;fUHH` pIV0"@uCʉIN0HHt]H9tXHD$pH\$xHL$0t$,ק-HD$0HH1H|$01HD$pHL$0H\$xt$,HT$8D:DzDzH=]H|$8HD$@HL$HH\$Pt$XHfH`]HD$H\$%HD$H\$I;f UHH0HJZ H9Bt HrH9uH0]Ðt uH0]HD$@\$,HHӄHD$@1tD$,} H0]蛦֨HD$@GH|$@HG0I9F0t1Ґt2Hhu+PHV 6@۰薦HD$@ HH116H0]H0]HD$D#HD$I;fUHH`HQ0Hq(HtH9sHI HIHH$H$Ht$ LD$@H\$8HD$0HT$tI9wILD$(lH}HD$ qHukDۯHD$@QHt D軯HD$01HFhD蛯HD$8HShD{6HD$HH\$(HHL$ HHH5Ht$HH$Ht$PH$Ht$XH9HGH9HBHL$0H9HGHL$8H9HBH)HL$H賗H`]HD$H\$HL$H|$ t"HD$H\$HL$H|$ ;I;fUHH(HD$8H\$HJHRHT$H9A0u@HL$ HĢ@軣HgJHD$8HL$ HT$H\$H9A(u5H胢{Heg ţHD$8HT$H\$H9u#HIDH9hӭ莣H(]HD$H\$ HD$H\$ I;fUHHHD$ \$(H0HH(t tf u1H]Àu$L$(t1H]Ë K"H]Àu(L$(t1H]ÐHL$ H]ËHH؉yH|Hruntime.H91ɉH]1H]HD$\$X HD$\$ I;fUHH`HD$pH=D t)H=.E tHL$(D9DyDy Dy(11CHL$ HT$袡Hz1HD$觨£fۡHL$ HHD$pH } HfHuH`]HT$ HH^aHT$ HHD$pHL$(H }H4HuHD$(HH`]HD$:HD$I;ftUHH(HD$8H\$@HL$HHH\$@HHЄ8uHD$HHD$HpHL$HHAHt3HD$ hHD$nHD$ H\$@薢豠JH٪蔠/Hx軪vHD$HHHHtYHL$ H;hHD$HL$HHIHL$HD$ H\$tHչcHD$y贡誟Hc9HD$8详ʡHD$HHx(1H(]øH(]HD$H\$HL$HD$H\$HL$ZI;fvNUHH H"wIN0LH9t H H H1H=5B HHHH]HD$HD$I;fvtUHH0H\$H5G"wIv0LH9t H HHv/HD$HD$H\$ HL$(H HA H\$H0]9HD$H\$HL$H|$ MHD$H\$HL$H|$ TUHHHHD$X@t$xL$L$K H4Hv H|$8HD$@H\$0HL$(KEWdL4%H|$8HWLBL $MI?I:MIL9MCLOLGI)ѐI4T$xBT HWHrHwLB II9L:M@!1MAʀEHIH }fDIsE H4HvHwH$H$1LGHH9~^LGMH LƐIwbM9wXN MI 1fMAˀE HIH }fDIsE NM@HD$@H\$0HL$(HH]7H7{7Ho7Hc7UHH(HD$8HtHWH HH9tT$'T$'H(]UHHHD$(H\$0HL$8H|$@H]HD$HD$(HD$HD$H$DEWdL4%HD$@HD$(H\$0HL$81H]I;fvJUHHHJHL$HO ;HL$HAHt HYH{O vH]kI;fUHHHD$(H\$0HL$8H|$@HHD$HD$(HD$HD$H$6EWdL4%HEWdL4%HD$@HHHQH$HH?H:HHH9HCHXHD$@HHD$@H@HD$(HtHP@HH|$8u(Ht$@LFfDIBD HFDHt$@LFIBD 1HFHt$@LFILL$8FL HFHt$@LFMH IfM9hLL$0M0MR 1MAˀEHIH }IsE NM@LFHt$@LFMH IM9M 0MI 1IAʀEHHH }fDHsANM@LFHT$@HrLF IL9wuLM@ 1IAɀE HHH }@HsAH40HvHrHT$@HrLF LBHT$@HrHD$(H\$0HL$8H|$@H]n3Hb3f[3HO3J3H;3H/3H#3H3HD$H\$HL$H|$ fHD$H\$HL$H|$ I;fUHH(HJHL$ HK 藵HL$ HAHtHYD;HL$ HK HtHQH H K HK 讹?HK 蛹Hj"H 1p /HL$ HAHtH(]HP+UHH1 HHHHH }3H }HsIH΃ɀL τHs%L HHuH]H&2H1Hz1I;fUHHHD$(H\$0HXHHH)H0HT$0HHt$(HH=iJ LMt HDH0H4HtgJ uH UJ H]HD$H\$PHD$H\$WI;fUHH=7P HpN 1qHhN 1aH:N 蕦H6N 艦HJN f;HDN 1L=f@"t%H -N HM HM ,I ISI[HN D=M HM D[H]H*dL$M;fUHHH$HL$HD9DyDy Dy0H@uH$H $M HVDL$/HHLIH$`HmHcHDH9RHHHt Hu6H-LPMIL`IIMEHHLl$@LQII?A(LxLh IHuMuMu MAE1H$xH)H$`HHH?H!ILII?AHLL$xL)IELd$0H$xL$PH$XH$H$pL$Ht$8HD$HM_ M|L|HHH$HH LM9|H$LK I<1H$1ɾ4@t"HWH2D HGH$HfHH$hH$HҺHEH5F HH\$H1H$hHrffHD2 LBMHLJMP IkM9]MMR!Ld$01MAˀE HI@H }IsE$ M MILJMA IM9MM@ L$P1MAʀEHIH }IsE,N MILJMA IM9wMM@ Ll$@1MAʀEHIH }IsE,N MILJMA IM9MM@ L$x1MAʀEHIH }IsE<N MILJMA IM9MM@ 1IAʀEHHH }fH=sAN MILJL$L H KH$pH$H$XHt$8L$DL$/vADHĘ]*H*@{*Ho*j*H[*V*HJ*E*H9*H-*H!*H** *HD$D HD$QI;fvVUHH HHG HHt1HTHT$HD$HL$HD$H$ EWdL4%H ]HD$Z HD$I;fvfUHH(HJHL$HRHT$HL$ HoB HD$H\$HSB NHL$ HG HH(]/ I;fUHHxH$=oH H  uL AEL DH MH$H$H$T$OL$LL$pH$H$;EWdL4%H$H|$PD?DHH?H:HH$HtHcHHHT$P HD$PH$Ht HHT$XHL$hH$Lb@Ld$`Gu H 1ɆHx]Hx]Hx]@EWdL4%HL$hH$H|$P1L%^E AE,$AEtLl$pAL=AE O,IEHu D$OAH1۾IL$L$L$'T$OH$L%D A$u H 1ɆHx]HD$H\$HL$H|$ Ht$(LD$0 HD$H\$HL$H|$ Ht$(LD$0I;fUHHPHD$`HfHt4HHIHHHRII)KHHI1Ht$HH\$@AHHHHRII)KH1AD"„tYLkHAMDLAKDŽIHAIHHRI)KHE1D*EAL$pIcEIAIN(H1HAL:Ht HHH(H{H<L$pH\$@Ht$HAA AAHfHt1HHHHHRII)JH H1DHHHHRII)JH1D"„tNLcHMDMAJDŽHAIHHRI)JHE1D"EtgHLF@DIAIJ&(HHAE117HtHHH(HsHJHHD$8LMtLIfHuBHT$HHSHHHH\$hHHHL$pHT$HH\$`Ht$@HHD$8I1H:AEupHH9r kH9J8aHT$0H|$(HB0H\$h4u#HL$pHT$0H\$`Ht$@H|$(LD$8"HL$0HA(1HP]HG(HP]HD$H\$HL$yHD$H\$HL$I;fUHH(H\$@HL$HH|$PHt$XHHD$ HHD$H\$@HL$H#HD$ HHL$HH0HL$HHH8HH@HL$XHH(HL$PHH H(]HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(8I;fv>UHHHD$(HHL$1x1HT$(HJHHD$H]HD$2HD$I;fUHHHHKHDHPHPHT$Ht7HHJHHw$HT$H)HsnH H@HH]HHD$H HL$ HD$(HD$HD$0H\$8HD$HD$@HD$ H$@EWdL4%HD$HH]HWH''HsմHD$H\$HD$H\$I;fKUHHHHJHL$@HBHD$0HJHL$ HJ HL$8袠HD$0HHHT$@H HtoHt$ IHqLHvH2LHLH2HpAL)Ht$(谤HL$@H HT$(HHH@HL$8HHH]øHU"H nDHT$@HHtEHL$0HHt$ HpH2HH|$8H7HH@ۖHD$0HH]HVXHI;fUHH HD$0HPHT$@2%HHPHH T"yHD$0HT$HpHuHpfHt*HH T"GHD$0H1HT$1H ]HD$HD$Qj; UH=E; t]11]̐IN0IF0 uWH H; Hu21҆QuAtIF11HXPHXHD$HHD$Pv ɉP H 1҆QuAtIFI;fUHH`HD$p$H\$PHD$XH\$H$HcHT$@HT$PHHEH53 H 1HT$@HT$0HD$8HD$XH\$H H|$0ItH`]HD$H\$L$HD$H\$L$(I;fUHHPHD$`HHT$HHڃHT$0HT$HHt$0LILH|$8D?HcHT$8LD$@ IHP]HD$H\$HD$H\$WI;fv6UHH0HD$@; 11IJH0]HD$H\$HL$pHD$H\$HL$I;fvXUHH8HD$HHD$0H7 HT$0H|$0IH7 H8]HD$H\$HD$H\$I;fUHHXHD$hH\$H5HD$PH\$@HT$HHHEH5*1 H 1:H|$0D?H:7 HT$0HD$8HD$PH\$@IH 7 HX]HD$H\$HD$H\$9I;fvXUHH8HD$H[HD$0H6 HT$0H|$0IOHx6 H8]HD$H\$sHD$H\$I;fUHHhHD$x$H\$H$HH\$@HD$`HH5aH H|H\$HHڃHҺHE־AIEHt$8H50 H-HD$0HT$8H5g/ H 1wHT$0HT$PHD$XHD$`H\$@H|$PI'Hh]Ð{HD$H\$L$GHD$H\$L$I;fv6UHH0HD$@11IH0]HD$H\$HD$H\$I;fvFUHHHD$ HuƁDH]H5HD$H\$eHD$H\$I;fUHHXHD$hHHHL$xHT$PH\$8HD$HH\$0HT$8HHEH5|- H 1HD$@HD$HH\$0 H|$@IFHT$PƂHL$xHHX]HD$H\$HL$THD$H\$HL$DI;fUHHHHD$XHtntXHT$@zH|$0D?HT$@HHt$0HHT$8!IbHT$@ƂƂHH]H8HD$H\$hHD$H\$9I;fUHHPHD$`H\$@HD$HH\$8HT$@HHEH5+ H 1HD$0HD$HH\$8#H|$0ItHP]HD$H\$@HD$H\$LI;fv6UHH0HD$@$11I H0]HD$H\$5HD$H\$I;f1UHHxH$H$H$HHIHHHRII)JHAD @t/LD$pH\$HD$7L/HD$hH\$@HD$pH\$HH$HD$8HT$HHHEH5* H 1H|$PD?DH$HHT$PHT$8HT$XHD$`HD$hH\$@L$7IHx]HD$H\$HL$H|$ @t$(HD$H\$HL$H|$ t$(I;fUHHpH$H\$@IV0HHT$`HR0HHT$0HD$hH\$8HT$@HT$@Ht$`L֨IL֨H|$PD?HHT$PLD$XIHT$0H@tVHD$HLL$@IH@L- MHs0IHT$HHD$hH\$8'H|$HIPHp]HD$H\$uHD$H\$I;fv6UHH0HD$@11IH0]HD$H\$HD$H\$I;fUHHhHD$x$H\$HnHD$`H\$@$HT$8HT$HHҸHEHD$0HEHA' H 11T H|$PD?HT$0H5+ HHt$8Hs0HHT$PHD$XHD$`H\$@IHh]Ð; HD$H\$L$HD$H\$L$I;fUHHhHD$x$H$H\$XFHD$`H\$P$HT$HHT$XHҺHEHT$@HEH5& H H$1& H|$0D?HT$@H5* HHt$HHs0HHT$0HD$8HD$`H\$PIHh] HD$H\$L$H|$ HD$H\$L$H|$ I;fUHHhHD$xH$H$H\$@HD$`HHD$`H\$@HD$`H\$8H$Ht$@LILD$0LHHEH5$ H H$1 H|$HD?DH$HHT$HHT$0HT$PHD$XHD$`H\$8IbHh]HD$H\$HL$H|$ HD$H\$HL$H|$ I;f#UHH@HD$PHHHHHHRIH)HHD*E1AD*„tTMl$IAMDMAJDŽHIHHRI)JHE1D"@tgHDIAIJ&(H1HIAE1DHtHHH(Hs HHR LD$(L1MAɀD HIH }IsD H41HvHwHwfH HHH?H!H4>Hv H9HLH\$hH9tH|$0HT$8HHHT$8H|$0HWHD$PHxmH@]HHDHHHwHD$H\$HL$H|$ Ht$(xHD$H\$HL$H|$ Ht$(I;fveUHH HxtCHD$0H HL$HD$H\$HD$H$BEWdL4%HD$0H@H@H ]HD$H\$HD$H\$wI;fvSUHH HJHL$HJHL$H2gHL$HAH\$@۲HrmkH ]bfLd$M;fUHHH$H$H1151cHWHD 2HWHrHwHWD:!HWHrHwLB I(I9HL$PH\$HHD$XL:M@!L$E1MAˀGIII }IsG I4HvH|$@HwGHD$0\$,HL$8EWdL4%HD$@HHHQH$HH?H:HHH9HCHXHPH)ːHKD 3HHHQHPHq f@HH9H4Hv!1IAȀD>HHH }fDHsو>HHRHPHJ HH9HH[ HL$81Hσπ@<3HHH }fHsވ 3HHRHPHJ H-H9H HI H\$01H߃π@<1HHH }fHsވ1HHRHPHJ @HH9L$,HcHH[ 1Hσπ@<3HHfDH }Hsڈ 3HHRHPH HL$`HL$HHL$pHL$PHL$xH$HD$XHD$hH$H$HD$`H$EWdL4%HĐ]HHzuHidHXHLGH;H/H#HD$H\$HD$H\$I;fvKUHH HJ HL$HJ(HL$HbHD$H\$cHfH ]I;fv1UHHH\$0HtH\$0wH]1H]HD$H\$:HD$H\$I;fvzUHH(HD$8HHu 11HHٿ11fHHHt HHH(@HsHHt$ HHD$PH\$pH9p@wHi"kHD$H\$HL$HD$H\$HL$I;f<UHHHt \$`H _1HH]HHHt8H(fH9rH0H9sHcH H9RHH]HD$(Hbf[WHdHdL$`脈\$HHL$@H.[L$@uc8H &fCD$`Hc?HWICHD$(@?H !*C8H^~HD$@HH]HD$ H(HL$8H0HD$0L8H:BHD$8Q?HDBHD$01?L:g8HD$ HHHuHÐ.iHT$8Ht$07H %eBD$`Hc>HWHBHD$8>Hd*BHD$0D>97H h!D[iHD$\$茵HD$\$I;f|UHHHtt H 1HH]HHHtH9(wH90v1ɉ\$`HtYHL$ H@HbHHHu-HL$ H(\$`HcH2H0H9JHH]HH]HD$(HTHH&bL$`f蛃HHL$@HiXHD$@Hu^6HY#@D$`Hc=H@HD$(fD$XHc:H,>HD$ :HD=3H/H@]HȐ{ H@]HD$H(HL$0H0HD$(3H=HD$0:H=HD$(f9513HD$HHDHuH.dHD$\$۰HD$\$-I;f UHHHtt1111H]IIHH4IH4q|HAIHHH@HH!H4AuJ<J4HvDt11:D$H 0HT$H9t 0L$\$+膨H]HKH4LINAtM|0AHLHH@ML!HAuH H49HvPKHD$D蛯HD$L$M;fUHHH=CH^H$D9DyDy HOH$D:DzDz Dz0H@uDzHH$H$H$H]wPH`Ht H2HzHR111HH$HHH?LHH$HwH$1H]HIH9kHL$xLD$HHH Ɍ$H~Hf0H~@*H~8$H~PH~pH~8fH~8 H~PH~0HufHHtHu 1H]H$H\$@H$H$H$(HL$@H9HH$H$ H$(T$twH]HzDH H O$H@0H^0H$0tH$ HI@H$(H9J@1ɉH]HP8DH9V8t1H@0H^0H$0H]P2f9V2P0~0ff9uuD@AtH 8@fu1E1LDNAtH8fu1E1L 1H|$0L$HT$8L$11H]H@0RH\$xH$H$(HA04HL$xH9uGHH$t3H$ HQ@H$(fH9V@u HT$x1n1H]1H]H@0H^0H$0u1%H$ HB8H$(HZ8H$0SH]H@0H^0H$05H]H@0H^0H$0H]HN@H9H@uhH@0;H\$xH$H$(HA0fHL$xH9u*HH$tH$ HQ@HT$x1v1H]1H]øH]1H]1H]1H]øH]øH]HD$HHH$ HT$xH9HY@@H9H$(Hs@H9HD$HHI8H$H@HT$pH[8H$HH\$hH$HL$pH$HHL$hH9HH$貾HT$pH$HDH$H\H$0[HL$pH$HfH\$hH$HL$pH$HHL$hH9usHH$t\HL$pH$H\H$H|H9u-HH  8k1H]1H]1H]1H]1H]øH]GBHD$PHH$ HT$xH$(DH9Hy@H9Hy8LF@L L9H$HD$PL$HN8H$H H$LfH$HL$PH$H$H$H$H\$pH$H$ǙHL$pfH9HH$臼H$KH\$pH$H$1HL$pH9HH$3tpHL$PH$\H$QH$HL$PH$\H$+HH$0H$I1H]1H]1H]øH]VQHL$`HH$ HT$8H$(H|$0L$L$H9}5MH9rHL$`ILH$0u1H]P2fuE11Cx@tH8x0LH9H)IHHH?H!L~2fuE11EDFAtH8DF0DHI9L)IHIH?L!HLT$ H$LL$(H$1"HD$XHH$H$LL$(LT$ L9}1H{I;fv*UHHHi!D*H[!6*H]+I;fUHH D$fDD$IN0IN0HL$H7)1k HtO1۹ZhH .HT$~uAxIFkH-HL$ZuAtIFH ]ÉD$.D$I;fvUHHHai1<II;fv%UHHH"1Hf{aH]萈I;fv?UHHHD$ ƀAHD$ t. H]HD$1HD$I;fv'UHH$膵EWdL4%H]Ld$M;fUHHHu HĈ]Áx2u!ƀHǀI;fvOUHHHKHt'ruAtIFH!VH]HD$H\$軃HD$H\$I;fv UHq]芃I;fUHHHD$(H@8DyH|$(u1H HD$H|$HD$H$豁EWdL4%H|$(=$!~1~=k!tHf[IHLJH]HHװH5!HH׸H\HH\HH\H\ HH\ HHD|HT1HHHH]HD$eHD$I;fvJUHHHJHL$H? "HD$H@Hq? D]H[? V&H]KI;fvUHHH+? &7H]躁I;fvOUHHHD$hHD$HXHL$tH!ƁH]HD$AHD$I;fv UHѾ] HHJ!H cH`H@HHuHCHH WH* "^CHH(WH* !^CHH0WH* !^CHH8WH* B!^CHH@WH* !^CHH`WH* ^CHHHWH* ^CHHPWH* B ^CHHXWH*  ^CHHpWH* ^CHHhWH* ^CHHHCHHHCHHH+HKHHHCHHHCHHHCHHHCHHHCHHxHCHHHCHHHCI;fnUHH@HD$PHHT$8H HL$H5 Ht$ H;u H{Hu\H\$XHH‰f{F=!uHT$XHT$XHrf蛕IIsHBHL$HT$8Ht$ HHD$PHO Hw(=J!tHw@[IIsHWHH9OtNH|$0HL$(HHHHT$(Ht$0HVHV=!tH IIKHHD$PHHOHQH9v$HD$H\$L$`HD$H\$L$I;fv%UHHHHùH@[H]HD$_HD$I;fv%UHHHHùH@H]HD$_HD$I;fvrUHHHt7HHHHpBHH9w3H|.H˹fH]HHùHH]HH)HD$H\$^HD$H\$jI;fvUHHMH]HD$H\$^HD$H\$I;fv1UHHHK(HD$HL$HAHH]d^I;fv)UHH HۺHLHH ]HD$H\$HL$f^HD$H\$HL$HtH1UHH H9tX=,!t8HPHt/HD$0H\$8HL$@HHHH!6HD$0HL$@H\$8HHHHA~H ]H ]I;fvUHHmH]HD$H\$HL$3]HD$H\$HL$I;fvUHH-H]HD$H\$HL$\HD$H\$HL$UHH0H9HLHtxH9tjHL$(HHH=!t9H\$HH|$XHt$ HH)HHHHHH5H\$HHt$ H|$XHHH(}HD$(H0]HH0]1H0]I;fvUHH.H]HD$H\$\HD$H\$UHH HD$0H\$8HHH11ې[4HD$0H\$8yH ]UHH(HHHfDH@r1)H5!HHtHH %HH1H@rc@uLBL9rH9BpwF@t2=J!tHT$ HHHH>HT$ 1HHH(]1HHH(]HrhL)J\HH HJHH(]HޭޭޭH9u=׌!t1HHHU>11HH(]̐HHHH@r1f)H!H HtHH %H H1Ht1HޭޭޭH9I;f5UHH8HL$XH\$PHD$HH11 )@{~H}HmHL$HH|$P>HHT$(HD3@#H H=!uHT$XrHT$XIHD$0HPH[}HHL$HH|$P AHT$(H=!uHt$0HPrHt$0I3ISHpH11j+H8]1H.,H|$HHt$P HD$H\$HL$XHD$H\$HL$I;fv)UH=!tH |rIIKH{|]HD$gXHD$fI;fvUUHH0H\$HH!H\$(HHNHD$ KtHL$HHHD$ H\$(kLH0]HD$H\$WHD$H\$I;fUHH H!HHLHIv0LhI/dxdvMI(~M1HLHIH1ЉHLhIv0LhKI(~I1IIIH1ЉL11HLhHuHSHHHѿ{KH ]HD$H\$VHD$H\$I;fv UHv]VI;f<UHH0HD$@Hƒ!f{HD$H0HD$(eHD$HH(HHHP H@HHT$@HPHpHu Hp@811uHD$H@@1HP HǀH1HP(HǀH tHD$(!HD$@H\$2}Ht#HD$ H!H\$u1H\$ H0]HD$1H0]HX&, HK' HD$PUHD$I;fUHHx8tfHH(HHuFHH HHu&HD$ H@}H4!H\$ JuH]H!)H $*H #qHD$THD$[̐Hs8rur fwusrru s1Hu Hru 1HH Hwu1HH(1HI;fUHHPsHD$I;fvfUHHHD$ H=k!uHL$ WHL$ I HHHbp=h!t HZH]HD$*>HD$I;fUHHHD$ H8HtsHf8aluxlu f8weuixrtcaHu 8noneuS1rHu8crasuAxhu; WHu.8singufxleu:8systufxemu #cDHuH9u=g!u =g!t h!H AH]HD$H\$=HD$H\$@I;fvUHHH]HD$\$<HD$\$I;fvUHH-H]HD$\$y<HD$\$I;fvUHH證H]HD$\$9<HD$\$I;fvUHH-H]HD$\$;HD$\$I;f&UHH HD$0HeH=euZ =i!tH eUIIKHe=h!tHeTIISHxe^eHgeHL$0HHH8uf 4eL$Q'eH(eHl=eh!uHL$0HtTHL$0I ISHHdHwT$T$HdD$H ]HD$:HD$I;fv%UHH(1۹1 @{ H(]HD$K:HD$I;fvUHH H]HD$\$HL$:HD$\$HL$I;fv%UHH(HϾDH(]HD$\$HL$9HD$\$HL$I;fv%UHH(HϾDH(]HD$\$HL$b9HD$\$HL$I;fv%UHH(HϾD;H(]HD$\$HL$9HD$\$HL$I;fv.UHH(t-11ιH(]HD$\$8HD$\$I;fvUHH11 H]HD$X8HD$I;fvUHH H]HD$\$HL$8HD$\$HL$I;f|UHHH uH]HD$ 蘹H$'HD$ f;H D薻豹H;D;HD$p7HD$fI;fv$UHH-gEWdL4%H$H]17I;fv+UHHH3H$5EWdL4%H]6I;fUHHPLt$0@HL$0HuHft\HHL$ H1AyH HL$8HD$@1HL$ HL$HH{H\$8HHgBHHD$(ѷHD[HD$(ѾH}H/1xH =HtHIH5HDu}HHthHt1HVxH HtHIHHwH;%xH HtHIHHF!z떃 HHHHHJHHHHH@1HD$HtyefuCYHsHD$[v葶H<|DHi$HD$6QH` H fHtHH H U1KHHL$HI1vH 5HL$8HD$@1HL$HL$HHH\$8 HHH1ivH fHtHIHHH`lArHH RHp*HDH\!HH2H*2I;fUHHHHHHHppHH9wH|H9|HH]HHqH!HHH9wH|ؐHHmHHD$H\$HL$-2HD$H\$HL$9I;fUHH`HH)HhH>Ht#L L9fDHIH%\!HH`]LNHIMtIvIx LfHw5LWILhGIDLGSL)I)_LIISLGID1LGSL)I)fII9vM HIHI9AHMkHLIIfMtIvMP MfIw5MZIL%hG#IDgL%G\M)M)_MII/L%G#ID L%G\M)M)fMM9vM IMHIIMII L9AHHLMMILWL HLIHIH@IMtIvMXMIw4McIL-CG$,IDL-̀GdeM)M)ܐ^MIIL-_G$,IDL-GdeM)M)MM9vM IMIIIMIL9ALHM2HHT$8IHHLIH=Mt@H=vHPHHw;LZIL%7G#IDL%G\H)I)LILIIL%LG#IDL%oG\H)I)LI5HH9vHD$PLIL\$PHHT$ LIL\$ AL1ILHT$8IHHHHEI9HD$pHL$HHT$8Ll$0MtnH$LHyHL$8H=DZ!tyHD$XHH\$pHH$LIM)LOHHLHD$XHL$8:LT$@H\$(L11 HD$XH\$@HT$(H)H3JHL$8HD$XHD$XH\$pMHD$XH\$HHL$0H`]H޴HRHDFIH:IHD.IHD"IHIHD IHDHHHHDHHDHHHHD@HLLIIL9wDMIHH{HD$H\$HL$H|$ Ht$(;+HD$H\$HL$H|$ Ht$(fI;fUHH H@H9HD$0H=w]H=w*HPHH5{HDH5^|V9HHH5fHDsnH53|VHHHT$H11HL$H|3HHH9wH\$0H9wH ]DG@Ht薌1茌HDDGHDGHH@HD$)HD$UHHH2 2gI;fUHH(HD$8s@Hu 11H(]HD$11HL$H|=HHH9w"HD$ H\$8IHD$ H\$H(]Ht![HD$ )HD$aI;fvUHHIH]HD$H\$HL$(HD$H\$HL$L$xM;f5UHHHT$yyyyH$HHHq1LDH9HLL9|IV0IV0H$L DT$p@u!IyIAIDLTI8@9HH$EWdL4%$pH$L$=Su11H\$@H$Hػ(kO A!H$H\$@QH$Pfv ʉPH 1@2ru*AtIF$p$p $pH$$pL$=@!t =Ru11H$H$Pv ʉPH 1@2ruAtIFH$$pL$DGDuAtIFH^_11HY3H9H$HHH`Ht&H`=aB!tHHr.I I[H "ZfHHH$HHt&H$=B!tHH&.II[뿐HXH hH$H$H$H$H$ H$H $EWdL4%H$H$H$H$H11E1E1H(HLLfDH9L$D1E2DqErDqErL$AIHIIHHRMI)KHuHt$xH$XH\$HL$LL$PH|$X$$@GH$L$D$L$H\$HHL$XH|$PAH${CHt$xL$L$IIHH$XLHLfHt)HHH(fH[H!f8oo\fff8f8f8f8f8f8ffH~fofof >!f>!f>!f8f8f8o ohoto|fffff8f8f8f8f8f8f8f8f8f8f8f8ffffH~fofofofofofof =!f=!f>!f%>!f->!f5>!f= >!f8f8f8f8f8f8f8DoDoHDoP DoX0DodDolDotDo|fDfDfDfDfDfDfDfDfE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fE8fEfEfEfEfEfEfEfEfL~fofofofofofof dHP0?XjeH$HHD$HD$T@H$/0H(MHHt>H\$HSH UHHHH[I^@H\$I^8H]I^`I^0H3L9u =LIdL4%If8HPL"AԐX$=]UH U]UHH|$dH%HX0H;CHteHH9t]H;u]dH%IHb8HH?dH%HX0HdH%H`8Hh`H@8H@`]HH?]HO>UHI^0L52I^0L3dL4%I^H HHHi dH<%H_0H$HG@HD$HG8Ho`HWPH3H9u M<(HsHH9u Z<HD$HCHD$HCH{HdH%Hc8HC=̺VI$I\$IL$I|$It$ MD$(ML$0MT$8M\$@fAD$HfAL$PfAT$XfA\$`fAd$hfAl$pfAt$xfAּ$fEք$fE֌$fE֔$fE֜$fE֤$fE֬$fEִ$I$I\$IL$I|$It$ MD$(ML$0MT$8M\$@A~D$HA~L$PA~T$XA~\$`A~d$hA~l$pA~t$xA~$E~$E~$E~$E~$E~$E~$E~$̋L$(Hw HH w H`H@w HHw H?Hw HHw H[Hw HHw HwHw HH w HH@w HaHw HHw HHw Hk Hw H Hw H Hw Hu H w H# H@w H Hw H Hw H-Hw HHw HHw H7Hw HH w HH@w HAH88dL4%I;fv^UHHHt$0L$8HLd$HHT$(L"ALd$HHY !<HH9vUH| Huu&%H tHHDHTHKHHHHHH9vHHHHHHHHHHH)H)LLËfNfOËLLHHHHLHHLooLLooNoTo\OT\ooNoV o^0odoloto|OW _0dlt|ooNoV o^0of@onPov`o~pDoDDoLDoTDo\DodDolDotDo|OW _0g@oPw`pDDDLDTD\DdDlDtD|fEHooNoV o^0of@onPov`o~pDoDoDoDoDoDoDoDoOW _0g@oPw`pDDDDDDDDHHHfE?HH)H9HH IoioqHHH oyDoAIM)DoIDoQL)DoYDoao&LH)ooN oV@o^`HO W@_`HH)wHH~"wks{DCDKDSD[DcH oloqoyDoADoIDoQDoYDoao&IHH IM)L)LH HooN oV@o^`HƀO W@_`HǀHw~ wiqyDADIDQDYDaHo.ovHo~ DoF0LWIDoN@DoVPIDo^`DofpL1HofL)L)Hw{HoFoNoVo^HGOW_HHw~"w(px D@0DH@DPPDX`D`pH@oFoNoVo^HGOW_HHw~"w(px D@0DH@DPPDX`D`pUHHpH$HL$HT$H\$Ht$ H|$(LD$0LL$8LT$@L\$HLd$PLl$XLt$`L|$hdL4%IF0HH5H@@DD@DDDD@DDH@@~~@~~~~@~~)bHbHHbHPbHXbH`bHhbHpbHxbqH@bqHH bqHP bqHX bqH` bqHh bqHpbqHxbH@bHHbHPbHXbH`bHhbHpbHxbaH@baHHbaHPbaHXbaH`baHhbaHpbaHx (08IF0HH(>DDD@DDDD@D@H@~o~o~o@~o~o~o~o@~oooo@ooooH@o)80( baHoxbaHopbaHohbaHo`baHoXbaHoPbaHoHbaHo@bHoxbHopbHohbHo`bHoXbHoPbHoHbHo@bqHoxbqHopbqHoh bqHo` bqHoX bqHoP bqHoH bqHo@bHoxbHopbHohbHo`bHoXbHoPbHoHbHoL|$hLt$`Ll$XLd$PL\$HLT$@LL$8LD$0H|$(Ht$ H\$HT$HL$H$Hp]H0Hl$(Hl$(H$Ld$Ll$Lt$L|$ dL4%fEHHHHHH$Ld$Ll$Lt$L|$ Hl$(H0̋|$HD$<̿Ht$T$DT$H=vD$̋|$H=vD$H|$Ht$T$D$ ̋|$Ht$T$D$ UHHD$ @BH$HD$H#H]̸D$̸'AĸDT$̸'Njt$≯'HD$H|$Ht$HT$̋|$Ht$HT$D$ ̋|$t$ HT$LT$D$ ̋|$D$H|$Ht$HT$D$ UHHII^0HHH $HT$HT$ HJHHL;uHHb8HHH4$H Ht:H$HT$LHL$HH $HHiʚ;HHD$ H]H̋|$Ht$HT$DT$ H=v %H|$Ht$HT$LT$ D$(UHHH|$ Ht$(HT$0H2HHH܉D$8H]UHHD$|$Ht$ HT$(HHH]H0Hl$(Hl$(H$Ld$Ll$Lt$L|$ dL4%fEHHHHڸHH$Ld$Ll$Lt$L|$ Hl$(H0HHtoHHtcdH%HtZH@0HtLHtBHHt6HIhHt-LPMt!LuH -L HuLb A uH L!L NHOHH|$Ht$T$DT$DD$ DL$$ H=vHHHD$(HD$0HD$(HD$0UHHH|$ Ht$(T$0L$4DD$8DL$UHHHD$EWdL4%_H]UHHHD$EWdL4%_H]EWdL4%_EWdL4%._EWdL4%N`EWdL4%dEWdL4%EWdL4%UHHHD$EWdL4%H]UHHD$ H\$(EWdL4%f[fH]EWdL4%jEWdL4%EWdL4%EWdL4%. UHH0H$H\$HL$|$t$DD$ LL$(EWdL4%H0]UHHH$H\$EWdL4%D$H]UHHHD$(H\$0L$8EWdL4%D$@H]I;fv^UHHHH9uFHD$(H\$0HKHXHt(HD$(HP`H\$0H9S`uHHL1H]HD$H\$-HD$H\$I;fv%UHHP+8S+t1 *[H]HD$H\$HD$H\$I;fviUHH9uSP8SuJP8SuAP8Su8P8Su/HP@H9Su!HPH9SuH H (1H]HD$H\$BHD$H\$sI;fviUHHHHH9KuOHS@H9PuAHP H9S u7HD$(H\$0HH;tHT$0HZHT$(HBHJ1H]HD$H\$袿HD$H\$s̋9 u HHH9K1I;fvPUHHHH9u8HPfDH9Su(HPH9SuPf9SuHHTt1H]HD$H\$HD$H\$I;fvUHH@(H]HD$H\$賾HD$H\$I;fvRUHHHD$(H\$0 t%HL$(HQH\$0H9Su HIH9K11ɉH]HD$H\$9HD$H\$I;fvVUHHHD$(H\$0 [t+HL$(HQH\$0H9Su HIH9K1ɉH]1H]HD$H\$赽HD$H\$I;fvUHHH]HD$H\$sHD$H\$I;fvIUHHHD$(H\$06u1HD$(H8H\$0H8hwH]HD$H\$HD$H\$HH9 u HHH9K18 HH9 uHHH9Ku H8K1HH9 u H9K1I;fUHHHD$(H\$0 ztWHL$(HQH\$0H9SuCHQH9Su9HQ H9S u/Q(8S(u&Q)8S)uHQ0H9S0uHI8H9K8H]1H]HD$H\$註HD$H\$Y̸HH9 I;fvYUHH9u HD$(H\$0HHJpu1!HD$(HXH\$0HX GH]HD$H\$ҺHD$H\$I;fvUHHH]HD$H\$蓺HD$H\$HH9 uBHHH9Ku8H8Ku/HHH9Ku$H 9K uH$9K$uH(9K(u HH0H9K01HH9 uHHH9KuHHH9Ku H9K1I;fv>UHH8u'HP8H9S8uP@8S@uHH,1H]HD$H\$荹HD$H\$I;fvUHHH]HD$H\$SHD$H\$̋9 u*H8Ku!H8KuHH@H9Ku H9K1I;fUHHHH9uxHPfH9SulHHH9KubHS(H9P(uXHD$(H\$0H[H@t=HT$0HZ HT$(HB HJ(tHD$(H0H\$0H0(1H]HD$H\$WHD$H\$H̸HH9 uHHH9KuH8Ku H8K1I;fv5UHHHHH9KuHP@H9Su HH1H]HD$H\$薷HD$H\$I;fv5UHHHHH9KuHP@H9Su HH1H]HD$H\$6HD$H\$I;fvUHH&hH]HD$H\$HD$H\$I;fvKUHHHH9u3HPfDH9Su#HPH9SuHH H9K uH@H[1H]HD$H\$D{HD$H\$f.uszq@Kf.fu_z]@Kf.uMzK@Kf.u;z9@ K f.u)z'@(K(f.uzH08K0u H18K11I;fZUHHHH9>HPH9S0HHH9K"HS(fH9P(HPXH9SXHP`@H9S`HSpH9PpHH9HD$(H\$0H[H@{u1?HT$(HB Ht$0H^ HJ(Xu1HD$(H0H\$0H0(4tlHT$0HZhHT$(HBhHJpu1KHT$0HZxHT$(HBxHu1%HD$(HH\$0HÈ(1H]HD$H\$MHD$H\${I;fvXUHHHD$X(wD{HL$ItHrHHHH?HH]H]HD$踳HD$I;fUHHHtD[HK1 11H]HH|%4@.uHt@[uH@]uHHQH9rH)HHHH?H!HH]2HD$HD$f[I;fUHH(HwDuHH0/u(HH0$uHH8uHH0 uHH01Ht HH(]SHH1H{TzUOHHKfaHD$;HD$QI;fv,UHH-Ht H 11HHH]HD$HD$I;fv!UHHHtHH]ZHD$菱HD$I;fv!UHHHtHEH]HD$OHD$I;fvgUHHHәH9u=HH=j tH {IICHH]HH t=ΰHHXHI;fUHH(HD$8H\$@HL$HH|$PHt@Ht;HQHt H511҄LL9u.Hz@{H(]H9t1HH(]HHH 9yDHRH9fDHD$H\$6HD$H\$I;fvUHHHH]HD$HD$I;fUHHHD$(HؐHHH tmHJHHH tr1$Mvu H\$(1fHD$(vH\$(HKHD{[HL$(H HuOH]Hсu5s/HL$vt!HD$HL$(1H„t H&vH]HH7 CHD$HD$I;f&UHHH 1fHCHCHH9}HЄ= tHsάI3HRH S1HHCHDH9}EHH3= tH{袬I3I{HsHsHs=h tH3[I3HH HѹHH =, tHӹH WIICIKHD=H]苒̐H} @1ɉI;fUHH0HD$@H\$HHL$PH|$X1HH}TH4HvH6HtHT$ >ufHHftHD$@HL$PHT$ H\$HH|$X1H0]øH0]ÐLD$(IpHD$@HL$PHT$ H\$HH|$XHlHt$(LHFH^HN Hv(HHAАu1H0]HD$H\$HL$H|$ [HD$H\$HL$H|$ I;fvWUHH Hh0u&HD$0H\$8HL$@H HD$0HL$@H\$8HPHhHHH ]HD$H\$HL$ϐHD$H\$HL${I;fUHH@HL$`H|$hHt$pLD$xL$HPH2HHX(HHL$pH9tMHD$H%D{Z= u H$胩H$IHD$(HPHHT$xRHD$hHH\$`'HD$hH@]HD$0HHHT$H HIHH'HL$(HT$ HD$0HHHHt$HLD$pIH@ML!փM!AI9uDHL$ Ht$HD$0HCY= u HL$0c裨HL$0I QH HIJHRHT$8HH\$`&H\$hHD$8&HD$(H@]HH3>HD$H\$HL$H|$ Ht$(LD$0LL$8躎HD$H\$HL$H|$ Ht$(LD$0LL$8L$xM;f!UHHfDּ$H$H$L$8H$0D$?H$ H$(D$D$>HK@uHH$ ׄH$HQHHI(HHHD$`H$1 LHLҐHq@LHHLLH$HH{HHIHH@ML!ȃL MIM LMRMtFA9tHL$hLT$xL$Mc`L$L$(L$L$ L|$PI1IHH$HL$XLT$pH~1ADNAEu@H$HHL$XH$H$H$LD$`ALT$pMMt A;uE1 DfEAEu8^H.H$LD$`ALT$pfL *L$H$H$H$D$?DMtLA;L$H$LO`L$L$ Ld$HL$(L$L@1H$H$ HL$@H$(H$HAUHL$@HH=ȸ uH$L$8ϤH$IL$8MSHPH$0HP LP(H$Ht>H$HZ@HHt$`LD$XL$H$IHHD$p"HHD$p"H$0H$H$8H$D$>D$?H$HH$L$>H$H]AM[MM{fM9uL$I[LLd@uQH$HL$XH$H$H$LD$`L$LT$pL$Ld$HL$uH$HY Hq(HH$HL$XH$H$LD$`LT$pIH$ AH$L$D$>D$?H$HH$L$>H$H]HGH@-[8H4H=-H8A$MIMIAL9uL$IYLuIHL$hH$H$HLD$`L$LT$xL$L$L$L|$PH$HB HZ(H$H$D$>H]øuH$H$L$>H]HD$H\$HL$H|$ Ht$(LD$0*HD$H\$HL$H|$ Ht$(LD$0I;fv%UHHHBtH]0I;f`UHH8HD$HH\$PHL$XH|$`HKuHhHD$X[~HL$HHQHHI(HH֐HL$HHI@HHHHHHHHHH@HH!H DH$1HcH$H$@軹H$HY= tHIISH1H&HĈ]H$II111HĈ]MMA8vfMQMII?AMIuH">f;CH$1HH$H$H$HY= tH3IISH1H%HĈ]@MMA8!DPADPMQMII?AMIuHk=BH$1HH$H$;H$HY=h tH{IISH1H(%HĈ]Iu A8nuDPADPALHD$pLL$HLD$h1۾1AE1HL9} E$A-H9uHuAxuLcLA1lA+tfDA-FA+u E H\$PDd$GH;IH)HfH@HBL9F<HpHxHHHHL$xAyAIDHٺHH@HH!H9r HT$xHL$`DT$FL\$XHD$xHHH53nDHT$pHJ= tLBӏIMCHBHL$`LD$hLL$HDT$FL\$XDd$GLl$PE1HHHD$pHxHHHLL\HHRDA+H$H$LA-LPLXILhM9r A+LLLѿH5]CHT$pHJ= u DD$GA+LBIMCDD$GA+HBH$H$LD$hLL$HIIHD$pH\$PLXO[KDKDOTMRAA+AH{E1۾ZA0s vDAFwJA9w9H HIHIAEH@MM!M LAAs!El$Aw*DH'IAAEM AyL[M9~ PF\A0SA1IE1DH49O>H$1H2$H$H$H$HY=1 tHGIISH1H HĈ]H8@=H$1H4H$H$萳H$HY= tHӌIISH1H HĈ]HP8k=H$1HH$H$DH$HY=H tH[IISH1H HĈ]H7D~D~H[bisect-H$Hmatch 0xH$H$@1!HH#uHHHH?HHH=O uHT$(HT$(LB XqIMCHB Hx uHrH:Ht ?#uH0]1H93軗HHV;I;fFUHHxH$H$HD$hH\$pHHTH H|$hUuH E!HD$XH %15HHH9u HHx]HH HHD$XH9H4 HL1%fI9HT$8HL$@Ht$PHL $I|1I1L$I9u5Ht$HH|$0H\$`H$LquOH\$`H|$0L$H$HL@mH}HD$PHT$87HT$PHHD$@%H v$HT$PfH9H P$HT$HHHD$X1Ƀ= tHP -oI ISHH H }UH$H$D{H4SH mHH5FLD$XHtHgFH9uHHx]HD$XHx]HH $@6r1rHD$H\$UHD$H\$I;fv&UHHHHH]TI;fUHHH\$0HD$(HHL$0HH=ǁ uHL$( mHL$(I HD$HDH]&xH H= uHL$ ymHL$I HHH]HD$H\$SHD$H\$IL$(M;fUHHPfDּ$HH$hH$pH$xH$`D$1H5~ AD@@u H~ iHbH$8H~ H$@H$8H$HD$H$D8DxDx HD$@D8DxDx Dx0H@uDxHHD$@HD$@H$H$HHD$0H$HD$8H }HfPHL$0[H$H$pH$xH$H$`H$hHHD$ H$HD$(H|HOHL$ D$H$HHHP]jHP]HD$H\$HL$H|$ QHD$H\$HL$H|$ I;fUHH HD$0H\$8HL$@H|$HH5{H9udHL$@H|$HHRH H{HH38u$HD$@HyBH9uHD$HHxH ]H / HH HD$H\$HL$H|$ aPHD$H\$HL$H|$ (I;fUHH HD$0H\$8HL$@H|$HH5AH9uSHw Ht0~9t)H5zH9u(HRH H{H H88H ]HH `;HHH N)HD$H\$HL$H|$ OHD$H\$HL$H|$ 6I;fv)UHHHB@t跦H],OI;fUHHhHD$xH$H$HQHH LGHLHbtDA,5@H H9#LBL9II)IMII?M!IH9LOL9HT$(LT$HLD$PLL$@HL$8H|$ HLLH|1HT$8Ht$ H)HrIHH?LL$@I!H$I8fD9LD$@LL$XHT$0H$H\$xHL$PH|$H06H&IHT$@HP={ uHL$X gHL$XI HD$`H1%A=uHIHLHh]HH9}4 @#uHXHT$0H)HHHH?H{H!Hʃ=,{ tH8BgI I{HHHM={ uHL$`HL$`HQgIISHAHD$PH\$HH\$`)H$HD$xHT$(HH$HHHUjPjKjFjHD$H\$HL$MHD$H\$HL$f;I;fv3UHHH\$0HtHL$82HL$8H11H]HD$H\$HL$H|$ LHD$H\$HL$H|$ I;fvUHHHBH]KHJHI;fvUHHHBH];KHH9 u3H9Ku+H 9K u#HD9KuHHH9Ku HH H9K 1HH9 I;fv5UHHHHH9KuHP@H9Su HHf1H]HD$H\$KHD$H\$I;fvNUHHHHH9Ku4PD9Su'P9SuP9SuHP H9S u HHf1H]HD$H\$fJHD$H\$I;fv=UHHHv=w tH cIIKHH]8JI;fUHHi H:qH ;q=Tw tH qfcIIKHqH D8DxDx=w t H cI HD$H &HH4H H=v uHT$H m cHT$IICIKHPHl=v ftH bIIKHH]II;fvRUHH(HBHD$ HHH>HT$HD$HH\$ǠHL$ ytH(]HAHY HI;fvnUHH(fD|$ D$HBHD$H VHL$HD$HL$HL$ D$HHHD$@D$HT$ HH(]蒑H(]GI;fvkUHHHB=gu t Hf[aI HD$HHL$HA=7u tHQ LaIISHY ytH] GI;f<UHHH=t ftHk`IISHjHnH5nHt$01 HHfDH9H LB1HL9}D A=uHD$(HT$@H\$ HL$8HjHHH+tGHnHt$(H9ssHHLmID0=t t M 0`M I0%H*jH3HL$8H|$ D.HT$(HHHT$@Ht$0HH]@{cUFI;fUHHPfD|$HH\$hHD$`D$'D|$(D$&HiHH|$hHH5fs …}HQs 11, H|$hHHT$8H$s HT$@HT$8HT$HD$'H)iH2HL$`*t+HH lH9HH lHHD1JD|$(D$&D$'HT$HHL$&H\$0HD$(HP]D|$(D$&111HP]HH9}]4 fD@=uH)HHHH?HH!H HD$(Ht$0D$&D$'HT$HHL$&HD$(H\$0HP]D|$(D$&D$'HT$HHL$&H\$0HD$(HP]aӍHD$(H\$0L$&HP]HD$H\$ODHD$H\$DI;fv)UHHHBXf}藪H]LCLd$M;fUHHfDּ$D$GHD$hD|$pH9gHАH q }Hp 11 HnH$Hp H$H$H$D$GH sjHL$PH/m1HHQjH5RjHt$`H|$P11 HHH9LBL MtHH9sPHL$XL$H$LD$HHH5lH$Ht$`LD$HL$HHL$XLSIND=o tN[M MCN ZHD$hH\$pH|$xD$GH$HHD$hH\$pHL$xHĨ]膋HD$hH\$pHL$xHĨ] B$I;fv)UHHHBXf}wH],ALd$M;fUHHH$H$H$H$H$HT$H$HT$HD$xD$$$$@t$\$tH$HD$xH$\$tfHH$HHtHcH2HyPu HyhH$[BHDŽ$H$HKHr&HD$xSHtH_H9u]HH$H$H$H$SH$AHD$x1Hĸ]1HHĸ]H H WHD$ H\$(HL$0H|$8Ht$@LD$HLL$PLT$XL\$`@?HD$ H\$(HL$0H|$8Ht$@LD$HLL$PLT$XL\$` L$M;fUHHH$L$PL$XL$@H$8H$(H$ HDŽ$ H$D:HDŽ$L$E9EyDŽ$D$DŽ$L bL$L$I|$Pu1E1E11H$H$HT$mH5D6D2DvDrID$PI\$XIL$`FH$(H$H$8L$@L$L$PL$XL$HAL|$mH$H$H$ L$L$H$I|$hfu]1H$1H$1H$1H$1H$1H$1H$1H$H$jHT$XH5D6D2DvDrHT$EH5D6D2DvDrA$tD$?allofD$CwHt$?D$:denyD$>Ht$:H$H$ID$hI\$pIL$xH$(H$H$8H$L$@L$L$PL$XL$L$L$H$H$H$H|$XH$LD$EL$H$H$H$ H$(H$8H$L$@I|$8u1H$H$H$'D|$HD${QEWdL4%HD$ H$(H$H$ H$8H$L$@L$L$PL$XL$L$L$H$H$H$LF0L$HDIwL$E9EyL$uHgLHlH$(H$H$ H$H$L$HL$PL$XL$L$L$IH$H^0H$@Hv(1H$H$(K IOL$L$H$H$(L$L$@M9}J H9HLM9rL$H$I|$PuI|$htiHлHٿ,H H$H$(H$H$L$HL$L$PL$XL$IT$@rIt$HrHAHHI$HEH$A$ur =d H$PD:DzDz Dz0Dz@DzHH$PHDŽ$pA$t"HH!H$PI$H$HI$tH$H$XH$P1H$2H$HtMH$H$HD$HD$XHD$MEWdL4%HD$(HL$ H$ \H$HH$H$H$8HD$HD$HL$[MEWdL4%HD$(HL$ H$ H$ HH$HtA1HIIJH$ Ht H$H$HzPuHzhDH$1HCJH$ Ht H$ZH$H$H$1JH$ Ht H$HtHDŽ$ H$H$@HtH$ H$H$zt4p1HHIH$ Ht H$H$zuz(t5HJ0m1HEIH$ Ht H$\H$z(Hr0$u=H$'D|$HD$KEWdL4%HD$ $H$H$H$HZ THH$ fHt H$)H$HXHH}1HeHH$ HH$LRHAHzhL$M H$H$HÜ1II HH$ Ht H$H$fDH5 H$H$H$HøGH$ Ht H$H$1HaGH$ Ht H$xH$H H$H$HÜ1II(GH$ Ht H$H$fDHK H$H$H$HøFH$ Ht H$H$1HFH$ Hu H$H$fLRHAHzPL$M H$H$HÜ1II"FH$ Ht H$H$HA H$H$H$HøEH$ Ht H$H$1HEH$ Hu H$H$fLRHAsVH|H$H |H$H$1@II3EH$ HH$HH$PHt0H$x1HDH$ HtH$HPHHZHvHr1H$Hxhtu @Ht7z u1tH1fDH$ Ht H$}H$Zj1H2DH$ Ht H$IH$i1H@CH$ HH$HDŽ$" H$H$pH$H$hH$p}1CH$ HuH$HL1H$H$H$uH$kH$aH$ $HHѿH]HH9uH H$ $11H]HH TϼH$ H$ HÿB<1HBAHMAA MEF EF F EF L9}L MIDIrH$H$`H$H$XH$`~1BH$ Hu*H$LL$LL$@12H$fH$8HH$L$L$@L9}EH$8I<¸/1IIAH$ HtH$HH$XHt0H$PP1H$AH$ H{H$HH8H1HIIf@H$ Ht H$H$nD|$HD$eCEWdL4%H$H9D$ tWH$'D|$HD$-CEWdL4%H\$ H$HH8>1C@H$ HH$H$HQH$H9}CH$0$Hѿ?H$ Hu8H$HH$H$0H$@L$L$H12H$H$H$HL9M$M|L9~H$H$(H9@@H$8H 2H$$L(?H$ HuXL$L$L$OL$8L$(KTHRH$LH$@ML$H8H$@12H$HH$H$@L$L$HL9H$IHtQDH9u%HvHӹ1E>H$ Ht;$H1'>H$ Hd&H1H>fIH$@H$@L$L1H=L$IH$H$@I|ŀxft@1۹"TH=H$ fHt H$@H$H$@xtGHX TD;=H$ Ht H$@RH$H$@H$fHH$H$H.1۹HII<H$ DHt H$%H$HWLRL9$u,H9$u"H$@.1۹HII<H$H$@xt4e1HHB<H$ Ht H$@YH$@H$H$8H$(HvbH$ H$0H$@Hv@H$8H$(H$8H$0;;H$ H$@!FFFF FFFfEEEHD$0H\$8HL$@H|$HHt$PLD$XLL$`LT$hL\$p(HD$0H\$8HL$@H|$HHt$PLD$XLL$`LT$hL\$pL$hM;fUUHHH$ H$(1111UHt$xHT$pH$HHHHHH$HH$HH$(H$Ht$pH|$xH9H$H$Ht$`H|$hH$HHPHT$xHPHT$pHȻ GH$H\$XHD$x +H$H\$PHD$p HL$XH$H$H$HDŽ$H H$HT$PH$H$H$HDŽ$H$H$H$HDŽ$H H$HD$0H$HdHL$`HHt$hH9r H$XH\$xH$H$HHH5PHWHHHH$HL$`H\$xL$ I)HH)L9sH/HHHHHHH]HD$H\$HL$%HD$H\$HL$qI;fUHH@HD$PHt$pH|$hHL$`Hٿ1HHDHuwHD$(HD$`H\$hHL$pfHHHHD$(,HuHD$(&HtH@]11H@]HL$8H\$0HD$(&HD$0H\$8H@]HHH@]HD$H\$HL$H|$ Ht$($HD$H\$HL$H|$ Ht$(Ld$M;fUHHĀ$ 8HHLvA HD$HHleHٿ1HHH$@tD$CalloD$GwHT$CD$?denyHT$?HD$hHH+Ht$HL$xH\$pHD$hG%HD$pH\$xH]HD$h-%H]HHH]HD$\$#HD$\$Ld$M;f{UHHH$H$H{Ptm HHLUoAHD$XHEkcH$HQPHyXHq`H@HH$H$H{h HtSHWH9t3HD$xH$HHHaT@H$HD$xft HĈ]H$ HHLynAHD$8HajbH$HQhHypHqxHѐ;Hu 11HĈ]HĈ]HĈ]HD$H\$!HD$H\$XI;fvUHHHB #H] I;fvlUHH8HD$0H$8HD$QHD$HD$)6EWdL4%H\$(HD$ HuHtH8]ø1HH3HD$ HD$zI;fUHHhH$HD$xH110HD$`HH|$(LD$0I48HvHL$HHHT$xH$Ht$0H9~YHL$HHD$`HHHL$(HH$HL$D$@EWdL4%H|$t11HH=H5Hh]HKHL$@HH HD$`H^JH\$0HHD$XHT$xHt$`H$H|$01E1HO M@HLH9I9LJMI)I?M!IL)L"M,II9IL=L tL<8M+M{L\$0L,M9tH\$8HT$PLL$ LT$HLLH?HD$XH$HT$PH\$8Ht$`LL$ LT$HL\$0;HH\$@H11Hh];HD$H\$HL$HD$H\$HL$I;fv}UHHHD$(\$01f HuM t$0@8u 11H]HH H@HEHD$(u HHH]HHH]HD$\$HD$\$D[L$pM;fUHHH$H$(HT$pD:HDŽ$D$dMuLHL$H$8H$0H$(IP@HuHJH$ Ht1@Hk11HkH$H$(H$0H$8EDH'H$H$H$H$HBHZHJ fDHH$H$H$H$HrHu1VHH@Ht1H11DHeH$H$H$HH$H$H$LGMuE1_HLkHt1fH!11HH$H$H$H$H$IH$L$DJEt|z(uBEtpLO0L9J |fH(H@'H HHH1H]HH@.H HHH1H]HD$pHٿ HHT$xL$L$$L$Ld$HT$H$H$H$H$H$L$L$L$L$H$HuH$HD$xHD$pHD$xH$ŶHH1H]H$HD$h1H\$hH$H]1HHH]1HHH]1HHH]1HHH]1HHH]HD$pH$7"H$H$H$H0H9uHHD7@uHD$pH$Ht H$H$HHt H$H$荵H H$H$H$H\$d11D H$H@@HzHEH$H$LIEH$BH$11H]H$H\$d11. HH$H$H9u Hó&6uH$H$H$LfMt4IHt+H$HHH$H$1HHH]444HD$H\$HL$H|$ Ht$(LD$0HD$H\$HL$H|$ Ht$(LD$0DI;fUHH8fD|$0D$1H WB u H@B kH tHL$ H (B HL$(HL$ HL$0D$H=B HoD ZH5A tHA mH5A LHf]H0]+I;fv)UHHHB@t7kH]I;fUHH8HbHD$01H1HuMH\$0HKHv?HH9 s7H7褫HL$0HIHL$(HHL$ 1HL$ 1H8]jI;fUHH(H\$@HD$8H$H\$D$4EWdL4%H|$t11HH=H5WH(]H\$@HSHT$ H=HH|$8HӐH\$ H11H(]HD$H\$HD$H\$KI;fvBUHHD$,Hu HL$11]HH9~ H4H9uHH]HD$HD$I;fv_UHHPHT$ D:DzD$ " HT$ HT$HHL$(HL$@H\$H}1$Hu L$(1ɉHP]Ld$M;fUHHH$HSH$$H$H$H$ H$H$HJH9t.HHHT/H"H$H$tGH9t.HHH/HH$H$t H]H$DH^H|$8D?DD D0D@DPD`DpDHH$H$H$HVH$L$4H$ sSH$kD|$HD$%EWdL4%HD$ HtRH$t1=H$3H$fD|$HD$V%EWdL4%HD$ @HuJ$s0L$PIt 11H]HfHH]11H]9D$TuL$PH$ s0H$lD|$HD$$EWdL4%HD$ 4H$hD|$HD$D{$EWdL4%HD$ L$X9t t L$PL$P$!уT$49u 11H]HsHH]11H]H]HHH]f[H]HD$H\$HL$|$ Ht$(UHD$H\$HL$|$ Ht$(8I;fvcUHHHD$(Huu,H=HHH7'ubHD$(HL$8H\$0@H9Iu>HHHHH'ft#HL$(H&tH_uH]1H]HL$(HH]HD$H\$HL$HD$H\$HL$wI;fv^UHH(H s%HHHH\ H Ht HH(]û flHH1HRbHH(]HD$2HD$I;fUHH8H\$PHD$H|$`HHUHt1 H11HHt$(H|$ HD$0T$`H\$HH Ht[HwuH !H"LH uH H6fHuH HH肢H H HL$8HT$@HHHP]HHHP]"HD$H\$HL$|$ Ht$(HD$H\$HL$|$ Ht$(I;fUHHXH\$pHD$hH$$HHHt1H11HHt$HH|$8HD$P$H\$hHH$E1MRHtdHD$@Hwfu[HtXHwuHZ H9s H5Bf軪H$Itime.LocLfDalHZH9s)L$H5wH$L$H$H$H$Htime.LocH Hocation(HLIIX)H$HH$H9r H$NH$H$H$HHH5^H֩HHHH$H$H$H$H$H$HHHHKH$HSH$H9r H$GH fHuH$D?D "H$HӿH5'HHD:)HH0HZH9sH5H$Itime.UTCLHÐH9sH5OʨD)HH1H]HD$H\$HL$HD$H\$HL$aLd$M;fUHHH$H$HV H@}L\$@E;E{E{ E{0@tH$H$H$H$H$H$Hv1H H$H$H$H$H$IH$IIIL1fHH1HĠ]HD$H\$HL$H|$ Ht$(rHD$H\$HL$H|$ Ht$(I;fUHHXHL$xHL$PL$H\$HH$L$HD$@H$L$II#LH#"fuAHD$@HL$PH\$HH$H$L$L$L$DHD$@H\$HHL$PH$H$L$Ai*HX]LHduBHD$@HL$PH\$HH$H$L$L$L$HX]HD$@H\$HHL$PH$H$L$E1)HX]HD$H\$HL$H|$ Ht$(LD$0LL$8LT$@HD$H\$HL$H|$ Ht$(LD$0LL$8LT$@L$M;f$UHH`H$L$L$L$H$H$H$4H$H$H$@H$HHJrE.HHHH$H$IIIE1E1E1E1H$H$H$H$H$H$XH$H$PH$H$H$@H$H$`L$MML$pL$L$L$H$H$XL$0L$PH$H$L$L$fHUL$pL$L$L$L$L$8L$0HH$PH$hH$0H$`HuH$H$XH$H$LL$M9r L$XNH$8H$xH$XLHH5LLĢH$IIIH$8H$xL$XL$L$LHHH:H$hH$`H$0H$H$XH$HH$H$HH$L$0M}`rL$L$XH$.H$HH$`H$0IIIH$H$hH$L$L$L$0L$L$L$8M}` fsXH$/H$H$hH$HH$`H$0L$L$L$0IH$L$M seL$MiQML$M)IH ijIH H$HiI)HIHHkH=Ht$8IHD$0=/uHT$8H;HT$8IIKHH@]HD$蛨HD$QI;fvuUHH8HD$HH\$PHaH9uFH|$`H\$PlfH|$`H@ HD$ H\$(HL$0HD$PH\$ fH8]HH 3HD$H\$HL$H|$ HD$H\$HL$H|$ SI;fv;UHH(HD$8H11HHHt1H(]11H(]HD$H\$pHD$H\$I;fvUHHͨH]HD$f;HD$I;fUHH8HD$HH\$PH|$`HL$XHHLHHuHD$XHL$`HT$P2HHH8]HL$(H)HHH?H!H)LD$0LHHHttHL$(HT$0HD$ HHHHD$HPH~ HT$ H9vIHt HHH8]H[pH@ H zHHHPH8]11H8]0HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(HH?sKH HH4HH9sH HHHH ??HH H?H0HHHH9H@@8uHP#H~HHHHHH̐HHPHH#HHHi:H)HqHkdHia,AIH5i]AAAwLH LHH+HH H򐐐H2@ƿA IM@HH@HI)L̐HHHHH#HHHHiʱ:H)HKHkdHia,AIH5H HΐH2AAAmMMELI@I2IH@@HHH H!I!JL)HuH9r^HrSHQIHH?HH)H{III?LQM!I HLþH(]11HH1H(]藭蒭LH9~|LAHL$ HL$ IHD$8H\$@DJAvЃ wH}11HH1H(]H)HHH?H!HHHѾH(]H}11HH1H(]11H(]HD$H\$踏HD$H\$ILd$M;fUHHH$Htq+uHSHHH?HH1H-uHHHH?H-@@t$Hu11E1E1H\$0H$1111H1HĘ]LH9DDALI1HL$xHT$`HL$xHT$`t$AIH$H\$0EPA w.HHMcJHRH~11E1E1XHtH} 11E1E1BH9H)IHH?H!L H}11E1E1f E1E1ɄtyHiMtKA9:uEIXHHH?LIu11E11AHD$HH\$(H$LD$@11:Hi@HELLHĘ]11H1HĘ]LLH9D ALQ>HL$pH|$XHHL$pH$t$H|$XLD$@AIHD$HH\$(EYfA w/L?OMcO MII;r11E11WHtH} 11E11BH9I)IMII?L!HʹH} 11E11f E11҄txLkHL$hH|$PHTHL$hH$t$H|$PLL$8AIHD$HH\$ EX@A w1L?OMcOM@I;j1111#Ht @H} 1111H9wNI)IYIII?L!L HLH} 1111H11f֧ѧ̧HD$H\$蛊HD$H\$L$hM;f UHHH$ HT$D:DzDzL\$hE;E{E{HH$(D AJuFLcMII?ALDHtL$H$111111AMuCLcMII?ALHu11E1E1L$H$11H$ 113D:DzDz11HHHE1IE1H]LLH9D$ALiEH$H$H$HT$H$L\$hAIH$ H$(E|$fDA w3L<6OMILIH?H>LHHK4H)HrH%I$I$IIHHH?H)H4RHrI)IRIrHHLH)HQHHLʸy1aHiɀQXHiрQH)\(\HHQHHHp= ףp= H9߻HBHu H<}HHJL)HLfDH9HuIH)\(\IHQHHp= ףp= H9ֺHBLu&HHHӃHIHLLQDL9kHiH-H%I$I$IHHHH?H)H)\(\IIQLHAIMMLL Ip= ףp= I9HBLuH~L MRIiʀQI;fv9UHH8HD$H HHLA 1H'H8]HD$H\$R}HD$H\$I;fPUHHHH}*Dx=|t HrI H@11HHHpHHHH?HHHHxH 2=/tH0EI IsHH}@1HpH}*Dx=t H0I3H@11IH8L@IMII?AHHpLHJ4=tL趕I3MCH0H}@H7H|H|H H Ȼ]@11]HD${HD$L$M;fYUHHH$H$H$H$H$Ƅ$H}#D$HDŽ$Ƅ$118HVHHH?HHH$H$H$HʹH:TZiffH$H}#D$HDŽ$Ƅ$11IH$H$HIHH?HHH$L$H$@HuYu2u f 3uH$D:DzDz 1\H#@H $@1H]H @H @1H]H?H ?1H]Ë7ΉHHHH$H}#D$HDŽ$Ƅ$11FH$L$IMII?AIHH$L$L$HcƄ$H3?H 4?1H]HH$HH$HH4vHH$HH$HH$HH$H<HL$HI9}D$HDŽ$Ƅ$MH$H9<L$I)IL$H)HVH$HH?H!JH$1CHOH$HH$H9}'D$HDŽ$Ƅ$E11E1JL$I9L$MI)MII?I!MH)H$L$L$L$PH$XL$`Ƅ$hH$H$H9}$D$HDŽ$Ƅ$1E1GL$I9&L$I)MII?I!MH)H$L$L$H$HH<L$DI9}'D$HDŽ$Ƅ$E11E1JL$I9 L$MI)MII?I!MI)L$L$L$L$0H$8L$@Ƅ$HH$L$I9}'D$HDŽ$Ƅ$1E1E1PL$fDI9 L$MI)MII?I!MI)L$L$L$L$HIL$I9}D$HDŽ$Ƅ$GL$I9V L$I)MII?I!MI)L$L$L$H$L$I9}$D$HDŽ$Ƅ$1E1GL$I9 L$I)MII?I!MI)L$L$L$H$L$L$M9}%D$HDŽ$Ƅ$E1E1_L$M9> H$M)L$II?M!IM)L$L$L$L$IH$$dLD$HL$HT$PL$H|$XLT$hL$ Ht$`L$(H$H$L$H$D$HDŽ$I8 u~A\D tH$1E1kHXIO1f۶H$HT$PHt$`H|$XLD$HL$(LT$hL$ L$L$IH$ 1E11E1H$H$Ht.H$L$HHH @H$1DH8H 81H]H8H 81H]HH$HHH$H9 H$8H}#D$8HDŽ$0Ƅ$H11FH$0L$@IMII?AIHH$8L$@L$0HfHH?HcH|H$8Hu$D$8HDŽ$0Ƅ$H1E1DL$0L$@IMII?AMHH$8L$@L$0HA8DH$8@Hu$D$8HDŽ$0Ƅ$H1E1DL$0L$@IMII?AMHH$8L$@L$0HuƄ$HA8@LD$XI9H$H$HD$hH)H$HHH?H!I)L$H$ HH$xH$LD$HL$D$@ېEWdL4%HD$ HtH$H9v H$H$xH1wH$H$H\=[IH<lII{D/H5H 51H]Ƅ$HH5H 51H]Ƅ$HH5H 51H]H$H0HM9~dDlM9} G,ED M9}L$C/D L$Ƅ$hH3H 31H]Hk3H l31H]HR3H S31H]HtH21HH50;HH@f@ H$H$H$pH07H$HHHH =9u"H$H$pH$H$4pH$I H$pISH$I[H$IsH$HHH$HH0H$HH8HP(H$HHHH$HHHHp@NH$pH$1H^H9HHLL9|LNL9tMIN I9~MH$LFPILNXLND\M9XLNIMك=uL9L^`L M I[L9LN`aH^HHtdHV@LHHfEt`H$H$H$DD$FH$HzPHrXHrHzH|$xE12IJHVXH$11H]H$H II9LVL^DfL9tE1xL$Dd$GLL$pH$HHLH@H$H$H$H$H|$xDD$FLL$pL$Dd$GAH$EXfL9FE8= IDIt?HrI9HrIL΃=[tHz`pI3I{Hr`DH4H$HH=uH$H$$H$Hr`7H$I;ICIsH8H$Hpt$F@pHB`h{vqlgbf[VQLGB7ΉHHHH$H}#D$HDŽ$Ƅ$11FH$L$IMII?AIHH$L$L$HcƄ$Hf.H g.1H]HvHD$H\$HL$H|$ Ht$(7hHD$H\$HL$H|$ Ht$(YI;fvjUHH8HD$HHL$XH~T.zipu H8]Ht%IIHH=H1gHHHH6H8]HD$H\$HL$H|$ wgHD$H\$HL$H|$ [L$0M;f UHHHfDּ$@H$pH$hH$`H$XD$OHDŽ$D$D$HH$H H$H$H$H$@D$OH HD3H$8HùHHH$4HuH$8D@IPK1H'H$XH$`0H$H$(H40H$HP=Au H$(/H$(I HD$HDŽ$H H$H$D$OH$@HH$H$H$H$H$HH]ËJ H$rH$R H$HH;2H$8HH$HH$H$нHuH$H$H$81;1HH$XH$`ɤH$H$ H2.H$HP=ڑu H$ }H$ I HD$HDŽ$H H$H$D$OH$@HH$H$H$H$H$HH]HDŽ$D$H$H$H$H$L$HHHLHH]HLLH9H}18HPKhH HyH}1HH? <8HLAI}E1II?AFHLII}E1ɐII?AF HLQI}E1II?AFDH LLYI}E1II?A EH*LaI}E1II?A*E$Mi.L9fI.LiII?A.MO<M.IML9L)LQMII?M!ML$pM9jH$H|$`LD$XLL$PL$L$L$0LH$hL"}fu-H$H$L$0L$L$pHT$`H1HH$hH$pL`AL$XL$`H\$xH$Hh+HT$xHP=xu H$gzH$I HD$HDŽ$H U H$H$D$OH$@HH$H$H$H$H$HH]HL$PHH$HH-H$8HH$HH$H$@HtHL$PH$8@{H$8DIPKt HL$P[DBMt HL$PEDBHL$PL9t/HHH?H2H$h{HL$PH$81HH$XH$`蕟H\$pH$H)HT$pHP=u H$xH$I HD$HDŽ$H H$H$D$OH$@HH$H$H$H$H$HH]H$HRH2HRH$HH\$XH+H$8HHL$XHH$H$D;H1HFH$XH$`OH\$hH$HV(HT$hHP=fu H$UwH$I HD$HDŽ$H CH$H$D$OH$@HH$H$H$H$H$HH]H$8H$HD$XH$H$D$D$OH$@HH$H$H$H$H$HH]HDŽ$D$HH$HH$D$OH$@HH$H$H$H$H$HH]yH.DyyH*yH {yvyqylygy补H$H$H$H$H$HH]HD$H\$HL$H|$ [HD$H\$HL$H|$ I;fvUHHHB)]H]ZI;fvqUHH HD$0HL$@H|L9DTA2006tH9%H)HsHHH?I!J<Lù]H9H)HsIII?L!H<H˹]L9r\H)HsHHH?I!J<H˹ ]H9r+H)HsIII?L!H<H˹]11H]t`o`j`e`D[`V`Q`L`G`B`f;`6`1`,`'`"`f``` ```f_____I-07:00:0eIL9~ EE8tL9~EAA vMI)IA9A"A#MDH.uAIM L9AIM IL9rL)HHH?I!I<HL]:_5_0_+_&_!__I;fUH$HtYHmwHHH!H)HtHcHwHH H]HHcH H?HHH]HcHwHH H]MAhI;fvUH1L$HHbl]AI;fv,UHHHtHHXHHH_H]菬HD$@HD$I;fv,UHHHtHHXHHH]H]/HD$d@HD$I;fveUHH8HtRHH\$D;D{wH w&HHHHH?H!H\1HQH8]H @\薫HD$?HD$I;fvAUHH8Ht.HpH81H LA FH8]:HD$o?HD$I;fv>UHHHHH9Ku$HP@H9SuP8Su HHZ1H]HD$H\$ ?HD$H\$HH9 uH8KuH 8K u H 8K 1HH9 u H8K1UHHD$H/H փ@@H=ËLwH4wHvH9HA8D@A8r6A8v]fH~}p~@?wdH~?@P?v ]ÃA?A A ȃ?A ?D ]à A?AD ? Ȼ]ø]ÃA?D Ȼ]ø]!ȁ л]ø1]qZUHHD$H/H փ@@H=cLwH4wHvH9HA8D@A8r6A8v]fH~}p~@?wdH~?@P?v ]ÃA?A A ȃ?A ?D ]à A?AD ? Ȼ]ø]ÃA?D Ȼ]ø]!ȁ л]ø1]YUHHD$w%H@8?ɀH]Ár w3H @8?ɀH?ʀP]Íw=HvS@8 ?ɀH?ʀP?ɀH]Hvf@]XXX XI;fQUHH@HD$P|$hDw>HH9sH5#e|$h@|?ʀTH@]Ár wKHH9sH5dJ|$h @|?ʀT?΀@tH@]ÍwZHH9sH5vd|$h@| ?ʀT?΀@t?ʀTH@]HH9sH5dDfDH@]HD$H\$HL$|$ m9HD$H\$HL$|$ uHD$HH~HKHHH?H4H~TH<IIHSH4HvH}H|H |IjH HIHSIJH ΃@@H=LwH4wHv6EHu9HHD8@8HKHHH?HHu`HHD8@8HHKHHH?HHHHHudfDH|UHD8rL@8wGHr>w6Hr-w(HKHHH?HHHH21111øH=HHHŌDH HH ~HH YHqH qH ItHI;f#UHHH H\=6dtH\HPI ICH \HcH dH\=ctH\PI ICH \H;H <H\=ctH\OI ICH \HH Hu\=ctHm\DOI ICH U\HH HH\=QctH@\cOI ICH -\]5Ld$M;fUHHH$H$HH0HH\$XH$HK(H$H_1H$H$HI(H$H$H9w HH$:H$H$H$HH5_H$HH$H$HL$pH\$hHHHUH\$hHSHL$pH9r H$EH HuH$D>D~ "H$HӿH5^rHHH$HT$hHL$pD2 H$HI8H$H|HL$pH\$hH$JH\$hHHL$pH9r H$&HD$xH$H5p^HHD$xD-HLD$DE8ExLO0DL4DHHLH r.HHIHHL O L)HrHL@0DD4DII)IH~HL9sH\$hHHL$pfH9r H$H$H5[D/ H\$hH$HH1WtH] NNHD$H\$0HD$H\$Ld$M;fLUHHH$H$HH(HH\$@H$HKHL$`H wH$D:DzH$HZ1hHH$H$HI0H$H{H9HL$`H9w HH$7H$H|$HH$HH5_ZHT$HHHH$HL$XH|$PH$HHHHdPH\$PHSHL$XH9r H$CH HuH\$hD;D{ "H$HӿH5YJHHD H|$@L:L9s'HT$PHLH5YHT$PH|$@IHH$LD$PHL$XHH$HOH$HR H$҄tHt1Hu :.t&@Hu f:..tH9H9uH]1H]JHD$H\$a-HD$H\$I;fUHHPD$`H\$D;D{11LH H5+<LA7HL$HHT$8H 蛐HL$HHT$8H5I؋D$`H\$HHAAH EE!fDtH @|Hn@Hu D$-1 HLH H5z<LAf6HL$@HT$8H HL$@HT$8H5QzI؋D$`H\$HHAAH EE!DtH sH@|lH s,D-\H w1HoHP]H HH HH HH HD$y+D$0%(I;fveUHHXHD$hHH H@(HIHL$hHHqLALIH$H\$1HHH=BLoAmHX]HD$*HD$HH HX(HI;fUHHHHH9KukHPH9SuaHD$(H\$0HHEtHHT$0HZHT$(HBHJEt)HT$(HB Ht$0H9F t1HZ(HN(fG1H]HD$H\$)HD$H\$SUHHt ]gI;fv!UHHHtFH]:HD$o)HD$UHHt %(] UHHD$HtT/u H˹1ɐHSHH|DA/ufHH|0H9wFLBL9r8H)H{III?M!NHӉL]H߉λHHm]EEI;fv#UHHHHXHCHHH]HD$m(HD$H@111I;fvUHHHHXHH]HD$'HD$I;fv2UHHHHXH@$mE%(H]HD$'HD$I;fv5UHHHHXH#@t mH]ø$H]HD$;'HD$I;fvUHHHHp CH]HD$&HD$Ld$M;fwUHHH$H$H$HHcH$HuH$8.uHHĘ]H$H$Ht>H$HL$xH\$PH|$HH$H2Ht$pHRHT$@IE1:1HĘ]1HĘ]HL$xHHt$pH|$HLD$@HH$fL9MIM9dLL$8HT$ LT$XK RHHH\bHD$hH\$0HL$`H|$(H$H|$PU|$x@|HP]DL$~T$~t.|$xDHLH1ɐ|$xHH9sH5^>|$xD\HH9sH5<>|$x@|HP]Ë|$x@w:H\$hHHL$pH9rHD$`HD$`H5=l|$x@|HD$`H\$hHL$pmHP]HD$`HL$pH\$h tvt>D HSH9sHӿH5=HH\$hf\tHSH9sHӿH5L=HH\$hf\bjHSH9sHӿH5=HH\$hf\a:@   ^D | wA|>HSH9s HӿH5<|$xHH\$hf\U@|$DHSH9s HӿH5U<|$DHH\$hf\u HSH9s HӿH5<|$xHH\$hf\xHZ@DL LyGH9s'DD$CH5;PT$xDD$CL yDDHÃB H9sT$CH5;T$CTHSH9sHӿH5l;HH\$hf\rHSH9sHӿH5<;HH\$hf\f] u-HSH9sHӿH5 ;HH\$hf\n+HSH9sHӿH5:XHH\$hf\vHHP]HDLHYDHH|^HHHAL wE 9H9sHL$HDL$CHHH5j:DD$DDL$CHHHL$HHHDLHYDHH|^HHHAL uwE 9H9sHL$HDL$CHHH59nDD$xDL$CHHHL$HHH LH9~,IH)HL L9vDGPfA9s H HIMH9sAHf9J ,,HD$H\$HL$|$ @t$$DD$%DL$&DHD$H\$HL$|$ t$$DD$%DL$&I;fUHH HD$0HHHsH\$HD$HډHD$H\$H9wsH)HHH?H!H<H~ u,t3 } t`tp1H ]1H ]1H ]øH ]*HD$H\$f HD$H\$ UH=~7=}H oH`H1VH HH1'H^v=| =]1]ø]HH9~4HH)HL1DL9F A9s H4HvLǐH9}[HHH949w>HH9 9r*=}H HH1]1]HH9~2HH)HL1DL9v@F BfA9s H4HvLǐH9}s rf91Ƀ]@;)6)1),)')")HH9~0HH)HL1L9F BfA9s H4HvLH9}PDHHH94rf9w,HH9~ Jf9rH HH11]HH9~,HH)HL1L9vIL9veO FND9|FLA9}D9|IpLE1Mt)AL~A )˃ ىȻ]É1]'I;fvFUHH(HP FH(]H H=H5øH(]ÉD$ D$I;fUHH(@1HD$ HH NHֹqH r=7tH#I ISHHH\$ H N2H;=6tH0"IIsHHiH\$ H NH=6tH0"IIsHH*H\$ H ONH=F6tH0["IIsHHH\$ H MtH=6tH0"IIsHHH\$ H M4H]=5uH\$ #H -H"II[H\$ I[IKHH,苩HD$ HH QH0H =]5tHs!I ISHHH\$ H OH=5tH04!IIsHH÷H\$ H MY MH=4uH\$ #H ?,H'!II[H\$ I[IKHH,H(];6̀=9t 911I;fvxUH=O4tH*A IH0H*=)4tH* IHQ Hj*=4tHb*IH 1HL*]f{vLd$M;fUHHH$H$HH(HP HL@LHH9sfLD$HLHӿH5D2@H$HJ(=H3tHrf[IIsHBLD$HHIH$H$HP MDH;H$D0D2DpDrDp Dr Dp0Dr0Dp8Dr81#o=2tHhH$H$sH$L$E0D2EpDrEp Dr Ep0Dr0Ep8Dr8L$ME@LR0OMRIM!АLB0LD$PE8ExEx HD$PLL$`LR0LT$hHJHZHHH9sGLL$@H5wH$HJ=1tH IIKHLD$PLL$@HZH [HH HIE0D1EpDqEp Dq LJ0HJHYH9vLH IHHH H@H]1H]HH0SH HIHH!HP01H] HD$H\$HD$H\$5Ld$M;fUHHĀH$HH(HP HL@LHH9shH$LL$HLHӿH5j/%H$HJ(=r0tLBIMCHBLL$HHIH$H$HP MLS tH{u1۹111۹{H$LB0IILB0LD$PE8ExEx HD$PHD$`LJ0LL$hLJHZHHI9sML$GLɿH5H$HJ=h/tH {IIKHL$GLD$PHZH4[HH40HvE0D6EpDvEp Dv HB0HrH~H9v&H4vHHH2H@ЉH]1H]HD$H\$jHD$H\$L$xM;fUHHSLBIoH$H$ HB$H˹1H]HHHѿ1H]HP@HH9EK| HH99Kr HT$H11HP@HH9 K|H= Kr11HP@HH9J|H=Jfr11HHS@Ht#HuH[0H]1H]øH]H˹@H]H˹H]H˹{H]H$HS@HT$h1FHHHѿEH]Ht$`HH$H$ HT$hH$H9}7H{@H9s+HZBDHH}HJHZHLBH9sH$LH5MȾH$HJ=tLB* IMCHBIH$H$H$f{H$H$I;fvSUHHHw1Ht,HQHu H sHH'H]Ð; HH(HD$H\$HL$H|$ HD$H\$HL$H|$ uI;fvSUHHHw1Ht,HQHu H sHHH]Ð HtH舞HD$H\$HL$H|$ NHD$H\$HL$H|$ uL$M;fWUHHpH$H$H$ H$H$H$H$H$HDAI L$HHH@HH9H$H HH$H$D9DyDy Dy0Dy@DyPDy`DypDDDDH11 H$HD2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDr`Dq`DrpDqpDDDDDDDDH$D1D6DqDvDq Dv Dq0Dv0Dq@Dv@DqPDvPDq`Dv`DqpDvpDDDDDDDDH$H$HH$=tI HHH$HP$fPL$LH HP H$Hp8=uH$H$,LH(LP0H$I MKH$I{MSH$HH(Hx0H$H$IH$H$`HH$Hp]HwH 0kxHHؚHD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$([UHHHH$D3D2DsDrDs Dr Ds0Dr0Ds8Dr81fHJH }HHHtHHH)HHAAAtH4HHDŽHH]I;fv1UHHHL$8HHHHH٣HD$8H]HD$H\$HL$uHD$H\$HL$I;fvUHHͥH]HD$f;HD$I;fvuUHHHx(tRHHHt5HHR0HpZH` HEH H6H]HH٘HHƘHD$HD$qI;fvuUHHHx(tRHH Ht5HHR8HpZH` HEH H26H]H%H>9HH&HD$HD$qI;fUHHHPHHD$(HHHx(tHxtZHBf(H0H>u2H~t+HxsH?HHHL$(HyH]H\H%pHIHf[H4H]HHD$fHD$1I;fvyUHH(HuH(]HD$H\$HD$ HHL$HH=u HL$ HHL$HHHHa谖HL$ I HD$wHD$mI;fvXUHH(H9vH HHH\HH(]Ð JHH1H1-('H(]HD$HD$̐PtOPHHw;H $HPH7HP@1HP8+HPP%HPpHP8HP8HPP HP01@Htrfu11zHHHH11HI;fUHH(HwDuHH0/u(HH0$uHH8uHH0 uHH01Ht HH(]3;HH1Hۇ%赂HHƔHD$HD$QI;f~UHH(Ht^HtFfHuHk+H(]Ð fHHH1H/B%H(]H-H(]H-H(]HD$HD$dI;fUHH HL$0D9DyDy Dy0Dy@DyPDyXHmH9X@cH$H$HH8H[HtHt H=11HL$HT$H|$PHt$XHHD$0H\$8HL$HT$H$Hu(H$HA0{HD$@H\$HHL$HT$HHt HD$`H\$hHL$HT$HLHL$pH$H|6H;ۭH$HHD$xHDŽ$HDŽ$<́H$HHHHr#HL$xHDŽ$HDŽ$H ]EH# H|7HD$pH\$xHD$pH\$xL$M;fUHHH$D:DzDz Dz0Dz@DzPDz`DzpDDDDxHt {H$H$H$H$H$H$HC HH H$HZH$D:DzDz Dz0H@uDzH@H9H$D3D1DsDqDs Dq Ds0Dq0H@H@uDsDqH$(H$D2D1DrDqDr Dq Dr0Dq0H@H@uDrDqH$(H$0H$H$8D2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDr`Dq`DrpDqpDDDDDDDDH]H$H$qH$HD2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDr`Dq`DrpDqpDDDDDDDDH$H$pHHH$H̩@H$HH$ HHHH$9v@HyHI= u H$HI H$HHH fH$HHH$ t}H[4H$H$H$;4H #H $HD$ H$H$L#AIIH$H3 :H$3 HHL^#AH$H,111Aa[H$ B(HpdH$H5PH H=_ uH$H$ $H$HQ zH$ I3ICISHpHA H$H$H$H$H$D:DzDz Dz0H@uDzH$H$H$H$D2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDr`Dq`DrpDqpDDDDDDDDH=H$jH$HH$iHMH H$H5wIHMH$D9DyDy Dy0H@@uDyH 0H9QH$D3D1DsDqDs Dq Ds0Dq0H@H@uDsDqH$(H$D2D1DrDqDr Dq Dr0Dq0H@H@uDrDqH$(H$0H$H$8D2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDr`Dq`DrpDqpDDDDDDDDH]HH MfHH MfH 0,HH1HwHH蛉/%HH1H f{VwHHLgH$H$1H$H$;I;fv!UHHHB)zHHH]4Ld$M;f UHHĀHy@H$H$H$QHw8Ht!LBI@Hl1PfHHtHtygHQ@HT$x1JH]Ht$hHQ8H4vH|HHL6Ht$hHH$H$HT$xH$H9} Hy@H9rH]LËIH9s)?u1HPDAL9wː?u1AHH@H9vHH4 @4D[HXBDHH}HPHXHL@H9sHL$XLHѿH5}H$HJ=EtLBZIMCHBHL$XIHfHXBD HHHPHXHLHH9sHL$`LHѿH5tH$HJ=tLBIMCHBHL$`L$IHwHT$pHI0H1HHZHT$pHH$H$H$H9Q@.LËIH9s&?u1HPDAL9w{?u1HPDEAL9HPEAEF‰?u1?HHH9vHH4 @4@zVHXBDHH}HPHXHL@H9sHL$@LHѿH5xH$HJ=@tLBUIMCHBHL$@IHHXBDHHHPHXHL@H9sHL$HLHѿH5qH$HJ=tLBIMCHBHL$HIHVHXBD HfHJHPHXHLHH9sHL$PLHѿH5kH$HJ=3tLBHIMCHBHL$PL$IHoHD$H\$HL$HD$H\$HL$fI;fUHH0HD$@H\$HP ts HH0]HH0]s:s+H\$(HD$ HtHD$HHL$(HD$ vH\$HH0]HHEyHD$H\$HL$HD$H\$HL$GI;fUHHXHPHu0HpH81H?L3AHX]HD$hHHL$hH9HqH H $HD$LDAII1H&?bHX]HD$HD$HL$PM;fUHH(H#H$ HùHϸYHHD$`HB軜HL$`HHH@HH8=u H$ H$ IIKHD$hHH@(H@0HH HL$pD9DyDy Dy0Dy@DyHHD$hH$D9DyDy Dy0Dy@DyHH$HD2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrHDqHH\$pD1D3DqDsDq Ds Dq0Ds0Dq@Ds@DqHDsHH$H~:H$Hreflect.H91u#yValuufy e.uq@Ar@Zv f HH(]H 1H(]I;fUHH(HD$8H\$@HuH(]HL$H\$HD$ H贚HL$HH=u HL$ HHL$HHHHJbfHL$ I HD$H\$HL$fHD$H\$HL$GI;fUHHHD$(H\$0HʃHp@w@uHp07@u/Hp0+@u Hp8D@uHp0@uHp01~fHH@HHHH9HH]HuvPwuHP04u-HP0)DuHP8uHP0uHP01ҀzuHHSHKHH]HHTt}HL$HH@H RCHHL$HHHHH}Ht11f0HtH t}HaHsu}HD$H\$HL$D;HD$H\$HL$'I;fUHHxH$H$L$H$HL$hH$yL9A@JH|$`HQ8HT$XBHҐHT$`HHHT$PH$HqHeHT$PHrHH9PHt$X\HrHt$HH HIHL$@HD$h藐HL$HHT$@HD{H$H9HTT$H$HH$H$HH$DbH$H H$@{HĨ]HHdmHzHsdmHgH`d{mH0HL9L$D1E4$DqEt$Dq Et$ L$L$L$I<IIuPL$fDI FN='tJ<#M9M+I{MN,#KfDIL$H$fDIuHLlHF,#DIHDHB#H$H$H$H$H$H$H$H$H$(L$L$L$oHfHHmakHHbkHHHbkH0HL9VH$H$L$D0E3DpEsDp Es L$L$L$I<IItzI L$H$fDIu"BHfA~L@EINfHL@L$N I s|NĸH$H$H$H$H$H$H$H$(L$L$L$H$DHH_iHH`iHH}`ifHoH`i{vqHH G-"FHD$H\$HL$H|$ (HD$H\$HL$H|$ I;fUHH@HD$PH\$XHL$H\$8HʃHtsHs7P u+HD$0H_HD$0HL$H\$8HHtH@0`PH HɀH@]111H@]HuHT$8H2HRHT$8H2HtHvHRHt$ HT$(Ht$ Ht~IHπDNA IE111HtLD$I`AA MEL HHHH@]HH^gHT$HòۂH@H -)HHL$HHHH2gHD$H\$HL$[HD$H\$HL$GI;fUHHHD$(H\$0HʃHH9x@vqHp8H<HDLDHEI AuLH@I ALEArH8uIɀHuLH]H\LH]HH]fHL$H蹁H@H #,HHL$HHHH1ofHD$H\$HL$H|$ 5HD$H\$HL$H|$ I;foUHHHD$(H\$0HʃHuGH9x@2H@0HʁH0HHpH` HEH H H]HuPfH9{H@0HHpHH` HEH HɀHH]HuJH9{v1HHH:H` HEHɈH]HH/\ eHT$HH@H *HHL$HHHH0dHHZdHH[dHD$H\$HL$H|$ nHD$H\$HL$H|$ UHD$H\$HI;fUHHHD$(H\$0HʃHL$HwHHt8H3H8HxzsHHf;NH]H@@H]Hu0H83Hx(sHH{VH]HHwfuHP0/u(HP0$uHP8uHP0 uHP01ҀzfwuHH0/u(HH0#uHH8uHH0 uHH01ɀyuHI@1HH]@Hu HCH]Hɭ}H@H HHL$HHHH-bHsHYbH`H)XtbHMHXabHD$H\$HL$,HD$H\$HL$I;fvgUHH P tHHHH ]HD$0H\$8HL$@SHD$HHL$@HD$0OUHL$8HɀHD$0H\$H ]HD$H\$HL$@{HD$H\$HL$gI;fviUHHHD$ H\$(Ht s1H]0H]HC[|H@H 6HH@HHW,aHD$H\$HL$f۱HD$H\$HL$gI;fUHH(HD$8H\$@Hu H@@H(]HL$H\$HD$ H{HL$HH=u#HL$ HHL$HHHH+[`HL$ I HD$H\$HL$HD$H\$HL$DI;fUHH HD$0H\$8=,t1HH$=%tH7IISH HʃHL$HwbHHuG r2H8HxsHfHtHHH ]H H ]fHtMHw6Hu'Hxu5HHD$uUHD$H ]HH ]Ht'Hu=H8u$HxftsHHH ]HH ]HHT^HɩyH@H b-HHL$HHHH)^HsHU^H`H)Tt^HD$H\$HL$@;HD$H\$HL$'I;fv8UHHHD$(H\$0HʃfHu HH[H]HH]HD$H\$HL$ήHD$H\$HL$I;fUHH8HD$HH\$P@HtO r H ʠ HHHHѹHHL>A1H-H8]HZH8]HD$H\$HL$HD$H\$HL$NI;fv'UHHHD$(H\$0CHHH]HD$H\$HL$@蛭HD$H\$HL$I;fUHH HD$0H\$8@H s\H xuH9H@vfHP8\pH ]HL$HD${HL$H9v"H\HD$[pH ]H ]HHR[HHR[HvH@H _HH@HH&[HD$H\$HL$f{HD$H\$HL$I;foUHH HD$0H\$8HʃHL$HwaHHuF r2H8Hx fsHHtHHH ]H#H ]HtPHw9Hu*Hxu8H\$HQHL$HH ]HH ]Ht'Hu=H8fu"HxtsHHH ]HH ]HUHPiZHbf{uH@H !?HHL$HHHHv%1ZH HQZHHOZHD$H\$HL$ӪHD$H\$HL$@[I;fvXUHHHD$ X(mDHL$ ItHrHHHH?HH]H]cHD$8HD$@I;fv*UHHHHu H@@H]HH]HD$ƩHD$I;fUHHHtDHK1 11H]HH|%4@.uHt@[uH@]uHHQH9rH)HHHH?H!HH]2HD$HD$f[I;fv-UHHHt H 11HHH]HD$裨HD$Ld$M;fUHHH$D9DyDy Dy0Dy@DyPDyXHHIHL$xHD2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDrXDqXH$D1D2DqDrDq Dr Dq0Dr0Dq@Dr@DqPDrPDqXDrXH]"HH1H;[eDHH[vVHD$pH\$xFHD$pH\$xI;fUHHHHD$XH\$`@H@t H` sHHλ HHC褷HʃHu>H\$0NHuHL$0HHIHL$0HHtHRHIHHHH]HD$(HT$(HT$8HD$@HT$8HHHH]HIHLf[UHTopH@H *HH@HHk &UHD$H\$HL$@|$ HD$H\$HL$|$ UHH8Ld$(˥HT$H$Ld$xHT$H$H$HHL$D$ HD$ HD$HD$(HD$Ld$(:H8]I;fUHHHHfH9KHPH9SHD$(H\$0HHSt{HT$(HBHt$0H^HJ4t\HT$(HB Ht$0fH9F uFHN(HZ(t5HL$(HQ0H\$0H9S0u!HQ8H9S8uHQ@H9S@u HIHH9KH1ɉH]HD$H\$[HD$H\$ I;fv!UHHHtHżH]HD$HD$I;fv!UHHHtHeH]HD$ϣHD$UHHt H@]hI;fvJUHHHt7HHHʃHXHu H HSHHHHHH]HD$FHD$UHHHD$ H\$(EWdL4%蛷H]UHH HD$0H\$8HL$@H|$HEWdL4%H ]I;fv5UHHHHH9KuHP@H9Su HHϽ1H]HD$H\$VHD$H\$HH9 u HHH9KuHHH9Ku Kf9H1HH9 uPHHH9KuFHHH9Ku<Hf9Ku2HH H9K u(HH(H9K(uHH0fH9K0u HH8H9K81ɉ1L$(M;fUHHPH$`H$hH$HL$pH$Ht r H eHHHHHL$pHʃHT$hHuH$H~H$H$HH|$@H$1HmHT$hHtH$HD$p軸H$H$D9DyDy Dy0Dy@DyPDy`DyhHT$pH$H$H$H$H$HT$@1?11HHP]H$D6D2DvDrDv Dr HH$HT$PH\$HHD$xHH$õH$H$HL$pH$AH$H$H$H$HT$pH$H$H$H$H\$HHHL$PH9rHD$xHD$xH5MmH[HHHRЃ=H$H\$`HL$XH$HOHH$@;pH$HL$XH$H\$`HKH\$xHL$HH|$PHLr45HD$xH\$HHL$PHP]HD$H\$HL$艞HD$H\$HL$Ld$M;f< UHHH$H$H$H$LD$xH$HL$pH$H$H$Ht r HL G:DHL$pH$H$H$LD$xIHH$H$LL$HMtA r ILKHHLHL$pH$H$LD$xLL$HL$IHH$H$M9HHL@eHL$pHʃLJI HT$hHʉB$HL$xHʃH$6Ht@t$7H$H$t$7H$@81t#@tH]HH]1H]Hw+Hu H$H TH H$H H uH$ ,@H u H$H H H$H HT$xHT$xH wD@Hu H$HgHu H$TH _H$=H u H$(H u H$HH  H$HH9s H v1H]@H uH$ZHH$HL$xH uH$ ZHH$ f.uf{f.u{16H-f.u{f.v Hf.v1H]HuH$IZZHMH$IHL$xHuH$YZZHH$Yf.u{f.uf{1:H1f.u{"f.v Hf.v1@HuUf.u{f.u{16H-f.u{f.v Hf.v1H]H]1HH$H$H$H$LD$x,u`H$H$HL$pHD$`H$H$HL$xHT$`H9v H s1H]H]H$H$H$H$LD$xH$H$HL$p3Ht r HH~7HtH@Ht'tPHHʀx@ HE111111HT$8H$H$H$H$HL$xHt r HHHtH@Ht(tPIHʀDPA IE111111HL$8HHIH$H$Ht H]H$H$HL$p H$H$HL$pH$H$HL$xHHIH$H$HL$pXH]H]HL$xHʃH$HH^HuH$H2HR5H\$@H$H$H$HHH$H\$@HH赬H} H ~1H]1yH$H$HD$`H$H$HL$xHT$`H9v H s1H]HH]HD$XHHL$pHD$XH$H$H|$XH9H$H$HL$pH$H$HL$hH$H$HL$xH|$X@HHIH$H$HL$hHLH]1H]HD$PHHL$pHD$PH$H$H|$PH9H$H$HL$pH$H$HL$hH$H$HL$xH|$PXHHIH$H$HL$hHQH]1H]HL$xH,G]H@H uHHL$xHHHHB fAH]H@H =HHL$hHHHH AHL$xH\H@H !HHL$xHHHH AH\H@H HHL$hHHHH QAHJe\H@H HHL$xHHHH` AH/\H@H HHL$hHHHH* @Hދ[H@H HHL$xHHHH @H[H@H HHL$hHHHH y@HL$HHHH$ѹHH1HJ%.HH6@HD$H\$HL$H|$ Ht$(LD$0HD$H\$HL$H|$ Ht$(LD$0oI;fUHHHD$(H\$0H|$@Ht$HHʃHL$HwHy@Hv*HtHvHu H;H rsHHtzLALD$IwIPHv*ItIvIu H>I rsH6Ht 11H]øH]LALD$IwIPfDHv#ItUIvIu H>Iu: rsH6HftHH]1H]HVqYH@H HHL$HHHHl '>H ;YH@H uHHL$HHHH6 =HYH@H ?HHL$HHHH =HD$H\$HL$H|$ Ht$(LD$0wHD$H\$HL$H|$ Ht$(LD$0I;fvVUHH0HD$pH\$xH$H$H$L$HD$pH\$xH|$@Ht$HLD$PH0]HD$8H\$@HL$HH|$PHt$XLD$`HD$8H\$@HL$HH|$PHt$XLD$`[L$M;fUHHH$H$L$H$H$H$E1LZLL$L$H9H$MYMZI9}L\$xME3E2EsErEs Er E4$E3Et$EsEt$ Es HL9LL9"L0ORIIL$E2E4$ErEt$Er Et$ L9O[IIۃ=tUHD$(LT$hL\$`H8LL-MH&H\$`H$MHD$(H$ HT$PH$Ht$@H$8LD$8LL$LT$hL\$`L$M)HL)HT$H1;E1D7EqDwEq Dw E2E1ErEqEr Eq HL9H<H9L 0H<HHLT$pD7E2DwErDw Er L9O IIIك=9^HD$ H|$hLL$`HHLKHH\$`HL$pKHD$ H$ HT$HH$H$8H|$hLD$8LL$`LT$pDH]mhc[E2D7ErDwEr Dw E3E2EsErEs Er HL9H<H9L0H<HHL$D7E3DwEsDw Es L9ORIIڃ=[HD$0H|$hLT$`HHLJHH\$`H$JHD$0H$ HT$XH$H$8H|$hLD$8LL$LT$`L$M)H(#HD$H\$HL$H|$ Ht$(LD$0LL$8LT$@xHD$H\$HL$H|$ Ht$(LD$0LL$8LT$@hLd$M;f0 UHHH$HBH$H$T$O/Ht$xD>D~D~ D~0D~8H$HD$xH$H$H$/HH~8/uHDŽ$HeHfDH$H$H$H$H$H$H9; H\$xH9HHOH9tHFH$H$T$OHH$H$H9H$>/H$1H%HH=H1:H]LH94D<@/uHyI@.LAL9tQDLA/t@.nL9,A.OHyH9tDDA/*L$L9}IL$}/5H|$pMH$H$L9~!Ht$xB4@/uIpH$HL$hHyHCHL$hH$H$H$H$H$@H9H\$xH9HLH9taH$T$OH$H|$pH$L$L9}H$B/H$H$H$H$H9~+9LD$xE0DA.uHH$HL$hH~HBHL$hH$H$H$H$H$fH9H\$xH9HLH9taH$T$OH$H|$pH$L$L9jH$B.H$H$H$H$H9}+&LD$xFDA.uHH$HL$hH~HAHL$hH$H$H$H$H$fH9H\$xH9HLH9taH$T$OH$H|$pH$L$I9[H$B.H$H$1/ ///Ht$XuH$u /H$ H$HL$PH$L$@L9}&LL$xE 9A/uHH$LD$hH)LH?HL$hH$H$H$H$H$H9>H\$xH9HLH9tH$HL$PT$OH$Ht$XH$L$I9H$B/H$fHH9<@/ H$HL$`@|$.L$L$M9}#LT$xGA8uIxH$LL$hHLHِ>HL$hH$H$H$H$H$H9H\$xH9HLH9tH$HL$`T$OH$Ht$X|$.L$L$M9L$C<H$IH$H$H$HtHT$x:.uHDŽ$HL$pHH=HL$pH$H$H$H$H$H9H\$xH9HLH9tH$H$H9H$2.H$H$HtjH$H$H9H$H$H9wqHt$pH$H$HD$/HL$pHH1H$詯(H$H$H$H9rH$HH]qlgbf[VQLGBf;I.)$@ IL$L$L9}L$MtL$M9v.G L$M9vLT$xG A/uq觋袋f蛋薋葋茋臋肋HD$H\$RnHD$H\$UHHD$HuH]HːHt L/tHKHH|-/uH|HQH9r+H)HHHH?H!HHuH]]ÐۊI;fv`UHH(HD$8HKH@H| /uHH9r)HD$8Hf1HH1H\$8gH(]Ð[HD$H\$+mHD$H\${I;fvFUHHHD$(HDHt H2HR11HtHv HHHH]HD$H\$lHD$H\$I;fvFUHHHD$(H DHt H2HR11HtHv(HHHH]HD$H\$%lHD$H\$I;fvFUHHHD$(HDHt H2HR11HtHv0HHHH]HD$H\$kHD$H\$I;fUHHHH\$`HD$XH|$pHt$xHHWHt1 Hvl11HuWHD$@H|$pH|$8HL$@H\$XHt$xE1Mj~HtHf{HHHH]11HH]HHHH]HD$H\$HL$H|$ Ht$(jHD$H\$HL$H|$ Ht$(I;fvfUHHPH\$HH|$@HT$HHMFIHHH}Hu11HD$8HH HHD$8HHHP]HD$H\$HL$H|$ Ht$(LD$0iHD$H\$HL$H|$ Ht$(LD$0NI;fvCUHHu$HcDHLHHH]Hc11H]HD$H\$HL$ciHD$H\$HL$L$M;fUHHHD$ D8DxDx Dx0H@fuDxHD$ oHuTH$D9H$H$D2D1DrDqDr Dq Dr0Dq0Dr1Dq11111HH]HHA}<@ wHHHHHs.HHH}1H$H$H]D;hI;fvMUHH H1HøDzHtHNHHHH ]11H ]HD$H\$gHD$H\$I;fv[UHHHHL$@Ht$8HT$@HIE1HHHzHtHHHHH]11HH]HD$H\$HL$H|$ Ht$(gHD$H\$HL$H|$ Ht$(cI;fUHHH1D8DxDx = t HI HD$H HH0H ^H=ԓuHT$ H @HT$IICIKHPH @HHHH]*fEI;fvbUHH0HJHBHD$(HPH5ZHt$HD$HL$ HH\$۽HL$(yt A(H0]HAHY eI;fv{UHH0fD|$(D$HBHD$ HJHrH\$HD$HL$HL$HL$(D$HHHL$ A(AD$HT$(HH0]膮H0]zduI;fvkUHHHB=Gt Hf;~I HD$HǸHL$HA=tHQ ,~IISHY ytH]cI;fv'UH1H~ u H1ɉ]NdI;f*UHHHHD$XH\$`HL$hHHЄt HD$h11111HH]HHHHD$8HL$0H=HHOHD$XH\$`HD$ H\$(HL$@HT$8HH)H|$0LHIOH|$HOHt$8HH9ukHH(t)HT$ HHt$8H|$HT$(H H9HD$ HL$@H H\$(Ht$8H|$uOHH軀t HT$ H<HT$(Hv H9HD$ HL$@Hb H\$(Ht$8H|$uOHHjt HT$ HHT$(H% H9HD$ HL$@H H\$(Ht$8H|$uOHH6t HT$ HHT$(H H9HD$ HL$@H H\$(Ht$8H|$uLHHEt HT$ HLHT$(H H9HD$ HL$@Hr H\$(Ht$8H|$uOHHzt#HT$ HHt$8H|$IHD$ HL$@H\$(Ht$8H|$HtH!HuHuHHtt @H?HHމIHLHH]HȻ11HH]HD$H\$HL$`HD$H\$HL$Ld$M;frUHHD$H$H$H$D$7HD$8D|$X1HtH$11,H$z2tH5q(H=r(H5 H=HH ZHL$xH$HL$xH$D$7H$tL$E1E1-L$Ay2tL'L'Lm L&Mu%HHT$hLL$pHT$hH$D$7lHD$8LT$XL\$`D$7H$HHD$8H\$XHL$`HĘ]HD$8Ht$XH|$`HD$8HHHĘ]L$IAH$HJ1HH$E1jH H9u3HL$PHD$HH\$@HH:f|uHD$HHL$PH\$@HD$8H\$XHL$`D$7H$HD$7H$HHD$8H\$XHL$`HĘ]踧HD$8H\$XHL$`HĘ]HD$H\$HL$+^HD$H\$HL$WI;fvUHHHBH];]I;fvUHHHBH]\H  H I;fUHH HHfr@HHHHHH!HHH tH\$f'1H ]HT$HCH$HT$HH\$HHu%HT$HC $HL$HHH\$HHu̸H ]H`H)t HD$I\HD$@I;fUHH0tHHHHH HHHD$@HL$(H\$Ht$HT$ LH8ruHuIH HHuvL>LtZMILILI9@@tIt%H HL$(HT$ H\$Ht$LL$@f늸H0]1H0]H$H8 HH% HD$\$ZHD$\$I;fUHHtHHH'HH HHHLH8@HtfHt]IHH!LJH)HHLEHHL AEtHtLL$H!LL$AIH]HH" HD$\$YHD$\$I;fvqUHHHHHt:HQHHHtӁHuH-H]11H]HvHOHD$@[YHD$qI;fv.UHHHD$ At HD$ H]HD$YHD$I;fv.UHHHD$ 1@t HD$ RH]HD$XHD$I;fUHHHD$ fuH\$(HH脰H\$(HCHteHwu?H B HC AH uH H +HuH  H HbH HHHH]HL$ H11H]HD$H\$WHD$H\$I;fUHHHHL$8HD$H=Hu 11\HuiL$8tH ZH[:H H*HuH THUHu$H NHOHHH]11H]HbHD$HHHD$H\$L$D{VHD$H\$L$I;fUHHHHL$89HD$HAHu 11`HL$8tH 6H7:H Ho*HuH 0H1HuHH *H+HHH]HP H@!H =HHHH]DHHD$id@{HTHmhHD$H\$L$4UHD$H\$L$DI;fvgUHHH\$(Hu ;fileu@2@t0HD$ HH HHD;Ht HL$ A,H]@,11H]HD$H\$HL$@|$ zTHD$H\$HL$|$ aI;fv|UHH HD$0HH HtHȐHL$0HA HHHHX(H\$HHHHD$H\$HL$0HAHD$nHD$H\$H ]HD$SHD$jI;fUHHHD$(bftQHD$(HH Ht HHD$(HL$(y,uH\$HD$HA(fHD$H\$H]HL$(y2ftH gHhH H}HHH]HD$ SHD$D;I;f1UHH@fD|$8D$D|$HHr1HQHHHH„tHs({2tH HfH H|11HtHL$HT$ HHH@]H HL$(H\$0HL$(HL$8D$K,HC1ې[3HD$H\$ D$HT$8H HD$H\$ H@]H{H@HD$H\$ H@]HD$QHD$I;fvUHHHBH]PLd$M;fEUHHfDּ$H$H$H$H$D$'HD$(D|$PtH$11,H$x2tH5H=H5dH={HH5Ht$pHD$xHt$pH$D$'H$fHHP HT$`H2HлrfHu;H$z0tH$H@~@H$Ht$0HD$(HD$PH\$XD$'H$HHD$(H\$PHL$XHĈ]HD$(D|$PD$'H$HHD$(H\$PHL$XHĈ]HD$(Ht$PH|$XHD$(HHHĈ]H$Ht$0HBHD$@ HD$@Ht$0H$HH$UH\$HHL$hHH9u.HD$8HHvluHD$8HL$hHH\$HHtmH9t1HHGlHL$hH\$Ht;H$H~ t4N2HD$`r2H+H$HHH$1H$DHuHu~1tHH HD$(H\$PHL$XD$'H$HHD$(H\$PHL$XHĈ]dHD$(H\$PHL$XHĈ]HD$H\$HL$H|$ MHD$H\$HL$H|$ zI;fvUHHHBIH]LLd$M;fUHHfDּ$H$H$H$H$D$OHD$XD$1ېtH$11,H$x2tHH5HH5=wHHH$H$H$H$D$OHP H$H2HлwHu1yHD$XH$H$D$OH$HHD$XH$H$H]HD$XH$H$HD$XHHH]HH$z0t H$IH)H@~H@ L$LH$H9H9HD$pHH)Ht$hIHH?H!LRL$H)HL$`L$I3H$HL$`H$LL$hL$LLRH$HD$xH$HDH9u/HHihuHD$xH$HH$H~Ht$`fH9Ht$pHHt$pL$I9]Ht$pH9t13HHZhH$H$Ht$pL$HD$xtgL$Iy tcAI2H$wHt"Ht$pL$L$HHHD$x%Ht$pL$L$L$Hu\HH+H ,Ht$XH$H$D$OH$HHD$XH$H$H]Ht$XH$H$D$OH$HHD$XH$H$H]Ht$XH$H$D$OH$HHD$XH$H$H]û 諬H$H\$PHD$` 菬H$Ht$PLAII1HHHrefeՑHD$XH$H$H]HD$H\$HL$H|$ ;HHD$H\$HL$H|$ I;fvUHHHB)H][GI;fqUHH`fD|$XD$D|$0HHr1HQHHHH„tHs(~2tH HfH Hq11Hu,Ht$@H\$xH HL$HHt$PHL$HHL$XD$ HL$0HT$8HHH`]H\$xHt$@HF/QH H9u*H\$(HD$ HHHDduHD$ H\$(HD$0H\$8D$HT$XHfHD$0H\$8H`]HpHPՏHD$0H\$8H`]HD$H\$VFHD$H\$gI;fvUHHHBIH]{EI;fUHHPfD|$HHD$`H\$hD$D|$ t HD$`11)HD$`x2tH H5 HUH5pHuhHBHT$8HD$@HT$8HT$HD$HP HT$0H2HлrHt?HD$ H\$(D$HT$HHHD$ H\$(HP]HT$ Ht$(HHHP]HT$hH H\$`HCфuGHT$`J2HD$0r{HtHD$ H\$(D$HT$HHHD$ H\$(HP]D|$ D$HT$HHH\$(HD$ HP]HD$ H\$(HP]HD$H\$dDHD$H\$UI;fvUHHHBH]{CLd$M;fkUHHĀH$fD|$xD$'HD$(D|$HLHr+HrHIHI0@@tIs(Ax2tH H5 H'H5m11Hu?LD$`H$H$H$HHT$hLD$pHT$hHT$xD$'AHD$(HT$HHt$PHD$(HHH]H$H$H$LD$`I@HD$8HD$8H$H$H$EH\$@HL$XHNH9u1HD$0HHf[`uHD$0HL$XHH\$@HtdH9t1HH#`HL$XH\$@t4HD$`Hx t HP H2HлrHHHHH1 HHH\$XHL$(HD$HH\$PD$'HT$xHHD$(H\$HHL$PH]HkH{DHD$(H\$HHL$PH]HD$H\$HL$H|$ mAHD$H\$HL$H|$ TI;fvUHHHBIH]{@I;fUHHpH$fD|$hD$/D|$@LHr/LBIEIHMA@EtIs'Ay2tHLH2Lj 1E1@HuGLL$PH$H$H$H$H/HT$XLL$`HT$XHT$hD$/;HT$@LD$HHLHp]H$H$H$H$LL$PIAOHH9u*H\$8HD$0HHH$]uHD$0H\$8HD$@H\$HD$/HT$hHfHD$@H\$HHp]HgiH0{赈HD$@H\$HHp]HD$H\$HL$H|$ Ht$('?HD$H\$HL$H|$ Ht$( I;fvUHHHB H];>I;fvUHH H1HH ]HD$H\$HL$>HD$H\$HL$L$pM;fUHHH$H$ H$(H$0HD$0D$D$/H H$H$H$HL$0H$H$H$HL$/H$H$H$HD$xH$1xtH$11,H$y2tHHH!HgHHH$H$H$HL$`HD$HcH$HP H$H2Hлw{HuH$HBHD$8DHD$0H$H$D$/H$|$/H$HD$0H]HD$0H$H$D$/҅H$|$/H$HD$0H]誅H$|$/H$HD$0H]HD$8H$L$0M~LL$0M)IAMOAHt$0H$ H$(LH$H$H~HD$0H$Hu8HH$0H_fDH9T$0NHT$@H$H$H H9u/H#YuCHT$@HH9H$DHXH$0H$0H~ H9T$0H$J2H$wcH$H$HH$0ftD$D$/|$/H$HD$0H$H]HT$@HH9H$u,HDXuRHT$@HH9H$u'HoWu)HT$@HH9H$uJHWt3H|$0D$/5H$|$/H$HD$0H]HcH9$uH$HmWu1D$/@ۂH$|$/H$HD$0H]H|$0D$/訂H$|$/H$HD$0H]D$D$/r|$/H$HD$0H$H]D$/EH$|$/H$HD$0H]HD$H\$HL$H|$ 8HD$H\$HL$H|$ 0I;fvUHHHBH]7I;fv=UHH0LJ HZLRLZ(HBI I9EIqHL AH0]X7I;fvUHH CH ]HD$H\$HL$H|$ Ht$(7HD$H\$HL$H|$ Ht$(I;faUHHhfD|$`HD$xH$H$D$HD$ D$D|$@H譑HtH5=H911HH 1HD$@HL$HHu/H\$8H5Ht$PH\$XHt$PHt$`D$H$$HD$ D$1HH1Hh]HHH|$@HHD$0HSH=HLHH$H\$@HL$H|$t9H5H9t#HD$(HH5DSHD$(L$H|$@u\DHtRHT$8HBHHHD$xH\$@HL$HH~HD$ Ht$8H)FH|$0H)Ht$8H|$0H|$@t)D$HT$`HHD$ HL$@\$H|$HHh]D$D|$@D$HT$`HHD$ HL$@\$H|$HHh]HH :~HD$ \$HL$@H|$HHh]HD$H\$HL$5HD$H\$HL$mI;fvUHHHBH]4Ld$M;fUHHfDּ$H$H$H$D$7HD$8D|$PHػ!tH$11.H$x2ftHGH5HHH5^HHPHT$pHD$xHT$pH$D$7HP HT$`H2Hлr:HtdHD$8HD$PH\$XD$7H$HHD$8H\$PHL$XHĈ]HD$8HT$PHt$XHD$8HHHĈ]H$HB1H$HH$A?H\$@HD$HHL$hHH9u@HHxPt H$Ht$@HH9HD$HHL$hHHHH:PtzH$Hz @IJ2HD$`r'Hu H$$HL$HHL$8HD$PH\$XD$7H$HHD$8H\$PHL$XHĈ]HD$HHL$hH\$@HD$8H\$PHL$XD$7H$HHD$8H\$PHL$XHĈ]J{HD$8H\$PHL$XHĈ]HD$H\$HL$1HD$H\$HL$I;fvUHHHBIH]0Ld$M;f4UHHfDּ$H$H$H$D$7HD$8D|$`1tH$115H$x2tHH5HH5I[fHHH$H$H$H$D$7HP HT$pH2HлwHuH$1fgHD$8HD$`H\$hD$7H$HHD$8H\$`HL$hHĘ]HD$8HT$`Ht$hHD$8HHHĘ]LHHD$HHL$@H$HJ1HHAH$f{H/IpHH?L$J1HDH9~ D EuHHu F A.tHu&A40f..u H$H$H H$H@@H)H$H$XHHH|$xL$A|8@w'@uY@u L@uA?@w@u,@u!1"@ u @ uD$D1c]Hً|$DHH$H 1HL$`H$HD$hH$Hk?H5l?HHHHt H$LD$`M3H$H$HH$H9s!H5cH$H$H$HsHLD$hL0=Fu L$LD0f2L$M MCLL01[\HHH$HKHL$XH$HD$PH$Hg>H5h>HHHHtH$LD$XMH$H$HH$H9s"H5[H$H$H$HsHLD$PL0=Eu L$LD01L$M MCLL01T[H$H$HH$H9sMH$H$HHӿH5AH$H$HHH$H$H$LBIJ\=DtN D0IMKJH$H$H~H$HnHfH^HVHJHH$p=MDuH$HH$H$HH%0I H$HH@H\$pH$HLH@ H phHH$HH HQ@HI8HP=Cu H$/I H$I[HHHL$pHH HX(H H$8H$@D$CH$ HH$L$H$L$H$H$L$L$H$H(]H$H$H$HHH HDŽ$D$HDŽ$D$HDŽ$D$H$8H$@D$CH$ HH$L$H$L$H$H$L$H$L$H(]D$8D$CH$ HH$L$L$H$H$L$L$H$H$H(]HDŽ$D$HDŽ$D$L$8H$H$@D$CH$ HH$L$H$L$H$H$L$L$H$H(]HDŽ$D$HDŽ$D$L$8H$H$@D$CH$ HH$L$H$L$H$H$L$L$H$H(]20-0(0#0HH ԞN\H$H$H$H$H$L$L$L$L$H(]HD$H\$ HL$(HD$H\$ HL$(I;fv)UHHHB@tiH]HD$H}11@H퐐I;fv,UHHH\$(HD$ äHD$ H\$(tH]HD$H\$@HD$H\$I;fvJUHH8HD$HHHH@HIHL$HHHIH=TVII1HQH8]HD$&HD$HHHXHI;f'UHH0HD$@H\$HHL$PH|$XHtbP\kLuH{H9uHHC0H[8> MuHںfH9u(HC H[(VuHfH9uHCH[HL$PH|$XH9u.H\$(HD$H.pHD$HL$PH\$(H|$XHǺH9uH6HT$ H9 uLHHHH-t$HL$ H u HHL$PHT$ H|$XH9 YuKHXHHHb-ft!HL$ Hu H'HL$PHT$ H|$XH9 u6HHHH-tHT$ HZHL$PHT$ H|$XH9 uH@ H UHH$HH=5uH$Ht$pD!H$IHt$pIsHPHT$PHP Hp(HDZH1H]HD$HH$\$GJ+tHHD$HY11H]HD[HL$HH11H]HHH 萓HD$H\$HL$H|$ Ht$(LD$0HD$H\$HL$H|$ Ht$(LD$0)I;fUHHpH@D$TƒT$P0DAt%=u H @T@511,D$LHD$X{ HH1Ha"FHL$XHu|tDD$LH T$LAHHt\H\$`HD$hHt IIL miHL$`H=POIILJA1H\$hfFT$PHD$ThHHH1HgQhET$PHD$T5 h HH1H+]1ET$PHD$Tt*t%s1H=4dHHHDHHHp]HKHp]HD$HD$I;fvmUHHH\$(HL$0HQH9u HHx(t )H]aH]HH@H HHHH]HD$H\$HL$HD$H\$HL$eI;fUHHXfD|$PD$D|$(H8H8bpƅ}&HD$hH\$pH11DHD$hH\$pH HL$@HH HL$HHL$@HL$PD$Hx(YHt{HgH H9u>HD$ H\$8HHH,@ tH H! HD$ H\$8HD$(H\$0D$HT$PHHD$(H\$0HX]HH HD$(HL$0D$HT$PHHD$(H\$0HX]HH HD$(HL$0D$HT$PHHD$(H\$0HX]HH@H HH HL$(HD$0HL$(HHHX]H?H@HD$(H\$0HX]H,HOKHD$(H\$0HX]HD$H\$HD$H\$I;fv)UHHHBXf}7hH]I;fUHH8H`H |_H|$(HD$0HL$H\$ HH@H*S tH\$ HHD$0HL$H|$(HD$0HL$H\$ H|$(H8]fHHA8HY@I;fv{UHH0H\$HHt11H &H5 &Ht1HHH0]HD$@H1HD$(HD$@HHH6FHHHD$(H0]HD$H\$HL$H|$ &HD$H\$HL$H|$ MI;fUHH0H\$HHL$P@Ht11H>%H5?%HudHD$@HL$PH\$H8t2HD$(HD$@HFHHϹ HHHD$(H0]HD$@H\$HHL$PH0]1HHH0]HD$H\$HL$;HD$H\$HL$'I;fv UHHH )H@I;fv5UHH8H\$PHL$XH1E1MHHHȩH8]HD$H\$HL$HD$H\$HL$fI;fFUHHPH\$hHt11H#H5#H HD$`HL$pH貰HHLHT$pH9tH$L%1E1LD$HHT$8HD$0HL$@H\$(L ~L9t1*LH#HL$@HT$8H\$(LD$HHD$0@t5LL$`MAzQt*YHD$0HL$@HT$8H\$(LD$HLL$`LL$`Ht%LHHH?DHIHD$0HLHP]1HHHP]HD$H\$HL$H|$ HD$H\$HL$H|$ {I;fUHH0H\$HHL$P@Ht11H!H5!HudHD$@HL$PH\$H2t2HD$(HD$@H5BHHϹHHHD$(H0]HD$@H\$HHL$PH0]1HHH0]HD$H\$HL$HD$H\$HL$'I;fv UHHH%HԞ@۪I;fv5UHH8H\$PHL$XH1E1MHHH h|H8]HD$H\$HL$QHD$H\$HL$fI;fvaUHH H\$8HD$0HL$@|$HzHD$0H\$8HL$@|$HbfHt1H ]HHt$@ BR11H ]HD$H\$HL$|$ HD$H\$HL$|$ iI;fUHH8H\$PH|$`Ht$hHHD$HHL$XH\$PHt$hH|$`H9=t10H HHHL$XH\$PHt$hH|$`HD$H*H9=!uAH HHftH=H5_HD$HHL$XH\$PHt$hH|$`=/$t=H HHHHHHD$HHL$XH\$PHt$hH|$`Ht$0H|$(H/HL$XHH=&fuHL$P HL$PI HHL$HH HQ@HI8HP=l&u HT$0{I HT$0ISHHHL$(HH HP(HH,H8]HHH8]HL$`HIHD$hѹ/HH1H8蔕HH"襧HD$H\$HL$H|$ Ht$(fHD$H\$HL$H|$ Ht$(I;fv{UHHHt11HH5HuEHD$ HC=\%uHT$ NHT$ IHH11HͦH]11HHH]HD$HD$kI;fvAUHHHt$HyPtHD$H藤HD$HHIHHH]HD$OHD$I;fUHH8HD$HHt$hH|$`HL$XADHuqHD$(H\$XHL$`H|$hHT$(HuHNH5O"HL$0H\$ HHL$0HHH\$ Ht HuHHHHH8]HHH8]HD$H\$HL$H|$ Ht$(DD$0hHD$H\$HL$H|$ Ht$(DD$0I;fv3UHH(HD$8HHHHHH1H(]HD$H\$HL$|$ HD$H\$HL$|$ I;fv/UHHHtHH]HH H]HD$HD$I;fvUHH0H\$HH} 1H0]HD$@H\$HHL$P1dHۺHEHD$(  @HD$@H\$HHL$P1QHHt$( BRH0]HD$H\$HL$HD$H\$HL$SI;fUHH0HD$@H|$X@t$`HL$PH\$HHuHˆT$'HV葾HD$(HD{HL$@HHf@0HT$PHP@=|!u HT$(LD$HHT$(H2 LD$HMICIsL@8t$'@pQHHt$XHtIHHu LƻL\$`tUDD$`EtHu@PE1;HȻHtHT$( HT$(H2FP@AHL$@1E1DD$&HH39;Ht0T$&t'HD$@1HtHT$(HT$(H2FPHT$(HHwhH AH=dHD$8H\$@H`]q#HD$8H\$@H`]HD$H\$HD$H\$I;fv9UHHHJHA(HtD[H]HH|ˆL$pM;f UHHfDּ$D$7D$H$'D|$HD$EWdL4%HD$ 1qHu:H$HH$H$H$H$D$7H$H$H H@ H *HH$HH=u H$H$I HHH H$H$HHH]H$HL$8D9DyDy Dy0Dy@DyPDy`DypHÿ1pH$H$HH9u:HHHVsuH$H~H9HHqH$u,HHHrf{H$H$Hu11[H詡H@ H f)HH$HH=u H$H$I HHHHRH$H$D$7H$HH$H$H]øH$11Hu11H6sHHdHH$H$HǠH@H AHH$HH=fu H$H$I HHH qH$H$D$7H$HH$H$H]Ht;H$H$D$7H$HH$H$H]D$D$7H$HH$H$H]DH$H$H]f[I;fvUHHHBH]{I;fUHHPHD$(D8HٿHtgHD$8H\$@HH@H HHL$8HH=uHT$@ HT$@IHP1H HHHP]HD$(Hh1HD$HHD$0HH1H11HD$HHP] I;fvD@^111H0]111H0]Ht4HD$(HH HHD$ HL$(HIHD$HHHD$ H0]111H0]MI!INTI9t!MAfMuH4HlPH\$JD|IH!HLL:L9t,IxMuH\$HHȞ'PH\$HfHD:HD$H\$HD$H\$I;fviUHHHHH9KuOHP@H9SuAP9Su9HD$(H\$0HHftHD$(H H\$0H {1H]HD$H\$HD$H\$sI;fUHHHHfH9KHSH9PHS(@H9P(HD$(H\$0HHtgHT$0HZHT$(HBHJtGHT$0HZ HT$(HB HJ(t'HT$(HB0Ht$0H9F0t1HZ8HN81H]HD$H\$HD$H\$ I;f}UHHHD$(H\$0@ۚtVHT$(HJ@Ht$0H9N@uBHzHH9~Hu8zP@8~Pu.zQ@8~Qu$zR@8~RuzS@8~SuH^8HB81H]HD$H\$JHD$H\$[HH9 ̋9 u,H9Ku$HHH9KuHH@H9Ku HHH9K1I;fUHHHHH9KuuHPH9SukP 9S ucHD$(H\$0HHftHHT$0HZHT$(HBHJt(HT$(HB(Ht$0H9F(t1HZ0HN01H]HD$H\$HD$H\$II;fUHHxH$H$=|t1HH H h=!tH _2IIKHLH$=:t1HPHH%=tHI ISH H$HH$H$H@0H$H\$0HhHtuH$H9$u@H$Ht$0HHHH@r1/L|AIH9Ku6H9Ku.H 9K u&HH(H9K(uHH0H9K0u HH8H9K81ɉ1HH9 uH9Ku HHH9K1I;fv$UHHHhxHHH]1I;f1UHH8HHHrHzL3HL9HD$HH\$PLD$Ht$ H {HL$(HFHzHT$HH2HHvHL$(H9HHLH9tHD$0HKHD$0HL$(HT$HH\$PHt$ LD$HIHLʀxt x u0 L9rYIH)H?I!J4 E1H8]B IL9HL@Hx=itH@{IIKHH8]HD$H\$֬HD$H\$Ld$M;foUHHH$H$xtHxtH$1HH$LBLJN HM9s5LL$pLHH5LAzLL$pIIH$H$LD$pLT$hH$LHT$hH$HVHT$pHV=Ku H$HVH$I ICHHĠ]HH9~KDArHT$HHH)H?H!HHH)HD$(HDHD$xH\$X11L@I)Ѐx LD$PHH$LJLRNL"M9s;LT$pLLHH5LyLT$pIIIH$H$L$LL$pL\$hKfHT$hH$HVHT$pHV=u H$H&H$IIKHH$H\$PbfLSH$H H$HQHqH$H7HH9s$Ht$pHH50xHt$pH$HHT$pH\$hH$HH$HHT$hH$HVHT$pHV=:u H$HFH$I ICHHĠ]HLDH9~4DALAHT$`D; HD$xHT$`IH\$XLD$HLH$H$H$HD$H\$HL$H|$ )HD$H\$HL$H|$ PI;fUHHhH$H$xtHxtHD$x11HHT$XLBLJM HM9s5LL$@LHH5LvLL$@IIH$H$LD$@LT$8HD$`LHT$8Ht$XHVHT$@HV=uHL$`HHL$`I ICHHh]HH9~CDAHHt$0HHH HD$xH$Ht$0HH$HPH)x HT$(LLD$HMHMPNM M9sHH9s$Ht$@HH53tHt$@H$HHT$@H\$8HD$`HH$H;HT$8Ht$PHVHT$@HV=uHL$`H̿HL$`I ICHHh]HD$H\$HL$#HD$H\$HL$I;fv8UHHtHfHH]HD$\$败HD$\$I;fUHHPHD$`H\$hHP(x t]HH H~GHq HDDKHL$@Ht$(HHHbrHL$@H\$hHt$(HHD$`D DHt$8HT$HHL$0x t2Hv1'HiHL$0HT$HH\$hHt$8HD$`1@LFL9D'} H[fM>D(Aw H%HIH)LNM9LI)IMII?M!MwM`B 4Ht$@LLHHhHD$`HL$0HT$HH\$hHt$@H|$8LFL9D'LFL9D HIETHILIHr IpIكLFH9wIpL F H9ELLA D0ILM~ LNL9wgLFL9vYD+LFL9vFDUDHDL$'@H)HHHH?I!IH#T$'Ht$`VHP]ۿֿѿ̿ǿ¿f軿HD$H\$苢HD$H\$I;fUHH8LD$h@tH1҄tHHD$HT$'LP(xfux tuLXLX IIDD`HL$Xt$dL\$(LL$pLD$hH\$0HZLHnHL$XT$'H\$0t$dLD$hLL$pH|$(IHD$HDx t6LX Mu[HuVHL$&@HXUL$&HT$HJH8]Àxt%x uxtLXu x ux tIE1H%Hu IDJHI H uIHvIB\ILLHr"I݃I9FLBM9w.I9 LoF<M9F|CD0II@M~ LM)M9Lx Hu.MEL9CDbMEL9CD0HuH9 D3DD$EAEM9T$EGI9IB M9)DD$GT$FLLLH5fdT$FHt$PH$DD$GL$L$Ld$`IIIHD$xH$H$HLYLi=tHM;ISL9xtHXI9}x tL)-Hh]bf[VQLGHD$H\$HL$H|$ Ht$(LD$0LL$8LT$@HD$H\$HL$H|$ Ht$(LD$0LL$8LT$@ I;fUHHpH$H$x tH$HP 1x t-HL$XHHH$HL$XH$HP(x tHD$`11H@]HD$H\$HL$H|$ ӇHD$H\$HL$H|$ I;fUHHPL$H$H|$xHL$pH\$hHD$`L$fHD$@H\$pHL$xH$H$L$SHD$`H@HL$@HHQHyHHHD$hHD$8H\$0HL$HHD$@0HD$8H\$0HL$HHP]HD$H\$HL$H|$ Ht$(LD$0LL$8賆HD$H\$HL$H|$ Ht$(LD$0LL$8I;fUHH@Ht$pH|$hHL$`H\$XHD$PHD$0H\$`HL$hH|$pdHD$PH@HL$0HHQHyHHHD$XHD$(H\$ HL$8HD$08HD$(H\$ HL$8H@]HD$H\$HL$H|$ Ht$(ŅHD$H\$HL$H|$ Ht$('I;fv5UHH HD$0H\$8CHʃHu H;tkH ]HD$H\$HL$H|$ LHD$H\$HL$H|$ Ld$M;fkUHHĀH$H$H$HHPL@ILL9shH|$XHL$xH\$pLLHѿH51RH$HJ=tH2IIsHHL$xH|$XIIHH\$pL@CD? r H vHHHfHHHHH$HQHqH<LH9sBHt$PH\$@HD$`LHH5HHHQHt$PIHHHD$`H\$@HT$PH|$HLD$hI0HHHxH\$HH$HZHL$PHJ=uHD$hLHD$hIMCHHÐH9s=H5f[QH$HJ=tH 軜IIKHHZD?H]HXHSHHLH9s/H\$PLHӿH5wPIHH$H\$PAHPHH="ftH6MIKLH]HD$H\$HL$H|$ 荂HD$H\$HL$H|$ TLd$M;fUHHH$$ƀHHHPLBLL9s:HT$XLLÿH5@OHT$XIIH$$fA%!L@HH=+tHAM ISLwHPHH=˪tHMISLHHHXHHH9sDHпH50KH$HJ=}tH 蓖IIKHHHHHXD)ƀHĈ]HH}H 6Rq HD$\$|HD$\$TI;fv.UHHttvuH@f{H]HD$\$L$Z|HD$\$L$I;fvSUHH8HD$HPLT$7HLH@1vL^ADT$7LT$HARLH8]HD$H\$L${HD$H\$L$I;fUHH0cDU%OU9H@`XtGbtcH@x=H@ϾbLAH@ϾXLXAo`dt/oH@L1AϹlH@ϾdLA Cqtuvuxt 0H@11IL AH@@H@]HD$H\$HL$|$ fvHD$H\$HL$|$ Ld$M;fWUHHH$L$H$$qqfXt@dtqHP@H$HD$@HHH$f%H@HIL A1H1sv`H$H$xPHPLPO L L9sQL$L$L$LLHLH5ZBL$L$L$IHIL$L$HT$xKLLPH$H$HXHL$xHH=̡u L$fH֍L$MISLH$HtjHH9sQLH5BH$HJ=htL{IMCHH$IH$HXBD{1 HSH9s-LHӿH51AIHH$H$A(nilAD)HPHH=٠tHMIKLHĘ]HPLPILL9saLLHѿH5/AH$HJ=|tL蒌IMSHH$$IIHH$LPCD[1xtJHHHdq HEHDH$E1H$2H@HIL A1H1 H@HĘ]H@Lӹ 1LAHT$`HH$H$H$$fDH9HT$`DH~LXL`IL(M9suLT$pLLLٿH5;?H$HJ=tLIMSHH$HT$`$LT$pIIH$H$L`CD, HHHXHHH9sDHпH5'?H$HJ=ttH 芊IIKHHHHHXD]@HL$hHH$H$L$I9HL$h H~LHLPMZL M9sZL$H\$pLLLɿH5i>H$L$L$IIIH$HL$hH\$pfC, LXLH=tH0薉M#IsL HHHXHHH9sLHпH5eD=H$HJ=(tH ;IIKHHHHHXD}DHD$H\$HL$H|$ t$(LD$0LL$8soHD$H\$HL$H|$ t$(LD$0LL$8LLd$M;fUHHH$H$H$$HLGIvLGIv HH$HT$`HL$xHHHa$d#XXbOdCYp7o0@p>H$JLHHf*vH$zPHD$@HJHZHLH9sCLH5LBHJ=זtH IIKHHĐ]H$H$HD$XLBHDJPLD$GDL$OHBHBPDzXHJLBMHLL9s@LD$hLL˿H5d@6H$LD$hIIHD$XH$fC%!LJHJ=tLMMCL$wIMAL9s9LLÿH5d6H$$IIHD$XH$C|&LLP-H$IIHD$XH$LBHJ=ftL {MMKLMHL9sDA;HxPt1HHHP H$HH50/H>DA@qXtqtstvt fxHHHP HH$qH=2LH$D$#HHHP H$D>D~D~H=:H$H$H$H$$H$H$H$HRH$HH$|$$D$#Hİ]ڬD$#Hİ]D$#¬D$#Hİ]IL!H4vLTDL9t4IqMuH1HCH$HHH$\$$ HLHtH$HHvD$#HHHP H$D>D~D~H=8H$H$H$ H$($0Ht$@HD$(¨H$HIH$Hً|$$HH$U谫D$#Hİ]D$#HHHP H$8D>D~D~H=H$8H$@H$HH$P$XHt$pHD$X"H$HIH$Hً|$$HH$D$#Hİ]fH+H$D$#HHHP H$`D>D~D~H=eH$`H$hH$pH$x$H$H$iH$H@H$H$HIH$HHH$FD$#Hİ]MI!INTI9t4MAMuHT+H H$\$$HH$JLMI!INTL9t7MAMuH*HH$\$$HH${JLqHtt v,wD$#eD$#Hİ]HH!HLD1L9t"HwMuH3*.HH$H\1HD$\$_HD$\$;I;fv/UHH0HZHJz HBH5jAH0]^I;fv/UHH0HZHJz HBH5AQH0]f^I;fv/UHH0HZHJz HBH5AH0]&^I;fv/UHH0HZHJz HBH5AH0]]Ld$M;fUHHĀH$H$HX=t#HP LP(LX0LwI ISMSIsHH H@8Dx(HH$Tjp$H$H$HuS?H5^S$HH9RHQHHIHH`HT$8HL$xH\$pHHHѿHH$HB=tHJ vIIKHZ HЋ$u H$HL$xHT$8H\$p$H]ÉE1HYHH9H1HΆH9lHHIHH9KIHCH9HH݉H9 Z D[SHH91ɐ[3HH9H1ɐ;H/H9HcH H9kHHH9HHHHH9@HH9H1`H<H9YZZ»@6.HʆH9H4 HH9~1 HAH9ub1HFtH9uHHHQLQHщLALא{HoH9uDvukH$HT$@H$HT$HLL$@MtEQMIʀEaA MEE1E11H$LHL׋$E1CH]H\$PHL$XHT$PHtDBMIȀDRA MEE111HLǾpSH]H\$`HL$hHT$`Ht H K11҄H5KH9u\H賮H$H@HHHHHH]ÃTtvuH@H H]HH^H N.HD$H\$HL$|$ XHD$H\$HL$|$ 8L$M;f-UHHH$H$H$$L$H$H$`H$X@MHH`HHHH$HB=[tHJ pqIIKHZ HЋ$vu1H$H$`H$X$H$L$ H]H@=t$HP LH(LP0VqII[MKIKMS H@ Hx8HX(HH0HHH$ML E@A$HHHXHSLH9s-H$LHӿH5g$IHH$H$H$L$PIHgwH$H$HVH$HV=u H$PHoH$PI ICHvHXHSHHLH9s5H$LHӿH5$IHH$H$AHPHH=FtH[oMIKLeDsHw&fDHuHBHH2DHuH!HuHcfHHHӹ@H w&HuHBHu6H ?'H u DH uH H HH1ɉ  Z f @m YZZ˻@K I1 HHH[H/H$zPfDH$ rHFH$XH$XH$`&HHHH$HQHqH<LH9sTH$H$ H$LHH56~HHH!H$IHHH$ H$L$PH$H$I0HHHftH$H$HZH$HJ=u H$PLDlH$PIMCHLC@L9s'LÿH5l} H$IH$(nilD)LBHJ=tH /lIIKHDb HZLCHJHL9s/H$LÿH5|j H$IH$LBHJ=tH kIIKH L$IHϋ$HHH$[ xP< r H?DHHHHHHHfH$HQHqH<3LH9sTH$H$H$0LHH5{HHHoH$IHHH$0H$H$H$L$PJHHHqH$H$HZH$HJ=]~uL$A H$P%L[jH$PIMCL$A Hs L$`$As L$`M L$`MMtqHH9sHH5zsH$HJ=}tH2iIIsHL$L$`HZD{LH$XLDLCL9s)LÿH5zfH$IH$(nilD)LBHJ=-}tH CiIIKHH]HPLHMQLL9sbL$LLHѿH5yy$H$L$L$IHIH$H$`H$XC map[LPHP=|ftHMhM ISMLHHHXH$1-t1CHHHuHH$H$`H$X$H$L$QHHH芔HσHwHtHtHt HH$HJLJILL9stH$H$`H$XLL˿H5x H$HJ=X{tL ngIMKHH$IIH$XH$`LJCD&L$IHً$HHАH]H$H$`H$X$H$qXtqtBst x4Ht r L ?HHH;ILL$xH$IIXHHHHH$@HtNH$rHH$XH$`藗H$HHH"wfH$H1 H$H$XH95puH$`HHYHI H$`N|H H$H$`H$H$X$H$L$xP.DHt r L N>HHHIIHHH$HQHqH<LH9sVH$H$H$LHH5 vHHHf{H$IHHH$H$H$H$L$PJHHHkH$H$HZH$HJ=ixu H$PLudH$PIMCHL$IuyL$`I9usLCfL9s'LÿH5,uH$IH$(nilD)LBHJ=wtH cIIKHH]L$`HH9rI\H5t5H$HJ=wfuL$ILcIMCL$IHL$`HZD{ LHLPILM9s~LLLɿH5/tH$HJ=vtL cIMCHH$`H$$H$L$IIH$H$XLPCD[E1cHHI&xP> r Hj;HHHHHHHH$HQHqH<3LH9sUH$H$(H$LHH5*sHHHאH$IHHH$(H$H$H$L$PI0HHHiH$H$HVH$HV=uu L$PHaL$PMISLHH$`H$X$H$L$HPLHILL9sqLLHѿH51rH$HJ=ttH2aIIsHH$`$H$L$IIHH$XLHCD{1fH]H$XH$`H$sL$IHϋ$HHH$KH$HH$`H$XH$H$HHHH$H9HH$zPtzHJHZLCHL9s7H$LÿH5pYH$H$IH$f, LBHJ=stH2@_IIsHgHJHZHHH9s@H5opH$HJ=7stH2M_IIsHH$HZD H$zOu zPhH$ rH7H$XH$XH$`脗H$HH`HHH$hHD2D1DrDqDr Dq Dr0Dq0Dr@Dq@DrPDqPDrXDqXH$pH$hH"L$IHMHNIL9sEL$H$H$8LH5)oHH$L$IH$8L$H$PH$LH#eH$H$HZH$HJ=qu H$PL]H$PIMCHHH9s=H5nfH$HJ=HqtH2[]IIsHHZD:H$H$H$HJHZHHH9s8H5 nH$HJ=ptH \IIKHHZD}HHHL@;L$IHϋ$HHH$sL$IH$H$`H$H$X$H$L$L$HuLQPHHH菍H$`H$H$X$H$L$L$IH$M9@MLPLXIL fM9LLLѿH5lfH$HJ=hotH2{[IIsHH$`H$$H$L$L$IIH$H$XLXCD# fKHHHXHÐHH9sDHпH5ksH$HJ=ntH ZIIKHHHHHXD]LH$HH$XL$IHϋ$HHH$RH$HL$IH$L$`H$uMQ;H$XLH$胋H$L$L$`IH$I9H9HJHZLSLL9sMH$LLӿH5j;H$L$L$`IIH$H$fA, LRHJ=WmtH2LjYI IsILHJHZHÐHH9s8H58j H$HJ=mtH YIIKHHZD}BH$@H$H$HL$xHHH$H$H$$IIH$H$@H]H$H$HHH$H9H$H$XH$`HH$ÇH$H w*Hu HfDHuH uBuH uhH uHZH uHIHHHHf8H@H ׭HH$HHHHy4HXD:H$H$H$$L$@;H$`H0H$HH$H9H$H$`H$hD0D2DpDrDp Dr H/H$zPLJLRMZL"M9sSL$LLLɿH5g. H$L$IIIH$`H$H$fC, LZLJ=GjtL f[VM#MKL"LJLRILM9sfLLLɿH5$g@ H$HJ=itL UIMKHH$IIH$`H$LRCD H$H$hH$pH$xL$IL$HЋ$eH$HHHXHÐHH9HпH5Vf H$HJ=itL 4UIMKHHH$H$zPtZHJHZHÐHH9s8H5eg H$HJ=htH TIIKHHZD}HJHZHÐHH9s8H5e H$HJ=WhtH mTIIKHHZD]H4 H@H _HH$HHHHH4H@H HH$HHHHǴHD$H\$HL$H|$ t$(LD$0@;:HD$H\$HL$H|$ t$(LD$0yUHHHD$ H9FUHHH48H|8L fL9uLAu LƿHt7H4$H|$H4$HtDNMIɀv@ ME E11E11AIqfHwL@LH=%StL;?MMCLL$L$H$Ht H11LL9HzH$HQHqH<LH9sOH\$HH$H$LHH5OHHHאH$IHHH$H\$HH$H$L$I0HHHEH$H$HXH$HH= Ru L$fH>L$MISLHÐH9sALH5NgH$HJ=QtH2=IIsHIHHXBD=H\$hH$vH$HL$PH$H$HHHXHHH9sDHпH5UNH$HJ=QtH 3=IIKHHHHHXD)dHH()H @IYHS IIMH9s=H$LHӿ H5MBL$IHH$H$I%!(NOVERMfADB)IQII=_PtIuDWDT$=L[L\$HE1E1[H$H\$HL$H|$Ht$ LD$(-EWdL4%HD$0HĈ]HH)H$DDT$?D_D\$DT$=L\$HLl$hM|$L9}Ld$xA\fD8I4H9UI9GL|$pLI)I?I!LHH!&H$H$H$H$H$L$DL$>DT$=L\$HLd$xLl$hL|$pII\$H?H=IH[HL97L)HL)HHHH?I!LH$HT$H\$H|$Ht$ LD$((EWdL4%HD$0H|HL$xHH@HĈ]HHĈ]HD$xHĈ]HHĈ]HHĈ]&&&&&HD$H\$HL$H|$ Ht$(LD$0f[ HD$H\$HL$H|$ Ht$(LD$0I;fUHH@H\$XHt$p11DiʓDC HI9LAAEEEMIIEEMME1E1EiٓF$G IL9~ L9wlHt$pH|$hHL$`H\$XHD$8DT$T$DD9uKH9-DL$ HHH@#u,HD$8HL$`T$H\$XHt$pH|$hDL$ DT$I1H@]ID$LH9EiɓDEIM)F$EE)D9IL)IL)HHH?IL!HI9t1fNLd$0DL$$L\$(HHH"HL$`T$H\$XHt$pLD$8DL$$DT$L\$(Ld$0Ll$hE II8LH@]HH@]D;$6$HD$H\$HL$H|$ Ht$(LD$0LL$8HD$H\$HL$H|$ Ht$(LD$0LL$8I;fv?UHHHkC1$/=3tH L+ IIKH9+H]vI;fvUHHH+;H]:I;fUHH0HD$@HHHKHT$@HZH9rcHrH9t.H\$HD$(HL$ HH&HD$(HL$ HT$@H\$HZHJ=3tHJIIKHBH0]"HD$H\$uHD$H\$FI;fvwUHHHHtH9tK=2tHIIKHH|HHH+HH9~H]H/Hl H.H HD$H\$HD$H\$eI;fUHHHHHtDH9t =1tHIISHHD$XHHHPL@LD$@Dw?MHL9s/\$`HL˿H5.7LD$@IHHD$X\$`A\HЉL/LD$@IHHD$XLHHHM)=M1tHpbIIsHPL11HH]H-Hl ײHD$\$HD$\$I;fUHHHHL$hH\$`HD$X11HH9~4<HHt$ HfHD$XHL$hHt$ HH\$`H|H9HHt$0H-HHHD$@HL$0HT$`Ht$X1H4IXHLHyH9H\$(Ht >s1HT$Ht$8HHZHD$@HL$0HT$Ht$8HH\$(H9H9svIHH|H)IHH?H!H>=/bH<I3I{MH~&HHT8=y/tH8I3ISH48HHH]HD$H\$HL$HD$H\$HL$GI;fUHH@HD$PHL$`@HuHD$PH\$X11HtHL$`H|$h1W H$H\$L$@EWdL4%HD$H@]H)HHH?H!Ht$8HHT$0HHL$`H\$ HD$8HT$0(HtH|$hHHt$ H9s HD$0H@]fHHH9~-4HqHT$(wdHD$PHT$(HH\$XHBH@]HD$H\$HL$H|$ D{HD$H\$HL$H|$ I;fUHHPHD$`HL$p@MHttH$H|$xHL$pH\$hHD$`M}LL@H\$hHSI9LOLD$0H)LHHD$HHL$0HQHT$81Ht$hH|$`f?L6HP]11HHP]I)MII?L!MD5IZHT$8LLH9H\$(Ht$ H|$@HHHL$pH|$xqHH$H4LD$ I9LL$(HL$0@I9MIL\$HKt H|$xH4=V,u LLl$@O$ L[Ll$@M+McN,I9f\HD$HHL$0H\$(Ht$ H|$@DH9s4HHHt=+tH4fI;IsH<HHP]f{vqHD$H\$HL$H|$ Ht$(LD$0-HD$H\$HL$H|$ Ht$(LD$0Ld$M;f#UHHH$H$HtRHt9Ht(HKHHI1HH9HI1L1*HHXHHĠ]11HĠ]LMAHH9~MM@II)M9~PH$H$H$H$D|$hD|$xHD$hHHL$hH$HzHHtLD$hL9tLD$hLD$hH$LD$xN HD$pL9s:LD$PH|$0H\$`LH5"'fH$H|$0LD$PIH\$`LL$PHL$HH$HH$LHHT$PHT$xHT$HH$H$HT$pH$H$HHt$P1_HL$@H\$8H$HH\$XHHT$8HT$xHT$@H$H$HT$pH$HHD$HHHt$PH9MLD$hLJLfMtL\$hM9tqLD$hLD$hL\$hHD$HH$LL$(LT$XH$LD$xH$JLd$pH9s$LD$@LH5%/H$LD$@IHL$@H\$8L$KH$HHT$8HT$xHT$@H$H$HT$pHT$hHtLD$h@L9tHT$hHT$hLD$hH$HT$xH|$(H:HD$pH9kHT$@H5$rHT$@H|$(KHD$pHHH\$xH9wHĠ]DHt6\q\H*$Hӝ ;H$H (H$H H#Hg H#HT HD$H\$HL$H|$ Ht$(HD$H\$HL$H|$ Ht$(Ld$M;fUHHH$H$H$D|$pD$1H$HLHT$hH9HT$X4HzHHH\HH$t$LH|$hHH‰щD$HL$L9u/tH$L$qH$Ht$XH9H$Ht$XH9HH)IHH?H!L$M9MtA<9@s)LLHt$XL$HىNjD$HH$Ht9u} H`T fC(wH,HH$HL$PHHD$pDH$H|$XH9HT$pHtLD$pL9tXHT$pHT$pH$L$JHD$xH9s!LD$hHH5!H|$XLD$hHHT$hH\$`H$LH$HfHT$`H$HT$hH$H$HT$x\$H| HD$pHt$XH|$PHH$H9H)HHH?H!H$H7H$H$tHL$hH$1)HHHĘ]H$HL$hH$HT$`H94HzHHHYHH$H|$`HH‰х|LD$pMtLL$pM9tLD$pLD$pH$H$HLD$xH9s,D$DLH5wH$HD$xID$DH$BDHD$pDHD$xHHH$H9w HĘ]HtWKWHH HH DHD$H\$HL$HD$H\$HL$'Ld$M;fUHHH$11HH9~C4@st@Ar @Z1HHH HĠ]ÄtDH$H$D|$xD$HD$xDH$H$11 HĠ]HH9DEHAHD$PDD$GH9 HH)III?L!LL$xHʐMtLT$xM9tLL$xLL$xLT$xL$L$M$;L$M9sfH$HH=u H$H$IHH$LCIw %HH5\LTHHH$HD$xHt$`H|$XHVHH?HHOHH$HH(H!;H$HP=HuH$H\$xRH$I H\$xI[HD$pHHL$XHHHL$`HH HXH蔑Ht4H82fHH膷 H$H$|H$H9t HT$pHH$@{uHT$puH$H$z+Ht&HT$pHZ=EtH[II[HHT$pHt*H=tH)I;IKHHH]HH\$pH $H=~ 2HHL$HHHwHL$HHL$HHD$hH1HL$HH9}HD$PH|$7HTD2D7DrDwHþIHD$hH|=HPHt$PDH9rtHL$HH)H)HIII?L!LD$hIHVHT$PHL$HHD$hH\$pH@HH=tH8IISH8f{HD$H\$HL$H|$ Ht$(;HD$H\$HL$H|$ Ht$(fLd$M;foUHHH HPH$D$D$HxHH$H$Hu H110H|$@H\$p1H1H5mHHHHL$@H\$pHt$hH|$`H$HDHT$`H$HT$hH$H$H$H$HrDHnLBHR HHH?LLFLD$h1HPHXHH HH=( Hİ]HL$XL\$PL$K HGHT$PH$HT$XH$H$H$H$HHD$`HLD$h@L9VL$HzHMtL$M9tuL$L$L$HD$`H$H\$xH|$HH$L$IL$L9sQLL˿H5/誳H$H$H$H|$HLD$hL$IIHD$`H\$xL$CD L$Mt M9t L$H$L$M9L$DL9rLL$XLLH5DH|$HLL$XIIH\$xH$HHHL$XH1H$`H$FfDH=0u H$`H$`H24IIsHH$HX`HHhHGHL$XfDHr H$`1H$H$`H5JHH$HL$X=tHrIIsH$HBHH$DHHL$XHr H$2H$H$H5A軣HH$= tLBIMCHBL$ILKIL9s5H\$hH$XHHH5LOH$XIHH\$hHL$XLL$PH$MALIII?ALHLHH@xH$ HCH$LJMt LRLZ 4D$L"LjL$L$AAL$L$E8ExEx Ex0Ex8Lb@LjHL$L$Ld$PL$Ld$XL$L$L$H$H$H$HH$H$H\$HLLL2=Ku H$H$HJII{HHD$FHfDBH  =fu H$ H$H(DIISH$H(H H$H$HD$8H$0H$0@H$HH$PHHt$h1H\$pHL$xD$GH$hHHD$pH\$xHp]H|$pHt$xD$GH$hHHD$pH\$xHp]H\$pHL$xD$GH$hHHD$pH\$xHp]H\$pHL$xD$GH$hHHD$pH\$xHp]H\$pHL$xD$GH$hHHD$pH\$xHp]H$HHHJ(HD$pH\$xD$GH$hH HD$pH\$xHp]H4ϛH@H NHH { HL$pHD$xHL$pHHHp]HuHfDHHHHI HH 1=_u H$H$H0@[IISH$H0HH H=uH$H$H$I H$ISHHHP D|$pD$GH$hHH\$xHD$pHp]HHHPHD$`HH$H$PHt$hH9HD$`H H$H/H H=>uH$H$EH$I H$ISH$HHHHPHҙH H=uH$HH$*H$HI H$IS D=tHIHǁHpHD$pH\$xHp]HD$HD$I;fvUHHHZHBH]I;fvUHHHBHRH H]I;fUHHXHJHL$HHZH\$ HHD$H\$(D|$@HD$PHD$H\$@HD$HHL$@H\$PH@@Ht$HEHt$(HEސHuHD$0H\$8HD$ H\$0a#HHL$@HD$HH\$PHD$H\$@f;HX]HD$HD$!I;f?UHH8HJHL$ HHRHT$0HHt$17HD$H\$(H HCHIH\$(HHD$HHL$ HT$0Ht$H9|D=ZtHLIHǁ:uHHH\$18H8]HD$HT$(H HBHIHT$(HHD$HHL$ H\$H9|D=tHHIISHǁDHǁuL$HM;fUHH0H$@H$HHDŽ$D$ HHHI H$D9DyH$HH$H$H$H$H$H\$81ɿHA菃H5H$@HHu 11H@HtH\$pHD$@H :H=;{t11vH >H$HDŽ$HL$@H$HL$pH$HU$H$(XHH~v !H$@HHHJ(fHHH$@HfH HT$xHD$HH%!HL$HH$HL$xH$ H$(HH$D:DzH$HH$H$H$H$H$H\$01ɿHADHcH$@HHH HD$hH$H$Hu HL$HHD$x~H$H H=t HL$HHD$xSH 4H$HDŽ$HL$hH$H$H$H"H$wVH t H$@H(H H$HL$`D$H$ u"H$@HHHt$P17HL$`Ht H$rHT$hHtH$H$VH$LH0]H$H$ HDŽ$(H$HH$H0]H0]Ã=u H$@H$@H(D[I3Hǂ(H$H$ HDŽ$(H$HH$[H0]HD$XH$H HBHIH$HHD$XHH$@Ht$PH9|D$H(H$HL$`HtH$H HHD$H\$HD$H\$I;fuUHHxHP(L@0LH8fHt 11 H$H$HrHHu 11HL$PH\$HHD$hHB@HHtHT$HHHt$hHL$PHH1HO zHT$HHHL$PH9rHt$h6H\$XHD$pHD$hHӿH5#HHHD$pH\$XLBIJ\=WtN lIMKJ11HHHIIHHHHD$@H|$`1HLLIHT$@HAEHELD$`LEHLHx]HD$wHD$mL$M;fUHH$$H$H$H1H4H$H$pD9DyDy H$HSH$D:DzDz Dz0H@@uDzHH$H$H$H.p)fHD$pH$H$1H1E1HIHHHD$pHL$hHCH\$@Ht$HH|$`L$HT$xLILL$hMIL$Od Ld$PO L$D$Et1pL $Ld$D$yEWdL4%H|$HT$xH\$@Ht$HH|$`L$L$LT$hL$Ld$PD$HD$pt>Hy謍H@'H oHHL$HH\$@Hm HHD$xLLH #CHuCH\$PHHHHH?H$HH @HHHT$PHtrH\$@HHL$HH9rHD$xHD$xH5薐HT$PLCIJT=u L$JL$M ISN HL$HH\$@HD$xHT$`H$HT$PH9$@u H$HH$f[HHHD$XH$H\$pHHym8t!HL$HH\$@HT$`H$HD$xFHGmH\$pH$H|$XPH\$@HHL$HH9rHD$xHD$xH5c[HSHLD$PLD=fu L$LL$M MCL HT$`H$1L<Nd N IBIIL9}sII)IIHLLdL9vgINl N< Ll=tL$N, H XM;IKLL$MCMkMIqHHLHĠ]Ð{vqD$\$ HL$H|$Ht$ 4D$\$ HL$H|$Ht$ I;fCUHH@HD$PH\$X@HHH(HDD$,HoLHH\$PHL$XAHH\$8HD$0H+j H9t(HHH` 5Hj H\$8HD$0t1H9t'HHHZ fH\$8HD$01Ʉu*L$,It 11H@]HHH@]H@]Hi H_ H@]HHH@]HD$H\$褾HD$H\$Ld$M;fUHHH$HtHu8.tHuf8..uHH511H$H$Ht~Ht$`HT$@H@;H$HH=HuH$Ht$`RH$IHt$`IsHHT$@HPHp1H %i H1HĘ]H 覿H}FHn萫Hu HD$P1H "Y 1IH\$81H$H$&HtzHD$HH\$hHKH$HH=XuH$Ht$hbH$IHt$hIsHHT$HHPHp1H 5h H1HĘ]H$H$11HĘ]H$HHL$PHH\$8H9tHL$PH$HPH0HҿHDHT$xH,HDHt$pH$H$H$H$HD$pHAHD$XH\$0H_H\$0Ht HD$X8/HD$X1H bHu 80H3΅H$HH=u H$H$IHHŀH5ƀHP=t I3HpH\$0H f HHD$XHĘ]HhK`HD$XH\$011HĘ]H(H$HH=5u H$$H$IHH/H50HP=tI3Hp1H f H1HĘ]HD$H\$iHD$H\$I;fv UH1]*I;f UHH(Ht HtH(]H8HգHH:HD$8H>H:HRH#HT$8H8H@HH,HuT HfHtTHH]T HD11HեHH1=[6VHH,Ghf9H HD$HD$I;fv[UHHHHH9KuAHD$(H\$0HHt(HT$(HBHt$0H9Ft1HZHNi1H]HD$H\$pHD$H\$I;fv[UHHHHH9KuAHD$(H\$0HHt(HT$(HBHt$0H9Ft1HZHN1H]HD$H\$HD$H\$I;fv`UHHHHtMHHL$@HHHL$8HHHPHRHHL$8H=II1H\$@HHH]f;#HD$pHD$UHHt HXH@]#I;fvRUHHHH9u8HD$(H\$0HpHKHHtHL$(HIHT$0H9J1ɉH]HD$H\$ٶHD$H\$I;fv^UHHHHH9KuDHS@H9Pu6HD$(H\$0HHtHT$0HZHT$(HBHJ1H]HD$H\$MHD$H\$I;fvAUHHHH9u)HPfDH9St1HpHKHH1H]HD$H\$HD$H\$L$M;f UHHpfDּ$hD$GsH?sH HH HHiʚ;%?HcHH=H ƳHɹHEH\$xH HEH$f{GH$H\$PD$0DQH H$0H$8HMH_ H \ H$0AM-HxH@[HdHH$H$HR H$@H$PH$XH$HHH$@H% 1 HtQD$tH[H$H$HoH0^ H %?H$AM6,1H$Ht,H ` H$H$H$H$hD$GH}H$`H$1HqH$HrU H$HH] H$H,Hp]D$ tHH$ H$(HxH9] H BH$ AM@;+Hp]H$HH$HH$`H$H9SH$H$HH$HAH$HJ фuH$HI(H$H$H\$XHH1HDUH NvHHHHH蚓HH$H$H$D9DyH$H\$XNH H$H$H$HtHyHH$H$H$HH[ H -H$AM)HL$hH\$`H$HT$PH$H$H$HT$XH$H$H$H$HD;H\$HH$HT$xH9u%HH$4H$H\$HH$H|$`Ht$hAbfHH$H$H$D9DyH$H\$XdMH ]H$H$H$DHtHAHH$H$H$HHDZ H MHH$AMJ(H$H\$H11HHT$PHPH=u H$HH@'H$IIKH$HX@kHH9sH5oj}HSHHD=u H$ H4H$LG(I3ICMCH5H4H_0HO8HG(HHCy@=XuH$HH$H$&H$HEIISH$HHtQHX HYP=t HYXHqhHyxEII[IsI{HQXHX HY`HQhHYpHQx?HAP=tHYXHqhHyxIIsI{DyXDyhHAxHHH$H$H$`D9DyH$H\$XJH H$`H$hH$HtHAHH$pH$H$xHHW H \JH$`AM%H$H\$H|H$@D9DyH$H\$X'JH H$@H$HH$HHyIH 2H$PH$XHKH W H IH$@AM%H$HH蒡H$`DHwvH H=u H$`H$`I H$HHHjvH H=yuH$H$!D{H$I H$ISHHHL$HHHHPnD@D$H$H\$XDHH H$H$HHU H q>H$AM#}H$HL$F3sHHiʚ;HL$pD$0GH LH$0H$8HeH&U H Ƒ8H$0AM,#H H$ H L H$(HHT H$ H $HD$pH zH$H L H$HHT H$HD#H$`NH 'H$H XL H$HyH:T H$Hm#L$FtD$GH$hHHp]#Hp]赩I;fvUHHHBHZHRH H]֨I;fUHH0fD|$(H\$HHD$@D$HJHHT$HL$ HL$HL$(D$H*腌HD$@H\$H薻D$HT$(H H0]Ð;H0]HD$H\$&HD$H\$WI;fvUHHHBHH]קI;fvUHHHJHtHAH]薧I;fvvUHHJH9scHRHHtH<H9sHHH LDH =?tHLLLMIKIsMKLDH<Ht]HD$H\$HD$H\$f_vFfsmupRNwCntxgcaymiosmuX0X1InlkOpFdfdg0idsppcfninGoDoIsPCtxiolohirot1t2OrlrfpbpvpvutsgpmpZ0Z1Z2Z3Z4Z5Z6Z7Z8Z9K0K1K2K3K4K5K6K7rgwgrtrdwtwdkptittpdHiLobufSysfmtmsgerrpadwidargTypStrInsKeyLenOutptrtapvecsrcs64IntkeysysOldNewErrpfdtypDirEnvPidpidtlsmOSarroutctxRunvalAllGetPutpinAddrawSeqSecCurMaxDevInoUidGidAbsgetDaySubUTCsecextlocoffTagCapSetretAndendbssbadcassetpcslennowrunseqZ10Z11Z12Z13Z14Z15Z16Z17Z18Z19Z20Z21Z22Z23Z24Z25Z26Z27Z28Z29Z30Z31sigaddsubmaxminpopobjcapputgcwposPinhasmidrfdwfdDupFunR16R32LoadSwapnbufbufpnamedatahashInfoModeNameSizeTypeReadSeekStatfreeFlagfmtCfmtQfmtSinitpluszeroprecHashiterBitsElemKindOutstyp_flagsyncnextprevSeedfeedreadseedIntnPermelemctrltextsizemodefileSyncseekrefsrootinfo FilefileKillWaitkillwaitonceLockcurgoldpncgoparkselfheaplinkheadPathArgsargvpackvalstailnodeswapdeadfindsemaDonelockdoneAddrDataNanoUnixNsecUsecBaseRdevAtimMtimCtimCttyPgidLinetimewhenzoneDateHourYearZonemononsecwallStopkindbytebaseNextFuncBoolCallGrowRecvSendSeq2Uintcallgrowrecvsendiregfregftyprcvrdumpabid Type*intargspcsppclnflagpad1pad2nfnsftabebssptabctxtgoidgopclessmaintakerandstoplastregsbitpaddrdifflistmasktinyscavpushnodenobjringslotget1get2fulloldmrunqrankFilecodelinewakebitsrrunwrunuserrseqwseqdepsfdmuInitMoffDumpIntsPtrsusedUsedseenStoreembedIsDirClosefilesErrorWidthwritelimitWritefmtBsfmtBxfmtQcfmtSxminussharpspaceplusVvalueSize_TFlagKind_EqualBytesInterAlignFieldNumInInt63Int31slotscloseChdirChmodChownchmodpreadstatesigMuvalidnextplocksdyingincgotracetimerStdinStartcheckentryemptyClearRangelocalRLockValueUtimeStimeIxrssIdrssIsrssNswapNvcswNlinkstackPidFDIndexHoursRoundsplitisDSTindexisstdisutcAfterClockIsDSTLocalMonthResetio/fsFloatIsNilSlicerunesptrTostepsiregsfregsspill*int8*uint*boolretpcEntrymagicminLCnfuncvaddrcutabpctabminpcmaxpcetextedatagcbsstypesdatap_Func_funcstarttotalhchanresetfirstsendxrecvxrecvqsendqschedparamsigpcxRegsbytepequalflushallocclearinUsestorecacheunpinsweptstampdrainstealchainwbuf1wbuf2spanqstatsgFreewbBufvalPCUnpinunionmergetimersleepfdseqreadyStackrsemawsemaSysfdcsemaFstatFsyncPreadevictgroupPrintcloneClonequietdedupZKStringoffsetReadAtlookup`IUnwrapfmtSbxsharpVintbufFormatAlign_GCDataCanSeqFieldsMethodNumOutKHUint64Int31nInt63nUint32int31nrecentbisectL L L HHinRootpwritecloseddecrefincrefparentSignalhandlestatusrusageExitedexitedsignalPollFDresultUnlockdivmodprocidvdsoSPvdsoPCXK YK ZK[K@[KaKjKkKkKprefixStderrStdoutCancelOutput aLaLbL@cLcLunpacksharedinitedinitMuDeleteexpandnoCopyvictimdoSlowHHH H@H`HHHHHH@H`HH@H`HH HGroupsSetLenHostIDMaxrssMinfltMajfltMsgsndMsgrcvNivcswBlocksOffsetChrootPtraceSetsidNocttyactiveformatextendBeforeIsZeroMinuteSecondabsSecaddSeclocabssetLocII@Ierrors HILookupmustBeCanIntCanSetSetCapSetIntSlice3commonstkOffappendCommonaddArgargLenmethodtJ`wJwJxJ@HHHmHmHmHmH*error*uint8*int16*int32*int64*[]intunsafegoexitopaquepcfilefuncIDnfilesptrbitgcdataetypesrodatagofunctimerswaiteradjustsiftUpunlockverifyastateisChanisFakeperiodmodifytrace1qcountbubbleticket_panic_defersecretlabelsinsertremovenoscannpagesnelemsdivMulinListisFreelayoutrefillallocNputObjdeinitptrBuflfnodemcachepcachepalloccycleslenPosvarintpinnersignedcountsinHeapgTotalgNonGoensurescalarreasonfileIDparkednextPCframes`XHXH@YHYHZHZH [H`[H[H`\H\H ]H@]H`]H]H]H^H^H^H@_H_H_H `H`H`HaHaHaH bHbHbH cHcH@dHrwlockiovecsisFileAcceptFchdirFchmodFchownPwriteWritev JEnable`*@*@HasTagMcountXcountFloats@ @`@groupsrehashdirPtrdirLenA A-@StrideenableHOpaqueA .@@.@Init64RefillReseed.A*func()ModTimeReadDirconsume*fmt.ppbadVerbdoPrintfmt0x64fmtBoolPkgPathMethodsCanSeq2ChanDirreflectseedPosreadValreadPosFloat32Float64ShufflemodTimedirinfoReaddirWriteAtWriteTolstatatreaddirwrapErrwriteToSyscallTimeoutControlacquirereleasecleanupSuccesssuccessReleasepidWaitNetworkTryLockruntimemorebufgsignalsigmaskblockedisextraalllinklockedgchacha8os/execProcessEnvironenvironrunningpopHeadpopTailprivateisEntrykeyHashgetSlowpinSlowRLockerRUnlocksyscallStoppedInblockOublockX__pad0BlksizeSetpgidSetcttyMinutesSecondsAddDateCompareISOWeekWeekdayYearDaysetMonounixSecCanAddrCanUintComplexConvertIsValidMapKeysPointerSetBoolSetUintSetZeroTryRecvTrySendabiTypepointernameOfftextOfftypeOffGcSliceHasNameMapTypeaddRcvrregPtrs*[1]intsetting*string*uint16*uint32*uint64*[]uintstartPCstartSPnpcdataptrSizefuncofffiletabcovctrshasmaintypemapsrcFuncuintptrzombiesraceCtxwaitingaddHeapdequeueenqueuesortkeywaitersnextSeqpreemptlockedmstartpcracectxcgoCtxtcoroargisEmptytakeAllobjBasepushAllinSweeppushcntbalancedisposeallnodedestroyputFastdiscardscratchrunnextwritingentriesbucketscomputethreadsensuredgcStatsclosingstackIDmakeArgcontextcallers SysFileFstatatRawReadReadMsgprepareFeatureInCountIsBlankInSlicePutSlotunicodeverbosePackageChanged*[]uint8go.shape*fmt.fmtfmtFloattruncatefmtFlagserroringwrapErrsdoPrintffmtBytesprintArgGoStringPtrBytesNumField*os.File*os.filenonblockReadFromTruncatereadFromExitCodeSysUsageUserTimesysUsageuserTimemstartfnthrowingspinningfreeWaitncgocallidleNodewaitlockfreelinklibcallgdlogPerMwatchCtxfirstErrpushHeadheadTailoverflowindirectchildrenvalEqualinitSlowTryRLockCoreDumpSignaledNsignalsCgroupFDcacheEndLocationUnixNanoappendTo*fs.FileCanFloatMapIndexMapRangeSetBytesSetFloatassignTosetRunestypeSlowuncommonFuncTypePointersUncommon*[]int32*[]int64register*uintptr*float32*float64*[]errorslotsPtrentryOffcuOffsetfuncInfoFileLineentryoffbaseaddrbytedatapcHeadernoptrbssecovctrsepclntabfuncNametextAddrraceaddrinitHeapsiftDownwakeTimesendLockmaybeAddneedsAdddataqsizelemsizeelemtypeisSelectwaitlinkwaittailstktopspcoroexittrackingwritebufsigcode0sigcode1guintptrcontainssubtractlessThansweepgenneedzerospecialsheapBitsobjIndexflushGennextFreescavengerefStoremaySweepspanBasetryDraincleanupsrunqheadrunqtailsudogbufstatsSeqwaitTimedisabledlastTimevarintAtentryGentargetpcwaitsemalockAddrFunctionreleasedinStacksmSpanSysotherSysheapGoalIdleTimecpuStatsheapScangRunninggWaitinggCreatedsysStatscpuStatsconcreteasserteddispatchcallingGcapacityfileLinerwunlock*poll.FDIsStreamRawWriteShutdownWriteMsgeofErrorreadLockpollablewaitReadDeadlinelockSlowOutCountOutSliceclearSeq*sys.nih writeByte writeRune Precision padString reordered panicking argNumber badArgNum doPrintln fmtString PtrToThis NumMethod math/rand noWriteTo StoreNoWB doRelease pidSignal pidStatus pidfdWait caughtsig mallocing profilehz printlock traceback schedlink lockedExt lockedInt mWaitList profStack libcallpc libcallsp cheaprand locksHeld rangefunc *exec.Cmd WaitDelay goroutine ctxResult StdinPipe writerSem readerSem localSize Temporary Continued TrapCause Interface *[3]int64 X__unused Pdeathsig cacheZone GobDecode GobEncode UnixMicro UnixMilli stripMono initTimer *chan int IsRegular Anonymous CallSlice SetString bytesSlow ArrayType regAssign retOffset stackPtrs inRegPtrs framePool *[]string *[]uint32 *[]uint64 recovered gopanicFP *[1]uint8 NotInHeap startLine nfuncdata isInlined pclntable noptrdata enoptrbss typelinks itablinks pkghashes inittasks gcbssmask nextDefer nextFrame decActive incActive cleanHead deleteMin isSending syscallsp syscallpc syscallbp stackLock waitsince ditWanted ancestors sleepWhen schedtick schedwhen sizeclass lessEqual startAddr freeindex allocBits spanclass largeType scanAlloc reclaimed tryGetObj deferpool goidcache storeSlow haveStack available reentered committed largeFree inObjects stacksSys mCacheSys gcMiscSys TotalTime stackScan totalScan gRunnable heapStats sleepStub Ftruncate WaitWrite WriteOnce writeLock waitWrite Specified *abi.Kind *abi.Type *abi.Name *abi.ITab *maps.Map seenLossy Immutable *[16]uint8 *fmt.State clearflags fmtBoolean fmtInteger fmtUnicode widPresent *[68]uint8 goodArgNum catchPanic fmtComplex fmtPointer missingArg printValue Comparable FieldAlign Implements IsVariadic *rand.Rand ExpFloat64 *[4]uint64 appendMode checkValid noReadFrom *os.Signal SystemTime systemTime WithHandle withHandle *struct {} goSigStack preemptoff isExtraInC needextram cgoCallers ditEnabled winsyscall preemptGen *[1]string ExtraFiles StderrPipe StdoutPipe childStdin readerWait *[96]uint8 *sync.Pool victimSize *sync.Once ExitStatus StopSignal Credential Foreground Cloneflags *time.zone *time.Time cacheStart lookupName AppendText Nanosecond ZoneBounds *[64]uint8 *io.Writer *io.Reader *io.Closer IsExported CanComplex CanConvert SetComplex SetIterKey SetPointer UnsafeAddr assignIntN valueStart stackBytes outRegPtrs StructType nonDefault *[]uintptr *complex64 *[]float64 *runtime.m *runtime.g repanicked pclnOffset modulename enoptrdata pluginpath gcdatamask isChanWait isSyncWait updateHeap *[2]uint64 waitreason gcscandone throwsplit raceignore parentGoid selectDone *runtime.p insertBack allocCache gcmarkBits pinnerBits allocCount countAlloc nextSample tinyoffset tinyAllocs stackcache allocLarge releaseAll mSyscallID putObjFast tryGetSpan workbufhdr checkempty chainEmpty tryGetFast sysmontick sudogcache mspancache gcStopTime startTicks cyclesLost stringData difference inWorkBufs largeAlloc numObjects totalFreed totalFrees mSpanInUse accumulate GCIdleTime finalStats schedStats atomicInfo _interface sysmonWake sleepRatio shouldStop gomaxprocs *chan bool frameStore isBlocking RawControl ReadDirent readUnlock runtimeCtx unlockSlow *abi.TFlag IsEmbedded ReadVarint lengthMask growthLeft localDepth getWithKey tombstones clearSmall MarkerOnly *[50]uint8 sync/atomic *embed.file *fmt.buffer writeString precPresent wrappedErrs WriteString unknownType FieldAlign_ *func() int FieldByName OverflowInt *[1]uintptr *[2]uintptr *[4]uintptr poolDequeue *[607]int64 NormFloat64 *os.dirInfo stdoutOrErr SetDeadline SyscallConn setDeadline *os.rawConn closeHandle *[]*os.File *os.Process *[5]uintptr *[6]uintptr newSigstack createstack waitunlockf syscalltick *exec.Error SysProcAttr lookPathErr startCalled childStderr childStdout *chan error *sync.Mutex readerCount *sync.eface LoadOrStore rUnlockSlow ContainerID NoSetGroups UidMappings GidMappings AmbientCaps UseCgroupFD Nanoseconds MarshalJSON MarshalText *time.Timer panicNotMap SetMapIndex abiTypeSlow capNonSlice extendSlice lenNonSlice stackAssign *[9]uintptr *complex128 deferreturn pctabOffset runtimehash funcnametab findfunctab textsectmap isMutexWait minWhenHeap acquiretime releasetime stackguard0 stackguard1 preemptStop trackingSeq syscallwhen speciallock ensureSwept memProfRate putObjBatch bytesMarked flushedWork raceprocctx pinnerCache *[480]uint8 *[216]uint8 *[68]uint64 totalAllocs mCacheInUse buckHashSys GCPauseTime GCTotalTime globalsScan publishInfo setEventErr slotsOffset errIntegral errOverflow SetBlocking writeUnlock prepareRead *cpu.option DataChecked *[15]uint64 ReturnIsPtr *abi.FuncID *maps.table deleteSmall directoryAt growToSmall growToTable globalDepth globalShift LatinOffset ShouldPrint matchResult LoadAcquire *[32]uint64 *[16]uintptr *func() bool writePadding AssignableTo FieldByIndex MethodByName OverflowUint *rand.Source *func(int64) *[][4]uint64 *os.fileStat Readdirnames lstatatNolog spliceToFile *[32]uintptr signalSecret isExtraInSig allpSnapshot mLockProfile pcvalueCache locksHeldLen *[]io.Closer ProcessState childIOFiles goroutineErr *sync.noCopy Unshareflags Microseconds Milliseconds *[]time.zone AppendBinary AppendFormat appendFormat *io.WriterTo *fs.FileInfo *fs.FileMode *fs.DirEntry CanInterface SetIterValue panicNotBool assignFloatN *[]*abi.Type makeFuncCtxt Undocumented *atomic.Bool RuntimeError deferBitsPtr *[]*abi.ITab linktimehash modulehashes setTraceable maybeRunChan unlockAndRun dequeueSudoG readyNextGen statusTraced atomicstatus paniconfault inMarkAssist runnableTime takeFromBack initHeapBits tryStealSpan heapScanWork deferpoolbuf goidcacheend gcAssistTime limiterEvent captureStack recordUnlock *runtime.mOS profileTimer snapshotAllp gcCyclesDone GCAssistTime *poll.String ReadMsgInet4 ReadMsgInet6 WriteToInet4 WriteToInet6 prepareWrite waitCanceled internal/cpu internal/abi *abi.NameOff *abi.TypeOff *abi.Imethod *abi.RegArgs directorySet putSlotSmall replaceTable ShouldEnable *bisect.cond StoreRelease *func(string) *func() int64 *func() error *[]embed.file *func() int32 *fmt.fmtFlags handleMethods *fmt.Stringer ConvertibleTo OverflowFloat *os.LinkError copyFileRange *os.noWriteTo *[]*runtime.p cgoCallersUse waitTraceSkip signalPending *<-chan error parentIOPipes *[]sync.eface internal/sync loadAndDelete LoadAndDelete *sync.RWMutex *syscall.Conn firstZoneUsed MarshalBinary UnmarshalJSON UnmarshalText *fs.PathError *reflect.Type *reflect.Kind *reflect.flag InterfaceData UnsafePointer InterfaceType IsDirectIface stepsForValue IncNonDefault *atomic.Int32 *atomic.Int64 *interface {} *runtime.Func filetabOffset changegstatus maybeRunAsync *runtime.coro acquireStatus preemptShrink parkingOnChan nocgocallback trackingStamp fipsIndicator syncSafePoint gcAssistBytes takeFromFront decPinCounter getPinnerBits incPinCounter newPinnerBits nextFreeIndex pinnerBitSize reportZombies setPinnerBits tryGetObjFast *[253]uintptr checknonempty mayNeedWorker *[512]uintptr scannedStacks *runtime.note *[65504]uint8 varintReserve oldthrowsplit hasCgoOnStack missingMethod inputOverflow internal/poll *poll.fdMutex *poll.SysFile ZeroReadIsEOF GetsockoptInt ReadFromInet4 ReadFromInet6 SetsockoptInt WriteMsgInet4 WriteMsgInet6 readWriteLock *[]cpu.option *abi.FuncType IntRegArgAddr *abi.FuncFlag getWithoutKey maxGrowthLeft *bisect.dedup *atomic.Uint8*[]*os.dirInfoCompareAndSwap5@*func() string*embed.openDirtruncateString*fmt.Formatter5@ 5@D5@5@05@ 5@X5@*func() uint64*rand.Source645@5@5@5@5@*os.unixDirent*os.noReadFrom*func(uintptr)5@(5@5@createdByStackCombinedOutputcompareAndSwap5@`5@*syscall.Errno*syscall.Iovec5@ 5@85@5@5@x5@h*time.Duration*time.Location5@@*io.ReaderFrom*reflect.ValuemustBeExported*reflect.rtype5@5@H*godebug.valuenonDefaultOnce*atomic.noCopy*atomic.Uint32*atomic.Uint64*runtime.stack*runtime._funcfuncnameOffset*runtime.gobuf*runtime.sudogsetUntraceable*runtime.hchan*runtime.timer*runtime.mutexlockRankStruct*runtime.waitq*runtime.xRegsasyncSafePointfipsOnlyBypass*runtime.mspanmanualFreeListinlineMarkBitstypePointersOfreusableNoscan*runtime.gListflushScanStatstryGetSpanFastputsSinceDrain*[1024]uintptr*runtime.wbBufrunSafePointFncleanupsQueuedtraceBufHeaderbecomeSpinning*runtime.FrametinyAllocCountlargeFreeCountsmallFreeCountheapStatsDeltatotalAllocatedgcCyclesForcedScavengeBgTime5@@5@@5@5@ 5@5@ 5@ 5@5@H5@5@5@5@5@5@5@5@ increfAndClose*poll.pollDescSetsockoptByte*go.shape.bool*strconv.Error*sync.hashFunc*[8]cpu.option*[]abi.ImethoddirectoryIndex*sys.NotInHeap*bisect.Writer*[]bisect.cond5@2*godebugs.Info*[0]*os.dirInfo*embed.openFile*func(int) bool*func() []error*fmt.GoStringer*func() uintptrFieldByNameFuncOverflowComplex*rand.rngSource*[128][4]uint64internal/bisectSetReadDeadlinesetReadDeadlinepidfdSendSignalg0StackAccurate*[]func() error*exec.ctxResultawaitGoroutines*sync.poolLocal*sync.poolChainlookupWithValue*sync.WaitGroup*syscall.Signal*syscall._Gid_t*syscall.Rlimit*syscall.Rusage*syscall.Stat_t*map[string]int*time.zoneTrans*chan time.TimelookupFirstZoneUnmarshalBinary*chan struct {}*reflect.MethodFieldByIndexErrstringNonStringexportedMethodsExportedMethods*reflect.abiSeq*atomic.align64*atomic.Uintptr*unsafe.Pointer*runtime._defer*runtime._panic*runtime.timersminWhenModifiedmaybeWakeLockedsetStatusTracedstatusWasTracedrunningCleanupsvalgrindStackIDinternalBlockedisMaybeRunnable*runtime.sigset*runtime.mcache*runtime.gcBitsmarkBitsForBasemoveInlineMarksprepareForSweep*runtime.pinner*runtime.lfnode*runtime.gcWork*runtime.objptrvgetrandomState*runtime.PinnerlargeAllocCountsmallAllocCountGCDedicatedTimedeferBitsOffsetsleepController*runtime.FramesreadWriteUnlock*sync.equalFunccheckInvariantspruneTombstonesgetWithKeySmall*bisect.Matcher*[]*bisect.dedup*map[uint64]boolinternal/godebugSetWriteDeadlinesetWriteDeadline*os.SyscallError*os.ProcessState*func() *poll.FD*[]syscall.IovecwriterDescriptor*func(*exec.Cmd)*map[string]bool*sync.dequeueNilcompareAndDeleteCompareAndDelete*syscall.Timeval*syscall.RawConninternal/fmtsort*reflect.ChanDirmustBeAssignable*reflect.abiStep*func() abi.Kind*reflect.abiDesc*godebug.setting*godebug.Setting*runtime.functabisIdleInSynctest*[]atomic.Uint32activeStackChans*runtime.special*runtime.offAddrfreeIndexForScanisUserArenaChunkdivideByElemSizemarkBitsForIndexrefillAllocCache*runtime.workbuf*runtime.funcvalgcMarkWorkerModenextGCMarkWorkerscannedStackSize*runtime.mPaddedfinalizersQueuedcleanupsExecutedcontrollerFailed*runtime.Cleanup*[]runtime.Frame*poll.splicePipesplicePipeFieldsSetsockoptIPMreqSetsockoptLingerinternal/strconv*context.ContextuncheckedPutSlot*unicode.Range16*unicode.Range32*func() time.Time*func(int64) bool*func() *abi.Type*[0]*bisect.dedup*[]*godebug.value*os.processHandle*sync.poolDequeuepoolLocalInternal*func(error) bool*syscall.Timespec*[]time.zoneTrans*<-chan time.Time*io.LimitedReader*fmtsort.KeyValuestackCallArgsSize*[]unsafe.Pointer*runtime.funcInfo*runtime.pcHeader*runtime.textsect*runtime.initTask*runtime.guintptr*runtime.muintptrupdateMinWhenHeapmaybeTraceablePtr*runtime.xRegPerG*[3]atomic.Uint32goroutineProfiled*runtime.puintptrallocBitsForIndexrefreshPinnerBitsuserArenaNextFree*[]*runtime.mspanaddReusableNoscanhasReusableNoscan*[]*runtime.sudogspansDenseScannedsparseObjsScanned*runtime.spanSPMC*[]runtime.objptr*runtime.xRegPerPmaxStackScanDeltagoroutinesCreated*runtime.traceBuf*runtime.dlogPerMprofileTimerValid*runtime.lockRankclearAllpSnapshot*runtime.cpuStatsScavengeTotalTimefloat64HistOrInit*runtime.stringer*runtime.pollDesctargetCPUFraction*<-chan struct {}*[2]runtime.FrameSetsockoptIPMreqn*reflectlite.Type*abi.UncommonType*abi.PCLnTabMagicinstallTableSplittombstonePossibleinternal/godebugs*func(string) bool*func(uint64) bool*rand.lockedSource*func(int64) int64*[0]*godebug.value**os.processHandleCompareAndSwapNoWBblockUntilWaitable*exec.wrappedError*sync.poolChainElt*reflect.StructTagmustBeExportedSlow*reflect.bitVector*reflect.layoutKey*[]reflect.abiStep*[]runtime.functab*runtime.ptabEntry*runtime.bitvector*runtime.timerWhen*runtime.xRegState*runtime.mSpanList*runtime.gclinkptr*runtime.spanClass*runtime.addrRangeremoveGreaterEqualuserArenaChunkFreeinitInlineMarkBitstypePointersOfTypewriteHeapBitsSmallnextReusableNoScan*runtime.pageCache*[]*runtime._defer*[5]unsafe.Pointer*runtime.notInHeapspansSparseScanned*runtime.spanQueue*runtime.cleanupFncleanupBlockHeader*runtime.throwType*runtime.mWaitList*runtime.traceTimegcBgMarkWorkerNodeScavengeAssistTimefinalizersExecuted*runtime.timeTimer*runtime.untracedGcontrollerCooldown*runtime._typePairSetsockoptIPv6Mreq*reflectlite.rtype*abi.InterfaceType*[9]unsafe.PointerputSlotSmallFast32putSlotSmallFast64*[]unicode.Range16*[]unicode.Range32*bisect.parseError*chacha8rand.State*func() fs.FileMode*func() (int, bool)*func(float64) bool*rand.runtimeSource*func(uintptr) bool*func() poll.String*func(func() error)*syscall.WaitStatus*syscall.Credential*time.fileSizeErrorappendFormatRFC3339appendStrictRFC3339*errors.errorString*[]fmtsort.KeyValue*reflect.layoutType*reflect.ValueError*runtime.plainError*runtime.moduledata*[]runtime.textsect*runtime.modulehashinitOpenCodedDefers*runtime.waitReason*runtime.sysmontickscannedBitsForIndex*[]runtime.guintptr*runtime.workbufhdr*runtime.cgoCallers*runtime.winlibcall*runtime.statDepSet*runtime.metricKind*runtime.traceFrame*runtime.metricData*poll.errNetClosingSetsockoptInet4AddrputSlotSmallFastPtrputSlotSmallFastStr*unicode.RangeTable*cgroup.stringError*func() interface {}*func() reflect.Type*func() reflect.KindwaitTraceBlockReasoncachedLookExtensions*chan exec.ctxResult*syscall.SysProcAttr*reflect.StructFieldmustBeAssignableSlow*reflect.abiStepKind*reflect.methodValue*runtime.errorString*[]runtime.ptabEntry*[]*runtime.initTaskisWaitingForSuspendG*[]runtime.timerWhen*func(*runtime.coro)*runtime.gTraceState*[136]*runtime.mspanheapBitsSmallForAddr*[]runtime.gclinkptr*[32]*runtime._defer*[128]*runtime.sudog*[128]*runtime.mspan*runtime.pTraceStatespanObjsDenseScanned*[256]runtime.objptr*[]runtime.cleanupFngcFractionalMarkTime*runtime.mTraceState*[]*runtime.traceBufneedPerThreadSyscall*runtime.boundsError*runtime.metricValue*func(string) func()printControllerResetinternal/reflectlite*abi.BoundsErrorCode*abi.IntArgRegBitmapinternal/runtime/sysinternal/chacha8rand*func(string, string)*[]*sync.poolChainElt*func(*os.file) error*exec.goroutineStatus*syscall.SysProcIDMap*map.group[string]int*reflect.makeFuncCtxt*[]runtime.modulehash*runtime.ancestorInfoupdateMinWhenModified*runtime.gsignalStackallocCountBeforeCache*runtime.mWeakPointer*runtime.limiterEventspanObjsSparseScanned*runtime.cleanupBlockgcMarkWorkerStartTime*runtime.mLockProfile*[2]*runtime.traceBuf*runtime.pcvalueCache*runtime.heldLockInfo*runtime.metricReaderaccumulateGCPauseTime*runtime.piController*func() go.shape.boolinternal/runtime/maps*maps.groupsReferenceCompareAndSwapRelease*atomic.UnsafePointer*[0]*sync.poolChainElt*func(complex128) bool*map.group[uint64]bool*os.fileWithoutWriteTohandleTransientAcquirehandleTransientRelease*<-chan exec.ctxResult*chan<- exec.ctxResult*map.group[string]bool*go.shape.interface {}*godebug.runtimeStderr*runtime.mSpanStateBoxisFreeOrNewlyAllocatedisUnusedUserArenaChunkspecialFindSplicePointwriteUserArenaHeapBits*runtime.stackfreelist*[256]runtime.guintptr*func(*runtime.pinner)*[20]runtime.cleanupFn*runtime.PanicNilError*runtime.statAggregate*[]*runtime.moduledata*poll.splicePipeFields*func(fmt.State, int32)*func() reflect.ChanDir*func(int) reflect.Type*iter.Seq[reflect.Type]*os.fileWithoutReadFrominternal/runtime/atomic*[]runtime.heldLockInfo*sync.poolLocalInternal*[]syscall.SysProcIDMap*[]runtime.ancestorInfo*runtime.lockRankStruct*runtime.synctestBubbletraceSchedResourceStatetypePointersOfUnchecked*[136]runtime.gclinkptr*runtime.listNodeManual*runtime.traceBufHeader*[][2]*runtime.traceBuf*runtime.heapStatsDelta*runtime.scavengerState*map[uint32][]*abi.Typeinternal/runtime/cgroup*func(reflect.Type) bool*func(*os.processHandle)setUserArenaChunkToFault*[]runtime.stackfreelist*runtime.persistentAlloc*[2][2]*runtime.traceBuf*runtime.pcvalueCacheEnt*func() <-chan struct {}*func() reflectlite.Type*func(int) reflect.Method*iter.Seq[reflect.Method]*func() *abi.UncommonType*[10]runtime.heldLockInfo*[4]runtime.stackfreelist*runtime.gcMarkWorkerMode*runtime.traceBlockReason*[]*runtime.PanicNilError*runtime.gcStatsAggregate*map[int32]unsafe.Pointer*map[unsafe.Pointer]int32*func() (time.Time, bool)*maps.unhashableTypeErrorgetWithoutKeySmallFastStr*func(reflect.Method) bool*func(func(uintptr)) error*atomic.Pointer[runtime.m]*chan exec.goroutineStatusGidMappingsEnableSetgroups*map[abi.TypeOff]*abi.Type*runtime.maybeTraceablePtr*[]runtime.pcvalueCacheEnt*[0]*runtime.PanicNilError*runtime.sysStatsAggregate*runtime.cpuStatsAggregate*runtime.sliceInterfacePtr*runtime.debugCallWrapArgs*atomic.Pointer[os.dirInfo]*func([]uint8) (int, error)*runtime.maybeTraceableChan*runtime.gcBgMarkWorkerNode*runtime.sizeClassScanStats*runtime.cleanupBlockHeader*[8]runtime.pcvalueCacheEnt*runtime.errorAddressString*runtime.heapStatsAggregate*runtime.stringInterfacePtr*runtime.uint16InterfacePtr*runtime.uint32InterfacePtr*runtime.uint64InterfacePtr*runtime.TypeAssertionError*poll.DeadlineExceededError*func() (fs.FileInfo, error)*runtime.finalStatsAggregate*runtime.schedStatsAggregate*runtime.savedOpenDeferState*func(poll.splicePipeFields)*func(reflectlite.Type) bool*interface { Is(error) bool }*interface { Unwrap() error }*[]runtime.sizeClassScanStats*[][8]runtime.pcvalueCacheEnt*map.group[uint32][]*abi.Type*func(int) reflect.StructField*iter.Seq[reflect.StructField]*func() iter.Seq[reflect.Type]*map[interface {}]interface {}*[2][8]runtime.pcvalueCacheEnt*runtime.synctestDeadlockError*map[string]runtime.metricData*func(reflect.StructField) bool*func(io.Reader) (int64, error)*func(io.Writer) (int64, error)*func(func(uintptr) bool) error*atomic.Pointer[runtime._defer]*interface { Unwrap() []error }*[68]runtime.sizeClassScanStats*runtime.metricFloat64Histogram*func(uintptr) (uintptr, int64)*map.group[int32]unsafe.Pointer*map.group[unsafe.Pointer]int32*map[string]*unicode.RangeTable *func([]int) reflect.StructField *func() iter.Seq[reflect.Method] *func() (syscall.RawConn, error) *struct { key string; elem int } *func(interface {}) interface {} *map.group[abi.TypeOff]*abi.Type *runtime.traceSchedResourceState *map[runtime._typePair]struct {}!*struct { key uint64; elem bool }!*struct { in string; out string }!*struct { key string; elem bool }!*runtime.gcBgMarkWorkerNodePadded"*atomic.Pointer[sync.poolChainElt]"*[]struct { key string; elem int }"*struct { F uintptr; X0 chan int }#*[]struct { key uint64; elem bool }#*[]struct { key string; elem bool }#*[8]struct { key string; elem int }#*struct { F uintptr; X0 *abi.Type }#*func(interface {}, uintptr, int64)$*func(string) (reflect.Method, bool)$*[8]struct { key uint64; elem bool }$*[8]struct { key string; elem bool }$*map.group[interface {}]interface {}$*runtime.goroutineProfileStateHolder$*map.group[string]runtime.metricData%*func() iter.Seq[reflect.StructField]%*struct { F uintptr; X0 *[5]uintptr }%*sync.node[interface {},interface {}]%*map.group[string]*unicode.RangeTable&*atomic.Pointer[internal/bisect.dedup]&*go.shape.interface { Error() string }&*func(*runtime.g, unsafe.Pointer) bool&*sync.entry[interface {},interface {}]&*func(interface {}, interface {}) bool&*map.group[runtime._typePair]struct {}'*atomic.Pointer[internal/godebug.value]'*struct { F uintptr; R *atomic.Uint64 }'*func(*runtime.funcval, unsafe.Pointer)(*[]*sync.node[interface {},interface {}](*struct { key uint32; elem []*abi.Type }(*struct { F uintptr; X0 chan struct {} })*struct { F uintptr; X0 *sync.WaitGroup })*func(string) (reflect.StructField, bool))*sync.indirect[interface {},interface {}])*[]*sync.entry[interface {},interface {}])*[0]*sync.node[interface {},interface {}])*struct { F uintptr; R *godebug.Setting }**[0]*sync.entry[interface {},interface {}]**func(unsafe.Pointer, unsafe.Pointer) bool**struct { key int32; elem unsafe.Pointer }**[]struct { key uint32; elem []*abi.Type }**struct { key unsafe.Pointer; elem int32 }+*struct { key abi.TypeOff; elem *abi.Type }+*[8]struct { key uint32; elem []*abi.Type },*sync.HashTrieMap[interface {},interface {}],*[]*sync.indirect[interface {},interface {}],*func(func(interface {}, interface {}) bool),*struct { len int; buf [128]*runtime.mspan },*[]struct { key int32; elem unsafe.Pointer },*[]struct { key unsafe.Pointer; elem int32 }-*func() go.shape.interface { Error() string }-*[0]*sync.indirect[interface {},interface {}]-*func(fmtsort.KeyValue, fmtsort.KeyValue) int-*[]struct { key abi.TypeOff; elem *abi.Type }-*[8]struct { key int32; elem unsafe.Pointer }-*[8]struct { key unsafe.Pointer; elem int32 }-*struct { F uintptr; R runtime.metricReader }.*[8]struct { key abi.TypeOff; elem *abi.Type }/*struct { key interface {}; elem interface {} }/*go.shape.struct { internal/sync.isEntry bool }/*struct { key string; elem runtime.metricData }0*struct { F uintptr; X0 *os.File; X1 *exec.Cmd }0*struct { F uintptr; X0 io.Writer; X1 *os.File }0*struct { key string; elem *unicode.RangeTable }1*struct { F uintptr; X0 func(string); X1 string }1*[]struct { key interface {}; elem interface {} }1*struct { key runtime._typePair; elem struct {} }1*[]struct { key string; elem runtime.metricData }2*[8]struct { key interface {}; elem interface {} }2*[]*go.shape.struct { internal/sync.isEntry bool }2*[8]struct { key string; elem runtime.metricData }2*[]struct { key string; elem *unicode.RangeTable }3*[0]*go.shape.struct { internal/sync.isEntry bool }3*func(*runtime.statAggregate, *runtime.metricValue)3*[]struct { key runtime._typePair; elem struct {} }3*[8]struct { key string; elem *unicode.RangeTable }4*func(func(string) bool) (reflect.StructField, bool)4*[8]struct { key runtime._typePair; elem struct {} }gdFe(ЮYY( Mo(ЮYY;Nq(ЮYYA MQ(ЮYYDIM63D(ЮYY< MWa(ЮYY6 M/(ЮYYPBM;(ЮYY)MF(ЮYYJ@N賂(ЮYYbN0vv4(ЮYY2 N(ЮYY2J N'(ЮYY]g N\(ЮYY/bNNOf(ЮYYJCMk (ЮYYJNW! (ЮYYJN(ЮYYJN E(ЮYY^@Or(ЮYY[~N?ʶ (ЮYY=O M}<(ЮYY=M0(ЮYYZ+NN7f(ЮYYJ~Np(ЮYY+Mu(ЮYY+ Mhu(ЮYYDM(ЮYY]8 M(ЮYY+M=z(ЮYYMVt(ЮYYk8N(ЮYY8 M(ЮYYS@Nǡ(ЮYYu=`N6fc(ЮYYONn(ЮYY_CM^/(ЮYYWN*"(ЮYYU\QNHM(ЮYY]b@N(ЮYY)_QNr;(ЮYYON%@(ЮYYpDN־<(ЮYYK@MjNP(ЮYY` M(ЮYYDM|)(ЮYYw @DMJ (ЮYYhDM <(ЮYYpDMcw(ЮYYEM=!(ЮYYx@EMu(ЮYYEM++(ЮYYEMx(ЮYYFMgE(ЮYY@FM#(ЮYY~ FMip(ЮYYFMM.(ЮYY,GMr.(ЮYY3@GM8(ЮYYGM]r(ЮYYGM)(ЮYY HMS(ЮYYK@HM;p(ЮYY>MH(ЮYYKN2(ЮYYD@N$m(ЮYYPSNf(ЮYYONWc(ЮYYcSUN/Q(ЮYYWN(ЮYY\@VNI(ЮYYvS NS(ЮYYDNx~(ЮYYbXN* (ЮYY@EN?8(ЮYYg`M 2(ЮYYE N&o1(ЮYYe>NC(ЮYYSM`iU(ЮYYpE`5OtlЮYغY#XN(ЮYYbNA(ЮYYLM1(ЮYY\NeWЮYغY'P@NH(ЮYYeNս(ЮYYhN((ЮYYY@IMX*\I(ЮYYf]Ms R(ЮYYc%N% Ҡ(ЮYYpiNu(ЮYY>UM(ЮYYc:Nx (ЮYYc%Ncy(ЮYYF@NT(ЮYYs@&N :s(ЮYYmq'Ntn(ЮYY]IM@v0(ЮYYll\M(ЮYYmIME(ЮYYU Mu(ЮYY]N%$(ЮYYmJM (ЮYYm@JM(ЮYYnJMd(ЮYY+ZNY(ЮYYl (N8#Q(ЮYYncN A1(ЮYYSZ(N\M`(ЮYY]`)N(ЮYYfdNDŽ(ЮYYkQ*N(ЮYY:JM^ (ЮYYQM (ЮYYpHM`Ğ(ЮYYM`Mml(ЮYY5VxN(ЮYY5N&[(ЮYY{aKMv<7(ЮYY/@KMq(ЮYY';KM0?(ЮYY5;KM=1 (ЮYYC;+Nvm(ЮYY(@Nm(ЮYY[VLM$r%(ЮYYA@LM0Έ(ЮYY5LM;ЮYغY"MlЮYغYHM?M)(ЮYYQgNj>(ЮYYQ@hNO(ЮYY#^iN*@(ЮYYH M(ЮYY;iNPs(ЮYYHN@0NYWNYu_Y8Ne~Y DM? Y@EM'Y%EMWYEMzY%FMfY@FMAYFMYz,FMkmY,GMY%DM 'Y*S@HM]Y M?\XYWN6J0Y\UNDrY!9#M`DPYU_N肼Ytb@VNgFYk_MWY|MonUMYgXNl!(ЮYYg`8M_}Y_`EN~%YP`.NRbDYZT OPY`MsKY"iN#wYYMEY']MYTMk3YIoNYT Mrx(ЮYY0FxMՠY`@_N:IOY`aNeKgYWhzMߩ>YkNRYho`{M-Y{j M=Y~f MlOY,{Mә/Y0MuhY~MVYyM@YZ{M/YYQ@Nޚn(ЮYYn@XM^(ЮYYPHXMgP(ЮYY(@NR!LY@N(n]YH+N=+|YZgNYZ@hN#ǻY M){LYHiN7*interface { Network() poll.String; PollFD() *poll.FD }7*sync.node[go.shape.interface {},go.shape.interface {}]8*sync.entry[go.shape.interface {},go.shape.interface {}];*[]*sync.entry[go.shape.interface {},go.shape.interface {}];*sync.indirect[go.shape.interface {},go.shape.interface {}];*go.shape.struct { Key reflect.Value; Value reflect.Value }<*[0]*sync.entry[go.shape.interface {},go.shape.interface {}]=*struct { F uintptr; X0 *exec.Cmd; X1 chan<- exec.ctxResult }=*struct { F uintptr; X0 func(func() error); X1 func() error }=*struct { head *runtime.spanSPMC; tail atomic.UnsafePointer }D YغYJޘЮYغY_E2YY 4%hYغYw `yvjhYغYhYغYpל& YغY YغYx` YغYC")fЮYغY:p ЮYغY 4ЮYغY`<ЮYغY~ \ ЮYغY>ЯYغY,  wدYغY3`}r YغYҦlYغYH`OhYغY Fզ/ЮYYK`kЮYغYEjA;ݜ} YغYYAwhYغY`jAj) ЮYغYYAK2ЮYغY] A><YYmAۂ YغYm`A3ˉ YغYmA? ЮYغYnAfYY:6@jhYغY{a`;~''`hYغY/;@YغY';;e/YغY5; ;D* YغY[V;ZZhYغYA ;XqhYغY5`;S"Y;DM@i"Y6HMs"Y R`)O"Y/[NUc"YADM_fi"Y;EMXt)"YM^Mdy"Y; MB*"Y3I`6M`"Y;@EM)!"Y0@FM0M"YfMAJE"Yc^`Nm>"YuMܷ"Yo@Mn "Yy^`M"Y4rM""YUIFML"Y3RNX"Yi M`6}"Y6EM"Y@BFMk"YBFM\"Yh MeW)"Y[JM"YN -O2$k"Y{ M*ЮYY< M:0*ЮYYd@N*ЮYY K M!"YOMT"Y_ MJPZ"YfMpL*ЮYYU MߖV*ЮYY/HMi#"YndN9 hYغYPH  T"YcXM %"YiWMQ="YixN?*atomic.Pointer[internal/sync.entry[interface {},interface {}]]?*atomic.Pointer[go.shape.struct { internal/sync.isEntry bool }]@*[]atomic.Pointer[internal/sync.node[interface {},interface {}]]@*struct { f func(); once sync.Once; valid bool; p interface {} }A*[]atomic.Pointer[go.shape.struct { internal/sync.isEntry bool }]B*struct { F uintptr; X0 chan exec.goroutineStatus; X1 chan error }B*atomic.Pointer[internal/sync.indirect[interface {},interface {}]]B*[16]atomic.Pointer[internal/sync.node[interface {},interface {}]]C*[16]atomic.Pointer[go.shape.struct { internal/sync.isEntry bool }]oَY0vDMO/ЮYYN MSpBiYll`DMA خYغYI M&M% LغY6FM`5MI YغY(DM3M*"YWnN MT~"Y"I@FMHM`-"YD[@FMHM@x7|"YVDMHMU"YaDMDMDi LغY2)DM3MD8"Yf M@EMarsY خYغYnd@3N'Mx"Yh`NHML"Yo@FMNuQ"Yr4MNY"YpNHM"Yf@FM`NTn4"Yi@FMNSA"Y8kNHM8C"Yd@GMHM-F+"YY[GMHM^"Y REMHM A!"YVFMHM`q{ ЮYغY1FM`5M.,-- YغY1FM`5M  LغY 1FM`5Mn pLغY:1EM`4M_iU "YVEMEMɀ` خYغYFRM )MWge خYغYV` M`)M  LغY)FM4M LغYIgM)MEغYtM)M`g"YbM M;O#"YVr M MN"Y[FMHMKP<"YTk@RM M "YpiM M( LغY1 FM`5M0ņF LغY1FM`5M LغYS7FM`5M * LغYj%N ,M .YY*DM5MYuM -M`Fd @LغY*DM3M`b خYغY>yN-Mĵ]V خYغYxM-M/HLYQpN .M, خYغY{M`.MY~M.M^ خYغY{ /M/MP خYغY0M0M𚥓LYrN 1Mz"YR MHMD LغY$EM`4MULxYdt M1M@$? LغY+DM3M@8x ЮYغYo@FM4MHIp `LغY3FM`5M d6="YrMMz hYغY%DM3MC})xY|M 8M q1] LغYS`.N 9M]= YغY"-FM4M@B  LغY_ O`9M@r  LغY hM9M@0 LغY*jN9MJ LضY`M :M 0P PLغYfM`:Ml LY1`M:MPt LغYG` O`9M((Ҥ LY'Y@HM 6M @LغYLqN:MD4?Z PLغY?FM`5M^ PLغY` M ;M ({ pLغY0F`FM`5M~6M LغY?FM`5M U."YwM@HMQY6f@_N;MV LغY?DM3Mަ YغYqcaN;M en LغYVizM Mx.(Ys|M`>M҈L`YV@N>M<"Yj`)OHṂ"YnxNHMaxLYHN?Mxj LغY5FM4MHH.X `LYZ@HM 6M fYe M@M2XE LغY^0DM3M27 LغY6FM4M `>YY[$@ ` `n' ЮYغYaO E f $ "1ЮYغY=E e " nL ЮYغYSRA#PMd`"YtMFMEM5/"YqFMFMEMQ*atomic.Pointer[internal/sync.entry[go.shape.interface {},go.shape.interface {}]]R*struct { f func() bool; once sync.Once; valid bool; p interface {}; result bool }T*struct { f func() error; once sync.Once; valid bool; p interface {}; result error }}KM)ЮYYT1|NA`)ЮYYNA  (7,)ЮYYg<MA V V (}J)ЮYYB MA` `R `R )ЮYYpC N)ЮYY[M$@ @ 3)ЮYY+\M$@Y@YOXQ)ЮYYR`N )ЮYYaOME f f 7X)ЮYY^NE+汝7)ЮYY=`ME e e ~4)ЮYY1KNE+Ds)ЮYYWNE^0)ЮYYONE`ڬ)ЮYYj\ NE$`6 `6 XJ)ЮYY^eMAN@  aS)ЮYYWNA;)ЮYYX`ENAHdЮYغYL`EM 4MAC2_)ЮYYKXMA.)ЮYYL NA `rr= ЮYغY;YMA4;U)ЮYYT#NA`[LغYQ] FM`5M AĩE)ЮYYdU@MA @A@Ary)ЮYYph`NA 0)ЮYY4l`NA1`߳0!)ЮYYjNA1` )ЮYYunNA1`Dĥ)ЮYYn@NA1`)ЮYYff`NAXs.)ЮYY#a@bNAU[M)ЮYYc@MA1g()ЮYYFpFNA$b)ЮYYGQFNA`fUh)ЮYYMNA'TTo)ЮYY`HMQ$xx`>)ЮYY(M; ?\YغYa>DM3M;)ЮYY)d,Nda W)ЮYY[ MI$<_o)ЮYY8^`Mh$QSYY o0MrYY+qM ĔYY*oM Z*struct { F uintptr; X0 *struct { f func(); once sync.Once; valid bool; p interface {} } }cخYغY7 ,MSIӋЮYغYvJ - ` ! ` ñYYoW 2EVخYغY^eMANǤPخYغYD2@Mj0RخYغYKMj0YY?_3A$@B`a9`{wYY\ 4A$A b9`qYzخYغYgMAf}hYغY_X6A'g = ЮYغYM 8At ]خYغYf]MAm^ خYغY>U@MAyA'Yc AFM1)% خYغY:n ]M6@rϦ'YpH`<(@HMFMFMtL'YM<(@HM@HMHMC,خYغY" MaG^خYغYD AM+gخYغYKM+g!YY0M/ YGYYFe LM d*struct { f func() go.shape.bool; once sync.Once; valid bool; p interface {}; result go.shape.bool }3,1YYAOLMO `9]YYDIOLMOn93uYY< OLMO \kL)ЮYYI<{NA$ ,)ЮYY2N$    57)ЮYYGWsN$ R R R R )ЮYY7`MS``})ЮYY+@MNSbb@b@b&)ЮYYvJM ` ! ! ?])ЮYYR@ Nzk)ЮYY+O N[$YYY=`LM{1`6w)ЮYY(3N* ǵmYY+ LM@%YY+`LMYYDLM` y7YY]8LM }`gYY+ LMW)ЮYYoW MEg\)ЮYYDMj0``5YY`M$q.)ЮYY?_MA$@B@B9`[(9)ЮYY\MA$AA9` ЮYغYD`NA%])ЮYYS MAMK)ЮYY ENAfGEI ЮYغYL NA^ !)ЮYY_XMA'9s)ЮYYve MAN4)ЮYYb@8NAz `Nz)ЮYYM MAt j>0 ЮYغYP]NAB.`?`WI)ЮYYv-@>OA` O O MM))ЮYYTMAhh\)ЮYYNfMA$VV9`J|)ЮYY aNA$CC9`8)ЮYYm NA1` `")ЮYYUNA/$$cYYYUALMA t)ЮYYn@NA$]]9`sr)ЮYYc`NAY>> `C)ЮYYT@M6@ `)ЮYYHV`N;uK*񤝍)ЮYYa`M;)ЮYYQ;N;`@)ЮYYk`;Nd$``9`sbYYHLMI@x)ЮYY5AjNI  (``_^d)ЮYYD M+g``?)ЮYY8M+g7YY{v LM $/)ЮYYv M<X ?{2YY6`2LM2# eQpخYغYg<MA V  BخYغYB@MA` `R -.YY)ALMA ` /"Y/NFMHM MY"YNDMHM MPYv|"YpMM MpY =1"YJDM@FMMPYL7"YkKMN MYi"Yj@EM@HM MYv"Ys(N M MYo}"YfpDM`)N MPY ]W"YhEM`3M MY RCq"Yj@HM@EM MYu+V"YqDM%MMPY")ЮYYIHN2#@ @ e ( KhLغYn[`w2LM2#(EL NMzYYPB2LM2#(e( V)ЮYYwN`NA$  ALMA(L M ЮYغY\9OAR c\b0q_)ЮYYSMA>)ЮYY`ENA5u9>NYYlALMA(L`N5)ЮYYku@NAcA""mЮYغYS`ALMA(LM ȓLغY_@ALMA(LN(Zi)ЮYY,COA$ cLtL`p`pBC]hYغYve 7ALMA(L-NLغY;YALMA(LM')ЮYYbMA   6aLغYb WALMA(LlNɨW ЮYغYT NA` _ _JЮYغYPALMA(uLFM(ЮYغY?`ALMA(LFMVǿ`LغYNf :ALMA(L |Mi)ЮYY@MMAf p p ` r r `()ЮYYom@NA$BB9`8ЮYغY{]~FM4MA. mM)ЮYYPl MA/c1`X? LغYPl[ALMA(LNBm)ЮYY]*N6@$ |$f^-)ЮYY:nM6@$ |$0 /ЮYYT@=6LM6@(L+MЮYغY0H96LM6@(ίLFMupLغYHLMa(LMzYY[ LMI(LDMchYغY8A+LM+g(L-N5y/ЮYY q +LM+g(L/NW;/ЮYYpk+LM+g(L/NU hYغYvB߼LM<(ڗLHML y)ЮYYxN<_ X NhYغYQ`߼LM<(ڗLHM5hYغY2}߼LM (ڗLHM"jYY( OLMO0"+@&Ӧ ЮYغY`C@y$ @ |$,V(YY81LM1 0  YYQ pLMp0r"m 9)OYYypMLFMLRNCYzLMLKMLN=YrLpMLFMӈLsM 0LغYzALML@FMELvM{ YY7ALpM%L MIL/N8'YyLML@EML@HM. YqLpMLFMӈL`~MZY~LML(NL M ' YwLpMLFMӈL~M bYc}LMLDML`)N]q0YuLpMLFMӈL M $ZYwLMLEML`3M @YoLpMLFMӈLMYyLML@HML@EM3()ЮYYn[ M2#` ` e ( qxv/ЮYYAL`MA(LM\k)ЮYYeJLNSrrm`tt}` u uƗ)ЮYY`CM$    |$lR')ЮYY8`Nj0cA]]}[n)ЮYYKNA\[[`&`X`Xk&YY VVCr)ЮYYX@\NAs ``_ l @@"T)ЮYYE`NA_ HG鹜s ЮYغY,c #NA_ >q)ЮYY,WOAF`wU`@@ @:/ЮYY@M ZALMA((LM `.i)ЮYYP&NAF`wU` @:?Sc)ЮYY{] MA._ k  ЮYغYUOAg@J5` )W5)])ЮYYDA-N+g)ЮYYllNj0cAr)ЮYYsmNj0cA@})ЮYYSv@nNj0cA)ЮYYCwoNj0cAo@)ЮYYoNj0cA)ЮYYpNj0cAc)ЮYY @qNj0cA筃YYILN@ LNLEM\ݳ`LYV2L N2#@UL NLM hPLYwN LNA@ՖLDML My%0XLغYlRMAL`NA@LFMLN xX^LY2 +N@ɃLDML M/LYJ LN@YL M0N @|L`POL`PO*struct { F uintptr; X0 *struct { f func() go.shape.bool; once sync.Once; valid bool; p interface {}; result go.shape.bool }; X1 *[4]uintptr }*struct { f func() go.shape.interface { Error() string }; once sync.Once; valid bool; p interface {}; result go.shape.interface { Error() string } }0)ЮYYI N   |T)ЮYYB@}NA    wg)ЮYY[WKNS=r۳j)ЮYYR NS=@k@k l lr`j`j)ЮYY*NS@dd cc`e`eff`g`gz)ЮYYy8N1 @ @ !% ` `  B)ЮYYk`NANK9`E`T)ЮYYgNAG>qqv&` t t&`ssL u ufT;k)ЮYYlMANK9`E`i*)ЮYYrNAt>Y9@L@0Ltɼ/ЮYYb7AL8NA(L?Nz `NNJ)ЮYY]`NAt>Y9@L@0LH)ЮYY@F^NA`_ ek ``%`%_bJ)ЮYYE@@eN6@ H  " <#s)ЮYYr2@+N<`8```|"`^^/``ITq/ЮYYk?L;Nd(ǁLN$9`ΛC)ЮYY= -N+gcA')ЮYY >@kN+gcAS)ЮYYWd/N+gcA@ W@ H#"b7)ЮYY[ Na'`  ` wY*~>NLFMILLMMLDMWw)ЮYY q M+gcAWH#B)ЮYYpkM+gcAWH#JEY@NLFMIL`,MML(Mk - Y}PANLFMILOML`N兟YANLFMILTMML@TM r@Y}BNLFMILMMLOMY0CNLFMIL`NMLTMYCNLFMIL@UMMLNM;YаpDNLFMIL`?MML(MVnQhYغY\A A ,O3 -`_YYXALENA@MA cc%yLغYcSALUNAXLFMLFMLFM((@cLY\`ALVNAXάLDM/LDMijL M qNdT)ЮYY=SNA X % j)ЮYY\DNA AA,O3 -_(Yb ALXNAXL`5MLFMLFM 5\)ЮYY_ MAt>Y9@ `L@0L=LغY7XAL`ZNAXLML OL O1S ЮYغY7XZNA `-@Z4)ЮYYsXNA. X8 9>LغYX {AL\NAX!LFMLFMALFM aLغYl AL`]NAXML@!NŀLML M$(LغYP8AL ^NAXLM6L!NMLxM61LغY@FAL^NAXYLFMLFMEL yMYwY`AL_NAX]LyMuLMhL@HM%)ЮYYZcNAG:`U: @@ `'`e=HLغY+UAL aNAXLMpLNL@zM  ЮYغY+U`NA'. ! ?@m]LxY#aALbNAXLIM`LFML@HMp`%&YZKAL`cNAX2L@HM LHML@N"LغYnAL dNAXLFMLFMdLFMZ LغYf`6LdN6@XuL@FMzL@FML@FMk8YغYE@ 6LeN6@XLFM)LEM0LEM 8(J|(Y@`fN;XL`NLEM0LEM2P@?6 YZ l gN;XL`N!LN0*L?M8eԙ0LغYQ gNXALEM=LEMxLEM ːLغYQ`hNXALEM=LEMxLEM8 )Y#^`iNXL @ML`@MNL@FM0@u5LغY; L jNIX5LFMLFMLHMr0Y5A@LjNIXPL@hMEL NL M[LغY >+LkN+gXL MLMLEMLغYD+L`lN+gXL MLMLFMv'LYljL mNj0XL]MLML@HM-' LYs`jLmNj0XL`MLML@HMф'xLYSvjLnNj0XL gMLML@HMjH~'LYCwjL`oNj0XLgMLML@HM$'@LY@jL pNj0XLmMLML@HMsA'PLYjLpNj0XLmMLML@HMK'(LY jLqNj0XLnMLML@HM 'xLYjL`rNj0XL`oMLML@HM}'LY`jL sNj0XLoMLML@HM O2LYGW+LsN@pLDMYL M$ R @ R  (([" c YD`SLtN L`'ML@MNLHMLMA`Z)ЮYY=Nj0cA$)ЮYYDNj0cA )ЮYYDTNj0cAk&C)ЮYY9PNA4#)e &'B 9U,)ЮYYhNA5Q`'' `"" `@$@$ ` ( ( `%`%`$$}YY5VeL yN eah6)5@);! @la)ЮYYDlN+gcAu6;cO)ЮYYK/N+gcAu6@;@0 8pLY) W2L`{N2#pL MLMWLEM `L@DM(@@7T0LPYI<* |NApYLDMLDMLDM L M0 V'@LYT1 AL|NApEL NEL 'ML@FML@FM88pLHL`YBAL}NApLDMLDMǁLN ńLN((MAY[`~Np?LEMDLEML 4MLHM 9$pLغYJӅL NpمLEMLDMLHM LHM JU( ЮYغY=@EsO`^`0D`W`53`"  ;]LY]bELNEpuLFMLMLFMfL`M((WJ(L YO AL`NANpLoNL@MNnLTNńL`&M (uI*LغYb AL NApL@N,LFM9LFMLFM nLغY\ALNApLEM LEMLEM`LEM5!LغY'PALNApLMYLMLFMLDM b8LغY5m AL`NApLML@!NwL`M&LEM =5LغY>h`AL NApLaN L@IMaL@FML@FM LغYpi`ALNAp(LFMqLEML@EM LFM_WpLYomZALNA@TLDM#LFM$Ba9` <LغYj@AL`NApLFMLFM=LFM#LFM Z=LغYunAL NApLFMLFM`LFM#LFM LغY] ALNApLFMLFMpLFMLFM( ђuLеYn<ALNApJLNҡLNܡLNLDM)\iXYM@AL`NApyL`5MLFML>M L@M8 2[LY5 N ;pɃLDML MLHMLHMJ0LYQ; ?N;pL`rM LMHL MٵL`M Y8LY(N;pL NՃLN#LEML@eM000J8LYv߼L`N<pOL MLoNLMLM 00N@pLY ߼L N<pOL MLrNL@ML@M *struct { F uintptr; X0 *struct { f func() go.shape.interface { Error() string }; once sync.Once; valid bool; p interface {}; result go.shape.interface { Error() string } }; X1 *[4]uintptr }D)ЮYY =`NS` q q{ ```p`p8`qq2pp08)ЮYY=NEsO`^`0D`W`53`)ЮYYK NE  ]  82,  `c%  3=$3- ЮYغYLNAmT-T XL``.``w,)ЮYY N@NIR0;[6" "h6 ``88ۿYSLN LNML@MNLHMLML M(88Y2Ya`SLN L@SML@MNLHMLML M($/)ЮYYvN<O0CX < TJU0(W YcSLN LMML@MNLHMLMLHM(0(s"" Y(`SLN LXML@MNLHMLMLXM(w YغY[@ $+@ *+$@wYغYsXAL`NA@!LN9LN. X8 b)ЮYYw0@GN   @  ` `  J@ pLY`dOL NOELM2LNcL@FML@FM ،L`M(8 k[(LHY7@ALNALDMLEMLNL`)O LN8@0** `LpY1YALNAցL@FMLN L`N LM(LFN0:XLغY =`SLNS L N[LEMfLEM LNLNl)ЮYY[ N $+@ *+$@H ^4YK ELNE[L 3M>L4MJLFM0bL@FM8iL@FM@ bYe> AL`NAŀLM L@WMɀLMLEṂLEM(kLغYm`AL@NALFMsLFMOLFMLFMLFM  J`LYcY8AL NA%LEMILEMYL`xM L@FML MH^PLغYc:ALNAqL@EMQLML-N/LFM2LEM+$)ЮYY(N; 5/+/v(LغYHV >LN;!LKMLEMLEMׇLEMLEM ((5JY NLNILHM}LHMLHM/L@ML@nN 0dȕLغY[LNaEL@MwLgM>LEM &LEM$2LEM(F!0LYxa߼L`N<OL M[L`NEL@+NLML@nMeLGM qLGM(~LHM0'LHM1q)ЮYYZcNA s``V>`Y98 5 @`g9- GKLغY;`OL N O&LHMLHMcLHMLHMjLHMqLHMLHMxLHMЌLHM:D)ЮYYNKNA @ @ ` ` J@@ * @@*s$)ЮYY0E@NA s``V>`@}@}Y98   @~@~5 @`g9@@-@y@y8 LY" 6LN 6@ˇL@eN7L@FMLM9L M >LEM(LEM,"LHM0cLHM1LHM20/`LxY( |L N dLFMwLFMPL@HMXL@FM4LDM ALDM!LDM"LHM#LFM(mf)ЮYYtzN< f `O cA<2m a ``)iYOLN OEL[MhLML`PO(OLN@ڢLHM>LHMLHMLM@ԟLMHޟLMP2LMX4YhAL@NA`sLN/LML`.NL/N L/N(sLN0ULHM8LHM9LHM:LEM<LFM@L@NH!LEMLFM%L@N)LEMLM /vY^OLDM6LMLHMLHMFLHMOLHMLHML@FM BLHM(DžL@FM0LM8NLFM@LFMHͲL1MPڲL1MhLHML`5MLHML@FMȉL`Mj)ЮYY{ZOea% @X%6<@)5@uK)@vBK)Q==|@;@T@X@X@@'#@ @! XXb,@dK'9lxh Y$$`[L OP+LDM1L5MсL5M(́LDM@CL MPLM`xLMpL*M$LMLN÷LNLML MLNM/LNѷL,ML,M:L,M߷LSM(ELSM0L3M81L MPL M`>L@EMui ЮYغYEOA(!T!-@>zoPz4``M ?j `_?@y 9`X`EeeLPL(?7?t F?P4T`@xU?``]d?i`)eEX g`GTXerI0/ЮYY{ZOea% (LN@X%6<@)5@WWuK)@vBK)Q==|@;@T`V`V@@'#@ @! UUb,@dK'9l67)ЮYYd"OA+`W `W ]W W `X `X ` X X )7n1ISN {1`Y Y @Z Z 0)X<a77 q1IeNE72>)ЮYYg &OA+ S S ]S S  T T )7n1ISN {1`T T @V V 0 V V )X<a77 q1IeNE72LжYEALOALMYL O_L O/LZN1LFMLFM LM( >  qB B @ @ 1IeNE7C C   2? ? )ЮYY@D ME.'@6 /@ 3<)+< 5 a a a a )@60 fI ) Qw@)|;_ _ @ 6 *`` `` @@'#@` `  @A@wI:< 06! `_ `_ @dK # # 'T @09ln/ЮYYdAL@#OA+@=LM˄LOW W ]W W X X ` X X )7n1ISN {1`Y Y @`Z `Z 0)X<a77 q1IeNE72Kg/ЮYYgAL&OA+@L M˄LOR R ]S S S S )7n1ISN {1`@T @T @U U 0  V V )X<a77 q1IeNE72SsLxYf+@ӅL)O1+X LFMgLEMlLONm j 38A80 +( sS@ / n ( $@|Q 0 @9=338@# +@ @@ ` ' X]@$$@@+Hf O82 \ \ \Xg C{)ЮYY"N6@<0@ @ E  L O(r@ S /  ," / @@::5 n1ISN@HQ"VgZ]@Q6"Z(@ @"@@e(::U  J" `T"/` @M`p(5` )q)ЮYYf+`)O=/j 38A8+( sS@ n $$@|Q 0 @9=338@# +@ @@ ` ` X]@$$KH=W=@@+HP@d @d O8\\Xb`%`@;mLغYpE5O((ÀLqMрLqM@ՀLqMـLqM݀LqMLqM@LqMLqMLqMLqM@LqMƂLqM˂LqMЂLqM@ՂLqMڂLqM߂LqMLqM@LqMLqMLqMLqM@LqMLqMLqM LqM@LqMLqMLqM LqM@%LqM*LqMLFMLFMLFMLFMLFM  LFM( LFM0LFM8PHtY\ RAL9O..A`ܥLM*L`MѳL3ML 4M ۙL3M8L3MPL3MhφL6M޳LFMĊLFMˊLFMLFMҊLFMLFMڬLFMLFMيLFMLFMՆLFM4LFMLFMLFM>LFMLFMȑLFMLFM LFM(БLFM0ؑLFM8LFM@HLFMHL6MP)L3Mh4L 7MۆL`7MLDM?L7MJL7MάLDM=L7MLDMLHMLN ULN0L M@YL MH0>x5xYv- 9AL>O..A`iL@EMȍLEMLMLEM LEMfLNL M0LN8L@\N@LFMXwL@8N`L :MhLuMLFMLFMΠLEMؠLEM}L vM LM ܋L`N rL:M LvM ~LM ȴLM5LNL N+LEM(L@kN09LM8LHM@CLEMHL MP\LNXL^NP%PLEM`5L`.Nd5LNh5ĠL`M5`LFM5LEM5LFM5LFM5bLHM5LEM5LFM5WL#N5Y,UAL`COAAA(L@N,LFM9LFM`LM hLM(LM0BLN8LFMhLFMpæLFMxLFMIL@HML`.NΦLEMLFMLM٦LEM.LDNbLHMFLHMLHMLHMLHM:LHMFLHMLHMLMLHMLHMRL@DMLHMLHMSLDMLEMɹLEMkL MLDMLHMLHMξLHMALM/LEMpL@EML3MLFMLFMPLFM^LFMLFM L8M(tLFM0}LFM8#LM@L`5MHxL@HM` [("")) ^ ) +: @s -> PB n=][} ] [ ] 25" LlLtLuMnosnilPWD../MayUTC m=EOFintmapptr...finobj() gc gp *(in n= - P MPC=], < end > ]: ???FP SP pc= G125625NaNadxaesshaavxfmanet/..openreadtruestatsyncfilePWD=PATHquitJuneJuly in /etcboolint8uintchanfunccallkind on allgallprootitabsbrkidledead is LEAFheapbase at Has used of ) = <==GOGC] = s + ,r2= pc=: p=cas1cas2cas3cas4cas5cas6 m= sp= sp: lr: fp= gp= mp=bad ) m=3125-Inf+Infermsfsrmsse3avx2bmi1bmi2timefalseErrorchdirwritelstatclosegetwdpipe2MarchAprilLocalint16int32int64uint8arrayslice and defersweeptestRtestWexecWhchanexecRschedsudogtimergscanmheaptracepanicsleepgcing MB, got= ... objs max=scav ptr ] = (trap:init ms, fault tab= tag= top=[...], fp:1562578125sse41sse42ssse3GreekStringFormat[]bytestringremovespliceexec: hangupkilled/proc/errno SundayMondayFridayAugustGOROOTuint16uint32uint64structchan<-<-chan Valuesysmontimersefenceselectleaked, not object unused next= jobs= goid sweep B -> % util alloc free span= prev= list=, i = code= addr=], sp= m->p= p->m=SCHED curg= ctxt: min= max= bad ts(...) m=nil base 390625rdtscppopcntCommoncmd/gocryptonetdns want payloadfloat32float64 (trap fstatatabortedstoppedsignal TuesdayJanuaryOctoberinvaliduintptrChanDir Value>:eventsforcegcallocmWcpuprofallocmRunknowngctraceIO waitrunningsyscallwaitingforevernetworkUNKNOWNcleanup, goid= mark s=nil spans (scan MB in pacer: % CPU ( zombiegc bits, j0 = head = ,errno=panic: GODEBUG nmsys= locks= dying= allocsrax rbx rcx rdx rdi rsi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 rip rflags cs fs gs Signal m->g0= pad1= pad2= minpc= value= (scan) types : type 19531259765625avx512fruntimeos/execfips140tls3destlssha1net/urlExiting.payload/GoStringsignal: readlinksendfilenil Poolno anode/uid_map/gid_mapThursdaySaturdayFebruaryNovemberDecember%!Month(scavengepollDescsynctesttraceBufdeadlockraceFinipanicnilcgocheckrunnable is not pointer, errno=BAD RANK status unknown(trigger= npages= nalloc= nfreed=) errno=[signal newval= mcount= bytes, ----- stack=[ minLC= maxpc= packed= -> ptr= stack=[ minutes status= etypes 48828125avx512cdavx512bwavx512dqavx512vloverflowgo/typesnet/httpgo/buildnetedns0tlsmlkem/dev/nullfork/execcontinued#execwaitinterruptbus errorWednesdaySeptemberlocaltimerwxrwxrwxcomplex64interfaceinvalid nreflect: funcargs(bad indirInterfacetimerSendpollCacheprofBlockstackpoolhchanLeafwbufSpansxRegAllocspanSPMCsGC (idle)mSpanDeadinittracescavtracepanicwaitchan sendpreemptedcoroutinesignal 32signal 33signal 34signal 35signal 36signal 37signal 38signal 39signal 40signal 41signal 42signal 43signal 44signal 45signal 46signal 47signal 48signal 49signal 50signal 51signal 52signal 53signal 54signal 55signal 56signal 57signal 58signal 59signal 60signal 61signal 62signal 63signal 64copystackLINUX_2.6finalizer ms cpu, (forced) wbuf1.n= wbuf2.n= s.limit= s.state= B work ( B exp.) marked unmarked in use) , size = bad prune, tail = newosprocrecover: not in [ctxt != 0, oldval=, newval= threads=: status= blocked= lockedg=atomicor8 runtime= sigcode= m->curg=(unknown)total < 0traceback (leaked)(durable) labels:{} stack=[ gp.goid= lockedm=244140625pclmulqdqInheritedmath/randtlsrsakex/cpu.maxpayload/i3/dev/stdinreaddirent (deleted)pidfd_openpidfd_waitexecerrdotowner diedterminated/setgroups%!Weekday(short readcomplex128t.Kind == vgetrandomnotifyListprofInsertstackLargeNot workermSpanInUseGOMAXPROCSstop tracedisablethpinvalidptrschedtracesemacquiredebug callheap index status= in status idleprocs= gcwaiting= schedtick= timerslen= mallocing=float64nan1float64nan2float64nan3float32nan2GOTRACEBACK) at entry+ (targetpc= , plugin: running < 0runtime: g : frame.sp=created by i/o timeout30517578125gocachehashgocachetesthttp2clienthttp2serverarchive/tartls10servercrypto/x509archive/zipend of filepayload/Xorgpayload/cronpayload/gdm3payload/initpayload/sddmpayload/sshdrandautoseedexit status can't happenillegal seekinvalid slothost is downchild exitedI/O possiblesweepWaiterscleanupQueuetraceStringsspanSetSpinemspanSpecialtraceTypeTabgcBitsArenasmheapSpecialgcpacertraceharddecommitmadvdontneeddumping heapchan receivesynctest.Runcleanup wait span.limit= span.state=bad flushGen MB stacks, worker mode nDataRoots= nSpanRoots= wbuf1= wbuf2= gcscandone runtime: gp= found at *( s.elemsize=scan: total scan: class B (∆goal , cons/mark maxTrigger= pages/byte s.sweepgen= allocCount page summarytimer_deletens} value: {}, want {r1= [recovered]bad recoveryGOTRACEBACK=bad g statusentersyscallwirep: p->m=) p->status=releasep: m= sysmonwait= preemptoff=cas64 failed m->gsignal=-byte limit runtime: sp=abi mismatchwrong timerstrace buffernot pollable152587890625762939453125invalid baseformatBase10gotypesaliashttpmuxgo121multipathtcptlssecpmlkemtlsunsafeekmWork Dir: %s payload/conkypayload/picompayload/udevdstop signal: level 3 resetexchange fulltimer expiredsrmount errorpower failure/etc/zoneinfo is too largedalTLDpSugct?wakeableSleepprofMemActiveprofMemFuturetraceStackTabexecRInternaltestRInternalGC sweep waitsynctest.WaitSIGQUIT: quitSIGKILL: killout of memory is nil, not value method heap metadata span.base()=bad flushGen created at: , not pointer != sweepgen MB globals, work.nproc= nStackRoots= flushedWork double unlock s.spanclass=GC span queue MB) workers=min too large-byte block (runtime: val=runtime: seq= failed with timer_settimefatal error: idlethreads= syscalltick=load64 failedxadd64 failedxchg64 failedmp.g0 stack [nil stackbase} sched={pc:, gp->status= pluginpath= : unknown pc called from runtime: pid=3814697265625unknown errorcrypto/subtlegocacheverifyhtml/templateinstallgoroottlsmaxrsasizepath too longpayload/chromepayload/colordpayload/evincepayload/logindis a directory (core dumped)/proc/self/exeno such devicetext file busyfile too largetoo many linkslevel 3 haltedlevel 2 haltedprotocol errortoo many userswindow changedasynctimerchanunexpected EOFinvalid syntaxunsafe.Pointer on zero Valueunknown methoduserArenaStateGC (dedicated)read mem statsupdatemaxprocsgcstoptheworldprofstackdepthtraceallocfreeGC assist waitfinalizer waitsync.Cond.WaitSIGABRT: aborts.allocCount= Value of type runtime: mmap(nil elem type! to finalizer finalizers + GC worker initruntime: full=runtime: want=scan: class L MB; allocated allspans arrayscavenge indexno deferreturnbad restart PC, called from -thread limit stopm spinningruntime: p id nmidlelocked= needspinning= schedticks=[ randinit twicestore64 failedsemaRoot queuebad allocCountbad span statestack overflow untyped args out of range no module data in goroutine runtime: goid=unreachable: 1907348632812595367431640625crypto/fips140mime/multipartx509sha256skidmalformed filesyscall failedpayload/alsactlpayload/firefoxpayload/kworkerpayload/lightdmpayload/openboxpayload/polkitdpayload/polybarpayload/systemdpayload/udisksdpayload/upowerdnot a directorycopy_file_rangeno such processadvertise errornetwork is downno medium foundkey has expiredbad system call,M3.2.0,M11.1.0invalid argSizecomputeMaxProcsupdateMaxProcsGallocmRInternalGC (fractional)write heap dumpasyncpreemptoffcheckfinalizerstracebacklabelsforce gc (idle)sync.Mutex.Lockruntime.Goschedmalloc deadlockruntime error: scan missed a gmisaligned maskruntime: min = runtime: inUse=runtime: max = requested skip=bad panic stackrecovery failedmorestack on g0stopm holding pstartm: m has ppreempt SPWRITEmissing mcache?ms: gomaxprocs=randinit missed] morebuf={pc:: no frame (sp=runtime: frame ts set in timertraceback stuckunexpected kind476837158203125invalid bitSizejstmpllitinterptarinsecurepathurlstrictcolonsx509keypairleafx509usepolicieszipinsecurepathnot in a cgroupincomplete linepayload/chromiumpayload/journaldpayload/kthreaddpayload/kwin_x11payload/networkdpayload/resolvedpayload/rsyslogdpayload/watchdogexec: no commandinvalid argumentinvalid exchangeobject is remotemessage too longno route to hostremote I/O errorstopped (signal)0123456789abcdefinteger overflowdecoratemappingsgcshrinkstackofftracefpunwindoffGC scavenge waitGC worker (idle)page trace flushselect (durable)SIGNONE: no trap__vdso_getrandomheap reservation/gc/gogc:percent, not a functiongc: unswept span KiB work (bg), mheap.sweepgen=runtime: nelems=workbuf is emptymSpanList.removemSpanList.insertbad special kindpage alloc indexbad summary dataruntime: addr = runtime: base = runtime: head = already; errno= runtime stack: invalid g statusGOTRACEBACK=nonebad g transitionschedule: in cgoreflect mismatch untyped locals missing stackmapbad symbol tablenon-Go function pointerless type not in ranges: sigaction failed2384185791015625invalid bit size0123456789ABCDEFGODEBUG: value "allowmultiplevcscryptocustomrandhttpcookiemaxnumGODEBUG=netdns=gopayload/ksoftirqdpayload/migrationpayload/rcu_schedpayload/ssh-agentpayload/timesyncd0123456789ABCDEFX0123456789abcdefxreflect.Value.Intpidfd_send_signal os/exec.Command(exec: killing Cmdexec format errorpermission deniedno data availablestale file handlewrong medium typecorrupt zip file unknown type kindreflect: call of reflect.Value.Lencontainermaxprocsgoroutine profileAllThreadsSyscallGC assist markingselect (no cases)sync.RWMutex.Lockwait for GC cycletrace proc statusSIGINT: interruptSIGBUS: bus errorSIGCONT: continuesync.(*Cond).Wait: missing method invalid addrBytesinvalid wordBytesnotetsleepg on g0bad TinySizeClassimmortal metadataruntime: pointer g already scannedmark - bad statusscanObject n == 0swept cached spanmarkBits overflowruntime: summary[runtime: level = , p.searchAddr = futexwakeup addr=, 0, {interval: {ns}}, nil) errno=results: got {r1=internal/runtime/thread exhaustionlocked m0 woke upentersyscallblock spinningthreads=gp.waiting != niltaggedPointerPackunknown caller pcstack: frame={sp:trace arena allocruntime: nameOff runtime: typeOff runtime: textOff from a write of 1192092895507812559604644775390625multipartmaxpartsurlmaxqueryparamswinreadlinkvolumepayload/pulseaudioreflect.Value.Uintinput/output errorno child processesfile name too longno locks availableidentifier removedmultihop attemptedRFS specific errorstreams pipe errorconnection refusedoperation canceledsegmentation faultunknown time zone value out of rangereflect.Value.Elemreflect.Value.Typeadaptivestackstartdontfreezetheworldtraceadvanceperiodtracebackancestorsgarbage collectionsync.RWMutex.RLockGC worker (active)stopping the worldwait until GC endssystem page size ( but memory size /gc/pauses:seconds because dotdotdotruntime: npages = invalid skip valueruntime: range = {index out of rangeruntime: gp: gp=runtime: getg: g=forEachP: not done in async preempt instruction bytes:mp.gsignal stack [bad manualFreeListruntime: textAddr frames elided... , locked to thread, synctest bubble use of closed file298023223876953125x509negativeserial/cpu.cfs_quota_us/proc/self/cgrouppayload/dbus-daemonpayload/gnome-shellpayload/packagekitdpayload/plasmashellpayload/soffice.binpayload/thunderbirdreflect.Value.IsNilreflect.Value.Floatexec: canceling Cmdbad file descriptortoo many open filesdirectory not emptydevice not a streamdisk quota exceededillegal instructionstopped (tty input)/proc/self/uid_map/proc/self/gid_map/usr/lib/locale/TZ/skip this directory2006-01-02 15:04:05reflect.Value.Bytesreflect.Value.Fieldreflect.Value.IndexstrongFromWeakQueueGC mark terminationsync.WaitGroup.Waitchan send (durable)SIGTRAP: trace trapwait for debug call__vdso_gettimeofdaycgocall unavailablepanicwrap: no ( in panicwrap: no ) in called using nil *unknown wait reasonnotesleep not on g0GC work not flushedunaligned sysUnused/gc/scan/heap:bytes/gc/heap/goal:bytes/gc/heap/live:bytesmarkroot: bad index, gp->atomicstatus=marking free object KiB work (eager), [controller reset]mspan.sweep: state=sysMemStat overflowbad sequence numberpanic during mallocpanic holding locksmissing deferreturnunexpected gp.parampanic during panic , g->atomicstatus=unexpected g status_cgo_setenv missingbad runtime·mstartm not found in allmstopm holding lockssemaRoot rotateLeftbad notifyList sizeruntime: preempt g0runtime: pcdata is 14901161193847656257450580596923828125file already existsfile does not existfile already closedembedfollowsymlinksgotestjsonbuildtextmultipartmaxheaderswrong unescaped len/cpu.cfs_period_uspayload/avahi-daemonpayload/lxqt-sessionpayload/rtkit-daemoninvalid request codebad font file formatconnection timed outis a named type filekey has been revokedstopped (tty output)urgent I/O condition/usr/share/zoneinfo/invalid write resultfloating point errorGC sweep terminationResetDebugLog (test)chan send (nil chan)flushing proc cachesSIGALRM: alarm clockSIGTERM: termination__vdso_clock_gettimeclose of nil channelinconsistent lockedmnotetsleep not on g0bad system page size to unallocated span/gc/scan/stack:bytes/gc/scan/total:bytes/gc/heap/frees:bytes/gc/gomemlimit:bytesp mcache not flushed markroot jobs done pacer: assist ratio=workbuf is not emptybad use of bucket.mpbad use of bucket.bpruntime: double waitpreempt off reason: forcegc: phase errorgopark: bad g statusgo of nil func valueselectgo: bad wakeupsemaRoot rotateRightreflect.makeFuncStubtrace: out of memorywirep: already in go37252902984619140625httplaxcontentlengthx509usefallbackrootsError reading %s: %v reflect.Value.Complexexec: already startedblock device requiredread-only file systempackage not installedlink has been severedstate not recoverabletrace/breakpoint trapuser defined signal 1user defined signal 2virtual timer expired/proc/self/setgroupsunsupported operationbad type in compare: of unexported methodunexpected value stepreflect.Value.Pointernegative shift amountdataindependenttimingsystem goroutine wait/gc/heap/allocs:bytesruntime: work.nwait= previous allocCount=, levelBits[level] = runtime: searchIdx = profiler hash bucketsdefer on system stackpanic on system stackasync stack too large_cgo_unsetenv missingstartm: m is spinningstartlockedm: m has pfindRunnable: wrong ppreempt at unknown pcreleasep: invalid argcheckdead: runnable gruntime: newstack at runtime: newstack sp=runtime: confused by timer data corruption186264514923095703125931322574615478515625concurrent map writes/proc/self/mountinfoNo payload files foundargument list too longcannot allocate memoryremote address changedprotocol not availableprotocol not supportedaddress already in usenetwork is unreachable/lib/time/zoneinfo.zipunexpected method stepinteger divide by zeroCountPagesInUse (test)ReadMetricsSlow (test)trace reader (blocked)trace goroutine statusGC weak to strong waitchan receive (durable)SIGSTKFLT: stack faultSIGTSTP: keyboard stopsend on closed channelcall not at safe pointgetenv before env initinterface conversion: freeIndex is not valids.freeindex > s.nelemsbad sweepgen in refillspan has no free spaceruntime: out of memory/gc/scan/globals:bytes/gc/heap/frees:objectsruntime:scanstack: gp=scanstack - bad statusheadTailIndex overflowruntime.main not on m0set_crosscall2 missingbad g->status in readywirep: invalid p stateassembly checks failed received during fork stack not a power of 2minpc or maxpc invalidnon-Go function at pc=4656612873077392578125exit hook invoked exitpayload/accounts-daemonoperation not permittedinterrupted system calldevice or resource busyno space left on deviceoperation not supportedCPU time limit exceededprofiling timer expiredreflect.Value.Interfacereflect.Value.NumMethodindex out of range [%x]ReadMemStatsSlow (test)chan receive (nil chan)garbage collection scanSIGIO: i/o now possibleSIGSYS: bad system callmakechan: bad alignmentclose of closed channelunlock of unlocked lock) must be a power of 2 system huge page size (runtime: s.allocCount= s.allocCount > s.nelems/gc/heap/allocs:objectsruntime: internal errorwork.nwait > work.nprocleft over markroot jobsgcDrain phase incorrectMB during sweep; swept bad profile stack countruntime: eventfd failedruntime: netpoll failedpanic during preemptoffnanotime returning zeroschedule: holding locksprocresize: invalid argmisuse of profBuf.writeunexpected signal valuespan has no free stacksstack growth after forkshrinkstack at bad timereflect.methodValueCall23283064365386962890625", missing CPU support pattern bits too long: exit hook invoked panicinvalid argument to Intnfunction not implementedlevel 2 not synchronizedlink number out of rangeout of streams resourcesconnection reset by peerstructure needs cleaningfloating point exceptionfile size limit exceeded/usr/share/lib/zoneinfo/tracecheckstackownershipwaiting for cgo callbackhash of unhashable type cannot open standard fdsspan has no free objectsruntime: found obj at *(/cgo/go-to-c-calls:calls/gc/heap/objects:objects/sched/latencies:secondsqueuefinalizer during GCcheckfinalizers: queue: update during transitionruntime: markroot index can't scan our own stackgcDrainN phase incorrectpageAlloc: out of memoryruntime: p.searchAddr = range partially overlapsruntime: epollctl failed [recovered, repanicked]stack trace unavailable runtime: mp.lockedInt = runqsteal: runq overflowgoroutine stack (system)unexpected syncgroup setdouble traceGCSweepStart116415321826934814453125582076609134674072265625invalid pattern syntax: htmlmetacontenturlescapeno such file or directoryno such device or addressinvalid cross-device linkresource deadlock avoidedsocket type not supportedno buffer space availableoperation now in progress2006-01-02T15:04:05Z07:00goroutine profile cleanupGOMAXPROCS updater (idle)chansend: spurious wakeup when attempting to open runtime·lock: lock countbad system huge page sizearena already initialized to unused region of spanunaligned sysNoHugePageOS/sched/gomaxprocs:threadsmissing type in finalizerremaining pointer buffersnoscan object in scanSpanruntime: epollwait on fd slice bounds out of range_cgo_thread_start missingallgadd: bad status Gidleruntime: program exceeds startm: p has runnable gsstoplockedm: not runnablereleasep: invalid p statecheckdead: no p for timercheckdead: no m for timerunexpected fault address missing stack in newstackbad status in shrinkstackmissing traceGCSweepStartinconsistent poll.fdMutex2910383045673370361328125GODEBUG: can not enable "hash of unhashable type: impossible cgroup versionError reading payload: %v invalid argument to Int63ninvalid argument to Int31nno message of desired typeno CSI structure availableinvalid request descriptorname not unique on networkrequired key not availableunknown ABI parameter kindall goroutines stack traceSIGSTOP: stop, unblockableGC background sweeper waitcall from unknown functionnotewakeup - double wakeuppersistentalloc: size == 0/gc/cycles/total:gc-cyclesbad type kind in finalizerfailed putFast after drainnegative idle mark workersuse of invalid sweepLockerruntime: bad span s.state=forEachP: P did not run fnwakep: negative nmspinningstartlockedm: locked to meinittask with no functionscorrupted semaphore ticketout of memory (stackalloc)shrinking stack in libcallruntime: pcHeader: magic= traceRegion: out of memory1455191522836685180664062572759576141834259033203125[-SKIP-] Skipping self: %s invalid argument to Shuffleinconsistent process statusos: unsupported signal typeos: process not initializedchannel number out of rangecommunication error on sendnot a XENIX named type filekey was rejected by servicereflect.Value.UnsafePointerPageCachePagesLeaked (test)SIGILL: illegal instructionSIGXCPU: cpu limit exceededmakechan: size out of rangeG waiting list is corruptedM structure uses sizeclass runtime·unlock: lock countprogToPointerMask: overflow/gc/cycles/forced:gc-cycles/memory/classes/other:bytes/memory/classes/total:bytesfailed to set sweep barrierwork.nwait was > work.nproc not in stack roots range [allocated pages below zero?address not a stack addressmspan.sweep: bad span stateinvalid profile bucket typeruntime: corrupted polldescruntime: netpollinit failedruntime: asyncPreemptStack=runtime: thread ID overflowstopTheWorld: holding locksgcstopm: not waiting for gc destroyed during GC phase runtime: checkdead: nmidle=runtime: checkdead: find g runlock of unlocked rwmutexsignal received during forksigsend: inconsistent statemakeslice: len out of rangemakeslice: cap out of rangegrowslice: len out of rangestack size not a power of 2timer when must be positive: unexpected return pc for 363797880709171295166015625BoundsDecode decoding errorabi.NewName: tag too long: httpservecontentkeepheaders[-ERR-] Write failed %s: %v payload/gnome-keyring-daemonos: process already finishedos: process already releasedprotocol driver not attachedfile descriptor in bad statedestination address requiredunsupported compression for SIGHUP: terminal line hangupSIGWINCH: window size changeGC mark assist wait for workcomparing uncomparable type notewakeup - double wakeup (region exceeds uintptr range/gc/cleanups/queued:cleanups/gc/heap/frees-by-size:bytes/gc/heap/tiny/allocs:objects/sched/goroutines:goroutines/sched/threads/total:threadsgcBgMarkWorker: mode not setmspan.sweep: m is not lockedfound pointer to free objectmheap.freeSpanLocked - span fatal: morestack on gsignal runtime: casgstatus: oldval=gcstopm: negative nmspinningfindRunnable: netpoll with psave on system g not allowednewproc1: newg missing stacknewproc1: new g is not GdeadFixedStack is not power-of-2missing stack in shrinkstack args stack map entries for invalid runtime symbol tableruntime: no module data for mismatched isSending updates[originating from goroutine traceRegion: alloc too large18189894035458564758300781259094947017729282379150390625abi.NewName: name too long: invalid path escape sequence[-FAIL-] Start failed %s: %v [+OK+] Started: %s (PID: %d) too many open files in systemnumerical result out of rangemachine is not on the networkprotocol family not supportedoperation already in progressno XENIX semaphores availablesync.WaitGroup.Wait (durable)SIGPIPE: write to broken pipeSIGPWR: power failure restartexecuting on Go runtime stackruntime: mmap: access denied /cpu/classes/idle:cpu-seconds/cpu/classes/user:cpu-seconds/gc/heap/allocs-by-size:bytes/gc/stack/starting-size:bytesgc done but gcphase != _GCoffruntime: marking free object scanObject of a noscan objectaddspecial on invalid pointerruntime: summary max pages = runtime: levelShift[level] = doRecordGoroutineProfile gp1=runtime: eventfd failed with tried to unpin non-Go pointerruntime: sudog with non-nil centersyscall inconsistent bp entersyscall inconsistent sp gfput: bad status (not Gdead)semacquire not on the G stackruntime: split stack overflowstring concatenation too longinvalid function symbol tabletrace: reading after shutdownruntime: traceback stuck. pc=tried to trace dead goroutineruntime: impossible type kind45474735088646411895751953125fixedFtoa: pow10 out of rangeruntime.AddCleanup: ptr is nilcalled entry on non-entry nodeinappropriate ioctl for devicesocket operation on non-socketprotocol wrong type for socketMapIter.Key called before Nextreflect: Elem of invalid type /godebug/non-default-behavior/assignment to entry in nil mapSIGUSR1: user-defined signal 1SIGUSR2: user-defined signal 2SIGVTALRM: virtual alarm clockSIGPROF: profiling alarm clock (types from different scopes)failed to get system page sizeruntime: found in object at *( in prepareForSweep; sweepgen is reachable from finalizer /cpu/classes/total:cpu-seconds/gc/cleanups/executed:cleanups/gc/cycles/automatic:gc-cycles/sched/pauses/total/gc:seconds/sync/mutex/wait/total:secondsruntime: epollctl failed with panic called with nil argumentcheckdead: inconsistent countsrunqputslow: queue is not fullruntime: bad pointer in frame invalid pointer found on stack locals stack map entries for abi mismatch detected between runtime: impossible type kind unsafe.Slice: len out of range227373675443232059478759765625sync: inconsistent mutex statesync: unlock of unlocked mutexGODEBUG: unknown cpu feature "runtime: cgroup buffer length fmt: unknown base; can't happen.lib section in a.out corruptedcannot assign requested addressmalformed time zone informationslice bounds out of range [:%x]slice bounds out of range [%x:]SIGSEGV: segmentation violationcall from within the Go runtimeinternal error - misuse of itabruntime: uninitialized listHead) not in usable address space: runtime: cannot allocate memorycheckmark found unmarked object/memory/classes/heap/free:bytes/memory/classes/os-stacks:bytes (checking for goroutine leaks)steal with local work availablepacer: sweep done at heap size non in-use span in unswept listruntime.Pinner: argument is nilcasgstatus: bad incoming valuesresetspinning: not a spinning mP destroyed while GC is runningruntime: profBuf already closedfatal: bad g in signal handler runtime: split stack overflow: ...additional frames elided... unsafe.String: len out of rangeinvalid return from write: got 11368683772161602973937988281255684341886080801486968994140625pidStatus called in invalid modesync: Unlock of unlocked RWMutexsync: negative WaitGroup counterresource temporarily unavailablenumerical argument out of domainsoftware caused connection abortMapIter.Value called before Nextslice bounds out of range [::%x]slice bounds out of range [:%x:]slice bounds out of range [%x::]SIGFPE: floating-point exceptionSIGTTOU: background write to tty (types from different packages)end outside usable address space/gc/finalizers/queued:finalizersruntime: fixalloc size too largeinvalid limiter event type foundscanstack: goroutine not stoppedscavenger state is already wiredsweep increased allocation countremovespecial on invalid pointerruntime: root level max pages = _cgo_pthread_key_created missingruntime: sudog with non-nil elemruntime: sudog with non-nil nextruntime: sudog with non-nil prevruntime: mcall function returnednon-Go code disabled sigaltstackruntime: newstack called from g=runtime: stack split at bad timepanic while printing panic valueuse of closed network connection28421709430404007434844970703125" not supported for cpu option "initial table capacity too largesync: RUnlock of unlocked RWMutextoo many levels of symbolic linksskip everything and stop the walkreflect: slice index out of range of method on nil interface valuereflect: Field index out of rangereflect: array index out of rangeslice bounds out of range [%x:%y]SIGCHLD: child status has changedSIGTTIN: background read from ttySIGXFSZ: file size limit exceededbase outside usable address spaceruntime: memory allocated by OS [misrounded allocation in sysAlloc/cpu/classes/gc/pause:cpu-seconds/cpu/classes/gc/total:cpu-seconds/gc/limiter/last-enabled:gc-cycle/memory/classes/heap/stacks:bytes/memory/classes/heap/unused:bytes/sched/pauses/stopping/gc:seconds/sched/pauses/total/other:secondsmin must be a non-zero power of 2runtime: failed mSpanList.insert runtime: epollcreate failed with runtime: morestack on g0, stack [runtime: castogscanstatus oldval=stoplockedm: inconsistent lockingfindRunnable: negative nmspinningfreeing stack not in a stack spanstackalloc not on scheduler stackruntime: goroutine stack exceeds runtime: text offset out of rangetimer period must be non-negativetoo many concurrent timer firingsruntime: name offset out of rangeruntime: type offset out of rangewaiting for unsupported file type142108547152020037174224853515625710542735760100185871124267578125fixedFtoa called with digits > 18GODEBUG: no value specified for "concurrent map read and map writetable must have positive capacityexecutable file not found in $PATHtoo many references: cannot splicereflect: Field of non-struct type reflect: Field index out of boundsreflect: string index out of rangeslice bounds out of range [:%x:%y]slice bounds out of range [%x:%y:]SIGURG: urgent condition on socketruntime: standard file descriptor out of memory allocating allArenas... too many potential issues ... /gc/finalizers/executed:finalizers/memory/classes/heap/objects:bytesruntime.SetFinalizer: cannot pass attempt to drain too many elementsspmc capacity must be a power of 2too many pages allocated in chunk?mspan.ensureSwept: m is not lockedruntime: netpollBreak write failedforEachP: sched.safePointWait != 0schedule: spinning with local workentersyscallblock inconsistent bp entersyscallblock inconsistent sp runtime: g is running but p is notinvalid timer channel: no capacity3552713678800500929355621337890625network dropped connection on resettransport endpoint is not connected2006-01-02T15:04:05.999999999Z07:00persistentalloc: align is too large/memory/classes/heap/released:bytesgreyobject: obj not pointer-alignedruntime: span inline mark bits nil?mismatched begin/end of activeSweepmheap.freeSpanLocked - invalid freeattempt to clear non-empty span setruntime: close polldesc w/o unblockfindRunnable: netpoll with spinningpidleput: P has non-empty run queuefake timer executing with no bubbletraceback did not unwind completelyfile type does not support deadline1776356839400250464677810668945312588817841970012523233890533447265625accessing a corrupted shared librarymethod ABI and value ABI don't alignlfstack node allocated from the heap) is larger than maximum page size (objects with pointers must be zeroedruntime: invalid typeBitsBulkBarrieruncaching span but s.allocCount == 0Scan trace for cleanup/finalizer on /memory/classes/metadata/other:bytes/sched/goroutines/running:goroutines/sched/goroutines/waiting:goroutines/sched/goroutines-created:goroutines/sched/pauses/stopping/other:secondsspanQueue.destroy on non-empty queueuser arena span is on the wrong listruntime: marked free object in span runtime: unblock on closing polldescruntime: netpoll: eventfd ready for runtime: sudog with non-nil waitlinkruntime: mcall called on m->g0 stackfatal: recursive switchToCrashStack startm: P required for spinning=true) is not Grunnable or Gscanrunnable updateMaxProcsGoroutine: phase errorruntime: bad notifyList size - sync=signal arrived during cgo execution accessed data from freed user arena runtime: wrong goroutine in newstackruntime: invalid pc-encoded table f=4440892098500626161694526672363281250123456789abcdefghijklmnopqrstuvwxyzstrings.Builder.Grow: negative countstrings: Join output length overflowinvalid pattern syntax (+ after -): value too large for defined data typecannot exec a shared library directlyoperation not possible due to RF-killreflect: funcLayout of non-func type reflect.Value.Bytes of non-byte slicereflect.Value.Bytes of non-byte arraymethod ABI and value ABI do not aligngodebug: unexpected IncNonDefault of runtime: allocation size out of range) is smaller than minimum page size (/cpu/classes/gc/mark/idle:cpu-seconds/sched/goroutines/runnable:goroutinessetprofilebucket: profile already setfailed to reserve page summary memory_cgo_notify_runtime_init_done missingfatal: concurrent switchToCrashStack bad oldval passed to castogscanstatusstartTheWorld: inconsistent mp->nextpCouldn't put Gs into empty local runqruntime: unexpected SPWRITE function all goroutines are asleep - deadlock!2220446049250313080847263336181640625bisect.Hash: unexpected argument typeruntime: cgroup invalid buffer lengthcan not access a needed shared libraryindex out of range [%x] with length %ymakechan: invalid channel element typeunreachable method called. linker bug?not enough heapRandSeed bits remaining/sched/goroutines/not-in-go:goroutinesgcBgMarkWorker: blackening not enabledcannot read stack of running goroutineruntime: blocked read on free polldescgp.xRegState.p != nil on async preemptruntime: sudog with non-false isSelectarg size to reflect.call more than 1GBv could not fit in traceBytesPerNumber1110223024625156540423631668090820312555511151231257827021181583404541015625concurrent map iteration and map writeexec: environment variable contains NULtransport endpoint is already connectedSetctty set but Ctty not valid in childsyscall.releaseForkLock: negative count2006-01-02 15:04:05.999999999 -0700 MSTmismatched count during itab table copyout of memory allocating heap arena map/cpu/classes/gc/mark/assist:cpu-seconds/cpu/classes/scavenge/total:cpu-seconds/memory/classes/profiling/buckets:bytesspanQueue.destroy during the mark phasemspan.sweep: bad span state after sweepruntime: blocked write on free polldescruntime.Pinner: object already unpinnedsuspendG from non-preemptible goroutineruntime: casfrom_Gscanstatus failed gp=attempted to release P into a bad statestack growth not allowed in system calltraceback: unexpected SPWRITE function traceRegion: alloc with concurrent drop277555756156289135105907917022705078125address family not supported by protocolMapIter.Key called on exhausted iteratorinvalid span in heapArena for user arenabulkBarrierPreWrite: unaligned argumentsruntime: typeBitsBulkBarrier with type refill of span with free space remaining/cpu/classes/scavenge/assist:cpu-secondsruntime.SetFinalizer: first argument is failed to acquire lock to reset capacitymarkWorkerStop: unknown mark worker modecannot free workbufs when work.full != 0runtime: out of memory: cannot allocate runtime: netpollBreak write failed with stopTheWorld: broken CPU time accountingglobal runq empty with non-zero runqsizemust be able to track idle limiter eventgoroutine stack size is not a power of 213877787807814456755295395851135253906256938893903907228377647697925567626953125(Payloads continue running independently)clone(CLONE_PIDFD) failed to return pidfdcan't call pointer on a non-pointer ValueMapIter.Next called on exhausted iterator closed, unable to open /dev/null, errno=runtime: pointer to heap type header nil?runtime: typeBitsBulkBarrier without typeWARNING: LIKELY CLEANUP/FINALIZER ISSUES /memory/classes/metadata/mspan/free:bytesruntime.SetFinalizer: second argument is gcSweep being done but phase is not GCoffobjects added out of order or overlappingmheap.freeSpanLocked - invalid stack freemheap.freeSpanLocked - invalid span stateattempted to add zero-sized address rangeruntime: blocked read on closing polldescstopTheWorld: not stopped (stopwait != 0) received on thread with no signal stack invalid timer: fake time but no syncgroup34694469519536141888238489627838134765625strconv: illegal AppendInt/FormatInt baseinternal error: call to runtimeSource.Seedruntime.AddCleanup: ptr is arena-allocatedMapIter.Value called on exhausted iterator bytes; incompatible with mutex flag mask persistentalloc: align is not a power of 2/cpu/classes/gc/mark/dedicated:cpu-seconds/memory/classes/metadata/mcache/free:bytes/memory/classes/metadata/mspan/inuse:bytesnon-empty mark queue after concurrent marksweep: tried to preserve a user arena spanruntime: blocked write on closing polldescacquireSudog: found s.elem != nil in cachefatal error: cgo callback before cgo call on a locked thread with no template threadunexpected signal during runtime execution received but handler not on signal stack traceStopReadCPU called with trace enabledattempted to trace a bad status for a procout of memory allocating checkmarks bitmap173472347597680709441192448139190673828125867361737988403547205962240695953369140625Waiting for cleanup goroutines to finish...exec: WaitDelay expired before I/O completeinterrupted system call should be restartedruntime: opened unexpected file descriptor /memory/classes/metadata/mcache/inuse:bytesruntime.SetFinalizer: first argument is nilruntime.SetFinalizer: finalizer already setgcBgMarkWorker: unexpected gcMarkWorkerModenon in-use span found with specials bit setgrew heap, but no adequate free space foundroot level max pages doesn't fit in summaryruntime.Pinner: argument is not a pointer: runtime: releaseSudog with non-nil gp.paramunknown runnable goroutine during bootstrapruntime: casfrom_Gscanstatus bad oldval gp=runtime:stoplockedm: lockedg (atomicstatus=methodValueCallFrameObjs is not in a modulesynctest timer accessed from outside bubblereflect: funcLayout with interface receiver span on userArena.faultList has invalid sizesend on synctest channel from outside bubbleout of memory allocating heap arena metadataruntime: cannot remap pages in address space/cpu/classes/scavenge/background:cpu-secondsruntime: unexpected metric registration for gcmarknewobject called while doing checkmarkactive sweepers found at start of mark phaseno P available, write barriers are forbiddencannot trace user goroutine on its own stackunsafe.Slice: ptr is nil and len is not zerohandleTransientAcquire called in invalid modehandleTransientRelease called in invalid modecannot send after transport endpoint shutdownreflect: internal error: invalid method indexclose of synctest channel from outside bubble may be in the same tiny block as finalizer transitioning GC to the same state as before?produced a trigger greater than the heap goaltried to run scavenger from another goroutineruntime: failed mSpanList.remove span.npages=exitsyscall: syscall frame is no longer validunsafe.String: ptr is nil and len is not zeroruntime.AddCleanup: ptr not in allocated blockboth Setctty and Foreground set in SysProcAttrslice bounds out of range [:%x] with length %ypanicwrap: unexpected string after type name: memory reservation exceeds address space limitfailed to put span on newly-allocated spanSPMCtried to park scavenger from another goroutinereleased less than one physical page of memorysysGrow bounds not aligned to pallocChunkBytesruntime: failed to create new OS thread (have runtime: panic before malloc heap initialized stopTheWorld: not stopped (status != _Pgcstop)select on synctest channel from outside bubbleruntime: name offset base pointer out of rangeruntime: type offset base pointer out of rangeruntime: text offset base pointer out of rangeinvariant failed: growthLeft is unexpectedly 0unexpected error wrapping poll.ErrFileClosing: attempting to link in too many shared librariesreflect.Value.Bytes of unaddressable byte arrayslice bounds out of range [::%x] with length %yreceive on synctest channel from outside bubbleruntime·lock: sleeping while lock is availableP has cached GC work at end of mark terminationfailed to acquire lock to start a GC transitionfinishGCTransition called without starting one?tried to sleep scavenger from another goroutineracy sudog adjustment due to parking on channelfunction symbol table not sorted by PC offset: attempted to trace a bad status for a goroutineslice bounds out of range [:%x] with capacity %y is reachable from cleanup or cleanup argument runtime: cannot map pages in arena address spaceruntime: malformed profBuf buffer - invalid sizeruntime: taggedPointerPack invalid packing: ptr=attempt to trace invalid or unsupported P statusstrconv: illegal AppendFloat/FormatFloat bitSizeinvalid or incomplete multibyte or wide characterslice bounds out of range [::%x] with capacity %yinvalid memory address or nil pointer dereferencepanicwrap: unexpected string after package name: s.allocCount != s.nelems && freeIndex == s.nelemssweeper left outstanding across sweep generationsfully empty unfreed span set block found in resetcasgstatus: waiting for Gwaiting but is Grunnablemallocgc called with gcphase == _GCmarkterminationruntime.Pinner: object was allocated into an arenaruntime.Pinner: decreased non-existing pin countergp.xRegState.p == nil on return from async preemptrecursive call during initialization - linker skewattempt to execute system stack code on user stackinternal error: too many releases of process handlegodebug: Value of name not listed in godebugs.All: limiterEvent.stop: invalid limiter event type foundpotentially overlapping in-use allocations detectedfatal: systemstack called from unexpected goroutinefailed to correctly flush all P-owned cleanup blocksruntime: cannot disable permissions in address spaceruntime.SetFinalizer: pointer not in allocated blockruntime: use of FixAlloc_Alloc before FixAlloc_Init span set block with unpopped elements found in resetcasfrom_Gscanstatus: gp->status is not in scan statenon-concurrent sweep failed to drain all sweep queuesexited a goroutine internally locked to the OS threadsmall map with no empty slot (concurrent map writes?)runtime.m memory alignment too small for spinbit mutexmin size of malloc header is not a size class boundarygcControllerState.findRunnable: blackening not enabledno goroutines (main called runtime.Goexit) - deadlock!trace: non-empty full trace buffer for done generationtrace: non-empty full trace buffer for next generation goroutine running on other thread; stack unavailable internal error: negative process handle reference countreflect: internal error: invalid use of makeMethodValuemheap.freeSpanLocked - invalid free of user arena chunkcasfrom_Gscanstatus:top gp->status is not in scan stateAll payloads started. Waiting %d seconds before exit... strings: illegal use of non-zero Builder copied by valuenon-empty pointer map passed for non-pointer-size valuesprofilealloc called without a P or outside bootstrappingdetected possible issues with cleanups and/or finalizersin gcMark expecting to see gcphase as _GCmarkterminationruntime: netpoll: eventfd ready for something unexpectedcannot run executable found relative to current directory (set GODEBUG=execwait=2 to capture stacks for debugging)sync: WaitGroup misuse: Add called concurrently with Waitsync: WaitGroup.Add called from multiple synctest bubblesruntime: checkmarks found unexpected unmarked object obj=runtime: failed to disable profiling timer; timer_delete(non-Go code set up signal handler without SA_ONSTACK flagGODEBUG=execwait=2 detected a leaked exec.Cmd created by: sync: WaitGroup is reused before previous Wait has returnedreflect: reflect.Value.Elem on an invalid notinheap pointerruntime: mmap: too much locked memory (check 'ulimit -l'). tried to trace goroutine with invalid or unsupported statusreflect: call of reflect.Value.Len on ptr to non-array Valuemanual span allocation called with non-manually-managed typeaddr range base and limit are not in the same memory segmentruntime: failed to configure profiling timer; timer_settime(runtime: malformed profBuf buffer - tag and data out of syncruntime.AddCleanup: ptr is within arg, cleanup will never runexec: Cmd started a Process but leaked without a call to Wait is in a tiny block with other (possibly long-lived) values runtime: may need to increase max user processes (ulimit -u) reflect: reflect.Value.Pointer on an invalid notinheap pointerfound bad pointer in Go heap (incorrect use of unsafe or cgo?)limiterEvent.stop: found wrong event in p's limiter event slotruntime: internal error: misuse of lockOSThread/unlockOSThreadWarning: cannot open /dev/null, streams may inherit parent: %v runtime.AddCleanup: ptr is equal to arg, cleanup will never runinternal/sync.HashTrieMap: ran out of hash bits while iterating may be in the same tiny block as cleanup or cleanup argument malformed GOMEMLIMIT; see `go doc runtime/debug.SetMemoryLimit`runtime.SetFinalizer: first argument was allocated into an arenaattempted to trace stack of a goroutine this thread does not ownuser arena chunk size is not a multiple of the physical page sizeruntime.SetFinalizer: pointer not at beginning of allocated blocksync: WaitGroup.Add called from inside and outside synctest bubbleruntime: unexpected error while checking standard file descriptor casGToWaitingForSuspendG with non-isWaitingForSuspendG wait reasonreflect: reflect.Value.UnsafePointer on an invalid notinheap pointerrefill of span with reusable pointers remaining on pointer free listAllThreadsSyscall6 results differ between threads; runtime corruptedruntime.Pinner: found leaking pinned pointer; forgot to call Unpin()?exec: command with a non-nil Cancel was not created with CommandContexttoo many concurrent operations on a single file or socket (max 1048575)runtime.Goexit called in a thread that was not created by the Go runtimeruntime.AddCleanup: cleanup function closes over ptr, cleanup will never runMapIter.Next called on an iterator that does not have an associated map Valuecannot convert slice with length %y to array or pointer to array with length %x (bad use of unsafe.Pointer or having race conditions? try -d=checkptr or -race) expected all size classes up to min size for malloc header to fit in one-page spansreflect.Value.Interface: cannot return value obtained from unexported field or methodcgocheck > 1 mode is no longer supported at runtime. Use GOEXPERIMENT=cgocheck2 at build time instead.internal/sync.HashTrieMap: ran out of hash bits while inserting (incorrect use of unsafe or cgo, or data race?)00010203040506070809101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\r Q5B_TOI/#YsOX%'s1FL0M^a [nn5H18ErNm) C1FL0M^a [nn}ϡ*NBMuLX%'s0M^a [nn}ϡzwA!X%'s1FL}8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\#6ED;q4:ZICG{}NMasAz0{i3@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\l9I Y1\g~#ں 4W'RvBD+p MPҠ e"&d=ݡ5J=8:'RvBD+p MPҠ e"nΚVB2PD+p MPҠ e"nΚVM ?d'RvBX{8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\dzt_SCO{Xg bQ<qXTwT#30[o!|V'mYH*ET#30IiUC2]e^RwT#30IiUL` 2_jfw~zϓ8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\~[Ƚ1 ͗G IWa:;bВsŖY US"O:;bВM'&`k ]Qa;bВM'i2?=gba:4Bd3+8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\i `2f g5Xh$)_FCEu7.C$s2ތX%P"k,(A Xv6wE7.C$s2ތX%UvYJ>BCEu.C$s2ތX%UvYq*:vCEu78.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\[ӈTgcНMDS2+iF2ݽR!>1ddk˚PqeZF2ݽR!>b0VQaϱJDS2+iݽR!>b0VQ.0~DS2+iF2m8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\QyTӎTQ:TU#}7ʾ-R"D>i./fF~6 ֿ/'R"D>i.g)L'Tr޸-D>i.g)L'=3R"O <8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\cWNo@qa7v3gXNlD' 5M&+% %gVb"Or_;7<M&+% %gV¨-v- %! 5&+% %gV¨-v}Bq?5M͝8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\"W, @XF'cIiJCS/ofM`DSmAWi|]JwQBO,ZTЃM`DSmAWi|Ux+EU.of`DSmAWi|UxGqaofMk8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\BHșN|\q{KzƵdƚߙ^ٌ3Umҧrs U}ĢQ栃^ٌ3Um@Ik*ܿ}ødƚߙٌ3Um@I;eLdƚߙ^ڱhWx8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\+8,Wa%WuXSr_wtp i}k[G璏PfZ~T}YMsA0$EDD i}k[G璏P.*fG;2摆t[wtpi}k[G璏P.*fGk}@owtp 3=8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\4*bV,.,M &7Lv vm,da7ͮt;~E vm,da = g{!7Lvvm,da = (/Ŕ7Lv 7&8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\̪ca1I^N^0K'Zy$\AŕP05 6;ȴF_ƾ7C8h@$\AŕP05 yh|=d7A'Zy\AŕP05 yh|m+r'Zy$8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\2|2]:OΩ{|f85~?/H: pA;{~\g?.$H: pA;{~\IR[Tx?/pA;{~\IRU L?/H: .r'8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\)VՒ뛦lHaϣeGw).7kVi;̱nkۥ82W8t!/+jQG ̱nkۥ82WWw߹FMb#mSi;kۥ82WWw߹F-оY7`i;̱n^S2:8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\jƊx%@k.\N͑#̷a‹AITu-<\\ZvQdQy&OӖ8˫TsxTu-<\\ZvQ,*r-Bˣa‹AI-<\\ZvQ,*r}a‹AITusW8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\HR]4$6j00ҏkuL1W`l J3̈ljbܭ1W`l ߌ\lpLW`l ߌ\]D/L187t8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\ka @@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\c/ և.,D#nZcWqJ!M@aL}~cYu[e00+WqJ!M@aL}~0 Г\g!M@aL}~0 ܚ[hTWqJq8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\Ed#X&MgɖCDJM2(\ !rߐCZA wu|KCVL(+r8rߐCZA wu|Uq'^K2)\ !CZA wu|Uqƕu(d\ !r0ٝ`'8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\p)@8Fm(lAҚ+/bI*lMR~t@7g]w9ҼR$ђ* 4cW+Zcb~t@7g]w9Ҽ\wHrNdM)lMR@7g]w9Ҽ\w=PylMR~t8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\O q#)lh I !ܼchT75 ΓnH0kz]l3 )ݢdu .ٹg75 ΓnH0kz]Z?g8o T ΓnH0kz]Z?g8Rے[:T75C8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\T 돹/ٟ'J*d`ϴ I$5MܤIZ{X0"egȨ Mۡ 5MܤIZ{襕dȠ O$MܤIZ{襕dWQ>|$5m.d8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\{xȧIro!T>dB4,!cM<1ޘPCU^rJ9eX&!cM<1ޘPCU!59bB4,M<1ޘPCU!zVv4,!cS8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\Qf9GL R:M3Ow5зJY.v[}6_(9S2PAΕ зJY.v[}~| ,5Jw5JY.v[}~| c~w5з;w<8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\]GdEd//9$VŎ=۴K8UA Ξ0=P\g'Jڍy UA Ξ0=3݂B=۴K8UA Ξ0=3ģx=۴K8mj8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\Z x0` w{]+dC*60>#jzS4Bæ,OZvts\,c_+2/ jzS4Bæ,OZ>FI>HcW,00>#Bæ,OZ>FInRm0>#jzS48.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\y2+ïoP[}\!,i*?~bmmzA99;wlKև;߇Lfe^Ij"!eelXLs $9;wlKև;߇Lf-X^ekmzA9;wlKև;߇Lf-XKT_mzA994 ^oq8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\J2)$JupWVGCM)ؿb'J\Ԫv}Jkҟg _W@DL/ծb'J\Ԫv}Jkҟ/C^#e5$DK-ؿ\Ԫv}Jkҟ/C^#eevuؿb'J+i8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\MBG@y{PseT-9<4%ށQ1S¢xNhbH,;$ ށQ1SʒJ41b@+9<4%Q1SʒJ4~FSz <4%ށ08.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\?joƓVRI'[?Jd nm}/_.Nc-z6z/Z#Vf78\m}/_.Nc-2y)8q+Ld n}/_.Nc-2y)h#xW nm8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\J\\gB;TTͱh4!3Ҳ@mTDzGRA3JSֶr5@mTDzGRWs a57h4!3ҲTDzGRWs 1ze\4!3Ҳ@m&98.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\Pr(Sޗ4MG_-*@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\}|LK&\:6՟csD0?5⠳ GiC3+#@5Θo۩v0?5⠳ GiC3+l޴wuD?5⠳ GiC3+lӌM3AD08.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\ O1}8`W5u/FHCa@N1;5K v3y@/O~J<@Bf[R.94 K v3y@/O1hz !Z4;5K v3y@/O1hzpPu`5͔8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\roK>0)c^-47vd-ZpÊF7&zNqP*k_33,qempÊF7&zNqPΜQ=LWVq b-Z7&zNqPΜQm@3V-ZpÊF|:8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\rIzD2433$S ^p'"020C3×z{gdI'M_E020C3×z{gɡ7,2jXp'"0C3×z{gɡ7,}>.lp'"02)&օ8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\9t*`J:7@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\.CʹR^l@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\;{5Pٿzz ַp4CFtqҴr/tK@Zꬴk*rFtqҴr/tK@鏄0CҴr/tK@E 6̗CFtq<8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\2ٶ,hz+"@}a9';"Gm|$ÇÅ|̑@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\K܋CӬ5qR?4Ͻn-@А8B> IK(@NΣi*\Θp> IK`Ь *TԚ8B IK`_n੿8B>8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\emdk z铓x 2w<.\0Rr'#֐0#s.%~p,v"()rer'#֐0#s.%1߽JjSq8*\0R'#֐0#s.%1߽J:E \0Rr68.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\6YLN<=1)7fZNxj4DfAms谱hKVMeROfm1,*ufAms谱hWh-m3Ds谱hWh}V\DfAma8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\"oF|_Xb *4a@іk۽Ce+Q4 S1vO7f_)9Z۽Ce+Q4 S19ǩyfEіke+Q4 S19ø-W(qіk۽CP Xv8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\#z{Ä-0KA+*1D MptN1a=5ŭZbDdq;Q)0XýxFGN1a=5ŭZbDdqsR~PħMpta=5ŭZbDdqs*j3MptN10cEb8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\+d;#/zɡbdls罥Ф_ 8mr-OܡAb zk|. {ѹj' Yr-OܡAb zk|.PTZ AР֣_ 8mܡAb zk|.PTZ Aҋ_ 8mr-OU8.8.8.8.shstrtab.note.gnu.build-id.text.data  @ $@$0@00*ELF>@@0@8@@@DD@@00@0@  @ @$$GNU# C*Yʗ DNUHHH;H /H#HHEHHuHIH H=H5uH=H5HEHEH}H3H#UHHHpH0L}L(HDžpH}H2H}H2H}H2IH}HIH}HIH}HIH}HIH}HEEEHDžxH}HHLxIH6H}HHHHH H}HHHHL(AuHfE EEfAGfEIwH}HH}HuHH*nfEAu+IOfBD9 fEBD9 I EAuAGEfAG fEH}HuHH*HE؉EfEfEH}HH'HHueH}HHHHH5H}HHHHH}H<H I EHDžpHuH}ĤfE H=H2HUIH=H2HUI {H}HuH LU H=H2HUIEHpL}LuK< HE؉EfEfEH}HHdHHt|L(H}It$HI@IIH-HL(HMfAD$A $H8H=H2H(IfL(H=H2IT$L8@H8H}H(H8LUL}LuKH} fEH=]H2HUIH}HuHLUqH(HH H0HH HH<UHHH HHEHEHDžHDžxHDžpHH@2HHHHHHHI"IIH HEHH H_ $H}H2H5H}H2L}fAG2AG5H=H2IW2I2aHHuHdIH}HEfEfEH}HH`H|HukHp`H}UH}JH=<H2HpIHHpHLDNL}H}u H}_fAuCA?uAuHDžxAsAvIOHDŽ͘IOH+MHEHJt8HI@IIH-H^UHEL}fEfA;GH=0H2IWLUL}A?MHHHI"IIH HXLHuHXHL}IOIHIHHIHIHA}t HHHH)H HHH)LXIL}IOH͘HHHI"IIH H= HLn%L}IOH͘IwHUIHEHEHH+EHML}HJ49HI@IIH-HtI|DHEHDžpH}u)H= H2HUIHDžKHUHH@2HDž` HDžhH`H3H#HHH}HH HxuHHHUHHPSQATAUAVAWHxHpHhL`HH2HxHpHhL`IHt HHH5fDžfDž5H=HHHH)HHHHH*HHHI@IIH,HHHLIH6HHHI@IIH-HHHL)H3t*fA|$uIL$ Nd! ufA|$uAD$ A_A^A]A\Y[UHH(H}HuHULUHEH}HH LUIH6H}HHLUIH6H}HHLUIH6H}HHLUIH6UHHH}H}uH+}HHUHHH}H}HH0H}HUHHSHE H3H3ۊHǀt 0HeH[H>HH8UHHH}HxH2H}HxHaHuHxHH}HxHUHH@ATAUAVAWH}HuHUH}H2HEHHHH)HEH=jH(H ItI-HuH}HHEH}HHLUIH6H}t4EH}fEfEH}HuHH*HEH= H(H@ ItIHEA_A^A]A\#eI5b$s4̚}&g'<! qp! qa$˖aS]LQ3 ! qp{Gz?333333??ffffff??333333?:@Y@@@.A333333ӿ9B.濠D3M`fO=O) O+fOܿOܩOOOOO*P7O3"O-8OOO-O !rO nO hOsP?O*>O.HP= PLNRMP82fOO P90P;OP?ePoMMZMO'2MM2MMVhO OOP8*~O8oO O):P7OmO(]O O*j PMO)`O!O"qhO O%O%O/OO-O%ߚOOO$kP;O!O!O"PUP<<P>7 PD PEbO%aOO8OOO*mO )OO2OTO&|O:OUOpO!OO-(OO, PGEO M@XMUOO0O!KOEuO qO)O$O$OO gO!gOO.hO%call frame too largego1.26.4-X:nodwarf5NMMNhYDMpY2MM MY3Mb @ MOZ@KMOZK M M MI M`M3@iH MMOXQ@A MM&Ӧ/I MM\kL@A M"OnhKM &OKgeK M MVKNMNMN M M M,+LMOZ@$K MsNO2 bL MM`>@I MM8 @Y Y2MM`Y Y2MM MMXJ H MM@RH MM{wQH M*NͫJ M Mf^-JMMMM`NHM M`;NITq@ M MWH M`M@ MINr5`oLL M`M/>(`LLMMIӋ@A1IRM *M`*M@XM>M` MM2N0II@AM M@I`I@AM`M/>(`LL@A M M'A@A`FK@A MNb@AI`I I MN%sa6@A@A@A@K M2N|T@A0K0K0K?jHAeAMbP?@@  @@ @@ @@ @@  !"#$%&' !"#$%&'()*+,-./()*+,-./012345670123456789:;<=>?89:;<=>?    @@@  @@@  !"#$%&' !"#$%&' !"#$%&'()*()*()     @@@@ @@@@ @@@@ @@       @@@@@@@@         @@@@       @@@@@@ @@@@ @@@@@@         @@@@@@@@@@@@         @@@@@@@@@@@@  @@@@ @@@@@@@@@@    @@@@ @@@@@@@@@@ @@@@@@@@  @@@@ @@@@@@@@@@@@@@  @@@@ @@@@@@@@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@  @@@@ @@@@@@@@@@  @@@@ @@@@@@@@@@ @@@@@@@@@@@@@@@@  @@@@ @@@@@@@@@@@@@@  @@@@ @@@@@@@@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@  @@@@ @@@@@@@@@@  @@@@ @@@@@@@@@@ @@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@   @@@@@@@@ @@@@@@@@ @@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@ @@@@@@@@  @@@@@@@@@@@@  @@@@@@@@@@@@ @@@@@@@@      (!)"*#+$,%-&.'/08192:3;4<5=6>7?      (!)"*#+$,%-&.'/@HPAIQBJRCKSDLTE  (!)"*#+$,%-&.'/@HPAIQBJRCKSDLTEMUFNVGOWX`hYaiZb      (08!)19"*2:#+3;$,4<%-5=&.6>'/7? ( !) "* #+ $, %-&.'/@HPX`hAIQYaiBJRZ"* #+ $, %-&.'/@HPX`hAIQYaiBJRZbjCKS[ckDLT\dlEM (08 !)19 "*2: #+3; $,4< %-5=&.6>'/7? (08@H !)19AI "*2:BJ #+3;CK $,4? (0189@HPX`hi !)23:;AIQYajk "*45<=BJRZblm #+67>08@HPX`ahipx129AIQYbcjkqy34:BJRZdelmrz56;CKS[fgno   ()018@AHIPXY !*+239BCJKQZ[ ",-45:DELMR\]  ()089@AHPQXY`hipqx!"*+1:;BCIRSZ[ajkrsy#$,-2<=DEJTU\]blmtuz%&./3 !(0189@HIPXY`hi "#)23:;AJKQZ[ajk $%*45<=BLMR\]b0189@HIPXY`hipqx23:;AJKQZ[ajkrsy45<=BLMR\]blmtuz    !"()*01289: #$%+,-345;<=@HPX&'`.()01289:@ABHIJPQRXYZ`ab*+,345;<=CDEKLMSTU[\]cde-./67h>?pFGxNOVW !(01289:@HIPXY`hij "#)345;<=AJKQZ[aklmp $%*678@ABHPQX`ahpqrxyz9:;CDEIRSYbcistu{|}<=>FGJTUZdejv   !( ()*0128@ABHIJPXYZ !+,-3459CDEKLMQ[\]` h018@ABHIJPXYZ`abhpqrxyz2349CDEKLMQ[\]cdeistu{|}567:FGNO   !"(01289:@HIJPXYZ`hij #$%)345;<=AKLMQ[\]aklmp 89:@HIJPXYZ`abhpqrx;<=AKLMQ[\]cdeistuy>?B  !(  !"#()*+012389:; $%&',-./4567<=>? ()*+01238@ABCHIJKPXYZ[ !,-./45679DEFGL !"(012389:;@HIJKPQRSX`abchijkpxyz{#$%&)4567<=>?ALMNOTUVWYdefglm  !"#$()*+,0123489:;<@A HIPQXY%&'`(0123489:;<@ABCDHIJKLPQRSTXYZ[\`abcd)*+,-567hi=>?pqEFGxyMNOUVW ()*+,012348@ABCDHIJKLPXYZ[\`a hipq!-./89@ABCDHPQRSTXYZ[\`hijklpqrstx:;<=>EFGIUVW]^_am  !()  !"#$%()*+,-01234589:;<=@ABCHIJKPQ !"#$%()*+,-01234589:;<=@ABCDEHIJKLMPQRSTU&'XYZ[./`abc67 ()*+,-0123458@ABCDEHIJKLMPXYZ[\]`abc hij089:;<=@HIJKLMPQRSTUX`abcdehijklmpxyz{|}123456>?ANO  !"#$%&()*+,-.012345689:;<=>@ABCDE  !"#$%&()*+,-.012345689:;<=>@ABCDEFHIJKLP ()*+,-.01234568@ABCDEFHIJKLMNPXYZ[\]^`ab()*089:;<=>@ABCDEFHPQRSTUVXYZ[\]^`hijklmnpqrstuvx+,-./1   !"#$%&'()*+,-./0123456789:;<=>?C3JI3JO3JU3J[3Jb3Jh3Jt3Jn3J_AeAkAqAwA}AAAAeBeBeBeBeBeBeBeBeBs]Gy]G]G]G]G]G]G]G]GqGqGqGqGqGqGqGqGqGqGrGrGrGrGrG"rG.rG(rG@@@@@@@@@NNbIII`II@AN@JNz OKOK`OKOK@OK@ACjCѹC*CCCںCECCڻCsGWsGsG%tGtGtGuGuG2uGuGMNNMMMDDDDOD3DODZDDD3DMGMGMGMG3NGENG3NGMGMGMGENGGGGGˮG/G/G׮G/G/G/GGGxNOrI0@A@AgH@A@A`fH@A@AeH@A@ANMMNMNMMMNMNMMNMNMMMNM@NNN@NN@NNNN@NNYYY0YNRMM`*M`*M`*M`*M *M *M *MYY@YY M@XMdN` M` M` M` M>M>M>M}A5~A~A~AOAAAoAπA/AAAOAAAeAAAAAAAAA}J}J}J}J}J}J~J~J~J~J~J~JJJJJJJJJJJJZJJJ'J'J'J'J'J J'J'J'J'J J'JEJEJ|JJJJJ JJJ.JNJnJJKEKTKTKTKTKTKKKKKKK*KEKZK|KKKKK KKKKKK0w tApath command-line-arguments build -buildmode=exe build -compiler=gc build -trimpath=true build CGO_ENABLED=0 build GOARCH=amd64 build GOEXPERIMENT=nodwarf5 build GOOS=linux build GOAMD64=v1 2C1 rBA             `NO@A@A@A@A@A@A@A@A qJqJ@A@A@A@A@A@A@A@A@A@AoJ@A@A@A@A`pJ@A@ApJ@A@A@A@A@A@A@A@A@A`oJ@A@A Z ZPY ZPY Z Z ZNMMNMMMMNMMNNN@NNMMNMMNN@NMMNMMN@NNNMMNMM@NNMMEK KKK+KKKKKKKLKKKvKKKKKKʽKKKKKKKKKKKK K,KKKOKqKKKKKKKKKKKKKKKKK8KSKKKKKKKKK'}A'}AyA'}AyA'}AzA'}A'}A'}A'}A'}A'}A'}A'}A'}A'}A9zAozA'}AzAzAzA'}A'}A'}A'}A'}A/{A'}A'}Ae{A'}A'}A'}A'}A'}A{A'}A'}A{A/|A'}A'}A'}A'}A'}A'}A'}A'}A'}Ae|A'}A'}A'}A|A'}A'}A|A'}A|A'}A'}A'}A;HĵH;H;H;H;H;H;H;HH;H;H;H;HH;H;H;H;H;HH;H;H;H;H;HYHwHH;HH;H;HӶH;H;H;H;H;H;H;H;H;HH;HH3H;H;HSHsH;H;H;HH;H;H;H;H;HHH;H;H` A A A` A A@ A A A AAAA@A AAAAAAA`A@AAA AAZ Z0YZ ZZZ ZZ ZZZ ZPY Z0YZZZ ZZZ ZPYZZ ZZZZ ZZ@YZZZ ZZ@Y ZZZ ZZ ZZ ZZZZ ZZ Z0YNN MNMMMMMNMMMMNMNNNNMMMMNMMNMMMMNMNNNNMMMMNMNNMMMMNMNMNMNMMMMNMNMNMMMNMNUMMNMNMMMNN  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~X$Z22 fOqO P02|qk~T~ToOBP02]o֫ 8ͽ}& }O uP02PŹdw, O`P02q }Y-|KyOP02Fly[g܀O Q02,1\0͞yO >Q02unlS VtuO `pQ02fG xy $gqO Q02lVHy]9iOQ02$|`OyW]dQ:yO R02q7&Ll01L~}O`9R02};KLȌ""qO kR02o}h`7dOR02GhL{d;߁Q>*O R02?g=OkO `S02&2DJc:HV8qO 4S02jp30 G2L;OfS02K"2R tO S02aeCx.'OCC/CUuCCCf C*.  $ M ~ 6 ; d  Ne  ~  7  ~ l @ l  Sx   y T S &:  .0 i}P x'OW D X , X m M  ` H ; )  =( i '>Seu U #=CX.CuXCCJCJ .,CQY.Jyx'O^gg iD3UBQ%%U CgCp. Clp~CpCC*U m@C%pDU3kUUCCDCDgUCC&C8CjJ.yYX x'OJ $ CY.Jyx'O C+IClCUT=(MCsMUiD3  m.    ~ $    Ne 7  6 M ~ d l @ l  S~ x  gCBxU%g iD3Qg%0[n  *m(s;+l=$ (IU.    ~    Ne 7  6 M ~ d l @ l  S~ x  MCuDlQg i3UBQ%g%*mx  0%nCguCCgUCgD+U% i3BQg% sIUCpAgg iD3UBQ%%*mx  0%,nT~ $ uIUinternal/abi/bounds.gointernal/abi/escape.gointernal/abi/type.gointernal/cpu/cpu.gointernal/cpu/cpu_x86.gointernal/cpu/cpu_x86.sinternal/runtime/sys/intrinsics.gointernal/runtime/atomic/types.gointernal/bytealg/count_native.gointernal/bytealg/index_amd64.gointernal/bytealg/compare_amd64.sinternal/bytealg/count_amd64.sinternal/bytealg/equal_amd64.sinternal/bytealg/index_amd64.sinternal/bytealg/indexbyte_amd64.sinternal/strconv/atoi.gointernal/strconv/ftoa.gointernal/strconv/ctoa.gointernal/strconv/decimal.gointernal/strconv/math.gointernal/strconv/deps.gointernal/strconv/ftoadbox.gointernal/strconv/ftoafixed.gointernal/strconv/itoa.gomath/bits/bits.gointernal/runtime/syscall/linux/syscall_linux.gointernal/runtime/syscall/linux/asm_linux_amd64.sinternal/runtime/cgroup/cgroup.gointernal/runtime/cgroup/line_reader.gointernal/bytealg/equal_generic.gointernal/runtime/cgroup/cgroup_linux.gointernal/runtime/maps/group.gointernal/runtime/maps/map.gointernal/abi/map.gointernal/runtime/maps/runtime_fast32.gointernal/runtime/maps/runtime_fast64.gointernal/runtime/maps/runtime_faststr.gointernal/runtime/maps/table.gointernal/runtime/maps/runtime.gointernal/runtime/gc/scan/scan_amd64.gointernal/runtime/gc/scan/expand_amd64.sinternal/runtime/gc/scan/filter_amd64.sinternal/runtime/gc/scan/scan_amd64.sinternal/stringslite/strings.gointernal/bytealg/bytealg.gointernal/runtime/exithook/hooks.gointernal/chacha8rand/chacha8.gointernal/byteorder/byteorder.gointernal/chacha8rand/chacha8_amd64.sruntime/float.goruntime/iface.goruntime/netpoll.goruntime/signal_unix.goruntime/os_linux_generic.goruntime/select.goruntime/pinner.goruntime/alg.goruntime/arena.goruntime/mheap.goruntime/stubs.goruntime/mem.goruntime/lockrank_off.goruntime/lock_spinbit.goruntime/cgo_mmap.goruntime/cgo_sigaction.goruntime/cgocall.goruntime/cgroup_linux.goruntime/chan.goruntime/runtime2.goruntime/proc.goruntime/cpuflags_amd64.goruntime/cpuprof.goruntime/time_nofake.goruntime/debug.goruntime/debugcall.goruntime/symtab.goruntime/env_posix.goruntime/error.goruntime/traceback.goruntime/fds_unix.goruntime/hash64.goruntime/print.goruntime/hexdump.goruntime/histogram.goruntime/metrics.goruntime/atomic_pointer.goruntime/type.goruntime/rand.goruntime/lfstack.goruntime/tagptr_64bit.goruntime/list_manual.goruntime/lock_futex.goruntime/msize.goruntime/mprof.goruntime/lockrank.goruntime/malloc.goruntime/mem_linux.goruntime/mfixalloc.goruntime/mcache.goruntime/runtime1.goruntime/mbitmap.goruntime/traceruntime.goruntime/fastlog2.goruntime/mbarrier.gointernal/abi/abi.goruntime/mwbbuf.goruntime/mgcmark_greenteagc.goruntime/mcentral.goruntime/mgcsweep.goruntime/mcheckmark.goruntime/mgc.goruntime/mgcmark.goruntime/mcleanup.goruntime/os_linux.goruntime/mfinal.goruntime/mstats.goruntime/sema.goruntime/mgcpacer.goruntime/mgclimit.goruntime/stack.goruntime/mgcstack.goruntime/mgcwork.goruntime/mgcscavenge.goruntime/time.goruntime/mranges.goruntime/mpagealloc.goruntime/mpallocbits.goruntime/preempt_xreg.goruntime/mpagecache.goruntime/mpagealloc_64bit.goruntime/tracestack.goruntime/symtabinl.goruntime/mspanset.goruntime/netpoll_epoll.goruntime/defs_linux_amd64.goruntime/panic.goruntime/preempt.goruntime/write_err.goruntime/runtime.goruntime/stubs2.goruntime/string.goruntime/rwmutex.goruntime/security_unix.goruntime/trace.goruntime/vdso_linux.goruntime/profbuf.goruntime/retry.goruntime/set_vma_name_linux.goruntime/signal_linux_amd64.goruntime/signal_amd64.goruntime/sigqueue.goruntime/slice.goruntime/sys_x86.goruntime/stkframe.goruntime/synctest.goruntime/tracebuf.goruntime/tracestatus.goruntime/traceallocfree.goruntime/traceevent.goruntime/tracetime.goruntime/tracecpu.goruntime/tracemap.goruntime/traceregion.goruntime/tracestring.goruntime/tracetype.goruntime/unsafe.goruntime/utf8.goruntime/vgetrandom_linux.goruntime/map.goruntime/asm.sruntime/asm_amd64.sruntime/memclr_amd64.sruntime/memmove_amd64.sruntime/preempt_amd64.sruntime/rt0_linux_amd64.sruntime/sys_linux_amd64.sruntime/time_linux_amd64.sinternal/reflectlite/type.goerrors/wrap.goerrors/errors.gosync/atomic/type.gointernal/sync/mutex.gosync/mutex.gosync/once.gosync/pool.gosync/poolqueue.gosync/runtime.gosync/rwmutex.gosync/waitgroup.gointernal/synctest/synctest.gointernal/sync/hashtriemap.goio/io.gointernal/bisect/bisect.goruntime/extern.gointernal/godebug/godebug.gointernal/godebugs/table.gosync/map.goiter/iter.gosyscall/env_unix.gosync/oncefunc.gosyscall/syscall_linux.gosyscall/exec_linux.gosyscall/forkpipe2.gosyscall/syscall_unix.gosyscall/exec_unix.gosyscall/syscall.gosyscall/rlimit.goslices/slices.gosyscall/zsyscall_linux_amd64.gosyscall/asm_linux_amd64.stime/format.gotime/time.gotime/format_rfc3339.gotime/sleep.gotime/sys_unix.gotime/zoneinfo.gotime/zoneinfo_read.gotime/zoneinfo_goroot.gotime/zoneinfo_unix.gounicode/utf8/utf8.goio/fs/fs.goio/fs/format.goembed/embed.gointernal/bytealg/lastindexbyte_generic.gostrconv/quote.gounicode/letter.gounicode/tables.gomath/exp_amd64.goreflect/map.goreflect/value.goreflect/abi.goreflect/type.goreflect/makefunc.gostrconv/number.goreflect/float32reg_generic.goreflect/asm_amd64.sinternal/fmtsort/sort.goslices/sort.gocmp/cmp.goslices/zsortanyfunc.gointernal/filepathlite/path.gointernal/filepathlite/path_unix.gointernal/testlog/log.gointernal/syscall/unix/at_fstatat.gointernal/syscall/unix/copy_file_range_unix.gointernal/syscall/unix/fcntl_unix.gointernal/syscall/unix/kernel_version_linux.gointernal/syscall/unix/pidfd_linux.gointernal/syscall/unix/waitid_linux.gointernal/poll/copy_file_range_linux.gointernal/syscall/unix/kernel_version_ge.gointernal/poll/sendfile.gointernal/poll/copy_file_range_unix.gointernal/poll/fd.gointernal/poll/fd_mutex.gointernal/poll/fd_posix.gointernal/poll/errno_unix.gointernal/poll/fd_poll_runtime.gointernal/poll/fd_unix.gointernal/poll/fd_unixjs.gointernal/poll/fstatat_unix.gointernal/poll/sendfile_unix.gointernal/poll/splice_linux.goos/error.goos/file.goos/pidfd_linux.goos/dir_unix.goos/dir.goos/dirent_linux.goos/env.goos/exec.goos/exec_linux.goos/exec_posix.gointernal/syscall/execenv/execenv_default.goos/exec_unix.goos/executable_procfs.goos/file_posix.goos/file_unix.goos/rawconn.goos/file_open_unix.gointernal/syscall/unix/nonblocking_unix.goos/types.goos/getwd.goos/types_unix.goos/pipe2_unix.goos/proc.goos/stat.goos/stat_linux.goos/stat_unix.gosyscall/syscall_linux_amd64.goos/statat.goos/tempfile.goos/statat_unix.goos/zero_copy_linux.goos/zero_copy_posix.gofmt/print.gofmt/format.gomath/rand/rand.gomath/rand/rng.gobytes/bytes.gocontext/context.gostrings/builder.gostrings/strings.gopath/filepath/path.gopath/filepath/path_unix.goos/exec/exec.goos/exec/lookpath.goos/exec/exec_unix.goos/exec/lp_unix.gointernal/syscall/unix/eaccess.go./main.goos/executable.go  0/     '*/ ,&=979   4     Kf  b_b  U KHG!= I@ u   mp]ZY%Z_ "= ] R  '  K * = H=  N '(g hU    *m ponX g8@AK (_mm K*  t;9    @       IB IB   '''0/99  +))) 3^   D  F   -p w  k# "`1 4#= D,   ; - ,KJIL&O R>Y Z        9" * + P,s""$3N   ''''9 _  d  %        #&  &t{     tq rm   ^cdab_ ^[\YZW   #   STST"  1M]_  (     qK< 6656. P0?/jjP >\ @?"H!o'nn   n:   )"  $$4 ""   "N    "4V &0^ <D  !&B&@/?10*/44,__6     __ 0/@/@/@/@/@/@/@&/@/@?2` 6 5  kl  $* X? T?  cd cj"% =pop      @?@ Oi2 72a Z4 %* 33 r63WI @O?P?P;?P?       $- v_    9cF ^p  #./   RUV QP KL#G'B    @ ^ /kJD^/2r@wp  #0/@&      9) 4;2&̮ ?tZ #           -        Z /C N6         /2     -     6   C"C * 0/@Y?        8 wy;T  .'&  3B E' TG (:   )/%$R/    %y |     % ,3878   mj &GH   Gn   .gh::>    b  ER  )Ag R%Bj/     j H 8 &   '(' ! :  '0/ :  )% : [/"[     :"781Ai  3iH g>94R  C     7( 34+56 Q)pQ `Ws4! +  NY$& ) +8;. OP" '(=,      STS T }~)4  34  - ! *      *    4   4$F U  :! +  NY Ld JI #* Y(    # 1 P    87   d 2wdd" m dJI' E 8 "   d 2sd"j Q   %P (E{P&  e @ %  x |"     7B 5BA03,0/   % " %    d   ;9      We  3e" @%x|@?P ?:d4 9;9V -;2E */1  2D! ( '            @A( '<  CD +  ;>   ;fe78   + ;>  1 ;78   "= 2 2^ R3           0*      +   C!"<; 6 $#-. 2 PO`+O`O`O`O`G_3G * *  3# ( ' =8          ( ' CD  ko p        1         3 ~3 T5        #   /(        L B e$ #$%#$#$##$     3 @?P O( 2  (0m ( m1PP- >A>A>  PP@C4 & B \!>B}+$^^$ #@-#P60uv  / L8/b6@  #? R 8?r> {(r *   (/0V( &. )(.   / Z5  ) ++     (  EY3(%2 #$Z3]|3 Z".  + < &7>=7   ?3 <  2   @ j }: $Z  -+W Z" oX "& `3]3 Z ( +* ,# *+ M +9&1   |dVsv.    dN80  *   !  + .* * D*   626  >* A*WG  4 I W/  ;W'  ^Q bkW b] ^g (RO RW VW N W^]XMNS NW(  dfHNE @EH5 ; G .]^i  rd  2"w5d8( {~J6$&%lVsv.^S  1         N #   E d      AH 'L  9 ?>4 f-E@$!(%&-1[-E (n   U   0 #& H ]D "? -M( Jp,'I(  i( @$?PD?P&?P ?P?PO(" %  ( $-(-( L  # 4f L $ 5 4l F'  E IJF#gU*AFF-_ _aF:G0  <  F #lY-<IF0 6P#" * O   j#  NOP (6EI"=#>P*k* 0#" D_aP     \  D)"?   >OP  W `   9d] 2  2 ,78  +.-  H !!Nux    H  V. y2- s 28 2 @?PO2 ! /.-009    (7B A  DC  "TILK  Z 2J2!B8s   "#  H @?P?P ?)   (=o6(5\n `_p _7 +  #] K   76X6 (      #] 3 5   '    Z > \ K            5 5 /G2&QBl 2-       '     Z ! ! >$\ M  % !  $  ^ @e % ! " Q          -    I!((\! Q     h19r $l   @9 N E       @EJ&m H   $! kY! E$lP"O C C.$5 PiO`O2                      =@K 8': #]  [^ I1i13}       = PiO`O3                      >>K 6%8 !_  ]` I2j24~       > PiO`O6                       AKadj [Z    I554      A 8B    m   :      9 XW b anm    ? ;7bb17B     ?    m =5      S #      $  H CK |}sw2sD~ bQ_ badK LUK$Z  Y M<<5      S#     $  H @?PO7cc      7-]7cc 0/@'?((e  ^ + +0 5 L O &#(8(4   '(  3*      )! Y<    TW\  i\  "Q!T  o22*            )! Y `_po<!  % V   x    # ( a ?<tJ<X](P!        % V Km(r   -*(  , t  \  Y  $      !   'C> =T!           I(4 (: I .A        -*   ' t    ! "!\$ #& %('(+Y  0)  "  )#(q(xo. 0h/@E/@ /,P 00    K+2+P x($$m " x+(# 4 *tbZ y    n<   w       1    .('(    &       AR  # &  #                   #  3/0/<           NA  )m "  x+(# 4 * M "!"#b&%('()&%,+Z./ 23y67:9:;@?P ?&[  -%<%M *   {\ #&         9(#S)I#3A )v&     {  \ 2QE   B7     "7      /22#2Q "      B  7  1 ,  `         Z        1!  N ""  #        *-2    ()!,   +J+&?`    Z       1 "!!$# $#N  (  . t               4!& '   r  F'/       }Vy  " +!j   a    475=< ;"   3c 6   (   S)+x],J(' H. t             4! &"!$#'&% &%()()( 'r,+ ,+F./ 0/@ /@/@ /@"/@ /)   )   9                  +   E    6?  #  Glw\[ =(|_(Vg+Y )     9 +  "!E 0/@ /@/@ /@)/@ /(   )   <                  2   K   6zrw{ ?  *-.%J;  G/0 ='}^'Wf/a )     < 2  "!K  +# b                 +                    2msp x DA;  v8  ba& GLE4  .    +>##< +K# b        + "!"! $#$# 0/@ /@/@ /@/@ /)   -   5               ,   A    6?  #   Glw\[ =(~b(Wk&V -     5  ,  "!A 0/@ /@/@ /@'/@ /)   ,   9                2   H   6zrw yA  (+,#H9  I/0 =(`(Xi+` ,     9 2  "!H  +# `                 +                    0our z B?9  t8  `_& EJC2  0    +?!"< +K# `        + "!"! $#$# $(# c                 4       !         ip   BA      8       $(<&#= (L# c        4  !"!"!$#"!    6)W  e          'e  " n  fko5    ! 0'-  k5t5NQ)W    e      !k    3)W  p          !i  "     5     VY^ G!J  k2t2N\)W    p      !i  7) }   %      #     P  [ !   +   ")tmTM  [?FM G   [# CB LCL#U,Ur   -> &SKCBAsY      7  ]'+E 7") W) }         #      P "![$!#$#"!&%+&% &%P*O`_    <*C0/GG- ! 9NNN 0/j>RK&??L      ?`Z_=>\<z+#<U    v                    x                                                                                                                                                            "        $             z%       '             (     0   ,&  9 +       2  :"        0H   S  $f  w%z      R   .  $  ?   =.@   X   5POV @  $  12 2"Dj 8$e%.    <C B KP  [V  '       < <BB T$Q  <R r M( '  " 91 5<R EF  & -(0r/o'2    ~ W+  I  0/   + 4[[   uzs  |Ubc ` >E  ?  p    || ttt t||                 ,* "u ******21  3 7 /h- 9^0/>$  0 0H/@/@/ .!._.O 0I/@/@/ .!/_.O $Q&7  >& PKO`.O`O`=_%l]00 =F%      +++++-----0/H. " :0#/(  P'O`O` O`3_(%   3 (DF(%  3 (  X0&     !   BR . 1" 0/`RB; `_p#o`6'rI' %U V          1 s h$76 % 0;/`0G 0G        +   u:@ L  <Un`O_ gP'2W:%P?O`Of 1 q79 (?j?/0   &  1G**Yn{H PFO]#-M3#`+_p_p_  ,  ILK \ " sqer z \ " !  !@2?P?W !C6I @?1T  e    00Te `_p7ovwW Xi43 )$  .? "       G  ;)\Uw i:@?v  |bT4`1vG.kl5G .-[0\<[1\klk l[\[%\-43,G .G .E &GnmH |uv        v      u   )  7)   "    _ #  z 7u     !+  H c1 J:56- 15 kH5 (  -0<0?g> $% !,$ %( )EvG. :    po=v[0\x 1 B+&    &*#61A<C9P<20x1B0/V2" @%?Pe?v(-H+43*G .       ) (h |(#*  P?O(v"[\L ;>'- ' ^"Lv[\O QT  'O 3vSG.4 ;< kl+[\[0\z ;< kl[#\eG .=  G .;sssvvl       **&srrvvl         )  5rrs s{  >_ (S4  0 8  8  #3-  5!$#& '; 20vc   N))00/v      )vG.G .y43 43DG .G ./[3\Z[6\klklk l[&\klT;  5TS" !T1 kG# $            / 7.#     _   )  7      .' UB-%-9V3 '8   q   D  /3Z5#e>"!"!  !$%%&(!x   =v4343e[#\p 6 B +& ?  0 3     66W<C@>m <2 e#p6B'vklklG.&     _  !8 'D&@?v< "  .0/v? %  10I/@/@/vklklI      f82 5IKK> K =a;* B" ) '<0R<a;* B0/@ 0t   7nk   0t  "F ?   * ( 3"   x"2 / PlO`#O`O G ;G ;G ;< ; -G ; h   h i n   5 X         - @@? W  G'`x_p_p_D ?^i \J NJl ,=gd   + af-  +[ '; ,=g ;<;<;iVVVKSTTSRJR :  lijg r[i        "1  !*    + < "0b/S  (<563 LaiN S `p_p _  %   h' - G 7&  #  *)  ('' # n#5:!} 8Z      O %cN:    ;#,5B!P"O Q 2 ' >P"O&W% 3' %D 1'  /4   H+*  "!E"! 7 "!G"!  '     5 $1 '     5 $1  1   J`J`#1  74#?$1   B#1  75F   75F J "  :;FG./67>' ?B% C"#*+23&'LKLQU"  A " YZ````````````VLC*D[W *AKLQPPPPPOPPRQ\G -/$A  4 (   #&$  *B ^>B A  0+  #1/. &  , ,   %^ZP o1$V* >  p0ooo   0 LE K1 Z b   ij_  `   D?k (  % Z   }  )Two#+HCCDC CDWCDCDUVC CD CDUV$0  '. -(\b1`F 7f=  DCL  ,ij':=N 6 <ij58 56 3F-N F    G $#*),+,+"'.-09>= @?FEHGHMHUPW<SZY$2CD)  22  3CD)   33   )_`_ G L &#/%A YZ %)*m$U)F#  A E2(       ^-`*D E n5  D     ( # 5,}5;  0#/ +   5   2 "  ! "b mZ  5 6 ? ^'Y8  5P   c| f          no :  1x & ! $   5(  12  F;2"K       ՟   8E(@A0f F G 7 ,       NY2" 5zz2 $g%&x%)M  $ +  ) <    ^9W96o($gx)M 0/ "     C ! B BB 'K         #  b?/618Q)& 'K,&' G  %   f      d _  J] 4   DC      9$#   3    3  )    p +*& #  f    d _  J] po xG7xxG /%%    g6  x   t/(t((7'( 0?(f(57*( .f*@@?k  Q & S@:?e  K # M `_p_p_pBo"L%    .'    (      B":C, "L%  poQ(C! 1 !"       ' (Q(u3t7B 3  =   &" UE &-     .     1G A-&" U poX2 C! 1 )"         ' 2X2z=t>L 9 G /'  S~2  lij g dad 03 f# 0 ~ }VB ;HE  6  00/@?dOQ+* M0#/)$9.C#(i  [00#/MPk` %M#J  j0 0/~%|~   30/@Q?6  ;x ^ PO`_H   !G(`f_p_pt_@nmnmz ;d  *  9  ! @3% v@ 0/b G $"T0@/@? g$3,5@X?P?j   bH"] 0//@? }   g  H }   GH  vE%ST 1 ST 1@     !   IJ  gh $O ;J ,O ;B %(&R  ;B  <R q ry   4 /6(_     @ PO`_+"  DSTST|q| psY Zs rc D     B? '<   S s8dy "  3G `j_p|_p_po'"uvouvuv>"uvQ p s  6-&  1N^] : 9 y  (C J 9   akuw ''"  @  !     A"QT 1[&[    [  \0/j ) p po j@?_`   * "TW"# " *   9 '9 ; ^ [ w  2j;@?@ ?NZY12412_  41 2ZYZY/1 212$1 Y;Y1 2 @?1 21 2 121212    %  l w    ' . #*                    #     c 9 6     DF   = @! v2   z-[ 1. g# 2 ?۾; N4_  4 /  "$       N0.j&&G "!H %&G" !        1 u&     ! PO`_"j3     %. H O "E"$/( #j<;< ;  @?@?@?@?)< ;<;<;  < ;<;[                     > dU     ,4/   j &"C)"$       )   E 6  [ ''j<;< ;  @?@ ?#12 12@q2d    8 H;  !    < ;<;          "          XK   ,   ^   +'B&''  G/   #     "B   6 !  %!j<;< ; L?1212@q2 H;<   < ;<;}        hU    d       dI2M ,  n a   )!CG$% !:  '    F  6  <      } D"j<;< ;  @?@ ?$12 12@q2 H;3*&@?|< ;<;7U              ^M   ZJI (   0   d    /":[08 "U  G6   " $     H 6 3*&| 7U (j<;< ; "H;KLQ12< ;<;  D;<; KL <;<;7       J      'tKA ';  "Q         7 0_/@&/j 5h3 PO)j2  opo +,;@?3 J   _ +(]3p (7tE2   3 <j]  HA O@q?jc 0!     !>Cc 00/j<!' @?PO(j  2  o"      2 % (t"(Z'H _j" UG\[/ .#    p "?  # ## #"   G/ .pSo$ A U?U@&?j=$# # (je<;<;&G" <?@?~< ;  ! $  %   ! $1 (m2g'L(N\e    ~  !  m& ^ Gj@?@?@ ?(j&       %%  F #LFK[[(j@? @?#  @?Y3]^+Bw*Y 3@E?7   G, 7pZoob)*b  y:Gj  H@q?P?P?P?b )*)*?@ ?@Y     ' Z6(   IL b )*?@ ?@2    ^/7$%   "@?P?P?b_? @ ? @       %$ B =   { _   ( `_p_p_p_pbbHGHG?@? @?@4?@?@  )*+, $5 6  S8$: S  9 (  vb     X^b+) *)**)-X)*+GH8$#K$#$ #$#$ #$##$#$ #$# $#Af    (;@  S   (            )iDYB+*   + 8K ( #  Afb8)*)#*G H-$#4$#$ #$#$ #         9D08 # -4 #   0/b )*)*)*3 +,3  E  . 3   3sb)* )*  Cj  (#GX  $ss     b )*  h.   4!    w 6b? @?@)*6), bH GAHG-?@,  /             S  .#    Y  A-,b)* 08/@O/@h/@ /@?b        !/  Y' 0r/@ /@ ?b%+,+,  <;b  ))  P   %       2bj)-XD) *) j  V% %2&2jD `_b0GHu$ #$#$# $# $ #$ #$#$# $#        ,    $ &,  oc0@         nb2?@?@GHE$ #$ #$#$#$#             7Bg r@2.   `w_pob2   </,$_b    ab               LC   $        ?%&     IJ    #$    12 :&K"   $-"( @? ^n       3  !!!!!!  :q n I ^2G ST2G h   P .     `_pbo^% &PS T    ! (  !(      " 75  _.L# P  /'^9LK(%&aST&%5  Vl % k 5{! f    % @  S     ( >  R {  g0&#s #q V " %@  "  ( > 3  %(*   _   7*     ji  !  X   t(s%(?"AM G:   "(PLO*&  (    X>_&(  *  F1   (  1     F |V,!  X_ L M L I X   Y  2Hc 2!8&!    .  d  2 PO,!"!"!" !"dG!"! "dG *)*;<;<&)+aT^ $  rrrvvvvs l1 W6O        + !,"zyzyzy!"zy>!"zy ! "!  yzy>vwzy-       7     7 8   2:9 `_ 125     "Y -B   >       @?P^?,$dG!"=!"! "!"dG *)*;<)*)*)dG (       pppvvppppp _ %k$ *       ( 0/,$dG!":!"dG A fc   _ ^]  %b2     A `o ,! ""z yz "!"!'y)  =Va 7 80  M  < /< ) "a@;?=<[% <e`_p#_.,   . @?P#O.V  4  +2 / 4"  "   G .C0 @ ?PS?P#O.  =..@T?.|{P  )e LqP@>?PO.{ #a 6*m\.l kQ  -m4  r QP.O`"O3. 2m,&2w `_po2.   28< 8R2 s  7   08~ O ( v6]  K  K,  M:  KH  KV  Kd  Mr  K  K  K  M  K  K  K  M  K  K  K  M  K  K  K  M  K  K  K  J  L    K  K    K  O  K  K  K  M  K  K  KK  K  N  K  H  H  H  H  H   X x d +  874z 8 OOQQ  O  O QQOOQQOOQ Q"!O$#O&%Q('Q*)O,+O.-Q0/Q21O43O65N87P:9<;Q>=O@?BAODCSFEQHGOJIOLKQNMQPOORQgT1SOVUOXWRZYg\7[^]L`_LbaLdcLfeLhgji\S0 0/@_?<29^G ^G '(&P               0)<Az<&N9    32'('(2-  :8 #2^G'()  )0E/2^G ^GA     J>    2&^G 6^GHG ) ^]K^G #^G x '(C'(bD+a 5t    Ve"     7 ! v  cl+ `Q>=7@  s|   " - gh uj (B$~D) 7   .C ) 2 & 6  )  K # x C bD+ 52K%('#. -Y ''     4 B`xw x w:    , #  @3 z U &  !     4  {|u b6!  $   ![? K   T-Uh4' 05   Vw 3 3 G5K# 2 #    ''     4  #$ !"  !!`(' * )"! f  w 2v%5     F7  v%@B?27   I77  0/?r    ?  ? PEO`pO`1_     1 F,0)1LmE  @s? 4)*NPO <1&   3  y!f N 0/ 4<?      4''  ' 2 P4+)*C   )   +C . :    '4)*,)*9)*$)*2         &&,9$2 +4,rqr q+rqrqrqr qrqOOFEFEFEFEFopo +,q*>)*)*_ #)*Y)* ) *lrqr Hqrqrqrq " ! ,+  +4  8  43)4  &       J     _ !;%:   K     : w   -  X  _  6     !$G    'u * DY*', + OO       *> "!_$##&%Y*' , -0 /2,143656787:9H<=>=>=>= @ ?BApao4x   h24  . 4G ! " 1 4B # 4 . 4A# Y Z !">! )* >U"/   3   ` T   >   X511 0      T`   - A    >  >"!M  `k_4  ;  wd ; `v_ 4$ }a ! @I? Vb!   0     M0 00 0.04"K*9<88     -  2  /VA 9< 8 `_po 4) *) *0     [<     b` "7  0 `D_p _p_pJo 4 ) *)     6 7 "   ) )v# o     )  >14f)*q  q&rqF EF EFEFopo +,qE % C) *) *) *\G \G !12"12*[\[\121 2121 2121"D 1)*)*)* )*pop G !")"s\G K\GH&qrqyd   &  =:J v _  8     1          -0 XU    * D  "  %     B\6  )# Q'   9         4( ,$     w1  u+ G(0>1ܰj,  &      E%C  " !$ %( )!,"343 4343 4343:9u=>=> =@CFEHG JILKL  ORQRQTQsV WKZ[H^]&`_bcdc > =eP;O4R& ?    4       9` W)%  PtO`O 4(rqrqrqrq8rqrq@rqr1q  4  @ M HG= (8@1' 4qr q1rqr q 3)v uvKL  R)*"r&|LI 3, *    &KR ;P  WZ    ; ]ltZR  1  3   L  R"& |  4]   *"!\G !" ;;&:t&%|9A     9uvuv[uvFY` a  &    0/@/@x?'uvuvuv!xw"xw K,xw5" !j"     "  s  x  P !!)                 "   2     w   t*=ya % {      "  5"!"!$ #j$<#$ #$#D &'* + \(6      T !"{  1BC.  3:78 N#  (j?9WGx(7 d6 + ,+,+,+,   d      6,6LK+ ,>LKL,K.-+ ,}LKZ+ ,+L K>+ ,LKW     5 *'# $B ghy gh X/  e   $-e 7A <          wz   +h/01 +,  X&    ghzy 5? || 0 6  >,  }Z + > W `_po6_Ju,7LKL-K .-e+ ,+ ,tL K0  W( }     -,/J4 9       gl 0 5_7-  e t 0 =6,  !     * ! (C<< <6,)*+, )*)*+0,+D7  !" $),)2<mF"     5)2<md&C)2<m ,)2<m R$][<< 0pUo6v  a,. c `_p_p_p_poF6.-.+,$+,+.-. -,)*+,+,) LK L!K2L I. -X <;b  ))           /  uF  = v  F#FjYd ]          "! !2  X 669 l -,M+,B-,  7 79   #"#   $U5ye$5 l  M  B   0I6&*-,8+,  -,+. -.+, -.-,) < ,-%  ;ab  ))   0        % I  *&         %$#$ #$#<$  %  6,    i5!  70/#d|( '%#]S#ndxmpYLKP mdxx#   n0/dFq, FE+,t*+))  w$  t @?P?P ?P?P?P?P4Od+,+ ,?F E +,p+,+,2FEV     C C          $" ;    m mm mmmmmmm   1   n m  %4#C+) 0  ?   p   2"$ C C  000/dX        mmm mmmmmm m  mm @' $(        00+dzYZcYZYZYZ9 @    T" f ehgf  RS AD:{NS ?  $2 @?P?POdGYZgY ZD      . 1 4?8S5 Gg D  )0;0/&dYZYZGYZE    &&, E @?Pa?P?dYZ$Y ZYZY ZY Z,    q ` JR$   ,  0%0/d"YZYZTY Zc  &    )  ;"1    9 0/@'?d.YZYZYZYZ,G = Z `_`ZYZYZ,G E   "      !h2M?     E PO`_d,G !,G {       !r ! {0t/dVYZYZYZYZYZ% )  _  (\V  % @=?P|? d,G ,G YZ%`+_,G  $    X     E  _J      %+  poo,d 7;<0 0   @   '     yyyyyyyp0q pq  ee eqq p eeee e  eee  p v,+ Z$ 70       @ '  ~6d1+,+,+,       & /0     . ,   30      /1   J      SD6I  6     "g   PO`_2d+,+,+ , +,+ ,FE+ ,2      *)     ) *) *)(  + 2;2x? 8     2 3dV  6       !3HV3 9 K <dD             " '  %    /     7<  g<( B- d   6% --d O  3z Vv   "L A    d+,++,+,+,+,< +,/+,`$! "+,   #      'F       $'2      _            >qQ .( +<     / `! " d' -9 &yi &- 9 IS         ?'"#            !"4+ )*       -    G#GS         ?     PO     + $-D303..# ";   R        4c-A G9   !      6WXetp )    3'3'7-        !9 0B/@=/@/@/@/@/@/@?{$'#$#w          #$'4 ! 6 rqp s  Y K9   { %   w 0x/@#/@ /@/@+/@K/@?(/XW [ L        7 C  -  .-     (%(/(:/ 6  G   )&XWvy` !  opo +,@          # J        _ (&ma!( &y   !   @@j?P?    / /AY% PO   opo +,$           J        _ gb        $ K0/,   I    ,wP,    I @?)% p opo +, 5 J           _    '(9A| (Q%    5 \  =  JG  334 ShOj  =7x          )  x `_p_poo .134  " i f"LJoBq'( &78I  Bq@.?P?P?j   ZI @9?P?PFO   4 98! @N?P?Pm %h    Qkc %h @A?PqO P  _g 08/@e? x J U\>} x PO [\ #   opo +,!(   Jv  _ )  ):[/  #    !r8ghghg h/0ghg hgh7     $H  G8     0/@?r';( (5  1  ' &s U8&;@??POrG*.VS."d.0g/rG* gh ;< )*G* s vvs 'w V |       %rG*OG*   '( G *G * 2'    G    A%% % O     !rG* G* - /  @?P,OrG*) H  #"D   _` 3C    h/r\g h'       K\ ' 3r   O  2X2P-O rG ' *  PO` _'r%/0 / 0212 G *6  e o           ' '%      6 &2rTG*W   ;> 8G*>  ^G!2   +G*%G* 8             `_             !         -2U2 8TW      > 8>  ^!  " !$#+&'%*+ 8  w00/r *  # (### !$#>&I&#(## #     V 2rJ8787+cT87 87  #$  JI  0/ #    # # $@?  :%        34s #**22PJ+cT    0/,r15656565h1565 62H       + +  H@.?0r gd gh:     /I3 /  :V/ -r156 21 2gh )ghgh\-212g 6.  1565 621562g62          S s |    #   &  %   )            &  PO` _(r,ghghvghgh;     S #    (tE (0tL0,I  ; PO` _2r6ghghghg6215621212ghC$     Si' l 2} 2!8tL86d  C=r15621212gh  =   0rghghlghgh   Tx        0D/@n?&r QVUZ M&bd&KG 0+/@g?&rgnmp F&I]&2.r]^]^r]^]^7     #)  +63  r       0/@?'      /'e\')9> po&o= )     + y`  0/@-?(  C       (*-( ._   )   )2)6/  02f1ZY&Z)YZ*Y AD34;)>U*Z O XY  ZW^OHGP  # )*          `_p_p$o%f[\[\[ \[\ [ \ >563       %%    `_po f[\"Z%Y ZYZYZYF ?j     +! |E "  F `ofL*G $p*G [ \"*G  854 $4   (" m a TL "r   "   3000/f  jcy lf"[\[\K--\O[\ [\[\\ g\[\ XU   P  (  JI <%   e; w! 9 O   X   PO`.O`_f:[\[\XU +     5 4   [m fW--\) #$opo +,?![ \4-.-.&-,4+,  -.-.-.)-.#-.-.-.#-.(-.-DB +,).' $-.-.-.@-.HCD G)*/ -.  (_-- \Z)Y[\--\@- .%-.f[ \ ZY;Z)Y(Z+Y -G.CZ+YF[\-[ -I.DC -.-.5-." $-.opo +,? -.2*-.-.-.-.-.#- .   J! _ -* %  &G! "  WXM<;ab  ))    X ! ""!! !KU      k"!! ! # !Oz   $ & %x #B  """" M                !      )     5            )  +  G  P +  C        I  Y  % C %? """"     $    J   _            " }|  " """" "  E   JNx/b$W)#  $    ! 4 &    ' *),+,+)#.-.-0/2121#0 3(6 96D; > A>=HI'NMNM$PORQ@TUV /S TS T S(ZY_\ ]`)_d ebc@ 'fh g ji;j)i(l+k nGmCp+oFrqtux uzIy|{ ~}5"$ v  v  ** W f #   po 8$   " 9 $+2 0^/@? f+*G #*G "       3M + # " f+,).tQL{!#*    & %x    ''!       C      tQL{#* `_p_f3  opo +,?[\[\A[\-[\[\   opo +,?$! J   8     _ +>    $ $ #$"        J  v    _ iB%KZ!3   A-   #$f[\[\ [\[\I[ \(                I 2L   ;+ =  0 /       #  .   -Q  $ O 2   &    =      '2 9h 2   8 0}/@!/@?    &+%  00/ Y Z +,+,+,7w x+ YZYZYZ!        " m  mmmmm     mk % /0(D         7      ! > 6       ' 5[jY# YZYZYZYZ#l "YY#  ]G :/G :FG :G :8IJq  *       1   'poI )84  / F   8Q@+? G (  0/N9 @ 00/ >2  @h?P O      r  J0/ G:I JG :IoJ#  R  [ f          R# @:?PY?G : IJG :9W  J   0  '    9     po       ?U  8#(  F%>3nB88Q-.$  L9  "   PO8)PO <9%                 I 9)  8-.#nmn+AB,mBAB ABopo +,mnm@-. -.-.-.-.XG:-.-. - . nm-.XG^+ AB,+A B ABopo +,+mnm% # J        _ &  1 ,  -  5$L J      _ b>/ ,#       @ :     "!$ '("+ . -. )   % $F8$.-.[\[\ -.-."-XG XG B ABA-XG BABopo +,mXG x"    XU       "  X U    F_ +'T+%     '6)  -Z J  v        _   A  F #Ou9F"s  L$ "   -  " #xp_o+8 M *R*pZo8#.[\-A#(  aA)#A0/@?%8VSV %7%HF8          X5  0/+8\Y    & #$ -8;>  C8&K ++ 1D 0:/@./@I?84   #   CR2" MQV4 28D43XG"XG XGbXG jXG -vu . -.-. 09~ v)u.%- . G)- .k BAB ABABABopo +,ma !  / 0 !       "BX        P54  &KR$    @          Jv  _   2   u 1%t2 8D"  < Jb j  $#&% *'~.-.  7%: 9< /<;)> =k@ ?DCHEFILKL Q" 2 PO`_O8Y Q-.- .M, +*)c- .9- ., +-.x"             ,              5O(=SO"HUY8      < ]  .      " !$#  a8,rqrqrq*rq   rqI  !   7 8       af  1   ` "     |Z,*   I @?(8 BAB AB ABAB ABopo +,mXGXG -J   _    #'<1l+'      - '8$-.;- .m,+- . - .;   !     '  8        * ''. #;             9 "   ^8S-.-. ^S PPO`_8    #  \ P?O`_8rjrF po '8Bnmnm%XG XG ^mn m nmnmb      !" Q U  X   c *'&0c '@B% 4+   =     ; po8=nmnmXG XG ^mn"mF      &  561         f!0A  4= *    D  " / N=8,XG XG nmnmn mDnmnm XG |XG D          $   E<4{$8$I: <,         0    D0`/@/8#XG |XG %!      ! c#  % 68BXG (XG onmnm0pmnm^!*( ! ! ]    =5 J5:Z 5*B ( o    0   ^ PO=8nmXG XG Mnmnmnmn mB"  " "    )  <4p:<  M     B 6 : I8#       )   A *   & m `x_p_p_pWo88nmnmXG XG ^mnmXG |XG #      ! #          " """  #    Q0I n8     +    E     i PO8nmXG XG  nmnm nmnm$" $  $    *8     8XG XG  '$ y R  # &  @]?PO8XG XG \* ( *& )   %$   \ PO`_(8:XG |3G!XG |3G  -.XG |3GXG |3GXG |3G XG|3GXG |3G XG |3G XG |XG @+'V) **+S) )) +%%) **+ ) **+ ) ** + )**+) ** +) ** +* ***( ,(B(::  !     " %&), /0 369:=@ CD GJ MN QT WXWZ [@ po.oooE8XG XG #XG XG m- "!"!  + -= 65 4+* QJI H?> Q#h_  ^UV   * - ) * - ) -  @W4  A! +  /     #     $ #  %    l ! 8XGHXG 2.,.   * .    H 2 `_po 8@XG (XG+/  + .,.  H5# @ (+ @?PO2n" 0! 5@/ 2ll(2"( #(n-<#;-.  ( %  , "  * H7c+67  !    - W(d M.( 3- <  F    4B    n  n"G &B"G &"G &I          *  7 ySe  B   #    D <n  @  6 4S% (#    ' L    a(  c (: 9    ! <   Y1<X D2M jj )=S  B,$        b#   :  /   ! < (n'  -     $.     !    # %(  "".S%( .D          ;   f 7   "  !  # ; (  G00 0 /n5 65 6h       a)$  h  on-. \,, !         ?*=>zy           .- .  8 :      B        )%    /     8        &  mb    1        &  -   aK   ؚO$    )  , $  -  4  1 ^       9     ! "!" !#&% & %( )*)* )G PqO`_n-.-.-.-.-.  .   -"E`[\x    po]o on-.                "  Y J  K n4 y$ .     z  }\ $ (n-.f gytm                        ,$              % (g%(> .>           &   " !=  $ #()#,  - .-21 .  ( (n !   -               "$             % (+c$~ % ( .<         @   [    ! # " ! "! "!1"   ( n   + +#$g   9  !g#! !:xpop 1  J !f!x  z+:434.34<o#popo poC434-34< opo43O434-<o 4< opo po4 3    ((  /V(' $345Y  K  Q  X ije+x   _d-. i jij+~     ` 5  @?@ 3 43 J  =  @K L  r   NC}f_HkM+ Iz+B       A     ).->.       -   D EJI D CDI(D CRQT    Y(.-   e7:<43/0/0 popo/0#/ 0Y   ,#   /0/ 0/0 /6 "*   ;      "      $     '9N7e7<    #Y  ,      $#$ #&% &   ))@T?(:_ 0 'i'='x_ C0 0 lL    S 0/@ /l4Gtt        I)K4Gt Ml(- + + ,7  in :M8  E X . 43 4  %PKL   %PI Z Y  6  $  -        +    7    :l?( <9%-     <= "     A *$( AU2        +   Q -KL5q   dx:< 1  ~? (   %         "!"$ )(% n1 p>     p? @?P'?P?PO(p   /#(v(}(n(.@ PO`O`O`_(p       G $  D  (e\[((BVr7ē2pB(           !   "      B(  0!/@ /@4/)p     %  (x&L( !=p*         e3*pp'2*   .12  p'2@2?&pg  %H# % O#?0V/@?<     yI/ ~ 0/<nm,  75>, 0/<nm+3+ 0/< nm): ) LPG-(lfD(3.(O .8X .q  <( PO` _<1 2JTG TG .     "K%7( =  .<%F FI   HIF%   M2h0j/@CB78NG= 8$78?   -?9?.m $?0:/@BB78NG78>   )~9M~>B7878787878<78"                < " ( $X   P=, 7!"!+,$+, $!#)NMNM N MNMNM , "!   .- &     <;b  ))  '  *    ? BG4     =  w"BB)!k h       !     !D!9:9:9: 9 :632T !  D 9:9:9:9:  pipi   HD9:LG =: 9:LG  /2 :D !7      p D#LG9 : 9:LG LGLG%&  n k ] k%$()  #    %h D?;<;< 9 : 9:9: 9:   rrrvvrrrrvvr rq  rrrq r r        D9:@9?D1!u1xJ 11! PO` O`%_%D#9:9:9:9:9:v9:9:h 0yfsxqBABArq f %( / ,%%;%#       ,h @\?PODLG@LG "f_E.        !    F@  "  2  .   !-';;F, !  .  ** * *! !-';;Fg'$'d !$" 90'$'A&"t+", MC&" P(O`-O`O`F_     0'Mj P _    "!$#  6 !IR 1z ;<*   #I;pM / L/    _ 9mF4 3434 3C 0D CD765=+F  CAD4 5 +C#@e?| Ol : bЀ1Ѐ π %1      Oz  CD0-  7.4 VV_ "5 R7-7/4`R_p_q@ ;/ r     N 8  21 A  - 6    + ;G" *   0/@ ?)( ')  > ))( ) =/  @ /     B  /    #  `_p o-?/ - D:N-38&=  pgo= >M         if i Mp,o oX    9LPnOx6! p%Sl0J/u  <[ * ] h,r"4  3  X  _  @?0GJ     p   - ;_ a L iK   a#Qw,r "          <?      a0 /(N   jr  P (c(    j $0/NU  6 4B N ) <  B  V08?NM!=' 1/NG % `V_p[_N/CDC DC DCDy  ehw s  wx  5G/ y ?0N[   -SUS NqXWXW344XWlXW(X'WBG O ^W BA   ,+ , 4KLQSP(OR/#$     L/ [q4l(' O    ]Ny '    dO# N    .  : : ' 41}   00N !  (a N     0S)N\[!\[  " #    ! M( (! @?P'?P?P4ON       !   e    u~&-'H `_pG_N >J Ul Sw  N`_   "&   ""  1     pJogooB6N$\[ !\[\[\[- ZY T\[             )     6B6x$ !      -     )( H p{ooo N`@6     ^E  2 NY`_-`_  .T  6"   "       i   Y- .T  @O? Ng  %`_NV UbVUV G    E   =J  b  @[?Nr$ b$+ `  !H( Nc CD      4( 787878     4H   /WO Oc `j_Nt   @" lS!l poNr .-  =+3r .Ng 0M. ! MTg 0  NTCD[?   ) ?d T[ 0/@,/@S/ NCDBG 6           5 "g  6 4NH   `_ XJWV`)W/`)W@XW ` WBG =DBG BG^W96  / (   !!     !   !      "e3x r3 H  JV!/ !@     9N NX W X WXW3XWXWXWKDX WXWX WXW  0      3      /   )N/E"!"      - (o*?(  "0/E N      )h+>=> =D> =>=d        A(u@^(+ D  h>=> =P> =>=     P  P!O`O`_h     C o PtO``_hIJ/('!( |    9 R ! | 8%hb>=>= .G ` _`_)*/0/ *(G ^=>=P  $       (**  / 2he~z3\GPMx]^!SA\ eLO8  q  /G)3K b         #"#3&%(',+,)M0/./2 565P0)/ hB  0'  h2  dh%BAZBA&` _ `_` _`_%3  ]  $/ ZK N      ^  U      % 0/@?h/ 0/=0(G (G /#0/=0 /0          "e *  ,    =   0/@ /@?h/0/A0/0/0/?0(G |[\[(G $/ 0            p$ 5 ?     $   %KK( LKV^ R P H&5RA GKLKKLK L~L7  2$$   # &  *)   *);f);fU_Pf34fU DA  ]    ~ 1   dr + &%(V  ^ R  &5RA G ~7 a&%KKOKLKKLK L~L8  $'    ~ & P1 a&%O ~8 -7 "  /  0d/@??     - A3eKKYQR&Q R Q(R;$ RQ    aQRS 3  ,   >      $       $  ' G  # 7  3e3R99, 9& ( ; $     aS 3 @?POQmnG @G @U    3_ @?CFQ  UP~O`.mng   , MG&;1.g,  lG @ <&; G @(  7 4   &K Y  &   P]O`_(&2G \XD 12 , /1  (!E,( |.&   @2G \ h :2 + (G \ d 0  (  PO`O`O`_);< * ' !) 3u=)//; , .N  5wzB5JB$##OBW$#@$s$#W?#eB"+!B!pJoA &#$ \+5cZA p}o 6g     ' DX6g%''    '   ' 0' 9< G \$ N       .   E>  @ ; t $QTUXWZ P OK  , % 8) PO) _kRQn(+q(. V;<;<;<KL&KLnKL)   UUUKSTTSRTW  z z( 5  z z zz " -F9 '  / M hLiL9z H *   D&) V"\Vk _ V(   P_VF :G =LKLu2  X_" %   FF    "RV  $ VKL #VPOP OP< H 9\P OPO:G P       ) u  :o]tt   \       VF;< POPO;<PO&P&O:G N PO:9    2 %ij i(fLK&LM%&&     LKZc|F   & &   N   V'  V- 0"/V,  $!   V  5-  V MN   0/VKLKL&KLMNMN w  ,6[&      VK L:G r qrq:G5          6.(*/       5@p?V:GH:G    &   } 7" H @[?V| 3 4+*' ( gC(i   0/@? V+P O3P O% _   %      t (+ 3 % _  V   .-KL2   @/CDC:G K LU:G 0JIJI                /   -0   ;%;     *     4 1 !T      2> .   2    F@/ o ;%;$ %('* )U, -0[  0,/@N? V KLKLkJV    8 EJ k0*/@?VS C*" poVF:G ); LV; F ) < R B$   ?; ;$PVl I[ b/VL + B 'VKLPOP OP+ #$#&$#$ #$opo +, O POPO KLzK L J      _   y ~ 'Z$\a '/ &      y ~9  :0 VKLcKLQ_ 2 _ _  6 cQ `y_po$VIKL ^ OPOzK LK LK LK L         m9  ~!p  ~$`a$ I s   ~  ~6  Q0a/$V=KLPO ^ O      J#$ea$= fVUK LK LKLKL'KLKL ; <K LD; <;TSK L K L/     4 TO      0   7 6  g/   C U  '      D ;      @tO V"M y"d  -0/"V;<*; <"UX Y V"_2)"oU( " B0/$VPOP ]=LKL@   $j^$| @0O/@/@?$V"KLd    $}O*$"d Vy |*0"z 1 |(V? & 2VLPOP O#PO"POPO7:# +1:b;1L #"7PO2  P*OV"%:"@?1V60706 V$#$ #$#$ #$opo +,O:G  KL":9 }K L :G :G  /Jv   _   _/DCPP        1X       ? _1  6+u) 2  <      "  " !$# &%b*' , -0 14 3/ ;V POP:! 9 L:G ,KLK L :G ;<%;<(=$ #$# $ #$opo +,OPOPOX L    _ X_        Jv  _  AA;@`%tTI; !    ,      %"!($#& %*'(+ . -. 36565X@{?V  %&  }p 0/@?      E D VG )  @?P%?POV@DCTKL H9>K LA:GKLK L :G  :G  KLL:G :G   '.   )  "(      !{Q    DC  ) 7q%@T  > A      L" #& )* +'4VP OPO PvG :9  B:G $:G ^OPON!    ! 5#  ! !*  H HHHHH *" "#   "# y   V$F" "(     i  E B $ N w  VE:G !:G"   " " BO E ! *V-POP O(:G P'O+K LBK p#$oL:G /#  ! #J   41#    o # S!!QX! &1->=B#  #m*(-kA *- ( '+ B     /$  VMN#@4C$ #$#.KLKL $#$ #$opo +,O%!!  4   q #J###%%%)** O$""" "" _ +#4 .      * VK LKLKL0&" """#$  J/% 0 PO V;<;<;L KL'   3% ####"h"  && U Q   V"$ #$#9KL KL $# $ #$opo +,O$#$oL:G  :G "DC4KL@4C( &J%%%%''' O' $$ $ $$ _   ( &&QX&& ( % ( # #''  4"1%J"9        ! $ %"('3*) .4/ VKLKLKLDCDC*%%  &&**$$$#(### N    LVKLKLK L+&'&&% %N L =V; <KLK L+ ' 'A&&% %?5:   @?P6?PO(VPOP O;<; &"   )     1   0 !   "!" !*v 0/@q/@/@R/@ /@d/@/@ /VW$ # $o LK L8K L KLK L:G = LcKLKLKL KL:G  ?@?@ :G :G  0:G =0C CHH. . .QX.+ Xw)  CC0 0Cs0- -. X.BB000xG11 00- 1"" - 1 )- 1% 00 - 0%   Vh>?#1    " !$ 'L.-./21 436 7, +< =@ A DC0F G= V| KL7KLG;<KLK L2#     2 / 007/  ~ ~$H&Hr\ 7G ~ ~ 1 0P/@#?V);<;K "!" !"**;<;<):G *:G )K:K: KLKL*K LEKLKL4KLK L:G=L:G 2KLKLK L:G =:G "KL :G :GQKLK LjK:K:K LK L:\K LK L*:G:G AKLK L7$ #$#'$ #$#$opo +,O>KLK L$ #$#$$#$#$opo +,OG:G \KLK L;<+ 9 p #$#$$#$#$opo +,O# 9 LK:KLS:G f;` #$#'$#$#$opo +,O$;<0 9 p #$#$$#$#$opo +,O4 3X200 23 2QX2 .  .CC3 q ;D D1 5??4223??2  , ?????r r r2  CB3 5)2 54L23, 55556 yC\56666" & 3    $jU8V@/ /VU   :%-'5X54 4A@55 ' 54 44 8887 x? 595( 6  *<7L67/8 89 9 94::9 99 9? ?8:6 :? ?* 7 3J222 1 1111 _ +) 67J766 66555 _ 0K)5 8? ?( 657?? 0  J888 77677 _ 1 0 6 8L7:: )4 7@@y3J444 33333 _ .= 922DD, J333 22222 _ -9B B a)Y> @  $)5y/7|-" 8 D  'T$-GxP!a -&\'R >-=)    )    $!) (  %>1436 7*: ;)@=DA FEHG*J KLK6NMPO,R UX[` a dcfe h kn o=r s"vu x {~A j  :\       7'  . $ G +    $ #  S &2' $  $ * /! @ ?P?P?P ?VZK:K:K L) 9 L-;== 88 8 88L780: :>> 0 7  T  $     - i!V; <% KL;<;<; 7 7 8 88HGyyy AA A7A A:X9AA 2 6 66 6-.#&  : :8r:: r8?Ra`@  555a R]rkZ5 : 56A A |.zw& % 1 K   * U ; 60  z0800/FV:G :G  :G V<55557 7 : <  9 < 8 <55F#!FnN+0    FVB ?@?@ (=5455--4n%" P%O`O`:O`4O`O`O V !:G K:G !:G$:G :G = && *; =  : =  :=: = : = /  ;M)'N  ! K  !$  0V KLK L,> == = =  !*  , 40#/V#KL9> >>   ^9.#9 BV $ #$#;<$#$#$#$#$#$opo +,OAKL :G ;? A? AY` .._`? o... 7 u uuuu uuu7= @x= @ p  5<?    %    ! $ %V:G&B>A & V$# $ #$#@$#$#.$#$ #$opo +,O ;<;<; >>>>>> >> _ 8 =>>=>$#?%& -.@J@?? 1 45>?? ?? _ 9AJ g/0\ @.   z6   %B V$ # ;` #$# Kp#KL$#$#$#$#$ #$ #$opo +, O ;<;<; ` #K L:G ; <;<; <;<:G #KLK LC@ @ ?J@@@1@ @0@ ??@@<<<<? ?? ?? _  8 =?>=>$#u @AXAA C- u uuuu uuu5? C 440  t4 :OTAX              &#( ), -6 7:9< t9/ C   VL5KK"KLKBD?5"???  k#5"B VKL&'$ #$# $#;<;<; <$ #$ #$opo +,!O dKLwK LD1A 66 BJBBB AA =@@=>$#AA AA AA _  ;32;551 v t5 ;`:b" ]X&'       ! ]"!$v t!& `_V$#$#;`#$#$ #$ #$opo +, O ;<;<; <0EBI JBBB  A)A>>A AA AA _  8 =AA=>$#A (5         0 0/V$#$# $ #$opo +,O!ECJCCvBA BB _ < "Z     !V/F! `_p^oV;<1  L KLKLKL K L(;<;<; <F77 BB 7   A EE)        AB@@ E E -.-  =BB=>$#C  O R$-)_6"C1          10$V_G>>WHW<Vc;<*;<;<$ #$#$$#O$#$# K LO$#$#KL$#$ #$#$opo +,LNH$!    DD DD DD   ,  ,@!FJFEF65 EE 1"EEEE GXF1EEEE  DEEEEEEEE _ XFs9Ac*$  O     O               NII P_VH0HCV:G =LK L :G  JG XGG_ H F I  H<      poV':G ";<$ #$K0:G $J G IFFF F   O-J  F J+ /[-@ ' "   0 $V$#$opo +,OKGGG _ B  p VK B K  %V$#'KGG   ,'K1 M  POV.$ #$#=$ #$opo +,OMKJJJvII II _ D B .=   V$ #$opo +,OM   I II _ C+ ;    QV=:G KLK L :G KL/KL6N L N LXLL_ L J N  ON+  Oi   )4U7 g=         poV$#$op #$#"$op#$ #$opo +,OKL ;<;<; <:G &ST K LK L4; <;<; <;<:G ]OLLJJLLL JK K KK _ E OA =JJ=>$#KM o  OOMXML_ M ! u uuuu uuu) K N   a 8!X~&"      #& ).+0 14 5> ?] `#_pzoV/pRBBBBBB0   [9/p !V8R (PBOVcR7:UR    ;  #<VEPOPO;V .0,/ V     Vl;<;< ;<;<;< ;< :G :G W####"""uuuuuu""""uuuuuu"T V"  #!  #S V! 5       &&  oVyX  GJI  Dq%TF(Y VY    YYYYYY #       <VKLKLdcoKLdcyYYY N "*#WW3WJIJIJItI VV   ZZ "   $   7 * VV%RQ o<  _R <=  Boy  0%/V\        %cD.  5 mVK;<;< ;<;<;< ;<,JK L\ uuuu uu uuuu uu   2 >. 6 \,[( X X   eW/ 8s]Bx(\ !      ,J 0G/^^   N@ 0/@ ? V"n&m+:G:G  ][ [    []Y ]  {' "&+  V>$ #$#$#$#$opo +,O& :G :G r qrqrq!;<$ #$#$#$ #%$#$opo +,O$#$#$#$opo +,!Oq:G :G ;< ;LB;< ;<;<;<;< ;<;<5;<4;<;<; '\ !]]xC! ]l  %5 )    M'XQW;o=%>W$ T ])>  &  MMG    !"!&#$#('* )%,+, 16347:9: !?qB C&F$EFEFEHGKHGHGJIJJIJIDL MiP)ORQ TW7ZY\] `_`_\[^] b cdcZY&fgji ZYZ%YZklkldYZYZY;n opYMr%sZYJE)V$#$# $ #$opo +,Oa_ J^^v]] ]] _ X%Z     DVeb- P6 R@?V};< ; <;< b  ,^^ ^ ^^^-}}    P_ Vb =  @? V$#$#$ #$opo +,Ob`J__v^^ ^^ _ Y "[      pvoV.;<b^^     W;r.<V:G:G c`b _ b G1I  \# V,KLKL:G KL;<;<":G :G 2:G :G c````     "` c <9   cc```` s` d` d* ` d  _ cG I ,$R h   "  2   PMO`O`x_V-K L:G &d  Q a X` c "Xe,  &  V:G H9:G3@ KL KL!:G =L KLEKL:G2:G K L $:G :G   *K :L< 9 L8KLOKL:G K L$;<:GYebedcc3d  !"ee)cXc eeD Ceec Xc ee: 9  c_daec ec_ de e b ed fef f feLcfre  \  b  cc    eXdd fd_ e vv cf*      g  !   E !$%2( ), -0 /$2 36 7:9 : 9*<=:ADC)F  G8JIONKP QT UX W \ ]^ V:G:G z  :9:G 7KLgeg+   3C=d g &     -.h g efd h   hh. %       &            * .  . PO` O`O`O`O`O`OV:KL;<i   Vf 9de $    z6tMT9`L_1V,Cj  iiii 0W'50o,C `_po?V8$#$#/$#$ #$opo +,OKL\j!hJggg ff f ff _ a Oi? LD?!+8/    \P_OVvj* fJ%  000V#c,  E       #&%,  . 1  GG 5fefeN yzq? $ b   % rg/u0J   z       n2|  5    G )"43 }     %("(" 0~/ G)$G <       w )$ G *G      NB  *  WO+  .WO+0[/@ /*P    -I*PgG)G ?@   P )  PO`OQ  *w"!w @ ts  w  H!X**Q   * pwoYwxw   P3Y0q/K   WXsU  jK  2[#B 7  `_po ^P H #rS  ^ PO`_  / 0O;NY G             g;rQ*n9 ;`M..    NU   %)        'D   = , rG A t 2  4 ~y D9$ U\@L 3 ,A A7@Ce'". -R 'k   ,     j A  Q @?P?PO2?$j" ,lg    ts\c!!! !  $          2' 2?$j"  PO`O`_.# EF   DC!#!&  G v  /03   _8 .#  0/   " '   " ' 4/E." W    D_  3 D-3"v/ E  "/.12/***********.*2-J ,! / .  1  2 D * * * * *  *  *  *  *" *$ *,.0*224-6- +    6 6 "/.  1 2/** *$!*(%*,)*0-*41*85*<9*@=*DA.HE*LI2PM-TQJ @?'  ,d.gT 1<i~glA?E6o >69&:i&     ,+Z{@?[    2 /:9JIV)U  $ + ,Y{ )[08/ZB   :*  Z /yz    / @?ZH(KK GH   O POP$:(  34   ~glA?E { ~!mlD`A(      "!$SVWZ? %#&$L  "    y   * '6;@O   65> uG%  H@D?PKZOP?k   #%k`;_ZOP7=: =73!Z@?    '}   %  0X R.@a?PTZ    6#3ik H :#V o1Z ?# ?@?@?@? @?@? ?#E? @?P%L.KLK OPKPTS OPT S.TSLKOPO LKPOPOP9OPOP OP$   (%  ? JOP?OPOLKP1  3  '21* O 78    *             $                6+     EYV          <  )    *  Y1   X5     -   YV 1 F"  1V q =7 #          #E % . & # ,+./21 432 1.65 87:?8787987BA DC$F EJ GP M(T% Q ^ [Jdc f e,hgjm1 j0Z$u   $A3  7* d  %*        "  G0WQ> 0;u     0 Z( +   0V/@_/@F/@/Z  ?r 6 12 12   ondGB"  r @O&Z;`t& r& Z%QRZ  1O ~%Z@t?P4?P3?P?P?P?P-?P?Z^?   2   -$ 3/   $ '7^@??P;?Z @6?@6? 6  6 1U 66PoO`Z+@4? + 4 wawy%+4Z    `_ Z       6 f6 PO`_ Zj,@9?  J[,9 # %,<,9 POZ  q "EPEOZ%@?%7G%%  =00@0}0/( >   /      )= :( >      /-< 2d }}~pP* .   EF8 Y25 2]Gd }*2 `_p_po-3$}   >} ~P-   $   *  -r-K?3    > P- `_poXQ         0   V.^TyJQ PO`(_X %-N      #   %  $  ) *JL$ $       PO`_XA H758G O/    C  A`7#I#A 5 O poXl 8748G M-     i  oe5!#I#l 4 M `_X+8G 88G7$        1>O+ 87  $ X8G   8G 5 RQE"! "!"!"!" !"opo +,M8G  878^ .-4@            J  _ ; G    c   H7 ?   |_;\9HCm    5 E    "#( ' &%*)8,+^ XH"!" !"! "!" !"opo +,M=-N) 8G F8G M   < ^8G8G @V J   _ AEL !        A "+     G S dTB>H     ")     !$#&  #( '< ^*+. /@2121V ?X[    RQQ RQ         )25 .   s9? $K?[Q   "X     >&+ _+       "jS3"@GWG"7X7     77X         TXT   TT `%_p_)X9=>=>=> =>a=>=>=>=v7.   2     2   [(]!8D(9  a   . X,  NM NVUVUm=> =>           X ",     "    .     W%  7 C,  !\   l #      -K  X%=>J5KK I &K NVU(VU1   "*(     5     0-.-: 4M 222 2       " ) >H   ? ai(   +0  9 6    (]t0 #R * M9   g(%5    &   1XKX'   [ g'   0000Q/XKNGMNKN=>= >7 c)W bU VXJ{.     !   j</       7  X8G =8GiH7s8G       "    ; Iu  =i  s X     |  L  % ,fW _5 AA2  ;             0 C ZS .- 7W _5 AA   J c-; -  -N %%W Xc               )     +,     $ / {)K   O"dZ# #f"Y N## dJ c  -;  -   - N    % % c 0/@? R R      !  sM R R .4:/   &&    4 @4k FK 4B,AM 9 AmFQ 6P^(K P [e+@d%r2` d+ xe2Zd(2 d2 @@?PU?P?PO)$ - 6  ?B9 :/)r4)LM / 0T/@*?"     "9Y"(8|(2!8 `_) 6(A6 ('i PeO`_  )&8 #?0yH5I 9:9": :9 :9:*,9:"x    $)&"  *, PO`O`O`$O` O`O`$O` O`O`6O`=&&%M  " @      %   ^  6  ? :7 :   B:Q     1   ~4)P$   GH  & -    !b  VP$# %   1  B  C   E5E   PE F>x'w S &: #      7 V  >'P1O`P  " ! ew .00/P+7  N +YH+7 06Pr     ]U d  * L;P%VUV U9V UV%UEFVUV U8V UVU EFV UVUC 9< !T mmn u`  ,43   p   "&,  S%+9 |- kG #   S:   N|*&hh:wo  $ -2   &   `O .   2%  " !"!C poo P*^]d     %i8$ d  F000 /&PGe    &G7 &~&32e P;  +* g'M K]PO`O/Pb   .>) .>PO`O8Pf  7>$ 7XBPO`O.Pd+0-A, -!='P   $   #$ ,+ 56%&1  7?6@@97 K*   proo (I r    (N&)(X?.I L 1L 12?12HDC` DC 5 121X     )0sv   51311J 7 ?H`   5   1$LDG DGP 0 2  `_poLDCDC  DC 9 ,DA>7  9  03.   9 ,bL#?@?@&    bb#& } 'L>ZYZYDG  &8DG DG )#EDG^YZY  '       .-+ 6        &  '&,A '->  &8   )  E  ' PLO`_"  , + . )(+"q^H" /   ' 0/@/@'/@?J?@ ?@? @M!#$       mN25s    p+oJV < +&`P_po4J% 5 K P5M4rH)4%5K J?@?@;  _8    ( 5; @?J.>FG  1 ! .Z _.= 0/J*  0/@?J? @FGFG;? @%?@?@FG%FGJ   !( F     0'   ; % % 0/@$?J?@ ?@?@>  "1H       >$g+, > mPJX? @FGFG? @?@?@?@?@FGQFG Z?@ ?@  &                  { d]stKN uv/ tsVU8y  * *      qj  Sb   P(qgFP<uX      d"!$ O *P?OJ0FG    F1 0  `_poJ\[\[:FG FG ="? @?@T?@FG  ?@FG^[\[@   =  1l       # = i? 9  1 " #  !$)*)@ &JX?@*?@? @FG?@FG)FG6?@N?@?@FGW "          3   =    $7.E &2"& X*     (6J!W P$O`_J?@?@?@?@?@# "!    "          /h   # OA+J?@ ?@?@?@8?@ FG %?@?@FE?@ ?@r    w  mt         E9      H) +LA+;,W1   8  %  ! #&%B po(% /   </: F+J? @3?@?@?@?@FG ?@FGFG ?@sFGoFGw (  9>M0     <Z # (Ca5DCJFEFE&   !] ^ ] ^ f   =C?5?+6.GQ +v> 3    sn"%:('+   JFG/?@?@.FG )    #   .    09/J    )"9 6yu @W?P?PPOJ     ,  E  878 "  X[ fmP Ɲ60/@#/Jc 5 6 `_p?_p_JE?@?@ FG.?@?@FGl   ;#;yS E   .  lJ2  @?POJEFG3? @-?@?@FGD     (  /cP ;"E3   (    0k/@?JFG8? @?@?@FG-   U8    `_pso(c J G d5 E      w    _  8(    5 E ;G dGd        I 4G dQG d $   X      , 9 c ^j' I4 Q   #/0 /3qr0     >  !A:  G       3   UK      >7 G!    ! 3  R  R x9S    Xw qS   ]   + J@??GdG d   +  O  [Gd0Gd   "1 0 );-{ .K%( &m( SpMo)' U  ( ^";(m'  J 3]2hE2202 6T0 2E2hpIo&~  % Z"7%f'G x2" $##2 9e2]D"2  % $G]^""   AB'  $   LG%= B)  -% uG  $=PGeY"  j&!e]^]^(] ^N] ^.   '4 1>CD)  sEQdcf ,      4   (    9 &h 7&. !e(  N .  ?]^]^]^] ^] ^ 4   s #     5, ECD Q Gs1<E 1c ?  `+_po?V   l_] Zv[? 80#] ^6    (*" # 6 @v?P?P?PO5        5 m=5A* ;;$  %<  , <  *3J W        '*s383$#4  <  q[%<  όBv.  ,   < #3] ^]#^]^]^]#^#                  T / 0u z ) * o z  &5;r{f  !_  3 tM7 x K-x    a Di z 5:' e3#3:g9 ##<B #   " %   "  E!!D% 7 m @\?P,?P*?PO  % ,  * $ P^" ,#7 ! CD! |(]^] ^`     #b ( ` 3]^]^]^J]^]%^L]^ ]^t   &  %L -!2&"2 J%L   tP.O`O0}   /Y3/ > `-LK v J  lk  ^gh"Z4  4-( <  7<n `- ! G:'    B       1+K   LG U ^p] ^]  -  ]^]^  1?I" (            %    # 3<3 ,#$        %>  F1=@G T! 2{J  |st *      )  1  #Y H  % 1 7+;   L G  &   -    >, 1HH  H =]^]^] ^{96= 3    #<9sy~ < { (9 ^]^b ]^ ]^I( +    ( 6  4($yV(2  9   b   I(  b" 5   *  = "3<  v*< ]o@5?P?P(  On)K O `Z_pl_pl_p _p _H)E] ^UV2?c   ,  ( ' F"d@-F~ ) 2?cO 9   *% E  .   'WKU  .    ,-62*V* 'D-214. 6.   T<      >$x T2  'U      .    (       OFidz IN`( #s `_p_p6_p_p_.WKsWK    3T'8.sH  % 3   "! &   2o 24 PO      7A`  900000-0']^9#  ] -    &W   1"/ '9#   - O7: ,    )Ya7  PO` O)c p   $ G*' (12d'w(c p  DQ%LQ`d_po2'2 l2t82H  %ad e:*          % .2  Ԍ H   Y     Q   P=OG  :5 :'0h/r6 j;70@/I J  G J            0/@]?4X &1$ :  #    ,        8%4E]4  RX I    '  =  Y [ #   4 PO`_ G J<G JGJP      ) $IH  <   P S0*     iu 0w/k$    X_%+`   / $  0/ {{   / *    R  "`___TSh  $%%@?   !$ -4   )  ?T + .   3                  @?\   -    e        GMR  \[  [  [ T S   $@L?m1DP\O)G   c  pwc1;)   G !@$ ' Ly| X~i_  +>    y_' b8  xw'IP{ _F#:F|#     !   @ $    ' L 3~( abq t$qr0/0/*qr q-%- q tqr0/0/!qr qt$3R       ji >,   ~        ji >, x }~3 3s9%A(  $*  %-  ! $#&$%&3`E~%Ev \ cdgE#<:Ep%K%Epdo)~=( uY( A )j  :\  R  C6 ?   "  =(+ugL(% j :\ PxO=   <63<04/! !   @# B! ! i^/  X X  !  IH S PF  r 8G= %E   G .$    MP*    ~  9RPA) 8 %    E    . @?    0`.-  |_BC     zzzGJ  z,+, popopopo +,+X\[_s_ 5       z zopo +,+  _ II  'zK1\ (10& -J0 &K1\ wz_b M! )  8G  M`,_'zb#& =&OpNozy>  Z Af z51a 16  &;651a>  'z# $#$ #(a6#$'   '('('0' -vQ'.     6'`,_zW# 8  *0/zg   H FT .z@_`1q1&  - T;&#-):@1q z2_`  G  Ab2 ~#z51N1&" &;& "51N# =z/ qpW1 (<1M <! </ W1 zX%,_` %, V I[gJ$X%,# 'zL "5 "M' -ZM'=.L " 2zT (= (M2 5`M28T ( 3zf +- +M2 4_M 2f + 2z qror0/0/'qr qp"!2        ji >," 2 72%8 ' "!2  z"_`  "(U "(0 FT0 "  "(Up[o(z$' kL' -z) q poror0/0/'qr qp %P#=-           ji >,  5 #7- }Z-%3)  '  %P#=-p>o)zv0( R",(^qz opi  ? }%0, ipno)z qp]   (/( s ( ]  z( q pqr0/0/'qr qp!$          ji >,     ?%*(  ' !$ @S?zop/o p  `_._ 9_>%f /   z1 H vG 2   3    #]/    v  (pKB   @dV+ =  +0"  * WXl k(p   s`   )5 1( E4(1Dtoo%(7pg  P   /$    0/@/1b   0 8' 0 06!  { t uf+i %&06! Z8 A#3      1]]\ ; k*s7#                  !   !   !     ,  m Z  -_ Z*ne1 .. ... ! .  { ` =#3         -YY  \    ;    k 8T} )# YF 0 7  Ff7 Tu   :    wM5 F  ,  L" 4)G2+    #     3 21 ,1 3 %F#tF"+OL8Ag  , . F M0 0 A   o `tA?|*! 10 %-\?`_p_p|/qr0/0/3qr0/%Krf      >  '$1 , &  3   4KuG|  & %/ C  ]G ]00|=aba b$  g0n)= $ 38  J 22F2 P O7D '%  L<DG!"a&36 GL<v" R  #   !   6 b C'<EW<$ (Ĕ ND!  ]  &  3 6     <@[? 1  l9# >1!G G  v  z ) !   z"B \\vAfz     y| }:B               ] D   8   m g Ɣ   $B        XXXAf   @A?!G LG L  X  H)(!   0/@/R6$PjO`_/%N |  5:z%$/% w<6 W =stst]A'm # qB`"9#                   "   0:      CY < [/\ <"B       B = =  =  = ' 3: #   B0B/@/@?"oB ZBaXP O  z000"% ] 46  : 9  "ut $! ! ; + Hs6ut"*"(@?@??@?        (? d("NWZu, /6/?D   kl ]T  + X7  I F %(l/@(&%W) T B"vnG%%nG %  ;#+;  ^ b% j~4 u$  "nG %#nG %  ! +{ !k;  \  `oAwH "   "jnG %!nG %     ;  b  _-r.Qi    0/@/@U?"# @)<   &  ! f# )      ".- ~    "'( * >  ^r% ^16 U     &g9%>b   ^/v Lp               t V(" H%&OXE nK?" H4i4    - C1S  TM   TM $E#  8N H      R7\$/0     !S   %VI&   !+mnmp  q $ RI   3 $ RI   D   G </(  W)#pV  X  #z' " &= b"V (m5Z6,[Sn H                   6  %  $#O       !"  !"n-\d '    0%?D/6  |n   z  "  @3 E   8,W<             7GG6       -  !(  & "%%      B1(MI#$ PO`O` O0-  0    '`"E0- c| (1 2   3878"        MPOP0        Q  >s O FF) i$A#       + @ j@<b Z '  rEB#6     ! B;  , +RG  { ~+Q l  3C[, +R   po121 2 1 q r0 ! 21opo +,J      _ S 'az %      !    DG d G d   _   I=     poVKL;<;<mZjXXXX# %  iWN:b V:G :G  LJ LJ L %    @?V,POPOP G :G ^OP&O:G ^OPO?66666  ? ; 66 6; 666 I,     &  V 55K L ? >AC5 N4$  N    ' 8   '+PnO f*G [\ [ \[\*G     ),   ug       0#/@?/ru/G(/] `g_p_rgh"   "r/0ghgh  9  r4!  E4r qrq3    3W E 34  0/@x?4\0/ 0/+0g/0/ , %     \ +g4\G \G        4( E4f!QBS 0#&$&(0(  ((                    0  0          0  $ +  ) < % ^ 9W&$$gxw    0  $ +  ) < ( ^ 9W&$$gx|   0%&0%&  0%& 0< 0 0  0     >0>>>             R0# $ RR   @c?PO*V       Y< M`vuvuvu vuvu vuopo +,O ;<; _G ; <;<; <;<_G 2 vuvu vu vuopo +,J)   "J^Wz!     _ 8 =Yj=>$# m u uuuu uuuu J~wx    _ I b,T2~ ;M      " #, /0/4 36 56 ;) pouv u vuvuv$vu vuopo +,O ;<; 2- J%, !  _ 8 ==> y =5          h=  (/8Hu .BX J ;4\  G +N 0L/@ %<  C@4    7](I(&,7($ZLH?_D- yeAklBABABB   g78+% .8t 0 ) AK   C#(05/? 7  PGOQ )I## PO`#      -  D F{ # v,    p,ooo*jxG /!xG /xG/  Z   &  ^  n!"      n Y`~qx*UK,YE<0<8 *<j !    0?/b  60k/  0  w=>I$0m/)  2(?>(  @?P?P ?PO*jKL * Jux- *ux wB GJ  + *2/* < ! "0;/@/@?j"  >: j4"   &0'/( X   @?((V~'$ '(  @[?P?N ba %c: & N0 /&>% %%`y_p_p_<5F  M L UX # 5V!3/*4@0?: 2  (PO` O`"O`3Ob)#*)"*)-X)*        -0   5 "  U  Ggb)*)"*#    #gg"# po#(0Q%AN # (7C.("Q'! #/ 8`K_ 4J[T!4 V{3 .V {VK LS|{ {   ( V TS|ww  0_/@    a+>@   CO  M@   { Y1[@-  {   1!-  #      E" M" 2    $      @?nG ^nG ^  (( "  :;  !'  PO<0 /%=$ $PO%O$0$A$$P$OQ ) 0//   $  0h/ L~ #cw"!   ! !Z8:  Zn P M 5  0  0 U!!" q!%( T  : j    ? ;  $     ' 0  -, @  ) 4)Y c nPM500U  q % T:j 0;/@P?(  (D[(X* P ?d &+} 7 7&+} 7 f *} 6 N  ( } <  }~F}     + 7/U   + 7 5 I     * 6 h 5- _b  ( <   25  cn. +  3     ?  J"( ? f^ G H  G H G H  G H1 &  7 7   &    7    A * 6 N  (  <   F$$'(!\ @?POO. } S) Y N y)$?.   S X PO`DO`_  o jg r qd F5 >% P &   <  ) *   11   W(3  0    45:&  ^'& 6!E  +++I=  <  iyePZYst    %    foC\ ++]Q z3P  292F s)$u (c4(8=8$WL  L<  L/ 0"/LC$AJW$  (KI  J$D   8$$ J  , #   (A 8[K>7V1Z FJ & "% F#7t F@?P'?Hl  )@1@ ]% wUDV9/&0/ q & ,1 2122121opo +,   -1 212 121opo +,% G dG dm  /0Ar 0/q r0/0&.2X.* +  4!  D8    > .       uJ   _     _J _  874  &  & Mt   6   $@   )   4       L     -     7b] @ D9 %% U D 9  &     '2   % &% &% -*'(' ,+,  436 7: ;m  >=A: => =>=&B.ADC2FEXHGHGHG.JI*L KL+ A x3 \ 2 o2",$  P!O      C@?   9  B$  B  B  B @?F F $  F  F  F  F"O8  z N         8                          T t ^49@T? tT to  yEH  r  KK  r  r  r   @r?   SK   r   r   r   r   r   r   @r?   r   r   r   r   r   r   @r?   r   r   r   r   3       #:   ;      8      dq  !&             P                      8                     `40/!_l& !jx, 3 0 (  .   *%& !      =  &0     @.?8      n  0 q $#$#$#$#   usu 9   B; B P#O`_  (0 /@?LL%".-/   6  %//' "% P/O!  !#`6_AA9(90#/%%0(/0T/+*<#0/F,  0_/p]@,-&0F/qG 0H/Y ; [0D/@/ww] ? _2 R!! 0l/@/!h 0O/` +) !!MMM04/E 5Q 0/L?2N&0+/VV,0A/!B  0/"!)o X  # P     +  t9 PTO`3_    Y 3   h3    Y"C ,  # 8! *0I/@? Q Q0#JX   PWO`O`_24 n\&    2]<2&4  n  k`<n H G      > > <]F6<.   NG!$HG  # INF i&  $W  4GF %   T <  %  0K/@@/@/  4 "  0$S     (jA`%  ,(   "  ."!0 $or  D DfK(".mn     )$   0|/@/) 3'(?"+/L(a. PO$  3'p g1 PoO`XO`O`LO`O"      +      G!s! g%I .0 0/q    Z ) 4%. 9 8!$ &$" *  i & Hr 0%   CLr$nn5$& j  < (  (  v  = ; (n$(o.k=     # beh     ' +!  ,    @?P ?PO     @=>T ;  ; . &+   poo)    R   r   H 2 &     *   (d00/4 (R r H 10  >     G -  > PO`bO` O  #     -       F!7 # -'l   "' 4  "0J// 1KRT *% ?/1@a? "  + "0tsxw x #k  -9 " + PO S     2+  @M S `_p(_p:o- L     K _ C f      tcb@3{ " QB,/, -L       K      2    0/@F/@?!    /"  '6   14 _  "@i  N !     /      d/ #*:  `s_p _pX_3 5 S !        !2Y25 S @M?)  @4 (W-% (D @ P " o E      4"  Pb%* T((Bi. PT@  X4    o +G nH : h  A1 Xe GG'q r#tt- YNM TYT  Y Z  1  & q MK Y x Zq1 1%   .  U  "E   LA L0((;F D##wp KMo#F'  ' ' <   Q       7 1%d; U3*%"c *   '   j q %  poeo4 *29 </zA B D%   "     #43J4   &9 ,  /  Y    % fTL4321@=  2% "KLG(\#( & %     f TP  0a/$k.4#I+0S/~~] +89% ;0M ?s>,%>&# P[    C$#       /!," "!,  "# P((cQ?Du<,P5R .*.% rvnnnn " $ w  r  s EP CDC @   a dBYd !0 !!R  '(1' (' (Ij )'0 M      1ptx1pp p!p` ?4S i ,`a\\\\7Bz-++E/E+M+E+E+E+K" (e(A"!4"!       ;           ' 7( 6&10c (ޠ.A4@   ( (         )   8  0 )^[ X ]fc  ((s+( ^W F } J0G'@$ IRI$# #B<U EEP@    ! & J =   LE F ? ##[?W>?j=ZA; 8 ;5>,F0·O0@m$u F  0 /( )D-y)6]a96a  qh N  >lilm=f ^  n V6~#^ xV  N vF ~  ((;     V*=2"(  )  ) !2))'!-+)&-! -%"-!)!$2#>  PO  #!)   "  4!    h(vH   #!)    y~ L& @I?%   `ni l  S :#(%    4&7<}4o  n] @&H8% p{oo%    5`       :9&k%  5 `}_p)o uv4ij) G"GEZ $;< l ,! %  ' +5 ! %    8 -& + FE)a$,! %   2' +5   & 0/ :=/"$3B :`  3' ) Y[' " 3 i  )12 rW 4. 2' ' )Y[ @v?PO2s Y&   2Q),2&ZBs Y @b?P"O2&  2c52& J  * n9 M .<%(' &   4   $*g"_g8 4  *P0 n0)/0h  /3"/ <5 0D/N E 355. 0/ 6c 0 26=& 0 "!0 zF0 Hc AP:O`__," R4PYO` O{.#   nI0[/@?x0+  47   @*6   G %   Ih%  + c-$N!  ,+'&0M/ #=v# CN ! *4a     E!8 U+38 /V [Bu7 EW4   h*P 4/  ' - /h 62PC 7h*   )   g  $##T8' + ,     =v"X $=vD /=vMv v   %    M P' $,    .5  %T%$L%$   L%$  E     "%  A #c"'   A*  "!!' $ 6.  |   `[$D2H[  >f   fo b_ VU%RO2E7'" g -529]i !  W1YV1P1n@mgj"GGc(61g8.- .. m G )BEA %$q E > ( V~JC (% ~" ='$ c      <;#M"<'$ c !B A*D  V  )      #  *D  V h1B ABA  *)F  )"    63E+1 ' 'pNo  @ %l  29x ((+("   " (rHJ( .05/@0/@ /#(     "}e"  1+K(  M d('('  ) !K-      "    < 343  .     x   " # x/#     1  !K  #(H?Gt_3C3W- K-I [  M d      ) !K po&o o,%J'  tP " 9' 6+>34 4 u/"   E   @%J     t, T0  `_p_ ,%M" '   ! @ %)  pxo 2# >8 5! R  #  PKO`6Ob2& *U !2 12 1 I LK(( B 9 J Ul% _D!   ;.2s.3"0 42 .2    3 :.3  e -: R5:"0J.2s.30E/@/6     5c/:5 7I @X@@ @@@@@ %  A  !      "  z&  &&P+O0j   /5 /WP+O`'O;2 10 }  ^ @$g; 0 0Q/@U/@/@/@/)2!,&,2# (:H(P)O`)O92 10   >&9 0 po o0    5'  0r  mt q   pw0&FQ<0 6 5'0  :  #  C(  :8T OV S  + RY:.XS::@# C(:   ?  &  K . ?- 2+ .  .nunmrq|{ / (? 1XXE?J& K . ? PO .3VaZY^]hg  $U!.3  H  )  h.  Ha  f_ b   -.5.-21<;c\H%#2vVBHN) h.H po o2    4'  2        2'EQ<2 8 4'2 `_) DB WPWXSTIJ (5Z&(DB 3 JL.mfmnij_` 28Y&2JL @~? *)    s*) PO) /B ( (/B `_3  26[&2 @~?# *7   "s"*7 4 EJ .  38W#3EJ `_3 BL          23\&2BL PO .*           $U!.*          2 `_) 1B         ("W&(1B         "   ( 3 @L! 2.Y&2@L G J`. F##8Y&FJ`  <  )  Q'  <     4  <2_V9<B) Q'< `_ 39 $W+39 2J HGV 5  (/4m6r,(J4g       L7 BDc Vpop p o   eo  0SS,@4_,_ G 8 ` F##)~F8 `+)X"  P @?PO,@P:@$!'&' ':Y6,2@P: <"   5                $   B  =B IJ  ?< K<"! ˌB      Kc *5<  $       <<]B  ,"   !     !, 3+ 8u+"  (=no@ % z     -Z  6 ) % % )   %   >" )*5o)0.U(  5>)FQPKd (% .=Fo@   = *(F< F<*YDe X3[ I$<8 B5Z--yy@@Z7 8   Z}  v2 ;    ;0  ~  R4pISK[CQ[CZ %0(9 :9<; VvuvV<S($g  9   = &  '%0 <; ?8.8+  0     0K! ! "@3F.Z  [F vP8  .8K<    8Q<D!WF     $  $ FL $   !   %  !+ GP  .chgcdhFhdHl rF^/X W@1 @  .q(tsqru(|{uvTF|EDF4 F> @ SX/>FLFPFQxw 2828   28 28 | $F F  ,F(F/!0F'I8TSTMS TST STS{  ,    +,mYPZF8ZWZ ,   L8BABLA8B,A     $   mGPHL8HEH  $ Z H--UJ "M mF` M mL`uZ%0H;&i }f o o `}  v2 ;       $*  !  %  !1  pI @ K[ @L 5 Q[   5  Z  N D0 / M  !" !. '30/0)3434 &!" !&D@ A    cll @ih$ R"Y ;d&" (   %!"               ( ;<    ;" QQ ()JZQ"(Y ;d/ [. $ -D )Rj      ; 2 7 ;,g#  #hp[o2M 2u//2<BP'O`O$28 ; %I2$,P   pNooo,oo<$  #\X      <:q/7<%B#\  Z5 %  \2 D >  ( %< J/P-1   5  s   *< N + -  B;&0  "    0/) !    (:q3(?! 0/) !   1%(:rS(?!pAo  9 BX    # ( Z{(7   cMNpyv op {|{ bifx  P _`or mnm  V   _b n^_ `gps ^   o    @n Е ߖ  + wڭ X* } `(  6,      &       f              3          )2t2Q N @0  ) `2-: W = !$ )4  P)  %&(O*  -+&%_`   &   U}@%$a%:56#-+   % 3+7%  4  f_ #)^\  *+:&_- ./(&5 ->S7  5'7% = P4O`O`O`gO`#O`O` O!"9I !%!h|&P7 & "1       2   !       8        " 8/q;I"7 4?>$7 oE?"   `0U8 nmv u ^]fF<-5  M@?< EVU -  JZ2( 8   wjif #o RQ fa-b5 EP   k^] Z #ctsHQ ZO-  .L6 ER  aTSP YjiZ @?-r8    zyv   %7- 8    -JX"MT&;-BL &3     C   U    "    JMQ!  -B "G     -4 a     J  (    (      ,  -(  "( p/oZT,9 4 G  %   A    B    9-:F  2H 2I  3  <'- w zq0r }  9   ,' _    6    4$   1     .  1    1   .    .   ;   P }?N 9 Ju J#   6  8; 42  8; 42;4<4/@  C     ! $ 2!4 ( 2  &5 . %& K'?      1U%    6 % l<  ")TH@q<- $w8`j<  %"BM'0 /I'Fs   "  M !  %  J (/ G *J(2P*G/G(TR'F "!"'D &%&'D#$#c(F'('U ,+,(S)*).-+.^-.k-($/212'F/"  <p%o9o6  5j*F5 Pot6?>;=;' # ,!$;< 3?o=B5 :G3>o-R4Y  y |    }       ( $E6E F M;o&(,    !  0=o .0;oqvS                 ; "!$#7 8&=%z(;'@J?P?3 2qR%2   =   ! =|"58#| ;p 'x 0=  < !@wSHTv<"!=| BBBBBBBAB# %. /&/  X#%   8 CeDl\v /Z%.  m : ( f ! f03/#3817 f m:oBP  !!!!;-T%C%%! ! !+%*!!!!!F*&&%  tsC @=23C6D  5'#;DC} :@5 .  #2K D* 58FA11Ey /' #$F"""""<(-)&"&&m" " "N&&(6"""""u " ($$$p o#x3kN      #   9  %& G       0/@?CC!pEo9&e $G\ 9p0o R QA 5 > |2&            '              '    4HJ             7HGG R_f*1>KZ,0=0     " >" 3"  1  :,   888=:  !    $"z        ML:C>##  1$!C3]6Q50XB5[8: ) z8&   ? eH<#  1B$J6Zf65 >$  50 0h00/*! $ 1= !   C "     _ 0[||A   0{/6HW&       |  $V  0  @  $V ::#  6  ( (-B92   0     5 #) W\  (.       * .    %( 8&7&( (1    T ( E(           ?((# "X%.J   +     0  ?( G) I (=/J!qI| (4 `_p_pe_po(h#    #| I(7*:6# ( .h# @B?P?P?)V&    &|(7*+&( V& @o?P?P?3 / 2(c2H 0/3%%z2j0%s2%0h/rJ6,& ]   @"G   # -    #    =    .      % ] -0}%\( ]"(~nc   Q J }n3 " P')?nP'J } _U !, J ; JI"" !@; 034   !533-- +, '- -    U ,)P6aiU%_OJp  [)S!/  U @?P?P?P ?PO )    "# #   B 9&)  YUO $Qdc.  1 X+ cpi hg d W   F/  QXW  NM R E  .  &$6 L 4  3C/   p  IL K  B- Q . :PO`%O[#!. F A %! PO dS P"  S+++++63++68  v  &N  &&(    #   D 3 K (8e     =  0 )   ; i^\$   Av8  3 H  rPO PKDC     ?5 ( % _xVp `t$ < E?:W H  "4_  (F+  l)  $&  $  %N J   - 0      >   0      >   0   ^  d-a( wY"D(" !tpF   $  &      l _)? * 0      A    #?w ?Uh  ,*/$V    1F  ,    v :   = 9 ~,('O &*&&& % ,   ?'  v $    y)" ! ? 33:4  -9 4  +   F $&&  @',  I t C ;, , RSIT   $  V 41     ,Mv: =9   &~,0//@?2 #   2  2S4%2}?L#2  2   ' <*p!" 52  %%%$/    S *+< >Pi= <52Pp *N$D|{ N$0'/&\  %1"  %I,  0D/@'?;wu  I2; 0i/@J8 W @?PO  @'   ~   6)+Ccq Q2p -      + {6",!",!,l )) +,+   - . - .-   + R  ,%# qM0+,+'#  0  0+ &@ S{,+y{6,  R  , ,0[ .,!X*   -* *** # ,+2 9: E) &   @  A  > 5$7,;, ",-  @  @ @.+ * nlu@;IZC;G;PF*'g vp~ %4} C   %  A4 ~  * ` _p_p>_po(  !    (S!( 7W 0T  =F >h  2PO Pg;  ##    o<$ Z2 g PO`c_*^*R '12*c* 0/@g/@?--    ;     <5!9--       1       ) F?" j D  + "    ,/       , * D ED F%##i{Q F"?"j  D + 2 Bk1 2 : C ( '/3   \     8p   "  ?  > L =-  3 $#< GD . - l$ !$-,O  1  -2f     z   |     + ,    !      ?  ju  ,6-  <d@*8" C3 6L ;    t2-    q    )7+ 4 /     'Clkz  3D    %FEV /      #2 / & kqq #!R\2 !jf2eګj3ɖ 3/Ik G Ba !   (   ' ( '/3\ 8" #p& '*), +.  /2 1?>4L3=21-436538<7G65D8 7. l  R)C<]   (     F; RUV  :M)TRD)&<      5c 0/@ /@O?3I        ~    A73A3'    j 0\/@T/@;/@v?2@@@    #' )6!% 2h2         0W/@/@4/@/@/@p?(=/*              6'(^(           j (@?PE?-   ,g5!,'d 0 09/* 9*i+D* PO`d_( _(V #52( d( @?P ?P>?P?P+?P?PpO,"7 1:   +>;  . ) * 69,1,:    7 I,0#/@ /&c&$$  %83 %KE pdoo)&  > 3:9;(8R() u0/*V&)')> @??P6?P?P^O*3*'   $$  , ! )$7*H r*3*  @b?P ?P??P?P+?P?PuO,E":(' ' "' &&+>;%% 0 +!& , ''8;&&,hg,     :  N, B00/ o  B\    B  * "4&      +# D  - # # 3  D 3 RD (K2          62W>3=2\  bot   0/H0(    0:/@?     *&&&&*J 3 *@*? )-'"  \@  @d-&'%&&J   \ $ +0/6( $[>V7t (--'  \@    @  s^  F:?F     <+:  >  6      C         b    /    /"$E:%?%% %$%%@? %%%%$#>?>=#                    6/0 &  && &&  && && &&  & &  && &&  && && &&  ' :34      ,)*'R ) HA B; <   ,)*'X / NG HA B ],)*'^ 5 TM NG H  8.9opij  $2$ $ $$ ..F; RUV-.../$ $ $$ ..F; RUV-...# u K $$$ $=$>78 44ef_` 7F6~  z  EnollD{F ##{h Z { (/#e;_]'#. F::?     F     &  +       ! "% * %& %& % ,+, -.1 6 12 12 1 87 < 78 78 7>=>=b@ ? @? B A/J I JI L KV SX SZ$YZYE\[\[^]^]086696666 0/@/@q/@ /@?F&>;>#F&o  q      F##F&& 3 / 2   # 667F`L_J~8$IV#&Q I  ,F&:$9!9        F 9#9## ,F0 L:<F Z&80/< (mZ Y    ! 5 ;8    / E% 8   Z  8a8k"--Z X#  ` Z&    ; d5 8 ^3" O a6" Z u;j8d~ 8g--Z`g     Z  P" WX[ :7 ZS15Z!U%N !"" *7  ;6  ,3^! U&0 ,8^! U&0 ,8^! U& O.-.-.-<YZfc/ 2/ ab &  * 0/ ab * ,/% F%    zk   z    Y&  ""oo#\m"J\ J\J` <I$b& f-K8d.Ji.J  i  . Q   :  f  0   6d22u%       `    }9POO`_   `>($&_8&0@$+ <[4  < 0/ c    ^=&W X WXW  )?=[ c  `J_pot*  b=%`e_p _ v'%! {R x+%    ' #  & 4)RM NMN)MNMNMNMNMNMNMNMNMNMNMNMNMNMNMN-MNM NMNMNMNf-     LYh;%& LYh;%& LYh;%& LYh;%& LYh;%LYh SV aVK #(+( )- f %*R#'(' (' (/'(' ((|H#    & #*-='('*)*+x7( Sj-9J(##  / (  d  R'~'v' 2 z  @V?Pm?PO*        st `_p_p'o*    ;< !, # /CD 0/@?* ! )*!2 I00/*     q N)9 $*E .      0 0'(# (@N:7' `9%!" 7T- @ 0/@/@>?,0M b a`m+ inm z*,", j,&$>, 0/@,/@B?,0QV~ B A@MK INM'"Z._,",.n, &B, L03(p  2g;22+C@r?(;7>=  : yx  |  0; 0a/@5/($  ECC VUX    / cd* EN$  EC [+($J&x-$   & 5-x  \$= &x-('' 7%3($  S  " T  )$    # $ =9'$,+  "   #w x )V;2 _j*gt72$ $  S   " #  ' +CC6($  E   &$    ,  I0% r $&  -$  %.%%(' .%,SEE&H05  _75rN3J5$  m`$  E  $:=  ' s'($J&  $  5) $   &   5 ) (*="uG$= &     5) ' \#(    2 d       )  ):5w!9;L     2 d '13,:F$F   #   [32j:  $ $      #V U6 5 > 32 *iIJ2&"$e:7 $F   #  [32,'r' '=@,I)% ?  5)<,  )N%G nq)lkn m no5T)]<(*=<!"e,; )%  )  5)<@'&'@?&XC>  % % D&X14+3X-.- .O'('(x c   .|{|  _.5 !-  .';<; 0  5 6FEF A "    5656 /0/0 2  F;HW2   OX''`3_XJz"=: @ ?:XAB?G9 9E? 2-)LD     #   + & )4/(N(&/(L'N' %F,L$!"!"!"9  $  # # $=' / #$>e#+ Z-h*t;+$$9 u/e   ' %F3)L$!"! "! '"B  $   ' , m n =' 8'5 65    _ f}~ *>HRC( T;y,E($$  'B ' l   'pKooLl # +,0'/@/Ld   M " ' -`&_p5_Lt #g$I-LN7  ;`._&Lc*%3 % 4F\:  -   -   : %.')  Q.$-2  c.o-:] li-lm nk-l  s       #$ EZ   g l'y z * Q     /! C F H& ##Q5& F_: - -:%)  Q$   co\FF% 0/&\O%$"%  @?  Ll  a$88:8888Z|{#zy$xw(3D(  $!&; Y*+(l `N_pofst* f=) `_p _ fv+%.  ^$V9 fx@`?DU I BP9O`OL  ^ O jx)& *DCFElklk)lkl$kl kl klklkl kl kC !  ! `'My3   <hyg4Pg  zg %  ^g &D .7 'adg fe l"        Cc!fu|4y!| +oPO PO87*)*    'l'E / Ef#( (,+c>N2)PPhLSh G c('w & * #  $    C!! DE  pklkl*. " tQ ,   9p@obnb&  r  `_p _5    !   V K&   "$)!''#  4[E4&q&'($!VK 30/  hghg/3658  * Q8^  / `_"6  in # !O,#"D!6  0*00>/  c%()o ?B|0   #- 0/L 0`J_L)KT#(,# Ky0K/@/ R ( ) ] @ R 3$Fn9m n mnm0j6H  )  $36 @  [9   bk I F @##e#` F09  0j "" !&!"!"! "!,"!" !" !" 2"!"!"!!"!"!"! "!"!P    !      2!    1  }q0      ,    2! P *0 0,)~Eij8   /(m/D(E8 55>'~9q l /k rij@k)l$   +, '8$ iS   C77QB")[Y(>:9  /     @)~ql  4'  p|o m&[5  + 4=  5  `/_p@_38 7#8 78 7_  - 2{J!21o # _ `t_p_p _* 8 787  {-)M%>)1U7  - p+o(43-'50 'J-  68 78787;8 3~< 9:       5Idy*5,C  ; ~ / 218- )'@=?P?1 0a!.0v po o><!D !- > <.Z]0<!" z a08 78D,{8  , >$  8I#@$ ,87'#    $# *'# po oGQ8 787~    F##.,=FQ ~P)O.QR;-3&-S; RF(/ `_pb_)QT   (73(}QT `_?- &       \[\[PU ^  +  " >z; J> W14343  B834 343 |        , u . E05?" 2-=0  .  | L4 343 434 3439 FEH EFC DCZv. '64" 12)=       < .+)  #O"+P  &'3()(  < s 4 34 3"343 43&"343  C",+ c&{"    5:(fhv   " &" ~-* 4) 4 743* \YZ))  ) ;gU:Cy%$-/ )     4 `_pq_p_1        2 0B/i",~\0 3 I_ o6G9]:9:39:"9:9:+9:9:"9:}~}~} ~}N~aCDA'-.-pCBo popo69o po-}o5poDa9 : 95popopo8}4~9C4~C.BECB86  0U\["  *3 '          N#   78   U\[d  !  U\[| &  % : 7+ <7   C*g  U\[@  ^~} }zy U\[ =C4< `4\6" D c    0E &;+7 AOw(q06G]3"+" Na   '   69   &   }# Da           !$4#&4'*' E./8 PO` O`6O` Od<    $ b)  !?>0P/@/@/ dj     o!** }n dnv uvu       %  ) * )*C3.OE:c n     0/dQRQRl  qnm9$ C2! d5X.WAUQV.P4C V&UVUQVEvuvu#USV5.,Q&,$4 &  QE #SB ;WS   "Lt.ns 5.AQ&P4 &    Q E    #S d'' O <Hp  nHiQ `f(n" <Hp:I& 6  80+/@ /C D!CD88     W E28 !8Q   )wx;k   2xwx3   '           ;(-"(;2 `d_p._p_T ,  '!*4- (T  )"*"<  ""w5>#*(    "" (!T  )%*%V  %%w 5>#-("   %% .)VB;< j i; P$X \O & 3V r(0y: (B   $X `t_p(_)X*, ((*!$( z  |I024 (Z7@?|;Z  Y KL Y&"D   ) N   + f c* @Li *) (|OJ ("gD   L `j_Z>-B K  5E05/@/@ /-ZV    ,1#,.:  )ZZYZYlZ  YKIL ZYZYSx; :EF!   f c|I   (Ao7I(69l  I S   *ZZYmAZ YKJL ZYZYbw v  ( f cUJ^    )OH)mA J b ``_p _p7_p _poZ    / . 4COHE(i>"*/& 0/"Zj!Bw) 0s/}\55>L&Y& .2|"l kl.kl kl-klknm)R&"%qr qnmfR$Qvu0vun mnmZRoQ"] li.lm nk-l s        ($ EZ     g l*y z * H     /! C 25&}H3& 2F" . -) %  f$   Zo|F&|D %%0Q/|[ (*7# /*00&! *0POPO#&%,+#&#0POPO$&%,+$)$ | {  | { @?0 /:P 7P7|//   /Y/F  ?C // 0z/P 7|13    1Y3J  HF 130/&H %0 0 11$ po;o*    #   #& * % ]3.$ i2*A  %& S !%&4%& L %&7%   6    2   2 '&&rz5j9[ C 5{C2A  N!4  D7 )*8  %& ,   %&)%&."  )     $(   n2po7M = 2J( 8,).0./*X 8   6*  +       6      ,    @?      # )               +YY6    %'+     6, pooN*     >W0]C   ?B WX'KL12 ?@ &  WZ   !(          % + @E[\ ]`    N ''ZNHC"# _ADDgA P/O`O` _2*    u        2= 2k8u P+O`g_(*9:;/:9 21 0(453 ( 2 /$ (@&?0*e/0 /M !Z* *     *M2: $et+  7Gt    8  %" at   YZ$Y b  YVUPO`fMl  & KZE--l,Z*Ƒe @(*b` _ `$_`!_ $!<>(MK#/D@( .)'  $!^>+(*#     <snk tgpeH .4# < @?*2`_`_7L 27 -<*>T!e% &%& %J&% &7%&%& %& ! ") / >' =   z.    J  %   &  K+     <K0 <K0 0 L       A   < &Q^w>g@@ $ <666B>!  J 7  0_/@? ;&/%&    8-m ;& 0/ " ,  )#3'    3 2 R0R2 5 A Q , '5  P((>.)P, =  5  <+)<@+?0    < /#/R<z3/  i    'A%  %   !  K ]2 x /oofU9[2'/ A   !    K   ] 8  x21+2%12 12 1      ;*6   1F  )  D     G  iT    k0(0&3:9\<f<g   ;*%  1F      @     @  i T C $#  "."pIo%} ' $S;$j `_0" !* *  ") * &,#$ & 5/=/ PO3    2:~2 ?3  >   W > >I(YK_  > 7WU 3@&%B&%I     %202@BI N&%  )&%*B?@9@2 1 >;   Fc T  ST-(#     A   W "*\ N (<xI{D''fEuo}k:]HK N*:9<  F c T     )>5A W ' *\ S ;9       *, *)* )& )&!% N %  ] e \    ; :  J[PzdOlU9bc:*9N        ]  T \  DW . "  &%2,121212 1 ='. F; RUV-../    S   h > *     $* Cf I %D rv([f)""Inh D/ W     S? > *,   $*  f.  Id T= "#h op S61 +3d)NKLOP  1 '[-   [- Aa>:78 A,,"'  bab g,   [/ls- ? RK A( `%_< </*  < < <N^,0       $  &     '     ,J    ) [:;BC  ./*+" #    >?& '2367FG b $.F; RUV-. $ .F; RUV-.  )  9 #0 #6oo P0'R0.G   &        Hi                                        "          ! 1   # ,           m  b  g  ?           '     '                     9  t H -<      )          {                  n         [  f -w   $   % %"% %      @     ]  *    3 '       >    ! 'a     '          [   *    T    >   $     T     EK  8  8  L  |       N  \ n=   f      U C   ;    8   L H  &  9& 0\  O  ,  [    B   W   I   L :: H \:&t+PiA\&jC0[&j:&._=IVI&";TV^Kv,` K v#~paM r,^L j/A f xFYi/Xbm H-<i       {               "!"!"#$[# & %&f%<( '('*$)* )* " + ,+,+.@-. -0/0]/ 2 12*121231|63*87878>7878 7|:9:!91< ;>=#@,?@? BABABABA FEFEFEH GJIJ[I LMN*M NM NMPT CPOP ORQT STS V$UV UVW'XTWX WX WZ8YZ8Y\L[\ [^]^]|`_`_`_`Nad\cMf!C'D CDCDC'D"effeDCfef eh ghUg_jKLKLiLKj;ijij8il klLkp mn mn mnmn mn mn9 qtOst,sv[uvuv uDrqrWqx wxIwz yzLy::H 0S                       I  -&%" .F; RUV-../      3 >S             &        .61  )0Y00/K K(#lKK:fQQ [21+2%1 2 12 1 <*     .`kbWF  <*%   .`$ [21+2%1 2 12 1 <*     .ZkbUF  <*%   .Z"  K&% 212 1&% 0    !      *   #$2MfGH   eb; 1 %A  .   % '* 49/  k:           N   .   &   . h ;, 1  *2 69)  D T    5A A2+ !      7 K F>H(0#(HLIlNIT:  K0"w aQ !7 %A9   ;   % A -3 &N  ;o *2 69 "! "!"#$@#$ #&T%& %!( '(5'(A'551  l 6" >   M 5m3tA5 y >  M ; 0/"!0'/@/q   ,.5 @p?P2?PO   = >?B 7 :9DCB_!15 42A  S 0f/@,/@?  _ `aH Y @ [feHQ#+,!.0?      G 0[/@5?!        !/u!  :? 0 0/h  G 1Z 0/@?(   #(4(< #         DI 7,0afQG ? #   - pWo'oo= (    DK  ;-6  TRI= 3 (<<)0"/ QQ @?PO " e    "     + le H   17" e     [   "   $"2+H"$ g)  $   . " (q93 ( W $.0p/     3 H,?N%,X -*+0 ?27: 9 6;Br7, 4l    & nu ` 0s/#}+X"Y, C3   H  *   1     =J  S  )  f    ,    ) P *)*) 8!() 7   +   O   P $ 1H  %#H*U} A*.N )t,>n + ?  m  G    PCB K P  [V  3       P((PV cV U$'P 577.  `_po% :o 2E$ F0'/SVUL  IDDK2'0 `    u        |'!8(+Y04  E  ("!"*!"!]"! " !0%   "& (E (.*]   i_G83"!"8!AV  1 & 7\W+&#7 1hyo3f-8A  F       * # B  N  +F+C ##OVeF.XzzL e w<B $ /F"!#YKc*     (   # $ /F"  D < < oEb6<m<*c# $ /F"    " D c J)"!" !." !" !"!"! " !" !?T A! "4C  %         "  : = ~} t!  !)  ;E ) j"/ .     ?T   !     4 WOX! %J&2E  %($ " 8C        !    ~}  J            ! p    ( 1 e6:/[ S"e4 9-5$! J&2   #! p  $ t  8 <  !!p#oo8or qnq} %  ST {$? <  (P[O`O)`8B0(' (oZ(`8 , ^f' ^R   }.;0' ^f I3<2.  2n?|{7ts  T 4343&*" S$&  8=J ? IH >t5 ? o\G7 ;W olH&(G 5$  oC )H&}G! `  &   -'6$)PW olH&  ' G `  P`O`O43=2P12) / LK+LK    h>j7+ "C> 0G1,K) CLD+  '\ [\qr?[ \qrqrqPOPO; ,   6ud6 ' ? ;@O?P?#;"l@' "15 2 )       i @k  2  +  "D> (0H1+3N)STE (/W P 9 :O    a/    6m ----IA  29  ;/1:  6; @ 1 -   (   #(*Q 5 1*// / / /K  %D2Z,;  '+ &wl/:=:81Y@9   MEImP 5MaN9C]')C$ #   (     -    *%K1 po    QTW T+Yba\[ \  |h:Pp 7,  C( X 8tf]^]    "   !. "   '   #S & #$ - 1 / ;2   4TXQVc\C @2 . h 7$*' E`  75qu-$X7<  :x$&xw xw xw0xw (<;*. &  21+  r/ 05 8,;>!uE FER  LQR): (* F<#GmI)D2 : A$@&  0    76 5 l klk l k.        /.     T6 7      !z" dc chgh Z" tK   p 6> rK@ |A ::_|y{F# u"D"        PO`_:LK LK&LKLK0LK &0  i&Av0): & 0N,,,,` 3 ,,6",#07/A 8   Z     1>$*02z#(40Q'0_ts00`_0X0#((+#=&, !*0  72 ,'# 4 08 #4 = #0 :'{" , :#04ro6     K L  K L   : #0h0 _70+ %0# ( #3  19CL=0(F,rLrX  #Wxf,2>z  Fu(u h\.L! G)y 1  $  *0 2z#(40Q'0_0 0"!$0#X&0%(#'(*()+,#+=,  `k_p _   !V&  X W X W   N M f;6   i RX ;. q  q$IJXJ@J`KXKK L `LL M xM` M (N NN(O`O O@O`8PP@P@QQQ HR@R`RPSS S`!T!@T!pT#T#T$0U`%`U%U%U(U)8V@)V*V*V*@W+W@+W+8X.X`0X`1@Y`2Y4Y5XZ7Z9[:p[;[A(\E\ H\M8]Q] U]`VP^`]^]_@c`_ h_i ``ix`i`m0aoaoaqHb@ub wcx`cxc@ydyhd zdze{He{e~fhff(g gg@@h`h hXiijhjj kxkk`8lll@m@mmHn@nnPoopXppq`qq@rprr s`xss`(t`t t@0u`uu8v vv@@www`Hxx xPy`yy`8zhzz`zz@({X{ {{{|H|@x| ||}8}h}}}`}@(~X~~ ~ ~`  `  `h @p `@  ȃ! @!x"Є"( ##؅$0$$$8% %@%@`%%%H&`&&P ''(X@)) +8+`,،,-p-/`/H`0@118244@:;<8=x=Б@>(>Cؒ@CCpCȓJ Kh`MMNX@NNO``OPQPST UHUYY8[[ș@\ \`]`aap bț@b `im؜t(u`y؝@{{p|Ȟ~ ~x П`0@@@X@P ``X`` @x@h` pȩ x@Ъ(`ث( ج`0@ 8@@خ`8  H@h@@pȲ@ x`г(  p@ȵ `xж`( ط08`@HX` h`Xh@ȿ@ ` h@ @p@(@``@  "#P$@%%P&@'@(X **`+`+, -h.K Kh`MM NhNS ZXZ@[`\@]]@^8 _x`__(``p`a@i i` jj@n nhoo`p(@qst `H `(@ `@X@P` X` `  HH@H p`@X` X p  8x (`H@` P@X P`p0@@(  0 @``H@PX@ 0 ("@$$0`%' (8)`*+@+-18@36`7H79:`<@<=x>>(@ A@B@CD FXGH`JPK`MNH^`_ `(`pd@f fx@g`h0@j klPmmoH ppp8@qqr(s@tv vxx |( (    @  @ ``    p @  x  8`@@P H@HHh(`@`X`p@ `@@`` X```h @px p   @0!!!@""" @# # # P$@$`$ P%`%%H&`& ' `'@' (x( (@!()!)`")"*@#h*$*$+`%p+%+%, )p,),* -`*h-+- ,.`,p.,. -/.`///10 2X020307X1@8182`9H2@:2;2`<(3 ?3`@3A04Ap4B4C5Ch5C5`D6Dp6H6 L7Lh7@M7N 8O`8`O8@P8PP9`S9S9UH:V:V:`XP;Y;`Z<[H<^<^<`0=@ap=b=b> c`>f>f?@gX?h?h?@j@@n@ n@@o8AoA pA r@BrBsBtPCwCxC@x(DyDzD`|@EEE0FpFF(G`GG@HxH HIhII@I@JJJHKKL`LL MpM M` NxNNO XOOOP XP`P@P`PQQR @R`R`RS``SS`TpTTUXUUU@HVV@V@@W@W@W HX`XX(Y YY8ZxZ Z`[h[ [\@p\\\@0]]@](^^@^`_`_ _@_ H```@aa`a`(bpbb`cXccc@ddd(e` e e@Hfff0g@gg(hhh 0ii i"8j"j#j &0k&k *k`* l*`l+l`,l,(m.m`.m`/n`0Hn0n1n1o2Xo3o 5o7Pp`8p8p 9@q9q>q@A8rCr`ErE(sFhsGsHt@HHt`HtHtH uHhuHuIu I@vMv Ow`RXwRwSwaHxax@bxcPycydyf z`fxzizj{@o`{q{ s|sh|@u|u}vX}@}} 8~`~~0`@@P `X h`@`xЄ@(؅0xp ȇ  x@Ј(xȉP@H X``@@X P@ (`ؑ0@8`@ @@ؔ x`Е0`8 X`  `   p H@@؜8@Xp "П@$(&&ؠ@'0'(,8 9@99`;p<=>X@@G HP JJK``L`M`Nh OȧO PQT8TTة`]8_b c8c dkPklmp@nȭn @oxpخq8ssد t0t uȰu w@yر`z8z{{(@}~@~ x ش 0xе0@@8 `P `@@(p@P` H PX``h``  @``H P80@@PX `  x@h h@h@h  x(  @ 0` h   0@   8@@@ P@X``p `0@!`"P##%`&&+``,@-2x56(9`:;8<=`>H@??B@B C G@GGH@L@M NX O`O PH RT`WP@YZ@`Pl@ll0lp m`mm``o`p tu x8y@zz({| }}``@ @P (@h H` x`( ``@P@X`@h @p` x( @0` @@P @`X`@h`p x @(`08 @ ` @   H    `P    X ` `@ph`p @ @x (`0@8@` x@( ` x ( 0@`8`@@@`08  @   H!@!!P" "`#H###@$`$@$$8%%% &@h&`& &('`'' 0(`((8) ))@**`*H+ ++P,,-H- - -(..@.`(//@/8000H11 1`022 23 h3@34x44(5X5 5`55 6@P6 6@6`6(7`7`77 8@8x8@88 9 P999(:p:`:: 0;` `; ; ; 8< < < =h= =>`X>>>@H???8@@@@(AxA@ABhBB@CXCCC@HDDD 8E E E E!@F!F!F"G@"`G`"G"G"G# H #hH@#H`#H#(I#XI#I#I$I $J@$HJ`$xJ&J 'J'(K'XK*K1K6L70L7xL7L7M8PM 8M@8M`8(N8pN8N9O 9HO@9O`9O9 P9hP9P9P:@Q:Q;Q@;R;`R<R<R<8S@=S=S=T >XT@>T>T ?0U`?xU?U?V?PV`@V@AVAWA`W@BWBXChX`CXCYDpY@DYDZD`ZDZEZ E [@E`[E[E\E@\F\ F\@F]`F@]F]F]G ^ G`^@G^`G^G _Gx_ H_`H `Hx`@I`I(aJaJa K0b`KbKb`L8cLc Mc@M@d`MdMdMHeNeNeNPf@OfOgOXg PgPhP`hQhQiQhi RiRjRpj SjS k@TxkUk`V0l WlWl@X@mXmXm@Y8n`Yn@Zn]@o ]o@]o`]Hp]p]p]Pq]q^r`Xr`rasb`s@bs`ctchtctdu`epufu`g viv jv`jw@kxw lw m8xox`ox p@y`pypy q0zqzrzt8{ u{@v{w |wx|x|`y(}{}}@0~~~8@ @`HP@X`@`` h@  x`؆@8@`H `P @XP ` H@ P@ `@(؏0Ȑ`P`ؑ  ؒ(@@ؓ8@`@`@H` ``X` P@`ؚ @xЛ` (    @  ` X   h@    p Ƞ  x С ( @ آ 0   8    @  ` H  ` @  ! 8! %  ' P( / 0 `2 `W  \ x` Ы`` ` xa Ь@b (b b ح@d 8d e f @g h `i @m @o o Pp `r  s hx Ȳ`z ( @ ` @ @  P @  `@   p ȷ  h  ` @ @  P @ ` X   x м (@ `@     8 `  @@ `  H `  X   `   h  (   8 @ ` @`   P   h  (    0   P   @ h  @ x  (  ! " 0"  # # 8$  %  ' @0 @0 5 @`6  7 @9 @: ; > HP Q S XT T W `W @X Y hZ `[  \ p\ ] `_ x_ ` 0``  a a @b @d d 8e f @f @`f f  g @`g g h @`h k @y H{ |  P `  p`  0   8 @  H   @ `   P  @ H @  P   H   P   X   `@   h `  p  (   0   8 @  @   0  ` 8`   @`  ` 0 p@  @ x  ( `   ` @  (@   8   @   H  @ P  ` X`  @ `  @ X   ` @   h`   p `  x @ ( `  0    8    H    ! P " @, . H .  0 0 P4 5 6 @`6 6 @7 0@9  : ; 8<  > ? @ ? @? `? H? ? @B PB C  E XG H  I ` J J K h@K L  Q pQ Q `R xR  S (S S S 0 T @T T 8U V  V @V V W H`W W W PX `X X X X Y !Y `!`Z !Z "Z h"[ "[ #[ p#[ #@] $a h$d $`d %g x%l %m 8&n &@o &@t P' v 'v (w `( (@ )@ `)` ) *` h* * +` p+ +@ , x, , (- - -@ 0. . . 8/ /@ / @0` 0 0 P1` 1 2 `2 2` 3 p3 3@ 4@ x4 4 (5 5 5` 6 x6 6@ (7 7 7 88 8@ 8 @9@ 9 9 P: : ; `;@ ; < @< <@ < P=@ = > p> >` (? ?` ? @@ p@ @  A@ xA A (B" B% B`& @C * C+ C , 8D 0 D0 D ; 0E`; E; E< 8F= FC FD 0GJ GK GO @HO H Q HQ 0I R IR IR 8J@S JS J@T @K`` K` K`a @La La Lb PMb Mb VO[c0033iloru8D330x0033@ILD3`]8DX33IVY{sx}8D3368D33 k >JXR8D33 (}(4nHT(8H338Dh33xD33  xD33` %xD33 @&);FO8D33 XVkoU/533aG0000 0  @3@&&) P3`.9<?JQxD33-Vbfjv~xD33@M z0033n 0033 8D33 ;8D33  xD33@  xD33`4 8D33R8D33v 00 %`!88 8 ;  !(B B E !N N R '#(1 1 4  `p# 1 1 E $V V Z -`%   %  ! %22 2 6  (<8 )S( @)p *~(  * *(  8D3+  8D3@+  0033+ BF/8D33.K !%iu34`0e8D33`1{'3-8D33`2@>Rf$444Q9?VEK8DD335bptn8DT337*  8Dd339g; 8D34:#04b|8D33;8  HE2 414A@Zhl$064K4EXIM<DN4j4 H HT\m4v4MX37y44QPEQfl44 U 8wT44`V @644`]5 (3DGVah8D43]O m!HTly8D44@c Cnh  8D!44 h   ! !!8D43i !!"!D!J!G!004"33`i [!f!m!!!!!00t"43iM 0!!!""""""55m #B#F#y#####00"34o (###8###8D55o (#$$CA$M$u$^$m$"# #5!5q 0$$$X%(%X%5%@%#%565@u[ d%r%v%%%%%8D953 wy %%% &&0033x &&/&H&N&Y&S&8D<#33x (l&x&|&-&&&L#(D53@y &&&-.&&&(S53y &&&-:&&&L#(Z53 z%(& ''-E'%','L#(e53zJ1'1{rP's'w'28''''8Dr53{'''2H,(8(G(O("X#r53~@\(((2mM)Y))q)y)d#t#@#{555)))2))**r53Y`***2 ,,~,C,K,##X#550, --2O-U-[-a-\$D53 q---2----00h$r53M-..26r.~....$$r55@...2v //!/00r53`'/J/N/2f/r/y//0033 ///2////00330/00260B0l0S0c0$$$55#000020010$$53IP1?1L121111%$%4%55s112118D331*2.22R22228D332 222228D33 2 33;w33333t%%%m45W 333;k(444X4>4K4%D%m43`444;4444&D&43y 5$5K5;5555L&X&(d&m45 56r6;B7N7i7a7&&p'm45777;V 88#88$(T0(34@#28@8Z8;`8888P(`(pp(33s8W9c9;<9999(((3659 : :;}::#:8D33@ (:::u:;:: ;;)()55 M;_;;;<</<%<)()m45I r<<<;K:=F=Z=O=t*(*m45z ===;p>|>>>0+@+P+56(>>?;????++p+66 @ @+@;IS@_@r@j@,433}@@@;e@@@@xD,63 A)AlA;ABB Bt*X&(,m45i(dBtBB;~aCmCCyC-X#(-6)6CCUD;^EjEEzEE...43@?FFF;>FJFRF043b[FrFF;FFFFxD 043F GG;*IIII@0L033LJ]J`J;yrJ}JJ&D43`(JJJ;+K7KOKGK,2<2pL243r zKKK;2L>LRLJL22p2-666`LLM;MM NNt33(343`zNN*O;PPPP44443 _QQQ;+KRRRxD\6S53@qSH>53( `afa;b*bEb8bt3<>(?53C bbPc;dddd@@@(@53`]deseze;eeee8DXA33eee;eeexD33 eee;eexD33eeeFeeexD33`ff fGf00(f'f+fG2f=fFfhAT665`DB B NfILSVfVfYfIybsfsfvfI`qVfVffIsfsffIG@VfVffIfffI ffgI@1g1g5gIVfVfigI1g1ggI~ffgI@1g1ggIh  h hhI1g1gEhIq.1g1gyhI>1g1ghINVfVfhI^ffhI$n1g1giI`~1g1gOiI,@ffiI1g1giI iiiIw  1g1giI  VfVf0jI: ` JjJjNjJhtA  ,jjjKx 5 jkkLpl|llll|ADA963  (lmmLGzmmmmmADAF6S6` mmmmQ8n%n5n-nDAAV633X!EnLnQAVn00 B0B !&]ndnQ?lnon004BDB@!vnnQCnn00!(nnnT@nnnnHBDTBX6p6 2"n ooTU.o:oBo8D33W"IoVoZoTqoooo8DB33"oooX7"Y xD33"lpxppYpp00B #pppYpp00 ##q qY. 8D33!6#qqqYf'q2q9q8D33@!N#>qUqZqYpnqzqq8D365"^#qqqY|qqq8D365"n#qqqYqqr8D34 #~#qqrYqqr8D34##r+r6rYPr\rjrdr8DB33$#rrvrYC033$#&zr~rYlnrxD33$#rrYxD33$#rrrYrrxD33%#rrYxD33 %#rrrYrrxD33@%$rrrY!rrxD33`%#$rrrY$rrxD33%4$rrrY'rrxD33%E$rrrY*rrxD33&W$rssY-ss sxD33`&h$%sq0sY0qBsexD33&{$%sqIsY5qBsexD33 '$[svssY:ssss&DC43'$[svssYJssss&D C43($sssYtt%t000C@)$0t?tBtYPt[t00)$btrttYWtttt00@C33 +%uu uYPt{G{YS{^{e{00E;((n{z{{Y>{{{{EFF66<({||Y||00=($|5|H|Yf}||||$0F33=(|||Y!|||0F43@>)|||Y!| }|0F43>")}%}p}Y~~~~FFF33C){||Y||00@C) !Y3>E8D33C)NY\YdinxD33C)sY ځ́H$H8H63J)3{>{:Y_S{^{e{00xI K)(GTlYт݂III66`M*{||Y||00M* 1YP[gbxDI33N5*zYxD33@NJ*Y$ȃσxD33N_*ԃY2 +;28D8J33O*FIMY^00`O*(aoYjDŽӄބHJTTJ63P* !YKQhYaLDJZ56Q+wY΅څ8D33S5+9YF~00J33TH+ȆˆYۆDC U^+ Y!"DTK 3Uu+'IfY1‡T`KlKY+ևYlLR]WDKHK33Y+,Y{TLL[G,-YEPYDDLPL[^,duzYD`L`633@\u,Y Ɖщ00\,؉Y  ,H6@$X&lL33],TswY,̊|LL33`a,ԊߊY[8D33a, Yf")8D63 b-.1Yz118D33@b/-7LPYTLL63`ik-CQUYˍ׍ߍLD33m-Y5ALMM3t-Y2ӎߎ33u-YDT`qT(M#3YIpxt00$b33|> YpRXh^tbDbm43>rYGrr00c73>YY2>F0033>TiYs8Dc33Q? YO[kc00cm43d?(yYBHXPccc666~? YHNq\"(d4dm47?Y34`?YxDtd33 ?Ya"0Cde @1<OYcp{DCte`%@Y;%400e64>@H[rY00e66y@Y"eqz004f33@Y^00Tf33@ (YR(!$tff33@~AY$1+00Ph33@A@U_Y{00ph33AY&DCAYF7CJ00h`AB0kYPtbDh#766 kB*5@Y~jv i33@ BYnz`ihii@BYDj j43BY 8DLj33@C5AY*$\j335C:YT`Klj33@C kYIUtdllk|kkZ54`DYnz$\l33`DEY,m+8m33 EEWYS0($m33 "EsY{$n33#F DY0C8o$F '2<Y1CM[TpTp5v4@%Fbm}YX\T$p46%F(Y-%\$DDp66&F(@KPY^irpT66@'FyYL#43@(FY*)8D33 *F3HLYYfr{8D33*GYg8Dp33`+GYt8D33+4G Y1<LE$(p33,XG SdhY|p5S6 -mG Ypp53.~G Y>TppKGY/LD33 KG( /YeLtDXt63`MGY 00tM H'4YqKReLDt33 N!H_jyY00tN;HY`i8uhuSH _ YO[hvxvv96 ZpI18YP\eDwwZIlw~YDwx@[I(Y8xD63`\I #YJYer@033]6{~YhxD33]JY00$x@^AJYDC _RJ*-Yy100Dx`_kJ*8Yy100Hx_J<M`Y600Lx``JY#1+00lx273`aJDmYxxXx;7273@iKYDSiKYBƉDC jKY00jK_Y#0zz@nLr}YhDC{nLYOT|o7LY;ƉDCoPL Y@p0T`K`prL;duY{ |33@qLY9EdQDCp|sLpY $||teM .B(Y@||}>73RN Y@p0T`K`{NYPt00NYaCOVDC4N*]YUy100NgyY$DP N*&Yy100`O*6Y1=UM33OY7S_q́@tPYf/y/8D33P*Y>J00PQaxY00܂PYBNmg,<33PwYp|DC\33@:QYA3?RKDC@SQeqYo DS fQ K^bY8D953xQ "YdDOaX665`Qm|Yzq8D܅33  RY4?NH33DReYR^wk@0\h33nRY   8D43R3 C c Y?    HS5I7R   YA I E 8D؇33 Sd z  Y    8D(665uSL \ j YH    00؈S   YmC O X 00 Tx   Y   0CT   Y  + # 8D33 ;T5 J e Y=-5؉L73LTXr|Y $P\cT(YJ|D63yT%;dYgDCT3Y,m+h34@T&5@Y^j|sp]D؋4I7TgY".YL0 S733VU"Y~,700 rU>AY00UOcY0&33UepY000`UY|0\VYD00P33@6V%Y2*`p(34`LWY-_k|43dWY00 {W4Y$p|33W /Yp$<33W( * . Yp |  ̔D63 X(   Y\!h!{!s!̔Dؔ63gX!!!YW!!!DC33 uX0!!N"Yg##K#)#=#HBD8U7b7X ###Y`$l$$$$H33Y$$%Y%%%%%0033>Y#&1&5&Y Q&TWYZ&i&l&Yq~&&&8Df73 zYf&&Y&&&8D33Y&&&Y,'8'M'?'E'00$33`Zb'''Yv(((((LDt365mZ( )%)YBy)))))8D33Z)))YyT*`*s*j*8DD33@[***Y**++8Dę33`\[+/+>+Yp+|++s8DS53 [+++Y+,, ,)$33[.,D,S,YJ,,,,8Dt33\,, -Ys---8DĚ33@m\--.Y6.B.U.M.DC63 \d.o..Y....0033\../Ym/y//DCD\//0Y00000X&33g]1I1a1YL 22?2'222365^ p222Y 33533)3m74`%^ W3k3w3Y33333LXm45=^(44-4Y44544x\Rv73V^ 55#5Y'A5E58Dm43@s^I5W5[5Y[55DC^556Y66666365@^27=7Y7Ys7778D073,_0778Y88888D74 T_99R9Y99998D33 _ :7:~:YX;;/;';8Dp466 _o;;;YE<Q<f<Y<_<8D33!`<<<YD=P=e=[=xD46`===Y]N>d>\>T%P46a>>>Y>>Q365`La>>.?Y???? 33`sa?@@Y>@I@P@C8Dܤ43aa@m@@YAA6A(A$43@agArAAYAAAA8D33aAAAY0B8B4B8D̥33"bKBbBmBYtBBB8D33GbBBBY9CAC=C8D,63kbdC{CCYZCC00|bCCCYCCDC@bCCDYIDODZDTD8D̦33 bmD|DDYDDDD8D33bDEEYIEUEcE\E8D 365'cvEEEYF F+FDC, tc\F`FFYFFF00ܧ43"cF GGYdJGVGjG`G8lx33@$csGGGY{GGG8D33$cGGGY/H:HJHCH8D33`%diHHHY/I;IMIEI8D(33'Kd{IIIY4IIII8D33 (vdIIIY@=JIJ[JSJ8D(33)dkJtJ{JY/HJJCH8Dh33`*d JJJYJJJ|AC43+dJKKYƉKDC+eK&K>KYKKKK00x63-'e KK?LYMM4M"M*M8Dm431eMMMY7MMNM00X33@3)f "N>NeNY~O!OCO-O:O8Dm476yfdOpOOYOOOO|AD63`7f PP'PY*DPOPVP \$Dxm437ggP}PPY6|QQQQQ8D6390hQRRYlTR`R}RiRsR8Dخ46:h RRRY{?SKSiSUS_S8D8m43<hSSSYSS8D33@<h TT-TYnTtTTzTT8DX33=8iTTTY$ TTT8DȰS565>WiTUUY5%U1U@U8U8DذS565>i LUPUcUY_UUU8Dm43@iUUUYV'V0V:V665 AiAVYV^VYVVVV$hX33@BjVVVYW!W=W+W3W|ADt43C@AuC0`63 pHuSu^uYwuuuDCl quuuYuuuu0063Gq uuuYvv+vv$v00m43aq6vFvJvY0vvvvv0043 qvvvYvw#wwwDC33q+wHwwY]yiyyyy$73@q00z@zlzY8{D{b{Q{Y{DC73`~r{{{Y||||T34r||}Y}}}}DC463 r}}~Y~~~~~DC63rLOZY&0043@sYC0033#sY\)000365?s8IoY!,m+63js\mY (!63s(auY>;Gd\4DT63sǃYe/H8D33`s &GY|dtZ54@s(ՄYJViaPR\R63sY00T33s6jY ,J;CT`Kt33tȇY. }|,m\Rt33,te<MY 00 LtpY ӈˈ$$33etY ʊ֊ފLDd44ytċYh ht}00D33tY 3?G00@tVfuY DCDt ɍڍލY8T45t';UYl ,m\R43uC`|Y׏@00<33Cu (FJYDPg~77{u-;YA7!)43v̓Yj 8D635v;DY".hKS$33v$4LYDCt765`wėYocoz8D33wĘ٘YÙؙ$d43wpYS_|43w Y<ntz8D4953`wŜYG8Dd64x0Yd?)8D46x (YUao}HTTm46 yY"-;4D64`.yBY]Y%ZvZ8D33Iy}Y9ݢ8D34@|y $eYN $(T33`ylYw˥$X&p33@Vz3DHYqw}8D43zYH 8D44`z$AEYj8D44`z§ƧY`hd8D33 zYĨ˨8D43!{֨ڨY "*&8D 43B{9=XY38D@43c{ȩ˩Yߩ`46`{Y0;B0033{IX_Ys~00p33`{Ys0033{Ǫ֪ݪY ee0033 {0*Y77@|(IYDCT|έޭY2%+0063|A]rYʮٮ43|Y,700|,?YwDSL365|ϯY 0033} *D_YݰѰDwm4I7 d}(3YB۱ı̱(0465@~YEAMH\033;~\zY#/=733`~nYo̳8$H33~ֳY T~/FY$033~0δڴY*>6 QP78 ~N]`Yny8D33 (̵Y@LbVe53  ӶY*"$(<`HZ53 <LOYS^e00@ 8lY·ηܷx88`/  Y;GQ8x34 =]kwYT|`{ǸָٸY!أ0033  Y<T`nh0083YǹιxD33`ǀչY $*@068D 33 [|Y6ֺĺ̺8D`33 ,YPƻֻ$284@\IY]YuxD33|YSνƽ 33*%=Y1=KE8Dp33  Y2{8D 33@!\YNأ8D33! $Y8DQK8D@33`"i\_YQr00"cptY8D365@#τY8D`33$ Y%AFPK8D33$aeY8D63`%<YN8D33%SY%*/00@%6SYVbr|@0P33 )rkYkk00 33))<Yn00`63*ӅYS00`*Y)Xkc$33+Y_ke8DS53 ,4YxD@33`,lY h8C`33,{||Y||00 -(GY$DCpL73.*GY8D 33/YKWdDC(1>Y14HDC(33 2RY9أDC(332g &1YCU\003|dYcAMi[aDC337YB8D@73@8ՈYU 8C348!,0Y^:EDC`9NotYe00@:Y$P\33;L):>YwuL00`<dSY ?83 ?*:?Y*gs}8Dr56`@YI00AYa 00A'7<YjR^gq8Dr56BщwYnn00C߉Y00?83CY%0063CY*/4DD64`D*;FJYDVaj8D33D:qY~DC63HWYz<BIDCt LsUdwY8LD46LYJ8D33@MYDP\dLD33NЊluxY100OY9Ɖ00`OYv$$p33@P%;HKY chm8D33P<rYaAMj\b D 33`SMYDSaoY%3 DD833Ux9QUY{8D33VY\033VYv |Al43`XÍ-ITY"#33YY833`ZYIU]DS[@ fY^juHX&F84^Y-DTK^.RY`Tt0`YuDC@aΎ$YLRaY$33b܎tYDCbY8D33 cYdp{$33f!Y0`63f4YPDC<@g[ Y%+608CL33hn=KRYnzT\hhY DCx@j %eY +#m43nҏoruY={~8D33 njYX00t@oFcnYz8D4I7oY0033 p(Y1KXn|$44Q8 r>YV8DT33rV04Yo`jv8l33sn}Y}8Dt33t`Y/;UM63wYDCx  Y|00@xّ9TY;DC33y#YZ{T 33z:Yow0033`|Y`Yj>Jlb0@33YAMc]`pS83Y=DCY^00Ē =Y5AcO\m465YHD ,m33'4<YrV\lc$33`+s~Yz00EY8D,33@^(Y+eq8D|r53uYEۆDC L/YOƉ00!=HYYjvr56Ym00Yq00@ǓYu mm0033ٓY00 33&3=YOZfa0063mz~Y0033zY00\832Y 00,33i",YP\uck00<33z|Y00c83޷Y0033 Y8C0L33”޷Y8D33 ה޷Y0033` Y&2-8h339EJY`lu8Dr5Yj8DY00 W Y_)00f4?BYj,L00uS]rYn0\KY00  Y $00X`+=gYTht@"4dY ,m33`˕eGJY@yR\033ܕeGWYDyR\033p_bYHpp00 juxYN0C`YUhYDC`9Ya00iYxGMZT33`wY33(7YYdwo$p33`Y$33Y7HADC[pY?$ o~Y00Y001&Y$33Y>8D33@  YIWh8D330sY`2%   64@)Y00 @@$Y   l83@xYCO^V8D l86@pY8C l83 ߚ{|Y%|#00`*37YAL00SbmYy8D L73HY 8D l83 b!6=YYdqk8D< l83|xY00L 33Yv00ś 1Y _kt!/DCl >73 ۛ|Y |00`Y$s00 33 Y, J00 >73 &,Y\    |  33(@ T  Y    \ls84@؜$ / 3 YFY ^ 0\c s YphY DC  YƉ 00@   ! Y    T33PFZY\8Dg_|33@Y00|&SY43ȝ|@Y |#00@ݝJWYQ  &:2T33`'zY 00h9Y CO_T NuY T@Y ID[ia00H33 ݞY 00Y  8D33/EpY) (4465"#9AYZ my330Yw  DC`L(2iY DC`c)>Y ~TqY 00&Y  +`pf76`&Y; &2VK8D33Y iuY  p33#&CY DC3Y h t   ,m\R63C &!"Y= #(/((I?+]+v+Y3++00)Z+',U,Y@-L-j-Z-`-T)33` l0--.Y>P.\.u.h.n.$*53 8...YT.....\$D+83@/Z>r>j>"+633 &}>>>Y>>>>00p743&>>Q?Y)@/@D@<@$7743 *?@YN,700`*Σ?@YD,700*@@@Y9 @00+@@@Y3 @00`,%@@AY+A6A=A00l8,DVAbAAYAAAA`8833.ee B"BYeLB009`.eBoBsBY~BB00`/eBoBBY~BB00`0ŤBBBYBBB0090eBoBBY~BB001GBYwy1001BBCY_3cCmCDC929BCCYE3CCDCL:3S D&DEDY1DDDV::33 5nDEjEY[FgFFyF,m#x;337F GGYFGRGcG[GDx==63`8إrG}GGYGGDC8GGGY3GG833 9GYpG009 GGeHYIIII===73>".JJJNJY8JJJJ$?33@A8JJJYYKKKKxD4?33C]:LLLeLYLL MMd@33`EkHMSMVMY`MkMDCErM }MYƉMDCFMMMYZNfNoN8D4A33GNNNY6NNNDC4BHӦeGNY?y00@HNOOYh OOO00DB`HNO$OYi OOO00TBHNO(OYj OOO00dBH-NO,OYk OOO00tBH9NO0OYl OOO00BH\NO4OYm OOO00BI~NO8OYn OOO00B I(ii8D33`*iiiY}BjHjTjNj00S63CjjjY,k8kSkBkLk8DS34@TkkkYl*lAl4l:lDCT33enlllYllll00 U33~lllY6m$m4m+m$(U64?m\mtmYdmmmmx{N{F{8DD\33RU{f{n{Y/H{{CH8DT\33h{{{Y/H{{CH8Dd\33 {{|YS|g|^|,m\R\33 h|||Y||||DS4]33|} }Y(}-};}4}8Dt]33@F}Q}U}YCc}n}JLD?83 u}}}YI}}}}DC]/}}}YS ~~&~~00]C2~C~H~Yj~~00X~~~Y!-600]f?KWY 8D]33@YDC]۰Y$0D<^8^33LamY L.6H^X^h^8I7 U\_YXgl8D335qx{Y`8D33 _Y*0033`"MY?0033MYG0033yYˁЁ00ՁYF 8x^33@,7aYP$^^ű҂Ye.oPbY8D4_330Y"ƒ΃׃߃_560 Y-0<WEM\$D_55bmY?ׄ_`33 0/Yz1;``(`58`YG00wYG00@ČԌY8Cpb33{||Y||00 Ȳ( %MY!?5bb83`Y40c@c662  (Y0ccd4I7L'?QYQ+8d34@h+0YbnvxD33+|YbnvxD33 ĒՒY  Xdddpd56`ֳ2@Y);38Dd33@ȔY1'3B:X\T`g74 RkYs DC h33+69Y KP00@UfoYNƉ00PhӖYV ,<3xD`h33IuY=C`Xpii@i63`ӷY ȘΘԘژjDj63Y 00Lj33`&MVY1ϙǙ\jhjXtj66J YY$p]Dj83{ -xYfrjj@j89  {YM'L<DDnTndn83n|Y0063-ڟY#/H8LDn?865DR\`Y^p|p]D63` ZYtϠȠLDo33 l֠ YZ`qgDD$o64 }{YAK00Do33 ʡסY00do63 Y&&100 ȹ8DHY5xTooYJ300oYX28=0oo%HSZYCjto8Co339{ʣYG*8200o63@IpW[Ypp00c bvY'Ѥݤlp|ppm44y "GYL#p43Y\hp}00p33@úǦY&G/:00,q665ٺm}Y˧ԧާDC|q63 Y-Vb|kuDCq63 Y@DCr33%6YXʪ$lrxr63J0MY̬ss33 "\(jY3+Nxu665@$sWtxYuuu365&*-0YFLIxDv33&Y\_Y"xD v33@'ŻY4Я֯ӯxD`v33'ڻ&YQtvvv43(ݰY 8DPw34,=WlYƳҳ D0xTx 9bPSY00@9rY`oYxD$y339̴Y>JYMR8D4y33`;YpDCy<Ǽ)-1Ypcg004z=rYHs8D33>Y^FRskDzTzdz33@*YD7zzz64@G_Y ٹ00{ Hr Yjv{{Z5I7 J(YAɺк{93J8պYE{C93KνHYI!,3| |,9K4`LX9FKYMS_g|$| G9g9`MmYF(46`NŻԻٻY! 8D0|365 O;,8=YS_h(4j9OUsY1ɼü@|365PgԼYJ1[vgoTP|\|33Q|Ydpy8D33TY33TžYG00|T`Ѿ$Y_<Hzck|| |n9q9`]Y,*;x}8 33_ CWiY DC}bEY0033 cd"7@YT_shmDC~33czY78D~33 dο(JYXd$D@~s99k #YqI_PV00P33k nYDC93lY&=06DC33m2 L]`Yp{أ0093@nZ(Y00s93no Yh0093@o0Y{D93pY[ 2"+8D94q=X{Y+<FH84s9{||Y||00so5@OYolw8D33 tYv P33t{||Y||00 u'*9Y]c`8DH33urY}`lx63w1Y?&"X#x33@yK:VfY33`zYsuD33z $+Y9DQKLC33{{||Y||00{XlxYxD$33@}Y$6-8CT33~=EPSY]h00@~boY/;ME8D33Y!  8D33 86QY<ԄP 93 bmvY~DS<;Y\33&RY*O;CF33Y>)̈334NY]GS~`l$X&64YX\TL43>gY2LX#X43@%9xY_(8H4I7Y*S_g004YK8D33 d "&Yc8l(33`Y38D33 EYݢxh X33 {Y|00`YXdtn33Yv ?'33@ 6FjY00FYPtLE8D\8I7W UcmYz|35Y8D8I7 Y#3*8D357JY8Dؓ8I7`^0ZwYT59y1_Y#F4"f79mY7Ch[t33Y33YE3 8DД33` %@EYRkwTZ56`D(YmXds{ 69 Y YtX&3I7Y8D33@Y+` 331=IYVkox8D033` Y DCP35` 4EIY/YdtbDm43-(kY8  ̖94 @5KPYxDC33Y 7Y  <96lORVYn00(qY$9 FY/T\0h8I7YJT(%38YRJVg_ؘT69(nYZtbD93' YdCOe[DC:5@<Y8D433u*pY,8eU^|Td33Y) 333FY 8D33 YH p]C35!&YgP\eDC64"mY 8D`63<49YYcvn$( ̚33V~Y\jܚ43s YY'.a8D33  5DOYeqx~L@ Z53@YJ&,T6>(:':(Y8Dx*:3 @ Y8X 9:ZYۆ$DCz 5EXY;8X ț9:@YDCX  Y\>CHM0043S^nYp0033)YM3*200F[YvDSX33@ bmqY} 0033!Y00ȝ@=0 YDPk^E$F:3JY( U:I70pY:\$D8`:3YJ8D83 !IYJ)X43(Yz  + (X#693 > N Yh s  | $33   Y+     8|] 33 >2 N  Y?    $ f+ 7 e Yjf/   "X#33@ i  Y9r00` 8r  Yr00 8   Y   00 Y 0 Yw 00$ 9  Y  8D33@ 29e  Y   8D33    Y, 8 K C 9I7 R _ l Y     33@;   Y)   D83X   Y3 8D33@u !Y>5ARL33   YYI 8D33eyYQ$3I7YX&)8D33@-<?YeOZa8D33!ftYw DT8I7AY5 Lt33a!(Y:FWQ33^Y&)8D33(hvY\Rs:5`Y+C6< D#У33OY&)8D332YmyY3I7 M Y":5`h .<FY]i~vQ35 Y*?28|AD033tY D\R33Y8D33WYQ8I7!,7:Y3FQX8D8I7`"#_lyY833#@YI|AD83#d#RYXХ33%Y+6B=`33&S`oYT&Y 47+ WhlYz xDZ53`,Yw8D33@-.@Y::2D YP`tZ535r`Y%1::q960BgY#/;fKW0569Y[ 00(33`:@/@DY[ag8D::;0sY2HDT:3<0! 1 5 YYI O U 8D:;=C` m x Yr     00ĩ;3`>c   Y   |A|] 56@? ! !Y!!!00?(%!8!!Y: ""C"!"+"HTԩ6 ;B"""YZ"""8C34B""Y\p""DCd C:##g#YOI$U$$c$k$D 33 GQ$%%Yk3%>%E%00PGnT%e%i%YPv%bxD 3;G}%%%Y&%%%%8D34H(%%a&Y/J'V''e'o'Ы;4L(((Y 5(@(S(I(N(`33@MZ(w((YC2{)))8Dp33 NC)W)`)Yf))))"̬33 O6E))Y]h00`OV )))Y***|ADܬ33 Pn%*A*M*Y****(443 R*+"+Y&k+w+++365T+++YH3,H,@,365`W],,,Yr,,,,D!;65@Y -#->-Y--8D33Z8---Ya.m... X@`N./-0Y2 22b2j2h@43l~pF3J3Y-pp00@lpF3Q3Y1pp00lX3c3g3Y]yq300lx333Yd3330033 mX3c33Yiyq300`mx333Yp3330033m3333Y< 44448D83`oF '4<4A4Yhy44448D(;3`pY444YhY5e5m5s5xD33ty555Y555u 33u566Y6666$,34 x(677YJ7V7f7`78DP3;3yv777Y777D8 33@z777Y7DC(z78,8YQL8X8k8a88D33{5r|88Yr00|U888Y4,989T9C9M9̱33 }p999YO99900l} ::':YAW:c:w:o:$ܲ33`eG:Yy00:::Y :::00 ::;Yo;{;;?DCL63eG;Yy00 r;;Yar00@{|;Y|00-;;;Y@;; <<8Dܳ33I<<"<Y,<7<00 b><R<V<Yj<v<0Ce~<<Y%y00@3{<<YS{^{00<<<Y<<<00  =*=-=Yl9=D=K=LD33P=a=t=Yf/== 00l33`==Y==009===Y=00^==YD8D33}> >>Y2>=>D>LD33`NO>R>Yd OOV>\033[>k>~>Y >>>>8 33>>Y ۆ??DC 4(?+?Yq,L00`?5?@?C?YW?b?i?8D33XNO>p?Ye OO00nz??Y[ɒ?̒LD\33@???Yb???xDl33???Yi???xD|33???Yp???xD33???Yw???xD33@???Y~???xD33-???Y???xD33G??@Y???xD̵33a??@Y???xDܵ33@{??@Y???xD33??+@Y???xD33??9@Y???xD 33G@J@YxD33 G@R@YxD33@rZ@]@YrrxD33`G@e@YxD338G@m@YxD33SG@u@YxD33nG@}@YxD33G@@YxD33G@@YxD33 G@@YxD33@G@@YxD33`@@@Y@A%AAAPR\R34G@4AYxD33 +G@BYWrJBrLD\33TQB\B_BY]LD33@oiBlBoBYcwBzBLD33` }BBYjBBxD33G@BYrxD33BYyxD33BYxD33{BBYxD33rZ@BYrrxD33 ,G@BYxD33@GrZ@BYrrxD33`bG@BYxD33}{BBYxD33G@BYxD33G@BYxD33G@BYxD33BBBY CCxD33@G@CYLD33`G@CYxD33:G@!CYxD33UG@)CYxD33pG@1CYxD33G@9CYxD33G@ACYxD33 QB\BICYLD33`QB\BSCYLD33QB\B]CY LD33QB\BgCYLD33 -QB\BqCYLD33`HG@{CYxD33cCCCYCCCLDl33CCCY*D DDD0033!D/DDYEEEE̶ܶ333F?FFYGG0G(G̸ܸ33@GGGYFGGG8D33B GGYbGG002 iGGYruC033VGGY \033~GGY \033GGGYHHH33`H,H0HYLHXHcH D#33  GGY \033@2kHHHYHH+8D33@GH%I@IYIIII((4D;XIIJY (J-J;J2J),33 iNJYJ]JY9jJoJ}JtJxDL33`72JJJYBJJJ&D43JJJYUJJJTT(33JJJYdJJJTT(33@JJJYt KKKNX&43K,K1KYXK^KeK)33oKzK}KYUK 8D33KKKY,-L9LaLRL\l|66}LLLYLL0033!LLLYLLL8D335LLLYMM8Dr5`HrMMYr00a"M>MKMY+MMMML#63r޷MYqM8D 33@޷MY8D33MMNY0NN8D33 %N0N3NY;NFNMN8D33`RN]NfNY+`MsN|NDC NNNY>uNu|AD43NNYNN8D,33 ,NNNYNNON&D<43AOOOY(O3O9q&D43VOO:OY(O3O9q&D43 y(DO[O`OYOOL&T65%NOOY|;NFNMNxD33OOOYOOO8D33@OOPYQRPXPdP^P00L43`PPPYwPPP0033PPPY<P QQQܻ83`6-Q4QYf>QIQ8D33WNQYQ\QYrQ}QQ00365@jQQQYFQR+0033@uNR"RY OO00`,RBRiRYRRRDCH33 SS#SYVkISYSPS0033dSgSvSYCSSS0033STTYVTTTT0033 TU2UYUUUUx33:'V2V6VY>VCVHV00H;3 HMVbVsVY) VVWWHXP l33X*W5W8WYBWMW8D33c*W5WRWYBWMW8D33\W<eWYmWxWW8D33@*W5WWYBWMW8D33\W<WYmWxWW8D33WWWYWWW8C33  WWWY)X5X=X0xDO;3`VXrXXY Y"Y/YTܿhYsYvYYYY00YYYYZ ZZTh 0ZIZeZYZZ[T @3&[/[Y-*F[K[DC|NT[_[h[YJ}[[[DC@h[[[Yl[[[00[[[Y[[00[[Y[00\ \Y-\0033>\I\P\Y\\a\f\00,m\x\\Y\\\DS<@N\\Y OO00`:\\\Yz\\DC O\\\Y\\DC_\] ]Y%]0]@]9]8DL33`gAI]X]YAx]]A8Dl33U]]]Y0]]]8D33 p]]]Y^^^8D33`]^'^Y^^3^^8D33]]:^Y^^^8D33]]B^Y^^^8D33 J^V^m^Y^^^E8D33^^^YK8D33^^^YY^ _G8D63(___Y^)_4_;_8D63`N__@_Yc)_4_;_8D63n__J_Yh)_4_;_8D63 T___c_Ymqo_e8D63v___Yv0=__B=8D 33^^_Y{^ _G8D63___Y___0033 ___Y```00, `+`.`YG7`00 7>`J`s`Y`aaDx=, 9aHaMaYfqa}aaa8D43(aa:bYccccc67dddY2d ede0033@,e3e6eYfj[jJkYOm[mmmm`ih 33 nnnYEnnnL@ Z53oKnnYK 8D33iin@  nA nrnA9D`nAvoA%oooA@1#q4q8qA @qqqA!D@LqqqA"D`XqqA#qDeqwqA$qDrqwqA%qD`qwrA&qDrwrA'qD r&r)rA(-rD8r&rFrA)-rDJr&rYrA*-rD@]r&rlrA+-rDpr&rrA,-rDB B rA rrrAX t;ii8sA` u;udSJuAEu(u D( 0Nu[u_uAFduou8 DH %0vuuuAGuuX Dh `50uuuAHuux D E0uuuAIuu D V0uuuAJuu D @g0uuuAKuu D x0uu vALuu D0vuvAMuuD(0#vu2vANuu8DH@07vuFvAOuuXDh0KvuZvAPuuxD0_vunvAQuuD0svuvARuuD@0vuvASuuD 0vuvATuuD 0vuvAUuuD(40vuvAVuu8DH@H0vuvAWuuXDh]0vuwAXuuxDr0 wuwAYuuD0 wu2wAZuuD@07wuJwA[uuD0OwubwA\uuD0gwuzwA]uuD( wA_83 iiwAk wwwAH|; .wwwAP!AooxA`3!N xAp};!\xxxAx~;"o'x'x*xA;@" BxA`"rrLxA"ZxZx]xAl"sxsxvxA}#xxxA; #==xA3@#iBiBxA;`#8 8 xA]#8 8 xA`#&8 8 xAc#>8 8 xAf#V8 8 xAi$n8 8 xAl $8 8 xAo@$8 8 xAr`$xxxA&wyyA/ 'yyyA9D'yA}'yyyB*#zzzC#13}}}D;6HwwE7YFt7uF337F:37FE8 xxFS3 8rrF]@8Ff`8 SFx(386F8;8@FH39rrXFX3 9 hFh;@9{{rFx`9*rrF9?qqF9U F39jF 9zÀF;:F,:$114F8;F QFC((@; qilFO8H;F[X;<F`;<8 8 Fh;<!!!Fp@=1(e3F=ESF0=WepsF8 >m  F&@@>}??F1>F> ?F~ H`?!F0;?rr7F8;??F@P?0OfZF`@G@AY:?ID8DX33A2 2Y2228D33A:\epY8Dh33@BWYs8Dx33BtƄYs8D33CτބYs8D33`CYLD365C$ Y/:MN8D33DALOYRWC03@D)\igYYj003D?(oY zD6DWiBiBzBYwBiB00DjiBiBzBYwBiB00Ey 2Y200 EiBiBzBYwBiB00@E\igYY8D3E\igYY8D3EiBiBzBYwBiB00EiBiBzBYwBiB00FiBiBzBYwBiB00 F iBiBzBYwBiB00@FiBiBzBYwBiB00`F.iBiBzBYwBiB00F>\igYY8D3FNrrYLD?8G[iBiBzBYwBiB00 GiiBiBzBYwBiB00@GziBiBzBYwBiB00`GiBiBzBYwBiB00G0YD;3GŅrrYЅՅڅxD33 H ߅̒Y>VLDS5`HYYxD33H &rY%l0033@I,7;Y?J.xD33I",7;Y?QZxD33J>rrrYrrxD33JYcynY2>qxD33 KpYx 0033`KYxD33KYņ̆xD33`LYx 0033L.9<Y?ӆچ0033 M{{Y0033@M&&rYlnr0033`M3 Y0033MLrrrYrrxD33McY xD33NY0033NYxD33Ni9Y&1:xD33@OYx 0033OGGJYMJ0033OY0033 P(P Y[fmxD33PEYx 0033P_YxD33Qtr~YxD33QYC033QYxD33 RYuxD33RYuxD33RY xD33 S0ynY2>LJxD33ST··҇Yև҇xD33@TrڇY8xD33U(H@(S(I(N(33`V(=EHgsz8D33 WH1y/8D33WB#&H94:?#:8D33@X~FUHXcj8D33XFUHXcj8D33Xo~L00@Y8 LI8D33`Y  щ܉L- AD 963@Z:(Z^L6ʊP`;;]DҊP8D63 ]^==ՊP=Պ8D33@]voo~P{~8D43`]P8D33]rrrPrxD33]rrrPrxD33]rrrPrxD33] PxD33^ ؊R_v8D33`> R8D33`\ w׋R8D33a~ !U@38Dp33b :ELU4YdpkxD33@b wUIɌ܌ҌP;365`c UM00c  UK&1800c= ARVUcl{ؘT46dN Uōԍ$33`e_ ߍUfw$33f UɎԎݎ8D433`g @ UZo{,mDP;33i U&1800 j 4U(ŏL00`j ЏUP!0E8>|AD43@kC TdtUpÐؐːѐ8D33 l UJZk+d33 m U";3P`p43o{ WhoU&33`o; ʒU ,m33 pX3(+U54q300`p?FUrjhT8D33pB[fmU8D34 q^U33qs ULXa 8DP33rnUM`t~8D33t•͕ЕUڕ^8D33 u'Uq}8D33@vU00wr Ur8D`33w 4@Uzp|;3xUۗ&D;3`y 8"7U;;{<0ޘjUXҚʚL`x;;6nbiUu#00@ U@$80p;6jaU%(;347bLU'u#00[[YUYxD33ixD33\gkUozxD33UxD33 {{UxD33@)UxD33`yynUɝԝxD33[u۝UߝxD33UxD339'x'xUxD33UxD33UxD33@rrrUrxD33` UxD33[u۝UߝxD33@`UxD33`ynUɝԝxD33 'x'xUxD33 ]UxD33@8&*Ȟߞ;3 xD33 y}k33`6 43@!m{Ģ83@("0Ӣԣܣ;3`b""&cϥɥ8D r53"8 @8D33 "DPh$,33`#Yئ8Dl33># xD33 \#xD33@#y2=MD8|33#^rv~"#33$ǧܧ$33$9HLbqzDC%ɨ0VCK,h<33 %~00`&ɩܩ|33 >&   LXph<963@h& ҪɪT965 & ٪ AD963&"&1800 @&2GO ȫЫ@P`43 & 1 LDZ5I7'1003'r(/800pQ'100@y'BBCCxD33'xD33'?uxD33'JynU`xD33(gry00(ҬDC7(&1D`S(i:KN[fT8<q(o~DC`(ĭȭ T(@JB|$633(I&100 (ɮ߮".Tj8(8&100@)`D`d8H(<.<@))pѯ߯nz۳TP\1<K<) !6B^Vr565@)(k˴״pHP<;`)*0amyDC665@*ɵH33`\*&)#100h*-=ATOZc(33@*hT϶߶,m`r56`*i7BI0063 *0Qٸ l_<;$+Zt'DD8`<+#,)&1800_+;MWTsDD8w+#V&1800+غDC`,0 ,58D33 2,=HSkv}00@33,DS,(2`p<3 - ټ'8D954-DHs`l00`'-tT9- &18Tm465@G-?PWnju|0033[-xξھp]D43` l-j|0033 - &>] L#\(}<9  -(ؿJVoaiL#\(p<8 -(\ $L#\( <8 -CObl(,33 -0v%1J<D<HT<8` - iL#\(tF89 -&9_kzt(r53 . +X&m43 .N>JQ?'0033@ $.dpa0043 2. L#(Z53  C.)<bbnu/0033 P. X& m43 a. DP_YL#(Z53 n.r~y/(,33 |. L#(<Z53 . ,XaaL#(L43 .)tbnu/00\33@ .COUL#(l33 .dpa00|43 .  9ETN Q(m43 .0gu;X&U73 .([grz<H<8  .OL#(33 /vIQ$p< / 700m43 ,/8?00<3 @/  I(J00m43` P/8#15_CIN00<3 a/0Ubu%00U73 n/0` /0 & /FUXcj8D33 /+T`tjؘT46! /FUXcj8D33! /(Wcpz55% 0(ĭ%?.88D54 ' 60Sae" Qr53( G0Ar53/ 0( <50 0@ >BXdq(<<2 0@yUp7?4Hh<<`W E1za3?S[$33 \ P18h*<4TH<=` n1[lo|8D3`` }140033` 1J/ DC33a 1 *3LC 35@b 1<MTep|w8D33b 1oK' 0033b 1(+ #L#e5=@d 1/37a]8D33d 2jny0033e 2'#00833f 2NZ^p]D0r5g 2p]D0r5h 3$I(+0033`i 31AELD33m ?3 gswp]D0895=@o M3['7.8Dh33o b3DORgZeMN8D33p z3l &. D365`r 3?TXz8D33 s 3 nz D35x 3p(8D33`z 32y}`33 4x|  365@ 481yu00p ==` R4)8D33 k4N'HB8D33@ 4(mvs8NHLP<9 5 #oK|AD963 %5 %7\=963@ P59@1J00P` r5 Qbf|AD963@ 5(0@`XdtP<5 5u?)"=33 59<D1J00` 5FnrDh 5os#8D33 U6APTCnz00 ^6ŏ00 h64#:8D33` ~64#:8D33 6&8DP33@ 6")0;B8D`33 6P IfmxD33 6????xD33@ 6[[YYxD33` 7Tĭ}%8Dr53 !7Tĭ%8D33 E7 #%y[ag8D(;3 e7 t%8D(;4 7% 5/8Dp33 7IQY'j00@ 7' 2:33@ 7BVZ'<33 7'@  8D33 8';?'0063 8rr'r0063 18'0063 E8' 8D33` ^8N' N8D33 x8'xD33@ 8'!8D33` 8(U'X7j8D33 82>E'2N28D33 8Ubm58D33` )95k8D33 <9w58D33 O9=Պ5Պ\033 e958D33 y95'298D@33 9FW5epw8Dp33 9$ ~5Z:MN8D33 95&2ZGO!=6 :5!I,8!=6 J:5% 0@!=6 X:!)51OgwP`p!=6 i:5BH!=6 {:w5Y\033 : 5\,@H$(TZ54@ :wR5\033` : Vbj5xZ54` :5xD33 :0Bz,=A= $; B68DE=V= X; H^B@IUn8DE=Z= ;B &833 ;2Y]B00H63 -<(TeiIp]D_=3 d<IJ0063 <I3bDC <qtM00 <w~O00 <O|VoPR33 =O/ C b O [ $(T834 =   O  @ $ 7 xT43 X=(x   O   8D93  u= & { O    8l=q= = O\$D(m43@ !> O\$D8m43 2>(#Oa^rHXP<6 |>OVxD33@ >OcT4I7 >oK"%OK 8D33 >/>OOu8D33 ?/>O!u8D33 ! F?OO8DWM8D,33" ?|ODC33" ?OI(0033 # @MOt8D33# =@O*y/8D33$ \@GdmOK00L33 % s@xO&ls=x= ' @8VlO 5#.@l=q=0 AjuxO7 00@0 AOW T435 .A.IQOq}lxr53`6 DAO8D33 7 `AOAQg`T@9 xAuO!TTr53: AO2xDr53; A0  @OmL\l_<8> B OX<Pm43P "C7O8r53Q nC   Oi u  } xD\953S C   OxO![!i!c!xD953T CiB!!O4!!xDr53T C!!*"OB""#"xDr53W CY#j#r#OY####X\|43W C###O###xDr53@X D###O$&$7$1$TTr53Y +DF$t$$O%%!%xDr53Z QDN%_%b%O r%}%%%xD<r53`[ fD%%%O %%%%xDLr53 \ D%%%O %%&xDr53\ D &$&4&O n&z&&&TT\r53] D&&&O% TZ'j'd'TTr53`_ D'''OY'S('N(8D<33_ Dw''Or8D33` D'''O|( (((8DL33`` =E("(*(OgsN(z8Dl33 a SEV(a(d(Ov(((38D|33a Ex(((O((((s=x=b E (((O2)>)Q)K)@33@d Ee)r)u)9Dz=d E)֨&O)))xD33e EFUOXcj8D33f FFUOXcj8D33@f "F)))O)))8D33`f 8F)**O,*7*>*أ8D 33f PFrrOM*xD3 g lF R* O ]*%Dm4`g FO?uxD33g FrrrOrxD33h F\\]JO]JxD33`h Fb*y**1*+*+$+@P xr53k G0X+,C-H//'0!053@y H01112222LtD53{ H`222>22HD{=| I0233O33433T`p=3 I@J4p4t4zG5f5}55== J@555A6f66o6w6=7` J666Af8r8888833 kK{9999998D33` K999999:8D34 K :::21:<:C:a8D33 >L ::N:91:<:C:a8D33 TL ::a:@1:<:C:a8D33 jL(u::::::::<dd0<8 L0:; ;;*;3;X&U73@ L9;J;M;Z;e;l;0043 Lq;;;;;;00 L;;;ɝ;0033 M(;< <<$<k@X&63 )M-<9<J<]<p<y<DCL ZM<<9<<D`LP` Mu<<<:<<T\h6 Mo~<;DC M=== =%=,=00h 5N0i3=6=u`0=3 NN9=W== h>t>>>)x43@ Nc> ?:?#????P=43 NO??>100@ uO??:100 O??00= O??<\033 O?@@G:@F@33 PO@e@i@u@@@$64 3P@@@AA8D63 UPA,A0ARA]AdA8D 33 PoAzA}AAA8D33 PoAzAAAA8D33 PAAA& BB-B!B$(T34 QJB`BhB@BBBB8DL6I7 @QBBBPC&C:C.C8Dl6I7 _Q WChClC7CCC$(T=4 xQCCCMCCCn"\R33@ QCDD[?DKD\DTD33 R&kDDDyDDDD8633 jRDD}100 R 7E/EhEEE FF,<j8Z53` USDVF100 yS ZFFFhWGcGGGG=Z53 SDGl100 TfGGHcHoHH{Ht;365 YTDH100 ~TxHHIWPPPQQQ8D33@ XWQ*Q-Qr%7QG00r53 xW0>QdQQLRRRRXhx==@ JY S"S&S1SlxD33 Z8SCSFSPS[S;_DD ;; ZbSxkSnSsS8D33 Z6xS xD33` ZSSS6ST%TDC8  [ATPTST69`TkTD`LP L[tTTT6:TTT\h6 [oT<6;DC@ [TT6!TTDC [TTT6EUU8D33@ [( UOUU6/V WIW0W8Wx   ==> Z]WW6?&1800  x]WW6WW8D r53 ]WXX6eX!X*X8D33 ]1X33@ a^^6f&100  Ca^^ _6%_1_:_DS  ]aK_N_6?N8D33@ ma R_c_r_6____$(T Z54 a___6_```|AD43 ap#`&`6.`p9`C0>3 a>`I`P`6\`g`s`n`|AD43 a z```6a a"aa$(X& Z53@ b__Ea6 _```|ADP43  ,bp#`]a6.`p9`C0>3` Ab>`I`ea6&\`g`s`n`|AD`43 Sb qaaa6aaa8D >3 _b(aaa6abbp93 rb!b2b?b6Vbebublb8D|33` bbbb60bbb8D33 b0bbb6c c cc`>; b +c6c>c6KcVcbc]c8D >3@ biczc}c6ccl8D33 bccc6XccccLD43` c(cdd6Sdcdpd(X#)>3 c xddd6ee+e#e >3 |cSeiee6eeeeL33 ceff63Hf\fvflfl33 4dfff6eg)g>g6gF`33 {dfggg6ggh hh33 dAhDh6N8D33 d8 HhOh6Yh8D<33 e`hch68D33 e$ghjh6Z:MN8D33 ! 1e rhhh6hhhh,DL}<3" Beh_i"j6kkl D\@, elll6+m?mSmKm" 33. e[mrmvm64mmmm8D63. eJmmm6~n'n33 0 fPn_njn6xnnn00Xh0 /fnnn6Xosoo$lx<4 `foo6100h5 yfooo6 oppT6 fp!p%p6.p=p00`6 fDpUpap6zpppp$(346 fWpp6 X!X*X8D33@7 fppp6 8qMq]qUq$(T44@9 fwqqq6qqq"V33 : fqqq6r+rBr:rDT33; +gVrjr~r6*rrrD33< [grr s6 7sLsDs)43 > zgesvszs6 sssV43? g8 ss6<8D33 ? gss6=sN8D33@? gwss68D33`? gss68D33? gss68D33? gs t-t6lt|ttt 0D44@B 0httt6ttDw33B Ihttt6*#uu|AD43C ]h"u@uau6;uuuu 44 E huv!v6Yevuvv#43G hvvv6|vv w0365H h,7;6w!w*wxD33 I h3w֨&6?wKwTwxD33 J h]whw26lwwwˈxD33J hxD33K iwww6wxD33@K 2iw6wwwxD33L Ii wwx6Lxy8y-y@P `;6 Q j y"S6&S1SlxD33Q |kyyy6yy3DD ;;Q kyy6yyyxD33`R kyyy6zzzuD 43R kPz'z6Q2z9zm8D06>3 S kDzOzZz6ezlzb8D@33S lwz~z6z8DP6>3S -lozz6z~8D`33S Ll zGJ6zzzxD=>3 T hl 6zzxDZ53@T lnzz6z{ {Np6>3T l{({8{6L{[{b{33U l zGJ6zzzxD=>3V l 6zzxDZ53 V mq{O|{6{{{|ADL>3V ,miBiBzB6{!|AD43V Nmyy{6zzzuD43W fmPz'z6Q2z9zm8D6>3`W mDzOzZz6ezlzb8D33W mwz~z6z8D6>3W mozz6z~8D33X m zGJ6zzzxD=>3`X m 6zzxDZ53X nq{O|{6{{{|ADL>3X 2niBiBzB6{!|AD43Y Tnnzz6z{ {N 6>3Y vn{({8{6L{[{b{P33`Z n zGJ6zzzxD=>3Z n 6zzxDZ53Z nrrr6rxD33[ n6xD33[ oxx{6{xD33[ o{{{i{{00[ ,o{{{iB%|5|A|K|$33@] Do S|p||i]||}}Z5Y>a oD}[}y}io}}}}46d o~~ ~i.~9~8D63`d o@~T~~iKWem$X33g %p0ixT]>n>l ;p KamiÚׁTZ5S6m gpie(F3?xD43n p Ydgiku$(TZ54@o p@iqDr>>@t pɃiAMzds$(T46 v p"iĄτ؄8D34v qi!-B:8D34w Kq(M{iֆކ$8>9 q%,iHW^00x@ qgswi8D33@ q ˇχi)Z5>` q8!%i7CP;3 q(Xeii/{P<3` q iV&͈وԈxD953 r itoZ54 r݉i~֊ )!Fx33` TriŋЋu8D>3 fr׋i 8D64@ xr ijv~8D>3 r iȌԌی8D53 r(i7LeW8Dx<> r iύۍxD}<3 r8*iHj>> r( !i&ː>>@ s0+HviL5_~vHX8h>3 (s`JNinh|H34 @s(36i:E00 cs(3Li:E00 s(3Pi:E00@ s(3Ti:E00 s Xǔiȕݕ}<4` t0Fi"D<>9 ;t i8#953 Wt hi2,8D\$33` wt0A\`izX\T>? t¡i$8D|$33 tKYmiϢǢ8D$33 t0 0i)uǦ$%8$%<3` t Χҧi$80P(t&&Z53 tS^bifr/xD33 tzUU8D34@ uǨ˨x8D&33@ 4u2GK{8D&33 euͩѩ!0(8D4'33 uK`cs~8D33 uȪԪު|AD43 u Acxxt''` ;wj1\033 \wp«n.`p9`\033 |wʫ"2KC''33@ w_bfm0033 wtX!X*XLD33 w (33 x1<OĄt}8Dd(34 &x|AD(43@ Hx!!7FZQ@0(33 {xae8D(33@ wخ8D$)33 xxxkSkSxD33 x[[YYxD33 xhw2%07xD33 y0@Ưӯ)װ(\$D4)53 +y8Vx|)G )D)?9@ y.9@7IX00 y4?_7ŏL00 yiy}9B$34 yɲͲ9K8D)33@ y"59gt8D)34 zӳ90IhV^X&)83@ z 9*ݴ**96? :z0"GK9#ʵ<*\H*?.? Kz(ӵ,9ŶѶX*h**<6 z;X9htP(*+43` zN9 :$0+++33 zwL00` z*WLxSMW8D,33 {ںL #c8 ,33@ {8IPL alys8Dp,r53 {wɻջ"\R,33  {N{N8D33@ { %$1?3 | [Y*0\$D1?3 |(5JWμ,,,P<=" R|!g޽ ,,33% h| pUfj_t{AC@?963`& |7QIF`-p-33 * |^l(ܿ$--+ |k)99DMxD365 , |XD--44 0 })8YR]fT-0 =}K uB5-.X.B?33 ; }?kŏ700.`; }o?zŏ00.; }N D.X33< }1;T..= ~R*PH.. /33C ]~n|``/p/33D ~ ///E?=J ~BV033K ~),@0<0L033O ZN2O00O w/[g~q8D033 Q yyyyyxD33Q yyyyyxD33 R  133R )))8D33R xD33@S 1YUxD33S k'`أxD33@T  /41(1R?`` o00D3` o$H3D833`a &p ^{00T3d3a As$2-00h3x3a V4?(N]dj0033b fb w (4  (4 4 @4 @4 4 4 4 4 4 4 4 4 4 4 4 4  4 4 05 4 ((5 4 4 5 ((5 4 4 `X6 pP7 @x5 4 ((5 6 80P6 4 4 4 5 5 4 4 4 x5 x5 84 4 5  5 5 4 5 4 4 4 4 4 4 ( 6 6 (( ; x5 88h6 0 4 HHp7 hh6  5  4 0 5 4 4 6 4 4 4 4 4 4 4 4 4 4 5 0x5 8(5 5 4 4 4 4 4  4 0(; @805 PH6 px5 `8 4  @;  4 (4 5 x5 808; px5 8 4 ((5 ( 5 8 4  x5 4 4 ((; ((5 4 04 4  7 0x5 @7 0x5 pp7 hh6 x5 4 ((x7 4 4 4 ( 5 `4 4 4 x5 x5 H8h6 ' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (' (     4 4 4 4 4 4 4 4 4 5 0x5 4 4 @4 H4 P4 X4 `4 h4 p4 x4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 x5 h 4 4 4 hH 5 H 5 5 X6 5 `6 P6 x`6 xp86 H8`5 5 5 4 4 005 4 HHh5 4 4 ((5 4 4 `( 4 ( 4 ( 4 ( 4 4 4 4  5  5  5 PHHh5 4 5 x5 4 x5 h 5 5 4 4 5 5 5 0x5  4 4 4 4 4 4 4  4 04 @ 4 ` 4 4 4 4 4 4 4 '?rt ooM`TWdo^oMTm0  t1tr$ 2 A [ j 4W 4 4* 4 DDG>GE~GdOwnnvG@1+NJk-k-! pnGwD@@" A@4 k O) PL `! b7 4 Bk- L ! 7" ? -] o { p] X {   qk ) QV `! b7 ; 0Gk- V ! 7( U#E (c V X W  !   K L M N 4 3k]- !h  ` 7 ; U% vC x;& (,)+*2< Q 1         (,** *0*8( )  U< w jL  (65(=5(V5m+ m$+m:+ (5(5Im2+mM+(a5(54wYka]a]+MzRY %%U>!<;`~0(>  **_>b!<;`0&5#(0>LFzFd!<;`c0(>Lb>IL`L`w!<;(>(F>T!`S0v(z`0!(F>T!`S0v(z`0!( F>T!`S0v(z `0!(*!Ljim!K! 22a>x!`w0@(LLzL`0!(gXs=>G!!1tGy>!<;`0L!>!n({>.JGzOx!<;`w0(v>uLt1S~G!><;`0GzxL>aGzYmGz>`0|(>Y]GLL!<;*GLiiC`0!<;@>`i0(>c>t(>`0L L !<0;(>(> MGLL!<;2(&>ha]GLL!<;A(5>+MRY35-8G>!<;`0LO>O>  n%%%M|RY"G*K>!<;`0L>z<`=0`s0&5>!<;>L+;I!MRY3G>>L!`K0>aJT+;I!MRY7GB>P!`O0>aJTM<RiY^^jyG>!`0z`0L(!((+;I!MRY3G>>L!`K0>~aJT+;I!MRY7GB>P!`O0>aJTM<RiY^^jyG>!`0z`0L(!((M<RiY^^jyG>!`0z `0L%r(!(+ MRYpGu>!`0L>+ MRY{G>!`0L">"@MRYHGPl>!`0L0z0`I0LXu!H((}P 9P P o  %p!$1!U4;;!/1!01!11!21 ".J|"i6 "J"&"4"<---$- %@M#%64%CJ%C[%RW[%W%%%6%7"&Xa&'('&e'O%%r'v'%%"'1g''g'uh(>(''ge('%%"%%"%%" 'g(e%%/e(L'T%%"(o(o%E%S4)J)r'iv'"(ro'g4)5J)=r'v''g%q%r"(b)}y)%%"    %%\r'uv%{%|"e('%Y%Z"%~%"'g'E'Fg'h(s>(t'o'pg'B%%" e(''g(e(>(%"%#"o*%'o**G *'*%%%B%C"%P%Q%^%x"%%"+/o+oz+++'J) ,/$J),$J),$J)J)X,Z  I-I-M^-tK^-K9+z+-o-- ..)6.4J.:z.EVz.QV.G.F!H1z.SV.T.]R.pR._.^.`.rR.s.XM.XMz.V.z.V.!1.M'z.Vz.V. . ! 1! 1z.8V.y!&1z.8V.z!1.8Mz.V.~!1.Mz.*V.!1.*M'x./R.0.M.Mz.0V.1.M.M 1/oL/O%%"+Ho+z+/C//X/F//&/[%1W[%AW[%jWk01!$41!?41!i40 ''0z1*0'+  C?+'T1Dj1GnT1YDj1nT1D1_%%18%%"1)%2%272Bw2=w2Q%2%272>B2P}2d}.3)NY3Ro3I.3*N3 93E93.93[93.93293E9*V * 4%4245o"5S*y >5yl"5* >5l%"s5'I5h#%2\55W#%2F4k5o5!5o4H5!55!B6RvR6P    B6Bv6ph6g6g6sa6h6g66]76g6g%%%&%F%L"%U%V"6a|7X7cB6XvB6pvB6{v7_7!7J_|7X7b7T7m %M#%77K_|7X7$7L %iM#%e787_|7X7p7`7 %M#%7)R8'7_|7X7g&R4%7N_8|7X&77_898V9P9}29(>(7_G9}9y7l9Q5:#%2I9U6.4|7iX%%7e_B6v]:K %%"B6'v%e%f"B6vB69v:Y[%W&:wd&1;9V4%J;d;;W;!R;KW;_;W; W;4;lW;lH<CG9_}G9u};W;;W<K6<g1<<{4%< = =:1<V6Ig<+ =&;W;Rw=e=={4%=4% > 1/>+:w=:4%;>;1/>k:w=r4%/>:w=(o>No>O;W4%;/>:w=' ' 'O>4 ?-w=%=74%L=K>]4 o>a7?<i<j{4%<%o>o>e = =;@W<Yo> =??2??'????+?'?=?#?G?j?m?9%%*9%E%F";R[%;W %gM#%h[%W[@M4%S;R[%W@*?;R8R9L9\29s(>(7_@AA#8&9 9829R(i>(j7y_@';A;^A1G[@M89929(>(7,_@rA[@M;RAdAB2A@@@@/BD7?#VBk6CgG9l}(>(({>(|   +oB+ez+5+oB+Rz+VBqk6gG98}4% CE4%|7@X4%^%3%kJCvrC4%6g%A%B"7[_%%6h%%"=?!|7*X<:Cn<k{(t>(uC D7DK7_WDfRtD[%WD1!%4D/D%K%V E\"1!s4 Ex"%%"4)J)/E|7&XbE\WDREWtD[%W7_(>(%%$1!*4@:E@ E" E"%%"4)J)y)%%"ES%%$@*ES Ew"%%"[%W+FN|7OX(i>(j Er"7_XFR|7SX(m>(n Et"7_[%%W[%(W7:6!B6v7y7 B6/vG9}GG G\GC\G\G\Gz\G\GJ\G\G\G\G\GS\G\G#\G\G\GZ\G\G* \G \G \Gc \G \G3 \G \G \Gj \G \G9 \G3\G\G\GA\G\G\Gz\G\GJ\G\G\G\G\G\G\GS\G\G\G\Gb\G\G$\G\GL\%8%9%}%~"G@'%%"G%%%4%5"( @%%%&%h%i"%%%%"%/%0%_%`"tQH%GcH   OH<6wgH';W;R&?HH??Iv.IPIB6hvB6vIXI.*"Jn )H* JYI@o*S@1!4`@@P@|70X7j_7$_JJJ 8F9@9X29u(>(7_K@-1!4*I K E"CJ<H{(S>(TBK`dKrwK|7X* KK^7_KKJKrA2ABA@@/BJK"?KjC<{* K,KK)*) K)L@(VoL(o@*MG"M? E"@M v@MAv "dK91!m4*t |7X89929(>(7_Mp* K<R6PR6PR6P%%%%"M)tM*@+'dA@f'yMK?MSJE IJ[ IJ[ IJ^ I1! 41!8 4L/ O% % "N 1! 4% % % % ",N`KK7_dKV|7,X7[_|7X7_`J)|7X,$|7X,$<*< 4O1!4ROpOq;* >5el7_,$OWOlOPN%%(PhAPj_P%0%1"O>A\B3A@A@A/BEA.B:A@H@H/BL@2@2%$%%P9*:F;;Pz%%"QQ%%%%"%"%#%S%T"MtM@'%%%D%E"1!41P*%%%%"%%%e%f"MMQ,'J IR6OPQX1EYQ,'Q=1E>JIR67PJ?I>5IlJZI>5el|7X7_>5l(3>(4*<(>(Q,'(m>(n*w(>(Q1E1!4ROR=ypObqDuD1!4RO"DCDRky!S>5~lJS>5l>5l!S>5l'(L@S=1,SBq7[Spq7S**@ @ LJ@K1c1 DL<@=>5lL)@. '%%%%P%Q"b)f_PjT%%TPN%%"< <{%W%`C%%W"4%;3W UZC<{.U1!4.U1!4JNI>5l89929&(=>(>7L_K8g9a929(>(7_8/9)9D29v(>(7_89929A(X>(Y7g_*R 4Oe1!4ROpOq;.U 1!4*s <>5l%%U;%N%O"%%UM]J)oJ)tJ)JIJ)%%"/E%%"PN.U$1!,4%?%@>5TlPMN VzU]J)J)J).U<1!D4>5Rl%_%`"L@%L=@6HVC<{L@bVMV{L@VV .V7KW~(WLL@LX@M+o@@ E"@.@'><*@V@VW C<{W=W>5l>5lC<`{UCZC_<`{W W=W@x@x>5:l(XMJ;'4%d;PX-: >34 ?&w==04%F=E>[4 o>_XPX: >4 7?X4%X6gX7;W<K6=g4%<<{{<<{J;84%.d;.?9w=G=I=Y>t4 o>xXw=Y=4%=X4%X6gY[Y_YE_7='4%,=,>L4 !Z<60gG9}=;R; W;R5Zh;HZ[ZWHZJZwZ:mZl DyZm DZ@@)[F)[@@z[=*g D D=[x(>(@!@%z['wW#\TZ, D- D7ZO@E@I%_%` Dy6h Dy>\%%"%%%E%F"(Z>([)[`*g*m%%\%E%=%>"Cd<a{6h%%"%2\U<]a-]]H] fHZ H]?fH]fZx]/B=0;5W;>R]b]|F]J]  X,6-g7/>8:w=/>:w=$^768g;pW4%H<;R4%1X^8o*N_QiJRIR6\PR6RPR6\PR6fPR6pPR6zPR6PR6PR6P1!4R6GPR6P,N.U1!41!4o*1!41!'4J?IJ?IJ?I,NQ1!j41!j41!t41!|4x_L;x_;,N,JLI1!4JIJIJIJI1!4J|IJ|IJ|I1!|41!|41!4L/O%%"J"I_1!4o*8o*85#%2*. JgIT`)JI`YJ I*% `FJRI_P899#29A(X>(Y7h_;J!I);J5IJ9IA;8`9X9t29(>(7_>5l>5,l>5=l>5Fl829,[%SW9j29(>(7_[%W1!41!64M1!41!41!4J3I1!n4 ;1!4;o* 1!$41!$4s;1!41!4;1! 4DKD1!4DMD1!4DDDBc"Vc@8R9L9\29s(>(7_JI1!74V;X;c9MHMH\;p;|;c|%%/E-%%*&4)AJ)P%j%k"%%%s%t"* 4d/E*  %%%3%4"%%%$%%"%%%1%<"d[MMcMAMAL/}O%%"%2%THeZ!^e d{eeeDu^ed%%"eD[% W%x%e^edef^ed%:%I"%e%t"fI8f8f8f8f8fB8B6XvUfUfgUfB6;vG9K}fJI`%Yf[J\I`fYf$pffP.z-g#JIf@ffEpKgi1!}4oggigeugg`Yh{f!J"I`+YJ^I`yYKg1!04ogROhyth;Kg1!:4og]euOhth;e-gJ Ieh(R6%P-g JIeh,R6)PKg1!4ogDiTOhZth;iNui5  .7- .  .-.iiWwj?^AGj[Y;A;jCwj?jCwj?wj?wj?@"';1!g41!o4j$@;A;^AG%K%L/Eq%%Bc%Vc@ /E.%V%W"AQ@!'4<<{d\k3@'k*An@9'L <`<W{89929( >( 7_[%W4%;`Rk ?w===>4 o>!7?HkQ lm :l4%l k- rC4%6g8^lw==4%=l3>PX,: >24 w=V>4 >4 l7>=4 9<<4{[@Ml>(d[%W[@ M@Al[@@ M[% W4% J% [% Wl 7>= 4 >= 4 lA 7? 7? 8 8' 9 m. 9c 29 ( >( 7 _l k 4%k l %*%+%Z%[" ^lw==4%=l >PX: >4 l 7?t7?7?;l 8@9:9Z29w(>(7_1!41!41!E41!z489929(>(7_BcVc@1!41!F4f5f;#\Z Dn[Z>57l D_Zs@i@m#\Z- D. D;ZO@E@In3%\%]%%"%%% % "4%Kn9o9o%%ooHX%J%K"o{X%%oX%8%9"%~oX%"< 6g4%K<K<P{Ap1Zp%> 1!4|7BX8`9Y7_929(>(7_fZfpb[%W%%d O;%\%]"8w9q929(>(7_Ab@)'<%f%g"%%8,9&96%b%c"29(>(7_%%Bc0Vc#@**q6!g6eg6Vg<<=qd%f%t%%"qq%%P%%"%%%0"JgIUgZC\<d{1!p41!4cMM*3 4OF1!h4ROhpOq;d* >5l:yY[%W8W8j9d9t29(>(7_rK1rY*ql>(;Rw=/Rr L;Wl>(ir 4%4%,X+6-gw=gdB6:vB6%vG9}B6vMMMG9+}88:949]29}(>(7_%P%%%"<"<#{d[4%X6gw=4%l>(r06Eh4%lW>(X|7FX%9%{JCRs4%-6g%\%]"7v_|7AX%4%iJCtrC4% 6g%:%;"7T_%+%,%J%K"|7X;W7c_%%6h%%"%"%#6>h%\%]"%A%B%v%w"|7XC#7b_7_%+%,%J%K"|7X4%.JC6|7<X4%Z%/%gJCrrC4% 6g%>%?"7X_%%6h%%"7|_%%%6%7"|7RX%%U;%N%O"%%%;%<"%9%:6Uh%%s"%%6h%%"Pz%%6h%E%4"%V%W6sh%%"%%6h%%"%%63h%`%Q"%e%f6h%%"%%6h%%"% % 6%h%C%D"tNX tX %%t.X tX %(%)"%X%Y"%v%w"%%%l%m"%?%@"%t%uB6bvG9c}fpfpe^ehdeW{e6a6h %%%f%g"%%"fp{e6afp{eflpfmp^ed{e^ed^ed{e_u{e^ed{eefpfph{h{^ed{e^e^d{e`uu<^^ed{eeu\u6^e*d{e+6gOv%kvvzHe!v)v^e d{eeeue'uvv)He!kv7 He!v)v7 v He !v )vvvvWvqeqeqfphP{Hei!^ed{eeue]h{efpfph{h{^ed{eef^e^d{eBe^f^ed{efph{8waTwC^esdeWnwskuv^{eW^ed{eeffypfzph{{h|{^ed{e^eAd{eB^ed{eeu;u<\u@6uZ^u6^ed{ew 1w\1wB6qv6~8xom_u[xG9}B6vzxCuG9$}B6Dv'_'`xo8xm_u[xzxuG9}G9}'B6vB6v'xizxu8xm_u[xG9}G9}B6vB6v'''(xE*eWxYx1*xx*xx*x:Y[%Wx,*xf_pf|pfUffZfG9_}B6{vx7*e.x0xa*x]x*xx*x:Y[%WPzP7zx[*xW6eyqf%phA{^ed{e8waTwC^ed{eetfpfp^ed{eh{yryG9}y^e d{e h:{yryveuG9}yh{ydzx7z>szxTwCUf+ww{]eyUfUfoUf{W''' D.%?%@ DM)[%%" D |` D%% |` D D)[)[%%"%E%F"-|@'3%m%n%]%{%%"%%" Dn|W|@q%%%7%8"|/@%\%l%%"}%2F%2F|7FX0}oI}oM7_ }V}t}+o} }gE5J#%29*d }%2}%2}}.%2%2|7X7 _%@%A%%"L @4P@Q|7xX`#'*7_LA@5>5Ql , Q#c v'v'eFececez-4vZeZeK4vex/*e&x(F`F1x *xf9f%E%F"%i%jfpf/ D6)[8)[9P"z%F%U"W/ DXza  DbP)[yAz1!4ep ff,fA>z1!?4eDpEfWDcDWa/ Dz  Dك Dك D)[ E")[V*Az1!4ep ff0f5/ D6z?  D@@L@S`)[agV*h7;Pz[%W4f E"%6%>@P E"%0%8"JIJ IJIJ#IJ:IJBIJIfd?>w=6=I4%^=]>t4 o>x7?X4%X6g;-Wf%f@3@9'7@ '%@R@%%@,*5%D%E"%%#f)fP<z%%F"%Q%X%s%t"OO4)BJ)J4)YJ)afufpffpO E"(yՆ{@|p!pcfhf,Rl%%%^%_"c|'c|Ç/>)$C$f3f$')*o3IVffdh),)=\t?''#C4<2{(N>(O5#h%2h(?>(@<{>( + z+o  4  D5 NN9CC|7uX<73_%(%)%%" ''ߍVfwO+)'h'w''VX{V}V}Mt}R+]oL/O%%"+o E"Mq%Mf% ES" E"%(%) R Q;#&c Q#%#%$" EC"%E%F%S%T|7X7$_7x_L@7_7_+o+?o+o|7/X7_|7#X7_"H,<P6Dg |7fXJ;{d;%Y%0)Ӑ41*=PX: >!4 o>\.^Lc dlLm .L dL %"%#"7<_0A"7B6@v)Ӑ41*Ӑ41*JC%\%]%{%|"Rs4%6gJCrC4%6g%%6h%%"L@%L|@t@@6* jq'*' * 4n* {L@L{@oL$@%{L@L@ݒ)!L9@e+of}t}q+lo +<&%V%W%v%w"<%%6+h%h%i"@L/QO%]%^"%1%2%'%(" :D DDD+;L/sO%%"”$ "!+~+J),$*  F@@/%eKU@{*\ %D%hC}<{{(>(/Eo*|7 X<%2%?7_%%" LK(Jo|7oX<7 _%%%j%"U 1[C  DHUUxyUL @%-%.1*%%"%%%l%m"—՗<t?tU?.<.&<"J< P^zF^_q>q>)s ɘۘ}  %E%F*S R6jP%%"=&\@&@&%E%FE]!>\љ1h*%%"ۘ l L@|7)X8X9R929(>(7_7%_{NLV@OL@(>((>('E\i)7\_{L @L@{L@L;@/'9R|7SX'h@@* * *\ 5*. >5El*u p5* *0 4dbV$M2&l|7+X'J'9JJ|7PX7_JK 08H99R29q(>(7_%%* (>(C* * %7%8"* cC<{%%%%z  |7$X@:O\ Ee"%q%r(>(C<{(>(%%"<-*\ c89929(>(7_78_<']!>\%%*%S%T"J}I>5l%%%%"*%*%+%E%F"BdzjAa|7(X</%:%N%:%;"Ciz)%v%w%%"7_%D%E%r%s" |71X%d%e7z_@922C4<;{%%"UR)S89K7\u7929(>(7_E@+J),$[%W78/9)n7\7929(>(7_s9++C-<4{%8%9%P%Q"z E")ff E5"xFpȞȞ E" E'"P8z,$$ E%"P6z|7X:%%,$%%"7_7%_J)<|7X7E_7_%%%0%1"zI%U%V"%@%q%%5!%%"5!%K%L%g%h"Bz|7X%7%87_x-%%"%%"%9%:7U_%%"7_CPCN9``Ci<p{Ÿ`.ffffC<{  Do*o*!$*%+%,CB<@{ߟJIPNo*JI%%"JI%.%/"%Q%R"* %%" BmzsL@_P{L1@*L@5!IC"< {N7%`%a* %%"8`9Z9o29(>(7_@ @ @&$ @@CE<C{<.9C<{PN%:%;XSq V\z%%"l0@|'L1!@4@@@@E@_P*PVN%X%Y%%"@Ǡ@JI,(b)Co*ao*a17*%U%VCt<k{%%"PN@17*%%"%A%B"7%%PN%%"17*&|@Ǡ|@#|aR6P* * R6 PR6 Pb) % % % % "b)I X 1h 7*y 8 9 9 29* (@ >(A 7P _ 1 7* 8 9 9 29B (X >(Y 7h _% % "P N% 15 7*F y)o _Pp O  E "8 9 9 29(.>(/7>_O~ E"@JI%%"PN_Pn89929(>(7 _y)V_PWO E"89929(>(7'_PZNPNXb@`Ǡb@jJbIb)O E"<%2\U]a-]]CC<A{H]IfHZvl7_P1H]"fHZ"HZGG%%%%"%%"HZ=ߟ?JBIJJI_1!4%M%N%%"%%"%% "%/%0"JIJI"7b)8-9'_P72999(>(7_o*<%L%M(P_hAPZj_Pq%%"U#]J)PCN VzJ)CJ)PPXN<%k%l(P~hAPyj_P%%"PN%%(P#hAPj_P5%w%x"<C<{%%%%,%X%YtU]J)J)J)%%"%%"%%"  8-9929(>(7_:H +,$Y J)#89929(/>(07?_88<9LT@U9x~29(>(7_:$H+,%$Y* J)0CB<J{%m%n{QU|]J)J)J)%%"{L@L@yݒ!L@KL@+Ho8|9v9:H+,$Y J)29(>(7_+Yz{L@LE@98&9<09R~T29(>(7_:H+,$Y J)8 99*29A(W>(X7f_N;< [%wW[%W7.U1!4>5l:-H+,.$Y3 J)<;f<M89929C)<&{'b(>(7&_CL<J{%%C$<"{(&>('%?%@"%&%'<F97* %%"29 ( >(!7/_98;959;29(>(7_29(>(7_%<%=CV<a{(e>(f%~%"\7i\7C8679^_79x29(>(7_\7:H+,$Y  J)%%BCb<`{(d>(eQU]J)J)J)%%"ɥ- |7IX<YL@(s>(t77c_-*.%2N[%W[%W89[%IWs929(>(7_L @4)yJ)y)F SJ)J)#F4SJ)?J)M%\%]TjPNTPN%%"%%"b)'b)'b)'%T%e4)sJ){y)y)y)_Pb).y):FdSJ)oJ)}FSJ)J)%%TPNT P)N%O%P"Jhij-k9l\m~no*#@#o*f[ZZ֧B\FCSJ)NJ)i֧~\FSJ)J)w[%uW6h%r%s%%" P( &8K9E9c29(>(7_* %6%7UUU=%%"1j*<8 99,?29(>(7_8f9`9p29(>(7_%G%HUtUU% % "  j   D 2 KS e ,N $,r $ <  -< p j,9 $N <  -8&9 9029G(^>(_7m_,$8 99*29P(i>(j7x_<<%%%8%9"@2@:=`\%%"N-w7%%"%%"%%"%%"L+@,%%"%%%0%E"%G%L"* C<{o*%%C2<0{o*2(>(%%"%%(>(z%P%""% %A*N JI@`Yb)O E$"@YC<{%%(>(4)J)%%"%%%%"CC%f%%%"o*o*CCEi:LA@95!*> 8F9@929(>(7_7LB@;jlq' *! %N%Oo*b=b\o*b@bC<?{C<{%:%;"<%e %f "%R%S%l%m"%D%C<{(>(/E%%%%"%%%%%&%=%>"%s%t"C<{%%(>(4)J)%%"%%"%%(P_hAPNj_Po%%"%%"%%"o* VQzU]J) VzJ)J)C*S @uZy[Z74O*1!64RO6pOMqL;<*3 [ZJZ7*J)WuJ)%%(PhAPj_P %P%Q"PNJ)PN V9z Ux]J)`J)eJ)nU]J)J) J)L}@*Q ''* ^-K^-Kx9x9TT2x9x9TT7KA{1!y4ì1!41!4Nx=Rx9WxxT1 1!4DD;;1!41!4DD@*x16x9596T4zTx1!4ì1!41!4@ 1189J9JTJ1!41!4DDX|%%ȭSpȭ\p%%"|"R6حt~ȭSp*! %%|"T6%y%z"%%%E%F" "@Jx%%*; %c%d"  D߮%  D&%9C  D~  Dů#  D@Efaftd?dt?t?ɥX!>\Y!B() ;|7X,7%%/%6%7",_$%d%e"zu 7;7%B%C%j%k"\~)7q_%U%%e%"(>(*L4(5oL@(?o%O%]"%e%i"  PXRP5g#%2)!)!r'fvr'{v'#'g''g'h'Q h(z >({ * 'd 'e g'? gB sBse('4'e('(?ܲ-#8ܲ# E"%/Eܲ2# E"%%"S8@&%@ E"%%"ܲ[#%d%e""c'>g@Mv%2F@Mv'?g"C6</{(>(65-D[`_r('hgʹ !("'h#g($?%V(&'mk*j,-F.Eʵ/m1*32DPbcp4q7|3}73bkq^жJqL@:k)mh*j0k,ivP473 E"*\Ln\O0)m*ejo*.O0o*1 evV  Z0)m*00ж0>0J)o*&!)m* 0!,o*3L3@Rc o*Q#! $ 7o*+=+\@+o*{o*0ϸ.1)m*O0CC<@{o)ml*n0o,mo*M%o*o*=\@ 0)m*ϸ.1N)mO*Y0U$ia0) )I)> uhp")n!1"  E'" E?" E"@'' E" &y'I"4u7Q7'U4%U^,6-g<`<Q{U%%JfU%%"%?%U%%"%*%+"%K%nU8t%%oX%%"4% B6)v889929(>(7_%}%%%"UU 8O8b9\9v29(>(7_^6g<5<0{%l%m8c%%"J%[%W4%%%%%"Uo>T'~+@z+oJbb(WULbbb/bJbebb5bLA(BoLM(Lo%WL(oL(o%% "NR[%W[%W=oCCe<{(.bV{V=LL(Uo !!#!#_P!ݒ!L@N +.oL@+oQ= #+ z+ Q #)L#@HV[Cr<p{L@xbVM%%"%<%b%%%[%\"ɥq+z+++zz+z+   @+Tf+zJK3o>7fkfJ;3o>#'+z+z+z;eW +  )1D)D4`7>7m'U `+oҾi}t}+o}V}St}X+co}-+oI[%W1*xZd+Z޿)|7*X7z_+o+&@J+y+|7CX5#%27:_@k+z++7d_+z+o-+o1+l+F$F$F'/+BBMdmd%%%J%]"(_%%%'%("%%%C%V"(Xߟ<J#IJ(I|7BX%5%jJCu%%%%"Rsj4%y6kg%%"7_o3IVqVgrR6PR6P74d(@g*R6&P*D '%%o*!%+%/'<%5%=|7o*x>(%%"%%" g R6PR6PR6+P)o*b%l%p'}%v%~47JQI>(eqMo*cxq>(v%%"%%"J>I`cY%,%0"|7XU_%d%e'x%y%z%2ߟ/JIJIxW>(R%z%{"l*%%"7_ <J{<{x>('%%%%"'%%<7x>(%%"R6PR6P**JIߟEJ*IJ/IR6EPR6[P<{'%%7x>(% %5"gJR6RPR6_Pߟ/JIJI*O o*@U%%o*S@SlN*%%"x2>(%%5%6"<F{'%%x>(%%"<07o* B7xU>(J%X%Y"ls*o%w%x"%%@7%%"U&%'%(g%%ߟrJSIJ[I%%"M`M <R{'[%\%]*e x>(%%"'J%K%L7x>(%%"'%%Y7xo>(g%r%s"%'%(''_w  D%%"(>(%%P%z%5%6" CS<P{%%%%" WX@#*s L@ Ÿ'.ffffC<{  D+1[0%%%=%>"%%%%U"U&l<<;{&l4%0 {,,a{/+oT]J)J)%++Wz+Qo_P3+Oo+$z+Co_P%+&*cV}V}t}+o}ffXk3`.4!51j+o}+Sz+o+B+[+  **LE@= 8&_PV}RV}ht}+oYl++ҾilH}+o+Uo}U}t<}O+Wo+I+lV\{;&}JV s$!A&LC@D_**! dpo*L:&Q}#L5@.L@Q#+o@iC<{+z Ҿ*im@@! G:*k $E$" O%%1%<%="W:*{ $$$y;%%%d%e"%t%u" 0Cs<q{(u>(v9B!>\ B/!>\08$C$$$c$%(%)%E%f"9!C8<6{(A>(BfLf:* (->(.(>(' T  D*<@(''vX*X+shY@s'Y'!&X*=Xn+snhX,+s,h Di[%W[ D>\(;B6vC2<0{ D<dF%$%8 DGdT%%">\Pz%%%&"(>((>( D`>\9 |7XC<{(!>("f*f(7>(87F_( >(!7/_#A<.A##U#A<JA<A**/{A}<AA99A@''binX*X+sh<<<A@)''X*X+shB,No**@(''kX*X+sh(>((R>(S%%(%%" Lo@p0} I} M   %  Ds?h" :x$$$ D+b$$]$\SP  12+o}V}6t}+o}@2+of%' 'V[X*wL@bV8M%4%Do$$nG%%"% %!%E%F"A`$:*+ Or$$<$$% %!%=%>" Ds:h $9$$ $N$7G DJT1Dk(7?tT1D7o>o>7o>?o>"R&}t%u%v%%"%%%%"h%i%j%%"oo!Z N1``````  ;?A?T1&DT1?DHHa-ia-i.I PI .I PI_ (  '/>0BJA81%+%c%%"8 9/@9X+sh29(>(7_%%(>(P,z%9%:"L@_*%%%%|70X%7%A%f%g"7_%%"7_N4 %%fff/fd$dE%j%k"* *M >5{lcMM1!41!,41!,47 _j~%%%<%="-kkkkkkkkkkkk0k0JIo* @ ~LJIJIJ0ILk_P8`9Y929(>(7_:H+,$Y J)%#%$1QU2]J)YJ)^J)i%w%x"89929(>(7_8;_P92|l9c29(>(7_:H+,$Y J)U ZC<{*#'' =<1*%i%j%%"%4%5"T1D&SRrL9%l.K+& <+6g<d<_{4%dJ;d;< 6g !* 4K}%%2b%2b%*%5f;ffSffwfP|zPzPz%%"fff'fՆ@ ,R:PVzPfz"Ն@$,$RJՆ@,R%%"Of]fpOffp%.%/"Oe Em"@` o*: E"9P|7XL(@)7_o*!$|7?X%F%P7%%"7_%%"7_ LY78&9 9) 'c899 K$"),&)3)!o*o*+4|"F6z?!>\@PK?!>\@j1n%%%%"K*$ HbS] NnXG@H<6 gHS]ENIW!OF&4774j77477 477 'x4f7F7sI)4D @@@+z+ z+zzaI'+ofhM*: c=|* s4d4  @@@J$f<fXJK?KbX*|7XXPz7_8v9p29(>(7_8g9a29(>(7_K%% %%"@TsphJJ|7JXK7_ 5_*,[,f 6'()zb~0b@~0 >  a` - @= {D]~ @> at H,t ,t  ,t 8, H- I=t ,~ @>   'A)   A_ 6Hx G  "A_ +Hx E = = = : : 9:U nC =)^)B^ - =)7^)H^)^~ ~@> %-) ? Xt/ x +b7 7x t/P03:|:c~7:ML [S%=[5%=j== ++++# ++ ) Y  +jc'~:0:5C = 0:> C&;==| :|X:> ` &c~]:0n:C|:" %! #=cq[=[%8>  @A @L jU> ]e M> 6] :&!C!H "-    @ZZ@Z @ " \&PC"w""Pw"lw"w"w"" "l"w""Mw":w"J"""?w"w" - =~ @> w"J 4 *) ?#]b 4 *"$?:$V#?b$sj,%/=%aV%=%@)&]& L- M=V&qV&q V%[=~ @> V%<= )(  (MC)`^r) ^`p(DC)W^r) ^ #c2c2c2c2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b"b"b"b"b"b"bbbbb`##?w@u ueEEA@@@@@@@0@ @@@pE):) )))72)72)72*&*O)(2*Q*);2)2 % Bbfv~*C*lC*C*o@*@) + - =~ @> (C)^r)^ - =~ @>  - =~ @> +4 +O=,rH,Fuu,@`,{,,s, )E2)E2*2C-~*:C-*=C--6 *@C-*3C-~-L -R-2-7-R-2 -M-J-6-R-9-2-6-7-H-R*@C--;*H@-B[- x/t/t//////`0!'0M Z0~o0k000qLH LH @pPPRQXTZ0~o0k0l V1*K0V 0S %1$ 0 V%1! 11*m%1 1K11m%1 Z0r~o0k0(0$*1*@1=12!242I2Y2l22!2V42WI2Xl2t22221`221`23y 23 %1( %1 %1 %1 0G11 4 (3Z0~333"3f33334*464/ *4B4*44E4@:4,E4:!AA A aAA@4t:4:4E4:4:4l:4$:4:4V:4:4e:4:4b4? E4g :4 X4 :4WX4 :4ii4 E4 :4d4E4:  F&<5* @<5<5F5*t@<5F5<5F5(F5RF5<5*@F5<50F5JF5`*@*@1'b 08 $"5`5 *r@5=#1>1' 6 6$6 B6 3R4)747`77 8188 z9$9e9218e9#@ 999$9C:93:he9H*@*|@*@ ;tA;_:r;>;;WA;:;6; ;9;;8<bP<t<F <<<<}<<&<<<!j9=%9=%9= %  A   =J =J H&b.I PI<<=m<9<=m=Z=Z=1J=1J 2%HuJ> ]>:Ld>&>&Z#?&>&Z^?yt?$>4?BpI&I>t???)42#@g?rt()zJ@m?E)82 e"ee@k @*ai1_    : v,%/<(J@J@J@e@@8%!@J@5J@j& B=J =yJ =J = J =J # 1L\GP?A"V(Az1AAX(z 8 `"Aa BeI1a_$BEBM^BC B-I1C_qBEUBVQBEBM   p@&H@&H %H P$H P0@ @%H PBTaBB<[~B*IbH=m=rmBB( <)   B B B B BB* CF A,VJ5C9ZC>ZA"V?1E_@f*agipBA"VCBN7>7ZC B>ZC B>ZAVA'V?[pA&A?p&(z(zCI?ADAbV?p&]>&?+p&A VJ>6 7BCEBGMBEBwMA'V?DpI&I]>}&?p& BIDrE'iEc@   DHrAbV5C9E{C4AVQD A!V081J>T F:AVF{G%  @@J>y CS4AWVJ>y GAVGG G AmVG (G G AVG(HViHViA~V*HV(HH?HH?dH,dH,AQV*H(HH?HH?*H(HH?HH?zHx(J> H/ ZCpktJ> H/ ZCQD AVQD H(zHQ (F :Hd`A1VH`AVHA`AV #bI bI/ ^JZI^JBI^JI EEJ'J"J'J'J'J'JQJ 'J'K 9DKB JBK,)K:K,)K:K,)K:*8C\ V $%$1Vm NpNr*RHVORgSXNiNk*SLV|R9gS;\C?XsH'H<k6ZgX&@E@9XZZZZ.    "  3 2"I"  "   \:v\C - =\\]] 1] \>]WL]ZL]Z~ @> \\]]  ]M[-xP ^Y-^7 a^5Sc^$Yc^5P ^?Y%c _*%%%! ?_E`_Ku_my_+_,u_/_5`G`N<`Z`Z`)2w`)_,`7`k)v2*c@""&(8C)E^`cajr*@r) ^Qa9eZ}aaI}a)a5}a aH- bz}a)a5}ab]-b5Fb[*b?1c%BcVYc(<hcWb1cc)"c+@ d4(1c>d)jNd*H1cz]dpmd>dydd6d818 @@a!@BJ  RKeEWeceeC W- =KeE~ @> Ke/EWeuKeEWeKeEWebdWeedCb{eC - =~ P @> Q ee$$%e ar^ =fc1ce CLf8e Ce e@CeC}afwfPfS1c- g9g0<1c-9g9,Mg0D]a?Ke)KQ:ngwg 8   hTrb}ab-hieCuh3h1eCuh3}ahaeC+i\H'Hi</6#gX@E@ *jabb]a ?]a?rb0}ab7-rb}a b@-,bbb]a ?]a?rb0}ab7-rb}a b@-  So?joFg~ojongjoMg   ~o4o=koKkoko[ pcpOpIwpGKwpBGpp;5qQ3q   HD _q5>Dsqojogq:<qX6jo!gC$4A#VH$` ^?'ysq8oJ> oksqooko<k-rs;sqooErgI@ oksqosq]o^?yJ> oksq`ooksqoo.kr:r#roksqoo7ksqoH./ ZCGCrxsqosqooksqUo CC4ADVsqYoJ> okoqko@ksqo H/ ZCeC4AVH`okq6ok-r/s;\okoXkoksqo  @ ^?yssH}/ ZC2jsH/ ZCErgI@  @^?-ys-sC`4AWVokokGG Gt HiHidH dH%^?HyJ> okokokJ> okH`sqookokC 4A Vsq] oJ>r A XF :'t@ *J> F:o kH `o kF:sqosqgoQDs J> oksqWooksqoJ>% oksqosqKosqosqooksqoG AVsqooksqWosqosqyoHR/ ZCX}C4AVGG JtQ`jtFfJt`ok-rs;okok-rs;ok    D@Edokq:6oksq ojtfJt`okjtf;q) 6oG koa kEr go kI @ o ksqosqookJt`sqIosqou^`uv`u`MuPnuS`Munnuj`Munu`~u.cu1`~ucu` u :vNNvCu#:  u<:vkNvGC - =w6w~ @>  - =~ I@> J - =~ X@> YgxG7xxx:wdyWytayayVyayo ]y%y y ;~o!;~o/,z,z  MXzpy Xz0pXz\py] y1 wz.;o[Xzpy  z)8z_y wz]. L LXzpy! z_y Xzpy wz.{.{"B{#^{)7r{G^{07{"y{;.|A|18<6XzPpyW Xzpz_y y wz:. |a|bL ab4 BBFBJB"*@*@R}5m} *@= ; }a}a   "~IP5~fLH~X_}Pa?_6t~,&@~mwP s,z%*@,zE8@~T~B> >,z9n4Lir{/.{B{#S??{: """&&.f>?/f/ g '' ' ' &,2O110Ot}̀̀׀H:̀̀r{q̀94̀̀v ̀ ̀ ׀ :׀? :׀ :` tb@  ! (08p (0# !(08(08@A (@  (08@HP (08@H (0`p  (  () $  (08  (08@HPX ( (08@H     9   ) (  (   ( i (   (  (& ( (/ (# (0 a   (0  (08@+    (0 (08@ (08@HPXX  ( (01    !  (08p  ( (  (08X (08@ (018 ( ()P   ( ( 9A (0| (1 (0 (! (08@HPX(08@HPX`h(  (   (  (0  (08 (0x (0>y ()*xO hph08@HPX ( (08 (aYIQ (< 9 (  (u (08   (0w  ( ( (3 (0  (    2 ;?DL XZ e n y     !     & 8>D X clt{         # .0 = I R[ ekou ~           " / 9 H R ^biq          ' 29 D V^ j z          "*-.;  $())**0134o         1 "X  #%'*,14         + : NTVVY jossx|        ! , ; F S c o x   ""##        $ , `` ` ``> l# ?m >yA`@ `+ @@ A2 @  `  v``[ + `+ v`d` `  P  ````` ` ` |b?*YN L @@M M ] =\ 9` W`J`w @ 2`` @ ``@ : Z<4z : `| ` ;[`Z3U{@ 6@E@ T R5 ; W }@~ 7 7  R` 5`` 8@ 9 {` `` = 4 9```68 X `~`K@OX` `  S8`` ```S N,`x ` a ,`BN@ `@y -``- .@7@ / ``@ `@ @`` @ `@@@` @`@@@`` `  ` ` `` `` `` `` ` ``` ` ` ` @` `@@@@@@@@  ` @ ` `  @`@   @@ @  GG F H JEFH I EI`@@ n gm Y8Y(YXYhYhYYxY`Y` ZYYYYYYYYYYY8YYYYYYZY`YYYYY Y@Y`Y Go buildinf:go1.26.4-X:nodwarf50w tApath command-line-arguments build -buildmode=exe build -compiler=gc build -trimpath=true build CGO_ENABLED=0 build GOARCH=amd64 build GOEXPERIMENT=nodwarf5 build GOOS=linux build GOAMD64=v1 2C1 rBA Go fipsinfo 89xmmà a); Ht;7S afrLrL-Z-ZffP=gQ=g-Z.Z[[x`MM`5 5 9f@rL@rLdff fR=g`=gxDiDijjjjPYYL-ZLcHfYHfrrRf%%`lf/none{EE E H   @af   /dev/urandom)LIhH.@IJJ H/proc/self/auxv JHJ` A`JFK zH HHIgf4 @LLef ffif         / _ 0"  /sys/kernel/mm/transparent_hugepage/hpage_pmd_size/A@9A_A`2DD DD  'pz|  @n_n!(O  `nn"C   0@P`p @`@  %&(*058@HJPU`jpef ffefifefffPffefpffpefffefef0ffffef`ef d'@Bʚ; TvHrN @zZƤ~o#]xEcd #NJ ';>{ 6V   5)14:\6 7 ;>fio$_jjZkbkUԝԭԺԼ:?EQՠ"% #(38:HJLPSXZ\^`cksx} !"#$%%&&''((()))*++,,,,,------....//////0001123333333333444444444455666677777888888888889999999999::::::;;;;;;;;;;;;;;;;<<<<<<<<<<<<<<<<=====>>>>>>>>>>>??????????@@@@@@@@@@@@@@@@@@@@@@AAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC#4DuӺ?c?yڌX?9?-^? h?:D?Kx? !? ?8G?2Sg?hz?:?Е1?z?G?g!?Kx?4&?̈Gj?TNK?sp (??P??2Ut?Uᢜ>?&m??l??sjbƈ?UϋE??0?_  ) 1 4 7 = ]  ) 1 4 ^  ) E I W  E I HIWYmq_XZ\^ +&---------.@00112ҧԧΩ'/7=?BESgu  VUU433$Ir]tVUU;J$9.ى%IqgffF]VUU$I@8433.*J$ qaVUzDy 0  C{ ?gfVUJ9o43]g%I33333333)\(\p= ףp= x&1|?5^I ~:pΈҲ qh N]h㈵9ahVyc{-1Fw$zՔ!"Kga*m.:BGkI> O{ͷu9 idW>Pb6-?C,z MY@1eoT5$E!@pG8w=_$A|AѤ䥬4 )TTpi;wwIYePr&ޭԔ],`yOoy.P9AZ.269GJxy}2:;=>ACDFHNEp+rv /`.1V(/8?HMY_ho&!*!+!2!!,} ,/,`,b,c,d,g,m,n,p,r,u,~,,,,,,,@NyBl".2ny}~ħŧǧɧЧ֧ا!,W":az*/37:HKwz~#3<?@BGOPTVWY[\`aefhiloqru} Eqsw{|}0_a/ay}s '07@EQW`gp}N!!60,_,a,e,f,l,s,v,,,,,,- -%-'---Am#/3oz|çȧʧѧק٧SpqAZ ~wzVY JM-0[^jp     9 < B G H K M Q Q Y ^ f v    9 < D G H K M U W \ c f w 9 < M U Z ] ] ` c f o w O T c f :?[lqMP]`Z]|6@S`s x+0;@@Dmpt|LP7;IM EHMP} ' 0 ^ p q t !!!&$@$J$`$s+v+,,'-----0-g-o-p----]...////0000111ƤФ+@ʧЧ٧,09@wŨΨ٨S_|٩ީ6@MPY\ª۪  kpװmp kpMP]37#-JPz'0co6@U`g8<<?  9 ? ?        5 8 : ? H P X `       5 9 U X r x       H      ' 0 9 `'0YpMRuGPvA DGHKMPPWW]cflptaDPY`l+0F;   8;FPYGP EPlp6:GPY`:>Y#$t$$C%//0/4@4U4DFFh8j@jijnjjjjjjkEkPkwk}kk@nnoJoOoooooooopՌ"22PRUUdgpjp|-0FP&)r{EV`x  FJ%**0m,0=@INOKPY^_q=$';BBGTWdg+0;@HPQ`ev{ GPY`S`mp|ߦ9@ JP#3J[_AJ{^C\Jw7]}Cw!cajUB@&n4QIUP"Iwq\-_Ɵ\hCJ9? 4iY3pjNѼ.+ʔב,$42j?+BhO" 9'½[%)<*jRz3jɊ;n!|[Qũi !1䵦S)4S2j.IYbQy8v8LgcUawĖ jbOFڐ!z2(3w Ǿrpi%OLsԴxn'1W/x $/[YI9-La]4ﰽ+VP9` 5Tpv ^7}-y|{"by8q"yD@PXr̔)AQF纱VIoh gRSr$L^ZE+;\xnWS^)NOjcDjP:滜3 5Z $"xE8N>NT/Sﳇ iC{ PLÞQG [~?"ҥa|E^PnhD6 )D.1=(iHfN`oQA'Ga}Bv<xI@wlFDq p[Gem`xqWn3bnGNR q8V$W|TSgTQY"R=:+8HL+P/hǟ ?\&Xk@ rRq65Jn\@0ǯxיXI qN/݅gpb#a "$#&&P{=!鮼 |Fbz?:7yEyRS@{(ڽ ]QGP27~ ?39>dd[מגX!h!1F{:=j+6g<^9*vvos1PY3$m4@qƤsfnKSA Erj0, XkE)j b\^9鸩NtHᮄ\4q:2J(R'o;.NF`g#'s$Aׯ*} }9,TtB%@f4YE" ڷ9BAVU'(d=koǡRlf*dcJ~Xac6 9s;ًiax=Wɝh:35RP-Dm[1ffe7QhTFp7)]((DiuN#CA)Oy}h UA?t'0FEh#9IZV6a=zlpJp@:ޕG5_Vٸb4IAS(S:oF%b(KcfqjQl2@z$Zf;ZdҀL+":XM=c/ˉ a 9] Ĕ&`ӛWfBX2b/8yY'V:ِK/\];5kvʃ&_BSv@+<]4rdtAxN>/wxRB@b+)N*8S|i{$WcI6k2\d|{g ?ƸG9ptyܠ#wnɷB3' 9[h'MlT: yg~ "I~EMe(]XlC]y2E߇yzVǣ(k 'j΍Bi-U’]7OC̳|<٫^b, ^h[8Cpj\˰'cA?ɨRT XT1a~uL DMk/`6%&Ն3rpͩQ$TZe( 夯$#%3|_B^2+@a d_+<~A>k ;YhIVuL6b* :g(`y!W+~$Q)uJ+%2H5'Mv:Dgw}5l<y5[k'[(c%{1%}B#%h~<_3Yq6*,29CҲ~ Gb_BG[Pc?IlAk"|Or$Z= G 5)=eX( U4+\Bx6,n rypr!li6[ylRb7ygݓx koQu4g$L&Ղu<Fu{⴪\?^%C=D(HM 9"l6#)\_*Tz8d 6G_ Z-ȸhǬ#C %dyZ%Z~=sꤏ<"yuх!=afNgy?*mURmG*mhP#] [w6^e}tr+*k%Csbk$<-0K#1 ] aNO3l6e%9m8+u~`q`l|=/iky* +۶+[$[?`~Ey1\3q4U^yuװw'C,f!*EInȱf=B G.aow]>:?qnGxį@xq$!j߶lN@gve RQ^q+zkA6y/+3C{]n^D ;,7)=O2O)ӄ 7V NܧV|$ZxeGD ]];be(jq0/v׭4xpەuCt92o@LmSЗŚSRYu$axmc*K"?7{F=~kvbk]vr!x:g嫂~4l@vs/ޚLЧ~wMmG=K12L =C&ss:y2nacfO4IDܾT^R A}ø@'YlDNGXn{,T\0{*] 0Gy}9Ӷ+p|F 6ڴkBvSy`CܘόdO2I#(7HPm vOsE}SBbYh+@`~ daUH1uyC;wonfh(4rU֑TTew>oGIUy\cb?9>g""m~cf~f78诤Gג߫jO2)RYtu ё|ؕ:S|۱sfFfhp$qKM C,Ue1X#HX 〽w'rPᰜ]HAq dx9dk/ ^BPg\9L(BI6!w_fQĩCQãQ(y$( [8 ưYJ)Xeި.8Ǎz̖ZSt;^sW~%1: 9AZ az yy/00911279HJwxxy~Oaa88  ~"3::+*;<==]>>(*?@?*?*ABCC=DDEEEGFOPP**QQ**RR**SS..TT22VW33YY66[[55\\OO``33aaKKcc11ee((ffDDhh//ii--jjDDkk))llAAoo--qq))rr++uu**}}))&&CC&&**&&''%%EETTpsvw{}t&%@?  ~P/ 0OP_`/1V0a```  З‰‰@@yy}}88A '(/078?@EHMQQSSUUWWYY[[]]__`ghopqJJruVVvwddxyz{pp|}~~   &!&!*!*!A+!+!2!2!N!N!`!o!p!!!!$$$$,/,00,_,`,a,b,b, c,c,d,d,e,e,f,f,g,l,m,m,n,n,o,o,p,p,r,s,u,v,~,,,,,,,,-%-'-'-----@m"/2oy|}}u~Z00ZZZZZZZZçħħŧŧZƧƧuǧʧЧѧ֧٧SS``p0h0h!: AZ'((O(pz'|'''  @   @n_n `nn!""CՏS`i2噜\ BU^asRxZGvR"J\cҾ(/)382tZ;S?;)?eefX$YJv>ᮺI- y]SoΊߙZsy,,+ؑiKyFq6NlHMDz%#rxjm 0O\5Q^3-#Gf+ނ5x,vU0 1̯!P;Lk<ܭ=*$Jx݅KbS 4mk3o=qԇh@drˌɩQhH;f%mtvWK`0K>~;Υ-^85A5]JBϹuLRzΕ CsIB `fNww&8G"U c^s 5U]_nUb/64!{+ջC#u-;eUkn6%!3GԜ niv,n% DH %CpdW*͖(W^j8>'u7kq.h3DJ~X1[D!jzLhrd)غ`YE=3)$ok0bЏVyԶӥijlwH<)).ޔ3%I q o(TM^J2qPa,n1'\":1ƚpH cm}x=M̻, NF`%!&8#XlN *o(,nG᮴ fEyۤ̂MȟP}r%kf5(Hf;^eC2@J6Vc؂j@>ԾhN"uO>DwZZS 6qU1(\Q>D[Z † yXfr9Mnb-@s]Ώ-!= h 4f|r#j9NNDGC bf'"bKɦq=`?wo"|!M8U+THj`FS*~OmBDt.9zc%C1SUX='~U5yc5u|&X4/UK<%oˋ#w"y^F_uv 6]I{fg΄Yy@'᷂X7 1 ?jgνߚgB`A֋$m\,mSx@I̮nsXHh[ڞjPu9-^zyBRmx;Ӧ{2_`d J&;\U\oJHH/W`&$ڔ;Wζ]yZ[lB,1r'0S*xPN1J<(d$5V6^F6w?nY{U(&t~Wω/3OH8oꖐ!v]?cZ SkuzmM(YIӽ`3\ٻ-qd4,9ϪMygAwGܠU`I,DrĆ9b7]"u(1:%˅t׋k62c}dqӨ1]MSf-bg{$cr`=ހmYGBx SatRVfQp[y͋l'.g2FqkSۣ󗿗φ(}Ͳ"al]=_ Wkyc1Ü;t60`wÜD۾;մD-HU-JM-uxF\]cxZb* 44|qzM=5]WF Y`t׬XҘK?p8+#Tw'Fc{,)UdBձL;wsj=J_ >*br{~T5*g8C#Oa1Ԕd~8<<Ӎ@^p8G EHP$vڍW $֭;Ԩ ץL L!Lϟ^+eṗtgi Gv;?ȄsA) w XRqhUyϴf@qՓ0U@HL/8'|jPZ;٦J0F.DcmJ.>vJ2NY'D)?@(0T|Y+ѹx>ݔX0t20:<6Rj㡌?'D巧`^:)ޥHtV֑f!d4[I%Οk4 ;i‡FB@OQ]= k)XQ* rGsۓVieg!YPҸ,S>ih0sUrsO:BANdP#僥b}$l9JFEr]ΖK2kO|de2?/nUraֽ{S ȅuE6__,tRA7#8H,Q;,ZH="sM_ Xf`>ѷ?̨&1ϻRpIFwӛa՟3ȂS|nk.d{ch isƣz=->!QaN\ ib OInH&ޓãۉZv:k\muZF)e 3R#X񗳻Yg+,.X}jt@8H۔WN¨PFlabMfנ w`2$^.t V$ `#ilūc?ʳks|0d|F]| ,k:Bzk.JSҘlDw`zdط{qJ|l_brIdG-]:ϛ= y4yxNJ`K69QX*rC(eN>'=z2)b"=s)f_R?Z}5&4*c&ϰR04`ɵݓg|A8?,Cx 6) LKK1ce^y }e5CJFM.?ENKP9ϛdq/^pÂz}LZN'sv]U&Noj:(&⻋6U ۲.tE+oOFkȒɋ ;˻zD7@n ܝYj B̶TW-#JFdeT-"G~)p$wV+~xY6vZU"RDhaέ[Agù?Br k`ŗgɟ`鸶 T8>G#g$h;#) v6!e rΛpDi>[’s0 ;HwHo^+Ʊ(J 682R l (c%_S#Y8Z~HW7yHQZ-D"'elE1kXd˞6-?/"=~Frwj[꺔R̆ŸG阥9'$bGט#?dҭ: 쎉>$0hS+Zꌤ-_U 例ػn*j[ duuRDZZE.g=Ķ{sk`MFULuZ(Ć&'vcJyY~S|R] X`Uqޝh馴n b!q&pUi " ŗ{`=;+*\jP|}[zB`w@gY78U7._߈f/Flk⼺;1a=;K##wl}9 ^U"S!J5uu\TT.wAP~Ғsi$$ ݇wÿ-dDKN^Jbڗ<> ;ZaнK'ꊭ캔9EJgCK,΁p1^_BMy%>;50CXn SnʋH~t}4Ud^wڝXv%Ɲ*J6QӮ"݃:R;uDB5yrj'm<u,8c$S{tP^d弄a}J2l1+]ϟCb.2:I62w‡ [Mľ泩yh.L٬:| K7\ 5$SKB.oe(ˈPo ̼E.D?$ H9iMZDs6A_p00 h1aw̫=|6+ BzՔLiv2=il7I?#GGŧSr3܀+eXѨN@a;On&1Zd ףp= ףp= ףp=@P$ (k@C*焑 1_.@v:k #NJbxz&n2xW ?h@aQYȥo: ' x9?@ 6PNg"E@|oMp+ŝ L67(lV߄2\l: @<{ΗK H½Ԇ PvD1P?U%O]7иʡZ'ƫ@=JCư͜mo\{2~#],n0b/5 7 E=!4"&E֕C)A+pL{QF@_v <$+v؈ji SﶓzEz h髤8Հ֘ErAqfcPG+ڦGQlN@< $g_ePKmAD!zǕh"! j+R-9oːDvj%p SG6E"&'Oe,Bb֪"~:MB+ާew 3;L/눟UcզIx%kqk<'zE9NFV:q헬uCNR='1cKcL$_E^jt>69uD+SD]ȩdLq`J:1FU݈AckMXd-~<슠p`~QԟYFKpl2#kEk0SFۄF|cgedn_O~`?~OIwm83^U ,ӿ\c*O/ss~Mg(Q5FƸTၲe B‹&B|Z"_FiYWXixu37/-dRk}{x #]g2cPMEF6@ f;PzBΨ?]δߌG76l3o#٨A]DG l*tY C/h7ȇwyTØE)^Tjzm)4'R fX_E.]^]dB!sCupv~IrSyJIjiEhcۇ֒PֶB<]ҩEś[[E# 26hhwld#D& C2vja5IDӨŹ bl _7hzÇ6dZk"!",TIIk*l=]S5Ǭ唔o:B9#wxrinSv* %úJhь[ei]_fX~8y/az?w/JXUg].8σS*\*a{tZ߈=9tauqGѹ]V7z": Ub+ `M1k{W_vI ~Z}AsXzdұȏ%زnY_F޻َ_o;#TX H{%J ,jV(ڔQ+"yB]D(+EWASJt:5u-/\B .|]|ں5ai%94›i~C.²ϻ^g}DKaxº22si*bd(u{}x5˲>DRs\adj:z®kE[rE='WTc? iyӄbMh, Xhx{REa75 .Vp|BǼ @v`]5ГjR5VCMĸS!{ZJpz3zr֨Y\L.YOt dpsyob>ԅ+EV݊.7J6+>mŇ7̶ȠԱ " @YJ^MK ж%:0ܵdD.$~sީq\]V G_,>%tukPw(N//t,4xT%k$M@T¶ Уr)s$ČV<t-qeez|/~~1Vxe>"t*U5k\(3_':VFs7h*,WЅ-Ciu+-gjs)b);B_򘢏{IwqBv/?s!6p$ Sӌ#c]ɞ@J286H|Y{>Cځo (1&|r}cca/<Jo?0:5_(ϧz^KD[cрyfQ6^Ub2ü@4õjȧ+GٍP4cQOع^3VnO 5G/ bbLBX'a'ͽ}瘜x8,ݬ@!Vc GxP]tlX RzRC 7ϖT%`|$ Pi *.G~tґATW3LGQ.GR?嘡c#wXD^/gHv Ws?5;Qe,OK X^~aB.'9'zխcyt8DZJټ"xR7Ho· "ƣJy©"MPu8A3Qa_(ׁ3ӼM"sǥl"k9 4k"hu)/@fSo: ZI`h#`^K[8B,8,מrF㴒Fj¢lbwRŅ$s 8ۢ:gmO˸ɥDm@e(3tsD;ϕ?S.R_P C4>&wdM Ɩ04x^_Lb%xr =A}wߺnW[47>Yb '6r ;~"6 UWʏ O:!*rbO∩EuϬ;듈Il3f0rj;|*h hۘsC:ԑy!C?HI6.iYkO j 9NDyF㌄@iN !]e!oguDid>qK@$Zf`ffY Y f`fffEg ?gf@-gfhYfHYYYY`fff f`fff f`fxY@fxYPfYXdfOOxYfxYfxYf7O+gP9O"YxdfYdfYdfxYf9OxY fyOxYpfxYfxYfxYf-oO Oi_OyOxYfxYfO?O!YJMDi@JMEiJMFiIM@g\MPCgMFiYfYfYf ZXOOOOOaO1YdfYdfYefxYpfxYfYDixYfO O#uO xYfxYfxYfxY fxY0flOOO#O6O`M`Yf`Yf`Yf`Yf`Yf`Yf`Y fO|OĶOxO ̀O|OqO YfYfYfGi MGi MGiMGiMGiMGiMGiM@ff fGiMGi MGiMzfqf}fmfpp@gff@gCC fefif33Hef f""EjO u`fAOfO_zO g==gfHHg66`Hi M MYY`HiM@M`Hi M MY rO nO @YhO lO yOŊO4Li~O,LiyOdLifOKioO KiAOKiOHLiOKilO Ki׊OKi~OXLibOKioO KirO Li OLimzOLi-dO LirO 0LihO PLilO LirO LifO`Li{zODLi<`OTLihO LioO LilO LiOOUOaOcOfOf f`fff f`fff f`fff f`fff f`fff f`fff f`fff f`fff fcO `Ol_O`O(aO-aO2aO`O7aOnbOtbOzbOcOcOcODhO RlO bO%OkO:OnO oO *lO oO QrO gO ́OcO4OHO\OOڢOOOOyO]rO vO ~OtO4dOrO O#OhO zOvO ,OzO~OOlO aO OԓOObOrO hO zO~OOOO7OOOOOόOO O ,O řO ڙO O O zO O ^O άO O ܱO pO O .O FO _O~OO O!O!O",O#OO#O$CO%O&O&O'O(O(HO)O*O*lO(OɆOvO +O+OzOچOO vO vOOOOOOOO!OƪOO&O!O vO"FOGO!OмODO:OOQOiO iO %iO .iO 7iO @iO IiO RiO [iO diO miO viO iO iO iO iO iO iO iO iO iO iO iO iO iO iO iO jO jO jO !jO *jO 3jO OڥO}O&OOO/OOOɉOO EOOnO O=OnO OcyO}O9yOlOOՍOOqyOyOTO-rO OyOnO O 7O%OۉOO2OOO!OOOJOyOuO bOO*OyO|ODOuO :fOO9rO OOʅOuO zOTOіOOO}OuO OyOO#OoO :O%^OԲO[OO&rO$O{O/_O%O1bO+5OyO»OOOOqOO>OkOqOEO(OO}OOO#=O OWO9O'O#|O-O" OGOErO OOpOۅOOOO OOO}OOYOxO}O4OڭO lO OO%OcOyO`O^OAOeO^OOcO^OOxO OeO^OIOcOlO eOeO|O^qO cOiqO cOxO cO\OcO^OQuO gO^O¥OxO tqO gOxnO gOqO gŌOgO^O@OgO^O]uO gO^O-OgO^OxO gOdOxO oO|O`O|OiuO _O^OcO_OgO_O^OfOeO^O rO kO nO kO ^OnO nO ^OsOqO qO nO ^OeOnO ^OxO nO gOnO ^OkO nO ^OuuO nO ^OeOnO ^OuO nO ^O_zOeO^OqOeO^OOeO^OOU_O^OnO U_O^OOnO ^OOqO ^OnO qO ^O|OqO ^OTOqO OqO ^OOqO .note.go.buildid.note.gnu.build-id.text.rodata.gopclntab.typelink.itablink.go.buildinfo.go.fipsinfo.go.module.noptrdata.data.bss.noptrbss.shstrtabgetid3.php000064400000236532152233444720006455 0ustar00 // // available at https://github.com/JamesHeinrich/getID3 // // or https://www.getid3.org // // or http://getid3.sourceforge.net // // // // Please see readme.txt for more information // // /// ///////////////////////////////////////////////////////////////// // define a constant rather than looking up every time it is needed if (!defined('GETID3_OS_ISWINDOWS')) { define('GETID3_OS_ISWINDOWS', (stripos(PHP_OS, 'WIN') === 0)); } // Get base path of getID3() - ONCE if (!defined('GETID3_INCLUDEPATH')) { define('GETID3_INCLUDEPATH', dirname(__FILE__).DIRECTORY_SEPARATOR); } if (!defined('ENT_SUBSTITUTE')) { // PHP5.3 adds ENT_IGNORE, PHP5.4 adds ENT_SUBSTITUTE define('ENT_SUBSTITUTE', (defined('ENT_IGNORE') ? ENT_IGNORE : 8)); } /* https://www.getid3.org/phpBB3/viewtopic.php?t=2114 If you are running into a the problem where filenames with special characters are being handled incorrectly by external helper programs (e.g. metaflac), notably with the special characters removed, and you are passing in the filename in UTF8 (typically via a HTML form), try uncommenting this line: */ //setlocale(LC_CTYPE, 'en_US.UTF-8'); // attempt to define temp dir as something flexible but reliable $temp_dir = ini_get('upload_tmp_dir'); if ($temp_dir && (!is_dir($temp_dir) || !is_readable($temp_dir))) { $temp_dir = ''; } if (!$temp_dir && function_exists('sys_get_temp_dir')) { // sys_get_temp_dir added in PHP v5.2.1 // sys_get_temp_dir() may give inaccessible temp dir, e.g. with open_basedir on virtual hosts $temp_dir = sys_get_temp_dir(); } $temp_dir = @realpath($temp_dir); // see https://github.com/JamesHeinrich/getID3/pull/10 $open_basedir = ini_get('open_basedir'); if ($open_basedir) { // e.g. "/var/www/vhosts/getid3.org/httpdocs/:/tmp/" $temp_dir = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $temp_dir); $open_basedir = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $open_basedir); if (substr($temp_dir, -1, 1) != DIRECTORY_SEPARATOR) { $temp_dir .= DIRECTORY_SEPARATOR; } $found_valid_tempdir = false; $open_basedirs = explode(PATH_SEPARATOR, $open_basedir); foreach ($open_basedirs as $basedir) { if (substr($basedir, -1, 1) != DIRECTORY_SEPARATOR) { $basedir .= DIRECTORY_SEPARATOR; } if (strpos($temp_dir, $basedir) === 0) { $found_valid_tempdir = true; break; } } if (!$found_valid_tempdir) { $temp_dir = ''; } unset($open_basedirs, $found_valid_tempdir, $basedir); } if (!$temp_dir) { $temp_dir = '*'; // invalid directory name should force tempnam() to use system default temp dir } // $temp_dir = '/something/else/'; // feel free to override temp dir here if it works better for your system if (!defined('GETID3_TEMP_DIR')) { define('GETID3_TEMP_DIR', $temp_dir); } unset($open_basedir, $temp_dir); // End: Defines class getID3 { /* * Settings */ /** * CASE SENSITIVE! - i.e. (must be supported by iconv()). Examples: ISO-8859-1 UTF-8 UTF-16 UTF-16BE * * @var string */ public $encoding = 'UTF-8'; /** * Should always be 'ISO-8859-1', but some tags may be written in other encodings such as 'EUC-CN' or 'CP1252' * * @var string */ public $encoding_id3v1 = 'ISO-8859-1'; /** * ID3v1 should always be 'ISO-8859-1', but some tags may be written in other encodings such as 'Windows-1251' or 'KOI8-R'. If true attempt to detect these encodings, but may return incorrect values for some tags actually in ISO-8859-1 encoding * * @var bool */ public $encoding_id3v1_autodetect = false; /* * Optional tag checks - disable for speed. */ /** * Read and process ID3v1 tags * * @var bool */ public $option_tag_id3v1 = true; /** * Read and process ID3v2 tags * * @var bool */ public $option_tag_id3v2 = true; /** * Read and process Lyrics3 tags * * @var bool */ public $option_tag_lyrics3 = true; /** * Read and process APE tags * * @var bool */ public $option_tag_apetag = true; /** * Copy tags to root key 'tags' and encode to $this->encoding * * @var bool */ public $option_tags_process = true; /** * Copy tags to root key 'tags_html' properly translated from various encodings to HTML entities * * @var bool */ public $option_tags_html = true; /* * Optional tag/comment calculations */ /** * Calculate additional info such as bitrate, channelmode etc * * @var bool */ public $option_extra_info = true; /* * Optional handling of embedded attachments (e.g. images) */ /** * Defaults to true (ATTACHMENTS_INLINE) for backward compatibility * * @var bool|string */ public $option_save_attachments = true; /* * Optional calculations */ /** * Get MD5 sum of data part - slow * * @var bool */ public $option_md5_data = false; /** * Use MD5 of source file if available - only FLAC and OptimFROG * * @var bool */ public $option_md5_data_source = false; /** * Get SHA1 sum of data part - slow * * @var bool */ public $option_sha1_data = false; /** * Check whether file is larger than 2GB and thus not supported by 32-bit PHP (null: auto-detect based on * PHP_INT_MAX) * * @var bool|null */ public $option_max_2gb_check; /** * Read buffer size in bytes * * @var int */ public $option_fread_buffer_size = 32768; // module-specific options /** archive.rar * if true use PHP RarArchive extension, if false (non-extension parsing not yet written in getID3) * * @var bool */ public $options_archive_rar_use_php_rar_extension = true; /** archive.gzip * Optional file list - disable for speed. * Decode gzipped files, if possible, and parse recursively (.tar.gz for example). * * @var bool */ public $options_archive_gzip_parse_contents = false; /** audio.midi * if false only parse most basic information, much faster for some files but may be inaccurate * * @var bool */ public $options_audio_midi_scanwholefile = true; /** audio.mp3 * Forces getID3() to scan the file byte-by-byte and log all the valid audio frame headers - extremely slow, * unrecommended, but may provide data from otherwise-unusable files. * * @var bool */ public $options_audio_mp3_allow_bruteforce = false; /** audio.mp3 * number of frames to scan to determine if MPEG-audio sequence is valid * Lower this number to 5-20 for faster scanning * Increase this number to 50+ for most accurate detection of valid VBR/CBR mpeg-audio streams * * @var int */ public $options_audio_mp3_mp3_valid_check_frames = 50; /** audio.wavpack * Avoid scanning all frames (break after finding ID_RIFF_HEADER and ID_CONFIG_BLOCK, * significantly faster for very large files but other data may be missed * * @var bool */ public $options_audio_wavpack_quick_parsing = false; /** audio-video.flv * Break out of the loop if too many frames have been scanned; only scan this * many if meta frame does not contain useful duration. * * @var int */ public $options_audiovideo_flv_max_frames = 100000; /** audio-video.matroska * If true, do not return information about CLUSTER chunks, since there's a lot of them * and they're not usually useful [default: TRUE]. * * @var bool */ public $options_audiovideo_matroska_hide_clusters = true; /** audio-video.matroska * True to parse the whole file, not only header [default: FALSE]. * * @var bool */ public $options_audiovideo_matroska_parse_whole_file = false; /** audio-video.quicktime * return all parsed data from all atoms if true, otherwise just returned parsed metadata * * @var bool */ public $options_audiovideo_quicktime_ReturnAtomData = false; /** audio-video.quicktime * return all parsed data from all atoms if true, otherwise just returned parsed metadata * * @var bool */ public $options_audiovideo_quicktime_ParseAllPossibleAtoms = false; /** audio-video.swf * return all parsed tags if true, otherwise do not return tags not parsed by getID3 * * @var bool */ public $options_audiovideo_swf_ReturnAllTagData = false; /** graphic.bmp * return BMP palette * * @var bool */ public $options_graphic_bmp_ExtractPalette = false; /** graphic.bmp * return image data * * @var bool */ public $options_graphic_bmp_ExtractData = false; /** graphic.png * If data chunk is larger than this do not read it completely (getID3 only needs the first * few dozen bytes for parsing). * * @var int */ public $options_graphic_png_max_data_bytes = 10000000; /** misc.pdf * return full details of PDF Cross-Reference Table (XREF) * * @var bool */ public $options_misc_pdf_returnXREF = false; /** misc.torrent * Assume all .torrent files are less than 1MB and just read entire thing into memory for easy processing. * Override this value if you need to process files larger than 1MB * * @var int */ public $options_misc_torrent_max_torrent_filesize = 1048576; // Public variables /** * Filename of file being analysed. * * @var string */ public $filename; /** * Filepointer to file being analysed. * * @var resource */ public $fp; /** * Result array. * * @var array */ public $info; /** * @var string */ public $tempdir = GETID3_TEMP_DIR; /** * @var int */ public $memory_limit = 0; /** * @var string */ protected $startup_error = ''; /** * @var string */ protected $startup_warning = ''; const VERSION = '1.9.25-202603080933'; const FREAD_BUFFER_SIZE = 32768; const ATTACHMENTS_NONE = false; const ATTACHMENTS_INLINE = true; /** * @throws getid3_exception */ public function __construct() { // Check for PHP version $required_php_version = '5.3.0'; if (version_compare(PHP_VERSION, $required_php_version, '<')) { $this->startup_error .= 'getID3() requires PHP v'.$required_php_version.' or higher - you are running v'.PHP_VERSION."\n"; return; } // Check memory $memoryLimit = ini_get('memory_limit'); if (preg_match('#([0-9]+) ?M#i', $memoryLimit, $matches)) { // could be stored as "16M" rather than 16777216 for example $memoryLimit = (int) $matches[1] * 1048576; } elseif (preg_match('#([0-9]+) ?G#i', $memoryLimit, $matches)) { // The 'G' modifier is available since PHP 5.1.0 // could be stored as "2G" rather than 2147483648 for example $memoryLimit = (int) $matches[1] * 1073741824; } $this->memory_limit = $memoryLimit; if ($this->memory_limit <= 0) { // memory limits probably disabled } elseif ($this->memory_limit <= 4194304) { $this->startup_error .= 'PHP has less than 4MB available memory and will very likely run out. Increase memory_limit in php.ini'."\n"; } elseif ($this->memory_limit <= 12582912) { $this->startup_warning .= 'PHP has less than 12MB available memory and might run out if all modules are loaded. Increase memory_limit in php.ini'."\n"; } // Check safe_mode off if (preg_match('#(1|ON)#i', ini_get('safe_mode'))) { $this->warning('WARNING: Safe mode is on, shorten support disabled, md5data/sha1data for ogg vorbis disabled, ogg vorbos/flac tag writing disabled.'); } if (($mbstring_func_overload = (int) ini_get('mbstring.func_overload')) && ($mbstring_func_overload & 0x02)) { // http://php.net/manual/en/mbstring.overload.php // "mbstring.func_overload in php.ini is a positive value that represents a combination of bitmasks specifying the categories of functions to be overloaded. It should be set to 1 to overload the mail() function. 2 for string functions, 4 for regular expression functions" // getID3 cannot run when string functions are overloaded. It doesn't matter if mail() or ereg* functions are overloaded since getID3 does not use those. $this->startup_error .= 'WARNING: php.ini contains "mbstring.func_overload = '.ini_get('mbstring.func_overload').'", getID3 cannot run with this setting (bitmask 2 (string functions) cannot be set). Recommended to disable entirely.'."\n"; } // check for magic quotes in PHP < 5.4.0 (when these options were removed and getters always return false) if (version_compare(PHP_VERSION, '5.4.0', '<')) { // Check for magic_quotes_runtime if (function_exists('get_magic_quotes_runtime')) { if (get_magic_quotes_runtime()) { // @phpstan-ignore-line $this->startup_error .= 'magic_quotes_runtime must be disabled before running getID3(). Surround getid3 block by set_magic_quotes_runtime(0) and set_magic_quotes_runtime(1).'."\n"; } } // Check for magic_quotes_gpc if (function_exists('get_magic_quotes_gpc')) { if (get_magic_quotes_gpc()) { $this->startup_error .= 'magic_quotes_gpc must be disabled before running getID3(). Surround getid3 block by set_magic_quotes_gpc(0) and set_magic_quotes_gpc(1).'."\n"; } } } // Load support library if (!include_once(GETID3_INCLUDEPATH.'getid3.lib.php')) { $this->startup_error .= 'getid3.lib.php is missing or corrupt'."\n"; } if ($this->option_max_2gb_check === null) { $this->option_max_2gb_check = (PHP_INT_MAX <= 2147483647); } // Needed for Windows only: // Define locations of helper applications for Shorten, VorbisComment, MetaFLAC // as well as other helper functions such as head, etc // This path cannot contain spaces, but the below code will attempt to get the // 8.3-equivalent path automatically // IMPORTANT: This path must include the trailing slash if (GETID3_OS_ISWINDOWS && !defined('GETID3_HELPERAPPSDIR')) { $helperappsdir = GETID3_INCLUDEPATH.'..'.DIRECTORY_SEPARATOR.'helperapps'; // must not have any space in this path if (!is_dir($helperappsdir)) { $this->startup_warning .= '"'.$helperappsdir.'" cannot be defined as GETID3_HELPERAPPSDIR because it does not exist'."\n"; } elseif (strpos(realpath($helperappsdir), ' ') !== false) { $DirPieces = explode(DIRECTORY_SEPARATOR, realpath($helperappsdir)); $path_so_far = array(); foreach ($DirPieces as $key => $value) { if (strpos($value, ' ') !== false) { if (!empty($path_so_far)) { $commandline = 'dir /x '.escapeshellarg(implode(DIRECTORY_SEPARATOR, $path_so_far)); $dir_listing = shell_exec($commandline); $lines = explode("\n", $dir_listing); foreach ($lines as $line) { $line = trim($line); if (preg_match('#^([0-9/]{10}) +([0-9:]{4,5}( [AP]M)?) +(|[0-9,]+) +([^ ]{0,11}) +(.+)$#', $line, $matches)) { list($dummy, $date, $time, $ampm, $filesize, $shortname, $filename) = $matches; if ((strtoupper($filesize) == '') && (strtolower($filename) == strtolower($value))) { $value = $shortname; } } } } else { $this->startup_warning .= 'GETID3_HELPERAPPSDIR must not have any spaces in it - use 8dot3 naming convention if neccesary. You can run "dir /x" from the commandline to see the correct 8.3-style names.'."\n"; } } $path_so_far[] = $value; } $helperappsdir = implode(DIRECTORY_SEPARATOR, $path_so_far); } define('GETID3_HELPERAPPSDIR', $helperappsdir.DIRECTORY_SEPARATOR); } if (!empty($this->startup_error)) { echo $this->startup_error; throw new getid3_exception($this->startup_error); } } /** * @return string */ public function version() { return self::VERSION; } /** * @return int */ public function fread_buffer_size() { return $this->option_fread_buffer_size; } /** * @param array $optArray * * @return bool */ public function setOption($optArray) { if (empty($optArray)) { return false; } foreach ($optArray as $opt => $val) { if (isset($this->$opt) === false) { continue; } $this->$opt = $val; } return true; } /** * @param string $filename * @param int $filesize * @param resource $fp * * @return bool * * @throws getid3_exception */ public function openfile($filename, $filesize=null, $fp=null) { try { if (!empty($this->startup_error)) { throw new getid3_exception($this->startup_error); } if (!empty($this->startup_warning)) { foreach (explode("\n", $this->startup_warning) as $startup_warning) { $this->warning($startup_warning); } } // init result array and set parameters $this->filename = $filename; $this->info = array(); $this->info['GETID3_VERSION'] = $this->version(); $this->info['php_memory_limit'] = (($this->memory_limit > 0) ? $this->memory_limit : false); // remote files not supported if (preg_match('#^(ht|f)tps?://#', $filename)) { throw new getid3_exception('Remote files are not supported - please copy the file locally first'); } $filename = str_replace('/', DIRECTORY_SEPARATOR, $filename); //$filename = preg_replace('#(?fp = fopen($filename, 'rb'))) { // see https://www.getid3.org/phpBB3/viewtopic.php?t=1720 if (($fp != null) && ((get_resource_type($fp) == 'file') || (get_resource_type($fp) == 'stream'))) { $this->fp = $fp; } elseif ((is_readable($filename) || file_exists($filename)) && is_file($filename) && ($this->fp = fopen($filename, 'rb'))) { // great } else { $errormessagelist = array(); if (!is_readable($filename)) { $errormessagelist[] = '!is_readable'; } if (!is_file($filename)) { $errormessagelist[] = '!is_file'; } if (!file_exists($filename)) { $errormessagelist[] = '!file_exists'; } if (empty($errormessagelist)) { $errormessagelist[] = 'fopen failed'; } throw new getid3_exception('Could not open "'.$filename.'" ('.implode('; ', $errormessagelist).')'); } $this->info['filesize'] = (!is_null($filesize) ? $filesize : filesize($filename)); // set redundant parameters - might be needed in some include file // filenames / filepaths in getID3 are always expressed with forward slashes (unix-style) for both Windows and other to try and minimize confusion $filename = str_replace('\\', '/', $filename); $this->info['filepath'] = str_replace('\\', '/', realpath(dirname($filename))); $this->info['filename'] = getid3_lib::mb_basename($filename); $this->info['filenamepath'] = $this->info['filepath'].'/'.$this->info['filename']; // set more parameters $this->info['avdataoffset'] = 0; $this->info['avdataend'] = $this->info['filesize']; $this->info['fileformat'] = ''; // filled in later $this->info['audio']['dataformat'] = ''; // filled in later, unset if not used $this->info['video']['dataformat'] = ''; // filled in later, unset if not used $this->info['tags'] = array(); // filled in later, unset if not used $this->info['error'] = array(); // filled in later, unset if not used $this->info['warning'] = array(); // filled in later, unset if not used $this->info['comments'] = array(); // filled in later, unset if not used $this->info['encoding'] = $this->encoding; // required by id3v2 and iso modules - can be unset at the end if desired // option_max_2gb_check if ($this->option_max_2gb_check) { // PHP (32-bit all, and 64-bit Windows) doesn't support integers larger than 2^31 (~2GB) // filesize() simply returns (filesize % (pow(2, 32)), no matter the actual filesize // ftell() returns 0 if seeking to the end is beyond the range of unsigned integer $fseek = fseek($this->fp, 0, SEEK_END); if (($fseek < 0) || (($this->info['filesize'] != 0) && (ftell($this->fp) == 0)) || ($this->info['filesize'] < 0) || (ftell($this->fp) < 0)) { $real_filesize = getid3_lib::getFileSizeSyscall($this->info['filenamepath']); if ($real_filesize === false) { unset($this->info['filesize']); fclose($this->fp); throw new getid3_exception('Unable to determine actual filesize. File is most likely larger than '.round(PHP_INT_MAX / 1073741824).'GB and is not supported by PHP.'); } elseif (getid3_lib::intValueSupported($real_filesize)) { unset($this->info['filesize']); fclose($this->fp); throw new getid3_exception('PHP seems to think the file is larger than '.round(PHP_INT_MAX / 1073741824).'GB, but filesystem reports it as '.number_format($real_filesize / 1073741824, 3).'GB, please report to info@getid3.org'); } $this->info['filesize'] = $real_filesize; $this->warning('File is larger than '.round(PHP_INT_MAX / 1073741824).'GB (filesystem reports it as '.number_format($real_filesize / 1073741824, 3).'GB) and is not properly supported by PHP.'); } } return true; } catch (Exception $e) { $this->error($e->getMessage()); } return false; } /** * analyze file * * @param string $filename * @param int $filesize * @param string $original_filename * @param resource $fp * * @return array */ public function analyze($filename, $filesize=null, $original_filename='', $fp=null) { try { if (!$this->openfile($filename, $filesize, $fp)) { return $this->info; } // Handle tags foreach (array('id3v2'=>'id3v2', 'id3v1'=>'id3v1', 'apetag'=>'ape', 'lyrics3'=>'lyrics3') as $tag_name => $tag_key) { $option_tag = 'option_tag_'.$tag_name; if ($this->$option_tag) { $this->include_module('tag.'.$tag_name); try { $tag_class = 'getid3_'.$tag_name; $tag = new $tag_class($this); $tag->Analyze(); } catch (getid3_exception $e) { throw $e; } } else { $this->warning('skipping check for '.$tag_name.' tags since option_tag_'.$tag_name.'=FALSE'); } } if (isset($this->info['id3v2']['tag_offset_start'])) { $this->info['avdataoffset'] = max($this->info['avdataoffset'], $this->info['id3v2']['tag_offset_end']); } foreach (array('id3v1'=>'id3v1', 'apetag'=>'ape', 'lyrics3'=>'lyrics3') as $tag_name => $tag_key) { if (isset($this->info[$tag_key]['tag_offset_start'])) { $this->info['avdataend'] = min($this->info['avdataend'], $this->info[$tag_key]['tag_offset_start']); } } // ID3v2 detection (NOT parsing), even if ($this->option_tag_id3v2 == false) done to make fileformat easier if (!$this->option_tag_id3v2) { fseek($this->fp, 0); $header = fread($this->fp, 10); if ((substr($header, 0, 3) == 'ID3') && (strlen($header) == 10)) { $this->info['id3v2']['header'] = true; $this->info['id3v2']['majorversion'] = ord($header[3]); $this->info['id3v2']['minorversion'] = ord($header[4]); $this->info['avdataoffset'] += getid3_lib::BigEndian2Int(substr($header, 6, 4), 1) + 10; // length of ID3v2 tag in 10-byte header doesn't include 10-byte header length } } // read 32 kb file data fseek($this->fp, $this->info['avdataoffset']); $formattest = fread($this->fp, 32774); // determine format $determined_format = $this->GetFileFormat($formattest, ($original_filename ? $original_filename : $filename)); // unable to determine file format if (!$determined_format) { fclose($this->fp); return $this->error('unable to determine file format'); } // check for illegal ID3 tags if (isset($determined_format['fail_id3']) && (in_array('id3v1', $this->info['tags']) || in_array('id3v2', $this->info['tags']))) { if ($determined_format['fail_id3'] === 'ERROR') { fclose($this->fp); return $this->error('ID3 tags not allowed on this file type.'); } elseif ($determined_format['fail_id3'] === 'WARNING') { $this->warning('ID3 tags not allowed on this file type.'); } } // check for illegal APE tags if (isset($determined_format['fail_ape']) && in_array('ape', $this->info['tags'])) { if ($determined_format['fail_ape'] === 'ERROR') { fclose($this->fp); return $this->error('APE tags not allowed on this file type.'); } elseif ($determined_format['fail_ape'] === 'WARNING') { $this->warning('APE tags not allowed on this file type.'); } } // set mime type $this->info['mime_type'] = $determined_format['mime_type']; // supported format signature pattern detected, but module deleted if (!file_exists(GETID3_INCLUDEPATH.$determined_format['include'])) { fclose($this->fp); return $this->error('Format not supported, module "'.$determined_format['include'].'" was removed.'); } // module requires mb_convert_encoding/iconv support // Check encoding/iconv support if (!empty($determined_format['iconv_req']) && !function_exists('mb_convert_encoding') && !function_exists('iconv') && !in_array($this->encoding, array('ISO-8859-1', 'UTF-8', 'UTF-16LE', 'UTF-16BE', 'UTF-16'))) { $errormessage = 'mb_convert_encoding() or iconv() support is required for this module ('.$determined_format['include'].') for encodings other than ISO-8859-1, UTF-8, UTF-16LE, UTF16-BE, UTF-16. '; if (GETID3_OS_ISWINDOWS) { $errormessage .= 'PHP does not have mb_convert_encoding() or iconv() support. Please enable php_mbstring.dll / php_iconv.dll in php.ini, and copy php_mbstring.dll / iconv.dll from c:/php/dlls to c:/windows/system32'; } else { $errormessage .= 'PHP is not compiled with mb_convert_encoding() or iconv() support. Please recompile with the --enable-mbstring / --with-iconv switch'; } return $this->error($errormessage); } // include module include_once(GETID3_INCLUDEPATH.$determined_format['include']); // instantiate module class $class_name = 'getid3_'.$determined_format['module']; if (!class_exists($class_name)) { return $this->error('Format not supported, module "'.$determined_format['include'].'" is corrupt.'); } $class = new $class_name($this); // set module-specific options foreach (get_object_vars($this) as $getid3_object_vars_key => $getid3_object_vars_value) { if (preg_match('#^options_([^_]+)_([^_]+)_(.+)$#i', $getid3_object_vars_key, $matches)) { list($dummy, $GOVgroup, $GOVmodule, $GOVsetting) = $matches; $GOVgroup = (($GOVgroup == 'audiovideo') ? 'audio-video' : $GOVgroup); // variable names can only contain 0-9a-z_ so standardize here if (($GOVgroup == $determined_format['group']) && ($GOVmodule == $determined_format['module'])) { $class->$GOVsetting = $getid3_object_vars_value; } } } $class->Analyze(); unset($class); // close file fclose($this->fp); // process all tags - copy to 'tags' and convert charsets if ($this->option_tags_process) { $this->HandleAllTags(); } // perform more calculations if ($this->option_extra_info) { $this->ChannelsBitratePlaytimeCalculations(); $this->CalculateCompressionRatioVideo(); $this->CalculateCompressionRatioAudio(); $this->CalculateReplayGain(); $this->ProcessAudioStreams(); } // get the MD5 sum of the audio/video portion of the file - without ID3/APE/Lyrics3/etc header/footer tags if ($this->option_md5_data) { // do not calc md5_data if md5_data_source is present - set by flac only - future MPC/SV8 too if (!$this->option_md5_data_source || empty($this->info['md5_data_source'])) { $this->getHashdata('md5'); } } // get the SHA1 sum of the audio/video portion of the file - without ID3/APE/Lyrics3/etc header/footer tags if ($this->option_sha1_data) { $this->getHashdata('sha1'); } // remove undesired keys $this->CleanUp(); } catch (Exception $e) { $this->error('Caught exception: '.$e->getMessage()); } // return info array return $this->info; } /** * Error handling. * * @param string $message * * @return array */ public function error($message) { $this->CleanUp(); if (!isset($this->info['error'])) { $this->info['error'] = array(); } $this->info['error'][] = $message; return $this->info; } /** * Warning handling. * * @param string $message * * @return bool */ public function warning($message) { $this->info['warning'][] = $message; return true; } /** * @return bool */ private function CleanUp() { // remove possible empty keys $AVpossibleEmptyKeys = array('dataformat', 'bits_per_sample', 'encoder_options', 'streams', 'bitrate'); foreach ($AVpossibleEmptyKeys as $dummy => $key) { if (empty($this->info['audio'][$key]) && isset($this->info['audio'][$key])) { unset($this->info['audio'][$key]); } if (empty($this->info['video'][$key]) && isset($this->info['video'][$key])) { unset($this->info['video'][$key]); } } // remove empty root keys if (!empty($this->info)) { foreach ($this->info as $key => $value) { if (empty($this->info[$key]) && ($this->info[$key] !== 0) && ($this->info[$key] !== '0')) { unset($this->info[$key]); } } } // remove meaningless entries from unknown-format files if (empty($this->info['fileformat'])) { if (isset($this->info['avdataoffset'])) { unset($this->info['avdataoffset']); } if (isset($this->info['avdataend'])) { unset($this->info['avdataend']); } } // remove possible duplicated identical entries if (!empty($this->info['error'])) { $this->info['error'] = array_values(array_unique($this->info['error'])); } if (!empty($this->info['warning'])) { $this->info['warning'] = array_values(array_unique($this->info['warning'])); } // remove "global variable" type keys unset($this->info['php_memory_limit']); return true; } /** * Return array containing information about all supported formats. * * @return array */ public function GetFileFormatArray() { static $format_info = array(); if (empty($format_info)) { $format_info = array( // Audio formats // AC-3 - audio - Dolby AC-3 / Dolby Digital 'ac3' => array( 'pattern' => '^\\x0B\\x77', 'group' => 'audio', 'module' => 'ac3', 'mime_type' => 'audio/ac3', ), // AAC - audio - Advanced Audio Coding (AAC) - ADIF format 'adif' => array( 'pattern' => '^ADIF', 'group' => 'audio', 'module' => 'aac', 'mime_type' => 'audio/aac', 'fail_ape' => 'WARNING', ), /* // AA - audio - Audible Audiobook 'aa' => array( 'pattern' => '^.{4}\\x57\\x90\\x75\\x36', 'group' => 'audio', 'module' => 'aa', 'mime_type' => 'audio/audible', ), */ // AAC - audio - Advanced Audio Coding (AAC) - ADTS format (very similar to MP3) 'adts' => array( 'pattern' => '^\\xFF[\\xF0-\\xF1\\xF8-\\xF9]', 'group' => 'audio', 'module' => 'aac', 'mime_type' => 'audio/aac', 'fail_ape' => 'WARNING', ), // AU - audio - NeXT/Sun AUdio (AU) 'au' => array( 'pattern' => '^\\.snd', 'group' => 'audio', 'module' => 'au', 'mime_type' => 'audio/basic', ), // AMR - audio - Adaptive Multi Rate 'amr' => array( 'pattern' => '^\\x23\\x21AMR\\x0A', // #!AMR[0A] 'group' => 'audio', 'module' => 'amr', 'mime_type' => 'audio/amr', ), // AVR - audio - Audio Visual Research 'avr' => array( 'pattern' => '^2BIT', 'group' => 'audio', 'module' => 'avr', 'mime_type' => 'application/octet-stream', ), // BONK - audio - Bonk v0.9+ 'bonk' => array( 'pattern' => '^\\x00(BONK|INFO|META| ID3)', 'group' => 'audio', 'module' => 'bonk', 'mime_type' => 'audio/xmms-bonk', ), // DSF - audio - Direct Stream Digital (DSD) Storage Facility files (DSF) - https://en.wikipedia.org/wiki/Direct_Stream_Digital 'dsf' => array( 'pattern' => '^DSD ', // including trailing space: 44 53 44 20 'group' => 'audio', 'module' => 'dsf', 'mime_type' => 'audio/dsd', ), // DSS - audio - Digital Speech Standard 'dss' => array( 'pattern' => '^[\\x02-\\x08]ds[s2]', 'group' => 'audio', 'module' => 'dss', 'mime_type' => 'application/octet-stream', ), // DSDIFF - audio - Direct Stream Digital Interchange File Format 'dsdiff' => array( 'pattern' => '^FRM8', 'group' => 'audio', 'module' => 'dsdiff', 'mime_type' => 'audio/dsd', ), // DTS - audio - Dolby Theatre System 'dts' => array( 'pattern' => '^\\x7F\\xFE\\x80\\x01', 'group' => 'audio', 'module' => 'dts', 'mime_type' => 'audio/dts', ), // FLAC - audio - Free Lossless Audio Codec 'flac' => array( 'pattern' => '^fLaC', 'group' => 'audio', 'module' => 'flac', 'mime_type' => 'audio/flac', ), // LA - audio - Lossless Audio (LA) 'la' => array( 'pattern' => '^LA0[2-4]', 'group' => 'audio', 'module' => 'la', 'mime_type' => 'application/octet-stream', ), // LPAC - audio - Lossless Predictive Audio Compression (LPAC) 'lpac' => array( 'pattern' => '^LPAC', 'group' => 'audio', 'module' => 'lpac', 'mime_type' => 'application/octet-stream', ), // MIDI - audio - MIDI (Musical Instrument Digital Interface) 'midi' => array( 'pattern' => '^MThd', 'group' => 'audio', 'module' => 'midi', 'mime_type' => 'audio/midi', ), // MAC - audio - Monkey's Audio Compressor 'mac' => array( 'pattern' => '^MAC ', 'group' => 'audio', 'module' => 'monkey', 'mime_type' => 'audio/x-monkeys-audio', ), // MOD - audio - MODule (SoundTracker) 'mod' => array( //'pattern' => '^.{1080}(M\\.K\\.|M!K!|FLT4|FLT8|[5-9]CHN|[1-3][0-9]CH)', // has been known to produce false matches in random files (e.g. JPEGs), leave out until more precise matching available 'pattern' => '^.{1080}(M\\.K\\.)', 'group' => 'audio', 'module' => 'mod', 'option' => 'mod', 'mime_type' => 'audio/mod', ), // MOD - audio - MODule (Impulse Tracker) 'it' => array( 'pattern' => '^IMPM', 'group' => 'audio', 'module' => 'mod', //'option' => 'it', 'mime_type' => 'audio/it', ), // MOD - audio - MODule (eXtended Module, various sub-formats) 'xm' => array( 'pattern' => '^Extended Module', 'group' => 'audio', 'module' => 'mod', //'option' => 'xm', 'mime_type' => 'audio/xm', ), // MOD - audio - MODule (ScreamTracker) 's3m' => array( 'pattern' => '^.{44}SCRM', 'group' => 'audio', 'module' => 'mod', //'option' => 's3m', 'mime_type' => 'audio/s3m', ), // MPC - audio - Musepack / MPEGplus 'mpc' => array( 'pattern' => '^(MPCK|MP\\+)', 'group' => 'audio', 'module' => 'mpc', 'mime_type' => 'audio/x-musepack', ), // MP3 - audio - MPEG-audio Layer 3 (very similar to AAC-ADTS) 'mp3' => array( 'pattern' => '^\\xFF[\\xE2-\\xE7\\xF2-\\xF7\\xFA-\\xFF][\\x00-\\x0B\\x10-\\x1B\\x20-\\x2B\\x30-\\x3B\\x40-\\x4B\\x50-\\x5B\\x60-\\x6B\\x70-\\x7B\\x80-\\x8B\\x90-\\x9B\\xA0-\\xAB\\xB0-\\xBB\\xC0-\\xCB\\xD0-\\xDB\\xE0-\\xEB\\xF0-\\xFB]', 'group' => 'audio', 'module' => 'mp3', 'mime_type' => 'audio/mpeg', ), // OFR - audio - OptimFROG 'ofr' => array( 'pattern' => '^(\\*RIFF|OFR)', 'group' => 'audio', 'module' => 'optimfrog', 'mime_type' => 'application/octet-stream', ), // RKAU - audio - RKive AUdio compressor 'rkau' => array( 'pattern' => '^RKA', 'group' => 'audio', 'module' => 'rkau', 'mime_type' => 'application/octet-stream', ), // SHN - audio - Shorten 'shn' => array( 'pattern' => '^ajkg', 'group' => 'audio', 'module' => 'shorten', 'mime_type' => 'audio/xmms-shn', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // TAK - audio - Tom's lossless Audio Kompressor 'tak' => array( 'pattern' => '^tBaK', 'group' => 'audio', 'module' => 'tak', 'mime_type' => 'application/octet-stream', ), // TTA - audio - TTA Lossless Audio Compressor (http://tta.corecodec.org) 'tta' => array( 'pattern' => '^TTA', // could also be '^TTA(\\x01|\\x02|\\x03|2|1)' 'group' => 'audio', 'module' => 'tta', 'mime_type' => 'application/octet-stream', ), // VOC - audio - Creative Voice (VOC) 'voc' => array( 'pattern' => '^Creative Voice File', 'group' => 'audio', 'module' => 'voc', 'mime_type' => 'audio/voc', ), // VQF - audio - transform-domain weighted interleave Vector Quantization Format (VQF) 'vqf' => array( 'pattern' => '^TWIN', 'group' => 'audio', 'module' => 'vqf', 'mime_type' => 'application/octet-stream', ), // WV - audio - WavPack (v4.0+) 'wv' => array( 'pattern' => '^wvpk', 'group' => 'audio', 'module' => 'wavpack', 'mime_type' => 'application/octet-stream', ), // Audio-Video formats // ASF - audio/video - Advanced Streaming Format, Windows Media Video, Windows Media Audio 'asf' => array( 'pattern' => '^\\x30\\x26\\xB2\\x75\\x8E\\x66\\xCF\\x11\\xA6\\xD9\\x00\\xAA\\x00\\x62\\xCE\\x6C', 'group' => 'audio-video', 'module' => 'asf', 'mime_type' => 'video/x-ms-asf', 'iconv_req' => false, ), // BINK - audio/video - Bink / Smacker 'bink' => array( 'pattern' => '^(BIK|SMK)', 'group' => 'audio-video', 'module' => 'bink', 'mime_type' => 'application/octet-stream', ), // FLV - audio/video - FLash Video 'flv' => array( 'pattern' => '^FLV[\\x01]', 'group' => 'audio-video', 'module' => 'flv', 'mime_type' => 'video/x-flv', ), // IVF - audio/video - IVF 'ivf' => array( 'pattern' => '^DKIF', 'group' => 'audio-video', 'module' => 'ivf', 'mime_type' => 'video/x-ivf', ), // MKAV - audio/video - Mastroka 'matroska' => array( 'pattern' => '^\\x1A\\x45\\xDF\\xA3', 'group' => 'audio-video', 'module' => 'matroska', 'mime_type' => 'video/x-matroska', // may also be audio/x-matroska ), // MPEG - audio/video - MPEG (Moving Pictures Experts Group) 'mpeg' => array( 'pattern' => '^\\x00\\x00\\x01[\\xB3\\xBA]', 'group' => 'audio-video', 'module' => 'mpeg', 'mime_type' => 'video/mpeg', ), // NSV - audio/video - Nullsoft Streaming Video (NSV) 'nsv' => array( 'pattern' => '^NSV[sf]', 'group' => 'audio-video', 'module' => 'nsv', 'mime_type' => 'application/octet-stream', ), // Ogg - audio/video - Ogg (Ogg-Vorbis, Ogg-FLAC, Speex, Ogg-Theora(*), Ogg-Tarkin(*)) 'ogg' => array( 'pattern' => '^OggS', 'group' => 'audio', 'module' => 'ogg', 'mime_type' => 'application/ogg', 'fail_id3' => 'WARNING', 'fail_ape' => 'WARNING', ), // QT - audio/video - Quicktime 'quicktime' => array( 'pattern' => '^.{4}(cmov|free|ftyp|mdat|moov|pnot|skip|wide)', 'group' => 'audio-video', 'module' => 'quicktime', 'mime_type' => 'video/quicktime', ), // RIFF - audio/video - Resource Interchange File Format (RIFF) / WAV / AVI / CD-audio / SDSS = renamed variant used by SmartSound QuickTracks (www.smartsound.com) / FORM = Audio Interchange File Format (AIFF) 'riff' => array( 'pattern' => '^(RIFF|SDSS|FORM)', 'group' => 'audio-video', 'module' => 'riff', 'mime_type' => 'audio/wav', 'fail_ape' => 'WARNING', ), // Real - audio/video - RealAudio, RealVideo 'real' => array( 'pattern' => '^\\.(RMF|ra)', 'group' => 'audio-video', 'module' => 'real', 'mime_type' => 'audio/x-realaudio', ), // SWF - audio/video - ShockWave Flash 'swf' => array( 'pattern' => '^(F|C)WS', 'group' => 'audio-video', 'module' => 'swf', 'mime_type' => 'application/x-shockwave-flash', ), // TS - audio/video - MPEG-2 Transport Stream 'ts' => array( 'pattern' => '^(\\x47.{187}){10,}', // packets are 188 bytes long and start with 0x47 "G". Check for at least 10 packets matching this pattern 'group' => 'audio-video', 'module' => 'ts', 'mime_type' => 'video/MP2T', ), // WTV - audio/video - Windows Recorded TV Show 'wtv' => array( 'pattern' => '^\\xB7\\xD8\\x00\\x20\\x37\\x49\\xDA\\x11\\xA6\\x4E\\x00\\x07\\xE9\\x5E\\xAD\\x8D', 'group' => 'audio-video', 'module' => 'wtv', 'mime_type' => 'video/x-ms-wtv', ), // Still-Image formats // BMP - still image - Bitmap (Windows, OS/2; uncompressed, RLE8, RLE4) 'bmp' => array( 'pattern' => '^BM', 'group' => 'graphic', 'module' => 'bmp', 'mime_type' => 'image/bmp', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // GIF - still image - Graphics Interchange Format 'gif' => array( 'pattern' => '^GIF', 'group' => 'graphic', 'module' => 'gif', 'mime_type' => 'image/gif', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // JPEG - still image - Joint Photographic Experts Group (JPEG) 'jpg' => array( 'pattern' => '^\\xFF\\xD8\\xFF', 'group' => 'graphic', 'module' => 'jpg', 'mime_type' => 'image/jpeg', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // PCD - still image - Kodak Photo CD 'pcd' => array( 'pattern' => '^.{2048}PCD_IPI\\x00', 'group' => 'graphic', 'module' => 'pcd', 'mime_type' => 'image/x-photo-cd', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // PNG - still image - Portable Network Graphics (PNG) 'png' => array( 'pattern' => '^\\x89\\x50\\x4E\\x47\\x0D\\x0A\\x1A\\x0A', 'group' => 'graphic', 'module' => 'png', 'mime_type' => 'image/png', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // SVG - still image - Scalable Vector Graphics (SVG) 'svg' => array( 'pattern' => '( 'graphic', 'module' => 'svg', 'mime_type' => 'image/svg+xml', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // TIFF - still image - Tagged Information File Format (TIFF) 'tiff' => array( 'pattern' => '^(II\\x2A\\x00|MM\\x00\\x2A)', 'group' => 'graphic', 'module' => 'tiff', 'mime_type' => 'image/tiff', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // EFAX - still image - eFax (TIFF derivative) 'efax' => array( 'pattern' => '^\\xDC\\xFE', 'group' => 'graphic', 'module' => 'efax', 'mime_type' => 'image/efax', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // Data formats // ISO - data - International Standards Organization (ISO) CD-ROM Image 'iso' => array( 'pattern' => '^.{32769}CD001', 'group' => 'misc', 'module' => 'iso', 'mime_type' => 'application/octet-stream', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', 'iconv_req' => false, ), // HPK - data - HPK compressed data 'hpk' => array( 'pattern' => '^BPUL', 'group' => 'archive', 'module' => 'hpk', 'mime_type' => 'application/octet-stream', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // RAR - data - RAR compressed data 'rar' => array( 'pattern' => '^Rar\\!', 'group' => 'archive', 'module' => 'rar', 'mime_type' => 'application/vnd.rar', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // SZIP - audio/data - SZIP compressed data 'szip' => array( 'pattern' => '^SZ\\x0A\\x04', 'group' => 'archive', 'module' => 'szip', 'mime_type' => 'application/octet-stream', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // TAR - data - TAR compressed data 'tar' => array( 'pattern' => '^.{100}[0-9\\x20]{7}\\x00[0-9\\x20]{7}\\x00[0-9\\x20]{7}\\x00[0-9\\x20\\x00]{12}[0-9\\x20\\x00]{12}', 'group' => 'archive', 'module' => 'tar', 'mime_type' => 'application/x-tar', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // GZIP - data - GZIP compressed data 'gz' => array( 'pattern' => '^\\x1F\\x8B\\x08', 'group' => 'archive', 'module' => 'gzip', 'mime_type' => 'application/gzip', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // ZIP - data - ZIP compressed data 'zip' => array( 'pattern' => '^PK\\x03\\x04', 'group' => 'archive', 'module' => 'zip', 'mime_type' => 'application/zip', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // XZ - data - XZ compressed data 'xz' => array( 'pattern' => '^\\xFD7zXZ\\x00', 'group' => 'archive', 'module' => 'xz', 'mime_type' => 'application/x-xz', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // XZ - data - XZ compressed data '7zip' => array( 'pattern' => '^7z\\xBC\\xAF\\x27\\x1C', 'group' => 'archive', 'module' => '7zip', 'mime_type' => 'application/x-7z-compressed', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // Misc other formats // GPX - data - GPS Exchange Format 'gpx' => array ( 'pattern' => '^<\\?xml [^>]+>[\s]* 'misc', 'module' => 'gpx', 'mime_type' => 'application/gpx+xml', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // PAR2 - data - Parity Volume Set Specification 2.0 'par2' => array ( 'pattern' => '^PAR2\\x00PKT', 'group' => 'misc', 'module' => 'par2', 'mime_type' => 'application/octet-stream', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // PDF - data - Portable Document Format 'pdf' => array( 'pattern' => '^\\x25PDF', 'group' => 'misc', 'module' => 'pdf', 'mime_type' => 'application/pdf', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // MSOFFICE - data - ZIP compressed data 'msoffice' => array( 'pattern' => '^\\xD0\\xCF\\x11\\xE0\\xA1\\xB1\\x1A\\xE1', // D0CF11E == DOCFILE == Microsoft Office Document 'group' => 'misc', 'module' => 'msoffice', 'mime_type' => 'application/octet-stream', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // TORRENT - .torrent 'torrent' => array( 'pattern' => '^(d8\\:announce|d7\\:comment)', 'group' => 'misc', 'module' => 'torrent', 'mime_type' => 'application/x-bittorrent', 'fail_id3' => 'ERROR', 'fail_ape' => 'ERROR', ), // CUE - data - CUEsheet (index to single-file disc images) 'cue' => array( 'pattern' => '', // empty pattern means cannot be automatically detected, will fall through all other formats and match based on filename and very basic file contents 'group' => 'misc', 'module' => 'cue', 'mime_type' => 'application/octet-stream', ), ); } return $format_info; } /** * @param string $filedata * @param string $filename * * @return mixed|false */ public function GetFileFormat(&$filedata, $filename='') { // this function will determine the format of a file based on usually // the first 2-4 bytes of the file (8 bytes for PNG, 16 bytes for JPG, // and in the case of ISO CD image, 6 bytes offset 32kb from the start // of the file). // Identify file format - loop through $format_info and detect with reg expr foreach ($this->GetFileFormatArray() as $format_name => $info) { // The /s switch on preg_match() forces preg_match() NOT to treat // newline (0x0A) characters as special chars but do a binary match if (!empty($info['pattern']) && preg_match('#'.$info['pattern'].'#s', $filedata)) { $info['include'] = 'module.'.$info['group'].'.'.$info['module'].'.php'; return $info; } } if (preg_match('#\\.mp[123a]$#i', $filename)) { // Too many mp3 encoders on the market put garbage in front of mpeg files // use assume format on these if format detection failed $GetFileFormatArray = $this->GetFileFormatArray(); $info = $GetFileFormatArray['mp3']; $info['include'] = 'module.'.$info['group'].'.'.$info['module'].'.php'; return $info; } elseif (preg_match('#\\.mp[cp\\+]$#i', $filename) && preg_match('#[\x00\x01\x10\x11\x40\x41\x50\x51\x80\x81\x90\x91\xC0\xC1\xD0\xD1][\x20-37][\x00\x20\x40\x60\x80\xA0\xC0\xE0]#s', $filedata)) { // old-format (SV4-SV6) Musepack header that has a very loose pattern match and could falsely match other data (e.g. corrupt mp3) // only enable this pattern check if the filename ends in .mpc/mpp/mp+ $GetFileFormatArray = $this->GetFileFormatArray(); $info = $GetFileFormatArray['mpc']; $info['include'] = 'module.'.$info['group'].'.'.$info['module'].'.php'; return $info; } elseif (preg_match('#\\.cue$#i', $filename) && preg_match('#FILE "[^"]+" (BINARY|MOTOROLA|AIFF|WAVE|MP3)#', $filedata)) { // there's not really a useful consistent "magic" at the beginning of .cue files to identify them // so until I think of something better, just go by filename if all other format checks fail // and verify there's at least one instance of "TRACK xx AUDIO" in the file $GetFileFormatArray = $this->GetFileFormatArray(); $info = $GetFileFormatArray['cue']; $info['include'] = 'module.'.$info['group'].'.'.$info['module'].'.php'; return $info; } return false; } /** * Converts array to $encoding charset from $this->encoding. * * @param array $array * @param string $encoding */ public function CharConvert(&$array, $encoding) { // identical encoding - end here if ($encoding == $this->encoding) { return; } // loop thru array foreach ($array as $key => $value) { // go recursive if (is_array($value)) { $this->CharConvert($array[$key], $encoding); } // convert string elseif (is_string($value)) { $array[$key] = trim(getid3_lib::iconv_fallback($encoding, $this->encoding, $value)); } } } /** * @return bool */ public function HandleAllTags() { // key name => array (tag name, character encoding) static $tags; if (empty($tags)) { $tags = array( 'asf' => array('asf' , 'UTF-16LE'), 'midi' => array('midi' , 'ISO-8859-1'), 'nsv' => array('nsv' , 'ISO-8859-1'), 'ogg' => array('vorbiscomment' , 'UTF-8'), 'png' => array('png' , 'UTF-8'), 'tiff' => array('tiff' , 'ISO-8859-1'), 'quicktime' => array('quicktime' , 'UTF-8'), 'real' => array('real' , 'ISO-8859-1'), 'vqf' => array('vqf' , 'ISO-8859-1'), 'zip' => array('zip' , 'ISO-8859-1'), 'riff' => array('riff' , 'ISO-8859-1'), 'lyrics3' => array('lyrics3' , 'ISO-8859-1'), 'id3v1' => array('id3v1' , $this->encoding_id3v1), 'id3v2' => array('id3v2' , 'UTF-8'), // not according to the specs (every frame can have a different encoding), but getID3() force-converts all encodings to UTF-8 'ape' => array('ape' , 'UTF-8'), 'cue' => array('cue' , 'ISO-8859-1'), 'matroska' => array('matroska' , 'UTF-8'), 'flac' => array('vorbiscomment' , 'UTF-8'), 'divxtag' => array('divx' , 'ISO-8859-1'), 'iptc' => array('iptc' , 'ISO-8859-1'), 'dsdiff' => array('dsdiff' , 'ISO-8859-1'), ); } // loop through comments array foreach ($tags as $comment_name => $tagname_encoding_array) { list($tag_name, $encoding) = $tagname_encoding_array; // fill in default encoding type if not already present if (isset($this->info[$comment_name]) && !isset($this->info[$comment_name]['encoding'])) { $this->info[$comment_name]['encoding'] = $encoding; } // copy comments if key name set if (!empty($this->info[$comment_name]['comments'])) { foreach ($this->info[$comment_name]['comments'] as $tag_key => $valuearray) { foreach ($valuearray as $key => $value) { if (is_string($value)) { $value = trim($value, " \r\n\t"); // do not trim nulls from $value!! Unicode characters will get mangled if trailing nulls are removed! } if (isset($value) && $value !== "") { if (!is_numeric($key)) { $this->info['tags'][trim($tag_name)][trim($tag_key)][$key] = $value; } else { $this->info['tags'][trim($tag_name)][trim($tag_key)][] = $value; } } } if ($tag_key == 'picture') { // pictures can take up a lot of space, and we don't need multiple copies of them; let there be a single copy in [comments][picture], and not elsewhere unset($this->info[$comment_name]['comments'][$tag_key]); } } if (!isset($this->info['tags'][$tag_name])) { // comments are set but contain nothing but empty strings, so skip continue; } $this->CharConvert($this->info['tags'][$tag_name], $this->info[$comment_name]['encoding']); // only copy gets converted! if ($this->option_tags_html) { foreach ($this->info['tags'][$tag_name] as $tag_key => $valuearray) { if ($tag_key == 'picture') { // Do not to try to convert binary picture data to HTML // https://github.com/JamesHeinrich/getID3/issues/178 continue; } $this->info['tags_html'][$tag_name][$tag_key] = getid3_lib::recursiveMultiByteCharString2HTML($valuearray, $this->info[$comment_name]['encoding']); } } } } // pictures can take up a lot of space, and we don't need multiple copies of them; let there be a single copy in [comments][picture], and not elsewhere if (!empty($this->info['tags'])) { $unset_keys = array('tags', 'tags_html'); foreach ($this->info['tags'] as $tagtype => $tagarray) { foreach ($tagarray as $tagname => $tagdata) { if ($tagname == 'picture') { foreach ($tagdata as $key => $tagarray) { $this->info['comments']['picture'][] = $tagarray; if (isset($tagarray['data']) && isset($tagarray['image_mime'])) { if (isset($this->info['tags'][$tagtype][$tagname][$key])) { unset($this->info['tags'][$tagtype][$tagname][$key]); } if (isset($this->info['tags_html'][$tagtype][$tagname][$key])) { unset($this->info['tags_html'][$tagtype][$tagname][$key]); } } } } } foreach ($unset_keys as $unset_key) { // remove possible empty keys from (e.g. [tags][id3v2][picture]) if (empty($this->info[$unset_key][$tagtype]['picture'])) { unset($this->info[$unset_key][$tagtype]['picture']); } if (empty($this->info[$unset_key][$tagtype])) { unset($this->info[$unset_key][$tagtype]); } if (empty($this->info[$unset_key])) { unset($this->info[$unset_key]); } } // remove duplicate copy of picture data from (e.g. [id3v2][comments][picture]) if (isset($this->info[$tagtype]['comments']['picture'])) { unset($this->info[$tagtype]['comments']['picture']); } if (empty($this->info[$tagtype]['comments'])) { unset($this->info[$tagtype]['comments']); } if (empty($this->info[$tagtype])) { unset($this->info[$tagtype]); } } } return true; } /** * Calls getid3_lib::CopyTagsToComments() but passes in the option_tags_html setting from this instance of getID3 * * @param array $ThisFileInfo * * @return bool */ public function CopyTagsToComments(&$ThisFileInfo) { return getid3_lib::CopyTagsToComments($ThisFileInfo, $this->option_tags_html); } /** * @param string $algorithm * * @return array|bool */ public function getHashdata($algorithm) { switch ($algorithm) { case 'md5': case 'sha1': break; default: return $this->error('bad algorithm "'.$algorithm.'" in getHashdata()'); } if (!empty($this->info['fileformat']) && !empty($this->info['dataformat']) && ($this->info['fileformat'] == 'ogg') && ($this->info['audio']['dataformat'] == 'vorbis')) { // We cannot get an identical md5_data value for Ogg files where the comments // span more than 1 Ogg page (compared to the same audio data with smaller // comments) using the normal getID3() method of MD5'ing the data between the // end of the comments and the end of the file (minus any trailing tags), // because the page sequence numbers of the pages that the audio data is on // do not match. Under normal circumstances, where comments are smaller than // the nominal 4-8kB page size, then this is not a problem, but if there are // very large comments, the only way around it is to strip off the comment // tags with vorbiscomment and MD5 that file. // This procedure must be applied to ALL Ogg files, not just the ones with // comments larger than 1 page, because the below method simply MD5's the // whole file with the comments stripped, not just the portion after the // comments block (which is the standard getID3() method. // The above-mentioned problem of comments spanning multiple pages and changing // page sequence numbers likely happens for OggSpeex and OggFLAC as well, but // currently vorbiscomment only works on OggVorbis files. if (preg_match('#(1|ON)#i', ini_get('safe_mode'))) { $this->warning('Failed making system call to vorbiscomment.exe - '.$algorithm.'_data is incorrect - error returned: PHP running in Safe Mode (backtick operator not available)'); $this->info[$algorithm.'_data'] = false; } else { // Prevent user from aborting script $old_abort = ignore_user_abort(true); // Create empty file $empty = tempnam(GETID3_TEMP_DIR, 'getID3'); touch($empty); // Use vorbiscomment to make temp file without comments $temp = tempnam(GETID3_TEMP_DIR, 'getID3'); $file = $this->info['filenamepath']; if (GETID3_OS_ISWINDOWS) { if (file_exists(GETID3_HELPERAPPSDIR.'vorbiscomment.exe')) { $commandline = '"'.GETID3_HELPERAPPSDIR.'vorbiscomment.exe" -w -c "'.$empty.'" "'.$file.'" "'.$temp.'"'; $VorbisCommentError = shell_exec($commandline); } else { $VorbisCommentError = 'vorbiscomment.exe not found in '.GETID3_HELPERAPPSDIR; } } else { $commandline = 'vorbiscomment -w -c '.escapeshellarg($empty).' '.escapeshellarg($file).' '.escapeshellarg($temp).' 2>&1'; $VorbisCommentError = shell_exec($commandline); } if (!empty($VorbisCommentError)) { $this->warning('Failed making system call to vorbiscomment(.exe) - '.$algorithm.'_data will be incorrect. If vorbiscomment is unavailable, please download from http://www.vorbis.com/download.psp and put in the getID3() directory. Error returned: '.$VorbisCommentError); $this->info[$algorithm.'_data'] = false; } else { // Get hash of newly created file switch ($algorithm) { case 'md5': $this->info[$algorithm.'_data'] = md5_file($temp); break; case 'sha1': $this->info[$algorithm.'_data'] = sha1_file($temp); break; } } // Clean up unlink($empty); unlink($temp); // Reset abort setting ignore_user_abort($old_abort); } } else { if (!empty($this->info['avdataoffset']) || (isset($this->info['avdataend']) && ($this->info['avdataend'] < $this->info['filesize']))) { // get hash from part of file $this->info[$algorithm.'_data'] = getid3_lib::hash_data($this->info['filenamepath'], $this->info['avdataoffset'], $this->info['avdataend'], $algorithm); } else { // get hash from whole file switch ($algorithm) { case 'md5': $this->info[$algorithm.'_data'] = md5_file($this->info['filenamepath']); break; case 'sha1': $this->info[$algorithm.'_data'] = sha1_file($this->info['filenamepath']); break; } } } return true; } public function ChannelsBitratePlaytimeCalculations() { // set channelmode on audio if (!empty($this->info['audio']['channelmode']) || !isset($this->info['audio']['channels'])) { // ignore } elseif ($this->info['audio']['channels'] == 1) { $this->info['audio']['channelmode'] = 'mono'; } elseif ($this->info['audio']['channels'] == 2) { $this->info['audio']['channelmode'] = 'stereo'; } // Calculate combined bitrate - audio + video $CombinedBitrate = 0; $CombinedBitrate += (isset($this->info['audio']['bitrate']) && ($this->info['audio']['bitrate'] != 'free') ? $this->info['audio']['bitrate'] : 0); $CombinedBitrate += (isset($this->info['video']['bitrate']) ? $this->info['video']['bitrate'] : 0); if (($CombinedBitrate > 0) && empty($this->info['bitrate'])) { $this->info['bitrate'] = $CombinedBitrate; } //if ((isset($this->info['video']) && !isset($this->info['video']['bitrate'])) || (isset($this->info['audio']) && !isset($this->info['audio']['bitrate']))) { // // for example, VBR MPEG video files cannot determine video bitrate: // // should not set overall bitrate and playtime from audio bitrate only // unset($this->info['bitrate']); //} // video bitrate undetermined, but calculable if (isset($this->info['video']['dataformat']) && $this->info['video']['dataformat'] && (!isset($this->info['video']['bitrate']) || ($this->info['video']['bitrate'] == 0))) { // if video bitrate not set if (isset($this->info['audio']['bitrate']) && ($this->info['audio']['bitrate'] > 0) && ($this->info['audio']['bitrate'] == $this->info['bitrate'])) { // AND if audio bitrate is set to same as overall bitrate if (isset($this->info['playtime_seconds']) && ($this->info['playtime_seconds'] > 0)) { // AND if playtime is set if (isset($this->info['avdataend']) && isset($this->info['avdataoffset'])) { // AND if AV data offset start/end is known // THEN we can calculate the video bitrate $this->info['bitrate'] = round((($this->info['avdataend'] - $this->info['avdataoffset']) * 8) / $this->info['playtime_seconds']); $this->info['video']['bitrate'] = $this->info['bitrate'] - $this->info['audio']['bitrate']; } } } } if ((!isset($this->info['playtime_seconds']) || ($this->info['playtime_seconds'] <= 0)) && !empty($this->info['bitrate'])) { $this->info['playtime_seconds'] = (($this->info['avdataend'] - $this->info['avdataoffset']) * 8) / $this->info['bitrate']; } if (!isset($this->info['bitrate']) && !empty($this->info['playtime_seconds'])) { $this->info['bitrate'] = (($this->info['avdataend'] - $this->info['avdataoffset']) * 8) / $this->info['playtime_seconds']; } if (isset($this->info['bitrate']) && empty($this->info['audio']['bitrate']) && empty($this->info['video']['bitrate'])) { if (isset($this->info['audio']['dataformat']) && empty($this->info['video']['resolution_x'])) { // audio only $this->info['audio']['bitrate'] = $this->info['bitrate']; } elseif (isset($this->info['video']['resolution_x']) && empty($this->info['audio']['dataformat'])) { // video only $this->info['video']['bitrate'] = $this->info['bitrate']; } } // Set playtime string if (!empty($this->info['playtime_seconds']) && empty($this->info['playtime_string'])) { $this->info['playtime_string'] = getid3_lib::PlaytimeString($this->info['playtime_seconds']); } // Look up codec name if fourcc is set but codec is not if (!empty($this->info['video']['fourcc']) && !isset($this->info['video']['codec'])) { $this->include_module('audio-video.riff'); $this->info['video']['codec'] = getid3_riff::fourccLookup($this->info['video']['fourcc']); } } /** * @return bool */ public function CalculateCompressionRatioVideo() { if (empty($this->info['video'])) { return false; } if (empty($this->info['video']['resolution_x']) || empty($this->info['video']['resolution_y'])) { return false; } if (empty($this->info['video']['bits_per_sample'])) { return false; } switch ($this->info['video']['dataformat']) { case 'bmp': case 'gif': case 'jpeg': case 'jpg': case 'png': case 'tiff': $FrameRate = 1; $PlaytimeSeconds = 1; $BitrateCompressed = $this->info['filesize'] * 8; break; default: if (!empty($this->info['video']['frame_rate'])) { $FrameRate = $this->info['video']['frame_rate']; } else { return false; } if (!empty($this->info['playtime_seconds'])) { $PlaytimeSeconds = $this->info['playtime_seconds']; } else { return false; } if (!empty($this->info['video']['bitrate'])) { $BitrateCompressed = $this->info['video']['bitrate']; } else { return false; } break; } $BitrateUncompressed = $this->info['video']['resolution_x'] * $this->info['video']['resolution_y'] * $this->info['video']['bits_per_sample'] * $FrameRate; $this->info['video']['compression_ratio'] = getid3_lib::SafeDiv($BitrateCompressed, $BitrateUncompressed, 1); return true; } /** * @return bool */ public function CalculateCompressionRatioAudio() { if (empty($this->info['audio']['bitrate']) || empty($this->info['audio']['channels']) || empty($this->info['audio']['sample_rate']) || !is_numeric($this->info['audio']['sample_rate'])) { return false; } if ($this->info['audio']['bitrate'] != 'free') { $this->info['audio']['compression_ratio'] = $this->info['audio']['bitrate'] / ($this->info['audio']['channels'] * $this->info['audio']['sample_rate'] * (!empty($this->info['audio']['bits_per_sample']) ? $this->info['audio']['bits_per_sample'] : 16)); } if (!empty($this->info['audio']['streams'])) { foreach ($this->info['audio']['streams'] as $streamnumber => $streamdata) { if (!empty($streamdata['bitrate']) && !empty($streamdata['channels']) && !empty($streamdata['sample_rate'])) { $this->info['audio']['streams'][$streamnumber]['compression_ratio'] = $streamdata['bitrate'] / ($streamdata['channels'] * $streamdata['sample_rate'] * (!empty($streamdata['bits_per_sample']) ? $streamdata['bits_per_sample'] : 16)); } } } return true; } /** * @return bool */ public function CalculateReplayGain() { if (isset($this->info['replay_gain'])) { if (!isset($this->info['replay_gain']['reference_volume'])) { $this->info['replay_gain']['reference_volume'] = 89.0; } if (isset($this->info['replay_gain']['track']['adjustment'])) { $this->info['replay_gain']['track']['volume'] = $this->info['replay_gain']['reference_volume'] - $this->info['replay_gain']['track']['adjustment']; } if (isset($this->info['replay_gain']['album']['adjustment'])) { $this->info['replay_gain']['album']['volume'] = $this->info['replay_gain']['reference_volume'] - $this->info['replay_gain']['album']['adjustment']; } if (isset($this->info['replay_gain']['track']['peak'])) { $this->info['replay_gain']['track']['max_noclip_gain'] = 0 - getid3_lib::RGADamplitude2dB($this->info['replay_gain']['track']['peak']); } if (isset($this->info['replay_gain']['album']['peak'])) { $this->info['replay_gain']['album']['max_noclip_gain'] = 0 - getid3_lib::RGADamplitude2dB($this->info['replay_gain']['album']['peak']); } } return true; } /** * @return bool */ public function ProcessAudioStreams() { if (!empty($this->info['audio']['bitrate']) || !empty($this->info['audio']['channels']) || !empty($this->info['audio']['sample_rate'])) { if (!isset($this->info['audio']['streams'])) { foreach ($this->info['audio'] as $key => $value) { if ($key != 'streams') { $this->info['audio']['streams'][0][$key] = $value; } } } } return true; } /** * @return string|bool */ public function getid3_tempnam() { return tempnam($this->tempdir, 'gI3'); } /** * @param string $name * * @return bool * * @throws getid3_exception */ public function include_module($name) { //if (!file_exists($this->include_path.'module.'.$name.'.php')) { if (!file_exists(GETID3_INCLUDEPATH.'module.'.$name.'.php')) { throw new getid3_exception('Required module.'.$name.'.php is missing.'); } include_once(GETID3_INCLUDEPATH.'module.'.$name.'.php'); return true; } /** * @param string $filename * * @return bool */ public static function is_writable ($filename) { $ret = is_writable($filename); if (!$ret) { $perms = fileperms($filename); $ret = ($perms & 0x0080) || ($perms & 0x0010) || ($perms & 0x0002); } return $ret; } } abstract class getid3_handler { /** * @var getID3 */ protected $getid3; // pointer /** * Analyzing filepointer or string. * * @var bool */ protected $data_string_flag = false; /** * String to analyze. * * @var string */ protected $data_string = ''; /** * Seek position in string. * * @var int */ protected $data_string_position = 0; /** * String length. * * @var int */ protected $data_string_length = 0; /** * @var string */ private $dependency_to; /** * getid3_handler constructor. * * @param getID3 $getid3 * @param string $call_module */ public function __construct(getID3 $getid3, $call_module=null) { $this->getid3 = $getid3; if ($call_module) { $this->dependency_to = str_replace('getid3_', '', $call_module); } } /** * Analyze from file pointer. * * @return bool */ abstract public function Analyze(); /** * Analyze from string instead. * * @param string $string */ public function AnalyzeString($string) { // Enter string mode $this->setStringMode($string); // Save info $saved_avdataoffset = $this->getid3->info['avdataoffset']; $saved_avdataend = $this->getid3->info['avdataend']; $saved_filesize = (isset($this->getid3->info['filesize']) ? $this->getid3->info['filesize'] : null); // may be not set if called as dependency without openfile() call // Reset some info $this->getid3->info['avdataoffset'] = 0; $this->getid3->info['avdataend'] = $this->getid3->info['filesize'] = $this->data_string_length; // Analyze $this->Analyze(); // Restore some info $this->getid3->info['avdataoffset'] = $saved_avdataoffset; $this->getid3->info['avdataend'] = $saved_avdataend; $this->getid3->info['filesize'] = $saved_filesize; // Exit string mode $this->data_string_flag = false; } /** * @param string $string */ public function setStringMode($string) { $this->data_string_flag = true; $this->data_string = $string; $this->data_string_length = strlen($string); } /** * @phpstan-impure * * @return int|bool */ protected function ftell() { if ($this->data_string_flag) { return $this->data_string_position; } return ftell($this->getid3->fp); } /** * @param int $bytes * * @phpstan-impure * * @return string|false * * @throws getid3_exception */ protected function fread($bytes) { if ($this->data_string_flag) { $this->data_string_position += $bytes; return substr($this->data_string, $this->data_string_position - $bytes, $bytes); } if ($bytes == 0) { return ''; } elseif ($bytes < 0) { throw new getid3_exception('cannot fread('.$bytes.' from '.$this->ftell().')', 10); } $pos = $this->ftell() + $bytes; if (!getid3_lib::intValueSupported($pos)) { throw new getid3_exception('cannot fread('.$bytes.' from '.$this->ftell().') because beyond PHP filesystem limit', 10); } //return fread($this->getid3->fp, $bytes); /* * https://www.getid3.org/phpBB3/viewtopic.php?t=1930 * "I found out that the root cause for the problem was how getID3 uses the PHP system function fread(). * It seems to assume that fread() would always return as many bytes as were requested. * However, according the PHP manual (http://php.net/manual/en/function.fread.php), this is the case only with regular local files, but not e.g. with Linux pipes. * The call may return only part of the requested data and a new call is needed to get more." */ $contents = ''; do { //if (($this->getid3->memory_limit > 0) && ($bytes > $this->getid3->memory_limit)) { if (($this->getid3->memory_limit > 0) && (($bytes / $this->getid3->memory_limit) > 0.99)) { // enable a more-fuzzy match to prevent close misses generating errors like "PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 33554464 bytes)" throw new getid3_exception('cannot fread('.$bytes.' from '.$this->ftell().') that is more than available PHP memory ('.$this->getid3->memory_limit.')', 10); } $part = fread($this->getid3->fp, $bytes); $partLength = strlen($part); $bytes -= $partLength; $contents .= $part; } while (($bytes > 0) && ($partLength > 0)); return $contents; } /** * @param int $bytes * @param int $whence * * @phpstan-impure * * @return int * * @throws getid3_exception */ protected function fseek($bytes, $whence=SEEK_SET) { if ($this->data_string_flag) { switch ($whence) { case SEEK_SET: $this->data_string_position = $bytes; break; case SEEK_CUR: $this->data_string_position += $bytes; break; case SEEK_END: $this->data_string_position = $this->data_string_length + $bytes; break; } return 0; // fseek returns 0 on success } $pos = $bytes; if ($whence == SEEK_CUR) { $pos = $this->ftell() + $bytes; } elseif ($whence == SEEK_END) { $pos = $this->getid3->info['filesize'] + $bytes; } if (!getid3_lib::intValueSupported($pos)) { throw new getid3_exception('cannot fseek('.$pos.') because beyond PHP filesystem limit', 10); } // https://github.com/JamesHeinrich/getID3/issues/327 $result = fseek($this->getid3->fp, $bytes, $whence); if ($result !== 0) { // fseek returns 0 on success throw new getid3_exception('cannot fseek('.$pos.'). resource/stream does not appear to support seeking', 10); } return $result; } /** * @phpstan-impure * * @return string|false * * @throws getid3_exception */ protected function fgets() { // must be able to handle CR/LF/CRLF but not read more than one lineend $buffer = ''; // final string we will return $prevchar = ''; // save previously-read character for end-of-line checking if ($this->data_string_flag) { while (true) { $thischar = substr($this->data_string, $this->data_string_position++, 1); if (($prevchar == "\r") && ($thischar != "\n")) { // read one byte too many, back up $this->data_string_position--; break; } $buffer .= $thischar; if ($thischar == "\n") { break; } if ($this->data_string_position >= $this->data_string_length) { // EOF break; } $prevchar = $thischar; } } else { // Ideally we would just use PHP's fgets() function, however... // it does not behave consistently with regards to mixed line endings, may be system-dependent // and breaks entirely when given a file with mixed \r vs \n vs \r\n line endings (e.g. some PDFs) //return fgets($this->getid3->fp); while (true) { $thischar = fgetc($this->getid3->fp); if (($prevchar == "\r") && ($thischar != "\n")) { // read one byte too many, back up fseek($this->getid3->fp, -1, SEEK_CUR); break; } $buffer .= $thischar; if ($thischar == "\n") { break; } if (feof($this->getid3->fp)) { break; } $prevchar = $thischar; } } return $buffer; } /** * @phpstan-impure * * @return bool */ protected function feof() { if ($this->data_string_flag) { return $this->data_string_position >= $this->data_string_length; } return feof($this->getid3->fp); } /** * @param string $module * * @return bool */ final protected function isDependencyFor($module) { return $this->dependency_to == $module; } /** * @param string $text * * @return bool */ protected function error($text) { $this->getid3->info['error'][] = $text; return false; } /** * @param string $text * * @return bool */ protected function warning($text) { return $this->getid3->warning($text); } /** * @param string $text */ protected function notice($text) { // does nothing for now } /** * @param string $name * @param int $offset * @param int $length * @param string $image_mime * * @return string|null * * @throws Exception * @throws getid3_exception */ public function saveAttachment($name, $offset, $length, $image_mime=null) { $fp_dest = null; $dest = null; try { // do not extract at all if ($this->getid3->option_save_attachments === getID3::ATTACHMENTS_NONE) { $attachment = null; // do not set any // extract to return array } elseif ($this->getid3->option_save_attachments === getID3::ATTACHMENTS_INLINE) { $this->fseek($offset); $attachment = $this->fread($length); // get whole data in one pass, till it is anyway stored in memory if ($attachment === false || strlen($attachment) != $length) { throw new Exception('failed to read attachment data'); } // assume directory path is given } else { // set up destination path $dir = rtrim(str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $this->getid3->option_save_attachments), DIRECTORY_SEPARATOR); if (!is_dir($dir) || !getID3::is_writable($dir)) { // check supplied directory throw new Exception('supplied path ('.$dir.') does not exist, or is not writable'); } $dest = $dir.DIRECTORY_SEPARATOR.$name.($image_mime ? '.'.getid3_lib::ImageExtFromMime($image_mime) : ''); // create dest file if (($fp_dest = fopen($dest, 'wb')) == false) { throw new Exception('failed to create file '.$dest); } // copy data $this->fseek($offset); $buffersize = ($this->data_string_flag ? $length : $this->getid3->fread_buffer_size()); $bytesleft = $length; while ($bytesleft > 0) { if (($buffer = $this->fread(min($buffersize, $bytesleft))) === false || ($byteswritten = fwrite($fp_dest, $buffer)) === false || ($byteswritten === 0)) { throw new Exception($buffer === false ? 'not enough data to read' : 'failed to write to destination file, may be not enough disk space'); } $bytesleft -= $byteswritten; } fclose($fp_dest); $attachment = $dest; } } catch (Exception $e) { // close and remove dest file if created if (isset($fp_dest) && is_resource($fp_dest)) { fclose($fp_dest); } if (isset($dest) && file_exists($dest)) { unlink($dest); } // do not set any is case of error $attachment = null; $this->warning('Failed to extract attachment '.$name.': '.$e->getMessage()); } // seek to the end of attachment $this->fseek($offset + $length); return $attachment; } } class getid3_exception extends Exception { public $message; }