Server IP : 104.21.87.198 / Your IP : 172.70.188.21 Web Server : Apache/2.2.15 (CentOS) System : Linux GA 2.6.32-431.1.2.0.1.el6.x86_64 #1 SMP Fri Dec 13 13:06:13 UTC 2013 x86_64 User : apache ( 48) PHP Version : 5.6.38 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/html/myoten2/wp-content/plugins/litespeed-cache/src/ |
Upload File : |
| Current File : /var/www/html/myoten2/wp-content/plugins/litespeed-cache/src/img-optm.cls.php |
<?php
/**
* The class to optimize image.
*
* @since 2.0
* @package LiteSpeed
* @subpackage LiteSpeed/src
* @author LiteSpeed Technologies <info@litespeedtech.com>
*/
namespace LiteSpeed;
defined( 'WPINC' ) || exit;
class Img_Optm extends Base {
const CLOUD_ACTION_NEW_REQ = 'new_req';
const CLOUD_ACTION_TAKEN = 'taken';
const CLOUD_ACTION_REQUEST_DESTROY = 'imgoptm_destroy';
const CLOUD_ACTION_CLEAN = 'clean';
const TYPE_NEW_REQ = 'new_req';
const TYPE_RESCAN = 'rescan';
const TYPE_DESTROY = 'destroy';
const TYPE_CLEAN = 'clean';
const TYPE_PULL = 'pull';
const TYPE_BATCH_SWITCH_ORI = 'batch_switch_ori';
const TYPE_BATCH_SWITCH_OPTM = 'batch_switch_optm';
const TYPE_CALC_BKUP = 'calc_bkup';
const TYPE_RESET_ROW = 'reset_row';
const TYPE_RM_BKUP = 'rm_bkup';
const STATUS_RAW = 0; // 'raw';
const STATUS_REQUESTED = 3; // 'requested';
const STATUS_NOTIFIED = 6; // 'notified';
const STATUS_DUPLICATED = 8; // 'duplicated';
const STATUS_PULLED = 9; // 'pulled';
const STATUS_FAILED = -1; //'failed';
const STATUS_MISS = -3; // 'miss';
const STATUS_ERR_FETCH = -5; // 'err_fetch';
const STATUS_ERR_404 = -6; // 'err_404';
const STATUS_ERR_OPTM = -7; // 'err_optm';
const STATUS_XMETA = -8; // 'xmeta';
const STATUS_ERR = -9; // 'err';
const DB_SIZE = 'litespeed-optimize-size';
const DB_NEED_PULL = 'need_pull';
private $wp_upload_dir;
private $tmp_pid;
private $tmp_path;
private $_img_in_queue = array();
private $_img_in_queue_missed = array();
private $_existed_src_list = array();
private $_table_img_optm;
private $_table_img_optming;
private $_cron_ran = false;
private $__media;
protected $_summary;
/**
* Init
*
* @since 2.0
*/
public function __construct() {
Debug2::debug2( '[ImgOptm] init' );
$this->wp_upload_dir = wp_upload_dir();
$this->__media = $this->cls( 'Media' );
$this->_table_img_optm = $this->cls( 'Data' )->tb( 'img_optm' );
$this->_table_img_optming = $this->cls( 'Data' )->tb( 'img_optming' );
$this->_summary = self::get_summary();
}
/**
* Gather images auto when update attachment meta
*
* @since 4.0
*/
public function wp_update_attachment_metadata( $meta_value, $post_id ) {
global $wpdb;
Debug2::debug2( '[ImgOptm] 🖌️ Auto update attachment meta [id] ' . $post_id );
if ( empty( $meta_value[ 'file' ] ) ) {
return;
}
// Load gathered images
if ( ! $this->_existed_src_list ) { // To aavoid extra query when recalling this function
Debug2::debug( '[Img_Optm] SELECT src from img_optm table' );
$q = "SELECT src FROM `$this->_table_img_optm` WHERE post_id = %d";
$list = $wpdb->get_results( $wpdb->prepare( $q, $post_id ) );
foreach ( $list as $v ) {
$this->_existed_src_list[] = $post_id . '.' . $v->src;
}
}
// Prepare images
$this->tmp_pid = $post_id;
$this->tmp_path = pathinfo( $meta_value[ 'file' ], PATHINFO_DIRNAME ) . '/';
$this->_append_img_queue( $meta_value, true );
if ( ! empty( $meta_value[ 'sizes' ] ) ) {
array_map( array( $this, '_append_img_queue' ), $meta_value[ 'sizes' ] );
}
// Save missed images into img_optm
$this->_save_err_missed();
if ( ! $this->_img_in_queue ) {
Debug2::debug( '[Img_Optm] auto update attachment meta 2 bypass: empty _img_in_queue' );
return;
}
// Save to DB
$this->_save_raw();
}
/**
* This will gather latest certain images from wp_posts to litespeed_img_optm
*
* @since 3.0
* @access private
*/
private function _gather_images() {
global $wpdb;
$this->cls( 'Data' )->tb_create( 'img_optm' );
$this->cls( 'Data' )->tb_create( 'img_optming' );
// Get images
$q = "SELECT b.post_id, b.meta_value
FROM `$wpdb->posts` a
LEFT JOIN `$wpdb->postmeta` b ON b.post_id = a.ID
LEFT JOIN `$this->_table_img_optm` c ON c.post_id = a.ID
WHERE a.post_type = 'attachment'
AND a.post_status = 'inherit'
AND a.post_mime_type IN ('image/jpeg', 'image/png', 'image/gif')
AND b.meta_key = '_wp_attachment_metadata'
AND c.id IS NULL
ORDER BY a.ID DESC
LIMIT %d
";
$q = $wpdb->prepare( $q, apply_filters( 'litespeed_img_gather_max_rows', 200 ) );
$list = $wpdb->get_results( $q );
if ( ! $list ) {
$msg = __( 'No new image gathered.', 'litespeed-cache' );
Admin_Display::succeed( $msg );
Debug2::debug( '[Img_Optm] gather_images bypass: no new image found' );
return;
}
foreach ( $list as $v ) {
$meta_value = $this->_parse_wp_meta_value( $v );
if ( ! $meta_value ) {
$this->_save_err_meta( $v->post_id );
continue;
}
$this->tmp_pid = $v->post_id;
$this->tmp_path = pathinfo( $meta_value[ 'file' ], PATHINFO_DIRNAME ) . '/';
$this->_append_img_queue( $meta_value, true );
if ( ! empty( $meta_value[ 'sizes' ] ) ) {
array_map( array( $this, '_append_img_queue' ), $meta_value[ 'sizes' ] );
}
}
// Save missed images into img_optm
$this->_save_err_missed();
if ( ! $this->_img_in_queue ) {
Debug2::debug( '[Img_Optm] gather_images bypass: empty _img_in_queue' );
return;
}
// Save to DB
$count = $this->_save_raw();
$msg = sprintf( __( 'Gathered %d images successfully.', 'litespeed-cache' ), $count );
Admin_Display::succeed( $msg );
}
/**
* Add a new img to queue which will be pushed to request
*
* @since 1.6
* @access private
*/
private function _append_img_queue( $meta_value, $is_ori_file = false ) {
if ( empty( $meta_value[ 'file' ] ) || empty( $meta_value[ 'width' ] ) || empty( $meta_value[ 'height' ] ) ) {
Debug2::debug2( '[Img_Optm] bypass image due to lack of file/w/h: pid ' . $this->tmp_pid, $meta_value );
return;
}
$short_file_path = $meta_value[ 'file' ];
if ( ! $is_ori_file ) {
$short_file_path = $this->tmp_path . $short_file_path;
}
// Check if src is gathered already or not
if ( in_array( $this->tmp_pid . '.' . $short_file_path, $this->_existed_src_list ) ) {
// Debug2::debug2( '[Img_Optm] bypass image due to gathered: pid ' . $this->tmp_pid . ' ' . $short_file_path );
return;
}
else {
// Append handled images
$this->_existed_src_list[] = $this->tmp_pid . '.' . $short_file_path;
}
// check file exists or not
$_img_info = $this->__media->info( $short_file_path, $this->tmp_pid );
if ( ! $_img_info || ! in_array( pathinfo( $short_file_path, PATHINFO_EXTENSION ), array( 'jpg', 'jpeg', 'png', 'gif' ) ) ) {
$this->_img_in_queue_missed[] = array(
'pid' => $this->tmp_pid,
'src' => $short_file_path,
);
Debug2::debug2( '[Img_Optm] bypass image due to file not exist: pid ' . $this->tmp_pid . ' ' . $short_file_path );
return;
}
// Debug2::debug2( '[Img_Optm] adding image: pid ' . $this->tmp_pid );
$this->_img_in_queue[] = array(
'pid' => $this->tmp_pid,
'md5' => $_img_info[ 'md5' ],
'url' => $_img_info[ 'url' ],
'src' => $short_file_path, // not needed in LiteSpeed IAPI, just leave for local storage after post
'mime_type' => ! empty( $meta_value[ 'mime-type' ] ) ? $meta_value[ 'mime-type' ] : '' ,
'src_filesize' => $_img_info[ 'size' ], // Only used for local storage and calculation
);
}
/**
* Save failed to parse meta info
*
* @since 2.1.1
* @access private
*/
private function _save_err_meta( $pid ) {
$data = array(
$pid,
self::STATUS_XMETA,
);
$this->_insert_img_optm( $data, 'post_id, optm_status' );
Debug2::debug( '[Img_Optm] Mark wrong meta [pid] ' . $pid );
}
/**
* Saved non-existed images into img_optm
*
* @since 2.0
* @access private
*/
private function _save_err_missed() {
if ( ! $this->_img_in_queue_missed ) {
return;
}
$count = count( $this->_img_in_queue_missed );
Debug2::debug( '[Img_Optm] Missed img need to save [total] ' . $count );
$data_to_add = array();
foreach ( $this->_img_in_queue_missed as $src_data ) {
$data_to_add[] = $src_data[ 'pid' ];
$data_to_add[] = self::STATUS_MISS;
$data_to_add[] = $src_data[ 'src' ];
}
$this->_insert_img_optm( $data_to_add, 'post_id, optm_status, src' );
unset( $this->_img_in_queue_missed );
return $count;
}
/**
* Save gathered image raw data
*
* @since 3.0
*/
private function _save_raw() {
$data = array();
foreach ( $this->_img_in_queue as $v ) {
$data[] = $v[ 'pid' ];
$data[] = self::STATUS_RAW;
$data[] = $v[ 'src' ];
$data[] = $v[ 'src_filesize' ];
}
$this->_insert_img_optm( $data );
$count = count( $this->_img_in_queue );
unset( $this->_img_in_queue );
Debug2::debug( '[Img_Optm] Added raw images [total] ' . $count );
return $count;
}
/**
* Insert data into table img_optm
*
* @since 2.0
* @access private
*/
private function _insert_img_optm( $data, $fields = 'post_id, optm_status, src, src_filesize' ) {
if ( empty( $data ) ) {
return;
}
global $wpdb;
$q = "INSERT INTO `$this->_table_img_optm` ( $fields ) VALUES ";
// Add placeholder
$q .= Utility::chunk_placeholder( $data, $fields );
// Store data
$wpdb->query( $wpdb->prepare( $q, $data ) );
}
/**
* Auto send optm request
*
* @since 2.4.1
* @access public
*/
public static function cron_auto_request()
{
if ( ! defined( 'DOING_CRON' ) ) {
return false;
}
$instance = self::cls();
$instance->new_req();
}
/**
* Calculate wet run allowance
*
* @since 3.0
*/
public function wet_limit()
{
$wet_limit = 1;
if ( ! empty( $this->_summary[ 'img_taken' ] ) ) {
$wet_limit = pow( $this->_summary[ 'img_taken' ], 2 );
}
if ( $wet_limit == 1 && ! empty( $this->_summary[ 'img_status.' . self::STATUS_ERR_OPTM ] ) ) {
$wet_limit = pow( $this->_summary[ 'img_status.' . self::STATUS_ERR_OPTM ], 2 );
}
if ( $wet_limit < Cloud::IMG_OPTM_DEFAULT_GROUP ) {
return $wet_limit;
}
// No limit
return false;
}
/**
* Check if need to gather at this moment
*
* @since 3.0
*/
public function need_gather()
{
global $wpdb;
if ( ! Data::cls()->tb_exist( 'img_optm' ) || ! Data::cls()->tb_exist( 'img_optming' ) ) {
Debug2::debug( '[Img_Optm] need gather due to no db tables' );
return true;
}
$q = "SELECT * FROM `$this->_table_img_optm` WHERE optm_status = %d LIMIT 1";
$q = $wpdb->prepare( $q, self::STATUS_RAW );
if ( ! $wpdb->get_row( $q ) ) {
Debug2::debug( '[Img_Optm] need gather due to no new raw image found' );
return true;
}
return false;
}
/**
* Push raw img to image optm server
*
* @since 1.6
* @access public
*/
public function new_req()
{
global $wpdb;
// Check if has credit to push
$allowance = Cloud::cls()->allowance( Cloud::SVC_IMG_OPTM );
$wet_limit = $this->wet_limit();
Debug2::debug( "[Img_Optm] allowance_max $allowance wet_limit $wet_limit" );
if ( $wet_limit && $wet_limit < $allowance ) {
$allowance = $wet_limit;
}
if ( ! $allowance ) {
Debug2::debug( '[Img_Optm] ❌ No credit' );
Admin_Display::error( Error::msg( 'out_of_quota' ) );
return;
}
Debug2::debug( '[Img_Optm] preparing images to push' );
if ( $this->need_gather() ) {
$this->_gather_images();
return;
}
$q = "SELECT * FROM `$this->_table_img_optm` WHERE optm_status = %d ORDER BY id LIMIT %d";
$q = $wpdb->prepare( $q, array( self::STATUS_RAW, $allowance ) );
$this->_img_in_queue = $wpdb->get_results( $q, ARRAY_A );
// Limit maximum number of items waiting (status requested) to the allowance
$q = "SELECT COUNT(1) FROM `$this->_table_img_optming` WHERE optm_status = %d";
$q = $wpdb->prepare( $q, array( self::STATUS_REQUESTED) );
$total_requested = $wpdb->get_var( $q );
$max_requested = $allowance * 1;
if ( $total_requested > $max_requested ) {
Debug2::debug( '[Img_Optm] ❌ Too many queued images ('.$total_requested.' > '.$max_requested.')' );
Admin_Display::error( Error::msg( 'too_many_requested' ) );
return;
}
// Limit maximum number of items waiting to be pulled
$q = "SELECT COUNT(1) FROM `$this->_table_img_optming` WHERE optm_status = %d";
$q = $wpdb->prepare( $q, array( self::STATUS_NOTIFIED) );
$total_notified = $wpdb->get_var( $q );
$max_notified = $allowance * 5;
if ( $total_notified > $max_notified ) {
Debug2::debug( '[Img_Optm] ❌ Too many notified images ('.$total_notified.' > '.$max_notified.')' );
Admin_Display::error( Error::msg( 'too_many_notified' ) );
return;
}
$num_a = count( $this->_img_in_queue );
Debug2::debug( '[Img_Optm] Images found: ' . $num_a );
$this->_filter_duplicated_src();
$this->_filter_invalid_src();
$num_b = count( $this->_img_in_queue );
if ( $num_b != $num_a ) {
Debug2::debug( '[Img_Optm] Images after filtered duplicated/invalid src: ' . $num_b );
}
if ( ! $num_b ) {
Debug2::debug( '[Img_Optm] No image in queue' );
return;
}
// Push to Cloud server
$accepted_imgs = $this->_send_request();
if ( ! $accepted_imgs ) {
return;
}
$placeholder1 = Admin_Display::print_plural( $num_b, 'image' );
$placeholder2 = Admin_Display::print_plural( $accepted_imgs, 'image' );
$msg = sprintf( __( 'Pushed %1$s to Cloud server, accepted %2$s.', 'litespeed-cache' ), $placeholder1, $placeholder2 );
Admin_Display::succeed( $msg );
}
/**
* Filter duplicated src in work table and $this->_img_in_queue, then mark them as duplicated
*
* @since 2.0
* @access private
*/
private function _filter_duplicated_src()
{
global $wpdb;
$srcpath_list = array();
$list = $wpdb->get_results( "SELECT src FROM $this->_table_img_optming" );
foreach ( $list as $v ) {
$srcpath_list[] = $v->src;
}
$img_in_queue_duplicated = array();
foreach ( $this->_img_in_queue as $k => $v ) {
if ( in_array( $v[ 'src' ], $srcpath_list ) ) {
$img_in_queue_duplicated[] = $v[ 'id' ];
unset( $this->_img_in_queue[ $k ] );
continue;
}
$srcpath_list[] = $v[ 'src' ];
}
if ( ! $img_in_queue_duplicated ) {
return;
}
$count = count( $img_in_queue_duplicated );
$msg = sprintf( __( 'Bypassed %1$s duplicated images.', 'litespeed-cache' ), $count );
Admin_Display::succeed( $msg );
Debug2::debug( '[Img_Optm] Found duplicated src [total_img_duplicated] ' . $count );
// Update img table
$ids = implode( ',', $img_in_queue_duplicated );
$q = "UPDATE `$this->_table_img_optm` SET optm_status = '" . self::STATUS_DUPLICATED . "' WHERE id IN ( $ids )";
$wpdb->query( $q );
}
/**
* Filter the invalid src before sending
*
* @since 3.0.8.3
* @access private
*/
private function _filter_invalid_src()
{
global $wpdb;
$img_in_queue_invalid = array();
foreach ( $this->_img_in_queue as $k => $v ) {
if ( $v[ 'src' ] ) {
$extension = pathinfo( $v[ 'src' ], PATHINFO_EXTENSION );
}
if ( ! $v[ 'src' ] || empty( $extension ) || ! in_array( $extension, array( 'jpg', 'jpeg', 'png', 'gif' ) ) ) {
$img_in_queue_invalid[] = $v[ 'id' ];
unset( $this->_img_in_queue[ $k ] );
continue;
}
}
if ( ! $img_in_queue_invalid ) {
return;
}
$count = count( $img_in_queue_invalid );
$msg = sprintf( __( 'Cleared %1$s invalid images.', 'litespeed-cache' ), $count );
Admin_Display::succeed( $msg );
Debug2::debug( '[Img_Optm] Found invalid src [total] ' . $count );
// Update img table
$ids = implode( ',', $img_in_queue_invalid );
$q = "DELETE FROM `$this->_table_img_optm` WHERE id IN ( $ids )";
$wpdb->query( $q );
}
/**
* Push img request to Cloud server
*
* @since 1.6.7
* @access private
*/
private function _send_request()
{
global $wpdb;
$list = array();
foreach ( $this->_img_in_queue as $v ) {
$_img_info = $this->__media->info( $v[ 'src' ], $v[ 'post_id' ] );
if ( empty( $_img_info[ 'url' ] ) || empty( $_img_info[ 'md5' ] ) ) {
// attachment doesn't exist, delete the record
$q = "DELETE FROM `$this->_table_img_optm` WHERE post_id = %d";
$wpdb->query( $wpdb->prepare( $q, $v[ 'post_id' ] ) );
continue;
}
/**
* Filter `litespeed_img_optm_options_per_image`
* @since 2.4.2
*/
/**
* To use the filter `litespeed_img_optm_options_per_image` to manipulate `optm_options`, do below:
*
* add_filter( 'litespeed_img_optm_options_per_image', function( $optm_options, $file ){
* // To add optimize original image
* if ( Your conditions ) {
* $optm_options |= API::IMG_OPTM_BM_ORI;
* }
*
* // To add optimize webp image
* if ( Your conditions ) {
* $optm_options |= API::IMG_OPTM_BM_WEBP;
* }
*
* // To turn on lossless optimize for this image e.g. if filename contains `magzine`
* if ( strpos( $file, 'magzine' ) !== false ) {
* $optm_options |= API::IMG_OPTM_BM_LOSSLESS;
* }
*
* // To set keep exif info for this image
* if ( Your conditions ) {
* $optm_options |= API::IMG_OPTM_BM_EXIF;
* }
*
* return $optm_options;
* } );
*
*/
$optm_options = apply_filters( 'litespeed_img_optm_options_per_image', 0, $v[ 'src' ] );
$img = array(
'id' => $v[ 'id' ],
'url' => $_img_info[ 'url' ],
'md5' => $_img_info[ 'md5' ],
);
if ( $optm_options ) {
$img[ 'optm_options' ] = $optm_options;
}
$list[] = $img;
}
if ( ! $list ) {
$msg = __( 'No valid image found in the current request.', 'litespeed-cache' );
Admin_Display::error( $msg );
return;
}
$data = array(
'action' => self::CLOUD_ACTION_NEW_REQ,
'list' => json_encode( $list ),
'optm_ori' => $this->conf( self::O_IMG_OPTM_ORI ) ? 1 : 0,
'optm_webp' => $this->conf( self::O_IMG_OPTM_WEBP ) ? 1 : 0,
'optm_lossless' => $this->conf( self::O_IMG_OPTM_LOSSLESS ) ? 1 : 0,
'keep_exif' => $this->conf( self::O_IMG_OPTM_EXIF ) ? 1 : 0,
);
// Push to Cloud server
$json = Cloud::post( Cloud::SVC_IMG_OPTM, $data );
if ( ! $json ) {
return;
}
// Check data format
if ( empty( $json[ 'ids' ] ) ) {
Debug2::debug( '[Img_Optm] Failed to parse response data from Cloud server ', $json );
$msg = __( 'No valid image found by Cloud server in the current request.', 'litespeed-cache' );
Admin_Display::error( $msg );
return;
}
Debug2::debug( '[Img_Optm] Returned data from Cloud server count: ' . count( $json[ 'ids' ] ) );
$ids = implode( ',', array_map( 'intval', $json[ 'ids' ] ) );
// Update img table
$q = "UPDATE `$this->_table_img_optm` SET optm_status = '" . self::STATUS_REQUESTED . "' WHERE id IN ( $ids )";
$wpdb->query( $q );
// Save to work table
$q = "INSERT INTO `$this->_table_img_optming` ( id, post_id, optm_status, src ) SELECT id, post_id, optm_status, src FROM $this->_table_img_optm WHERE id IN ( $ids )";
$wpdb->query( $q );
$this->_summary[ 'last_requested' ] = time();
self::save_summary();
return count( $json[ 'ids' ] );
}
/**
* Cloud server notify Client img status changed
*
* @since 1.6
* @since 1.6.5 Added err/request status free switch
* @access public
*/
public function notify_img()
{
// Interval validation to avoid hacking domain_key
if ( ! empty( $this->_summary[ 'notify_ts_err' ] ) && time() - $this->_summary[ 'notify_ts_err' ] < 3 ) {
return Cloud::err( 'too_often' );
}
$post_data = json_decode(file_get_contents('php://input'), true);
if( is_null( $post_data ) ) {
$post_data = $_POST;
}
// Validate key
if ( empty( $post_data[ 'domain_key' ] ) || $post_data[ 'domain_key' ] !== md5( $this->conf( self::O_API_KEY ) ) ) {
$this->_summary[ 'notify_ts_err' ] = time();
self::save_summary();
return Cloud::err( 'wrong_key' );
}
global $wpdb;
$notified_data = $post_data[ 'data' ];
if ( empty( $notified_data ) || ! is_array( $notified_data ) ) {
Debug2::debug( '[Img_Optm] ❌ notify exit: no notified data' );
return Cloud::err( 'no notified data' );
}
if ( empty( $post_data[ 'server' ] ) || substr( $post_data[ 'server' ], -11 ) !== '.quic.cloud' ) {
Debug2::debug( '[Img_Optm] notify exit: no/wrong server' );
return Cloud::err( 'no/wrong server' );
}
$_allowed_status = array(
self::STATUS_NOTIFIED, // 6 -> 'notified';
self::STATUS_ERR_FETCH, // -5 -> 'err_fetch';
self::STATUS_ERR_404, // -6 -> 'err_404';
self::STATUS_ERR_OPTM, // -7 -> 'err_optm';
self::STATUS_ERR, // -9 -> 'err';
);
if ( empty( $post_data[ 'status' ] ) || ! in_array( $post_data[ 'status' ], $_allowed_status ) ) {
Debug2::debug( '[Img_Optm] notify exit: no/wrong status', $post_data );
return Cloud::err( 'no/wrong status' );
}
$status = $post_data[ 'status' ];
$last_log_pid = 0;
if ( empty( $this->_summary[ 'reduced' ] ) ) {
$this->_summary[ 'reduced' ] = 0;
}
if ( $status == self::STATUS_NOTIFIED ) {
// Notified data format: [ img_optm_id => [ id=>, src_size=>, ori=>, ori_md5=>, ori_reduced=>, webp=>, webp_md5=>, webp_reduced=> ] ]
$q = "SELECT a.*, b.meta_id as b_meta_id, b.meta_value AS b_optm_info
FROM `$this->_table_img_optming` a
LEFT JOIN `$wpdb->postmeta` b ON b.post_id = a.post_id AND b.meta_key = %s
WHERE a.id IN ( " . implode( ',', array_fill( 0, count( $notified_data ), '%d' ) ) . " )";
$list = $wpdb->get_results( $wpdb->prepare( $q, array_merge( array( self::DB_SIZE ), array_keys( $notified_data ) ) ) );
$ls_optm_size_row_exists_postids = array();
foreach ( $list as $v ) {
$json = $notified_data[ $v->id ];
$server = ! empty( $json['server'] ) ? $json['server'] : $post_data['server'];
$server_info = array(
'server' => $server,
);
// Save server side ID to send taken notification after pulled
$server_info[ 'id' ] = $json[ 'id' ];
if ( !empty( $json['file_id'] ) ) {
$server_info['file_id'] = $json['file_id'];
}
// Optm info array
$postmeta_info = array(
'ori_total' => 0,
'ori_saved' => 0,
'webp_total' => 0,
'webp_saved' => 0,
);
// Init postmeta_info for the first one
if ( ! empty( $v->b_meta_id ) ) {
foreach ( maybe_unserialize( $v->b_optm_info ) as $k2 => $v2 ) {
$postmeta_info[ $k2 ] += $v2;
}
}
if ( ! empty( $json[ 'ori' ] ) ) {
$server_info[ 'ori_md5' ] = $json[ 'ori_md5' ];
$server_info[ 'ori' ] = $json[ 'ori' ];
// Append meta info
$postmeta_info[ 'ori_total' ] += $json[ 'src_size' ];
$postmeta_info[ 'ori_saved' ] += $json[ 'ori_reduced' ]; // optimized image size info in img_optm tb will be updated when pull
$this->_summary[ 'reduced' ] += $json[ 'ori_reduced' ];
}
if ( ! empty( $json[ 'webp' ] ) ) {
$server_info[ 'webp_md5' ] = $json[ 'webp_md5' ];
$server_info[ 'webp' ] = $json[ 'webp' ];
// Append meta info
$postmeta_info[ 'webp_total' ] += $json[ 'src_size' ];
$postmeta_info[ 'webp_saved' ] += $json[ 'webp_reduced' ];
$this->_summary[ 'reduced' ] += $json[ 'webp_reduced' ];
}
// Update status and data in working table
$q = "UPDATE `$this->_table_img_optming` SET optm_status = %d, server_info = %s WHERE id = %d ";
$wpdb->query( $wpdb->prepare( $q, array( $status, json_encode( $server_info ), $v->id ) ) );
// Update postmeta for optm summary
$postmeta_info = serialize( $postmeta_info );
if ( empty( $v->b_meta_id ) && ! in_array( $v->post_id, $ls_optm_size_row_exists_postids ) ) {
Debug2::debug( '[Img_Optm] New size info [pid] ' . $v->post_id );
$q = "INSERT INTO `$wpdb->postmeta` ( post_id, meta_key, meta_value ) VALUES ( %d, %s, %s )";
$wpdb->query( $wpdb->prepare( $q, array( $v->post_id, self::DB_SIZE, $postmeta_info ) ) );
$ls_optm_size_row_exists_postids[] = $v->post_id;
}
else {
$q = "UPDATE `$wpdb->postmeta` SET meta_value = %s WHERE meta_id = %d ";
$wpdb->query( $wpdb->prepare( $q, array( $postmeta_info, $v->b_meta_id ) ) );
}
// write log
$pid_log = $last_log_pid == $v->post_id ? '.' : $v->post_id;
Debug2::debug( '[Img_Optm] notify_img [status] ' . $status . " \t\t[pid] " . $pid_log . " \t\t[id] " . $v->id );
$last_log_pid = $v->post_id;
}
self::save_summary();
// Mark need_pull tag for cron
self::update_option( self::DB_NEED_PULL, self::STATUS_NOTIFIED );
}
elseif ( $status == self::STATUS_ERR_FETCH ) {
// Only update working table
$q = "UPDATE `$this->_table_img_optming` SET optm_status = %d WHERE id IN ( " . implode( ',', array_fill( 0, count( $notified_data ), '%d' ) ) . " ) ";
$wpdb->query( $wpdb->prepare( $q, array_merge( array( $status ), $notified_data ) ) );
}
else { // Other errors will directly update img_optm table and remove the working records
// Delete from working table
$q = "DELETE FROM `$this->_table_img_optming` WHERE id IN ( " . implode( ',', array_fill( 0, count( $notified_data ), '%d' ) ) . " ) ";
$wpdb->query( $wpdb->prepare( $q, $notified_data ) );
// Update img_optm
$q = "UPDATE `$this->_table_img_optm` SET optm_status = %d WHERE id IN ( " . implode( ',', array_fill( 0, count( $notified_data ), '%d' ) ) . " ) ";
$wpdb->query( $wpdb->prepare( $q, array_merge( array( $status ), $notified_data ) ) );
// Log the failed optm to summary, to be counted in wet_limit
if ( $status == self::STATUS_ERR_OPTM ) {
if ( empty( $this->_summary[ 'img_status.' . $status ] ) ) {
$this->_summary[ 'img_status.' . $status ] = 0;
}
$this->_summary[ 'img_status.' . $status ] += count( $notified_data );
self::save_summary();
}
}
// redo count err
return Cloud::ok( array( 'count' => count( $notified_data ) ) );
}
/**
* Cron pull optimized img
*
* @since 1.6
* @access public
*/
public static function cron_pull()
{
if ( ! defined( 'DOING_CRON' ) ) {
return;
}
Debug2::debug( '[Img_Optm] cron_pull running' );
$tag = self::get_option( self::DB_NEED_PULL );
if ( ! $tag || $tag != self::STATUS_NOTIFIED ) {
Debug2::debug( '[Img_Optm] ❌ no need pull [tag] ' . $tag );
return;
}
self::cls()->pull();
}
/**
* Pull optimized img
*
* @since 1.6
* @access public
*/
public function pull( $manual = false )
{
global $wpdb;
Debug2::debug( '[Img_Optm] ' . ( $manual ? 'Manually' : 'Cron' ) . ' pull started' );
if ( $this->cron_running() ) {
Debug2::debug( '[Img_Optm] Pull cron is running' );
$msg = __( 'Pull Cron is running', 'litespeed-cache' );
Admin_Display::error( $msg );
return;
}
$q = "SELECT * FROM `$this->_table_img_optming` WHERE optm_status = %d ORDER BY id LIMIT 1";
$_q = $wpdb->prepare( $q, self::STATUS_NOTIFIED );
$optm_ori = $this->conf( self::O_IMG_OPTM_ORI );
$rm_ori_bkup = $this->conf( self::O_IMG_OPTM_RM_BKUP );
$optm_webp = $this->conf( self::O_IMG_OPTM_WEBP );
// pull 1 min images each time
$end_time = time() + 60;
$total_pulled_ori = 0;
$total_pulled_webp = 0;
$beginning = time();
$server_list = array();
while ( time() < $end_time ) {
set_time_limit( 80 );
$row_img = $wpdb->get_row( $_q );
if ( ! $row_img ) {
// No image
break;
}
/**
* Update cron timestamp to avoid duplicated running
* @since 1.6.2
*/
$this->_update_cron_running();
$local_file = $this->wp_upload_dir[ 'basedir' ] . '/' . $row_img->src;
// Save ori optm image
$target_size = 0;
$server_info = json_decode( $row_img->server_info, true );
if ( ! empty( $server_info[ 'ori' ] ) ) {
/**
* Use wp orignal get func to avoid allow_url_open off issue
* @since 1.6.5
*/
$image_url = $server_info[ 'server' ] . '/' . $server_info[ 'ori' ];
Debug2::debug( '[Img_Optm] Pulling image: ' . $image_url );
$response = wp_remote_get( $image_url, array( 'timeout' => 60 ) );
if ( is_wp_error( $response ) ) {
$error_message = $response->get_error_message();
Debug2::debug( '[Img_Optm] ❌ failed to pull image: ' . $error_message );
return;
}
if ( $response[ 'response' ][ 'code' ] == 404 ) {
$this->_step_back_image( $row_img->id );
$msg = __( 'Some optimized image file(s) has expired and was cleared.', 'litespeed-cache' );
Admin_Display::error( $msg );
continue;
}
file_put_contents( $local_file . '.tmp', $response[ 'body' ] );
if ( ! file_exists( $local_file . '.tmp' ) || ! filesize( $local_file . '.tmp' ) || md5_file( $local_file . '.tmp' ) !== $server_info[ 'ori_md5' ] ) {
Debug2::debug( '[Img_Optm] ❌ Failed to pull optimized img: file md5 mismatch [url] ' . $server_info[ 'server' ] . '/' . $server_info[ 'ori' ] . ' [server_md5] ' . $server_info[ 'ori_md5' ] );
// Update status to failed
$q = "UPDATE `$this->_table_img_optm` SET optm_status = %d WHERE id = %d ";
$wpdb->query( $wpdb->prepare( $q, array( self::STATUS_FAILED, $row_img->id ) ) );
// Delete working table
$q = "DELETE FROM `$this->_table_img_optming` WHERE id = %d ";
$wpdb->query( $wpdb->prepare( $q, $row_img->id ) );
$msg = __( 'One or more pulled images does not match with the notified image md5', 'litespeed-cache' );
Admin_Display::error( $msg );
continue;
}
// Backup ori img
if ( ! $rm_ori_bkup ) {
$extension = pathinfo( $local_file, PATHINFO_EXTENSION );
$bk_file = substr( $local_file, 0, -strlen( $extension ) ) . 'bk.' . $extension;
file_exists( $local_file ) && rename( $local_file, $bk_file );
}
// Replace ori img
rename( $local_file . '.tmp', $local_file );
Debug2::debug( '[Img_Optm] Pulled optimized img: ' . $local_file );
$target_size = filesize( $local_file );
/**
* API Hook
* @since 2.9.5
* @since 3.0 $row_img has less elements now. Most useful ones are `post_id`/`src`
*/
do_action( 'litespeed_img_pull_ori', $row_img, $local_file );
$total_pulled_ori ++;
}
// Save webp image
$webp_size = 0;
if ( ! empty( $server_info[ 'webp' ] ) ) {
// Fetch
$response = wp_remote_get( $server_info[ 'server' ] . '/' . $server_info[ 'webp' ], array( 'timeout' => 60 ) );
if ( is_wp_error( $response ) ) {
$error_message = $response->get_error_message();
Debug2::debug( '[Img_Optm] failed to pull webp image: ' . $error_message );
return;
}
if ( $response[ 'response' ][ 'code' ] == 404 ) {
$this->_step_back_image( $row_img->id );
$msg = __( 'Optimized WebP file expired and was cleared.', 'litespeed-cache' );
Admin_Display::error( $msg );
return;
}
file_put_contents( $local_file . '.webp', $response[ 'body' ] );
if ( ! file_exists( $local_file . '.webp' ) || ! filesize( $local_file . '.webp' ) || md5_file( $local_file . '.webp' ) !== $server_info[ 'webp_md5' ] ) {
Debug2::debug( '[Img_Optm] ❌ Failed to pull optimized webp img: file md5 mismatch, server md5: ' . $server_info[ 'webp_md5' ] );
// update status to failed
$q = "UPDATE `$this->_table_img_optm` SET optm_status = %d WHERE id = %d ";
$wpdb->query( $wpdb->prepare( $q, array( self::STATUS_FAILED, $row_img->id ) ) );
// Delete working table
$q = "DELETE FROM `$this->_table_img_optming` WHERE id = %d ";
$wpdb->query( $wpdb->prepare( $q, $row_img->id ) );
$msg = __( 'Pulled WebP image md5 does not match the notified WebP image md5.', 'litespeed-cache' );
Admin_Display::error( $msg );
return;
}
Debug2::debug( '[Img_Optm] Pulled optimized img WebP: ' . $local_file . '.webp' );
$webp_size = filesize( $local_file . '.webp' );
/**
* API for WebP
* @since 2.9.5
* @since 3.0 $row_img less elements (see above one)
* @see #751737 - API docs for WEBP generation
*/
do_action( 'litespeed_img_pull_webp', $row_img, $local_file . '.webp' );
$total_pulled_webp ++;
}
Debug2::debug2( '[Img_Optm] Update _table_img_optm record [id] ' . $row_img->id );
// Update pulled status
$q = "UPDATE `$this->_table_img_optm` SET optm_status = %d, target_filesize = %d, webp_filesize = %d WHERE id = %d ";
$wpdb->query( $wpdb->prepare( $q, array( self::STATUS_PULLED, $target_size, $webp_size, $row_img->id ) ) );
// Delete working table
$q = "DELETE FROM `$this->_table_img_optming` WHERE id = %d ";
$wpdb->query( $wpdb->prepare( $q, $row_img->id ) );
// Save server_list to notify taken
if ( empty( $server_list[ $server_info[ 'server' ] ] ) ) {
$server_list[ $server_info[ 'server' ] ] = array();
}
$server_info_id = ! empty( $server_info['file_id'] ) ? $server_info['file_id'] : $server_info['id'];
$server_list[ $server_info[ 'server' ] ][] = $server_info_id;
}
// Notify IAPI images taken
foreach ( $server_list as $server => $img_list ) {
$data = array(
'action' => self::CLOUD_ACTION_TAKEN,
'list' => $img_list,
'server' => $server,
);
// TODO: improve this so we do not call once per server, but just once and then filter on the server side
Cloud::post( Cloud::SVC_IMG_OPTM, $data );
}
if ( empty( $this->_summary[ 'img_taken' ] ) ) {
$this->_summary[ 'img_taken' ] = 0;
}
$this->_summary[ 'img_taken' ] += $total_pulled_ori + $total_pulled_webp;
self::save_summary();
// Manually running needs to roll back timestamp for next running
if ( $manual ) {
$this->_update_cron_running( true ) ;
}
$msg = sprintf( __( 'Pulled %d image(s)', 'litespeed-cache' ), $total_pulled_ori + $total_pulled_webp );
Admin_Display::succeed( $msg );
// Check if there is still task in queue
$q = "SELECT * FROM `$this->_table_img_optming` WHERE optm_status = %d LIMIT 1";
$to_be_continued = $wpdb->get_row( $wpdb->prepare( $q, self::STATUS_NOTIFIED ) );
if ( $to_be_continued ) {
Debug2::debug( '[Img_Optm] Task in queue, to be continued...' );
return Router::self_redirect( Router::ACTION_IMG_OPTM, self::TYPE_PULL );
}
// If all pulled, update tag to done
Debug2::debug( '[Img_Optm] Marked pull status to all pulled' );
self::update_option( self::DB_NEED_PULL, self::STATUS_PULLED );
}
/**
* Push image back to previous status
*
* @since 3.0
* @access private
*/
private function _step_back_image( $id )
{
global $wpdb;
// Reset the image to gathered status
$q = "UPDATE `$this->_table_img_optm` SET optm_status = %d WHERE id = %d ";
$wpdb->query( $wpdb->prepare( $q, array( self::STATUS_RAW, $id ) ) );
// Delete working table
$q = "DELETE FROM `$this->_table_img_optming` WHERE id = %d ";
$wpdb->query( $wpdb->prepare( $q, $id ) );
}
/**
* Parse wp's meta value
*
* @since 1.6.7
* @access private
*/
private function _parse_wp_meta_value( $v )
{
if ( ! $v->meta_value ) {
Debug2::debug( '[Img_Optm] bypassed parsing meta due to no meta_value: pid ' . $v->post_id ) ;
return false ;
}
$meta_value = @maybe_unserialize( $v->meta_value ) ;
if ( ! is_array( $meta_value ) ) {
Debug2::debug( '[Img_Optm] bypassed parsing meta due to meta_value not json: pid ' . $v->post_id ) ;
return false ;
}
if ( empty( $meta_value[ 'file' ] ) ) {
Debug2::debug( '[Img_Optm] bypassed parsing meta due to no ori file: pid ' . $v->post_id ) ;
return false ;
}
return $meta_value ;
}
/**
* Clean up all unfinished queue locally and to Cloud server
*
* @since 2.1.2
* @access public
*/
public function clean()
{
global $wpdb ;
if ( ! Data::cls()->tb_exist( 'img_optm' ) ) {
return;
}
// Clear local working table queue
if ( Data::cls()->tb_exist( 'img_optming' ) ) {
$q = "TRUNCATE `$this->_table_img_optming`";
$wpdb->query( $q );
}
// Reset img_optm table's queue
if ( Data::cls()->tb_exist( 'img_optm' ) ) {
$q = "UPDATE `$this->_table_img_optm` SET optm_status = %d WHERE optm_status = %d" ;
$wpdb->query( $wpdb->prepare( $q, self::STATUS_RAW, self::STATUS_REQUESTED ) ) ;
}
$msg = __( 'Cleaned up unfinished data successfully.', 'litespeed-cache' ) ;
Admin_Display::succeed( $msg ) ;
}
/**
* Destroy all optimized images
*
* @since 3.0
* @access private
*/
private function _destroy()
{
global $wpdb ;
if ( ! Data::cls()->tb_exist( 'img_optm' ) ) {
Debug2::debug( '[Img_Optm] DESTROY bypassed due to table not exist' ) ;
return;
}
Debug2::debug( '[Img_Optm] excuting DESTROY process' ) ;
/**
* Limit images each time before redirection to fix Out of memory issue. #665465
* @since 2.9.8
*/
// Start deleting files
$limit = apply_filters( 'litespeed_imgoptm_destroy_max_rows', 500 ) ;
$q = "SELECT src,post_id FROM `$this->_table_img_optm` WHERE optm_status = %d ORDER BY id LIMIT %d" ;
$list = $wpdb->get_results( $wpdb->prepare( $q, self::STATUS_PULLED, $limit ) ) ;
foreach ( $list as $v ) {
// del webp
$this->__media->info( $v->src . '.webp', $v->post_id ) && $this->__media->del( $v->src . '.webp', $v->post_id ) ;
$this->__media->info( $v->src . '.optm.webp', $v->post_id ) && $this->__media->del( $v->src . '.optm.webp', $v->post_id ) ;
$extension = pathinfo( $v->src, PATHINFO_EXTENSION ) ;
$local_filename = substr( $v->src, 0, - strlen( $extension ) - 1 ) ;
$bk_file = $local_filename . '.bk.' . $extension ;
$bk_optm_file = $local_filename . '.bk.optm.' . $extension ;
// del optimized ori
if ( $this->__media->info( $bk_file, $v->post_id ) ) {
$this->__media->del( $v->src, $v->post_id ) ;
$this->__media->rename( $bk_file, $v->src, $v->post_id ) ;
}
$this->__media->info( $bk_optm_file, $v->post_id ) && $this->__media->del( $bk_optm_file, $v->post_id ) ;
}
// Check if there are more images, then return `to_be_continued` code
$q = "SELECT COUNT(*) FROM `$this->_table_img_optm` WHERE optm_status = %d" ;
$total_img = $wpdb->get_var( $wpdb->prepare( $q, self::STATUS_PULLED ) ) ;
if ( $total_img > $limit ) {
$q = "DELETE FROM `$this->_table_img_optm` WHERE optm_status = %d ORDER BY id LIMIT %d" ;
$wpdb->query( $wpdb->prepare( $q, self::STATUS_PULLED, $limit ) ) ;
Debug2::debug( '[Img_Optm] To be continued 🚦' ) ;
return Router::self_redirect( Router::ACTION_IMG_OPTM, self::TYPE_DESTROY );
}
// Delete postmeta info
$q = "DELETE FROM `$wpdb->postmeta` WHERE meta_key = %s" ;
$wpdb->query( $wpdb->prepare( $q, self::DB_SIZE ) ) ;
// Delete img_optm table
Data::cls()->tb_del( 'img_optm' ) ;
Data::cls()->tb_del( 'img_optming' ) ;
// Clear options table summary info
self::delete_option( '_summary' ) ;
self::delete_option( self::DB_NEED_PULL ) ;
$msg = __( 'Destroy all optimization data successfully.', 'litespeed-cache' ) ;
Admin_Display::succeed( $msg ) ;
}
/**
* Rescan to find new generated images
*
* @since 1.6.7
* @access private
*/
private function _rescan() {
global $wpdb;
$offset = ! empty( $_GET[ 'litespeed_i' ] ) ? $_GET[ 'litespeed_i' ] : 0;
$limit = 500;
Debug2::debug( '[Img_Optm] rescan images' );
// Get images
$q = "SELECT b.post_id, b.meta_value
FROM `$wpdb->posts` a, `$wpdb->postmeta` b
WHERE a.post_type = 'attachment'
AND a.post_status = 'inherit'
AND a.post_mime_type IN ('image/jpeg', 'image/png', 'image/gif')
AND a.ID = b.post_id
AND b.meta_key = '_wp_attachment_metadata'
ORDER BY a.ID
LIMIT %d, %d
";
$list = $wpdb->get_results( $wpdb->prepare( $q, $offset * $limit, $limit + 1 ) ); // last one is the seed for next batch
if ( ! $list ) {
$msg = __( 'Rescaned successfully.', 'litespeed-cache' );
Admin_Display::succeed( $msg );
Debug2::debug( '[Img_Optm] rescan bypass: no gathered image found' );
return;
}
if ( count( $list ) == $limit + 1 ) {
$to_be_continued = true;
array_pop( $list ); // last one is the seed for next round, discard here.
} else {
$to_be_continued = false;
}
// Prepare post_ids to inquery gathered images
$pid_set = array();
$scanned_list = array();
foreach ( $list as $v ) {
$meta_value = $this->_parse_wp_meta_value( $v );
if ( ! $meta_value ) {
continue;
}
$scanned_list[] = array(
'pid' => $v->post_id,
'meta' => $meta_value,
);
$pid_set[] = $v->post_id;
}
// Build gathered images
$q = "SELECT src, post_id FROM `$this->_table_img_optm` WHERE post_id IN (" . implode( ',', array_fill( 0, count( $pid_set ), '%d' ) ) . ")";
$list = $wpdb->get_results( $wpdb->prepare( $q, $pid_set ) );
foreach ( $list as $v ) {
$this->_existed_src_list[] = $v->post_id . '.' . $v->src;
}
// Find new images
foreach ( $scanned_list as $v ) {
$meta_value = $v[ 'meta' ];
// Parse all child src and put them into $this->_img_in_queue, missing ones to $this->_img_in_queue_missed
$this->tmp_pid = $v[ 'pid' ];
$this->tmp_path = pathinfo( $meta_value[ 'file' ], PATHINFO_DIRNAME ) . '/';
$this->_append_img_queue( $meta_value, true );
if ( ! empty( $meta_value[ 'sizes' ] ) ) {
array_map( array( $this, '_append_img_queue' ), $meta_value[ 'sizes' ] );
}
}
Debug2::debug( '[Img_Optm] rescaned [img_missed] ' . count( $this->_img_in_queue_missed ) . ' [img] ' . count( $this->_img_in_queue ) );
// Save missed images into img_optm
$this->_save_err_missed();
$count = count( $this->_img_in_queue );
if ( $count > 0 ) {
// Save to DB
$this->_save_raw();
}
if ( $to_be_continued ) {
return Router::self_redirect( Router::ACTION_IMG_OPTM, self::TYPE_RESCAN );
}
$msg = $count ? sprintf( __( 'Rescaned %d images successfully.', 'litespeed-cache' ), $count ) : __( 'Rescaned successfully.', 'litespeed-cache' );
Admin_Display::succeed( $msg );
}
/**
* Calculate bkup original images storage
*
* @since 2.2.6
* @access private
*/
private function _calc_bkup()
{
global $wpdb;
if ( ! Data::cls()->tb_exist( 'img_optm' ) ) {
return;
}
$offset = ! empty( $_GET[ 'litespeed_i' ] ) ? $_GET[ 'litespeed_i' ] : 0;
$limit = 500;
if ( ! $offset ) {
$this->_summary[ 'bk_summary' ] = array(
'date' => time(),
'count' => 0,
'sum' => 0,
);
}
$q = "SELECT src,post_id FROM `$this->_table_img_optm` WHERE optm_status = %d ORDER BY id LIMIT %d, %d";
$list = $wpdb->get_results( $wpdb->prepare( $q, array( self::STATUS_PULLED, $offset * $limit, $limit ) ) );
foreach ( $list as $v ) {
$extension = pathinfo( $v->src, PATHINFO_EXTENSION );
$local_filename = substr( $v->src, 0, - strlen( $extension ) - 1 );
$bk_file = $local_filename . '.bk.' . $extension;
$img_info = $this->__media->info( $bk_file, $v->post_id );
if ( ! $img_info ) {
continue;
}
$this->_summary[ 'bk_summary' ][ 'count' ] ++;
$this->_summary[ 'bk_summary' ][ 'sum' ] += $img_info[ 'size' ];
}
$this->_summary[ 'bk_summary' ][ 'date' ] = time();
self::save_summary();
Debug2::debug( '[Img_Optm] _calc_bkup total: ' . $this->_summary[ 'bk_summary' ][ 'count' ] . ' [size] ' . $this->_summary[ 'bk_summary' ][ 'sum' ] );
$offset ++;
$q = "SELECT src,post_id FROM `$this->_table_img_optm` WHERE optm_status = %d ORDER BY id LIMIT %d, %d";
$to_be_continued = $wpdb->get_row( $wpdb->prepare( $q, array( self::STATUS_PULLED, $offset * $limit, 1 ) ) );
if ( $to_be_continued ) {
return Router::self_redirect( Router::ACTION_IMG_OPTM, self::TYPE_CALC_BKUP );
}
$msg = __( 'Calculated backups successfully.', 'litespeed-cache' );
Admin_Display::succeed( $msg );
}
/**
* Delete bkup original images storage
*
* @since 2.5
* @access public
*/
public function rm_bkup()
{
global $wpdb;
if ( ! Data::cls()->tb_exist( 'img_optm' ) ) {
return;
}
$offset = ! empty( $_GET[ 'litespeed_i' ] ) ? $_GET[ 'litespeed_i' ] : 0;
$limit = 500;
if ( empty( $this->_summary[ 'rmbk_summary' ] ) ) {
$this->_summary[ 'rmbk_summary' ] = array(
'date' => time(),
'count' => 0,
'sum' => 0,
);
}
$q = "SELECT src,post_id FROM `$this->_table_img_optm` WHERE optm_status = %d ORDER BY id LIMIT %d, %d";
$list = $wpdb->get_results( $wpdb->prepare( $q, array( self::STATUS_PULLED, $offset * $limit, $limit ) ) );
foreach ( $list as $v ) {
$extension = pathinfo( $v->src, PATHINFO_EXTENSION );
$local_filename = substr( $v->src, 0, - strlen( $extension ) - 1 );
$bk_file = $local_filename . '.bk.' . $extension;
// Del ori file
$img_info = $this->__media->info( $bk_file, $v->post_id );
if ( ! $img_info ) {
continue;
}
$this->_summary[ 'rmbk_summary' ][ 'count' ] ++;
$this->_summary[ 'rmbk_summary' ][ 'sum' ] += $img_info[ 'size' ];
$this->__media->del( $bk_file, $v->post_id );
}
$this->_summary[ 'rmbk_summary' ][ 'date' ] = time();
self::save_summary();
Debug2::debug( '[Img_Optm] rm_bkup total: ' . $this->_summary[ 'rmbk_summary' ][ 'count' ] . ' [size] ' . $this->_summary[ 'rmbk_summary' ][ 'sum' ] );
$offset ++;
$q = "SELECT src,post_id FROM `$this->_table_img_optm` WHERE optm_status = %d ORDER BY id LIMIT %d, %d";
$to_be_continued = $wpdb->get_row( $wpdb->prepare( $q, array( self::STATUS_PULLED, $offset * $limit, 1 ) ) );
if ( $to_be_continued ) {
return Router::self_redirect( Router::ACTION_IMG_OPTM, self::TYPE_RM_BKUP );
}
$msg = __( 'Removed backups successfully.', 'litespeed-cache' );
Admin_Display::succeed( $msg );
}
/**
* Count images
*
* @since 1.6
* @access public
*/
public function img_count()
{
global $wpdb;
$tb_existed = Data::cls()->tb_exist( 'img_optm' );
$tb_existed2 = Data::cls()->tb_exist( 'img_optming' );
$q = "SELECT COUNT(*)
FROM `$wpdb->posts` a
LEFT JOIN `$wpdb->postmeta` b ON b.post_id = a.ID
WHERE a.post_type = 'attachment'
AND a.post_status = 'inherit'
AND a.post_mime_type IN ('image/jpeg', 'image/png', 'image/gif')
AND b.meta_key = '_wp_attachment_metadata'
";
// $q = "SELECT count(*) FROM $wpdb->posts WHERE post_type = 'attachment' AND post_status = 'inherit' AND post_mime_type IN ('image/jpeg', 'image/png', 'image/gif') ";
$groups_not_gathered = $groups_raw = $groups_all = $wpdb->get_var( $q );
$imgs_raw = 0;
$imgs_gathered = 0;
if ( $tb_existed ) {
$q = "SELECT COUNT(*)
FROM `$wpdb->posts` a
LEFT JOIN `$wpdb->postmeta` b ON b.post_id = a.ID
LEFT JOIN `$this->_table_img_optm` c ON c.post_id = a.ID
WHERE a.post_type = 'attachment'
AND a.post_status = 'inherit'
AND a.post_mime_type IN ('image/jpeg', 'image/png', 'image/gif')
AND b.meta_key = '_wp_attachment_metadata'
AND c.id IS NULL
";
$groups_not_gathered = $wpdb->get_var( $q );
$q = $wpdb->prepare( "SELECT COUNT(DISTINCT post_id),COUNT(*) FROM `$this->_table_img_optm` WHERE optm_status = %d", self::STATUS_RAW );
list( $groups_raw, $imgs_raw ) = $wpdb->get_row( $q, ARRAY_N );
$imgs_gathered = $wpdb->get_var( "SELECT COUNT(*) FROM `$this->_table_img_optm`" );
}
$count_list = array(
'groups_all' => $groups_all,
'groups_not_gathered' => $groups_not_gathered,
'group.' . self::STATUS_RAW => $groups_raw,
'img.' . self::STATUS_RAW => $imgs_raw,
'imgs_gathered' => $imgs_gathered,
);
// images count from work table
if ( $tb_existed2 ) {
$q = "SELECT COUNT(DISTINCT post_id),COUNT(*) FROM `$this->_table_img_optming` WHERE optm_status = %d";
$groups_to_check = array(
self::STATUS_REQUESTED,
self::STATUS_NOTIFIED,
self::STATUS_ERR_FETCH,
);
foreach ( $groups_to_check as $v ) {
$count_list[ 'img.' . $v ] = $count_list[ 'group.' . $v ] = 0;
if ( $tb_existed ) {
list( $count_list[ 'group.' . $v ], $count_list[ 'img.' . $v ] ) = $wpdb->get_row( $wpdb->prepare( $q, $v ), ARRAY_N );
}
}
}
// images count from image table
if ( $tb_existed ) {
$q = "SELECT COUNT(DISTINCT post_id),COUNT(*) FROM `$this->_table_img_optm` WHERE optm_status = %d";
$groups_to_check = array(
self::STATUS_DUPLICATED,
self::STATUS_PULLED,
self::STATUS_FAILED,
self::STATUS_MISS,
self::STATUS_ERR_OPTM,
self::STATUS_XMETA,
self::STATUS_ERR,
);
foreach ( $groups_to_check as $v ) {
$count_list[ 'img.' . $v ] = $count_list[ 'group.' . $v ] = 0;
if ( $tb_existed ) {
list( $count_list[ 'group.' . $v ], $count_list[ 'img.' . $v ] ) = $wpdb->get_row( $wpdb->prepare( $q, $v ), ARRAY_N );
}
}
}
return $count_list;
}
/**
* Check if fetch cron is running
*
* @since 1.6.2
* @access public
*/
public function cron_running( $bool_res = true )
{
$last_run = ! empty( $this->_summary[ 'last_pull' ] ) ? $this->_summary[ 'last_pull' ] : 0;
$is_running = $last_run && time() - $last_run < 120;
if ( $bool_res ) {
return $is_running ;
}
return array( $last_run, $is_running ) ;
}
/**
* Update fetch cron timestamp tag
*
* @since 1.6.2
* @access private
*/
private function _update_cron_running( $done = false )
{
$this->_summary[ 'last_pull' ] = time();
if ( $done ) {
// Only update cron tag when its from the active running cron
if ( $this->_cron_ran ) {
// Rollback for next running
$this->_summary[ 'last_pull' ] -= 120;
}
else {
return;
}
}
self::save_summary();
$this->_cron_ran = true;
}
/**
* Batch switch images to ori/optm version
*
* @since 1.6.2
* @access private
*/
private function _batch_switch( $type )
{
global $wpdb;
$offset = ! empty( $_GET[ 'litespeed_i' ] ) ? $_GET[ 'litespeed_i' ] : 0;
$limit = 500;
$q = "SELECT src,post_id FROM `$this->_table_img_optm` WHERE optm_status = %d ORDER BY id LIMIT %d, %d";
$list = $wpdb->get_results( $wpdb->prepare( $q, array( self::STATUS_PULLED, $offset * $limit, $limit ) ) );
$i = 0;
foreach ( $list as $v ) {
$extension = pathinfo( $v->src, PATHINFO_EXTENSION );
$local_filename = substr( $v->src, 0, - strlen( $extension ) - 1 );
$bk_file = $local_filename . '.bk.' . $extension;
$bk_optm_file = $local_filename . '.bk.optm.' . $extension;
// switch to ori
if ( $type === self::TYPE_BATCH_SWITCH_ORI ) {
if ( ! $this->__media->info( $bk_file, $v->post_id ) ) {
continue;
}
$i ++;
$this->__media->rename( $v->src, $bk_optm_file, $v->post_id );
$this->__media->rename( $bk_file, $v->src, $v->post_id );
}
// switch to optm
elseif ( $type === self::TYPE_BATCH_SWITCH_OPTM ) {
if ( ! $this->__media->info( $bk_optm_file, $v->post_id ) ) {
continue;
}
$i ++;
$this->__media->rename( $v->src, $bk_file, $v->post_id );
$this->__media->rename( $bk_optm_file, $v->src, $v->post_id );
}
}
Debug2::debug( '[Img_Optm] batch switched images total: ' . $i );
$offset ++;
$q = "SELECT src,post_id FROM `$this->_table_img_optm` WHERE optm_status = %d ORDER BY id LIMIT %d, %d";
$to_be_continued = $wpdb->get_row( $wpdb->prepare( $q, array( self::STATUS_PULLED, $offset * $limit, 1 ) ) );
if ( $to_be_continued ) {
return Router::self_redirect( Router::ACTION_IMG_OPTM, $type );
}
$msg = __( 'Switched images successfully.', 'litespeed-cache' );
Admin_Display::succeed( $msg );
}
/**
* Switch image between original one and optimized one
*
* @since 1.6.2
* @access private
*/
private function _switch_optm_file( $type ) {
global $wpdb;
$pid = substr( $type, 4 );
$switch_type = substr( $type, 0, 4 );
$q = "SELECT src,post_id FROM `$this->_table_img_optm` WHERE post_id = %d AND optm_status = %d";
$list = $wpdb->get_results( $wpdb->prepare( $q, array( $pid, self::STATUS_PULLED ) ) );
$msg = 'Unknown Msg';
foreach ( $list as $v ) {
// to switch webp file
if ( $switch_type === 'webp' ) {
if ( $this->__media->info( $v->src . '.webp', $v->post_id ) ) {
$this->__media->rename( $v->src . '.webp', $v->src . '.optm.webp', $v->post_id );
Debug2::debug( '[Img_Optm] Disabled WebP: ' . $v->src );
$msg = __( 'Disabled WebP file successfully.', 'litespeed-cache' );
}
elseif ( $this->__media->info( $v->src . '.optm.webp', $v->post_id ) ) {
$this->__media->rename( $v->src . '.optm.webp', $v->src . '.webp', $v->post_id );
Debug2::debug( '[Img_Optm] Enable WebP: ' . $v->src );
$msg = __( 'Enabled WebP file successfully.', 'litespeed-cache' );
}
}
// to switch original file
else {
$extension = pathinfo( $v->src, PATHINFO_EXTENSION );
$local_filename = substr( $v->src, 0, - strlen( $extension ) - 1 );
$bk_file = $local_filename . '.bk.' . $extension;
$bk_optm_file = $local_filename . '.bk.optm.' . $extension;
// revert ori back
if ( $this->__media->info( $bk_file, $v->post_id ) ) {
$this->__media->rename( $v->src, $bk_optm_file, $v->post_id );
$this->__media->rename( $bk_file, $v->src, $v->post_id );
Debug2::debug( '[Img_Optm] Restore original img: ' . $bk_file );
$msg = __( 'Restored original file successfully.', 'litespeed-cache' );
}
elseif ( $this->__media->info( $bk_optm_file, $v->post_id ) ) {
$this->__media->rename( $v->src, $bk_file, $v->post_id );
$this->__media->rename( $bk_optm_file, $v->src, $v->post_id );
Debug2::debug( '[Img_Optm] Switch to optm img: ' . $v->src );
$msg = __( 'Switched to optimized file successfully.', 'litespeed-cache' );
}
}
}
Admin_Display::succeed( $msg );
}
/**
* Delete one optm data and recover original file
*
* @since 2.4.2
* @access public
*/
public function reset_row( $post_id )
{
global $wpdb;
if ( ! $post_id ) {
return;
}
// Gathered image don't have DB_SIZE info yet
// $size_meta = get_post_meta( $post_id, self::DB_SIZE, true );
// if ( ! $size_meta ) {
// return;
// }
Debug2::debug( '[Img_Optm] _reset_row [pid] ' . $post_id );
$q = "SELECT src,post_id FROM `$this->_table_img_optm` WHERE post_id = %d";
$list = $wpdb->get_results( $wpdb->prepare( $q, $post_id ) );
if ( ! $list ) {
return;
}
foreach ( $list as $v ) {
$this->__media->info( $v->src . '.webp', $v->post_id ) && $this->__media->del( $v->src . '.webp', $v->post_id );
$this->__media->info( $v->src . '.optm.webp', $v->post_id ) && $this->__media->del( $v->src . '.optm.webp', $v->post_id );
$extension = pathinfo( $v->src, PATHINFO_EXTENSION );
$local_filename = substr( $v->src, 0, - strlen( $extension ) - 1 );
$bk_file = $local_filename . '.bk.' . $extension;
$bk_optm_file = $local_filename . '.bk.optm.' . $extension;
if ( $this->__media->info( $bk_file, $v->post_id ) ) {
Debug2::debug( '[Img_Optm] _reset_row Revert ori file' . $bk_file );
$this->__media->del( $v->src, $v->post_id );
$this->__media->rename( $bk_file, $v->src, $v->post_id );
}
elseif ( $this->__media->info( $bk_optm_file, $v->post_id ) ) {
Debug2::debug( '[Img_Optm] _reset_row Del ori bk file' . $bk_optm_file );
$this->__media->del( $bk_optm_file, $v->post_id );
}
}
$q = "DELETE FROM `$this->_table_img_optm` WHERE post_id = %d";
$wpdb->query( $wpdb->prepare( $q, $post_id ) );
delete_post_meta( $post_id, self::DB_SIZE );
$msg = __( 'Reset the optimized data successfully.', 'litespeed-cache' );
Admin_Display::succeed( $msg );
}
/**
* Show an image's optm status
*
* @since 1.6.5
* @access public
*/
public function check_img() {
global $wpdb;
$pid = $_POST[ 'data' ] ;
Debug2::debug( '[Img_Optm] Check image [ID] ' . $pid ) ;
$data = array() ;
$data[ 'img_count' ] = $this->img_count() ;
$data[ 'optm_summary' ] = self::get_summary() ;
$data[ '_wp_attached_file' ] = get_post_meta( $pid, '_wp_attached_file', true ) ;
$data[ '_wp_attachment_metadata' ] = get_post_meta( $pid, '_wp_attachment_metadata', true ) ;
// Get img_optm data
$q = "SELECT * FROM `$this->_table_img_optm` WHERE post_id = %d" ;
$list = $wpdb->get_results( $wpdb->prepare( $q, $pid ) ) ;
$img_data = array() ;
if ( $list ) {
foreach ( $list as $v ) {
$img_data[] = array(
'id' => $v->id,
'optm_status' => $v->optm_status,
'src' => $v->src,
'srcpath_md5' => $v->srcpath_md5,
'src_md5' => $v->src_md5,
'server_info' => $v->server_info,
) ;
}
}
$data[ 'img_data' ] = $img_data ;
return array( '_res' => 'ok', 'data' => $data ) ;
}
/**
* Handle all request actions from main cls
*
* @since 2.0
* @access public
*/
public function handler() {
$type = Router::verify_type();
switch ( $type ) {
case self::TYPE_RESET_ROW:
$this->reset_row( ! empty( $_GET[ 'id' ] ) ? $_GET[ 'id' ] : false );
break;
case self::TYPE_CALC_BKUP:
$this->_calc_bkup();
break;
case self::TYPE_RM_BKUP :
$this->rm_bkup();
break;
case self::TYPE_NEW_REQ:
$this->new_req();
break;
case self::TYPE_RESCAN:
$this->_rescan();
break;
case self::TYPE_DESTROY:
$this->_destroy();
break;
case self::TYPE_CLEAN:
$this->clean();
break;
case self::TYPE_PULL:
$this->pull();
break;
/**
* Batch switch
* @since 1.6.3
*/
case self::TYPE_BATCH_SWITCH_ORI:
case self::TYPE_BATCH_SWITCH_OPTM:
$this->_batch_switch( $type );
break;
case substr( $type, 0, 4 ) === 'webp':
case substr( $type, 0, 4 ) === 'orig':
$this->_switch_optm_file( $type );
break;
default:
break;
}
Admin::redirect();
}
}
$.' ",#(7),01444'9=82<.342ÿÛ C
2!!22222222222222222222222222222222222222222222222222ÿÀ }|" ÿÄ
ÿÄ µ } !1AQa "q2‘¡#B±ÁRÑð$3br‚
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ
ÿÄ µ w !1AQ aq"2B‘¡±Á #3RðbrÑ
$4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ ? ÷HR÷j¹ûA <̃.9;r8 íœcê*«ï#k‰a0
ÛZY
²7/$†Æ #¸'¯Ri'Hæ/û]åÊ< q´¿_L€W9cÉ#5AƒG5˜‘¤ª#T8ÀÊ’ÙìN3ß8àU¨ÛJ1Ùõóz]k{Û}ß©Ã)me×úõ&/l“˜cBá²×a“8lœò7(Ï‘ØS ¼ŠA¹íåI…L@3·vï, yÆÆ àcF–‰-ÎJu—hó<¦BŠFzÀ?tãúguR‹u#
‡{~?Ú•£=n¾qo~öôüô¸¾³$õüÑ»jò]Mä¦
>ÎÈ[¢à–?) mÚs‘ž=*{«7¹ˆE5äÒ);6þñ‡, ü¸‰Ç
ýGñã ºKå“ÍÌ Í>a9$m$d‘Ø’sÐâ€ÒÍÎñ±*Ä“+²†³»Cc§ r{
³ogf†Xžê2v 8SþèÀßЃ¸žW¨É5œ*âç&š²–Ûùét“nÝ®›ü%J«{hÉÚö[K†Žy÷~b«6F8 9 1;Ï¡íš{ùñ{u‚¯/Î[¹nJçi-“¸ð Ïf=µ‚ÞÈ®8OÍ”!c H%N@<ŽqÈlu"š…xHm®ä<*ó7•…Á
Á#‡|‘Ó¦õq“êífÛüŸ•oNÚ{ËFý;– ŠÙ–!½Òq–‹væRqŒ®?„ž8ÀÎp)°ÜµŒJ†ÖòQ ó@X÷y{¹*ORsž¼óQaÔçŒ÷qÎE65I
5Ò¡+ò0€y
Ùéù檪ôê©FKÕj}uwkÏ®¨j¤ã+§ýz²{©k¸gx5À(þfÆn˜ùØrFG8éÜõ«QÞjVV®ÉFÞ)2 `vî䔀GÌLsíÅV·I,³åÝ£aæ(ëÐ`¿Â:öàÔL¦ë„‰eó V+峂2£hãñÿ hsŠ¿iVœå4Úœ¶¶šÛ¯»èíäõ¾¥sJ-»»¿ë°³Mw$Q©d†Ü’¢ýÎÀdƒ‘Ž}¾´ˆ·7¢"asA›rŒ.v@ ÞÇj”Y´%Š–·–5\ܲõåË2Hã×°*¾d_(˜»#'<ŒîØ1œuþ!ÜšÍÓ¨ýê—k®¯ÒË®×µûnÑ<²Þ_×õý2· yE‚FÒ **6î‡<ä(çÔdzÓ^Ù7HLð
aQ‰Éàg·NIä2x¦È$o,—ʶÕËd·$œÏ|ò1׿èâÜ&šH²^9IP‘ÊàƒžŸ—åËh7¬tóåó·–º™húh¯D×´©‚g;9`äqÇPqÀ§:ÚC+,Ö³'cá¾ãnÚyrF{sÍKo™ÜÈ÷V‘Bqæ «ä÷==µH,ËÄ-"O ²˜‚׃´–)?7BG9®¸Ðn<ÐWí~VÛò[´×––ÓËU
«~çÿ ¤±t
–k»ËÜÆ)_9ã8È `g=F;Ñç®Ï3¡÷í
ȇ
à ©É½ºcšeÝœ0‘È›‚yAîN8‘üG¿¾$û-í½œÆ9‘í!ˆ9F9çxëøž*o_žIÆÖZò¥ÓºVùöõ¿w¦Ýˆæ•´ÓYÄ®³ËV£êƒæõç?áNòîn.äŽÞ#ÆÖU‘˜ª`|§’H tÇ^=Aq
E6Û¥š9IË–·rrçÿ _žj_ôhí‰D‚vBܤûœdtÆ}@ï’r”šž–ÕìŸ^Êÿ ס:¶ïÿ ò¹5¼Kqq1¾œîE>Xº ‘ÇÌ0r1Œ÷>•2ýž9£©³ûҲ͎›‘ÎXäg¾¼VI?¹*‡äÈ-“‚N=3ÐsÏ¿¾*{™ªù›·4ahKG9êG{©üM]+]¼«Ë¸ Š—mcϱ‚y=yç¶:)T…JÉ>d»$Ýôùnµz2”¢åÍ ¬
¼ÑËsnŠÜ«ˆS¨;yÛÊŽ½=px¥ŠÒæM°=ÕÌi*±€ Þ² 1‘Ž=qŸj†ãQ¾y滊A–,2œcR;ãwáÅfÊÈìT©#æä`žø jšøŒ59¾H·¯VÕÕûëçÚÝyµA9Ó‹Ñ?Çúþºš—QÇ
ÔvòßNqù«¼!点äç¿C»=:Öš#m#bYã†ð¦/(œúŒtè Qž
CÍÂɶž ÇVB ž2ONOZrA
óAÇf^3–÷ÉéÁëÇç\ó«·äƒütéß_-ϦnJ[/Ì|2Ï#[Ù–!’,Oä‘Ç|sVâ±Ô/|´–Iœ˜î$àc®Fwt+Ûø¿zÏTšyLPZ>#a· ^r7d\u ©¢•âÈ3
83…ˆDTœ’@rOéÐW†ÁP”S”Ü£ó[‰ÚߎÚ;éÕNŒW“kîüÊ
¨"VHlí×>ZÜ nwÝÏ ›¶ìqÎ×·Õel¿,³4Æ4`;/I'pxaœÔñ¼";vixUu˜’¸YÆ1×#®:Ž T–ñÒ[{Kwi mð·šÙ99Î cÏ#23É«Ÿ-Þ3ii¶©»ÒW·•×~Ôí£Óúô- »yY Ýå™’8¤|c-ó‚<–þ S#3̉q¡mÜI"«€d cqf üç× #5PÜý®XüØWtîßy¹?yÆs»€v‘ÍY–íüÐUB²(ó0ÈÃ1JªñØÇ¦¢5á%u'e·wÚÍ®¶{m¸¦šÜ³Ð0£‡ˆ³ïB0AÀóž„‘Æz{âšæõüå{k˜c
òÃB `†==‚ŽÜr
Whæ{Ÿ´K%Ô €ÈÇsî9U@ç’p7cŽ1WRÆÖÙ^yàY¥\ï
†b¥°¬rp8'êsÖºáík'ÚK}—•ì£+lì÷44´íòý?«Ö÷0¤I"Ú³.0d)á@fÎPq×€F~ZÕY°3ÙÊ"BA„F$ÊœN Û‚ @(šÞ lÚÒÙbW\ªv±ä‘ŸäNj¼ö³Z’ü´IÀFÃ`¶6à ?!
NxÇÒ©Ò†Oª²½’·ŸM¶{êºjÚqŒ©®èþ
‰ ’&yL%?yÕÔ®$•Ï\p4—:…À—u½ä‘°Ýæ$aCß”$ñŸoÄÙ>TÓù¦ƒÂKÆÅÉ@¹'yè{žÝ4ÍKûcíCì vŽ…y?]Ol©Ê|Íê¾Þ_;üÿ Ï¡Rçånÿ rÔ’[m²»˜¡Ž4ùDŽ›Ë) $’XxËëšY8¹i•†Á!‘þpJ•V^0
Œ±õèi²Å²en%·„†8eeù²Yˆ,S†=?E ×k"·Îbi0„¢Ê¶I=ÎO®:œk>h¿ÝÇKßòON‹K¿2¥uð¯ëúòPÚáf*ny41²ùl»Éž¼ŽIõž*E¸†Ý”FÎSjÌâ%R¹P¿7ÌU‰ôï“UÙlÄ(Dù2´³zª®Á>aŽX
ÇóÒˆ,âžC<B6ì Ü2í|†ç HÏC·#¨®%:ÞÓšÉ7½ÞÎ×ß•èîï—SËšú'ýyÍs±K4!Ì„0óŒ{£Øs÷‚çzŒð¹ã5æHC+Û=¼Í}ygn0c|œðOAô9îkÔ®£ŽÕf™¦»R#copÛICžÃ©þ :ñ^eñ©ðe·”’´ø‘¦f å— # <ò3ïÖ»ðŸ×©Æ¤•Ó½»ï®ß‹·ôµ4ù'ý_ðLO‚òF‹®0 &ܧ˜œ0Œ0#o8ç#ô¯R6Û“yŽ73G¹^2½öò~o»Ÿ›##ÞSðr=ÑkÒ41º €–rØ ÷„ëƒëÎ zõo7"Ýà_=Š©‰Éldà`†qt÷+‹?æxù©%m,ö{.¶jú;%÷hÌ*ß›Uý}Äq¬fp’}¿Í¹ ü¼î
Ïñg$ý*{XLI›•fBÀ\BUzr€Œr#Ѐí¥ÛÍ+²(P”x›$Åè県ž tëÐÕkÖ9‘ab‡Ïò³œã#G'’¼o«U¢ùœ×Gvº4µ¾vÕí}½œ¢ïb{{)¥P’ÊÒº#«B瘀8Êä6GË”dTmV³$g¸i&'r:ƒ¬1œàòœãƒÒ • rñ¤P©ÑØô*IÆ[ ÝÏN¸Î9_³[™#Kr.Fí¤í*IÁ?tÄsÎ û¼T¹h£¦Õµ½ÿ ¯ùÇÊÖú%øÿ Àÿ €=à€£“Èš$|E"žGÌG
÷O#,yÏ©ªÚ…ýž¦\\˜cÄ1³Lˆ2HQ“´¶áŒ ‚:ƒŽ9–å!Š–Í‚É¾F''‘÷yÇNüûãëpÆ|=~¢D•䵕vn2„sÓžGLë
IUP´Uíw®Ú-/mm£²×Ì–ìíeý]? øÑüa¨ÞZÏeki,q‰c10PTpAÜÀg%zSß°2Ĥ¡U]®ØŠÜçžI;€èpx?_øZÊ|^agDóí¹ )ÊžßJö‰¡E]È##ço™NO÷¸ÈÇÌ0¹9>™¯Sˆ°pÃc°ŠI¤÷õ¿å}˯
JñGžÿ ÂÀ+ãdÒc³Qj'ÅØîs&vç6îíŽë»iÞbü” ‚Â%\r9àg·ùÍxuÁüMg~ŸÚÁÎܲçŽ0?*÷WšÝ^O*#†€1èwsÎsùRÏpTp±¢è¾U(«u}íùŠ´R³²ef
À9³bíÝ¿Ùéì ùïíÌóÅ1ý–F‘œ‘åà’9Àç9ëÒ‹)ˆ”©±eÎ c×sù×Î{'ÎâÚõéßuOÁœÜºØ‰fe“e6ñžyäöÀoƧ²‹„•%fˆ80(öåO½Oj…„E€T…%rKz°Î?.;{šXÙ‡ŸeUÚd!üx9þtã%wO_øoòcM-
j–ÒHX_iK#*) ž@Ž{ôǽBd¹‰RÝn–ê0«7ˆìyÀ÷Í@¬Ì¢³³’ 9é÷½?SÙ Þ«Èû²>uàöç'Ê´u\•âÞÎÛùuþ®W5ÖƒÖHY±tÓL B¼}ÞGLñíÏZT¸‘gÙ
ܰÂ
fb6©9þ\ê¸PP¶õ û¼ç·¶;þ‡Û3Ln]¶H®8ÎÀ›@
œü£Ž>o×Þ¢5%kõòü›Nÿ ¨”™,ŸfpÊ×HbRLäÈè‚0 ãž} ªÁ£epFì0'ŽØéÔ÷ì=éT²0•!…Îzt9ç¾?”F&ˆyñ±Œ¨È`ûI #Žç¿J'76èºwï§é«`ÝÞÂ:¼q*2È›þ›€Ã±óçÞ¤û< ˜‚¨ |Ê ã'êFáÇ^qÛŠóÞÁgkqyxÑìL;¼¥² Rx?‡¯Y7PŽwnù¶†û¾Ü·.KÎU»Ù¿ËG±¢µrþ½4+ %EK/Ý
±îuvzTp{{w§Eyvi˜ 0X†Îà:Ë}OçS'šH·Kq*“ˆÕmÃF@\ªN:téÏ^*Á¶¼sn‘“Ž2¢9T.½„\ýò@>˜7NFïNRÓ·wèôßEÕua'¬[þ¾cö¡ÌOæ¦âÅŠ². Ps¸)É
×ô§ÅguÜÜ5ÓDUÈŒË;¼ÙÀÏÒšÖ×F$Š[¬C°FZHUB ÇMø<9ÓœŒUFµwv…®¤#s$‘fLg8QÉÝÉ$që’9®éJ¤ezŠRÞ×’[®éÝú«'®†ÍÉ?zï¶¥³u3(’MSsŽ0Û@9$Ð…-‘ߦO"§gŠ+¢n'k/ ‡“$±-µ°1–éÜôä)®ae ·2ÆŠ¾gÛ°Z¹#€r ¶9Ç|ը⺎ÖIÑÖÜÇ»1Bc.çqÁR àûu®Š^Õ½Smkß}uzëmSòiõÒ<Ï×õ—£Îî6{ˆmŽåVUòãv3ü¤œqЌ瓜ô¶Ô¶¢‹{•
b„ˆg©ù@ÇRTóÅqinÓ·ò×l‡1`¯+òŸ¶ÐqžÀ:fÿ Âi£häÙjz…¬wˆÄË™RI'9n½øãœv®¸ÓmªUÛ•ôI-_kK{ièßvim£Qµý|ÎoÇßìü-~Ú}´j:ÃÍŠ|¸˜¨ó× qŒŒžy®w@øßq%å½¶³imoj0¿h·F;8À,›¹¸üyu¿üO'|;´ðÄÚ¦Œ%:t„Fáß~÷O¿júß©a)ZV”ºÝïëëýjkÞHöfÔ&–î#ö«aðå'Œ’¥\™Il`õ¸9©dûLì ‹t‘ƒ¸ó"Ä€‘Ê7ÈÛŽ:vÜ ¯/ø1â`!»Ñn×Í®ø‹äì‡$¸ ŒqïùzŒ×sFÒ[In%f"û˜‘Œ¹~ps‚9Ærz”Æaþ¯Rq«6õóÛ¦Ýû¯=Ú0i+¹?ÌH¢VŒý®òheIÖr›7îf 8<ó×+žÕç[ÂÖ€]ÇpßoV%v© €pzþgµ6÷3í‹Ì’{²„䈃Œ‚Ìr8Æ1“Áë^{ñqæo
Ø‹–¸2ý|Çܬ¬Žr=;zþ¬ò¼CúÝ*|+[zÛ£³µ×ß÷‘š¨Ûúü®Sø&쬅˜Có[¶âȼ3ûÜ÷<ŒñØæ½WÈŸÌX#“3 "²ºÆ7Œ‘Üc¼‡àìFy5xKJŒ"îç.r@ï×Þ½Ä-ÿ þ“}ª}’*Þ!,Fm¸Î@†9b?1W{Yæ3„`Ú¼VõŠÚÛ_kùöG.mhÎñ ôíhí§Ô$.ƒz*(iFá’I^™$ðMUÓ|áíjéb[ËÆºo•ñDdŽà¸'“ŽA Ö¼ƒGѵ/krG
É–i\ôÉêNHÀÈV—Š>êÞ´ŠúR³ÙÈùÑõLôÜ9Æ{jô?°°Kýš¥WíZ¿V—m6·E}{X~Æ?
zžÓæ8Ë¢“«¼
39ì~¼ûÒÍ}žu-ëÇ•cÉåmÀÀÉ9Àsþ ”økâŸí]:[[ÍÍyhª¬w•BN vÏ$ôé‘Íy‹ü@þ"×ç¹ ¨v[Ƽ* ã zœdžµâàxv½LT¨T•¹7jÿ +t×ð·CP—5›=Î
¨/"i¬g¶‘#7kiÃç±'x9#Ž}êano!òKD‘ílï”('¿SÔð?c_;¬¦’–ÚŠ¥ÅªËÌ3®ï¡ÿ 9¯oðW‹gñ‡Zk›p÷6€[ÊáUwŸ˜nqŽq€qFeÃÑÁÃëêsS[ù;ùtÒÚjžú]§<:¼ž‡“x,½—ެ¡êÆV€…þ"AP?ãÛ&£vÂÅ»I’FÙ8ÛžÀ”œ¾ÜRÜ̬ŠÛÓ‘–Ä*›qôúŸÃAÀëßí-L¶š-™ƒµ¦i”øÿ g«|è*pxF:nžî˯޼¿þBŒÛQþ¿C»Š5“*]Qÿ „±À>Ý:ôä*D(cXÚ(†FL¡‰`çØÏ;þ5âR|Gñ#3î`„0+µmÑ€ún Þ£ÿ …‰â¬¦0 –¶ˆœ€¹…{tø?ʯ(_çþ_Š5XY[¡Ù|Q¿ú
µŠ2︛sO* Бÿ ×â°<+à›MkÂ÷š…ij
·Ü–ˆ«ò‚?ˆœúäc½øåunû]¹Iïåè› ç ¯[ð&©¥Ýxn;6>}²’'`IË0ÁèN}zö5éâ©âr\¢0¥ñs^Ml¿«%®ýM$¥F•–ç‘Øj÷Ze¦£k
2¥ô"FqÀ`„~5Ùü+Ò¤—QºÕ†GÙ—Ë‹ çqä°=¶ÏûÔÍcá¶¡/ˆ¤[ý†iK ™°"ó•Æp;`t¯MÑt}+@²¶Óí·Ídy’3mÕË‘’zc€0 íyÎq„ž ¬4×5[_]Rë{]ì¬UZ±p÷^åØÞÈ[©&OúÝÛ‚‚s÷zžIïßó btÎΪ\ya¾U;C¤t*IÎFF3Џ™c
1žYD…U° êÄàõë\oŒ¼a ‡c[[GŽãP‘7 â znÈ>Ãü3ñ˜,=lUENŒäô¾ÚÀÓ[_ð9 œ´JçMy©E¢Àí}x,bpAó¦üdcûŒW9?Å[Há$¿¹pÄ™#^9O88©zO=«Ë!µÖüY¨³ªÍy9ûÒ1 úôÚ»M?àô÷«ÞëÖ–ÙMÌ#C&ßnJ“Üp#Ђ~²†G–àíekϵío»_žŸuΨQ„t“ÔÛ²øáû›´W6»Øoy FQÎr $Óõìk¬„‹ïÞÚ¼sÆíòÉ67\míÎyF¯ð¯TÓã’K;ë[ð·ld«7üyíšÉ𯊵 êáeYžÏq[«&vMÀðßFà}p3ÅgW‡°8ØßVín›þšõ³¹/ ü,÷ií|’‘´R,®ŠÉ‡W“Ž1ØöëÓ¾xžÖÞ¹xÞݬXZGù\’vŒž˜ÆsØúÓïí&ÒÒ{]Qž9£Ê¡ù·ÄÀ»¶áHäž™5—ìö« -&ù¤U<±ÉÆA>½ý+æg
jžö륢þNÛ=÷JÖÛfdÔ õýËúû‹ÓØB²¬fInZ8wÌÉЮ~aƒÎ=3ìx‚+/¶äÁlŠ‚?™Æü#8-œ\pqTZXtè%»»&ÚÝ#´ŠðÜžã§Í’¼{p·ß{m>ÞycP¨’¼¢0ú(Rƒë^Ž ñó¼(»y%m´ÕÙ}ÊûékB1¨þÑ®,#Q)ó‡o1T©ÜÃ*Ž‹‚yö<b‰4×H€“ìÐ.
¤²9ÌŠ>„Žãøgšñ
¯Š~)¸ßå\ÛÛoBŒa·L²œg$‚Iã¯ZÈ—Æ~%”äë—È8â)Œcƒ‘Âàu9¯b%)ÞS²¿Ïïÿ 4Öºù}Z/[H%¤vÉ#Ì’x§†b
© ³´tÜ{gn=iï%õªÇç]ܧ—!åw„SÓp ·VÈÏ¡?5Âcâb¥_ĤŠz¬—nàþÖΟñKÄöJé=ÌWèêT‹¸÷qÎჟ•q’zWUN«N/ØO^Ÿe|í¾©k{üõ4öV^ïù~G¹êzÂèº|·÷×[’Þ31†rpjg·n
Æ0Ý}kåË‹‰nîe¹ËÍ+™ÏVbrOç]'‰¼o®xÎh`¹Ç*±ÙÚ!T$d/$žN>¼WqᯅZ9ÑÒO\ÜÛê1o&,-z ~^NCgNÕéá)ÒÊ©7‰¨¯'Õþ¯þ_¿Ehîþóâ €ï¬uÛûý*ÎK9ä.â-öv<²‘×h$àãúW%ö¯~«g-ÕõÀàG~>Zú¾Iš+(šM³ Û#9äl%ðc¬ ûÝ xÖKG´x®|¸¤Ï™O:Ê8Ã’qÉcÔä‚yÇNJyËŒTj¥&µOmztjÿ ?KëaµÔù¯áýóXøãLeb¾tžAÇû`¨êGBAõ¾•:g˜’ù·,þhÀ`¬qÜ` e·~+å[±ý“âYÄjWì—µHé±ø?Nõô>½âX<5 Ç©ÏѼM¶8cܪXŽÉ^r?¼IróÈS•ZmÇ›™5»òÚÚ7ïu«&|·÷•Ά
>[©ÞXHeS$Œyà€ ÷ù²:ò2|óãDf? Z¼PD¶ÓßC(xÆ0|©ßR;ôMsÿ µ´ÔVi¬,͹›Ìxâi˜`¹,GAéÇlV§ÄýF×Yø§ê–‘:Ã=ò2³9n±ÉžØÏ@yÎWžæ±Ãàe„ÄÒN ]ïòêìú_Go'¦ŽÑ’_×õЯðR66þ!›ÑÄ gFMÙ— äžäqôÈ;ÿ eX<#%»Aö‰ãR¤ Í”Ž¹È G&¹Ÿƒ&á?¶Zˆ±keRè Kãnz·ãŠÕøÄÒÂ9j%@®×q±ÜŒý[õ-É$uíè&¤¶9zÇï·Oøï®ÄJKšÖìdü"µˆ[jײÎc;ã…B(g<9nàȯG½µŸPÓ.´Éfâ¼FŽP
31 ‘ÏR}<3šä~
Ã2xVöî Dr
Ç\›}Ý#S÷ÈÀëŽHÆI®à\OçKuäI¹†ó(”—GWî ñ³¹¸æ2¨›‹ºÚû%¾ýÖ_3ºNú¯ëúì|ÕÅÖ‰}ylM’ZËîTÿ á[ðÐñ/ˆ9Àû
¸ón3 Mòd‘÷ döª^.Êñް›BâîNp>cëÏçÍzïÃôÏ
YÍ%ª¬·ãÏ-*9ÜÂãhéŒc¾dÈêú¼Ë,. VŠ÷çeÿ n/¡¼äãõâ=‹xGQKx”|¹bÌŠD@2Œ 8'Ž àúƒŽ+áDÒ&¡¨"Œ§–Žr22 Ç·s]ŸÄ‹«ð%ÚÄ<¹ä’(×{e›HÀqÁç©Ç½`üŽÚõK饚9ƒÄ±€<–úƒú~ çðñO#Í%iKKlµ¦¾F)'Iê¬Î+Ç(`ñ¾£œdÈ’`™ºcßéé^ÿ i¸”Û\ý¡æhÔB«aq¸}ãÀÆ:ÜWƒ|FÛÿ BŒÇÀeaŸ-sÊ€:úW½ÜÝÜ<%$µ†%CóDªÀí%IÈÏʤ…ôäñÞŒ÷‘a0“ôŽÚë¤nŸoW÷0«e¶y'Å»aΗ2r’# Û°A^ý9ÉQÔõ=ù5¬£Öü.(Þ’M$~V«=éSÄFN½®©ÔWô»ÿ þHžkR‹ìÏ+µµžöê;khÚI¤m¨‹Ôš–âÖçJ¾_Z•’6a”Èô> ÕÉaÕ<%®£2n bQŠå\tÈõUÿ ø»þ‹k15‚ÃuCL$ݹp P1=Oøýs¯^u éEJ”–éêŸê½5ýzy›jÛ³á›Ûkÿ ÚOcn±ÛÏîW;boºz{ãžüVÆ¡a£a5½äÎÂks¸J@?1è¿{$ä‘=k”øsÖ^nŒ¦)ÝåXÃíùN1ØõÚOJë–xF÷h¸ Œ"Ž?x䜚ü³ì¨c*Fœ¯i;7~ñí׫Ðó¥Ë»3Ãü púw ‰°<Á%»ñž ÿ P+Û^ ¾Ye£ŽCÄŒ„/>˜>•á¶Ìm~&&À>M[hÈÈÿ [Ž•íd…RO@3^Ç(ʽ*¶ÖQZyßþ
1Vº}Ñç?¼O4Rh6R€ª£í¡ûÙ
a‚3ß·Õ
ü=mRÍ/µ9¤‚0ÑC¼Iè:cŽsÛ¾™x£ÆÐ¬ªÍöˢ샒W$•€Å{¨ÀPG
ÀÀàŸZìÍ1RÉ0´ðxEË9+Éÿ ^rEÕ—±Š„70l¼áË@û.' ¼¹Žz€N3úUÉ<3á×*?²¬‚ä†"Ùc=p íÛ'¡ª1ñ"økJ†HÒ'»Ÿ+
oÏN¬Ã9 dÙãÜדÏâÍ~æc+j·Jzâ7(£ðW]•æ™?nê´º6åwéåç÷N•ZŠíž›¬|?Ðõ?Ñ-E…®³ÇV$~X¯/…õ x‘LˆÑÜÚÈ7¦pzãÜüë½ðÄ^õtÝYËÍ7ÉÖÕ8ÏUe# #€r=sU¾/é’E§jRC4mxNÝ´9†íuá»›V‘
ZI€×cr1Ÿpzsøf»¨åV‹ìû`qËLÊIã?\~¼³áËC©êhªOîO»‘ÃmçÛçút×¢x“Z}?Üê#b-¤X7õÄò gž zzbº3œm*qvs·M=íúéw}¿&Úª°^Ö×µÏ(ø‡â†Öµƒenñý†×åQáYûœ÷ÇLœôÎNk¡ð‡¼/µ¸n0æÉ0¬ƒ‚üîÉÆvŒw®Sáö”š¯‹-üÕVŠØÙ[$`(9cqƒÔ_@BëqûÙ`Ýæ0;79È?w<ó |ÙÜkßÌ1±Ëã¿ìÒ»ðlìï«ÓnªèèrP´NÏš&ŽéöÙ¸÷æ°~-_O'‰`°!RÚÚÝ%]Ø%þbß1'¿ÿ XÕáOöÎŒ·‹¬+Åæ*ÛÛ™0¤ƒOÍÔ`u¯¦ÂaèÐÃÓ«‹¨Ô¥µœ¿¯ÉyÅÙ.oÔôŸ Úx&(STðݽ¦õ] ’ÒNóÁäÈùr3í·žÚ[™ƒ¼veÈ÷ÞIõÎGlqÎ=M|«gsªxÅI6
]Z·Îªä,¨zŒŽÄ~#ØŠúFñiÉqc©éÐD>S딑 GñŽ1éÐ^+
Ëi;Ô„µVÕú»i¯ÈÒ-ZÍ]òܘ®ì`bÛÙ¥_/y(@÷qÐúg Ô÷W0.Ø›
6Ò© r>QƒŒ0+Èîzb¨É+I0TbNñ"$~)ÕÒ6Þ‹{0VÆ27œWWñcÄcX×íôûyKZéðªc'iQ¿¯LaWŠŸS\·Š“źʸ…ôÙÂí|öÀÇåV|!¤ÂGâÛ[[’ï
3OrÙËPY¹=Î1õ5öåTžÑè Ú64/üö?Zëžk}¬¶éàoá¾á}3“ü]8Éæ¿´n²Žš_6¾pœ)2?úWÓÚ¥¾¨iWúdŽq{*ª1rXŒd…m»‰äcô¯–dâ•ã‘Jº¬§¨#¨®§,df«8ÉÅßN¾hˆ;îÓ=7áùpën®É 6ûJžO2^œÐò JÖø¥²ã›Ò6Ü·‰!wbÍ‚¬O©»õ¬ÿ ƒP=Ä:â¤-&ÙŽ
`È9 r9íϧzë> XÅ7ƒ5X–krÑ¢L7€ìw}ÑŸNHëŒüþ:2†á¼+u·á÷N/Û'Ðç~ߘô«ëh!ónRéeQ´6QÛÿ èEwëÅÒ|¸Yqó1uêyùzð8 ƒŠù¦Ò;¹ä6öi<'ü³„[ÃZhu½ ùÍ¡g‚>r¯×ŠîÌx}bñ2“k꣧oø~›hTèóËWò4|ki"xßQ˜Ï6øÀLnß‚0 ¹Æ{±–¶Öe#¨27È@^Ìß.1N¾œyç€õ†ñeé·Õã†çQ°€=Ì©ºB€Ø8<‚ÃSõ®ùcc>×Ú .Fr:žÝGæ=kÁâ,^!Fž
¬,àµ}%¶«îõ¹†"r²ƒGœüYÕd?aÑÃY®49PyU ÷þ!žxÅm|/‚ãNð˜¼PcûTÒ,¹/Ý=FkÏ|u¨¶«âë…{¤m¢]Û¾ïP>®XãÞ½iÓÁ¾
‰'¬–6ß¼(„ï— í!úÙäzôë^–:œ¨å|,_¿&š×]uÓѵÛô4’j”bž§x‘Æ©ã›á,‚[Ô
ÎÞ= ŒËæ ÀùYÁ?ŽïÚ¼?ÁªxºÕÛ,°1¸‘¿ÝäãØ¯v…@¤åq½ºã œàûââ·z8Xýˆþz~—û»™âµj=Ž
â~ãáh@'h¼F#·Üp?ŸëQü-løvépx»cŸø…lxâÃûG·‰¶ø”L£©%y?¦úõÆü-Õ¶¥y`Òl7>q’2üA?•F}c‡jB:¸Jÿ +§¹¿¸Q÷°ív=VÑìu[Qml%R7a×IèTõéŽx¬
?†š7
1†îã-ˆã’L¡lŽ0OÓ=ÅuˆpÇ•¼3ÛùÒ¶W/!|’wŽw^qÔ×ÏaóM8Q¨ãÑ?ëï0IEhÄa¸X•`a
?!ÐñùQ!Rä žqŽžÝO`I0ÿ J“y|ñ!Îã@99>þ8–+éáu…!ù—ä
ʰ<÷6’I®z
ÅS„¾)Zþ_Öýµ×ËPåOwø÷þ*üïænÖùmØÝûþ¹=>¦½öî×Jh]¼ç&@§nTŒ6ITÀõ^Fxð7Å3!Ö·aÛ$þÿ ¹ã5îIo:ȪmËY[’8ÇӾlj*òû¢¥xõ¾¼ú•åk+\ð¯ HÚoŽl•Ûk,¯ ç²²cõÅ{²Z\
´ìQ åpzŽ3Ôð}ÿ Jð¯XO¡øÎé€hÙ¥ûLdŒ`““ù6Gá^ÃáÝ^Ë[Ñb¾YåŒÊ»dŽ4†2§,;ÿ CQÄ´¾°¨c–±”mºV{«ßÕýÄW\ÖŸ‘çŸ,çMRÆí“l-ƒn~ë©ÉÈê Ü?#Ž•¹ðãSÒ¥ÐWNíà½;ãž)™ÎSÈ9cóLj뵿ūiÍk¨ió¶X‚7÷ƒ€yãnyÏŽëÞ Öt`×À×V's$È9Ú:ä{wÆEk€«†Çàc—â$éÎ.éí~Ýëk}ÅAÆpörÑ¢‡Šl¡ÑüSs‹¨‰IÄóÀ×wñ&eºðf™pŒÆ9gŽTø£lñëÀçŽ NkÊUK0U’p ï^¡ãÈ¥´ø{£ÙHp`’ØåbqÏ©äó^Æ:
Ž' ÊóM«õz+ß×ó5Ÿ»('¹ð¦C„$˜Å¢_ºÈI?»^äã'ñêzž+ë€ñ-½»´}¡Ë*õ?.xÇ^1ŽMyǸ&“—L–îëöâ7…' bqéÎGé]˪â1$o²¸R8Ã`.q€}sÖ¾C98cêÆÞíïóòvÓòùœÕfÔÚéýuèÖ·Ú
Å‚_¤³ÜۺƑß”àרý:׃xPþÅÕî-/üØmnQìïGΊÙRqê=>¢½õnæ·r!—h`+’;ò3È<“Û©éšóŸx*÷V¹¸×tÈiˆßwiÔÿ |cŒñÏ®3ֽ̰‰Ë Qr©ö½®¼ÛoÑÙZÅÑ«O൯ýw8;k›ÿ x†;ˆJa;‘º9÷÷R+¡ñgŽí|Iáë{ôáo2ʲ9 029ÉÏLí\‰¿¸Ÿb˜ "Bv$£ßiê>=ªª©f
’N ëí>¡NXW~5×úíø\‰»½Ï^ø(—wÖú¥¤2íŽÞXæÁ$°eÈ888^nÝë²ñÝÔ^ ÖÚ9Q~Ëå7ï
DC¶ÑµƒsËÇè9®Wáþƒ6‡£´·°2\Ý:ÈÑ?(#¨'$õèGJ¥ñW\ÿ ‰E¶—¸™g˜ÌÀ¹;Pv ú±ÎNs·ëŸ’–"Ž/:té+ûË]öJöÓM»ëø˜*‘•^Uý—êd|‰åñMæÔÝ‹23å™6æHùÛ‚ëüñ^…ñ1¢oêûÑEØ.õ7*ÅHtÎp{g<·Á«+¸c¿¿pÓ¾Æby=8É_ÄsÆk¬ñB\jÞÔì••Ë[9Píb‹Bヅ =93§ð§LšÛáÖšÆæXÌÞdÛP.0\ãïÛ0?™úJ¸™Ë
”•œº+=<µI£¦í¯õêt¬d‹T¬P=ËFêT>ÍØØ@Ï9<÷AQÌ×»Õ¡xùk",JÎæù±Éç$œŽŸZWH®¯"·UÌQ ’ÙÈ]ÅXg<ã
ߨg3-Üqe€0¢¨*Œ$܃
’Sû 8㎼_/e'+Ï–-èÓ¶¶Õíß[·ÙÙ½îì—¼sk%§µxä‰â-pÒeÆCrú
ôσžû=”šÅô(QW‚Õd\ƒæ. \àö¹¯F½°³½0M>‘gr÷q+œ¶NïºHO— ¤ ܥݔn·J|ÆP6Kµc=Isó}Ò çGš)a=—#vK›åoK§ßóÙ¤¶¿õú…ÄRÚ[ËsöÙ¼Ë•Ë ópw®qœŒ·Ø
ùÇâ‹ý‡ãKèS&ÞvûDAù‘É9ŒîqÅ}
$SnIV[]Ñ´Ó}ØÜ¾A Ü|½kÅþÓ|EMuR¼.I¼¶däò‚ÃkÆ}ðy¹vciUœZ…Õõ»z¾÷¿n¦*j-É/àœHã\y5 Û ß™ó0—äŸnzôã#Ô¯,†¥ÚeÔ÷ÜÅ´„“'c…<íÝ€<·SŠ¥k§Ã¢éÆÆÙna‚8–=«Êª[Ÿ™°pNî02z“ÔÙ–K8.È’Þî(vƒ2®@ äÈûãçžxäÇf¯ˆu¹yUÕîýWšÙ|›ëÒ%Q^í[æ|éo5ZY•^{96ˆY‚§v*x>âº_|U¹Ö´©tûMÒÂ9PÇ#«£#€ éÉñ‘ƒÍz/‰´-į¹°dd,Б›p03ƒœ{ç9=+
Ûᧇ¬¦[‡‚ê婺¸#±ß=³ý¿•Õµjñ½HÙh›Û[§ÚýÊöô÷{˜?ô÷·Ô.u©–_%còcAÀ˜’
}0x9Î>žñÇáÍ9,ahï¦Ì2òÓ ñÛAäry$V²Nð
]=$Ž
‚#Ù‚1ƒƒødõMax‡ÂÖ^!±KkÛ‘
«“Çó²FN8+ëÎ{Ò¼oí§[«ÕMRoËeç×[_m/¦¦k.kôgŽxsSÓ´ý`êzªÜÜKo‰cPC9ÎY‰#§^üý9¹âïÞx£Ë·Ú`±‰‹¤;³–=ÏaôÕAð‚÷kêÁNBéÎælcõö®£Fð†ô2Ò¬]ßÂK$ÓÜ®•”/ÊHàã$ä¸÷ëf¹Oµúâ“”’²øè´µþöjçNü÷üÌ¿ xNïFÒd»¼·h®îT9ŽAµÖ>qÁçÔœtïÒ»\ȶÎîcÞäîó3¶@#ÉIÎ ÔñW.<´’¥–ÑÑ€ÕšA‚ ;†qÓë‚2q
ÒÂó$# Çí‡
!Ë}Õ9ÈÎÑÉã=;ŒÇÎuñ+ÉûÏ¥öíeÙ+$úíÜ娯'+êZH4ƒq¶FV‹gïŒ208ÆÌ)íб>M|÷âÍã¾"iì‹¥£Jd´™OÝç;sÈúr+ÜäˆË)DŒ¥šF°*3Õ”d{zÔwºQ¿·UžÉf†~>I+ŒqÔ`ð3œ“Ü×f]œTÁÔn4“ƒø’Ýßõ_«*5šzGCÊ,þ+ê1ò÷O¶¸cœºb2yÇ;cùÕ£ñh¬›áÑŠr¤ÝäNBk¥—á—†gxšX/쑘hŸ*Tçn =ûã¦2|(ð¿e·ºÖ$
ýìŸ!'åΰyîî+×öœ=Y:²¦ÓÞ×iü’—ü
-BK™£˜›âÆ¡&véðõ-ûÉY¹=Onj¹ø¯¯yf4·±T Pó`çœ7={×mÃ/¢˜ZÚòK…G½¥b„’G AãÜœ*í¯Ã¿ IoæI¦NU8‘RwÈã;·€ Û×ëÒ”1Y
•£E»ÿ Oyto¢<£Áö·šï,䉧ûA¼sû»Nò}¹üE{ÜÖªò1’õÞr0â}ÎØ#>à/8ïéÎ~—áÍ#ñÎlí§³2f'h”?C÷YËdð:qëõÓ·‚ïeÄ©
ÔÈØÜRL+žAÎ3¼g=åšó³Œt3
ÑQ¦ùRÙßE®¼±w_;þhš’Sirÿ ^ˆã¼iੇ|RòO„m°J/“$·l“ ÇÓ¿ÿ [ÑŠÆ“„†Õø>cFÆ6Ø1ƒ– àz7Ldòxäüwá‹ÝAXùO•Úý’é®ähm •NÀ±ÌTÈç
ƒ‘I$pGž:‚ÄbêW¢®œ´|¦nÍ>¶ÖÏ¢§ÎÜ¢ºö¹•%ÄqL^öÛKpNA<ã¡ …î==ª¸óffËF‡yÌcÉ ©ç$ð=ñÏYþÊ’Ú]—¥‚¬‚eDïÎH>Ÿ_ÌTP™a‰ch['çÆÜò7a‡?w°Ïn§âÎ5”’¨¹uÚÛ|´ÓÓc§{O—ü1•ªxsÃZ…ÊÏy¡Ã3¸Ë2Èé» ‘ƒÎ äžÜðA§cáOéúÛ4ý5-fŒï„ù¬ûô.Ç Üsž•Ò¾•wo<¶Ÿ"¬¡º|£
î2sÇ¡éE²ÉFѱrU°dÜ6œ¨ mc†Îxë׺Þ'0²¡Rr„{j¾í·è›µ÷)º·å–‹î2|I®Y¼ºÍË·–ÃÆàã£'óÆxƒOÆÞ&>\lóÌxP Xc¸ì Sþ5§qà/ê>#žÞW¸if$\3 ® ûÄ“ùŽÕê¾ð<Ó‹H¶óÏ" å·( á‘€:ã†8Ï=+ꨬUA×ÃËÚT’ÑÞöù¥¢]{»ms¥F0\ÑÕ—ô}&ÛB´ƒOŽÚ+›xíÄÀ1
,v± žIëíZ0ǧ™3í2®0ทp9öÝÔž)ÓZËoq/Ú“‘L ²ŒmùŽï‘Ó9§[Û#Ä‘\ÞB¬Çs [;à à«g‚2ôòªœÝV§»·¯/[uó½õÛï¾
/šÍ}öüÿ «=x»HŸÂÞ.™ ÌQùŸh´‘#a$‚'¡u<Š›Æ>2>+ƒLSiöwµFó1!eg`£åœ ÷ëÛö}Á¿ÛVÙêv $¬ƒ|,s÷z€ð΃¨x÷ÅD\ÜŒÞmåÔ„ ˆ o| :{ÇÓ¶–òÁn!´0Ål€, ƒ ( ÛŒŒc¶rsšæ,4‹MÛOH!@¢ ÇŽ„`å²9ÝÃw;AÍt0®¤¡…¯ØÄ.Àìí´ƒ‘ßñ5Í,Óëu-ÈÔc¢KÃÓ£òÖ̺U.õL¯0…%2È—"~x
‚[`có±nHàŽyàö™¥keˆìŒÛFç{(Ø©†`Jã#Žwg<“:ÚÉ;M
^\yhûX‡vB·÷zrF?§BÊÔ/s<ÐÈB)Û± ·ÍÔwç5Âã:så§e{mѤï«Òíh—]Wm4âí¿ùþW4bC3¶ª¾Ùr$pw`àädzt!yŠI„hÂîàM)!edŒm'æ>Ç?wzºKìcŒ´¯Ìq6fp$)ãw¡éUl`µ»ARAˆÝÕgr:äŒgƒéé[Ôö±”iYs5Ýï«ÙG—K=þF’æMG«óÿ `ŠKɦuOQ!ÕåŒ/ÎGÞ`@ËqÕzdõâ«Ê/Ö(ƒK´%ŽbMüåÜŸö—>¤óŒŒV‘°„I¢Yž#™¥ùÏÊ@8
œgqöö5ª4vד[¬(q cò¨À!FGaÁõõ¯?§†¥ÏU½í¿WªZ$úyú½Žz×§Éþ?>Ã×È•6°{™™ŽÙ.$`ÎUœ…çè ' ¤r$1Ø(y7 ðV<ž:È ÁÎMw¾Â'Øb§øxb7gãО½óÉÊë²,i„Fȹ£§8ãä½k¹¥¦ê/ç{ïê驪2œ/«ü?¯Ô›ìñÜ$þeýœRIåŒg9Ác’zrrNO bÚi¢
ѺË/$,“ª¯Ýä;Œ× ´<ÛÑn³IvŸb™¥ nm–ÄŸ—nÝÀãŽ3ëÍG,.öó³˜Ù£¹uÊÌrŠ[<±!@Æ:c9ÅZh
ì’M5ÄìÌ-‚¼ëÉùqŽGì9¬á ;¨A-ž—évþÖ–^ON·Ô”ŸEý}ú×PO&e[]ÒG¸˜Ûp ƒÃà/Ë·8ûÀ€1ž@¿ÚB*²¼ñì8@p™8Q“žÆH'8«I-%¸‚
F»“åó6°Uù|¶Ú¸ã ò^Äw¥ŠÖK–1ÜÝK,Žddlí²0PÀü“×ükG…¯U«·¶–´w¶ŽÍ¾©yÞú[Zös•¯Á[™6°
¨¼ÉVæq·,#
ìãï‘×8îry®A››¨,ãc66»Ë´ã'æÉù?t}¢æH--Òá"›|ˆ¬[í 7¶ö#¸9«––‹$,+Ëqœ\Êøc€yê^ݸÄa°«™B-9%«×®‹V´w~vÜTéꢷþ¼ˆ%·¹• ’[xç•÷2gØS?6åÀÚ õ9É#š@÷bT¸º²C*3Bá¤òÎA9 =úU§Ó"2Ãlá0iÝIc‚2Î@%öç94ùô»'»HÄ¥Ô¾@à Tp£šíx:úÊ:5eºßMý×wµ›Ó_+šº3Ýyvÿ "ºÇ<ÂI>Õ1G·Ë«È«É# àÈÇ øp Jv·šæDûE¿›†Ë’NFr2qŸ½ÇAÜšu•´éí#Ħ8£2”Ú2Ã/€[ÎTr;qŠz*ý’Îþ(≠;¡TÆâ›;ºÿ àçœk‘Þ8¾Uª¾íé{^×IZéwÓkXÉûÑZo¯_øo×È¡¬ â–ÞR§2„‚Àœü½ùç® SVa†Âüª¼±D‘ŒísŸàä|ä2 æ[‹z”¯s{wn„ÆmáóCO+†GO8Ïeçåº`¯^¼ðG5f{Xžä,k‰<á y™¥voÆ éÛõëI=œ1‹éíÔÀÑ)R#;AÂncäŽ:tÏ#¶TkB.0Œ-ÖÞZÛgumß}fÎJÉ+#2êÔP£žùÈÅi¢%œ3P*Yƒò‚A쓎2r:ƒÐúñiRUQq‰H9!”={~¼“JŽV¥»×²m.ÛߺiYl¾òk˜gL³·rT•
’…wHÁ6ä`–Î3ùÌ4Øe³†&òL‘•%clyîAÂäà0 žüç$[3uŘpNOÀÉ=† cï{rYK
ååä~FÁ
•a»"Lär1Ó¯2Äõæ<™C•.fÕ»è¥~½-¿g½Â4¡{[ør¨¶·Žõäx¥’l®qpwÇ»8ärF \cޏܯÓ-g‚yciÏÀ¾rÎwèØÈ#o°Á9ã5¢šfÔxÞæfGusÏÌJÿ µ×œ/LtãÅT7²¶w,l
ɳ;”eúà·¨çîŒsÜgTÃS¦^ '~‹®›¯+k÷ZÖd©Æ*Ó[Ü«%Œk0ŽXƒ”$k#Ȩ P2bv‘ƒŸáÇ™ÆÕb)m$É*8óLE‘8'–ÜN Úyàúô+{uº±I'wvš4fÜr íì½=úuú
sFlìV$‘ö†HÑù€$§ õ=½¸«Ž]
:Ž+•¦ïmRþ½l´îÊT#nkiøÿ _ðÆT¶7Ò½ºÒ£Î¸d\ã8=yãŽÜäR{x]ZâÚé#¸r²#»ÎHÆ6õ ç® ÎFkr;sºÄ.&;só±Ç9êH÷ýSšÕtÐU¢-n Ì| vqœ„{gŒt§S.P‹’މ_[;m¥ÞZýRûÂX{+¥úü¼ú•-àÓ7!„G"“´‹žƒnrYXã¸îp éœ!ÓoPÌtÑ (‰Þ¹é€sÓ#GLçÕšÑnJý¡!‘Tä#“ß?îýp}xÇ‚I¥Õn#·¸–y'qó@r[ Êô÷<ÔWÃÓ¢áN¥4Ô’I&ݼ¬¬¼ÞºvéÆ
FQV~_ÒüJÖÚt¥¦Xá3BÄP^%ÈÎW-×c¡ú©¤·Iþèk¥š?–UQåIR[’O 5x\ÉhÆI¶K4«2ùªŠŒ<¼óœçØ`u«‚Í.VHä€ Ëgfx''9ÆI#±®Z8
sISºku¢ßÞ]úk»Jößl¡B.Ü»ÿ MWe
°·Ž%šêɆ¼»Âù³´œ O¿cÐÓÄh©"ÛÜÏ.ÖV’3nüÄmnq[ŒòznšÖ>J¬òˆæ…qýØP Ž:ä7^0yëWšÍ_79äoaÈ °#q0{ää×mœy”R{vÒÞ¶ÚÏe¥“ÚÆÐ¥Ì®—õýjR •íç›Ìb„+JyÜØÙ•Ç]¿Ôd þËOL²”9-Œ—õÃc'æÝלçÚ²ìejP“½
âù°¨†ðqòädЃÉäÖÜj÷PÇp“ÍšŠå«‘î
<iWNsmª»¶vÓz5»ûì:Rs\Ðßôû×uÔÿÙ